From 92b02bb37b991854e871c7d6d617f8a9c58bf454 Mon Sep 17 00:00:00 2001 From: Walter Weinmann Date: Thu, 15 Dec 2016 11:17:15 +0100 Subject: [PATCH] Version 1.2.3: Minor grammar changes. --- .gitignore | 1 - .travis.yml | 3 +- README.md | 49 +- ...2016_10_02.ebnf => cypher_2016_12_14.ebnf} | 100 +- ...acy.ebnf => cypher_2016_12_14_legacy.ebnf} | 106 +- src/ocparse.app.src | 31 +- src/ocparse_fold_legacy.erl | 42 +- src/ocparse_legacy.yrl | 13 +- src/test_generator.erl | 98 +- test/ocparse_legacy_test.erl | 2 +- test/ocparse_test.erl | 2 +- test/performance_command_legacy_SUITE.erl | 1998 ++++++++-------- test/performance_cypher_SUITE.erl | 2002 ++++++++--------- test/performance_cypher_legacy_SUITE.erl | 2002 ++++++++--------- test/performance_query_SUITE.erl | 2002 ++++++++--------- test/performance_query_legacy_SUITE.erl | 2002 ++++++++--------- test/performance_statement_SUITE.erl | 2002 ++++++++--------- test/performance_statement_legacy_SUITE.erl | 2000 ++++++++-------- 18 files changed, 7283 insertions(+), 7172 deletions(-) rename priv/openCypher/{cypher_2016_10_02.ebnf => cypher_2016_12_14.ebnf} (89%) rename priv/openCypher/{cypher_2016_10_02_legacy.ebnf => cypher_2016_12_14_legacy.ebnf} (91%) diff --git a/.gitignore b/.gitignore index c762c5b..0a062be 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,4 @@ *.dot -erl_crash.dump /_build /erl_crash.dump /rebar.lock diff --git a/.travis.yml b/.travis.yml index 66e7c17..71bd251 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ notifications: email: - walter.weinmann@gmail.com otp_release: + - 19.2 - 19.1 - 19.0 - 18.3 @@ -16,4 +17,4 @@ otp_release: - 17.1 - 17.0 after_success: - rebar ct + "./rebar3 ct" diff --git a/README.md b/README.md index 6007168..6c936c1 100644 --- a/README.md +++ b/README.md @@ -284,6 +284,54 @@ This project was inspired by the [sqlparse](https://github.com/K2InformaticsGmbH ## 6. Release Notes +### Version 1.2.3 + +Release Date: 15.12.2016 - Grammar as of 14.12.2016 + +#### Grammar changes + +- **Expression9** + +``` +New: Expression9 = { (N,O,T), [SP] }, Expression8 ; + +Old: Expression9 = { SP, (N,O,T), SP }, Expression8 ; +``` + +- **LiteralIds** (Legacy) + +``` +New: LiteralIds = IntegerLiteral, { [SP], ',', [SP], IntegerLiteral } ; + +Old: LiteralIds = { [SP], ',', [SP] } ; +``` + +- **NodeLookup** (Legacy) + +``` +New: NodeLookup = (N,O,D,E), [SP], (IdentifiedIndexLookup | IndexQuery | IdLookup) ; + +Old: NodeLookup = (N,O,D,E), (IdentifiedIndexLookup | IndexQuery | IdLookup) ; +``` + +- **PeriodicCommitHint** (Legacy) + +``` +New: PeriodicCommitHint = (U,S,I,N,G), SP, (P,E,R,I,O,D,I,C), SP, (C,O,M,M,I,T), [SP, IntegerLiteral] ; + +Old: PeriodicCommitHint = (U,S,I,N,G), SP, (P,E,R,I,O,D,I,C), SP, (C,O,M,M,I,T), [SP] ; +``` + +- **SortItem** + +``` +New: SortItem = Expression, [[SP], ((A,S,C,E,N,D,I,N,G) | (A,S,C) | (D,E,S,C,E,N,D,I,N,G) | (D,E,S,C))] ; + +Old: SortItem = (Expression, ((D,E,S,C,E,N,D,I,N,G) | (D,E,S,C))) + | (Expression, [(A,S,C,E,N,D,I,N,G) | (A,S,C)]) + ; +``` + ### Version 1.2.2 Release Date: 11.11.2016 - Grammar as of 10.11.2016 @@ -296,7 +344,6 @@ There are no relevant grammar changes available. - Support of rebar3. ----------- ### Version 1.2.1 diff --git a/priv/openCypher/cypher_2016_10_02.ebnf b/priv/openCypher/cypher_2016_12_14.ebnf similarity index 89% rename from priv/openCypher/cypher_2016_10_02.ebnf rename to priv/openCypher/cypher_2016_12_14.ebnf index 8df6d31..2ded494 100644 --- a/priv/openCypher/cypher_2016_10_02.ebnf +++ b/priv/openCypher/cypher_2016_12_14.ebnf @@ -93,9 +93,7 @@ Skip = (S,K,I,P), SP, Expression ; Limit = (L,I,M,I,T), SP, Expression ; -SortItem = (Expression, ((D,E,S,C,E,N,D,I,N,G) | (D,E,S,C))) - | (Expression, [(A,S,C,E,N,D,I,N,G) | (A,S,C)]) - ; +SortItem = Expression, [[SP], ((A,S,C,E,N,D,I,N,G) | (A,S,C) | (D,E,S,C,E,N,D,I,N,G) | (D,E,S,C))] ; Where = (W,H,E,R,E), SP, Expression ; @@ -147,7 +145,7 @@ Expression11 = Expression10, { SP, (X,O,R), SP, Expression10 } ; Expression10 = Expression9, { SP, (A,N,D), SP, Expression9 } ; -Expression9 = { SP, (N,O,T), SP }, Expression8 ; +Expression9 = { (N,O,T), [SP] }, Expression8 ; Expression8 = Expression7, { [SP], PartialComparisonExpression } ; @@ -308,15 +306,15 @@ UnescapedSymbolicName = IdentifierStart, { IdentifierPart } ; * And extended with a few characters. *)IdentifierStart = ID_Start | '_' - | '‿' - | '⁀' - | '⁔' - | '︳' - | '︴' - | '﹍' - | '﹎' - | '﹏' - | '_' + | '‿' + | '⁀' + | '⁔' + | '︳' + | '︴' + | '﹍' + | '﹎' + | '﹏' + | '_' ; (* Based on the unicode identifier and pattern syntax @@ -340,25 +338,25 @@ whitespace = SPACE | GS | RS | US - | ' ' - | 'á Ž' - | ' ' - | ' ' - | ' ' - | ' ' - | ' ' - | ' ' - | ' ' - | ' ' - | ' ' - | ' ' - | '
' - | '
' - | ' ' - | ' ' - | ' ' - | ' ' - | ' ' + | ' ' + | '᠎' + | ' ' + | ' ' + | ' ' + | ' ' + | ' ' + | ' ' + | ' ' + | ' ' + | ' ' + | ' ' + | '
' + | '
' + | ' ' + | ' ' + | ' ' + | ' ' + | ' ' | Comment ; @@ -367,31 +365,31 @@ Comment = ('/*', { ANY - ('*') | ('*', ANY - ('/')) }, '*/') ; LeftArrowHead = '<' - | '⟨' - | '〈' - | '﹤' - | '<' + | '⟨' + | '〈' + | '﹤' + | '<' ; RightArrowHead = '>' - | '⟩' - | '〉' - | 'ï¹¥' - | '>' + | '⟩' + | '〉' + | '﹥' + | '>' ; Dash = '-' - | '­' - | '‐' - | '‑' - | '‒' - | '–' - | '—' - | '―' - | '−' - | '﹘' - | 'ï¹£' - | '-' + | '­' + | '‐' + | '‑' + | '‒' + | '–' + | '—' + | '―' + | '−' + | '﹘' + | '﹣' + | '-' ; A = 'A' | 'a' ; diff --git a/priv/openCypher/cypher_2016_10_02_legacy.ebnf b/priv/openCypher/cypher_2016_12_14_legacy.ebnf similarity index 91% rename from priv/openCypher/cypher_2016_10_02_legacy.ebnf rename to priv/openCypher/cypher_2016_12_14_legacy.ebnf index 98a0aa2..b15cbdf 100644 --- a/priv/openCypher/cypher_2016_10_02_legacy.ebnf +++ b/priv/openCypher/cypher_2016_12_14_legacy.ebnf @@ -47,7 +47,7 @@ BulkImportQuery = PeriodicCommitHint, [SP], LoadCSVQuery ; SingleQuery = Clause, { [SP], Clause } ; -PeriodicCommitHint = (U,S,I,N,G), SP, (P,E,R,I,O,D,I,C), SP, (C,O,M,M,I,T), [SP] ; +PeriodicCommitHint = (U,S,I,N,G), SP, (P,E,R,I,O,D,I,C), SP, (C,O,M,M,I,T), [SP, IntegerLiteral] ; LoadCSVQuery = LoadCSV, { [SP], Clause } ; @@ -169,9 +169,7 @@ Skip = (S,K,I,P), SP, Expression ; Limit = (L,I,M,I,T), SP, Expression ; -SortItem = (Expression, ((D,E,S,C,E,N,D,I,N,G) | (D,E,S,C))) - | (Expression, [(A,S,C,E,N,D,I,N,G) | (A,S,C)]) - ; +SortItem = Expression, [[SP], ((A,S,C,E,N,D,I,N,G) | (A,S,C) | (D,E,S,C,E,N,D,I,N,G) | (D,E,S,C))] ; Hint = [SP], (((U,S,I,N,G), SP, (I,N,D,E,X), SP, Variable, NodeLabel, '(', PropertyKeyName, ')') | ((U,S,I,N,G), SP, (J,O,I,N), SP, (O,N), SP, Variable, { [SP], ',', [SP], Variable }) | ((U,S,I,N,G), SP, (S,C,A,N), SP, Variable, NodeLabel)) ; @@ -183,7 +181,7 @@ Lookup = NodeLookup | RelationshipLookup ; -NodeLookup = (N,O,D,E), (IdentifiedIndexLookup | IndexQuery | IdLookup) ; +NodeLookup = (N,O,D,E), [SP], (IdentifiedIndexLookup | IndexQuery | IdLookup) ; RelationshipLookup = ((R,E,L,A,T,I,O,N,S,H,I,P) | (R,E,L)), (IdentifiedIndexLookup | IndexQuery | IdLookup) ; @@ -193,7 +191,7 @@ IndexQuery = ':', SymbolicName, '(', (StringLiteral | LegacyParameter), ')' ; IdLookup = '(', (LiteralIds | LegacyParameter | '*'), ')' ; -LiteralIds = { [SP], ',', [SP] } ; +LiteralIds = IntegerLiteral, { [SP], ',', [SP], IntegerLiteral } ; Where = (W,H,E,R,E), SP, Expression ; @@ -254,7 +252,7 @@ Expression11 = Expression10, { SP, (X,O,R), SP, Expression10 } ; Expression10 = Expression9, { SP, (A,N,D), SP, Expression9 } ; -Expression9 = { SP, (N,O,T), SP }, Expression8 ; +Expression9 = { (N,O,T), [SP] }, Expression8 ; Expression8 = Expression7, { [SP], PartialComparisonExpression } ; @@ -427,15 +425,15 @@ UnescapedSymbolicName = IdentifierStart, { IdentifierPart } ; * And extended with a few characters. *)IdentifierStart = ID_Start | '_' - | '‿' - | '⁀' - | '⁔' - | '︳' - | '︴' - | '﹍' - | '﹎' - | '﹏' - | '_' + | '‿' + | '⁀' + | '⁔' + | '︳' + | '︴' + | '﹍' + | '﹎' + | '﹏' + | '_' ; (* Based on the unicode identifier and pattern syntax @@ -459,25 +457,25 @@ whitespace = SPACE | GS | RS | US - | ' ' - | 'á Ž' - | ' ' - | ' ' - | ' ' - | ' ' - | ' ' - | ' ' - | ' ' - | ' ' - | ' ' - | ' ' - | '
' - | '
' - | ' ' - | ' ' - | ' ' - | ' ' - | ' ' + | ' ' + | '᠎' + | ' ' + | ' ' + | ' ' + | ' ' + | ' ' + | ' ' + | ' ' + | ' ' + | ' ' + | ' ' + | '
' + | '
' + | ' ' + | ' ' + | ' ' + | ' ' + | ' ' | Comment ; @@ -486,31 +484,31 @@ Comment = ('/*', { ANY - ('*') | ('*', ANY - ('/')) }, '*/') ; LeftArrowHead = '<' - | '⟨' - | '〈' - | '﹤' - | '<' + | '⟨' + | '〈' + | '﹤' + | '<' ; RightArrowHead = '>' - | '⟩' - | '〉' - | 'ï¹¥' - | '>' + | '⟩' + | '〉' + | '﹥' + | '>' ; Dash = '-' - | '­' - | '‐' - | '‑' - | '‒' - | '–' - | '—' - | '―' - | '−' - | '﹘' - | 'ï¹£' - | '-' + | '­' + | '‐' + | '‑' + | '‒' + | '–' + | '—' + | '―' + | '−' + | '﹘' + | '﹣' + | '-' ; A = 'A' | 'a' ; diff --git a/src/ocparse.app.src b/src/ocparse.app.src index daab580..627110d 100644 --- a/src/ocparse.app.src +++ b/src/ocparse.app.src @@ -1,9 +1,26 @@ {application, ocparse, - [{description, "LALR grammar based Cypher parser using the grammar rules from the openCypher project"}, - {vsn, "1.2.1"}, - {registered, []}, - {applications, [kernel, stdlib]}, + [ + {applications, + [ + kernel, + stdlib + ] + }, + {description, "LALR grammar based Cypher parser using the grammar rules from the openCypher project"}, {mod, {ocparse, []}}, - {env, []}, - {modules, [generate_test_data, oclexer, ocparse, ocparse_fold, octest, - oclexer_legacy, ocparse_legacy, ocparse_fold_legacy, octest_legacy]}]}. + {modules, + [ + generate_test_data, + oclexer, + oclexer_legacy, + ocparse, + ocparse_fold, + ocparse_fold_legacy, + ocparse_legacy, + octest, + octest_legacy + ] + }, + {vsn, "1.2.1"} + ] +}. diff --git a/src/ocparse_fold_legacy.erl b/src/ocparse_fold_legacy.erl index 902a607..2dbec32 100644 --- a/src/ocparse_fold_legacy.erl +++ b/src/ocparse_fold_legacy.erl @@ -1498,17 +1498,31 @@ fold(FType, Fun, Ctx, Lvl, {listComprehension, FilterExpression, Expression} = S % literalIds %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -fold(FType, Fun, Ctx, _Lvl, {literalIds} = ST) -> - ?debugFmt("wwe debugging fold/5 ===> Start ~p~n ST: ~p~n", [_Lvl, ST]), +fold(FType, Fun, Ctx, Lvl, {literalIds, Values} = ST) + when is_list(Values) -> + ?debugFmt("wwe debugging fold/5 ===> Start ~p~n ST: ~p~n", [Lvl, ST]), NewCtx = case FType of top_down -> Fun(ST, Ctx); bottom_up -> Ctx end, - NewCtx1 = case FType of - top_down -> NewCtx; - bottom_up -> Fun(ST, NewCtx) + {ValueNew, NewCtx1} = lists:foldl(fun(F, {Acc, CtxAcc}) -> + case F of + {integerLiteral, _} -> + ?debugFmt("wwe debugging fold/5 ===> ~n F: ~p~n", [F]), + {SubAcc, CtxAcc1} = fold(FType, Fun, CtxAcc, Lvl + 1, F), + {Acc ++ case length(Acc) of + 0 -> []; + _ -> "," + end ++ [SubAcc], CtxAcc1} + end + end, + {[], NewCtx}, + Values), + NewCtx2 = case FType of + top_down -> NewCtx1; + bottom_up -> Fun(ST, NewCtx1) end, - RT = {",", NewCtx1}, + RT = {ValueNew, NewCtx2}, ?debugFmt("wwe debugging fold/5 ===> ~n RT: ~p~n", [RT]), RT; @@ -2287,7 +2301,7 @@ fold(FType, Fun, Ctx, Lvl, {patternPart, Value_1, Value_2} = ST) -> % periodicCommitHint %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -fold(FType, Fun, Ctx, _Lvl, {periodicCommitHint} = ST) -> +fold(FType, Fun, Ctx, _Lvl, {periodicCommitHint, []} = ST) -> ?debugFmt("wwe debugging fold/5 ===> Start ~p~n ST: ~p~n", [_Lvl, ST]), NewCtx = case FType of top_down -> Fun(ST, Ctx); @@ -2300,6 +2314,20 @@ fold(FType, Fun, Ctx, _Lvl, {periodicCommitHint} = ST) -> RT = {"using periodic commit", NewCtx1}, ?debugFmt("wwe debugging fold/5 ===> ~n RT: ~p~n", [RT]), RT; +fold(FType, Fun, Ctx, Lvl, {periodicCommitHint, Value} = ST) -> + ?debugFmt("wwe debugging fold/5 ===> Start ~p~n ST: ~p~n", [Lvl, ST]), + NewCtx = case FType of + top_down -> Fun(ST, Ctx); + bottom_up -> Ctx + end, + {ValueNew, NewCtx1} = fold(FType, Fun, NewCtx, Lvl + 1, Value), + NewCtx2 = case FType of + top_down -> NewCtx1; + bottom_up -> Fun(ST, NewCtx1) + end, + RT = {"using periodic commit " ++ ValueNew, NewCtx2}, + ?debugFmt("wwe debugging fold/5 ===> ~n RT: ~p~n", [RT]), + RT; %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % propertyExpression diff --git a/src/ocparse_legacy.yrl b/src/ocparse_legacy.yrl index 87a2a95..746ac14 100644 --- a/src/ocparse_legacy.yrl +++ b/src/ocparse_legacy.yrl @@ -71,6 +71,7 @@ Nonterminals index index_query integer_literal + integer_literal_commalist label_name legacy_parameter limit @@ -380,7 +381,8 @@ clause_list -> clause clause_list -> clause_list clause : '$1' ++ ['$2']. %% ===================================================================================================================== -periodic_commit_hint -> USING PERIODIC COMMIT : {periodicCommitHint}. +periodic_commit_hint -> USING PERIODIC COMMIT : {periodicCommitHint, []}. +periodic_commit_hint -> USING PERIODIC COMMIT integer_literal : {periodicCommitHint, '$4'}. load_csv_query -> load_csv : {loadCSVQuery, '$1', []}. load_csv_query -> load_csv clause_list : {loadCSVQuery, '$1', '$2'}. @@ -619,7 +621,14 @@ id_lookup -> '(' literal_ids ')' id_lookup -> '(' legacy_parameter ')' : {idLookup, '$2'}. id_lookup -> '(' '*' ')' : {idLookup, "(*)"}. -literal_ids -> ',' : {literalIds}. +literal_ids -> integer_literal_commalist : {literalIds, '$1'}. + +%% ===================================================================================================================== +%% Helper definitions. +%% --------------------------------------------------------------------------------------------------------------------- +integer_literal_commalist -> integer_literal : ['$1']. +integer_literal_commalist -> integer_literal ',' integer_literal_commalist : ['$1' | '$3']. +%% ===================================================================================================================== where -> WHERE expression : {where, '$2'}. diff --git a/src/test_generator.erl b/src/test_generator.erl index 89987af..e5bcb50 100644 --- a/src/test_generator.erl +++ b/src/test_generator.erl @@ -267,14 +267,6 @@ create_code(Legacy) -> "0X0123456789ABCDEF" ]), insert_table(Legacy, hex_integer, HexInteger), -%----------------------------------- -% LiteralIds = { [SP], ',', [SP] } ; -%----------------------------------- - LiteralIds = case Legacy of - true -> [?SP_OPT ++ "," ++ ?SP_OPT]; - _ -> [] - end, - insert_table(Legacy, literal_ids, LiteralIds), % --------------------------------- % OctalInteger = '0', OctalString ; % --------------------------------- @@ -286,16 +278,6 @@ create_code(Legacy) -> "01234567" ]), insert_table(Legacy, octal_integer, OctalInteger), -% ---------------------------------------------------------------------------------- -% PeriodicCommitHint = (U,S,I,N,G), SP, (P,E,R,I,O,D,I,C), SP, (C,O,M,M,I,T), [SP] ; -% ---------------------------------------------------------------------------------- - PeriodicCommitHint = case Legacy of - true -> [ - "Using" ++ ?SP ++ "Periodic" ++ ?SP ++ "Commit" ++ ?SP - ]; - _ -> [] - end, - insert_table(Legacy, periodicCommit_hint, PeriodicCommitHint), % ------------------------- % Profile = P,R,O,F,I,L,E ; % ------------------------- @@ -416,6 +398,30 @@ create_code(Legacy) -> end, FunctionName_Length = length(FunctionName), insert_table(Legacy, function_name, FunctionName), +%------------------------------------------------------------------- +% LiteralIds = IntegerLiteral, { [SP], ',', [SP], IntegerLiteral } ; +%------------------------------------------------------------------- + LiteralIds = sort_list_random( + [ + IL ++ + case rand:uniform(?PRIME) rem 4 of + 1 -> ?SP_OPT ++ "," ++ ?SP_OPT ++ + lists:nth(rand:uniform(IntegerLiteral_Length), IntegerLiteral); + 2 -> ?SP_OPT ++ "," ++ ?SP_OPT ++ + lists:nth(rand:uniform(IntegerLiteral_Length), IntegerLiteral) ++ + ?SP_OPT ++ "," ++ ?SP_OPT ++ + lists:nth(rand:uniform(IntegerLiteral_Length), IntegerLiteral); + 3 -> ?SP_OPT ++ "," ++ ?SP_OPT ++ + lists:nth(rand:uniform(IntegerLiteral_Length), IntegerLiteral) ++ + ?SP_OPT ++ "," ++ ?SP_OPT ++ + lists:nth(rand:uniform(IntegerLiteral_Length), IntegerLiteral) ++ + ?SP_OPT ++ "," ++ ?SP_OPT ++ + lists:nth(rand:uniform(IntegerLiteral_Length), IntegerLiteral); + _ -> [] + end + || IL <- IntegerLiteral + ]), + insert_table(Legacy, literal_ids, LiteralIds), % -------------------------- % LabelName = SymbolicName ; % -------------------------- @@ -458,6 +464,17 @@ create_code(Legacy) -> || DI <- DecimalInteger ]), insert_table(Legacy, parameter, Parameter), +% -------------------------------------------------------------------------------------------------- +% PeriodicCommitHint = (U,S,I,N,G), SP, (P,E,R,I,O,D,I,C), SP, (C,O,M,M,I,T), [SP, IntegerLiteral] ; +% -------------------------------------------------------------------------------------------------- + PeriodicCommitHint = sort_list_random( + ["Using" ++ ?SP ++ "Periodic" ++ ?SP ++ "Commit" ++ ?SP] ++ + [ + "Using" ++ ?SP ++ "Periodic" ++ ?SP ++ "Commit" ++ ?SP ++ IL ++ ?SP + || IL <- IntegerLiteral + ]), + PeriodicCommitHint_Length = length(PeriodicCommitHint), + insert_table(Legacy, periodic_commit_hint, PeriodicCommitHint), % -------------------------------- % PropertyKeyName = SymbolicName ; % -------------------------------- @@ -758,19 +775,19 @@ create_code(Legacy) -> || NL <- NodeLabel]), NodeLabels_Length = length(NodeLabels), insert_table(Legacy, node_labels, NodeLabels), -% ------------------------------------------------------------------------- -% NodeLookup = (N,O,D,E), (IdentifiedIndexLookup | IndexQuery | IdLookup) ; -% ------------------------------------------------------------------------- +% ------------------------------------------------------------------------------- +% NodeLookup = (N,O,D,E), [SP], (IdentifiedIndexLookup | IndexQuery | IdLookup) ; +% ------------------------------------------------------------------------------- NodeLookup = sort_list_random([ - "Node" ++ IIL + "Node" ++ ?SP_OPT ++ IIL || IIL <- IdentifiedIndexLookup ] ++ [ - "Node" ++ IQ + "Node" ++ ?SP_OPT ++ IQ || IQ <- IndexQuery ] ++ [ - "Node" ++ IL + "Node" ++ ?SP_OPT ++ IL || IL <- IdLookup ]), insert_table(Legacy, node_lookup, NodeLookup), @@ -1683,23 +1700,20 @@ create_code(Legacy) -> ]), ReturnItems_Length = length(ReturnItems), insert_table(Legacy, return_items, ReturnItems), -% ---------------------------------------------------------------- -% SortItem = (Expression, ((D,E,S,C,E,N,D,I,N,G) | (D,E,S,C))) -% | (Expression, [(A,S,C,E,N,D,I,N,G) | (A,S,C)]) ; -% ---------------------------------------------------------------- +% ---------------------------------------------------------------------------------------------------- +% SortItem = Expression, [[SP], ((A,S,C,E,N,D,I,N,G) | (A,S,C) | (D,E,S,C,E,N,D,I,N,G) | (D,E,S,C))] ; +% ---------------------------------------------------------------------------------------------------- % wwe ??? -% SortItem = (Expression, SP, ((D,E,S,C,E,N,D,I,N,G) | (D,E,S,C))) -% | (Expression, SP, [(A,S,C,E,N,D,I,N,G) | (A,S,C)]) ; -% ---------------------------------------------------------------- +% SortItem = Expression, [SP, ((A,S,C,E,N,D,I,N,G) | (A,S,C) | (D,E,S,C,E,N,D,I,N,G) | (D,E,S,C))] ; +% ---------------------------------------------------------------------------------------------------- SortItem_Targ = Expression_Length, SortItem = sort_list_random([ lists:nth(rand:uniform(Expression_Length), Expression) ++ - ?SP ++ case rand:uniform(?PRIME) rem 4 of - 1 -> "Descending"; - 2 -> "Desc"; - 3 -> "Ascending"; - _ -> "Asc" + 1 -> ?SP ++ "Descending"; + 2 -> ?SP ++ "Desc"; + 3 -> ?SP ++ "Ascending"; + _ -> ?SP ++ "Asc" end || _ <- lists:seq(1, SortItem_Targ) ]), @@ -2353,7 +2367,7 @@ create_code(Legacy) -> % BulkImportQuery = PeriodicCommitHint, [SP], LoadCSVQuery ; % ---------------------------------------------------------- BulkImportQuery = sort_list_random([ - PeriodicCommitHint ++ ?SP_OPT ++ LCQ + lists:nth(rand:uniform(PeriodicCommitHint_Length), PeriodicCommitHint) ++ ?SP_OPT ++ LCQ || LCQ <- LoadCSVQuery ]), insert_table(Legacy, bulk_import_query, BulkImportQuery), @@ -2788,9 +2802,9 @@ create_code_expression(Max, _Legacy, Atom, NodeLabels, PropertyLookup) -> end, Expression8_Length = length(Expression8), insert_table(_Legacy, expression8, Expression8), -% ------------------------------------------------ -% Expression9 = { SP, (N,O,T), SP }, Expression8 ; -% ------------------------------------------------ +% ---------------------------------------------- +% Expression9 = { (N,O,T), [SP] }, Expression8 ; +% ---------------------------------------------- Expression9_Prev = case ets:lookup(?CODE_TEMPLATES, expression9) of [{_, Expression9_Exist}] -> Expression9_Exist; _ -> [] @@ -2799,8 +2813,8 @@ create_code_expression(Max, _Legacy, Atom, NodeLabels, PropertyLookup) -> Expression9_Prev ++ [ case rand:uniform(?PRIME) rem ?MAX_BASE_VAR * 3 of - 1 -> ?SP ++ "Not" ++ ?SP ++ ?SP ++ "Not" ++ ?SP; - 2 -> ?SP ++ "Not" ++ ?SP; + 1 -> "Not" ++ ?SP_OPT ++ "Not" ++ ?SP_OPT; + 2 -> "Not" ++ ?SP_OPT; _ -> [] end ++ lists:nth(rand:uniform(Expression8_Length), Expression8) diff --git a/test/ocparse_legacy_test.erl b/test/ocparse_legacy_test.erl index 6c880bd..15edf44 100644 --- a/test/ocparse_legacy_test.erl +++ b/test/ocparse_legacy_test.erl @@ -76,7 +76,7 @@ tests_gen(TestGroup, Tests, Opts, Logs) -> tests_gen(TestGroup, Tests, Logs, SelTests, []). tests_gen(_TestGroup, [], _Logs, _SelTests, Acc) -> - {inparallel, lists:reverse(Acc)}; + {inorder, lists:reverse(Acc)}; tests_gen(TestGroup, [{I, T} | Tests], Logs, SelTests, Acc) -> case lists:member(I, SelTests) of true -> diff --git a/test/ocparse_test.erl b/test/ocparse_test.erl index 787fc84..c2fdd1d 100644 --- a/test/ocparse_test.erl +++ b/test/ocparse_test.erl @@ -81,7 +81,7 @@ tests_gen(TestGroup, Tests, Opts, Logs) -> tests_gen(TestGroup, Tests, Logs, SelTests, []). tests_gen(_TestGroup, [], _Logs, _SelTests, Acc) -> - {inparallel, lists:reverse(Acc)}; + {inorder, lists:reverse(Acc)}; tests_gen(TestGroup, [{I, T} | Tests], Logs, SelTests, Acc) -> case lists:member(I, SelTests) of true -> diff --git a/test/performance_command_legacy_SUITE.erl b/test/performance_command_legacy_SUITE.erl index 2458ef1..e0bbe64 100644 --- a/test/performance_command_legacy_SUITE.erl +++ b/test/performance_command_legacy_SUITE.erl @@ -2,7 +2,7 @@ %%% File : performance_command_legacy_SUITE.erl %%% Description : Test Suite for rule: command. %%% -%%% Created : 03.10.2016 +%%% Created : 15.12.2016 %%%------------------------------------------------------------------- -module(performance_command_legacy_SUITE). @@ -38,1003 +38,1003 @@ all() -> %%-------------------------------------------------------------------- test_command(_Config) -> - octest_legacy:ct_string("Drop Constraint On(``:`7esn`)Assert Extract(#usn8 In {`5esn`}[.e1..``]|$`6esn` Is Null)._usn4 Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[_usn3:`2esn`]->()Assert Exists([#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|False].`8esn`?)"), - octest_legacy:ct_string("Create Constraint On()-[`8esn`:`6esn`]->()Assert Exists({_usn3:{#usn7} Is Not Null Is Not Null}.`6esn`?)"), - octest_legacy:ct_string("Drop Constraint On()<-[`7esn`:`8esn`]-()Assert Exists(All(_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..]).@usn6?)"), - octest_legacy:ct_string("Drop Constraint On(_usn4:`8esn`)Assert Allshortestpaths((((:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)-[usn1? *1000..00]->({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})))).`5esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(``:@usn5)Assert Exists([#usn8 In {`5esn`}[.e1..``] Where $`` =~12.0 =~$`7esn`].@usn6?)"), - octest_legacy:ct_string("Drop Constraint On()<-[#usn8:`3esn`]-()Assert Exists(Allshortestpaths(((:`1esn`{})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]}))).`2esn`?)"), - octest_legacy:ct_string("Create Constraint On()<-[usn2:`6esn`]-()Assert Exists((:_usn4{@usn6})-[`5esn`?:_usn4|:usn2{_usn4:{999}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[{`4esn`:{_usn3}[..$12][..0.12],`7esn`:1.0[0X7][{`5esn`}]}]-({`2esn`:{7} In `2esn`,`1esn`:`4esn`[1.0]})._usn3!)"), - octest_legacy:ct_string("Drop Constraint On(#usn8:`3esn`)Assert Case When 1.0 Starts With 12e12 Starts With {`5esn`} Then {0} End.usn2 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(#usn8:`2esn`)Assert Exists(Single(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07).``!)"), - octest_legacy:ct_string("Create Constraint On()-[usn2:usn1]->()Assert Exists(All(#usn8 In {`5esn`}[.e1..``] Where $`3esn` Is Not Null).#usn8?)"), - octest_legacy:ct_string("Create Constraint On()-[#usn7:@usn6]->()Assert Exists(`7esn`(Distinct {999}).usn1?)"), - octest_legacy:ct_string("Create Constraint On(@usn6:`6esn`)Assert Allshortestpaths(((`4esn` {`6esn`:#usn8[..{#usn7}]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]}))).#usn7! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:`1esn`)Assert Exists(Case When True[07..$usn2][$7..{usn1}] Then 's_str'[00][{`5esn`}] When 12e12 Ends With {usn1} Then 2.12 =~False End.`6esn`?)"), - octest_legacy:ct_string("Drop Constraint On(@usn5:_usn4)Assert Exists(All(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc]).@usn5)"), - octest_legacy:ct_string("Drop Constraint On(``:usn1)Assert Exists((`3esn` :`7esn`:_usn3)-[`7esn` *0X0123456789ABCDEF]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})<-[#usn8?:#usn7{`1esn`:#usn7 =~Count ( * ) =~``,usn2:`` Ends With $1000}]->(:@usn6:#usn8{`4esn`:$`8esn`[..00]}).`4esn`)"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`3esn`)Assert {`6esn`:#usn8[..{#usn7}],@usn5:`8esn`[`4esn`..{#usn8}][$12..2.12]}.`4esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`3esn`)Assert Shortestpath((:#usn8:#usn8{_usn4})).@usn6? Is Unique"), - octest_legacy:ct_string("Create Constraint On(`3esn`:``)Assert Exists((`` :_usn4{_usn4:False[..``],usn2:9e1[1000][{123456789}]})<-[:`5esn`{@usn6:$#usn8 Ends With $`2esn` Ends With $@usn6,`6esn`:{7}[..12e12][..Count ( * )]}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]->({@usn6:$usn1 Ends With $`` Ends With $12}).`1esn`!)"), - octest_legacy:ct_string("Drop Constraint On()<-[`3esn`:_usn3]-()Assert Exists([`3esn` In {7} Is Null Where {usn2}[.e0..$999]|01[2.12..`8esn`]].@usn6!)"), - octest_legacy:ct_string("Drop Constraint On()<-[@usn6:usn2]-()Assert Exists(Extract(_usn3 In {`3esn`}[`2esn`]).`7esn`!)"), - octest_legacy:ct_string("Create Constraint On(@usn5:`7esn`)Assert Exists({`3esn`:usn1 Is Null Is Null}.`2esn`?)"), - octest_legacy:ct_string("Create Constraint On()-[``:`3esn`]->()Assert Exists([`7esn`[..2.12][..{usn1}]].@usn5)"), - octest_legacy:ct_string("Create Constraint On(usn2:`6esn`)Assert Allshortestpaths((((`1esn` {@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00})-[`6esn`?:`3esn`|:#usn8]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})))).#usn7! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(_usn3:@usn5)Assert Case When 0X7[1000..{`1esn`}] Then Count(*) Ends With 12.0 Ends With 12 End.@usn6! Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[usn1:@usn5]->()Assert Exists(Extract(`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}|$@usn5 Starts With $1000).@usn5!)"), - octest_legacy:ct_string("Create Constraint On()-[usn1:`5esn`]-()Assert Exists(Any(#usn7 In {``} Is Not Null Where True =~010).`2esn`!)"), - octest_legacy:ct_string("Create Constraint On(`2esn`:`6esn`)Assert (@usn6 :``:#usn8)-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->(:``:#usn8{`4esn`:{`4esn`}[$123456789..][$#usn7..]})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}).`6esn`? Is Unique"), - octest_legacy:ct_string("Create Constraint On(`1esn`:#usn8)Assert Single(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 9e1[2.12..{#usn8}]).`8esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(usn1:`8esn`)Assert [01 Ends With 999 Ends With {`7esn`},#usn8[#usn8..],`5esn` Is Null].usn1! Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`3esn`:_usn3]->()Assert Exists(Case When @usn6[{`5esn`}] Then $_usn4 Contains Null Contains #usn8 When `5esn` Is Null Then 010[#usn7..True] Else {123456789} Contains $#usn8 End.@usn6)"), - octest_legacy:ct_string("Drop Constraint On(@usn5:usn2)Assert Exists({_usn4:`5esn` Is Null}.`2esn`?)"), - octest_legacy:ct_string("Drop Constraint On()-[`7esn`:`6esn`]-()Assert Exists(Allshortestpaths(({`1esn`:`3esn`[{`2esn`}]})-[`3esn`?*{`8esn`:False Is Null Is Null}]->(:#usn7{_usn4:$`8esn` Contains 123456789 Contains $usn2})).usn1?)"), - octest_legacy:ct_string("Create Constraint On(`5esn`:`2esn`)Assert Allshortestpaths((_usn4 :usn1)<-[`1esn`?:`4esn`]->(`5esn` :`4esn`)).usn2? Is Unique"), - octest_legacy:ct_string("Drop Constraint On()<-[`8esn`:#usn8]-()Assert Exists(Any(`` In `` Is Not Null Is Not Null Where {`7esn`} Is Null).`2esn`)"), - octest_legacy:ct_string("Drop Constraint On()-[`4esn`:usn1]->()Assert Exists(Reduce(_usn4=1.0 =~7 =~{usn2},usn1 In @usn5 =~{`5esn`} =~`5esn`|$#usn8[9e12..][.e1..]).#usn7?)"), - octest_legacy:ct_string("Create Constraint On(@usn6:`2esn`)Assert Allshortestpaths(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))).`8esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On()<-[_usn3:``]-()Assert Exists(Reduce(#usn7=9e12[`6esn`..12.0],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|{@usn5}[{#usn8}][9e0]).``)"), - octest_legacy:ct_string("Drop Constraint On()-[#usn7:@usn5]-()Assert Exists(Reduce(`3esn`=01234567 Is Null Is Null,#usn7 In {``} Is Not Null|{`5esn`} =~`4esn` =~{_usn4}).`3esn`?)"), - octest_legacy:ct_string("Drop Constraint On()-[`5esn`:@usn5]->()Assert Exists({@usn6:$_usn3[..1000]}.`3esn`?)"), - octest_legacy:ct_string("Create Constraint On(#usn7:`4esn`)Assert Reduce(@usn6=7[True..][2.12..],#usn8 In {`5esn`}[.e1..``]|$`3esn` Is Null)._usn4? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:@usn5)Assert Exists(Shortestpath((((:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`4esn` {@usn6:{12}[..0X7]})<-[:`6esn`|`5esn` *..010]-(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})))).`6esn`)"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:@usn6)Assert Allshortestpaths((@usn6 :_usn3:_usn3{`7esn`:$`6esn`[123456789..12][True..{`3esn`}],`5esn`:0X0123456789ABCDEF[123456789]})-[{#usn8:$#usn8 =~{@usn5},`8esn`:0X0123456789ABCDEF[{_usn4}..00]}]-(_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})<-[`6esn`? *..010]-(`` :`1esn`)).`2esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`1esn`:usn2]-()Assert Exists(Filter(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0).usn2)"), - octest_legacy:ct_string("Create Constraint On(``:#usn8)Assert Reduce(`8esn`=Count ( * ) Contains 07,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|\"d_str\"[#usn8]).`5esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`2esn`:_usn3)Assert `7esn`(Count(*) Ends With 12.0 Ends With 12)._usn4 Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`2esn`:_usn3]-()Assert Exists([_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $@usn6 Contains 07|999 Is Not Null Is Not Null].@usn5)"), - octest_legacy:ct_string("Create Constraint On(`7esn`:_usn4)Assert All(`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}).#usn8? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(``:usn1)Assert Exists((_usn4 :``:#usn8{#usn7})<-[?:`7esn`{`3esn`:{#usn8}[010]}]-(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})<-[`7esn`? *7..12]->(@usn6 :_usn3:_usn3).`7esn`?)"), - octest_legacy:ct_string("Drop Constraint On(``:#usn7)Assert `4esn`(0X7[$999][_usn4],#usn8 Is Not Null Is Not Null).`5esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On(usn2:usn2)Assert [2.12 Contains usn2 Contains True].`8esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:usn2)Assert [`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 123.654[$`1esn`]]._usn3! Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`1esn`:#usn8]->()Assert Exists(Any(#usn8 In {`5esn`}[.e1..``] Where {_usn3}[..\"d_str\"][..`5esn`]).usn1!)"), - octest_legacy:ct_string("Create Constraint On(`8esn`:_usn3)Assert {#usn8:`4esn`[``]}.usn2 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(``:`5esn`)Assert [`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`4esn`} Starts With $usn2 Starts With $1000|123456789 Is Null].usn2? Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn6:usn2)Assert Exists(Reduce(`8esn`=$0[$`1esn`..07],`8esn` In 01[2.12..`8esn`]|{12} =~#usn8)._usn4?)"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`5esn`)Assert Exists((:usn2{`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})-[@usn6?$0]-(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7}).usn2!)"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:_usn4)Assert [#usn7 In {``} Is Not Null Where usn1[9e12..][$7..]].`1esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On()<-[`8esn`:`4esn`]-()Assert Exists(Reduce(`3esn`=12.0[123.654][Count(*)],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|`1esn` =~\"d_str\").usn1?)"), - octest_legacy:ct_string("Create Constraint On(`3esn`:`1esn`)Assert Exists(Reduce(usn1=01 Contains {`8esn`} Contains 2.12,`5esn` In $999[0.0..]|0x0[`4esn`..'s_str'])._usn3!)"), - octest_legacy:ct_string("Drop Constraint On()-[_usn3:`8esn`]-()Assert Exists(Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 01[2.12..`8esn`])._usn4)"), - octest_legacy:ct_string("Drop Constraint On()<-[`1esn`:`6esn`]-()Assert Exists(Reduce(`4esn`=$`3esn`[..$123456789][..$`1esn`],@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|$#usn8[$`8esn`..{`8esn`}]).`7esn`)"), - octest_legacy:ct_string("Create Constraint On(`4esn`:_usn3)Assert None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]).`8esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`6esn`:#usn8)Assert Exists(Reduce(usn1=01 Contains {`8esn`} Contains 2.12,`5esn` In $999[0.0..]|0x0[`4esn`..'s_str']).`2esn`)"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:usn2)Assert Exists(Shortestpath((`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})<-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(`3esn` :`6esn`)).`8esn`!)"), - octest_legacy:ct_string("Drop Constraint On(@usn5:`2esn`)Assert Exists((_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})<-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :`3esn`:@usn5)<-[? *..999]-(#usn8 :`5esn`{#usn8:0xabc[.e0]}).`7esn`?)"), - octest_legacy:ct_string("Drop Constraint On(#usn8:`7esn`)Assert Exists(Filter(usn1 In @usn5 =~{`5esn`} =~`5esn` Where $`1esn`[1.0..][_usn3..]).`4esn`)"), - octest_legacy:ct_string("Drop Constraint On()-[usn2:#usn8]->()Assert Exists(Reduce(#usn8={0}[01][`7esn`],@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|2.12 =~False).#usn7)"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:_usn4)Assert Exists(Case When .e12 Ends With _usn4 Then True[..$`6esn`] When 123.654[0e0..$``][$`1esn`..$`8esn`] Then {`1esn`}[usn1][.e1] Else {#usn7} Is Not Null Is Not Null End.`7esn`)"), - octest_legacy:ct_string("Drop Constraint On()<-[_usn4:`4esn`]-()Assert Exists((@usn6 :`1esn`{#usn8:`4esn`[1.0],``:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn4?:_usn4|:usn2 *00]->(`` :`5esn`)._usn3)"), - octest_legacy:ct_string("Drop Constraint On()-[_usn4:`7esn`]->()Assert Exists(Case $`4esn`[..$`3esn`][..0.0] When 1.0 =~7 =~{usn2} Then #usn8 End.`7esn`?)"), - octest_legacy:ct_string("Drop Constraint On()<-[`8esn`:`4esn`]-()Assert Exists(Allshortestpaths((:`4esn`{`5esn`})<-[@usn6?:`5esn`]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})).`8esn`)"), - octest_legacy:ct_string("Create Constraint On(#usn7:`2esn`)Assert Exists(Allshortestpaths(((:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}))).`3esn`)"), - octest_legacy:ct_string("Create Constraint On()<-[``:usn1]-()Assert Exists(Case {999} Is Null Is Null When 12.0 =~1.0 =~9e12 Then $usn1 In {999} In $#usn7 Else `1esn` Ends With {_usn3} Ends With `2esn` End.usn2)"), - octest_legacy:ct_string("Create Constraint On(`2esn`:`6esn`)Assert {_usn4:12e12[$`3esn`],_usn3:usn2 Is Null}.`3esn`? Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`8esn`:`3esn`]-()Assert Exists(Single(_usn3 In {`3esn`}[`2esn`] Where `3esn`[`3esn`..][#usn8..]).`8esn`!)"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:#usn8)Assert Exists((`7esn` {`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})._usn4)"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:@usn6)Assert Exists(Reduce(#usn8=123.654[$`1esn`],#usn8 In {`5esn`}[.e1..``]|{`5esn`} Starts With $`5esn` Starts With .e1).`2esn`)"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:_usn4)Assert All(`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}).#usn8? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:`4esn`)Assert [`4esn` In $`3esn` Is Not Null Where `7esn`[..2.12][..{usn1}]|#usn7 Contains _usn3 Contains {`3esn`}]._usn4! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`3esn`)Assert Exists([#usn7 In {``} Is Not Null Where @usn5 In {`7esn`} In `2esn`].#usn7!)"), - octest_legacy:ct_string("Drop Constraint On()-[`4esn`:#usn8]->()Assert Exists(Extract(`5esn` In \"d_str\" Is Null Is Null Where #usn8|$0[$`1esn`..07]).#usn7)"), - octest_legacy:ct_string("Drop Constraint On()-[`4esn`:_usn3]-()Assert Exists(Shortestpath(((`5esn` :`2esn`:usn1)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3))).usn2?)"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:`2esn`)Assert Exists((`6esn` :@usn6:#usn8)-[`1esn`?:`8esn`]->(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})._usn3!)"), - octest_legacy:ct_string("Drop Constraint On(@usn6:`3esn`)Assert Case `4esn`[1.0] When $`4esn`[9e12..123.654] Then $`4esn` In Null In 0xabc End.``? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`5esn`)Assert Exists(`4esn`().`6esn`?)"), - octest_legacy:ct_string("Create Constraint On(`7esn`:#usn8)Assert Exists(Shortestpath((`4esn` {`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}})).`6esn`?)"), - octest_legacy:ct_string("Drop Constraint On(@usn5:`4esn`)Assert count($1000 Is Null,0Xa[$123456789..123.654][.e12..0.e0]).`8esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(_usn3:_usn4)Assert Exists([@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 01[2.12..`8esn`]|$`2esn`[2.12..'s_str'][{@usn6}.._usn4]]._usn3)"), - octest_legacy:ct_string("Drop Constraint On()-[`6esn`:_usn3]->()Assert Exists([1.0[0X0123456789ABCDEF]].@usn6!)"), - octest_legacy:ct_string("Drop Constraint On()<-[#usn8:@usn6]-()Assert Exists([`5esn` In $999[0.0..] Where {_usn3}[..\"d_str\"]|Count(*) Is Null Is Null]._usn3)"), - octest_legacy:ct_string("Create Constraint On(`5esn`:usn2)Assert [$`5esn` Starts With $0 Starts With {0},0x0[`4esn`..'s_str'],$usn2[9e0]].#usn8! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`1esn`:_usn3)Assert Exists(Extract(`3esn` In {7} Is Null Where 0.e0[123.654][01]|12e12 Is Not Null Is Not Null).#usn7)"), - octest_legacy:ct_string("Create Constraint On()-[#usn7:`2esn`]-()Assert Exists(Case `5esn` Starts With $`2esn` Starts With $1000 When 123.654 =~$usn2 =~{999} Then Count ( * ) Contains `8esn` Contains .e1 End.usn2?)"), - octest_legacy:ct_string("Create Constraint On(`5esn`:usn1)Assert None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e1 Is Not Null).`5esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(usn1:usn1)Assert Extract(`` In `` Is Not Null Is Not Null Where `4esn`[..Count ( * )][..{#usn7}]|00[`2esn`..12][123456789..0.e0]).usn2? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(#usn7:`1esn`)Assert Exists(Single(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 01[{@usn5}])._usn3?)"), - octest_legacy:ct_string("Drop Constraint On(@usn6:`3esn`)Assert {_usn3:{7}[..1.0][..9e0],`8esn`:{123456789} Is Not Null}.usn2 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(@usn6:`1esn`)Assert Exists(Reduce(`8esn`={`2esn`} Is Not Null Is Not Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{usn1} Ends With $0).`8esn`)"), - octest_legacy:ct_string("Drop Constraint On()-[`8esn`:`2esn`]->()Assert Exists(Reduce(`6esn`=$`4esn`[9e12..123.654],`8esn` In 01[2.12..`8esn`]|$0[$`1esn`..07]).@usn5!)"), - octest_legacy:ct_string("Create Constraint On(#usn8:`4esn`)Assert Exists(Reduce(`8esn`={`2esn`} Is Not Null Is Not Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{usn1} Ends With $0).`8esn`)"), - octest_legacy:ct_string("Create Constraint On(``:``)Assert {`3esn`:$usn1 Ends With $`` Ends With $12,_usn4:12.e12[..Null][..$#usn8]}.`3esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn5:`6esn`)Assert Exists({`1esn`:\"d_str\" Starts With 01}.`4esn`!)"), - octest_legacy:ct_string("Drop Constraint On()<-[@usn6:`2esn`]-()Assert Exists({`6esn`:0.e0 Ends With $#usn7 Ends With $7}.`5esn`?)"), - octest_legacy:ct_string("Drop Constraint On()-[_usn3:usn2]->()Assert Exists(_usn3(Distinct).#usn8)"), - octest_legacy:ct_string("Drop Constraint On()-[usn2:#usn8]->()Assert Exists((:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})-[ *..999{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(@usn5 {_usn3:`1esn` Contains {usn2} Contains $#usn8}).`6esn`)"), - octest_legacy:ct_string("Create Constraint On(`7esn`:#usn7)Assert `7esn`(Distinct $`6esn`[123456789..12][True..{`3esn`}],7 =~{`8esn`} =~$`6esn`).#usn7 Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn5:`5esn`)Assert [`5esn` In \"d_str\" Is Null Is Null Where {0}]._usn4? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`2esn`)Assert [`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`]|{`7esn`}[..$@usn5][..$#usn8]].`5esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`7esn`:`7esn`)Assert {`3esn`:\"d_str\" Is Null Is Null,usn1:0X0123456789ABCDEF[123456789]}.`5esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`8esn`:`3esn`]-()Assert Exists({@usn5:$`3esn` Is Not Null}.`4esn`!)"), - octest_legacy:ct_string("Create Constraint On(#usn8:`4esn`)Assert Exists(Shortestpath(((({#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[`4esn`]->(:`6esn`$123456789)))).usn2!)"), - octest_legacy:ct_string("Create Constraint On(`2esn`:usn2)Assert None(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where $@usn5 =~1000 =~1000).`5esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On(usn2:`4esn`)Assert Exists(None(`4esn` In $`3esn` Is Not Null Where `2esn`[..$#usn8][..Count(*)]).`3esn`)"), - octest_legacy:ct_string("Create Constraint On(`6esn`:@usn6)Assert Allshortestpaths(((@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[? *..12{#usn8:`5esn` Is Null,#usn8:`1esn`[{usn1}..``][7..$#usn8]}]-(`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]}))).`7esn`? Is Unique"), - octest_legacy:ct_string("Create Constraint On(`5esn`:`4esn`)Assert Exists(Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {_usn4} In {12} In $0).usn2?)"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:`5esn`)Assert Exists(({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]-(:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654}).@usn5?)"), - octest_legacy:ct_string("Drop Constraint On()-[_usn4:@usn5]-()Assert Exists(Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where ``[$`2esn`]).`6esn`?)"), - octest_legacy:ct_string("Create Constraint On()-[`7esn`:usn1]-()Assert Exists(Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]|07[..True][..9e12]).`8esn`!)"), - octest_legacy:ct_string("Drop Constraint On(usn2:``)Assert Exists(Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 's_str' Ends With 7 Ends With {_usn4}).`2esn`?)"), - octest_legacy:ct_string("Create Constraint On()-[``:`2esn`]->()Assert Exists(Shortestpath((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})).usn2?)"), - octest_legacy:ct_string("Drop Constraint On()-[`2esn`:`2esn`]->()Assert Exists(Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``]).`8esn`)"), - octest_legacy:ct_string("Create Constraint On(#usn7:`3esn`)Assert Exists([{12} Contains {123456789} Contains `4esn`,1.e1[`8esn`][00],1.0[$`1esn`..][$123456789..]].usn1?)"), - octest_legacy:ct_string("Create Constraint On(`6esn`:`3esn`)Assert Allshortestpaths((({_usn3:.e12[@usn5..$12]})-[`7esn` *0X0123456789ABCDEF]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0}))).usn1 Is Unique"), - octest_legacy:ct_string("Create Constraint On(#usn7:`8esn`)Assert Single(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {`4esn`} =~{7} =~{`7esn`}).`` Is Unique"), - octest_legacy:ct_string("Create Constraint On(`7esn`:`7esn`)Assert Exists(Extract(`8esn` In 01[2.12..`8esn`] Where Count ( * ) Ends With $@usn5|Count ( * )[True..][{#usn7}..]).`6esn`!)"), - octest_legacy:ct_string("Create Constraint On(@usn6:``)Assert (#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})<-[? *1000..00]->(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}).`8esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`1esn`:_usn3]-()Assert Exists([_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null|@usn6 Is Null Is Null].`6esn`)"), - octest_legacy:ct_string("Create Constraint On(_usn4:_usn3)Assert [`5esn` In $999[0.0..] Where $`3esn`[..$123456789][..$`1esn`]|7[..999][..{#usn8}]]._usn4? Is Unique"), - octest_legacy:ct_string("Create Constraint On(`5esn`:`5esn`)Assert Exists(Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..])._usn4!)"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:@usn5)Assert Filter(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {``} Starts With $`2esn` Starts With `1esn`).`4esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[#usn7:@usn5]-()Assert Exists(Any(`2esn` In `1esn` =~\"d_str\" Where $`4esn` In Null In 0xabc)._usn3?)"), - octest_legacy:ct_string("Create Constraint On(`2esn`:`3esn`)Assert Case #usn8[..{#usn7}] When $@usn5 Starts With $1000 Then 0e0 In @usn5 Else $#usn7 Contains 0x0 Contains 1000 End.usn2 Is Unique"), - octest_legacy:ct_string("Create Constraint On(`7esn`:@usn6)Assert Exists(Filter(`` In `` Is Not Null Is Not Null Where 9e1[1000][{123456789}]).`6esn`?)"), - octest_legacy:ct_string("Create Constraint On(#usn7:`1esn`)Assert Exists(Shortestpath((#usn8 {#usn7:`4esn` Ends With 07 Ends With {`3esn`},`3esn`:{0} In $_usn3})<-[:`4esn` *..010{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]->(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})).#usn7)"), - octest_legacy:ct_string("Drop Constraint On(usn2:`5esn`)Assert [{1000} =~0 =~123.654,\"d_str\" Starts With $123456789,$`2esn`[2.12..'s_str'][{@usn6}.._usn4]].`4esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`5esn`:``]-()Assert Exists({`4esn`:12e12 Ends With {usn1}}._usn3!)"), - octest_legacy:ct_string("Drop Constraint On(usn1:`5esn`)Assert ({`1esn`:$`8esn`[1000..0Xa]})-[:`8esn` *0..{_usn3:`4esn` Ends With 07 Ends With {`3esn`}}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null}).`8esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On()<-[usn1:@usn6]-()Assert Exists(Shortestpath((((`8esn` :#usn8:#usn8{_usn4:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[#usn8]-(`6esn` :#usn7)<-[:#usn7 *..010]-(@usn6 :@usn5{usn2:$`5esn`[..$`5esn`][..$12]})))).@usn5!)"), - octest_legacy:ct_string("Create Constraint On(_usn4:`8esn`)Assert $`7esn`.`8esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(#usn8:``)Assert Exists(Any(`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"]).@usn6)"), - octest_legacy:ct_string("Create Constraint On(`2esn`:_usn4)Assert Exists(Filter(#usn8 In 7[..999][..{#usn8}] Where 2.12['s_str'..$12][{`1esn`}..`2esn`]).@usn5)"), - octest_legacy:ct_string("Drop Constraint On()<-[`4esn`:@usn5]-()Assert Exists([$@usn5[..12e12][..$123456789]].`3esn`?)"), - octest_legacy:ct_string("Drop Constraint On(_usn4:#usn7)Assert [{`2esn`} Starts With 0.0 Starts With {usn1}].usn1! Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[@usn5:@usn6]->()Assert Exists(Reduce(`5esn`=$123456789 Starts With 9e0 Starts With 's_str',`` In 123456789 Ends With 12.e12 Ends With $`7esn`|False =~$7 =~2.12).`6esn`?)"), - octest_legacy:ct_string("Create Constraint On()<-[usn2:`4esn`]-()Assert Exists({#usn7:{`4esn`} =~9e0 =~{12},#usn7:True[07..$usn2][$7..{usn1}]}.#usn8!)"), - octest_legacy:ct_string("Create Constraint On(`1esn`:`4esn`)Assert (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})<-[`1esn`:_usn4|:usn2]->(`` :`3esn`:@usn5{`8esn`:`4esn` Is Not Null Is Not Null,`2esn`:2.12 Ends With $_usn3 Ends With `3esn`}).@usn6! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:#usn7)Assert Reduce(usn1=Count ( * ) Ends With 12.0,`3esn` In {7} Is Null|$999).`3esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:usn1)Assert [$@usn5 Starts With $1000,0x0 Is Null,`1esn`[{usn1}..``][7..$#usn8]]._usn3 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:`2esn`)Assert Filter(_usn3 In {`3esn`}[`2esn`] Where 0e0[07]).@usn6 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:``)Assert Exists([`7esn`[$0][9e12],$`7esn`['s_str']].`6esn`!)"), - octest_legacy:ct_string("Create Constraint On(``:@usn5)Assert Exists(None(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {#usn8}[.._usn4][..$`3esn`])._usn4!)"), - octest_legacy:ct_string("Create Constraint On(#usn7:`6esn`)Assert Exists((:`7esn`:_usn3)<-[`6esn`?:`4esn` *..01]->(`3esn` :#usn7{usn2:12.0 =~999 =~$_usn3,@usn6:{usn2}[$`3esn`..][{#usn7}..]})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}).`4esn`)"), - octest_legacy:ct_string("Create Constraint On(`1esn`:@usn6)Assert Reduce(`4esn`={7}[$``][{@usn6}],usn1 In @usn5 =~{`5esn`} =~`5esn`|0.e0[123.654][01]).`4esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(`2esn`:_usn4)Assert Shortestpath(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))).@usn6 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(#usn7:#usn7)Assert Exists([`4esn` In $`3esn` Is Not Null Where @usn5 =~{`5esn`} =~`5esn`|#usn8].@usn5?)"), - octest_legacy:ct_string("Create Constraint On()<-[`1esn`:`3esn`]-()Assert Exists(All(#usn7 In {``} Is Not Null Where {`6esn`} =~$999).`4esn`!)"), - octest_legacy:ct_string("Drop Constraint On(@usn6:``)Assert Exists(Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {#usn8}[.._usn4][..$`3esn`]).`8esn`)"), - octest_legacy:ct_string("Create Constraint On(``:`8esn`)Assert Exists(Single(#usn8 In {`5esn`}[.e1..``] Where {`1esn`}[12.0..`2esn`][@usn6..{usn1}]).``!)"), - octest_legacy:ct_string("Drop Constraint On(_usn3:`8esn`)Assert Exists(({`7esn`:7[{0}..{_usn4}]})-[`` *..12]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})-[:`2esn`*..{`1esn`}]-(usn2 :`5esn`{`7esn`:01234567 Is Null Is Null})._usn3?)"), - octest_legacy:ct_string("Create Constraint On(`7esn`:#usn8)Assert Exists(`8esn`(00 Starts With 0xabc,{12} Is Not Null).`6esn`!)"), - octest_legacy:ct_string("Create Constraint On()-[`4esn`:#usn7]->()Assert Exists([`` In `` Is Not Null Is Not Null|@usn6 Starts With `6esn` Starts With $`1esn`]._usn3)"), - octest_legacy:ct_string("Create Constraint On()<-[`2esn`:`7esn`]-()Assert Exists(All(`2esn` In `1esn` =~\"d_str\" Where 0.12 In _usn3 In {0}).``!)"), - octest_legacy:ct_string("Create Constraint On(`6esn`:`7esn`)Assert Extract(`2esn` In `1esn` =~\"d_str\" Where `` Ends With 123456789 Ends With 123.654|#usn7 =~Count ( * ) =~``).`2esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`5esn`:``]->()Assert Exists(`4esn`(Distinct $_usn3['s_str'][07],{12}[..0X7]).`5esn`?)"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:``)Assert Exists(Allshortestpaths((:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 :usn1)).`2esn`)"), - octest_legacy:ct_string("Create Constraint On(`8esn`:#usn8)Assert Exists([01 =~{_usn3} =~`3esn`,9e1[2.12..{#usn8}],{usn2}[.e0..$999]].`8esn`)"), - octest_legacy:ct_string("Create Constraint On(usn1:_usn3)Assert (:`3esn`:@usn5)-[?:`5esn`{`4esn`:{`4esn`}[$123456789..][$#usn7..]}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]}).`8esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:@usn6)Assert Exists(Filter(#usn8 In 7[..999][..{#usn8}] Where $@usn5 Starts With {0} Starts With 12).usn2?)"), - octest_legacy:ct_string("Create Constraint On()<-[`7esn`:`2esn`]-()Assert Exists({`8esn`:{_usn4} Ends With `6esn`,``:{1000}[{_usn3}..]}.#usn7?)"), - octest_legacy:ct_string("Create Constraint On(#usn8:usn1)Assert Allshortestpaths((({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})-[`6esn`?]->({@usn6:$usn1 Ends With $`` Ends With $12}))).``! Is Unique"), - octest_legacy:ct_string("Create Constraint On()<-[`8esn`:`1esn`]-()Assert Exists([`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|usn1 Is Not Null].usn1)"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:usn2)Assert Filter(`5esn` In \"d_str\" Is Null Is Null).@usn6! Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`1esn`:@usn6]->()Assert Exists(None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa).``?)"), - octest_legacy:ct_string("Create Constraint On(`2esn`:`2esn`)Assert Reduce(`4esn`=$usn1 In {999} In $#usn7,`8esn` In 01[2.12..`8esn`]|usn2 Is Not Null Is Not Null).`5esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[#usn7:_usn3]-()Assert Exists(Allshortestpaths((:@usn5{_usn3:07 =~01}))._usn4)"), - octest_legacy:ct_string("Create Constraint On(_usn4:#usn8)Assert Exists([12.e12 Starts With {999} Starts With {`1esn`}].`6esn`?)"), - octest_legacy:ct_string("Create Constraint On(`2esn`:@usn6)Assert Exists({#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}.@usn6)"), - octest_legacy:ct_string("Create Constraint On()-[``:`2esn`]-()Assert Exists(#usn7(0.e0 Starts With `2esn`).`6esn`!)"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:`4esn`)Assert (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})<-[`1esn`:_usn4|:usn2]->(`` :`3esn`:@usn5{`8esn`:`4esn` Is Not Null Is Not Null,`2esn`:2.12 Ends With $_usn3 Ends With `3esn`}).@usn6! Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn6:`6esn`)Assert Exists([`3esn` In {7} Is Null Where usn1 Is Null Is Null].`8esn`!)"), - octest_legacy:ct_string("Create Constraint On(_usn3:_usn4)Assert All(#usn7 In {``} Is Not Null Where @usn5 In {`7esn`} In `2esn`).`5esn`? Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn6:_usn4)Assert Exists(Case When $`7esn` =~{`8esn`} =~$usn1 Then $`4esn`[9e12..123.654] When $#usn7 Is Null Then Count(*) Is Null Is Null End.#usn7?)"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:@usn6)Assert Exists(Single(`4esn` In $`3esn` Is Not Null Where {`6esn`}).#usn7?)"), - octest_legacy:ct_string("Drop Constraint On(#usn8:`3esn`)Assert Exists({`6esn`:$usn1 Ends With $`` Ends With $12}._usn4?)"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:`1esn`)Assert Exists(`4esn`(Distinct $_usn3['s_str'][07],{12}[..0X7])._usn4)"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:#usn7)Assert Any(`3esn` In {7} Is Null Where usn1 Is Null Is Null).`4esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:usn2)Assert Exists(None(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12])._usn3)"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:`4esn`)Assert Exists([@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where 1.0 Contains $_usn4].`2esn`!)"), - octest_legacy:ct_string("Create Constraint On()-[@usn5:@usn6]->()Assert Exists(Reduce(`7esn`=$#usn8[$`2esn`..][{`2esn`}..],#usn7 In `2esn`[..$#usn8][..Count(*)]|$123456789 Ends With {`1esn`} Ends With $`4esn`).`3esn`?)"), - octest_legacy:ct_string("Create Constraint On()<-[usn2:@usn6]-()Assert Exists([#usn7 In {``} Is Not Null Where 123456789[0xabc..'s_str'][``..`1esn`]|{`1esn`}[12.0..`2esn`][@usn6..{usn1}]].`3esn`)"), - octest_legacy:ct_string("Create Constraint On(usn1:usn2)Assert Exists(Shortestpath(({`7esn`:{999}})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})).``!)"), - octest_legacy:ct_string("Drop Constraint On()-[_usn3:`4esn`]->()Assert Exists(Allshortestpaths(((usn2 :`4esn`)-[_usn3:#usn8|`1esn`{_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]}]->(@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:`5esn` *0..{_usn4:7[$`2esn`..{`5esn`}]}]->())).`5esn`?)"), - octest_legacy:ct_string("Create Constraint On(`5esn`:_usn3)Assert {`6esn`:01 Is Null,`7esn`:True In 0e0}.`1esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:`5esn`)Assert Exists(usn1(0e0 =~`6esn` =~123456789,$#usn8[$`2esn`..][{`2esn`}..]).`8esn`)"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`2esn`)Assert Exists(Reduce(usn2=0.e0 In $#usn7 In $_usn3,`3esn` In {7} Is Null|{12} Is Null Is Null).`7esn`)"), - octest_legacy:ct_string("Create Constraint On(`5esn`:``)Assert Exists(Reduce(`5esn`=usn1 Is Not Null,@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|7 Is Not Null Is Not Null).`3esn`)"), - octest_legacy:ct_string("Create Constraint On(`3esn`:`7esn`)Assert Exists([$`5esn` Starts With $0 Starts With {0},0x0[`4esn`..'s_str'],$usn2[9e0]].#usn8!)"), - octest_legacy:ct_string("Create Constraint On(#usn7:_usn3)Assert Reduce(#usn7=$@usn5[..12e12][..$123456789],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{``} Is Not Null).`1esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`6esn`:`1esn`]-()Assert Exists(Allshortestpaths((`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})).``)"), - octest_legacy:ct_string("Create Constraint On()<-[`8esn`:#usn8]-()Assert Exists(None(`3esn` In {7} Is Null Where {123456789} Contains $#usn8)._usn3)"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:usn1)Assert Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where {@usn5} Is Null Is Null|01[2.12..`8esn`])._usn3! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:`4esn`)Assert Exists(Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``]).`5esn`?)"), - octest_legacy:ct_string("Drop Constraint On()-[`3esn`:_usn4]->()Assert Exists(Case `4esn`[1.0] When $`4esn`[9e12..123.654] Then $`4esn` In Null In 0xabc End.`7esn`?)"), - octest_legacy:ct_string("Create Constraint On(`8esn`:`6esn`)Assert Exists(({`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}})-[:#usn7 *..010]->(:`1esn`{})-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01}).`5esn`?)"), - octest_legacy:ct_string("Drop Constraint On()<-[``:usn2]-()Assert Exists(Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {@usn6}[7]|$_usn3[.e0..$usn2]).#usn7)"), - octest_legacy:ct_string("Create Constraint On(usn1:#usn8)Assert Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn1[9e12..][$7..]).usn2? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(_usn4:`4esn`)Assert Exists(``(Distinct $_usn3 Contains 999 Contains \"d_str\").``?)"), - octest_legacy:ct_string("Drop Constraint On()-[`2esn`:_usn3]-()Assert Exists(None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`).``?)"), - octest_legacy:ct_string("Create Constraint On()-[@usn5:@usn6]->()Assert Exists(Any(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`6esn`}).``?)"), - octest_legacy:ct_string("Create Constraint On(`2esn`:`4esn`)Assert Reduce(`4esn`=$_usn4 Ends With usn1 Ends With $0,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|.e12 Is Not Null Is Not Null).usn1? Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[@usn6:usn2]-()Assert Exists(`1esn`($1000[999],True In 0e0).`8esn`!)"), - octest_legacy:ct_string("Create Constraint On(`2esn`:usn1)Assert {`5esn`:$123456789 In 0X0123456789ABCDEF In 0.e0,``:$1000[0Xa][{#usn7}]}.`7esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:``)Assert Exists(Reduce(`2esn`=.e1[{`7esn`}..{_usn4}],#usn7 In `2esn`[..$#usn8][..Count(*)]|usn1 In 7 In {123456789}).`1esn`)"), - octest_legacy:ct_string("Create Constraint On(`1esn`:``)Assert (#usn7 {@usn6:1.0[0e0..0.e0],`5esn`:9e1 In $`3esn` In $@usn6})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->(`4esn` )-[`7esn`*]->(:#usn7{@usn5:{12} =~#usn8}).`8esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`3esn`:`3esn`]-()Assert Exists(Case When 1.0 Starts With 12e12 Starts With {`5esn`} Then {0}[{`8esn`}..`4esn`] When usn2[{7}] Then $`4esn`[`7esn`] Else 9e1 In $`3esn` In $@usn6 End.@usn5!)"), - octest_legacy:ct_string("Create Constraint On(@usn5:@usn5)Assert (:#usn8:#usn8)<-[? *0X7..{#usn8:{1000} Is Null Is Null,`3esn`:0.e0 Starts With 12.e12 Starts With {_usn4}}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12}).usn2! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`7esn`:@usn6)Assert Shortestpath((((`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})-[usn1:_usn3|_usn3 *..999{`2esn`:'s_str'[00][{`5esn`}],@usn6:999 Is Not Null Is Not Null}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})))).`1esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`6esn`:`1esn`)Assert Exists(Filter(#usn7 In {``} Is Not Null Where Count ( * ) =~$usn2 =~$usn2).usn1)"), - octest_legacy:ct_string("Drop Constraint On(@usn6:`3esn`)Assert Exists(usn2(Distinct `5esn` Is Null,#usn8 Is Not Null Is Not Null).``)"), - octest_legacy:ct_string("Create Constraint On(`4esn`:``)Assert Allshortestpaths((`2esn` :`8esn`:`7esn`)-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})).`8esn`? Is Unique"), - octest_legacy:ct_string("Create Constraint On(_usn4:usn2)Assert Case When $#usn8 Ends With $`2esn` Ends With $@usn6 Then $@usn5[010..$#usn8][12..$`4esn`] When $12 Ends With 07 Ends With $123456789 Then $`4esn`[`7esn`] Else {`3esn`}[`2esn`] End.usn1! Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`3esn`:`4esn`]-()Assert Exists(({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[`6esn`?:`4esn` *..01]-({`7esn`:{999}}).`4esn`!)"), - octest_legacy:ct_string("Create Constraint On()-[@usn6:`3esn`]->()Assert Exists({_usn4:00 Starts With 0xabc}.`2esn`?)"), - octest_legacy:ct_string("Create Constraint On(`7esn`:`3esn`)Assert Exists((`7esn` :`8esn`:`7esn`)-[?:`2esn` *00]->(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]}).`7esn`)"), - octest_legacy:ct_string("Create Constraint On(`4esn`:`1esn`)Assert Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..]|0xabc[01..{999}][{7}..{`7esn`}])._usn3! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:_usn3)Assert Exists(`5esn`(@usn6 Contains Null Contains $`7esn`).@usn6!)"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:`1esn`)Assert Exists({_usn3:{#usn7} Is Not Null Is Not Null}.`6esn`?)"), - octest_legacy:ct_string("Create Constraint On()-[`4esn`:#usn7]-()Assert Exists(All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 's_str' Ends With 7 Ends With {_usn4})._usn4!)"), - octest_legacy:ct_string("Create Constraint On()<-[`5esn`:@usn5]-()Assert Exists({`3esn`:{0}[01][`7esn`],`8esn`:2.12 Is Null}.usn2)"), - octest_legacy:ct_string("Drop Constraint On(@usn6:_usn3)Assert Exists((`` :`2esn`:usn1{`2esn`:$7 Is Not Null Is Not Null,`1esn`:`1esn` =~\"d_str\"})<-[usn2?:`5esn`{`8esn`:{_usn4}[1000..{@usn5}],_usn3:12e12 Ends With {usn1}}]-(usn2 {_usn3:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`1esn`:7[$`8esn`..123456789][$usn1..$usn1]})<-[ *..12]->(`3esn` :@usn5{`8esn`:$`8esn` =~{1000}}).`6esn`)"), - octest_legacy:ct_string("Drop Constraint On()-[_usn3:@usn6]->()Assert Exists((usn1 {`7esn`:{999}})<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4).#usn7!)"), - octest_legacy:ct_string("Create Constraint On()-[#usn7:usn2]->()Assert Exists(Reduce(usn1=$12 Is Null Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|Count ( * ) Contains {`1esn`} Contains 07).`4esn`)"), - octest_legacy:ct_string("Create Constraint On()-[`3esn`:#usn8]-()Assert Exists(Extract(`3esn` In {7} Is Null Where 0.e0[123.654][01]|{@usn5}[{#usn8}][9e0]).@usn6!)"), - octest_legacy:ct_string("Drop Constraint On()-[`7esn`:`6esn`]-()Assert Exists((#usn7 :``:#usn8{`2esn`})-[`2esn`?{_usn3:$_usn4[Count ( * )..],#usn7:{`3esn`}[..07][..{`5esn`}]}]-({_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}).`1esn`?)"), - octest_legacy:ct_string("Drop Constraint On()<-[usn1:#usn7]-()Assert Exists(Allshortestpaths((((usn2 :#usn8:#usn8)-[`2esn`?:`7esn` *..07$0]-(`4esn` )-[:`2esn`*..{`1esn`}]-(`` {@usn6:1.0[$`1esn`..][$123456789..]})))).`2esn`?)"), - octest_legacy:ct_string("Drop Constraint On()<-[usn2:`6esn`]-()Assert Exists(Extract(#usn7 In {``} Is Not Null Where `8esn`[{123456789}..]).`3esn`)"), - octest_legacy:ct_string("Create Constraint On()<-[@usn6:`7esn`]-()Assert Exists(Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {_usn4}[...e1][..$7]|$1000[999]).#usn7)"), - octest_legacy:ct_string("Create Constraint On(`6esn`:@usn5)Assert Reduce(`5esn`=07[..True][..9e12],#usn8 In {`5esn`}[.e1..``]|@usn5 =~{`5esn`} =~`5esn`).`1esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(_usn3:usn2)Assert Exists(Filter(`4esn` In $`3esn` Is Not Null Where 12.0 =~999 =~$_usn3).`5esn`!)"), - octest_legacy:ct_string("Drop Constraint On()-[`3esn`:`5esn`]->()Assert Exists(Case usn1 Ends With $@usn6 Ends With `3esn` When $`7esn`['s_str'] Then 0X0123456789ABCDEF =~1e1 =~{`4esn`} When Null Ends With `2esn` Ends With $usn1 Then {#usn7}[9e1..][{123456789}..] Else {_usn3}[12.e12] End.`6esn`)"), - octest_legacy:ct_string("Create Constraint On()-[#usn8:`3esn`]->()Assert Exists([$_usn4 Contains Null Contains #usn8,usn2 Is Null,$`8esn`].@usn5?)"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:`6esn`)Assert Exists(({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})-[:#usn8|`1esn` *..01{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}]->(`1esn` {@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}).@usn6!)"), - octest_legacy:ct_string("Drop Constraint On()-[_usn3:#usn7]->()Assert Exists(Case When 0X7[1000..{`1esn`}] Then Count(*) Ends With 12.0 Ends With 12 End.#usn7)"), - octest_legacy:ct_string("Create Constraint On(@usn6:_usn4)Assert Exists([`6esn` In 0Xa,`8esn` Contains $usn1 Contains $12].`2esn`)"), - octest_legacy:ct_string("Drop Constraint On()-[`4esn`:usn1]->()Assert Exists(Reduce(usn1={usn1} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|False)._usn4!)"), - octest_legacy:ct_string("Create Constraint On(usn1:`5esn`)Assert Exists(None(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 7[True..][2.12..])._usn4?)"), - octest_legacy:ct_string("Create Constraint On(``:usn2)Assert Exists(Case When _usn3[$`8esn`] Then $0[..9e1] End.`7esn`)"), - octest_legacy:ct_string("Create Constraint On(`3esn`:#usn7)Assert Case `4esn`[1.0] When $`4esn`[9e12..123.654] Then $`4esn` In Null In 0xabc End.``? Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[_usn3:``]->()Assert Exists(Reduce(usn2={123456789} Is Not Null,`` In 123456789 Ends With 12.e12 Ends With $`7esn`|$0[``][{@usn6}]).@usn6!)"), - octest_legacy:ct_string("Create Constraint On()<-[`5esn`:``]-()Assert Exists(Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0).`4esn`)"), - octest_legacy:ct_string("Drop Constraint On()-[``:usn2]-()Assert Exists([$12 Ends With 07 Ends With $123456789,$@usn5 =~1000 =~1000,.e12[@usn5..$12]].#usn7?)"), - octest_legacy:ct_string("Create Constraint On()-[#usn8:`8esn`]-()Assert Exists((`4esn` :`7esn`:_usn3{#usn8:{`7esn`} Is Null,`3esn`:`1esn` =~\"d_str\"})-[_usn4?:`1esn` *7..12]->(:#usn8:#usn8{_usn3:$_usn3['s_str'][07],`7esn`:$1000 In $1000 In $`3esn`}).usn1?)"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:`8esn`)Assert Exists(Filter(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 00[{`8esn`}..][{`8esn`}..]).`7esn`?)"), - octest_legacy:ct_string("Create Constraint On(`3esn`:usn1)Assert {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}.`2esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(`2esn`:`1esn`)Assert Exists(({`5esn`:$`8esn`[1000..0Xa]})-[`4esn`?:_usn4|:usn2 *..01]->(`7esn` :`8esn`:`7esn`{#usn8:01234567[usn2..$12][{`7esn`}..$usn2]}).`4esn`!)"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`2esn`)Assert (`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1}).@usn6 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(#usn7:usn1)Assert usn1(Distinct $123456789 Ends With `3esn` Ends With 123456789,`5esn`[7][{usn2}]).`2esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn6:`6esn`)Assert [#usn8 In {`5esn`}[.e1..``]|$`1esn` =~0X7]._usn4 Is Unique"), - octest_legacy:ct_string("Drop Constraint On()<-[`7esn`:usn1]-()Assert Exists(Single(#usn7 In `2esn`[..$#usn8][..Count(*)]).usn1)"), - octest_legacy:ct_string("Create Constraint On(@usn6:`5esn`)Assert Exists(Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then Count ( * )[0.12...e1] Else 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] End.`4esn`)"), - octest_legacy:ct_string("Create Constraint On(`3esn`:_usn4)Assert Exists(Reduce(@usn5=\"d_str\"[..{@usn5}][..``],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$`7esn` Is Null Is Null).`2esn`)"), - octest_legacy:ct_string("Create Constraint On(`8esn`:@usn6)Assert Exists(Single(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01).@usn6!)"), - octest_legacy:ct_string("Drop Constraint On()<-[`5esn`:`7esn`]-()Assert Exists([@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 123456789 Ends With 12.e12 Ends With $`7esn`|`3esn`[..$12][..{`7esn`}]].`6esn`)"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:`7esn`)Assert Exists(Case 123.654[...e0] When $#usn7 Contains 0x0 Contains 1000 Then usn2[$_usn4..][True..] When 0.12[$`3esn`..$_usn3][12.0..usn1] Then #usn8 Else 07 =~01 End.@usn5)"), - octest_legacy:ct_string("Create Constraint On(_usn3:@usn6)Assert Exists(Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {`6esn`}).``?)"), - octest_legacy:ct_string("Create Constraint On()-[_usn4:_usn3]->()Assert Exists(Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where ``[$`2esn`])._usn3?)"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:@usn5)Assert Exists([{usn1} Is Null Is Null].`7esn`)"), - octest_legacy:ct_string("Drop Constraint On()<-[`1esn`:`6esn`]-()Assert Exists([`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where #usn8 Is Not Null|{123456789}[0xabc..]]._usn4?)"), - octest_legacy:ct_string("Create Constraint On()<-[``:_usn4]-()Assert Exists(Shortestpath((((_usn3 )-[?{@usn6:0X7[`7esn`][123.654]}]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})))).usn1?)"), - octest_legacy:ct_string("Create Constraint On()-[`3esn`:`3esn`]->()Assert Exists([@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 01[2.12..`8esn`]|$`2esn`[2.12..'s_str'][{@usn6}.._usn4]]._usn3)"), - octest_legacy:ct_string("Create Constraint On()-[_usn4:`2esn`]-()Assert Exists(Extract(`5esn` In \"d_str\" Is Null Is Null Where 1.e1[$`1esn`..@usn6][$0..$_usn3]|{`7esn`}[..{`4esn`}]).`4esn`)"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:``)Assert Exists(Case When 0X0123456789ABCDEF Is Null Is Null Then `3esn` In $0 In `1esn` End.#usn8?)"), - octest_legacy:ct_string("Create Constraint On(`8esn`:#usn7)Assert Exists(Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $123456789 Starts With 9e0 Starts With 's_str'|9e12 Is Not Null Is Not Null).``!)"), - octest_legacy:ct_string("Drop Constraint On(@usn6:@usn5)Assert (`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})-[_usn4? *..01]-(@usn6 :`8esn`:`7esn`).`4esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`2esn`:@usn5)Assert Exists([$123456789 Ends With `3esn` Ends With 123456789,$7[{usn2}..][{usn2}..],$_usn3 Contains 999 Contains \"d_str\"].`8esn`?)"), - octest_legacy:ct_string("Create Constraint On()<-[usn1:#usn7]-()Assert Exists(All(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null).`1esn`)"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:`4esn`)Assert None(`8esn` In 01[2.12..`8esn`] Where {999} Starts With {0}).`4esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`4esn`:#usn7]->()Assert Exists(Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8).`3esn`?)"), - octest_legacy:ct_string("Drop Constraint On()<-[`7esn`:`2esn`]-()Assert Exists(({`8esn`:12e12 Is Not Null Is Not Null,usn1:0X7[0e0..`7esn`][1000..0e0]})-[`2esn`:@usn6|`6esn` *..999]->(_usn4 :`4esn`)._usn3!)"), - octest_legacy:ct_string("Drop Constraint On(``:`6esn`)Assert Extract(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`]).#usn8 Is Unique"), - octest_legacy:ct_string("Create Constraint On(`5esn`:#usn8)Assert Exists(All(`5esn` In \"d_str\" Is Null Is Null Where 00[$`7esn`]).#usn7!)"), - octest_legacy:ct_string("Drop Constraint On()-[`7esn`:@usn5]-()Assert Exists(Reduce(usn2=@usn6 Contains $1000 Contains {`7esn`},`2esn` In `1esn` =~\"d_str\"|usn1 In 7 In {123456789}).`8esn`!)"), - octest_legacy:ct_string("Create Constraint On(`7esn`:`7esn`)Assert Case When 07 Contains 0X7 Contains $`8esn` Then {`4esn`} =~9e0 =~{12} When .e1 Ends With 1e1 Ends With @usn5 Then $#usn8[Count ( * )] Else Count ( * )[True..][{#usn7}..] End.`6esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[@usn5:#usn7]->()Assert Exists(Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $0[``][{@usn6}]).@usn6!)"), - octest_legacy:ct_string("Drop Constraint On()<-[`7esn`:`5esn`]-()Assert Exists((`` :`8esn`:`7esn`)-[`1esn`? *1000..00{@usn5:.e0[..$`8esn`],`4esn`:{usn2} =~12}]->({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}).`1esn`!)"), - octest_legacy:ct_string("Drop Constraint On()-[`5esn`:`4esn`]-()Assert Exists(Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $@usn6 Contains 07).`6esn`!)"), - octest_legacy:ct_string("Drop Constraint On()-[@usn6:@usn6]->()Assert Exists(Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where _usn4 Contains 2.12)._usn3?)"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:``)Assert Exists(({`1esn`:$`8esn`[1000..0Xa]})-[:`8esn` *0..{_usn3:`4esn` Ends With 07 Ends With {`3esn`}}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null}).`8esn`?)"), - octest_legacy:ct_string("Create Constraint On(`5esn`:`3esn`)Assert Exists({`3esn`:12.0 Contains #usn7}.@usn5!)"), - octest_legacy:ct_string("Create Constraint On(`1esn`:#usn8)Assert `1esn`(Distinct `3esn`[{`2esn`}],$#usn7 Contains 0x0 Contains 1000).``! Is Unique"), - octest_legacy:ct_string("Create Constraint On(``:#usn7)Assert (_usn3 :usn2{#usn7:{999} Starts With {0}})-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->(:``:#usn8{`7esn`:00 Starts With 0xabc,_usn3:{123456789} Contains $#usn8})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}).usn2! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`3esn`)Assert {#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]}.#usn7! Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn5:_usn4)Assert Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``]).`8esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:usn2)Assert Exists({_usn4:`8esn`[`4esn`..{#usn8}][$12..2.12]}.#usn7)"), - octest_legacy:ct_string("Create Constraint On(_usn3:`8esn`)Assert [usn1 In @usn5 =~{`5esn`} =~`5esn` Where $`1esn`[1.0..][_usn3..]].#usn7? Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`1esn`:`4esn`]-()Assert Exists(All(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `1esn` =~0 =~$#usn7).``?)"), - octest_legacy:ct_string("Create Constraint On(usn1:`7esn`)Assert Exists(Single(#usn8 In 7[..999][..{#usn8}] Where .e0[..$`8esn`]).#usn8)"), - octest_legacy:ct_string("Drop Constraint On(@usn6:#usn7)Assert Exists((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[usn1? *0X0123456789ABCDEF]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->(_usn3 {`5esn`:12.e12[0xabc],`2esn`:{`7esn`}[..$@usn5][..$#usn8]}).`8esn`)"), - octest_legacy:ct_string("Create Constraint On(`1esn`:`2esn`)Assert (@usn6 :``:#usn8)-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->(:``:#usn8{`4esn`:{`4esn`}[$123456789..][$#usn7..]})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}).#usn8? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(``:#usn7)Assert Exists([{`4esn`} Ends With {123456789} Ends With $`4esn`].usn1!)"), - octest_legacy:ct_string("Create Constraint On(`8esn`:@usn5)Assert Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`|$_usn3[..1000]).`` Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[usn2:`6esn`]-()Assert Exists(Extract(`2esn` In `1esn` =~\"d_str\" Where usn2[9e12]|$usn1[{`5esn`}][$`6esn`]).`6esn`!)"), - octest_legacy:ct_string("Create Constraint On(`1esn`:_usn3)Assert Exists(Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where False =~1e1 =~0.e0)._usn3)"), - octest_legacy:ct_string("Create Constraint On(`2esn`:`2esn`)Assert Any(`8esn` In 01[2.12..`8esn`] Where {12}[..0X7]).@usn6 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:@usn5)Assert Filter(#usn8 In {`5esn`}[.e1..``] Where 0X7[..2.12]).@usn5 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(@usn6:_usn3)Assert Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6})._usn3! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`3esn`)Assert Exists(Single(`` In `` Is Not Null Is Not Null Where $`6esn` Is Null).`8esn`!)"), - octest_legacy:ct_string("Drop Constraint On(``:#usn7)Assert Exists(Reduce(usn2=#usn7,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|#usn7 Is Null Is Null)._usn4)"), - octest_legacy:ct_string("Drop Constraint On(#usn8:`7esn`)Assert Exists(Allshortestpaths((((`8esn` {_usn4:`4esn`[1.0],`5esn`:0e0 Ends With 1.e1 Ends With $`4esn`})-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})))).`3esn`!)"), - octest_legacy:ct_string("Create Constraint On(_usn4:_usn3)Assert Exists(Case When 0x0 Ends With $12 Then 07 =~01 When 0X7[`7esn`][123.654] Then 's_str' Ends With 7 Ends With {_usn4} End._usn3!)"), - octest_legacy:ct_string("Drop Constraint On(#usn8:`6esn`)Assert Case `3esn`[`3esn`..][#usn8..] When 9e12[`6esn`..12.0] Then 123.654[`3esn`..] When Count ( * ) =~$usn2 =~$usn2 Then #usn7 Else 12e12 Contains 0Xa End.`2esn`? Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn5:`3esn`)Assert [{`5esn`} Starts With $`5esn` Starts With .e1]._usn4? Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`5esn`:`1esn`]->()Assert Exists(All(#usn8 In 7[..999][..{#usn8}] Where $@usn5 Starts With {0} Starts With 12).usn2?)"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:usn1)Assert Exists(Case 0X0123456789ABCDEF Ends With $`8esn` Ends With 0.12 When 9e1 Is Not Null Then $`4esn`[..$`3esn`][..0.0] End.`1esn`!)"), - octest_legacy:ct_string("Create Constraint On(#usn7:usn2)Assert [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {123456789} Is Null Is Null|1e1 Contains Count ( * )].`6esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[``:`1esn`]-()Assert Exists(Case @usn6 Contains $1000 Contains {`7esn`} When $_usn3[Count(*)] Then 010[#usn7..True] When {`2esn`} Is Not Null Is Not Null Then $`2esn` Is Null Is Null End.`4esn`?)"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:usn2)Assert Exists((:#usn7{@usn5:{12} =~#usn8})<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->(`` :_usn4).`6esn`?)"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:`4esn`)Assert Exists(Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where $usn1 Ends With $`` Ends With $12).`7esn`)"), - octest_legacy:ct_string("Create Constraint On(`4esn`:_usn4)Assert [`8esn` In 01[2.12..`8esn`] Where Count ( * ) Ends With $@usn5|_usn3[_usn3..][12.e12..]]._usn3 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:_usn4)Assert Exists(Reduce(`3esn`=Null[``],_usn3 In {`3esn`}[`2esn`]|{123456789} Contains $#usn8).`4esn`!)"), - octest_legacy:ct_string("Create Constraint On()<-[_usn4:_usn4]-()Assert Exists(Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]).`4esn`!)"), - octest_legacy:ct_string("Create Constraint On(`2esn`:`8esn`)Assert Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`6esn`}|{7}[..1.0][..9e0])._usn4! Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[_usn3:`7esn`]->()Assert Exists([0.12 =~`5esn` =~`5esn`].#usn7)"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:@usn6)Assert Exists(Case {``} Is Null When {0} Then {`5esn`} Starts With $`5esn` Starts With .e1 End.`8esn`)"), - octest_legacy:ct_string("Drop Constraint On(_usn3:``)Assert (usn1 :`6esn`)<-[`4esn`?:`7esn` *0..{`2esn`:00[`2esn`..12][123456789..0.e0]}]-(_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12}).`1esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[_usn3:#usn7]->()Assert Exists(Case When 123.654[True..$#usn8][0.12..Count(*)] Then #usn8 Is Not Null Is Not Null When `4esn`[..Count ( * )][..{#usn7}] Then 0e0 Starts With 1000 Starts With #usn7 End._usn4)"), - octest_legacy:ct_string("Drop Constraint On(#usn8:`3esn`)Assert Reduce(#usn7={`5esn`} Starts With $`5esn` Starts With .e1,`` In 123456789 Ends With 12.e12 Ends With $`7esn`|{`5esn`} Contains $0 Contains {``}).usn1? Is Unique"), - octest_legacy:ct_string("Create Constraint On(`3esn`:`7esn`)Assert All(#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn1 Is Not Null).`5esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(``:`2esn`)Assert Exists(Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where $usn1[{`5esn`}][$`6esn`]|`5esn`[7][{usn2}]).`1esn`?)"), - octest_legacy:ct_string("Create Constraint On(@usn6:#usn8)Assert (usn1 :``:#usn8)-[`4esn`?:_usn4|:usn2 *..01]->(`7esn` :`8esn`:`7esn`{#usn8:01234567[usn2..$12][{`7esn`}..$usn2]})<-[@usn5? *..01]-(`8esn` :@usn6:#usn8).@usn5 Is Unique"), - octest_legacy:ct_string("Create Constraint On(`1esn`:usn2)Assert {`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}.`6esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[@usn6:#usn7]-()Assert Exists(Case When {#usn8}[010] Then False =~$7 =~2.12 End.`1esn`?)"), - octest_legacy:ct_string("Drop Constraint On(_usn3:`3esn`)Assert Exists([`3esn` In {7} Is Null Where 0.e0[123.654][01]].`5esn`!)"), - octest_legacy:ct_string("Drop Constraint On(usn1:@usn6)Assert Exists((`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[`6esn`?:#usn7]->(`2esn` )<-[`7esn`?:@usn5{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]}]-(`` :@usn6:#usn8{`8esn`:'s_str' In 00}).`7esn`)"), - octest_legacy:ct_string("Drop Constraint On()-[``:`2esn`]-()Assert Exists(All(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where @usn6 Is Null Is Null).`4esn`)"), - octest_legacy:ct_string("Drop Constraint On()-[@usn5:usn2]->()Assert Exists(Reduce(_usn3={@usn5} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{usn1}[0X0123456789ABCDEF]).@usn5?)"), - octest_legacy:ct_string("Drop Constraint On()-[#usn7:`3esn`]->()Assert Exists((`8esn` :#usn8:#usn8{`3esn`:$`4esn`[9e12..123.654]})<-[`2esn` *0Xa{#usn8:1.0[0e0..0.e0]}]-(_usn4 {``:1.0[0e0..0.e0]}).`3esn`?)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:@usn6)Assert Reduce(``=`6esn`[{`6esn`}..],_usn4 In 0.0[..{999}][..0.0]|0.e0[{999}][{`1esn`}]).`5esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`4esn`:_usn4]-()Assert Exists(Shortestpath(((@usn6 :@usn6)-[{`7esn`:01234567 In $123456789}]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})-[{`2esn`:1000 Is Null Is Null}]->(`5esn` :`2esn`{#usn8:True[$`7esn`..{1000}]}))).`4esn`!)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:usn2)Assert Allshortestpaths(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]}))).@usn6 Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[@usn6:`3esn`]->()Assert Exists({_usn3:0Xa Contains {`7esn`} Contains $999}.usn1!)"), + octest_legacy:ct_string("Drop Constraint On()<-[@usn6:`7esn`]-()Assert Exists(Allshortestpaths(((({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2})<-[:_usn4|:usn1 *07]-(#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})))).``!)"), + octest_legacy:ct_string("Drop Constraint On()<-[usn1:@usn6]-()Assert Exists(Single(#usn7 In 0Xa[@usn5][{`7esn`}] Where 12[..$@usn6]).@usn5?)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:_usn4)Assert Case When $`7esn`[$``..][999..] Then {_usn3} Contains 9e0 Contains $999 When 1000 Is Null Is Null Then .e1[@usn5]['s_str'] End.`6esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`4esn`:_usn4]->()Assert Exists(Extract(_usn4 In 0.0[..{999}][..0.0] Where {`7esn`} Is Not Null Is Not Null|{`1esn`} =~{_usn4}).`8esn`!)"), + octest_legacy:ct_string("Create Constraint On(`4esn`:@usn5)Assert [{usn2} =~@usn6 =~{`4esn`},Count(*) Is Not Null].`6esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`4esn`:`7esn`)Assert Exists([\"d_str\"[{`8esn`}..],{123456789} Is Not Null,123.654 Contains $_usn3 Contains 0X0123456789ABCDEF].`6esn`)"), + octest_legacy:ct_string("Drop Constraint On()<-[_usn3:`5esn`]-()Assert Exists({`2esn`:9e12 Is Not Null Is Not Null}._usn3)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:_usn4)Assert None(#usn7 In 0Xa[@usn5][{`7esn`}] Where $0[_usn4..{`3esn`}][$#usn7..$#usn7]).`4esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`4esn`:`6esn`]->()Assert Exists(Case 9e1[$_usn4..0xabc] When $1000[..$999] Then $`7esn` In 12 Else @usn5 =~'s_str' End.@usn6!)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:@usn6)Assert Reduce(#usn8=$`4esn` Starts With 0e0,_usn3 In True[7][$999]|1e1[1.e1..][123.654..]).@usn5! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`8esn`:`5esn`]-()Assert Exists(Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]|0.0 Contains $_usn4 Contains {`2esn`}).usn2)"), + octest_legacy:ct_string("Drop Constraint On()<-[`4esn`:@usn6]-()Assert Exists({`1esn`:$usn2 Is Null Is Null}._usn4!)"), + octest_legacy:ct_string("Drop Constraint On()-[_usn4:`5esn`]-()Assert Exists(Shortestpath(((_usn4 :`8esn`:@usn5))).``!)"), + octest_legacy:ct_string("Create Constraint On(#usn8:@usn5)Assert Exists(Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {`7esn`} Is Not Null Is Not Null).``)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:#usn7)Assert [0.0[..{999}][..0.0],{usn1} =~123.654 =~\"d_str\",True Is Not Null Is Not Null].#usn8? Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:`5esn`)Assert [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[{999}..][{_usn4}..]].`6esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(``:`7esn`)Assert Exists(All(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null)._usn4?)"), + octest_legacy:ct_string("Create Constraint On()-[usn1:#usn7]-()Assert Exists({`4esn`:`8esn` Contains 1e1,#usn7:{`2esn`}[..{@usn6}][..1.e1]}.@usn6!)"), + octest_legacy:ct_string("Create Constraint On()<-[#usn7:`4esn`]-()Assert Exists(`8esn`(Distinct 00[07..],_usn3[$usn2..0]).`7esn`)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:``)Assert _usn3(12.e12[2.12..][0xabc..],.e1[0.12]).`5esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`5esn`)Assert None(_usn4 In `2esn` Where 0Xa Contains {`7esn`} Contains $999)._usn3? Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn2:`6esn`)Assert Exists(Shortestpath((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )).`2esn`?)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:#usn7)Assert Case $usn1[@usn6][#usn7] When 12.0[2.12..][{`5esn`}..] Then 0X0123456789ABCDEF[0X7..] When {`6esn`}[..{`2esn`}] Then {`5esn`} Contains 's_str' Contains 9e1 Else 00 Starts With $`6esn` End.`8esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn3:_usn3)Assert Exists({`8esn`:{`7esn`} Is Not Null Is Not Null}.#usn8!)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:_usn4)Assert Exists(Extract(_usn3 In True[7][$999] Where $7 Is Null Is Null).`3esn`)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:_usn4)Assert [`2esn` In {999} Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]].@usn6 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(``:`8esn`)Assert Exists(Reduce(`7esn`=7 Contains `2esn` Contains $`8esn`,_usn4 In `2esn`|12.e12[..1e1]).`8esn`)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`3esn`)Assert Case usn2 =~0X7 =~{#usn7} When $123456789 Is Not Null Then 1.e1[{#usn8}] When 12 Ends With 01 Then $#usn7[123.654] End.`1esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[``:#usn7]-()Assert Exists(All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3).`4esn`!)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`2esn`)Assert [00[07..],$1000 Starts With $`8esn` Starts With {`5esn`}].usn1! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn5:_usn4)Assert Reduce(usn2=`8esn` Contains $`3esn` Contains {`4esn`},_usn3 In True[7][$999]|0x0 Ends With {``}).`4esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn3:`8esn`)Assert None(`5esn` In $`2esn`[12.e12][$@usn5] Where `1esn` =~1000 =~1000).#usn7! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(``:usn1)Assert {#usn8:`3esn` Is Not Null Is Not Null}.@usn5? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[``:usn2]->()Assert Exists(`4esn`(Distinct 12e12 Is Not Null,{#usn8} =~{999} =~{#usn7}).#usn8!)"), + octest_legacy:ct_string("Create Constraint On()-[usn2:`5esn`]->()Assert Exists([{`2esn`} Starts With @usn6].`7esn`!)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:#usn7)Assert Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where Count ( * )[Count ( * )][12]|$`6esn`[`8esn`][0.0]).`4esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`6esn`:``]->()Assert Exists(({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})-[`6esn`?{#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}]-({`3esn`:9e1 =~999})<-[`1esn`? *0X0123456789ABCDEF{`5esn`:1.e1 Starts With $`2esn` Starts With $0}]->({_usn4:{usn1} =~123.654 =~\"d_str\"})._usn3?)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:_usn4)Assert Exists(Allshortestpaths(((`4esn` :`1esn`)-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6}))).`2esn`)"), + octest_legacy:ct_string("Create Constraint On(#usn8:_usn4)Assert Any(usn1 In 12.e12 In {0} In 9e1 Where 123.654[$`1esn`..Null][1000..{_usn3}]).`6esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`6esn`:_usn4]-()Assert Exists(Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn1[0X7]|{999}[$123456789..][12..]).`4esn`?)"), + octest_legacy:ct_string("Create Constraint On()-[@usn5:#usn7]-()Assert Exists(All(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} Starts With 1.0 Starts With 00).`1esn`!)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`2esn`)Assert Exists(None(#usn7 In 0Xa[@usn5][{`7esn`}] Where 0[`4esn`][12.e12]).`1esn`?)"), + octest_legacy:ct_string("Drop Constraint On()-[@usn5:`2esn`]-()Assert Exists((`2esn` :`5esn`:@usn5{_usn4:{`2esn`} Is Not Null Is Not Null,usn2:{`4esn`} In _usn4})-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)-[ *0xabc..7{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}]-(usn1 )._usn4?)"), + octest_legacy:ct_string("Create Constraint On(usn2:@usn6)Assert Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End._usn4? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`1esn`:``)Assert Exists(Case Count(*) Is Not Null When {`4esn`} Starts With $7 Starts With $`` Then {`4esn`} Starts With $7 Starts With $`` Else 0X0123456789ABCDEF[`5esn`..][$#usn8..] End.usn2)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`5esn`)Assert Exists(Any(_usn4 In 0.0[..{999}][..0.0]).`4esn`)"), + octest_legacy:ct_string("Create Constraint On()-[``:`1esn`]->()Assert Exists(Reduce(@usn5=$usn1 =~010 =~07,_usn4 In 0.0[..{999}][..0.0]|01234567[$7..{12}]).usn1!)"), + octest_legacy:ct_string("Create Constraint On()-[#usn7:_usn3]-()Assert Exists([`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 1.e1[0X0123456789ABCDEF..]|.e1 Starts With $_usn4 Starts With {`1esn`}].@usn5!)"), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:usn2]->()Assert Exists((:#usn7{usn2:{`8esn`}[0X7][$`3esn`]})<-[usn2]-(@usn6 :@usn6{`5esn`:@usn5[$12..\"d_str\"],usn2:1.e1[0X0123456789ABCDEF..]})<-[?:@usn6|``{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(_usn4 :_usn4).`1esn`)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:usn1)Assert [`` In {`1esn`} Starts With @usn6 Where {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]|0[`4esn`][12.e12]].usn1? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:usn1)Assert [#usn7 In 123.654 Starts With $`` Where $999 In 999].@usn6! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn7:@usn6)Assert Exists(Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6).``!)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:``)Assert Exists(Filter(_usn3 In True[7][$999] Where 's_str'[..0X7]).#usn7!)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:@usn6)Assert [$`4esn` Starts With 0e0].`7esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn3:_usn4)Assert Exists([`2esn` Ends With 12.e12 Ends With `2esn`,{`3esn`} Is Not Null Is Not Null,9e1 =~`` =~{`7esn`}].`8esn`?)"), + octest_legacy:ct_string("Drop Constraint On(usn1:usn2)Assert All(`2esn` In {999} Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]).`3esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[@usn5:#usn7]-()Assert Exists(Allshortestpaths((({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))).`1esn`!)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:`8esn`)Assert Extract(`6esn` In 00 Where $12 Is Not Null|1000 Is Null).`7esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`2esn`)Assert Exists(#usn8(Distinct).`8esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:_usn3)Assert [#usn7 In 0Xa[@usn5][{`7esn`}] Where $0[_usn4..{`3esn`}][$#usn7..$#usn7]|{#usn8}[#usn7..{`2esn`}]].@usn6? Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn7:`3esn`)Assert None(`1esn` In `3esn`[07..] Where 07 Is Null).@usn5? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`8esn`:`3esn`]->()Assert Exists(All(usn1 In 12.e12 In {0} In 9e1 Where {12} Contains `7esn` Contains $_usn3).`5esn`?)"), + octest_legacy:ct_string("Create Constraint On(@usn5:#usn8)Assert Exists({`6esn`:1.0[{999}][$999],`1esn`:@usn5[$12..\"d_str\"]}.`1esn`?)"), + octest_legacy:ct_string("Create Constraint On(``:#usn8)Assert #usn8(Distinct 9e1[$_usn4..0xabc],123.654 Ends With usn2 Ends With 0).#usn8! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:usn2)Assert Exists(None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $`5esn`[$#usn7..][0xabc..]).`4esn`?)"), + octest_legacy:ct_string("Create Constraint On()<-[`6esn`:#usn8]-()Assert Exists(Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[$`8esn`.._usn3]).usn2?)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`3esn`)Assert {#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000}.`` Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:_usn3]-()Assert Exists(Extract(`` In {`1esn`} Starts With @usn6 Where 12 Starts With 7 Starts With $`5esn`|$`5esn` Is Not Null).`1esn`)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:#usn7)Assert Exists(All(_usn3 In True[7][$999] Where $`3esn`[{``}..]).@usn6?)"), + octest_legacy:ct_string("Create Constraint On(@usn5:``)Assert Shortestpath((`6esn` :`2esn`{`7esn`:#usn8 =~{999}})).#usn8! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`6esn`)Assert Exists(None(#usn7 In 123.654 Starts With $`` Where #usn8[`7esn`..]).usn2!)"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:`7esn`]->()Assert Exists(Filter(#usn7 In 0Xa[@usn5][{`7esn`}] Where $0 In _usn4).`5esn`)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:usn2)Assert Exists(Filter(`` In {`1esn`} Starts With @usn6 Where $`5esn`[`1esn`][0X0123456789ABCDEF])._usn3)"), + octest_legacy:ct_string("Create Constraint On(``:`8esn`)Assert Exists(Filter(_usn4 In 0.0[..{999}][..0.0] Where {999}[$123456789..][12..]).`2esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`1esn`)Assert Exists(Single(`1esn` In $12 Is Not Null Where Count(*)[..``][..#usn8]).`7esn`?)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:usn2)Assert Exists(Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[$`8esn`.._usn3]).usn2?)"), + octest_legacy:ct_string("Create Constraint On(_usn4:_usn3)Assert Reduce(``={999} Is Null,_usn4 In 0.0[..{999}][..0.0]|\"d_str\" Ends With False Ends With {@usn6}).`1esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[usn2:`1esn`]-()Assert Exists([`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]].`3esn`)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`6esn`)Assert `1esn`(Distinct).usn2 Is Unique"), + octest_legacy:ct_string("Drop Index On:`5esn`(#usn8)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:`1esn`)Assert {`4esn`:{999} Is Not Null,@usn6:123.654 Ends With usn2 Ends With 0}.`8esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn7:_usn4)Assert Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where `7esn` Starts With 0X7 Starts With $`7esn`|9e1 Ends With $@usn5 Ends With $123456789).@usn5? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:_usn4)Assert Case When $`` Is Null Then 0.12 Ends With {1000} Ends With `6esn` When True[7][$999] Then 0Xa Contains Count ( * ) End._usn3 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:``)Assert Exists([`1esn` In $12 Is Not Null Where 1e1[..$1000][..999]|{@usn6}[True..{_usn3}]]._usn4)"), + octest_legacy:ct_string("Drop Constraint On(usn1:_usn3)Assert Exists((:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[:`3esn`|:@usn5*..]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]}).@usn5?)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:usn1)Assert Exists({`5esn`:123456789 Starts With {@usn6} Starts With $12}.@usn6!)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`1esn`)Assert Exists(({#usn7:#usn8 =~{999}})-[_usn3?:usn1 *12..{#usn7:0e0 Contains `3esn` Contains `7esn`}]-({_usn3}).`6esn`)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`8esn`)Assert Case {#usn8}[usn1][1.0] When .e12 =~.e0 Then 12 Starts With 7 Starts With $`5esn` End.`3esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:`3esn`)Assert Exists(1e1.@usn6)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`8esn`)Assert Exists((`2esn` :@usn6{7})-[?:`1esn`|:`3esn`{@usn5:{`6esn`} Ends With 0e0 Ends With {``},@usn5:{`1esn`} Starts With `4esn` Starts With {0}}]->(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]}).`5esn`)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:usn1)Assert Exists({`6esn`:.e0[..{`5esn`}][..999]}.usn2!)"), + octest_legacy:ct_string("Drop Constraint On()-[`2esn`:``]-()Assert Exists((`` :`4esn`:@usn6{``:.e12 =~$_usn4})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]}).@usn5)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`8esn`)Assert Exists((`2esn` :@usn6{7})-[?:`1esn`|:`3esn`{@usn5:{`6esn`} Ends With 0e0 Ends With {``},@usn5:{`1esn`} Starts With `4esn` Starts With {0}}]->(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]}).`5esn`)"), + octest_legacy:ct_string("Create Constraint On(usn2:`2esn`)Assert Reduce(`8esn`=`2esn` Starts With `` Starts With 1e1,usn1 In 12.e12 In {0} In 9e1|#usn7 Starts With 1000 Starts With .e1)._usn3! Is Unique"), + octest_legacy:ct_string("Drop Index On:_usn4(usn2)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`6esn`)Assert Case When $999 Ends With {0} Then $`2esn` Is Null Is Null End.`3esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`6esn`:_usn4)Assert Exists(Allshortestpaths(((_usn3 :#usn8{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(:`2esn`{`2esn`:123456789[0..]}))).`8esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:`6esn`)Assert Any(`6esn` In Count(*) Ends With $`` Ends With {7} Where 7 Contains `2esn` Contains $`8esn`).@usn5? Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn7:`3esn`)Assert Exists((`7esn` :@usn5{`7esn`:{1000}[{usn1}][Null],`3esn`:7[$0..][{_usn4}..]})<-[_usn4?:`2esn`{`2esn`}]-(`3esn` :`2esn`{`8esn`:Null In .e0})-[`2esn`?:`` *999{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12}]-(usn2 {`7esn`:{usn1}[$`8esn`..0.0]}).`4esn`?)"), + octest_legacy:ct_string("Create Constraint On(#usn7:`4esn`)Assert Exists(Reduce(`2esn`=$#usn7[123.654],`` In {usn1} Ends With {`6esn`} Ends With 123456789|False Contains 0.e0 Contains Count(*)).`3esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[`3esn`:#usn7]-()Assert Exists(({@usn5:Count ( * ) Is Null})-[:#usn8|`2esn`]->(`` :usn2:`2esn`)<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}).`5esn`)"), + octest_legacy:ct_string("Create Constraint On()-[`7esn`:`6esn`]->()Assert Exists(All(`1esn` In 0.e0 =~`1esn` =~`6esn` Where $usn1 In 0.12 In $``).`1esn`)"), + octest_legacy:ct_string("Create Constraint On(``:@usn6)Assert [$usn1[0X7],010 In `1esn`]._usn3? Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn7:#usn7)Assert Extract(`` In {`1esn`} Starts With @usn6 Where {_usn3}[$usn2..])._usn4? Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn1:`3esn`)Assert Reduce(#usn7=9e1[123456789..],`5esn` In $`2esn`[12.e12][$@usn5]|{`7esn`} Is Not Null Is Not Null).`2esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn6:_usn3)Assert Exists(`8esn`(Distinct $123456789[..$7][..$`6esn`],0e0 Contains `3esn` Contains `7esn`).`1esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:usn1)Assert Exists(Allshortestpaths((((@usn5 )<-[?:`1esn`|:`3esn`*]->(_usn4 :#usn8{`2esn`})<-[@usn6 *07{`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}]->(_usn3 :_usn4{`7esn`:00 Starts With $`6esn`,`6esn`:{12}[999][{_usn3}]})))).`6esn`?)"), + octest_legacy:ct_string("Drop Constraint On(usn1:@usn5)Assert Exists(Extract(_usn4 In 0.0[..{999}][..0.0] Where #usn8 Is Null|07 Is Null).@usn6?)"), + octest_legacy:ct_string("Create Constraint On(#usn8:`5esn`)Assert Case {@usn5}[..#usn7] When $@usn6 Starts With {`1esn`} Starts With 12 Then {usn1} Ends With {`6esn`} Ends With 123456789 End.`4esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`7esn`)Assert Exists([{``}[_usn4..$`1esn`],9e0[#usn8]].`7esn`!)"), + octest_legacy:ct_string("Create Constraint On()<-[_usn3:`6esn`]-()Assert Exists(Case 9e1[$_usn4..0xabc] When $1000[..$999] Then $`7esn` In 12 Else @usn5 =~'s_str' End.#usn7)"), + octest_legacy:ct_string("Create Constraint On(usn1:`1esn`)Assert Exists(Reduce(usn2={12} Contains 9e0,`` In {usn1} Ends With {`6esn`} Ends With 123456789|1e1[..$1000][..999])._usn4!)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:`2esn`)Assert {`4esn`:1.e1[{#usn8}]}.usn2! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`7esn`)Assert Exists({`1esn`:``[{123456789}..]}._usn3)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`5esn`)Assert (#usn8 {``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000}).`7esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`4esn`:_usn4]-()Assert Exists((@usn6 {usn1:$#usn7 =~{12} =~False})-[`1esn`?:_usn4|:usn1*]-({`3esn`:{0} Is Null,#usn7:{0} Is Null}).`7esn`!)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:@usn5)Assert Allshortestpaths((usn1 :usn2:`2esn`{`1esn`:{123456789}[12..][$12..]})).`3esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`2esn`:_usn4]->()Assert Exists(Case When 1.e1[..12.e12][..$usn2] Then 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF When 0xabc[$@usn5] Then $@usn6 Starts With $@usn5 End.`4esn`!)"), + octest_legacy:ct_string("Create Constraint On(`4esn`:`4esn`)Assert Shortestpath((((usn2 :``)-[@usn5?:#usn7|`2esn`{`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}]->(`2esn` :@usn6{7})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`)))).@usn6! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`8esn`:@usn6)Assert (:#usn8{`2esn`:{7}[$7..],#usn7:`1esn` In 07})-[?:`8esn`|:_usn4 *12..]->(@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]}).`6esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:``)Assert {#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]}._usn3 Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`8esn`)Assert Extract(#usn7 In 0Xa[@usn5][{`7esn`}] Where $0 In _usn4|@usn5 Is Not Null Is Not Null).`6esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`5esn`:@usn5)Assert None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where Count ( * )[Count ( * )][12]).`7esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`3esn`:usn1]-()Assert Exists(#usn7(``[$0..][`1esn`..],{7} Starts With $usn1 Starts With 1.0).usn1?)"), + octest_legacy:ct_string("Drop Constraint On(usn2:``)Assert Exists((`6esn` :`8esn`:@usn5)-[@usn5?:`6esn` *12..]->(`4esn` :`7esn`)-[?:usn2|#usn7]-(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})._usn4!)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:`3esn`)Assert All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`).@usn5? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(``:_usn3)Assert [#usn7 In 0Xa[@usn5][{`7esn`}] Where #usn7 Starts With $999|$@usn5[$`4esn`][$@usn6]].`4esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:`6esn`)Assert Reduce(@usn6=7 Contains `2esn` Contains $`8esn`,`2esn` In {999} Is Not Null|{12} Contains `7esn` Contains $_usn3).`` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`7esn`)Assert Exists(Case When $7 Is Null Then {`1esn`} =~{_usn4} End.`6esn`!)"), + octest_legacy:ct_string("Drop Constraint On(usn1:_usn4)Assert Exists(({_usn4:{usn1} =~123.654 =~\"d_str\"})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}})._usn4)"), + octest_legacy:ct_string("Create Constraint On(@usn5:_usn4)Assert Exists(None(`5esn` In $`2esn`[12.e12][$@usn5] Where $``[.e12..]).#usn7)"), + octest_legacy:ct_string("Create Constraint On()-[_usn4:usn2]->()Assert Exists(Extract(`3esn` In 123.654[1e1..][{#usn8}..]|Null[{_usn4}..]).#usn7!)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:@usn5)Assert Reduce(`7esn`=7 Contains `2esn` Contains $`8esn`,_usn4 In `2esn`|12.e12[..1e1]).`8esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:#usn7]-()Assert Exists(Any(`6esn` In 00 Where usn1 Is Null Is Null).`2esn`)"), + octest_legacy:ct_string("Drop Constraint On(``:`3esn`)Assert All(#usn7 In 123.654 Starts With $`` Where {_usn4}[...e12][..0xabc]).`4esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`1esn`)Assert Reduce(`3esn`=123456789[0..],_usn3 In True[7][$999]|`2esn` Ends With $`4esn` Ends With {#usn7}).`8esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`4esn`)Assert Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*)).usn1? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`7esn`)Assert Exists(Extract(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`}|@usn6[{0}..]).usn1?)"), + octest_legacy:ct_string("Create Constraint On()<-[`3esn`:`1esn`]-()Assert Exists(Case When $`5esn`[..{`2esn`}][..{0}] Then {@usn6} Is Not Null End.@usn5!)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:#usn7)Assert Exists(Reduce(`2esn`=01234567 In $123456789,`1esn` In $12 Is Not Null|#usn7 =~{`4esn`} =~123456789).`4esn`!)"), + octest_legacy:ct_string("Create Constraint On()-[_usn3:``]->()Assert Exists(Reduce(usn2=True[7][$999],`` In {`1esn`} Starts With @usn6|{`4esn`}[$_usn4..][9e0..]).`6esn`)"), + octest_legacy:ct_string("Drop Constraint On(``:usn2)Assert [$@usn6 Contains `7esn`].usn2 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`4esn`)Assert Exists((#usn7 :@usn6{`8esn`:{@usn6}[True..{_usn3}],`1esn`:07 Is Null})<-[:`7esn` *..01234567{`3esn`:.e12[$7..][{`6esn`}..]}]->(`` :`4esn`:@usn6{_usn4:False[0Xa..$usn1]}).`1esn`?)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:_usn3)Assert {``:0.12[..$`6esn`][..$1000]}.@usn6! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn1:`2esn`)Assert {#usn8:{999} Ends With 123456789 Ends With {@usn5},`8esn`:$`8esn`[..$999][..0]}.`1esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[_usn3:`6esn`]->()Assert Exists([_usn4 In `2esn` Where 12e12 Is Not Null|1000 Is Null Is Null].`2esn`?)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:@usn5)Assert Exists(Shortestpath((usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`))._usn3?)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:`1esn`)Assert `3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]).``? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:`6esn`)Assert Exists(All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {@usn5} =~_usn4 =~0.12).#usn7?)"), + octest_legacy:ct_string("Create Constraint On()<-[`7esn`:`4esn`]-()Assert Exists(Allshortestpaths((`4esn` {_usn4:12 Starts With {_usn4} Starts With $#usn8,_usn4:$@usn5[$`4esn`][$@usn6]})<-[? *0X7..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})).usn1)"), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:`5esn`]->()Assert Exists(Reduce(`4esn`=9e1 =~`` =~{`7esn`},`6esn` In 00|0X0123456789ABCDEF[$`2esn`..][`2esn`..]).`6esn`!)"), + octest_legacy:ct_string("Drop Constraint On(usn2:_usn3)Assert All(`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7}).`6esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[`7esn`:`7esn`]-()Assert Exists([_usn4 In `2esn` Where 0Xa Contains {`7esn`} Contains $999].`1esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:usn1)Assert Exists([$12 Is Not Null,True[True..]]._usn4)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`3esn`)Assert All(`6esn` In 00 Where usn1 Is Null Is Null).`7esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn2:`1esn`)Assert Exists(Reduce(@usn5=$@usn6 =~#usn8,`5esn` In $`2esn`[12.e12][$@usn5]|{`1esn`} In 12.e12 In 9e1).`4esn`?)"), + octest_legacy:ct_string("Create Constraint On()-[#usn8:``]-()Assert Exists(Extract(#usn7 In 0Xa[@usn5][{`7esn`}] Where 1e1[1.e1..][123.654..]|{999} Starts With {_usn4} Starts With 00).`5esn`!)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:``)Assert Exists(Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0.12[..$`6esn`][..$1000]).``?)"), + octest_legacy:ct_string("Create Constraint On(#usn7:`2esn`)Assert Exists(@usn6(12e12 Starts With `1esn` Starts With usn2,00[..$123456789][..$`5esn`])._usn3?)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`3esn`)Assert Exists(Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null).`8esn`!)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`2esn`)Assert (`3esn` :#usn7)<-[usn2?:``*]-({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null}).`6esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:usn1)Assert $0.``? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[usn2:`3esn`]-()Assert Exists(Reduce(`8esn`=`7esn`[0..$usn2][{usn2}..0.e0],`6esn` In Count(*) Ends With $`` Ends With {7}|12.e12 In {0} In 9e1).@usn5)"), + octest_legacy:ct_string("Create Constraint On()<-[usn2:#usn7]-()Assert Exists(Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {`2esn`}[Count(*)]).@usn6?)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:usn1)Assert Exists({@usn6:$`` Starts With 12 Starts With $usn2}.usn2!)"), + octest_legacy:ct_string("Drop Constraint On()<-[@usn5:#usn8]-()Assert Exists(Case When 2.12 In $`8esn` In {`7esn`} Then $usn1 In 01234567 In .e1 Else $`3esn` Contains 0 Contains 07 End.`1esn`!)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:@usn6)Assert Exists(Filter(#usn7 In 0Xa[@usn5][{`7esn`}] Where 12[..$@usn6]).`2esn`)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:usn2)Assert Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999).`5esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`6esn`:@usn5]->()Assert Exists(Single(`` In {`1esn`} Starts With @usn6 Where 999 Starts With $123456789 Starts With {``})._usn3!)"), + octest_legacy:ct_string("Drop Constraint On()-[`6esn`:`8esn`]-()Assert Exists({`3esn`:{_usn4}[...e12][..0xabc]}.usn2)"), + octest_legacy:ct_string("Drop Constraint On()<-[usn2:@usn6]-()Assert Exists([12.e12[{7}..7],_usn3[\"d_str\"]].`2esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[``:`5esn`]-()Assert Exists(Shortestpath(({`6esn`:$``['s_str'..][0x0..]})).`8esn`)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`1esn`)Assert Exists(00.`2esn`)"), + octest_legacy:ct_string("Drop Constraint On(usn1:`3esn`)Assert Case When 9e12 Is Not Null Is Not Null Then .e12 Ends With 1000 Ends With 010 Else `1esn` Is Null Is Null End.@usn5? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn1:@usn5)Assert Exists(Allshortestpaths((({`6esn`:{`3esn`} Ends With `1esn` Ends With $@usn6,@usn6:$usn1 In 0.12 In $``}))).usn1?)"), + octest_legacy:ct_string("Drop Constraint On()-[_usn4:`1esn`]->()Assert Exists(0xabc.`6esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:#usn7)Assert [00 Starts With $`6esn`].`3esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[usn1:@usn6]-()Assert Exists({`2esn`:{`4esn`}[$_usn4..][9e0..]}.usn2?)"), + octest_legacy:ct_string("Drop Constraint On(usn2:@usn6)Assert Exists($`6esn`.`5esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[usn1:`4esn`]->()Assert Exists((:usn1:_usn4{@usn5:1000 Is Null Is Null})<-[`1esn`:`8esn`|:_usn4 *123456789..0X7$12]->(:`1esn`{`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[? *0X0123456789ABCDEF]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}).usn2!)"), + octest_legacy:ct_string("Create Constraint On()-[`2esn`:`4esn`]->()Assert Exists(Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[$`8esn`.._usn3]).usn2!)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:_usn3)Assert Shortestpath((`1esn` {@usn5:$usn1 In 0.12 In $``}))._usn3! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:_usn4)Assert Exists((_usn3 {_usn4:{_usn3} Is Not Null})-[`4esn`?:usn1 *0xabc..7]-(`` :_usn4).#usn7!)"), + octest_legacy:ct_string("Create Constraint On(#usn8:`2esn`)Assert (@usn6 {@usn5:0X0123456789ABCDEF[$999..][@usn5..]})-[_usn3?:`8esn`|:_usn4{@usn6:{`1esn`}[`6esn`..12e12]}]-(@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})._usn3 Is Unique"), + octest_legacy:ct_string("Create Constraint On(`6esn`:#usn8)Assert Extract(`` In {`1esn`} Starts With @usn6 Where 12.0 =~$#usn7 =~9e12|{@usn6} Contains 123.654 Contains 01)._usn4! Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn5:`1esn`)Assert Case {usn1} In Count ( * ) When 9e12 Is Not Null Is Not Null Then $999 Ends With {0} End.`4esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn6:usn1)Assert Exists({`4esn`:$`5esn` Is Not Null}.`1esn`)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`4esn`)Assert Exists(Shortestpath(((:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})<-[`5esn`:usn2|#usn7 *999]-(:`8esn`:@usn5)<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(`1esn` :@usn6))).#usn8)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:#usn7)Assert Exists(exists(Distinct #usn8 =~{999},$`2esn` Ends With 0.12 Ends With .e1).@usn5?)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:_usn4)Assert Exists([#usn7 In 123.654 Starts With $`` Where _usn3 Contains .e0 Contains {usn2}|$usn1 In 01234567 In .e1].`8esn`!)"), + octest_legacy:ct_string("Drop Constraint On()-[`4esn`:`8esn`]-()Assert Exists(Reduce(usn1=$_usn3[{999}],`2esn` In {999} Is Not Null|$``['s_str'..][0x0..]).`8esn`!)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:_usn4)Assert Exists(Shortestpath((:_usn3{@usn5:.e1[..\"d_str\"],#usn8:{`1esn`}[`6esn`..12e12]})<-[`7esn`?*..]-(usn1 :`1esn`{#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]})).@usn6!)"), + octest_legacy:ct_string("Create Constraint On(usn1:`7esn`)Assert Exists({``:0e0[..$@usn5][..$`8esn`],`7esn`:$#usn7 =~{12} =~False}.usn1?)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`8esn`)Assert Exists(All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where False Contains 0.e0 Contains Count(*)).@usn6)"), + octest_legacy:ct_string("Create Constraint On(#usn7:@usn5)Assert Reduce(#usn8=$`4esn` Starts With 0e0,_usn3 In True[7][$999]|1e1[1.e1..][123.654..]).`2esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn4:_usn4)Assert Exists(Reduce(`2esn`=01234567 In $123456789,`1esn` In $12 Is Not Null|#usn7 =~{`4esn`} =~123456789).`7esn`)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`5esn`)Assert Exists(None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 123456789 Is Not Null Is Not Null).`4esn`!)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`6esn`)Assert Exists([$`7esn` Contains {`1esn`} Contains 9e12,Count(*)[010..][#usn7..]].`6esn`)"), + octest_legacy:ct_string("Drop Index On:`6esn`(``)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:`2esn`)Assert Exists(Case When {@usn6} Contains 123.654 Contains 01 Then #usn8 Is Not Null Else 0.12 Ends With {1000} Ends With `6esn` End._usn3?)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:#usn7)Assert [`5esn` In $`2esn`[12.e12][$@usn5] Where `6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]].`3esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn5:@usn5)Assert Exists(Extract(_usn4 In 0.0[..{999}][..0.0] Where 12 Ends With 01|Count(*) Is Not Null)._usn3?)"), + octest_legacy:ct_string("Create Constraint On(@usn5:`4esn`)Assert [_usn4 In `2esn` Where 0Xa Contains {`7esn`} Contains $999].`1esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:_usn3]-()Assert Exists(Allshortestpaths((`6esn` :`7esn`)-[:_usn3|`8esn` *12..{`8esn`:Count(*)[.e12..],`5esn`:{#usn8}[12.0][$@usn6]}]-(`1esn` {_usn4:`3esn`[_usn4..{0}][`5esn`..usn2]})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`)).#usn8)"), + octest_legacy:ct_string("Create Constraint On()-[@usn5:_usn3]->()Assert Exists({`1esn`:$123456789[..$7][..$`6esn`]}.`4esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`3esn`)Assert Single(_usn4 In 0.0[..{999}][..0.0] Where #usn8 Is Null).`7esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[@usn6:#usn7]-()Assert Exists({usn1:999[12.0..][#usn7..],@usn5:123.654[$`1esn`..Null][1000..{_usn3}]}.`6esn`!)"), + octest_legacy:ct_string("Create Constraint On(@usn6:`3esn`)Assert None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Contains 123.654 Contains 01).`5esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[_usn4:`3esn`]-()Assert Exists(Filter(`2esn` In {999} Is Not Null Where #usn8 =~{_usn3} =~``).`6esn`!)"), + octest_legacy:ct_string("Create Constraint On(@usn5:`6esn`)Assert Allshortestpaths(({`3esn`:9e1 =~999})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->(usn1 {`5esn`})).`6esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:@usn5)Assert Exists([_usn3 In True[7][$999] Where 12.0 =~$#usn7 =~9e12|_usn4[Count(*)]].usn1!)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:@usn6)Assert Exists([$`5esn`[$#usn7..][0xabc..],1000[$7..$123456789],$`7esn`[$``..][999..]].`5esn`!)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:``)Assert Exists(`4esn`(Distinct 12e12 Is Not Null,{#usn8} =~{999} =~{#usn7}).``)"), + octest_legacy:ct_string("Drop Constraint On()-[`7esn`:#usn7]->()Assert Exists((`1esn` :_usn4)<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})._usn3)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:_usn3)Assert ({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6})-[{@usn5:1000 Is Null Is Null}]-(_usn3 :@usn5{`2esn`:@usn5[$12..\"d_str\"]})-[?:`8esn`|:_usn4{usn1:999[12.0..][#usn7..],@usn5:123.654[$`1esn`..Null][1000..{_usn3}]}]-(`5esn` :@usn6).`1esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn1:`3esn`)Assert [`6esn` In 00 Where 0X0123456789ABCDEF Is Null Is Null].`7esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`8esn`:usn1)Assert Reduce(usn2=12.e12 In $0 In $0,`` In {`1esn`} Starts With @usn6|{`4esn`}[$123456789..]).`4esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:`7esn`)Assert {`6esn`:1000,#usn8:$`5esn`[$#usn7..][0xabc..]}.@usn6! Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[`2esn`:`6esn`]-()Assert Exists(['s_str' Starts With 12e12 Starts With $_usn4,$7 In @usn5 In {@usn5}]._usn4)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:usn1)Assert (:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6).`4esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`7esn`:@usn6]->()Assert Exists(Shortestpath(((#usn8 :@usn5)<-[_usn3{@usn6:{7} Contains $123456789}]->(:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1}))).`6esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[`3esn`:`2esn`]-()Assert Exists([0xabc[$@usn5]].``!)"), + octest_legacy:ct_string("Create Constraint On(``:@usn5)Assert Exists(All(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $`6esn`[{`3esn`}..12]).@usn6)"), + octest_legacy:ct_string("Drop Constraint On()-[#usn7:`2esn`]->()Assert Exists(Case 9e0 Starts With .e0 Starts With \"d_str\" When $`1esn` Is Not Null Is Not Null Then `3esn`[$@usn5..@usn5][9e1..$``] End.#usn8?)"), + octest_legacy:ct_string("Create Constraint On(_usn4:#usn8)Assert [{12}[00..{@usn6}][1.e1..0],usn2[`7esn`..{`3esn`}][$7..{#usn7}]].usn2? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:_usn3)Assert Case When {`1esn`} =~{_usn4} Then 7 Is Not Null End.`5esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`3esn`:`7esn`]-()Assert Exists((`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}})<-[_usn4{`7esn`:01234567[..9e1]}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}).@usn6?)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:usn2)Assert {_usn4:0Xa Contains $``,@usn6:@usn6[$_usn4]}.usn1 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn3:#usn7)Assert {`6esn`:_usn3 Contains .e0 Contains {usn2},_usn4:1000[$7..$123456789]}.@usn5! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:@usn5)Assert Extract(usn1 In 12.e12 In {0} In 9e1 Where {12}[usn2])._usn4! Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[@usn6:`7esn`]-()Assert Exists(`6esn`(Distinct #usn7 =~{`4esn`} =~123456789,1e1[1.e1..][123.654..]).usn1)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:_usn4)Assert Exists(Allshortestpaths((:`2esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})).`5esn`?)"), + octest_legacy:ct_string("Drop Constraint On(usn2:_usn4)Assert Exists([12.e12[$`4esn`..],\"d_str\" Contains @usn6 Contains 12.e12,$7 Is Not Null].@usn6!)"), + octest_legacy:ct_string("Create Constraint On(`4esn`:`7esn`)Assert Exists(Reduce(`5esn`=1.e1 =~`2esn`,`1esn` In $12 Is Not Null|{1000}[01234567..$_usn4][{@usn6}..$_usn3]).`7esn`!)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:usn2)Assert Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End.`3esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn4:#usn7)Assert `6esn`(Distinct 12 Starts With $#usn7,12e12 Ends With `4esn` Ends With 123456789).usn2? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`7esn`)Assert [`1esn` Is Null Is Null,$`3esn` Contains 0 Contains 07,0 Contains $usn2 Contains 12e12].usn2! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(``:``)Assert Exists(All(`2esn` In {999} Is Not Null Where {1000}[1000][$usn1]).@usn5)"), + octest_legacy:ct_string("Drop Index On:`3esn`(`8esn`)"), + octest_legacy:ct_string("Create Constraint On()-[`1esn`:`5esn`]->()Assert Exists(Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 1.e1[0X0123456789ABCDEF..]).#usn7?)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`8esn`)Assert ({usn2:`1esn` In 07})<-[usn2? *0xabc..7{usn1:$123456789 Starts With `5esn`}]->(:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})-[`6esn`?:_usn3|`8esn`]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]}).@usn5! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`6esn`)Assert All(`3esn` In 123.654[1e1..][{#usn8}..] Where .e1[0.12]).`1esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:_usn4)Assert Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where Count(*) In {``}).`` Is Unique"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`5esn`)Assert Reduce(@usn6=0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12]).#usn8 Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`1esn`:@usn6]->()Assert Exists(Single(@usn5 In Null =~12e12).@usn5!)"), + octest_legacy:ct_string("Drop Constraint On()-[`3esn`:``]-()Assert Exists(Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where `6esn`[..{999}]).#usn8?)"), + octest_legacy:ct_string("Drop Constraint On(``:usn1)Assert Filter(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`]).#usn8! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`6esn`)Assert Exists(Reduce(`5esn`=`2esn` Starts With `` Starts With 1e1,usn1 In 12.e12 In {0} In 9e1|$usn2 Ends With $`5esn`)._usn3?)"), + octest_legacy:ct_string("Create Constraint On()-[`4esn`:#usn7]-()Assert Exists(Reduce(usn1=$7[$`3esn`],`5esn` In $`2esn`[12.e12][$@usn5]|9e1 =~999).`7esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[usn1:`8esn`]-()Assert Exists([0Xa[..{1000}][..$#usn7],$`6esn` Ends With {0} Ends With {`7esn`},0Xa[..{1000}][..$#usn7]].`6esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:`2esn`)Assert [`` In {`1esn`} Starts With @usn6 Where 's_str'[.._usn4][..``]].`7esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn2:#usn8)Assert Exists(Filter(`6esn` In Count(*) Ends With $`` Ends With {7} Where `7esn` Starts With 0X7 Starts With $`7esn`).`8esn`)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`3esn`)Assert Case 0.e0 =~`1esn` =~`6esn` When $`1esn`[$12][Count ( * )] Then 0Xa Contains {`7esn`} Contains $999 Else 0.12[..$`6esn`][..$1000] End.`2esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn6:usn2)Assert Exists([12 Starts With 7 Starts With $`5esn`].usn2!)"), + octest_legacy:ct_string("Create Constraint On(_usn3:`4esn`)Assert [.e1[0.12]].`6esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[usn2:#usn7]-()Assert Exists(Single(`6esn` In 00 Where {@usn5} Starts With 1.0 Starts With 00).``)"), + octest_legacy:ct_string("Create Constraint On()<-[usn1:`1esn`]-()Assert Exists(Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`)).@usn5)"), + octest_legacy:ct_string("Drop Constraint On(usn1:@usn6)Assert Exists([`6esn` In Count(*) Ends With $`` Ends With {7} Where `7esn` Starts With 0X7 Starts With $`7esn`].#usn7!)"), + octest_legacy:ct_string("Drop Constraint On()-[`7esn`:`8esn`]-()Assert Exists((:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[:`3esn`|:@usn5*..]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})._usn3)"), + octest_legacy:ct_string("Create Constraint On(#usn7:usn2)Assert {usn2:{`1esn`} Is Not Null}.@usn5! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn1:`5esn`)Assert Exists(Allshortestpaths((@usn6 :usn1:_usn4)<-[?:@usn6|`` *..01234567]->(#usn8 {usn1:$123456789 Starts With `5esn`})-[? *01..07]->(`8esn` :#usn7)).`2esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`1esn`)Assert (#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})-[?:@usn6|`` *1000]-(`5esn` :`7esn`)-[? *01..07]->(`8esn` :#usn7).`1esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn2:`4esn`)Assert Filter(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $7[{`1esn`}]).@usn5 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn3:usn2)Assert {`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}._usn4? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`2esn`)Assert Extract(`` In {`1esn`} Starts With @usn6 Where $`7esn`[$``..][999..]|True Is Null Is Null).`7esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[@usn5:#usn7]-()Assert Exists(Any(`2esn` In {999} Is Not Null Where $usn1[$123456789..0][{`1esn`}..12.0]).`3esn`!)"), + octest_legacy:ct_string("Create Constraint On(#usn8:_usn3)Assert Exists([`6esn` In Count(*) Ends With $`` Ends With {7} Where $12 Is Not Null]._usn3?)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:#usn8)Assert Exists(Filter(`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]).usn2)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`2esn`)Assert [07 =~$`8esn` =~9e1].usn1 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`8esn`)Assert Exists((#usn8 {`2esn`:{#usn8} =~{999} =~{#usn7}})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})._usn3)"), + octest_legacy:ct_string("Create Constraint On(usn2:usn2)Assert Exists((`7esn` {`3esn`:0.0 =~12.e12 =~1.0,`1esn`:$usn1 Starts With {_usn3}})-[ *..0{`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null}]->(:usn1:_usn4{`4esn`:01234567 In $123456789}).`2esn`!)"), + octest_legacy:ct_string("Drop Constraint On()-[_usn3:#usn7]->()Assert Exists([`3esn` In 123.654[1e1..][{#usn8}..]].@usn6!)"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:`8esn`]->()Assert Exists([`1esn` In `3esn`[07..] Where 00[07..]|0[$`6esn`...e1][`1esn`..$`7esn`]].`6esn`?)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:usn1)Assert Exists((:``{`1esn`:#usn8 Is Not Null,`5esn`:$@usn6[$0..usn1][0X0123456789ABCDEF..$999]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})-[?:_usn3|`8esn` *12..{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}]-(`6esn` :`2esn`{`7esn`:#usn8 =~{999}}).#usn8?)"), + octest_legacy:ct_string("Create Constraint On()-[usn1:usn1]-()Assert Exists(Extract(usn1 In 12.e12 In {0} In 9e1 Where {12}[usn2])._usn4!)"), + octest_legacy:ct_string("Create Constraint On()<-[usn2:`3esn`]-()Assert Exists((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(#usn7 :@usn6{`8esn`:{@usn6}[True..{_usn3}],`1esn`:07 Is Null})-[?:@usn6|``{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(`2esn` :#usn8{@usn6:`7esn` Ends With $_usn3 Ends With usn2,_usn4:{12} Starts With #usn8 Starts With 0e0})._usn3!)"), + octest_legacy:ct_string("Drop Constraint On()-[usn2:``]->()Assert Exists([True Is Not Null,12.e12[{@usn5}..][9e1..],$`3esn`[{``}..]].`5esn`)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`6esn`)Assert Exists(Single(`1esn` In $12 Is Not Null Where {``}[010]).`8esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[`2esn`:`6esn`]-()Assert Exists(Shortestpath((:`2esn`{`6esn`:@usn6[{0}..]})<-[usn2?:usn2|#usn7]->(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})).@usn6?)"), + octest_legacy:ct_string("Create Constraint On(_usn4:@usn6)Assert Case When #usn8 Is Not Null Then 12.e12 In $0 In $0 Else $`8esn`[..$999][..0] End.@usn5! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`5esn`:#usn7]-()Assert Exists(None(`2esn` In {999} Is Not Null Where {1000}[1000][$usn1]).`4esn`?)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:@usn5)Assert None(`1esn` In $12 Is Not Null Where 12.e12[{@usn5}..][9e1..]).`3esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[usn1:``]->()Assert Exists(Reduce(`3esn`=1.0 Is Null Is Null,`1esn` In `3esn`[07..]|{`4esn`} In _usn4)._usn4!)"), + octest_legacy:ct_string("Create Constraint On(#usn8:@usn6)Assert Exists(Reduce(#usn7=$@usn5[..usn2][..$#usn7],_usn3 In {@usn5}[..#usn7]|0.12[Count(*)..][$#usn7..]).`8esn`!)"), + octest_legacy:ct_string("Create Constraint On()-[`6esn`:`2esn`]-()Assert Exists(`2esn`(Distinct 0Xa[$1000..$123456789]).`3esn`)"), + octest_legacy:ct_string("Create Constraint On(usn1:_usn3)Assert Exists(Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where $`2esn`[12.e12][$@usn5]|$usn2 Is Null Is Null).@usn6!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`2esn`)Assert Exists((:_usn3{0})-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]->({@usn5:``[{123456789}..]})<-[`4esn`:`3esn`|:@usn5 *..010]->({`4esn`:12 Starts With {_usn4} Starts With $#usn8}).#usn7?)"), + octest_legacy:ct_string("Create Constraint On()-[`8esn`:`2esn`]-()Assert Exists(Single(_usn3 In {@usn5}[..#usn7] Where 9e0 Starts With .e0 Starts With \"d_str\").#usn8!)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:``)Assert Exists([_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $`6esn`[`8esn`][0.0]|00[07..]].`2esn`)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`4esn`)Assert usn1(12.e12[$`4esn`..]).#usn8! Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn6:#usn8)Assert [{1000}].#usn8? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`4esn`:_usn4)Assert 9e1.`3esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:`2esn`]-()Assert Exists(Filter(`1esn` In $12 Is Not Null Where {@usn5}[1e1..][9e1..]).@usn6!)"), + octest_legacy:ct_string("Create Constraint On(``:`4esn`)Assert Exists({`2esn`:\"d_str\" Is Null Is Null}.``)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`6esn`)Assert Exists((:``{``:$0[..{usn2}][..$usn1]})<-[`8esn`? *999]->(_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null}).`8esn`)"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:`8esn`)Assert [_usn4 In 0.0[..{999}][..0.0] Where `5esn`[..9e0][..01234567]].`1esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[usn1:``]-()Assert Exists(Reduce(`5esn`=$123456789[$`5esn`][$_usn4],`` In {`1esn`} Starts With @usn6|1e1 Contains usn2).#usn7)"), + octest_legacy:ct_string("Drop Constraint On(usn2:_usn4)Assert Exists(Allshortestpaths(({`5esn`:0Xa[0e0..{#usn7}]})<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})).`1esn`?)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`1esn`)Assert Filter(usn1 In 12.e12 In {0} In 9e1).`7esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn5:_usn3)Assert Reduce(`3esn`=123456789[0..],_usn3 In True[7][$999]|`2esn` Ends With $`4esn` Ends With {#usn7}).`8esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[@usn6:@usn5]-()Assert Exists(Reduce(_usn3=$`1esn` Is Not Null Is Not Null,`8esn` In $12[{7}..0X0123456789ABCDEF]|$`4esn` Starts With 0e0).`4esn`?)"), + octest_legacy:ct_string("Create Constraint On()-[`7esn`:`2esn`]->()Assert Exists(Reduce(`2esn`=9e0 In .e1 In 1.e1,`8esn` In $12[{7}..0X0123456789ABCDEF]|$`7esn`[$``..][999..]).`3esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[`6esn`:`7esn`]-()Assert Exists([_usn4 In 0.0[..{999}][..0.0] Where $`2esn` Is Null Is Null].`8esn`!)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`5esn`)Assert Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where $usn1 Starts With {_usn3}|Count ( * )[..12][..{@usn6}]).usn2? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`8esn`:`3esn`]-()Assert Exists(None(`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]).`6esn`)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:`7esn`)Assert Case When 0x0[{7}..] Then 1.e1 =~`2esn` Else `` Ends With $`4esn` Ends With 0X0123456789ABCDEF End.`3esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn3:#usn7)Assert Exists([_usn4 In 0.0[..{999}][..0.0] Where 12 Ends With 01].`7esn`)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`7esn`)Assert Single(`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12]).@usn6! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:``)Assert Exists(Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5)))).@usn6!)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:``)Assert Extract(_usn3 In {@usn5}[..#usn7] Where `2esn` Starts With `` Starts With 1e1).`2esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`6esn`)Assert Exists(Reduce(`6esn`=`4esn`[usn1],#usn7 In 123.654 Starts With $``|$`6esn`['s_str'..][{_usn4}..]).`5esn`!)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:``)Assert Filter(_usn4 In `2esn` Where `1esn` =~1000 =~1000)._usn4! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn8:_usn3)Assert Exists(Case 1.e1 =~`2esn` When Count(*) Is Not Null Then ``[..$#usn7] When {`3esn`}[{`5esn`}] Then \"d_str\" Contains @usn6 Contains 12.e12 Else $12 Contains 0Xa End.``?)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`7esn`)Assert _usn4(Distinct $``[.e12..]).`4esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn5:`6esn`)Assert Exists(Allshortestpaths((usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})<-[?:`6esn` *07]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]})).usn1!)"), + octest_legacy:ct_string("Drop Constraint On()-[usn1:_usn4]-()Assert Exists(Shortestpath((@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})).``!)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:#usn8)Assert Reduce(usn2={`4esn`}[..07][..$`6esn`],`2esn` In {999} Is Not Null|{12} Starts With #usn8 Starts With 0e0).``! Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[@usn6:usn2]-()Assert Exists([{999} Is Not Null,{`7esn`}[0X7..][0x0..]].@usn5)"), + octest_legacy:ct_string("Drop Constraint On(usn1:`5esn`)Assert Exists({@usn6:{7} Contains $123456789}.`8esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[`6esn`:usn1]-()Assert Exists(Case When 0.0 Is Not Null Then 1.e1 =~9e12 =~`4esn` When 9e12 Is Not Null Is Not Null Then $999 Ends With {0} End.`1esn`!)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:``)Assert Exists([1.e1 =~$usn2,1000].``!)"), + octest_legacy:ct_string("Create Constraint On()<-[`2esn`:@usn5]-()Assert Exists({_usn3:$1000 Is Not Null Is Not Null,_usn3:`5esn`[0xabc..]}.`5esn`!)"), + octest_legacy:ct_string("Drop Constraint On()<-[`2esn`:#usn7]-()Assert Exists(Any(`5esn` In $`2esn`[12.e12][$@usn5] Where 's_str' Starts With 12e12 Starts With $_usn4)._usn3)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:`3esn`)Assert Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where True[True..]).usn2? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[_usn3:#usn7]-()Assert Exists(({usn1:{123456789} =~01234567 =~`3esn`})-[_usn3:#usn7|`2esn`]-(_usn3 :#usn8).`5esn`!)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`8esn`)Assert Extract(`1esn` In `3esn`[07..] Where 12 Ends With 01|{#usn7}[Count ( * )..12][$`2esn`..`4esn`]).usn1? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:@usn5)Assert Case When Count(*)[.e12..] Then 9e0 Starts With .e0 Starts With \"d_str\" When 0.0[..{999}][..0.0] Then {usn1} =~123.654 =~\"d_str\" Else `3esn`[..{_usn4}][..{@usn5}] End.#usn7 Is Unique"), + octest_legacy:ct_string("Create Index On:`3esn`(usn2)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:_usn4)Assert [`1esn` In $12 Is Not Null Where {`3esn`}[{`5esn`}]|{`2esn`}[..{@usn6}][..1.e1]].`4esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[usn1:@usn6]-()Assert Exists(Reduce(``=1000,_usn4 In 0.0[..{999}][..0.0]|{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]).`6esn`)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:usn2)Assert Exists([$0[`7esn`],0.12 Contains 12.0,True Is Null Is Null].``?)"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:usn2]->()Assert Exists(Reduce(#usn8=$@usn6[$0..usn1][0X0123456789ABCDEF..$999],`8esn` In $12[{7}..0X0123456789ABCDEF]|$`` Starts With 12 Starts With $usn2).usn2!)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:@usn5)Assert Reduce(`8esn`=$@usn6[01..@usn5][0x0..`4esn`],`2esn` In {999} Is Not Null|{#usn8}[$#usn7..]).`7esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`3esn`:@usn5]-()Assert Exists(#usn7(Distinct `5esn` Is Null Is Null).usn1?)"), + octest_legacy:ct_string("Create Constraint On(`4esn`:usn1)Assert Exists(Case When $7 Ends With 0X7 Then Count(*)[.e12..] Else 00 Ends With `8esn` End.``?)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:``)Assert Exists(None(`3esn` In 123.654[1e1..][{#usn8}..] Where $`2esn`[12.e12][$@usn5]).#usn7)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:_usn4)Assert Filter(`6esn` In 00 Where $`1esn`[#usn8][$@usn5]).`3esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[_usn3:_usn3]-()Assert Exists(None(`1esn` In $12 Is Not Null Where `8esn`[..`4esn`][..$usn1]).`5esn`)"), octest_legacy:ct_string("Create Index On:_usn4(@usn5)"), - octest_legacy:ct_string("Create Constraint On()-[``:`2esn`]-()Assert Exists(All(`4esn` In $`3esn` Is Not Null Where {`6esn`} Contains \"d_str\").`3esn`)"), - octest_legacy:ct_string("Drop Constraint On(``:_usn3)Assert [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {123456789}[0xabc..]].`2esn`? Is Unique"), - octest_legacy:ct_string("Create Constraint On()<-[@usn5:`6esn`]-()Assert Exists(Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where {@usn5} Is Null Is Null|@usn5 In $7).#usn7)"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:`3esn`)Assert Exists(All(#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn1 Is Not Null).@usn5?)"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:`7esn`)Assert Exists((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[`5esn`?:`5esn` *1000..00]->({`1esn`:`3esn`[{`2esn`}]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]}).usn2?)"), - octest_legacy:ct_string("Drop Constraint On()<-[`6esn`:`7esn`]-()Assert Exists(Case When $#usn8[$`8esn`..{`8esn`}] Then $#usn8[$`8esn`..{`8esn`}] Else 9e1[2.12..{#usn8}] End.`6esn`!)"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:`4esn`)Assert Exists(usn1(123.654 =~$usn2 =~{999},1.0[$`1esn`..][$123456789..]).`7esn`?)"), - octest_legacy:ct_string("Create Constraint On(#usn7:`4esn`)Assert Allshortestpaths((_usn4 :#usn7)<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]})).`4esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`5esn`:usn2]-()Assert Exists((`2esn` :usn1)-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}).usn2!)"), - octest_legacy:ct_string("Create Constraint On()-[``:@usn5]-()Assert Exists(`5esn`(Distinct #usn7 =~Count ( * ) =~``).`5esn`!)"), - octest_legacy:ct_string("Drop Index On:#usn8(`6esn`)"), - octest_legacy:ct_string("Create Constraint On(@usn5:`4esn`)Assert Exists(None(`8esn` In 01[2.12..`8esn`] Where 0X7[..2.12]).`6esn`?)"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:@usn6)Assert Exists([_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|`` Is Not Null Is Not Null]._usn4?)"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:`7esn`)Assert Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null).`6esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On(``:``)Assert Reduce(#usn8=#usn7 Is Null Is Null,`8esn` In 01[2.12..`8esn`]|0Xa[2.12]).`7esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[usn2:`7esn`]->()Assert Exists(Extract(#usn7 In {``} Is Not Null Where @usn5 In {`7esn`} In `2esn`).`1esn`)"), - octest_legacy:ct_string("Drop Constraint On()-[``:#usn7]-()Assert Exists({`3esn`:usn1 Is Null Is Null}.`2esn`?)"), - octest_legacy:ct_string("Drop Constraint On()-[`7esn`:``]->()Assert Exists(Single(#usn7 In {``} Is Not Null Where {`2esn`} Ends With {`7esn`}).`4esn`?)"), - octest_legacy:ct_string("Drop Constraint On()-[`4esn`:`8esn`]->()Assert Exists(Any(`8esn` In 01[2.12..`8esn`] Where #usn7 Starts With {#usn7} Starts With `7esn`).#usn7?)"), - octest_legacy:ct_string("Create Constraint On()-[#usn8:`5esn`]->()Assert Exists(Filter(`5esn` In \"d_str\" Is Null Is Null Where usn1 Ends With $@usn6 Ends With `3esn`).usn2!)"), - octest_legacy:ct_string("Create Constraint On(usn1:`8esn`)Assert Exists(Case {_usn4} Is Not Null Is Not Null When {#usn8} Is Not Null Then $`8esn`[..00] When $#usn7[..{`5esn`}][..9e12] Then `7esn`[$0][9e12] End.@usn5?)"), - octest_legacy:ct_string("Create Constraint On(@usn5:usn1)Assert Exists(Case 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3] When $123456789 =~{`6esn`} =~\"d_str\" Then {@usn5} Is Null Is Null When 9e0 Then {_usn4} Is Not Null Is Not Null Else `7esn` In {123456789} In `1esn` End.usn1!)"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:usn1)Assert (`8esn` :`7esn`:_usn3{#usn7:'s_str' Is Not Null Is Not Null})-[:@usn6|`6esn`{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}]->(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789}).@usn5 Is Unique"), - octest_legacy:ct_string("Create Constraint On(#usn8:#usn7)Assert Exists(Extract(#usn8 In {`5esn`}[.e1..``] Where `6esn`[..$@usn6]|7 Starts With {@usn6} Starts With $``).usn2!)"), - octest_legacy:ct_string("Create Constraint On()-[#usn7:`2esn`]-()Assert Exists(Allshortestpaths(((usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]->(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(:@usn6:#usn8$`5esn`))).`5esn`)"), - octest_legacy:ct_string("Create Constraint On()-[@usn6:#usn8]->()Assert Exists([@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Starts With $1000|$usn2[{@usn5}]].@usn6!)"), - octest_legacy:ct_string("Drop Constraint On(``:`4esn`)Assert {`3esn`:$`6esn` Ends With Count(*),``:.e12 Ends With _usn4}.`5esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:_usn4)Assert [`` In `` Is Not Null Is Not Null Where `1esn` =~0 =~$#usn7|'s_str' In 00].`2esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`6esn`:`8esn`]->()Assert Exists((:usn2{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})-[`6esn`:`2esn`{`5esn`:00 Starts With 0xabc,`6esn`:0Xa =~Null =~$``}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}).`1esn`?)"), - octest_legacy:ct_string("Create Constraint On(@usn5:`5esn`)Assert #usn8(Distinct {``}[010..][0xabc..],`7esn` In {123456789} In `1esn`).usn2? Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`5esn`:`1esn`]->()Assert Exists(None(`4esn` In $`3esn` Is Not Null Where `2esn`[..$#usn8][..Count(*)]).`1esn`!)"), - octest_legacy:ct_string("Create Constraint On()-[usn2:`7esn`]-()Assert Exists(Reduce(#usn7=1.0 Contains $_usn4,#usn7 In {``} Is Not Null|$`4esn`[9e12..123.654]).`5esn`?)"), - octest_legacy:ct_string("Drop Constraint On(usn1:usn1)Assert Shortestpath(((:@usn6:#usn8{`4esn`:$`8esn`[..00]})<-[_usn4?:_usn4|:usn2 *00]->(:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))).`2esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:`2esn`)Assert {_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]}.`7esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[``:`2esn`]->()Assert Exists((`1esn` {``:`7esn` Starts With $#usn7 Starts With $`7esn`})-[`4esn`]->(:`6esn`$123456789)-[?:#usn7 *0xabc..]->(`3esn` :`5esn`{_usn3:7[True..][2.12..],`1esn`:$@usn5 Starts With {0} Starts With 12}).@usn5)"), - octest_legacy:ct_string("Create Constraint On(@usn5:`8esn`)Assert Exists([`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`]|123.654[{7}..]].@usn5)"), - octest_legacy:ct_string("Create Constraint On(usn1:`8esn`)Assert Exists(Case $`6esn`[123456789..12][True..{`3esn`}] When 1e1 Contains Count ( * ) Then $`3esn`[..$123456789][..$`1esn`] When $1000 In $1000 In $`3esn` Then {`7esn`}[..{`4esn`}] End.@usn5!)"), - octest_legacy:ct_string("Drop Constraint On()-[@usn6:`3esn`]-()Assert Exists(({``:00 Starts With 0xabc,`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]}).`2esn`)"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:@usn6)Assert Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789)._usn3 Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`1esn`:usn2]-()Assert Exists(Reduce(`7esn`=01 =~{_usn3} =~`3esn`,usn1 In @usn5 =~{`5esn`} =~`5esn`|12e12[$`3esn`]).`3esn`)"), - octest_legacy:ct_string("Create Constraint On(usn1:`2esn`)Assert Single(#usn7 In {``} Is Not Null Where usn1[9e12..][$7..]).`1esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On()<-[usn2:#usn7]-()Assert Exists(Reduce(``={@usn5} Is Null Is Null,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|0[.e0..{`1esn`}]).usn2?)"), - octest_legacy:ct_string("Create Constraint On()-[`1esn`:_usn3]-()Assert Exists(Single(#usn8 In {`5esn`}[.e1..``] Where {`1esn`}[12.0..`2esn`][@usn6..{usn1}]).``!)"), - octest_legacy:ct_string("Create Constraint On(`1esn`:_usn4)Assert Exists({@usn5:$_usn3['s_str'][07]}._usn3?)"), - octest_legacy:ct_string("Drop Constraint On(``:_usn3)Assert Exists(Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01|7[True..][2.12..])._usn4)"), - octest_legacy:ct_string("Drop Constraint On(_usn4:`3esn`)Assert {_usn4:True[07..$usn2][$7..{usn1}]}.``? Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn5:`3esn`)Assert Exists(Filter(`2esn` In `1esn` =~\"d_str\" Where 0.12 In _usn3 In {0})._usn3!)"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:`8esn`)Assert (usn1 )-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}).`4esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(``:@usn5)Assert {usn1:12 Ends With 0x0 Ends With 0.e0}._usn3? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(_usn4:_usn4)Assert Exists({`2esn`:usn2[{7}],`2esn`:0e0 Ends With 1.e1 Ends With $`4esn`}.`4esn`?)"), - octest_legacy:ct_string("Create Constraint On(`2esn`:`2esn`)Assert $123456789._usn3! Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[@usn6:_usn4]-()Assert Exists(`8esn`(`4esn`[..Count ( * )][..{#usn7}],{``}[...e12]).``)"), - octest_legacy:ct_string("Create Constraint On(`8esn`:#usn8)Assert `8esn`(Distinct `8esn` =~0xabc =~010).@usn5 Is Unique"), - octest_legacy:ct_string("Create Constraint On(`3esn`:#usn7)Assert {@usn5}.usn1? Is Unique"), - octest_legacy:ct_string("Create Constraint On()<-[@usn5:`4esn`]-()Assert Exists(Extract(`5esn` In $999[0.0..] Where {999}|9e1[$usn2]).usn1)"), - octest_legacy:ct_string("Drop Constraint On(@usn6:#usn8)Assert Exists(exists(Distinct 0X7[..2.12],07 =~01).`3esn`)"), - octest_legacy:ct_string("Drop Constraint On()<-[`4esn`:@usn6]-()Assert Exists(Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`4esn`} Starts With $usn2 Starts With $1000).`7esn`)"), - octest_legacy:ct_string("Create Constraint On(@usn5:`1esn`)Assert Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $0[``][{@usn6}]).`7esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[#usn8:``]-()Assert Exists(Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`6esn`}|{7}[..1.0][..9e0]).`7esn`)"), - octest_legacy:ct_string("Drop Constraint On()<-[#usn8:usn2]-()Assert Exists({@usn6:{999} Starts With $999,`4esn`:$usn1[{`5esn`}][$`6esn`]}.@usn5?)"), - octest_legacy:ct_string("Create Constraint On(`1esn`:`5esn`)Assert (:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})<-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]-(`7esn` :`5esn`{`3esn`:`7esn` Is Null}).#usn8! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:_usn4)Assert Exists((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})<-[?:`7esn`{`3esn`:{#usn8}[010]}]-(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]}).@usn5!)"), - octest_legacy:ct_string("Drop Constraint On()-[_usn3:@usn6]-()Assert Exists(Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`2esn`} Is Not Null).`3esn`)"), - octest_legacy:ct_string("Create Constraint On(usn2:``)Assert Exists(()<-[`1esn`?:`8esn` *123456789..]->(:`1esn`{@usn6:$usn1 Ends With $`` Ends With $12})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`).usn2!)"), - octest_legacy:ct_string("Create Constraint On(`3esn`:@usn6)Assert {`6esn`:0.e0 Ends With $#usn7 Ends With $7}.`5esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:_usn3)Assert Exists(`5esn`(Distinct Count ( * )[0.12...e1]).usn1)"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:`6esn`)Assert Exists((:usn2{`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2})._usn4?)"), - octest_legacy:ct_string("Create Constraint On(``:usn2)Assert Exists(Any(`5esn` In \"d_str\" Is Null Is Null Where 00[$`7esn`]).`5esn`)"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:@usn6)Assert Exists(Case When 0.12[`2esn`..{`6esn`}] Then 7[{0}..{_usn4}] When $@usn5 Starts With {0} Starts With 12 Then `` Ends With 123456789 Ends With 123.654 Else $`8esn`[$`6esn`..$`4esn`][0.12.._usn3] End._usn3?)"), - octest_legacy:ct_string("Create Constraint On(@usn5:`2esn`)Assert Exists(Filter(`` In `` Is Not Null Is Not Null Where 1.0 In Count(*)).@usn5?)"), - octest_legacy:ct_string("Create Constraint On(`3esn`:#usn8)Assert Exists(`2esn`(Distinct 01234567[usn2..$12][{`7esn`}..$usn2]).#usn7?)"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:`4esn`)Assert Reduce(`7esn`=False[..``],#usn8 In {`5esn`}[.e1..``]|$`` Starts With $1000 Starts With False).``? Is Unique"), - octest_legacy:ct_string("Create Constraint On()<-[``:_usn4]-()Assert Exists(Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]).@usn5)"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:@usn5)Assert (:_usn4{@usn6})<-[`4esn`?:_usn4|:usn2{_usn4:$usn2[{@usn5}],`2esn`:usn1[`5esn`..$7]}]->({``:$`8esn` =~{1000}})<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(:``:#usn8{usn1:{`6esn`}}).`1esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On(@usn6:_usn3)Assert Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]).`2esn`? Is Unique"), - octest_legacy:ct_string("Create Constraint On(_usn3:@usn6)Assert Exists(Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))).``)"), - octest_legacy:ct_string("Drop Constraint On(_usn3:`8esn`)Assert (@usn6 :``:#usn8)-[#usn8?{`5esn`:#usn7 Contains _usn3 Contains {`3esn`}}]-(:``:#usn8)<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(:usn2{`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]}).#usn8? Is Unique"), - octest_legacy:ct_string("Create Constraint On(``:_usn3)Assert Exists({`6esn`}.usn1)"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:#usn7)Assert usn1(Distinct 0X7[`7esn`][123.654],$`5esn`[..$`5esn`][..$12]).#usn7? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:#usn8)Assert Allshortestpaths(((:@usn5{#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`4esn` {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null})))._usn4 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:_usn4)Assert Exists(Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {123456789}[0xabc..]|{7}[$``][{@usn6}]).#usn7)"), - octest_legacy:ct_string("Create Constraint On()<-[``:_usn3]-()Assert Exists(Shortestpath(((`1esn` :`7esn`:_usn3{`2esn`:$#usn7[#usn7..],_usn4:'s_str' Is Not Null Is Not Null})-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1}))).`5esn`?)"), - octest_legacy:ct_string("Create Constraint On()-[_usn4:_usn3]->()Assert Exists(Extract(#usn7 In {``} Is Not Null Where {`1esn`}[usn1][.e1]|`6esn` In 0Xa)._usn3?)"), - octest_legacy:ct_string("Drop Constraint On()-[`3esn`:usn1]->()Assert Exists(Extract(#usn8 In {`5esn`}[.e1..``]).``?)"), - octest_legacy:ct_string("Drop Constraint On()<-[usn2:`5esn`]-()Assert Exists(Allshortestpaths((@usn5 {`7esn`:$`6esn`[010..],#usn8:0.e0 Starts With `2esn`})-[@usn5]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})).usn1!)"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:`3esn`)Assert `6esn`(`4esn`[``],True[{`7esn`}..]).usn1? Is Unique"), - octest_legacy:ct_string("Create Constraint On(`8esn`:`8esn`)Assert Exists({@usn5}.usn1?)"), - octest_legacy:ct_string("Create Constraint On(`1esn`:`7esn`)Assert Exists(`8esn`(`3esn`[{usn1}]).`3esn`)"), - octest_legacy:ct_string("Create Constraint On(_usn4:usn1)Assert Exists(Reduce(@usn5=$1000[999],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|0xabc[.e0]).`3esn`)"), - octest_legacy:ct_string("Create Constraint On()-[@usn6:#usn7]-()Assert Exists([$_usn4[1.e1]['s_str'],#usn8 Is Not Null,123456789[#usn8..False]].usn1!)"), - octest_legacy:ct_string("Create Constraint On()-[`6esn`:`3esn`]-()Assert Exists(Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn3}[..\"d_str\"][..`5esn`]).`4esn`!)"), - octest_legacy:ct_string("Create Constraint On(#usn8:_usn3)Assert Case When {``} Starts With $`2esn` Starts With `1esn` Then False =~$7 =~2.12 When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] Else True In 0e0 End.`1esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:`8esn`)Assert (:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})-[`7esn`?:usn1|@usn6 *1000..00{`8esn`:Count(*)[..usn2][..usn2],`5esn`:usn1 Is Null}]->(:`1esn`{`5esn`}).usn1! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`7esn`:usn1)Assert [0.12 =~$0 =~$0,Count ( * ) Contains {`1esn`} Contains 07].`2esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`2esn`:usn2)Assert Case When @usn6 Ends With {_usn3} Then False Contains {`6esn`} When `3esn`[`3esn`..][#usn8..] Then {`7esn`}[`6esn`][#usn7] End.@usn6? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(_usn4:`5esn`)Assert Extract(`8esn` In 01[2.12..`8esn`] Where Count ( * ) Ends With $@usn5|Count ( * )[True..][{#usn7}..]).usn2? Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`1esn`:`8esn`]->()Assert Exists([`6esn` In 0Xa,12.0 =~999 =~$_usn3].``)"), - octest_legacy:ct_string("Drop Constraint On()-[usn1:`1esn`]-()Assert Exists([$0[$`1esn`..07],{`5esn`} =~`4esn` =~{_usn4},.e0[..$`8esn`]]._usn4?)"), - octest_legacy:ct_string("Drop Constraint On()-[`7esn`:@usn6]-()Assert Exists([{12}[..0X7]].#usn8)"), - octest_legacy:ct_string("Create Constraint On(usn2:`3esn`)Assert Exists(Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 01234567 Is Null Is Null).`2esn`?)"), - octest_legacy:ct_string("Drop Constraint On(_usn4:`6esn`)Assert @usn6(`5esn` Is Null,7[..123456789][..{@usn6}]).`6esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn6:@usn6)Assert Exists({_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1}.`1esn`!)"), - octest_legacy:ct_string("Create Constraint On(`4esn`:_usn3)Assert Exists(Any(`5esn` In \"d_str\" Is Null Is Null Where {0}).``?)"), - octest_legacy:ct_string("Create Constraint On()-[#usn8:`1esn`]-()Assert Exists(Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {`3esn`} Is Not Null Is Not Null).`2esn`!)"), - octest_legacy:ct_string("Create Constraint On(`7esn`:`2esn`)Assert (:`6esn`{#usn8:{`3esn`}[@usn6..0Xa][{12}..0Xa],@usn5:False Is Null Is Null})-[?:`5esn`]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}).`2esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(usn1:usn2)Assert Exists(Shortestpath((_usn3 :usn2{#usn7:{999} Starts With {0}})).`6esn`?)"), - octest_legacy:ct_string("Create Constraint On(#usn7:@usn5)Assert Exists(None(_usn3 In {`3esn`}[`2esn`])._usn3?)"), - octest_legacy:ct_string("Create Constraint On()<-[``:_usn4]-()Assert Exists({#usn7:.e1 Ends With 1e1 Ends With @usn5}.@usn5)"), - octest_legacy:ct_string("Drop Constraint On(``:`7esn`)Assert Exists(Case When `5esn` Is Null Then True[..$`6esn`] Else `3esn`[`3esn`..][#usn8..] End.@usn5?)"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:_usn3)Assert Exists((`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[:@usn5{@usn5:{#usn7}[9e1..][{123456789}..],``:#usn7 Is Not Null Is Not Null}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[? *00]->(@usn5 :usn1).`1esn`!)"), - octest_legacy:ct_string("Create Constraint On()-[#usn8:`5esn`]->()Assert Exists(Reduce(`1esn`=9e0[`3esn`..$_usn4],#usn7 In `2esn`[..$#usn8][..Count(*)]|{7} In `2esn`).usn1?)"), - octest_legacy:ct_string("Create Constraint On(_usn3:@usn5)Assert Reduce(`7esn`={12} =~#usn8,#usn7 In {``} Is Not Null|1.e1[$`1esn`..@usn6][$0..$_usn3]).`5esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`4esn`:_usn3]->()Assert Exists(All(`4esn` In $`3esn` Is Not Null Where $`2esn`).usn2!)"), - octest_legacy:ct_string("Create Constraint On()-[`6esn`:`3esn`]-()Assert Exists({`6esn`:False =~$7 =~2.12,`1esn`:\"d_str\" Is Null Is Null}.``!)"), - octest_legacy:ct_string("Create Constraint On()-[`8esn`:``]-()Assert Exists({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2}.`8esn`!)"), - octest_legacy:ct_string("Create Constraint On()-[`2esn`:usn2]-()Assert Exists({@usn5:123.654[...e0],`8esn`:07 =~01}.usn1?)"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:@usn6)Assert Exists(All(#usn8 In 7[..999][..{#usn8}] Where $1000 In $1000 In $`3esn`).`8esn`?)"), - octest_legacy:ct_string("Create Constraint On(_usn3:@usn6)Assert Exists(Reduce(``=`8esn` Ends With 999 Ends With .e12,`3esn` In {7} Is Null|1.0 Starts With 12e12 Starts With {`5esn`}).#usn7?)"), - octest_legacy:ct_string("Create Constraint On(`4esn`:@usn5)Assert Exists([_usn3 In {`3esn`}[`2esn`]|{#usn7}[`2esn`..]].`5esn`)"), - octest_legacy:ct_string("Drop Constraint On(usn1:usn1)Assert Exists({usn1:0X0123456789ABCDEF Is Null Is Null}.`4esn`!)"), - octest_legacy:ct_string("Drop Constraint On()<-[_usn4:@usn6]-()Assert Exists(Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`).`1esn`)"), - octest_legacy:ct_string("Create Constraint On()-[`8esn`:`4esn`]-()Assert Exists(Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where #usn8 Is Not Null).`5esn`!)"), - octest_legacy:ct_string("Drop Constraint On(@usn5:`5esn`)Assert (`5esn` :`2esn`:usn1)-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-(:#usn8:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[:`3esn`|:#usn8 *7..12{@usn5:_usn4 Starts With $_usn4 Starts With 12.e12}]-(`3esn` :_usn4).`8esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[@usn6:_usn4]-()Assert Exists(Allshortestpaths(((@usn5 :`4esn`))).`4esn`!)"), - octest_legacy:ct_string("Drop Constraint On()-[`5esn`:_usn3]-()Assert Exists(`7esn`(Distinct #usn7 Starts With {#usn7} Starts With `7esn`,9e0).@usn5)"), - octest_legacy:ct_string("Create Constraint On(#usn8:usn1)Assert Exists([0[1.e1..12e12],999 In {`3esn`} In usn2].`5esn`)"), - octest_legacy:ct_string("Create Constraint On(`6esn`:#usn7)Assert {@usn5:{usn1}[0X0123456789ABCDEF],_usn4:usn2[$7..$123456789][$@usn6..$7]}._usn3 Is Unique"), - octest_legacy:ct_string("Create Constraint On(``:@usn6)Assert [$@usn5 Is Not Null,_usn3[_usn3..][12.e12..]].#usn8? Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn5:@usn6)Assert Exists(Allshortestpaths((({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]})))._usn3)"), - octest_legacy:ct_string("Drop Constraint On(usn1:`6esn`)Assert Exists(None(`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1)._usn3!)"), - octest_legacy:ct_string("Create Constraint On(_usn3:`8esn`)Assert Exists([12.e12[7..$`6esn`],07 In `2esn` In 12e12,{#usn8}[.._usn4][..$`3esn`]]._usn3)"), - octest_legacy:ct_string("Create Constraint On(`2esn`:`4esn`)Assert Exists({`3esn`:.e0 Starts With 0 Starts With 0.e0}._usn3?)"), - octest_legacy:ct_string("Create Constraint On()-[`8esn`:`8esn`]-()Assert Exists(Reduce(``=$usn1[.._usn4][..False],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|#usn8[#usn8..]).`8esn`)"), - octest_legacy:ct_string("Drop Constraint On(``:`6esn`)Assert #usn8({`3esn`} In 01).`6esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn5:usn2)Assert ({usn1:{`7esn`}[`6esn`][#usn7],usn1:{999} Starts With $999})-[ *0..]->(`` :usn2)<-[`5esn`?:_usn3|_usn3 *0X7..]->(:#usn8:#usn8{``:1.0[0e0..0.e0]}).`1esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`4esn`:`8esn`]-()Assert Exists(Case When 1e1 Contains Count ( * ) Then $`` Is Not Null When {`5esn`} Starts With $`5esn` Starts With .e1 Then .e12 In 0.e0 In {12} Else {`3esn`} In 0X7 End.``?)"), - octest_legacy:ct_string("Create Constraint On(`2esn`:#usn7)Assert Exists(All(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where True =~010).``)"), - octest_legacy:ct_string("Create Constraint On(`3esn`:#usn7)Assert Allshortestpaths((((`8esn` {_usn4:`4esn`[1.0],`5esn`:0e0 Ends With 1.e1 Ends With $`4esn`})-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})))).`8esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`3esn`:`2esn`]-()Assert Exists(Single(`3esn` In {7} Is Null Where {`4esn`} =~{7} =~{`7esn`}).usn2!)"), - octest_legacy:ct_string("Drop Constraint On()<-[`7esn`:#usn8]-()Assert Exists(None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3]).#usn8)"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:``)Assert Single(#usn7 In {``} Is Not Null Where $12[True..][{0}..]).@usn5! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`1esn`:`8esn`)Assert Exists(All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null).`8esn`)"), - octest_legacy:ct_string("Create Constraint On()-[_usn4:`5esn`]-()Assert Exists(Allshortestpaths((#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(#usn7 ))._usn4?)"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:_usn4)Assert Any(`` In `` Is Not Null Is Not Null Where `4esn`[..Count ( * )][..{#usn7}]).usn2? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(@usn5:@usn6)Assert Exists(Allshortestpaths((((`7esn` {`5esn`:123.654 Contains $`4esn` Contains 1.0,`8esn`:123.654 =~$usn2 =~{999}})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[`2esn`?:`1esn` *00]->({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})))).``!)"), - octest_legacy:ct_string("Create Constraint On()<-[`2esn`:`6esn`]-()Assert Exists(Reduce(#usn7=usn2[9e12],`3esn` In {7} Is Null|0Xa[usn2..]).`6esn`!)"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:`5esn`)Assert [Null Ends With `2esn` Ends With $usn1,0X0123456789ABCDEF[123456789],0Xa[$123456789..123.654][.e12..0.e0]].`3esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`4esn`)Assert ({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[usn2?]-(:@usn5).#usn8! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:_usn4)Assert Single(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 12e12[$`3esn`]).`3esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:_usn3)Assert Reduce(_usn4=$`2esn`,#usn8 In 7[..999][..{#usn8}]|'s_str' Ends With 7 Ends With {_usn4}).`4esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:``)Assert None(`5esn` In \"d_str\" Is Null Is Null Where {_usn3}[..\"d_str\"][..`5esn`]).usn2! Is Unique"), - octest_legacy:ct_string("Drop Constraint On()<-[usn1:`3esn`]-()Assert Exists(Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {12}[{7}][$123456789]).`7esn`?)"), - octest_legacy:ct_string("Create Constraint On(`8esn`:#usn7)Assert Exists([0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},0Xa Starts With {`6esn`} Starts With $usn1].`3esn`!)"), - octest_legacy:ct_string("Drop Constraint On(_usn3:_usn3)Assert [`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {_usn4} Starts With 0.e0 Starts With 0x0|{0}[@usn6..$1000]].#usn8? Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[usn1:`5esn`]-()Assert Exists(Reduce(`7esn`=2.12 Contains usn2 Contains True,`` In 123456789 Ends With 12.e12 Ends With $`7esn`|`5esn` Starts With 010 Starts With 0.0).`1esn`)"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:_usn4)Assert `3esn`(Distinct `1esn` =~0 =~$#usn7,$usn1 =~``).usn1 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:`4esn`)Assert Reduce(#usn7=0Xa[2.12],`5esn` In \"d_str\" Is Null Is Null|$@usn6 Ends With $_usn4 Ends With 0.12).`` Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`4esn`:usn2]->()Assert Exists([`5esn` In \"d_str\" Is Null Is Null].usn1!)"), - octest_legacy:ct_string("Drop Constraint On(@usn5:`1esn`)Assert @usn6(0[..usn2][..{@usn5}],$`7esn` =~{`8esn`} =~$usn1).usn1 Is Unique"), - octest_legacy:ct_string("Create Constraint On()<-[`4esn`:@usn5]-()Assert Exists([`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn2[{7}]].``?)"), - octest_legacy:ct_string("Create Constraint On(`3esn`:usn1)Assert Shortestpath((`2esn` :`3esn`:@usn5)<-[`3esn`:`6esn`|`5esn` *..12{usn1:0X0123456789ABCDEF Is Null Is Null}]-(:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[`7esn` *0X0123456789ABCDEF]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})).`4esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(`5esn`:`8esn`)Assert Filter(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 00[`2esn`..12][123456789..0.e0]).`3esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`5esn`:`8esn`]-()Assert Exists(Reduce(`4esn`=usn1 In 7 In {123456789},@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|$`8esn` Contains 123456789 Contains $usn2).`6esn`?)"), - octest_legacy:ct_string("Drop Constraint On()-[_usn4:@usn6]->()Assert Exists(Reduce(``=@usn5 In {`7esn`} In `2esn`,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{_usn4}[1000..{@usn5}]).`1esn`)"), - octest_legacy:ct_string("Create Constraint On()-[_usn3:`4esn`]-()Assert Exists(Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|0.e0[123.654][01]).`6esn`)"), - octest_legacy:ct_string("Drop Constraint On()<-[`2esn`:@usn6]-()Assert Exists((`7esn` :@usn5$`7esn`)-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(`7esn` {@usn5:{7}[..1.0][..9e0]}).`1esn`)"), - octest_legacy:ct_string("Drop Constraint On(@usn5:@usn5)Assert Case 0x0 Ends With $12 When {_usn4} Ends With `6esn` Then $0 Ends With 12.0 Else _usn3[$`8esn`] End.#usn7! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(_usn3:#usn7)Assert Exists(`6esn`(Distinct $_usn4 Ends With usn1 Ends With $0,$`1esn`[1.0..][_usn3..]).usn1!)"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:#usn7)Assert Exists({usn1:#usn7 Is Null Is Null,`5esn`:{`3esn`} In 0X7}.`3esn`?)"), - octest_legacy:ct_string("Create Constraint On()-[`2esn`:#usn7]->()Assert Exists(`2esn`(Distinct 0X7[$999][_usn4],`1esn` =~\"d_str\").`3esn`)"), - octest_legacy:ct_string("Drop Constraint On(#usn8:`5esn`)Assert ({`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa})-[`1esn`? *1000..00{@usn5:.e0[..$`8esn`],`4esn`:{usn2} =~12}]->(_usn4 {usn1:True Contains {0} Contains 7})<-[``?:``$1000]-(`3esn` :`4esn`{`3esn`:0.12 =~$0 =~$0,``:0Xa =~123456789 =~_usn4}).@usn6? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:``)Assert `6esn`(Distinct `5esn` Ends With {``} Ends With 12.e12).@usn5 Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[_usn3:@usn6]-()Assert Exists(Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {`3esn`} Is Not Null Is Not Null).`2esn`!)"), - octest_legacy:ct_string("Create Constraint On()-[`5esn`:`7esn`]-()Assert Exists([2.12 Is Null].`8esn`?)"), - octest_legacy:ct_string("Drop Constraint On()-[@usn6:usn1]->()Assert Exists(Allshortestpaths((((`6esn` :`1esn`{`5esn`:$#usn8 Ends With $`2esn` Ends With $@usn6})-[`6esn`? *0..]-(`5esn` :`2esn`:usn1)-[``?{#usn7:{usn1} Is Not Null Is Not Null}]->(:`4esn`{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})))).`6esn`?)"), - octest_legacy:ct_string("Create Constraint On(`1esn`:_usn4)Assert All(`5esn` In \"d_str\" Is Null Is Null Where 1000 In {`8esn`} In 01)._usn4 Is Unique"), - octest_legacy:ct_string("Drop Constraint On()<-[`3esn`:@usn6]-()Assert Exists([#usn8 In {`5esn`}[.e1..``] Where $`3esn` Is Not Null].#usn7?)"), - octest_legacy:ct_string("Drop Constraint On()-[#usn8:`4esn`]->()Assert Exists((:@usn5{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[?:_usn4|:usn2]->({usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null}).`7esn`)"), - octest_legacy:ct_string("Create Constraint On(`1esn`:`2esn`)Assert Exists({`1esn`:1e1 In 123.654 In `3esn`,`3esn`:$#usn7 Is Null}.@usn5!)"), - octest_legacy:ct_string("Drop Constraint On(_usn3:usn1)Assert Exists(None(`8esn` In 01[2.12..`8esn`] Where $1000[0Xa][{#usn7}]).`5esn`!)"), - octest_legacy:ct_string("Create Constraint On()-[_usn4:`3esn`]-()Assert Exists({@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}}.`3esn`)"), - octest_legacy:ct_string("Create Constraint On()-[@usn6:`4esn`]->()Assert Exists(Any(_usn3 In {`3esn`}[`2esn`] Where 7 Ends With $`4esn`).`1esn`?)"), - octest_legacy:ct_string("Create Constraint On()<-[#usn7:`8esn`]-()Assert Exists(Extract(#usn7 In {``} Is Not Null Where usn1[9e12..][$7..]).`4esn`?)"), - octest_legacy:ct_string("Drop Constraint On(usn1:`6esn`)Assert None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 123456789[{123456789}..'s_str']).`7esn`? Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[``:#usn8]->()Assert Exists(Reduce(`6esn`={1000} =~0 =~123.654,`5esn` In \"d_str\" Is Null Is Null|.e1[{`7esn`}..{_usn4}]).usn2!)"), - octest_legacy:ct_string("Create Constraint On()<-[`2esn`:``]-()Assert Exists(All(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 7 Starts With {@usn6} Starts With $``).#usn7)"), - octest_legacy:ct_string("Create Constraint On(usn2:#usn7)Assert Exists(Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}|`1esn` In .e0 In {`3esn`}).#usn7?)"), - octest_legacy:ct_string("Create Constraint On(@usn5:#usn8)Assert Reduce(`6esn`={`6esn`}[..$@usn6][..`7esn`],@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{123456789} Is Null Is Null).`4esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:`5esn`)Assert Exists(({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})<-[?:`6esn`|`5esn`*..{`8esn`:1000[Null..{123456789}]}]-(_usn4 :#usn7{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})._usn4?)"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:``)Assert Exists({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}.usn2?)"), - octest_legacy:ct_string("Create Constraint On()-[`2esn`:`5esn`]-()Assert Exists(None(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where `7esn`[9e0..]).`3esn`!)"), - octest_legacy:ct_string("Create Constraint On()-[`5esn`:`1esn`]->()Assert Exists(Reduce(_usn4=0.0 Ends With 010 Ends With 1.e1,_usn3 In {`3esn`}[`2esn`]|01 Ends With 999 Ends With {`7esn`}).`2esn`!)"), - octest_legacy:ct_string("Drop Constraint On(@usn6:`7esn`)Assert {`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}.``! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`5esn`:#usn8)Assert Shortestpath(((`1esn` :_usn3:_usn3))).``! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(#usn8:usn2)Assert 00.usn1? Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[_usn3:_usn4]->()Assert Exists(Filter(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]).#usn7?)"), - octest_legacy:ct_string("Create Constraint On(`7esn`:`1esn`)Assert Exists(`1esn`(Distinct `4esn`[1.0]).#usn7)"), - octest_legacy:ct_string("Create Constraint On(`2esn`:`6esn`)Assert Exists([`5esn`[7][{usn2}]].#usn7?)"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:#usn8)Assert Extract(_usn3 In {`3esn`}[`2esn`] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]).`2esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(`3esn`:`7esn`)Assert Exists(All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0.0 In $usn1).`1esn`!)"), - octest_legacy:ct_string("Drop Constraint On()<-[#usn7:`7esn`]-()Assert Exists(@usn5(Distinct $_usn3[.e0..$usn2]).@usn6?)"), - octest_legacy:ct_string("Drop Constraint On()-[`3esn`:#usn8]-()Assert Exists(Reduce(usn2=0.e0 In $#usn7 In $_usn3,`3esn` In {7} Is Null|{12} Is Null Is Null).`7esn`)"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:_usn4)Assert Exists(None(#usn8 In {`5esn`}[.e1..``] Where {`6esn`} =~$999).#usn8?)"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:@usn6)Assert [#usn7 In `2esn`[..$#usn8][..Count(*)] Where $`3esn` In $_usn4 In {_usn3}]._usn3? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:`5esn`)Assert Exists({_usn4:00[`2esn`..12][123456789..0.e0],`8esn`:0x0[`4esn`..'s_str']}.#usn7)"), - octest_legacy:ct_string("Drop Constraint On()-[``:`2esn`]->()Assert Exists([.e12 Ends With _usn4,$#usn8[9e12..][.e1..],$1000 In $1000 In $`3esn`].#usn8)"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:#usn7)Assert Single(`8esn` In 01[2.12..`8esn`] Where {`2esn`} Is Not Null).@usn6! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`1esn`:#usn7)Assert Any(`2esn` In `1esn` =~\"d_str\" Where 0e0 Ends With 1.e1 Ends With $`4esn`)._usn4! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:`8esn`)Assert Exists(Filter(#usn8 In {`5esn`}[.e1..``] Where $`3esn` Is Not Null).`6esn`)"), - octest_legacy:ct_string("Drop Constraint On()-[`8esn`:`2esn`]->()Assert Exists([@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where True In 0e0|1.0[00..]].#usn8!)"), - octest_legacy:ct_string("Drop Constraint On()<-[_usn4:_usn4]-()Assert Exists(Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]).`4esn`!)"), - octest_legacy:ct_string("Drop Constraint On()<-[``:usn1]-()Assert Exists({@usn5:@usn6 Starts With `6esn` Starts With $`1esn`}.`4esn`?)"), - octest_legacy:ct_string("Create Constraint On(`2esn`:`8esn`)Assert Exists([2.12 =~False,`3esn`[{usn1}],usn2[9e12]].`5esn`!)"), - octest_legacy:ct_string("Drop Constraint On(_usn4:_usn4)Assert Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $#usn7[@usn5..{1000}][1.e1..7]).`7esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(`1esn`:`8esn`)Assert Exists(Any(`` In `` Is Not Null Is Not Null Where {0}[12.0..0Xa][$`5esn`..{_usn3}])._usn3!)"), - octest_legacy:ct_string("Create Constraint On(@usn5:#usn8)Assert Exists(None(`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"])._usn4!)"), - octest_legacy:ct_string("Drop Constraint On(@usn6:@usn6)Assert Exists(Allshortestpaths(((@usn6 :`1esn`{#usn8:`4esn`[1.0],``:.e12[@usn5..#usn7][010..{usn1}]}))).`1esn`?)"), - octest_legacy:ct_string("Create Constraint On(`4esn`:`2esn`)Assert Filter(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn2[{7}]).`1esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:@usn6)Assert Exists(None(#usn7 In {``} Is Not Null Where {`6esn`} =~$999).`8esn`!)"), - octest_legacy:ct_string("Drop Constraint On()-[usn1:`1esn`]-()Assert Exists(None(_usn3 In {`3esn`}[`2esn`] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0])._usn4)"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:#usn8)Assert Exists(Reduce(_usn4=$@usn5 =~1000 =~1000,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|$`6esn`[12]).`5esn`?)"), - octest_legacy:ct_string("Create Constraint On(`1esn`:``)Assert Exists(Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {_usn4}[...e1][..$7]|@usn6 Contains Null Contains $`7esn`).`3esn`!)"), - octest_legacy:ct_string("Create Constraint On(@usn5:`4esn`)Assert Case When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` End.`4esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:_usn4)Assert count(`1esn` Contains {usn2} Contains $#usn8).@usn6 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(_usn3:`2esn`)Assert None(`4esn` In $`3esn` Is Not Null Where Null Ends With {`5esn`} Ends With 0.e0).`4esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn5:_usn4)Assert {`7esn`:{0} Ends With $_usn3 Ends With $`7esn`,`8esn`:.e1[{`7esn`}..{_usn4}]}.`5esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`8esn`:``)Assert `7esn`($999,12e12 Contains 0Xa).`2esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On(_usn4:#usn8)Assert Exists({usn1:{#usn7} Is Not Null Is Not Null}.usn1?)"), - octest_legacy:ct_string("Create Constraint On()-[#usn8:`3esn`]->()Assert Exists(Allshortestpaths(((:`1esn`{@usn6:$usn1 Ends With $`` Ends With $12})-[]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]}))).@usn6?)"), - octest_legacy:ct_string("Drop Constraint On(@usn5:``)Assert (:#usn8:#usn8)<-[? *0X7..{#usn8:{1000} Is Null Is Null,`3esn`:0.e0 Starts With 12.e12 Starts With {_usn4}}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12}).`` Is Unique"), - octest_legacy:ct_string("Drop Constraint On(_usn3:`4esn`)Assert Exists(Case {_usn4} Is Not Null Is Not Null When {#usn8} Is Not Null Then $`8esn`[..00] When $#usn7[..{`5esn`}][..9e12] Then `7esn`[$0][9e12] End.`5esn`)"), - octest_legacy:ct_string("Create Constraint On(@usn6:`4esn`)Assert Exists(Single(#usn7 In {``} Is Not Null Where {`2esn`} Ends With {`7esn`}).`4esn`?)"), - octest_legacy:ct_string("Drop Constraint On()-[`2esn`:#usn7]-()Assert Exists(`4esn`(Distinct False =~$7 =~2.12,$`7esn` Is Null Is Null)._usn3)"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`8esn`)Assert [`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 123456789 Ends With 12.e12 Ends With $`7esn`|123.654[{7}..]]._usn4! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(``:`5esn`)Assert Reduce(`3esn`=#usn7 Starts With {#usn7} Starts With `7esn`,`4esn` In $`3esn` Is Not Null|{@usn5}[{#usn8}][9e0]).#usn8! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:`4esn`)Assert Any(`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}).`6esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On()<-[`2esn`:`5esn`]-()Assert Exists(`6esn`(.e1 =~$`8esn`)._usn3!)"), - octest_legacy:ct_string("Drop Constraint On(@usn6:#usn7)Assert _usn4(#usn7 Starts With {#usn7} Starts With `7esn`,$999).usn1! Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`8esn`:_usn4]-()Assert Exists({``:_usn4 Starts With $_usn4 Starts With 12.e12}.`5esn`!)"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:`4esn`)Assert Allshortestpaths((:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})-[`1esn`:_usn4|:usn2]-(`8esn` :`8esn`:`7esn`)).@usn5? Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn6:@usn6)Assert Case `4esn`[1.0] When {@usn5}[{#usn8}][9e0] Then {7} In `2esn` When 0Xa Starts With {`6esn`} Starts With $usn1 Then {`6esn`} Contains \"d_str\" End._usn3 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(usn2:_usn4)Assert Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 010 =~{usn2}).@usn5 Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn5:``)Assert None(`4esn` In $`3esn` Is Not Null Where {999} Contains .e0 Contains 12.0).`6esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(@usn5:`1esn`)Assert Exists(All(#usn7 In `2esn`[..$#usn8][..Count(*)] Where _usn4 Contains 2.12).`1esn`?)"), - octest_legacy:ct_string("Drop Constraint On()<-[`2esn`:`6esn`]-()Assert Exists(Case 0X7[{@usn6}] When `4esn`[..010][..{12}] Then $_usn3[{#usn7}] End.@usn5?)"), - octest_legacy:ct_string("Drop Constraint On()<-[usn1:usn2]-()Assert Exists(`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null).@usn5!)"), - octest_legacy:ct_string("Create Constraint On(`4esn`:`4esn`)Assert Exists(Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0X7[`7esn`][123.654]|$@usn5 Starts With {0} Starts With 12).@usn6?)"), - octest_legacy:ct_string("Drop Constraint On()-[`8esn`:`7esn`]-()Assert Exists(Reduce(``=0x0[{`7esn`}..][$usn2..],`5esn` In \"d_str\" Is Null Is Null|$`1esn`[1.0..][_usn3..]).@usn6)"), - octest_legacy:ct_string("Drop Constraint On(_usn4:usn1)Assert Exists((`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})-[`7esn`?:`5esn`]->(:@usn6:#usn8{`4esn`:$`8esn`[..00]}).`6esn`!)"), - octest_legacy:ct_string("Create Constraint On()-[`6esn`:`8esn`]->()Assert Exists({_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1}.`1esn`!)"), - octest_legacy:ct_string("Create Index On:@usn6(@usn5)"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:usn2)Assert Exists(Reduce(#usn8=$_usn4[0e0..][False..],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|#usn8[#usn8..])._usn4?)"), - octest_legacy:ct_string("Drop Constraint On()-[@usn6:_usn3]->()Assert Exists({_usn4:usn1 Is Not Null}.`1esn`)"), - octest_legacy:ct_string("Create Constraint On(`3esn`:`4esn`)Assert [_usn3 In {`3esn`}[`2esn`] Where 1e1 In 123.654 In `3esn`|.e1[..usn2][..`8esn`]].usn2 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:@usn5)Assert Exists([_usn3[_usn3..][12.e12..],$`7esn` Is Null Is Null].usn1!)"), - octest_legacy:ct_string("Drop Constraint On()-[`3esn`:`5esn`]-()Assert Exists({`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}.@usn5)"), - octest_legacy:ct_string("Drop Constraint On(@usn6:usn2)Assert Exists(Shortestpath(((:#usn8:#usn8{_usn4})<-[usn1?:`7esn`]-(:usn1{usn1:{`6esn`}}))).@usn5!)"), - octest_legacy:ct_string("Drop Constraint On()<-[_usn4:`2esn`]-()Assert Exists(Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where $_usn3[Count(*)]|{_usn4} In {12} In $0).`7esn`!)"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`1esn`)Assert Exists({usn2:_usn3[$`8esn`]}.`2esn`!)"), - octest_legacy:ct_string("Create Constraint On(@usn6:usn1)Assert [$_usn4[Count ( * )..],$`3esn` In $`6esn` In $``,$`6esn`[123456789..12][True..{`3esn`}]]._usn4! Is Unique"), - octest_legacy:ct_string("Create Constraint On(usn2:``)Assert Reduce(`3esn`=0.e0 In $#usn7 In $_usn3,@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|`8esn` Contains $usn1 Contains $12).@usn5 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:#usn8)Assert Exists(Case When 9e1[$usn2] Then $`` Is Not Null When 1.0[0e0..0.e0] Then 01[{`2esn`}..{@usn6}][$`2esn`..0.0] End.usn1)"), - octest_legacy:ct_string("Create Constraint On(#usn7:`3esn`)Assert Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`5esn`[`3esn`..]).usn2! Is Unique"), - octest_legacy:ct_string("Create Constraint On()<-[`4esn`:``]-()Assert Exists([#usn8 In {`5esn`}[.e1..``] Where {7}[..12e12][..Count ( * )]].`8esn`?)"), - octest_legacy:ct_string("Create Constraint On(usn1:#usn7)Assert [9e1[2.12..{#usn8}],01 Is Null].usn1! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:usn2)Assert Exists(Reduce(`4esn`=`7esn`[..2.12][..00],`5esn` In $999[0.0..]|0X0123456789ABCDEF =~1e1 =~{`4esn`}).`7esn`?)"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:`1esn`)Assert Shortestpath(((`5esn` :`2esn`:usn1)))._usn3 Is Unique"), - octest_legacy:ct_string("Create Constraint On(#usn7:`3esn`)Assert Exists(Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`).``?)"), - octest_legacy:ct_string("Create Constraint On(`6esn`:`2esn`)Assert [`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where $@usn5 =~1000 =~1000|`6esn` In 0Xa].@usn6? Is Unique"), - octest_legacy:ct_string("Create Constraint On(`4esn`:#usn7)Assert Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $`3esn` In $`6esn` In $``).`7esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[#usn8:`2esn`]->()Assert Exists(Case When 07 Contains 0X7 Contains $`8esn` Then {`4esn`} =~9e0 =~{12} When .e1 Ends With 1e1 Ends With @usn5 Then $#usn8[Count ( * )] Else Count ( * )[True..][{#usn7}..] End.`6esn`)"), - octest_legacy:ct_string("Create Constraint On()<-[#usn8:@usn6]-()Assert Exists({`4esn`:Null In $7 In .e1,_usn3:usn2 Is Null}.#usn8!)"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:@usn5)Assert Exists({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]}._usn3!)"), - octest_legacy:ct_string("Drop Constraint On(usn2:``)Assert Exists((_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})-[`8esn`?]-(`7esn` {``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}).usn2)"), - octest_legacy:ct_string("Drop Constraint On()-[`6esn`:#usn7]->()Assert Exists(({`5esn`:2.12 Ends With $_usn3 Ends With `3esn`})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(#usn7 )<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`4esn` {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null}).`4esn`)"), - octest_legacy:ct_string("Create Constraint On(_usn3:_usn3)Assert Exists(usn1($`3esn` In $_usn4 In {_usn3}).@usn5?)"), - octest_legacy:ct_string("Drop Constraint On()-[#usn8:_usn3]-()Assert Exists([`5esn` Starts With $`2esn` Starts With $1000,{`1esn`}[12.0..`2esn`][@usn6..{usn1}]].`8esn`)"), - octest_legacy:ct_string("Create Constraint On(#usn8:#usn7)Assert (@usn6 :`4esn`)<-[?:@usn6|`6esn`{`2esn`:`3esn`[{0}][usn1],``:usn1 Is Null Is Null}]->({``:00 Starts With 0xabc,`3esn`:$`1esn` Ends With 9e1 Ends With $123456789}).usn1 Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[``:usn1]->()Assert Exists([Count ( * ) Contains `8esn` Contains .e1,0.12 =~$0 =~$0].usn1)"), - octest_legacy:ct_string("Create Constraint On()-[#usn7:`7esn`]->()Assert Exists(None(`4esn` In $`3esn` Is Not Null Where Null Ends With {`5esn`} Ends With 0.e0).`4esn`!)"), - octest_legacy:ct_string("Create Constraint On(`1esn`:usn2)Assert Exists(Case When {usn1} In 2.12 In 1000 Then `5esn` Ends With {``} Ends With 12.e12 When .e12 Is Not Null Is Not Null Then _usn4 Is Null Is Null End.usn2!)"), - octest_legacy:ct_string("Create Constraint On(usn1:`3esn`)Assert (`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})-[:`6esn`|`5esn`]-({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]}).`6esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:@usn6)Assert Exists(Case When 1.0 =~7 =~{usn2} Then \"d_str\"[..{@usn5}][..``] Else @usn6 Contains Null Contains $`7esn` End.usn2!)"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:#usn8)Assert [$123456789 =~{`6esn`} =~\"d_str\",0e0 Contains Null,usn1 Is Null].`1esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`7esn`:``)Assert $7.@usn5! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:`3esn`)Assert Exists(count($1000 Is Null,0Xa[$123456789..123.654][.e12..0.e0]).`3esn`)"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:`6esn`)Assert {`6esn`:#usn8[..{#usn7}],@usn5:`8esn`[`4esn`..{#usn8}][$12..2.12]}.`3esn`? Is Unique"), - octest_legacy:ct_string("Create Constraint On(_usn3:`3esn`)Assert Exists((#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})<-[usn2?:`5esn` *0..]-(_usn4 $999)-[usn1:`8esn`]-({_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null}).@usn5)"), - octest_legacy:ct_string("Drop Constraint On()-[`8esn`:#usn7]->()Assert Exists((:@usn6:#usn8$`5esn`)<-[`1esn`?:usn1|@usn6 *0..]-(:#usn8:#usn8{@usn6:$_usn3[..1000]})-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :_usn3:_usn3{`7esn`:$`6esn`[123456789..12][True..{`3esn`}],`5esn`:0X0123456789ABCDEF[123456789]})._usn3)"), - octest_legacy:ct_string("Create Constraint On()-[_usn3:`7esn`]-()Assert Exists(Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01).usn1)"), - octest_legacy:ct_string("Create Constraint On()-[@usn5:`4esn`]->()Assert Exists((`` {usn2:9e0[..999],`2esn`:0e0 In @usn5})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->({@usn5:12e12 Contains 0Xa,_usn4:01[2.12..`8esn`]})<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4).``?)"), - octest_legacy:ct_string("Drop Constraint On()-[usn1:usn2]-()Assert Exists(Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where `5esn` Starts With `3esn`|$1000 In $1000 In $`3esn`).`5esn`?)"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:_usn3)Assert Reduce(usn2=2.12 Is Null,#usn7 In {``} Is Not Null|0.e0 Contains 9e1 Contains {`7esn`})._usn4? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:`2esn`)Assert Exists([_usn3[_usn3..][12.e12..],$`7esn` Is Null Is Null].usn1!)"), - octest_legacy:ct_string("Create Constraint On(#usn8:usn1)Assert Exists([@usn5 Is Null].`7esn`?)"), - octest_legacy:ct_string("Create Constraint On()-[#usn7:`6esn`]-()Assert Exists(Any(#usn7 In {``} Is Not Null Where {`1esn`}[usn1][.e1]).#usn8?)"), - octest_legacy:ct_string("Create Constraint On(`5esn`:#usn8)Assert Case When $_usn4 Starts With 1e1 Then _usn3[$`8esn`] When usn1 Is Not Null Then $0[12.e12..] Else `1esn` =~0 =~$#usn7 End.@usn5? Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[@usn5:`3esn`]-()Assert Exists({_usn4:00 Starts With 0xabc}.`2esn`?)"), - octest_legacy:ct_string("Create Constraint On(`7esn`:`2esn`)Assert Exists(Case 1000[Null..{123456789}] When 12.e12 Starts With {999} Starts With {`1esn`} Then 0 In `2esn` In 010 When `7esn`[$0][9e12] Then `6esn`[..$@usn6] End._usn3?)"), - octest_legacy:ct_string("Drop Constraint On(usn2:@usn6)Assert Exists(Reduce(usn1=7[{0}..{_usn4}],`` In 123456789 Ends With 12.e12 Ends With $`7esn`|$999 Is Not Null)._usn3)"), - octest_legacy:ct_string("Drop Constraint On(_usn3:`3esn`)Assert {#usn8:$`7esn`['s_str'],_usn3:{999}[1000..{usn2}]}.usn1 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(``:`3esn`)Assert Reduce(usn2=$`4esn`[..$`3esn`][..0.0],`3esn` In {7} Is Null|{`5esn`} Contains $0 Contains {``}).@usn6! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`7esn`:_usn4)Assert Reduce(@usn5=$12[$1000..123456789],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|`4esn` Is Not Null Is Not Null).`1esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(`3esn`:`3esn`)Assert Exists([@usn6 Starts With `6esn` Starts With $`1esn`,9e12[{123456789}..#usn8][{_usn3}..{#usn7}]].@usn5?)"), - octest_legacy:ct_string("Drop Constraint On()-[#usn7:`6esn`]->()Assert Exists(Case When #usn7 Starts With {#usn7} Starts With `7esn` Then $`7esn` =~{`8esn`} =~$usn1 When $`1esn` =~0X7 Then usn1[9e12..][$7..] End._usn3)"), - octest_legacy:ct_string("Drop Constraint On(@usn6:#usn7)Assert Exists(({@usn5:12e12 Contains 0Xa,_usn4:01[2.12..`8esn`]})-[?:`4esn` *..010{#usn8:{123456789} Is Null Is Null}]-({`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}).usn1)"), - octest_legacy:ct_string("Create Constraint On(#usn8:`8esn`)Assert Exists(Case usn1 Ends With $@usn6 Ends With `3esn` When $`7esn`['s_str'] Then 0X0123456789ABCDEF =~1e1 =~{`4esn`} When Null Ends With `2esn` Ends With $usn1 Then {#usn7}[9e1..][{123456789}..] Else {_usn3}[12.e12] End.`6esn`)"), - octest_legacy:ct_string("Drop Constraint On()<-[#usn7:_usn3]-()Assert Exists(Case 0Xa[2.12] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] Else $1000[0Xa][{#usn7}] End.`1esn`)"), - octest_legacy:ct_string("Create Constraint On()<-[`8esn`:`4esn`]-()Assert Exists(Reduce(`2esn`=$@usn5 Starts With 01 Starts With .e0,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|usn2[{7}]).`6esn`)"), - octest_legacy:ct_string("Create Constraint On(`5esn`:``)Assert `5esn`({12} Ends With 1.0 Ends With .e0).@usn6 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:`5esn`)Assert Exists(Reduce(@usn5=0e0 In @usn5,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{999} Is Null Is Null).`3esn`)"), - octest_legacy:ct_string("Create Constraint On(@usn5:`1esn`)Assert Exists(Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8).`3esn`?)"), - octest_legacy:ct_string("Create Constraint On(`4esn`:`8esn`)Assert $123456789.@usn5! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`1esn`:usn1)Assert Extract(`5esn` In $999[0.0..] Where {999}|9e1[$usn2]).usn1 Is Unique"), - octest_legacy:ct_string("Create Constraint On()<-[_usn4:#usn7]-()Assert Exists(All(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`]).@usn5?)"), - octest_legacy:ct_string("Create Constraint On(#usn8:_usn4)Assert Exists(Reduce(#usn7=0.0[$0][{@usn5}],#usn8 In {`5esn`}[.e1..``]|00[$`7esn`])._usn4?)"), - octest_legacy:ct_string("Create Constraint On(`6esn`:_usn3)Assert Exists({``:@usn5 Is Null,`8esn`:123.654[0e0..$``][$`1esn`..$`8esn`]}.`7esn`!)"), - octest_legacy:ct_string("Drop Constraint On(@usn6:`5esn`)Assert Exists(None(_usn3 In {`3esn`}[`2esn`] Where 123456789[{123456789}..'s_str']).``)"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:`1esn`)Assert Exists(Reduce(#usn8={`7esn`} Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|010 =~{usn2}).@usn6!)"), - octest_legacy:ct_string("Create Constraint On(usn2:`6esn`)Assert Exists(Filter(_usn3 In {`3esn`}[`2esn`] Where _usn3 Contains $123456789 Contains ``).#usn8)"), - octest_legacy:ct_string("Create Constraint On()<-[usn2:`6esn`]-()Assert Exists(Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 1.0 =~7 =~{usn2}).usn1?)"), - octest_legacy:ct_string("Create Constraint On()<-[`2esn`:_usn4]-()Assert Exists({`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}._usn3!)"), - octest_legacy:ct_string("Drop Constraint On()-[usn1:`8esn`]-()Assert Exists(Case When #usn7[usn1][$`5esn`] Then {1000} Is Null Is Null End.`5esn`!)"), - octest_legacy:ct_string("Create Constraint On(`7esn`:#usn7)Assert Case When _usn3[$`8esn`] Then $0[..9e1] End.`7esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[@usn5:#usn8]->()Assert Exists(Filter(`5esn` In $999[0.0..] Where $1000[0Xa][{#usn7}]).`1esn`!)"), - octest_legacy:ct_string("Create Constraint On()<-[`1esn`:usn1]-()Assert Exists([`5esn` In $999[0.0..] Where {@usn6} Ends With 's_str' Ends With 12.0].`3esn`!)"), - octest_legacy:ct_string("Drop Constraint On(@usn5:#usn8)Assert count($`5esn` Is Not Null Is Not Null).usn1 Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[usn2:#usn7]->()Assert Exists([2.12 Ends With $_usn3 Ends With `3esn`,#usn7,01[{@usn5}]].`6esn`)"), - octest_legacy:ct_string("Create Constraint On(`2esn`:@usn6)Assert Exists(Case When _usn3[_usn3..][12.e12..] Then $12[True..][{0}..] End.@usn5!)"), - octest_legacy:ct_string("Create Constraint On()<-[usn2:`7esn`]-()Assert Exists([07 In `2esn` In 12e12,01 =~{_usn3} =~`3esn`,{12}[..0X7]].`4esn`?)"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:usn1)Assert Exists(Allshortestpaths(((:`5esn`{``:1.0[0e0..0.e0]})-[_usn4:#usn8|`1esn`{`6esn`:#usn8[..{#usn7}]}]->(#usn7 :`4esn`)))._usn3!)"), - octest_legacy:ct_string("Create Constraint On(#usn7:`5esn`)Assert Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where usn1 Ends With $@usn6 Ends With `3esn`).`6esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On(``:usn2)Assert Exists(@usn5(Distinct 12 Ends With 0x0 Ends With 0.e0)._usn4!)"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:`1esn`)Assert Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where usn1 Ends With $@usn6 Ends With `3esn`|$`6esn` Ends With Count(*)).@usn5! Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[``:@usn6]-()Assert Exists((`6esn` {_usn4:0Xa =~Null =~$``})-[`6esn`?:#usn8|`1esn`]->(_usn3 :@usn5).`6esn`?)"), - octest_legacy:ct_string("Create Constraint On(`4esn`:@usn6)Assert Exists([`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {@usn6}[7]|{1000}[$`4esn`][\"d_str\"]].`1esn`?)"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:`4esn`)Assert Exists(Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 123.654 Contains $`4esn` Contains 1.0)._usn3)"), - octest_legacy:ct_string("Create Constraint On(`7esn`:usn2)Assert None(#usn8 In {`5esn`}[.e1..``] Where $@usn6 Contains 07).@usn5 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(usn1:@usn5)Assert Reduce(@usn6=`` Ends With 0Xa Ends With `2esn`,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|01[2.12..`8esn`]).#usn7! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`7esn`:@usn6)Assert Exists(`2esn`(Distinct $`4esn`[9e12..123.654]).@usn6)"), - octest_legacy:ct_string("Create Constraint On()-[`1esn`:`4esn`]->()Assert Exists(Filter(#usn8 In 7[..999][..{#usn8}] Where $_usn3 In {1000} In 0.12).#usn7?)"), - octest_legacy:ct_string("Create Constraint On(`3esn`:#usn8)Assert Case 0X7[$999][_usn4] When `6esn`[..$@usn6] Then 7[$`2esn`..{`5esn`}] Else `7esn` Starts With $#usn7 Starts With $`7esn` End.usn2 Is Unique"), - octest_legacy:ct_string("Drop Constraint On()<-[@usn5:`4esn`]-()Assert Exists([`7esn` Is Null,.e12 Ends With _usn4,{``} Is Null].`4esn`)"), - octest_legacy:ct_string("Create Constraint On(@usn5:`8esn`)Assert None(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0[{usn2}..][$`6esn`..]).@usn5? Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`5esn`:usn2]->()Assert Exists(Reduce(_usn3={#usn8} Is Not Null,_usn3 In {`3esn`}[`2esn`]|0[.e0..{`1esn`}]).`8esn`)"), - octest_legacy:ct_string("Create Constraint On(#usn8:`2esn`)Assert Reduce(_usn4={7} In `2esn`,`4esn` In $`3esn` Is Not Null|`6esn` In 0Xa).`6esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(@usn5:`6esn`)Assert {`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}.`8esn`? Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`3esn`:_usn3]->()Assert Exists(Filter(_usn3 In {`3esn`}[`2esn`] Where False =~$7 =~2.12).`1esn`?)"), - octest_legacy:ct_string("Create Constraint On(``:#usn7)Assert Case When \"d_str\" Contains {123456789} Contains 01 Then 0X7 =~9e1 When {`5esn`}[.e1..``] Then $_usn4[1.e1]['s_str'] End.#usn7! Is Unique"), - octest_legacy:ct_string("Drop Index On:usn2(`8esn`)"), - octest_legacy:ct_string("Drop Constraint On()-[`7esn`:`2esn`]->()Assert Exists(Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))).`6esn`?)"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:usn1)Assert Exists(Any(#usn8 In {`5esn`}[.e1..``] Where {7}[..12e12][..Count ( * )]).`5esn`!)"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:#usn8)Assert Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null)._usn3! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(_usn4:`4esn`)Assert Exists(Case True[{`7esn`}..] When .e1 Is Null Is Null Then `3esn`[..$12][..{`7esn`}] When {_usn3}[..$12][..0.12] Then $7[0.12][usn1] End._usn3)"), - octest_legacy:ct_string("Drop Constraint On()<-[`3esn`:`2esn`]-()Assert Exists({``:7 =~{`8esn`} =~$`6esn`}.usn2!)"), - octest_legacy:ct_string("Create Constraint On()-[usn1:`3esn`]->()Assert Exists(`7esn`(Distinct 123.654[`3esn`..]).`3esn`!)"), - octest_legacy:ct_string("Drop Constraint On(usn1:`8esn`)Assert Exists((`7esn` :``:#usn8)-[usn2?:#usn7]-(:`4esn`{``:2.12 Is Not Null Is Not Null})<-[`5esn`? *..12{`8esn`:{`7esn`}[`6esn`][#usn7],`1esn`:0x0 Ends With $12}]->({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000}).``!)"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:usn2)Assert {@usn6:{999} Starts With $999,`4esn`:$usn1[{`5esn`}][$`6esn`]}.@usn6 Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[@usn5:@usn6]->()Assert Exists(All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0.0 In $usn1).`1esn`!)"), - octest_legacy:ct_string("Create Constraint On()-[_usn4:usn1]-()Assert Exists(Any(usn1 In @usn5 =~{`5esn`} =~`5esn` Where usn2 Is Not Null Is Not Null).`1esn`!)"), - octest_legacy:ct_string("Create Constraint On(`1esn`:`5esn`)Assert [{12} Contains {123456789} Contains `4esn`,1.e1[`8esn`][00],1.0[$`1esn`..][$123456789..]].usn1? Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[@usn6:`7esn`]-()Assert Exists({#usn7:'s_str' Is Not Null Is Not Null}.#usn8)"), - octest_legacy:ct_string("Create Constraint On(#usn7:#usn8)Assert {`6esn`:{``} Is Not Null}._usn3 Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`8esn`:`1esn`]->()Assert Exists(Shortestpath((`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]})).`5esn`)"), - octest_legacy:ct_string("Drop Constraint On(#usn7:`7esn`)Assert [.e0 Starts With $`` Starts With $usn2].#usn8? Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`2esn`:@usn6]->()Assert Exists(Reduce(@usn5=$`5esn` In $`6esn`,#usn7 In `2esn`[..$#usn8][..Count(*)]|$#usn7[#usn7..]).`5esn`!)"), - octest_legacy:ct_string("Create Constraint On(usn2:`3esn`)Assert Exists(count(Distinct 1e1 In 123.654 In `3esn`).`7esn`)"), - octest_legacy:ct_string("Create Constraint On(usn2:@usn6)Assert Exists(Extract(#usn8 In 7[..999][..{#usn8}] Where `8esn` Ends With 999 Ends With .e12|'s_str'[00][{`5esn`}]).`7esn`?)"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:_usn4)Assert [#usn8[`3esn`..][{#usn7}..],$`5esn`[..$`5esn`][..$12],0.e0[123.654][01]].``? Is Unique"), - octest_legacy:ct_string("Drop Constraint On()<-[@usn6:usn2]-()Assert Exists({`5esn`:00 Starts With 0xabc,`6esn`:0Xa =~Null =~$``}._usn4?)"), - octest_legacy:ct_string("Create Constraint On(`6esn`:`8esn`)Assert None(#usn8 In 7[..999][..{#usn8}] Where `5esn`[{`4esn`}..`2esn`]).`6esn`? Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[usn1:_usn4]->()Assert Exists(Allshortestpaths((((`3esn` :`8esn`:`7esn`)-[`7esn`:#usn8|`1esn` *0xabc..]->(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})-[`2esn`?:`7esn` *..07$0]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})))).``!)"), - octest_legacy:ct_string("Create Constraint On(usn2:usn2)Assert Any(`3esn` In {7} Is Null Where \"d_str\" Contains {123456789} Contains 01).usn1! Is Unique"), - octest_legacy:ct_string("Create Constraint On(usn1:`2esn`)Assert Exists(Allshortestpaths((`` {usn2:9e0[..999],`2esn`:0e0 In @usn5})-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->(`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})).`4esn`)"), - octest_legacy:ct_string("Create Constraint On(`4esn`:`2esn`)Assert Exists(Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where usn2[$7..$123456789][$@usn6..$7]|0xabc[01..{999}][{7}..{`7esn`}]).`7esn`?)"), - octest_legacy:ct_string("Create Constraint On()-[_usn3:_usn4]->()Assert Exists(Extract(#usn8 In 7[..999][..{#usn8}] Where $_usn4[1.e1]['s_str']|{_usn4}[1000..{@usn5}]).usn2?)"), - octest_legacy:ct_string("Drop Constraint On(#usn7:``)Assert Exists(None(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")._usn3)"), - octest_legacy:ct_string("Create Constraint On()-[`7esn`:`6esn`]-()Assert Exists(Extract(#usn7 In {``} Is Not Null Where {`1esn`}[usn1][.e1]|`6esn` In 0Xa)._usn3?)"), - octest_legacy:ct_string("Create Constraint On()-[_usn3:``]->()Assert Exists((:usn2{`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})-[@usn6?$0]-(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7}).usn2!)"), - octest_legacy:ct_string("Create Constraint On(_usn3:`8esn`)Assert Exists((`5esn` :_usn4{`5esn`:07[..True][..9e12]})-[`8esn`?:`2esn`{@usn6:{12}[..0X7]}]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]})<-[_usn4{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00})._usn3?)"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:`1esn`)Assert Exists(Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 01234567 Is Null Is Null|.e12 Is Not Null Is Not Null).#usn7?)"), - octest_legacy:ct_string("Drop Constraint On(_usn4:@usn6)Assert Exists(Case When {usn2} Then $0[$`1esn`..07] When False Is Null Is Null Then .e0 Starts With $`` Starts With $usn2 End.#usn8!)"), - octest_legacy:ct_string("Drop Index On:@usn6(usn1)"), - octest_legacy:ct_string("Create Constraint On(_usn3:`3esn`)Assert (:usn1{usn1:`5esn`[_usn4..]})<-[@usn6:_usn4|:usn2]->(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(@usn5 {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})._usn3! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(@usn5:usn2)Assert Exists(Case $`7esn` =~{`8esn`} =~$usn1 When 0e0 Starts With 1000 Starts With #usn7 Then 0.0 In $usn1 End.`7esn`?)"), - octest_legacy:ct_string("Create Constraint On()<-[usn2:#usn7]-()Assert Exists(All(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07).`3esn`!)"), - octest_legacy:ct_string("Create Constraint On(@usn6:`2esn`)Assert Exists(Case $`2esn` When {`3esn`}[@usn6..0Xa][{12}..0Xa] Then .e0[..$`8esn`] When 0.12 =~`5esn` =~`5esn` Then {@usn6}[$`6esn`..`4esn`] End.#usn7?)"), - octest_legacy:ct_string("Create Constraint On()<-[`8esn`:`4esn`]-()Assert Exists({@usn5:12e12 Contains 0Xa,_usn4:01[2.12..`8esn`]}.@usn5)"), - octest_legacy:ct_string("Create Constraint On()<-[usn1:#usn7]-()Assert Exists(Reduce(_usn4=$0[$`1esn`..07],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|.e0 Starts With 0 Starts With 0.e0)._usn3)"), - octest_legacy:ct_string("Drop Constraint On(usn1:`5esn`)Assert Reduce(_usn3=0Xa[usn2..],`` In 123456789 Ends With 12.e12 Ends With $`7esn`|`3esn`[{0}][usn1])._usn4 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:`7esn`)Assert Null.#usn8? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:#usn8)Assert [.e1[{`7esn`}..{_usn4}]].`2esn`? Is Unique"), - octest_legacy:ct_string("Create Constraint On(usn1:#usn8)Assert {`6esn`:#usn8}.usn2? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(_usn3:usn2)Assert Reduce(@usn6=#usn7 Starts With {#usn7} Starts With `7esn`,#usn7 In `2esn`[..$#usn8][..Count(*)]|12e12[$`3esn`]).`2esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:_usn4)Assert Exists((`4esn` {`6esn`:#usn8[..{#usn7}]})<-[`2esn`:@usn5 *0..{`1esn`:0.12[$`3esn`..$_usn3][12.0..usn1]}]-(`4esn` :#usn7).`4esn`)"), - octest_legacy:ct_string("Drop Constraint On(@usn6:`6esn`)Assert Extract(`` In `` Is Not Null Is Not Null Where 1000 In {`8esn`} In 01|_usn3 Starts With 12.e12 Starts With 0.12).`4esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On()<-[#usn7:`1esn`]-()Assert Exists(Reduce(``=@usn5 In {`7esn`} In `2esn`,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{_usn4}[1000..{@usn5}]).`2esn`)"), - octest_legacy:ct_string("Create Constraint On(`5esn`:#usn8)Assert (`3esn` {@usn5:$usn2[9e0]})<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7}).`5esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[#usn8:usn2]-()Assert Exists(Filter(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 00[{`8esn`}..][{`8esn`}..]).`7esn`?)"), - octest_legacy:ct_string("Drop Constraint On(_usn3:`3esn`)Assert (@usn5 :`8esn`:`7esn`{`6esn`:`7esn`[$0][9e12],`4esn`:.e1 Is Null Is Null})<-[``?:#usn8|`1esn`{#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1}]->({@usn5:12e12 Contains 0Xa,_usn4:01[2.12..`8esn`]})<-[`4esn`:``{usn1:`` Is Not Null Is Not Null,usn1:{1000}[{_usn3}..]}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]}).`7esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:``)Assert ({@usn5:_usn3 Contains $123456789 Contains ``,_usn4:{``} Ends With `7esn` Ends With 0.0})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(#usn7 :usn1).#usn7! Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[_usn4:usn2]->()Assert Exists({#usn8:{`7esn`}[..{`4esn`}]}.`6esn`!)"), - octest_legacy:ct_string("Drop Constraint On()-[`4esn`:`6esn`]->()Assert Exists([@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 01[2.12..`8esn`]|{0} Ends With $_usn3 Ends With $`7esn`].``)"), - octest_legacy:ct_string("Drop Constraint On()<-[usn2:`4esn`]-()Assert Exists([@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where 01[2.12..`8esn`]|{1000}[{_usn3}..]].`1esn`?)"), - octest_legacy:ct_string("Drop Constraint On(``:`2esn`)Assert Reduce(_usn4=`7esn`[9e0..],`` In `` Is Not Null Is Not Null|Count ( * )[True..][{#usn7}..]).`7esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`7esn`:`1esn`]-()Assert Exists(`7esn`({0}[01][`7esn`],False =~$7 =~2.12).`2esn`?)"), - octest_legacy:ct_string("Drop Constraint On(usn1:_usn3)Assert Exists(Extract(_usn3 In {`3esn`}[`2esn`] Where {1000} =~0 =~123.654)._usn3?)"), - octest_legacy:ct_string("Create Constraint On()-[`4esn`:`1esn`]-()Assert Exists((:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})-[`4esn`:``{usn1:`` Is Not Null Is Not Null,usn1:{1000}[{_usn3}..]}]-(`3esn` :_usn4)<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]}).`3esn`!)"), - octest_legacy:ct_string("Create Constraint On()<-[@usn5:_usn3]-()Assert Exists(Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where usn1 Ends With $@usn6 Ends With `3esn`).`4esn`!)"), - octest_legacy:ct_string("Drop Constraint On(usn2:``)Assert Reduce(#usn7=`7esn` Starts With $#usn7 Starts With $`7esn`,#usn8 In 7[..999][..{#usn8}]|`1esn` Ends With {_usn3} Ends With `2esn`).`4esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(_usn4:`3esn`)Assert Exists(Extract(`3esn` In {7} Is Null Where 1e1 Contains Count ( * )|12.e12[9e12..{`6esn`}]).`6esn`)"), - octest_legacy:ct_string("Create Constraint On()-[@usn6:`7esn`]->()Assert Exists({#usn8:7 Starts With {@usn6} Starts With $``,`6esn`:{`2esn`} Is Not Null Is Not Null}.`3esn`)"), - octest_legacy:ct_string("Create Constraint On(usn1:@usn6)Assert (_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})<-[@usn6 *..01{#usn7:@usn6 Contains $1000 Contains {`7esn`},@usn5:`2esn` Starts With $_usn4}]->(`6esn` :@usn6:#usn8)<-[`5esn`{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(_usn3 {#usn8:_usn4 Is Null Is Null}).`8esn`? Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`7esn`:`2esn`]->()Assert Exists(Reduce(#usn7=`` Is Not Null Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{`7esn`}[..$@usn5][..$#usn8]).`2esn`)"), - octest_legacy:ct_string("Drop Constraint On(#usn8:`1esn`)Assert (`` {@usn6:1.0[$`1esn`..][$123456789..]})<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(:``:#usn8{usn1:{`6esn`}}).``? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:usn1)Assert Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0Xa Starts With {`6esn`} Starts With $usn1|00[$`7esn`]).#usn8! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(usn2:@usn5)Assert Exists([$#usn7 Contains 0x0 Contains 1000]._usn4?)"), - octest_legacy:ct_string("Create Index On:`6esn`(`5esn`)"), - octest_legacy:ct_string("Create Constraint On()-[`2esn`:`7esn`]->()Assert Exists(Filter(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where 0 In `2esn` In 010).`7esn`)"), - octest_legacy:ct_string("Create Constraint On(`6esn`:_usn4)Assert Extract(#usn7 In {``} Is Not Null Where 123456789[0xabc..'s_str'][``..`1esn`]).`8esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`2esn`)Assert Exists(Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 0.e0[123.654][01]).#usn8?)"), - octest_legacy:ct_string("Drop Constraint On()-[`2esn`:#usn7]-()Assert Exists([`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``|`4esn` =~$`5esn`].usn2)"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:`4esn`)Assert [_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $@usn6 Contains 07|`4esn`[`5esn`..12][@usn6..False]].#usn7 Is Unique"), - octest_legacy:ct_string("Create Constraint On(#usn7:`5esn`)Assert Exists(@usn5(#usn8,{`3esn`} In 0X7).`7esn`?)"), - octest_legacy:ct_string("Create Constraint On(@usn5:#usn7)Assert [`4esn` In $`3esn` Is Not Null Where @usn5 =~{`5esn`} =~`5esn`|$`4esn`[..$`3esn`][..0.0]].@usn5! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(usn2:#usn7)Assert Exists({@usn5:$`3esn` Is Not Null}.@usn6?)"), - octest_legacy:ct_string("Drop Constraint On()<-[_usn4:#usn7]-()Assert Exists(Filter(`5esn` In $999[0.0..] Where `2esn` Starts With $_usn4).``!)"), - octest_legacy:ct_string("Drop Constraint On()<-[#usn7:usn2]-()Assert Exists((:#usn8:#usn8)<-[? *0X7..{#usn8:{1000} Is Null Is Null,`3esn`:0.e0 Starts With 12.e12 Starts With {_usn4}}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12}).`6esn`?)"), - octest_legacy:ct_string("Create Constraint On(@usn6:usn1)Assert Exists(None(`8esn` In 01[2.12..`8esn`] Where 0X7[..2.12]).`5esn`?)"), - octest_legacy:ct_string("Drop Constraint On(usn1:usn2)Assert Exists(Shortestpath(({`7esn`:{999}})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})).``!)"), - octest_legacy:ct_string("Drop Constraint On(#usn7:`5esn`)Assert Exists(Filter(`2esn` In `1esn` =~\"d_str\" Where usn2[9e12]).`3esn`!)"), - octest_legacy:ct_string("Drop Constraint On()<-[@usn6:`8esn`]-()Assert Exists(count(`1esn` Contains {usn2} Contains $#usn8).@usn6)"), - octest_legacy:ct_string("Create Constraint On(@usn6:_usn4)Assert Extract(`4esn` In $`3esn` Is Not Null Where 12.0 =~999 =~$_usn3|2.12 =~False).`7esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:#usn8)Assert Any(_usn3 In {`3esn`}[`2esn`] Where usn2 Is Null).usn1? Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[usn1:`3esn`]->()Assert Exists(Any(`4esn` In $`3esn` Is Not Null Where {`6esn`} Contains \"d_str\").#usn7?)"), - octest_legacy:ct_string("Drop Constraint On()-[#usn8:usn1]-()Assert Exists(Reduce(`5esn`=12[1.e1..{_usn3}][1.e1..1.0],#usn7 In `2esn`[..$#usn8][..Count(*)]|12.e12[7..$`6esn`]).`5esn`!)"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:`7esn`)Assert Exists(Case When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {``} Is Not Null Then 1.0[0X0123456789ABCDEF] Else 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] End.``?)"), - octest_legacy:ct_string("Create Constraint On()-[`1esn`:#usn8]->()Assert Exists([123456789 Ends With 12.e12 Ends With $`7esn`,7[True..][2.12..]].@usn6)"), - octest_legacy:ct_string("Create Constraint On(`8esn`:`3esn`)Assert Exists(Filter(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {``} Starts With $`2esn` Starts With `1esn`).`4esn`?)"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:`1esn`)Assert Exists(usn1(usn1[`5esn`..$7]).``)"), - octest_legacy:ct_string("Create Constraint On()-[@usn6:@usn5]->()Assert Exists({`2esn`:usn2[{7}],`2esn`:0e0 Ends With 1.e1 Ends With $`4esn`}.`6esn`?)"), - octest_legacy:ct_string("Drop Constraint On()<-[@usn5:_usn3]-()Assert Exists(({usn1:`5esn`[_usn4..]})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}).`7esn`!)"), - octest_legacy:ct_string("Create Constraint On()-[_usn4:`7esn`]-()Assert Exists((:usn2{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3)-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]}).`4esn`)"), - octest_legacy:ct_string("Create Constraint On(`6esn`:_usn3)Assert Exists((usn1 {`2esn`})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->(:_usn3:_usn3{`4esn`:12e12 Ends With {usn1}})<-[`7esn`?:`8esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}).#usn8!)"), - octest_legacy:ct_string("Create Constraint On(``:#usn7)Assert Case 07 Contains 0X7 Contains $`8esn` When {999} Starts With {0} Then Count(*) Is Null Is Null When #usn7 Then 9e1 In $`3esn` In $@usn6 End.`8esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On(_usn3:`1esn`)Assert Exists(Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`).#usn7?)"), - octest_legacy:ct_string("Drop Constraint On(@usn5:`2esn`)Assert Exists(Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `1esn` =~\"d_str\").@usn6?)"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:_usn3)Assert Exists(Case `` Ends With 123456789 Ends With 123.654 When True[07..$usn2][$7..{usn1}] Then 's_str'[00][{`5esn`}] End.`2esn`!)"), - octest_legacy:ct_string("Create Constraint On()-[_usn4:`3esn`]-()Assert Exists({#usn8:{1000} Is Null Is Null,`3esn`:0.e0 Starts With 12.e12 Starts With {_usn4}}.@usn5?)"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:@usn6)Assert None(_usn3 In {`3esn`}[`2esn`] Where 1e1 In 123.654 In `3esn`).#usn7 Is Unique"), - octest_legacy:ct_string("Create Constraint On(`3esn`:#usn7)Assert Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where _usn4 Contains 2.12).@usn5! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`3esn`:_usn3)Assert Case $@usn6 Ends With $_usn4 Ends With 0.12 When 0X7[`7esn`][123.654] Then $`5esn`[..$`5esn`][..$12] Else `` Is Not Null Is Not Null End.`4esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(`1esn`:#usn7)Assert Exists([$`6esn`[{999}..9e0],.e1 =~$`8esn`,{123456789} Is Not Null].`7esn`?)"), - octest_legacy:ct_string("Create Constraint On()<-[`4esn`:`2esn`]-()Assert Exists(`6esn`(Distinct `5esn` Ends With {``} Ends With 12.e12).@usn5)"), - octest_legacy:ct_string("Create Constraint On(`1esn`:usn1)Assert All(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`4esn`} Starts With $usn2 Starts With $1000).`3esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`3esn`:`7esn`]->()Assert Exists(Reduce(`7esn`=7[$`2esn`..{`5esn`}],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$_usn4[0e0..][False..])._usn3!)"), - octest_legacy:ct_string("Drop Constraint On(``:#usn8)Assert Exists(Any(usn1 In @usn5 =~{`5esn`} =~`5esn`).`1esn`?)"), - octest_legacy:ct_string("Create Constraint On(@usn5:#usn7)Assert (usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}).`6esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(#usn8:`4esn`)Assert ({``:00 Starts With 0xabc,`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})._usn3? Is Unique"), - octest_legacy:ct_string("Create Constraint On(#usn7:`6esn`)Assert Exists(Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where `2esn`[..$#usn8][..Count(*)]).``?)"), - octest_legacy:ct_string("Create Constraint On(`3esn`:`2esn`)Assert Reduce(usn2=12e12 Is Not Null Is Not Null,`3esn` In {7} Is Null|0[1.e1..12e12]).#usn8? Is Unique"), - octest_legacy:ct_string("Create Constraint On(``:_usn4)Assert (`` :`7esn`:_usn3)-[usn2?]-(:@usn5).`8esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On(usn1:usn2)Assert Exists({_usn4:$`4esn`[..$`3esn`][..0.0],@usn6:0e0 Starts With 2.12 Starts With $12}.`7esn`?)"), - octest_legacy:ct_string("Drop Constraint On()-[``:`4esn`]->()Assert Exists({`8esn`:0Xa[usn2..]}.#usn7?)"), - octest_legacy:ct_string("Drop Constraint On(#usn8:`5esn`)Assert All(_usn3 In {`3esn`}[`2esn`] Where 7 Ends With $`4esn`)._usn3 Is Unique"), - octest_legacy:ct_string("Create Constraint On(`6esn`:_usn4)Assert Reduce(#usn7=@usn6 Ends With {_usn3},@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|{_usn4} Ends With `6esn`).usn1! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:`5esn`)Assert (@usn5 :`4esn`)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`6esn` :_usn4)-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(usn2 {`6esn`:{#usn8}[.._usn4][..$`3esn`],`7esn`:01 =~{_usn3} =~`3esn`}).``! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`5esn`:_usn3)Assert [@usn6 Ends With {_usn3}].`5esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On()<-[`1esn`:usn1]-()Assert Exists(Reduce(`5esn`=07[..True][..9e12],#usn8 In {`5esn`}[.e1..``]|@usn5 =~{`5esn`} =~`5esn`).`8esn`)"), - octest_legacy:ct_string("Create Constraint On()-[`3esn`:usn2]->()Assert Exists([$_usn4[1.e1]['s_str']].#usn8)"), - octest_legacy:ct_string("Create Constraint On(``:@usn5)Assert Exists(All(`3esn` In {7} Is Null Where $#usn7[@usn5..{1000}][1.e1..7]).usn1)"), - octest_legacy:ct_string("Drop Constraint On()<-[usn1:_usn4]-()Assert Exists(Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 12e12 Ends With {usn1}).usn1?)"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:`3esn`)Assert #usn8({`3esn`} In 01).@usn5? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(_usn3:usn2)Assert Reduce(`3esn`=7 Starts With {@usn6} Starts With $``,`4esn` In $`3esn` Is Not Null|$`4esn`[Null..]).`7esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(`2esn`:@usn5)Assert Exists({``:usn1 Starts With usn1 Starts With $``}.#usn8)"), + octest_legacy:ct_string("Create Constraint On(usn1:`8esn`)Assert ``(Distinct `1esn` Is Null Is Null,0.0 Contains $_usn4 Contains {`2esn`})._usn3! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`6esn`)Assert {`1esn`:12 Starts With 0x0}.`8esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:#usn7)Assert Any(`2esn` In {999} Is Not Null Where 1e1[{_usn4}..123.654])._usn3! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn7:_usn4)Assert Case _usn3 Contains .e0 Contains {usn2} When $#usn7[$`4esn`] Then usn2 Ends With Count ( * ) Ends With $@usn6 Else 1e1[..$1000][..999] End.`6esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn7:_usn4)Assert Allshortestpaths((`6esn` :@usn5{`4esn`:{#usn8}[$#usn7..],`4esn`:0[{@usn5}..][7..]})).usn1 Is Unique"), + octest_legacy:ct_string("Create Constraint On(`8esn`:``)Assert Filter(`1esn` In $12 Is Not Null Where {``}[010]).`1esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`1esn`)Assert Exists(({#usn7:#usn8 =~{999}})-[_usn3?:usn1 *12..{#usn7:0e0 Contains `3esn` Contains `7esn`}]-({_usn3}).`6esn`)"), + octest_legacy:ct_string("Create Constraint On()-[``:@usn6]->()Assert Exists(All(usn1 In 12.e12 In {0} In 9e1 Where {12} Contains `7esn` Contains $_usn3).`5esn`?)"), + octest_legacy:ct_string("Create Constraint On(``:`4esn`)Assert Exists({@usn5:@usn5[$12..\"d_str\"]}.@usn6!)"), + octest_legacy:ct_string("Drop Constraint On(``:`7esn`)Assert {@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2],``:{`7esn`} Is Not Null Is Not Null}.#usn8! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`1esn`:``)Assert Exists({`1esn`:12 Starts With 0x0}.`8esn`)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:`7esn`)Assert Exists([_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 9e12 Is Not Null].`7esn`?)"), + octest_legacy:ct_string("Create Constraint On(``:`2esn`)Assert Shortestpath((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})<-[#usn7?:#usn8|`2esn`]-(usn2 {`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})).#usn7 Is Unique"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`2esn`)Assert Single(`1esn` In $12 Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]).`2esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`8esn`:@usn5)Assert Case .e12 Ends With 1000 Ends With 010 When 's_str'[.._usn4][..``] Then Count ( * )[$12..] When {`4esn`}[{`4esn`}..999] Then 07 =~$`8esn` =~9e1 Else {`1esn`} =~{_usn4} End.`1esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:``)Assert Exists([{`2esn`}[Count(*)],0.0 =~12.e12 =~1.0].`6esn`?)"), + octest_legacy:ct_string("Create Constraint On(`4esn`:`4esn`)Assert Reduce(usn1=\"d_str\"[..0.e0],`` In {`1esn`} Starts With @usn6|$`6esn`[{`3esn`}..12]).`8esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn4:#usn7)Assert Exists({`2esn`:$`7esn` In 12,`5esn`:True[..010]}.#usn8!)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:``)Assert Case #usn7 =~{`4esn`} =~123456789 When 1.e1 =~`2esn` Then 0Xa[$1000..$123456789] When $123456789 Starts With $123456789 Starts With Count ( * ) Then 07 Is Null Else $`6esn`[`8esn`][0.0] End.`8esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:`7esn`]->()Assert Exists(Shortestpath((((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]})))).`2esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[usn2:`1esn`]-()Assert Exists(Extract(_usn4 In 0.0[..{999}][..0.0] Where True Starts With $`4esn` Starts With 12e12|`4esn`[usn1]).`6esn`?)"), + octest_legacy:ct_string("Create Constraint On()<-[usn2:usn2]-()Assert Exists(Filter(`` In {`1esn`} Starts With @usn6 Where {`7esn`}[9e1..][@usn6..]).#usn8!)"), + octest_legacy:ct_string("Drop Constraint On(usn1:`7esn`)Assert Exists(All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e12 =~$_usn4).`5esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:`2esn`]-()Assert Exists(All(#usn7 In 0Xa[@usn5][{`7esn`}] Where 1e1[1.e1..][123.654..]).`8esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[_usn4:#usn8]-()Assert Exists(Single(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} =~_usn4 =~0.12)._usn4!)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`4esn`)Assert {`1esn`:{123456789}[12..][$12..]}.`5esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`1esn`:_usn3]->()Assert Exists(@usn5(Distinct $0 Starts With `2esn`).`3esn`)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`3esn`)Assert Exists([{7}[$123456789..{1000}][$`3esn`..`7esn`],\"d_str\" Ends With False Ends With {@usn6},usn1 Contains $7 Contains $``].usn2)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:@usn5)Assert Extract(_usn4 In `2esn` Where #usn8[`7esn`..]).`1esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[``:`1esn`]-()Assert Exists(Case When 12 Starts With 7 Starts With $`5esn` Then {0} =~12.0 End.`4esn`!)"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:``]->()Assert Exists([{@usn6}[True..{_usn3}],$_usn4,$999 Is Null].`3esn`)"), + octest_legacy:ct_string("Create Constraint On(usn1:`4esn`)Assert Exists([#usn7 In 123.654 Starts With $`` Where {usn2}[$`4esn`]].#usn7!)"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:@usn6)Assert Reduce(@usn5={@usn6}[True..{_usn3}],#usn7 In 123.654 Starts With $``|12.e12 In {0} In 9e1).`8esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[usn2:_usn4]-()Assert Exists({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2}.`3esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`7esn`)Assert Filter(`6esn` In Count(*) Ends With $`` Ends With {7} Where `7esn` Starts With 0X7 Starts With $`7esn`).`1esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(`2esn`:usn1)Assert Exists({``:.e1 Ends With {7} Ends With $usn1}.@usn6?)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:@usn5)Assert Exists(({`2esn`:$_usn4[$`4esn`..$12]})<-[`3esn`?:usn2|#usn7 *0X0123456789ABCDEF]->(`4esn` :@usn6).#usn7!)"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:`3esn`]-()Assert Exists(#usn8(Distinct False Contains $#usn8 Contains 9e1).#usn7?)"), + octest_legacy:ct_string("Create Constraint On()-[`2esn`:`2esn`]->()Assert Exists(Reduce(`2esn`=`7esn` Contains {@usn5} Contains $123456789,`6esn` In 00|$@usn6[01..@usn5][0x0..`4esn`]).`6esn`?)"), + octest_legacy:ct_string("Drop Constraint On()-[`7esn`:@usn5]->()Assert Exists(Reduce(_usn4=0Xa Contains Count ( * ),`1esn` In 0.e0 =~`1esn` =~`6esn`|0x0[$`8esn`.._usn3]).usn2)"), + octest_legacy:ct_string("Drop Constraint On()-[_usn4:@usn5]-()Assert Exists((:`5esn`:@usn5{@usn6:.e1[..{`7esn`}][..{_usn3}]})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})._usn3?)"), + octest_legacy:ct_string("Drop Constraint On()-[``:_usn4]->()Assert Exists([usn1 In 12.e12 In {0} In 9e1 Where $0[`7esn`]|`5esn`[0xabc..]].usn1)"), + octest_legacy:ct_string("Drop Constraint On()-[`8esn`:usn1]->()Assert Exists(Filter(`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0e0).`7esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:_usn4)Assert Exists(Extract(#usn7 In 123.654 Starts With $`` Where 12.e12[`7esn`]).@usn5)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`5esn`)Assert [`6esn` In Count(*) Ends With $`` Ends With {7} Where $12 Is Not Null]._usn4 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn3:@usn5)Assert Exists(Extract(#usn7 In 123.654 Starts With $`` Where $999 In 999).`6esn`!)"), + octest_legacy:ct_string("Create Constraint On(#usn7:usn2)Assert [{``} Starts With 123456789 Starts With usn2].#usn7! Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn1:usn1)Assert {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}.`7esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`3esn`:`3esn`]-()Assert Exists([9e1[9e1...e0],$999 Contains {7},\"d_str\"[..0.e0]].`7esn`!)"), + octest_legacy:ct_string("Create Constraint On()-[#usn8:#usn8]->()Assert Exists(Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn1 Starts With {_usn3}|{123456789}[12..][$12..]).usn1?)"), + octest_legacy:ct_string("Create Constraint On()-[`3esn`:`2esn`]-()Assert Exists([999[12.0..][#usn7..],12.e12 In $0 In $0,1000]._usn3?)"), + octest_legacy:ct_string("Create Constraint On()-[`6esn`:`6esn`]-()Assert Exists(Shortestpath(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))).#usn7!)"), + octest_legacy:ct_string("Create Constraint On()<-[`7esn`:`2esn`]-()Assert Exists((usn1 :``{`6esn`})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})-[`7esn`? *123456789..0X7{`6esn`:{0}[..{`7esn`}]}]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999}).usn1)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`5esn`)Assert Exists([`7esn` Ends With $_usn3 Ends With usn2].@usn6?)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:#usn8)Assert Exists(_usn3().#usn8?)"), + octest_legacy:ct_string("Drop Constraint On()-[`2esn`:@usn5]->()Assert Exists([_usn4 In 0.0[..{999}][..0.0] Where $`2esn` Is Null Is Null].`6esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`4esn`)Assert [00[..$123456789][..$`5esn`],{_usn3} Contains $`1esn` Contains 12.0].``? Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn5:`1esn`)Assert [_usn4 In `2esn` Where {`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]].``! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:usn1)Assert Exists((:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[?:usn2|#usn7]->(#usn8 :#usn7)-[#usn7{usn1:1.0[{999}][$999]}]->(:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]}).`8esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[`7esn`:`6esn`]->()Assert Exists([{999} Starts With {12}].#usn7!)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:``)Assert Exists(Single(#usn7 In 0Xa[@usn5][{`7esn`}] Where 12[..$@usn6]).`3esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`4esn`)Assert Exists((_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`3esn` {`1esn`:$`6esn` Starts With 12.e12 Starts With $#usn7})-[_usn4 *0x0..]-(:``$_usn4).#usn8!)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`7esn`)Assert Allshortestpaths(({`7esn`:123456789[0..]})-[`6esn`?:_usn3|`8esn`]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})).#usn8 Is Unique"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`8esn`)Assert (`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}).`6esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[``:`2esn`]-()Assert Exists(Case $usn1 =~010 =~07 When $`2esn`[$usn2..][{``}..] Then .e1[0.12] End._usn4)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:`1esn`)Assert [01234567[..9e1],``[{#usn8}],12e12 Is Not Null Is Not Null]._usn3! Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[#usn7:`4esn`]-()Assert Exists(Case `6esn` Ends With 2.12 Ends With @usn6 When 00[..$123456789][..$`5esn`] Then True =~{`1esn`} When {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn` Then 0.0 Is Not Null End.`4esn`)"), + octest_legacy:ct_string("Drop Constraint On()<-[`1esn`:_usn4]-()Assert Exists(@usn5(Distinct 9e1[$_usn4..0xabc],.e12 Ends With 1000 Ends With 010).usn1!)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:`8esn`)Assert Allshortestpaths((_usn3 :_usn3)-[?:#usn7|`2esn` *0x0..]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->(:`6esn`:`8esn`$usn2))._usn4! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`7esn`:@usn6]->()Assert Exists({usn1:0e0[0X0123456789ABCDEF..010][$@usn6..010]}.`8esn`?)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:#usn8)Assert Exists([_usn4 In `2esn` Where 9e12 Ends With 123456789].@usn6!)"), + octest_legacy:ct_string("Create Constraint On()-[`1esn`:`4esn`]-()Assert Exists(Reduce(@usn5=12.e12[``..usn2][{#usn7}..@usn5],#usn7 In 0Xa[@usn5][{`7esn`}]|$`2esn`[$usn2..][{``}..]).`7esn`?)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:@usn5)Assert Exists(Single(_usn3 In {@usn5}[..#usn7] Where `5esn`[0xabc..]).`7esn`?)"), + octest_legacy:ct_string("Create Constraint On(`4esn`:`6esn`)Assert Exists(Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[{999}..][{_usn4}..]|{12}[00..{@usn6}][1.e1..0]).@usn6?)"), + octest_legacy:ct_string("Create Constraint On()-[`1esn`:_usn4]-()Assert Exists(Shortestpath((((_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )})-[?:usn2|#usn7]-(`1esn` {#usn7:Count ( * )[$12..]})<-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]->(_usn4 {_usn3:`1esn`[..00][..{7}]})))).`3esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`6esn`)Assert None(_usn4 In `2esn` Where .e1[0.12]).`8esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[usn2:``]->()Assert Exists(None(_usn3 In {@usn5}[..#usn7] Where {`4esn`}[{`1esn`}][{1000}]).``!)"), + octest_legacy:ct_string("Create Constraint On(usn2:`3esn`)Assert Extract(_usn4 In `2esn` Where {_usn3}[$usn2..]|9e1[9e1...e0]).``? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`4esn`:_usn4)Assert Exists(None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $`6esn`[{`3esn`}..12]).#usn8)"), + octest_legacy:ct_string("Create Constraint On(@usn6:usn2)Assert Exists({usn1:True Is Not Null}.`7esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:_usn3)Assert Exists(All(_usn4 In `2esn` Where 9e12 Ends With 123456789).usn2!)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:_usn4)Assert Exists({usn2:{1000} Ends With {`8esn`}}._usn4)"), + octest_legacy:ct_string("Drop Constraint On(``:`3esn`)Assert Exists({`7esn`:{@usn5}[..#usn7],@usn6:{_usn3}[`3esn`..$#usn8]}.`7esn`!)"), + octest_legacy:ct_string("Create Constraint On(_usn4:@usn5)Assert Exists(Extract(#usn7 In 0Xa[@usn5][{`7esn`}] Where $0[_usn4..{`3esn`}][$#usn7..$#usn7]|$`7esn` Contains {`1esn`} Contains 9e12).``)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`3esn`)Assert Exists([`1esn` In 0.e0 =~`1esn` =~`6esn`].#usn7)"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:`3esn`]->()Assert Exists((:usn2:`2esn`)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4)<-[``?:#usn8|`2esn`]->(:`8esn`:@usn5).#usn7)"), + octest_legacy:ct_string("Drop Constraint On()-[#usn7:`2esn`]->()Assert Exists(Single(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} =~_usn4 =~0.12)._usn4!)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:#usn8)Assert {#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}.#usn8 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:usn1)Assert Exists([`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0[$#usn8...e12]].`3esn`!)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:``)Assert [usn1 In 12.e12 In {0} In 9e1 Where .e12 =~$_usn4|0.e0 Ends With False].#usn8! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[_usn4:usn1]-()Assert Exists((`4esn` {`2esn`:@usn5[$12..\"d_str\"]})<-[`2esn`:`5esn` *0x0..{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})<-[`6esn`?:#usn8|`2esn`*..{`5esn`:@usn5 =~'s_str'}]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}).#usn8!)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`2esn`)Assert Exists(Case {_usn3} Contains True Contains 0X7 When ``[{123456789}..] Then `1esn` =~1000 =~1000 When #usn8 =~{_usn3} =~`` Then 7 Contains `2esn` Contains $`8esn` End.`4esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:@usn5]->()Assert Exists((:`4esn`:@usn6{`1esn`:{12}[00..{@usn6}][1.e1..0],usn1:``[..0X0123456789ABCDEF]})<-[@usn5?:`8esn`|:_usn4 *0X0123456789ABCDEF{usn1:False Contains $#usn8 Contains 9e1}]->(usn2 :`4esn`:@usn6)<-[`5esn`{`6esn`:12 Is Not Null Is Not Null,`8esn`:`3esn` Is Not Null Is Not Null}]->(_usn3 {@usn5:.e12 =~.e0}).`8esn`)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:``)Assert [`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]].`2esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[``:`2esn`]->()Assert Exists(Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $`8esn`[..$999][..0]).`3esn`?)"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:`4esn`]-()Assert Exists(Filter(_usn4 In 0.0[..{999}][..0.0] Where True Starts With $`4esn` Starts With 12e12).@usn5!)"), + octest_legacy:ct_string("Create Constraint On(``:@usn5)Assert Exists({``:`3esn` =~9e0 =~@usn6}.`8esn`?)"), + octest_legacy:ct_string("Create Constraint On()-[_usn4:``]->()Assert Exists(None(`6esn` In Count(*) Ends With $`` Ends With {7} Where 1000 Is Null).`3esn`!)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:@usn6)Assert Reduce(`4esn`=`3esn`[..{_usn4}][..{@usn5}],`2esn` In {999} Is Not Null|123456789 Starts With {@usn6} Starts With $12).usn2 Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn5:`4esn`)Assert Exists(Case When 9e1 Ends With $@usn5 Ends With $123456789 Then usn2[True] When .e12 =~$_usn4 Then $7 Is Null Is Null Else .e1 Ends With 0Xa Ends With .e1 End.usn1!)"), + octest_legacy:ct_string("Create Constraint On()-[`8esn`:usn2]->()Assert Exists(Any(`3esn` In 123.654[1e1..][{#usn8}..]).usn2!)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`7esn`)Assert Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where False Contains 0.e0 Contains Count(*)).usn1! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[_usn3:#usn7]-()Assert Exists([`7esn` Ends With $_usn3 Ends With usn2].@usn5!)"), + octest_legacy:ct_string("Drop Constraint On()-[@usn6:`7esn`]->()Assert Exists(Case #usn7 =~{`4esn`} =~123456789 When Count(*) Starts With $usn1 Starts With {usn2} Then $`6esn`[{`3esn`}..12] End.@usn5)"), + octest_legacy:ct_string("Create Constraint On(_usn3:#usn8)Assert Exists([`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Contains 123.654 Contains 01].`5esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:_usn4)Assert Exists(Single(_usn4 In 0.0[..{999}][..0.0]).`5esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[@usn6:@usn6]-()Assert Exists(Shortestpath((((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[{#usn7:'s_str'[_usn4..0x0]}]-(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})))).usn2!)"), + octest_legacy:ct_string("Create Constraint On(`4esn`:@usn5)Assert Exists(Shortestpath(((:`2esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}})<-[@usn5{`7esn`:123456789[0..]}]->(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[? *..0Xa]->(`1esn` :`4esn`:@usn6))).`5esn`)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`1esn`)Assert Exists([$@usn6[$0..usn1][0X0123456789ABCDEF..$999]].`1esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:usn2)Assert {`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}.`3esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn6:``)Assert Exists(_usn3(usn2[`7esn`..{`3esn`}][$7..{#usn7}],.e1[..{`7esn`}][..{_usn3}]).#usn7)"), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:`8esn`]->()Assert Exists(Extract(_usn4 In 0.0[..{999}][..0.0] Where Count(*)[.e12]|_usn4[Count(*)]).@usn5?)"), + octest_legacy:ct_string("Create Constraint On(usn2:`3esn`)Assert Exists((:_usn3$usn1)<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5)-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}).#usn7)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`2esn`)Assert Exists(usn1({usn1}[$7..0x0]).`2esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[`3esn`:usn1]-()Assert Exists([9e1 Ends With $@usn5 Ends With $123456789].`3esn`)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`6esn`)Assert Exists(All(_usn3 In {@usn5}[..#usn7] Where {`4esn`}[{`1esn`}][{1000}]).`1esn`!)"), + octest_legacy:ct_string("Drop Constraint On()-[#usn8:`7esn`]->()Assert Exists(All(#usn7 In 123.654 Starts With $`` Where _usn3 Contains .e0 Contains {usn2}).@usn6!)"), + octest_legacy:ct_string("Create Constraint On(@usn6:`2esn`)Assert Exists([12.e12[{7}..7]]._usn3)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:`3esn`)Assert [{``}[_usn4..$`1esn`],9e0[#usn8]].`7esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`6esn`)Assert Exists(``(True[True..],$_usn4).`5esn`?)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:_usn4)Assert Exists(Allshortestpaths(((@usn6 :`2esn`)))._usn4?)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`8esn`)Assert Exists({@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}.usn2?)"), + octest_legacy:ct_string("Drop Constraint On()<-[`4esn`:@usn5]-()Assert Exists(#usn7(``[$0..][`1esn`..],{7} Starts With $usn1 Starts With 1.0).usn1?)"), + octest_legacy:ct_string("Create Constraint On(@usn6:`2esn`)Assert Exists([`5esn` In $`2esn`[12.e12][$@usn5] Where $``[.e12..]].``)"), + octest_legacy:ct_string("Create Constraint On()<-[_usn4:@usn5]-()Assert Exists(@usn5(Distinct 9e12 Is Not Null).``?)"), + octest_legacy:ct_string("Drop Constraint On()-[usn2:usn1]-()Assert Exists(Reduce(`8esn`=999 Starts With 's_str',`2esn` In {999} Is Not Null|{12} Contains 9e0).#usn8!)"), + octest_legacy:ct_string("Create Constraint On()-[usn2:`6esn`]->()Assert Exists([_usn3 In {`2esn`} Ends With {12} Ends With 7|Count ( * )[$12..]].`5esn`?)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:@usn6)Assert Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]).#usn8 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:_usn3)Assert Exists(None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where True[True..]).usn2?)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`3esn`)Assert Allshortestpaths(((({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})<-[?:``]-(`1esn` :#usn7)-[?:`4esn`|:#usn7]->(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})))).`5esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`2esn`)Assert Case When 123.654[1e1..][{#usn8}..] Then .e12[$7..][{`6esn`}..] When _usn4 Is Null Then {`1esn`} In 12.e12 In 9e1 End.usn2? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[_usn4:_usn4]-()Assert Exists(Any(`1esn` In `3esn`[07..] Where `7esn`[0..$usn2][{usn2}..0.e0]).#usn7)"), + octest_legacy:ct_string("Drop Constraint On()-[_usn3:usn2]->()Assert Exists((@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]})<-[usn1?:`6esn` *12..{`6esn`:999 Starts With $123456789 Starts With {``}}]->({_usn4}).@usn6)"), + octest_legacy:ct_string("Drop Constraint On()-[_usn4:#usn8]->()Assert Exists(None(`6esn` In 00 Where 0.12[..$`6esn`][..$1000]).`2esn`)"), + octest_legacy:ct_string("Create Constraint On()-[``:_usn4]->()Assert Exists(Case When 00[Count(*)...e0][$#usn7..0X0123456789ABCDEF] Then $usn1 In 01234567 In .e1 End._usn3)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:usn2)Assert [_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 9e12 Is Not Null].`7esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[`6esn`:`6esn`]-()Assert Exists([True Is Not Null,0e0 Contains 9e12,$`6esn`[{`3esn`}..12]].`4esn`!)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:_usn3)Assert Exists(Any(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999]).``)"), + octest_legacy:ct_string("Drop Constraint On()-[#usn7:`5esn`]->()Assert Exists(All(`2esn` In {999} Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]).`3esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[@usn5:@usn5]-()Assert Exists(Extract(#usn7 In 123.654 Starts With $`` Where 12.e12[`7esn`]).@usn5)"), + octest_legacy:ct_string("Drop Constraint On(usn2:``)Assert Exists({usn1:{`4esn`}[$123456789]}.`2esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[#usn8:`3esn`]-()Assert Exists(Reduce(`6esn`={usn2} =~@usn6 =~{`4esn`},_usn3 In {`2esn`} Ends With {12} Ends With 7|{_usn3} Contains True Contains 0X7)._usn3?)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:``)Assert Shortestpath(((:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7}))).`4esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`2esn`)Assert Exists(Filter(`2esn` In {999} Is Not Null Where $7 Ends With $`8esn`).`8esn`!)"), + octest_legacy:ct_string("Create Constraint On()-[`1esn`:`8esn`]-()Assert Exists(Filter(#usn7 In 0Xa[@usn5][{`7esn`}] Where #usn7 Starts With $999).`4esn`?)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`6esn`)Assert All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $`5esn`[$#usn7..][0xabc..]).#usn7? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`7esn`)Assert Exists(None(_usn4 In 0.0[..{999}][..0.0] Where {999}[$123456789..][12..]).`2esn`)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`3esn`)Assert Case $usn1[@usn6][#usn7] When 12.0[2.12..][{`5esn`}..] Then 0X0123456789ABCDEF[0X7..] When {`6esn`}[..{`2esn`}] Then {`5esn`} Contains 's_str' Contains 9e1 Else 00 Starts With $`6esn` End.`8esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:@usn6]->()Assert Exists(Filter(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} =~_usn4 =~0.12).`7esn`)"), + octest_legacy:ct_string("Drop Constraint On(``:_usn3)Assert Filter(_usn3 In {@usn5}[..#usn7] Where $7 Is Null Is Null).`5esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[@usn5:`3esn`]->()Assert Exists(Reduce(`2esn`=.e1[0.12],#usn7 In 0Xa[@usn5][{`7esn`}]|0Xa[0e0..{#usn7}]).#usn8!)"), + octest_legacy:ct_string("Drop Constraint On(usn2:``)Assert Extract(_usn4 In 0.0[..{999}][..0.0] Where $`` Is Null|{0} =~12.0).`7esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[_usn4:`7esn`]->()Assert Exists(None(#usn7 In 0Xa[@usn5][{`7esn`}] Where $0 In _usn4).``)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`6esn`)Assert Exists(Extract(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $@usn6[01..@usn5][0x0..`4esn`]).`8esn`?)"), + octest_legacy:ct_string("Drop Constraint On(usn2:``)Assert Exists([`` In {`1esn`} Starts With @usn6 Where 0.0 =~12.e12 =~1.0|Count(*)[.e12..]].`2esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:usn2)Assert None(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2])._usn4! Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[`2esn`:@usn5]-()Assert Exists([`6esn` In Count(*) Ends With $`` Ends With {7} Where `1esn` =~1000 =~1000|$7 Ends With 0X7]._usn4)"), + octest_legacy:ct_string("Create Constraint On()-[`1esn`:`8esn`]->()Assert Exists(#usn8(Distinct 9e1[$_usn4..0xabc],123.654 Ends With usn2 Ends With 0).usn1)"), + octest_legacy:ct_string("Create Constraint On()-[usn1:#usn7]-()Assert Exists(Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[{999}..][{_usn4}..])._usn4!)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:_usn4)Assert Case When $`` Is Null Then 0.12 Ends With {1000} Ends With `6esn` When True[7][$999] Then 0Xa Contains Count ( * ) End._usn3 Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`8esn`:_usn4]->()Assert Exists([_usn3 In True[7][$999] Where {usn2}|`8esn`[..`4esn`][..$usn1]].usn2)"), + octest_legacy:ct_string("Create Constraint On(usn1:`5esn`)Assert Reduce(`1esn`={`3esn`} Is Not Null Is Not Null,_usn3 In True[7][$999]|.e12 Ends With 1000 Ends With 010).`2esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn8:#usn8)Assert Exists(`8esn`(Distinct).@usn6!)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`4esn`)Assert {#usn7:9e12 Ends With 123456789}.@usn5! Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[`2esn`:#usn7]-()Assert Exists(Any(`5esn` In $`2esn`[12.e12][$@usn5] Where 's_str' Starts With 12e12 Starts With $_usn4)._usn3)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:_usn4)Assert Exists(Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {12}[00..{@usn6}][1.e1..0]).``)"), + octest_legacy:ct_string("Drop Constraint On()-[_usn3:`8esn`]-()Assert Exists(All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789).`4esn`?)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:usn1)Assert Exists(Extract(`1esn` In 0.e0 =~`1esn` =~`6esn`|Count ( * ) Starts With 010 Starts With 0x0).`8esn`!)"), + octest_legacy:ct_string("Drop Constraint On()-[``:usn2]->()Assert Exists(Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 12 Starts With {_usn4} Starts With $#usn8|@usn5 Is Not Null Is Not Null)._usn3!)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`7esn`)Assert `7esn`(Distinct {usn1}[$7..0x0]).`6esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`5esn`:usn2)Assert Exists(Extract(_usn4 In 0.0[..{999}][..0.0] Where Count(*)[.e12]|$``[..1.e1][..12]).`5esn`)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`4esn`)Assert Exists(Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3).`1esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[_usn3:`4esn`]->()Assert Exists(Single(`` In {`1esn`} Starts With @usn6 Where 12.e12 In {0} In 9e1).``?)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:`2esn`)Assert `8esn`.@usn5? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`4esn`)Assert Exists(None(#usn7 In 123.654 Starts With $`` Where Count(*)[010..][#usn7..]).#usn7?)"), + octest_legacy:ct_string("Drop Constraint On()-[_usn3:_usn4]->()Assert Exists(None(`3esn` In 123.654[1e1..][{#usn8}..] Where $`2esn`[12.e12][$@usn5]).#usn7)"), + octest_legacy:ct_string("Create Constraint On()-[usn1:``]-()Assert Exists(Allshortestpaths((:_usn4{`1esn`:{123456789}[12..][$12..]})).`4esn`!)"), + octest_legacy:ct_string("Create Constraint On(_usn4:`4esn`)Assert Exists((@usn5 :usn1:_usn4)<-[``? *1000]->(:`4esn`:@usn6{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}).`1esn`)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`3esn`)Assert Exists({`3esn`:0.0 =~12.e12 =~1.0,`1esn`:$usn1 Starts With {_usn3}}.`3esn`)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`5esn`)Assert Case {@usn5}[..#usn7] When $@usn6 Starts With {`1esn`} Starts With 12 Then {usn1} Ends With {`6esn`} Ends With 123456789 End.`4esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:usn1)Assert Exists(({``:$0[..{usn2}][..$usn1]})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[?:`7esn`]->(#usn7 :@usn6).@usn5?)"), + octest_legacy:ct_string("Create Constraint On(``:``)Assert Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End._usn3? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[@usn5:`1esn`]-()Assert Exists(Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where .e12 Is Null Is Null)._usn3?)"), + octest_legacy:ct_string("Create Constraint On()-[`8esn`:`4esn`]->()Assert Exists(None(_usn3 In True[7][$999] Where $`3esn`[{``}..]).`3esn`?)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:_usn4)Assert Exists({_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}}.@usn6!)"), + octest_legacy:ct_string("Drop Constraint On()-[@usn5:_usn4]-()Assert Exists(Reduce(`2esn`=Count(*) Starts With $usn1 Starts With {usn2},#usn7 In 0Xa[@usn5][{`7esn`}]|`2esn` Ends With 12.e12 Ends With `2esn`).`5esn`)"), + octest_legacy:ct_string("Drop Constraint On()<-[#usn8:@usn6]-()Assert Exists(Case `5esn`[..9e0][..01234567] When 1e1[1.e1..][123.654..] Then True =~{`1esn`} End.`3esn`!)"), + octest_legacy:ct_string("Create Constraint On()<-[`7esn`:`7esn`]-()Assert Exists([`5esn` In $`2esn`[12.e12][$@usn5] Where 12[..$@usn6]].`3esn`)"), + octest_legacy:ct_string("Create Constraint On(@usn5:usn1)Assert Case When {#usn7} In Count ( * ) In $#usn8 Then $usn1 Starts With {_usn3} Else ``[{#usn8}] End.#usn7 Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[@usn6:`4esn`]->()Assert Exists(Reduce(`4esn`=9e1 Ends With Count(*) Ends With False,`2esn` In {999} Is Not Null|0X7[0.e0][{`4esn`}]).`7esn`)"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:#usn8]->()Assert Exists(Extract(_usn3 In {@usn5}[..#usn7] Where $1000 Is Not Null Is Not Null|7 Contains `2esn` Contains $`8esn`).``?)"), + octest_legacy:ct_string("Create Constraint On()<-[`1esn`:usn2]-()Assert Exists(All(`6esn` In 00 Where $12 Is Not Null).`4esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[`1esn`:_usn3]-()Assert Exists(Extract(`` In {`1esn`} Starts With @usn6 Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]|{@usn5}[Count(*)..]).`8esn`?)"), + octest_legacy:ct_string("Create Constraint On(_usn3:_usn4)Assert Exists(Reduce(`5esn`={_usn3} Contains $`1esn` Contains 12.0,`8esn` In $12[{7}..0X0123456789ABCDEF]|123456789 Is Not Null Is Not Null).`7esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[@usn6:`4esn`]-()Assert Exists([`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}]].`1esn`?)"), + octest_legacy:ct_string("Create Constraint On(usn1:@usn6)Assert Reduce(`5esn`=12.e12[2.12..][0xabc..],_usn4 In `2esn`|9e12 Ends With 123456789).`4esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`6esn`)Assert [$usn1[..'s_str'][..$#usn8],$`` Is Null,{#usn8} =~{999} =~{#usn7}].#usn8 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:`7esn`)Assert _usn4(Distinct {999}[$123456789..][12..],0.e0[{999}][{`1esn`}]).usn2 Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[usn1:usn1]-()Assert Exists(usn2(Distinct $usn2 =~\"d_str\" =~_usn3).`6esn`?)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`3esn`)Assert Exists(Allshortestpaths((({#usn7:#usn8 =~{999}})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2}))).usn1!)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`2esn`)Assert Exists(Case When {_usn3}[..$`8esn`] Then 1.e1[..12.e12][..$usn2] End.``?)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:#usn7)Assert Exists(Filter(`1esn` In `3esn`[07..] Where 12 Starts With {_usn4} Starts With $#usn8).`4esn`!)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`6esn`)Assert [usn1 In 12.e12 In {0} In 9e1 Where `4esn` Contains #usn8 Contains 7|usn2[`7esn`..{`3esn`}][$7..{#usn7}]].`5esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:_usn3)Assert Exists({#usn7:$0[$1000..00][{0}..{usn1}],#usn7:$`6esn`['s_str'..][{_usn4}..]}.#usn8!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`6esn`)Assert (#usn8 {``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})._usn3! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`2esn`:@usn6)Assert Exists(Allshortestpaths((usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]})).@usn5)"), + octest_legacy:ct_string("Drop Constraint On(usn2:@usn6)Assert Shortestpath(((usn1 :`5esn`:@usn5)-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:usn2:`2esn`{usn1:$7 Is Null Is Null})-[? *01..07]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}))).`1esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn6:_usn4)Assert Exists([{999} Starts With {_usn4} Starts With 00,$@usn5 In 's_str' In $12]._usn3?)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:@usn5)Assert Exists(None(`1esn` In `3esn`[07..] Where $@usn5[..usn2][..$#usn7]).@usn5?)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:@usn6)Assert Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]|`3esn` Is Not Null Is Not Null).#usn7! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`7esn`)Assert Exists(Extract(`` In {`1esn`} Starts With @usn6 Where {`2esn`}[..{@usn6}][..1.e1]|True =~{`1esn`})._usn4!)"), + octest_legacy:ct_string("Create Constraint On()<-[`1esn`:@usn5]-()Assert Exists(Any(`` In {`1esn`} Starts With @usn6 Where 12.e12 In {0} In 9e1).`2esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[#usn7:`5esn`]-()Assert Exists(Reduce(`8esn`={`4esn`}[$123456789],`6esn` In 00|#usn7 =~{`4esn`} =~123456789).usn1?)"), + octest_legacy:ct_string("Drop Constraint On(usn1:``)Assert Extract(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0])._usn3! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`7esn`)Assert Exists([`5esn` Is Null Is Null,{0}[False..@usn5]].`4esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[usn2:`1esn`]-()Assert Exists([`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]].`3esn`)"), + octest_legacy:ct_string("Create Constraint On()-[_usn3:`8esn`]-()Assert Exists([123.654 Ends With usn2 Ends With 0,{#usn7}[Count ( * )..12][$`2esn`..`4esn`]].`4esn`?)"), + octest_legacy:ct_string("Create Constraint On(usn1:@usn5)Assert Case When 9e12 Is Not Null Is Not Null Then .e12 Ends With 1000 Ends With 010 Else `1esn` Is Null Is Null End._usn4! Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn6:#usn8)Assert Exists({``:$1000 Is Not Null Is Not Null}.`3esn`!)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`2esn`)Assert Extract(`5esn` In $`2esn`[12.e12][$@usn5]|$_usn4 Contains {#usn7} Contains `1esn`).#usn8 Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn4:@usn5)Assert Case {@usn5} =~_usn4 =~0.12 When 9e1[123456789..] Then 9e0 In .e1 In 1.e1 Else 12 Ends With 01 End.#usn7! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`3esn`:`4esn`]-()Assert Exists([`3esn` In 123.654[1e1..][{#usn8}..] Where 9e12[$`5esn`]].`3esn`!)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:_usn3)Assert Exists([{7}[$7..],``[..$#usn7],01234567[$7..{12}]].#usn8)"), + octest_legacy:ct_string("Drop Constraint On()-[usn2:`4esn`]-()Assert Exists(Reduce(`5esn`=$999 In 999,`` In {`1esn`} Starts With @usn6|$`1esn`[$12][Count ( * )]).`8esn`)"), + octest_legacy:ct_string("Create Constraint On()-[`3esn`:`1esn`]-()Assert Exists((#usn7 {usn1:$#usn7 =~{12} =~False,#usn7:0x0 =~123.654 =~{999}})-[?:#usn7|`2esn` *0x0..]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]}).usn2!)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`4esn`)Assert Reduce(#usn8=07 Is Null,`5esn` In $`2esn`[12.e12][$@usn5]|$`` In 0 In {1000}).@usn5? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn2:_usn3)Assert Exists(`6esn`(Distinct).usn2?)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`8esn`)Assert All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`).usn1 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn2:`2esn`)Assert Exists(`3esn`(Distinct {usn2} =~@usn6 =~{`4esn`}).@usn6?)"), + octest_legacy:ct_string("Create Constraint On()<-[#usn7:#usn7]-()Assert Exists([`2esn` Ends With $`4esn` Ends With {#usn7},'s_str'[..0X7],{#usn8} =~{999} =~{#usn7}].#usn8?)"), + octest_legacy:ct_string("Create Constraint On()-[@usn5:@usn6]->()Assert Exists(Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where .e1[0.12]|0.12[Count(*)..][$#usn7..]).`3esn`?)"), + octest_legacy:ct_string("Create Constraint On(#usn8:#usn7)Assert Exists(Filter(#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 In 01234567 In .e1)._usn4!)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`6esn`)Assert Reduce(`3esn`=#usn7 Starts With 1000 Starts With .e1,@usn5 In Null =~12e12|.e1 Ends With {7} Ends With $usn1).`7esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[@usn5:_usn3]-()Assert Exists({`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]}.`1esn`?)"), + octest_legacy:ct_string("Create Constraint On(``:`4esn`)Assert Reduce(@usn6=Count(*) Starts With $usn1 Starts With {usn2},`3esn` In 123.654[1e1..][{#usn8}..]|$`8esn` In $`2esn` In {7}).`7esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`6esn`)Assert Exists(Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 2.12 In $`8esn` In {`7esn`}).@usn5?)"), + octest_legacy:ct_string("Create Constraint On(``:@usn5)Assert Exists(Case When $12[{7}..0X0123456789ABCDEF] Then #usn7 Starts With 1000 Starts With .e1 When .e12 =~.e0 Then \"d_str\" Contains @usn6 Contains 12.e12 End.`3esn`?)"), + octest_legacy:ct_string("Create Constraint On()<-[``:_usn4]-()Assert Exists({@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2],``:{`7esn`} Is Not Null Is Not Null}.#usn8!)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`7esn`)Assert Filter(@usn5 In Null =~12e12 Where 1.e1 Starts With $`2esn` Starts With $0).usn2 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn3:`4esn`)Assert Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where usn2[`7esn`..{`3esn`}][$7..{#usn7}]|1e1[..01]).`6esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:@usn6)Assert [`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3}[..$`8esn`]|\"d_str\" =~`1esn` =~{`5esn`}].usn2! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`7esn`:#usn8]-()Assert Exists(Extract(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where `1esn` =~1000 =~1000)._usn4?)"), + octest_legacy:ct_string("Drop Constraint On()-[usn1:`7esn`]-()Assert Exists(Filter(#usn7 In 123.654 Starts With $`` Where $0[_usn4..{`3esn`}][$#usn7..$#usn7]).usn1)"), + octest_legacy:ct_string("Drop Constraint On()-[_usn3:`8esn`]->()Assert Exists(None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {`2esn`}[Count(*)]).@usn5?)"), + octest_legacy:ct_string("Drop Constraint On(``:@usn6)Assert Filter(`5esn` In $`2esn`[12.e12][$@usn5] Where 's_str'[.._usn4][..``]).@usn5? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`3esn`)Assert Exists((`1esn` :@usn6)<-[@usn5:_usn4|:usn1*]->(:@usn5)<-[`2esn`:#usn8|`2esn` *0xabc..7]-(usn1 :#usn8).`4esn`!)"), + octest_legacy:ct_string("Create Constraint On(_usn3:`5esn`)Assert Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {`2esn`}[Count(*)]).@usn6? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`6esn`:usn2)Assert Exists(Case `1esn` In 07 When 0.e0 =~`1esn` =~`6esn` Then 0x0 Ends With {``} When {usn1}[$7..0x0] Then _usn3[\"d_str\"] End.`8esn`!)"), + octest_legacy:ct_string("Create Constraint On(usn2:`4esn`)Assert (@usn5 :usn1:_usn4)<-[:`6esn`{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},`6esn`:``[..$#usn7]}]->({_usn4:False[0Xa..$usn1]})<-[``{`3esn`:{`3esn`}[{`5esn`}]}]-({@usn5:``[{123456789}..]}).`4esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(``:`6esn`)Assert Exists({`6esn`:`3esn`[..{_usn4}][..{@usn5}],`2esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]}.`2esn`?)"), + octest_legacy:ct_string("Drop Constraint On(``:``)Assert Case {`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}] When `8esn` Starts With {123456789} Then {`1esn`} Is Not Null When {0}[..{`7esn`}] Then {1000}[{#usn8}] End.usn2 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn2:@usn5)Assert All(_usn4 In `2esn` Where 9e12 Is Not Null Is Not Null).#usn7? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:`5esn`]->()Assert Exists([7[1000.._usn3][9e0..\"d_str\"],123.654[1e1..][{#usn8}..],`6esn` Is Null Is Null].`7esn`?)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`2esn`)Assert All(`1esn` In $12 Is Not Null Where 12 Is Not Null).usn2! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:@usn5]->()Assert Exists(`4esn`({`2esn`} Starts With @usn6,{`2esn`}[..{@usn6}][..1.e1]).`3esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:_usn4)Assert Exists(`8esn`({@usn5}[..#usn7]).@usn6!)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:_usn3)Assert [9e1[9e1...e0],$999 Contains {7},\"d_str\"[..0.e0]].usn2! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn4:`8esn`)Assert Exists({#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}.@usn5!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`1esn`)Assert Exists(Filter(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null).@usn6!)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:#usn7)Assert Exists(Shortestpath((((#usn7 :@usn6{`8esn`:{@usn6}[True..{_usn3}],`1esn`:07 Is Null})-[ *..0{`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null}]->(:usn1:_usn4{`4esn`:01234567 In $123456789})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5)))).#usn8)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:`3esn`)Assert Exists(#usn8(`7esn` Contains {@usn5} Contains $123456789,`3esn` =~9e0 =~@usn6).`1esn`)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`4esn`)Assert Exists([{@usn5}[12.0..1000][{`3esn`}..{7}],`6esn`[{`6esn`}..],{_usn3}[`3esn`..$#usn8]].`4esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:usn1)Assert Allshortestpaths((((#usn7 :@usn5)<-[`4esn`?*..]-(:`4esn`:@usn6{`3esn`:123456789 Is Not Null Is Not Null})-[#usn8:`` *..0{@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})))).`2esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`8esn`)Assert Exists([`2esn` In {999} Is Not Null Where $7 Ends With $`8esn`|0Xa[@usn5][{`7esn`}]].`8esn`!)"), + octest_legacy:ct_string("Create Constraint On(usn2:usn2)Assert Exists((`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[{_usn4:{1000} Ends With {`8esn`}}]-(@usn5 :`7esn`{_usn3:{``}[_usn4..$`1esn`]})<-[`2esn`?*]->({#usn7:1e1[1.e1..][123.654..],`3esn`:True Starts With $`4esn` Starts With 12e12}).`1esn`)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:@usn6)Assert Exists(Single(`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]).usn1?)"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:`4esn`)Assert Reduce(usn2=`8esn` Contains $`3esn` Contains {`4esn`},_usn3 In True[7][$999]|0x0 Ends With {``}).`4esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn7:`5esn`)Assert Case When .e1[@usn5]['s_str'] Then 123456789 Starts With {@usn6} Starts With $12 End.usn1! Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn1:`1esn`)Assert Exists((`2esn` :#usn8{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})<-[`1esn`? *0X0123456789ABCDEF{`5esn`:1.e1 Starts With $`2esn` Starts With $0}]->({_usn4:{usn1} =~123.654 =~\"d_str\"})-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]-(_usn4 {`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}).`8esn`)"), + octest_legacy:ct_string("Create Constraint On(``:usn2)Assert Exists([`1esn` In 0.e0 =~`1esn` =~`6esn` Where 's_str' Starts With 12e12 Starts With $_usn4|usn1 Is Null Is Null].@usn6?)"), + octest_legacy:ct_string("Drop Constraint On()<-[usn2:#usn7]-()Assert Exists((_usn3 {@usn5:.e12 =~.e0})<-[? *0X7..0Xa]->(:`4esn`:@usn6).`2esn`)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:usn2)Assert Exists(Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`2esn` In {123456789}).`5esn`?)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`5esn`)Assert Exists(_usn3(Distinct 1e1[{_usn4}..123.654],{`7esn`}[0X7..][0x0..])._usn4!)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:#usn8)Assert Exists(@usn6(1000 Is Null Is Null,.e1 Ends With {7} Ends With $usn1).@usn6?)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`2esn`)Assert Exists([#usn8 Is Null].``!)"), + octest_legacy:ct_string("Drop Constraint On()-[`4esn`:`4esn`]-()Assert Exists([12 Starts With 7 Starts With $`5esn`,$@usn5[$`4esn`][$@usn6]].`4esn`)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:usn1)Assert Reduce(@usn6=1.e1 =~$usn2,`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2).`2esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`7esn`:`2esn`]-()Assert Exists(Case @usn6[{0}..] When {usn2} Then @usn5[$12..\"d_str\"] End._usn4!)"), + octest_legacy:ct_string("Drop Constraint On()-[`6esn`:`5esn`]-()Assert Exists((@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]})-[_usn4? *07{1000}]-(`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]}).usn1!)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`6esn`)Assert Exists({`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}.usn2?)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:#usn8)Assert Exists(Reduce(_usn4=$0 Is Not Null,`2esn` In {999} Is Not Null|12.e12[2.12..][0xabc..]).``!)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:@usn5)Assert Exists((_usn3 {usn2:_usn3[$usn2..0]})<-[@usn6?:`8esn`|:_usn4 *0X7..0Xa{`3esn`:9e1 =~999}]-(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]}).`6esn`!)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`5esn`)Assert Exists(Allshortestpaths((((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[{#usn7:'s_str'[_usn4..0x0]}]-(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})))).`6esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[``:#usn7]-()Assert Exists({#usn8:123.654[$`1esn`..Null][1000..{_usn3}],`6esn`:12.0 =~$#usn7 =~9e12}.@usn6)"), + octest_legacy:ct_string("Create Constraint On(#usn7:`5esn`)Assert Exists({#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]}.`8esn`)"), + octest_legacy:ct_string("Create Constraint On()-[`4esn`:``]-()Assert Exists(Case 0X0123456789ABCDEF Is Null Is Null When Count ( * ) Is Null Then #usn7[$`5esn`..] When $999 Ends With {0} Then $`2esn` Is Null Is Null Else {999}[$123456789..][12..] End.usn1!)"), + octest_legacy:ct_string("Create Constraint On()<-[`6esn`:`4esn`]-()Assert Exists(None(_usn3 In {@usn5}[..#usn7] Where 12.e12[{7}..7]).#usn8?)"), + octest_legacy:ct_string("Create Constraint On()<-[`8esn`:``]-()Assert Exists(`4esn`().`5esn`)"), + octest_legacy:ct_string("Drop Constraint On()<-[`4esn`:usn1]-()Assert Exists({`7esn`:{@usn5}[..#usn7],@usn6:{_usn3}[`3esn`..$#usn8]}.`7esn`!)"), + octest_legacy:ct_string("Drop Constraint On(usn1:usn2)Assert Exists([0.0[..{999}][..0.0],{usn1} =~123.654 =~\"d_str\",True Is Not Null Is Not Null].#usn8?)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:#usn7)Assert Exists([12[..$@usn6],Null Ends With 12 Ends With usn2].``?)"), + octest_legacy:ct_string("Drop Constraint On(usn1:`8esn`)Assert [`7esn` Starts With 0X7 Starts With $`7esn`,$`` In 0 In {1000}].`8esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`4esn`:`2esn`]-()Assert Exists([_usn3 In True[7][$999] Where $usn1[$123456789..0][{`1esn`}..12.0]].`8esn`)"), + octest_legacy:ct_string("Create Constraint On(_usn3:usn2)Assert Exists(Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e12 =~$_usn4).@usn6!)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:``)Assert {`5esn`:`2esn`[$1000..9e12][{#usn8}..{7}]}._usn4 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:usn2)Assert Exists([$`5esn`[..{`2esn`}][..{0}],7 Contains `2esn` Contains $`8esn`].`6esn`)"), + octest_legacy:ct_string("Create Constraint On()-[usn1:`1esn`]->()Assert Exists(Case 123.654[$`1esn`..Null][1000..{_usn3}] When 9e12 Is Not Null Then {@usn6} Contains 123.654 Contains 01 When {12} =~0.e0 =~{_usn3} Then _usn4[Count(*)] Else $@usn6 Starts With $@usn5 End.@usn6!)"), + octest_legacy:ct_string("Create Constraint On(``:#usn7)Assert Any(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null).`` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`6esn`)Assert Exists([1e1[1.e1..][123.654..],$usn1 =~010 =~07,0X7 Starts With {999} Starts With 12e12].#usn7?)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:#usn7)Assert Exists({`2esn`:$`7esn` In 12,`5esn`:True[..010]}.#usn8!)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`8esn`)Assert Exists(Reduce(_usn3=`2esn`[$1000..9e12][{#usn8}..{7}],`2esn` In {999} Is Not Null|{``} Ends With .e12 Ends With 0.e0).`6esn`)"), + octest_legacy:ct_string("Drop Constraint On(``:_usn4)Assert [$0 Is Not Null,#usn7 Starts With $999,$`6esn`[`8esn`][0.0]].`5esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn3:@usn5)Assert Exists((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``).#usn8?)"), + octest_legacy:ct_string("Create Constraint On()-[`3esn`:@usn5]->()Assert Exists({`8esn`:{_usn3} Contains 9e0 Contains $999,`4esn`:{12}[usn2]}._usn3?)"), + octest_legacy:ct_string("Create Constraint On()<-[@usn5:`3esn`]-()Assert Exists(Extract(_usn4 In `2esn` Where {`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]).`7esn`!)"), + octest_legacy:ct_string("Drop Constraint On()<-[`6esn`:`5esn`]-()Assert Exists(Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where _usn4 Is Null Is Null).``!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:_usn3)Assert Exists((:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})-[`3esn`:`6esn`{`3esn`}]-({`1esn`:$123456789[..$7][..$`6esn`]})-[`4esn`?:_usn4|:usn1{@usn6:$#usn7 Ends With 0.12 Ends With {@usn6}}]->(#usn8 {usn1:$123456789 Starts With `5esn`}).#usn8)"), + octest_legacy:ct_string("Create Constraint On()-[`1esn`:_usn3]-()Assert Exists(Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]})))).`2esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[`4esn`:usn2]-()Assert Exists(({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]-(#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``}).`8esn`?)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`6esn`)Assert Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $`1esn`[#usn8][$@usn5]).`4esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:_usn3)Assert Exists([`1esn` In `3esn`[07..] Where 's_str'[_usn4..0x0]].`5esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`5esn`)Assert Any(`5esn` In $`2esn`[12.e12][$@usn5] Where `6esn`[{`6esn`}..])._usn4 Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[usn2:`6esn`]-()Assert Exists(Reduce(usn1=``[00..$7],`5esn` In $`2esn`[12.e12][$@usn5]|12 Starts With 0x0)._usn3)"), + octest_legacy:ct_string("Create Constraint On()<-[usn1:@usn5]-()Assert Exists([.e12[$#usn8..@usn6],$`6esn`[{`3esn`}..12]].`1esn`?)"), + octest_legacy:ct_string("Create Constraint On()-[_usn3:_usn4]-()Assert Exists(Reduce(`6esn`=$`2esn`[12.e12][$@usn5],`` In {usn1} Ends With {`6esn`} Ends With 123456789|{1000}[{#usn8}]).`6esn`!)"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:`3esn`]-()Assert Exists((`3esn` :`3esn`:`6esn`)-[]->(`7esn` :#usn8).usn1)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:`4esn`)Assert Exists({`3esn`:{usn1}[$7..0x0]}.`8esn`?)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:_usn4)Assert Exists(Case Count(*)[..``][..#usn8] When True[$`7esn`..{1000}] Then 1.0 In 9e1 In {`7esn`} End.`5esn`?)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:#usn7)Assert Exists({`8esn`:True Is Null Is Null,`5esn`:07 Is Null}.`7esn`)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:_usn4)Assert Exists(exists(Distinct 9e1[123456789..]).`7esn`!)"), + octest_legacy:ct_string("Create Constraint On(``:`3esn`)Assert [.e1[..\"d_str\"],{0} =~12.0,1.e1[_usn4..][07..]]._usn3! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn7:_usn3)Assert Reduce(#usn8=$#usn7[`5esn`],usn1 In 12.e12 In {0} In 9e1|{_usn4} In {1000}).`1esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`8esn`)Assert Any(`3esn` In 123.654[1e1..][{#usn8}..] Where 7[$0..][{_usn4}..]).`3esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn6:`7esn`)Assert Exists({_usn4:0.12 Starts With 9e12 Starts With $`1esn`}.`6esn`)"), + octest_legacy:ct_string("Drop Constraint On(usn1:`6esn`)Assert [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``].#usn7! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`1esn`:usn2)Assert Case 12.e12[..1e1] When $_usn4[9e0..] Then 0e0 Contains 9e12 When `5esn` Is Null Is Null Then .e1[..{`7esn`}][..{_usn3}] Else {`2esn`} Ends With {12} Ends With 7 End.usn2! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`1esn`)Assert #usn7.`7esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[_usn4:_usn4]-()Assert Exists(Single(`2esn` In {999} Is Not Null Where #usn8 =~{_usn3} =~``).`5esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:`6esn`)Assert Exists(Case When 0X7[0X7..][Count ( * )..] Then `7esn` Contains `5esn` Contains 0X7 Else 123.654[1e1..][{#usn8}..] End.#usn7?)"), + octest_legacy:ct_string("Create Constraint On(@usn6:`8esn`)Assert Exists(Any(`1esn` In `3esn`[07..] Where @usn6[{0}..]).@usn6)"), + octest_legacy:ct_string("Drop Constraint On()<-[@usn6:@usn6]-()Assert Exists(None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where `7esn` Starts With 0X7 Starts With $`7esn`).`7esn`!)"), + octest_legacy:ct_string("Drop Constraint On()<-[@usn6:`4esn`]-()Assert Exists(Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}]).usn2!)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`6esn`)Assert Exists(Case 9e1[$_usn4..0xabc] When $1000[..$999] Then $`7esn` In 12 Else @usn5 =~'s_str' End.#usn7)"), + octest_legacy:ct_string("Drop Constraint On(usn2:usn2)Assert Shortestpath((((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`})))).`3esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn4:#usn7)Assert Exists({``}._usn4)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`2esn`)Assert Exists(Reduce(`7esn`=7 Contains `2esn` Contains $`8esn`,_usn4 In `2esn`|12.e12[..1e1]).`1esn`?)"), + octest_legacy:ct_string("Drop Constraint On()-[`6esn`:`5esn`]->()Assert Exists(Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $@usn6[01..@usn5][0x0..`4esn`]).`5esn`?)"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:#usn8]->()Assert Exists(exists(Distinct 7 Contains `2esn` Contains $`8esn`,$`2esn` Starts With {`8esn`} Starts With {usn1}).#usn7?)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`6esn`)Assert [{usn2} =~@usn6 =~{`4esn`},Count(*) Is Not Null]._usn3? Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:`6esn`)Assert Extract(#usn7 In 123.654 Starts With $`` Where 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF).`5esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:`8esn`)Assert {_usn3:00,`2esn`:12e12 Is Not Null}.usn1 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn4:@usn5)Assert Exists(Single(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``).`8esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[#usn7:`1esn`]-()Assert Exists(Any(`` In {`1esn`} Starts With @usn6 Where 999 Starts With $123456789 Starts With {``}).@usn5!)"), + octest_legacy:ct_string("Create Constraint On(@usn6:`6esn`)Assert None(_usn4 In `2esn` Where Count(*)[..``][..#usn8]).#usn7? Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[_usn3:`5esn`]-()Assert Exists(Extract(#usn7 In 123.654 Starts With $`` Where .e1[@usn5]['s_str']|{@usn5} Starts With 1.0 Starts With 00).`1esn`?)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:_usn4)Assert Exists(Filter(`3esn` In 123.654[1e1..][{#usn8}..] Where {@usn6} In {#usn7} In 12.e12).`7esn`!)"), + octest_legacy:ct_string("Create Constraint On()<-[`1esn`:`7esn`]-()Assert Exists(All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where Count ( * )[Count ( * )][12]).`8esn`?)"), + octest_legacy:ct_string("Create Constraint On(@usn5:`1esn`)Assert Case When 0.0 Is Not Null Then 1.e1 =~9e12 =~`4esn` When 9e12 Is Not Null Is Not Null Then $999 Ends With {0} End.`6esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn4:`7esn`)Assert Case When {@usn6} Contains 123.654 Contains 01 Then usn2 Ends With Count ( * ) Ends With $@usn6 End.`5esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:usn1)Assert [12.0 =~$#usn7 =~9e12].`1esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(`8esn`:usn2)Assert Exists(`3esn`(\"d_str\"[..0.e0]).`8esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[`4esn`:`8esn`]-()Assert Exists(Filter(`5esn` In $`2esn`[12.e12][$@usn5] Where 12.e12[``..usn2][{#usn7}..@usn5]).`3esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:#usn8)Assert Extract(_usn4 In 0.0[..{999}][..0.0] Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`|{`6esn`} Ends With 0e0 Ends With {``}).`4esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[#usn7:_usn3]-()Assert Exists(Any(`6esn` In Count(*) Ends With $`` Ends With {7} Where True Starts With $`2esn` Starts With {@usn6})._usn4!)"), + octest_legacy:ct_string("Create Constraint On()-[`2esn`:`1esn`]->()Assert Exists(({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]})<-[`5esn`?:`7esn`]->(:@usn5)<-[`4esn`:`4esn`|:#usn7{`2esn`:{`4esn`}[$_usn4..][9e0..]}]-({usn2:`1esn` In 07}).@usn6?)"), + octest_legacy:ct_string("Create Constraint On(_usn3:#usn7)Assert Exists(Case $_usn3 =~{_usn4} =~$`6esn` When {``}[010] Then {`3esn`} Is Null End.`4esn`)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`6esn`)Assert Filter(`1esn` In $12 Is Not Null Where {``}[010]).`4esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:_usn3)Assert Exists(All(`1esn` In `3esn`[07..] Where 9e12 Is Not Null).#usn7?)"), + octest_legacy:ct_string("Drop Constraint On()-[``:_usn3]-()Assert Exists({`5esn`:$0 Starts With `2esn`,`2esn`:12 Starts With {_usn4} Starts With $#usn8}.#usn7?)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:_usn4)Assert Exists(Single(`2esn` In {999} Is Not Null Where 123.654 Ends With usn2 Ends With 0).@usn5)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`1esn`)Assert Extract(`` In {`1esn`} Starts With @usn6 Where $usn1[@usn6][#usn7]|$7 Ends With 0X7).#usn8! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:@usn5)Assert Extract(@usn5 In Null =~12e12 Where _usn4 In $usn1|12.e12 In {0} In 9e1)._usn3! Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn4:usn2)Assert {`2esn`:12e12 Starts With `1esn` Starts With usn2,#usn8:0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]}.`5esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[usn2:`4esn`]-()Assert Exists(None(#usn7 In 123.654 Starts With $`` Where $999 In 999).`3esn`!)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:usn1)Assert Reduce(`8esn`=12.e12[``..usn2][{#usn7}..@usn5],`3esn` In 123.654[1e1..][{#usn8}..]|$12[{7}..0X0123456789ABCDEF]).`4esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:usn1)Assert Exists(Extract(`1esn` In `3esn`[07..] Where 999 Starts With 's_str'|$999 Contains {7}).`2esn`!)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`4esn`)Assert Exists(#usn7(Distinct $usn1[..'s_str'][..$#usn8],\"d_str\"[..0.e0]).`7esn`?)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:``)Assert Single(_usn4 In `2esn` Where 0X0123456789ABCDEF[$`5esn`..]).usn2? Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[@usn5:``]-()Assert Exists(Reduce(@usn6=12.e12[{7}..7],_usn3 In True[7][$999]|$`3esn`[..$`2esn`][..123.654]).`4esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:@usn5)Assert Exists([0X0123456789ABCDEF[0X7..],$usn2 Ends With $`5esn`,{12} Starts With #usn8 Starts With 0e0].#usn8!)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:@usn6)Assert Exists(`1esn`(Distinct {`2esn`} In $123456789 In True).usn2?)"), + octest_legacy:ct_string("Drop Constraint On(``:`6esn`)Assert None(_usn4 In 0.0[..{999}][..0.0] Where #usn7 =~{`4esn`} =~123456789).#usn7! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[usn1:``]->()Assert Exists([$_usn3[{999}],$`2esn`[123.654][1e1]].`8esn`?)"), + octest_legacy:ct_string("Create Constraint On(usn2:usn1)Assert Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 1.e1[0X0123456789ABCDEF..]).`3esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn4:@usn5)Assert Exists(Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[$`8esn`.._usn3]).`4esn`)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:#usn7)Assert {_usn3:0X0123456789ABCDEF[0X7..],@usn5:0.e0[{999}][{`1esn`}]}.`8esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:_usn4)Assert Exists(Filter(`1esn` In `3esn`[07..] Where @usn6[{0}..]).usn1!)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:#usn8)Assert (_usn3 {usn2:_usn3[$usn2..0]})<-[usn1?:usn2|#usn7 *01..07]-(@usn6 {`5esn`:\"d_str\" =~`1esn` =~{`5esn`}})<-[#usn7?:`3esn`|:@usn5 *..010{`5esn`:{999} Starts With {_usn4} Starts With 00,usn1:$``['s_str'..][0x0..]}]-(`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]}).#usn7! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[usn1:`8esn`]-()Assert Exists(Allshortestpaths(((:usn1:_usn4{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]}))).`5esn`!)"), + octest_legacy:ct_string("Drop Constraint On()-[`8esn`:`2esn`]-()Assert Exists(Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 12 Starts With {_usn4} Starts With $#usn8).``?)"), + octest_legacy:ct_string("Create Constraint On()<-[`1esn`:`4esn`]-()Assert Exists([$`1esn`[..{_usn3}],1.e1 Starts With $`2esn` Starts With $0].@usn5?)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:`7esn`)Assert {`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}.`3esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:usn2)Assert Exists({`3esn`:.e12[$7..][{`6esn`}..]}.@usn5)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:usn1)Assert Exists(Filter(`6esn` In 00 Where 0.12 In 0X7).#usn7!)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:usn1)Assert Exists(Case ``[{#usn8}] When 1e1[{_usn4}..123.654] Then @usn6[$usn2..#usn7] When .e1[@usn5]['s_str'] Then {_usn3}[..$`8esn`] Else {``}[_usn4..$`1esn`] End.`2esn`!)"), + octest_legacy:ct_string("Drop Constraint On(usn1:`4esn`)Assert Exists(Reduce(#usn7={#usn8}[#usn7..{`2esn`}],`` In {`1esn`} Starts With @usn6|$@usn5 In $usn2 In {1000}).`7esn`!)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:#usn7)Assert (:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}})<-[@usn6?:`7esn`]->(`3esn` :_usn3{_usn3:{_usn3} Contains 9e0 Contains $999,`2esn`:{_usn3}[$usn2..]})._usn4? Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn2:`3esn`)Assert All(`1esn` In $12 Is Not Null Where $`1esn` Is Not Null Is Not Null).#usn8 Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`2esn`:_usn3]-()Assert Exists(`8esn`(Distinct).@usn6!)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`1esn`)Assert [usn1 In 12.e12 In {0} In 9e1 Where $0[`7esn`]|`5esn`[0xabc..]].`1esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[``:@usn5]->()Assert Exists(Case `4esn` Contains #usn8 Contains 7 When {#usn7} Contains @usn5 Contains Count ( * ) Then `4esn`[usn1] When $_usn4 Is Not Null Is Not Null Then $`2esn`[$usn2..][{``}..] Else $1000 =~{1000} =~`5esn` End.@usn6)"), + octest_legacy:ct_string("Drop Constraint On()-[`3esn`:@usn5]->()Assert Exists(Single(`3esn` In 123.654[1e1..][{#usn8}..] Where $7 Is Not Null).`8esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:usn2)Assert Exists(Filter(`` In {`1esn`} Starts With @usn6 Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]).`7esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`6esn`)Assert Exists((`` :`6esn`:`8esn`)-[`5esn`?:usn2|#usn7 *..01234567]-({usn1:1000 Is Null Is Null})<-[`6esn`?:_usn3|`8esn`]->(`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]})._usn4!)"), + octest_legacy:ct_string("Drop Constraint On()-[`2esn`:`1esn`]->()Assert Exists([_usn3 In {@usn5}[..#usn7] Where True Is Null Is Null|1.e1[0xabc..]]._usn3?)"), + octest_legacy:ct_string("Create Constraint On(_usn3:@usn5)Assert Exists(Shortestpath(((usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[#usn7? *999{usn2:{1000}[{``}][999]}]-({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`)))._usn4)"), + octest_legacy:ct_string("Drop Constraint On(usn1:`8esn`)Assert Exists(None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where `3esn`[..{_usn4}][..{@usn5}]).#usn8!)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:#usn8)Assert Exists(_usn4(Distinct {#usn7} Contains 0.0 Contains $0).#usn8!)"), + octest_legacy:ct_string("Create Constraint On(_usn4:_usn4)Assert Case 00 =~0.e0 =~$`8esn` When {`7esn`}[``..] Then Count(*)[.e12] End.`2esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn4:`5esn`)Assert Any(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where {`4esn`}[..{`4esn`}]).``? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:``)Assert Single(`3esn` In 123.654[1e1..][{#usn8}..] Where $`2esn`[12.e12][$@usn5]).`8esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`3esn`:`7esn`]-()Assert Exists(Filter(`1esn` In `3esn`[07..] Where 07 Is Null).@usn5!)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:@usn6)Assert Exists([`5esn` In $`2esn`[12.e12][$@usn5] Where 's_str' Starts With 12e12 Starts With $_usn4|`3esn`[$@usn5..@usn5][9e1..$``]].`5esn`?)"), + octest_legacy:ct_string("Create Constraint On()-[`8esn`:`3esn`]-()Assert Exists((`5esn` :_usn3)<-[`5esn`?{`2esn`:`3esn`[07..],_usn3:{``} Is Null Is Null}]->(usn2 :_usn3{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:`8esn`:@usn5).`6esn`?)"), + octest_legacy:ct_string("Create Constraint On()<-[usn2:`7esn`]-()Assert Exists((@usn5 :usn1:_usn4)<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]->(usn1 :`8esn`:@usn5{`1esn`:{#usn7} Contains 0.0 Contains $0,`2esn`:.e12[010..$123456789]})._usn4)"), + octest_legacy:ct_string("Create Constraint On(``:`5esn`)Assert Reduce(`5esn`=12.e12[2.12..][0xabc..],_usn4 In `2esn`|9e12 Ends With 123456789).`2esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(``:usn2)Assert Extract(_usn4 In `2esn` Where 0X0123456789ABCDEF[9e12]|07 =~$`8esn` =~9e1)._usn3! Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:`4esn`)Assert Exists(Reduce(``=True Is Not Null,@usn5 In Null =~12e12|True Starts With $`2esn` Starts With {@usn6}).`8esn`?)"), + octest_legacy:ct_string("Create Constraint On(``:`6esn`)Assert [{1000}[{usn1}][Null],$usn1[$123456789..0][{`1esn`}..12.0],$`2esn`[{``}..{1000}][#usn8..`2esn`]].#usn7? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`2esn`)Assert Single(`1esn` In 0.e0 =~`1esn` =~`6esn` Where 's_str' Starts With 12e12 Starts With $_usn4).#usn8? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(``:`6esn`)Assert Reduce(#usn8=$@usn6[$0..usn1][0X0123456789ABCDEF..$999],`1esn` In 0.e0 =~`1esn` =~`6esn`|999[12.0..][#usn7..]).`4esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[_usn4:`7esn`]-()Assert Exists(Case 123.654[$`1esn`..Null][1000..{_usn3}] When 9e12 Is Not Null Then {@usn6} Contains 123.654 Contains 01 When {12} =~0.e0 =~{_usn3} Then _usn4[Count(*)] Else $@usn6 Starts With $@usn5 End._usn3?)"), + octest_legacy:ct_string("Create Constraint On()<-[usn1:@usn5]-()Assert Exists(None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $`6esn`[{`3esn`}..12]).`4esn`!)"), + octest_legacy:ct_string("Drop Constraint On()<-[_usn4:#usn8]-()Assert Exists(Allshortestpaths((`4esn` {_usn4:12 Starts With {_usn4} Starts With $#usn8,_usn4:$@usn5[$`4esn`][$@usn6]})<-[? *0X7..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})).`3esn`?)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`6esn`)Assert [123.654[{@usn5}..123.654][1.0..$12],$@usn5[`6esn`..]].@usn6! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`7esn`)Assert Extract(`` In {`1esn`} Starts With @usn6 Where \"d_str\"[{`8esn`}..]|0X7[0.e0][{`4esn`}]).``! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn8:@usn5)Assert Exists({usn1:`2esn`[$1000..9e12][{#usn8}..{7}],_usn4:$usn1 In 0.12 In $``}.`2esn`)"), + octest_legacy:ct_string("Drop Constraint On(usn1:`7esn`)Assert [123.654 Contains $_usn3 Contains 0X0123456789ABCDEF,`6esn` Is Null Is Null,Count(*)[.e12]].`1esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn5:usn1)Assert Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $`7esn` Contains {`1esn`} Contains 9e12)._usn3! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[@usn5:`1esn`]-()Assert Exists(Reduce(_usn3=`2esn`[$1000..9e12][{#usn8}..{7}],`2esn` In {999} Is Not Null|{``} Ends With .e12 Ends With 0.e0).`6esn`)"), + octest_legacy:ct_string("Create Constraint On(usn2:usn2)Assert (@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`).usn1 Is Unique"), + octest_legacy:ct_string("Create Constraint On(`6esn`:usn2)Assert Exists(All(usn1 In 12.e12 In {0} In 9e1 Where False Starts With 010).`6esn`!)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:_usn4)Assert Case $usn2 Is Null Is Null When {usn2}[$`4esn`] Then $1000[..$999] Else {_usn3} Contains 9e0 Contains $999 End.`5esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[_usn3:usn1]-()Assert Exists(Extract(`1esn` In $12 Is Not Null Where {``}[010]|0x0[$`8esn`.._usn3]).`2esn`)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`5esn`)Assert Extract(_usn4 In 0.0[..{999}][..0.0])._usn4! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`5esn`)Assert Reduce(usn1={_usn4}[...e12][..0xabc],_usn3 In {`2esn`} Ends With {12} Ends With 7|{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]).usn1 Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:#usn7)Assert Extract(`` In {`1esn`} Starts With @usn6 Where $`7esn`[$``..][999..]|True Is Null Is Null).`7esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[@usn6:@usn6]-()Assert Exists({`1esn`:$`6esn`['s_str'..][{_usn4}..],@usn6:`3esn`[_usn4..{0}][`5esn`..usn2]}.usn2)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:_usn4)Assert Exists({`1esn`}.`6esn`?)"), + octest_legacy:ct_string("Create Constraint On()-[#usn7:`3esn`]-()Assert Exists(Single(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7]).usn1!)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`5esn`)Assert Exists(Reduce(usn1=1e1 Contains usn2,`8esn` In $12[{7}..0X0123456789ABCDEF]|#usn7 =~{`4esn`} =~123456789).usn1!)"), + octest_legacy:ct_string("Drop Constraint On()-[_usn3:`4esn`]->()Assert Exists(Extract(_usn4 In 0.0[..{999}][..0.0] Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`).@usn6?)"), + octest_legacy:ct_string("Create Constraint On()-[@usn5:usn1]->()Assert Exists(False.#usn7!)"), + octest_legacy:ct_string("Create Constraint On(``:_usn3)Assert Exists([_usn4 In `2esn` Where 0X0123456789ABCDEF[9e12]|$usn1 In 0.12 In $``]._usn3?)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`7esn`)Assert Reduce(_usn3={7}[$123456789..{1000}][$`3esn`..`7esn`],#usn7 In 0Xa[@usn5][{`7esn`}]|Count(*)[.e12..]).`1esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[``:`3esn`]->()Assert Exists((_usn3 {usn1:0Xa[0e0..{#usn7}],`1esn`:.e0[True..Count ( * )][#usn7..0X7]})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1}).`1esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[#usn8:_usn4]-()Assert Exists([`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12 Is Not Null Is Not Null].@usn6!)"), + octest_legacy:ct_string("Drop Constraint On()-[#usn8:`3esn`]-()Assert Exists(Extract(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 1.e1 =~9e12 =~`4esn`|9e1[9e1...e0]).usn1!)"), + octest_legacy:ct_string("Create Constraint On(usn1:_usn4)Assert {_usn4:@usn6[$_usn4]}._usn4 Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn5:usn1)Assert (:`4esn`:@usn6{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]})-[`2esn`:`2esn`{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})._usn4! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[_usn4:@usn6]->()Assert Exists([`2esn` In {999} Is Not Null Where $usn2 Ends With $`5esn`|#usn8 Is Not Null].`3esn`)"), + octest_legacy:ct_string("Create Constraint On(#usn8:`8esn`)Assert Exists(Reduce(`1esn`={@usn5}[..#usn7],`6esn` In 00|$`6esn`[{`3esn`}..12]).`4esn`!)"), + octest_legacy:ct_string("Create Constraint On()<-[usn1:`1esn`]-()Assert Exists(Extract(_usn3 In {@usn5}[..#usn7] Where $`4esn` Starts With 0e0|$_usn3[{999}]).#usn7!)"), + octest_legacy:ct_string("Create Constraint On(_usn3:_usn4)Assert ({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})<-[`4esn`?]->(usn1 {`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00}).`5esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`6esn`:usn2]-()Assert Exists((#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"})<-[`3esn`:`` *123456789..0X7{#usn8:12 Starts With $#usn7}]->(@usn5 {#usn7:$`7esn` In 12}).`4esn`)"), + octest_legacy:ct_string("Create Constraint On(usn2:_usn3)Assert Single(_usn3 In {@usn5}[..#usn7] Where Null Ends With 12 Ends With usn2)._usn3? Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn1:`4esn`)Assert Reduce(`4esn`=`3esn`[..{_usn4}][..{@usn5}],`2esn` In {999} Is Not Null|123456789 Starts With {@usn6} Starts With $12).usn1? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`2esn`:#usn8]->()Assert Exists(`6esn`({_usn4} Is Null).``!)"), + octest_legacy:ct_string("Create Constraint On()-[`8esn`:`6esn`]-()Assert Exists(Case $#usn7[123.654] When .e1[@usn5]['s_str'] Then @usn5[$12..\"d_str\"] Else 12.e12[``..usn2][{#usn7}..@usn5] End.usn1?)"), + octest_legacy:ct_string("Create Constraint On(_usn3:`8esn`)Assert [`3esn`[_usn4..{0}][`5esn`..usn2],0x0[{7}..],{#usn8}[#usn7..{`2esn`}]].`7esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn2:usn1)Assert #usn8(Distinct 9e1[$_usn4..0xabc],123.654 Ends With usn2 Ends With 0).usn1 Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`2esn`:usn1]-()Assert Exists(Case When 07 =~@usn5 Then 9e0[#usn8] Else {``} Ends With .e12 Ends With 0.e0 End.`6esn`!)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:@usn5)Assert {`6esn`}.``? Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn3:@usn5)Assert Exists(Reduce(#usn7={999} Ends With 123456789 Ends With {@usn5},@usn5 In Null =~12e12|{7}[$7..]).`2esn`)"), + octest_legacy:ct_string("Drop Constraint On()<-[`7esn`:`6esn`]-()Assert Exists(Case When $7 Ends With 0X7 Then $1000[..$999] Else $`2esn` In {123456789} End.@usn6!)"), + octest_legacy:ct_string("Create Constraint On()<-[#usn7:`1esn`]-()Assert Exists(Any(#usn7 In 123.654 Starts With $`` Where Count(*)[010..][#usn7..]).`6esn`?)"), + octest_legacy:ct_string("Create Constraint On(_usn4:`6esn`)Assert None(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`).usn2 Is Unique"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`6esn`)Assert Exists([`` In {`1esn`} Starts With @usn6 Where $`5esn`[`1esn`][0X0123456789ABCDEF]|False Starts With 010].`5esn`?)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`3esn`)Assert Exists(Allshortestpaths(((:`5esn`:@usn5{#usn8:123.654[$`1esn`..Null][1000..{_usn3}],`6esn`:12.0 =~$#usn7 =~9e12})<-[`3esn`:`` *123456789..0X7{#usn8:12 Starts With $#usn7}]->(:`1esn`{_usn4:{`6esn`} Ends With 0e0 Ends With {``}}))).#usn8)"), + octest_legacy:ct_string("Create Constraint On(``:`2esn`)Assert Exists((`3esn` :`1esn`)-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})-[`3esn`:`` *123456789..0X7{#usn8:12 Starts With $#usn7}]-(`8esn` :`7esn`).`3esn`)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`4esn`)Assert Exists([_usn4 In 0.0[..{999}][..0.0]|010 In `1esn`].`5esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`4esn`)Assert Reduce(#usn8=0.12 In 0X7,_usn3 In {@usn5}[..#usn7]|123.654 Ends With usn2 Ends With 0).`3esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn4:usn1)Assert {`6esn`:$#usn7[..@usn6][..$0]}.usn1? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`8esn`:`3esn`]->()Assert Exists(Reduce(_usn3=$`7esn`[$``..][999..],`` In {usn1} Ends With {`6esn`} Ends With 123456789|{`4esn`}[..{`4esn`}]).``?)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:usn2)Assert Exists([$`1esn`[$12][Count ( * )],9e1 Ends With $@usn5 Ends With $123456789].usn1)"), + octest_legacy:ct_string("Drop Constraint On(usn1:#usn8)Assert Exists(Shortestpath((({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`))).#usn7)"), + octest_legacy:ct_string("Drop Constraint On()-[`3esn`:_usn3]->()Assert Exists({_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]}.#usn7!)"), + octest_legacy:ct_string("Create Index On:#usn7(usn2)"), + octest_legacy:ct_string("Create Constraint On(_usn3:@usn5)Assert Exists(Shortestpath(((@usn6 :`4esn`:@usn6{#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[:#usn7|`2esn` *0x0..]-({`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}))).#usn7!)"), + octest_legacy:ct_string("Create Constraint On(usn2:#usn8)Assert None(#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 In 01234567 In .e1).`6esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`5esn`)Assert Exists(Single(`5esn` In $`2esn`[12.e12][$@usn5] Where 's_str'[.._usn4][..``]).#usn8)"), + octest_legacy:ct_string("Create Constraint On()<-[@usn5:@usn6]-()Assert Exists(None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[{999}..][{_usn4}..]).`2esn`?)"), + octest_legacy:ct_string("Drop Constraint On(``:`2esn`)Assert {`5esn`:$#usn7[..@usn6][..$0]}.usn2 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`5esn`)Assert Exists({``:$`2esn` In {123456789},_usn3:999 Ends With .e12 Ends With .e1}._usn3?)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:`7esn`)Assert All(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} Starts With 1.0 Starts With 00).`6esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[_usn3:`5esn`]-()Assert Exists([9e0 Starts With .e0 Starts With \"d_str\",`3esn`[..{_usn4}][..{@usn5}],1.e1 =~`2esn`]._usn4)"), + octest_legacy:ct_string("Create Constraint On()<-[`2esn`:`3esn`]-()Assert Exists([`5esn` In $`2esn`[12.e12][$@usn5] Where 1.e1[12e12..{`6esn`}]].`4esn`!)"), octest_legacy:ct_string("Drop Index On:`3esn`(`1esn`)"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:_usn4)Assert Reduce(_usn3={12}[..0X7],`` In 123456789 Ends With 12.e12 Ends With $`7esn`|`3esn`[..$12][..{`7esn`}]).`3esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On()<-[``:usn2]-()Assert Exists(Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where #usn8[..{#usn7}]|{`4esn`} =~9e0 =~{12}).#usn8?)"), - octest_legacy:ct_string("Create Constraint On(@usn6:`1esn`)Assert Exists([9e12[`1esn`..][$`1esn`..]]._usn4!)"), - octest_legacy:ct_string("Create Constraint On(_usn3:#usn8)Assert Exists(Reduce(@usn5='s_str' Ends With 7 Ends With {_usn4},`8esn` In 01[2.12..`8esn`]|{999}).#usn8!)"), - octest_legacy:ct_string("Create Constraint On()-[`5esn`:_usn3]-()Assert Exists([#usn8 In 7[..999][..{#usn8}] Where $@usn5 Is Not Null Is Not Null|07 In `2esn` In 12e12].usn1?)"), - octest_legacy:ct_string("Drop Constraint On()-[usn2:`1esn`]-()Assert Exists({@usn6:{1000} =~$@usn6 =~12}.@usn5?)"), - octest_legacy:ct_string("Create Constraint On(#usn8:`6esn`)Assert [`5esn` In \"d_str\" Is Null Is Null Where ``[$`2esn`]|9e1[2.12..{#usn8}]].@usn6! Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[#usn8:usn1]-()Assert Exists([@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 01[2.12..`8esn`]|Null[$`5esn`][False]].`5esn`)"), - octest_legacy:ct_string("Drop Constraint On()<-[`1esn`:`3esn`]-()Assert Exists(Any(`5esn` In $999[0.0..] Where 0x0 Ends With $12).`8esn`!)"), - octest_legacy:ct_string("Drop Constraint On(usn1:`1esn`)Assert Allshortestpaths((((_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})<-[`4esn`:@usn6|`6esn`{`4esn`:`2esn` Is Null,@usn5:00 Starts With 0xabc}]-({`5esn`:$#usn8 Ends With $`2esn` Ends With $@usn6})-[usn2?:_usn4|:usn2{``:`1esn` Contains {usn2} Contains $#usn8}]->(#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})))).`7esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(``:``)Assert [$@usn5 Is Not Null].@usn6! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:`3esn`)Assert Exists([`2esn` In `1esn` =~\"d_str\" Where usn2 Ends With 999 Ends With .e1|9e0[..999]].`4esn`)"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:#usn8)Assert Exists({usn2:7[..999][..{#usn8}]}.@usn6!)"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:usn1)Assert Reduce(`6esn`=`3esn`[{0}][usn1],`5esn` In $999[0.0..]|'s_str' Ends With 7 Ends With {_usn4})._usn3! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`6esn`:usn2)Assert `7esn`(123456789[#usn8..False]).``? Is Unique"), - octest_legacy:ct_string("Create Constraint On(`1esn`:#usn8)Assert Exists(Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01|7[True..][2.12..]).@usn5)"), - octest_legacy:ct_string("Drop Constraint On()-[_usn3:_usn4]-()Assert Exists(Filter(`2esn` In `1esn` =~\"d_str\" Where Count ( * ) =~$usn2 =~$usn2).`4esn`)"), - octest_legacy:ct_string("Drop Constraint On()<-[`2esn`:`7esn`]-()Assert Exists(Case When .e1 Ends With 1e1 Ends With @usn5 Then 01[{`2esn`}..{@usn6}][$`2esn`..0.0] End._usn3?)"), - octest_legacy:ct_string("Create Constraint On(#usn8:`3esn`)Assert Exists(Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {@usn6}[{999}..][00..]|`8esn`[{123456789}..]).usn2!)"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:#usn7)Assert Extract(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0]|010 =~{usn2}).@usn6 Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`3esn`:`7esn`]-()Assert Exists(Reduce(_usn3=12e12 Is Not Null Is Not Null,@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|`7esn` Starts With $#usn7 Starts With $`7esn`).`3esn`?)"), - octest_legacy:ct_string("Create Constraint On(@usn6:`3esn`)Assert Exists(`6esn`(_usn3 Ends With 7 Ends With `1esn`).`4esn`)"), - octest_legacy:ct_string("Drop Constraint On()-[`4esn`:`8esn`]->()Assert Exists([`2esn` In `1esn` =~\"d_str\" Where Count ( * ) =~$usn2 =~$usn2|9e1[2.12]].usn1?)"), - octest_legacy:ct_string("Create Constraint On()<-[#usn8:`3esn`]-()Assert Exists([{usn1}[0X0123456789ABCDEF],9e0].@usn5!)"), - octest_legacy:ct_string("Create Constraint On(`8esn`:usn1)Assert None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn1} Ends With $0).usn1 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:`8esn`)Assert Exists(Any(#usn7 In {``} Is Not Null Where 01234567 Is Null Is Null)._usn3)"), - octest_legacy:ct_string("Drop Constraint On()-[@usn6:`1esn`]-()Assert Exists(`6esn`(Distinct `` Ends With 123456789 Ends With 123.654,$_usn4 Ends With usn1 Ends With $0).usn1!)"), - octest_legacy:ct_string("Drop Constraint On(#usn7:#usn7)Assert Exists(Extract(`4esn` In $`3esn` Is Not Null Where usn2 Is Not Null Is Not Null|$0[12.e12..]).@usn5?)"), - octest_legacy:ct_string("Create Constraint On(`6esn`:`5esn`)Assert {``:.e1 Is Null Is Null}.#usn8! Is Unique"), - octest_legacy:ct_string("Drop Constraint On()<-[`6esn`:`7esn`]-()Assert Exists(Single(_usn3 In {`3esn`}[`2esn`] Where 1e1 In 123.654 In `3esn`)._usn4?)"), - octest_legacy:ct_string("Create Constraint On(`1esn`:`1esn`)Assert Exists([`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $123456789 Is Null Is Null|{`6esn`}[..$@usn6][..`7esn`]]._usn4)"), - octest_legacy:ct_string("Drop Constraint On()-[``:#usn8]-()Assert Exists([{0}[12.0..0Xa][$`5esn`..{_usn3}],123.654 Is Not Null Is Not Null].`6esn`)"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:usn1)Assert Case $usn1 =~`` When 07 Contains 0X7 Contains $`8esn` Then 123456789[{123456789}..'s_str'] When $_usn3[Count(*)] Then $`5esn` In $`` In 123.654 End.`6esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:_usn4)Assert Exists((:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 $999).`3esn`!)"), - octest_legacy:ct_string("Create Constraint On(@usn6:`1esn`)Assert Shortestpath(({_usn4:00 Starts With 0xabc})<-[`4esn`?:`2esn`{`4esn`:#usn7 Contains _usn3 Contains {`3esn`}}]-({`3esn`:.e1[..usn2][..`8esn`]})).`7esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:_usn4)Assert Exists(`8esn`(1.e1[$`1esn`..@usn6][$0..$_usn3])._usn4?)"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:`5esn`)Assert Exists(Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``]).`5esn`?)"), - octest_legacy:ct_string("Drop Constraint On(``:`1esn`)Assert Exists(Reduce(`7esn`=2.12 Contains usn2 Contains True,`` In 123456789 Ends With 12.e12 Ends With $`7esn`|`5esn` Starts With 010 Starts With 0.0).`2esn`?)"), - octest_legacy:ct_string("Create Constraint On(``:`1esn`)Assert Case `3esn`[..$12][..{`7esn`}] When {`4esn`} Starts With $usn2 Starts With $1000 Then {``} Is Not Null End.`4esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[@usn6:`7esn`]->()Assert Exists(`7esn`(@usn6 Contains Null Contains $`7esn`,Null[$#usn7]).`5esn`)"), - octest_legacy:ct_string("Drop Constraint On(usn2:`7esn`)Assert Exists([@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where `7esn`[9e0..]].`3esn`)"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:`5esn`)Assert Exists(Allshortestpaths((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})).@usn5!)"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:#usn7)Assert Exists(None(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where {`3esn`} Is Not Null Is Not Null)._usn4!)"), - octest_legacy:ct_string("Create Constraint On(`7esn`:`3esn`)Assert Allshortestpaths((((`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})-[`6esn`?:`4esn` *..01]->({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})<-[`5esn`?:`4esn`]-(_usn4 :usn1)))).``! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`4esn`:usn1)Assert Exists(Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0X0123456789ABCDEF =~1e1 =~{`4esn`}|Null[{#usn7}..][0X0123456789ABCDEF..]).`1esn`)"), - octest_legacy:ct_string("Drop Constraint On(_usn3:#usn8)Assert Exists(Case When Count ( * ) Ends With $@usn5 Then _usn4 Contains 2.12 Else False =~$7 =~2.12 End.usn2)"), - octest_legacy:ct_string("Drop Constraint On()<-[`1esn`:`4esn`]-()Assert Exists(Single(`` In `` Is Not Null Is Not Null Where 0e0 Starts With 1000 Starts With #usn7).``!)"), - octest_legacy:ct_string("Drop Constraint On()-[@usn5:`5esn`]-()Assert Exists(All(`` In `` Is Not Null Is Not Null Where Count(*)[..usn2][..usn2])._usn3)"), - octest_legacy:ct_string("Create Constraint On(@usn6:#usn7)Assert {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}}.#usn7 Is Unique"), - octest_legacy:ct_string("Create Constraint On(#usn7:`5esn`)Assert Exists([@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where `1esn`[{usn1}..``][7..$#usn8]]._usn3)"), - octest_legacy:ct_string("Drop Constraint On(_usn3:@usn5)Assert (_usn3 :#usn7)-[`6esn`?:`3esn`|:#usn8{usn1:$usn1 In {999} In $#usn7}]-(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12}).`8esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`8esn`:`4esn`]-()Assert Exists(Any(`2esn` In `1esn` =~\"d_str\" Where $`1esn`[1.0..][_usn3..]).`4esn`!)"), - octest_legacy:ct_string("Create Constraint On()-[`4esn`:`4esn`]->()Assert Exists(``(Distinct $_usn4[Count ( * )..],$@usn5[..12e12][..$123456789]).`4esn`?)"), - octest_legacy:ct_string("Create Constraint On(#usn8:`6esn`)Assert Exists(Extract(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null).usn2)"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:`2esn`)Assert Exists(Shortestpath((`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(`6esn` :_usn3:_usn3{`4esn`:0Xa Starts With {`6esn`} Starts With $usn1})-[#usn8?:`7esn`$1000]->(_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})).`6esn`)"), - octest_legacy:ct_string("Create Constraint On()-[`2esn`:`5esn`]-()Assert Exists([`2esn` In `1esn` =~\"d_str\" Where {``} Ends With `7esn` Ends With 0.0|{`6esn`} Contains \"d_str\"].#usn7?)"), - octest_legacy:ct_string("Create Constraint On()<-[`5esn`:``]-()Assert Exists({_usn4:$_usn4[1.e1]['s_str']}.`7esn`!)"), - octest_legacy:ct_string("Drop Constraint On(``:`7esn`)Assert Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {`3esn`}[`2esn`]|2.12 Contains usn2 Contains True).`1esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`4esn`:``)Assert Allshortestpaths(((:``:#usn8{`2esn`:`3esn`[{0}][usn1],``:usn1 Is Null Is Null})<-[{#usn7:123456789 Is Null}]-(:`6esn`{#usn7:$@usn5 Contains 0xabc Contains {#usn7},`1esn`:0xabc[.e0]}))).@usn6! Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[@usn6:_usn3]-()Assert Exists(Case When {@usn5}[{#usn8}][9e0] Then {7} In `2esn` When 1000 In {`8esn`} In 01 Then `2esn` Starts With $_usn4 End.usn1!)"), - octest_legacy:ct_string("Create Index On:`4esn`(`5esn`)"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:`4esn`)Assert Extract(`` In `` Is Not Null Is Not Null Where {`8esn`} Ends With `6esn`|0e0 In @usn5).usn1? Is Unique"), - octest_legacy:ct_string("Create Constraint On(`3esn`:#usn7)Assert Exists(Case {#usn8} Is Null When .e1 =~$`8esn` Then \"d_str\"[..{@usn5}][..``] When {_usn3}[12.e12] Then 7 Ends With $`4esn` Else $123456789 Starts With 9e0 Starts With 's_str' End._usn4?)"), - octest_legacy:ct_string("Create Constraint On(`2esn`:usn1)Assert Exists(`8esn`(Distinct $1000[`2esn`..`5esn`][1e1..1.e1],0X0123456789ABCDEF Ends With $`8esn` Ends With 0.12).`4esn`)"), - octest_legacy:ct_string("Create Constraint On(`8esn`:_usn3)Assert `6esn`(`4esn`[``],True[{`7esn`}..]).usn1? Is Unique"), - octest_legacy:ct_string("Create Constraint On(`3esn`:``)Assert Any(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01).@usn5 Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[#usn7:`5esn`]->()Assert Exists((_usn3 {`5esn`:12.e12[0xabc],`2esn`:{`7esn`}[..$@usn5][..$#usn8]})<-[`1esn`?:`4esn`]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`}).`1esn`?)"), - octest_legacy:ct_string("Create Constraint On(#usn8:`4esn`)Assert Exists(Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 1.0[0X7][{`5esn`}]).`8esn`)"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:`3esn`)Assert All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where `2esn`[..$#usn8][..Count(*)]).``! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:`7esn`)Assert All(`8esn` In 01[2.12..`8esn`] Where {usn2}).``? Is Unique"), - octest_legacy:ct_string("Create Constraint On(_usn4:`4esn`)Assert Exists([`3esn`[..$12][..{`7esn`}],9e12[{123456789}..#usn8][{_usn3}..{#usn7}],{`2esn`} Ends With {`7esn`}].@usn6)"), - octest_legacy:ct_string("Drop Constraint On()-[usn1:`6esn`]->()Assert Exists(Extract(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\").`4esn`?)"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:@usn6)Assert Exists(Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$#usn7 Contains 0x0 Contains 1000).`4esn`?)"), - octest_legacy:ct_string("Create Constraint On()<-[`2esn`:`6esn`]-()Assert Exists(Reduce(#usn7=0Xa[2.12],`5esn` In \"d_str\" Is Null Is Null|$@usn6 Ends With $_usn4 Ends With 0.12).``)"), - octest_legacy:ct_string("Drop Constraint On()<-[``:@usn6]-()Assert Exists(Reduce(_usn4=0X7[{@usn6}],`` In `` Is Not Null Is Not Null|{123456789} Contains $#usn8).`1esn`?)"), - octest_legacy:ct_string("Drop Constraint On()-[usn2:`6esn`]-()Assert Exists(Extract(`2esn` In `1esn` =~\"d_str\" Where usn2[9e12]|$usn1[{`5esn`}][$`6esn`]).`6esn`!)"), - octest_legacy:ct_string("Create Constraint On(``:`8esn`)Assert Case When Null Ends With `2esn` Ends With $usn1 Then $usn2[{@usn5}] End._usn3 Is Unique"), - octest_legacy:ct_string("Create Constraint On(`3esn`:`3esn`)Assert Exists({`4esn`:07 In `2esn` In 12e12,`5esn`:$12 Ends With 07 Ends With $123456789}.`5esn`!)"), - octest_legacy:ct_string("Create Constraint On(usn1:``)Assert Exists(Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..]|7[$`8esn`..123456789][$usn1..$usn1]).`1esn`!)"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:``)Assert Case When $`` Is Not Null Then 12[1.e1..{_usn3}][1.e1..1.0] When 7[True..][2.12..] Then $_usn4 Is Not Null Is Not Null End.@usn5? Is Unique"), - octest_legacy:ct_string("Drop Index On:_usn4(`6esn`)"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:`7esn`)Assert `1esn`(Distinct 01[{@usn5}]).@usn6 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(_usn3:@usn5)Assert Exists(Shortestpath(((`7esn` {#usn7:\"d_str\" Contains {123456789} Contains 01,@usn5:$1000 In $1000 In $`3esn`})<-[?{`3esn`:7[{0}..{_usn4}]}]-(@usn6 :`4esn`)<-[`5esn`?:`5esn` *1000..00]->(#usn7 :`3esn`:@usn5))).usn2)"), - octest_legacy:ct_string("Create Constraint On(#usn7:usn2)Assert Exists(Shortestpath((:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[@usn6:_usn4|:usn2]->(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})-[`3esn`?:@usn5]->(usn1 {`8esn`:False Is Null Is Null}))._usn4)"), - octest_legacy:ct_string("Drop Constraint On(@usn5:_usn4)Assert Exists(Filter(_usn3 In {`3esn`}[`2esn`] Where _usn3 Contains $123456789 Contains ``)._usn4!)"), - octest_legacy:ct_string("Drop Constraint On()-[`7esn`:``]-()Assert Exists(@usn5($`3esn` In $_usn4 In {_usn3},{123456789} =~`8esn` =~@usn5).`7esn`!)"), - octest_legacy:ct_string("Create Constraint On(`1esn`:`8esn`)Assert Exists([@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where 1.0 Contains $_usn4].#usn7?)"), - octest_legacy:ct_string("Create Constraint On(``:`8esn`)Assert Exists([#usn7 In `2esn`[..$#usn8][..Count(*)] Where 9e1[2.12..{#usn8}]|0x0[{`7esn`}..][$usn2..]].#usn8!)"), - octest_legacy:ct_string("Drop Constraint On()<-[`3esn`:`6esn`]-()Assert Exists(None(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`2esn`} Ends With {`7esn`})._usn3)"), - octest_legacy:ct_string("Drop Constraint On()-[`2esn`:@usn6]->()Assert Exists(Case 1.0[0e0..0.e0] When {`7esn`}[`6esn`][#usn7] Then {999} Starts With {0} End._usn3?)"), - octest_legacy:ct_string("Drop Constraint On(_usn3:`3esn`)Assert Exists(Case When $#usn7[@usn5..{1000}][1.e1..7] Then $`8esn`[..00] End._usn4?)"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:_usn4)Assert Allshortestpaths((#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})).`6esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[#usn7:usn2]->()Assert Exists({`3esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4]}.usn1)"), - octest_legacy:ct_string("Create Constraint On()-[`6esn`:@usn5]-()Assert Exists(Case When `2esn`[..$#usn8][..Count(*)] Then False =~1e1 =~0.e0 When {`4esn`} Starts With $usn2 Starts With $1000 Then {``} Is Not Null End.#usn7?)"), - octest_legacy:ct_string("Create Constraint On(`6esn`:`8esn`)Assert Exists(Allshortestpaths((`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})).@usn5!)"), - octest_legacy:ct_string("Drop Constraint On(usn2:_usn3)Assert Exists([`2esn` In `1esn` =~\"d_str\" Where Count ( * ) =~$usn2 =~$usn2|9e1[2.12]].`7esn`!)"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:`7esn`)Assert None(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`4esn`} Starts With $usn2 Starts With $1000)._usn3 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(usn2:`2esn`)Assert Single(#usn7 In {``} Is Not Null Where 0.12 In _usn3 In {0}).`3esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:`3esn`)Assert Case {@usn6}[$`6esn`..`4esn`] When {`5esn`}[.e1..``] Then $_usn4[1.e1]['s_str'] Else $`4esn` In Null In 0xabc End.`7esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn5:_usn4)Assert Exists([`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where $`6esn`[12]].usn1!)"), - octest_legacy:ct_string("Create Constraint On(`4esn`:`7esn`)Assert Exists(Shortestpath(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})-[`6esn`:`2esn`{`5esn`:00 Starts With 0xabc,`6esn`:0Xa =~Null =~$``}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null}))).`5esn`)"), - octest_legacy:ct_string("Drop Constraint On()-[usn1:usn2]-()Assert Exists((#usn7 :``:#usn8{`2esn`})-[`2esn`?{_usn3:$_usn4[Count ( * )..],#usn7:{`3esn`}[..07][..{`5esn`}]}]-({_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}).@usn5)"), - octest_legacy:ct_string("Create Constraint On(usn1:`6esn`)Assert Exists((#usn8 :usn1)-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]->(:`4esn`{``:2.12 Is Not Null Is Not Null}).`7esn`?)"), - octest_legacy:ct_string("Create Constraint On()<-[usn1:usn2]-()Assert Exists(Shortestpath(((({`4esn`:`7esn` Is Null})<-[`4esn`? *..12{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7}]->({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)))).`6esn`?)"), - octest_legacy:ct_string("Drop Constraint On(usn2:``)Assert Exists(Reduce(`7esn`=0.e0 Contains 9e1 Contains {`7esn`},`4esn` In $`3esn` Is Not Null|$@usn6 Contains 07).`4esn`!)"), - octest_legacy:ct_string("Drop Constraint On(_usn3:`6esn`)Assert Exists(`6esn`(Distinct `5esn`[7][{usn2}],.e12[@usn5..$12]).usn1!)"), - octest_legacy:ct_string("Drop Constraint On()-[_usn4:`7esn`]->()Assert Exists([01[{@usn5}],0X0123456789ABCDEF[{_usn4}..00]].#usn7?)"), - octest_legacy:ct_string("Create Constraint On(`7esn`:`7esn`)Assert [00[`2esn`..12][123456789..0.e0],$`6esn`[12]].#usn8 Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[#usn8:`5esn`]->()Assert Exists(Case $_usn4 Is Not Null Is Not Null When #usn7 Is Not Null Is Not Null Then Count ( * ) =~$usn2 =~$usn2 When 12.0 Then 0e0 Starts With 1000 Starts With #usn7 End._usn3?)"), - octest_legacy:ct_string("Drop Constraint On(_usn3:`2esn`)Assert Exists((#usn7 {_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})<-[?{usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null}]-(@usn5 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`}).`6esn`)"), - octest_legacy:ct_string("Create Constraint On(``:@usn6)Assert [$@usn5 Is Not Null Is Not Null,$123456789 Ends With `3esn` Ends With 123456789,$#usn8[9e12..][.e1..]].`1esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(_usn4:`7esn`)Assert Any(#usn8 In {`5esn`}[.e1..``] Where 0X7[..2.12]).``? Is Unique"), - octest_legacy:ct_string("Create Constraint On(`7esn`:``)Assert Extract(`3esn` In {7} Is Null Where 0.e0[123.654][01]|12e12 Is Not Null Is Not Null).#usn7 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(usn2:`2esn`)Assert Case When {usn1} In 2.12 In 1000 Then `5esn` Ends With {``} Ends With 12.e12 When .e12 Is Not Null Is Not Null Then _usn4 Is Null Is Null End.`7esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`7esn`:`2esn`]->()Assert Exists([#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0xabc[.e0]].`2esn`!)"), - octest_legacy:ct_string("Create Constraint On()-[usn1:`2esn`]-()Assert Exists({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}.`7esn`)"), - octest_legacy:ct_string("Drop Constraint On(@usn6:`4esn`)Assert Exists(({_usn3:$`5esn`[`3esn`..]})<-[_usn4 *..01]->(_usn3 :_usn4{`2esn`:{#usn8}[010],_usn3:123.654 =~$usn2 =~{999}})-[#usn8]-(`6esn` :#usn7).#usn8?)"), - octest_legacy:ct_string("Drop Constraint On(#usn8:`4esn`)Assert Exists(None(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 01 =~{_usn3} =~`3esn`).usn1!)"), - octest_legacy:ct_string("Create Constraint On(`5esn`:`2esn`)Assert Exists((:usn1{usn1:{`6esn`}})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(@usn6 :`1esn`)<-[`6esn`]-(`1esn` {@usn5:1.0[0e0..0.e0]}).`7esn`!)"), - octest_legacy:ct_string("Drop Constraint On(``:@usn5)Assert Exists({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}.`5esn`!)"), - octest_legacy:ct_string("Drop Constraint On(#usn7:#usn7)Assert Exists(#usn8(Distinct $#usn7[@usn5..{1000}][1.e1..7]).#usn7?)"), - octest_legacy:ct_string("Create Constraint On(`7esn`:`3esn`)Assert Exists({_usn4:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],`4esn`:{0} In _usn4}.`4esn`!)"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:`3esn`)Assert Exists({`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}.`3esn`)"), - octest_legacy:ct_string("Create Constraint On(@usn5:`1esn`)Assert Exists(Reduce(`3esn`=00[{`8esn`}..][{`8esn`}..],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|Count ( * ) Contains {`1esn`} Contains 07)._usn4)"), - octest_legacy:ct_string("Drop Constraint On(_usn3:`1esn`)Assert `7esn`(Distinct `1esn` Ends With {_usn3} Ends With `2esn`).`8esn` Is Unique"), - octest_legacy:ct_string("Create Index On:@usn5(usn2)"), - octest_legacy:ct_string("Create Constraint On(`5esn`:usn1)Assert Exists(Single(`` In `` Is Not Null Is Not Null Where 12.0 Ends With True).@usn5?)"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`7esn`)Assert Reduce(`1esn`=True =~010,`8esn` In 01[2.12..`8esn`]|{_usn3}[..\"d_str\"][..`5esn`])._usn4 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`4esn`)Assert Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`).@usn6! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(usn1:`8esn`)Assert Case 0X7[{@usn6}] When `4esn`[..010][..{12}] Then $_usn3[{#usn7}] End.@usn5? Is Unique"), - octest_legacy:ct_string("Create Constraint On(`6esn`:``)Assert Exists(Case $`7esn` =~{`8esn`} =~$usn1 When 0e0 =~`6esn` =~123456789 Then 01234567[usn2..$12][{`7esn`}..$usn2] When {0}[01][`7esn`] Then \"d_str\"[..{@usn5}][..``] Else Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6} End._usn3!)"), - octest_legacy:ct_string("Create Constraint On(`3esn`:_usn3)Assert Exists(Case When #usn7[usn1][$`5esn`] Then {1000} Is Null Is Null End._usn3?)"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:`6esn`)Assert [01 Ends With 999 Ends With {`7esn`},999 Is Not Null Is Not Null].`4esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(#usn8:`6esn`)Assert [@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`]|$123456789 Starts With 9e0 Starts With 's_str'].`1esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(_usn3:usn1)Assert Exists(Case When `3esn`[`3esn`..][#usn8..] Then {`7esn`}[`6esn`][#usn7] End.#usn8?)"), - octest_legacy:ct_string("Drop Constraint On(usn1:#usn8)Assert Reduce(usn2=0.e0 In $#usn7 In $_usn3,`3esn` In {7} Is Null|{12} Is Null Is Null).@usn6! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(usn1:usn1)Assert Single(#usn7 In {``} Is Not Null).`5esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:@usn6)Assert All(#usn8 In 7[..999][..{#usn8}] Where $_usn4[1.e1]['s_str']).`3esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(``:`7esn`)Assert Exists(Filter(_usn3 In {`3esn`}[`2esn`] Where False =~$7 =~2.12).`1esn`?)"), - octest_legacy:ct_string("Create Constraint On(#usn8:@usn5)Assert Any(#usn8 In 7[..999][..{#usn8}] Where Null[$#usn7]).`7esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(_usn4:usn1)Assert Exists(Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {usn1} In 2.12 In 1000).@usn5!)"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:`2esn`)Assert Exists(Reduce(`7esn`=0.e0[123.654][01],`5esn` In $999[0.0..]|`8esn` Ends With 999 Ends With .e12).usn2?)"), - octest_legacy:ct_string("Drop Constraint On()-[`7esn`:@usn5]-()Assert Exists(All(#usn7 In {``} Is Not Null Where 0x0 Is Null).@usn5?)"), - octest_legacy:ct_string("Create Constraint On(`7esn`:_usn3)Assert (:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}}).`2esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:`8esn`)Assert Exists(Allshortestpaths((`2esn` :`8esn`:`7esn`)-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})).`8esn`?)"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:`2esn`)Assert Exists(Allshortestpaths(((_usn4 {usn1:True Contains {0} Contains 7}))).#usn7)"), - octest_legacy:ct_string("Create Constraint On()<-[_usn3:`1esn`]-()Assert Exists([2.12 Contains `1esn`].`2esn`?)"), - octest_legacy:ct_string("Create Constraint On()<-[`4esn`:`1esn`]-()Assert Exists({_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}.`5esn`!)"), - octest_legacy:ct_string("Drop Constraint On(usn2:`7esn`)Assert {``:00 Starts With 0xabc,`3esn`:$`1esn` Ends With 9e1 Ends With $123456789}.`3esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[_usn4:usn1]->()Assert Exists(_usn4({999} Is Null Is Null).`2esn`?)"), - octest_legacy:ct_string("Create Constraint On()<-[`5esn`:`4esn`]-()Assert Exists([{#usn7}[9e1..][{123456789}..]].usn1!)"), - octest_legacy:ct_string("Create Constraint On(usn2:`6esn`)Assert usn2(Distinct 0e0 =~`6esn` =~123456789).@usn5! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(_usn4:`1esn`)Assert Exists(Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|0.e0[123.654][01]).`3esn`)"), - octest_legacy:ct_string("Create Constraint On(#usn8:@usn5)Assert [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0 In `2esn` In 010].`6esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(_usn3:`8esn`)Assert None(`` In `` Is Not Null Is Not Null Where 1000 In {`8esn`} In 01).`6esn`? Is Unique"), - octest_legacy:ct_string("Create Constraint On(#usn7:_usn3)Assert Exists(Reduce(`6esn`=1.0 Contains $_usn4,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{12} =~#usn8).``?)"), - octest_legacy:ct_string("Drop Constraint On(``:usn2)Assert #usn8(9e1 Is Not Null,`3esn`[{0}][usn1]).@usn6! Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn5:usn2)Assert {`1esn`:$0[..9e1]}.usn2! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:``)Assert Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where .e12[@usn5..#usn7][010..{usn1}]).usn1 Is Unique"), - octest_legacy:ct_string("Create Constraint On(`6esn`:`8esn`)Assert Exists([$_usn3[.e0..$usn2],True[00][0Xa]].usn1!)"), - octest_legacy:ct_string("Drop Constraint On(#usn8:_usn4)Assert None(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $12[True..][{0}..]).usn1! Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[usn2:usn2]->()Assert Exists(Case $`7esn` =~{`8esn`} =~$usn1 When 0e0 Starts With 1000 Starts With #usn7 Then 0.0 In $usn1 End.`7esn`?)"), - octest_legacy:ct_string("Create Constraint On(`4esn`:usn1)Assert All(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {_usn4} In {12} In $0).#usn8! Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[``:`4esn`]-()Assert Exists([`3esn`[`3esn`..][#usn8..],1.0 Contains $_usn4].usn2!)"), - octest_legacy:ct_string("Drop Constraint On()-[usn2:`5esn`]-()Assert Exists((#usn7 :``:#usn8{`2esn`})-[`2esn`?{_usn3:$_usn4[Count ( * )..],#usn7:{`3esn`}[..07][..{`5esn`}]}]-({_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}).@usn6!)"), - octest_legacy:ct_string("Create Constraint On()<-[_usn4:``]-()Assert Exists(Any(`3esn` In {7} Is Null Where Count ( * ) Ends With 12.0).`2esn`?)"), - octest_legacy:ct_string("Drop Constraint On(_usn3:``)Assert Exists(Extract(#usn7 In {``} Is Not Null Where True =~010).`6esn`)"), - octest_legacy:ct_string("Create Constraint On(`5esn`:`2esn`)Assert [#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`4esn`} Starts With $usn2 Starts With $1000|{0} Ends With $_usn3 Ends With $`7esn`].#usn8! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:`7esn`)Assert Allshortestpaths(((:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->(:usn1{`3esn`:{123456789} Is Null Is Null}))).#usn8 Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[usn1:#usn7]->()Assert Exists([#usn8 In {`5esn`}[.e1..``] Where 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4]].@usn5?)"), - octest_legacy:ct_string("Create Constraint On()-[#usn8:`8esn`]-()Assert Exists(Filter(#usn8 In {`5esn`}[.e1..``]).usn1?)"), - octest_legacy:ct_string("Drop Constraint On(@usn6:#usn7)Assert Any(`5esn` In \"d_str\" Is Null Is Null Where `4esn` Is Not Null Is Not Null).`4esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[#usn7:`6esn`]->()Assert Exists(Allshortestpaths(({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})<-[usn2?:@usn5{`4esn`:{`7esn`} Is Null,_usn4:$123456789 Ends With {`1esn`} Ends With $`4esn`}]->(`6esn` {`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null})-[usn1? *0X0123456789ABCDEF]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})).`6esn`!)"), - octest_legacy:ct_string("Drop Constraint On()-[``:@usn5]->()Assert Exists((@usn5 :`4esn`)<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})<-[`2esn`?:`7esn`]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})._usn3!)"), - octest_legacy:ct_string("Drop Constraint On(``:`7esn`)Assert Exists(({``:00 Starts With 0xabc,`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})._usn3?)"), - octest_legacy:ct_string("Create Constraint On(@usn6:#usn8)Assert Exists({`4esn`:`2esn` Is Null,@usn5:00 Starts With 0xabc}.`6esn`)"), - octest_legacy:ct_string("Drop Constraint On(#usn7:@usn5)Assert Exists(Case True[{`7esn`}..] When .e1 Is Null Is Null Then `3esn`[..$12][..{`7esn`}] When {_usn3}[..$12][..0.12] Then $7[0.12][usn1] End.`5esn`)"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:``)Assert [`2esn` In `1esn` =~\"d_str\" Where 0.12 In _usn3 In {0}].`4esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(`2esn`:#usn7)Assert Exists(Extract(#usn8 In {`5esn`}[.e1..``]|12e12 Ends With {usn1}).`3esn`?)"), - octest_legacy:ct_string("Create Constraint On(#usn8:`8esn`)Assert Any(`3esn` In {7} Is Null Where 1e1 Contains Count ( * )).`4esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On()<-[``:usn1]-()Assert Exists(123456789.`1esn`?)"), - octest_legacy:ct_string("Create Constraint On(`6esn`:@usn5)Assert {`3esn`:12.0 Contains #usn7}.@usn5! Is Unique"), - octest_legacy:ct_string("Create Constraint On(usn1:@usn5)Assert Reduce(`5esn`=2.12 Contains usn2 Contains True,#usn7 In {``} Is Not Null|@usn5 =~{`5esn`} =~`5esn`).`4esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(``:usn1)Assert Exists(Filter(`5esn` In $999[0.0..] Where {`5esn`} Contains $0 Contains {``}).`1esn`!)"), - octest_legacy:ct_string("Drop Constraint On()-[_usn3:usn2]-()Assert Exists(Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 123.654[$`1esn`]).#usn7?)"). + octest_legacy:ct_string("Drop Constraint On(`4esn`:`5esn`)Assert Exists({@usn6:12.e12[$`8esn`..{`8esn`}],#usn8:#usn7 =~00}.@usn6?)"), + octest_legacy:ct_string("Create Constraint On()-[#usn8:#usn8]-()Assert Exists(Any(#usn7 In 123.654 Starts With $`` Where 12 Is Not Null)._usn4)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:_usn3)Assert None(#usn7 In 123.654 Starts With $`` Where $999 In 999).`2esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn6:usn1)Assert Case False Contains $#usn8 Contains 9e1 When Count(*) In {``} Then {`8esn`}[..$`6esn`][..123.654] When {`2esn`} In 0Xa In {_usn3} Then 12 Starts With 7 Starts With $`5esn` End.`6esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:#usn8)Assert Reduce(``=`7esn`[0..$usn2][{usn2}..0.e0],_usn3 In {@usn5}[..#usn7]|$999 In 999).`7esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:#usn7)Assert (@usn5 :@usn5)<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]->(:`5esn`:@usn5{``:.e12 =~$_usn4}).usn2? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`1esn`)Assert Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where 123.654[{@usn5}..123.654][1.0..$12]|12.e12[$`8esn`..{`8esn`}])._usn3? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn8:usn2)Assert Extract(usn1 In 12.e12 In {0} In 9e1 Where {`5esn`} Contains 's_str' Contains 9e1).`6esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn1:`3esn`)Assert Exists(Case When `8esn` Contains 1e1 Then 12.e12 In $0 In $0 Else $0[$1000..00][{0}..{usn1}] End.#usn7?)"), + octest_legacy:ct_string("Drop Constraint On()-[usn2:`8esn`]->()Assert Exists([`6esn` In 00 Where 0.12 In 0X7].#usn7)"), + octest_legacy:ct_string("Drop Constraint On()-[`6esn`:_usn3]-()Assert Exists({``:.e12[\"d_str\"..][.e1..]}.`2esn`)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:_usn3)Assert `3esn`(Distinct .e12[$7..][{`6esn`}..]).`1esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`6esn`:usn2]-()Assert Exists(Filter(`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]).`2esn`!)"), + octest_legacy:ct_string("Drop Constraint On(``:@usn6)Assert Exists([{usn2},0e0 Contains `3esn` Contains `7esn`].usn1?)"), + octest_legacy:ct_string("Create Constraint On()-[`3esn`:`1esn`]->()Assert Exists({`5esn`:9e12 =~123456789 =~$999,@usn5:$0 In _usn4}.``!)"), + octest_legacy:ct_string("Create Constraint On(@usn6:_usn3)Assert Exists(Reduce(`6esn`={#usn7} Contains 0.0 Contains $0,`1esn` In `3esn`[07..]|0X7[0.e0][{`4esn`}]).@usn6)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`2esn`)Assert Exists(Case {`2esn`} Is Not Null Is Not Null When 0.e0 Contains #usn7 Then $``[.e12..] When $`1esn`[07] Then {`8esn`}[0X7][$`3esn`] End.@usn6?)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:``)Assert Shortestpath((`1esn` {@usn5:$usn1 In 0.12 In $``}))._usn3! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[``:usn2]->()Assert Exists(exists(Distinct {@usn6} Is Not Null,{`2esn`} Starts With @usn6)._usn3?)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`2esn`)Assert Reduce(`6esn`={#usn8}[#usn7..{`2esn`}],`8esn` In $12[{7}..0X0123456789ABCDEF]|$`2esn`[123.654][1e1]).#usn8! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[#usn8:@usn5]->()Assert Exists(exists(Distinct 12.e12 In $0 In $0).`6esn`?)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`1esn`)Assert Exists(({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]})<-[?:#usn7|`2esn`{@usn5:$0 Is Not Null}]-(:#usn7{usn2:{`8esn`}[0X7][$`3esn`]}).#usn8?)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:_usn4)Assert Exists(Any(#usn7 In 123.654 Starts With $`` Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF).usn2)"), + octest_legacy:ct_string("Drop Constraint On()-[`8esn`:#usn7]-()Assert Exists(Reduce(`4esn`=@usn5[12.0][{1000}],_usn4 In `2esn`|0[$`6esn`...e1][`1esn`..$`7esn`]).usn2)"), + octest_legacy:ct_string("Create Constraint On(_usn4:#usn7)Assert [`1esn` In $12 Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]|{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`].#usn7? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[@usn5:usn1]->()Assert Exists([9e0 In usn1,{@usn6}[0Xa..$@usn6][0..`5esn`]].`8esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[`8esn`:`1esn`]-()Assert Exists(Single(`1esn` In $12 Is Not Null Where {usn1} In Count ( * )).`1esn`)"), + octest_legacy:ct_string("Create Constraint On(_usn3:usn1)Assert Exists(Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where usn2[`7esn`..{`3esn`}][$7..{#usn7}]|01234567[..9e1]).`2esn`!)"), + octest_legacy:ct_string("Create Constraint On(@usn5:`5esn`)Assert {`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}.@usn5? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`7esn`)Assert Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where `6esn`[{`6esn`}..]).@usn6 Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn6:`8esn`)Assert [$0 In _usn4,$#usn7[`5esn`]].@usn5? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:usn2)Assert Case {`1esn`} In 12.e12 In 9e1 When {usn2}[$`4esn`] Then $1000 Starts With $`8esn` Starts With {`5esn`} Else {1000}[{#usn8}] End.`1esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn1:`7esn`)Assert `4esn`(Distinct).`4esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`3esn`)Assert (`8esn` :`5esn`:@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]}).@usn5! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`3esn`)Assert Case 0e0[$#usn8...e12] When {`8esn`}[..$`6esn`][..123.654] Then $@usn6 Starts With {`1esn`} Starts With 12 Else $``['s_str'..][0x0..] End.#usn7! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`1esn`:@usn6)Assert Exists((:@usn5)<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})-[`3esn`:`6esn`{`3esn`}]-(@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]}).`5esn`?)"), + octest_legacy:ct_string("Create Constraint On(@usn5:_usn3)Assert Exists(Filter(`5esn` In $`2esn`[12.e12][$@usn5] Where {999} Starts With {12}).`5esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[@usn6:`4esn`]->()Assert Exists({`8esn`:{`7esn`} Is Not Null Is Not Null}.#usn8!)"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:usn2]->()Assert Exists(Reduce(`5esn`={`4esn`}[$123456789..],@usn5 In Null =~12e12|``[$0..][`1esn`..]).@usn5!)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`4esn`)Assert Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {12} Starts With #usn8 Starts With 0e0).``? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:usn2)Assert None(_usn4 In 0.0[..{999}][..0.0] Where 01234567[..9e1]).`1esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn2:usn1)Assert (`6esn` :_usn3)<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(:`2esn`{`2esn`:123456789[0..]})<-[`8esn`?:`5esn` *12..{#usn7:$1000 Is Not Null Is Not Null}]-(#usn8 {@usn5:_usn4 Is Null}).`3esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn7:_usn3)Assert Exists(Filter(`2esn` In {999} Is Not Null Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF).@usn6)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`8esn`)Assert @usn5(Distinct 0X0123456789ABCDEF[0X7..])._usn3 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn4:@usn6)Assert Reduce(@usn6={_usn3}[..$`8esn`],usn1 In 12.e12 In {0} In 9e1|$`2esn`[{``}..{1000}][#usn8..`2esn`]).`2esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[``:``]->()Assert Exists((_usn4 )<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})-[_usn3?:``]-(:usn1:_usn4{`4esn`:01234567 In $123456789}).`7esn`!)"), + octest_legacy:ct_string("Create Constraint On(`4esn`:`7esn`)Assert Exists(All(`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0.12 In 0X7).`7esn`?)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:#usn8)Assert Extract(`` In {`1esn`} Starts With @usn6 Where .e1[@usn5]['s_str']|{7} Is Null).`` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:_usn3)Assert Exists(#usn7(Distinct 7 Is Not Null,{`7esn`}[0X7..][0x0..]).`6esn`?)"), + octest_legacy:ct_string("Drop Constraint On(usn1:`3esn`)Assert Exists((`4esn` {`2esn`:@usn5[$12..\"d_str\"]})<-[`2esn`:`5esn` *0x0..{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})<-[`6esn`?:#usn8|`2esn`*..{`5esn`:@usn5 =~'s_str'}]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}).#usn8!)"), + octest_legacy:ct_string("Create Constraint On(``:usn1)Assert Exists(Single(`1esn` In $12 Is Not Null Where 0Xa Contains Count ( * )).`4esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[_usn4:`2esn`]->()Assert Exists(Reduce(``=7[$0..][{_usn4}..],`6esn` In Count(*) Ends With $`` Ends With {7}|12[..$@usn6])._usn3)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:`5esn`)Assert Exists([{1000}].#usn8?)"), + octest_legacy:ct_string("Drop Constraint On()-[_usn4:_usn4]->()Assert Exists((@usn5 :@usn5)<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]->(:`5esn`:@usn5{``:.e12 =~$_usn4}).`8esn`?)"), + octest_legacy:ct_string("Drop Constraint On()-[`4esn`:`8esn`]->()Assert Exists(`7esn`(#usn7 Starts With $999,{`1esn`} Starts With `4esn` Starts With {0}).`1esn`?)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:`7esn`)Assert Exists(Reduce(@usn5=$0[..{usn2}][..$usn1],`` In {`1esn`} Starts With @usn6|{@usn6} Contains 123.654 Contains 01).`6esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[`3esn`:usn2]-()Assert Exists(Any(`2esn` In {999} Is Not Null Where {`1esn`} In 12.e12 In 9e1).@usn6?)"), + octest_legacy:ct_string("Drop Constraint On(``:usn1)Assert Exists([`6esn`[{`6esn`}..],$0[_usn4..{`3esn`}][$#usn7..$#usn7],0Xa[..{1000}][..$#usn7]].`2esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:`6esn`)Assert Exists(All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {7} Contains $123456789).`4esn`)"), + octest_legacy:ct_string("Create Constraint On()-[`8esn`:_usn3]->()Assert Exists(Reduce(usn1={`2esn`} In 0Xa In {_usn3},`1esn` In 0.e0 =~`1esn` =~`6esn`|07 =~@usn5).`8esn`)"), + octest_legacy:ct_string("Create Constraint On()-[_usn4:@usn5]-()Assert Exists(Shortestpath(((:`8esn`:@usn5)-[@usn5?:@usn5|:`7esn`]-(#usn7 :`6esn`:`8esn`{``:@usn5 In 1e1})))._usn4?)"), + octest_legacy:ct_string("Create Constraint On(_usn3:`4esn`)Assert Exists(Shortestpath(((`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6)<-[#usn7]-(@usn6 ))).`2esn`?)"), + octest_legacy:ct_string("Drop Constraint On()-[`3esn`:`7esn`]-()Assert Exists({@usn6:$usn1[$123456789..0][{`1esn`}..12.0]}.`7esn`!)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:@usn5)Assert Exists([`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0}|#usn8 In `8esn` In 07].`6esn`?)"), + octest_legacy:ct_string("Create Constraint On(usn2:`3esn`)Assert Exists(Extract(`` In {`1esn`} Starts With @usn6 Where .e1[@usn5]['s_str']|{7} Is Null).``)"), + octest_legacy:ct_string("Create Constraint On()-[@usn5:`4esn`]-()Assert Exists(Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0 Contains 9e12|9e1 =~`` =~{`7esn`}).#usn7!)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`3esn`)Assert Exists((@usn5 :`7esn`{_usn3:{``}[_usn4..$`1esn`]})<-[#usn7{#usn8:{`1esn`} Is Not Null}]->(@usn6 :`1esn`).usn2)"), + octest_legacy:ct_string("Create Constraint On(_usn4:usn1)Assert {`5esn`:00[07..]}.usn1! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`2esn`)Assert Filter(_usn4 In 0.0[..{999}][..0.0] Where 12 Ends With 01)._usn3! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(``:`3esn`)Assert Exists(Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where {@usn5} =~_usn4 =~0.12|00 =~0.e0 =~$`8esn`)._usn4?)"), + octest_legacy:ct_string("Drop Constraint On()-[`2esn`:_usn3]-()Assert Exists(All(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where {`4esn`}[..{`4esn`}]).#usn8!)"), + octest_legacy:ct_string("Drop Constraint On()<-[usn1:`6esn`]-()Assert Exists(`2esn`(1.e1[0X0123456789ABCDEF..]).#usn7?)"), + octest_legacy:ct_string("Create Constraint On()<-[`7esn`:`6esn`]-()Assert Exists(usn2.@usn5)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`4esn`)Assert Exists(Extract(#usn7 In 123.654 Starts With $`` Where ``[{#usn8}]).usn2)"), + octest_legacy:ct_string("Drop Constraint On()-[`2esn`:@usn6]->()Assert Exists(Shortestpath(((({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]})-[`5esn`{`7esn`:@usn5[..$@usn5][..0Xa]}]-(:`4esn`:@usn6)<-[`3esn`? *0x0..{_usn3:0.0[9e1..][Null..],#usn7:{`3esn`} Is Not Null Is Not Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})))).`5esn`?)"), + octest_legacy:ct_string("Drop Constraint On()-[`4esn`:_usn3]->()Assert Exists([`1esn` In `3esn`[07..] Where 0X0123456789ABCDEF[`5esn`..][$#usn8..]].@usn6?)"), + octest_legacy:ct_string("Drop Constraint On()-[``:``]-()Assert Exists(`8esn`($#usn7[123.654],$`7esn` Is Null Is Null).`3esn`?)"), + octest_legacy:ct_string("Create Constraint On(#usn8:`4esn`)Assert (:`5esn`:@usn5{`2esn`:Count(*)[010..][#usn7..]})-[#usn8? *..01234567]-(@usn5 {``:`3esn` =~9e0 =~@usn6})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`).`8esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[usn2:`6esn`]->()Assert Exists(Case When {12}[00..{@usn6}][1.e1..0] Then 9e12 Is Not Null When {@usn5}[12.0..1000][{`3esn`}..{7}] Then 0[$`6esn`...e1][`1esn`..$`7esn`] End.`4esn`?)"), + octest_legacy:ct_string("Drop Constraint On()-[@usn6:#usn8]-()Assert Exists(All(@usn5 In Null =~12e12 Where _usn4 In $usn1).`1esn`?)"), + octest_legacy:ct_string("Drop Constraint On(usn1:_usn3)Assert Exists(Shortestpath(((:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})-[:usn2|#usn7 *0X7..0Xa]->(#usn7 :@usn5)-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})))._usn4?)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:_usn3)Assert `8esn`({1000}[{``}][999],_usn4 Is Null Is Null)._usn3? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`3esn`)Assert Exists((#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]})<-[`7esn`?:`7esn` *..7{`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00}).`4esn`)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:@usn5)Assert {@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}.#usn8? Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[`6esn`:`6esn`]-()Assert Exists(Single(#usn7 In 123.654 Starts With $`` Where $_usn3[{999}])._usn3?)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:#usn7)Assert Exists([_usn3 In {@usn5}[..#usn7] Where $0[..{usn2}][..$usn1]|$usn1 Starts With $999 Starts With {@usn5}].``?)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:#usn8)Assert Exists({`5esn`:{#usn8}[usn1][1.0]}._usn4?)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:`4esn`)Assert [`` In {`1esn`} Starts With @usn6 Where $@usn6 Starts With $@usn5|{_usn4} In {1000}].#usn8! Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn3:usn1)Assert Exists(Case When $`2esn`[{``}..{1000}][#usn8..`2esn`] Then {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] Else #usn8 =~{999} End.`5esn`)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`4esn`)Assert {@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}.`7esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[`1esn`:`3esn`]-()Assert Exists((:`6esn`:`8esn`{`8esn`:1e1[{_usn4}..123.654],`2esn`:0X0123456789ABCDEF[$999..][@usn5..]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01}).`7esn`)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`7esn`)Assert Exists([@usn5 In 1e1,{`2esn`} Ends With {12} Ends With 7,$@usn5[`6esn`..]].`8esn`?)"), + octest_legacy:ct_string("Create Constraint On()-[usn2:#usn8]-()Assert Exists(Shortestpath(((`1esn` :`4esn`:@usn6))).`2esn`)"), + octest_legacy:ct_string("Create Constraint On(_usn4:`3esn`)Assert None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $`7esn` Contains {`1esn`} Contains 9e12).`8esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(``:`7esn`)Assert Exists(Reduce(#usn7={_usn4}[{``}..],_usn3 In {`2esn`} Ends With {12} Ends With 7|{`6esn`} Ends With 0e0 Ends With {``}).#usn7!)"), + octest_legacy:ct_string("Drop Constraint On()<-[usn2:`6esn`]-()Assert Exists(Any(`3esn` In 123.654[1e1..][{#usn8}..] Where usn2[`7esn`..{`3esn`}][$7..{#usn7}]).`4esn`?)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`4esn`)Assert Exists(All(_usn4 In 0.0[..{999}][..0.0] Where {999} Ends With 123456789 Ends With {@usn5}).@usn6!)"), + octest_legacy:ct_string("Create Constraint On()-[`4esn`:#usn7]-()Assert Exists((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})<-[`7esn`?:`6esn`]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})<-[``? *1000]-(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}).#usn7?)"), + octest_legacy:ct_string("Create Constraint On(``:`1esn`)Assert Exists(Reduce(#usn8=$@usn6[$0..usn1][0X0123456789ABCDEF..$999],`1esn` In 0.e0 =~`1esn` =~`6esn`|999[12.0..][#usn7..]).`4esn`?)"), + octest_legacy:ct_string("Create Constraint On(#usn8:`5esn`)Assert Exists(Case $12 Contains 0Xa When 0Xa Contains Count ( * ) Then {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`] When 2.12 In $`8esn` In {`7esn`} Then $usn1 In 01234567 In .e1 End.`1esn`!)"), + octest_legacy:ct_string("Create Constraint On()-[#usn7:_usn3]-()Assert Exists([`2esn` In {999} Is Not Null Where $7 Ends With 0X7|{`1esn`} In 12.e12 In 9e1]._usn3)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`1esn`)Assert Exists([`1esn` In $12 Is Not Null Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`|{`4esn`}[$123456789]].`7esn`?)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:_usn3)Assert Exists(Case $`6esn` Starts With 12.e12 Starts With $#usn7 When $`2esn`[12.e12][$@usn5] Then $usn1[0X7] When True =~_usn3 =~123456789 Then {usn1}[$7..0x0] Else {1000}[\"d_str\"..{@usn5}][$1000..$#usn8] End.``)"), + octest_legacy:ct_string("Drop Constraint On()<-[usn1:`4esn`]-()Assert Exists(Reduce(`2esn`=0e0,`6esn` In Count(*) Ends With $`` Ends With {7}|'s_str'[.._usn4][..``]).`4esn`?)"), + octest_legacy:ct_string("Drop Constraint On(``:`8esn`)Assert Exists(Single(_usn3 In {@usn5}[..#usn7] Where $`4esn` Starts With 0e0)._usn3)"), + octest_legacy:ct_string("Drop Constraint On()<-[`4esn`:`1esn`]-()Assert Exists(Case {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] When .e0[True..Count ( * )][#usn7..0X7] Then $@usn5[`6esn`..] Else {_usn3} Contains 9e0 Contains $999 End.@usn5)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`3esn`)Assert (usn1 {usn2:#usn8 =~{_usn3} =~``})-[?{`2esn`:0X0123456789ABCDEF[9e12],`7esn`:{`4esn`}[..07][..$`6esn`]}]->(`1esn` {@usn5:$usn1 In 0.12 In $``}).`6esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn2:`4esn`)Assert Exists(Case When $`2esn`[{``}..{1000}][#usn8..`2esn`] Then {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] Else #usn8 =~{999} End.`5esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[@usn5:usn2]-()Assert Exists(Filter(`1esn` In 0.e0 =~`1esn` =~`6esn` Where 1000).``)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`3esn`)Assert Exists(None(#usn7 In 0Xa[@usn5][{`7esn`}] Where $0[_usn4..{`3esn`}][$#usn7..$#usn7]).`4esn`)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:#usn7)Assert Extract(`2esn` In {999} Is Not Null Where {12} Contains 9e0).@usn5? Is Unique"), + octest_legacy:ct_string("Create Index On:usn1(`3esn`)"), + octest_legacy:ct_string("Create Constraint On(#usn7:@usn5)Assert Exists([`8esn` In $12[{7}..0X0123456789ABCDEF] Where Count ( * )[Count ( * )][12]|{@usn5} Is Null].#usn7?)"), + octest_legacy:ct_string("Create Constraint On(`4esn`:`1esn`)Assert Exists([$usn1 In 01234567 In .e1,$@usn5[..usn2][..$#usn7],True Is Not Null].`4esn`)"), + octest_legacy:ct_string("Create Constraint On(@usn6:_usn4)Assert Exists({`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}.`1esn`)"), + octest_legacy:ct_string("Create Constraint On(_usn3:`3esn`)Assert Shortestpath(((`5esn` {`3esn`:9e1 =~999})<-[`5esn`{`6esn`:12 Is Not Null Is Not Null,`8esn`:`3esn` Is Not Null Is Not Null}]->(_usn3 {@usn5:.e12 =~.e0})-[`5esn`?{`2esn`:`3esn`[07..],_usn3:{``} Is Null Is Null}]-(:#usn7{#usn7:$`8esn` In $`2esn` In {7}})))._usn3? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:usn1)Assert {_usn3:{12} =~0.e0 =~{_usn3}}.usn2! Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn1:``)Assert Single(`6esn` In Count(*) Ends With $`` Ends With {7}).@usn6? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`5esn`)Assert Exists({`1esn`:$usn1 Starts With $999 Starts With {@usn5}}.@usn6!)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:_usn3)Assert Reduce(`8esn`={`4esn`}[$123456789],`6esn` In 00|#usn7 =~{`4esn`} =~123456789).usn1? Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[#usn8:`5esn`]-()Assert Exists([{999} Is Not Null,Count ( * )[Count ( * )][12],{`8esn`}[0X7][$`3esn`]].`6esn`?)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:_usn3)Assert Extract(`` In {`1esn`} Starts With @usn6 Where 12.0 =~$#usn7 =~9e12|{@usn6} Contains 123.654 Contains 01).@usn6 Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[@usn5:`2esn`]-()Assert Exists(Extract(_usn4 In `2esn` Where 12e12 Is Not Null).`5esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[`7esn`:`6esn`]-()Assert Exists([_usn4 In `2esn` Where False Ends With $``|{0}[..{`7esn`}]].@usn5?)"), + octest_legacy:ct_string("Create Constraint On(usn2:`7esn`)Assert Case #usn8[$0..False][$`1esn`..$#usn7] When 1.0[{999}][$999] Then {1000}[1000][$usn1] Else 0[`4esn`][12.e12] End.@usn6! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[@usn5:`6esn`]-()Assert Exists(All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]).#usn8!)"), + octest_legacy:ct_string("Create Constraint On()-[#usn7:_usn3]-()Assert Exists({`3esn`:$`3esn` In 9e12 In ``,@usn6:'s_str'[.._usn4][..``]}.@usn6?)"), + octest_legacy:ct_string("Create Constraint On()-[``:``]->()Assert Exists(Allshortestpaths((`5esn` :_usn4)<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]})).`2esn`?)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`1esn`)Assert [#usn7 In 123.654 Starts With $`` Where _usn3 Contains .e0 Contains {usn2}|`4esn` Contains #usn8 Contains 7].`4esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[usn1:_usn3]-()Assert Exists(Case #usn8[$0..False][$`1esn`..$#usn7] When 1.0[{999}][$999] Then {1000}[1000][$usn1] Else 0[`4esn`][12.e12] End.@usn6)"), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:_usn4]-()Assert Exists([_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 9e12 Is Not Null].@usn5)"), + octest_legacy:ct_string("Create Constraint On(``:`6esn`)Assert Exists(Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]).#usn8)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:_usn4)Assert Exists((:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}).@usn5!)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`3esn`)Assert Exists(Extract(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where Count ( * )[$12..]).`8esn`?)"), + octest_legacy:ct_string("Create Constraint On()<-[`7esn`:`8esn`]-()Assert Exists(None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where `8esn`[..`4esn`][..$usn1])._usn4!)"), + octest_legacy:ct_string("Drop Constraint On()-[`6esn`:usn2]->()Assert Exists({`5esn`:$_usn4 Is Not Null Is Not Null}.`1esn`!)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:@usn6)Assert Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where .e1[0.12]|0.12[Count(*)..][$#usn7..]).`8esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:usn2)Assert Exists(Filter(_usn3 In True[7][$999] Where {@usn5}[Count(*)..])._usn4?)"), + octest_legacy:ct_string("Create Constraint On(_usn3:`2esn`)Assert Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where {7}[$123456789..{1000}][$`3esn`..`7esn`]).#usn8! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn4:`4esn`)Assert {`4esn`:.e12[$#usn8..@usn6]}.usn1! Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn7:`6esn`)Assert Exists([_usn3 In True[7][$999] Where Count(*) Is Not Null].`7esn`)"), + octest_legacy:ct_string("Drop Constraint On()<-[_usn3:`3esn`]-()Assert Exists(({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})-[?:#usn7|`2esn` *0x0..]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]}).`3esn`?)"), + octest_legacy:ct_string("Create Constraint On()<-[`2esn`:#usn7]-()Assert Exists({usn1:0e0[0X0123456789ABCDEF..010][$@usn6..010]}.`8esn`?)"), + octest_legacy:ct_string("Create Constraint On(#usn7:usn1)Assert Exists(All(`6esn` In 00 Where #usn7 Starts With $999).``!)"), + octest_legacy:ct_string("Drop Constraint On()<-[#usn7:#usn8]-()Assert Exists(Case {`1esn`} Starts With `4esn` Starts With {0} When 0e0 Contains `3esn` Contains `7esn` Then $`5esn` Is Not Null End.@usn5!)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:_usn3)Assert Exists(Reduce(_usn3=$7 Ends With $`8esn`,_usn4 In 0.0[..{999}][..0.0]|{7} Starts With $usn1 Starts With 1.0).#usn8!)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`7esn`)Assert Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where `7esn` Starts With 0X7 Starts With $`7esn`).`6esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:`2esn`]-()Assert Exists([`` In {`1esn`} Starts With @usn6 Where {12}[00..{@usn6}][1.e1..0]|$12 Is Not Null].usn1!)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`6esn`)Assert [`6esn` In 00 Where #usn7 Starts With $999|{_usn4}[...e12][..0xabc]].usn2 Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`3esn`:#usn8]->()Assert Exists(Case $usn1 Starts With $999 Starts With {@usn5} When `7esn` Contains `5esn` Contains 0X7 Then {1000}[{usn1}][Null] When {#usn7} In Count ( * ) In $#usn8 Then 07 Is Null End.`2esn`?)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:_usn4)Assert Exists((`1esn` :@usn6)-[ *..7{`5esn`:$_usn3[{999}],`3esn`:0.0 Is Not Null}]-({@usn6:$`` Starts With 12 Starts With $usn2})._usn3)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:@usn5)Assert Exists(Extract(_usn4 In 0.0[..{999}][..0.0] Where 12 Ends With 01|Count(*) Is Not Null)._usn3?)"), + octest_legacy:ct_string("Create Constraint On(_usn3:#usn7)Assert Any(_usn4 In 0.0[..{999}][..0.0] Where {999} Ends With 123456789 Ends With {@usn5}).usn1? Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn5:#usn7)Assert Exists(Shortestpath((_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}})).#usn8?)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:#usn8)Assert @usn6(Distinct `7esn` Contains `5esn` Contains 0X7).`7esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`5esn`)Assert Exists(`4esn`({`2esn`} Starts With @usn6,{`2esn`}[..{@usn6}][..1.e1]).`3esn`?)"), + octest_legacy:ct_string("Create Constraint On(_usn4:`5esn`)Assert Shortestpath((@usn5 )<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]})).@usn6! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[``:`6esn`]->()Assert Exists([{`4esn`}[$123456789],@usn6[$usn2..#usn7],{`7esn`}[9e1..][@usn6..]].`5esn`?)"), + octest_legacy:ct_string("Drop Constraint On(usn1:`8esn`)Assert ``(Distinct `1esn` Is Null Is Null,0.0 Contains $_usn4 Contains {`2esn`})._usn3! Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn2:@usn6)Assert Exists({`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}.#usn8?)"), + octest_legacy:ct_string("Create Constraint On()-[`6esn`:_usn3]-()Assert Exists((:`4esn`:@usn6{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]})-[`2esn`:`2esn`{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})._usn4!)"), + octest_legacy:ct_string("Create Constraint On()-[#usn8:`6esn`]->()Assert Exists(Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}).`6esn`!)"), + octest_legacy:ct_string("Create Constraint On(#usn7:#usn8)Assert Exists([{12} =~0.e0 =~{_usn3},$#usn7 =~{12} =~False,1000 Is Null].#usn7)"), + octest_legacy:ct_string("Drop Constraint On()-[``:``]->()Assert Exists({_usn4:12.e12[2.12..][0xabc..],_usn4:$_usn4[{``}..][1e1..]}.`5esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:#usn7)Assert (:`5esn`:@usn5{``:.e12 =~$_usn4})-[?:`8esn`|:_usn4{usn1:999[12.0..][#usn7..],@usn5:123.654[$`1esn`..Null][1000..{_usn3}]}]->(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}).`7esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn6:`6esn`)Assert Any(`3esn` In 123.654[1e1..][{#usn8}..] Where 9e12[$`5esn`]).usn1? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[``:`8esn`]-()Assert Exists(#usn8.``)"), + octest_legacy:ct_string("Create Constraint On()-[`7esn`:usn1]-()Assert Exists(Filter(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $7[{`1esn`}]).#usn7!)"), + octest_legacy:ct_string("Create Constraint On(`4esn`:#usn7)Assert Exists(Single(`1esn` In `3esn`[07..] Where 999 Starts With 's_str').#usn8)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`7esn`)Assert Exists(({`3esn`:{@usn5} Is Null,`5esn`:{`2esn`} Ends With {12} Ends With 7})<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(`4esn` :`4esn`:@usn6).`4esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`2esn`)Assert Extract(`6esn` In 00 Where {@usn5} Starts With 1.0 Starts With 00)._usn3 Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[@usn5:_usn4]-()Assert Exists([1.e1 =~`2esn`,$@usn6[$0..usn1][0X0123456789ABCDEF..$999],$123456789 Starts With `5esn`].usn2?)"), + octest_legacy:ct_string("Drop Index On:`5esn`(`8esn`)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:usn1)Assert Extract(@usn5 In Null =~12e12 Where 7 Is Not Null|True =~_usn3 =~123456789)._usn3? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:`7esn`]->()Assert Exists(None(@usn5 In Null =~12e12 Where {`5esn`} Contains 's_str' Contains 9e1)._usn3?)"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:`8esn`]->()Assert Exists(Any(_usn3 In {@usn5}[..#usn7] Where `2esn` Starts With `` Starts With 1e1).@usn5!)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`5esn`)Assert Exists([`` Ends With $`4esn` Ends With 0X0123456789ABCDEF].`6esn`!)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`7esn`)Assert Allshortestpaths((:``{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})-[?:`4esn`|:#usn7]->(`1esn` :@usn6)<-[`1esn`?]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})).`5esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`6esn`)Assert Exists(Filter(_usn3 In {@usn5}[..#usn7] Where 9e0 Starts With .e0 Starts With \"d_str\").`1esn`!)"). diff --git a/test/performance_cypher_SUITE.erl b/test/performance_cypher_SUITE.erl index 5c0d17e..34e96ff 100644 --- a/test/performance_cypher_SUITE.erl +++ b/test/performance_cypher_SUITE.erl @@ -2,7 +2,7 @@ %%% File : performance_cypher_SUITE.erl %%% Description : Test Suite for rule: cypher. %%% -%%% Created : 03.10.2016 +%%% Created : 15.12.2016 %%%------------------------------------------------------------------- -module(performance_cypher_SUITE). @@ -38,1003 +38,1003 @@ all() -> %%-------------------------------------------------------------------- test_cypher(_Config) -> - octest:ct_string("With Distinct *,7 Is Null Order By $12[01..][1.e1..] Ascending,0x0 =~_usn4 Desc Limit 12[`7esn`...0][0.12..``] Where $123456789 Ends With .e0 Union All Merge (:#usn7) On Match Set `8esn`+=123456789[1000],`1esn` =(@usn6 {_usn4:$_usn4[#usn8..]})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)[Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null)..],#usn8+=@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF On Create Set usn1+=$@usn6 In $`5esn` In $usn2 Union All Merge (`5esn` {_usn4:0X7 =~``});"), - octest:ct_string("Delete $_usn4[$`1esn`],[01234567 =~usn1,9e0 =~$`5esn`,usn2[$`1esn`...0]][..[.12 In $999 In `5esn`,010 =~`6esn`,#usn7 Contains .0 Contains .e1]] Unwind $@usn5 Contains $`7esn` Contains #usn8 As `` Union All With *,#usn7 Starts With .e12 Starts With $`7esn` As usn2,{`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) As @usn5 Limit Extract(`4esn` In 's_str'[12..'s_str'] Where 00 Starts With _usn3|$`1esn` Is Null Is Null) Is Null Is Null Remove [@usn5 In .12[#usn7][$`8esn`] Where Count ( * )].`8esn`? Union Merge @usn5=(((_usn3 :_usn3{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[#usn8:`3esn`|:`4esn` *0..010]-(:usn1{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]}))) On Match Set `3esn`(False In `3esn`).`5esn`! =Count ( * )[Count ( * )..12e12][usn1..1000],#usn7 =(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])],#usn7+=00[01234567][False] On Match Set @usn5 =1e1[..#usn8][..'s_str'],`8esn` =usn2[`3esn`][_usn3] Optional Match ((:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]})),((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Where $`4esn`[12.e12..][0.0..]"), - octest:ct_string("Match _usn4=(@usn6 {#usn7:False[`2esn`..#usn8]})<-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]-(`4esn` {@usn6:True[..'s_str'][..01]}),`6esn`=(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]}) Where usn2[$`1esn`...0] With *,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn` Skip 1e1[..False] Limit 12e12[$`5esn`][07] Optional Match #usn7=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))),(((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]-({usn1:0x0[0X7..][usn1..]}))) Union With *,12e12 Is Not Null As usn1 Order By [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]) Asc Skip $`6esn` =~1e1 Limit .12 Is Not Null Is Not Null Where @usn5 Contains $`1esn` Contains 999 Unwind $1000 Starts With .0 Starts With 0.0 As `4esn` Return @usn5[..True][..0X7] As #usn8,[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..] Order By 0 Ends With $7 Ends With _usn3 Ascending Skip \"d_str\"[$`7esn`][$1000] Limit False[0Xa..$@usn5][$`6esn`..12e12] Union Merge `5esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)) Delete 01234567 Ends With 0x0,{@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7),None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`)[`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)..] Remove [Count ( * )[Count ( * )..12e12][usn1..1000],12e12[$`5esn`][07],$_usn3[9e1][$_usn4]]._usn4,_usn4($123456789[..0.12][..#usn7]).`6esn`!"), - octest:ct_string("Return *,Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null As `6esn` Union All Merge `2esn`=(:_usn4:usn1) On Match Set `6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`7esn` =9e1[0.e0..][#usn8..],#usn7+=({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Ends With @usn6(123456789 =~$123456789) Ends With [`1esn` Contains Count ( * ),$@usn6 Contains Count ( * ),False In 123456789 In $0] On Create Set `` =(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[usn1?:`8esn`|:usn1]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Is Null Is Null,`7esn`+=(`7esn` :_usn4:usn1)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`) Starts With ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2) Starts With Extract(usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]|07[`6esn`..][`5esn`..]),`2esn`:`1esn` Unwind 12[usn1][True] As @usn6"), - octest:ct_string("Return Distinct *,`` =~12 =~$#usn7 As _usn4,[$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Skip `3esn`[..7][..12e12] Limit (:`1esn`{`8esn`:Count ( * ) =~Count(*)})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(`1esn` {_usn4:12.e12 Ends With 01 Ends With .e1})[Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8])] Unwind {@usn5:$`3esn`} Starts With .12 As `8esn`"), - octest:ct_string("Detach Delete 0x0[$`3esn`],07 In $7 In 12 Union All Remove Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]|@usn6 Contains .e1 Contains $`4esn`).`4esn`!,@usn6:usn2:@usn6,None(`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]).`2esn`! Match usn2=(_usn3 :_usn3),usn1=((:_usn4:usn1{#usn8:$`7esn` Ends With `1esn` Ends With True})-[`7esn`?:usn1|`3esn` *123456789..999{`5esn`:.e1 In $@usn6 In 999}]-(usn2 :#usn8{`3esn`:123.654[@usn5]})) Where 0 Is Not Null Is Not Null Union Create ``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}),(`` :usn1)"), - octest:ct_string("Optional Match ((usn1 :`6esn`:`7esn`)),((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)) Where 07[..010][..12.0]"), - octest:ct_string("Unwind 999 Contains `7esn` As `7esn` Union All Unwind usn2[..$`3esn`] As `6esn` Union All Delete [$1000 =~$`7esn`,.12 Starts With @usn5 Starts With $#usn8,0x0[...e12][..@usn5]] Ends With Single(@usn5 In .12[#usn7][$`8esn`]) Create @usn6=(`` :#usn7)<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})<-[`5esn`?:`6esn`]->(`6esn` :`6esn`:`7esn`{_usn4:\"d_str\"}),`6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)})"), - octest:ct_string("Unwind 1e1 In 9e0 In 9e0 As _usn4 Create ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})-[@usn6?:#usn7|:_usn4 *00..]->(`` :@usn5{#usn7:0X7[12]})) Merge `4esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}) On Create Set `3esn`+=(:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]),{`6esn`:$`8esn`[``..][123.654..],``:999[$`6esn`]}.`5esn`? =$_usn4[$`8esn`..][07..] On Create Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8]"), - octest:ct_string("Unwind $`3esn`[@usn5..$123456789] As `2esn` Unwind $`` Is Null Is Null As `7esn` Return *,0.12[Count(*)..],$@usn5 =~$`` =~$usn2 As #usn8 Union Merge _usn3=((_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})) On Match Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] On Create Set None(`4esn` In 's_str'[12..'s_str'] Where @usn5 In 0X0123456789ABCDEF).`2esn`! =$`1esn` Is Null,`5esn`()._usn4! =[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00],`8esn` =`7esn` Contains .0 Contains 9e12 Union All Unwind 0 Starts With `6esn` Starts With 0X0123456789ABCDEF As @usn6 Return *,01234567 Is Null Is Null Order By {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}[..[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]]] Ascending Skip 010 =~$usn2 =~1e1;"), - octest:ct_string("Delete 01234567 Ends With 0x0,{@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7),None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`)[`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)..] Union All With Distinct 00 Ends With $_usn4 Ends With $`2esn` As `5esn` Order By $`8esn` In \"d_str\" In 9e12 Desc,`3esn`(.e0 =~`5esn`)[Single(`6esn` In 0X7 =~`` Where $`3esn` =~Null)][[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $_usn3[$`4esn`..Null]|False[`2esn`..#usn8]]] Asc,1e1 In 9e0 In 9e0 Ascending Unwind 00 Is Not Null Is Not Null As `` Optional Match ``=((_usn4 )-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})) Where 123456789 =~_usn4 =~$0 Union Create ((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` )),(({_usn3:$0 Ends With $#usn7 Ends With .12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[?:``|:_usn4 *..0X7]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}))"), - octest:ct_string("Return Distinct $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Limit 9e0 Starts With `6esn` Remove (usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})<-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null}).`4esn`!,{#usn8:9e1[0.e0..][#usn8..]}.``,Any(@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]).#usn8 Create _usn3=((:``{`5esn`:.e1 In $@usn6 In 999}))"), - octest:ct_string("Unwind $12[`3esn`..0e0][`2esn`..$7] As usn2 Merge @usn5=({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)<-[?:usn2|#usn8{#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7}]-({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) On Create Set _usn3+=$@usn5 =~$`` =~$usn2,`6esn`+=`6esn`[1.e1..$#usn7][.e0..True],(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[`` *0xabc]->(`7esn` :#usn7{`6esn`:$`3esn` Contains 0X0123456789ABCDEF Contains 00,`1esn`:1000[123.654..9e12][1000.._usn3]}).``! =[@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Union All Merge `2esn`=(:`1esn`)<-[`2esn`?:usn2|#usn8{`6esn`:0X7[.e12..01234567],@usn6:`7esn`[...e1][..\"d_str\"]}]->(`5esn` :`8esn`{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}) On Match Set _usn3+=07 In Count ( * ) In \"d_str\" Match (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0) Remove (usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})._usn4?,usn1:`3esn`:`1esn`,{`2esn`:9e1 In 01 In 999,`5esn`:$@usn6[..$usn1]}.@usn5! Union All Merge (((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})<-[?:`7esn`|`2esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}]->(usn1 :#usn8)))"), - octest:ct_string("Unwind 12[..0.0][..#usn7] As `8esn` Return Distinct *,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] As @usn6 Order By 010 Starts With `7esn` Starts With 9e1 Ascending,123456789 Is Null Descending,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] Desc Skip {#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null With Distinct \"d_str\",0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',$@usn5[01] Order By 01234567 Starts With $_usn4 Desc,0.12 Contains .e1 Ascending,0x0 =~_usn4 Descending Skip [usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]] Contains None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]) Contains Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) Union All Merge (:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) With `6esn`['s_str'..][010..],$`4esn` Contains 0Xa Where 0X0123456789ABCDEF In $1000 In $`3esn` Detach Delete Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1),$@usn5 =~07 =~True"), - octest:ct_string("Return `7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As usn1 Order By #usn7 Contains 07 Descending,Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0]) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where Count(*)[True]) In Extract(`4esn` In 's_str'[12..'s_str'] Where 0xabc Ends With $#usn7 Ends With #usn8|.e1 Starts With 0.0 Starts With `6esn`) Asc,[$12 Is Null Is Null,999 Contains Count ( * ) Contains 123.654][Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`)..Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0)][[Null Contains _usn4,$`7esn` Is Null Is Null]..({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3})] Desc With *,$`1esn` Ends With _usn4 Ends With `3esn` As `7esn`,({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] As @usn6 Order By $999 Ends With $`3esn` Ends With `8esn` Asc Skip $0[..07] Where $@usn5 In 12e12 In Count(*) Union Create @usn6=(({_usn3:$0 Ends With $#usn7 Ends With .12})-[@usn6?:#usn7|:_usn4 *00..]->(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})),(usn1 :_usn3{@usn6:True[..'s_str'][..01]})<-[`7esn` *..0x0]->(:`8esn`{usn2:7 Contains 9e1}) Detach Delete $`7esn` In 0.e0 In `4esn` With @usn6 =~01,12.0 In 1000 In _usn4 As _usn3,0 =~12.e12 =~$`` As #usn7 Order By All(@usn5 In $#usn8 Is Null Is Null Where 's_str'[..0.0][..$`4esn`]) Is Null Is Null Descending Skip None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]) Ends With None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With @usn6($123456789[0.0..]) Union Return $`6esn`[..0X0123456789ABCDEF],`1esn`[9e12..$`8esn`][usn2..$``] As #usn8,[#usn8 In $`5esn` Is Null Is Null][Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where #usn7[..$1000][..01])..][[@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]]..] As #usn7 Limit 9e12[0.0..12.e12] Create @usn6=({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567}),`7esn`=((:@usn6:`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[`6esn`:@usn5|`8esn` *12..0xabc]-(`` :@usn5)-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}))"), - octest:ct_string("With Distinct *,`4esn`($123456789 =~$0 =~$`3esn`) =~[07[12][$`6esn`],$`2esn` =~'s_str',$12[01..][1.e1..]] =~usn1(#usn7 Starts With `1esn`) As `3esn` Order By Extract(usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`) Contains [0 Contains 12e12,0xabc Ends With $7 Ends With $`2esn`,0x0 =~_usn4] Ascending,07[1e1] Ascending Skip 0e0[$12..`5esn`][Count(*)..`6esn`] Limit $123456789 Is Not Null Is Not Null Where 7 =~9e0 =~'s_str' With *,07[0..`4esn`] Order By 12.e12[$`7esn`] Desc,Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}) Descending Where @usn6 Starts With `7esn` Starts With Null Union Create ``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)),`2esn`=(((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) Create `4esn`=((:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})),((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) Return Distinct *,12 Is Null Is Null As #usn7,$1000 Is Not Null Is Not Null Skip (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)[Filter(@usn6 In @usn5 In $`6esn` Where $999[$1000])..][#usn7($`8esn`[``..][123.654..],12.e12 Contains `5esn`)..];"), - octest:ct_string("Detach Delete Count ( * ) In 010,$123456789 Is Null Is Null,$1000 Starts With .0 Starts With 0.0 With 's_str'[..0.0][..$`4esn`] As `2esn`,#usn7 Contains .0 Contains .e1,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Skip `6esn` Starts With $usn2 Starts With 0.0 Limit 9e1 Contains $`3esn` Contains 01234567 Where True Starts With $`8esn` Starts With \"d_str\" Union Remove Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`).`5esn`? Union All Return $usn2[12..$`7esn`][$0..$`7esn`],0x0 Contains _usn4 Contains 123456789 As `7esn`,9e12 Ends With 0X0123456789ABCDEF Ends With #usn7 As `5esn` Order By 01234567 Ends With 12.0 Ends With 0X7 Ascending,12e12 Ends With 010 Ends With .0 Asc Limit count(Distinct 's_str' Starts With 1000 Starts With #usn8,12e12 Starts With $123456789 Starts With 12.0)[[_usn4 In usn1 Contains False Contains `` Where $#usn8]][[$`1esn` Is Null,\"d_str\" =~`6esn` =~0Xa,$usn2[0e0..]]] With 7[$`4esn`..123456789] As `2esn` Limit 1000 Ends With 1000 Ends With $`4esn` Where $usn2[..12.0] Detach Delete $123456789 =~$0 =~$`3esn`,$0 Contains `7esn` Contains $`8esn`,9e0[False]"), - octest:ct_string("With Distinct 010 Starts With `7esn` Starts With 9e1,False[.e1..Null] As `2esn` Order By {`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]} Ends With (usn1 :_usn3)<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})-[ *..0x0]->(:`7esn`{@usn6:0.0[999..],#usn8:Null Is Null Is Null}) Asc Skip [@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Where $`6esn` Is Null Is Null;"), - octest:ct_string("Merge `4esn`=({`8esn`:0X7 In 's_str' In $`1esn`}) On Match Set usn2+=.e1 Ends With _usn4 Ends With @usn5,@usn5+=_usn3 In .e1 In $12,Extract(`4esn` In `6esn`[1e1..] Where $`7esn` Ends With `1esn` Ends With True).`` =010 In @usn6 On Match Set usn1 =Count ( * ) =~All(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7) With Distinct {#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Order By usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Ascending,`` Asc,$999 In $`8esn` In `5esn` Descending Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit `4esn` Is Null Optional Match @usn5=((:#usn8$usn1)-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})),((#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})) Union Match `5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Where $`2esn` Contains usn1 Contains `2esn` Unwind 12e12[0.e0][9e1] As usn2 Union All With Distinct *,usn2 Is Not Null Is Not Null As `2esn` Skip $1000 Ends With 1e1 Ends With 123.654 Limit {#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Where $0 Remove Extract(`4esn` In 's_str'[12..'s_str'] Where 12.0[0Xa][00]).@usn5,{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]}.`3esn`!"), - octest:ct_string("With usn1 Is Null Is Null As ``,.12 Is Null Where False[0Xa..$@usn5][$`6esn`..12e12] Merge (((:_usn4:usn1)-[@usn5?:@usn6*..]-(`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:@usn6]-(_usn3 :`4esn`:#usn8{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]}))) On Match Set `5esn` =999[.e12][01],Extract(usn1 In 0x0[..`4esn`] Where @usn6[$`3esn`]).#usn8? =`1esn` In 999 In $#usn7,usn1 =12.e12[0e0..7] Union All Optional Match ((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})),((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})) Union With $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Order By $12[01..][1.e1..] Descending Skip .12[.e12..0.e0][0.e0..$`2esn`] Where $_usn4[12e12][`4esn`] Merge `1esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[? *999..]-(`` :`1esn`) On Create Set usn2 =0.0[..12e12][..$0] Merge `2esn`=(_usn4 {`8esn`:9e1 In 01 In 999})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`) On Match Set @usn5+=`1esn`[9e12..$`8esn`][usn2..$``],usn1 =[12.e12 Ends With 01 Ends With .e1,$@usn5[0.12..][@usn5..],$usn1 In 1000 In $#usn7] Is Not Null On Match Set _usn4 =0 Contains 12e12,`1esn`:#usn8,`7esn` =0 Is Not Null"), - octest:ct_string("Create ({`2esn`:123456789 Starts With `2esn` Starts With .0,@usn6:$123456789[$`2esn`][True]}) Unwind [_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]] Ends With [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]] As `1esn` Create `1esn`=(`3esn` {``:.e0[7..$`3esn`]})"), - octest:ct_string("Merge #usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) On Create Set `4esn` =.12 Is Not Null Is Not Null,{@usn6:True[..'s_str'][..01]}.`2esn` =12.e12[...0][..0x0],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Remove [_usn4 Starts With $@usn6 Starts With #usn7].`4esn`,usn2(Distinct usn2[`3esn`][_usn3]).@usn5? Union Delete `6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),$@usn6[..$#usn7][..12.e12],.e0[`4esn`..`4esn`][0.0..$0] Delete 12.e12 In $1000,{_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]},$999 Ends With $`3esn` Ends With `8esn` Union All Return {`8esn`:$123456789 Is Null Is Null,_usn3:$`4esn` Starts With 1e1}[(#usn7 :`2esn`:`3esn`)<-[`8esn`?]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})..All(_usn4 In usn1 Contains False Contains `` Where $`8esn`[$``..$7][$1000..$`7esn`])] As `5esn`,`6esn`(00 In 1e1) Starts With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Starts With Extract(#usn8 In $`5esn` Is Null Is Null Where $usn2 Is Not Null)"), - octest:ct_string("Merge #usn8=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) On Create Set `5esn`+=0 Starts With `6esn` Starts With 0X0123456789ABCDEF,`4esn`+=$`7esn` Ends With $usn2,[usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null].@usn5! =$1000 Ends With 1e1 Ends With 123.654 On Match Set [`6esn` In 0X7 =~`` Where $`3esn` =~Null|1.e1[0X0123456789ABCDEF..][$`5esn`..]]._usn3? =Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null)[count(Distinct 0.12 Contains $12 Contains `8esn`)..[$`1esn` Is Null Is Null,9e1 In 01 In 999]],`1esn`+=None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]) Ends With None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With @usn6($123456789[0.0..]),(_usn4 {#usn7:False[`2esn`..#usn8],#usn8:`5esn`[`1esn`..`1esn`]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]}).`3esn` =01234567[$@usn6..0X7][$`1esn`..123.654] Remove [`6esn`[1e1..]].@usn6!,[$_usn3[..Count ( * )][..@usn5]].@usn6! Union All Remove {`4esn`:.12 Starts With 0Xa}.usn1!,[`6esn` In 0X7 =~`` Where 123456789 =~_usn4 =~$0|$#usn8 Ends With 1000 Ends With .0].`7esn`? Remove (:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[?:`1esn`]-(_usn4 :@usn6:`7esn`{@usn5:$_usn3[$`4esn`..Null]})._usn3! Union All Optional Match ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})) Merge (`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) On Match Set [@usn5 In 0X7 =~.0 =~\"d_str\" Where 12.e12 Ends With 01 Ends With .e1|00 Starts With _usn3].`2esn`? =None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`)[`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)..]"), - octest:ct_string("Detach Delete usn1 Is Not Null Is Not Null,[$`4esn`[9e1..][0..]][Any(`4esn` In $`8esn` Starts With 1000 Where 0.e0[9e1..][0.0..])..Single(#usn8 In $`5esn` Is Null Is Null Where 1000 Ends With 1000 Ends With $`4esn`)],#usn8 Ends With `4esn` Ends With $`4esn` Optional Match ``=((`6esn` :`7esn`)) Union All Merge `5esn`=((`2esn` :usn2:@usn6)-[usn1?{`7esn`:$`2esn` Starts With .e0 Starts With 12.0}]-(`5esn` {`5esn`:$`5esn`[False]})) Optional Match ((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})),(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union All Unwind $`5esn`[False] As `6esn` Return *,$0[7..][Null..] As `7esn`,`3esn`()[Filter(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`)..{@usn6:`6esn`[_usn4..][$`6esn`..]}] Order By (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Asc,.e1[..$``][..0X0123456789ABCDEF] Ascending Skip 01[..$``][..$`7esn`] Merge `3esn`=(({`5esn`:0.12 Contains .e1})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0})-[:@usn5|`8esn` *123456789..999{usn1:9e12 Is Not Null Is Not Null}]-(#usn7 :`5esn`)) On Match Set @usn5+=`` In `6esn`,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`` Is Null Is Null).`` =12.e12 Is Not Null On Match Set `` =None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..],#usn7($`8esn`[$``..$7][$1000..$`7esn`],`2esn` In 7 In usn2).`6esn`? =$_usn4['s_str'..],`4esn`+=$`7esn` Ends With $usn2"), - octest:ct_string("Return *,usn1[Count ( * )..$usn1] As usn1,$`2esn` =~'s_str' As @usn5 Union All Create (((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))),(@usn6 {`4esn`:$`2esn`[..`2esn`]})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})"), - octest:ct_string("Remove Extract(usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01).#usn8 Delete usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`]) Is Null,$999[..`1esn`],$_usn4[$`4esn`..$#usn7][`6esn`..7]"), - octest:ct_string("Return Distinct *,{`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] Optional Match #usn8=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),((#usn7 :_usn3)<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]})-[#usn7:_usn3|:`4esn`]-(:#usn7{usn1:$123456789[..0.12][..#usn7]})) Remove `5esn`:_usn4:usn1,_usn4($`6esn`[$@usn6..],_usn3[.0]).#usn8,[07[$999],@usn6[$`7esn`]].@usn5! Union All Detach Delete 12[12e12..@usn6];"), - octest:ct_string("Delete 's_str' Ends With .e0 Remove Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|@usn6[..0xabc][..$#usn7])._usn3,Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null).``!"), - octest:ct_string("Match (((:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]})<-[? *..0x0]->(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})-[? *..0X7{`3esn`:`8esn`[$``]}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}))) Where True[`4esn`][$`6esn`] Unwind 9e12 =~01 =~$`7esn` As usn1 Union Create #usn7=(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))),`5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})"), - octest:ct_string("Return *,$_usn3 =~`7esn` =~$_usn4 As `` Skip Count ( * ) Ends With 1000 Ends With 12 Limit .e1[..$`4esn`][.._usn4] Remove ({`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[ *..0x0{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}]-(`5esn` {`8esn`:0.0[12...12]})._usn3,All(`4esn` In `6esn`[1e1..] Where 07[12e12]).`3esn`!,[0Xa[$``..][01234567..]].@usn5 Delete 00[01234567][False] Union All Unwind {#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `5esn` Detach Delete `7esn` Starts With $`` Starts With $#usn7 Create `4esn`=((`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})),_usn3=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]}));"), - octest:ct_string("Optional Match `2esn`=(`` :usn2:@usn6)<-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`7esn` :`4esn`:#usn8{`2esn`:Count(*)[..`3esn`]}),(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})-[`4esn`:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]-(_usn3 :``)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->({`1esn`:0.0[1000..][.e1..]}) Where $`7esn` Ends With $`2esn` Ends With $usn1 Unwind @usn6 =~01 As `8esn` Return *,0.12[Count(*)..],$@usn5 =~$`` =~$usn2 As #usn8 Order By Single(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`) Is Null Desc Skip Single(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7])[None(`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789])..@usn6(Distinct True =~@usn5 =~$`1esn`,.12 Starts With $usn2)]"), - octest:ct_string("Remove [$123456789 Is Null Is Null,usn1 Contains $``,$123456789 Ends With .e1]._usn4! With Distinct `` Is Not Null Is Not Null As @usn6,`5esn`[`1esn`..`1esn`],[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4 Order By Count(*) Is Null Descending,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0] Ends With [`4esn` In 's_str'[12..'s_str'] Where 0.12 In 01 In $`3esn`|9e0 =~$`5esn`] Ascending,[0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] Asc Skip 1000 Contains 123456789 Contains 1e1 Limit $`6esn`[`3esn`..0e0]"), - octest:ct_string("Create `5esn`=(({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})),(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]}) Match `5esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)),#usn8=({_usn3:12.e12 In $0 In Count(*)})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}) Where `` Starts With @usn5"), - octest:ct_string("With 1000[123.654..9e12][1000.._usn3],count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null,$123456789 =~$#usn8 =~$#usn8 Order By $usn2 Is Not Null Is Not Null Ascending,Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Ascending Where $_usn3[Null] Return 00 Ends With $_usn4 Ends With $`2esn` As `5esn` Order By $`8esn` In \"d_str\" In 9e12 Desc,`3esn`(.e0 =~`5esn`)[Single(`6esn` In 0X7 =~`` Where $`3esn` =~Null)][[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $_usn3[$`4esn`..Null]|False[`2esn`..#usn8]]] Asc,1e1 In 9e0 In 9e0 Ascending Union Merge `5esn`=(({_usn3:12.e12 In $0 In Count(*)})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(`2esn` :``)-[:_usn4|:@usn5 *0xabc]-({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})) On Match Set `7esn` ={`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)],@usn6 =`5esn` In $999 On Create Set (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 =123.654 Contains `2esn`,`3esn` =Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`),{`6esn`:$_usn4[$`8esn`..][07..]}.@usn6! =`5esn`[.e1][0Xa] Union With Distinct `5esn` In $999 As `6esn` Order By [_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]][[.0 Starts With `2esn` Starts With `6esn`,9e1[0.e0..][#usn8..]]..][[07[$999],9e0 In 01234567,@usn5 In 0X0123456789ABCDEF]..] Asc,False Ends With $`8esn` Asc Where _usn4[$`4esn`..]"), - octest:ct_string("With Distinct $#usn8[1e1][9e1] As @usn5,$`3esn`[`2esn`...e0] As _usn3,.e1 Starts With $`8esn` Skip 0x0 =~$`7esn` =~@usn6 Limit [$_usn3[$`4esn`..Null],0x0 Contains $`8esn` Contains `6esn`,\"d_str\" =~`6esn` =~0Xa] Contains [@usn6 Starts With `7esn` Starts With Null] Contains `6esn`(Distinct $`4esn`[usn1..$#usn8][12.0..`3esn`],12.e12['s_str']);"), - octest:ct_string("Return *,`4esn` Is Null Order By `5esn` In $999 Descending Limit `3esn` =~$`5esn` =~12 Merge #usn8=(({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({_usn3:$`1esn` Starts With @usn6})) On Match Set (usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`],`2esn` ={@usn5:$`3esn`} Starts With .12 Unwind $`4esn` Starts With 1e1 As usn2 Union All Match `5esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Where 0 Ends With $7 Ends With _usn3 Union All Create (usn2 :#usn7),#usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})))"), - octest:ct_string("Return *,Single(_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0) Starts With Any(@usn6 In @usn5 In $`6esn` Where $`5esn` Contains Count(*) Contains #usn7) Starts With Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where .12 Ends With `1esn` Ends With $`1esn`) As `5esn`,Count ( * )[..999] As `6esn` Limit 12.0 =~#usn7 =~$usn2"), - octest:ct_string("Detach Delete $999[..`1esn`],$usn2[$123456789..123.654][$`5esn`..'s_str'] Return 00 Ends With $_usn4 Ends With $`2esn` As `5esn` Order By $`8esn` In \"d_str\" In 9e12 Desc,`3esn`(.e0 =~`5esn`)[Single(`6esn` In 0X7 =~`` Where $`3esn` =~Null)][[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $_usn3[$`4esn`..Null]|False[`2esn`..#usn8]]] Asc,1e1 In 9e0 In 9e0 Ascending Union All Merge `4esn`=((#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) On Match Set {`8esn`:`8esn` In $@usn5}.`3esn`! =$@usn5[#usn8..][$`1esn`..],All(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $@usn6 Is Null Is Null).`1esn`! =$12[..``][..$7] On Create Set usn2 =_usn3 Is Not Null Is Not Null,`4esn` =.e1 Starts With $`8esn` Union Match _usn4=(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(@usn6 ) Detach Delete 0x0 Is Not Null Is Not Null"), - octest:ct_string("Remove (#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}).`8esn`?;"), - octest:ct_string("Delete Count ( * )[.0..][$999..],_usn3[...e1],Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}) Return Distinct 0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str' Limit usn2[$`7esn`..010][00..``] With @usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Limit .12 Is Not Null Is Not Null;"), - octest:ct_string("Unwind Extract(`6esn` In 0X7 =~`` Where $_usn3[9e1][$_usn4]|@usn6[..0xabc][..$#usn7])[[@usn6 In @usn5 In $`6esn` Where $@usn5 In 12e12 In Count(*)|999[$`6esn`]]..Any(_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`)][{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`],usn2:@usn6[`3esn`..][$7..]}..`7esn`($123456789 Ends With $`6esn`)] As _usn4 Merge `8esn`=(({_usn3:$0 Ends With $#usn7 Ends With .12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[?:``|:_usn4 *..0X7]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})) Union Remove (`3esn` :#usn8{#usn8:$_usn4[$`8esn`..][07..]})<-[`2esn` *12..0xabc{`6esn`:$123456789[0.0..],@usn5:999[$`6esn`]}]-({@usn6:9e1 Contains $`3esn` Contains 01234567,@usn6:.e12[.12..][_usn4..]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}).`6esn`,#usn7:#usn8,{#usn7:0Xa[..$``],`1esn`:usn2 Is Not Null}.usn1? Union Delete usn1 Contains \"d_str\" Contains 9e12"), - octest:ct_string("Create usn1=((:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[#usn8? *0xabc]-(#usn8 :`4esn`:#usn8)),#usn7=(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))) Union With 0.12[Count(*)..] Order By .0 Is Null Is Null Ascending,`1esn`(Distinct $@usn5[#usn8..][$`1esn`..],#usn7 Ends With `4esn` Ends With @usn5)[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|usn1[Count ( * )..$usn1]]][{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}] Asc Skip 0 Contains 12e12"), - octest:ct_string("With Distinct 0x0 In `8esn` In 999,``[$`3esn`][$`2esn`],01234567 Ends With 12.0 Ends With 0X7 Order By Count ( * )[..usn1][..12.e12] Asc,$usn2 Is Not Null Is Not Null Descending Skip `3esn`(Distinct $_usn3[Null],12[..True][..$`4esn`]) Is Null Is Null Detach Delete _usn3 Ends With 12e12 Ends With .e0,({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}) =~None(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Unwind $123456789 In Count(*) In .e1 As usn1 Union With 123.654 Is Not Null Is Not Null As `3esn`,01[Null..][`1esn`..] Where 0X7[0e0..] Union All Return Distinct *,`4esn` Is Null Order By `5esn` In $999 Descending Limit `3esn` =~$`5esn` =~12;"), - octest:ct_string("Unwind 9e12 As `7esn` Unwind 12.e12 Contains $`5esn` As #usn7 Remove {`6esn`:$`8esn`[``..][123.654..],``:999[$`6esn`]}.``,[0X7[..12e12],$`6esn`[$`1esn`][1000]].usn2?;"), - octest:ct_string("Delete 0.12 =~9e0,12.0[0Xa][00] With {_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] As `1esn` Order By 0 Is Not Null Descending Skip 0x0 Where 123456789 Starts With #usn7 Starts With `6esn` Optional Match `8esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Union All Create `1esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) Return Distinct 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Order By [@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0] Is Null Descending Skip #usn8 Is Not Null Create ((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6)) Union Remove Any(usn1 In 00 Starts With _usn3 Where `6esn`[1e1..]).`3esn`!,Any(usn2 In 1000 Contains 0.e0 Where _usn4[0xabc..]).@usn5?"), - octest:ct_string("Merge (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}))) Return Distinct *,@usn6[`5esn`..$`3esn`] As ``,`7esn` In 's_str' In 0.12 As _usn3 Skip True Is Not Null Is Not Null Union All Optional Match @usn6=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Match (`8esn` :@usn5)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->(`6esn` :_usn4:usn1{`6esn`:00 In 12.e12}),(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]}))"), - octest:ct_string("Merge `3esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) On Create Set _usn3+=True In All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12),#usn7+=`` Is Not Null,`5esn` =0.0[Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|_usn3 Ends With 12e12 Ends With .e0)][None(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5)..{@usn6:.12 Starts With 0Xa}] Unwind 9e0[$_usn3..0X7][7..$#usn8] As @usn6 Create (({_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})) Union All Match usn2=(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}))) Match `5esn`=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Union All Unwind [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0])] As `3esn` Optional Match `6esn`=((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})),((@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})) Where 's_str' Ends With .e0"), - octest:ct_string("Unwind 12[usn1][True] As @usn6 Union Detach Delete $usn2 =~$_usn4 =~`5esn` Merge usn1=(`4esn` :#usn7)-[_usn4?:`6esn`]-(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) Return 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Order By [usn1 In 00 Starts With _usn3 Where 00][#usn8(Distinct $`2esn`[$123456789..$`1esn`][0Xa..$``],@usn6[`5esn`..$`3esn`])..['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`]] Asc,999 Contains `7esn` Desc,Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`] Ascending Skip 0e0 Is Null Is Null Union Unwind $`1esn` Is Null As `6esn`"), - octest:ct_string("Remove `7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``]).@usn5,{#usn7:0Xa Is Not Null Is Not Null,#usn7:.0[$`6esn`..False]}.`4esn`?,[usn1[..@usn5][...e0],$`8esn`[``..][123.654..]].`` Delete ({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3}),$123456789[$``][010] Return All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null Skip [0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',0X0123456789ABCDEF In $1000 In $`3esn`,$0[..`8esn`]] In `4esn`(Distinct 12.e12 In $0 In Count(*),00 In 1e1) In [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]|.e0 =~`5esn`]"), - octest:ct_string("With `2esn` In 7 In usn2,$0 =~$usn1 =~9e1 As `5esn`,@usn5[_usn4..][.e0..] As usn1 Skip Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] Optional Match ((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})),(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union Remove [`5esn`[`1esn`..`1esn`],.12[#usn7][$`8esn`]]._usn3,None(usn1 In 0x0[..`4esn`] Where \"d_str\" Contains `3esn` Contains 00).`6esn` Union All Unwind 01234567[.12..7][1000..1.e1] As `` Remove [.12 Starts With .12 Starts With `3esn`,Count ( * )[Count ( * )..12e12][usn1..1000],False In `3esn`].#usn7,{usn1:$1000 Contains $`3esn`}.#usn8!,None(`4esn` In $`8esn` Starts With 1000 Where True Starts With $`8esn` Starts With \"d_str\").`4esn`!;"), - octest:ct_string("Create (#usn7 $usn2)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ) Union All Unwind [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] As #usn7 Match ((`` :`1esn`)-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`4esn` {`2esn`:@usn6[`5esn`..$`3esn`],`7esn`:$`1esn` Is Null})) Where $`8esn`[$``..$7][$1000..$`7esn`];"), - octest:ct_string("Remove [@usn5 In 0X7 =~.0 =~\"d_str\" Where $`8esn` Starts With 1000|@usn6 Contains .e1 Contains $`4esn`].`8esn`! Merge (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}))) Create (`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :`4esn`:#usn8) Union All Remove {usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}.`4esn`,Single(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`).`8esn`? Unwind `6esn` =~$_usn3 As usn2"), - octest:ct_string("Unwind 00 In 12.0 In 's_str' As `3esn` Union All Return 's_str'[..0.0][..$`4esn`] As `2esn`,#usn7 Contains .0 Contains .e1,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Skip `6esn` Starts With $usn2 Starts With 0.0 Limit 9e1 Contains $`3esn` Contains 01234567 With Distinct Count ( * )[@usn6..0x0],.e0 Is Not Null Is Not Null As `2esn`,usn2 Is Not Null Is Not Null As `2esn` Skip $@usn5 =~$`` =~$usn2 Where `` Starts With 12 Remove (:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`2esn`]-(`6esn` :#usn7)-[_usn4?:`6esn`]-(@usn5 :`8esn`).`7esn`,`7esn`(usn2 Is Null Is Null,`6esn` =~$_usn3).`1esn`!"), - octest:ct_string("Return 123.654 =~$#usn8 =~`8esn` As `6esn`,@usn6[`5esn`..$`3esn`] As ``,Null[1.e1..] As _usn4 Limit #usn8 Is Not Null Union All Merge `2esn`=(:`1esn`)<-[`2esn`?:usn2|#usn8{`6esn`:0X7[.e12..01234567],@usn6:`7esn`[...e1][..\"d_str\"]}]->(`5esn` :`8esn`{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}) On Match Set _usn3+=07 In Count ( * ) In \"d_str\" Match (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0) Remove (usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})._usn4?,usn1:`3esn`:`1esn`,{`2esn`:9e1 In 01 In 999,`5esn`:$@usn6[..$usn1]}.@usn5!;"), - octest:ct_string("Return *,0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str' Order By [`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) Descending,$123456789 Ends With .e0 Ascending,({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) Desc Skip 0X0123456789ABCDEF[.e0..$`4esn`] Remove {usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}.`4esn`,Single(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`).`8esn`? Create (:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}),((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ))"), - octest:ct_string("Merge (({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:usn1{`8esn`:usn1 Contains $``})) On Create Set usn2:usn1,None(_usn4 In usn1 Contains False Contains `` Where .12 In $999 In `5esn`).usn2 =9e0 In 01234567,`8esn` =$@usn5 Ends With 0X0123456789ABCDEF Remove None(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567).`8esn` Remove [$`2esn` =~'s_str',12 Ends With 01234567,$1000 Is Null Is Null].`3esn`?,[12.e12[...0][..0x0]]._usn4,(`1esn` :`8esn`)<-[#usn7:`3esn`|:`4esn` *00..]->(`4esn` :`8esn`)-[`4esn`? *0Xa]-(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}).`3esn`? Union All Return Distinct .e12[.12..][_usn4..] As _usn4 Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Delete usn1 Contains False Contains ``,12e12[0.e0][9e1] Return *,[`4esn` In 's_str'[12..'s_str'] Where 9e1 Contains $`3esn` Contains 01234567][[7[..12e12][..$`6esn`]]..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}],$999 Ends With $`3esn` Ends With `8esn` Order By .12[..$`6esn`] Descending,@usn6(Distinct Null[0e0][12])[..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]]][..`8esn`(010 =~`6esn`)] Descending Skip Count(*)[True] Limit 0xabc Ends With $7 Ends With $`2esn` Union All Merge (((`1esn` :`8esn`)-[_usn4:`7esn`|`2esn`]-(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3}))) On Match Set Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`` Is Null Is Null)._usn4! =$@usn6[..$#usn7][..12.e12],{`4esn`:00 In 12.e12,@usn6:12e12[Null]}.`` =$`8esn` In \"d_str\" In 9e12 On Match Set @usn5+=`1esn`[9e12..$`8esn`][usn2..$``],usn1 =[12.e12 Ends With 01 Ends With .e1,$@usn5[0.12..][@usn5..],$usn1 In 1000 In $#usn7] Is Not Null Merge (((usn2 :#usn7)<-[`7esn`?:@usn5|`8esn`]-(`1esn` :``)-[`6esn`:`4esn`|:`7esn` *1000..{`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}))) Remove Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`5esn`"), - octest:ct_string("Return Distinct 123456789 =~$123456789 Order By 00 Is Null Is Null Descending Skip [\"d_str\" Starts With $usn1,.12 Contains $`4esn` Contains $`6esn`,01234567 =~usn1] Is Null Is Null Match `5esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)),`1esn`=(((:_usn3{@usn6:$`7esn` Is Null Is Null})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)<-[`3esn`? *999..{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`}]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) With Distinct $999[$1000] As `4esn`,[`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Order By #usn8 Ends With $@usn6 Ends With _usn4 Ascending,9e0 =~$`5esn` Descending,[\"d_str\" Starts With $usn1,.12 Contains $`4esn` Contains $`6esn`,01234567 =~usn1] Is Null Is Null Descending Limit .12[`1esn`..][$`3esn`..] Where `1esn` In 999 In $#usn7 Union All Return `2esn` Contains $999 As #usn7,$123456789[False.._usn3] As `1esn` Order By [@usn6 In @usn5 In $`6esn` Where $999[$1000]|$7[.12]] In {`1esn`:$@usn6 Contains 07 Contains 0.e0} In (`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) Ascending,00[.e1..] Desc Skip 9e1[.12..] Create (`7esn` {_usn3:usn1 Contains $``})<-[usn1]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12}),`8esn`=((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Merge ((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) On Match Set `7esn`+=.e1[..$`4esn`][.._usn4],`4esn`+=@usn6[$`8esn`][12.e12],@usn5+=1000 Contains $#usn7 Contains `6esn`"), - octest:ct_string("Return Distinct $`4esn`[$`2esn`..] As #usn8,#usn8 In $0,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Limit Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`6esn`[$@usn6..]) In {`7esn`:12e12 Ends With 010 Ends With .0} In None(#usn8 In $`5esn` Is Null Is Null Where 123456789 In $usn2 In `6esn`)"), - octest:ct_string("Return Distinct *,[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As `7esn` Order By 00 Is Null Is Null Descending,$usn2 Starts With $`6esn` Starts With 0xabc Ascending,123456789 Starts With #usn7 Starts With `6esn` Asc Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`) Limit 0x0 Contains _usn4 Contains 123456789 Unwind Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4)[..`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)][..{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}] As #usn7 Remove ({`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[ *..0x0{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}]-(`5esn` {`8esn`:0.0[12...12]}).``!,Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null).``!,usn1:`8esn` Union Detach Delete (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)[Filter(@usn6 In @usn5 In $`6esn` Where $999[$1000])..][#usn7($`8esn`[``..][123.654..],12.e12 Contains `5esn`)..],{`8esn`:@usn5[..True][..0X7],`1esn`:`1esn` Contains Count ( * )}[{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)] Unwind 999 Contains `7esn` As @usn5 Return Distinct Single(#usn7 In 01234567[$`3esn`..]) Is Null As `3esn`,$`1esn`[9e1.._usn4][$999..$`2esn`],Single(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7])[None(`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789])..@usn6(Distinct True =~@usn5 =~$`1esn`,.12 Starts With $usn2)] As `4esn` Skip Count(*)['s_str'..`1esn`] Limit Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])[..[True =~@usn5 =~$`1esn`]][..Any(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`)] Union All Delete Extract(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|Null Starts With $`7esn` Starts With `2esn`) =~{`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0},0x0 Starts With $`7esn` Starts With `2esn` Detach Delete 12e12[$`5esn`][07],0.e0[9e0][0e0];"), - octest:ct_string("Create (`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) Union Return [@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] As `3esn`,`` =~12 =~$#usn7,False Is Not Null Is Not Null As `2esn` Skip 999[$usn2..] Limit 00 In 0.12 In `5esn`"), - octest:ct_string("Optional Match ((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` )),(({_usn3:$0 Ends With $#usn7 Ends With .12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[?:``|:_usn4 *..0X7]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})) Where $`7esn` Ends With 07 Ends With 07 Return *,$`4esn`[12.0..`5esn`] Order By 0.e0 Ends With 12 Ends With $7 Descending,$`6esn` Is Not Null Is Not Null Desc Skip 0.0[1000..][.e1..] Limit `2esn` Is Not Null Is Not Null Merge `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) On Match Set usn2+=$`4esn`[9e1..][0..],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null},(usn1 :#usn7)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->(`4esn` {`7esn`:.e0[..999][..0X7]}).usn2 =$`3esn`[`2esn`...e0] Union Detach Delete @usn6[..0xabc][..$#usn7],None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]) Ends With None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With @usn6($123456789[0.0..]) Union Remove Extract(`4esn` In `6esn`['s_str'..][010..] Where 12.0 Contains 0.e0)._usn4?,{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}.`1esn`!,`5esn`:`8esn`"), - octest:ct_string("Create ((:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})),({`5esn`:123456789 Starts With `2esn` Starts With .0})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})<-[`` *12..0xabc]->(`3esn` :_usn4:usn1) Create #usn7=((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 )),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) Union Merge (#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}) On Create Set `2esn` ={`4esn`:0X7 =~.0 =~\"d_str\",_usn4:00 Ends With $_usn4 Ends With $`2esn`} Ends With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Ends With [$`3esn`[@usn5..$123456789],00,'s_str'[.12..$#usn7][$999..`2esn`]],#usn8 =`3esn`[$123456789][$#usn7];"), - octest:ct_string("Delete (`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1),`` Contains 12 Contains True,07[12][$`6esn`] Union All With Distinct $@usn6 Contains 0 Contains $`2esn`,(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) Is Not Null Is Not Null As #usn7,True[Count(*)..][1e1..] Unwind All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] As `` Unwind [0 Is Null Is Null][..[_usn3 =~00,9e1 Is Null Is Null]] As usn2"), - octest:ct_string("Unwind $@usn5[Count ( * )] As #usn7 Detach Delete 999 In 12 In \"d_str\",$`5esn` Contains Count(*) Contains #usn7"), - octest:ct_string("Merge usn2=((`3esn` :`4esn`:#usn8)<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})) On Match Set #usn7 =Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]} On Create Set `1esn` =Null[0.e0..0x0] Optional Match ({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}),(usn2 :`2esn`:`3esn`)-[`7esn`?]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) Where 0Xa Is Null Is Null Delete 1000 Contains 123456789 Contains 1e1,(`6esn` :`3esn`:`1esn`{_usn3:1e1[.e1..],`1esn`:$#usn8})-[`4esn`:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]-(`5esn` :#usn7)-[ *..0X7]->(`5esn` :_usn4:usn1) Starts With None(@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2) Starts With [.0 =~$#usn8 =~.0,0e0 Is Not Null Is Not Null,_usn3[.0]],0e0"), - octest:ct_string("Merge ((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Delete $usn2 Starts With $`6esn` Starts With 0xabc"), - octest:ct_string("Return Distinct $_usn3[9e1][$_usn4],None(usn2 In 1000 Contains 0.e0 Where $`6esn`[Count(*)..0.e0][0.0..Count ( * )])[(:usn2:@usn6{@usn6:$`4esn`[$`2esn`..]})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})][Any(@usn6 In @usn5 In $`6esn` Where 12.0[0Xa][00])] As `5esn`,0X0123456789ABCDEF Contains 12.e12 Contains 999 Limit $@usn6 In $`5esn` In $usn2 With \"d_str\" =~`6esn` =~0Xa,.e1[usn1..] As `6esn` Union All Create `6esn`=((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})) With Distinct *,`7esn` In 999 In @usn6,00 Is Null Is Null Order By None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`)[`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)..] Desc,$`3esn` In $12 In 's_str' Asc Skip $123456789 Is Null Is Null Limit .e0 =~`5esn` Unwind $usn2[False..`7esn`][`7esn`.._usn3] As _usn4;"), - octest:ct_string("Return .0 Starts With `2esn` Starts With `6esn` As _usn4,_usn4[$`4esn`..] As `7esn`,\"d_str\"[Count ( * )] As `7esn` Limit 0.e0[123.654] Union Merge ``=((({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[usn2?]-(`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))) On Match Set `7esn`+=0.e0[`6esn`...e0][9e12...e12],`5esn` =0x0 Contains _usn4 Contains 123456789,`8esn` =0xabc Starts With _usn3 On Match Set #usn7:``,({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})<-[?:@usn5|`8esn` *..0X7]-(:usn1).`4esn` =`6esn` Starts With $`5esn`,[`6esn` In 0X7 =~`` Where 0.12[Null..]]._usn4 =Count ( * )[`3esn`..][`2esn`..] Remove [_usn3 Ends With 0x0 Ends With 01234567,9e0[$_usn3..0X7][7..$#usn8]].`6esn` With Distinct *,`3esn` =~`3esn` =~$`6esn` As `7esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 123456789[$#usn7..]) Contains [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1] Skip .12[..`6esn`][..\"d_str\"] Limit [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] Where @usn6[$`7esn`] Union All Return Distinct *,01234567 Starts With $_usn4 As `1esn`,Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789} Order By [@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Ascending,0.0[Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|_usn3 Ends With 12e12 Ends With .e0)][None(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5)..{@usn6:.12 Starts With 0Xa}] Asc Limit 0x0 Is Not Null Is Not Null Create (`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0}) Return Distinct *,[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As `7esn` Order By 00 Is Null Is Null Descending,$usn2 Starts With $`6esn` Starts With 0xabc Ascending,123456789 Starts With #usn7 Starts With `6esn` Asc Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`) Limit 0x0 Contains _usn4 Contains 123456789;"), - octest:ct_string("Merge (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Merge ((`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) Remove Single(`4esn` In $`8esn` Starts With 1000 Where `6esn`['s_str'..][010..]).@usn5,(usn2 :`3esn`:`1esn`)-[ *..7]-(usn1 :`4esn`:#usn8)-[?:`3esn`|:`4esn`]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`3esn`,(:`1esn`{_usn4:$_usn3[Null]})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]-(`2esn` :#usn7)-[:usn2|#usn8 *01234567..12]-(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})._usn3 Union Unwind Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] As `2esn` Merge `4esn`=(:`5esn`{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(_usn4 );"), - octest:ct_string("Return Distinct *,1.e1 Contains @usn6 As usn2 Order By (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Ascending,Single(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`) =~Extract(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) =~Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]) Asc,0.0[999..] Asc"), - octest:ct_string("Optional Match ((:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})),`1esn`=((@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) Where 0 Ends With $7 Ends With _usn3 Unwind `6esn`[..`5esn`] As #usn8"), - octest:ct_string("Optional Match `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Where `7esn` In 999 In @usn6 Union Unwind usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`]) Is Null As `3esn`"), - octest:ct_string("Optional Match (((`2esn` :``)-[?:`3esn`|:`4esn`]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`2esn`?]-(:usn2:@usn6{_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]}))),usn2=((#usn8 :`4esn`:#usn8)-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)) Where 01234567[$`3esn`..] Union With *,$@usn6 =~usn1 As `1esn` Limit .0[$`6esn`..False] Where 0.12[0.e0..][`4esn`..] Union Merge usn1=((:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[#usn8? *0xabc]-(#usn8 :`4esn`:#usn8)) On Match Set #usn7($123456789 Contains 01 Contains 0.12).usn2! =.e12 =~0.0 =~9e0,All(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1).`4esn` =$999[12.0..],`8esn`+=Filter(_usn4 In usn1 Contains False Contains `` Where 9e0 =~$`5esn`) =~``($`4esn`[usn1..$#usn8][12.0..`3esn`]) =~Single(usn2 In 1000 Contains 0.e0)"), - octest:ct_string("Create (`2esn` :``)<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(_usn3 :_usn4:usn1),`8esn`=(`4esn` {@usn5:1e1 In $#usn8 In 12e12})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`7esn` {`8esn`:$123456789 Contains 01 Contains 0.12})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8) Remove (_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`).usn2,[`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]|12 Is Null Is Null].#usn8? Detach Delete 0X0123456789ABCDEF Contains 12.e12 Contains 999,0X0123456789ABCDEF In $1000 In $`3esn`,'s_str' Is Not Null Is Not Null"), - octest:ct_string("Remove `3esn`:_usn3,{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}._usn3? Union Merge ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})) On Create Set usn1+=$@usn6 In $`5esn` In $usn2 On Match Set @usn6+=(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}]"), - octest:ct_string("Unwind 12e12[0.e0][9e1] As usn2 Return Distinct *,12 Is Null Is Null As #usn7,$`7esn` Ends With $0 Ends With .e12 As `` Order By $0[01234567..00][$`2esn`..$@usn6] Desc,12.e12['s_str'] Desc,123456789 Starts With #usn7 Starts With `6esn` Asc Limit 999 In 9e1 In 7 Union All Unwind `6esn` Is Not Null As `4esn` Remove [usn1 In 0x0[..`4esn`]|`` Starts With @usn5].`6esn`?,(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})._usn4? Return `8esn`[_usn3..$#usn7],({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn` Skip `7esn` Starts With $usn2 Starts With .e0 Limit 00 Is Not Null Is Not Null"), - octest:ct_string("Remove #usn8:_usn3,None(usn1 In 0x0[..`4esn`] Where False[.e1..Null]).``,@usn5:#usn7 Remove Extract(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`).`6esn`?,Extract(@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null|@usn5 Starts With 12e12 Starts With @usn5).`2esn`?,[Count ( * )[Count ( * )..12e12][usn1..1000],12e12[$`5esn`][07],$_usn3[9e1][$_usn4]]._usn4 Union All Merge `1esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) On Match Set #usn7:``,({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})<-[?:@usn5|`8esn` *..0X7]-(:usn1).`4esn` =`6esn` Starts With $`5esn`,[`6esn` In 0X7 =~`` Where 0.12[Null..]]._usn4 =Count ( * )[`3esn`..][`2esn`..] On Match Set `6esn`+=0X7 =~``,{usn1:$usn2 Is Not Null,`4esn`:0xabc[$@usn5]}.`8esn` =`3esn`[..7][..12e12] Create #usn7=(`3esn` :`8esn`{usn1:`2esn`[$`3esn`..],`6esn`:$12[..``][..$7]})-[@usn5?:``|:_usn4]-(`8esn` :#usn8)<-[?:``|:_usn4]-({`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12}) Unwind 123456789 Starts With #usn7 Starts With `6esn` As `7esn` Union Optional Match `8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`}) With (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Order By [$12[01..][1.e1..]][[usn1 In 00 Starts With _usn3 Where 00]..@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12)] Desc,[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|#usn7 Starts With `1esn`][[@usn5 In .12[#usn7][$`8esn`] Where 0.12 In $`4esn` In `6esn`|$`1esn` Starts With @usn6]..][$`1esn`..] Ascending,{#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null Asc Skip Null[0.e0..0x0];"), - octest:ct_string("Detach Delete 010 Starts With `7esn` Starts With 9e1 With `` Contains 12 Contains True Order By #usn7 Starts With 0 Starts With 12 Asc Skip True =~@usn5 =~$`1esn` Union All With Distinct $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Order By $12[01..][1.e1..] Descending Skip .12[.e12..0.e0][0.e0..$`2esn`]"), - octest:ct_string("Merge (({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})) With Distinct *,#usn8 Is Not Null As _usn4 Skip {@usn5:$@usn6[..$usn1],`1esn`:usn2[`3esn`][_usn3]}[..Any(`4esn` In 's_str'[12..'s_str'] Where Null Contains _usn4)][..{`7esn`:True[..'s_str'][..01]}]"), - octest:ct_string("Merge usn1=((`3esn` :``)<-[`4esn`]->(`7esn` :#usn8)<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(_usn4 )) Remove ({#usn8:12.0[..$7][..999],@usn5:$`1esn` Is Null})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`})<-[_usn3:usn2|#usn8]-({`3esn`:`3esn` =~0.0 =~$``,`3esn`:@usn6 Contains .e1 Contains $`4esn`}).usn2?,Extract(`6esn` In 0X7 =~`` Where 0X7[..12e12]|00).@usn6! Delete $`5esn` Is Null Is Null,True[`4esn`][$`6esn`] Union All Unwind usn2[..$`3esn`] As `6esn` Union All Return Distinct 07[07] Skip $`4esn` Contains 0Xa Limit 00[.e0..9e1] Merge (:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]})"), - octest:ct_string("Merge `6esn`=((`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})) On Create Set [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]].`1esn` =9e12 =~01 =~$`7esn` On Match Set Single(`6esn` In 0X7 =~`` Where 9e1[0.e0..][#usn8..])._usn3! =0X7 =~`4esn` =~`8esn`,`4esn` =0.12 =~9e0"), - octest:ct_string("Remove [.0 Is Null Is Null,Null Starts With _usn4 Starts With `6esn`].#usn7?,[#usn7 In 01234567[$`3esn`..] Where $999[12.0..]].@usn5!,[12e12[.12..],`2esn`[$`1esn`..][$_usn3..]].usn2? Detach Delete All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],`1esn` Contains Count ( * ) Match usn1=((:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[#usn8? *0xabc]-(#usn8 :`4esn`:#usn8)),#usn7=(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})))"), - octest:ct_string("Return Distinct *,$@usn6[..$usn1] As @usn6 Order By `3esn` =~0.0 =~$`` Ascending Skip (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]) Limit 0.e0[@usn6][0x0] Union Create `1esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})),((#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)-[`6esn`:``|:_usn4 *..01]->(`5esn` :#usn7)) Create (#usn7 :@usn5)<-[@usn5*]->({``:$1000 Is Null Is Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(`7esn` :`2esn`:`3esn`) Return *,$@usn6[..12e12],`8esn` Ends With 0X0123456789ABCDEF Ends With `1esn` As usn2 Skip 1000[..$`6esn`][..0xabc] Limit $`8esn`[..$``] Union Optional Match `4esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}),(((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Where $_usn3[..Count ( * )][..@usn5] Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..]"), - octest:ct_string("Match `8esn`=((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})) With Distinct [@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2] Is Null,00[7..$123456789] Order By $`1esn`[`2esn`..0.12][$usn1..Count ( * )] Desc,#usn8 Contains .e0 Contains $`8esn` Ascending,@usn5 In $`6esn` Descending Skip [$_usn3[$`4esn`..Null],0x0 Contains $`8esn` Contains `6esn`,\"d_str\" =~`6esn` =~0Xa] Contains [@usn6 Starts With `7esn` Starts With Null] Contains `6esn`(Distinct $`4esn`[usn1..$#usn8][12.0..`3esn`],12.e12['s_str']) Return Distinct #usn7 Starts With 0x0 Starts With Null,{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}[Extract(_usn4 In usn1 Contains False Contains `` Where `5esn`[.e1][0Xa])..],[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As @usn5 Limit All(@usn5 In .12[#usn7][$`8esn`] Where $`5esn` Contains $@usn6) Is Null Is Null Union Delete `6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),$@usn6[..$#usn7][..12.e12],.e0[`4esn`..`4esn`][0.0..$0] Delete 12.e12 In $1000,{_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]},$999 Ends With $`3esn` Ends With `8esn`"), - octest:ct_string("Create ((`1esn` :usn2:@usn6)),`3esn`=(usn1 :`6esn`:`7esn`) Merge _usn3=(((:@usn5{#usn7:1e1[@usn5..]})-[:#usn8 *..0X7]->($12)-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]}))) Delete 7 =~9e0 =~'s_str' Union Merge (({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})) On Create Set `1esn` =0X0123456789ABCDEF[.e0..$`4esn`] On Create Set @usn5(Distinct 12e12[_usn3..][$@usn5..],7 Contains 9e1).`6esn` =$@usn5 In 12e12 In Count(*) Unwind `8esn`[$``] As `3esn` Union All Remove {_usn4:\"d_str\"}._usn3,`8esn`(Distinct 00 In 1e1).usn2! Return Distinct *,`5esn` =~0Xa,[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4 Skip $`4esn` Contains 0Xa Limit $_usn3 =~`7esn` =~$_usn4 Unwind 123456789 =~_usn4 =~$0 As usn1;"), - octest:ct_string("Remove (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})<-[usn2?:usn1|`3esn`{`7esn`:0xabc Ends With $#usn7 Ends With #usn8,@usn5:$#usn8}]->(`3esn` :#usn8).usn2 Union All Detach Delete 07[0..`4esn`] Unwind `8esn`[$``] As `3esn` With Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])[All(#usn7 In 01234567[$`3esn`..] Where Count(*)[.e0.._usn4])..][None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..])..] As @usn6,0X0123456789ABCDEF Contains 12.e12 Contains 999 Order By 9e1[0.e0..][#usn8..] Asc,$0 =~`3esn` Asc Limit False Is Null Where 0Xa Is Null Is Null"), - octest:ct_string("Return 07 Ends With 07 As #usn8,00[``..][$`4esn`..],$usn2 Is Not Null Is Not Null Limit {`4esn`:0X7 =~.0 =~\"d_str\",_usn4:00 Ends With $_usn4 Ends With $`2esn`} Ends With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Ends With [$`3esn`[@usn5..$123456789],00,'s_str'[.12..$#usn7][$999..`2esn`]] Detach Delete 07[0..`4esn`] Unwind [@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] As `7esn` Union All Create ((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 )) Union Unwind _usn3[.0] As _usn3 Create `1esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[? *999..]-(`` :`1esn`),((`5esn` :#usn7)<-[?:usn2|#usn8 *1000..]->(@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]}))"), - octest:ct_string("Unwind .e12 Starts With True As `7esn` Unwind $_usn3 =~`7esn` =~$_usn4 As `5esn` With Distinct *,{`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] Order By 9e1 Starts With _usn3 Starts With `4esn` Descending,usn2(Distinct _usn3 Contains @usn6 Contains 1.e1)[Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where _usn3 Is Null)..[12e12[0.e0][9e1]]][Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``])..Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)] Descending Limit 0 Starts With 12e12 Starts With `4esn` Union All Delete 00 Starts With _usn3,(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})[Single(`4esn` In 's_str'[12..'s_str'])..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)],count(Distinct 's_str' Starts With 1000 Starts With #usn8,12e12 Starts With $123456789 Starts With 12.0)[[_usn4 In usn1 Contains False Contains `` Where $#usn8]][[$`1esn` Is Null,\"d_str\" =~`6esn` =~0Xa,$usn2[0e0..]]];"), - octest:ct_string("Merge `4esn`=(((:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[ *010$123456789]-(`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})<-[? *..0x0]->(`` :usn1))) On Create Set [@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]].`1esn`! =999[$usn2..],#usn7+=0X7 In 123456789 In $`5esn` On Create Set #usn7 =$123456789 Is Not Null Is Not Null,[12 =~usn1 =~.e12].usn2? =$_usn3[..$_usn3][.._usn4],`6esn`+=usn1[$`3esn`..$999][True..False];"), - octest:ct_string("Detach Delete Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Detach Delete 0x0[$`3esn`],07 In $7 In 12 Union All Remove Extract(usn1 In 0x0[..`4esn`] Where $`2esn`[123456789..][00..]).#usn7? Union With @usn5 Starts With 12e12 Starts With @usn5,$1000 =~$`7esn`,\"d_str\" Starts With $usn1 As `7esn` Order By $0[..`8esn`] Desc,Count(*) Starts With 1e1 Starts With $123456789 Ascending,12e12[$`5esn`][07] Desc Limit Single(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8)[{_usn3:$0 Ends With $#usn7 Ends With .12}][[12.0[0Xa][00],.0[01][$12]]] Unwind `2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As `4esn`"), - octest:ct_string("Merge (`4esn` {`2esn`:@usn6[`5esn`..$`3esn`],`7esn`:$`1esn` Is Null})<-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]-(`2esn` {`3esn`:$999[12.0..]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}) On Match Set (`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[? *0..010]-(#usn8 :`4esn`:#usn8).usn1! =`7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4},@usn6+=$usn2[12..$`7esn`][$0..$`7esn`],Any(_usn4 In usn1 Contains False Contains `` Where _usn4[$`4esn`..]).#usn7 ={@usn6:12.0[``],_usn4:$`3esn` Contains 0X0123456789ABCDEF Contains 00} Ends With Single(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Ends With Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999|12.0[``]) Union All Match ((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[? *0..010]-(#usn8 :`4esn`:#usn8)),`1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}) Match `3esn`=((:#usn8{_usn4:\"d_str\"[Count ( * )],`2esn`:9e0 Ends With $`7esn`})) Union All Delete ({`2esn`:$usn2 Is Not Null})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})[{_usn4:.12 =~.12 =~1e1,#usn7:.e1 Starts With 0.0 Starts With `6esn`}],1000[123.654..9e12][1000.._usn3]"), - octest:ct_string("Merge `1esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[? *999..]-(`` :`1esn`) On Create Set `4esn`+=01234567[.12..7][1000..1.e1],``(`` In `6esn`).@usn6 =`1esn` In 999 In $#usn7,`7esn` =9e12 On Match Set `2esn` =$usn2[False..`7esn`][`7esn`.._usn3],``+=_usn4 Ends With 01 Ends With $`1esn`,``+=01 Ends With .e0 Remove [usn1 In 00 Starts With _usn3].#usn8?,Extract(`4esn` In `6esn`['s_str'..][010..] Where $999 Ends With $`3esn` Ends With `8esn`|0x0 =~$`7esn` =~@usn6).@usn5?,[usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`|$`8esn`[$``..$7][$1000..$`7esn`]].`3esn`! Remove {`2esn`:usn2[`3esn`][_usn3]}.`5esn`?,Extract(`4esn` In `6esn`[1e1..] Where 12[`7esn`...0][0.12..``]|@usn6 Starts With `7esn` Starts With Null).@usn5,Extract(`4esn` In $`8esn` Starts With 1000 Where `5esn` In 12|010 Contains 0X0123456789ABCDEF).`2esn` Union Optional Match `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Where `7esn` In 999 In @usn6"), - octest:ct_string("Merge `2esn`=(:usn1{`8esn`:usn1 Contains $``})-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1})-[ *010{@usn5:Null Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] Unwind Extract(usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`) Contains [0 Contains 12e12,0xabc Ends With $7 Ends With $`2esn`,0x0 =~_usn4] As `7esn` Union Unwind Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) As usn2 Optional Match `1esn`=((usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) Where _usn4 Starts With 0X7 Merge usn1=(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(usn1 :#usn8)<-[ *..0x0{`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) On Match Set `2esn`+=123.654 In \"d_str\" In $_usn3 Union Match ((:_usn3{usn2:$`5esn`[$123456789][`1esn`]})),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})) Where $0[$#usn8..01234567]"), - octest:ct_string("With Distinct $#usn8 In .e12 In 9e1 Order By All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..] Asc,0Xa[0xabc..] Ascending,@usn6[$`3esn`] Ascending Skip 1e1 In $#usn8 In 12e12"), - octest:ct_string("Detach Delete All(_usn4 In usn1 Contains False Contains `` Where $`4esn`[$`2esn`..])[..Single(usn1 In $123456789 Contains usn2 Where $usn1[0.12..]['s_str'..])][..``(Distinct `1esn`[0e0..])]"), - octest:ct_string("Remove Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0)._usn3!,[`4esn` In 's_str'[12..'s_str'] Where 0.12 In 01 In $`3esn`|9e0 =~$`5esn`].`3esn`! Union All Optional Match `1esn`=((:`8esn`)-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`{#usn8:Null[0e0][12],`2esn`:`8esn` In $@usn5}]-({_usn3:999 In $_usn4 In 0X7,`1esn`:1e1 In $#usn8 In 12e12})) Optional Match `3esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}),`5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Where 0e0 Remove {`7esn`:True[..'s_str'][..01]}.`1esn`!,`2esn`:@usn5,({`1esn`:@usn6})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1}).@usn5?"), - octest:ct_string("Delete #usn8 Ends With $@usn6 Ends With _usn4,Count(*)[12.e12..],{`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Create (#usn7 :`6esn`:`7esn`)<-[`3esn`?:_usn3|:`4esn`]->(:`1esn`{_usn4:$_usn3[Null]})-[ *..0X7]->(`5esn` :_usn4:usn1),usn2=(`8esn` :#usn8)-[usn2?]-(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]}) With $_usn4[$`1esn`] As `5esn`,(:`5esn`{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[usn1 *..0x0]->(usn1 :`6esn`:`7esn`)-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})[..[07[$999],@usn6[$`7esn`]]][.._usn4(0X7 In $@usn5 In 9e0)] As `6esn`,All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..] As `5esn` Order By True[0x0][@usn6] Ascending,$`5esn` Contains $@usn6 Desc Skip Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null Limit _usn3 In $#usn8 In usn1 Where 's_str'[..0.e0][..`1esn`] Union All With Distinct $999[$1000] As `4esn`,[`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Limit {`8esn`:@usn5[..True][..0X7],`1esn`:`1esn` Contains Count ( * )}[{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)] Where $_usn4[12e12][`4esn`] Delete [True[..'s_str'][..01]] In Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999]) In All(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`]),$`5esn` Starts With _usn3 Starts With @usn5 Return None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) As _usn3"), - octest:ct_string("Delete .12[`1esn`..],usn2 Starts With @usn6 Union All Create `4esn`=((`` :`1esn`{@usn5:@usn5 Starts With 12e12 Starts With @usn5})-[`6esn`:`8esn`|:usn1$_usn3]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})) With Distinct *,{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)] Order By .e1 Starts With $`8esn` Asc Limit $#usn7 In .e1 In 01 Where `5esn`[`1esn`..`1esn`] Union All Remove All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.e12 Contains `5esn`).`6esn`? Match (@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Remove Any(#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7).`3esn`?,{`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`}.`4esn`!"), - octest:ct_string("Return Distinct 1e1[..#usn7][..#usn7],0[0.12..] As @usn5 Order By (_usn3 :`6esn`:`7esn`{usn1:$_usn3[9e1][$_usn4],`8esn`:123456789 =~_usn4 =~$0})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-({`1esn`:@usn6}) In _usn3(0x0[0X7..][usn1..]) In None(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str') Descending,[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Desc Skip Single(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) In [$123456789 Contains usn2,010 Is Null Is Null,`7esn` Starts With $usn2 Starts With .e0] In `2esn`($`5esn` Is Not Null,7 In $`3esn` In #usn7) Union Merge `3esn`=(usn1 :`7esn`)<-[? *00..{`6esn`:$@usn6[_usn3..0.e0]}]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}) On Create Set `1esn` =0X0123456789ABCDEF[.e0..$`4esn`] On Match Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] Return *,{`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])] As `3esn` Limit All(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..]) Is Null Is Null Union Merge `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) On Create Set `4esn` =010 In `7esn`,usn2+=0.e0[@usn6][0x0] Optional Match ((`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})<-[?{`8esn`:_usn3 Ends With 0x0 Ends With 01234567,#usn8:$`7esn` Is Null Is Null}]->(:``{#usn8:$`2esn`[..`2esn`]})<-[@usn5:#usn7|:_usn4]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})),_usn3=(`6esn` :`7esn`)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]}) Where @usn6[`3esn`..][$7..] Optional Match `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) Where usn1 In 1000 In $`5esn`"), - octest:ct_string("Unwind Any(@usn6 In @usn5 In $`6esn` Where $@usn5 In 12e12 In Count(*)) Contains [_usn4 In usn1 Contains False Contains `` Where 0.12 In $7 In 0] Contains Any(`4esn` In `6esn`['s_str'..][010..] Where 12.e12 Ends With 01 Ends With .e1) As #usn8"), - octest:ct_string("Detach Delete `2esn` In Count(*) In 9e0,$usn2[False..`7esn`][`7esn`.._usn3],999[``..][Null..] Create ((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})),(`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[? *..0X7{`3esn`:`8esn`[$``]}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})-[?:usn1|`3esn`{#usn8:1000[..$`6esn`][..0xabc]}]->(usn1 :_usn3{@usn6:True[..'s_str'][..01]}) Remove ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`5esn`? *010]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null}).`7esn`! Union All Optional Match #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`1esn`=(((`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}))) Where 010 Contains Count(*) Return Distinct *,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] As @usn6 Order By 010 Starts With `7esn` Starts With 9e1 Ascending,123456789 Is Null Descending,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] Desc Skip {#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null Match #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`) Where $`2esn`[..`2esn`] Union All Match ((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})),((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)) Where 123456789[1000] Return Distinct *,010 =~`6esn` As `4esn` With 1000 Contains $#usn7 Contains `6esn`,12.0 Contains 0.e0 As `6esn`,$12[..7][..07] As #usn8 Order By Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending Skip All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)[[usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1]] Limit 0xabc Starts With _usn3"), - octest:ct_string("Create `1esn`=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(usn1 :`4esn`:#usn8{``:0 Is Not Null Is Not Null,`3esn`:usn1 Starts With $#usn7 Starts With `5esn`})) Match @usn6=(((`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}))) Where `7esn`[1e1..07][0x0..Count ( * )] Merge `5esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) On Create Set `1esn`+=_usn4(Distinct `7esn` Starts With $usn2 Starts With .e0) =~`3esn`() =~#usn8(9e0 Ends With $`7esn`) Union Match (((:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]})<-[? *..0x0]->(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})-[? *..0X7{`3esn`:`8esn`[$``]}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}))) Where True[`4esn`][$`6esn`] Unwind 9e12 =~01 =~$`7esn` As usn1 Union All Detach Delete `7esn`[$999][7] Return Distinct 12.0 Contains 0.e0 As `6esn`,Count ( * ) In 010 Order By @usn5 Contains 01 Contains 12 Ascending Skip `2esn`($`4esn` Starts With 1e1) Ends With None(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) Ends With Filter(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Limit 0.12 Ends With $usn1 Ends With $@usn5 Unwind 12.e12 Contains $`5esn` As #usn7"), - octest:ct_string("Return Distinct Single(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`) Is Null As `8esn` Order By @usn5 Is Not Null Is Not Null Ascending,00[``..][$`4esn`..] Desc,usn2 Ends With $`5esn` Ends With `2esn` Asc Skip [usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..] Union Optional Match (`5esn` {_usn4:0X7 =~``}),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null}))"), - octest:ct_string("Unwind True Is Not Null As `` Remove Extract(`4esn` In $`8esn` Starts With 1000 Where `5esn` In 12|010 Contains 0X0123456789ABCDEF).`2esn`,{#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}.`2esn`! Create (_usn3 :_usn4:usn1)<-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(:@usn6:`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}),#usn8=(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[usn1?:`8esn`|:usn1]->(`2esn` {usn2:$999[12.0..]})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Union All Unwind _usn4 Is Not Null Is Not Null As `2esn` Union Create _usn4=(usn1 :_usn4:usn1)<-[`5esn` *0..010]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) With Distinct *,$_usn4[#usn8..] As `3esn` Order By $usn2[0e0..] Ascending,$0 =~`3esn` Descending Skip [\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Where _usn3 =~00 Detach Delete Any(#usn7 In 01234567[$`3esn`..] Where 00 In 1e1)[[usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0|0xabc[12.e12..`1esn`]]..][[@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2]..],12.e12 Ends With 01 Ends With .e1,07[12e12]"), - octest:ct_string("With (_usn3 :`6esn`:`7esn`{usn1:$_usn3[9e1][$_usn4],`8esn`:123456789 =~_usn4 =~$0})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-({`1esn`:@usn6}) In _usn3(0x0[0X7..][usn1..]) In None(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str') As _usn4 Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending Skip 07[12][$`6esn`] Where $1000 Contains $`3esn` Remove [12e12 Starts With $123456789 Starts With 12.0].usn1 Merge (((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) On Create Set @usn6 =`3esn`[..7][..12e12]"), - octest:ct_string("Unwind Count(*)[`7esn`..$12] As `1esn` Union Optional Match `7esn`=(@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Union With Distinct *,$usn2[..12.0],$`2esn`[``..] As `3esn` Skip _usn3[.0] Match (`1esn` :`1esn`) Unwind $@usn5 Contains $`7esn` Contains #usn8 As ``"), - octest:ct_string("With Distinct .12[#usn7][$`8esn`],12 Ends With 07 Ends With @usn6 As usn1 Order By $999[..`1esn`] Ascending,Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending,[$`8esn` =~$usn2][Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..] Asc Create #usn8=((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Match (({#usn7:Count ( * )[@usn6..0x0]})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})) Where 0X7[0e0..] Union Create #usn8=((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Remove `8esn`(Distinct 00 In 1e1).usn2!,Single(`4esn` In `6esn`['s_str'..][010..] Where 0e0 Is Not Null Is Not Null).`7esn`! Union Return Distinct Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0]) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where Count(*)[True]) In Extract(`4esn` In 's_str'[12..'s_str'] Where 0xabc Ends With $#usn7 Ends With #usn8|.e1 Starts With 0.0 Starts With `6esn`) As #usn7,@usn5 Starts With \"d_str\" As `` Match ((`7esn` :`2esn`:`3esn`{@usn6:9e0 Ends With $`7esn`})),`6esn`=((`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]}))"), - octest:ct_string("Merge ((:#usn8)<-[`2esn`?]-(:usn2:@usn6{_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})<-[`5esn`? *999..{#usn7:0X7[12]}]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})) On Create Set `4esn` =.e12[.12..][_usn4..] On Create Set #usn7+=$123456789[0.0..] Detach Delete {`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)],({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) In None(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn8 Ends With `4esn` Ends With $`4esn`) In Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`]) Union Merge usn2=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) On Create Set None(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0).`4esn`! =0[usn2..],[@usn6[$`3esn`]].`4esn` =01 In _usn3 In 12,`1esn`+=123456789 =~usn1"), - octest:ct_string("Remove All(#usn8 In $`5esn` Is Null Is Null Where 01234567 Ends With 12.0 Ends With 0X7).`8esn`! Detach Delete [.0[01][$12]][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`3esn` =~$`7esn` =~False|7[..12e12][..$`6esn`]]],07[07]"), - octest:ct_string("Merge `6esn`=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) On Match Set `8esn` =All(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..]) Is Null Is Null,Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)._usn3? =\"d_str\"[Count ( * )] Remove [.12 Starts With .12 Starts With `3esn`,Count ( * )[Count ( * )..12e12][usn1..1000],False In `3esn`].#usn7,{usn1:$1000 Contains $`3esn`}.#usn8!,None(`4esn` In $`8esn` Starts With 1000 Where True Starts With $`8esn` Starts With \"d_str\").`4esn`! Union All Remove _usn3(Distinct $1000 Contains $`3esn`,7 Contains $`5esn` Contains $usn1).usn2?,{@usn5:0.e0[@usn6][0x0]}._usn4,_usn3:`4esn`:#usn8 Merge `8esn`=(({@usn6:$123456789 Is Null Is Null,@usn6:`6esn`[1.e1..$#usn7][.e0..True]})<-[`5esn`:usn1|`3esn` *010{`2esn`:`6esn` =~01234567 =~0Xa}]->(_usn4 :``)) Union All Match (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0) With *,12.0[``] As @usn6 Order By \"d_str\" =~`3esn` =~0Xa Desc,_usn3[0] Desc,`5esn` Ends With .e1 Ends With $_usn4 Asc Unwind @usn6 Contains _usn4 Contains $`4esn` As `4esn`;"), - octest:ct_string("Remove {``:7[..`1esn`],_usn4:.e1 Ends With _usn4 Ends With @usn5}.usn2? Detach Delete (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[`4esn`{#usn8:Null[0e0][12],`2esn`:`8esn` In $@usn5}]-({_usn3:999 In $_usn4 In 0X7,`1esn`:1e1 In $#usn8 In 12e12}) Contains 0X0123456789ABCDEF Contains Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1]) Union All Unwind `1esn`(Distinct 0.0[999..],9e0 Ends With $`7esn`) Ends With (`7esn` {`8esn`:Count ( * ) =~Count(*)})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}) Ends With (#usn7 :`2esn`:`3esn`)<-[`2esn`?*..]->(:#usn8{`5esn`:0 Contains 12e12}) As usn1 Remove Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]|@usn6 Contains .e1 Contains $`4esn`).`4esn`!,@usn6:usn2:@usn6,None(`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]).`2esn`! Union All Create ((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(@usn5 {_usn4:010[$@usn6],`6esn`:123456789[1e1..0.0]})<-[`6esn`?:`2esn`|usn2 *01234567..12]->(:`7esn`{#usn7:True =~@usn5 =~$`1esn`})),`6esn`=({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Remove None(usn1 In 00 Starts With _usn3 Where 123456789[`4esn`..][Count ( * )..]).#usn8!,All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..])._usn4"), - octest:ct_string("Return $_usn3[Null] As usn1,.e1 Starts With 0.0 Starts With `6esn` Order By All(@usn5 In $#usn8 Is Null Is Null Where 's_str'[..0.0][..$`4esn`]) Is Null Is Null Asc,`3esn`(.e0 =~`5esn`)[Single(`6esn` In 0X7 =~`` Where $`3esn` =~Null)][[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $_usn3[$`4esn`..Null]|False[`2esn`..#usn8]]] Asc,00 In 12.e12 Descending Limit $1000[01234567] Merge usn2=(:`8esn`{usn2:7 Contains 9e1})<-[_usn3?:`7esn`|`2esn` *010]-(#usn8 :`4esn`:#usn8)-[`8esn` *..0x0{#usn7:Count ( * )[Count ( * )..12e12][usn1..1000],`4esn`:010 Is Null Is Null}]->(@usn6 ) On Match Set usn1+=Extract(#usn7 In 01234567[$`3esn`..] Where 0X7 In $999 In $``)[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..],Any(_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]).#usn8! =#usn7 Starts With 0x0 Starts With Null On Match Set @usn6+=0X7 In 123456789 In $`5esn`,({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[`4esn`?{`1esn`:$`8esn`[..123456789]}]-(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12}).`3esn` =0e0 Is Not Null Is Not Null Merge _usn4=((@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) On Match Set Extract(usn2 In 1000 Contains 0.e0 Where $1000[01234567]|$`6esn`[Count(*)..0.e0][0.0..Count ( * )]).`8esn`! =$123456789[False.._usn3],`3esn`(Distinct 0X7 In $999 In $``,$0 Is Not Null).`7esn`? =0.e0[123.654],`1esn`+=True Starts With 12.0 Starts With $@usn5 Union All Return $`2esn`[``..] As `3esn`,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As `3esn`,`7esn`[...e1][..\"d_str\"] Unwind _usn4 Starts With 0X7 As `4esn` Merge `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) On Create Set `5esn` =999[.e12][01],Extract(usn1 In 0x0[..`4esn`] Where @usn6[$`3esn`]).#usn8? =`1esn` In 999 In $#usn7,usn1 =12.e12[0e0..7] On Match Set `1esn`+=Null[0e0][12],Filter(usn1 In 0x0[..`4esn`] Where $`` Ends With 12e12).usn1! =Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] Union All Unwind _usn4 Starts With 0X7 As `4esn` Return Distinct *,\"d_str\"[Count ( * )] As `7esn`,0x0[123456789] As @usn6 Skip `1esn`[@usn6..$123456789]"), - octest:ct_string("Create `4esn`=((:`7esn`{``:$`1esn` Starts With @usn6})),`1esn`=((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})) Unwind 01234567 Ends With 0x0 As _usn3 Unwind $_usn4[`3esn`][0] As _usn4 Union All With Distinct *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `3esn`,Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])[All(#usn7 In 01234567[$`3esn`..] Where Count(*)[.e0.._usn4])..][None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..])..] Order By ({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Desc,0x0 Desc,0.e0 Starts With 12.e12 Starts With .e12 Desc Skip [\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Limit usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Where 123456789 Is Null Optional Match usn1=((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})) Where 1000 Contains 0.e0 Merge `5esn`=(usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[ *0xabc{`1esn`:123.654 In \"d_str\" In $_usn3}]-({`2esn`:$usn2 Is Not Null});"), - octest:ct_string("Detach Delete 1e1 In $#usn8 In 12e12,_usn3 =~00 Create ({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}),(usn2 :`2esn`:`3esn`)-[`7esn`?]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) Merge _usn4=((@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) On Match Set Extract(usn2 In 1000 Contains 0.e0 Where $1000[01234567]|$`6esn`[Count(*)..0.e0][0.0..Count ( * )]).`8esn`! =$123456789[False.._usn3],`3esn`(Distinct 0X7 In $999 In $``,$0 Is Not Null).`7esn`? =0.e0[123.654],`1esn`+=True Starts With 12.0 Starts With $@usn5 Union Return 's_str'[.12..$#usn7][$999..`2esn`] As `5esn` Order By Count ( * ) In 010 Descending,12e12[_usn3..][$@usn5..] Ascending,usn2 Starts With `6esn` Starts With 12e12 Desc Limit Count ( * )[..usn1][..12.e12] Return Distinct *,[#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|@usn6 Starts With `7esn` Starts With Null] Is Not Null Is Not Null,`8esn`[_usn3..$#usn7] Order By 's_str' Starts With 1000 Starts With #usn8 Descending Union Create (`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0}) Merge (`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(`7esn` :`8esn`{`4esn`:00 Ends With .12 Ends With `4esn`})-[ *07..]->(usn2 :@usn6:`7esn`) On Create Set #usn8:_usn4:usn1,[0 Is Not Null Is Not Null].usn2! =(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')];"), - octest:ct_string("Remove `8esn`:`4esn`:#usn8,{`3esn`:12[usn1][True],`2esn`:9e1 Is Null Is Null}.`7esn`? Unwind 0Xa Is Null Is Null As @usn5 Union With Distinct *,`3esn` =~`3esn` =~$`6esn` As `7esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 123456789[$#usn7..]) Contains [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1] Skip .12[..`6esn`][..\"d_str\"] Limit [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] Where `5esn`[`1esn`] Delete 7[..0X7][..'s_str'],9e0 Ends With $`7esn`,$0 Ends With $#usn7 Ends With .12"), - octest:ct_string("Merge `7esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}) On Match Set `7esn` =$`6esn` Is Not Null Is Not Null On Match Set ``+=`6esn`[0X7..][0x0..],#usn8 =1.e1 =~$_usn4,{`8esn`:1000 Contains 0.e0,usn1:`6esn`[1e1..]}.`4esn`? =$#usn8[1e1][9e1] Union All Delete True Is Not Null Is Not Null,[@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] With Distinct `2esn` In 7 In usn2,$0 =~$usn1 =~9e1 As `5esn`,@usn5[_usn4..][.e0..] As usn1 Where $0[0X0123456789ABCDEF..$#usn7] Unwind Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) Ends With [1e1[@usn5..],$#usn8 Is Null,$0[$#usn8..01234567]] Ends With Extract(`6esn` In 0X7 =~`` Where 010 =~`6esn`) As usn2 Union Create ((:`5esn`)<-[#usn7{#usn7:False[`2esn`..#usn8]}]->(usn2 :`3esn`:`1esn`)-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]}));"), - octest:ct_string("Delete Count ( * )[1000],usn2 =~0x0,@usn6 Starts With `3esn`"), - octest:ct_string("Create ((@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`)),usn2=((`1esn` :usn2:@usn6)-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}))"), - octest:ct_string("Delete usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`]) Is Null,.12 Is Not Null Is Not Null,1e1 Starts With #usn8 Starts With 1.e1 Match ((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})),(_usn3 :_usn3) Union Return Distinct *,[#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|@usn6 Starts With `7esn` Starts With Null] Is Not Null Is Not Null,`8esn`[_usn3..$#usn7] Order By 's_str' Starts With 1000 Starts With #usn8 Descending Remove {`1esn`:0xabc[12.e12..`1esn`]}.`1esn`! Union All Return *,$@usn6 =~$#usn8 =~$#usn7 As `7esn`,#usn7 Ends With `4esn` Ends With @usn5 As `` Order By (`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Ascending,{@usn6:0X0123456789ABCDEF[..usn1]}[..`7esn`($`3esn` =~$`6esn` =~`8esn`)][..(`4esn` {`6esn`:$12[..``][..$7]})<-[#usn7]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})] Ascending Skip Count ( * )[..usn1][..12.e12]"), - octest:ct_string("Match (`4esn` :@usn5{``:$`2esn`[$`2esn`..],@usn6:010 =~`6esn`}) Remove `2esn`:`2esn`:`3esn` Union All Return $_usn4[12e12][`4esn`] As `5esn`,@usn6[`5esn`..$`3esn`] As ``,0.0[..12e12][..$0] Skip `4esn`($`8esn`[..$usn1][..'s_str'],010[@usn5..]) Ends With [123.654 Contains .e1 Contains `1esn`] Ends With {`8esn`:0X7[..12e12]} Limit 0.e0[9e1..][0.0..] Merge (({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8)) On Match Set `8esn`:`4esn`:#usn8,Extract(`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]|_usn3 Is Not Null Is Not Null).`6esn`? =#usn8 Is Not Null,usn1 =Extract(#usn8 In $`5esn` Is Null Is Null Where @usn6 Contains .e1 Contains $`4esn`) In Filter(`4esn` In `6esn`['s_str'..][010..] Where 12e12[Count ( * )..][usn2..]) In [123456789 In $usn2 In `6esn`,Count(*) Ends With 010]"), - octest:ct_string("Remove {_usn3:$_usn4[$`1esn`]}.@usn6!,`8esn`($_usn4[#usn8..],123456789 Starts With `2esn` Starts With .0).usn1?,Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|1e1 Is Null).#usn7? Create usn1=((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)),(:usn1) Union All Delete `8esn`[_usn3..$#usn7],$`6esn` Is Not Null Is Not Null,Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) Union All Create (usn2 :#usn7),#usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})))"), - octest:ct_string("Merge `8esn`=()<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Return *,$@usn6[..12e12],`8esn` Ends With 0X0123456789ABCDEF Ends With `1esn` As usn2 Skip 1000[..$`6esn`][..0xabc] Limit $`8esn`[..$``] With Distinct *,`3esn` =~`3esn` =~$`6esn` As `7esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 123456789[$#usn7..]) Contains [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1] Skip .12[..`6esn`][..\"d_str\"] Limit [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] Where @usn6[$`7esn`]"), - octest:ct_string("Match _usn4=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),(((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})-[?*..{`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}]-(`` :`3esn`:`1esn`{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-({usn1:010[@usn5..],`7esn`:`2esn` Is Not Null Is Not Null}))) Where 07 In `5esn` In 12e12;"), - octest:ct_string("Remove _usn4:@usn5 Union Create `4esn`=((({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[usn2?]-(`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))),((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` )) Create @usn5=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}));"), - octest:ct_string("With Distinct All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null,0xabc[$@usn5] As `7esn`,.e0[usn2..] As _usn3 Order By False[..12.e12] Descending Skip [\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Limit 7 In @usn5 In $`4esn` Where 12e12 Starts With $123456789 Starts With 12.0 Detach Delete 010 Starts With `7esn` Starts With 9e1 With Distinct *,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Order By .e0 Contains 01234567 Descending,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Desc,'s_str' Starts With 1000 Starts With #usn8 Descending Where 123456789 =~_usn4 =~$0 Union All Detach Delete usn1 Contains $`` Union Remove Extract(usn1 In 00 Starts With _usn3 Where $`3esn` =~Null|12.e12[...0][..0x0]).`2esn`?,[`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn` Starts With $`` Starts With $#usn7|$`3esn` Contains 0X0123456789ABCDEF Contains 00].usn1! Merge (((@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]-(usn1 :`3esn`:`1esn`))) On Create Set `7esn` =$`6esn` Is Not Null Is Not Null;"), - octest:ct_string("Unwind .e1 Starts With $`8esn` As `2esn` Union All Unwind All(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) =~None(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0) =~None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `7esn` Starts With $usn2 Starts With .e0) As `` Unwind `7esn` Starts With $`` Starts With $#usn7 As _usn3 Union Create `1esn`=(`3esn` {``:.e0[7..$`3esn`]})"), - octest:ct_string("With {_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] As `1esn` Order By 0 Is Not Null Descending Skip 0x0 Where 123456789 Starts With #usn7 Starts With `6esn` Remove `7esn`:`4esn`:#usn8,@usn6:usn2:@usn6 Create (#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[#usn7{#usn7:False[`2esn`..#usn8]}]->(`5esn` :`2esn`:`3esn`{_usn3:$`2esn`[$123456789..$`1esn`][0Xa..$``],`5esn`:12.e12[@usn5..123.654]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}),`5esn`=((#usn8 :`4esn`:#usn8)<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})) Union All Create ``=(({`5esn`:0e0 =~_usn4})),((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})));"), - octest:ct_string("Optional Match (({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) With Distinct $`2esn`[``..] As `3esn`,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn`,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] As @usn6 Order By `7esn`[1000..][$123456789..] Desc,$#usn8 In .e12 In 9e1 Descending,$@usn5 Contains $`7esn` Contains #usn8 Desc Detach Delete $`3esn` Is Not Null Is Not Null,$1000 Ends With 1e1 Ends With 123.654"), - octest:ct_string("Return Distinct *,$999[$1000] Order By usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Ascending,.e12 Contains 9e0 Ascending Remove @usn6(@usn5[..True][..0X7]).`3esn`?,[7 In 0xabc,9e0[True..`1esn`]].`1esn`?,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]|$`6esn`[$`1esn`][1000]].`4esn`! Union All Detach Delete (`7esn` :_usn4:usn1)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`) Starts With ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2) Starts With Extract(usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]|07[`6esn`..][`5esn`..]) Return Distinct All(`6esn` In 0X7 =~`` Where 0.12[Null..]) Is Null Is Null As ``,$0 Contains `7esn` Contains $`8esn` As `3esn`,$#usn7[True..][$0..] As usn1 Order By {`1esn`:9e1[0.e0..][#usn8..]} Starts With Single(`4esn` In 's_str'[12..'s_str'] Where @usn5 In 0X0123456789ABCDEF) Starts With All(#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) Ascending,#usn8 Ends With $@usn6 Ends With _usn4 Desc Skip [@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Delete [True[..'s_str'][..01]] In Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999]) In All(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`]),$`5esn` Starts With _usn3 Starts With @usn5"), - octest:ct_string("With Distinct *,#usn8 Starts With 0x0 Starts With $@usn5,`1esn` In 07 In 0e0 As `1esn` Skip $7[$`8esn`..7][$1000..$`5esn`] Merge ((_usn4 {`8esn`:9e1 In 01 In 999}))"), - octest:ct_string("Remove Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $_usn3[$`4esn`..Null]).usn2,Filter(@usn5 In $#usn8 Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8).#usn8? Remove ``(Distinct 0.12 In $`4esn` In `6esn`,12e12[_usn3..][$@usn5..])._usn3!,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]|12e12[Null]].@usn6 Union All Return *,.e1[$_usn4][1e1] As `7esn` Order By 9e0 Ends With $`7esn` Asc Skip 's_str'[12..'s_str']"), - octest:ct_string("Remove None(usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null).`6esn`,Extract(_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`|9e1 Starts With `1esn` Starts With 0Xa)._usn4?,(usn2 :`3esn`:`1esn`)-[ *..7]-(usn1 :`4esn`:#usn8)-[?:`3esn`|:`4esn`]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).@usn5? Optional Match usn2=(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}))) Where 0X0123456789ABCDEF In 01234567;"), - octest:ct_string("Remove All(`4esn` In 's_str'[12..'s_str'] Where $`8esn`[..$``]).`7esn`!,usn2(07[$999]).`4esn` Remove [_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4].@usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`!,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`)._usn4 Create #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`) Union All With Distinct 01234567 Ends With 0x0,[`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As #usn8,$1000 Is Not Null Is Not Null Order By None(@usn5 In 0X7 =~.0 =~\"d_str\" Where _usn3[...e1])[[_usn4 In usn1 Contains False Contains `` Where 0.12 In $7 In 0]..][[7[..12e12][..$`6esn`]]..] Asc,12[usn1][True] Desc Limit 010 Contains Count(*) Where 0.12 Ends With $usn1 Ends With $@usn5 Return *,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn`,$_usn3 In $#usn8 As #usn7;"), - octest:ct_string("Unwind 07[12e12] As `4esn` Remove Extract(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`).`5esn`?,(`2esn` {`3esn`:$999[12.0..]})-[:usn2|#usn8 *01234567..12{usn2:$`3esn` In $12 In 's_str'}]-(usn1 :_usn3).`5esn` Union All Match (_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[`7esn`?:`4esn`|:`7esn` *..0X7]-(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) Create (((`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})<-[?:`7esn`|`2esn`]-(:`6esn`:`7esn`{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})))"), - octest:ct_string("Return count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null As `6esn`,All(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) =~None(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0) =~None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `7esn` Starts With $usn2 Starts With .e0) As ``,`6esn`['s_str'..][010..] Order By `4esn`[$#usn7] Ascending Skip `7esn` Ends With $usn2 Ends With 999 With *,0.12 In 01 In $`3esn` As @usn5 Order By Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}) Desc,$12[01..][1.e1..] Descending,`7esn`[Null..][@usn5..] Asc Limit Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null)[count(Distinct 0.12 Contains $12 Contains `8esn`)..[$`1esn` Is Null Is Null,9e1 In 01 In 999]] Where $@usn6 =~usn1 Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where True Contains @usn6|123456789 Starts With `2esn` Starts With 9e12).usn2?"), - octest:ct_string("Detach Delete $@usn5[0.12..][@usn5..],07[07] Union All Optional Match _usn3=(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),#usn8=(((`3esn` )-[?:#usn7|:_usn4]-(usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]}))) Where 010 Contains 0X0123456789ABCDEF Union Unwind $`4esn` Contains `6esn` Contains #usn7 As @usn6 With *,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Skip $`2esn`[..7][..$usn1] Limit None(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`) Contains `3esn`($usn2 Contains 12.e12 Contains 00) Where $`2esn`[$`2esn`..] With Distinct $`2esn` Starts With .e0 Starts With 12.0 Order By ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] Ascending,0e0 =~Count(*) =~0Xa Descending,{`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])] Asc"), - octest:ct_string("Unwind _usn3 In $#usn8 In usn1 As _usn4 With Distinct 0 =~12.e12 =~$``,0.12 Contains .e1 As `6esn`,01 Contains $`7esn` Contains 9e0 Order By Count ( * )[..1e1] Asc,_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) Asc,[0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] Ascending Skip Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] Limit _usn3(0x0[0X7..][usn1..])[..Any(#usn8 In $`5esn` Is Null Is Null Where 999[$`8esn`])][..{#usn7:False[`2esn`..#usn8]}] Return Distinct *,Count ( * ) In 010 As `1esn` Limit $@usn5 =~07 =~True Union All Remove Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|Count(*)[.e0.._usn4]).`8esn`?,Single(#usn8 In $`5esn` Is Null Is Null Where .12[`1esn`..][$`3esn`..]).``!,count(Distinct `6esn` =~01234567 =~0Xa).`8esn`! Unwind `8esn`[$``] As `3esn` With Distinct [`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As `8esn`,$`4esn`[9e1..][0..],$`2esn`[``..] Order By $@usn6 Contains 0 Contains $`2esn` Descending,_usn3[9e1..$`4esn`] Descending Limit 00 In 0.12 In `5esn` Where $`7esn`[$usn1..][0.0..] Union All Create (((`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})<-[?:`7esn`|`2esn`]-(:`6esn`:`7esn`{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}))) Remove {`7esn`:`5esn`[`1esn`]}.#usn7?,{#usn7:$usn2 In 9e0 In $7}.@usn6,(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)}).usn1!;"), - octest:ct_string("With *,$@usn6 =~$#usn8 =~$#usn7 As `7esn`,#usn7 Ends With `4esn` Ends With @usn5 As `` Order By (`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Ascending,{@usn6:0X0123456789ABCDEF[..usn1]}[..`7esn`($`3esn` =~$`6esn` =~`8esn`)][..(`4esn` {`6esn`:$12[..``][..$7]})<-[#usn7]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})] Ascending Skip Count ( * )[..usn1][..12.e12] Where `6esn` =~$_usn3 Merge ((({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)<-[#usn7 *123456789..999]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}))) On Create Set `8esn` =`` Return Distinct False Ends With $`8esn`,$`7esn`[$usn1..][0.0..] Order By {`8esn`:$123456789 Is Null Is Null,_usn3:$`4esn` Starts With 1e1}[(#usn7 :`2esn`:`3esn`)<-[`8esn`?]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})..All(_usn4 In usn1 Contains False Contains `` Where $`8esn`[$``..$7][$1000..$`7esn`])] Descending,$`7esn` In $7 Ascending Limit [@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]|$`6esn`[$`1esn`][1000]][All(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`)] Union All Merge ((#usn8 :`4esn`:#usn8)<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] On Create Set `4esn` =.12 Is Not Null Is Not Null,{@usn6:True[..'s_str'][..01]}.`2esn` =12.e12[...0][..0x0],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Return $_usn4[12e12][`4esn`] As `5esn`,@usn6[`5esn`..$`3esn`] As ``,0.0[..12e12][..$0] Order By usn2[$`1esn`...0] Descending,123.654 Is Not Null Is Not Null Desc Limit 0X7 =~`4esn` =~`8esn` Return Distinct {@usn6:`7esn` In 999 In @usn6} Starts With Extract(usn1 In 0x0[..`4esn`] Where 0x0|07 Ends With 07) Starts With Filter(usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12),False Ends With $`8esn`,``[$`3esn`][$`2esn`] As usn1 Order By $`6esn` Is Null Is Null Desc Limit 999 In $_usn4 In 0X7"), - octest:ct_string("Merge `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Return $`4esn` Contains 0Xa,010 In `7esn` Limit False Contains `3esn` Union All Return Distinct `3esn` =~`3esn` =~$`6esn` As `7esn` Limit $`7esn` Is Null Is Null"), - octest:ct_string("Remove [Null Contains _usn4].`8esn`!,Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn2[`3esn`][_usn3]).`7esn`?,{#usn7:False[.e1..Null],`1esn`:9e0 Is Null Is Null}.@usn5!"), - octest:ct_string("Create _usn3=((({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']})-[:usn2|#usn8*..]-(`5esn` :`7esn`))) Optional Match `8esn`=(($12)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)),(:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) Where 1e1[..#usn8][..'s_str']"), - octest:ct_string("Return $`4esn` Contains 0Xa,010 In `7esn` Order By _usn4 Starts With $@usn6 Starts With #usn7 Ascending,[`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) Desc,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) Descending Create ((:`5esn`)<-[#usn7{#usn7:False[`2esn`..#usn8]}]->(usn2 :`3esn`:`1esn`)-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})),((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) Remove [12e12 Starts With $123456789 Starts With 12.0].usn1 Union All Match ``=((@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`)) Merge #usn8=(({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({_usn3:$`1esn` Starts With @usn6})) Detach Delete 12 Ends With 01 Ends With 1e1,010 =~$usn2 =~1e1,`1esn` In 999 In $#usn7;"), - octest:ct_string("Create (_usn4 {`8esn`:9e1 In 01 In 999})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`4esn` {`2esn`:@usn6[`5esn`..$`3esn`],`7esn`:$`1esn` Is Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`),`8esn`=(`` {`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}) Return 01 In 01 In 12 As #usn8,$`6esn`[$`1esn`][1000],[#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|@usn6 Starts With `7esn` Starts With Null] Is Not Null Is Not Null Order By 12.e12 Contains `5esn` Ascending,{#usn8:#usn7 Ends With 9e1} Is Not Null Is Not Null Ascending Limit 0.12 Contains $12 Contains `8esn`"), - octest:ct_string("With Distinct $`4esn`[12.e12..][0.0..],12[`7esn`...0][0.12..``] As @usn6,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Skip $`1esn` Ends With $`1esn` Where `3esn` Contains 0Xa Create _usn3=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))) With Distinct *,$`7esn` Ends With $@usn5 As usn2,$@usn6 Starts With usn2 Starts With usn2 As #usn8 Skip 0.e0[..#usn8][..Null] Limit 00 Starts With _usn3 Where $@usn6 Contains 07 Contains 0.e0 Union Detach Delete 0Xa[0xabc..$#usn8] Union Detach Delete `` In `6esn`,@usn6 Contains .e1 Contains $`4esn`;"), - octest:ct_string("Merge `2esn`=(:_usn4:usn1) On Match Set `6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`7esn` =9e1[0.e0..][#usn8..],#usn7+=({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Ends With @usn6(123456789 =~$123456789) Ends With [`1esn` Contains Count ( * ),$@usn6 Contains Count ( * ),False In 123456789 In $0] On Create Set `` =(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[usn1?:`8esn`|:usn1]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Is Null Is Null,`7esn`+=(`7esn` :_usn4:usn1)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`) Starts With ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2) Starts With Extract(usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]|07[`6esn`..][`5esn`..]),`2esn`:`1esn` Unwind 12[usn1][True] As @usn6 Union All Remove Any(#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7).`3esn`?,{`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`}.`4esn`!"), - octest:ct_string("Match `2esn`=(:_usn4:usn1) Delete 0e0[7],(`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})[[`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5]..{usn2:$`4esn`[12.e12..][0.0..]}] Unwind 0 Starts With `6esn` Starts With 0X0123456789ABCDEF As @usn6 Union All Detach Delete None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} Merge @usn5=((({`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}))) On Create Set `8esn` =0.e0[9e0][0e0],_usn3 =0Xa[0xabc..$#usn8] On Match Set `6esn` =[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] Create ((:`5esn`)<-[#usn7{#usn7:False[`2esn`..#usn8]}]->(usn2 :`3esn`:`1esn`)-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]}))"), - octest:ct_string("Delete $`6esn`[Count(*)..0.e0][0.0..Count ( * )] Unwind 999 Contains `7esn` As `7esn` Match @usn5=(:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})-[`1esn`:usn2|#usn8 *1000..]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}) Union Create `5esn`=((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 )) Match ({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})-[#usn7:`1esn` *07..]->(:`7esn`{``:$`1esn` Starts With @usn6})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) Where 9e12 =~01 =~$`7esn` Union All With Distinct 0X7 In 123456789 In $`5esn` As @usn6,[$1000 =~$`7esn`,.12 Starts With @usn5 Starts With $#usn8,0x0[...e12][..@usn5]] Ends With Single(@usn5 In .12[#usn7][$`8esn`]) As `7esn`,`1esn` Contains Count ( * ) As _usn3 Order By 0X0123456789ABCDEF In 01234567 Descending,$#usn8 In .e12 In 9e1 Descending,{usn1:Count ( * )[..usn1][..12.e12],@usn5:07[$`5esn`..]['s_str'..]} Is Not Null Ascending Where $@usn5 Contains 01 Remove [@usn6 In @usn5 In $`6esn` Where 12.0[0Xa][00]].`2esn`?,Single(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1).@usn6?,Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn8 Contains .e0 Contains $`8esn`).`8esn` Detach Delete .e12 Contains 9e0,$`2esn`[``..],Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*))"), - octest:ct_string("Unwind @usn6(Distinct `` Starts With @usn5) =~Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]) =~#usn7(Distinct $0 =~$0 =~.e0) As `2esn` Union Unwind Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)[..(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})][..Any(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)] As `7esn` Remove #usn7:_usn3,[`6esn` Starts With $usn2 Starts With 0.0,.e0[7..$`3esn`]].#usn8!,All(usn2 In 1000 Contains 0.e0 Where #usn7 Starts With .e12 Starts With $`7esn`).`4esn` Remove {@usn6:True[..'s_str'][..01]}.#usn7!,(_usn4 {#usn7:False[`2esn`..#usn8],#usn8:`5esn`[`1esn`..`1esn`]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]}).`3esn`"), - octest:ct_string("Optional Match `6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Where 0.e0[@usn6][0x0] Merge (((:_usn4:usn1)-[@usn5?:@usn6*..]-(`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:@usn6]-(_usn3 :`4esn`:#usn8{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]}))) On Match Set `5esn` =999[.e12][01],Extract(usn1 In 0x0[..`4esn`] Where @usn6[$`3esn`]).#usn8? =`1esn` In 999 In $#usn7,usn1 =12.e12[0e0..7]"), - octest:ct_string("Merge (((`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`6esn`? *0Xa{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}]-(:`6esn`:`7esn`{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[`1esn`?:`1esn` *01234567..12]-({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}))) On Match Set [usn1 In 00 Starts With _usn3 Where `6esn`[1e1..]].`5esn`! =Count ( * )[Count ( * )..12e12][usn1..1000],@usn5+=usn1 Contains $`` On Match Set `6esn`+=9e0 Is Not Null,``+=`4esn` Ends With 123456789 Ends With @usn5;"), - octest:ct_string("Return .e12[.12..][_usn4..] As _usn4 Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Delete 07 Ends With 07 Union Merge (@usn5 {`2esn`:01234567 Ends With 12.0 Ends With 0X7})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]}) On Create Set `5esn` =999[.e12][01],Extract(usn1 In 0x0[..`4esn`] Where @usn6[$`3esn`]).#usn8? =`1esn` In 999 In $#usn7,usn1 =12.e12[0e0..7] On Create Set usn1+=Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Remove None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 9e12[usn2..7][.e1..$`7esn`]).`6esn`?,All(usn1 In 00 Starts With _usn3 Where 1e1[..False]).`4esn`?,Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]|@usn6 Contains .e1 Contains $`4esn`)._usn3! Merge @usn6=((:``{`5esn`:.e1 In $@usn6 In 999})) On Match Set usn1 =0x0[$`3esn`..010][$#usn7..00] Union With *,usn1[Count ( * )..$usn1] As usn1,$`2esn` =~'s_str' As @usn5 Where 9e0[$_usn3..0X7][7..$#usn8] Create #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`)"), - octest:ct_string("Create `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) Match ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})),((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]}));"), - octest:ct_string("Create usn2=((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn2 *0X0123456789ABCDEF..{usn2:`` Starts With 12}]-(`4esn` {`7esn`:.e0[..999][..0X7]})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})),usn2=({_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[@usn5?:``|:_usn4]-($12) Remove (`6esn` :`4esn`:#usn8{@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]})<-[:@usn5|`8esn`*..]-(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}).usn2 With *,$usn2[..12.0],$`2esn`[``..] As `3esn` Skip _usn3[.0] Where 0.0[999..] Union Merge ((({_usn4:010 =~$usn2 =~1e1,`2esn`:0X0123456789ABCDEF Is Not Null})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[:usn1|`3esn`]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]}))) On Match Set `5esn`()._usn4! =[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00],``:usn1,`6esn`+=Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) Ends With [1e1[@usn5..],$#usn8 Is Null,$0[$#usn8..01234567]] Ends With Extract(`6esn` In 0X7 =~`` Where 010 =~`6esn`) On Create Set #usn8+=Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)],`2esn` =$_usn4[$`1esn`..][$0..] Optional Match (({usn1:`4esn` In $12 In `8esn`})<-[@usn5:#usn8{`4esn`:$0[0X0123456789ABCDEF..$#usn7]}]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})) Where 0X0123456789ABCDEF[..usn1] Detach Delete 1e1 In $#usn8 In 12e12,_usn3 =~00"), - octest:ct_string("With Distinct *,010 Contains Count(*) As `5esn`,'s_str' Ends With .e0 As `1esn` Skip [_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]] Ends With [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]] Limit Count ( * )[`3esn`..][`2esn`..] Where 's_str'['s_str'..$usn2][_usn3.._usn3]"), - octest:ct_string("Merge `4esn`=(((#usn8 :_usn3)<-[ *..0X7]-(#usn7 )<-[`5esn`?:usn1|`3esn` *1000..]-(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}))) On Match Set @usn5 =$usn2 =~$_usn4 =~`5esn`,[`4esn` In `6esn`[1e1..] Where _usn3 Is Null|$`8esn`[..$usn1][..'s_str']].usn1? =$usn2[..12.0],{_usn4:$_usn4[`3esn`][0],`6esn`:False[`2esn`..#usn8]}.`8esn`? =Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] Union All Return *,All(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..]) Is Null Is Null As `6esn`,[#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`][Any(`4esn` In $`8esn` Starts With 1000 Where 123.654 Starts With usn1 Starts With @usn5)..] As `8esn` Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) Contains Extract(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`) Merge @usn6=((`6esn` :`7esn`)-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)<-[@usn5:`6esn` *0X0123456789ABCDEF..]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null})) With Distinct *,Single(#usn7 In 01234567[$`3esn`..]) Is Null Limit 123456789 Starts With `2esn` Starts With .0 Where $#usn7 In 12.0 In 0X0123456789ABCDEF Union All Unwind Any(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) Is Not Null Is Not Null As `2esn` Create #usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})),`5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Merge usn2=((({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(usn1 :_usn3{@usn6:True[..'s_str'][..01]})<-[`2esn`?]-(usn2 :`3esn`:`1esn`))) On Match Set All(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]).`1esn`! =0.12 Contains $12 Contains `8esn`,#usn8+=0x0[$12..],{``:`6esn`[0X7..][0x0..]}.`8esn`? =`6esn` =~$_usn3 On Create Set `8esn` =``"), - octest:ct_string("With Any(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null)[Extract(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1)..] As `3esn` Order By 010 Contains Count(*) Desc,1e1 In $999 In $usn2 Ascending,@usn6(Distinct 12.e12[0e0..7],usn1[Count ( * )..$usn1]) Is Null Is Null Descending Skip True Is Not Null Is Not Null Limit None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} Union Remove {``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}.`2esn`! Union Delete 0.12 =~9e0,12.0[0Xa][00] With {_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] As `1esn` Order By 0 Is Not Null Descending Skip 0x0 Where 123456789 Starts With #usn7 Starts With `6esn` Optional Match `8esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}))"), - octest:ct_string("Merge (`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`7esn` :`4esn`:#usn8{`2esn`:Count(*)[..`3esn`]})-[? *07..{@usn6:12[..True][..$`4esn`],`4esn`:.0[$`6esn`..False]}]-({`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`}) On Create Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..] On Create Set `` =$`6esn` =~Null =~9e12 Union Merge `2esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) On Create Set [@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where .e0[..999][..0X7]]._usn4 =(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) On Match Set Single(usn1 In 00 Starts With _usn3 Where $`7esn` Ends With 07 Ends With 07).`6esn`? =Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789},@usn5 =[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0])],[usn1 In 00 Starts With _usn3 Where 12 Ends With .e12 Ends With $7|_usn3 =~00].#usn7! =Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null Unwind 12e12[_usn3..][$@usn5..] As usn2"), - octest:ct_string("Remove ``:`5esn`;"), - octest:ct_string("Merge (_usn4 {@usn5:$_usn3[$`4esn`..Null]}) On Create Set @usn5(Distinct 12e12[_usn3..][$@usn5..],7 Contains 9e1).`6esn` =$@usn5 In 12e12 In Count(*) On Match Set _usn3:@usn5,Any(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null).#usn7 =All(`6esn` In 0X7 =~`` Where $1000[01234567]) In usn1(),`` =None(@usn5 In 0X7 =~.0 =~\"d_str\" Where _usn3[...e1])[[_usn4 In usn1 Contains False Contains `` Where 0.12 In $7 In 0]..][[7[..12e12][..$`6esn`]]..] Delete count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null"), - octest:ct_string("Merge `4esn`=(:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) On Create Set _usn4 =[`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]][{`3esn`:$123456789 Contains usn2}..[$_usn4[`3esn`][0],$usn2 Is Not Null,0.0 =~0X7 =~#usn7]][Any(`4esn` In `6esn`['s_str'..][010..] Where 01 Ends With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0)],[usn1 In 0x0[..`4esn`] Where 12.0[0Xa][00]|$`6esn` Is Null Is Null].usn1 =Count(*)[True],`6esn`+=7[$`4esn`..123456789] On Create Set `6esn`+=[@usn6 In @usn5 In $`6esn` Where False In $`7esn` In .0|.12 Starts With $usn2] Ends With Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) Ends With Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Match `2esn`=((_usn4 {``:$usn2[..12.0]})),`1esn`=(((`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}))) Where @usn5[..True][..0X7] Unwind [.0[01][$12]][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`3esn` =~$`7esn` =~False|7[..12e12][..$`6esn`]]] As `1esn` Union Merge `8esn`=((`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) On Match Set [usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01|`1esn`[@usn6..$123456789]].`8esn`? =Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]),@usn5 =Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null,_usn3+=$@usn5 =~$`` =~$usn2 On Match Set `2esn`+=.e12 Starts With True Optional Match @usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})),_usn3=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Where $`5esn` Contains Count(*) Contains #usn7 Remove [usn2[$`7esn`..010][00..``],07[12][$`6esn`],Null[01234567][01234567]].`1esn`,`3esn`(Distinct 123456789 =~$123456789).`` Union Create (_usn3 :_usn4:usn1)<-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(:@usn6:`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}),#usn8=(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[usn1?:`8esn`|:usn1]->(`2esn` {usn2:$999[12.0..]})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})"), - octest:ct_string("Detach Delete usn1 Is Not Null Is Not Null,`2esn` Contains $999 Union All Optional Match @usn6=((:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})-[?:`4esn`|:`7esn`]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})),`8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`}) Where @usn6[`3esn`..][$7..] Create ((`6esn` :_usn4:usn1{`6esn`:00 In 12.e12})<-[`7esn`?:`5esn`|`1esn`]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`})),(usn1 :`3esn`:`1esn`)-[?:`4esn`|:`7esn` *..0x0]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Match ((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})),(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))) Where $`8esn` =~$usn2"), - octest:ct_string("Return Distinct None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..] Create `2esn`=(:`1esn`)<-[`2esn`?:usn2|#usn8{`6esn`:0X7[.e12..01234567],@usn6:`7esn`[...e1][..\"d_str\"]}]->(`5esn` :`8esn`{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}) Union All Return $`6esn` =~$#usn8 As #usn8 Order By (#usn7 :#usn8)-[`6esn`:`4esn`|:`7esn` *..0x0]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})[Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])][Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])] Descending Limit Null Contains 9e1 Union All Return Distinct *,\"d_str\"[Count ( * )] As `7esn` Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) Contains Extract(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`) Limit {`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]] Remove Filter(#usn7 In 01234567[$`3esn`..] Where 0Xa[0xabc..$#usn8]).#usn8? Create ((`3esn` {`8esn`:$``[_usn4..][`7esn`..]}))"), - octest:ct_string("Create #usn8=((`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})),_usn4=(:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]}) Remove _usn3(Distinct $123456789 Is Null Is Null).@usn5?,Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).#usn7! Unwind [`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As @usn5 Union All Remove _usn3:#usn8 Union Detach Delete Extract(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null) =~Any(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null) =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1],$7 Contains 0x0 Contains ``,[\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Remove [01234567[Null..0.e0][Count(*)..$#usn8],#usn8 Contains .e0 Contains $`8esn`,123456789[1e1..0.0]].`1esn`? Create (:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa}),(`3esn` :usn2:@usn6)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]})-[_usn3]-(`` {`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'});"), - octest:ct_string("Merge _usn3=((_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})) On Match Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] On Create Set None(`4esn` In 's_str'[12..'s_str'] Where @usn5 In 0X0123456789ABCDEF).`2esn`! =$`1esn` Is Null,`5esn`()._usn4! =[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00],`8esn` =`7esn` Contains .0 Contains 9e12 Union With 07 Ends With 07,{_usn3:12.e12[$1000..],`7esn`:$`2esn` Contains usn1 Contains `2esn`}[..(`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)][..010] Union All Return Distinct *,0['s_str'][Null] As #usn8,0.0[..12e12][..$0] Order By 010[@usn5..] Descending,{usn2:123456789 Starts With `2esn` Starts With 9e12} Ends With All(usn2 In 1000 Contains 0.e0 Where 01234567[Null..0.e0][Count(*)..$#usn8]) Descending Create ({`5esn`:123456789 Starts With `2esn` Starts With .0})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})<-[`` *12..0xabc]->(`3esn` :_usn4:usn1);"), - octest:ct_string("Optional Match (_usn4 :`4esn`:#usn8{@usn5:$_usn4[12e12][`4esn`],`4esn`:False In `3esn`})-[`6esn`:``|:_usn4 *..01]->(`5esn` :#usn7) Where $1000[01234567] Unwind Count(*) Is Null As `2esn`"), - octest:ct_string("Match `1esn`=(((`` :@usn5)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn5:`8esn`|:usn1]-(#usn7 :`5esn`))),usn1=(_usn4 :`8esn`{`3esn`:False[.e1..Null],`3esn`:9e0 =~$`5esn`}) With Distinct Extract(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null) Ends With `2esn`(`7esn`[Null..][@usn5..],123.654[12.e12..1e1]) Ends With Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]) As `7esn`,$usn2 In 9e0 In $7 Order By @usn5 Starts With 12e12 Starts With @usn5 Desc Skip $``[_usn4..][`7esn`..]"), - octest:ct_string("Remove Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`).@usn6! Return Distinct *,01234567[$@usn6..0X7][$`1esn`..123.654],_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) As #usn8 Skip .e0[..0X0123456789ABCDEF][...e12] Detach Delete 12.e12 Contains $`5esn`,$usn1 In 1000 In $#usn7,12.0 Union All Return Distinct *,`1esn` Contains Count ( * ) As _usn3 Skip $`3esn` =~$999 =~$`3esn` With Distinct [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}),$_usn4[`3esn`][0] As `1esn`,`6esn` Starts With $`5esn` As @usn5 Order By .0 Is Null Is Null Ascending,`1esn`(Distinct $@usn5[#usn8..][$`1esn`..],#usn7 Ends With `4esn` Ends With @usn5)[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|usn1[Count ( * )..$usn1]]][{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}] Asc Limit True Is Not Null Where 0.0 =~0X7 =~#usn7 Union All Return Distinct *,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}) Skip ({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}) =~None(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Return Distinct *,{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}[Extract(_usn4 In usn1 Contains False Contains `` Where `5esn`[.e1][0Xa])..] Order By [@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|#usn7 Starts With `1esn`][[@usn5 In .12[#usn7][$`8esn`] Where 0.12 In $`4esn` In `6esn`|$`1esn` Starts With @usn6]..][$`1esn`..] Ascending"), - octest:ct_string("Delete Extract(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|Null Starts With $`7esn` Starts With `2esn`) =~{`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0},$`1esn` Is Null,9e0 Starts With `6esn` Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null})-[#usn7:`1esn` *07..]->(#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})) Union Return Distinct *,$999[$1000] Skip 1e1[@usn5..] Create `1esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[? *999..]-(`` :`1esn`) Optional Match (({_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})),#usn8=({_usn3:12.e12 In $0 In Count(*)})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}) Where _usn3 Is Not Null Is Not Null"), - octest:ct_string("With *,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Skip $`2esn`[..7][..$usn1] Limit None(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`) Contains `3esn`($usn2 Contains 12.e12 Contains 00) Optional Match #usn7=(@usn5 {usn2:$999[12.0..]})<-[usn1]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[_usn3?:``|:_usn4]->(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}) Where $`1esn` Ends With _usn4 Ends With `3esn`"), - octest:ct_string("With Distinct *,{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)] Order By .e1 Starts With $`8esn` Asc Limit $#usn7 In .e1 In 01 Where `5esn`[`1esn`..`1esn`] Union All Detach Delete _usn3 Ends With 12e12 Ends With .e0,#usn7(Distinct $_usn4[$`8esn`..][07..])[..(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[`6esn`? *..7{`3esn`:123456789[$#usn7..]}]-(#usn8 {@usn5:.e1[..$``][..0X0123456789ABCDEF],_usn3:$usn2 =~$#usn8})-[#usn7:_usn3|:`4esn`]-(:`6esn`:`7esn`{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12})][..All(`4esn` In `6esn`[1e1..] Where $`1esn` Is Null)],`4esn` =~123456789 Create `2esn`=(((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))),`6esn`=({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})"), - octest:ct_string("Unwind Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `3esn` Detach Delete `3esn` Contains 0Xa,9e1[0.e0..][#usn8..] Union Return None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) As _usn3;"), - octest:ct_string("Optional Match ``=(((:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(:`7esn`{@usn6:0.0[999..],#usn8:Null Is Null Is Null})-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]}))) Where 1000 Ends With 1000 Ends With $`4esn` Remove [_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4].@usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`!,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`)._usn4 Unwind @usn6(Distinct `` Starts With @usn5) =~Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]) =~#usn7(Distinct $0 =~$0 =~.e0) As `2esn`"), - octest:ct_string("With Distinct [@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7|$999 Ends With $`3esn` Ends With `8esn`] Starts With [$`6esn` Is Null Is Null,0Xa Is Not Null Is Not Null,0X7 In 123.654 In $`2esn`] Starts With [01234567[Null..0.e0][Count(*)..$#usn8]] As `6esn`,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} Order By {_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]} Ends With Extract(`4esn` In $`8esn` Starts With 1000 Where `6esn`['s_str'..][010..]|12.e12[@usn5..123.654]) Ends With [$`5esn` Is Not Null,0e0 Is Null Is Null] Ascending,(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Ascending,0X0123456789ABCDEF[..usn1] Asc Where Count(*)[..`3esn`] Detach Delete {`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}[[`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]]][Count ( * )] Optional Match `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),usn2=({_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[@usn5?:``|:_usn4]-($12) Where $1000 In $`7esn` In $7 Union All Merge `3esn`=(((:_usn4:usn1{usn2:$`5esn` In False})<-[?:@usn5|`8esn` *..0X7]->(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}))) On Create Set [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]].`1esn` =9e12 =~01 =~$`7esn` On Create Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$`` Remove [@usn5 In $#usn8 Is Null Is Null Where $#usn8 Is Null|123.654[@usn5]].`6esn`! Remove Filter(@usn5 In $#usn8 Is Null Is Null Where $@usn5 =~$`` =~$usn2).`7esn`,Filter(_usn4 In usn1 Contains False Contains `` Where _usn4[$`4esn`..]).#usn8?,[\"d_str\" =~`3esn` =~0Xa,$123456789[..0.12][..#usn7]].usn2! Union All With Distinct 0x0 Contains _usn4 Contains 123456789 As `7esn`,$_usn3[Null] As `1esn` Order By .e12 Contains 9e0 Ascending,{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]} Ends With (usn1 :_usn3)<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})-[ *..0x0]->(:`7esn`{@usn6:0.0[999..],#usn8:Null Is Null Is Null}) Asc,usn1 Contains False Contains `` Descending Where `2esn` Contains $999"), - octest:ct_string("Merge usn1=(:`5esn`{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[`5esn`:`8esn`|:usn1]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}) On Create Set _usn3+=$@usn5 =~$`` =~$usn2,`6esn`+=`6esn`[1.e1..$#usn7][.e0..True],(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[`` *0xabc]->(`7esn` :#usn7{`6esn`:$`3esn` Contains 0X0123456789ABCDEF Contains 00,`1esn`:1000[123.654..9e12][1000.._usn3]}).``! =[@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Match `2esn`=(`` :usn2:@usn6)<-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`7esn` :`4esn`:#usn8{`2esn`:Count(*)[..`3esn`]}),(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})-[`4esn`:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]-(_usn3 :``)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->({`1esn`:0.0[1000..][.e1..]})"), - octest:ct_string("Delete 's_str'[.12..$#usn7][$999..`2esn`],All(usn1 In 00 Starts With _usn3 Where 12e12[Null]) Ends With (:`7esn`)<-[@usn5:#usn7|:_usn4]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})<-[?:usn2|#usn8{#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7}]-({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) Ends With Extract(`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]|usn2[$`1esn`...0]),0.12 =~9e0"), - octest:ct_string("Detach Delete $@usn6[..$usn1],`` =~12 =~$#usn7,`3esn` Is Not Null Is Not Null Match #usn8=(usn2 :#usn7)-[#usn8 *07..{@usn5:.e1[..$``][..0X0123456789ABCDEF],_usn3:$usn2 =~$#usn8}]-(`4esn` :`1esn`),(@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})<-[ *1000..]->(@usn5 :``{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]})<-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(@usn6 :#usn7{@usn5:Null Is Null Is Null}) Unwind True[0] As _usn3 Union All Return $`4esn`[$`2esn`..] As #usn8,#usn8 In $0,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Skip $@usn5 =~$`` =~$usn2 Limit `8esn` Ends With 999 Ends With 9e0"), - octest:ct_string("Remove [1e1 In $#usn8 In 12e12,7 In @usn5 In $`4esn`].`5esn`!,Single(usn1 In 00 Starts With _usn3).@usn5 Union All Remove [usn1 In $123456789 Contains usn2 Where $1000 =~$`7esn`|False In $`7esn` In .0].`5esn`! Union Detach Delete 1000 In 0X0123456789ABCDEF In 01,@usn6(Distinct Null[0e0][12])[..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]]][..`8esn`(010 =~`6esn`)],1e1 Starts With #usn8 Starts With 1.e1 Detach Delete Null Starts With $`7esn` Starts With `2esn` Delete $7 Ends With 12.0 Ends With 0xabc,usn1 =~Null =~`5esn`;"), - octest:ct_string("Remove None(#usn8 In $`5esn` Is Null Is Null Where 01234567 Ends With 12.0 Ends With 0X7).`2esn`?,[9e0 =~$`5esn`]._usn3!,(_usn4 )<-[#usn7? *00..]->(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`).`1esn` Merge (({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:usn1{`8esn`:usn1 Contains $``})) On Create Set usn2:usn1,None(_usn4 In usn1 Contains False Contains `` Where .12 In $999 In `5esn`).usn2 =9e0 In 01234567,`8esn` =$@usn5 Ends With 0X0123456789ABCDEF With Distinct 999[``..][Null..] As `1esn` Order By 00 In 0.12 In `5esn` Ascending Skip 0.e0[9e1..][0.0..] Limit Count ( * )[..1e1] Union All With Distinct All(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`)[[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]]..][({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})..] As #usn8,07[0..`4esn`] As `` Order By 0 Ends With $7 Ends With _usn3 Ascending Limit 07 =~`8esn` =~0 Where $999[12.0..] Optional Match ((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12}))"), - octest:ct_string("Return *,{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)] Skip $12 Is Null Is Null Limit usn1[$`3esn`..$999][True..False] Match _usn4=(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(@usn6 ) Unwind 0xabc[$@usn5] As usn2"), - octest:ct_string("Delete $`1esn` Is Null Is Null,_usn4 Starts With 0X7 Union Delete 00[.e1..],.12 Ends With `1esn` Ends With $`1esn`,1000 Contains $#usn7 Contains `6esn`"), - octest:ct_string("Unwind 999 In 12 In \"d_str\" As #usn8 With Distinct *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `2esn` Unwind $0[..07] As usn1 Union Detach Delete Extract(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null) =~Any(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null) =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1],$7 Contains 0x0 Contains ``,[\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Remove [01234567[Null..0.e0][Count(*)..$#usn8],#usn8 Contains .e0 Contains $`8esn`,123456789[1e1..0.0]].`1esn`? Create (:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa}),(`3esn` :usn2:@usn6)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]})-[_usn3]-(`` {`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}) Union Create ((usn1 :`4esn`:#usn8)<-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null})),`6esn`=(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}) Unwind 9e12[@usn6..$``][#usn8..Count ( * )] As _usn4"), - octest:ct_string("Delete 0.12 Is Null Is Null Return [@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Order By 123456789 Starts With #usn7 Starts With `6esn` Descending,7[..0X7][..'s_str'] Ascending,None(`4esn` In 's_str'[12..'s_str'] Where 12.0[0Xa][00]) Is Not Null Desc Skip 0x0 Limit (:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[@usn6?:`1esn`]-(:`5esn`)-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`) Starts With Single(_usn4 In usn1 Contains False Contains `` Where $`6esn` Is Null Is Null) Merge `7esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)) On Create Set `3esn`+=00 Ends With $_usn4 Ends With $`2esn` On Match Set `6esn`:usn1,`7esn`+=07[`6esn`..][`5esn`..] Union Detach Delete `1esn`(Distinct 0.0[999..],9e0 Ends With $`7esn`) Ends With (`7esn` {`8esn`:Count ( * ) =~Count(*)})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}) Ends With (#usn7 :`2esn`:`3esn`)<-[`2esn`?*..]->(:#usn8{`5esn`:0 Contains 12e12}),$`8esn` Starts With 1000,({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null Detach Delete _usn3 Is Null,01 Contains 123456789"), - octest:ct_string("Unwind $`4esn`[9e1..][0..] As usn1;"), - octest:ct_string("Remove (usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})._usn4?,usn1:`3esn`:`1esn`,{`2esn`:9e1 In 01 In 999,`5esn`:$@usn6[..$usn1]}.@usn5! Unwind .e12 =~0.0 =~9e0 As `8esn` Union Detach Delete 07 In Count ( * ) In \"d_str\",Null Is Not Null"), - octest:ct_string("Detach Delete False[..12.e12] Create ({``:.e12[..0.e0][..$`1esn`]})-[_usn3:#usn8]-(usn1 :#usn7) Unwind $123456789 Is Null Is Null As _usn3"), - octest:ct_string("Detach Delete $`7esn` Is Not Null Detach Delete 0Xa In .e1 In Count(*) Remove #usn7(Distinct $@usn6[..$usn1],9e12 Is Not Null Is Not Null).usn1 Union Delete .e1[usn1..] Remove Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]).`1esn`,#usn7:_usn4:usn1,(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})<-[`2esn`:usn1|`3esn` *0Xa]->(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})._usn3!"), - octest:ct_string("Return Distinct *,All(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..]) Is Null Is Null As `6esn`,[#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`][Any(`4esn` In $`8esn` Starts With 1000 Where 123.654 Starts With usn1 Starts With @usn5)..] As `8esn` Order By 0X0123456789ABCDEF[.e0..$`4esn`] Descending,Extract(usn2 In 1000 Contains 0.e0) Ends With All(`4esn` In `6esn`['s_str'..][010..] Where $0[01234567..00][$`2esn`..$@usn6]) Ends With Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]) Descending,9e1 Starts With _usn3 Starts With `4esn` Descending Skip {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7) Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `7esn` Ends With $usn2 Ends With 999).@usn5! Union Return *,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7,@usn6 Starts With `7esn` Starts With Null Skip Count ( * )[..usn1][..12.e12] Limit (`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Union Unwind $#usn7 As `5esn`"), - octest:ct_string("Delete $#usn8[0xabc][`3esn`],(:`1esn`{`8esn`:Count ( * ) =~Count(*)})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(`1esn` {_usn4:12.e12 Ends With 01 Ends With .e1})[Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8])],$usn2[False..`7esn`][`7esn`.._usn3] Remove [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7].@usn5,Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])._usn3?"), - octest:ct_string("With ({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn`,$@usn5 Contains 01 As ``,$usn1[#usn8..][``..] As `2esn` Order By 0e0[`2esn`..010] Ascending,Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)[{#usn8:`5esn` =~0Xa,@usn5:0X7[999][$1000]}..[`` Starts With 12,$`1esn` Starts With $999]][`7esn`(Distinct $usn2[..12.0])..`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])] Descending Limit `4esn` =~123456789 Union All Create `7esn`=((({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null})<-[`7esn`?:`8esn`|:usn1]-(`7esn` :#usn8)-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`))),`5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) Union All Detach Delete 1000 Ends With 1000 Ends With $`4esn`,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)],{_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]} Optional Match #usn7=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))),(((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]-({usn1:0x0[0X7..][usn1..]}))) Detach Delete .e12 Contains 9e0,$`2esn`[``..],Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*))"), - octest:ct_string("Return Distinct (_usn3 :`6esn`:`7esn`{usn1:$_usn3[9e1][$_usn4],`8esn`:123456789 =~_usn4 =~$0})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-({`1esn`:@usn6}) In _usn3(0x0[0X7..][usn1..]) In None(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str') As _usn4 Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending Skip 07[12][$`6esn`] Remove ({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})-[#usn8?]-(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7}).@usn6?,{`3esn`:`4esn`[7..][1000..],usn2:123456789 Starts With `2esn` Starts With 9e12}.`8esn`!,@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12).`5esn`! Create ((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})),#usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) Union All Match ``=((@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`)) Merge #usn8=(({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({_usn3:$`1esn` Starts With @usn6})) Detach Delete 12 Ends With 01 Ends With 1e1,010 =~$usn2 =~1e1,`1esn` In 999 In $#usn7"), - octest:ct_string("Create (((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Match (usn2 :#usn8{`3esn`:123.654[@usn5]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`}),((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[usn1?:`1esn` *0X0123456789ABCDEF..{usn2:$`4esn`[12.e12..][0.0..]}]-(#usn7 :`5esn`)) Where 1e1[..False] Union Merge `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})) On Match Set `` =None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..],#usn7($`8esn`[$``..$7][$1000..$`7esn`],`2esn` In 7 In usn2).`6esn`? =$_usn4['s_str'..],`4esn`+=$`7esn` Ends With $usn2 On Match Set `` =Count(*) Ends With 010,None(usn1 In 0x0[..`4esn`] Where $999[12.0..]).@usn6 =0 Is Not Null Is Not Null,`7esn`+=`4esn`(Distinct .0 Starts With `2esn` Starts With `6esn`) Contains Extract(@usn6 In @usn5 In $`6esn` Where $@usn6[..12e12]|$@usn6 =~usn1) Contains (@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[`4esn`?:`8esn`|:usn1 *..0x0]->(:`7esn`{``:$`1esn` Starts With @usn6}) Detach Delete {usn2:123456789 Starts With `2esn` Starts With 9e12} Ends With All(usn2 In 1000 Contains 0.e0 Where 01234567[Null..0.e0][Count(*)..$#usn8]),9e0[``][123.654] Unwind 1000 Contains 0.e0 As #usn8"), - octest:ct_string("Merge `8esn`=(:`8esn`) On Match Set [999[``..][Null..],`5esn` =~0Xa].@usn6? =[`6esn` In 0X7 =~`` Where `` Contains 12 Contains True|@usn5[..True][..0X7]][(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})..{`4esn`:9e0 Starts With `6esn`}][Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `5esn`[`1esn`..`1esn`])..(`3esn` :usn2:@usn6)<-[`7esn`?:@usn5|`8esn`]-(`1esn` :``)],#usn8+={`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}],`3esn` =7[..0X7][..'s_str'] Match ``=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))) Where $`6esn` Is Null Is Null Union With $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Order By $12[01..][1.e1..] Descending Skip .12[.e12..0.e0][0.e0..$`2esn`] Where $_usn4[12e12][`4esn`] Merge `1esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[? *999..]-(`` :`1esn`) On Create Set usn2 =0.0[..12e12][..$0] Merge `2esn`=(_usn4 {`8esn`:9e1 In 01 In 999})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`) On Match Set @usn5+=`1esn`[9e12..$`8esn`][usn2..$``],usn1 =[12.e12 Ends With 01 Ends With .e1,$@usn5[0.12..][@usn5..],$usn1 In 1000 In $#usn7] Is Not Null On Match Set _usn4 =0 Contains 12e12,`1esn`:#usn8,`7esn` =0 Is Not Null"), - octest:ct_string("With Distinct *,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Limit Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}) Return Distinct *,.e1[usn1..],$1000[.e0..] As `3esn` Skip `5esn`[Count ( * )..][\"d_str\"..] Merge (`7esn` {_usn3:usn1 Contains $``})<-[usn1]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12}) On Create Set `4esn` =.e12[.12..][_usn4..] On Match Set @usn5+=`` In `6esn`,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`` Is Null Is Null).`` =12.e12 Is Not Null"), - octest:ct_string("Unwind $usn1[1e1.._usn3][$@usn6..$#usn7] As usn1 With Distinct Count ( * ) Ends With 1000 Ends With 12 As _usn4,False[..12.e12] Skip {usn2:123456789 Starts With `2esn` Starts With 9e12} Ends With All(usn2 In 1000 Contains 0.e0 Where 01234567[Null..0.e0][Count(*)..$#usn8]) Where 0 Is Null Is Null Delete `2esn`[_usn3..$``],#usn8 Starts With 0x0 Starts With $@usn5"), - octest:ct_string("Remove {`1esn`:`7esn`[Null..][@usn5..]}.`7esn`! Create (({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) Remove `4esn`:`3esn`:`1esn`"), - octest:ct_string("Create ``=(:``{#usn8:$`2esn`[..`2esn`]}),`6esn`=((`3esn` :#usn8)) Remove {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`}.`6esn`!,Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where True Contains @usn6|123456789 Starts With `2esn` Starts With 9e12).usn2?,Extract(usn1 In 0x0[..`4esn`] Where 12.e12 Contains `5esn`|$123456789 Contains 01 Contains 0.12).``! Union All Optional Match #usn8=((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(#usn7 :`3esn`:`1esn`)<-[?{`4esn`:12e12[$`5esn`][07]}]-(:`1esn`{_usn4:$_usn3[Null]})) Where 12 =~usn1 =~.e12 Union All Merge ((:#usn8)<-[`2esn`?]-(:usn2:@usn6{_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})<-[`5esn`? *999..{#usn7:0X7[12]}]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})) On Create Set `4esn` =.e12[.12..][_usn4..] On Create Set #usn7+=$123456789[0.0..] Detach Delete {`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)],({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) In None(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn8 Ends With `4esn` Ends With $`4esn`) In Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])"), - octest:ct_string("Merge `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) On Create Set `4esn` =010 In `7esn`,usn2+=0.e0[@usn6][0x0] Optional Match ((`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})<-[?{`8esn`:_usn3 Ends With 0x0 Ends With 01234567,#usn8:$`7esn` Is Null Is Null}]->(:``{#usn8:$`2esn`[..`2esn`]})<-[@usn5:#usn7|:_usn4]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})),_usn3=(`6esn` :`7esn`)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]}) Where @usn6[`3esn`..][$7..] Optional Match `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) Where usn1 In 1000 In $`5esn`"), - octest:ct_string("With Distinct *,01234567 Is Null Is Null Order By `3esn`(Distinct 0.0[999..])[Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..[010 =~$usn2 =~1e1,`1esn`[@usn6..$123456789]]] Asc,All(_usn4 In usn1 Contains False Contains `` Where $`4esn`[$`2esn`..])[..Single(usn1 In $123456789 Contains usn2 Where $usn1[0.12..]['s_str'..])][..``(Distinct `1esn`[0e0..])] Ascending,0X7[.e12..01234567] Descending Skip [999[.e12][01],999 In 9e1 In 7,0xabc Contains Null Contains 9e12][All(`6esn` In 0X7 =~`` Where 0.12[Null..])..[`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]]][count(010 Contains Count(*))..(:`4esn`:#usn8)-[:#usn8 *..0X7]->({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6)] Optional Match `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})),((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`1esn`{`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654}]->(`7esn` :`7esn`)) Detach Delete 999 In 12 In \"d_str\",$`5esn` Contains Count(*) Contains #usn7"), - octest:ct_string("Unwind None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] As `8esn` Union Return 0 =~12.e12 =~$``,@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn` Order By $`7esn` Starts With 07 Ascending Merge (usn1 {`4esn`:$123456789[0.0..],`2esn`:12 Ends With 01234567})<-[usn1? *..0X7]-(usn1 :`4esn`:#usn8)-[ *010{@usn5:Null Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Match Set [0X7 =~.0 =~\"d_str\",9e1[...e0]].@usn5 =Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}),{@usn6:usn1 In 1000 In $`5esn`,@usn6:9e0[``][123.654]}.`3esn`! =$999 In $`8esn` In `5esn` On Match Set `6esn` =7[..0X7][..'s_str'],[$`5esn` Contains $@usn6].`1esn` =1e1[@usn5..],Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 07 In 0 In 's_str').@usn5? =True Is Not Null Union All Unwind 123456789 =~Filter(usn2 In 1000 Contains 0.e0 Where 0X7[0e0..]) =~{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999} As `4esn` Return *,{_usn4:$123456789 Is Not Null Is Not Null} As `5esn`,None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] As _usn3 Order By $_usn4[$`1esn`] Asc,$7 Ends With `5esn` Descending Limit .e1 Ends With _usn4 Ends With @usn5 Merge (`7esn` {_usn3:usn1 Contains $``})<-[usn1]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12}) On Create Set `4esn` =.e12[.12..][_usn4..] On Match Set @usn5+=`` In `6esn`,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`` Is Null Is Null).`` =12.e12 Is Not Null"), - octest:ct_string("Unwind 1.e1 Is Not Null Is Not Null As `4esn` Delete Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}),07,`2esn`[$`3esn`..] With 123.654 Is Not Null Is Not Null As `3esn`,$usn1 In 1000 In $#usn7 As `8esn` Order By .12 Starts With $usn2 Asc,[usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..] Asc,{`8esn`:$123456789 Is Null Is Null,_usn3:$`4esn` Starts With 1e1}[(#usn7 :`2esn`:`3esn`)<-[`8esn`?]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})..All(_usn4 In usn1 Contains False Contains `` Where $`8esn`[$``..$7][$1000..$`7esn`])] Descending Skip $@usn5[$#usn8..][9e1..] Limit $123456789[0X7..12.e12] Where 0.12[0.e0..][`4esn`..] Union Optional Match ((_usn4 {`8esn`:9e1 In 01 In 999})),`1esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}) Where @usn5 Contains $`1esn` Contains 999 Union All With Distinct 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Order By [usn1 In 00 Starts With _usn3 Where 00][#usn8(Distinct $`2esn`[$123456789..$`1esn`][0Xa..$``],@usn6[`5esn`..$`3esn`])..['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`]] Asc,999 Contains `7esn` Desc,Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`] Ascending Skip 0e0 Is Null Is Null;"), - octest:ct_string("Create #usn7=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),@usn5=(((_usn3 :_usn3{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[#usn8:`3esn`|:`4esn` *0..010]-(:usn1{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]})))"), - octest:ct_string("Return Distinct ({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}),@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn`,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7 Order By $@usn6[usn2(`3esn`[$`1esn`..])] Asc,12 Ends With 01 Ends With 1e1 Ascending Skip 07[07] Limit 123.654[@usn5] With Distinct Count ( * )[@usn6..0x0],.e0 Is Not Null Is Not Null As `2esn`,usn2 Is Not Null Is Not Null As `2esn` Skip $@usn5 =~$`` =~$usn2 Where `` Starts With 12 Merge ((:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})) On Match Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..];"), - octest:ct_string("Match (`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Where 0xabc Ends With $7 Ends With $`2esn` Optional Match ({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``),(@usn6 :`5esn`{_usn3:010[$`8esn`..][0..],_usn3:`2esn` Is Not Null Is Not Null}) Merge usn1=((:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[#usn8? *0xabc]-(#usn8 :`4esn`:#usn8)) On Match Set #usn7($123456789 Contains 01 Contains 0.12).usn2! =.e12 =~0.0 =~9e0,All(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1).`4esn` =$999[12.0..],`8esn`+=Filter(_usn4 In usn1 Contains False Contains `` Where 9e0 =~$`5esn`) =~``($`4esn`[usn1..$#usn8][12.0..`3esn`]) =~Single(usn2 In 1000 Contains 0.e0);"), - octest:ct_string("Unwind ``[Count(*)..][@usn5..] As usn1 Detach Delete {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}[..[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]]] Union All Remove (`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[? *0..010]-(#usn8 :`4esn`:#usn8).`6esn`!,[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null].`5esn`? Remove Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where .e12[..0.e0][..$`1esn`]).`5esn`!,Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`).`5esn`? Remove {`6esn`:9e1 Contains $`3esn` Contains 01234567}.`2esn`"), - octest:ct_string("Create usn1=((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)),(:usn1) Detach Delete $`6esn` =~Null =~9e12 Delete Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]},0.12 Is Null Is Null Union Merge `8esn`=((`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) On Match Set Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0Xa Is Not Null Is Not Null)._usn3? =Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}),#usn7+=$`7esn` =~.e1,Filter(`4esn` In 's_str'[12..'s_str'] Where $123456789 Contains 01 Contains 0.12).#usn8! =.12[`1esn`..] On Create Set #usn8+=12[0X7..@usn6],{``:12e12[$`5esn`][07],_usn3:$`6esn` Is Null Is Null}.usn1 =$`6esn` Is Not Null Is Not Null Optional Match `1esn`=(((`` :@usn5)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn5:`8esn`|:usn1]-(#usn7 :`5esn`))),usn1=(_usn4 :`8esn`{`3esn`:False[.e1..Null],`3esn`:9e0 =~$`5esn`}) Where 9e1 Is Null Is Null Merge ((({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[usn2?]-(`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))) On Match Set `2esn` =$usn2[False..`7esn`][`7esn`.._usn3],``+=_usn4 Ends With 01 Ends With $`1esn`,``+=01 Ends With .e0 On Match Set `7esn` ={`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)],@usn6 =`5esn` In $999 Union All With [@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] As `3esn`,`` =~12 =~$#usn7,False Is Not Null Is Not Null As `2esn` Skip 999[$usn2..] Limit 00 In 0.12 In `5esn` Where $7[.12] Merge #usn8=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})))"), - octest:ct_string("Optional Match ((`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})<-[?{`8esn`:_usn3 Ends With 0x0 Ends With 01234567,#usn8:$`7esn` Is Null Is Null}]->(:``{#usn8:$`2esn`[..`2esn`]})<-[@usn5:#usn7|:_usn4]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})),_usn3=(`6esn` :`7esn`)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]}) Where @usn6[`3esn`..][$7..] Union All Delete Extract(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null) =~Any(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null) =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Merge `6esn`=(({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})) Match (_usn4 :#usn8)<-[`6esn`? *..7{`3esn`:123456789[$#usn7..]}]-(:`2esn`:`3esn`{`7esn`:$_usn4[#usn8..]})-[usn1?:_usn3|:`4esn` *123456789..999{`6esn`:01 Ends With .e0,`4esn`:$`7esn` Is Not Null}]->(_usn3 ) Union All Merge ((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)) On Create Set All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 9e12[usn2..7][.e1..$`7esn`])._usn3? =$`1esn` =~$`1esn` =~#usn7,`2esn`+={`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] On Create Set None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7).`2esn`! =.e1[..$`4esn`][.._usn4];"), - octest:ct_string("Remove Any(`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]).`3esn`,[$`2esn`[..7][..$usn1]]._usn4!,[0X0123456789ABCDEF Is Not Null,\"d_str\"].`4esn`! Return Distinct 1.e1 =~$_usn4 As usn2,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,{_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] Order By $12 Starts With #usn7 Asc,$0[$0..] Descending Merge `8esn`=(:`8esn`) On Match Set usn2+=.e1 Ends With _usn4 Ends With @usn5,@usn5+=_usn3 In .e1 In $12,Extract(`4esn` In `6esn`[1e1..] Where $`7esn` Ends With `1esn` Ends With True).`` =010 In @usn6;"), - octest:ct_string("Unwind $`1esn` =~$`1esn` =~#usn7 As `4esn` Unwind 010 In @usn5 In `5esn` As #usn7 Merge _usn3=(((:@usn5{#usn7:1e1[@usn5..]})-[:#usn8 *..0X7]->($12)-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})))"), - octest:ct_string("Create `8esn`=((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`).``? Remove All(@usn6 In @usn5 In $`6esn` Where $@usn5 In 12e12 In Count(*)).#usn8?,[`4esn` In 's_str'[12..'s_str']].#usn7!"), - octest:ct_string("Create (((_usn3 {usn1:_usn3 Contains @usn6 Contains 1.e1})-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 {#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7})<-[_usn3:``|:_usn4 *999..]->(`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`}))) Optional Match @usn5=((:#usn8$usn1)-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})),((#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})) Union All With Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As `1esn`,0.e0[..#usn8][..Null] Order By 07 Ends With 07 Asc,12.e12[$`7esn`] Desc Limit {usn1:'s_str'[12..'s_str'],#usn7:07[`6esn`..][`5esn`..]} Return $`5esn` In `2esn` In $12 As `3esn` Order By [@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0] Is Null Descending,.e1 Starts With $`8esn` Descending,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] Asc Skip $@usn5 Unwind Extract(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0|$_usn4[`3esn`][0]) Is Null Is Null As `` Union All With $`7esn` Is Null Is Null,0Xa[#usn7] As `4esn` Order By $`5esn` Is Null Is Null Ascending,`` Asc,usn2 Starts With `6esn` Starts With 12e12 Desc Limit 9e1[$@usn6..] Optional Match ((:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]})),`6esn`=((#usn7 {`2esn`:$@usn6[..$usn1],usn2:12 Ends With 01 Ends With 1e1})) Remove `3esn`:#usn7,None(`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]).#usn8?"), - octest:ct_string("Create (`1esn` :`1esn`) Return Distinct Null Is Null Is Null As `6esn`,$#usn8[1e1][9e1] As @usn5,[@usn5 In .12[#usn7][$`8esn`] Where $_usn4[12e12][`4esn`]][`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])..``(False In `3esn`)][[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]]..Filter(@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12])] Order By `2esn` Contains $999 Asc Skip $@usn6 =~$#usn8 =~$#usn7 Limit 12.0[({#usn8:12.0[..$7][..999],@usn5:$`1esn` Is Null})-[#usn7:`1esn` *07..]->(#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})..`4esn`(Distinct $`` Ends With 12e12)] Unwind $usn1[1e1.._usn3][$@usn6..$#usn7] As usn1 Union All Create @usn6=(`` :#usn7)<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})<-[`5esn`?:`6esn`]->(`6esn` :`6esn`:`7esn`{_usn4:\"d_str\"}),`6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union All Unwind All(usn1 In 0x0[..`4esn`] Where 07 In $7 In 12) =~Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 999[$`6esn`]|$`8esn` In \"d_str\" In 9e12) As #usn7 Unwind Single(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`) Is Null As `2esn` Optional Match `4esn`=(:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) Where $usn2[..12.0]"), - octest:ct_string("Delete {_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]} Ends With Extract(`4esn` In $`8esn` Starts With 1000 Where `6esn`['s_str'..][010..]|12.e12[@usn5..123.654]) Ends With [$`5esn` Is Not Null,0e0 Is Null Is Null] Create _usn4=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),(((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})-[?*..{`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}]-(`` :`3esn`:`1esn`{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-({usn1:010[@usn5..],`7esn`:`2esn` Is Not Null Is Not Null}))) Match ({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})-[#usn7:`1esn` *07..]->(:`7esn`{``:$`1esn` Starts With @usn6})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) Where 9e12 =~01 =~$`7esn`;"), - octest:ct_string("Create `1esn`=(((usn1 :`4esn`:#usn8)-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}))),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`)<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)) Remove ({`5esn`:9e1 Starts With _usn3 Starts With `4esn`})<-[@usn5?:``|:_usn4]-({`5esn`:123456789 Starts With `2esn` Starts With .0}).#usn7 Delete $`1esn` Is Null Is Null,_usn4 Starts With 0X7"), - octest:ct_string("Optional Match ((:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})),_usn4=(({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})<-[#usn7]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn4:usn1)) Where _usn4 Ends With 01 Ends With $`1esn` Union All Merge usn2=((`3esn` :`4esn`:#usn8)<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})) On Match Set #usn7 =Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]} On Create Set `1esn` =Null[0.e0..0x0] Optional Match ({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}),(usn2 :`2esn`:`3esn`)-[`7esn`?]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) Where 0Xa Is Null Is Null Delete 1000 Contains 123456789 Contains 1e1,(`6esn` :`3esn`:`1esn`{_usn3:1e1[.e1..],`1esn`:$#usn8})-[`4esn`:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]-(`5esn` :#usn7)-[ *..0X7]->(`5esn` :_usn4:usn1) Starts With None(@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2) Starts With [.0 =~$#usn8 =~.0,0e0 Is Not Null Is Not Null,_usn3[.0]],0e0 Union Merge _usn3=((#usn7 :``)<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]})<-[? *12..0xabc]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})) On Create Set `6esn` =7[..0X7][..'s_str'],[$`5esn` Contains $@usn6].`1esn` =1e1[@usn5..],Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 07 In 0 In 's_str').@usn5? =True Is Not Null On Create Set usn2 =_usn3 Is Not Null Is Not Null,`4esn` =.e1 Starts With $`8esn`"), - octest:ct_string("With Distinct 0X7 In $@usn5 In 9e0,$`1esn`[9e1.._usn4][$999..$`2esn`] Skip $`5esn` In `2esn` In .0 Limit .0 Is Null Is Null Return Distinct 01234567[$@usn6..0X7][$`1esn`..123.654] As `6esn`,Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789},{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[{`4esn`:$7 Ends With 12.0 Ends With 0xabc,_usn4:0X0123456789ABCDEF[.e0..$`4esn`]}..][Extract(`4esn` In `6esn`['s_str'..][010..] Where $999 Ends With $`3esn` Ends With `8esn`)..] Skip {#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null Limit 12.0 Contains 9e0 Contains $`7esn` Return *,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] Order By 0.0 Is Null Is Null Ascending,$usn2[0e0..] Descending,'s_str'[..0.0][..$`4esn`] Ascending Skip $`2esn`[``..] Limit `3esn` =~`3esn` =~$`6esn` Union All Remove Filter(`4esn` In `6esn`[1e1..] Where 12.0[``]).#usn8!,{`8esn`:usn2 Is Null Is Null,#usn8:True =~@usn5 =~$`1esn`}.usn2!"), - octest:ct_string("Create `6esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})),(((`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`5esn`)<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 ))) Return *,123456789 Starts With #usn7 Starts With `6esn` Order By 's_str' Is Not Null Is Not Null Asc,_usn3 Ends With 0x0 Ends With 01234567 Ascending Skip Filter(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null) Ends With [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1] Ends With _usn3(Distinct $123456789 Ends With $`6esn`) Remove {@usn5:7[..12e12][..$`6esn`]}.usn1,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]|9e0 Starts With `6esn`].#usn8?,9e12.usn1"), - octest:ct_string("Return $usn2[12..$`7esn`][$0..$`7esn`],0x0 Contains _usn4 Contains 123456789 As `7esn`,9e12 Ends With 0X0123456789ABCDEF Ends With #usn7 As `5esn` Order By 01234567 Ends With 12.0 Ends With 0X7 Ascending,12e12 Ends With 010 Ends With .0 Asc Limit count(Distinct 's_str' Starts With 1000 Starts With #usn8,12e12 Starts With $123456789 Starts With 12.0)[[_usn4 In usn1 Contains False Contains `` Where $#usn8]][[$`1esn` Is Null,\"d_str\" =~`6esn` =~0Xa,$usn2[0e0..]]] With 7[$`4esn`..123456789] As `2esn` Limit 1000 Ends With 1000 Ends With $`4esn` Where $usn2[..12.0] Detach Delete $123456789 =~$0 =~$`3esn`,$0 Contains `7esn` Contains $`8esn`,9e0[False] Union All Merge (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Merge ((`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) Remove Single(`4esn` In $`8esn` Starts With 1000 Where `6esn`['s_str'..][010..]).@usn5,(usn2 :`3esn`:`1esn`)-[ *..7]-(usn1 :`4esn`:#usn8)-[?:`3esn`|:`4esn`]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`3esn`,(:`1esn`{_usn4:$_usn3[Null]})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]-(`2esn` :#usn7)-[:usn2|#usn8 *01234567..12]-(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})._usn3 Union All Create #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`)"), - octest:ct_string("With Distinct $`7esn` Is Null Is Null,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])],`7esn` Contains .0 Contains 9e12 As #usn8 Order By count(Distinct 's_str' Starts With 1000 Starts With #usn8,12e12 Starts With $123456789 Starts With 12.0)[[_usn4 In usn1 Contains False Contains `` Where $#usn8]][[$`1esn` Is Null,\"d_str\" =~`6esn` =~0Xa,$usn2[0e0..]]] Desc Skip 123.654 Starts With usn1 Starts With @usn5 Limit $123456789[$``][010] Union Optional Match `7esn`=(`2esn` )<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}),`1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Where Null[01234567][01234567]"), - octest:ct_string("Create `3esn`=((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})),(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}) Optional Match `5esn`=(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})<-[?:`7esn`|`2esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}]->(usn1 :#usn8))),#usn8=(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Where 0 Contains 12e12 Union Unwind usn1 Starts With $#usn7 Starts With `5esn` As `3esn` Detach Delete 0x0[0X7..][usn1..] Union With Distinct *,$_usn3 =~`7esn` =~$_usn4 As `` Skip Count ( * ) Ends With 1000 Ends With 12 Limit .e1[..$`4esn`][.._usn4] Where $`3esn` =~$`7esn` =~False Unwind .0 Starts With `2esn` Starts With `6esn` As `2esn`"), - octest:ct_string("Delete $`5esn` Contains $@usn6,123456789 Starts With #usn7 Starts With `6esn`,0.12 With $@usn5[#usn8..][$`1esn`..] As `7esn`,usn1 Contains False Contains `` As #usn8 Order By 0 =~$`8esn` =~0X7 Desc,False[..12.e12] Descending,07 Ascending Skip Count ( * ) =~Count(*) Unwind True Is Not Null Is Not Null As `8esn`"), - octest:ct_string("Remove [`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999]].`5esn`!,[$123456789[$`2esn`][True]].@usn6?,(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]})<-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]-(`1esn` :`4esn`:#usn8{_usn4:$_usn4[#usn8..]}).`3esn` Union Unwind 0.12 In $`4esn` In `6esn` As `5esn`"), - octest:ct_string("Return *,[`4esn` In 's_str'[12..'s_str'] Where 9e1 Contains $`3esn` Contains 01234567][[7[..12e12][..$`6esn`]]..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}],$999 Ends With $`3esn` Ends With `8esn` Order By .12[..$`6esn`] Descending,@usn6(Distinct Null[0e0][12])[..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]]][..`8esn`(010 =~`6esn`)] Descending Skip Count(*)[True] Limit 0xabc Ends With $7 Ends With $`2esn`;"), - octest:ct_string("Unwind @usn6 Contains _usn4 Contains $`4esn` As `4esn` Remove None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12).#usn8"), - octest:ct_string("Detach Delete 1000 Ends With 1000 Ends With $`4esn`,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)],{_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]} Optional Match #usn7=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))),(((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]-({usn1:0x0[0X7..][usn1..]}))) Detach Delete .e12 Contains 9e0,$`2esn`[``..],Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) Union All Return Distinct *,All(usn1 In 0x0[..`4esn`] Where $0[$#usn8..01234567]) In [_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0|$`7esn` Is Not Null] In [.12 Ends With `1esn` Ends With $`1esn`,$usn2[False..`7esn`][`7esn`.._usn3],\"d_str\" Contains `3esn` Contains 00] Skip $`6esn`[$@usn6..] Limit 00 Starts With _usn3 Union Optional Match ((:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})),`1esn`=((@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) Where 0 Ends With $7 Ends With _usn3 Unwind `6esn`[..`5esn`] As #usn8"), - octest:ct_string("With Distinct $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Order By $12[01..][1.e1..] Descending Skip .12[.e12..0.e0][0.e0..$`2esn`] Union All Delete [`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..],$`2esn` =~'s_str' Union Detach Delete `` In `6esn`,@usn6 Contains .e1 Contains $`4esn`"), - octest:ct_string("Merge `8esn`=(:`8esn`) On Match Set usn2+=.e1 Ends With _usn4 Ends With @usn5,@usn5+=_usn3 In .e1 In $12,Extract(`4esn` In `6esn`[1e1..] Where $`7esn` Ends With `1esn` Ends With True).`` =010 In @usn6 Return Distinct Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1),9e1[010..] As `6esn` Order By $1000 Contains $`3esn` Desc,(`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Ascending,[$`3esn` Starts With 01234567 Starts With $1000] Starts With `4esn` Starts With [$`2esn`[..7][..$usn1]] Desc Skip $`7esn` =~.e1 Union All Detach Delete 1e1[..#usn7][..#usn7]"), - octest:ct_string("Remove [07 In `5esn` In 12e12]._usn3? Create ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7}))"), - octest:ct_string("Return *,0.12[Count(*)..],$@usn5 =~$`` =~$usn2 As #usn8 Return *,01234567 Starts With $_usn4 As `1esn` Union Create ((`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})),_usn4=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})) With Distinct $`2esn` Starts With .e0 Starts With 12.0 Order By ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] Ascending,0e0 =~Count(*) =~0Xa Descending,{`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])] Asc With Distinct *,$usn1 In 1000 In $#usn7 As `8esn`,$@usn6 =~$#usn8 =~$#usn7 As `2esn` Order By 0Xa[0xabc..$#usn8] Desc Skip `1esn`[`3esn`..][$@usn6..] Where usn2[$`7esn`..010][00..``] Union All Create ``=(:``{#usn8:$`2esn`[..`2esn`]}),@usn5=((:@usn6:`7esn`{@usn6:12.0[``],_usn4:$`3esn` Contains 0X0123456789ABCDEF Contains 00})) Create @usn5=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) Delete [$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..],123456789 Starts With `2esn` Starts With 9e12,[Count(*)['s_str'..`1esn`],$_usn3[`2esn`][01234567]] Ends With All(@usn5 In .12[#usn7][$`8esn`] Where 0X7[.e12..01234567]) Ends With Filter(_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01])"), - octest:ct_string("Create ((:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]})),((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Unwind `4esn` =~$`3esn` =~$123456789 As #usn7 With Distinct [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending,9e12 Asc Skip 0X7[.e12..01234567] Limit $_usn4[0.12..$`6esn`][00..$@usn6];"), - octest:ct_string("With Distinct 0x0 In `8esn` In 999,``[$`3esn`][$`2esn`],01234567 Ends With 12.0 Ends With 0X7 Order By Count ( * )[..usn1][..12.e12] Asc,$usn2 Is Not Null Is Not Null Descending Skip `3esn`(Distinct $_usn3[Null],12[..True][..$`4esn`]) Is Null Is Null Where 1000 Contains 0.e0 Merge usn1=((:_usn4:usn1{#usn8:$`7esn` Ends With `1esn` Ends With True})-[`7esn`?:usn1|`3esn` *123456789..999{`5esn`:.e1 In $@usn6 In 999}]-(usn2 :#usn8{`3esn`:123.654[@usn5]}))"), - octest:ct_string("Unwind 0e0[#usn8][$_usn3] As #usn8 Optional Match ((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),((_usn4 {`8esn`:9e1 In 01 In 999})) Union All Return Distinct *,Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] With Distinct *,[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..] As @usn6,0x0[123456789] As _usn3 Order By Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]|$0 =~$usn1 =~9e1)[{``:\"d_str\",`1esn`:$1000 =~$`7esn`}] Descending Skip $`5esn` In `2esn` In .0 Where 9e12[0.0..12.e12] Return *,False[`2esn`..#usn8] Skip 123456789[1e1..0.0] Limit `` Starts With @usn5 Union Unwind $usn2 Contains 12.e12 Contains 00 As #usn7 Merge _usn4=((@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) On Match Set Extract(usn2 In 1000 Contains 0.e0 Where $1000[01234567]|$`6esn`[Count(*)..0.e0][0.0..Count ( * )]).`8esn`! =$123456789[False.._usn3],`3esn`(Distinct 0X7 In $999 In $``,$0 Is Not Null).`7esn`? =0.e0[123.654],`1esn`+=True Starts With 12.0 Starts With $@usn5;"), - octest:ct_string("Detach Delete {`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}[[`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]]][Count ( * )] Unwind $@usn6 Is Null As `` Merge `3esn`=(((:_usn4:usn1{usn2:$`5esn` In False})<-[?:@usn5|`8esn` *..0X7]->(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}))) On Create Set [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]].`1esn` =9e12 =~01 =~$`7esn` On Create Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$`` Union All Create `4esn`=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})),(`7esn` :_usn4:usn1)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})-[`1esn`{`2esn`:.12 Starts With @usn5 Starts With $#usn8}]->(:usn1{`6esn`:1000 Contains 0.e0,`7esn`:$@usn6[..$#usn7][..12.e12]}) Create @usn5=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) Remove ``(9e0 Contains `8esn`).`1esn`,[$`1esn` Is Null Is Null,010 Contains 0X0123456789ABCDEF,9e1[0.e0..][#usn8..]].`` Union All Merge `4esn`=((#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) On Match Set {`8esn`:`8esn` In $@usn5}.`3esn`! =$@usn5[#usn8..][$`1esn`..],All(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $@usn6 Is Null Is Null).`1esn`! =$12[..``][..$7] On Create Set usn2 =_usn3 Is Not Null Is Not Null,`4esn` =.e1 Starts With $`8esn`"), - octest:ct_string("With Distinct *,count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null As `6esn`,{#usn8:$`5esn` In False,usn2:$`7esn` In $7} Starts With Filter(usn2 In 1000 Contains 0.e0 Where `2esn`[$`3esn`..]) Starts With All(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`) As `` Skip 01234567[$`7esn`][_usn3] Unwind `4esn` =~$`3esn` =~$123456789 As #usn7 Unwind $1000 In $`7esn` In $7 As usn1 Union All Delete 0e0[12][$_usn4];"), - octest:ct_string("Merge #usn8=((:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[`2esn`? *0..010]->(usn2 :_usn3)-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]})) On Match Set [usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01|`1esn`[@usn6..$123456789]].`8esn`? =Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]),@usn5 =Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null,_usn3+=$@usn5 =~$`` =~$usn2 On Match Set #usn8 =({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null,`2esn`+=Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}),#usn8 =$`7esn` Ends With `1esn` Ends With True Merge _usn3=((_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})) On Match Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] On Create Set None(`4esn` In 's_str'[12..'s_str'] Where @usn5 In 0X0123456789ABCDEF).`2esn`! =$`1esn` Is Null,`5esn`()._usn4! =[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00],`8esn` =`7esn` Contains .0 Contains 9e12 With `` Starts With 12,[@usn5 In .12[#usn7][$`8esn`] Where $_usn4[12e12][`4esn`]][`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])..``(False In `3esn`)][[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]]..Filter(@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12])] As `4esn`,Count(*)[`7esn`..$12] As `` Skip 0X7[..12e12] Where 9e12[..$``][..`6esn`]"), - octest:ct_string("With Distinct *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `3esn`,Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])[All(#usn7 In 01234567[$`3esn`..] Where Count(*)[.e0.._usn4])..][None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..])..] Order By ({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Desc,0x0 Desc,0.e0 Starts With 12.e12 Starts With .e12 Desc Skip [\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Limit usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Where 123456789 Is Null Optional Match usn1=((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})) Where 1000 Contains 0.e0 Merge `5esn`=(usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[ *0xabc{`1esn`:123.654 In \"d_str\" In $_usn3}]-({`2esn`:$usn2 Is Not Null})"), - octest:ct_string("Return Distinct 9e1[010..],Extract(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]|1000[..$`6esn`][..0xabc]) Ends With [07[$999],12e12[Count ( * )..][usn2..]] Merge #usn7=((_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]})) On Match Set @usn6+=(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}] On Match Set (usn1 :#usn7)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->(`4esn` {`7esn`:.e0[..999][..0X7]}).usn2 =$`3esn`[`2esn`...e0] Union All With Distinct All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null,0xabc[$@usn5] As `7esn`,.e0[usn2..] As _usn3 Order By False[..12.e12] Descending Skip [\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Limit 7 In @usn5 In $`4esn` Where 12e12 Starts With $123456789 Starts With 12.0 Detach Delete 010 Starts With `7esn` Starts With 9e1 With Distinct *,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Order By .e0 Contains 01234567 Descending,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Desc,'s_str' Starts With 1000 Starts With #usn8 Descending Where 123456789 =~_usn4 =~$0"), - octest:ct_string("Return Distinct *,Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4) Is Null As #usn8,`8esn`(Distinct False Contains `3esn`,9e12 =~01 =~$`7esn`)[[@usn6[`5esn`..$`3esn`],0e0 Is Not Null Is Not Null]..] Order By {`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,0.12 In $7 In 0 Desc Skip 0Xa In .e1 In Count(*) Limit $`4esn`[$`6esn`] Optional Match _usn4=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))),@usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})) Union Unwind 07[..010][..12.0] As `3esn` Return Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] As usn1,@usn5[_usn4..][.e0..] As usn1 Limit $`1esn` Is Null;"), - octest:ct_string("With Distinct #usn7 Starts With 0x0 Starts With Null,{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}[Extract(_usn4 In usn1 Contains False Contains `` Where `5esn`[.e1][0Xa])..],[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As @usn5 Limit All(@usn5 In .12[#usn7][$`8esn`] Where $`5esn` Contains $@usn6) Is Null Is Null Unwind Count(*)[`7esn`..$12] As `6esn` Unwind Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] As `8esn` Union All With 010 In @usn6 Order By (:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0}) Starts With Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) Starts With [12.0 In 1000 In _usn4] Ascending Limit `7esn`[1e1..07][0x0..Count ( * )] Union Optional Match `8esn`=()<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Optional Match ((`2esn` :usn2:@usn6)-[usn1?{`7esn`:$`2esn` Starts With .e0 Starts With 12.0}]-(`5esn` {`5esn`:$`5esn`[False]})) Where _usn3 Is Null"), - octest:ct_string("Merge @usn5=((({`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}))) On Create Set `8esn` =0.e0[9e0][0e0],_usn3 =0Xa[0xabc..$#usn8] On Match Set `6esn` =[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] Unwind 123456789[`4esn`..][Count ( * )..] As _usn3 Delete 999 Contains `7esn`"), - octest:ct_string("Optional Match usn2=((#usn8 :`4esn`:#usn8)-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)) Unwind $`1esn` Is Null Is Null As `8esn` Union All Merge `5esn`=((({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(_usn4 {`1esn`:010[@usn5..]})<-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(:``{_usn3:0X0123456789ABCDEF In 01234567}))) On Create Set `4esn`+=01234567[.12..7][1000..1.e1],``(`` In `6esn`).@usn6 =`1esn` In 999 In $#usn7,`7esn` =9e12 On Create Set {usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]}.usn2? =9e12 Contains .e0 Contains .e0,_usn3 =`7esn`($123456789 In Count(*) In .e1) Ends With Extract(@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|Count ( * )) Ends With Any(usn1 In 0x0[..`4esn`] Where False[.e1..Null]),@usn6+=Any(`4esn` In $`8esn` Starts With 1000 Where 0.12 Is Null Is Null) Is Not Null Is Not Null With Distinct All(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`)[[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]]..][({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})..] As #usn8,07[0..`4esn`] As `` Order By 0 Ends With $7 Ends With _usn3 Ascending Limit 07 =~`8esn` =~0 Where $999[12.0..] Merge @usn5=(((:`1esn`{#usn7:1e1[`6esn`..]})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) On Create Set _usn4 =All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)[[usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1]],#usn7 =_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) On Create Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$`` Union All Return `3esn` =~`3esn` =~$`6esn` As `7esn` Limit $`7esn` Is Null Is Null Return *,00[``..][$`4esn`..] As `6esn`,$`6esn`[$`1esn`][1000] Order By `1esn`[@usn6..$123456789] Asc,`1esn`[9e12..$`8esn`][usn2..$``] Ascending,`7esn`[..0X0123456789ABCDEF][..$0] Desc Skip $usn2[0e0..] Limit (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]);"), - octest:ct_string("Merge ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) On Match Set (`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})<-[?{#usn7:`6esn`[False..0.0][12e12..$usn2]}]-(`4esn` {`4esn`:#usn7[..$1000][..01]})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}).`4esn`! =0 Is Not Null,`6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`1esn` =$_usn3[$`4esn`..Null] On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Delete $`2esn` Ends With `3esn` Ends With $7,0e0[12][$_usn4],`7esn`[Null..][@usn5..] Merge (((usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1)<-[@usn5:#usn8{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(#usn8 :_usn3))) Union Detach Delete 999[$`8esn`],Single(#usn7 In 01234567[$`3esn`..])[(`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']})][[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0]],$#usn7 In .e1 In 01 Delete 01 In 01 In 12,`6esn`[0X7..][0x0..] Union All Merge _usn3=((@usn6 :_usn3{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(`4esn` :`4esn`:#usn8{`1esn`:$@usn5 In 12e12 In Count(*)})) Create (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Detach Delete {@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null} Is Not Null Is Not Null,00 In 0.12 In `5esn`,Single(#usn8 In $`5esn` Is Null Is Null Where 1000[0.0][Null]) =~[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] =~None(#usn8 In $`5esn` Is Null Is Null Where 0.0[..12e12][..$0]);"), - octest:ct_string("Delete [07,$_usn3[..Count ( * )][..@usn5]][All(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0)..{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}][[010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]]..Filter(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12)],`6esn` Starts With $usn2 Starts With 0.0 Union Delete 's_str'[12..'s_str'],.e12[usn2][01],[@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Merge `6esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}) On Match Set Filter(usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01).`8esn`! =`6esn`[..`5esn`] Union All With Distinct *,0.12 In $`4esn` In `6esn`,`4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}] As `2esn` Skip 0X7[..12e12] With Distinct *,{`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] Order By 9e1 Starts With _usn3 Starts With `4esn` Descending,usn2(Distinct _usn3 Contains @usn6 Contains 1.e1)[Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where _usn3 Is Null)..[12e12[0.e0][9e1]]][Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``])..Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)] Descending Limit 0 Starts With 12e12 Starts With `4esn` Unwind 12.e12 In $1000 As `6esn`"), - octest:ct_string("Optional Match `2esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}),(#usn7 :@usn5)<-[@usn5*]->({``:$1000 Is Null Is Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(`7esn` :`2esn`:`3esn`) Remove All(`2esn` In `7esn` Starts With $`` Starts With $#usn7).#usn8!,[_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0].@usn6,(`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})-[?{`5esn`:0Xa In .e1 In Count(*)}]-({`1esn`:@usn6}).#usn7!"), - octest:ct_string("With Distinct $999[$1000] As `4esn`,[`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Limit {`8esn`:@usn5[..True][..0X7],`1esn`:`1esn` Contains Count ( * )}[{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)] Where $_usn4[12e12][`4esn`] Delete [True[..'s_str'][..01]] In Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999]) In All(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`]),$`5esn` Starts With _usn3 Starts With @usn5 Return None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) As _usn3"), - octest:ct_string("Merge ((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[? *0..010]-(#usn8 :`4esn`:#usn8)) On Create Set `4esn` =.e12[.12..][_usn4..] On Match Set {`2esn`:12 =~usn1 =~.e12}.usn2 =False Is Not Null Is Not Null,`3esn` =010 In @usn5 In `5esn`,[usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null].@usn5! =$1000 Ends With 1e1 Ends With 123.654"), - octest:ct_string("Create (_usn4 :@usn6:`7esn`)<-[#usn8?:_usn4|:@usn5 *..0x0]-(`6esn` :#usn7{`5esn`:#usn7 Is Not Null Is Not Null})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) Union All Return Distinct 1e1[..#usn7][..#usn7],0[0.12..] As @usn5 Order By (_usn3 :`6esn`:`7esn`{usn1:$_usn3[9e1][$_usn4],`8esn`:123456789 =~_usn4 =~$0})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-({`1esn`:@usn6}) In _usn3(0x0[0X7..][usn1..]) In None(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str') Descending,[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Desc Skip Single(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) In [$123456789 Contains usn2,010 Is Null Is Null,`7esn` Starts With $usn2 Starts With .e0] In `2esn`($`5esn` Is Not Null,7 In $`3esn` In #usn7)"), - octest:ct_string("Match ((:_usn3{usn2:$`5esn`[$123456789][`1esn`]})),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})) Where $0[$#usn8..01234567];"), - octest:ct_string("Optional Match _usn3=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))) Where $`4esn`[$`2esn`..] With *,$`3esn`[`2esn`...e0] As _usn3 Limit Count ( * )[Count ( * )..12e12][usn1..1000] Where 12[0X7..@usn6] Create `2esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Union Delete `4esn` Is Null,$``[False..123.654] Merge ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[ *010{@usn5:Null Is Null Is Null}]-({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]})) Union All Create `1esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) Return Distinct 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Order By [@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0] Is Null Descending Skip #usn8 Is Not Null Create ((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6))"), - octest:ct_string("Return `2esn` Contains $999 As #usn7,$123456789[False.._usn3] As `1esn` Order By [@usn6 In @usn5 In $`6esn` Where $999[$1000]|$7[.12]] In {`1esn`:$@usn6 Contains 07 Contains 0.e0} In (`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) Ascending,00[.e1..] Desc Skip 9e1[.12..] Create (`7esn` {_usn3:usn1 Contains $``})<-[usn1]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12}),`8esn`=((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Merge ((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) On Match Set `7esn`+=.e1[..$`4esn`][.._usn4],`4esn`+=@usn6[$`8esn`][12.e12],@usn5+=1000 Contains $#usn7 Contains `6esn` Union All Return Distinct 07 Ends With 07,{_usn3:12.e12[$1000..],`7esn`:$`2esn` Contains usn1 Contains `2esn`}[..(`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)][..010] Unwind 0Xa[#usn7] As @usn5"), - octest:ct_string("Delete [$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] Union All Match (({_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})),#usn8=({_usn3:12.e12 In $0 In Count(*)})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}) Where `8esn`[1000..$7][$`7esn`..`2esn`] Optional Match `1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) Unwind {#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `5esn`"), - octest:ct_string("Detach Delete Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null)[count(Distinct 0.12 Contains $12 Contains `8esn`)..[$`1esn` Is Null Is Null,9e1 In 01 In 999]],[True =~@usn5 =~$`1esn`] Contains Extract(`4esn` In `6esn`['s_str'..][010..] Where 123456789[$#usn7..]|12[`7esn`...0][0.12..``]) Contains Single(`4esn` In 's_str'[12..'s_str']) Unwind Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`] As `5esn` Merge `8esn`=(`4esn` {`3esn`:0X7[..12e12],`8esn`:False In 123456789 In $0})-[`4esn`?:`1esn`]->(:`2esn`:`3esn`{usn2:$`5esn` In False})<-[#usn7? *00..]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]}) On Match Set `2esn`+=0.0[999..] Union Merge ((({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999})<-[@usn6?:`6esn`*..]-(_usn3 :usn2:@usn6)-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6))) On Match Set `6esn` =(`4esn` :`8esn`{_usn4:0 Is Null Is Null})-[`6esn`:`8esn`|:usn1$_usn3]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Ends With Filter(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999) Ends With [`4esn` In `6esn`[1e1..] Where 07[12e12]],{_usn3:usn1 Contains $``}.`1esn`! =_usn3 Is Not Null Is Not Null;"), - octest:ct_string("Unwind 12.e12 Contains $`5esn` As #usn7 Delete True In 0x0,0X7[12]"), - octest:ct_string("With Distinct (`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) As #usn8 Order By _usn4 Starts With $@usn6 Starts With #usn7 Asc,$#usn7 Desc Where $@usn6 Is Null Is Null"), - octest:ct_string("With .e12[.12..][_usn4..] As _usn4,{`7esn`:.e0 Contains #usn7 Contains $#usn8}[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..None(`6esn` In 0X7 =~`` Where 12.e12['s_str'])][(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})..({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})],$999[$_usn4..][$`5esn`..] Skip 010 In @usn5 In `5esn` Where $@usn6 Is Null Is Null Merge ((:#usn8)<-[`2esn`?]-(:usn2:@usn6{_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})<-[`5esn`? *999..{#usn7:0X7[12]}]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})) On Match Set usn2+=[usn1[..@usn5][...e0]] In Extract(`6esn` In 0X7 =~`` Where $1000 Contains $`3esn`|12 Ends With 01234567) In {`3esn`:$`5esn` In `2esn` In .0,``:0e0 Is Null Is Null},`7esn` =Filter(#usn7 In 01234567[$`3esn`..] Where 0Xa[0xabc..$#usn8])[(:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})<-[usn2 *..0X7{`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`}]->(`8esn` {`6esn`:00 In 12.e12})][{_usn3:#usn7 Starts With `1esn`}],`4esn`+={`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] On Match Set #usn7($123456789 Contains 01 Contains 0.12).usn2! =.e12 =~0.0 =~9e0,All(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1).`4esn` =$999[12.0..],`8esn`+=Filter(_usn4 In usn1 Contains False Contains `` Where 9e0 =~$`5esn`) =~``($`4esn`[usn1..$#usn8][12.0..`3esn`]) =~Single(usn2 In 1000 Contains 0.e0) Union Delete 0.0[..12e12][..$0],1.e1[.e0..0]"), - octest:ct_string("Return Distinct *,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Order By .e0 Contains 01234567 Descending,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Desc,'s_str' Starts With 1000 Starts With #usn8 Descending Optional Match ((usn1 :`6esn`:`7esn`)),((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)) Where 07[..010][..12.0]"), - octest:ct_string("Unwind 123.654 Contains #usn8 As `5esn` Return Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As `5esn`"), - octest:ct_string("Remove usn2:@usn5,`7esn`(0.12 =~01 =~12,#usn7 Is Not Null Is Not Null).#usn7! Delete .e1 Starts With 0.0 Starts With `6esn` Create ((:`5esn`)<-[#usn7{#usn7:False[`2esn`..#usn8]}]->(usn2 :`3esn`:`1esn`)-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})),((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) Union Optional Match usn1=(usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}) With Distinct *,`7esn`[Null..][@usn5..],0X0123456789ABCDEF Contains $usn1 Skip Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] Limit False Ends With $`8esn` Where 0 Starts With 12e12 Starts With `4esn` Union Optional Match #usn8=(((`3esn` )-[?:#usn7|:_usn4]-(usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]})))"), - octest:ct_string("Create @usn5=((:#usn8$usn1)-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})),`1esn`=(`3esn` {``:.e0[7..$`3esn`]}) Create ((_usn4 {`8esn`:9e1 In 01 In 999})),`1esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}) Match usn2=(((:`1esn`)-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}))),(`5esn` {`5esn`:$`5esn`[False]}) Union Merge `7esn`=(`2esn` )<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) Detach Delete usn1 Is Not Null Is Not Null,[$`4esn`[9e1..][0..]][Any(`4esn` In $`8esn` Starts With 1000 Where 0.e0[9e1..][0.0..])..Single(#usn8 In $`5esn` Is Null Is Null Where 1000 Ends With 1000 Ends With $`4esn`)],#usn8 Ends With `4esn` Ends With $`4esn` Create usn2=(({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)-[@usn5{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8}]->(usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})"), - octest:ct_string("With Distinct 1.e1 =~$_usn4 As usn2,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,{_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] Order By $12 Starts With #usn7 Asc,$0[$0..] Descending Where _usn3 Ends With 0x0 Ends With 01234567 With *,0xabc Starts With _usn3 As `3esn`,Null[..12e12][..usn1] As `3esn` Order By 0x0[$`3esn`..010][$#usn7..00] Ascending,010 =~$usn2 =~1e1 Desc,(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Asc Limit 0x0 Contains $`8esn` Contains `6esn` Where 0xabc Contains Null Contains 9e12 With `5esn` In 12 As usn2,Count(*) Starts With 1e1 Starts With $123456789 As #usn7,[`4esn` In 's_str'[12..'s_str'] Where 9e1 Contains $`3esn` Contains 01234567][[7[..12e12][..$`6esn`]]..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}] As #usn8 Order By 00 In 12.e12 Descending,9e0 Ends With $`7esn` Asc Skip 01234567 Is Null Is Null Limit $123456789 In Count(*) In .e1 Where $123456789 Ends With $`6esn` Union Merge (({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})) With Distinct *,#usn8 Is Not Null As _usn4 Skip {@usn5:$@usn6[..$usn1],`1esn`:usn2[`3esn`][_usn3]}[..Any(`4esn` In 's_str'[12..'s_str'] Where Null Contains _usn4)][..{`7esn`:True[..'s_str'][..01]}] Union All Create usn2=(`` :#usn7)<-[:@usn6 *0X0123456789ABCDEF..{_usn3:`7esn` Ends With $usn2 Ends With 999}]-(`2esn` :_usn3) With Distinct [$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] Order By {#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} Desc Skip 00 Starts With _usn3 Limit True =~@usn5 =~$`1esn` Remove [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``?,None(@usn5 In .12[#usn7][$`8esn`] Where 0X7[.e12..01234567]).`5esn`!,`8esn`:`6esn`:`7esn`"), - octest:ct_string("Optional Match #usn8=((:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[`2esn`? *0..010]->(usn2 :_usn3)-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]})) Return Distinct 12.e12 In $0 In Count(*) As `` Return Distinct $`1esn` Starts With $999 As #usn8,Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)[{#usn8:`5esn` =~0Xa,@usn5:0X7[999][$1000]}..[`` Starts With 12,$`1esn` Starts With $999]][`7esn`(Distinct $usn2[..12.0])..`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])] Order By 9e1 Is Not Null Is Not Null Asc,$usn2[$123456789..123.654][$`5esn`..'s_str'] Desc Union All Unwind 123456789 =~$123456789 As `4esn` Unwind $`7esn` Is Null Is Null As @usn5;"), - octest:ct_string("Unwind $1000 Is Not Null Is Not Null As `3esn` Merge (usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)})-[usn2{`6esn`:$@usn6[_usn3..0.e0]}]->({usn1:`4esn` In $12 In `8esn`})<-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`6esn` {`8esn`:`8esn` In $@usn5}) On Match Set Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..]).`8esn` =All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])],@usn6:#usn8 Create ((_usn4 :`7esn`)<-[`6esn`:usn1|`3esn`]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})<-[``?:_usn3|:`4esn`]-(:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})) Union All Merge `6esn`=(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) On Create Set usn1 =00 In 0.12 In `5esn`,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where .e0[..999][..0X7]]._usn4 =(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) On Match Set [usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01|`1esn`[@usn6..$123456789]].`8esn`? =Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]),@usn5 =Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null,_usn3+=$@usn5 =~$`` =~$usn2 Remove `6esn`:@usn5,Extract(@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..])._usn3!,Extract(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7|@usn6[`5esn`..$`3esn`])._usn4! Union All Optional Match ((`5esn` :#usn7)<-[?:usn2|#usn8 *1000..]->(@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})),`2esn`=((:@usn5{#usn7:1e1[@usn5..]})<-[? *0..010]-({@usn6:$123456789 Is Null Is Null,@usn6:`6esn`[1.e1..$#usn7][.e0..True]})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]})) Where False In 123456789 In $0 Merge usn1=(`3esn` :``) On Match Set All(`6esn` In 0X7 =~`` Where 0X7[..12e12])._usn4 =Null Starts With $`7esn` Starts With `2esn`,`5esn`+=999 Contains Count ( * ) Contains 123.654,usn1+=usn1[$`3esn`..$999][True..False]"), - octest:ct_string("With *,00 In 1e1 As `7esn`,0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Skip 7 In @usn5 In $`4esn` Limit {`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]] Return Count ( * ) In 010 Limit Count(*)[True] Create (`4esn` :@usn5{``:$`2esn`[$`2esn`..],@usn6:010 =~`6esn`})"), - octest:ct_string("Optional Match `8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`}) Where 123456789 Starts With `2esn` Starts With .0;"), - octest:ct_string("Merge (({_usn3:$`1esn` Starts With @usn6})-[usn1?:`7esn`|`2esn`{`1esn`:0[usn2..]}]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})) On Match Set usn1+=9e0 Contains `1esn` Contains $usn1 On Match Set Single(@usn5 In $#usn8 Is Null Is Null Where 12.e12 In $0 In Count(*)).#usn7! =$#usn7 =~0xabc,#usn7:_usn4:usn1,`5esn`+={`7esn`:Count(*) In 01 In .0}[..{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}][..#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..])] Match _usn4=(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(@usn6 ) Return *,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn` Skip 1e1[..False] Limit 12e12[$`5esn`][07] Union All Create (({``:12 Is Null Is Null})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)})),#usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})) Remove (`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(`4esn` :#usn7).@usn5?,All(`4esn` In `6esn`['s_str'..][010..] Where \"d_str\" =~`6esn` =~0Xa).``!,(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}).usn1! With Distinct `2esn` Contains $999 As #usn7,$123456789[False.._usn3] As `1esn` Order By (usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Ends With [$`8esn` =~$usn2,0X0123456789ABCDEF[..usn1],`` In `6esn`] Descending Skip 0X7[..12e12] Union All Delete 01234567 Ends With 0x0,{@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7),None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`)[`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)..]"), - octest:ct_string("Return *,9e12 Ends With 0X0123456789ABCDEF Ends With #usn7 As `8esn` Order By Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) Ends With [1e1[@usn5..],$#usn8 Is Null,$0[$#usn8..01234567]] Ends With Extract(`6esn` In 0X7 =~`` Where 010 =~`6esn`) Descending,12.0 Contains 0.e0 Desc Skip .12[.e12..0.e0][0.e0..$`2esn`] Create ((`` :`1esn`)-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`4esn` {`2esn`:@usn6[`5esn`..$`3esn`],`7esn`:$`1esn` Is Null})),`1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) Merge ((`1esn` {_usn4:12.e12 Ends With 01 Ends With .e1})-[_usn4?:`6esn`]->(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]})-[_usn3?:#usn7|:_usn4 *010]->({`1esn`:@usn6})) Union All Optional Match usn2=((`5esn` :usn2:@usn6{`5esn`:0Xa In .e1 In Count(*)})),_usn4=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]}))"), - octest:ct_string("Optional Match #usn8=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),((#usn7 :_usn3)<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]})-[#usn7:_usn3|:`4esn`]-(:#usn7{usn1:$123456789[..0.12][..#usn7]})) Create `8esn`=((:`6esn`:`7esn`{_usn4:12[0X7..@usn6],_usn3:123456789 In $usn2 In `6esn`})<-[#usn7?:_usn3|:`4esn` *00..]->(:`6esn`:`7esn`{_usn3:\"d_str\" Is Null Is Null})<-[@usn6]->(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})),(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})))"), - octest:ct_string("Create `2esn`=(_usn4 {`8esn`:9e1 In 01 In 999})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Union Merge `5esn`=(({_usn3:12.e12 In $0 In Count(*)})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(`2esn` :``)-[:_usn4|:@usn5 *0xabc]-({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})) On Match Set `7esn` ={`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)],@usn6 =`5esn` In $999 On Create Set (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 =123.654 Contains `2esn`,`3esn` =Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`),{`6esn`:$_usn4[$`8esn`..][07..]}.@usn6! =`5esn`[.e1][0Xa] Union All With Distinct [@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7|$999 Ends With $`3esn` Ends With `8esn`] Starts With [$`6esn` Is Null Is Null,0Xa Is Not Null Is Not Null,0X7 In 123.654 In $`2esn`] Starts With [01234567[Null..0.e0][Count(*)..$#usn8]],All(`6esn` In 0X7 =~`` Where 0.12[Null..]) Is Null Is Null As `` Order By $`3esn` In $12 In 's_str' Asc,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null Asc Skip (:`5esn`{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[usn1 *..0x0]->(usn1 :`6esn`:`7esn`)-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})[..[07[$999],@usn6[$`7esn`]]][.._usn4(0X7 In $@usn5 In 9e0)] Limit Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0} Merge @usn5=(({`8esn`:$usn1[0.12..]['s_str'..],`8esn`:`1esn`[0e0..]})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})) On Create Set `6esn`+=Extract(`4esn` In $`8esn` Starts With 1000 Where False In `3esn`|$`3esn` =~Null),`8esn`+=12 Ends With .e12 Ends With $7,(:``{`1esn`:`6esn` =~$_usn3})-[`5esn`?:_usn4|:@usn5]-(usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]}).usn2 =usn1(Distinct) Ends With {`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654} Ends With ({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) On Match Set `7esn`+=9e0[``][123.654];"), - octest:ct_string("Merge `3esn`=((`3esn` :`4esn`:#usn8)<-[#usn8? *0xabc]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})<-[?:`8esn`|:usn1 *123456789..999]-(`3esn` :#usn7)) Unwind \"d_str\" =~`3esn` =~0Xa As `1esn` Union All Optional Match `1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) Where $`3esn` =~$`7esn` =~False With Distinct {`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) As `2esn`,Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null As `5esn` Order By .e0 Contains 01234567 Descending Limit All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])] Remove count(Distinct 0.e0[9e1..][0.0..],$usn2 =~$#usn8).`5esn`?,{`4esn`:9e12 Is Not Null Is Not Null,`8esn`:$0[..`8esn`]}._usn3,@usn5:usn2:@usn6 Union Remove (`` {`5esn`:0X0123456789ABCDEF[.e0..$`4esn`]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :`4esn`:#usn8).@usn5,({@usn6:0X7 In $999 In $``})-[`7esn`{usn1:0 Is Not Null}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`}).@usn6 With *,{`7esn`:Count(*) In 01 In .0}[..{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}][..#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..])] As `5esn`,#usn7 Ends With `4esn` Ends With @usn5 As `` Where $`7esn` Is Null Is Null"), - octest:ct_string("Unwind 07[`6esn`..][`5esn`..] As usn1 Union Match (#usn7 :`6esn`:`7esn`)<-[`3esn`?:_usn3|:`4esn`]->(:`1esn`{_usn4:$_usn3[Null]})-[ *..0X7]->(`5esn` :_usn4:usn1) Detach Delete 9e0 Is Not Null,Count(*)[.e0.._usn4],'s_str'['s_str'..$usn2][_usn3.._usn3]"), - octest:ct_string("Match @usn5=({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)<-[?:usn2|#usn8{#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7}]-({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) Merge `6esn`=(:_usn3{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Optional Match `8esn`=(:`8esn`),`5esn`=(((usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1)<-[@usn5:#usn8{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(#usn8 :_usn3))) Where 0.0[..12e12][..$0]"), - octest:ct_string("Remove {#usn7:False[`2esn`..#usn8]}.#usn7?,@usn6(Distinct 0.12 In 01 In $`3esn`,'s_str' Starts With 1000 Starts With #usn8).#usn8,(:`1esn`{`8esn`:Count ( * ) =~Count(*)})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(`1esn` {_usn4:12.e12 Ends With 01 Ends With .e1})._usn4 Union All Detach Delete {`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) Create ``=((@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`))"), - octest:ct_string("Return *,.12[`1esn`..][$`3esn`..] As usn2 Limit usn2 Starts With @usn6 Union Unwind #usn8 In $0 As usn2;"), - octest:ct_string("With Distinct None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} Order By 123.654[`5esn`] Descending,$`2esn`[..7][..$usn1] Descending,123456789 Starts With _usn4 Starts With @usn6 Descending Where $`4esn`[$`2esn`..] Create `2esn`=((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Merge ((`1esn` :usn2:@usn6)-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})) On Match Set [$usn1 In 1000 In $#usn7,$#usn7 In 12.0 In 0X0123456789ABCDEF,9e0 Is Not Null]._usn3 =All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`! =0xabc Starts With _usn3 Union Delete None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} Union All Detach Delete {usn2:123456789 Starts With `2esn` Starts With 9e12} Ends With All(usn2 In 1000 Contains 0.e0 Where 01234567[Null..0.e0][Count(*)..$#usn8]),9e0[``][123.654];"), - octest:ct_string("Remove {@usn6:123456789 =~$123456789,`4esn`:usn1 Contains False Contains ``}.`3esn`! Detach Delete usn1 Ends With 010 Delete usn1[1e1][$_usn4],$123456789[..0.12][..#usn7] Union All Remove `8esn`(Distinct 00 In 1e1).usn2!,Single(`4esn` In `6esn`['s_str'..][010..] Where 0e0 Is Not Null Is Not Null).`7esn`! Union All With Distinct 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Order By [usn1 In 00 Starts With _usn3 Where 00][#usn8(Distinct $`2esn`[$123456789..$`1esn`][0Xa..$``],@usn6[`5esn`..$`3esn`])..['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`]] Asc,999 Contains `7esn` Desc,Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`] Ascending Skip 0e0 Is Null Is Null;"), - octest:ct_string("Return Distinct *,.e0[..0X0123456789ABCDEF][...e12] As `6esn` Order By $123456789[$``][010] Desc,`4esn` =~$`3esn` =~$123456789 Ascending,@usn5 Starts With 12e12 Starts With @usn5 Desc Skip [$12 Is Null Is Null,999 Contains Count ( * ) Contains 123.654][Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`)..Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0)][[Null Contains _usn4,$`7esn` Is Null Is Null]..({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3})] Limit 7[..12e12][..$`6esn`] Union Remove ({@usn6:9e0 Contains `8esn`})-[usn2 *0X0123456789ABCDEF..{usn2:`` Starts With 12}]-(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})-[`7esn`:@usn5|`8esn`{usn1:9e12 Is Not Null Is Not Null}]->(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]}).``!;"), - octest:ct_string("With *,All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12) Starts With Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Contains .0 Contains .e1) As usn2 Order By All(_usn4 In usn1 Contains False Contains `` Where $`4esn`[$`2esn`..])[..Single(usn1 In $123456789 Contains usn2 Where $usn1[0.12..]['s_str'..])][..``(Distinct `1esn`[0e0..])] Asc,`4esn` =~$`3esn` =~$123456789 Ascending,$123456789[False.._usn3] Desc Skip 7[..0X7][..'s_str'] Where $123456789 Contains 01 Contains 0.12 Unwind 999 Contains `7esn` As `7esn` With Distinct Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As `5esn` Where _usn3 In .e1 In $12 Union All Match #usn8=((`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[:@usn6 *0X0123456789ABCDEF..{_usn3:`7esn` Ends With $usn2 Ends With 999}]-(`2esn` :_usn3)),(({``:12 Is Null Is Null})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)})) Remove [$`5esn`[False],9e1 Contains $`3esn` Contains 01234567,`5esn`[Count ( * )..][\"d_str\"..]].@usn5!,`3esn`:_usn4:usn1,[usn1 In 00 Starts With _usn3].#usn8? Union All Detach Delete 123.654[@usn5] Merge usn2=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) On Create Set None(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0).`4esn`! =0[usn2..],[@usn6[$`3esn`]].`4esn` =01 In _usn3 In 12,`1esn`+=123456789 =~usn1 Unwind `7esn`(0.0[1000..][.e1..],$@usn5 Contains 01)[Any(usn1 In 0x0[..`4esn`] Where 0X7[.e12..01234567])][[$@usn6 Contains 07 Contains 0.e0,`5esn` In 12]] As `8esn`;"), - octest:ct_string("Remove @usn6:`8esn` Create (`2esn` :``)<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(_usn3 :_usn4:usn1),`8esn`=(`4esn` {@usn5:1e1 In $#usn8 In 12e12})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`7esn` {`8esn`:$123456789 Contains 01 Contains 0.12})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8) Unwind 0x0[0.0][$_usn4] As #usn8 Union Detach Delete 0e0 Is Null Is Null,010 Contains 0X0123456789ABCDEF Remove {#usn8:0X0123456789ABCDEF[..usn1]}.`5esn`! With *,00 In 1e1 As `7esn`,0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Skip 7 In @usn5 In $`4esn` Limit {`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]]"), - octest:ct_string("Return Distinct #usn8 In $0 As `1esn`,'s_str' In \"d_str\" In 123456789,[0Xa[$``..][01234567..]] Contains `3esn`(Distinct _usn3 In .e1 In $12) Contains (`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']}) As @usn6 Order By Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Ascending,0xabc[$@usn5] Asc,usn1[..$_usn4][..``] Ascending"), - octest:ct_string("Match `5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Where $`2esn` Contains usn1 Contains `2esn` Unwind 12e12[0.e0][9e1] As usn2 Union Remove None(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7]).usn2!,(:`6esn`:`7esn`{_usn4:12[0X7..@usn6],_usn3:123456789 In $usn2 In `6esn`})-[@usn6?:#usn7|:_usn4 *00..]->(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})<-[? *12..0xabc{@usn5:0xabc[$@usn5]}]-(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})._usn4! Merge @usn5=((:#usn8$usn1)-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})) On Create Set `1esn`+=Null[0e0][12],Filter(usn1 In 0x0[..`4esn`] Where $`` Ends With 12e12).usn1! =Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] On Create Set `6esn`+=$123456789 Ends With .e1 Create (($999))"), - octest:ct_string("With Distinct `` Is Not Null Is Not Null As @usn6,True[Count(*)..][1e1..] Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `7esn` Starts With $usn2 Starts With .e0).`6esn`! Match `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Where 's_str'[12..'s_str'];"), - octest:ct_string("Return *,Count ( * ) In 010 As `1esn` Limit $@usn5 =~07 =~True Merge _usn3=(@usn5 {@usn6:$123456789[0X7..12.e12]}) On Match Set @usn5 =12.e12['s_str'],@usn6 =$usn2[False..`7esn`][`7esn`.._usn3],({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})<-[usn2?:`4esn`|:`7esn` *0X0123456789ABCDEF..]-({usn1:$1000 Contains $`3esn`})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0}).@usn5? =07[07] Return Distinct *,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}) Union All Merge usn1=(`4esn` :#usn7)-[_usn4?:`6esn`]-(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) Delete [07,$_usn3[..Count ( * )][..@usn5]][All(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0)..{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}][[010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]]..Filter(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12)],`6esn` Starts With $usn2 Starts With 0.0 Remove (:`5esn`{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12})-[`5esn`?:`2esn`|usn2 *999..]->(`5esn` {`5esn`:$`5esn`[False]}).`8esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]).`7esn` Union All Merge @usn5=((({`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}))) On Match Set usn2 =$`4esn`[$`6esn`] On Create Set `6esn` =Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`),{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}.`2esn`? =.12[`1esn`..],`5esn`+=0 Starts With `6esn` Starts With 0X0123456789ABCDEF Merge (usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)})-[usn2{`6esn`:$@usn6[_usn3..0.e0]}]->({usn1:`4esn` In $12 In `8esn`})<-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`6esn` {`8esn`:`8esn` In $@usn5}) On Match Set Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..]).`8esn` =All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])],@usn6:#usn8"), - octest:ct_string("Optional Match `3esn`=(usn1 :`6esn`:`7esn`),`1esn`=(({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})) Unwind [\"d_str\" Starts With $usn1,.12 Contains $`4esn` Contains $`6esn`,01234567 =~usn1] Is Null Is Null As _usn3 Remove [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`7esn` Ends With $`2esn` Ends With $usn1|0[0.12..]].@usn5?,{`2esn`:00[01234567][False]}.`1esn`,[_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567|_usn4[$`4esn`..]].`2esn`! Union Return Distinct $`5esn`[$123456789][`1esn`],(`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})-[`4esn`?:`8esn`|:usn1 *..0x0]->(:`7esn`{``:$`1esn` Starts With @usn6}) Ends With `6esn`(Distinct $`4esn`[usn1..$#usn8][12.0..`3esn`],12.e12['s_str']) Ends With (`7esn` {`8esn`:Count ( * ) =~Count(*)})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}) As `7esn`,01234567 As `6esn` Detach Delete $@usn5 In 12e12 In Count(*),`` =~12 =~$#usn7,Null Contains _usn4 Union Unwind .e12[usn2][01] As _usn3 Match usn2=((#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`6esn`?:usn1|`3esn`{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})),((usn1 :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)) Where $0[01234567..00][$`2esn`..$@usn6] Merge (((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) On Create Set @usn6 =`3esn`[..7][..12e12]"), - octest:ct_string("Delete Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}),$@usn6 In $`5esn` In $usn2 With Distinct `` Is Not Null Is Not Null As @usn6,True[Count(*)..][1e1..] Union All Detach Delete Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0},12 Ends With .e12 Ends With $7 Optional Match `6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Where 0.e0[@usn6][0x0] Match (((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))) Where $usn2 In 9e0 In $7"), - octest:ct_string("Delete 1.e1[0X0123456789ABCDEF..][$`5esn`..],$0[0X0123456789ABCDEF..$#usn7] With 07 Ends With 07 As #usn8,00[``..][$`4esn`..],$usn2 Is Not Null Is Not Null Limit {`4esn`:0X7 =~.0 =~\"d_str\",_usn4:00 Ends With $_usn4 Ends With $`2esn`} Ends With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Ends With [$`3esn`[@usn5..$123456789],00,'s_str'[.12..$#usn7][$999..`2esn`]] Union Return Distinct 1000 Contains $#usn7 Contains `6esn` Order By (`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})[Single(`4esn` In 's_str'[12..'s_str'])..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)] Desc,usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Desc,Count ( * ) Contains 999 Contains $`8esn` Asc Merge `7esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})) On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Merge `6esn`=((`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})) On Match Set Any(_usn4 In usn1 Contains False Contains `` Where $`4esn`[$`2esn`..]).usn2 =010 In @usn5 In `5esn` Union With Distinct {`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) As `2esn`,Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null As `5esn` Order By .e0 Contains 01234567 Descending Limit All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])] Create ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7)));"), - octest:ct_string("Match `4esn`=((:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})),`8esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Where 0X7[999][$1000] Remove (_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`).usn2,[`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]|12 Is Null Is Null].#usn8? Union Optional Match (`5esn` {_usn4:0X7 =~``}),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null}));"), - octest:ct_string("Optional Match @usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})),_usn3=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Where $`5esn` Contains Count(*) Contains #usn7 Union All Remove Extract(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`).`3esn`?,{@usn5:0.e0[@usn6][0x0]}._usn4 Optional Match (((`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})<-[?:`7esn`|`2esn`]-(:`6esn`:`7esn`{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}))) Where 12.0[``];"), - octest:ct_string("With Distinct 01234567[.12..7][1000..1.e1],123456789 Starts With `2esn` Starts With 9e12 As `3esn`,$12[01..][1.e1..] Order By $`1esn` Starts With `8esn` Starts With $0 Descending,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] Desc Unwind $`8esn`[``..][123.654..] As `7esn` Union Match #usn7=((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 )),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) Merge `8esn`=(((:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[:#usn7|:_usn4{``:$1000 Is Null Is Null}]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`}))) Merge _usn4=((@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) On Match Set Extract(usn2 In 1000 Contains 0.e0 Where $1000[01234567]|$`6esn`[Count(*)..0.e0][0.0..Count ( * )]).`8esn`! =$123456789[False.._usn3],`3esn`(Distinct 0X7 In $999 In $``,$0 Is Not Null).`7esn`? =0.e0[123.654],`1esn`+=True Starts With 12.0 Starts With $@usn5 Union All Return Distinct *,All(usn1 In 0x0[..`4esn`] Where $0[$#usn8..01234567]) In [_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0|$`7esn` Is Not Null] In [.12 Ends With `1esn` Ends With $`1esn`,$usn2[False..`7esn`][`7esn`.._usn3],\"d_str\" Contains `3esn` Contains 00] Skip $`6esn`[$@usn6..] Limit 00 Starts With _usn3"), - octest:ct_string("Return *,9e1['s_str'..1e1] As #usn7,01234567 As `6esn` Skip `2esn` In Count(*) In 9e0 Limit usn2 Is Not Null Union Unwind usn2 Starts With @usn6 As #usn7 With $`2esn`[..`2esn`] As `5esn` Order By _usn3 =~00 Asc Where #usn7 Ends With `4esn` Ends With @usn5"), - octest:ct_string("Unwind `2esn` Is Not Null Is Not Null As _usn4 With \"d_str\" =~`6esn` =~0Xa,.e1[usn1..] As `6esn` Union All With Distinct *,9e12[_usn3] As `8esn` Skip 7 Contains 9e1 Limit `5esn`[`1esn`..`1esn`] Where @usn5 In $`6esn` Optional Match ((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})),((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})) Where 123456789 In $usn2 In `6esn`"), - octest:ct_string("Remove Extract(`6esn` In 0X7 =~`` Where $0[$#usn8..01234567]|0x0 =~$`7esn` =~@usn6).`8esn`!,{`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`}.`1esn` Return *,False[`6esn`][07] Order By 01234567[Null..0.e0][Count(*)..$#usn8] Descending,\"d_str\" =~`6esn` =~0Xa Ascending Skip 0X7 Ends With `3esn` Return $12[`3esn`..0e0][`2esn`..$7] As #usn8,0.12 =~01 =~12 Order By Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Descending,{@usn6:12.0[``],_usn4:$`3esn` Contains 0X0123456789ABCDEF Contains 00} Ends With Single(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Ends With Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999|12.0[``]) Descending Limit (`4esn` :`8esn`{_usn4:0 Is Null Is Null})-[`6esn`:`8esn`|:usn1$_usn3]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Ends With Filter(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999) Ends With [`4esn` In `6esn`[1e1..] Where 07[12e12]] Union Merge ((:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})<-[@usn6:`3esn`|:`4esn`*]->(`6esn` :`5esn`)) On Create Set Single(@usn5 In $#usn8 Is Null Is Null Where 12.e12 In $0 In Count(*)).#usn7! =$#usn7 =~0xabc,#usn7:_usn4:usn1,`5esn`+={`7esn`:Count(*) In 01 In .0}[..{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}][..#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..])] On Match Set (_usn4 {#usn7:False[`2esn`..#usn8],#usn8:`5esn`[`1esn`..`1esn`]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]}).`3esn` =01234567[$@usn6..0X7][$`1esn`..123.654] Detach Delete Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1),$@usn5 =~07 =~True"), - octest:ct_string("Merge ((#usn8 :`4esn`:#usn8)<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] On Create Set `4esn` =.12 Is Not Null Is Not Null,{@usn6:True[..'s_str'][..01]}.`2esn` =12.e12[...0][..0x0],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Return $_usn4[12e12][`4esn`] As `5esn`,@usn6[`5esn`..$`3esn`] As ``,0.0[..12e12][..$0] Order By usn2[$`1esn`...0] Descending,123.654 Is Not Null Is Not Null Desc Limit 0X7 =~`4esn` =~`8esn` Return Distinct {@usn6:`7esn` In 999 In @usn6} Starts With Extract(usn1 In 0x0[..`4esn`] Where 0x0|07 Ends With 07) Starts With Filter(usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12),False Ends With $`8esn`,``[$`3esn`][$`2esn`] As usn1 Order By $`6esn` Is Null Is Null Desc Limit 999 In $_usn4 In 0X7 Union Return $`5esn` In `2esn` In .0 As `7esn`,None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]) As `` Order By 00 Is Null Is Null Descending Skip $`7esn` Ends With $@usn5 Limit 0X0123456789ABCDEF Contains 12.e12 Contains 999 Optional Match ((_usn4 {`8esn`:9e1 In 01 In 999})),`1esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}) Where @usn5 Contains $`1esn` Contains 999"), - octest:ct_string("Remove Single(usn1 In 00 Starts With _usn3 Where 999 Contains `7esn`).`6esn`? Detach Delete $_usn4[$`1esn`] Unwind `3esn` =~$`5esn` =~12 As `7esn`;"), - octest:ct_string("Unwind _usn4[0xabc..] As #usn8"), - octest:ct_string("Remove (_usn4 {#usn7:False[`2esn`..#usn8],#usn8:`5esn`[`1esn`..`1esn`]})<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0).#usn8,[Count(*)[12.e12..]].#usn7,`8esn`:#usn7 With *,`2esn` Starts With $_usn3 Starts With `2esn` Order By Null[@usn6..][9e1..] Ascending Skip [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] With Distinct 12.e12 Contains $`5esn` As `` Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Limit All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Where False In $`7esn` In .0 Union Optional Match (`5esn` {_usn4:0X7 =~``}),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null})) Union All Delete 0X7[12],0x0 In `8esn` In 999,$usn2[..12.0]"), - octest:ct_string("Unwind 00 Starts With _usn3 As #usn7 Union All Create `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})),((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`1esn`{`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654}]->(`7esn` :`7esn`)) Return $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Limit 9e0 Starts With `6esn` Merge ((({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)<-[#usn7 *123456789..999]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}))) On Create Set `8esn` =``"), - octest:ct_string("Merge usn2=(_usn4 :``{`2esn`:9e1 In 01 In 999,`5esn`:$@usn6[..$usn1]})-[`5esn`?:``|:_usn4]->(:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[@usn6?:`1esn`]-(:`5esn`) On Match Set [usn1 In 00 Starts With _usn3 Where `6esn`[1e1..]].`5esn`! =Count ( * )[Count ( * )..12e12][usn1..1000],@usn5+=usn1 Contains $`` On Create Set `1esn` =0X0123456789ABCDEF[.e0..$`4esn`] Match #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) Where 12e12 Is Not Null With Distinct {usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]} =~Single(usn2 In 1000 Contains 0.e0) =~Any(@usn6 In @usn5 In $`6esn` Where $`7esn` Is Not Null) As `3esn`,Filter(usn1 In 00 Starts With _usn3 Where $_usn4[`3esn`][0])[..Extract(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12|0x0 =~_usn4)][..{_usn4:.12 =~.12 =~1e1,#usn7:.e1 Starts With 0.0 Starts With `6esn`}] Order By @usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Ascending,$`3esn` =~Null Desc Skip Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789} Where `3esn`[$`1esn`..]"), - octest:ct_string("Detach Delete ({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]),#usn8 Is Not Null Union Merge usn1=(usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}) On Create Set {`6esn`:$`3esn` Contains 0X0123456789ABCDEF Contains 00,`1esn`:1000[123.654..9e12][1000.._usn3]}.`1esn`! =[$`1esn` Is Null Is Null,$12 Contains 123.654 Contains `8esn`] Starts With {`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]} Starts With Filter(usn1 In $123456789 Contains usn2 Where 01234567[.12..7][1000..1.e1]) On Create Set `2esn` =$usn2[False..`7esn`][`7esn`.._usn3],``+=_usn4 Ends With 01 Ends With $`1esn`,``+=01 Ends With .e0 Unwind [1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As @usn6 Merge @usn5=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) On Match Set usn1 =_usn3[0],[`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]].`1esn`! =Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[usn2($#usn8 Is Null Is Null)..Extract(usn1 In 0x0[..`4esn`] Where 123456789 In $usn2 In `6esn`|@usn5[..True][..0X7])][(`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` )..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]]"), - octest:ct_string("Remove `3esn`:#usn7,None(`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]).#usn8? Union All Unwind #usn8[$#usn8..] As `4esn` Union All Remove All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.e12 Contains `5esn`).`6esn`? Match (@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Remove Any(#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7).`3esn`?,{`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`}.`4esn`!"), - octest:ct_string("With Distinct *,.e1 Starts With $`8esn` Where 12.e12[$1000..]"), - octest:ct_string("Optional Match `1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) Where $`3esn` =~$`7esn` =~False With Distinct {`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) As `2esn`,Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null As `5esn` Order By .e0 Contains 01234567 Descending Limit All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])] Remove count(Distinct 0.e0[9e1..][0.0..],$usn2 =~$#usn8).`5esn`?,{`4esn`:9e12 Is Not Null Is Not Null,`8esn`:$0[..`8esn`]}._usn3,@usn5:usn2:@usn6 Union Return 1.e1 =~$_usn4,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn` Order By $`8esn` In \"d_str\" In 9e12 Desc,`3esn`(.e0 =~`5esn`)[Single(`6esn` In 0X7 =~`` Where $`3esn` =~Null)][[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $_usn3[$`4esn`..Null]|False[`2esn`..#usn8]]] Asc,1e1 In 9e0 In 9e0 Ascending"), - octest:ct_string("Optional Match #usn8=((({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null})<-[`7esn`?:`8esn`|:usn1]-(`7esn` :#usn8)-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`))) Detach Delete $`6esn`[$@usn6..],`6esn`[0X7..][0x0..],Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null Remove Filter(usn2 In 1000 Contains 0.e0 Where 12e12[$`5esn`][07])._usn4? Union Return 01234567 Is Null Is Null As `3esn`,0.12 Contains $12 Contains `8esn` As `5esn`,9e0 Starts With `6esn` Skip `3esn` Ends With 010 Limit Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]} Merge (`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`7esn` :`4esn`:#usn8{`2esn`:Count(*)[..`3esn`]})-[? *07..{@usn6:12[..True][..$`4esn`],`4esn`:.0[$`6esn`..False]}]-({`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`}) On Create Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..] On Create Set `` =$`6esn` =~Null =~9e12 Create (((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))) Union With Distinct Extract(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null) Ends With `2esn`(`7esn`[Null..][@usn5..],123.654[12.e12..1e1]) Ends With Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]) As `7esn` Skip .e0[..0X0123456789ABCDEF][...e12] Limit $`4esn`[9e1..][0..] Where `1esn` In 999 In $#usn7 Remove [`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789]|0.12[Null..]].`8esn`?,All(`4esn` In 's_str'[12..'s_str'] Where $`8esn`[..$``]).`7esn`!,Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`!"), - octest:ct_string("Unwind Extract(usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`) Contains [0 Contains 12e12,0xabc Ends With $7 Ends With $`2esn`,0x0 =~_usn4] As `7esn` Merge ((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ))"), - octest:ct_string("Create (_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[`7esn`?:`4esn`|:`7esn` *..0X7]-(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) With Count(*) In 01 In .0,1000 Contains $#usn7 Contains `6esn` Skip (`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`})<-[ *0xabc{`1esn`:123.654 In \"d_str\" In $_usn3}]-({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0}) =~{#usn8:$@usn5[#usn8..][$`1esn`..]} =~{#usn8:0X0123456789ABCDEF[..usn1]} Limit $_usn3[..Count ( * )][..@usn5] Where $123456789 =~$`5esn` =~07 Match `1esn`=(((`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})-[ *010{@usn5:Null Is Null Is Null}]-(:`5esn`)<-[`7esn`{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}]-(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})))"), - octest:ct_string("Create (:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}) Unwind [@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] As usn1 Merge (`7esn` {_usn3:usn1 Contains $``})<-[usn1]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12}) Union All Remove (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`).`2esn`,[.12 Contains $`4esn` Contains $`6esn`].@usn6 Unwind $123456789 =~12.e12 =~@usn5 As `1esn` Merge ((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})) On Create Set `2esn`(Distinct $`2esn`[..7][..$usn1]).`1esn`? ={`4esn`:.12 Starts With 0Xa} Starts With All(usn1 In 00 Starts With _usn3 Where `6esn`[False..0.0][12e12..$usn2]),`5esn` =$usn1[0.12..]['s_str'..],({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})-[#usn8?]-(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7}).`6esn`? =[999[.e12][01],999 In 9e1 In 7,0xabc Contains Null Contains 9e12][All(`6esn` In 0X7 =~`` Where 0.12[Null..])..[`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]]][count(010 Contains Count(*))..(:`4esn`:#usn8)-[:#usn8 *..0X7]->({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6)]"), - octest:ct_string("Delete 0.0[1000..][.e1..] Remove [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0].`3esn`,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``! Merge (((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))) On Match Set usn1 =0x0[$`3esn`..010][$#usn7..00] Union All Unwind 0.0[1000..][.e1..] As usn1"), - octest:ct_string("Merge (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0) On Match Set usn2:#usn7,usn2 =[usn1[..@usn5][...e0]] In Extract(`6esn` In 0X7 =~`` Where $1000 Contains $`3esn`|12 Ends With 01234567) In {`3esn`:$`5esn` In `2esn` In .0,``:0e0 Is Null Is Null},Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|@usn6[..0xabc][..$#usn7])._usn3 =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..] Detach Delete @usn5 Contains 01 Contains 12,#usn7 Starts With .e12 Starts With $`7esn`,{_usn3:0 Contains 12e12}[Extract(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`)][Extract(@usn6 In @usn5 In $`6esn` Where usn1 Contains $``)] With Distinct *,`7esn`(0.0[1000..][.e1..],$@usn5 Contains 01)[Any(usn1 In 0x0[..`4esn`] Where 0X7[.e12..01234567])][[$@usn6 Contains 07 Contains 0.e0,`5esn` In 12]] Limit [$#usn8 In .e12 In 9e1][(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[ *00..{`2esn`:$0 Is Not Null}]-(`` :#usn7$0)][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn`[1e1..07][0x0..Count ( * )])] Where 12 Ends With .e12 Ends With $7"), - octest:ct_string("Remove Extract(usn1 In 0x0[..`4esn`] Where $`2esn`[123456789..][00..]).#usn7? Union Create usn1=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})),`4esn`=((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})) Optional Match #usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})),@usn5=(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})<-[`2esn` *12..0xabc{`6esn`:$123456789[0.0..],@usn5:999[$`6esn`]}]-(`7esn` {`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) Where @usn5[..True][..0X7] With Distinct Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] As @usn5,12 Is Null Is Null As #usn7 Limit 0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Where 12[..9e0][..999] Union All Return Distinct *,`4esn` Is Null Order By `5esn` In $999 Descending Limit `3esn` =~$`5esn` =~12"), - octest:ct_string("Return Distinct `7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As usn1 Order By 12.e12 In .e0 In `7esn` Asc,9e1[.12..] Asc Skip (_usn3 )<-[usn1]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})-[_usn4?:`6esn`]->(`8esn` :`1esn`) =~Single(#usn7 In 01234567[$`3esn`..] Where 0.12 In $`4esn` In `6esn`) =~Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|$`8esn`[..123456789]) Limit 0.12 In $`4esn` In `6esn` Unwind [0Xa Is Null Is Null] Is Null As `1esn` Detach Delete {`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6)"), - octest:ct_string("Match _usn3=(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}),_usn3=(`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0}) Where .e12[$_usn4..][False..] Union All With Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] As @usn5,12 Is Null Is Null As #usn7 Limit 0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Create `6esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Union Create ({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[ *..0x0]->(#usn8 {usn2:7 Contains 9e1}) Create `7esn`=(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}),(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}))) Remove [`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999]].`5esn`!,usn1(0X7[.e12..01234567])._usn3;"), - octest:ct_string("Create @usn6=(((@usn6 :`5esn`{``:.e1 In $@usn6 In 999,`8esn`:_usn3 Is Null Is Null})<-[$#usn8]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})-[`6esn`? *0Xa{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}]-(:`6esn`:`7esn`{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1}))) Remove [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0].`3esn`,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``! Union Unwind `4esn` =~$`3esn` =~$123456789 As #usn7 Create ((`` :`1esn`)-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`4esn` {`2esn`:@usn6[`5esn`..$`3esn`],`7esn`:$`1esn` Is Null})),`1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]})"), - octest:ct_string("Return Distinct @usn5 Starts With 12e12 Starts With @usn5,$1000 =~$`7esn`,\"d_str\" Starts With $usn1 As `7esn` Order By $0[..`8esn`] Desc,Count(*) Starts With 1e1 Starts With $123456789 Ascending,12e12[$`5esn`][07] Desc Limit Single(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8)[{_usn3:$0 Ends With $#usn7 Ends With .12}][[12.0[0Xa][00],.0[01][$12]]];"), - octest:ct_string("Create #usn8=(((`2esn` :_usn3{`5esn`:12.e12[$1000..],`4esn`:'s_str'[..0.0][..$`4esn`]})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})-[usn1?:`1esn` *0X0123456789ABCDEF..{usn2:$`4esn`[12.e12..][0.0..]}]-(:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]}))),usn1=((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6)) Union Merge `3esn`=((:#usn8{_usn4:\"d_str\"[Count ( * )],`2esn`:9e0 Ends With $`7esn`})) Merge `7esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}) On Create Set ``+={usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null,@usn5+=usn1[..@usn5][...e0],`2esn`+=All(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True])[..[`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|_usn3 In .e1 In $12]][..{`2esn`:$usn1[1e1.._usn3][$@usn6..$#usn7]}] Union All Optional Match `3esn`=(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)})-[usn2{`6esn`:$@usn6[_usn3..0.e0]}]->({usn1:`4esn` In $12 In `8esn`})<-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`6esn` {`8esn`:`8esn` In $@usn5}) Where 0x0[...e12][..@usn5] Detach Delete usn1[1e1][$_usn4],999[$usn2..] Remove (`3esn` :#usn8{#usn8:$_usn4[$`8esn`..][07..]})<-[`2esn` *12..0xabc{`6esn`:$123456789[0.0..],@usn5:999[$`6esn`]}]-({@usn6:9e1 Contains $`3esn` Contains 01234567,@usn6:.e12[.12..][_usn4..]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}).`6esn`,#usn7:#usn8,{#usn7:0Xa[..$``],`1esn`:usn2 Is Not Null}.usn1?"), - octest:ct_string("Create (_usn3 :_usn4:usn1)<-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(:@usn6:`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}) Unwind Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] As @usn6 Unwind (@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`) Is Not Null Is Not Null As `7esn` Union All With Distinct 01234567 Ends With 0x0,[`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As #usn8,$1000 Is Not Null Is Not Null Order By None(@usn5 In 0X7 =~.0 =~\"d_str\" Where _usn3[...e1])[[_usn4 In usn1 Contains False Contains `` Where 0.12 In $7 In 0]..][[7[..12e12][..$`6esn`]]..] Asc,12[usn1][True] Desc Limit 010 Contains Count(*) Where 0.12 Ends With $usn1 Ends With $@usn5 Return *,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn`,$_usn3 In $#usn8 As #usn7"), - octest:ct_string("Detach Delete 07[0..`4esn`],``(Distinct `1esn`[0e0..]) =~(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[@usn6?:`1esn`]-(:`5esn`)-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}),[$1000 Is Null Is Null] Is Null Union All Unwind 12e12 Starts With $123456789 Starts With 12.0 As usn1 Optional Match `3esn`=(({``:$1000 Is Null Is Null})) Where `1esn`[...e1] Union With Distinct *,7[..12e12][..$`6esn`],01234567[$@usn6..0X7][$`1esn`..123.654] As `6esn` Order By Count(*)[12.e12..] Ascending,$usn1 In 1000 In $#usn7 Descending"), - octest:ct_string("Detach Delete False Ends With $`8esn`,0x0[123456789] Return usn1[..$_usn4][..``] Order By .e1 Starts With $`8esn` Asc Skip (`6esn` :`6esn`:`7esn`{_usn4:\"d_str\"})<-[_usn4?:#usn8 *..0X7{@usn5:07}]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})[(_usn4 :_usn4:usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)..{#usn7:$@usn6 Is Null Is Null}][@usn6(Distinct _usn3 In .e1 In $12,123.654 Starts With usn1 Starts With @usn5)..[usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1]] Detach Delete 0.e0[`6esn`...e0][9e12...e12];"), - octest:ct_string("Detach Delete Any(#usn7 In 01234567[$`3esn`..] Where 00 In 1e1)[[usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0|0xabc[12.e12..`1esn`]]..][[@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2]..],_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) With Distinct *,$0 =~$0 =~.e0 As `7esn`,$@usn5[#usn8..][$`1esn`..] As `7esn` Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip [@usn6 In @usn5 In $`6esn` Where $999[$1000]|$7[.12]] In {`1esn`:$@usn6 Contains 07 Contains 0.e0} In (`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) Where 9e12[usn2..7][.e1..$`7esn`] Union All Delete Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null)[count(Distinct 0.12 Contains $12 Contains `8esn`)..[$`1esn` Is Null Is Null,9e1 In 01 In 999]],(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}],usn2(Distinct `7esn` Ends With $usn2 Ends With 999) =~Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0) =~Any(`4esn` In `6esn`['s_str'..][010..] Where 01 Ends With .e0)"), - octest:ct_string("Remove (usn1 :_usn3{@usn6:True[..'s_str'][..01]})-[? *999..]-(`` :`1esn`).usn2?,Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 123456789[$#usn7..]|123456789 In $usn2 In `6esn`)._usn4?,Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $`6esn` Is Null Is Null)._usn3 Union All Remove {`1esn`:`7esn`[Null..][@usn5..]}.`7esn`! Create (({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) Remove `4esn`:`3esn`:`1esn`"), - octest:ct_string("Unwind [$12[01..][1.e1..]][[usn1 In 00 Starts With _usn3 Where 00]..@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12)] As `8esn` With 0x0[0X7..][usn1..] As _usn4 Order By `6esn` Starts With $usn2 Starts With 0.0 Ascending,0X7 In $@usn5 In 9e0 Descending Where 00 In 12.0 In 's_str' Union Delete 0.12 =~9e0,12.0[0Xa][00] With {_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] As `1esn` Order By 0 Is Not Null Descending Skip 0x0 Where 123456789 Starts With #usn7 Starts With `6esn` Optional Match `8esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}))"), - octest:ct_string("Create (_usn4 :#usn8)-[`1esn`?:`1esn` *01234567..12]-({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}) Remove Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|Count(*)[.e0.._usn4]).`8esn`?,Single(#usn8 In $`5esn` Is Null Is Null Where .12[`1esn`..][$`3esn`..]).``!,count(Distinct `6esn` =~01234567 =~0Xa).`8esn`! Create (@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]}),(({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:``|:_usn4 *0Xa]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) Union All Create ``=(({`5esn`:0e0 =~_usn4})),((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})));"), - octest:ct_string("Create @usn6=((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]->(:_usn3{@usn6:$`7esn` Is Null Is Null})),((({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999})<-[@usn6?:`6esn`*..]-(_usn3 :usn2:@usn6)-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6))) Unwind $@usn5[.e1] As #usn8 Union Delete {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']}[(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)],010 Is Null Is Null"), - octest:ct_string("Return Distinct 0.12 Contains .e1,Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[usn2($#usn8 Is Null Is Null)..Extract(usn1 In 0x0[..`4esn`] Where 123456789 In $usn2 In `6esn`|@usn5[..True][..0X7])][(`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` )..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]] As `3esn`,`` Order By 01234567[.12..7][1000..1.e1] Ascending Union All Delete `2esn`[$`1esn`..][$_usn3..],7 =~9e0 =~'s_str' Merge (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[? *..0X7{`3esn`:`8esn`[$``]}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})-[?:usn1|`3esn`{#usn8:1000[..$`6esn`][..0xabc]}]->(usn1 :_usn3{@usn6:True[..'s_str'][..01]}) Union With *,$`3esn`[`2esn`...e0] As _usn3 Limit Count ( * )[Count ( * )..12e12][usn1..1000] Where 12[0X7..@usn6] Remove Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0).`2esn`?,(`4esn` {@usn5:1e1 In $#usn8 In 12e12})-[_usn4?:`5esn`|`1esn`]-(@usn5 {``:12[usn1][True],``:$`5esn` In `2esn` In $12}).`7esn`!,[999[.e12][01]].`2esn`!"), - octest:ct_string("Match `1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}),`1esn`=(((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))) Where 7 Contains $`5esn` Contains $usn1 Create (`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :`4esn`:#usn8) Union Create (:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}) Unwind [@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] As usn1 Merge (`7esn` {_usn3:usn1 Contains $``})<-[usn1]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})"), - octest:ct_string("Detach Delete [@usn5 In $#usn8 Is Null Is Null Where 7 In 0xabc|$_usn4[$`1esn`]] Is Null Is Null,9e1 Is Null Is Null,@usn6[`5esn`..$`3esn`] Create #usn7=({`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]->(`3esn` {_usn3:@usn6 Contains _usn4 Contains $`4esn`})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->({_usn3:12.e12 In $0 In Count(*)}) Union All Create ((`3esn` :`8esn`)-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})-[ *..0X7]->(`5esn` :_usn4:usn1)),(((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}))) Detach Delete $@usn5 Ends With 0X0123456789ABCDEF,$123456789[0.0..]"), - octest:ct_string("Remove `7esn`:`6esn`:`7esn` Return Distinct *,1.e1 Contains @usn6 As usn2 Order By (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Ascending,Single(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`) =~Extract(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) =~Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]) Asc,0.0[999..] Asc"), - octest:ct_string("Merge ((`6esn` :`7esn`)-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)<-[@usn5:`6esn` *0X0123456789ABCDEF..]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null})) On Create Set [$usn1 In 1000 In $#usn7,$#usn7 In 12.0 In 0X0123456789ABCDEF,9e0 Is Not Null]._usn3 =All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`! =0xabc Starts With _usn3 On Match Set #usn8 =07[07],@usn5+={`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[{`4esn`:$7 Ends With 12.0 Ends With 0xabc,_usn4:0X0123456789ABCDEF[.e0..$`4esn`]}..][Extract(`4esn` In `6esn`['s_str'..][010..] Where $999 Ends With $`3esn` Ends With `8esn`)..] Delete Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}),07,`2esn`[$`3esn`..]"), - octest:ct_string("Detach Delete True Starts With 12.0 Starts With $@usn5,@usn5 =~.0 =~$`1esn` Merge (_usn4 :#usn8)<-[`6esn`? *..7{`3esn`:123456789[$#usn7..]}]-(:`2esn`:`3esn`{`7esn`:$_usn4[#usn8..]})-[usn1?:_usn3|:`4esn` *123456789..999{`6esn`:01 Ends With .e0,`4esn`:$`7esn` Is Not Null}]->(_usn3 ) Union With Distinct *,`3esn` =~`3esn` =~$`6esn` As `7esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 123456789[$#usn7..]) Contains [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1] Skip .12[..`6esn`][..\"d_str\"] Limit [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] Where `5esn`[`1esn`] Delete 7[..0X7][..'s_str'],9e0 Ends With $`7esn`,$0 Ends With $#usn7 Ends With .12 Union With Distinct *,`3esn` =~`3esn` =~$`6esn` As `7esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 123456789[$#usn7..]) Contains [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1] Skip .12[..`6esn`][..\"d_str\"] Limit [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] Where `5esn`[`1esn`] Delete 7[..0X7][..'s_str'],9e0 Ends With $`7esn`,$0 Ends With $#usn7 Ends With .12"), - octest:ct_string("Delete $12 Contains 123.654 Contains `8esn`,$`3esn` Is Not Null Is Not Null Detach Delete 12.0[123456789..Null]['s_str'..$usn1],9e1[.12..],{`5esn`:0Xa In .e1 In Count(*)}[$`8esn`][[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7]] Detach Delete Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..])"), - octest:ct_string("Unwind 00 Is Not Null Is Not Null As `` With Distinct *,`7esn`[Null..][@usn5..],0X0123456789ABCDEF Contains $usn1 Skip Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] Limit False Ends With $`8esn` Where 0 Starts With 12e12 Starts With `4esn` Optional Match (`` :#usn7)<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})<-[`5esn`?:`6esn`]->(`6esn` :`6esn`:`7esn`{_usn4:\"d_str\"}),`4esn`=(((`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[?{`4esn`:0.e0 Ends With 12 Ends With $7,@usn6:$``[_usn4..][`7esn`..]}]->(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]}))) Where 123.654 In \"d_str\" In $_usn3 Union Match usn2=((:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})),((`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})<-[?{`8esn`:_usn3 Ends With 0x0 Ends With 01234567,#usn8:$`7esn` Is Null Is Null}]->(:``{#usn8:$`2esn`[..`2esn`]})<-[@usn5:#usn7|:_usn4]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})) Remove {`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}.@usn5?;"), - octest:ct_string("Unwind Extract(@usn6 In @usn5 In $`6esn` Where $`5esn` Contains $@usn6|$0[7..][Null..])[[`6esn` In 0X7 =~`` Where 9e1[0.e0..][#usn8..]]] As @usn6 Unwind 999 Contains `7esn` As `7esn` Union All Remove usn2:#usn8,Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null).`7esn`? Remove None(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null).`5esn`,(#usn7 :#usn8)-[`6esn`:`4esn`|:`7esn` *..0x0]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1}).@usn6;"), - octest:ct_string("Delete _usn4[$`4esn`..] Remove [1e1 In $#usn8 In 12e12,7 In @usn5 In $`4esn`].`5esn`!,`7esn`:`1esn`,usn2:usn1 Merge (({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) On Match Set #usn7($123456789 Contains 01 Contains 0.12).usn2! =.e12 =~0.0 =~9e0,All(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1).`4esn` =$999[12.0..],`8esn`+=Filter(_usn4 In usn1 Contains False Contains `` Where 9e0 =~$`5esn`) =~``($`4esn`[usn1..$#usn8][12.0..`3esn`]) =~Single(usn2 In 1000 Contains 0.e0) On Match Set `` =None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..],#usn7($`8esn`[$``..$7][$1000..$`7esn`],`2esn` In 7 In usn2).`6esn`? =$_usn4['s_str'..],`4esn`+=$`7esn` Ends With $usn2 Union All Remove [usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]]._usn3,{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12}.@usn6,[usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]].usn2? Match (((`7esn` :``)<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:usn1|`3esn`*]->(:_usn3{`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`}))) With `3esn` Contains 0Xa As `6esn`,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,[usn1[..@usn5][...e0]][(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)]"), - octest:ct_string("Create _usn4=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),(((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})-[?*..{`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}]-(`` :`3esn`:`1esn`{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-({usn1:010[@usn5..],`7esn`:`2esn` Is Not Null Is Not Null}))) Match (`5esn` {_usn4:0X7 =~``}),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null}))"), - octest:ct_string("Remove (#usn8 {@usn5:.e1[..$``][..0X0123456789ABCDEF],_usn3:$usn2 =~$#usn8})<-[ *..0x0{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}]-(`5esn` {`8esn`:0.0[12...12]}).@usn6 Return Distinct *,$123456789 =~$#usn8 =~$#usn8 Order By $@usn6 Contains 07 Contains 0.e0 Asc Skip 0e0[12][$_usn4] Limit 123.654[12.e12..1e1] Union With Distinct `` Is Not Null Is Not Null As @usn6,`5esn`[`1esn`..`1esn`],[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4 Order By Count(*) Is Null Descending,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0] Ends With [`4esn` In 's_str'[12..'s_str'] Where 0.12 In 01 In $`3esn`|9e0 =~$`5esn`] Ascending,[0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] Asc Skip 1000 Contains 123456789 Contains 1e1 Limit $`6esn`[`3esn`..0e0] With Distinct .e0[`4esn`..`4esn`][0.0..$0] As `7esn` Order By None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) Descending,01234567[.12..7][1000..1.e1] Ascending Where #usn7[..$1000][..01] Delete [$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union Create (`` :#usn7) Unwind .e1 Starts With 0.0 Starts With `6esn` As `2esn` Detach Delete Null[1.e1..]"), - octest:ct_string("Match `7esn`=(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]}) Return 9e1[010..] As `6esn` Order By $7 Ends With `5esn` Descending,1e1[\"d_str\"] Ascending Limit $`7esn` Is Null Is Null Return *,01234567 Is Null Is Null Order By {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}[..[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]]] Ascending Skip 010 =~$usn2 =~1e1 Union Return *,({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn` Match ((usn1 :`6esn`:`7esn`)) Unwind $@usn5[.e1] As #usn8"), - octest:ct_string("Unwind `7esn` Starts With $usn2 Starts With .e0 As usn2"), - octest:ct_string("With Distinct *,None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`) Is Null As @usn6,123456789 =~_usn4 =~$0 As usn1 Where Count(*)[..`3esn`] Union All Remove [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7].@usn5,Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])._usn3? Return Distinct *,$@usn6[..$usn1] As _usn3 Order By {``:12e12[$`5esn`][07],_usn3:$`6esn` Is Null Is Null} Ends With [0 Is Not Null Is Not Null] Descending,Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Desc,.12 Ends With `1esn` Ends With $`1esn` Asc Limit `7esn` Starts With $`` Starts With $#usn7 Unwind $@usn6 Starts With usn2 Starts With usn2 As _usn4"), - octest:ct_string("Return Distinct 7 Is Null As #usn7 Limit 9e12[usn2..7][.e1..$`7esn`] Remove Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0).`2esn`?,(`4esn` {@usn5:1e1 In $#usn8 In 12e12})-[_usn4?:`5esn`|`1esn`]-(@usn5 {``:12[usn1][True],``:$`5esn` In `2esn` In $12}).`7esn`!,[999[.e12][01]].`2esn`! Remove [$`2esn` =~'s_str',12 Ends With 01234567,$1000 Is Null Is Null].`3esn`?,[12.e12[...0][..0x0]]._usn4,(`1esn` :`8esn`)<-[#usn7:`3esn`|:`4esn` *00..]->(`4esn` :`8esn`)-[`4esn`? *0Xa]-(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}).`3esn`? Union Detach Delete 0x0[$`3esn`],07 In $7 In 12 Union All Create `5esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Detach Delete $usn2 =~$_usn4 =~`5esn` Detach Delete Extract(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null) =~Any(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null) =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1],$7 Contains 0x0 Contains ``,[\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..])"), - octest:ct_string("Match (((`7esn` :``)<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:usn1|`3esn`*]->(:_usn3{`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`}))) Remove (:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)}).usn1!,None(usn1 In 00 Starts With _usn3 Where 999 Contains `7esn`).`3esn`?,_usn3:usn1 Merge ((:`2esn`:`3esn`{`7esn`:$_usn4[#usn8..]})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)) Union All Merge usn1=((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})) On Create Set `8esn` =0.e0[9e0][0e0],_usn3 =0Xa[0xabc..$#usn8] Return 123456789 =~$123456789 Limit 07 =~`8esn` =~0 Union Unwind 's_str' In \"d_str\" In 123456789 As usn1 Remove {`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}.@usn5?;"), - octest:ct_string("Remove ({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})-[#usn8?]-(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7}).@usn6?,{`3esn`:`4esn`[7..][1000..],usn2:123456789 Starts With `2esn` Starts With 9e12}.`8esn`!,@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12).`5esn`! Union Delete Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null)[..[.e0 Contains #usn7 Contains $#usn8]] Unwind #usn7 Contains .0 Contains .e1 As usn1;"), - octest:ct_string("Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.0[0Xa][00]|$`1esn` Starts With $999).`6esn`,Any(`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]).`3esn` Remove count(Distinct 0.e0[9e1..][0.0..],$usn2 =~$#usn8).`5esn`?,{`4esn`:9e12 Is Not Null Is Not Null,`8esn`:$0[..`8esn`]}._usn3,@usn5:usn2:@usn6 Unwind `7esn`[1000..][$123456789..] As #usn7;"), - octest:ct_string("Optional Match ``=(`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[_usn3?:`7esn`|`2esn` *010]->(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})-[?:`4esn`|:`7esn`]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}) Merge `5esn`=(({`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})-[#usn8?]-(:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1}))"), - octest:ct_string("Optional Match `4esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}),(((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Where $_usn3[..Count ( * )][..@usn5] Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..]"), - octest:ct_string("Unwind `3esn`(`7esn` Starts With $usn2 Starts With .e0,$_usn3 =~`7esn` =~$_usn4)[[$`2esn`[123456789..][00..],Count ( * )[@usn6..0x0]]..][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0)..] As usn1 Union All Delete `6esn`[False..0.0][12e12..$usn2] Union All Detach Delete $`3esn` Is Not Null Is Not Null,$1000 Ends With 1e1 Ends With 123.654"), - octest:ct_string("With Distinct *,$7[12.e12..] As #usn7,`4esn`[$#usn7] As `1esn` Skip #usn7[..$1000][..01] Limit {`8esn`:@usn5[..True][..0X7],`1esn`:`1esn` Contains Count ( * )}[{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)] Where `7esn`[...e1][..\"d_str\"] Union All Merge (({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) On Match Set #usn7($123456789 Contains 01 Contains 0.12).usn2! =.e12 =~0.0 =~9e0,All(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1).`4esn` =$999[12.0..],`8esn`+=Filter(_usn4 In usn1 Contains False Contains `` Where 9e0 =~$`5esn`) =~``($`4esn`[usn1..$#usn8][12.0..`3esn`]) =~Single(usn2 In 1000 Contains 0.e0) On Match Set `` =None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..],#usn7($`8esn`[$``..$7][$1000..$`7esn`],`2esn` In 7 In usn2).`6esn`? =$_usn4['s_str'..],`4esn`+=$`7esn` Ends With $usn2 Remove [`6esn`[1e1..]].@usn6!,[$_usn3[..Count ( * )][..@usn5]].@usn6! With Distinct None(usn2 In 1000 Contains 0.e0 Where $usn1[..$`6esn`][..Null]) Starts With Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]|$`1esn` Starts With $999) As #usn7,$12[..7][..07] As #usn8,$`2esn`[``..] As `3esn` Order By 9e1 Is Not Null Is Not Null Asc,[@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0] Is Null Descending Union All Delete Extract(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|Null Starts With $`7esn` Starts With `2esn`) =~{`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0},$`1esn` Is Null,9e0 Starts With `6esn` Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null})-[#usn7:`1esn` *07..]->(#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`}))"), - octest:ct_string("With *,({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) Order By [0 Is Null Is Null][..[_usn3 =~00,9e1 Is Null Is Null]] Descending,Single(`4esn` In `6esn`['s_str'..][010..] Where 12.0 Contains 0.e0)[..Any(`4esn` In 's_str'[12..'s_str'] Where Count(*)[`7esn`..$12])][..Extract(@usn5 In .12[#usn7][$`8esn`] Where 01234567 =~usn1)] Ascending,`8esn` In $@usn5 Asc Limit $#usn8 Is Null Create @usn6=((:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})-[?:`4esn`|:`7esn`]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})),#usn7=(@usn5 {usn2:$999[12.0..]})<-[usn1]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[_usn3?:``|:_usn4]->(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}) Remove (_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`).usn2,[`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]|12 Is Null Is Null].#usn8? Union All Remove ({@usn6:0X7 In $999 In $``})-[`7esn`{usn1:0 Is Not Null}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`}).@usn6,{`5esn`:$`5esn`[$123456789][`1esn`],#usn7:@usn5 In 0X0123456789ABCDEF}.@usn6! Unwind 0.0 Is Null Is Null As usn1 Union All Remove (_usn3 {usn1:_usn3 Contains @usn6 Contains 1.e1})<-[`` *0xabc]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1})<-[_usn3?:`7esn`|`2esn` *010]-(#usn8 :`4esn`:#usn8).@usn5?,{usn1:$123456789[..0.12][..#usn7]}.`4esn`?,Any(`4esn` In 's_str'[12..'s_str'] Where 9e1 Contains $`3esn` Contains 01234567).`8esn`! Unwind usn2[$`7esn`..010][00..``] As _usn3"), - octest:ct_string("Delete 12 Is Null Is Null,Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}),0e0[`2esn`..010] Return Count ( * ) Ends With 1000 Ends With 12 As _usn4,False[..12.e12] Order By $@usn6 Contains 07 Contains 0.e0 Asc,$1000 Is Not Null Is Not Null Asc,[$`3esn` Starts With 01234567 Starts With $1000] Starts With `4esn` Starts With [$`2esn`[..7][..$usn1]] Desc Skip usn1 Is Not Null Limit Count ( * ) Contains 999 Contains $`8esn` Unwind `2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As `4esn` Union Remove ({`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[ *..0x0{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}]-(`5esn` {`8esn`:0.0[12...12]}).``!,Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null).``!,usn1:`8esn` Create ((:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})) Match `6esn`=(`6esn` :`5esn`),(@usn6 :`5esn`{_usn3:010[$`8esn`..][0..],_usn3:`2esn` Is Not Null Is Not Null}) Where 0x0"), - octest:ct_string("Create (`5esn` {_usn4:0X7 =~``}),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null}))"), - octest:ct_string("Create `4esn`=((:`7esn`{``:$`1esn` Starts With @usn6})),@usn5=((@usn6 :#usn7{@usn5:Null Is Null Is Null})<-[``?:@usn5|`8esn`]->(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})) Merge `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Remove Extract(_usn4 In usn1 Contains False Contains `` Where $12 Contains 123.654 Contains `8esn`|`5esn` In 12).#usn8?,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`7esn` Ends With $`2esn` Ends With $usn1|0[0.12..]].@usn5? Union All Return 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Order By [usn1 In 00 Starts With _usn3 Where 00][#usn8(Distinct $`2esn`[$123456789..$`1esn`][0Xa..$``],@usn6[`5esn`..$`3esn`])..['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`]] Asc,999 Contains `7esn` Desc,Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`] Ascending Skip 0e0 Is Null Is Null Remove [`2esn`[$`1esn`..][$_usn3..]].`4esn`?,(@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``}).`8esn`,[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]].`3esn` Union All Remove [@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999|01234567 Ends With 0x0]._usn4?,[0Xa Is Not Null Is Not Null,`3esn` =~0.0 =~$``,123456789 Starts With 12.0 Starts With .e12]._usn4! Create (`6esn` :`5esn`)<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6),_usn3=(($999))"), - octest:ct_string("Return Count ( * )[Count ( * )..12e12][usn1..1000] Order By $`1esn`[$usn2..][$1000..] Descending Skip Filter(`6esn` In 0X7 =~`` Where $0[$#usn8..01234567])[{`7esn`:Null[0e0][12],#usn8:$12[..``][..$7]}..][Filter(usn1 In 0x0[..`4esn`] Where $usn1[0.12..]['s_str'..])..] Union All Merge _usn3=(@usn5 {@usn6:$123456789[0X7..12.e12]}) On Match Set @usn5 =12.e12['s_str'],@usn6 =$usn2[False..`7esn`][`7esn`.._usn3],({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})<-[usn2?:`4esn`|:`7esn` *0X0123456789ABCDEF..]-({usn1:$1000 Contains $`3esn`})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0}).@usn5? =07[07];"), - octest:ct_string("Merge (_usn4 :@usn6:`7esn`)<-[#usn8?:_usn4|:@usn5 *..0x0]-(`6esn` :#usn7{`5esn`:#usn7 Is Not Null Is Not Null})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) Union Remove None(usn1 In 00 Starts With _usn3 Where 123456789[`4esn`..][Count ( * )..]).#usn8!,All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..])._usn4 Return Distinct *,(_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)[Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] As `8esn`,[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `8esn` Order By @usn5 Starts With 12e12 Starts With @usn5 Desc Skip _usn4(usn1[Count ( * )..$usn1],_usn3 Ends With 12e12 Ends With .e0)[All(usn1 In 0x0[..`4esn`] Where $`2esn`[123456789..][00..])..Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``])][[@usn6 In @usn5 In $`6esn` Where $``[_usn4..][`7esn`..]|12.e12 In $0 In Count(*)]..(:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)] Merge `4esn`=({`8esn`:0X7 In 's_str' In $`1esn`}) On Match Set usn2+=.e1 Ends With _usn4 Ends With @usn5,@usn5+=_usn3 In .e1 In $12,Extract(`4esn` In `6esn`[1e1..] Where $`7esn` Ends With `1esn` Ends With True).`` =010 In @usn6 On Match Set usn1 =Count ( * ) =~All(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7) Union Merge (`4esn` :#usn7)-[_usn4?:`6esn`]-(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) On Create Set `5esn`+=0 Starts With `6esn` Starts With 0X0123456789ABCDEF,`4esn`+=$`7esn` Ends With $usn2,[usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null].@usn5! =$1000 Ends With 1e1 Ends With 123.654;"), - octest:ct_string("Merge ((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[?:usn1|`3esn`{#usn8:1000[..$`6esn`][..0xabc]}]->(:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[``?:usn1|`3esn`]->(:@usn5{#usn7:1e1[@usn5..]})) Detach Delete 07 In Count ( * ) In \"d_str\",Null Is Not Null Return 's_str'[..0.0][..$`4esn`] As `2esn`,#usn7 Contains .0 Contains .e1,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Skip `6esn` Starts With $usn2 Starts With 0.0 Limit 9e1 Contains $`3esn` Contains 01234567"), - octest:ct_string("Match @usn5=(:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})-[`1esn`:usn2|#usn8 *1000..]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}) Remove [`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null].`8esn`? Remove Single(#usn8 In $`5esn` Is Null Is Null Where $123456789[0.0..]).#usn7?,Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]).@usn6! Union All Detach Delete 123.654[12.e12..1e1],`6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null) Unwind `3esn`(`7esn` Starts With $usn2 Starts With .e0,$_usn3 =~`7esn` =~$_usn4)[[$`2esn`[123456789..][00..],Count ( * )[@usn6..0x0]]..][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0)..] As usn1 Remove Extract(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`).`6esn`?,Extract(@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null|@usn5 Starts With 12e12 Starts With @usn5).`2esn`?,[Count ( * )[Count ( * )..12e12][usn1..1000],12e12[$`5esn`][07],$_usn3[9e1][$_usn4]]._usn4 Union All Remove `3esn`(Distinct 0X7 In $999 In $``,$0 Is Not Null).`7esn`?,[@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999|010 Is Null Is Null]._usn3! With *,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn` Skip 1e1[..False] Limit 12e12[$`5esn`][07] Remove [01234567[Null..0.e0][Count(*)..$#usn8],Count(*)['s_str'..`1esn`]].`7esn`?,Any(usn1 In 0x0[..`4esn`] Where 0.12 Contains $12 Contains `8esn`).#usn7!"), - octest:ct_string("With .e0[usn2..][12..] As `1esn`,12.e12[...0][..0x0],`` Contains 12 Contains True As `6esn` Skip `6esn`[0X7..][0x0..] Limit 9e1 Starts With `1esn` Starts With 0Xa Where $999[$1000] Optional Match `5esn`=(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})<-[?:`7esn`|`2esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}]->(usn1 :#usn8))),#usn8=(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Where 0 Contains 12e12 Union Delete (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]),[usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..],{_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] Create #usn8=(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}) Return Distinct *,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}) Skip ({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}) =~None(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Union All Unwind 00[.e1..] As `6esn` Unwind #usn7[$123456789] As `8esn` Merge `2esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7}))"), - octest:ct_string("Return *,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn`,@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn` Skip {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]}"), - octest:ct_string("Return Distinct *,`1esn` Contains Count ( * ) As _usn3 Skip $`3esn` =~$999 =~$`3esn` With Distinct [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}),$_usn4[`3esn`][0] As `1esn`,`6esn` Starts With $`5esn` As @usn5 Order By .0 Is Null Is Null Ascending,`1esn`(Distinct $@usn5[#usn8..][$`1esn`..],#usn7 Ends With `4esn` Ends With @usn5)[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|usn1[Count ( * )..$usn1]]][{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}] Asc Limit True Is Not Null Where 0.0 =~0X7 =~#usn7"), - octest:ct_string("With [#usn8 In $`5esn` Is Null Is Null][Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where #usn7[..$1000][..01])..][[@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]]..],(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[usn1?:`8esn`|:usn1]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Is Null Is Null As #usn7,1e1[..#usn8][..'s_str'] As #usn8 Order By `3esn`[$123456789][$#usn7] Ascending,{@usn6:12.0[``],_usn4:$`3esn` Contains 0X0123456789ABCDEF Contains 00} Ends With Single(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Ends With Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999|12.0[``]) Asc Skip (:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0}) Starts With Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) Starts With [12.0 In 1000 In _usn4] Limit 00[01234567][False] Return 7[$`4esn`..123456789] As `2esn` Limit 1000 Ends With 1000 Ends With $`4esn` Union With Distinct \"d_str\",0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',$@usn5[01] Order By 01234567 Starts With $_usn4 Desc,0.12 Contains .e1 Ascending,0x0 =~_usn4 Descending Skip [usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]] Contains None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]) Contains Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) Detach Delete 12[..0.0][..#usn7] Detach Delete 999[$`8esn`] Union Create ``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)),`2esn`=(((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) Create `4esn`=((:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})),((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) Return Distinct *,12 Is Null Is Null As #usn7,$1000 Is Not Null Is Not Null Skip (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)[Filter(@usn6 In @usn5 In $`6esn` Where $999[$1000])..][#usn7($`8esn`[``..][123.654..],12.e12 Contains `5esn`)..]"), - octest:ct_string("With 01234567[$@usn6..0X7][$`1esn`..123.654],00 Ends With $_usn4 Ends With $`2esn` As `5esn` Order By 01[0.0] Ascending,`6esn` Starts With $usn2 Starts With 0.0 Ascending Skip {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']} Ends With [True Contains @usn6,`3esn`[$`1esn`..]] Limit usn1 Is Not Null Is Not Null With Distinct $12 Contains 123.654 Contains `8esn` As _usn4 Limit Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) Return Distinct (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Order By [$12[01..][1.e1..]][[usn1 In 00 Starts With _usn3 Where 00]..@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12)] Desc,[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|#usn7 Starts With `1esn`][[@usn5 In .12[#usn7][$`8esn`] Where 0.12 In $`4esn` In `6esn`|$`1esn` Starts With @usn6]..][$`1esn`..] Ascending,{#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null Asc Skip Null[0.e0..0x0];"), - octest:ct_string("Merge `2esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}) On Match Set @usn5 =$`5esn` In False Remove #usn7(Distinct $@usn6[..$usn1],9e12 Is Not Null Is Not Null).usn1 Detach Delete [0.12 Contains $`2esn` Contains $_usn4,01 Ends With .e0] Starts With [usn1 In $123456789 Contains usn2 Where usn1[..@usn5][...e0]] Starts With All(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`) Union All Remove {`1esn`:0xabc[12.e12..`1esn`]}.`1esn`!;"), - octest:ct_string("Merge `3esn`=(({`5esn`:0.12 Contains .e1})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0})-[:@usn5|`8esn` *123456789..999{usn1:9e12 Is Not Null Is Not Null}]-(#usn7 :`5esn`)) On Match Set @usn5+=`` In `6esn`,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`` Is Null Is Null).`` =12.e12 Is Not Null On Match Set `` =None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..],#usn7($`8esn`[$``..$7][$1000..$`7esn`],`2esn` In 7 In usn2).`6esn`? =$_usn4['s_str'..],`4esn`+=$`7esn` Ends With $usn2 Remove {#usn8:123456789[$#usn7..],#usn7:07[12e12]}.usn2,(#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(_usn4 {`1esn`:010[@usn5..]})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(usn1 :_usn3{@usn6:True[..'s_str'][..01]}).`8esn`! Union Optional Match (({#usn7:Count ( * )[@usn6..0x0]})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})) Where @usn6[`5esn`..$`3esn`] Match `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Match ((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})),(_usn3 :_usn3);"), - octest:ct_string("Return *,0 Is Not Null Is Not Null,[@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12]][{@usn6:.12 Starts With 0Xa}..(`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})] Order By (`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) Desc Limit .e12[..0.e0][..$`1esn`] Union Create `3esn`=((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})),(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}) Optional Match `5esn`=(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})<-[?:`7esn`|`2esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}]->(usn1 :#usn8))),#usn8=(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Where 0 Contains 12e12"), - octest:ct_string("Unwind \"d_str\"[$`7esn`][$1000] As `5esn` Optional Match `5esn`=(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}),`7esn`=(({#usn7:False[`2esn`..#usn8]})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})) Create ((:`6esn`:`7esn`{_usn4:12[0X7..@usn6],_usn3:123456789 In $usn2 In `6esn`})<-[#usn7?:_usn3|:`4esn` *00..]->(:`6esn`:`7esn`{_usn3:\"d_str\" Is Null Is Null})<-[@usn6]->(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`}))"), - octest:ct_string("Merge @usn5=(`3esn` :`8esn`{usn1:`2esn`[$`3esn`..],`6esn`:$12[..``][..$7]})-[@usn5?:``|:_usn4]-(`8esn` :#usn8)<-[?:``|:_usn4]-({`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12}) On Create Set usn2:usn1,None(_usn4 In usn1 Contains False Contains `` Where .12 In $999 In `5esn`).usn2 =9e0 In 01234567,`8esn` =$@usn5 Ends With 0X0123456789ABCDEF On Create Set #usn8:_usn4:usn1,[0 Is Not Null Is Not Null].usn2! =(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] With Distinct 12.e12 Contains $`5esn` As `` Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Limit All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Where False In $`7esn` In .0 Union All Remove All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null).@usn5,`8esn`:_usn3,#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..]).`7esn`! Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..]"), - octest:ct_string("Optional Match (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Where $123456789 In Count(*) In .e1 With Distinct *,00 In 1e1 As `7esn`,0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Skip 7 In @usn5 In $`4esn` Limit {`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]] Where `3esn` =~0.0 =~$`` Merge usn1=(`3esn` :``) On Match Set All(`6esn` In 0X7 =~`` Where 0X7[..12e12])._usn4 =Null Starts With $`7esn` Starts With `2esn`,`5esn`+=999 Contains Count ( * ) Contains 123.654,usn1+=usn1[$`3esn`..$999][True..False]"), - octest:ct_string("Merge `4esn`=({`8esn`:0X7 In 's_str' In $`1esn`}) Match @usn6=(((@usn6 :`5esn`{``:.e1 In $@usn6 In 999,`8esn`:_usn3 Is Null Is Null})<-[$#usn8]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})-[`6esn`? *0Xa{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}]-(:`6esn`:`7esn`{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1}))) Remove {`3esn`:$`5esn` In `2esn` In .0,``:0e0 Is Null Is Null}.`1esn`"), - octest:ct_string("With Distinct `2esn` Contains $999 As #usn7,$123456789[False.._usn3] As `1esn` Order By (usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Ends With [$`8esn` =~$usn2,0X0123456789ABCDEF[..usn1],`` In `6esn`] Descending Skip 0X7[..12e12] Merge (:#usn7) Union All Match `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Where $@usn6[..$usn1] Match `4esn`=((#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) Where `` Starts With @usn5"), - octest:ct_string("Remove Extract(`4esn` In $`8esn` Starts With 1000 Where `5esn` In 12|010 Contains 0X0123456789ABCDEF).`2esn`,{#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}.`2esn`! Return *,({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn`"), - octest:ct_string("With Distinct [@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2] Is Null,00[7..$123456789] Order By $usn2 Is Not Null Is Not Null Desc Limit `8esn` Ends With 999 Ends With 9e0 Remove {_usn3:$_usn4[$`1esn`]}.@usn6!,`8esn`($_usn4[#usn8..],123456789 Starts With `2esn` Starts With .0).usn1?,Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|1e1 Is Null).#usn7? Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Union All Remove {`1esn`:12 Ends With .e12 Ends With $7,`6esn`:$@usn5 Contains 01}._usn4,None(usn1 In 0x0[..`4esn`] Where 0.12 Contains $12 Contains `8esn`).`8esn`?,Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where #usn7[..$1000][..01]|'s_str' Ends With .e0).`8esn`? Return Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])],123456789 Starts With _usn4 Starts With @usn6 Skip _usn3 Ends With 12e12 Ends With .e0 Return Distinct 123.654 Starts With usn1 Starts With @usn5,`7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As `8esn`,$`7esn` Ends With `1esn` Ends With True As `5esn` Order By {`3esn`:$999[12.0..]} =~[$#usn8 In .e12 In 9e1] Desc,\"d_str\" =~`6esn` =~0Xa Asc,(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Descending;"), - octest:ct_string("Unwind 0[0.12..] As _usn4 Union Remove None(_usn4 In usn1 Contains False Contains `` Where $`8esn`[$``..$7][$1000..$`7esn`])._usn3?,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`).`3esn`? Create #usn8=((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Union Unwind Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) As usn2 Optional Match `1esn`=((usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) Where _usn4 Starts With 0X7 Merge usn1=(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(usn1 :#usn8)<-[ *..0x0{`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) On Match Set `2esn`+=123.654 In \"d_str\" In $_usn3"), - octest:ct_string("With *,{`7esn`:Count(*) In 01 In .0}[..{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}][..#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..])] As `5esn`,#usn7 Ends With `4esn` Ends With @usn5 As `` Where $`7esn` Is Null Is Null Union All Match #usn7=(:#usn7{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[:@usn5|`8esn`*..]-(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) Union Unwind 07[$`5esn`..]['s_str'..] As _usn3 Unwind Null Is Null Is Null As usn1 Unwind 123456789 =~Filter(usn2 In 1000 Contains 0.e0 Where 0X7[0e0..]) =~{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999} As `7esn`;"), - octest:ct_string("Return Distinct .12[#usn7][$`8esn`],12 Ends With 07 Ends With @usn6 As usn1 Order By $999[..`1esn`] Ascending,Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending,[$`8esn` =~$usn2][Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..] Asc With Distinct `8esn`[_usn3..$#usn7],({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn` Where $`1esn` Is Null Return Distinct $`1esn` Starts With `8esn` Starts With $0,`` Is Not Null Is Not Null As @usn6,$123456789[$`2esn`][True] As `7esn` Skip {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7) Limit False Ends With $`8esn` Union All With Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] As @usn5,12 Is Null Is Null As #usn7 Limit 0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Create `6esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Union All Delete `6esn`[False..0.0][12e12..$usn2]"), - octest:ct_string("Optional Match usn2=(({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)-[@usn5{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8}]->(usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})),((`1esn` {_usn4:12.e12 Ends With 01 Ends With .e1})-[_usn4?:`6esn`]->(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]})-[_usn3?:#usn7|:_usn4 *010]->({`1esn`:@usn6})) Where `` In `6esn` Union Optional Match `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})),((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`1esn`{`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654}]->(`7esn` :`7esn`)) Delete `6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]),Extract(_usn4 In usn1 Contains False Contains `` Where $`4esn` Starts With 1e1|Count(*)['s_str'..`1esn`]) =~Extract(`4esn` In $`8esn` Starts With 1000|`7esn`[Null..][@usn5..]) =~(:`4esn`:#usn8)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ) Remove ({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}).`5esn`!,`8esn`:_usn4:usn1;"), - octest:ct_string("Remove Extract(`4esn` In $`8esn` Starts With 1000).`2esn` Optional Match #usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})),@usn5=(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})<-[`2esn` *12..0xabc{`6esn`:$123456789[0.0..],@usn5:999[$`6esn`]}]-(`7esn` {`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) Where @usn5[..True][..0X7] Optional Match `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Union All Merge ({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})-[#usn7:`1esn` *07..]->(:`7esn`{``:$`1esn` Starts With @usn6})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) On Match Set [`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|`` Contains 12 Contains True].`2esn`? =$@usn6[..$#usn7][..12.e12],None(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12).`8esn`! =12[..9e0][..999] Union All With Distinct {usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]} =~Single(usn2 In 1000 Contains 0.e0) =~Any(@usn6 In @usn5 In $`6esn` Where $`7esn` Is Not Null) As `3esn`,Filter(usn1 In 00 Starts With _usn3 Where $_usn4[`3esn`][0])[..Extract(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12|0x0 =~_usn4)][..{_usn4:.12 =~.12 =~1e1,#usn7:.e1 Starts With 0.0 Starts With `6esn`}] Order By @usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Ascending,$`3esn` =~Null Desc Skip Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789} Where `3esn`[$`1esn`..];"), - octest:ct_string("Detach Delete Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] Remove @usn5:@usn5,Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`]).@usn5,usn2:@usn6:`7esn` Return @usn5[..True][..0X7] As `7esn`,{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7} Contains {`5esn`:$7[.12]} Contains Extract(usn1 In 00 Starts With _usn3 Where 07 Contains #usn8 Contains $_usn3|`2esn`[$`1esn`..][$_usn3..]) Order By 0X0123456789ABCDEF[..usn1] Descending Skip `3esn`[$123456789][$#usn7] Union Create ((`7esn` :`2esn`:`3esn`{@usn6:9e0 Ends With $`7esn`})),``=((`3esn` ))"), - octest:ct_string("Match ``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}),(`` :usn1) Where 0.12 =~01 =~12 Merge (({@usn6:0X0123456789ABCDEF[..usn1]})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn3{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})-[usn1*]->(:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})) On Match Set `4esn` =.e12[.12..][_usn4..] On Match Set All(`6esn` In 0X7 =~`` Where `7esn`[...e1][..\"d_str\"]).`5esn` =None(usn2 In 1000 Contains 0.e0 Where $usn1[..$`6esn`][..Null]) Starts With Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]|$`1esn` Starts With $999) Remove (@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`6esn`,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]).usn2!,(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn`]->(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`1esn`! Union All Detach Delete _usn3[...e1]"), - octest:ct_string("Merge @usn6=((`6esn` :`7esn`)-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)<-[@usn5:`6esn` *0X0123456789ABCDEF..]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null})) On Match Set `4esn` =0x0[0.0][$_usn4] On Match Set #usn8+={`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}],(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0}).`3esn`! =07 In $7 In 12,[\"d_str\" =~`6esn` =~0Xa].`4esn`! =0.0 =~0X7 =~#usn7 Match `1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) Match (usn2 :#usn8{`3esn`:123.654[@usn5]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`}),((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[usn1?:`1esn` *0X0123456789ABCDEF..{usn2:$`4esn`[12.e12..][0.0..]}]-(#usn7 :`5esn`)) Where 1e1[..False] Union All Return 1000 Contains $#usn7 Contains `6esn`,All(@usn5 In $#usn8 Is Null Is Null Where 's_str'[..0.0][..$`4esn`]) Is Null Is Null Order By $123456789 Ends With .e1 Ascending Skip $`3esn` Contains 0X0123456789ABCDEF Contains 00 Limit $_usn3 =~$`3esn` =~0x0 Delete $usn2 In 9e0 In $7,[usn1 In 00 Starts With _usn3 Where 00][#usn8(Distinct $`2esn`[$123456789..$`1esn`][0Xa..$``],@usn6[`5esn`..$`3esn`])..['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`]],0xabc[12.e12..`1esn`] Delete 0e0[`2esn`..010],@usn6[`5esn`..$`3esn`],Count ( * )[..usn1][..12.e12]"), - octest:ct_string("Remove (:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)}).usn1!,None(usn1 In 00 Starts With _usn3 Where 999 Contains `7esn`).`3esn`?,_usn3:usn1 With Distinct $`4esn`[$`2esn`..] As #usn8,#usn8 In $0,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Skip $@usn5 =~$`` =~$usn2 Limit `8esn` Ends With 999 Ends With 9e0 Union Remove [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]|9e0 Starts With `6esn`].#usn8?;"), - octest:ct_string("Match _usn4=(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(@usn6 ) Detach Delete 0x0 Is Not Null Is Not Null Union Create @usn5=(`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0}) Unwind 01234567[.12..7][1000..1.e1] As usn2"), - octest:ct_string("Create ``=(_usn4 :`4esn`:#usn8{@usn5:$_usn4[12e12][`4esn`],`4esn`:False In `3esn`})-[`6esn`:``|:_usn4 *..01]->(`5esn` :#usn7),((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Unwind Extract(usn2 In 1000 Contains 0.e0) Ends With Single(usn1 In 0x0[..`4esn`] Where 12.e12 Contains `5esn`) Ends With Single(usn1 In 00 Starts With _usn3 Where $0[01234567..00][$`2esn`..$@usn6]) As `1esn` Union Unwind 0.12 Contains $`2esn` Contains $_usn4 As @usn6 Merge `2esn`=(:usn1{`8esn`:usn1 Contains $``})-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1})-[ *010{@usn5:Null Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] Union All Create _usn3=((({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']})-[:usn2|#usn8*..]-(`5esn` :`7esn`))) Optional Match `8esn`=(($12)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)),(:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) Where 1e1[..#usn8][..'s_str']"), - octest:ct_string("Return *,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7,@usn6 Starts With `7esn` Starts With Null Skip Count ( * )[..usn1][..12.e12] Limit (`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Union Merge (((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) On Match Set (`4esn` :`6esn`:`7esn`)-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(`5esn` {@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}).#usn8 =False In 123456789 In $0,Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])._usn4! =9e1[010..] Unwind 01 In _usn3 In 12 As `3esn` Detach Delete [0.12 Contains $`2esn` Contains $_usn4,01 Ends With .e0] Starts With [usn1 In $123456789 Contains usn2 Where usn1[..@usn5][...e0]] Starts With All(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`) Union All With Distinct 0[usn2..],0Xa[#usn7] As `4esn`,9e1 Starts With `1esn` Starts With 0Xa As usn2 Order By [#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|@usn6 Starts With `7esn` Starts With Null] Is Not Null Is Not Null Descending,0.12 =~9e0 Desc,7 =~9e0 =~'s_str' Descending Where 12.e12[$1000..] Match `1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]}));"), - octest:ct_string("With Filter(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[[1e1[0.0],0 Contains 12e12,$123456789[..0x0][..`4esn`]]] As `3esn`,False[`2esn`..#usn8],00 Is Null Is Null Order By {`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,0.12 In $7 In 0 Desc Skip 9e12[0.0..12.e12] Limit $usn1[.e12..`8esn`][True..$@usn5] Return Distinct *,None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`) Is Null As @usn6,123456789 =~_usn4 =~$0 As usn1 Delete All(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True])[..[`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|_usn3 In .e1 In $12]][..{`2esn`:$usn1[1e1.._usn3][$@usn6..$#usn7]}],0.0[12...12]"), - octest:ct_string("Delete $`2esn` Contains usn1 Contains `2esn`,`4esn`[7..][1000..] Unwind `` As `6esn` Union Create `8esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Merge usn2=((`5esn` :usn2:@usn6{`5esn`:0Xa In .e1 In Count(*)})) On Create Set `3esn`+=[_usn4[0xabc..]][..Extract(_usn4 In usn1 Contains False Contains `` Where 12[usn1][True])][..(_usn3 {`7esn`:usn1 Contains False Contains ``})<-[? *0..010]-(#usn8 :`4esn`:#usn8)]"), - octest:ct_string("Optional Match (({usn1:`4esn` In $12 In `8esn`})<-[@usn5:#usn8{`4esn`:$0[0X0123456789ABCDEF..$#usn7]}]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})) Where 0X0123456789ABCDEF[..usn1] Detach Delete 0x0[0X7..][usn1..] Union All Remove `5esn`:_usn4:usn1,_usn4($`6esn`[$@usn6..],_usn3[.0]).#usn8,[07[$999],@usn6[$`7esn`]].@usn5! Create ((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` )) Merge (({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})) On Create Set #usn7:``,({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})<-[?:@usn5|`8esn` *..0X7]-(:usn1).`4esn` =`6esn` Starts With $`5esn`,[`6esn` In 0X7 =~`` Where 0.12[Null..]]._usn4 =Count ( * )[`3esn`..][`2esn`..] On Match Set `3esn` =010 In @usn5 In `5esn`;"), - octest:ct_string("With Single(#usn7 In 01234567[$`3esn`..]) Is Null As `3esn` Order By .e12[usn2][01] Desc,$`7esn` Ends With 07 Ends With 07 Descending Skip 7[..0X7][..'s_str'] Limit {`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) Unwind [`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) As #usn8 Remove Extract(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null).@usn5?,{`5esn`:#usn7[..$1000][..01],`8esn`:True[Count(*)..][1e1..]}.@usn5?,count(Distinct $#usn8,False Is Not Null Is Not Null)._usn3? Union All Detach Delete 123.654[@usn5] Merge usn2=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) On Create Set None(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0).`4esn`! =0[usn2..],[@usn6[$`3esn`]].`4esn` =01 In _usn3 In 12,`1esn`+=123456789 =~usn1 Unwind `7esn`(0.0[1000..][.e1..],$@usn5 Contains 01)[Any(usn1 In 0x0[..`4esn`] Where 0X7[.e12..01234567])][[$@usn6 Contains 07 Contains 0.e0,`5esn` In 12]] As `8esn` Union All Create #usn7=({`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]->(`3esn` {_usn3:@usn6 Contains _usn4 Contains $`4esn`})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->({_usn3:12.e12 In $0 In Count(*)}) Match `7esn`=(@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}),@usn6=({_usn3:12.e12 In $0 In Count(*)})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}) Where 1e1 In 9e0 In 9e0 With Distinct `7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As `6esn` Skip 01234567[$`7esn`][_usn3] Limit usn1 Is Not Null Is Not Null;"), - octest:ct_string("Merge usn2=((`3esn` :`4esn`:#usn8)<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})) On Match Set (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 =123.654 Contains `2esn`,`3esn` =Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`),{`6esn`:$_usn4[$`8esn`..][07..]}.@usn6! =`5esn`[.e1][0Xa] Union Create _usn3=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))),(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) With *,`3esn`[$`1esn`..] As usn2 Limit @usn6(Distinct Null[0e0][12])[..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]]][..`8esn`(010 =~`6esn`)] Where usn2[`3esn`][_usn3] Union All Unwind usn2[..$`3esn`] As `6esn`"), - octest:ct_string("Create ((`6esn` :`7esn`)),`4esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Order By 12e12[Count ( * )..][usn2..] Ascending,(`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Descending Detach Delete Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0},12 Ends With .e12 Ends With $7 Union With `3esn` Contains 0Xa As `6esn`,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,[usn1[..@usn5][...e0]][(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)] Union All Detach Delete [$1000 Is Null Is Null] Is Null,Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]|$`1esn` Starts With $999) =~[`` Starts With 12,$usn2 Is Not Null,123456789[`4esn`..][Count ( * )..]],[@usn6 In @usn5 In $`6esn` Where $999[$1000]|$7[.12]] In {`1esn`:$@usn6 Contains 07 Contains 0.e0} In (`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})"), - octest:ct_string("Unwind 12[0X7..@usn6] As `` Unwind Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[{@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null}..] As @usn6 Union Return *,(@usn6 {_usn4:$_usn4[#usn8..]})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)[Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null)..] Skip $`7esn` Ends With 07 Ends With 07 Optional Match _usn3=(($999)),``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)) Where 9e0[True..`1esn`] Create ((`7esn` :`2esn`:`3esn`{@usn6:9e0 Ends With $`7esn`})),`6esn`=((`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})) Union Detach Delete .e0[usn2..][12..]"), - octest:ct_string("Optional Match `1esn`=((:`8esn`)-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`{#usn8:Null[0e0][12],`2esn`:`8esn` In $@usn5}]-({_usn3:999 In $_usn4 In 0X7,`1esn`:1e1 In $#usn8 In 12e12})) Where $_usn3 =~`7esn` =~$_usn4 Delete `7esn`($123456789 In Count(*) In .e1) Ends With Extract(@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|Count ( * )) Ends With Any(usn1 In 0x0[..`4esn`] Where False[.e1..Null]),usn2 Starts With `6esn` Starts With 12e12"), - octest:ct_string("Optional Match `1esn`=((:`8esn`)-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`{#usn8:Null[0e0][12],`2esn`:`8esn` In $@usn5}]-({_usn3:999 In $_usn4 In 0X7,`1esn`:1e1 In $#usn8 In 12e12})) Optional Match `3esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}),`5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Where 0e0 Remove {`7esn`:True[..'s_str'][..01]}.`1esn`!,`2esn`:@usn5,({`1esn`:@usn6})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1}).@usn5?"), - octest:ct_string("Unwind 0x0 =~_usn4 As `4esn` Unwind `` Is Not Null As `` Union With Distinct *,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Order By .e0 Contains 01234567 Descending,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Desc,'s_str' Starts With 1000 Starts With #usn8 Descending Where 123456789 =~_usn4 =~$0 Union All With Distinct *,.e1 Starts With $`8esn`"), - octest:ct_string("Create `4esn`=((({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[usn2?]-(`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))) With Distinct *,\"d_str\" Order By $`3esn` Descending,[0[usn2..],7[12e12..$_usn4][9e1..True],`1esn` Contains Count ( * )][Extract(@usn5 In .12[#usn7][$`8esn`] Where Count ( * ))..][Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])..] Desc,1e1[..#usn8][..'s_str'] Descending Skip @usn5 Is Not Null Is Not Null Union All Merge #usn8=((:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[`2esn`? *0..010]->(usn2 :_usn3)-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]})) With 07[07] Skip $`4esn` Contains 0Xa Limit 00[.e0..9e1] Union All Unwind 07[`6esn`..][`5esn`..] As _usn3"), - octest:ct_string("With Distinct {usn1:'s_str'[12..'s_str'],#usn7:07[`6esn`..][`5esn`..]} As `1esn` Limit {`7esn`:.e0 Contains #usn7 Contains $#usn8}[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..None(`6esn` In 0X7 =~`` Where 12.e12['s_str'])][(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})..({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})] Merge #usn8=(({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({_usn3:$`1esn` Starts With @usn6})) Create usn2=(`4esn` {``:07,`3esn`:12e12[_usn3..][$@usn5..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)-[@usn5? *..7{usn2:12e12[$`5esn`][07],usn2:$0[..`8esn`]}]-(_usn4 :#usn8) Union All Optional Match (((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]-({usn1:0x0[0X7..][usn1..]}))),`1esn`=(((usn1 :`4esn`:#usn8)-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}))) Where _usn3 Is Null Is Null Delete \"d_str\" =~12.e12 =~07,Null[0.e0..0x0] Return *,.e0[..0X0123456789ABCDEF][...e12] As `6esn`,1000 In 0X0123456789ABCDEF In 01 Limit [usn1 In 00 Starts With _usn3 Where 00][#usn8(Distinct $`2esn`[$123456789..$`1esn`][0Xa..$``],@usn6[`5esn`..$`3esn`])..['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`]] Union All Return (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Order By 7 =~9e0 =~'s_str' Descending,0e0 Starts With .e12 Ascending Limit 9e1 In $@usn5 In \"d_str\" With Distinct 1000[123.654..9e12][1000.._usn3],count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null,$123456789 =~$#usn8 =~$#usn8 Order By $usn2 Is Not Null Is Not Null Ascending,Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Ascending Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7}))"), - octest:ct_string("Return Distinct 0Xa Is Not Null Is Not Null As `1esn`,(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})[..Filter(#usn8 In $`5esn` Is Null Is Null Where 0Xa Is Null Is Null)][..(`7esn` {@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})] As usn1 Skip False[`6esn`][07] Limit [usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]] Starts With (`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` ) Starts With (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8) Remove {`1esn`:`7esn`[Null..][@usn5..]}.`7esn`!"), - octest:ct_string("Return Distinct 0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str' Limit usn2[$`7esn`..010][00..``] With `5esn` In $999 As `6esn` Order By [_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]][[.0 Starts With `2esn` Starts With `6esn`,9e1[0.e0..][#usn8..]]..][[07[$999],9e0 In 01234567,@usn5 In 0X0123456789ABCDEF]..] Asc,False Ends With $`8esn` Asc Where @usn5 Ends With $`3esn` Ends With 12e12;"), - octest:ct_string("Create #usn7=(((`` :usn1)<-[#usn8:`3esn`|:`4esn` *0..010]->(`3esn` :usn2:@usn6)-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}))) Delete Extract(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|Null Starts With $`7esn` Starts With `2esn`) =~{`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0},0x0 Starts With $`7esn` Starts With `2esn` Unwind [01234567 =~usn1,9e0 =~$`5esn`,usn2[$`1esn`...0]][..[.12 In $999 In `5esn`,010 =~`6esn`,#usn7 Contains .0 Contains .e1]] As `8esn` Union All Optional Match ((_usn3 :_usn4:usn1)<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})),(:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa})-[:usn1|`3esn`]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]}) Where 00[01234567][False] Return Distinct *,Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]];"), - octest:ct_string("Remove {`4esn`:.12 Starts With 0Xa}.usn1!,[`6esn` In 0X7 =~`` Where 123456789 =~_usn4 =~$0|$#usn8 Ends With 1000 Ends With .0].`7esn`? Remove (:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[?:`1esn`]-(_usn4 :@usn6:`7esn`{@usn5:$_usn3[$`4esn`..Null]})._usn3! Union All With Distinct @usn5 Ends With $`3esn` Ends With 12e12 Order By $`3esn` =~$`7esn` =~False Ascending Skip 0X0123456789ABCDEF[.e0..$`4esn`]"), - octest:ct_string("Optional Match `1esn`=(((`` :@usn5)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn5:`8esn`|:usn1]-(#usn7 :`5esn`))),usn1=(_usn4 :`8esn`{`3esn`:False[.e1..Null],`3esn`:9e0 =~$`5esn`}) Where 9e1 Is Null Is Null Union All Unwind _usn4(@usn6[`5esn`..$`3esn`],9e1 Starts With _usn3 Starts With `4esn`)[None(usn2 In 1000 Contains 0.e0 Where #usn7 Starts With .e12 Starts With $`7esn`)..Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $123456789 Ends With .e1)][(`6esn` :`5esn`)-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})..{#usn7:1e1[`6esn`..]}] As _usn3"), - octest:ct_string("Merge `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) On Create Set `1esn` =0X0123456789ABCDEF[.e0..$`4esn`] Return *,0.12[Count(*)..],$@usn5 =~$`` =~$usn2 As #usn8 Union All With Distinct `` Contains 12 Contains True,(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) Is Not Null Is Not Null As @usn5,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Skip Count(*)['s_str'..`1esn`] Limit Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] Where $`5esn` In `2esn` In $12 Detach Delete `3esn`(Distinct 123456789 =~$123456789)[..(usn1 :`6esn`:`7esn`)-[`2esn`? *0..010]->(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]})][..(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})],`6esn`[0X7..][0x0..],Null Contains 9e1 Union Create (_usn3 :_usn4:usn1),((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(@usn5 {_usn4:010[$@usn6],`6esn`:123456789[1e1..0.0]})<-[`6esn`?:`2esn`|usn2 *01234567..12]->(:`7esn`{#usn7:True =~@usn5 =~$`1esn`})) With @usn6 =~01,12.0 In 1000 In _usn4 As _usn3,0 =~12.e12 =~$`` As #usn7 Order By [usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]] In [0xabc[12.e12..`1esn`]] In {@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} Asc,[0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]) Descending,Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1) Asc Skip 07 In $7 In 12 Where Count ( * ) Create ((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 ));"), - octest:ct_string("Optional Match ((({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)<-[#usn7 *123456789..999]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}))) Where $#usn7 In .e1 In 01 Union Create ((`5esn` {_usn4:0X7 =~``})<-[`2esn`?:usn2|#usn8{`6esn`:0X7[.e12..01234567],@usn6:`7esn`[...e1][..\"d_str\"]}]->(`5esn` :`8esn`{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})),`8esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) Union All Optional Match ((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})),(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))) Where 00 In 1e1 Create `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Unwind [@usn5 In .12[#usn7][$`8esn`] Where $_usn4[12e12][`4esn`]][`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])..``(False In `3esn`)][[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]]..Filter(@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12])] As @usn6"), - octest:ct_string("Match `1esn`=(((`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})-[ *010{@usn5:Null Is Null Is Null}]-(:`5esn`)<-[`7esn`{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}]-(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}))) Create ((`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})),_usn4=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})) Remove {`6esn`:9e1 Contains $`3esn` Contains 01234567}.`2esn` Union Remove `1esn`(Distinct `2esn`[$`1esn`..][$_usn3..])._usn4!,Null.`6esn`?,`3esn`(Distinct 01234567 Ends With 0x0).``! Optional Match @usn6=((:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})-[?:`4esn`|:`7esn`]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})),#usn7=(@usn5 {usn2:$999[12.0..]})<-[usn1]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[_usn3?:``|:_usn4]->(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}) Remove Any(usn2 In 1000 Contains 0.e0 Where .e12 Contains $12 Contains 12.e12).`2esn`,[$`6esn`[$`1esn`][1000],$``[False],07[12][$`6esn`]].`5esn`!,`7esn`(`3esn`[..7][..12e12],$999 Ends With $`3esn` Ends With `8esn`).usn2? Union Detach Delete _usn3 Ends With 12e12 Ends With .e0,01[0.0],None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]) Detach Delete $_usn4['s_str'..] Detach Delete .e0 Is Not Null Is Not Null,{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]} =~Single(usn2 In 1000 Contains 0.e0) =~Any(@usn6 In @usn5 In $`6esn` Where $`7esn` Is Not Null)"), - octest:ct_string("Optional Match _usn4=(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Unwind $_usn3 =~$`3esn` =~0x0 As usn2 Unwind None(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`) Contains `3esn`($usn2 Contains 12.e12 Contains 00) As @usn6"), - octest:ct_string("Return Distinct *,Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null As `6esn` Remove Any(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0).usn1?,({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}).`5esn`! With *,{`7esn`:Count(*) In 01 In .0}[..{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}][..#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..])] As `5esn`,#usn7 Ends With `4esn` Ends With @usn5 As `` Where $`1esn` =~$`1esn` =~#usn7 Union All Return Distinct *,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] As @usn6 Order By 010 Starts With `7esn` Starts With 9e1 Ascending,123456789 Is Null Descending,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] Desc Skip {#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null Remove None(`4esn` In `6esn`[1e1..] Where 12.0[``]).@usn5? With Distinct 's_str'[..0.0][..$`4esn`] As `2esn`,#usn7 Contains .0 Contains .e1,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Skip `6esn` Starts With $usn2 Starts With 0.0 Limit 9e1 Contains $`3esn` Contains 01234567"), - octest:ct_string("Detach Delete [.0[01][$12]][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`3esn` =~$`7esn` =~False|7[..12e12][..$`6esn`]]],07[07] Union Return *,07[0..`4esn`] Skip $_usn3[9e1][$_usn4] Optional Match ((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),((_usn4 {`8esn`:9e1 In 01 In 999}))"), - octest:ct_string("With 0Xa Starts With 0.12 Starts With .0 As usn2,[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4,$@usn6 Contains 0 Contains $`2esn` As `` Limit 1e1 In $999 In $usn2 Union Unwind usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`]) Is Null As `3esn` Union All Unwind 0.0 =~0X7 =~#usn7 As `6esn` Optional Match usn2=((usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(usn2 :`5esn`)),((`3esn` :`8esn`)-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})-[ *..0X7]->(`5esn` :_usn4:usn1)) Create `4esn`=((:`7esn`{``:$`1esn` Starts With @usn6})),@usn5=((@usn6 :#usn7{@usn5:Null Is Null Is Null})<-[``?:@usn5|`8esn`]->(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]}))"), - octest:ct_string("Unwind [usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..] As `5esn` Remove {`8esn`:Count ( * ) =~Count(*)}.`6esn`,({@usn6:0X0123456789ABCDEF[..usn1]})<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)._usn4?,(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`4esn` Union All Remove `7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``]).@usn5,{#usn7:0Xa Is Not Null Is Not Null,#usn7:.0[$`6esn`..False]}.`4esn`?,[usn1[..@usn5][...e0],$`8esn`[``..][123.654..]].`` Delete ({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3}),$123456789[$``][010] Return All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null Skip [0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',0X0123456789ABCDEF In $1000 In $`3esn`,$0[..`8esn`]] In `4esn`(Distinct 12.e12 In $0 In Count(*),00 In 1e1) In [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]|.e0 =~`5esn`] Union All Create @usn6=(({_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]})<-[ *0xabc]-(`6esn` :`3esn`:`1esn`{_usn3:1e1[.e1..],`1esn`:$#usn8})<-[usn1? *..0X7]-(usn1 :`4esn`:#usn8)),#usn8=((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Return Distinct 0['s_str'][Null] As #usn8,`2esn` In 12.e12 In `3esn` As _usn3 Order By $0 =~`3esn` Descending,0Xa[0xabc..$#usn8] Desc Skip usn1[Count ( * )..$usn1];"), - octest:ct_string("Return *,9e12 Contains $_usn3 As `2esn` Order By 0x0[$`3esn`..010][$#usn7..00] Descending,9e12 Asc,`5esn` In $999 Descending Limit `3esn` =~$`5esn` =~12 Unwind 00 As `8esn` Return Distinct *,Count ( * ) Contains 999 Contains $`8esn` Order By $`7esn` =~.e1 Descending,0e0 Starts With .e12 Ascending Skip 0.e0 Ends With 12 Ends With $7 Union With Distinct 1.e1 =~$_usn4 As usn2,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,{_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] Order By $12 Starts With #usn7 Asc,$0[$0..] Descending Where _usn3 Ends With 0x0 Ends With 01234567 With *,0xabc Starts With _usn3 As `3esn`,Null[..12e12][..usn1] As `3esn` Order By 0x0[$`3esn`..010][$#usn7..00] Ascending,010 =~$usn2 =~1e1 Desc,(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Asc Limit 0x0 Contains $`8esn` Contains `6esn` Where 0xabc Contains Null Contains 9e12 With `5esn` In 12 As usn2,Count(*) Starts With 1e1 Starts With $123456789 As #usn7,[`4esn` In 's_str'[12..'s_str'] Where 9e1 Contains $`3esn` Contains 01234567][[7[..12e12][..$`6esn`]]..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}] As #usn8 Order By 00 In 12.e12 Descending,9e0 Ends With $`7esn` Asc Skip 01234567 Is Null Is Null Limit $123456789 In Count(*) In .e1 Where $123456789 Ends With $`6esn`;"), - octest:ct_string("With *,7 Is Null As #usn7 Order By $`7esn` =~.e1 Descending,0e0 Starts With .e12 Ascending Where $`2esn`[$`2esn`..] Union All Create ((:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]})<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]})<-[`5esn`?:`6esn`]->(`1esn` :#usn7{`4esn`:9e12 Is Not Null Is Not Null,`8esn`:$0[..`8esn`]})) Match (({#usn7:Count ( * )[@usn6..0x0]})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})) Where 0X7[0e0..] Union Match (@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]}),(({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:``|:_usn4 *0Xa]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) Where 0x0 =~_usn4"), - octest:ct_string("Return *,\"d_str\" =~`6esn` =~0Xa As `4esn` Skip $@usn5 =~07 =~True Create _usn3=(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}),`1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) Create ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})-[@usn6?:#usn7|:_usn4 *00..]->(`` :@usn5{#usn7:0X7[12]})) Union Remove `3esn`:#usn7,None(`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]).#usn8?"), - octest:ct_string("With Distinct $`4esn`[$`2esn`..] As #usn8,#usn8 In $0,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Skip $@usn5 =~$`` =~$usn2 Limit `8esn` Ends With 999 Ends With 9e0 Unwind _usn3[.0] As _usn3 Return Distinct 999[``..][Null..] As `1esn` Skip usn2(Distinct _usn3 Contains @usn6 Contains 1.e1)[Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where _usn3 Is Null)..[12e12[0.e0][9e1]]][Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``])..Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)] Limit Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)[..(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})][..Any(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)] Union All Return Distinct _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0),$`7esn` In 0.e0 In `4esn` As `2esn` Limit Any(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) Is Not Null Is Not Null Create `2esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}),`3esn`=(`4esn` {usn2:7 In 0xabc})<-[$#usn8]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}) With *,`7esn`[...e1][..\"d_str\"],12e12[0.e0..True][0.12..0.0] As #usn7 Order By 0xabc[12.e12..`1esn`] Ascending,12.e12 In $1000 Ascending,[`6esn` In 0X7 =~`` Where 0.12[Null..]] Is Null Is Null Ascending Limit Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1)[00..] Where 0.e0[..#usn8][..Null] Union All Detach Delete {`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}[[`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]]][Count ( * )] Unwind $@usn6 Is Null As `` Merge `3esn`=(((:_usn4:usn1{usn2:$`5esn` In False})<-[?:@usn5|`8esn` *..0X7]->(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}))) On Create Set [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]].`1esn` =9e12 =~01 =~$`7esn` On Create Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$``"), - octest:ct_string("Optional Match (`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}),(:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}) Where Null[01234567][01234567] Create usn1=((#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`6esn`?:usn1|`3esn`{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})) Remove usn1:`1esn` Union All Merge ((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) On Match Set [`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|`` Contains 12 Contains True].`2esn`? =$@usn6[..$#usn7][..12.e12],None(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12).`8esn`! =12[..9e0][..999] With [$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}),[@usn5 In $#usn8 Is Null Is Null Where 7 In 0xabc][[Null[01234567][01234567],07[1e1],Count(*)[12.e12..]]..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)] Skip `1esn`[@usn6..$123456789] With *,{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)] Order By .e1 Starts With $`8esn` Asc Limit $#usn7 In .e1 In 01 Union All Return Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Order By 12e12[Count ( * )..][usn2..] Ascending,(`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Descending Detach Delete $999[12.0..] Match usn2=(((`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[?:`5esn`|`1esn` *999..]->(:``)<-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))),`2esn`=(({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(:_usn4:usn1)) Where `4esn` =~123456789"), - octest:ct_string("Merge `8esn`=((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})) Union Optional Match ((:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]})),((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Where $`4esn`[12.e12..][0.0..] Union Merge (((`3esn` )-[?:#usn7|:_usn4]-(usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]}))) On Match Set `5esn` =01234567 Starts With $_usn4,#usn7 =\"d_str\" =~`6esn` =~0Xa,{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]}.usn2? =9e12 Contains .e0 Contains .e0"), - octest:ct_string("Delete 0.0[..12e12][..$0],1.e1[.e0..0] Union All Create usn2=(`4esn` {``:07,`3esn`:12e12[_usn3..][$@usn5..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)-[@usn5? *..7{usn2:12e12[$`5esn`][07],usn2:$0[..`8esn`]}]-(_usn4 :#usn8);"), - octest:ct_string("Delete 7[..`1esn`],`6esn` In 1000 In 01234567 With *,$0[..`8esn`] As _usn4 Order By $`6esn` Is Not Null Is Not Null Desc Skip 0x0 Contains $`8esn` Contains `6esn` Limit 1e1[@usn5..] Where 1000 Contains 0.e0 Union Remove [@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1|00].`3esn`!,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]|$`6esn`[$`1esn`][1000]].`4esn`! Unwind Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] As `8esn` Union Create `8esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Merge usn2=((`5esn` :usn2:@usn6{`5esn`:0Xa In .e1 In Count(*)})) On Create Set `3esn`+=[_usn4[0xabc..]][..Extract(_usn4 In usn1 Contains False Contains `` Where 12[usn1][True])][..(_usn3 {`7esn`:usn1 Contains False Contains ``})<-[? *0..010]-(#usn8 :`4esn`:#usn8)]"), - octest:ct_string("Match (#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[#usn7{#usn7:False[`2esn`..#usn8]}]->(`5esn` :`2esn`:`3esn`{_usn3:$`2esn`[$123456789..$`1esn`][0Xa..$``],`5esn`:12.e12[@usn5..123.654]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}),`5esn`=((#usn8 :`4esn`:#usn8)<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})) Union With Distinct 010 In @usn6 Order By (:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0}) Starts With Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) Starts With [12.0 In 1000 In _usn4] Ascending Limit `7esn`[1e1..07][0x0..Count ( * )] Union All Delete 's_str' Ends With .e0 Remove Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|@usn6[..0xabc][..$#usn7])._usn3,Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null).``!"), - octest:ct_string("Unwind `8esn`[$``] As `3esn` Remove (:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`2esn`]-(`6esn` :#usn7)-[_usn4?:`6esn`]-(@usn5 :`8esn`).`7esn`,`7esn`(usn2 Is Null Is Null,`6esn` =~$_usn3).`1esn`! Merge (((`1esn` :`8esn`)-[_usn4:`7esn`|`2esn`]-(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3}))) On Create Set _usn4 =00 In 12.0 In 's_str',Any(usn2 In 1000 Contains 0.e0 Where _usn4[0xabc..]).``? =All(usn1 In 00 Starts With _usn3 Where 12e12[Null]) Ends With (:`7esn`)<-[@usn5:#usn7|:_usn4]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})<-[?:usn2|#usn8{#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7}]-({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) Ends With Extract(`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]|usn2[$`1esn`...0]),#usn7+=9e0[False] On Match Set [$usn1 In 1000 In $#usn7,$#usn7 In 12.0 In 0X0123456789ABCDEF,9e0 Is Not Null]._usn3 =All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`! =0xabc Starts With _usn3 Union With Distinct $`4esn`[12.e12..][0.0..],12[`7esn`...0][0.12..``] As @usn6,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Skip $`1esn` Ends With $`1esn` Where `3esn` Contains 0Xa Create _usn3=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))) With Distinct *,$`7esn` Ends With $@usn5 As usn2,$@usn6 Starts With usn2 Starts With usn2 As #usn8 Skip 0.e0[..#usn8][..Null] Limit 00 Starts With _usn3 Where $@usn6 Contains 07 Contains 0.e0 Union All Merge ((`4esn` {`6esn`:$12[..``][..$7]})-[usn1?{usn2:7[$`4esn`..123456789]}]->(`3esn` )<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` )) On Match Set `6esn`+=7[$`4esn`..123456789],`1esn` =(:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]),{_usn3:'s_str' =~0.e0}.usn2? =Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0]|999[``..][Null..]] Ends With Any(`4esn` In `6esn`[1e1..] Where False[`2esn`..#usn8]) On Create Set ({@usn6:9e0 Contains `8esn`})-[usn2 *0X0123456789ABCDEF..{usn2:`` Starts With 12}]-(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})-[`7esn`:@usn5|`8esn`{usn1:9e12 Is Not Null Is Not Null}]->(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]}).``! =Single(#usn7 In 01234567[$`3esn`..])[(`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']})][[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0]] Optional Match `1esn`=((:`8esn`)-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`{#usn8:Null[0e0][12],`2esn`:`8esn` In $@usn5}]-({_usn3:999 In $_usn4 In 0X7,`1esn`:1e1 In $#usn8 In 12e12})) Where $_usn3 =~`7esn` =~$_usn4;"), - octest:ct_string("Remove Single(#usn8 In $`5esn` Is Null Is Null Where $123456789[0.0..]).#usn7?,Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]).@usn6! Remove Any(@usn5 In .12[#usn7][$`8esn`] Where 12[..9e0][..999]).`5esn`?,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $123456789 Ends With .e1).`3esn`?,[010[$@usn6],9e0 Is Not Null].`2esn` Union Merge @usn5=(({`8esn`:$usn1[0.12..]['s_str'..],`8esn`:`1esn`[0e0..]})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})) On Create Set `6esn`+=Extract(`4esn` In $`8esn` Starts With 1000 Where False In `3esn`|$`3esn` =~Null),`8esn`+=12 Ends With .e12 Ends With $7,(:``{`1esn`:`6esn` =~$_usn3})-[`5esn`?:_usn4|:@usn5]-(usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]}).usn2 =usn1(Distinct) Ends With {`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654} Ends With ({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) On Match Set `7esn`+=9e0[``][123.654] Delete [True[..'s_str'][..01]] In Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999]) In All(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`]),$`3esn` Starts With $usn1"), - octest:ct_string("Create `8esn`=(`4esn` {`3esn`:0X7[..12e12],`8esn`:False In 123456789 In $0})-[`4esn`?:`1esn`]->(:`2esn`:`3esn`{usn2:$`5esn` In False})<-[#usn7? *00..]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]}),`7esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})) Return Distinct *,1.e1[Null][12.e12] As ``,Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) As _usn3 Order By 0.e0[`6esn`...e0][9e12...e12] Descending,_usn3 In .e1 In $12 Asc Skip [$`4esn`[9e1..][0..]][Any(`4esn` In $`8esn` Starts With 1000 Where 0.e0[9e1..][0.0..])..Single(#usn8 In $`5esn` Is Null Is Null Where 1000 Ends With 1000 Ends With $`4esn`)] Limit 123456789 =~_usn4 =~$0 Return Distinct $@usn5 =~$`` =~$usn2 As @usn6,usn1 Is Not Null Is Not Null,01 In 01 In 12 Order By Extract(usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`) Contains [0 Contains 12e12,0xabc Ends With $7 Ends With $`2esn`,0x0 =~_usn4] Ascending,07[1e1] Ascending Limit $`8esn` Starts With 1000 Union Detach Delete `2esn` In Count(*) In 9e0,$usn2[False..`7esn`][`7esn`.._usn3],999[``..][Null..] Create ((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})),(`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[? *..0X7{`3esn`:`8esn`[$``]}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})-[?:usn1|`3esn`{#usn8:1000[..$`6esn`][..0xabc]}]->(usn1 :_usn3{@usn6:True[..'s_str'][..01]}) Remove ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`5esn`? *010]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null}).`7esn`! Union Unwind None(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1])[`8esn`(00[``..][$`4esn`..],123.654[@usn5])] As _usn4 Merge (((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) On Match Set (`4esn` :`6esn`:`7esn`)-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(`5esn` {@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}).#usn8 =False In 123456789 In $0,Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])._usn4! =9e1[010..]"), - octest:ct_string("Delete $`4esn` Contains 0Xa,00 In 0.12 In `5esn` Union Optional Match ((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6)) Union With Distinct *,9e1['s_str'..1e1] As #usn7,01234567 As `6esn` Skip `2esn` In Count(*) In 9e0 Limit usn2 Is Not Null Where $12 Is Null Is Null With Distinct Null[0.e0..0x0] As `2esn`,$`1esn` Starts With $999 As #usn8 Where Count(*)[`7esn`..$12] Optional Match ``=(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12}) Where 123456789[$#usn7..]"), - octest:ct_string("Match (`6esn` $`8esn`)<-[@usn6?:`6esn`*..]-(_usn3 :usn2:@usn6),(`3esn` :`8esn`)"), - octest:ct_string("Detach Delete 999[$`8esn`],Single(#usn7 In 01234567[$`3esn`..])[(`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']})][[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0]],$#usn7 In .e1 In 01 Delete 01 In 01 In 12,`6esn`[0X7..][0x0..]"), - octest:ct_string("With *,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn` Skip 1e1[..False] Limit 12e12[$`5esn`][07] Optional Match @usn5=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Union All Create ((`6esn` :_usn4:usn1{`6esn`:00 In 12.e12})<-[`7esn`?:`5esn`|`1esn`]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`})),(usn1 :`3esn`:`1esn`)-[?:`4esn`|:`7esn` *..0x0]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Union Remove [@usn5 In .12[#usn7][$`8esn`] Where Count ( * )].`8esn`? With Distinct $12[`3esn`..0e0][`2esn`..$7] As #usn8,0.12 =~01 =~12 Order By $123456789 =~$#usn8 =~$#usn8 Ascending,0X7 In 123456789 In $`5esn` Ascending"), - octest:ct_string("Merge ((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6)) On Create Set None(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]).`3esn` =Single(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) In [$123456789 Contains usn2,010 Is Null Is Null,`7esn` Starts With $usn2 Starts With .e0] In `2esn`($`5esn` Is Not Null,7 In $`3esn` In #usn7),None(`4esn` In $`8esn` Starts With 1000 Where 0.12 Is Null Is Null).`2esn`! =[010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]][(:@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})..][Extract(#usn8 In $`5esn` Is Null Is Null Where 1000[0.0][Null])..] On Match Set `7esn`+=`5esn`[`1esn`..`1esn`],{_usn4:usn2 Ends With $`5esn` Ends With `2esn`,#usn7:0.12 In $7 In 0}.@usn5! =_usn3 Contains @usn6 Contains 1.e1,`8esn`+=Filter(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null) Ends With [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1] Ends With _usn3(Distinct $123456789 Ends With $`6esn`) Unwind Extract(`6esn` In 0X7 =~`` Where $_usn3[9e1][$_usn4]|@usn6[..0xabc][..$#usn7])[[@usn6 In @usn5 In $`6esn` Where $@usn5 In 12e12 In Count(*)|999[$`6esn`]]..Any(_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`)][{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`],usn2:@usn6[`3esn`..][$7..]}..`7esn`($123456789 Ends With $`6esn`)] As _usn4 Union All Create (({_usn3:12.e12 In $0 In Count(*)})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(`2esn` :``)-[:_usn4|:@usn5 *0xabc]-({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})) Union Unwind 00 In 12.0 In 's_str' As `3esn`"), - octest:ct_string("Return *,00[``..][$`4esn`..] As `6esn`,$`6esn`[$`1esn`][1000] Order By `1esn`[@usn6..$123456789] Asc,`1esn`[9e12..$`8esn`][usn2..$``] Ascending,`7esn`[..0X0123456789ABCDEF][..$0] Desc Skip $usn2[0e0..] Limit (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``])"), - octest:ct_string("Return *,$@usn6[..12e12],`8esn` Ends With 0X0123456789ABCDEF Ends With `1esn` As usn2 Skip 1000[..$`6esn`][..0xabc] Limit $`8esn`[..$``]"), - octest:ct_string("Optional Match `2esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}),(#usn7 :`6esn`:`7esn`)<-[`3esn`?:_usn3|:`4esn`]->(:`1esn`{_usn4:$_usn3[Null]})-[ *..0X7]->(`5esn` :_usn4:usn1) Where 0.0[999..] Merge `6esn`=(:@usn6:`7esn`{`2esn`:$`3esn` Contains 0X0123456789ABCDEF Contains 00,`5esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-(#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]}) Merge ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8}))"), - octest:ct_string("With Distinct 1000[123.654..9e12][1000.._usn3],count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null,$123456789 =~$#usn8 =~$#usn8 Order By 0xabc[12.e12..`1esn`] Ascending Skip 9e1 =~.0 =~$`1esn` Limit None(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00)[[@usn6 Starts With `7esn` Starts With Null]][{`1esn`:07[`6esn`..][`5esn`..],usn1:$usn2[False..`7esn`][`7esn`.._usn3]}] Union Match #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`) Where $`2esn`[..`2esn`] With Distinct 7 Contains 9e1 As `` Order By $`1esn` Starts With `8esn` Starts With $0 Descending,[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Desc,#usn8 Is Not Null Asc Skip 12.e12 Contains `5esn` Where 12e12[0.e0][9e1]"), - octest:ct_string("With ({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn`,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn` Skip 010 Starts With `7esn` Starts With 9e1 Limit 0Xa Starts With $`4esn` Starts With 1e1 Optional Match (((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))) With Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] As @usn5,12 Is Null Is Null As #usn7 Limit 0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Union All Unwind 123.654[`5esn`] As @usn5 Create usn2=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}),(`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Union All Unwind 0Xa[#usn7] As usn1 Remove `3esn`:``,({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[`2esn`? *0..010]->(usn2 {usn1:0 Is Null Is Null,`8esn`:12.0[..$7][..999]})<-[#usn8:`3esn`|:`4esn` *0..010]->(`3esn` :usn2:@usn6).`4esn`! Merge `3esn`=(:`7esn`) On Match Set _usn4:_usn3,[0xabc Contains $1000].`6esn` =(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})[Filter(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 0.12 Ends With $usn1 Ends With $@usn5)][`3esn`(Distinct 9e12[_usn3])],{@usn6:0.12[0.e0..][`4esn`..]}.`4esn` =0x0 Contains $`8esn` Contains `6esn`"), - octest:ct_string("Delete `4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}] Merge `3esn`=((#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)-[`6esn`:``|:_usn4 *..01]->(`5esn` :#usn7)) On Create Set `8esn` =Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`],`8esn`+=Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[usn2($#usn8 Is Null Is Null)..Extract(usn1 In 0x0[..`4esn`] Where 123456789 In $usn2 In `6esn`|@usn5[..True][..0X7])][(`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` )..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]] On Create Set `3esn`(Distinct).`` =$`1esn` Is Null Is Null,`3esn` =[$`4esn`[9e1..][0..]][Any(`4esn` In $`8esn` Starts With 1000 Where 0.e0[9e1..][0.0..])..Single(#usn8 In $`5esn` Is Null Is Null Where 1000 Ends With 1000 Ends With $`4esn`)],usn2+={usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null Unwind $`1esn` =~$`1esn` =~#usn7 As `4esn` Union Match #usn7=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),@usn5=(((_usn3 :_usn3{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[#usn8:`3esn`|:`4esn` *0..010]-(:usn1{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]}))) Unwind Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `4esn` Union All Remove Single(usn1 In $123456789 Contains usn2 Where 9e12[0.0..12.e12]).`4esn`!,(_usn4 )<-[#usn7? *00..]->(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`).``! With *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `3esn`,07[$999] As `` Where 9e0[$_usn3..0X7][7..$#usn8] Remove (:``{#usn8:$`2esn`[..`2esn`]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]}).`5esn`,(@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}).`4esn`"), - octest:ct_string("With Distinct 1000[123.654..9e12][1000.._usn3],count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null,$123456789 =~$#usn8 =~$#usn8 Order By $usn2 Is Not Null Is Not Null Ascending,Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Ascending Remove (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})<-[usn2?:usn1|`3esn`{`7esn`:0xabc Ends With $#usn7 Ends With #usn8,@usn5:$#usn8}]->(`3esn` :#usn8).usn2 Unwind Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]) As usn2 Union All Create `7esn`=(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}),(((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Unwind 00[.e1..] As `6esn` Union All Create ((`` :`1esn`)-[`1esn`:usn2|#usn8 *1000..]-(`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[`4esn`]->({`8esn`:0X7 In 's_str' In $`1esn`})),`4esn`=(((:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[ *010$123456789]-(`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})<-[? *..0x0]->(`` :usn1)))"), - octest:ct_string("Unwind 01234567 Ends With 12.0 Ends With 0X7 As _usn3 Union All Unwind 12.e12[$1000..] As `4esn`"), - octest:ct_string("Match usn2=(((`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[?:`5esn`|`1esn` *999..]->(:``)<-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))),`2esn`=(({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(:_usn4:usn1)) Where `4esn` =~123456789 Union All Create _usn4=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))),@usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})) Remove {@usn6:123456789 =~$123456789,`4esn`:usn1 Contains False Contains ``}.`3esn`! Optional Match `6esn`=(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}),@usn5=(`3esn` :`8esn`{usn1:`2esn`[$`3esn`..],`6esn`:$12[..``][..$7]})-[@usn5?:``|:_usn4]-(`8esn` :#usn8)<-[?:``|:_usn4]-({`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12}) Where $@usn6 Contains 07 Contains 0.e0 Union All With 123.654 Is Not Null Is Not Null As `3esn`,$usn1 In 1000 In $#usn7 As `8esn` Order By .12 Starts With $usn2 Asc,[usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..] Asc,{`8esn`:$123456789 Is Null Is Null,_usn3:$`4esn` Starts With 1e1}[(#usn7 :`2esn`:`3esn`)<-[`8esn`?]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})..All(_usn4 In usn1 Contains False Contains `` Where $`8esn`[$``..$7][$1000..$`7esn`])] Descending Skip $@usn5[$#usn8..][9e1..] Limit $123456789[0X7..12.e12] Where 0.12[0.e0..][`4esn`..];"), - octest:ct_string("Unwind 010 =~$usn2 =~1e1 As `1esn` Merge (({`2esn`:.e0 =~`5esn`})-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) Return *,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7,@usn6 Starts With `7esn` Starts With Null Skip Count ( * )[..usn1][..12.e12] Limit (`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0])"), - octest:ct_string("Delete Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]},0.12 Is Null Is Null Merge ((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) On Create Set usn1+=Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Merge `4esn`=({`8esn`:0X7 In 's_str' In $`1esn`}) On Match Set usn2+=.e1 Ends With _usn4 Ends With @usn5,@usn5+=_usn3 In .e1 In $12,Extract(`4esn` In `6esn`[1e1..] Where $`7esn` Ends With `1esn` Ends With True).`` =010 In @usn6 On Match Set usn1 =Count ( * ) =~All(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7) Union All With *,usn2 =~0x0,07 In `5esn` In 12e12 Skip `` Is Not Null Is Not Null Where usn1 Contains $`` Remove None(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True]).#usn7?,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]].@usn5?,[00[01234567][False]].`1esn`? Union Match ({`5esn`:123456789 Starts With `2esn` Starts With .0})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})<-[`` *12..0xabc]->(`3esn` :_usn4:usn1) Return $`4esn` Contains 0Xa,010 In `7esn` Order By 0x0 In `8esn` In 999 Descending Detach Delete 0X0123456789ABCDEF Contains 12.e12 Contains 999,0X0123456789ABCDEF In $1000 In $`3esn`,'s_str' Is Not Null Is Not Null"), - octest:ct_string("Merge (((`` :@usn5{`5esn`:0X7 =~.0 =~\"d_str\"})<-[? *..01{`1esn`:`4esn` In $12 In `8esn`}]->(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[`6esn`? *..7{`3esn`:123456789[$#usn7..]}]-(`3esn` {_usn3:@usn6 Contains _usn4 Contains $`4esn`}))) On Create Set _usn3 =$`5esn`[False],[07[$999],@usn6[$`7esn`]].@usn6 =010 Starts With `7esn` Starts With 9e1,`4esn` =usn2[..$`3esn`] On Create Set usn2 =_usn3 Is Not Null Is Not Null,`4esn` =.e1 Starts With $`8esn` Match `1esn`=(((usn1 :`4esn`:#usn8)-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}))),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`)<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)) Where #usn8 Contains .e0 Contains $`8esn` Unwind 07[1e1] As `1esn` Union All Return *,$`5esn` Ends With .e12,[`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As @usn6 Order By $`7esn` Ends With $@usn5 Descending,0xabc[12.e12..`1esn`] Ascending Skip All(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn`[...e1][..\"d_str\"]) Contains (`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[ *..0x0{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}]-(`5esn` {`8esn`:0.0[12...12]})-[@usn6?:#usn7|:_usn4 *00..]->(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Contains Any(usn1 In 00 Starts With _usn3 Where `8esn`[1000..$7][$`7esn`..`2esn`]) Limit 0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str' With {_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] As `1esn` Order By 0 Is Not Null Descending Skip 0x0 Where 123456789 Starts With #usn7 Starts With `6esn` Union Create (({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) Return `8esn`[_usn3..$#usn7],({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn` Skip `7esn` Starts With $usn2 Starts With .e0 Limit 00 Is Not Null Is Not Null;"), - octest:ct_string("Unwind .e0[7..$`3esn`] As usn2 Optional Match #usn7=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),`4esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}) Where .e0 =~`5esn` Detach Delete $usn1[0.12..]['s_str'..],usn2 Starts With `6esn` Starts With 12e12,True[Count(*)..][1e1..];"), - octest:ct_string("Merge (({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({_usn3:$`1esn` Starts With @usn6})) Optional Match usn2=(((#usn8 :@usn6:`7esn`)<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[_usn3? *00..]-(`1esn` :`1esn`))) Where $0[7..][Null..] Optional Match _usn4=(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Union Detach Delete None(`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`])[Extract(@usn5 In .12[#usn7][$`8esn`] Where #usn8 Contains .e0 Contains $`8esn`|.e0[..999][..0X7])..@usn5(Distinct `` Starts With 12,.12 Starts With 0Xa)],$`6esn` Ends With True Ends With True Match `3esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}),``=(((:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]})<-[? *..0x0]->(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})-[? *..0X7{`3esn`:`8esn`[$``]}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}))) Create `1esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}),`6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union All With Distinct *,9e1['s_str'..1e1] As #usn7,01234567 As `6esn` Skip `2esn` In Count(*) In 9e0 Limit usn2 Is Not Null Delete 's_str'[12..'s_str'],.e12[usn2][01],[@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Remove Single(`4esn` In $`8esn` Starts With 1000 Where `6esn`['s_str'..][010..]).@usn5,(usn2 :`3esn`:`1esn`)-[ *..7]-(usn1 :`4esn`:#usn8)-[?:`3esn`|:`4esn`]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`3esn`,(:`1esn`{_usn4:$_usn3[Null]})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]-(`2esn` :#usn7)-[:usn2|#usn8 *01234567..12]-(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})._usn3"), - octest:ct_string("Unwind 0X7[..12e12] As `6esn` Create ((:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[`2esn`:@usn5|`8esn`]->(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7}))"), - octest:ct_string("Create ``=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3})))"), - octest:ct_string("Remove Extract(@usn6 In @usn5 In $`6esn` Where 07[$`5esn`..]['s_str'..]|$123456789 Contains 01 Contains 0.12).#usn7 Remove Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``]).`4esn`!,count(Distinct $#usn8,False Is Not Null Is Not Null)._usn3?,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn` Starts With $`` Starts With $#usn7).`3esn`?"), - octest:ct_string("Return *,$`3esn` =~Null As usn2 Skip Filter(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null) Ends With [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1] Ends With _usn3(Distinct $123456789 Ends With $`6esn`) Limit `3esn`(Distinct _usn4 Ends With 01 Ends With $`1esn`) Starts With [Count(*) In 01 In .0,`` Starts With 12,$_usn4[$`8esn`..][07..]] Starts With Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12 In $0 In Count(*)) Optional Match ((_usn4 {`8esn`:9e1 In 01 In 999})),`1esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}) Where @usn5 Contains $`1esn` Contains 999 Union Optional Match _usn3=(($999)),``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)) Where 9e0[True..`1esn`]"), - octest:ct_string("Create ``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)),`2esn`=(((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) Create `4esn`=((:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})),((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) Return Distinct *,12 Is Null Is Null As #usn7,$1000 Is Not Null Is Not Null Skip (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)[Filter(@usn6 In @usn5 In $`6esn` Where $999[$1000])..][#usn7($`8esn`[``..][123.654..],12.e12 Contains `5esn`)..] Union All Return `7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As usn1 Order By #usn7 Contains 07 Descending,Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0]) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where Count(*)[True]) In Extract(`4esn` In 's_str'[12..'s_str'] Where 0xabc Ends With $#usn7 Ends With #usn8|.e1 Starts With 0.0 Starts With `6esn`) Asc,[$12 Is Null Is Null,999 Contains Count ( * ) Contains 123.654][Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`)..Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0)][[Null Contains _usn4,$`7esn` Is Null Is Null]..({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3})] Desc With *,$`1esn` Ends With _usn4 Ends With `3esn` As `7esn`,({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] As @usn6 Order By $999 Ends With $`3esn` Ends With `8esn` Asc Skip $0[..07] Where $@usn5 In 12e12 In Count(*)"), - octest:ct_string("Return $`5esn` Starts With _usn3 Starts With @usn5,9e0 Is Null Is Null,$999[..`1esn`] As `8esn` Order By usn2[$`1esn`...0] Descending,None(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00)[[@usn6 Starts With `7esn` Starts With Null]][{`1esn`:07[`6esn`..][`5esn`..],usn1:$usn2[False..`7esn`][`7esn`.._usn3]}] Ascending,01234567 Ends With 12.0 Ends With 0X7 Ascending Remove (:`7esn`)<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})._usn4!,(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[`2esn` *..7]-(_usn3 {usn1:_usn3 Contains @usn6 Contains 1.e1}).`1esn`?,($1000)<-[`4esn`:#usn8]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}).@usn5? Unwind All(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[..(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[`` *0xabc]->(`7esn` :#usn7{`6esn`:$`3esn` Contains 0X0123456789ABCDEF Contains 00,`1esn`:1000[123.654..9e12][1000.._usn3]})][..{`3esn`:$1000[.e0..]}] As `2esn`"), - octest:ct_string("Remove Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`).#usn7!,`7esn`(Distinct $usn2 =~$_usn4 =~`5esn`).#usn7?,(`1esn` :usn2:@usn6)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}).usn1? Union Create (({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8)) Merge usn1=((`3esn` :``)<-[`4esn`]->(`7esn` :#usn8)<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(_usn4 )) On Match Set (`3esn` :usn2:@usn6)<-[`7esn`?:@usn5|`8esn`]-(`1esn` :``).#usn7! =Count ( * )[`3esn`..][`2esn`..],[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where .e0 In $@usn5 In $0|0.12 Contains .e1].`3esn` =`1esn`[0e0..],_usn3+=(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})[[#usn7 In 01234567[$`3esn`..] Where usn1 Contains False Contains ``]..] On Match Set usn1 =$`6esn`[..0X0123456789ABCDEF],Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]).@usn6 =$123456789 Contains usn2,`` =#usn8[$_usn3..7][``..$`5esn`] Merge _usn4=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Union Merge (({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})<-[_usn3?:`2esn`|usn2{`3esn`:0[0.12..]}]->(:``{`1esn`:`6esn` =~$_usn3})) On Match Set #usn7 =`5esn` In $999,@usn6+=`2esn`[$`3esn`..],Any(`6esn` In 0X7 =~`` Where 12.e12['s_str']).`5esn` =usn1[..@usn5][...e0] On Match Set `3esn` =$_usn4[0.12..$`6esn`][00..$@usn6] Create ((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})) Unwind 0X0123456789ABCDEF Contains 12.e12 Contains 999 As _usn4"), - octest:ct_string("Return Distinct Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1),9e1[010..] As `6esn` Order By $1000 Contains $`3esn` Desc,(`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Ascending,[$`3esn` Starts With 01234567 Starts With $1000] Starts With `4esn` Starts With [$`2esn`[..7][..$usn1]] Desc Skip $`7esn` =~.e1 Create (_usn4 :@usn6:`7esn`)<-[#usn8?:_usn4|:@usn5 *..0x0]-(`6esn` :#usn7{`5esn`:#usn7 Is Not Null Is Not Null})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) Return Distinct *,None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`) Is Null As @usn6,123456789 =~_usn4 =~$0 As usn1 Union With Distinct `` Is Not Null Is Not Null As @usn6,`5esn`[`1esn`..`1esn`],[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4 Order By Count(*) Is Null Descending,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0] Ends With [`4esn` In 's_str'[12..'s_str'] Where 0.12 In 01 In $`3esn`|9e0 =~$`5esn`] Ascending,[0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] Asc Skip 1000 Contains 123456789 Contains 1e1 Limit $`6esn`[`3esn`..0e0] With Distinct .e0[`4esn`..`4esn`][0.0..$0] As `7esn` Order By None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) Descending,01234567[.12..7][1000..1.e1] Ascending Where #usn7[..$1000][..01] Delete [$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)});"), - octest:ct_string("Merge `8esn`=(((:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[:#usn7|:_usn4{``:$1000 Is Null Is Null}]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`}))) Match _usn3=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}),``=(({`5esn`:0e0 =~_usn4})) With Distinct *,$`7esn` Is Null Is Null,[0[usn2..],7[12e12..$_usn4][9e1..True],`1esn` Contains Count ( * )][Extract(@usn5 In .12[#usn7][$`8esn`] Where Count ( * ))..][Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])..] As #usn7 Where 0xabc Ends With $#usn7 Ends With #usn8 Union All Remove [`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where #usn7[..$1000][..01]|999 Contains `7esn`]._usn3!,[$usn1[1e1.._usn3][$@usn6..$#usn7],00[7..$123456789],$`5esn` In `2esn` In $12].`4esn`?"), - octest:ct_string("Merge _usn4=(:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]}) On Match Set All(`6esn` In 0X7 =~`` Where `7esn`[...e1][..\"d_str\"]).`5esn` =None(usn2 In 1000 Contains 0.e0 Where $usn1[..$`6esn`][..Null]) Starts With Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]|$`1esn` Starts With $999) On Match Set ``:`2esn`:`3esn`,@usn6 =None(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1])[`8esn`(00[``..][$`4esn`..],123.654[@usn5])],usn2 =$`3esn`[`2esn`...e0] Return usn2 =~0x0 As `8esn`,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn`,_usn3[`3esn`][False] Skip {@usn5:$@usn6[..$usn1],`1esn`:usn2[`3esn`][_usn3]}[..Any(`4esn` In 's_str'[12..'s_str'] Where Null Contains _usn4)][..{`7esn`:True[..'s_str'][..01]}] Limit [$12 Is Null Is Null,999 Contains Count ( * ) Contains 123.654][Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`)..Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0)][[Null Contains _usn4,$`7esn` Is Null Is Null]..({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3})] Create ((:`6esn`:`7esn`{_usn4:12[0X7..@usn6],_usn3:123456789 In $usn2 In `6esn`})<-[#usn7?:_usn3|:`4esn` *00..]->(:`6esn`:`7esn`{_usn3:\"d_str\" Is Null Is Null})<-[@usn6]->(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})),((#usn7 {#usn7:01234567[.12..7][1000..1.e1],``:@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]}))"), - octest:ct_string("Unwind usn1 Starts With $#usn7 Starts With `5esn` As `3esn` Detach Delete 0x0[0X7..][usn1..] Union All Optional Match ``=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))) Union Create ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})),((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) Detach Delete 1000 In 0X0123456789ABCDEF In 01,`3esn`()[Filter(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`)..{@usn6:`6esn`[_usn4..][$`6esn`..]}],Extract(usn1 In 0x0[..`4esn`] Where \"d_str\" Contains `3esn` Contains 00|Count(*) Ends With 010)[All(usn2 In 1000 Contains 0.e0 Where #usn8 Ends With `4esn` Ends With $`4esn`)..@usn6(Distinct _usn3 In .e1 In $12,123.654 Starts With usn1 Starts With @usn5)][All(usn2 In 1000 Contains 0.e0 Where 0.0[1000..][.e1..])..{`7esn`:`2esn`[$`1esn`..][$_usn3..]}] Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7}))"), - octest:ct_string("Unwind [`4esn` In $`8esn` Starts With 1000 Where `5esn` In 12][..Single(`6esn` In 0X7 =~`` Where .0 Starts With `2esn` Starts With `6esn`)][..[@usn5 In $#usn8 Is Null Is Null]] As `1esn` Optional Match ((:_usn3{usn2:$`5esn`[$123456789][`1esn`]})),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})) Where 01234567[Null..0.e0][Count(*)..$#usn8] Union With Distinct usn2 Is Not Null Is Not Null As `2esn`,False[`6esn`][07],0Xa[0xabc..] As usn2 Order By 9e1[0.e0..][#usn8..] Asc Skip #usn7 Is Not Null Is Not Null Detach Delete 1000[0.0][Null],$_usn4 Contains $_usn4 Contains 1.e1,Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Merge #usn8=((`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[:@usn6 *0X0123456789ABCDEF..{_usn3:`7esn` Ends With $usn2 Ends With 999}]-(`2esn` :_usn3)) Union All Merge ((#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})<-[ *00..{`3esn`:12 Ends With 01234567,`4esn`:00[``..][$`4esn`..]}]->(`2esn` :``)) On Match Set #usn7+=[#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`][Any(`4esn` In $`8esn` Starts With 1000 Where 123.654 Starts With usn1 Starts With @usn5)..],_usn3 =None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} On Match Set `1esn`+=.e0[..0X0123456789ABCDEF][...e12] Delete _usn3 Ends With #usn7,`3esn` Ends With 010 Unwind 12.e12[...0][..0x0] As usn2"), - octest:ct_string("With Distinct *,@usn6[`5esn`..$`3esn`] As ``,`7esn` In 's_str' In 0.12 As _usn3 Skip True Is Not Null Is Not Null Union All Merge ((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Merge `3esn`=((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) On Match Set `6esn` =$@usn5[Count ( * )] Union All Unwind 1.e1 Contains @usn6 As _usn3;"), - octest:ct_string("Remove usn2(Distinct).@usn6"), - octest:ct_string("Create @usn5=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) Remove [_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4].@usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`!,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`)._usn4 With Distinct 9e12 Ends With 0X0123456789ABCDEF Ends With #usn7 As `8esn`,1000[123.654..9e12][1000.._usn3] As `6esn`,Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0} As `4esn` Where 7[..12e12][..$`6esn`] Union All Remove Single(#usn8 In $`5esn` Is Null Is Null Where .12[`1esn`..][$`3esn`..]).``!,Extract(usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01).#usn8?,Single(#usn8 In $`5esn` Is Null Is Null Where `3esn`[..7][..12e12]).`5esn`?"), - octest:ct_string("Remove All(`2esn` In `7esn` Starts With $`` Starts With $#usn7).#usn8!,[_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0].@usn6,(`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})-[?{`5esn`:0Xa In .e1 In Count(*)}]-({`1esn`:@usn6}).#usn7! Return *,(@usn6 {_usn4:$_usn4[#usn8..]})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)[Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null)..] Skip $`7esn` Ends With 07 Ends With 07 Union With [usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]] Starts With (`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` ) Starts With (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8) As `1esn`,`5esn` In $999 As `6esn`,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Order By #usn7 Starts With 0 Starts With 12 Asc Skip `` Starts With @usn5 Limit All(@usn5 In .12[#usn7][$`8esn`] Where $`5esn` Contains $@usn6) Is Null Is Null Where 12[..True][..$`4esn`]"), - octest:ct_string("Return Distinct *,Extract(`4esn` In `6esn`['s_str'..][010..] Where 07 In $7 In 12|$#usn8)[{`6esn`:12[usn1][True],`3esn`:$@usn6[..$usn1]}..][{`8esn`:00}..] As @usn5,$`2esn`[``..] As @usn6 Skip [usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]] Starts With (`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` ) Starts With (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8) Optional Match #usn8=((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(#usn7 :`3esn`:`1esn`)<-[?{`4esn`:12e12[$`5esn`][07]}]-(:`1esn`{_usn4:$_usn3[Null]})) Where 12 =~usn1 =~.e12"), - octest:ct_string("Unwind $`3esn` In $12 In 's_str' As `` Unwind .e12[usn2][01] As _usn3 Union All Unwind 1.e1[Null][12.e12] As `7esn` Unwind Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) As `4esn` Create `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Union All Create (`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})"), - octest:ct_string("Unwind 0Xa[0xabc..] As @usn5 Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)],$`4esn` Ends With 0Xa,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null With Distinct *,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn`,@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn` Skip {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]} Where .12 =~.12 =~1e1 Union With 12e12[.12..] As #usn8,`4esn` Is Null,Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[{@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null}..] Skip $0[..07] Limit 999 Contains `7esn` Where 12e12[0.e0][9e1] Detach Delete `1esn`(Distinct 0.0[999..],9e0 Ends With $`7esn`) Ends With (`7esn` {`8esn`:Count ( * ) =~Count(*)})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}) Ends With (#usn7 :`2esn`:`3esn`)<-[`2esn`?*..]->(:#usn8{`5esn`:0 Contains 12e12}),$`8esn` Starts With 1000,({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null Union Optional Match usn1=(((:_usn4:usn1)-[@usn5?:@usn6*..]-(`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:@usn6]-(_usn3 :`4esn`:#usn8{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]}))),(((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))) Where $usn1 In 1000 In $#usn7 Optional Match (@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0}) Where `7esn` Contains .0 Contains 9e12 Match `4esn`=(((`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[?{`4esn`:0.e0 Ends With 12 Ends With $7,@usn6:$``[_usn4..][`7esn`..]}]->(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]}))),((:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8}));"), - octest:ct_string("Delete `6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),$@usn6[..$#usn7][..12.e12],.e0[`4esn`..`4esn`][0.0..$0] Delete 12.e12 In $1000,{_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]},$999 Ends With $`3esn` Ends With `8esn` Union Return Distinct *,Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null As `6esn` Remove Any(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0).usn1?,({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}).`5esn`! With *,{`7esn`:Count(*) In 01 In .0}[..{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}][..#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..])] As `5esn`,#usn7 Ends With `4esn` Ends With @usn5 As `` Where $`1esn` =~$`1esn` =~#usn7 Union All Return .e12[.12..][_usn4..] As _usn4 Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Delete 07 Ends With 07"), - octest:ct_string("Merge ((usn1 :`6esn`:`7esn`)) Merge _usn4=(((:`3esn`:`1esn`{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999})<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}))) Unwind 999 Contains `7esn` As `7esn` Union All Optional Match ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[ *010{@usn5:Null Is Null Is Null}]-({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]})),_usn4=(((:`3esn`:`1esn`{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999})<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}))) Where 00 Union Return $`4esn` Contains 0Xa,010 In `7esn` Order By 0x0 In `8esn` In 999 Descending"), - octest:ct_string("Match ``=((@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`)) Where 's_str'[12..'s_str'] Unwind Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) As `4esn` Union Match `8esn`=(`4esn` {`3esn`:0X7[..12e12],`8esn`:False In 123456789 In $0})-[`4esn`?:`1esn`]->(:`2esn`:`3esn`{usn2:$`5esn` In False})<-[#usn7? *00..]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]}),`8esn`=(({_usn3:$0 Ends With $#usn7 Ends With .12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[?:``|:_usn4 *..0X7]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})) Where $1000 Contains $`3esn` Create ((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(@usn5 {_usn4:010[$@usn6],`6esn`:123456789[1e1..0.0]})<-[`6esn`?:`2esn`|usn2 *01234567..12]->(:`7esn`{#usn7:True =~@usn5 =~$`1esn`})),`6esn`=({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Remove Filter(usn2 In 1000 Contains 0.e0 Where 12e12[$`5esn`][07])._usn4? Union Delete 0e0[`2esn`..010],@usn6[`5esn`..$`3esn`],Count ( * )[..usn1][..12.e12] Remove [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1].usn1,None(@usn5 In .12[#usn7][$`8esn`] Where 123456789 Is Null).`1esn`?;"), - octest:ct_string("Merge @usn6=((:``{`5esn`:.e1 In $@usn6 In 999})) On Match Set None(`4esn` In 's_str'[12..'s_str'] Where @usn5 In 0X0123456789ABCDEF).`2esn`! =$`1esn` Is Null,`5esn`()._usn4! =[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00],`8esn` =`7esn` Contains .0 Contains 9e12 On Create Set _usn3+=True In All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12),#usn7+=`` Is Not Null,`5esn` =0.0[Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|_usn3 Ends With 12e12 Ends With .e0)][None(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5)..{@usn6:.12 Starts With 0Xa}] Union All Unwind 1.e1[Null][12.e12] As `7esn` Unwind Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) As `4esn` Create `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Union All With Distinct *,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7,@usn6 Starts With `7esn` Starts With Null Order By Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]|$0 =~$usn1 =~9e1)[{``:\"d_str\",`1esn`:$1000 =~$`7esn`}] Descending"), - octest:ct_string("Unwind Null Is Null Is Null As `4esn` Detach Delete 0X7[..12e12],$`5esn` Is Not Null,00 Ends With .12 Ends With `4esn` Union All Match ((({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(usn1 :_usn3{@usn6:True[..'s_str'][..01]})<-[`2esn`?]-(usn2 :`3esn`:`1esn`))) Where 12.0[..$7][..999] Union All Remove {#usn7:False[`2esn`..#usn8]}.#usn7?,@usn6(Distinct 0.12 In 01 In $`3esn`,'s_str' Starts With 1000 Starts With #usn8).#usn8,(:`1esn`{`8esn`:Count ( * ) =~Count(*)})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(`1esn` {_usn4:12.e12 Ends With 01 Ends With .e1})._usn4"), - octest:ct_string("Detach Delete usn1[1e1][$_usn4],999[$usn2..] Delete 's_str' In \"d_str\" In 123456789,9e12[..$``][..`6esn`],9e0[``][123.654] With @usn5 Starts With 12e12 Starts With @usn5,$1000 =~$`7esn`,\"d_str\" Starts With $usn1 As `7esn` Order By $0[..`8esn`] Desc,Count(*) Starts With 1e1 Starts With $123456789 Ascending,12e12[$`5esn`][07] Desc Limit Single(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8)[{_usn3:$0 Ends With $#usn7 Ends With .12}][[12.0[0Xa][00],.0[01][$12]]] Union Remove ({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`).#usn7!"), - octest:ct_string("Delete {usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7} Contains {`5esn`:$7[.12]} Contains Extract(usn1 In 00 Starts With _usn3 Where 07 Contains #usn8 Contains $_usn3|`2esn`[$`1esn`..][$_usn3..]) Union Return Distinct #usn8 In $0 As `1esn`,'s_str' In \"d_str\" In 123456789,[0Xa[$``..][01234567..]] Contains `3esn`(Distinct _usn3 In .e1 In $12) Contains (`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']}) As @usn6 Order By Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Ascending,0xabc[$@usn5] Asc,usn1[..$_usn4][..``] Ascending Union All Merge `1esn`=((({`6esn`:$`8esn`[..$``]})-[`2esn`]-(@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12}))) On Match Set #usn7 =(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`) Is Not Null Is Not Null,`1esn` =`` =~12 =~$#usn7,[123456789[$#usn7..],_usn4[0xabc..],$`3esn` Starts With 01234567 Starts With $1000].`1esn`! =0X0123456789ABCDEF Starts With `2esn` Starts With $999 Remove Any(#usn7 In 01234567[$`3esn`..] Where 0Xa[0xabc..$#usn8])._usn4! Optional Match (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5)))"), - octest:ct_string("Remove [$`5esn` Is Null].`5esn`!,`3esn`:`6esn`:`7esn` Union All Merge #usn8=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) On Match Set @usn5 =1e1[..#usn8][..'s_str'],`` =`4esn` Is Null,usn2+='s_str'[.12..$#usn7][$999..`2esn`] On Match Set `4esn` =010 In `7esn`,usn2+=0.e0[@usn6][0x0] Unwind 0e0[12][$_usn4] As usn2 Create (`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0}) Union All Return .e12[.12..][_usn4..] As _usn4 Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Delete 07 Ends With 07;"), - octest:ct_string("With Distinct *,Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null As `6esn` Where $@usn6 Contains 0 Contains $`2esn` Remove ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`5esn`? *010]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null}).`7esn`! Delete 0X0123456789ABCDEF Contains $usn1 Union Delete {#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] Return Distinct *,9e12 Ends With 0X0123456789ABCDEF Ends With #usn7 As `5esn`,$12[`3esn`..0e0][`2esn`..$7] As #usn8 Order By $`2esn` Starts With .e0 Starts With 12.0 Descending,{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,999 Is Null Is Null Desc Limit $7 Ends With `5esn`;"), - octest:ct_string("Remove [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]|9e0 Starts With `6esn`].#usn8? Union All Unwind @usn5 =~.0 =~$`1esn` As `` Merge usn2=(({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)-[@usn5{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8}]->(usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})) On Create Set _usn4+=(`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})[[`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5]..{usn2:$`4esn`[12.e12..][0.0..]}],`6esn`+=$`2esn` Contains usn1 Contains `2esn`"), - octest:ct_string("With Distinct `` Is Not Null Is Not Null As @usn6,`5esn`[`1esn`..`1esn`],[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4 Order By Count(*) Is Null Descending,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0] Ends With [`4esn` In 's_str'[12..'s_str'] Where 0.12 In 01 In $`3esn`|9e0 =~$`5esn`] Ascending,[0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] Asc Skip 1000 Contains 123456789 Contains 1e1 Limit $`6esn`[`3esn`..0e0] With Distinct .e0[`4esn`..`4esn`][0.0..$0] As `7esn` Order By None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) Descending,01234567[.12..7][1000..1.e1] Ascending Where #usn7[..$1000][..01] Delete [$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union Delete $`4esn`[12.0..`5esn`],$`6esn` Ends With True Ends With True"), - octest:ct_string("Merge @usn5=((#usn7 {#usn7:01234567[.12..7][1000..1.e1],``:@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})) On Create Set @usn5(Distinct 12e12[_usn3..][$@usn5..],7 Contains 9e1).`6esn` =$@usn5 In 12e12 In Count(*) Match `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Remove ({@usn6:0X0123456789ABCDEF[..usn1]})<-[`4esn`:#usn8]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(#usn8 :`7esn`).`6esn`? Union Detach Delete 1000 In 0X0123456789ABCDEF In 01,@usn6(Distinct Null[0e0][12])[..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]]][..`8esn`(010 =~`6esn`)],1e1 Starts With #usn8 Starts With 1.e1 Detach Delete Null Starts With $`7esn` Starts With `2esn` Delete $7 Ends With 12.0 Ends With 0xabc,usn1 =~Null =~`5esn` Union Optional Match ((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null})-[#usn7:`1esn` *07..]->(#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})),_usn4=(`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) Where Count(*)[12.e12..] Optional Match `6esn`=((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})),((@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})) Where 's_str' Ends With .e0"), - octest:ct_string("Unwind 12.e12[$1000..] As `4esn` Union Match (usn2 :#usn8{`3esn`:123.654[@usn5]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`}) Where 0.12[Null..] Optional Match #usn8=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),((#usn7 :_usn3)<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]})-[#usn7:_usn3|:`4esn`]-(:#usn7{usn1:$123456789[..0.12][..#usn7]})) Merge ((_usn4 {`8esn`:9e1 In 01 In 999})) Union All With 12e12[Null] As usn2,$`4esn`[0][0e0] As _usn3,12e12 Starts With $123456789 Starts With 12.0 Order By Count(*)[.e0.._usn4] Asc Skip (`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Where $`7esn` Ends With `1esn` Ends With True Merge `4esn`=({`8esn`:0X7 In 's_str' In $`1esn`})"), - octest:ct_string("Delete 999 Contains `7esn`;"), - octest:ct_string("Merge ((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Merge `3esn`=((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) On Match Set `6esn` =$@usn5[Count ( * )] Union All Create ((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1}))"), - octest:ct_string("Return Distinct Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) As _usn4 Merge `3esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) On Create Set _usn3+=True In All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12),#usn7+=`` Is Not Null,`5esn` =0.0[Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|_usn3 Ends With 12e12 Ends With .e0)][None(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5)..{@usn6:.12 Starts With 0Xa}] Optional Match (@usn5 {usn2:$999[12.0..]})<-[usn1]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[_usn3?:``|:_usn4]->(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}) Union Create _usn3=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))) Merge usn1=((`3esn` :``)<-[`4esn`]->(`7esn` :#usn8)<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(_usn4 )) On Match Set (`3esn` :usn2:@usn6)<-[`7esn`?:@usn5|`8esn`]-(`1esn` :``).#usn7! =Count ( * )[`3esn`..][`2esn`..],[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where .e0 In $@usn5 In $0|0.12 Contains .e1].`3esn` =`1esn`[0e0..],_usn3+=(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})[[#usn7 In 01234567[$`3esn`..] Where usn1 Contains False Contains ``]..] On Match Set usn1 =$`6esn`[..0X0123456789ABCDEF],Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]).@usn6 =$123456789 Contains usn2,`` =#usn8[$_usn3..7][``..$`5esn`] Union Create `4esn`=(((`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[?{`4esn`:0.e0 Ends With 12 Ends With $7,@usn6:$``[_usn4..][`7esn`..]}]->(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]}))),((:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Unwind Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As usn2 Delete `2esn` Starts With $_usn3 Starts With `2esn`,9e1 =~.0 =~$`1esn`"), - octest:ct_string("Create ((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`1esn`{`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654}]->(`7esn` :`7esn`)),#usn8=((`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[:@usn6 *0X0123456789ABCDEF..{_usn3:`7esn` Ends With $usn2 Ends With 999}]-(`2esn` :_usn3)) Unwind 0X0123456789ABCDEF[..usn1] As _usn3"), - octest:ct_string("Optional Match ``=((({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[usn2?]-(`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))),(:usn2:@usn6)-[ *07..]->(`5esn` :`2esn`:`3esn`{_usn3:$`2esn`[$123456789..$`1esn`][0Xa..$``],`5esn`:12.e12[@usn5..123.654]}) Where 0.12 In $7 In 0 Remove `3esn`:`7esn`,(:_usn4:usn1)-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]-(`1esn` :`1esn`).``?,usn2:#usn8;"), - octest:ct_string("Merge (_usn3 :@usn5)<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}) On Create Set `5esn` =Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])[All(#usn7 In 01234567[$`3esn`..] Where Count(*)[.e0.._usn4])..][None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..])..],@usn6 =Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4) Is Null On Create Set Extract(#usn7 In 01234567[$`3esn`..] Where 0X7 In $999 In $``|9e1[...e0]).`7esn`! =0X7 In 's_str' In $`1esn`,{`3esn`:#usn7 Ends With `4esn` Ends With @usn5}.#usn8 =[usn1[..$_usn4][..``],0X7[.e12..01234567]] In `3esn`(@usn5[..True][..0X7],$`3esn` =~$`7esn` =~False) Detach Delete $`6esn` =~Null =~9e12 Delete Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null;"), - octest:ct_string("Detach Delete $usn2[False..`7esn`][`7esn`.._usn3],$12[..7][..07],Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null With Distinct $`1esn` Starts With $999 As #usn8,False In $`7esn` In .0 Order By .e12[usn2][01] Desc,0 Ends With $7 Ends With _usn3 Ascending,Extract(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|Null Starts With $`7esn` Starts With `2esn`) =~{`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0} Descending Skip [1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Limit \"d_str\" Where Count(*) In 01 In .0 Union Merge _usn4=(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) On Create Set _usn3 =(usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Is Null Is Null,`1esn` =7 Contains $`5esn` Contains $usn1,usn2 =\"d_str\" =~`3esn` =~0x0 On Match Set @usn6+=(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}] Match `8esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]}))"), - octest:ct_string("Unwind usn1 Contains $`` As `7esn` Unwind $`6esn` =~1e1 As _usn4"), - octest:ct_string("Match (@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0}) Optional Match ((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`)<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)) Where 0.12 Contains $`2esn` Contains $_usn4 Union All Detach Delete $12[..``][..$7] Delete 01234567[$`3esn`..],(:`5esn`{@usn6:0Xa Is Not Null Is Not Null,usn2:@usn6 =~01})<-[`2esn`?*..]->(:#usn8{`5esn`:0 Contains 12e12})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}) Is Null Union With *,#usn8 Starts With 0x0 Starts With $@usn5,`1esn` In 07 In 0e0 As `1esn` Skip $7[$`8esn`..7][$1000..$`5esn`] Where `7esn` Starts With $`` Starts With $#usn7"), - octest:ct_string("Unwind 9e0[False] As #usn8 With Distinct *,0.12 In $`4esn` In `6esn`,`4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}] As `2esn` Skip 0X7[..12e12] Unwind `2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As _usn3 Union All With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null,0xabc[$@usn5] As `7esn`,.e0[usn2..] As _usn3 Skip 0x0 In `8esn` In 999 Where 07[0..`4esn`] Merge ((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Detach Delete .e0[`4esn`..`4esn`][0.0..$0] Union Unwind $`7esn` Ends With 07 Ends With 07 As `3esn` Create ((:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})),({`5esn`:123456789 Starts With `2esn` Starts With .0})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})<-[`` *12..0xabc]->(`3esn` :_usn4:usn1) Match _usn3=((@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]}))"), - octest:ct_string("Remove @usn6(Distinct $123456789[..0x0][..`4esn`],07[$999]).@usn6 Create ((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)),_usn3=({usn1:$1000 Contains $`3esn`})<-[?:`1esn`{`1esn`:123456789[1000]}]->(:usn1{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})-[@usn6?:#usn7|:_usn4 *00..]->(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Detach Delete Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1)[00..],({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) In None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 9e0[$_usn3..0X7][7..$#usn8]) In _usn3(Distinct 010[@usn5..]),Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)];"), - octest:ct_string("Merge `1esn`=(((:_usn3{@usn6:$`7esn` Is Null Is Null})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)<-[`3esn`? *999..{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`}]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) On Match Set _usn3+=01 In 01 In 12,#usn7 =$@usn5,`1esn`:`5esn` Detach Delete $@usn6[_usn3..0.e0] With [#usn8 In $`5esn` Is Null Is Null][Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where #usn7[..$1000][..01])..][[@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]]..],(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[usn1?:`8esn`|:usn1]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Is Null Is Null As #usn7,1e1[..#usn8][..'s_str'] As #usn8 Order By `3esn`[$123456789][$#usn7] Ascending,{@usn6:12.0[``],_usn4:$`3esn` Contains 0X0123456789ABCDEF Contains 00} Ends With Single(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Ends With Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999|12.0[``]) Asc Skip (:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0}) Starts With Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) Starts With [12.0 In 1000 In _usn4] Limit 00[01234567][False] Union Detach Delete 01 In _usn3 In 12,`1esn`[`3esn`..][$@usn6..]"), - octest:ct_string("Detach Delete $#usn7[...e12][..$7],({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]}) =~`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0) Union All Merge usn2=(({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)-[@usn5{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8}]->(usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})) On Create Set Any(@usn6 In @usn5 In $`6esn` Where $`5esn` Contains $@usn6).`6esn`? =010[$`8esn`..][0..],`5esn`+=`5esn` In 12,`2esn` =Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])[..[True =~@usn5 =~$`1esn`]][..Any(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`)] On Create Set (#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})<-[@usn5 *0X0123456789ABCDEF..]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(:usn1{`6esn`:1000 Contains 0.e0,`7esn`:$@usn6[..$#usn7][..12.e12]}).`7esn`? =$usn2 =~$_usn4 =~`5esn`,#usn8+=Null[1.e1..],`4esn` =(`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)[Filter(@usn6 In @usn5 In $`6esn` Where $999[$1000])..][#usn7($`8esn`[``..][123.654..],12.e12 Contains `5esn`)..] Create ((`3esn` {`8esn`:$``[_usn4..][`7esn`..]})) Union Unwind `1esn`(Distinct Count(*)[..`3esn`]) Starts With $0 As `3esn`"), - octest:ct_string("Return Distinct *,\"d_str\"[Count ( * )] As `7esn`,0x0[123456789] As @usn6 Skip `1esn`[@usn6..$123456789] Remove Any(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`]).`6esn`?,[$0 Ends With $#usn7 Ends With .12,$7,@usn5 Ends With $`3esn` Ends With 12e12].`1esn`? Union Optional Match _usn3=(#usn8 {usn2:7 Contains 9e1})-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}) Where \"d_str\""), - octest:ct_string("Match @usn6=((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]->(:_usn3{@usn6:$`7esn` Is Null Is Null})),((({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999})<-[@usn6?:`6esn`*..]-(_usn3 :usn2:@usn6)-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6))) Where #usn7 Ends With 9e1 Optional Match #usn7=(:#usn7{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[:@usn5|`8esn`*..]-(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) Match (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Where Count ( * ) =~Count(*)"), - octest:ct_string("Detach Delete Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1)[00..],({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) In None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 9e0[$_usn3..0X7][7..$#usn8]) In _usn3(Distinct 010[@usn5..]),Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)]"), - octest:ct_string("Create @usn5=(({`8esn`:$usn1[0.12..]['s_str'..],`8esn`:`1esn`[0e0..]})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})),_usn4=(@usn6 {#usn7:False[`2esn`..#usn8]})<-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]-(`4esn` {@usn6:True[..'s_str'][..01]}) Match ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})) Where $`1esn` Starts With $999 Union All Merge #usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) Delete ``[$`3esn`][$`2esn`],12 Ends With 01 Ends With 1e1,.12 Starts With 0Xa Union Create (_usn3 :_usn4:usn1),((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(@usn5 {_usn4:010[$@usn6],`6esn`:123456789[1e1..0.0]})<-[`6esn`?:`2esn`|usn2 *01234567..12]->(:`7esn`{#usn7:True =~@usn5 =~$`1esn`})) With @usn6 =~01,12.0 In 1000 In _usn4 As _usn3,0 =~12.e12 =~$`` As #usn7 Order By [usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]] In [0xabc[12.e12..`1esn`]] In {@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} Asc,[0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]) Descending,Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1) Asc Skip 07 In $7 In 12 Where Count ( * ) Create ((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 ))"), - octest:ct_string("Merge @usn5=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) On Match Set [@usn5 In 0X7 =~.0 =~\"d_str\" Where 12.e12 Ends With 01 Ends With .e1|00 Starts With _usn3].`2esn`? =None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`)[`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)..] On Match Set _usn4:#usn8 Merge `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) On Create Set `4esn` =010 In `7esn`,usn2+=0.e0[@usn6][0x0]"), - octest:ct_string("Merge `2esn`=((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})) On Match Set `4esn`+=999 In 9e1 In 7,{`6esn`:$_usn4[$`8esn`..][07..]}.@usn6! =`3esn`[$`1esn`..],Filter(usn2 In 1000 Contains 0.e0 Where 010 =~$usn2 =~1e1)._usn3! =$0 =~$usn1 =~9e1 With Any(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null)[Extract(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1)..] As `3esn` Order By 010 Contains Count(*) Desc,1e1 In $999 In $usn2 Ascending,@usn6(Distinct 12.e12[0e0..7],usn1[Count ( * )..$usn1]) Is Null Is Null Descending Skip True Is Not Null Is Not Null Limit None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} Unwind 12 =~usn1 =~.e12 As `7esn` Union All Merge _usn3=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)) Union All Unwind \"d_str\" =~`3esn` =~0Xa As `1esn`"), - octest:ct_string("With Distinct 0xabc[$@usn5] As usn2,(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] Order By $12[01..][1.e1..] Ascending,0x0 =~_usn4 Desc Detach Delete $@usn5 In 12e12 In Count(*),`` =~12 =~$#usn7,Null Contains _usn4 Merge `5esn`=(({_usn3:$0 Ends With $#usn7 Ends With .12})) Union Unwind usn1 Contains False Contains `` As #usn8 Return Distinct _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0),$`7esn` In 0.e0 In `4esn` As `2esn` Limit Any(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) Is Not Null Is Not Null Remove Extract(`4esn` In `6esn`['s_str'..][010..] Where 12 =~usn1 =~.e12|$`2esn`[..`2esn`]).`8esn`!"), - octest:ct_string("Create (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0),((:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})) Unwind [@usn6 In @usn5 In $`6esn` Where $999[$1000]|$7[.12]] In {`1esn`:$@usn6 Contains 07 Contains 0.e0} In (`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) As `2esn` Union All Unwind $`5esn`[False] As `6esn` Return *,$0[7..][Null..] As `7esn`,`3esn`()[Filter(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`)..{@usn6:`6esn`[_usn4..][$`6esn`..]}] Order By (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Asc,.e1[..$``][..0X0123456789ABCDEF] Ascending Skip 01[..$``][..$`7esn`] Merge `3esn`=(({`5esn`:0.12 Contains .e1})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0})-[:@usn5|`8esn` *123456789..999{usn1:9e12 Is Not Null Is Not Null}]-(#usn7 :`5esn`)) On Match Set @usn5+=`` In `6esn`,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`` Is Null Is Null).`` =12.e12 Is Not Null On Match Set `` =None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..],#usn7($`8esn`[$``..$7][$1000..$`7esn`],`2esn` In 7 In usn2).`6esn`? =$_usn4['s_str'..],`4esn`+=$`7esn` Ends With $usn2 Union Detach Delete $999[..`1esn`],$usn2[$123456789..123.654][$`5esn`..'s_str'] Return 00 Ends With $_usn4 Ends With $`2esn` As `5esn` Order By $`8esn` In \"d_str\" In 9e12 Desc,`3esn`(.e0 =~`5esn`)[Single(`6esn` In 0X7 =~`` Where $`3esn` =~Null)][[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $_usn3[$`4esn`..Null]|False[`2esn`..#usn8]]] Asc,1e1 In 9e0 In 9e0 Ascending"), - octest:ct_string("With *,({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]}) =~`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0),\"d_str\" =~`6esn` =~0Xa As `4esn` Detach Delete 0.0[.e12][7],usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null,#usn8[$_usn3..7][``..$`5esn`];"), - octest:ct_string("Unwind [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] As `2esn` Merge `8esn`=(:`8esn`) On Match Set [999[``..][Null..],`5esn` =~0Xa].@usn6? =[`6esn` In 0X7 =~`` Where `` Contains 12 Contains True|@usn5[..True][..0X7]][(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})..{`4esn`:9e0 Starts With `6esn`}][Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `5esn`[`1esn`..`1esn`])..(`3esn` :usn2:@usn6)<-[`7esn`?:@usn5|`8esn`]-(`1esn` :``)],#usn8+={`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}],`3esn` =7[..0X7][..'s_str'] Merge (#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[#usn7{#usn7:False[`2esn`..#usn8]}]->(`5esn` :`2esn`:`3esn`{_usn3:$`2esn`[$123456789..$`1esn`][0Xa..$``],`5esn`:12.e12[@usn5..123.654]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}) On Match Set {`6esn`:$_usn4[$`8esn`..][07..]}.@usn6! =`3esn`[$`1esn`..],Any(usn1 In 0x0[..`4esn`] Where \"d_str\" Contains `3esn` Contains 00)._usn4! =`3esn`[..7][..12e12] On Match Set @usn5 =$usn2 =~$_usn4 =~`5esn`,[`4esn` In `6esn`[1e1..] Where _usn3 Is Null|$`8esn`[..$usn1][..'s_str']].usn1? =$usn2[..12.0],{_usn4:$_usn4[`3esn`][0],`6esn`:False[`2esn`..#usn8]}.`8esn`? =Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..]"), - octest:ct_string("Return $`1esn` Starts With `8esn` Starts With $0,`` Is Not Null Is Not Null As @usn6,$123456789[$`2esn`][True] As `7esn` Skip {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7) Limit False Ends With $`8esn` Return *,{@usn6:0Xa Is Null Is Null,`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]} =~_usn4(usn2[`3esn`][_usn3]) As `7esn`,0[usn2..] Order By Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) Is Null Descending,#usn8 In $0 Descending,_usn3 Ends With 0x0 Ends With 01234567 Ascending Skip 1e1[..False]"), - octest:ct_string("Create @usn5=((:#usn8$usn1)-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})),((#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})) Unwind .e12 =~0.0 =~9e0 As `8esn` Delete \"d_str\" =~12.e12 =~07,Null[0.e0..0x0] Union Return 010 In @usn6 Order By False Starts With Count ( * ) Ascending,Count ( * )[..1e1] Asc Skip Extract(usn2 In 1000 Contains 0.e0 Where `7esn` Contains .0 Contains 9e12|_usn3 Is Null)[Single(_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01])] Union Unwind usn2 Starts With @usn6 As #usn7 With $`2esn`[..`2esn`] As `5esn` Order By _usn3 =~00 Asc Where #usn7 Ends With `4esn` Ends With @usn5"), - octest:ct_string("Detach Delete $`3esn` Contains 0X0123456789ABCDEF Contains 00,Extract(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]|1000[..$`6esn`][..0xabc]) Ends With [07[$999],12e12[Count ( * )..][usn2..]] Unwind 0X7[0e0..] As `5esn` Union Create ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})),((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) Detach Delete 1000 In 0X0123456789ABCDEF In 01,`3esn`()[Filter(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`)..{@usn6:`6esn`[_usn4..][$`6esn`..]}],Extract(usn1 In 0x0[..`4esn`] Where \"d_str\" Contains `3esn` Contains 00|Count(*) Ends With 010)[All(usn2 In 1000 Contains 0.e0 Where #usn8 Ends With `4esn` Ends With $`4esn`)..@usn6(Distinct _usn3 In .e1 In $12,123.654 Starts With usn1 Starts With @usn5)][All(usn2 In 1000 Contains 0.e0 Where 0.0[1000..][.e1..])..{`7esn`:`2esn`[$`1esn`..][$_usn3..]}] Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7}));"), - octest:ct_string("Detach Delete 9e1 Starts With 9e1 Starts With 010,010 Contains 0X0123456789ABCDEF,(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})[Single(`4esn` In 's_str'[12..'s_str'])..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)] Delete [12.e12 Ends With 01 Ends With .e1,$@usn5[0.12..][@usn5..],$usn1 In 1000 In $#usn7] Is Not Null,9e1[...e0],`6esn` Starts With $`5esn` Unwind All(`4esn` In $`8esn` Starts With 1000) Is Not Null As _usn4 Union Merge _usn3=((_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})) Optional Match #usn7=(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})<-[`2esn` *12..0xabc{`6esn`:$123456789[0.0..],@usn5:999[$`6esn`]}]-(`7esn` {`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) Match `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}))"), - octest:ct_string("Optional Match ((:_usn3{usn2:$`5esn`[$123456789][`1esn`]})),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})) Where 01234567[Null..0.e0][Count(*)..$#usn8]"), - octest:ct_string("Create (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}))),`4esn`=((`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})) Return $`6esn` =~$#usn8 As #usn8 Order By (#usn7 :#usn8)-[`6esn`:`4esn`|:`7esn` *..0x0]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})[Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])][Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])] Descending Limit Null Contains 9e1 Union All Return Count ( * )[Count ( * )..12e12][usn1..1000] Order By $`1esn`[$usn2..][$1000..] Descending Skip Filter(`6esn` In 0X7 =~`` Where $0[$#usn8..01234567])[{`7esn`:Null[0e0][12],#usn8:$12[..``][..$7]}..][Filter(usn1 In 0x0[..`4esn`] Where $usn1[0.12..]['s_str'..])..] Union With $`6esn` Is Null Is Null As `4esn` Order By [_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]][[.0 Starts With `2esn` Starts With `6esn`,9e1[0.e0..][#usn8..]]..][[07[$999],9e0 In 01234567,@usn5 In 0X0123456789ABCDEF]..] Asc,0 Is Not Null Descending,1e1[..#usn8][..'s_str'] Descending Where 9e12 Is Not Null Is Not Null;"), - octest:ct_string("Match ((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))),usn1=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})) Where 1000 Ends With 1000 Ends With $`4esn` Remove None(usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null).`6esn`,Extract(_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`|9e1 Starts With `1esn` Starts With 0Xa)._usn4?,(usn2 :`3esn`:`1esn`)-[ *..7]-(usn1 :`4esn`:#usn8)-[?:`3esn`|:`4esn`]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).@usn5? Create ((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})),(`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[? *..0X7{`3esn`:`8esn`[$``]}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})-[?:usn1|`3esn`{#usn8:1000[..$`6esn`][..0xabc]}]->(usn1 :_usn3{@usn6:True[..'s_str'][..01]}) Union Create ((:`6esn`:`7esn`{_usn4:12[0X7..@usn6],_usn3:123456789 In $usn2 In `6esn`})<-[#usn7?:_usn3|:`4esn` *00..]->(:`6esn`:`7esn`{_usn3:\"d_str\" Is Null Is Null})<-[@usn6]->(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})),((#usn7 {#usn7:01234567[.12..7][1000..1.e1],``:@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})) With `` In `5esn` In $usn2 As ``,`3esn` =~`3esn` =~$`6esn` As `7esn`,$`6esn` Is Null Is Null Order By #usn8 Starts With 0x0 Starts With $@usn5 Descending,$`7esn` Ends With $usn2 Asc,9e12[0.0..12.e12] Ascending Limit 0x0[..$`6esn`][..$#usn8] Return Null Is Null Is Null,`2esn` In 12.e12 In `3esn` As `1esn`,Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null As `5esn` Limit $_usn4[0.12..$`6esn`][00..$@usn6] Union Remove #usn7:#usn7 Detach Delete $usn1[0.12..]['s_str'..],usn2 Starts With `6esn` Starts With 12e12,True[Count(*)..][1e1..] Delete Count ( * )[1000],usn2 =~0x0,@usn6 Starts With `3esn`"), - octest:ct_string("Merge #usn7=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) On Create Set usn2 =0.0[..12e12][..$0] Merge (_usn4 {@usn5:$_usn3[$`4esn`..Null]}) On Create Set @usn5(Distinct 12e12[_usn3..][$@usn5..],7 Contains 9e1).`6esn` =$@usn5 In 12e12 In Count(*) On Match Set _usn3:@usn5,Any(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null).#usn7 =All(`6esn` In 0X7 =~`` Where $1000[01234567]) In usn1(),`` =None(@usn5 In 0X7 =~.0 =~\"d_str\" Where _usn3[...e1])[[_usn4 In usn1 Contains False Contains `` Where 0.12 In $7 In 0]..][[7[..12e12][..$`6esn`]]..] Detach Delete $`1esn` Ends With $`1esn` Union Optional Match (_usn4 :`4esn`:#usn8{@usn5:$_usn4[12e12][`4esn`],`4esn`:False In `3esn`})-[`6esn`:``|:_usn4 *..01]->(`5esn` :#usn7) Where $1000[01234567] Unwind Count(*) Is Null As `2esn`;"), - octest:ct_string("With $`8esn` In \"d_str\" In 9e12 Order By 0X0123456789ABCDEF Is Null Is Null Descending Skip Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) Return Distinct *,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn` Order By None(`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789])[(`` {`8esn`:0X7 In $@usn5 In 9e0,_usn3:@usn6[$`3esn`]})-[usn1{#usn7:7 Contains 9e1,`5esn`:$`` Ends With 12e12}]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})..0e0][{`1esn`:$@usn6 Contains 07 Contains 0.e0}..{`3esn`:0.12 In $7 In 0,_usn3:07[$999]}] Asc,12e12[.12..] Descending Skip [\"d_str\" Starts With $usn1,.12 Contains $`4esn` Contains $`6esn`,01234567 =~usn1] Is Null Is Null Union Optional Match usn2=((#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`6esn`?:usn1|`3esn`{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})),((usn1 :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)) Union Return Distinct *,\"d_str\" =~`6esn` =~0Xa As `4esn` Order By (`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Descending,$`2esn` Ends With `3esn` Ends With $7 Desc Skip `` Is Not Null Is Not Null Remove [usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`|`3esn` =~0.0 =~$``].#usn7?,(:usn1{`1esn`:`6esn` Starts With $usn2 Starts With 0.0})<-[#usn7:`3esn`|:`4esn` *00..]->({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})-[`6esn`:`4esn`|:`7esn` *..0x0]->(:usn1{`6esn`:1000 Contains 0.e0,`7esn`:$@usn6[..$#usn7][..12.e12]}).usn2 Remove Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 0.12 Ends With $usn1 Ends With $@usn5|0X0123456789ABCDEF[.e0..$`4esn`]).`7esn`?"), - octest:ct_string("Create `3esn`=((#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)-[`6esn`:``|:_usn4 *..01]->(`5esn` :#usn7)) Optional Match usn1=(usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}) Match ((:`5esn`{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(usn1 :_usn3{@usn6:True[..'s_str'][..01]})) Union All Unwind 12.e12[$1000..] As `4esn`"), - octest:ct_string("With Distinct Extract(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null) Ends With `2esn`(`7esn`[Null..][@usn5..],123.654[12.e12..1e1]) Ends With Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]) As `7esn`,$usn2 In 9e0 In $7 Order By @usn5 Starts With 12e12 Starts With @usn5 Desc Skip $``[_usn4..][`7esn`..] Optional Match ``=((_usn4 )-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})) Union Unwind 9e12 As `7esn` Unwind 12.e12 Contains $`5esn` As #usn7 Remove {`6esn`:$`8esn`[``..][123.654..],``:999[$`6esn`]}.``,[0X7[..12e12],$`6esn`[$`1esn`][1000]].usn2?"), - octest:ct_string("Optional Match `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) Merge usn2=((`3esn` :`4esn`:#usn8)<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})) On Match Set (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 =123.654 Contains `2esn`,`3esn` =Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`),{`6esn`:$_usn4[$`8esn`..][07..]}.@usn6! =`5esn`[.e1][0Xa] Union Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) With Distinct 0xabc[$@usn5] As usn2,(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] Order By $12[01..][1.e1..] Ascending,0x0 =~_usn4 Desc Create ((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(@usn5 {_usn4:010[$@usn6],`6esn`:123456789[1e1..0.0]})<-[`6esn`?:`2esn`|usn2 *01234567..12]->(:`7esn`{#usn7:True =~@usn5 =~$`1esn`})),`6esn`=({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Union Detach Delete Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`)[Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01)..][{`1esn`:@usn6[`5esn`..$`3esn`],_usn3:$999 Ends With $`3esn` Ends With `8esn`}..],All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..] Match (`6esn` :`5esn`)<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6),_usn3=(($999)) Where 0X7 =~`` Return 0X7 In $@usn5 In 9e0,$`1esn`[9e1.._usn4][$999..$`2esn`] Skip $`5esn` In `2esn` In .0 Limit .0 Is Null Is Null"), - octest:ct_string("Create ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) Union All With *,$0[..`8esn`] As _usn4 Order By 0 Starts With `6esn` Starts With 0X0123456789ABCDEF Descending,12.e12 In .e0 In `7esn` Descending Limit `8esn` Ends With 0X0123456789ABCDEF Ends With `1esn` Unwind $_usn4[$`5esn`..`1esn`][@usn6..01] As _usn3 Union All Unwind 123456789 =~Filter(usn2 In 1000 Contains 0.e0 Where 0X7[0e0..]) =~{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999} As `7esn` Merge `4esn`=((#usn8 {usn2:7 Contains 9e1})-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]->(:_usn3{@usn6:$`7esn` Is Null Is Null})) On Create Set usn2:usn1,None(_usn4 In usn1 Contains False Contains `` Where .12 In $999 In `5esn`).usn2 =9e0 In 01234567,`8esn` =$@usn5 Ends With 0X0123456789ABCDEF;"), - octest:ct_string("Unwind Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) As usn2 Optional Match `1esn`=((usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) Where _usn4 Starts With 0X7 Merge usn1=(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(usn1 :#usn8)<-[ *..0x0{`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) On Match Set `2esn`+=123.654 In \"d_str\" In $_usn3 Union All Unwind {#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] As _usn3 Return 0.12[Count(*)..] Order By [@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0] Is Null Ascending,`2esn` Is Not Null Is Not Null Ascending,12.0 In 1000 In _usn4 Desc Skip 9e12[$1000][$@usn6] Limit $@usn6 Contains Count ( * ) Unwind 010 In @usn6 As usn2"), - octest:ct_string("Remove Filter(usn1 In 00 Starts With _usn3 Where 123456789[`4esn`..][Count ( * )..])._usn3,`8esn`:`3esn`:`1esn`,[usn1 In 00 Starts With _usn3 Where False[.e1..Null]].`4esn`? Return $_usn4[12e12][`4esn`] As `5esn`,@usn6[`5esn`..$`3esn`] As ``,0.0[..12e12][..$0] Order By usn2[$`1esn`...0] Descending,123.654 Is Not Null Is Not Null Desc Limit 0X7 =~`4esn` =~`8esn` Delete 9e0 =~$`5esn`,@usn5 =~.0 =~$`1esn`,Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0};"), - octest:ct_string("Match `4esn`=(({``:$1000 Is Null Is Null})-[ *00..{`2esn`:$0 Is Not Null}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})),`6esn`=({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Detach Delete [#usn8 In $`5esn` Is Null Is Null Where 0.0[..12e12][..$0]][{`2esn`:.e1 In $@usn6 In 999,usn2:@usn5 Ends With $`3esn` Ends With 12e12}..]"), - octest:ct_string("Unwind usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`]) Is Null As `3esn`;"), - octest:ct_string("Merge `5esn`=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))) On Match Set _usn3+=07 In Count ( * ) In \"d_str\" Union All Unwind 010 In @usn6 As usn2 Union Merge `5esn`=(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}) Merge (#usn7 :`6esn`:`7esn`)<-[`3esn`?:_usn3|:`4esn`]->(:`1esn`{_usn4:$_usn3[Null]})-[ *..0X7]->(`5esn` :_usn4:usn1) On Match Set `1esn`+=Single(`4esn` In `6esn`['s_str'..][010..] Where 12.0 Contains 0.e0)[..Any(`4esn` In 's_str'[12..'s_str'] Where Count(*)[`7esn`..$12])][..Extract(@usn5 In .12[#usn7][$`8esn`] Where 01234567 =~usn1)],({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})<-[`7esn` *..0x0]->(`5esn` {`5esn`:$`5esn`[False]})-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->(`4esn` {`7esn`:.e0[..999][..0X7]}).usn2 =`8esn`[$#usn7],`1esn`+=$1000[01234567];"), - octest:ct_string("Merge (((usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1)<-[@usn5:#usn8{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(#usn8 :_usn3))) With Distinct None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) As _usn3 Skip `2esn` Is Not Null Is Not Null Limit None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] Union All Unwind $usn1[1e1.._usn3][$@usn6..$#usn7] As usn1 With Distinct Count ( * ) Ends With 1000 Ends With 12 As _usn4,False[..12.e12] Skip {usn2:123456789 Starts With `2esn` Starts With 9e12} Ends With All(usn2 In 1000 Contains 0.e0 Where 01234567[Null..0.e0][Count(*)..$#usn8]) Where 0 Is Null Is Null Delete `2esn`[_usn3..$``],#usn8 Starts With 0x0 Starts With $@usn5"), - octest:ct_string("Unwind $usn2[False..`7esn`][`7esn`.._usn3] As _usn4 Union All Unwind 9e12 As `5esn`"), - octest:ct_string("Create (({#usn8:12.0[..$7][..999],@usn5:$`1esn` Is Null})<-[``?:`1esn` *0xabc{`5esn`:$``[_usn4..][`7esn`..]}]->(#usn7 :@usn6:`7esn`{_usn3:\"d_str\" =~`3esn` =~0Xa})) Unwind [@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] As `3esn` Union All Create `8esn`=(`4esn` {`3esn`:0X7[..12e12],`8esn`:False In 123456789 In $0})-[`4esn`?:`1esn`]->(:`2esn`:`3esn`{usn2:$`5esn` In False})<-[#usn7? *00..]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]}),`7esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})) Return Distinct *,1.e1[Null][12.e12] As ``,Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) As _usn3 Order By 0.e0[`6esn`...e0][9e12...e12] Descending,_usn3 In .e1 In $12 Asc Skip [$`4esn`[9e1..][0..]][Any(`4esn` In $`8esn` Starts With 1000 Where 0.e0[9e1..][0.0..])..Single(#usn8 In $`5esn` Is Null Is Null Where 1000 Ends With 1000 Ends With $`4esn`)] Limit 123456789 =~_usn4 =~$0 Return Distinct $@usn5 =~$`` =~$usn2 As @usn6,usn1 Is Not Null Is Not Null,01 In 01 In 12 Order By Extract(usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`) Contains [0 Contains 12e12,0xabc Ends With $7 Ends With $`2esn`,0x0 =~_usn4] Ascending,07[1e1] Ascending Limit $`8esn` Starts With 1000;"), - octest:ct_string("With Distinct Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] As @usn5,12 Is Null Is Null As #usn7 Limit 0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Where 12[..9e0][..999]"), - octest:ct_string("Create ((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[?:usn1|`3esn`{#usn8:1000[..$`6esn`][..0xabc]}]->(:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[``?:usn1|`3esn`]->(:@usn5{#usn7:1e1[@usn5..]})) Unwind Null Is Null Is Null As usn1 Union With Distinct [@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2] Is Null,00[7..$123456789] Order By $usn2 Is Not Null Is Not Null Desc Limit `8esn` Ends With 999 Ends With 9e0 Remove {_usn3:$_usn4[$`1esn`]}.@usn6!,`8esn`($_usn4[#usn8..],123456789 Starts With `2esn` Starts With .0).usn1?,Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|1e1 Is Null).#usn7? Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Union Unwind [usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..] As `5esn` Remove {`8esn`:Count ( * ) =~Count(*)}.`6esn`,({@usn6:0X0123456789ABCDEF[..usn1]})<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)._usn4?,(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`4esn`"), - octest:ct_string("Remove #usn7(Distinct 0 Starts With 12e12 Starts With `4esn`,.0 Starts With `2esn` Starts With `6esn`).``!,[0x0[..`4esn`],$7].#usn7! Unwind .e12[usn2][01] As _usn3"), - octest:ct_string("Create usn1=((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})),(({#usn8:12.0[..$7][..999],@usn5:$`1esn` Is Null})<-[``?:`1esn` *0xabc{`5esn`:$``[_usn4..][`7esn`..]}]->(#usn7 :@usn6:`7esn`{_usn3:\"d_str\" =~`3esn` =~0Xa})) Return Distinct 1e1[..#usn8][..'s_str'] As #usn8,7 Is Null Skip {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null Merge `6esn`=(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) On Create Set usn1 =00 In 0.12 In `5esn`,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where .e0[..999][..0X7]]._usn4 =(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) On Match Set [usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01|`1esn`[@usn6..$123456789]].`8esn`? =Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]),@usn5 =Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null,_usn3+=$@usn5 =~$`` =~$usn2 Union All Unwind $`4esn`[9e1..][0..] As _usn3 Remove All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `5esn`[`1esn`..`1esn`]).`5esn` Remove (`` {`5esn`:0X0123456789ABCDEF[.e0..$`4esn`]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :`4esn`:#usn8).@usn5,({@usn6:0X7 In $999 In $``})-[`7esn`{usn1:0 Is Not Null}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`}).@usn6 Union Return $_usn4[12e12][`4esn`] As `5esn`,@usn6[`5esn`..$`3esn`] As ``,0.0[..12e12][..$0] Order By usn2[$`1esn`...0] Descending,123.654 Is Not Null Is Not Null Desc Limit 0X7 =~`4esn` =~`8esn` Match (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0) Create `4esn`=(:`5esn`{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(_usn4 ),(:#usn7)"), - octest:ct_string("Merge ((_usn4 {`8esn`:9e1 In 01 In 999})) With Distinct .e12[.12..][_usn4..] As _usn4,{`7esn`:.e0 Contains #usn7 Contains $#usn8}[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..None(`6esn` In 0X7 =~`` Where 12.e12['s_str'])][(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})..({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})],$999[$_usn4..][$`5esn`..] Union Merge `1esn`=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(usn1 :`4esn`:#usn8{``:0 Is Not Null Is Not Null,`3esn`:usn1 Starts With $#usn7 Starts With `5esn`})) On Match Set #usn8($`2esn` Contains usn1 Contains `2esn`).`3esn`? =0xabc[..$`1esn`][..01] On Create Set @usn6+=[usn1[..$_usn4][..``],0X7[.e12..01234567]] In `3esn`(@usn5[..True][..0X7],$`3esn` =~$`7esn` =~False) Return Distinct `7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As usn1 Order By 12.e12 In .e0 In `7esn` Asc,9e1[.12..] Asc Skip (_usn3 )<-[usn1]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})-[_usn4?:`6esn`]->(`8esn` :`1esn`) =~Single(#usn7 In 01234567[$`3esn`..] Where 0.12 In $`4esn` In `6esn`) =~Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|$`8esn`[..123456789]) Limit 0.12 In $`4esn` In `6esn`"), - octest:ct_string("With `6esn`['s_str'..][010..],$`4esn` Contains 0Xa Where 0X0123456789ABCDEF In $1000 In $`3esn` Merge `3esn`=((:#usn8{_usn4:\"d_str\"[Count ( * )],`2esn`:9e0 Ends With $`7esn`})) Union All Delete [_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]] Ends With [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]],Single(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8)[{_usn3:$0 Ends With $#usn7 Ends With .12}][[12.0[0Xa][00],.0[01][$12]]] Unwind `2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As `4esn`;"), - octest:ct_string("With *,`` =~12 =~$#usn7 Order By 0X7 In 's_str' In $`1esn` Descending,@usn5 In 0X0123456789ABCDEF Asc,$`4esn` In $12 In _usn3 Ascending Skip [usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]] In [0xabc[12.e12..`1esn`]] In {@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} Where 0.12 In $`4esn` In `6esn` With ({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn` Skip count(Distinct 's_str' Starts With 1000 Starts With #usn8,12e12 Starts With $123456789 Starts With 12.0)[[_usn4 In usn1 Contains False Contains `` Where $#usn8]][[$`1esn` Is Null,\"d_str\" =~`6esn` =~0Xa,$usn2[0e0..]]]"), - octest:ct_string("Unwind $`1esn` Ends With _usn4 Ends With `3esn` As `8esn` Merge (`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(usn1 :#usn8)<-[ *..0x0{`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) On Create Set `6esn` =$@usn5[Count ( * )] On Create Set Single(usn1 In 00 Starts With _usn3 Where $`7esn` Ends With 07 Ends With 07).`6esn`? =Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789},@usn5 =[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0])],[usn1 In 00 Starts With _usn3 Where 12 Ends With .e12 Ends With $7|_usn3 =~00].#usn7! =Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null Union All Return Distinct 9e0 Starts With `6esn`,9e1['s_str'..1e1] As #usn7 Limit `1esn` Contains Count ( * ) Unwind $`1esn` =~$`1esn` =~#usn7 As `4esn` Merge `4esn`=(`3esn` {_usn3:@usn6 Contains _usn4 Contains $`4esn`})<-[`7esn` *..0x0]-(@usn5 :usn1)<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) Union All Match ((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})),((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})) Where @usn6 Contains .e1 Contains $`4esn`;"), - octest:ct_string("Match #usn8=((`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[:@usn6 *0X0123456789ABCDEF..{_usn3:`7esn` Ends With $usn2 Ends With 999}]-(`2esn` :_usn3)),(({``:12 Is Null Is Null})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)})) Remove [$`5esn`[False],9e1 Contains $`3esn` Contains 01234567,`5esn`[Count ( * )..][\"d_str\"..]].@usn5!,`3esn`:_usn4:usn1,[usn1 In 00 Starts With _usn3].#usn8?"), - octest:ct_string("Unwind `` As _usn4 Detach Delete .e1 Starts With $`8esn`,`6esn` Is Not Null Merge `3esn`=((:#usn8{_usn4:\"d_str\"[Count ( * )],`2esn`:9e0 Ends With $`7esn`}))"), - octest:ct_string("Remove ({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}).@usn6?,Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`1esn` Starts With $999).``?,All(`4esn` In 's_str'[12..'s_str']).`3esn`? With Distinct *,9e1['s_str'..1e1] As #usn7,01234567 As `6esn` Skip `2esn` In Count(*) In 9e0 Limit usn2 Is Not Null Where $12 Is Null Is Null"), - octest:ct_string("Detach Delete #usn7 Contains 07"), - octest:ct_string("Return `8esn`[1000..$7][$`7esn`..`2esn`],0X7 =~``,123456789 =~_usn4 =~$0 As usn1 Detach Delete 0Xa Starts With $`4esn` Starts With 1e1 With Distinct .e0[`4esn`..`4esn`][0.0..$0] As `7esn` Order By None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) Descending,01234567[.12..7][1000..1.e1] Ascending Where #usn7[..$1000][..01];"), - octest:ct_string("Unwind 0x0[0.0][$_usn4] As #usn8 Unwind 123.654[`5esn`] As @usn5 Union Remove [010 =~$usn2 =~1e1,`1esn`[@usn6..$123456789]].`8esn`!,Filter(`6esn` In 0X7 =~`` Where $#usn7[...e12][..$7])._usn3,Filter(@usn5 In .12[#usn7][$`8esn`]).`3esn` Match (#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}),((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})) Where $`6esn`[`1esn`..][.e0..]"), - octest:ct_string("Match #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`1esn`=(((`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}))) Create `4esn`=(({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})) Union Match `5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Where $`2esn` Contains usn1 Contains `2esn` Unwind 12e12[0.e0][9e1] As usn2"), - octest:ct_string("Detach Delete 0X7 In 's_str' In $`1esn` Unwind {@usn5:$`3esn`} Starts With .12 As `8esn` Union All Match `3esn`=(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}),usn2=((#usn8 :`4esn`:#usn8)-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)) Where $`8esn` =~$usn2 Merge _usn3=(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})) On Create Set `4esn`(Distinct .0 Starts With `2esn` Starts With `6esn`).`7esn`! =Filter(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[[1e1[0.0],0 Contains 12e12,$123456789[..0x0][..`4esn`]]],`8esn` =[@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] Merge ((`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}));"), - octest:ct_string("Merge `8esn`=(({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})) Merge (((`3esn` :`8esn`)-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(_usn3 :usn2:@usn6)-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}))) On Create Set #usn8:_usn4:usn1,[0 Is Not Null Is Not Null].usn2! =(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] On Create Set #usn8+=12[0X7..@usn6],{``:12e12[$`5esn`][07],_usn3:$`6esn` Is Null Is Null}.usn1 =$`6esn` Is Not Null Is Not Null"), - octest:ct_string("Merge (({`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})-[#usn8?]-(:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})) On Match Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] On Create Set ``(999[``..][Null..]).`8esn` =0.0[999..],`4esn`+=$`5esn` Starts With _usn3 Starts With @usn5,@usn6+=False Is Null Match `5esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Union Create `3esn`=(_usn4 :``{`2esn`:9e1 In 01 In 999,`5esn`:$@usn6[..$usn1]})-[`5esn`?:``|:_usn4]->(:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[@usn6?:`1esn`]-(:`5esn`),``=(({`5esn`:0e0 =~_usn4})) Union Return $@usn6[07..`7esn`][_usn4..$`4esn`] Create @usn5=({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)<-[?:usn2|#usn8{#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7}]-({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})"), - octest:ct_string("Optional Match (_usn3 :_usn4:usn1)<-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(:@usn6:`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}),#usn8=(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[usn1?:`8esn`|:usn1]->(`2esn` {usn2:$999[12.0..]})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Where $`5esn` Contains $@usn6 Unwind $123456789[$`2esn`][True] As usn2 With Distinct *,`7esn`[Null..][@usn5..],0X0123456789ABCDEF Contains $usn1 Skip Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] Limit False Ends With $`8esn` Where 0 Starts With 12e12 Starts With `4esn` Union All Unwind $_usn4[0.12..$`6esn`][00..$@usn6] As `` Merge `2esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})) Union All Unwind 9e12 As `5esn`"), - octest:ct_string("Optional Match _usn4=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),(((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})-[?*..{`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}]-(`` :`3esn`:`1esn`{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-({usn1:010[@usn5..],`7esn`:`2esn` Is Not Null Is Not Null}))) Where $`` Ends With 12e12 With Distinct *,0X7 In 123456789 In $`5esn` Skip 0xabc Contains 0e0 Contains \"d_str\" Limit $@usn6 Is Null Is Null With *,0.0 Is Null Is Null As `8esn` Order By $1000 Is Null Is Null Descending,1000 In 0X0123456789ABCDEF In 01 Asc Union All Merge `8esn`=(({@usn6:$123456789 Is Null Is Null,@usn6:`6esn`[1.e1..$#usn7][.e0..True]})<-[`5esn`:usn1|`3esn` *010{`2esn`:`6esn` =~01234567 =~0Xa}]->(_usn4 :``)) Union With Distinct $12[`3esn`..0e0][`2esn`..$7] As #usn8,0.12 =~01 =~12 Order By $123456789 =~$#usn8 =~$#usn8 Ascending,0X7 In 123456789 In $`5esn` Ascending"), - octest:ct_string("Match `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) Where `6esn` =~$_usn3 Union Return Distinct $#usn8[1e1][9e1] As @usn5,$`3esn`[`2esn`...e0] As _usn3,.e1 Starts With $`8esn` Skip 0x0 =~$`7esn` =~@usn6 Limit [$_usn3[$`4esn`..Null],0x0 Contains $`8esn` Contains `6esn`,\"d_str\" =~`6esn` =~0Xa] Contains [@usn6 Starts With `7esn` Starts With Null] Contains `6esn`(Distinct $`4esn`[usn1..$#usn8][12.0..`3esn`],12.e12['s_str']) Union Detach Delete usn2[$`7esn`..010][00..``],$123456789 Ends With $`6esn`,0.12 Contains $`2esn` Contains $_usn4"), - octest:ct_string("Match (usn2 :#usn7),#usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) Unwind `1esn`(Distinct Count(*)[..`3esn`]) Starts With $0 As `3esn` Union Unwind 123456789 Starts With #usn7 Starts With `6esn` As `7esn` Return Distinct Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0]) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where Count(*)[True]) In Extract(`4esn` In 's_str'[12..'s_str'] Where 0xabc Ends With $#usn7 Ends With #usn8|.e1 Starts With 0.0 Starts With `6esn`) As #usn7,@usn5 Starts With \"d_str\" As `` Union All Delete \"d_str\" =~12.e12 =~07,Null[0.e0..0x0] With Distinct 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Limit $12[..``][..$7] Match _usn4=(@usn6 {#usn7:False[`2esn`..#usn8]})<-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]-(`4esn` {@usn6:True[..'s_str'][..01]}),`6esn`=(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]}) Where usn2[$`1esn`...0]"), - octest:ct_string("Delete 1.e1 Is Not Null Is Not Null,$1000 In $`7esn` In $7"), - octest:ct_string("Return Distinct *,Count ( * ) In 010 As `1esn` Limit $@usn5 =~07 =~True Union All Unwind 1000 Contains 123456789 Contains 1e1 As `` Return Distinct $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Limit 9e0 Starts With `6esn` Delete [$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union With Distinct *,$0 =~$0 =~.e0 As `7esn`,$@usn5[#usn8..][$`1esn`..] As `7esn` Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip [@usn6 In @usn5 In $`6esn` Where $999[$1000]|$7[.12]] In {`1esn`:$@usn6 Contains 07 Contains 0.e0} In (`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) Where 9e12[usn2..7][.e1..$`7esn`] Return 12e12[Null] As usn2,$`4esn`[0][0e0] As _usn3,12e12 Starts With $123456789 Starts With 12.0 Order By Count(*)[.e0.._usn4] Asc Skip (`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Remove {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]}.`3esn`?,[07[12e12],`1esn`[...e1]].#usn7!"), - octest:ct_string("Return Distinct {@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null} Is Not Null Is Not Null,$0 =~$0 =~.e0 As `7esn` Order By Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]) Asc,{@usn5:$`3esn`} Starts With .12 Asc Skip Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Union Unwind $usn2[False..`7esn`][`7esn`.._usn3] As _usn4"), - octest:ct_string("Detach Delete {@usn6:0Xa Is Null Is Null,`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]} =~_usn4(usn2[`3esn`][_usn3]),`6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Merge @usn6=({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567}) On Match Set (:usn1{`1esn`:`6esn` Starts With $usn2 Starts With 0.0})<-[@usn6?:@usn5|`8esn` *..01{_usn4:07 Ends With 07,`8esn`:`6esn`[1.e1..$#usn7][.e0..True]}]-(usn2 :`3esn`:`1esn`).`8esn` =.0,_usn4+=`3esn`[$999..],#usn7($0[$#usn8..01234567],#usn8[$#usn8..]).#usn8! ={#usn8:$`5esn` In False,usn2:$`7esn` In $7} Starts With Filter(usn2 In 1000 Contains 0.e0 Where `2esn`[$`3esn`..]) Starts With All(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`) On Create Set `6esn`+={`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])],#usn8:`1esn`,[usn1 In 0x0[..`4esn`] Where True =~@usn5 =~$`1esn`|0.0[999..]].`4esn`! =$123456789 Contains 01 Contains 0.12 Detach Delete $999[12.0..]"), - octest:ct_string("Create (`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})-[`1esn`:usn2|#usn8 *1000..]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`),`4esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Delete (`6esn` {@usn6:9e0 Contains `8esn`})<-[`5esn`:usn1|`3esn` *010{`2esn`:`6esn` =~01234567 =~0Xa}]-(usn2 {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789})<-[ *00..{`3esn`:12 Ends With 01234567,`4esn`:00[``..][$`4esn`..]}]->(`2esn` :``)[[999[``..][Null..],usn1 In 1000 In $`5esn`,`5esn`[.e1][0Xa]]] Create ((_usn4 {`8esn`:9e1 In 01 In 999})) Union With Distinct *,@usn5 Starts With \"d_str\" As ``,`5esn` In 12 Order By Count(*)[.e0.._usn4] Asc,$123456789[False.._usn3] Desc,`1esn`[`3esn`..][$@usn6..] Descending Skip 999 In 9e1 In 7 Limit [@usn5 In 0X0123456789ABCDEF,False[0Xa..$@usn5][$`6esn`..12e12]] =~({@usn6:0X0123456789ABCDEF[..usn1]})<-[`4esn`:#usn8]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(#usn8 :`7esn`) =~123456789 Where $#usn8 Is Null Is Null;"), - octest:ct_string("Unwind $`1esn` Is Null As `6esn` Union Optional Match `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Where `7esn` In 999 In @usn6 Union All With 01234567[$@usn6..0X7][$`1esn`..123.654],00 Ends With $_usn4 Ends With $`2esn` As `5esn` Skip `8esn` Ends With 0X0123456789ABCDEF Ends With `1esn`"), - octest:ct_string("Merge `1esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) Merge `7esn`=(((#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})<-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(`` :@usn5)-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`7esn` {`8esn`:$123456789 Contains 01 Contains 0.12}))) Return [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}),$_usn4[`3esn`][0] As `1esn`,`6esn` Starts With $`5esn` As @usn5 Order By .0 Is Null Is Null Ascending,`1esn`(Distinct $@usn5[#usn8..][$`1esn`..],#usn7 Ends With `4esn` Ends With @usn5)[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|usn1[Count ( * )..$usn1]]][{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}] Asc Limit True Is Not Null Union Return *,$999[$1000] Skip 1e1[@usn5..] Merge (({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})) Remove {@usn6:True[..'s_str'][..01]}.#usn7!,(_usn4 {#usn7:False[`2esn`..#usn8],#usn8:`5esn`[`1esn`..`1esn`]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]}).`3esn`"), - octest:ct_string("Remove usn2($`8esn`[..$``],.12 Starts With .12 Starts With `3esn`).`8esn`!,[`4esn` In `6esn`['s_str'..][010..] Where Null[0e0][12]].`2esn`,#usn8:`7esn` Remove None(usn1 In 0x0[..`4esn`] Where False[.e1..Null]).``,[.e0[..999][..0X7]].`5esn`?"), - octest:ct_string("With Distinct *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `2esn`"), - octest:ct_string("Remove [`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789]|0.12[Null..]].`8esn`?,All(`4esn` In 's_str'[12..'s_str'] Where $`8esn`[..$``]).`7esn`!,Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`! Detach Delete 00[7..$123456789],`` Starts With 12,{`4esn`:.12 Starts With 0Xa} Starts With All(usn1 In 00 Starts With _usn3 Where `6esn`[False..0.0][12e12..$usn2]) Union All Merge `1esn`=(#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})-[`1esn`?:`1esn` *01234567..12]-(usn1 :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) On Match Set _usn3 =$`5esn`[False],[07[$999],@usn6[$`7esn`]].@usn6 =010 Starts With `7esn` Starts With 9e1,`4esn` =usn2[..$`3esn`] On Create Set `7esn`+=9e0[``][123.654],`8esn`(#usn7 Contains $7,$_usn3 =~`7esn` =~$_usn4).#usn8 =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..] Match (((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))),(@usn6 {`4esn`:$`2esn`[..`2esn`]})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null}) Where `7esn` Starts With $`` Starts With $#usn7 With ({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn`,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn` Skip 010 Starts With `7esn` Starts With 9e1 Limit 0Xa Starts With $`4esn` Starts With 1e1"), - octest:ct_string("Delete [1e1[0.0],0.12 Contains $`2esn` Contains $_usn4],All(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`) Ends With `4esn`(`4esn`[7..][1000..]) Ends With Filter(_usn4 In usn1 Contains False Contains `` Where $`4esn` Starts With 1e1)"), - octest:ct_string("Unwind $`7esn` Ends With 07 Ends With 07 As `3esn` Create ((:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})),({`5esn`:123456789 Starts With `2esn` Starts With .0})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})<-[`` *12..0xabc]->(`3esn` :_usn4:usn1) Match _usn3=((@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]}))"), - octest:ct_string("Remove ({`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[ *..0x0{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}]-(`5esn` {`8esn`:0.0[12...12]})._usn3,All(`4esn` In `6esn`[1e1..] Where 07[12e12]).`3esn`!,[0Xa[$``..][01234567..]].@usn5 Unwind $_usn4[$`1esn`] As `2esn` Unwind 7 In @usn5 In $`4esn` As `5esn` Union Unwind #usn8[$#usn8..] As #usn8 Merge (((`1esn` :`8esn`)-[_usn4:`7esn`|`2esn`]-(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3}))) Create ((_usn4 {`8esn`:9e1 In 01 In 999})) Union All Unwind $7[.12] As @usn6 Detach Delete ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] Match usn1=(`4esn` :#usn7)-[_usn4?:`6esn`]-(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) Where $`5esn` In `2esn` In .0"), - octest:ct_string("Unwind 999 Is Not Null Is Not Null As `8esn` Merge (((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) On Match Set (`4esn` :`6esn`:`7esn`)-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(`5esn` {@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}).#usn8 =False In 123456789 In $0,Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])._usn4! =9e1[010..] Optional Match ``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}),#usn7=(:#usn7{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[:@usn5|`8esn`*..]-(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) Union Unwind [`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As @usn5 Return *,[010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]][(:@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})..][Extract(#usn8 In $`5esn` Is Null Is Null Where 1000[0.0][Null])..] As `8esn`,`5esn` =~0Xa As usn1 Order By 0X0123456789ABCDEF Is Null Is Null Descending,Count ( * ) In 010 Descending,`5esn` In $999 Descending Limit .e0 Contains #usn7 Contains $#usn8"), - octest:ct_string("Create _usn3=((@usn6 :_usn3{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(`4esn` :`4esn`:#usn8{`1esn`:$@usn5 In 12e12 In Count(*)})) Return None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..] Union Remove Extract(@usn5 In .12[#usn7][$`8esn`] Where `7esn` Ends With $usn2 Ends With 999|12 =~usn1 =~.e12).`6esn`! Union Create _usn3=(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})) With @usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Limit .12 Is Not Null Is Not Null"), - octest:ct_string("With Distinct *,0Xa[0xabc..] As usn2,`6esn`(00 In 1e1) Starts With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Starts With Extract(#usn8 In $`5esn` Is Null Is Null Where $usn2 Is Not Null) Limit $`7esn` Ends With $`2esn` Ends With $usn1 Create (({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})),(({@usn6:0X0123456789ABCDEF[..usn1]})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn3{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})-[usn1*]->(:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7}))"), - octest:ct_string("Return Distinct 0x0 Contains _usn4 Contains 123456789 As `7esn`,07 Is Null Is Null As #usn8,``[$`3esn`][$`2esn`] As `5esn` Skip All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12) Starts With Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Contains .0 Contains .e1) Limit 01234567[$@usn6..0X7][$`1esn`..123.654] Union Remove (`1esn` )<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})<-[@usn5?:`1esn`]-(_usn3 :`4esn`:#usn8{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})._usn4?,Any(@usn5 In $#usn8 Is Null Is Null Where False Contains `3esn`).`5esn`?,Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0).`2esn`? Remove (#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}).`8esn`?"), - octest:ct_string("Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)],010 In @usn5 In `5esn`,1e1 In $999 In $usn2 Return 01234567 Is Null Is Null As `3esn`,0.12 Contains $12 Contains `8esn` As `5esn`,9e0 Starts With `6esn` Skip `3esn` Ends With 010 Limit Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]} Union Detach Delete 00[7..$123456789],`` Starts With 12,{`4esn`:.12 Starts With 0Xa} Starts With All(usn1 In 00 Starts With _usn3 Where `6esn`[False..0.0][12e12..$usn2]) Remove Extract(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`).usn1!,_usn4(Distinct `7esn` Starts With $usn2 Starts With .e0).`5esn`,``:#usn7 Return $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Limit 9e0 Starts With `6esn` Union All With *,`` =~12 =~$#usn7 As _usn4,[$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Skip `3esn`[..7][..12e12] Limit (:`1esn`{`8esn`:Count ( * ) =~Count(*)})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(`1esn` {_usn4:12.e12 Ends With 01 Ends With .e1})[Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8])] With *,`3esn`[$`1esn`..] As usn2 Limit @usn6(Distinct Null[0e0][12])[..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]]][..`8esn`(010 =~`6esn`)] Where usn2[`3esn`][_usn3] Return $`4esn`[12.e12..][0.0..],12[`7esn`...0][0.12..``] As @usn6,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Skip $`1esn` Ends With $`1esn`"), - octest:ct_string("Merge @usn5=(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})<-[?:`7esn`|`2esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}]->(usn1 :#usn8))) On Match Set `5esn` =[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][``($`4esn`[usn1..$#usn8][12.0..`3esn`])..[`6esn` In 0X7 =~``|$#usn7[...e12][..$7]]][(:``{@usn5:$@usn6 Contains Count ( * ),`2esn`:$0 Is Not Null})-[_usn3?:`5esn`|`1esn` *0X0123456789ABCDEF..]->(`1esn` :#usn7{_usn3:999[.e12][01],`6esn`:9e12 Is Not Null Is Not Null})<-[`5esn`?:usn1|`3esn` *1000..]-(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})..Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])],[`6esn` In 0X7 =~`` Where `7esn`[...e1][..\"d_str\"]|0X0123456789ABCDEF In $1000 In $`3esn`].`5esn`? =12 Ends With 01 Ends With 1e1,[#usn7 Starts With .e12 Starts With $`7esn`].`3esn` =0X0123456789ABCDEF Contains $usn1 On Create Set #usn7 =`5esn` In $999,@usn6+=`2esn`[$`3esn`..],Any(`6esn` In 0X7 =~`` Where 12.e12['s_str']).`5esn` =usn1[..@usn5][...e0] Union All With Distinct $`4esn`[12.e12..][0.0..] As `2esn`,$0[..`8esn`] As _usn4,$`1esn` Starts With $999 Skip $#usn8[1e1][9e1] Limit Count(*) Ends With 010 Remove [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1|9e1 Starts With `1esn` Starts With 0Xa].usn2?,Count ( * ).@usn5? Remove `5esn`:usn1,(`3esn` :_usn4:usn1)-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[`` *0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`1esn`! Union Unwind 0e0[#usn8][$_usn3] As #usn8 Optional Match ((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),((_usn4 {`8esn`:9e1 In 01 In 999}))"), - octest:ct_string("Create ((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})),(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))) Create ((({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)<-[#usn7 *123456789..999]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4})))"), - octest:ct_string("Return *,07[0..`4esn`],Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) Order By `4esn` =~$`3esn` =~$123456789 Ascending,{`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])] Asc,$`4esn`[..usn1] Ascending Skip $`3esn` Limit [@usn5 In 0X7 =~.0 =~\"d_str\"|#usn7 Starts With `1esn`][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn`[...e1][..\"d_str\"])..][`2esn`(Distinct 12e12[Null],0xabc[12.e12..`1esn`])..] Create usn2=(((#usn8 :@usn6:`7esn`)<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[_usn3? *00..]-(`1esn` :`1esn`))) Unwind 01 In _usn3 In 12 As `3esn`;"), - octest:ct_string("Merge (:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa})-[:usn1|`3esn`]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]}) Detach Delete 0 Is Not Null,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}),{`8esn`:$_usn3[$`4esn`..Null],@usn6:$`2esn` Starts With .e0 Starts With 12.0} Starts With {usn1:`4esn` In $12 In `8esn`} Starts With [usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`|9e0 Starts With `6esn`] Union Merge (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) On Create Set ``(999[``..][Null..]).`8esn` =0.0[999..],`4esn`+=$`5esn` Starts With _usn3 Starts With @usn5,@usn6+=False Is Null"), - octest:ct_string("Return 9e1[010..] As `6esn` Order By $7 Ends With `5esn` Descending,1e1[\"d_str\"] Ascending Limit $`7esn` Is Null Is Null Unwind #usn7 Starts With 0x0 Starts With Null As `6esn` Union All Detach Delete _usn3 Ends With 12e12 Ends With .e0 Union All Match (@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) With Distinct $#usn8 In .e12 In 9e1 Order By All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..] Asc,0Xa[0xabc..] Ascending,@usn6[$`3esn`] Ascending Skip 1e1 In $#usn8 In 12e12 Unwind 0X7 In $999 In $`` As ``"), - octest:ct_string("Match #usn7=({`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]->(`3esn` {_usn3:@usn6 Contains _usn4 Contains $`4esn`})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->({_usn3:12.e12 In $0 In Count(*)}) Union Unwind 1000[123.654..9e12][1000.._usn3] As _usn3;"), - octest:ct_string("Merge `1esn`=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(usn1 :`4esn`:#usn8{``:0 Is Not Null Is Not Null,`3esn`:usn1 Starts With $#usn7 Starts With `5esn`})) On Match Set #usn8($`2esn` Contains usn1 Contains `2esn`).`3esn`? =0xabc[..$`1esn`][..01] On Create Set @usn6+=[usn1[..$_usn4][..``],0X7[.e12..01234567]] In `3esn`(@usn5[..True][..0X7],$`3esn` =~$`7esn` =~False) Return Distinct `7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As usn1 Order By 12.e12 In .e0 In `7esn` Asc,9e1[.12..] Asc Skip (_usn3 )<-[usn1]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})-[_usn4?:`6esn`]->(`8esn` :`1esn`) =~Single(#usn7 In 01234567[$`3esn`..] Where 0.12 In $`4esn` In `6esn`) =~Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|$`8esn`[..123456789]) Limit 0.12 In $`4esn` In `6esn`"), - octest:ct_string("Unwind True[0] As _usn3 Remove `4esn`:``,{#usn7:0[0.12..]}.usn2! Union All Delete Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null)[count(Distinct 0.12 Contains $12 Contains `8esn`)..[$`1esn` Is Null Is Null,9e1 In 01 In 999]],(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}],usn2(Distinct `7esn` Ends With $usn2 Ends With 999) =~Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0) =~Any(`4esn` In `6esn`['s_str'..][010..] Where 01 Ends With .e0)"), - octest:ct_string("Merge ((({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(usn1 :_usn3{@usn6:True[..'s_str'][..01]})<-[`2esn`?]-(usn2 :`3esn`:`1esn`))) On Match Set `4esn` =.12 Is Not Null Is Not Null,{@usn6:True[..'s_str'][..01]}.`2esn` =12.e12[...0][..0x0],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}"), - octest:ct_string("Remove None(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 01234567[$`3esn`..]).#usn7,[@usn5 In $#usn8 Is Null Is Null Where $`3esn` Contains 0X0123456789ABCDEF Contains 00].`8esn`!,[`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn`[1e1..07][0x0..Count ( * )]|$`7esn` Is Null Is Null].`6esn` Union All With *,@usn5 Starts With 12e12 Starts With @usn5 Limit `2esn` In 12.e12 In `3esn`"), - octest:ct_string("Match `5esn`=(((`` :usn1)<-[#usn8:`3esn`|:`4esn` *0..010]->(`3esn` :usn2:@usn6)-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}))),((_usn3 :_usn4:usn1)<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})) Where $_usn3[Null] Union Optional Match (`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Where $`8esn` =~$usn2;"), - octest:ct_string("Merge _usn4=(usn1 :_usn4:usn1)<-[`5esn` *0..010]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) Union Merge usn2=(:`8esn`{usn2:7 Contains 9e1})<-[_usn3?:`7esn`|`2esn` *010]-(#usn8 :`4esn`:#usn8)-[`8esn` *..0x0{#usn7:Count ( * )[Count ( * )..12e12][usn1..1000],`4esn`:010 Is Null Is Null}]->(@usn6 ) Unwind 0x0 =~_usn4 As `5esn` Union Return 123456789 =~_usn4 =~$0 Order By 0xabc Starts With _usn3 Desc,(`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Ascending,Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) Contains Extract(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`) Desc Skip Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] Limit [@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2] Is Null Return Distinct *,.e1[usn1..],$1000[.e0..] As `3esn` Skip `5esn`[Count ( * )..][\"d_str\"..]"), - octest:ct_string("Unwind [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] As #usn7 Match ((`` :`1esn`)-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`4esn` {`2esn`:@usn6[`5esn`..$`3esn`],`7esn`:$`1esn` Is Null})) Where $`8esn`[$``..$7][$1000..$`7esn`]"), - octest:ct_string("Unwind 12e12 Starts With $123456789 Starts With 12.0 As usn1 Optional Match `3esn`=(({``:$1000 Is Null Is Null})) Where `1esn`[...e1] Union All Unwind 1e1[@usn5..] As _usn4"), - octest:ct_string("Match (@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0}),(((`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`5esn`)<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 ))) Union All Return Distinct All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null,0xabc[$@usn5] As `7esn`,.e0[usn2..] As _usn3 Skip 0x0 In `8esn` In 999 Merge #usn8=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) On Match Set `2esn`+=123.654 In \"d_str\" In $_usn3"), - octest:ct_string("Unwind 1.e1[Null][12.e12] As `7esn` Unwind Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) As `4esn` Create `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8}))"), - octest:ct_string("Remove [usn2 In 1000 Contains 0.e0 Where $_usn3[Null]|1000[..$`6esn`][..0xabc]].`` Merge (((:_usn4:usn1)-[@usn5?:@usn6*..]-(`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:@usn6]-(_usn3 :`4esn`:#usn8{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]}))) On Match Set `5esn` =999[.e12][01],Extract(usn1 In 0x0[..`4esn`] Where @usn6[$`3esn`]).#usn8? =`1esn` In 999 In $#usn7,usn1 =12.e12[0e0..7] Merge `8esn`=((`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) On Match Set Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0Xa Is Not Null Is Not Null)._usn3? =Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}),#usn7+=$`7esn` =~.e1,Filter(`4esn` In 's_str'[12..'s_str'] Where $123456789 Contains 01 Contains 0.12).#usn8! =.12[`1esn`..] On Create Set #usn8+=12[0X7..@usn6],{``:12e12[$`5esn`][07],_usn3:$`6esn` Is Null Is Null}.usn1 =$`6esn` Is Not Null Is Not Null Union Delete usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`]) Is Null,.12 Is Not Null Is Not Null,1e1 Starts With #usn8 Starts With 1.e1 Match ((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})),(_usn3 :_usn3)"), - octest:ct_string("Unwind {#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] As _usn3 Return 0.12[Count(*)..] Order By [@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0] Is Null Ascending,`2esn` Is Not Null Is Not Null Ascending,12.0 In 1000 In _usn4 Desc Skip 9e12[$1000][$@usn6] Limit $@usn6 Contains Count ( * ) Unwind 010 In @usn6 As usn2 Union Detach Delete [1e1[0.0],0.12 Contains $`2esn` Contains $_usn4],Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4)[..`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)][..{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}],{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[{`4esn`:$7 Ends With 12.0 Ends With 0xabc,_usn4:0X0123456789ABCDEF[.e0..$`4esn`]}..][Extract(`4esn` In `6esn`['s_str'..][010..] Where $999 Ends With $`3esn` Ends With `8esn`)..] Return Distinct *,\"d_str\"[Count ( * )] As `7esn`,0x0[123456789] As @usn6 Skip `1esn`[@usn6..$123456789]"), - octest:ct_string("Return Distinct *,None(@usn5 In 0X7 =~.0 =~\"d_str\" Where _usn3[...e1])[[_usn4 In usn1 Contains False Contains `` Where 0.12 In $7 In 0]..][[7[..12e12][..$`6esn`]]..],[usn1[..@usn5][...e0]][(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)] Skip `8esn`[$#usn7] Create (({#usn7:Count ( * )[@usn6..0x0]})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})) Remove All(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`).@usn6 Union All Detach Delete 0x0 Contains $`8esn` Contains `6esn` Merge _usn4=(usn1 :_usn4:usn1)<-[`5esn` *0..010]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) On Create Set `4esn` =$@usn6 Contains 07 Contains 0.e0 On Match Set [0X7 =~.0 =~\"d_str\",9e1[...e0]].@usn5 =Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}),{@usn6:usn1 In 1000 In $`5esn`,@usn6:9e0[``][123.654]}.`3esn`! =$999 In $`8esn` In `5esn` Union All Return [@usn5 In 0X7 =~.0 =~\"d_str\"|#usn7 Starts With `1esn`][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn`[...e1][..\"d_str\"])..][`2esn`(Distinct 12e12[Null],0xabc[12.e12..`1esn`])..],`2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As `6esn` Order By None(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00)[[@usn6 Starts With `7esn` Starts With Null]][{`1esn`:07[`6esn`..][`5esn`..],usn1:$usn2[False..`7esn`][`7esn`.._usn3]}] Ascending,[010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]][(:@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})..][Extract(#usn8 In $`5esn` Is Null Is Null Where 1000[0.0][Null])..] Ascending Unwind #usn8 Is Not Null As usn2"), - octest:ct_string("Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where True Contains @usn6|123456789 Starts With `2esn` Starts With 9e12).usn2? Create ((({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)<-[#usn7 *123456789..999]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}))) Merge ``=(`7esn` :`7esn`)-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0}) Union All Unwind Any(`4esn` In `6esn`['s_str'..][010..] Where \"d_str\" =~`6esn` =~0Xa)[[$`6esn` Is Null Is Null,0Xa Is Not Null Is Not Null,0X7 In 123.654 In $`2esn`]][[usn2 In 1000 Contains 0.e0 Where $_usn3[Null]|$0 =~$usn1 =~9e1]] As #usn8 Return *,usn2 =~0x0,07 In `5esn` In 12e12 Skip Null Contains 9e1 Limit [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] Unwind None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] As @usn5"), - octest:ct_string("Unwind False Ends With $`8esn` As `3esn` Create `1esn`=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(usn1 :`4esn`:#usn8{``:0 Is Not Null Is Not Null,`3esn`:usn1 Starts With $#usn7 Starts With `5esn`})) Union Unwind `2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As `4esn` Return Distinct *,01234567 Is Null Is Null Order By 0e0 =~Count(*) =~0Xa Descending Skip [$1000 Is Null Is Null] Is Null Limit Extract(@usn6 In @usn5 In $`6esn` Where $`5esn` Contains $@usn6|$0[7..][Null..])[[`6esn` In 0X7 =~`` Where 9e1[0.e0..][#usn8..]]]"), - octest:ct_string("With *,usn2 =~0x0,07 In `5esn` In 12e12 Skip `` Is Not Null Is Not Null Where usn1 Contains $`` Remove None(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True]).#usn7?,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]].@usn5?,[00[01234567][False]].`1esn`? Union Create (`2esn` :``)<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(_usn3 :_usn4:usn1),`8esn`=(`4esn` {@usn5:1e1 In $#usn8 In 12e12})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`7esn` {`8esn`:$123456789 Contains 01 Contains 0.12})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8) Remove (_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`).usn2,[`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]|12 Is Null Is Null].#usn8? Detach Delete 0X0123456789ABCDEF Contains 12.e12 Contains 999,0X0123456789ABCDEF In $1000 In $`3esn`,'s_str' Is Not Null Is Not Null Union All Create `8esn`=(((:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[:#usn7|:_usn4{``:$1000 Is Null Is Null}]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`}))) Remove [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`6esn`[$@usn6..]|010 =~$usn2 =~1e1].@usn6?"), - octest:ct_string("With Distinct *,$@usn6[..$usn1] As _usn3 Order By [`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) Desc Where 0.12 Contains $12 Contains `8esn` Create @usn5=(({`8esn`:$usn1[0.12..]['s_str'..],`8esn`:`1esn`[0e0..]})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})),_usn4=(@usn6 {#usn7:False[`2esn`..#usn8]})<-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]-(`4esn` {@usn6:True[..'s_str'][..01]}) Remove (:`6esn`:`7esn`{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12})-[ *00..{`2esn`:$0 Is Not Null}]-(`` :#usn7$0).``,[#usn7 In 01234567[$`3esn`..] Where 0Xa[0xabc..$#usn8]]._usn4!,[.12 Contains $`4esn` Contains $`6esn`].`6esn`? Union All Create (((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))),(@usn6 {`4esn`:$`2esn`[..`2esn`]})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})"), - octest:ct_string("Match `3esn`=(((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})-[?*..{`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}]-(`` :`3esn`:`1esn`{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-({usn1:010[@usn5..],`7esn`:`2esn` Is Not Null Is Not Null}))) Unwind 12e12[Count ( * )..][usn2..] As `3esn`"), - octest:ct_string("Remove (`` )<-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn4:usn1).`8esn`?,{usn2:0 Contains 12e12,#usn8:$`1esn` Starts With $999}.#usn8? Union All Remove All(`4esn` In 's_str'[12..'s_str'] Where $`8esn`[..$``]).`7esn`! Create `2esn`=(_usn4 {`8esn`:9e1 In 01 In 999})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Merge `8esn`=(({_usn3:$0 Ends With $#usn7 Ends With .12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[?:``|:_usn4 *..0X7]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})) Union All Remove [usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`|$`8esn`[$``..$7][$1000..$`7esn`]].`3esn`!,@usn6:#usn8,(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 Remove [@usn5 In 0X7 =~.0 =~\"d_str\" Where $`8esn` Starts With 1000|@usn6 Contains .e1 Contains $`4esn`].`8esn`!"), - octest:ct_string("Return Distinct 12e12[0.e0..True][0.12..0.0] As #usn7,07[..010][..12.0] As `2esn` Order By `3esn`(Distinct $_usn3[Null],12[..True][..$`4esn`]) Is Null Is Null Descending,Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) Ascending Skip Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 01234567[.12..7][1000..1.e1]|$`5esn` In False) Contains {@usn5:Null[0e0][12],_usn4:0 Contains 12e12} Contains [usn1 In 0x0[..`4esn`] Where \"d_str\" Contains `3esn` Contains 00|@usn6[`3esn`..][$7..]] Remove Single(`4esn` In `6esn`['s_str'..][010..] Where 12 =~usn1 =~.e12).`4esn`,`3esn`:`` Union All Detach Delete Extract(`4esn` In $`8esn` Starts With 1000 Where False In `3esn`|$`3esn` =~Null),12 Is Null Is Null With $`5esn`[$123456789][`1esn`] As `8esn`,[@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] As #usn7 Order By None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] Ascending,Count(*) In 01 In .0 Asc,Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`6esn`[$@usn6..]) In {`7esn`:12e12 Ends With 010 Ends With .0} In None(#usn8 In $`5esn` Is Null Is Null Where 123456789 In $usn2 In `6esn`) Asc Where 0.e0[9e0][0e0]"), - octest:ct_string("Remove All(_usn4 In usn1 Contains False Contains `` Where 0.12 In $7 In 0).@usn5 Union All Unwind [\"d_str\" Starts With $usn1,.12 Contains $`4esn` Contains $`6esn`,01234567 =~usn1] Is Null Is Null As _usn3 Remove Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]|`3esn` Contains 0Xa).usn1? Delete .12[..`6esn`][..\"d_str\"],$`6esn`[`3esn`..0e0],$_usn4[12e12][`4esn`] Union All Unwind [`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] As #usn8"), - octest:ct_string("Return Distinct .e0 Contains 01234567 Order By $#usn8[0xabc][`3esn`] Desc,[0 Is Null Is Null][..[_usn3 =~00,9e1 Is Null Is Null]] Descending Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) Contains Extract(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`) Union All Match ((:`3esn`:`1esn`{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->()),(((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))) Where 0xabc[$@usn5] Remove #usn7(Distinct $@usn6[..$usn1],9e12 Is Not Null Is Not Null).usn1 Union Remove `7esn`:`4esn`:#usn8,@usn6:usn2:@usn6 Create `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})),((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`1esn`{`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654}]->(`7esn` :`7esn`));"), - octest:ct_string("Create ((`` :`1esn`)-[`1esn`:usn2|#usn8 *1000..]-(`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[`4esn`]->({`8esn`:0X7 In 's_str' In $`1esn`})) Detach Delete {`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Union All Return Distinct *,[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As `7esn` Order By 00 Is Null Is Null Descending,$usn2 Starts With $`6esn` Starts With 0xabc Ascending,123456789 Starts With #usn7 Starts With `6esn` Asc Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`) Limit 0x0 Contains _usn4 Contains 123456789 Unwind Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4)[..`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)][..{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}] As #usn7 Remove ({`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[ *..0x0{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}]-(`5esn` {`8esn`:0.0[12...12]}).``!,Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null).``!,usn1:`8esn` Union Remove [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1|9e1 Starts With `1esn` Starts With 0Xa].usn2?,Count ( * ).@usn5?"), - octest:ct_string("Optional Match @usn6=((:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})-[?:`4esn`|:`7esn`]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})),`8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`}) Where @usn6[`3esn`..][$7..] Create ((`6esn` :_usn4:usn1{`6esn`:00 In 12.e12})<-[`7esn`?:`5esn`|`1esn`]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`})),(usn1 :`3esn`:`1esn`)-[?:`4esn`|:`7esn` *..0x0]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Match ((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})),(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))) Where $`8esn` =~$usn2 Union All Remove _usn4:`3esn`:`1esn`,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`! Return Distinct $`4esn` Contains `6esn` Contains #usn7,0.e0[..#usn8][..Null],$1000 Is Not Null Is Not Null Skip 's_str' =~0.e0 Limit `2esn` In 12.e12 In `3esn` Union Return Distinct [@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Order By 123456789 Starts With #usn7 Starts With `6esn` Descending,7[..0X7][..'s_str'] Ascending,None(`4esn` In 's_str'[12..'s_str'] Where 12.0[0Xa][00]) Is Not Null Desc Skip 0x0 Limit (:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[@usn6?:`1esn`]-(:`5esn`)-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`) Starts With Single(_usn4 In usn1 Contains False Contains `` Where $`6esn` Is Null Is Null) Match ((`7esn` :`2esn`:`3esn`{@usn6:9e0 Ends With $`7esn`})),``=((`3esn` )) Where $`1esn` Is Null Is Null"), - octest:ct_string("Unwind [0Xa Is Null Is Null] Is Null As `1esn` With Distinct $`2esn`[``..] As `3esn`,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn`,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] As @usn6 Order By `7esn`[1000..][$123456789..] Desc,$#usn8 In .e12 In 9e1 Descending,$@usn5 Contains $`7esn` Contains #usn8 Desc"), - octest:ct_string("Remove [usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`|$`8esn`[$``..$7][$1000..$`7esn`]].`3esn`!,@usn6:#usn8,(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 Remove [@usn5 In 0X7 =~.0 =~\"d_str\" Where $`8esn` Starts With 1000|@usn6 Contains .e1 Contains $`4esn`].`8esn`! Union Match ((`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`)<-[ *0X0123456789ABCDEF..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]->(_usn3 :_usn3)),(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Create ((:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})<-[@usn6:`3esn`|:`4esn`*]->(`6esn` :`5esn`)),(({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(:_usn4:usn1)) Union With All(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`)[[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]]..][({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})..] As #usn8,'s_str' In \"d_str\" In 123456789,None(`4esn` In 's_str'[12..'s_str'] Where 12.0[0Xa][00]) Is Not Null Order By 07[1e1] Ascending Limit .e0[usn2..][12..] Where 12 Ends With 01 Ends With 1e1;"), - octest:ct_string("Delete count(0.12 Ends With $usn1 Ends With $@usn5,@usn5 In $`6esn`) Is Not Null,$`8esn`[$``..$7][$1000..$`7esn`] Remove Filter(`6esn` In 0X7 =~`` Where $0[$#usn8..01234567]).`5esn`?,{#usn7:False[`2esn`..#usn8]}.#usn7?,usn1($`1esn` =~$`1esn` =~#usn7).`1esn`?;"), - octest:ct_string("Detach Delete Null Is Null Is Null,$`2esn` =~'s_str',`3esn` =~$`5esn` =~12 Union With 0x0[...e12][..@usn5] As @usn5 Limit `1esn`(Distinct Count(*)[..`3esn`]) Starts With $0 Where $12 Contains 123.654 Contains `8esn` Union All Remove Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]|`3esn` Contains 0Xa).usn1?"), - octest:ct_string("With *,[#usn8 In $`5esn` Is Null Is Null Where 0.0[..12e12][..$0]][{`2esn`:.e1 In $@usn6 In 999,usn2:@usn5 Ends With $`3esn` Ends With 12e12}..] As @usn5 Order By #usn7 Contains $7 Descending,$`8esn`[$``..$7][$1000..$`7esn`] Ascending,`1esn`(Distinct $@usn5[#usn8..][$`1esn`..],#usn7 Ends With `4esn` Ends With @usn5)[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|usn1[Count ( * )..$usn1]]][{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}] Descending Skip $#usn7 =~0xabc Limit ({`2esn`:$usn2 Is Not Null})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})[{_usn4:.12 =~.12 =~1e1,#usn7:.e1 Starts With 0.0 Starts With `6esn`}] Merge (((@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]-(usn1 :`3esn`:`1esn`))) On Create Set `7esn` =$`6esn` Is Not Null Is Not Null Union All Unwind Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4)[..`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)][..{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}] As `1esn` Detach Delete _usn3 Is Null,01 Contains 123456789"), - octest:ct_string("Optional Match `7esn`=(@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Union All Optional Match ``=((({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[usn2?]-(`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))),(:usn2:@usn6)-[ *07..]->(`5esn` :`2esn`:`3esn`{_usn3:$`2esn`[$123456789..$`1esn`][0Xa..$``],`5esn`:12.e12[@usn5..123.654]}) Where 0.12 In $7 In 0 Remove `3esn`:`7esn`,(:_usn4:usn1)-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]-(`1esn` :`1esn`).``?,usn2:#usn8"), - octest:ct_string("Merge `4esn`=(`6esn` :#usn8)-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]})-[:`4esn`|:`7esn`{`1esn`:123.654 In \"d_str\" In $_usn3}]-(`1esn` :`4esn`:#usn8{_usn4:$_usn4[#usn8..]}) Union Optional Match usn2=(((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),#usn7=(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))) Where $_usn4[`3esn`][0] Create (((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]})));"), - octest:ct_string("Merge ``=((@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`)) Union All Optional Match `4esn`=(({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})) Union Unwind 0.12 Contains $`2esn` Contains $_usn4 As @usn6 Merge `2esn`=(:usn1{`8esn`:usn1 Contains $``})-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1})-[ *010{@usn5:Null Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`];"), - octest:ct_string("Remove (`1esn` )<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})<-[@usn5?:`1esn`]-(_usn3 :`4esn`:#usn8{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})._usn4?,Any(@usn5 In $#usn8 Is Null Is Null Where False Contains `3esn`).`5esn`?,Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0).`2esn`? Remove (#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}).`8esn`? Union Detach Delete $_usn4['s_str'..] Unwind 1.e1 Is Not Null Is Not Null As `4esn` Union All Return *,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn`,@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn` Skip {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]}"), - octest:ct_string("Unwind `4esn`[7..][1000..] As usn2 Create ((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` )) Unwind $`2esn`[$123456789..$`1esn`][0Xa..$``] As `7esn` Union All Create `8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`})"), - octest:ct_string("Detach Delete $@usn5 In 12e12 In Count(*),`` =~12 =~$#usn7,Null Contains _usn4 Union Create ((usn2 {usn1:123.654 Contains #usn8,`8esn`:0x0 Starts With $`7esn` Starts With `2esn`})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})) With *,0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str' Order By [`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) Descending,$123456789 Ends With .e0 Ascending,({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) Desc Skip 0X0123456789ABCDEF[.e0..$`4esn`] Where 9e12[0.0..12.e12] Create ((usn1 :`6esn`:`7esn`)),((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)) Union Unwind $`1esn` Ends With _usn4 Ends With `3esn` As `8esn` Merge (`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(usn1 :#usn8)<-[ *..0x0{`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) On Create Set `6esn` =$@usn5[Count ( * )] On Create Set Single(usn1 In 00 Starts With _usn3 Where $`7esn` Ends With 07 Ends With 07).`6esn`? =Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789},@usn5 =[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0])],[usn1 In 00 Starts With _usn3 Where 12 Ends With .e12 Ends With $7|_usn3 =~00].#usn7! =Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null"), - octest:ct_string("Return $`3esn`[@usn5..$123456789] As _usn4,`5esn`[`1esn`..`1esn`] As #usn7,$0 =~$0 =~.e0 As `7esn` Skip 0e0 Starts With .e12 Delete ``[$`3esn`][$`2esn`],12 Ends With 01 Ends With 1e1,.12 Starts With 0Xa Union Return *,$@usn6[..12e12],`8esn` Ends With 0X0123456789ABCDEF Ends With `1esn` As usn2 Skip 1000[..$`6esn`][..0xabc] Limit $`8esn`[..$``] Union Create (_usn4 :@usn6:`7esn`)<-[#usn8?:_usn4|:@usn5 *..0x0]-(`6esn` :#usn7{`5esn`:#usn7 Is Not Null Is Not Null})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})"), - octest:ct_string("Delete $`2esn`[123456789..][00..],$`4esn`[9e1..][0..],$`2esn` Ends With `3esn` Ends With $7 Unwind [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] As _usn3 Union All With Distinct $12 Contains 123.654 Contains `8esn` As _usn4 Limit Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) Unwind $@usn5[Count ( * )] As _usn3 Unwind 999 Contains `7esn` As @usn5"), - octest:ct_string("Remove #usn7:_usn3,[`6esn` Starts With $usn2 Starts With 0.0,.e0[7..$`3esn`]].#usn8!,All(usn2 In 1000 Contains 0.e0 Where #usn7 Starts With .e12 Starts With $`7esn`).`4esn` Create _usn3=(($999)),``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)) Detach Delete {`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)],({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) In None(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn8 Ends With `4esn` Ends With $`4esn`) In Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])"), - octest:ct_string("Remove None(usn1 In 00 Starts With _usn3 Where 123456789[`4esn`..][Count ( * )..]).#usn8!,All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..])._usn4 Return Distinct *,(_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)[Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] As `8esn`,[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `8esn` Order By @usn5 Starts With 12e12 Starts With @usn5 Desc Skip _usn4(usn1[Count ( * )..$usn1],_usn3 Ends With 12e12 Ends With .e0)[All(usn1 In 0x0[..`4esn`] Where $`2esn`[123456789..][00..])..Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``])][[@usn6 In @usn5 In $`6esn` Where $``[_usn4..][`7esn`..]|12.e12 In $0 In Count(*)]..(:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)] Merge `4esn`=({`8esn`:0X7 In 's_str' In $`1esn`}) On Match Set usn2+=.e1 Ends With _usn4 Ends With @usn5,@usn5+=_usn3 In .e1 In $12,Extract(`4esn` In `6esn`[1e1..] Where $`7esn` Ends With `1esn` Ends With True).`` =010 In @usn6 On Match Set usn1 =Count ( * ) =~All(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)"), - octest:ct_string("Remove [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``?,None(@usn5 In .12[#usn7][$`8esn`] Where 0X7[.e12..01234567]).`5esn`!,`8esn`:`6esn`:`7esn` With 0Xa Starts With 0.12 Starts With .0 As usn2,[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4,$@usn6 Contains 0 Contains $`2esn` As `` Limit 1e1 In $999 In $usn2 Detach Delete Any(#usn7 In 01234567[$`3esn`..] Where 00 In 1e1)[[usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0|0xabc[12.e12..`1esn`]]..][[@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2]..],0.0[.e12][7],{`4esn`:0X7 =~.0 =~\"d_str\",_usn4:00 Ends With $_usn4 Ends With $`2esn`} Ends With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Ends With [$`3esn`[@usn5..$123456789],00,'s_str'[.12..$#usn7][$999..`2esn`]] Union All Delete Count ( * )[.0..][$999..],_usn3[...e1],Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}) Return Distinct 0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str' Limit usn2[$`7esn`..010][00..``] With @usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Limit .12 Is Not Null Is Not Null Union All Match (#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}),((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})) Where $`6esn`[`1esn`..][.e0..]"), - octest:ct_string("Detach Delete `6esn` =~01234567 =~0Xa,0.0 Is Null Is Null,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} Optional Match _usn4=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),(((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})-[?*..{`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}]-(`` :`3esn`:`1esn`{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-({usn1:010[@usn5..],`7esn`:`2esn` Is Not Null Is Not Null}))) Where $`` Ends With 12e12 Unwind Count(*)[`7esn`..$12] As `1esn` Union All Create (((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))),(@usn6 {`4esn`:$`2esn`[..`2esn`]})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null});"), - octest:ct_string("Return *,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn`,$_usn3 In $#usn8 As #usn7"), - octest:ct_string("Remove Extract(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`).`5esn`?,(`2esn` {`3esn`:$999[12.0..]})-[:usn2|#usn8 *01234567..12{usn2:$`3esn` In $12 In 's_str'}]-(usn1 :_usn3).`5esn` Unwind $#usn8 As _usn3 Unwind usn1 In 1000 In $`5esn` As #usn8"), - octest:ct_string("Unwind $123456789 In Count(*) In .e1 As usn1 Union All Delete [@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12]][{@usn6:.12 Starts With 0Xa}..(`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})],usn1[1e1][$_usn4] Remove {_usn4:00 In 0.12 In `5esn`,@usn5:0X7 =~.0 =~\"d_str\"}.`6esn`? Optional Match `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) Union Return *,usn1[Count ( * )..$usn1] As usn1,$`2esn` =~'s_str' As @usn5;"), - octest:ct_string("Return *,{`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) As `2esn` Order By (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Asc,.e1[..$``][..0X0123456789ABCDEF] Ascending Limit Extract(`4esn` In `6esn`[1e1..] Where 123456789 =~_usn4 =~$0) Contains (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6) Contains ({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[`7esn`?:#usn8]->(@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0}) Return *,.e1[$_usn4][1e1] As `7esn` Order By 9e0 Ends With $`7esn` Asc Skip 's_str'[12..'s_str']"), - octest:ct_string("Return $`4esn` Contains 0Xa,010 In `7esn` Limit False Contains `3esn` With Filter(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[[1e1[0.0],0 Contains 12e12,$123456789[..0x0][..`4esn`]]] As `3esn`,False[`2esn`..#usn8],00 Is Null Is Null Order By {`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,0.12 In $7 In 0 Desc Skip 9e12[0.0..12.e12] Limit $usn1[.e12..`8esn`][True..$@usn5] Create (usn2 :#usn8{`3esn`:123.654[@usn5]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`}) Union All Optional Match ``=(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12}) Where 123456789[$#usn7..] Remove (:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`2esn`]-(`6esn` :#usn7)-[_usn4?:`6esn`]-(@usn5 :`8esn`).`7esn`,`7esn`(usn2 Is Null Is Null,`6esn` =~$_usn3).`1esn`! Union All Unwind 999 Contains `7esn` As `7esn`"), - octest:ct_string("Remove [usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]]._usn3,{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12}.@usn6,[usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]].usn2? Match (((`7esn` :``)<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:usn1|`3esn`*]->(:_usn3{`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`}))) With `3esn` Contains 0Xa As `6esn`,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,[usn1[..@usn5][...e0]][(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)]"), - octest:ct_string("With $_usn4[$`1esn`] As `5esn`,(:`5esn`{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[usn1 *..0x0]->(usn1 :`6esn`:`7esn`)-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})[..[07[$999],@usn6[$`7esn`]]][.._usn4(0X7 In $@usn5 In 9e0)] As `6esn`,All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..] As `5esn` Order By True[0x0][@usn6] Ascending,$`5esn` Contains $@usn6 Desc Skip Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null Limit _usn3 In $#usn8 In usn1 Where 's_str'[..0.e0][..`1esn`] With *,.e0[..0X0123456789ABCDEF][...e12] As `6esn` Order By usn2[`3esn`][_usn3] Asc Skip 7[$`4esn`..123456789] Union Return Distinct \"d_str\",0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',$@usn5[01] Order By 01234567 Starts With $_usn4 Desc,0.12 Contains .e1 Ascending,0x0 =~_usn4 Descending Skip [usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]] Contains None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]) Contains Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`])"), - octest:ct_string("Unwind (_usn3 )<-[usn1]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})-[_usn4?:`6esn`]->(`8esn` :`1esn`) =~Single(#usn7 In 01234567[$`3esn`..] Where 0.12 In $`4esn` In `6esn`) =~Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|$`8esn`[..123456789]) As `2esn` Union Create @usn6=((:``{`5esn`:.e1 In $@usn6 In 999})),`4esn`=((`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) Detach Delete 0X0123456789ABCDEF Contains 12.e12 Contains 999,0X0123456789ABCDEF In $1000 In $`3esn`,'s_str' Is Not Null Is Not Null Union Merge ((_usn4 {`8esn`:9e1 In 01 In 999})) With Distinct .e12[.12..][_usn4..] As _usn4,{`7esn`:.e0 Contains #usn7 Contains $#usn8}[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..None(`6esn` In 0X7 =~`` Where 12.e12['s_str'])][(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})..({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})],$999[$_usn4..][$`5esn`..]"), - octest:ct_string("Create ((_usn4 :`7esn`)<-[`6esn`:usn1|`3esn`]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})<-[``?:_usn3|:`4esn`]-(:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})) Union Optional Match (`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}),(:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}) Where Null[01234567][01234567] Create usn1=((#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`6esn`?:usn1|`3esn`{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})) Remove usn1:`1esn` Union With Distinct *,$usn2[12..$`7esn`][$0..$`7esn`],[0Xa[$``..][01234567..]] Contains `3esn`(Distinct _usn3 In .e1 In $12) Contains (`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']}) As @usn6 Skip 9e1 Starts With 9e1 Starts With 010 Limit `3esn`(Distinct 0.0[999..])[Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..[010 =~$usn2 =~1e1,`1esn`[@usn6..$123456789]]] Merge ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) On Match Set (`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})<-[?{#usn7:`6esn`[False..0.0][12e12..$usn2]}]-(`4esn` {`4esn`:#usn7[..$1000][..01]})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}).`4esn`! =0 Is Not Null,`6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`1esn` =$_usn3[$`4esn`..Null] On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Merge (`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(`7esn` :`8esn`{`4esn`:00 Ends With .12 Ends With `4esn`})-[ *07..]->(usn2 :@usn6:`7esn`) On Create Set #usn8:_usn4:usn1,[0 Is Not Null Is Not Null].usn2! =(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')]"), - octest:ct_string("Create _usn3=((({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']})-[:usn2|#usn8*..]-(`5esn` :`7esn`))),(_usn4 :`7esn`)<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}) Return *,.12[`1esn`..][$`3esn`..] As usn2 Limit usn2 Starts With @usn6 With 0.12[Count(*)..] Order By .0 Is Null Is Null Ascending,`1esn`(Distinct $@usn5[#usn8..][$`1esn`..],#usn7 Ends With `4esn` Ends With @usn5)[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|usn1[Count ( * )..$usn1]]][{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}] Asc Skip 0 Contains 12e12"), - octest:ct_string("Remove (_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`).usn2,Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 123456789[$#usn7..]|.e12 Contains $12 Contains 12.e12).usn1?,{_usn3:'s_str' =~0.e0}.usn2? Delete [usn1[..$_usn4][..``],0X7[.e12..01234567]] In `3esn`(@usn5[..True][..0X7],$`3esn` =~$`7esn` =~False) Union All Return *,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn` Skip 1e1[..False] Limit 12e12[$`5esn`][07] Detach Delete .e1[$_usn4][1e1] Union All With Distinct 0 =~12.e12 =~$``,0.12 Contains .e1 As `6esn`,01 Contains $`7esn` Contains 9e0 Order By Count ( * )[..1e1] Asc,_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) Asc,[0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] Ascending Skip Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] Limit _usn3(0x0[0X7..][usn1..])[..Any(#usn8 In $`5esn` Is Null Is Null Where 999[$`8esn`])][..{#usn7:False[`2esn`..#usn8]}] Create `8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))"), - octest:ct_string("With *,123.654[`5esn`] Skip `2esn`(`2esn`[$`3esn`..],$`4esn`[12.0..`5esn`])[..Extract(usn1 In 00 Starts With _usn3 Where `6esn`[1e1..]|_usn3 In .e1 In $12)][..Extract(#usn7 In 01234567[$`3esn`..]|0.0[999..])] Limit $_usn3[..$_usn3][.._usn4] Where False Is Not Null Is Not Null"), - octest:ct_string("Remove None(usn1 In 0x0[..`4esn`] Where False[.e1..Null]).``,[.e0[..999][..0X7]].`5esn`? Unwind Extract(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..]) Contains Extract(#usn8 In $`5esn` Is Null Is Null Where @usn6 Contains .e1 Contains $`4esn`) Contains Any(`4esn` In `6esn`['s_str'..][010..] Where 12.e12 Ends With 01 Ends With .e1) As usn2 Union All Unwind (@usn6 :``{@usn5:@usn5 Starts With 12e12 Starts With @usn5})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn4:usn1)-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) In Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) In (usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]}) As `1esn` Match `1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}),`1esn`=(((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))) Remove None(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True]).#usn7?,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]].@usn5?,[00[01234567][False]].`1esn`?;"), - octest:ct_string("Create ((`6esn` :_usn4:usn1{`6esn`:00 In 12.e12})<-[`7esn`?:`5esn`|`1esn`]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`})),(usn1 :`3esn`:`1esn`)-[?:`4esn`|:`7esn` *..0x0]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Union All Delete `2esn`[$`3esn`..],{@usn5:$@usn6[..$usn1],`1esn`:usn2[`3esn`][_usn3]}[..Any(`4esn` In 's_str'[12..'s_str'] Where Null Contains _usn4)][..{`7esn`:True[..'s_str'][..01]}],0.0[Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|_usn3 Ends With 12e12 Ends With .e0)][None(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5)..{@usn6:.12 Starts With 0Xa}] Unwind `3esn` =~$`5esn` =~12 As `7esn` Union Return $`4esn` Contains 0Xa,010 In `7esn` Limit False Contains `3esn` With Filter(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[[1e1[0.0],0 Contains 12e12,$123456789[..0x0][..`4esn`]]] As `3esn`,False[`2esn`..#usn8],00 Is Null Is Null Order By {`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,0.12 In $7 In 0 Desc Skip 9e12[0.0..12.e12] Limit $usn1[.e12..`8esn`][True..$@usn5] Create (usn2 :#usn8{`3esn`:123.654[@usn5]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})"), - octest:ct_string("Create (((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))),#usn7=(`1esn` :_usn4:usn1) Union Return Distinct ({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}),@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn`,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7 Order By $@usn6[usn2(`3esn`[$`1esn`..])] Asc,12 Ends With 01 Ends With 1e1 Ascending Skip 07[07] Limit 123.654[@usn5] With Distinct Count ( * )[@usn6..0x0],.e0 Is Not Null Is Not Null As `2esn`,usn2 Is Not Null Is Not Null As `2esn` Skip $@usn5 =~$`` =~$usn2 Where `` Starts With 12 Merge ((:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})) On Match Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..]"), - octest:ct_string("Merge _usn3=((_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})) Optional Match #usn7=(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})<-[`2esn` *12..0xabc{`6esn`:$123456789[0.0..],@usn5:999[$`6esn`]}]-(`7esn` {`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) Match `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Union Merge ((@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})) On Match Set `6esn`+=7[$`4esn`..123456789],`1esn` =(:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]),{_usn3:'s_str' =~0.e0}.usn2? =Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0]|999[``..][Null..]] Ends With Any(`4esn` In `6esn`[1e1..] Where False[`2esn`..#usn8])"), - octest:ct_string("With *,$usn1 In 1000 In $#usn7 As `8esn`,$@usn6 =~$#usn8 =~$#usn7 As `2esn` Order By 0Xa[0xabc..$#usn8] Desc Skip `1esn`[`3esn`..][$@usn6..] Delete `6esn` Starts With $`5esn`,$`8esn`[..123456789],`` =~12 =~$#usn7 Merge usn1=((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})) On Create Set `2esn`+=123.654 In \"d_str\" In $_usn3 Union Remove ({`3esn`:1e1 Is Null})-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->(`4esn` {`7esn`:.e0[..999][..0X7]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}).`4esn`?,None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`6esn`[$@usn6..]).`` Remove [1e1 In $#usn8 In 12e12,7 In @usn5 In $`4esn`].`5esn`!,`7esn`:`1esn`,usn2:usn1 Optional Match #usn8=((({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null})<-[`7esn`?:`8esn`|:usn1]-(`7esn` :#usn8)-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`)));"), - octest:ct_string("Return Distinct 7[$`4esn`..123456789] As `2esn` Limit 1000 Ends With 1000 Ends With $`4esn` Union All Create #usn8=(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}) Union Remove None(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True]).#usn7?,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]].@usn5?,[00[01234567][False]].`1esn`?"), - octest:ct_string("Merge (`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) On Create Set Filter(usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01).`8esn`! =`6esn`[..`5esn`] On Create Set `1esn`+=`2esn`[$`3esn`..],`2esn` =$usn2[..12.0],usn1+=usn1[$`3esn`..$999][True..False] Unwind Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] As _usn3 Union All Create ((`5esn` {_usn4:0X7 =~``})<-[`2esn`?:usn2|#usn8{`6esn`:0X7[.e12..01234567],@usn6:`7esn`[...e1][..\"d_str\"]}]->(`5esn` :`8esn`{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False}))"), - octest:ct_string("Unwind $@usn5[0.12..][@usn5..] As `2esn` Remove [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1].usn1,None(@usn5 In .12[#usn7][$`8esn`] Where 123456789 Is Null).`1esn`? Union All Return Distinct *,.e1 Starts With $`8esn` Skip 0xabc[12.e12..`1esn`] Limit 0.e0[@usn6][0x0] Union All With Distinct *,Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) As _usn3 Skip 010 Starts With `7esn` Starts With 9e1 Limit 07[12][$`6esn`] Where $_usn4[$`8esn`..][07..] Unwind 9e0[False] As #usn8 Detach Delete .e0 Is Not Null Is Not Null,{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]} =~Single(usn2 In 1000 Contains 0.e0) =~Any(@usn6 In @usn5 In $`6esn` Where $`7esn` Is Not Null)"), - octest:ct_string("Match `2esn`=(`` :usn2:@usn6)<-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`7esn` :`4esn`:#usn8{`2esn`:Count(*)[..`3esn`]}),(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})-[`4esn`:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]-(_usn3 :``)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->({`1esn`:0.0[1000..][.e1..]}) Union Detach Delete $`1esn` Ends With $`1esn`,12e12[$`5esn`][07] Return *,.e0[..0X0123456789ABCDEF][...e12] As `6esn` Order By $123456789[$``][010] Desc,`4esn` =~$`3esn` =~$123456789 Ascending,@usn5 Starts With 12e12 Starts With @usn5 Desc Skip [$12 Is Null Is Null,999 Contains Count ( * ) Contains 123.654][Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`)..Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0)][[Null Contains _usn4,$`7esn` Is Null Is Null]..({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3})] Limit 7[..12e12][..$`6esn`] Optional Match ((:usn1)-[:@usn5|`8esn` *123456789..999{usn1:9e12 Is Not Null Is Not Null}]-(#usn7 :`5esn`)),`3esn`=(({``:$1000 Is Null Is Null})) Where 010 Is Null Is Null Union All Unwind $7[.12] As @usn6 Detach Delete ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] Match usn1=(`4esn` :#usn7)-[_usn4?:`6esn`]-(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) Where $`5esn` In `2esn` In .0"), - octest:ct_string("With 123.654 Is Not Null Is Not Null As `3esn`,01[Null..][`1esn`..] Where Null[..12e12][..usn1] Optional Match `3esn`=(usn1 :`6esn`:`7esn`),`1esn`=(({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})) Union With Distinct *,\"d_str\"[Count ( * )] As `7esn`,0x0[123456789] As @usn6 Order By 0.0 Is Null Is Null Ascending,$usn2[0e0..] Descending,'s_str'[..0.0][..$`4esn`] Ascending Union All With *,0 Is Not Null Order By 07[`6esn`..][`5esn`..] Desc,_usn3[`3esn`][False] Ascending,Extract(usn2 In 1000 Contains 0.e0) Ends With Single(usn1 In 0x0[..`4esn`] Where 12.e12 Contains `5esn`) Ends With Single(usn1 In 00 Starts With _usn3 Where $0[01234567..00][$`2esn`..$@usn6]) Desc Where $#usn7 In .e1 In 01 Remove [0x0 =~$`7esn` =~@usn6,$#usn8 Is Null Is Null,0 Is Not Null Is Not Null].#usn8?,(`5esn` {@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]})<-[_usn3 *0Xa$_usn3]-(`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}).usn2?,[$`5esn` Starts With _usn3 Starts With @usn5,$@usn6 =~usn1,0.0[12...12]].#usn7!"), - octest:ct_string("Merge ((:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})) Create (`6esn` :`5esn`)<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6),_usn3=(($999)) Union Create #usn8=((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(#usn7 :`3esn`:`1esn`)<-[?{`4esn`:12e12[$`5esn`][07]}]-(:`1esn`{_usn4:$_usn3[Null]})) Remove {`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}.#usn8? Create (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Union All Unwind 07[12e12] As `4esn` Remove Extract(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`).`5esn`?,(`2esn` {`3esn`:$999[12.0..]})-[:usn2|#usn8 *01234567..12{usn2:$`3esn` In $12 In 's_str'}]-(usn1 :_usn3).`5esn`;"), - octest:ct_string("With `5esn` In 12 As usn2,Count(*) Starts With 1e1 Starts With $123456789 As #usn7,[`4esn` In 's_str'[12..'s_str'] Where 9e1 Contains $`3esn` Contains 01234567][[7[..12e12][..$`6esn`]]..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}] As #usn8 Order By 00 In 12.e12 Descending,9e0 Ends With $`7esn` Asc Skip 01234567 Is Null Is Null Limit $123456789 In Count(*) In .e1 Where $123456789 Ends With $`6esn` Merge usn2=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) Union All Unwind Any(`4esn` In `6esn`['s_str'..][010..] Where \"d_str\" =~`6esn` =~0Xa)[[$`6esn` Is Null Is Null,0Xa Is Not Null Is Not Null,0X7 In 123.654 In $`2esn`]][[usn2 In 1000 Contains 0.e0 Where $_usn3[Null]|$0 =~$usn1 =~9e1]] As #usn8 Return *,usn2 =~0x0,07 In `5esn` In 12e12 Skip Null Contains 9e1 Limit [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] Unwind None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] As @usn5 Union With $`` Ends With 12e12 As `6esn`,(`4esn` :`8esn`{_usn4:0 Is Null Is Null})-[`6esn`:`8esn`|:usn1$_usn3]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Ends With Filter(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999) Ends With [`4esn` In `6esn`[1e1..] Where 07[12e12]],$999[$1000] Where .12 =~.12 =~1e1;"), - octest:ct_string("Return Distinct @usn5[_usn4..][.e0..] As usn1,$@usn6[..$#usn7][..12.e12] Order By $_usn4[`3esn`][0] Descending,.12 Starts With 0Xa Asc Union All Create _usn3=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)),(((`3esn` :`8esn`)-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(_usn3 :usn2:@usn6)-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}))) Merge ((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})) On Create Set [$`6esn` Is Null Is Null,Count ( * )[@usn6..0x0],0.0[1000..][.e1..]]._usn3! =.0 Starts With `2esn` Starts With `6esn`,({``:\"d_str\",`1esn`:$1000 =~$`7esn`})-[usn1?:_usn3|:`4esn` *123456789..999{`6esn`:01 Ends With .e0,`4esn`:$`7esn` Is Not Null}]->(_usn3 ).`4esn` =usn2 Is Not Null Match (#usn7 :@usn5)-[`4esn`:_usn3|:`4esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:usn1{`8esn`:usn1 Contains $``}),``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]});"), - octest:ct_string("Unwind 0X7[..12e12] As _usn3 Create ``=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3})));"), - octest:ct_string("With .e0[usn2..][12..] As `1esn`,12.e12[...0][..0x0],`` Contains 12 Contains True As `6esn` Skip `6esn`[0X7..][0x0..] Limit 9e1 Starts With `1esn` Starts With 0Xa Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.0[0Xa][00]|$`1esn` Starts With $999).`6esn`,Any(`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]).`3esn` Union Delete 01234567[$`3esn`..],(:`5esn`{@usn6:0Xa Is Not Null Is Not Null,usn2:@usn6 =~01})<-[`2esn`?*..]->(:#usn8{`5esn`:0 Contains 12e12})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}) Is Null With Distinct Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`] As #usn7,\"d_str\" =~`6esn` =~0Xa As `4esn` Order By 00 In 12.e12 Descending,9e0 Ends With $`7esn` Asc Limit $7[.12] Where 01234567[$`3esn`..];"), - octest:ct_string("Delete 00 Ends With $_usn4 Ends With $`2esn`,.12[`1esn`..][$`3esn`..] Merge ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[ *010{@usn5:Null Is Null Is Null}]-({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]})) Merge ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})-[@usn6?:#usn7|:_usn4 *00..]->(`` :@usn5{#usn7:0X7[12]})) On Match Set (@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`6esn`:`4esn`|:`7esn` *1000..{`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}]->(:#usn7)<-[`5esn`:`8esn`|:usn1]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}).#usn7? =1000 Contains 123456789 Contains 1e1 On Match Set usn1+=`4esn` Is Null Union Match `1esn`=(((`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})-[ *010{@usn5:Null Is Null Is Null}]-(:`5esn`)<-[`7esn`{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}]-(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}))) Create ((`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})),_usn4=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})) Remove {`6esn`:9e1 Contains $`3esn` Contains 01234567}.`2esn` Union Merge (_usn4 :@usn6:`7esn`)<-[#usn8?:_usn4|:@usn5 *..0x0]-(`6esn` :#usn7{`5esn`:#usn7 Is Not Null Is Not Null})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000});"), - octest:ct_string("With *,`7esn`[...e1][..\"d_str\"],12e12[0.e0..True][0.12..0.0] As #usn7 Order By 0xabc[12.e12..`1esn`] Ascending,12.e12 In $1000 Ascending,[`6esn` In 0X7 =~`` Where 0.12[Null..]] Is Null Is Null Ascending Limit Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1)[00..] Where 0.e0[..#usn8][..Null] Remove #usn8(Distinct $999 Ends With $`3esn` Ends With `8esn`,@usn5[_usn4..][.e0..]).`8esn`?,@usn5:#usn8 Unwind _usn4[$`4esn`][0X7] As #usn7;"), - octest:ct_string("Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..] Union Delete $`2esn`[123456789..][00..],$`4esn`[9e1..][0..],$`2esn` Ends With `3esn` Ends With $7 Unwind [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] As _usn3 Union Match `5esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Optional Match @usn5=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) Where 07[12e12];"), - octest:ct_string("Match @usn5=(((:`1esn`{#usn7:1e1[`6esn`..]})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where $0[01234567..00][$`2esn`..$@usn6] With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null,0xabc[$@usn5] As `7esn`,.e0[usn2..] As _usn3 Skip 0x0 In `8esn` In 999 Where 07[0..`4esn`];"), - octest:ct_string("Remove None(`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]).`2esn`!,{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}.`6esn`?,usn2:#usn8 Union All Unwind $_usn4[0.12..$`6esn`][00..$@usn6] As `` Merge `2esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})) Union All Return Distinct *,[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As `7esn` Skip _usn4(Distinct `7esn` Starts With $usn2 Starts With .e0) =~`3esn`() =~#usn8(9e0 Ends With $`7esn`) Match (`` :`7esn`)<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]}) Where $`4esn`[12.0..`5esn`] Create `1esn`=(((usn1 :`4esn`:#usn8)-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}))),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`)<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6));"), - octest:ct_string("Unwind All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])] As #usn8 Merge ((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) On Match Set usn1+=_usn4[$`4esn`][0X7] On Create Set `4esn` =010 In `7esn`,usn2+=0.e0[@usn6][0x0] Unwind 0X7[..12e12] As _usn3;"), - octest:ct_string("Create (#usn7 :`6esn`:`7esn`)<-[`3esn`?:_usn3|:`4esn`]->(:`1esn`{_usn4:$_usn3[Null]})-[ *..0X7]->(`5esn` :_usn4:usn1),usn2=(`8esn` :#usn8)-[usn2?]-(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]}) Union All Match `1esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) Where $123456789 Is Not Null Is Not Null Merge _usn4=(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) On Create Set _usn3 =(usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Is Null Is Null,`1esn` =7 Contains $`5esn` Contains $usn1,usn2 =\"d_str\" =~`3esn` =~0x0 On Match Set @usn6+=(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}];"), - octest:ct_string("Unwind $usn2 Is Not Null Is Not Null As `8esn` Delete [_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]] Ends With [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]],Single(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8)[{_usn3:$0 Ends With $#usn7 Ends With .12}][[12.0[0Xa][00],.0[01][$12]]] Union All Create (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}))),`4esn`=((`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})) Return $`6esn` =~$#usn8 As #usn8 Order By (#usn7 :#usn8)-[`6esn`:`4esn`|:`7esn` *..0x0]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})[Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])][Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])] Descending Limit Null Contains 9e1 Union Optional Match @usn6=((:``{`5esn`:.e1 In $@usn6 In 999})),`4esn`=((`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) With `6esn`['s_str'..][010..],$`4esn` Contains 0Xa Where 0X0123456789ABCDEF In $1000 In $`3esn` With `` Starts With 12,[@usn5 In .12[#usn7][$`8esn`] Where $_usn4[12e12][`4esn`]][`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])..``(False In `3esn`)][[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]]..Filter(@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12])] As `4esn`,Count(*)[`7esn`..$12] As `` Skip 0X7[..12e12] Where 9e12[..$``][..`6esn`];"), - octest:ct_string("Merge ((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)) On Create Set All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 9e12[usn2..7][.e1..$`7esn`])._usn3? =$`1esn` =~$`1esn` =~#usn7,`2esn`+={`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] On Create Set None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7).`2esn`! =.e1[..$`4esn`][.._usn4] Union All Delete 9e0[$_usn3..0X7][7..$#usn8],Extract(`4esn` In 's_str'[12..'s_str'] Where 00 Starts With _usn3|$`1esn` Is Null Is Null) Is Null Is Null,0.12 Is Null Is Null Detach Delete 010 Starts With `7esn` Starts With 9e1 Union All Delete $``[_usn4..][`7esn`..],{`1esn`:9e1[0.e0..][#usn8..]} Starts With Single(`4esn` In 's_str'[12..'s_str'] Where @usn5 In 0X0123456789ABCDEF) Starts With All(#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7),All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null Unwind All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12) Starts With Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Contains .0 Contains .e1) As ``;"), - octest:ct_string("Unwind 1e1[@usn5..] As _usn4 Union Optional Match @usn5=((:#usn8$usn1)-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})),((#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})) Unwind Count(*) Is Null As `2esn` Create (@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Union Return 's_str'[.12..$#usn7][$999..`2esn`] As `5esn` Order By Count ( * ) In 010 Descending,12e12[_usn3..][$@usn5..] Ascending,usn2 Starts With `6esn` Starts With 12e12 Desc Limit Count ( * )[..usn1][..12.e12] Return Distinct *,[#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|@usn6 Starts With `7esn` Starts With Null] Is Not Null Is Not Null,`8esn`[_usn3..$#usn7] Order By 's_str' Starts With 1000 Starts With #usn8 Descending;"), - octest:ct_string("Create (`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :`4esn`:#usn8) Unwind Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] As _usn3 Create ``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}),(`` :usn1) Union Remove None(_usn4 In usn1 Contains False Contains `` Where $`8esn`[$``..$7][$1000..$`7esn`])._usn3?,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`).`3esn`? Create #usn8=((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}));"), - octest:ct_string("Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`).``? Unwind $_usn4[`3esn`][0] As `7esn` Optional Match ((`5esn` :#usn7)<-[?:usn2|#usn8 *1000..]->(@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})),`2esn`=((:@usn5{#usn7:1e1[@usn5..]})<-[? *0..010]-({@usn6:$123456789 Is Null Is Null,@usn6:`6esn`[1.e1..$#usn7][.e0..True]})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]})) Where False In 123456789 In $0;"), - octest:ct_string("Remove Single(#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4).@usn6,[@usn6 In @usn5 In $`6esn` Where 12.0[0Xa][00]|0Xa Is Not Null Is Not Null].`4esn`! Union All Return Distinct *,01234567 Starts With $_usn4 As `1esn`,Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789} Order By [@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Ascending,0.0[Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|_usn3 Ends With 12e12 Ends With .e0)][None(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5)..{@usn6:.12 Starts With 0Xa}] Asc Limit 0x0 Is Not Null Is Not Null Create (`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0}) Return Distinct *,[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As `7esn` Order By 00 Is Null Is Null Descending,$usn2 Starts With $`6esn` Starts With 0xabc Ascending,123456789 Starts With #usn7 Starts With `6esn` Asc Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`) Limit 0x0 Contains _usn4 Contains 123456789;"), - octest:ct_string("Match `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Where 's_str'[12..'s_str'] Match _usn4=(@usn6 {#usn7:False[`2esn`..#usn8]})<-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]-(`4esn` {@usn6:True[..'s_str'][..01]}),`6esn`=(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]}) Where usn2[$`1esn`...0] Unwind $`1esn`[$usn2..][$1000..] As `3esn`;"), - octest:ct_string("Match (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0) With *,12.0[``] As @usn6 Order By \"d_str\" =~`3esn` =~0Xa Desc,_usn3[0] Desc,`5esn` Ends With .e1 Ends With $_usn4 Asc Unwind @usn6 Contains _usn4 Contains $`4esn` As `4esn`;"), - octest:ct_string("With Distinct ({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn`,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn` Skip 010 Starts With `7esn` Starts With 9e1 Limit 0Xa Starts With $`4esn` Starts With 1e1 Unwind 1e1 In 9e0 In 9e0 As _usn4 Union Remove (@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`6esn`,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]).usn2!,(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn`]->(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`1esn`! Unwind Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `4esn` Unwind {`4esn`:0X7 =~.0 =~\"d_str\",_usn4:00 Ends With $_usn4 Ends With $`2esn`} Ends With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Ends With [$`3esn`[@usn5..$123456789],00,'s_str'[.12..$#usn7][$999..`2esn`]] As usn1;"), - octest:ct_string("Unwind ({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) As @usn6 Match `5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Where $``[False] Create usn2=((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn2 *0X0123456789ABCDEF..{usn2:`` Starts With 12}]-(`4esn` {`7esn`:.e0[..999][..0X7]})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})),usn2=({_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[@usn5?:``|:_usn4]-($12);"), - octest:ct_string("Create ``=((_usn4 )-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})) Unwind `3esn` =~$`5esn` =~12 As `7esn` Union All Detach Delete 12.e12[0e0..7],{_usn3:0X7 =~`4esn` =~`8esn`,`2esn`:$`3esn` Starts With $usn1} Is Not Null,`3esn`(`7esn` Starts With $usn2 Starts With .e0,$_usn3 =~`7esn` =~$_usn4)[[$`2esn`[123456789..][00..],Count ( * )[@usn6..0x0]]..][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0)..] Union All Remove All(`4esn` In `6esn`[1e1..] Where _usn3 Is Null).@usn5!,usn2($`` Is Null Is Null).`6esn` Remove _usn4($`6esn`[$@usn6..],_usn3[.0]).#usn8,{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}._usn4,(`6esn` $`8esn`)-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]}).`4esn`! Return Distinct {`5esn`:123.654[@usn5]} Is Not Null Is Not Null,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] Skip (#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})[Filter(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 0.12 Ends With $usn1 Ends With $@usn5)][`3esn`(Distinct 9e12[_usn3])] Limit Extract(`4esn` In `6esn`[1e1..] Where 123456789 =~_usn4 =~$0) Contains (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6) Contains ({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[`7esn`?:#usn8]->(@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0});"), - octest:ct_string("Detach Delete Count(*)[_usn3..Count ( * )],0X7 In $@usn5 In 9e0,01234567 Is Null Is Null Detach Delete 010 Starts With `7esn` Starts With 9e1 Union All Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..];"), - octest:ct_string("Create ((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null})-[#usn7:`1esn` *07..]->(#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})),_usn4=(`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) Return Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As `5esn` Merge (`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Create Set [`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null|9e12 =~01 =~$`7esn`].#usn7! =`2esn`[$`3esn`..],`1esn`(Distinct 07[0..`4esn`]).`4esn`? =Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`]) Contains All(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 01234567[.12..7][1000..1.e1]);"), - octest:ct_string("Delete #usn8 Ends With 1e1 Remove ({_usn4:010 =~$usn2 =~1e1,`2esn`:0X0123456789ABCDEF Is Not Null})<-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]-(`8esn` :`1esn`)<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(#usn7 :@usn5)._usn4?,None(#usn8 In $`5esn` Is Null Is Null Where 01234567 Ends With 12.0 Ends With 0X7).@usn5! With Distinct *,9e12[_usn3] As `8esn`,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn` Order By `6esn` Starts With $`5esn` Desc,$`7esn` Ends With 07 Ends With 07 Desc Where 's_str'['s_str'..$usn2][_usn3.._usn3] Union Unwind Extract(`6esn` In 0X7 =~`` Where $_usn3[9e1][$_usn4]|@usn6[..0xabc][..$#usn7])[[@usn6 In @usn5 In $`6esn` Where $@usn5 In 12e12 In Count(*)|999[$`6esn`]]..Any(_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`)][{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`],usn2:@usn6[`3esn`..][$7..]}..`7esn`($123456789 Ends With $`6esn`)] As _usn4 Merge `8esn`=(({_usn3:$0 Ends With $#usn7 Ends With .12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[?:``|:_usn4 *..0X7]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}));"), - octest:ct_string("Unwind 123.654[@usn5] As _usn3 Detach Delete 1000 Ends With 1000 Ends With $`4esn`,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)],{_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]} Union With Distinct `2esn` Starts With $_usn3 Starts With `2esn` Skip [@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12]][{@usn6:.12 Starts With 0Xa}..(`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})] Limit {`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]} Is Null Is Null Match @usn5=(:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})-[`1esn`:usn2|#usn8 *1000..]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}) Remove Any(usn1 In 0x0[..`4esn`] Where $0[$#usn8..01234567])._usn3!,Filter(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]).`3esn`!,#usn7(Distinct).`1esn` Union With Distinct @usn6 Starts With `7esn` Starts With Null,$usn1[#usn8..][``..] As `2esn`,`3esn`[$`1esn`..] As usn2 Order By _usn3[0] Asc,``[$`3esn`][$`2esn`] Ascending,{@usn5:0.e0[@usn6][0x0]} Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7) Ascending Skip (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) Is Not Null Is Not Null Limit [@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Where `1esn` Contains Count ( * ) Return Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As `5esn` Return Distinct *,.e1 Starts With $`8esn` Skip 0xabc[12.e12..`1esn`] Limit 0.e0[@usn6][0x0];"), - octest:ct_string("Remove [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0].`3esn`,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``! Merge `1esn`=(((`2esn` :_usn3{`5esn`:12.e12[$1000..],`4esn`:'s_str'[..0.0][..$`4esn`]})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})-[usn1?:`1esn` *0X0123456789ABCDEF..{usn2:$`4esn`[12.e12..][0.0..]}]-(:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]}))) On Match Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..] With 's_str'[12..'s_str'] Limit #usn7 Starts With 0x0 Starts With Null Where 1e1[`6esn`..] Union All Unwind 00 Starts With _usn3 As #usn7 Union Remove (usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})._usn4?,usn1:`3esn`:`1esn`,{`2esn`:9e1 In 01 In 999,`5esn`:$@usn6[..$usn1]}.@usn5! Unwind .e12 =~0.0 =~9e0 As `8esn`;"), - octest:ct_string("Merge `3esn`=(({`5esn`:0.12 Contains .e1})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0})-[:@usn5|`8esn` *123456789..999{usn1:9e12 Is Not Null Is Not Null}]-(#usn7 :`5esn`)) Union All Detach Delete $`7esn` In 0.e0 In `4esn` Delete Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)[..(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})][..Any(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)],123.654 Starts With usn1 Starts With @usn5;"), - octest:ct_string("Remove [0x0[$`3esn`..010][$#usn7..00],$_usn4[#usn8..],#usn7 Starts With `1esn`]._usn4?,count(Distinct 0.e0[9e1..][0.0..],$usn2 =~$#usn8).`5esn`?,`2esn`:`` Union All Return Distinct {`5esn`:123.654[@usn5]} Is Not Null Is Not Null,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] Skip (#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})[Filter(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 0.12 Ends With $usn1 Ends With $@usn5)][`3esn`(Distinct 9e12[_usn3])] Limit Extract(`4esn` In `6esn`[1e1..] Where 123456789 =~_usn4 =~$0) Contains (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6) Contains ({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[`7esn`?:#usn8]->(@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0}) Delete $_usn4[$`1esn`],[01234567 =~usn1,9e0 =~$`5esn`,usn2[$`1esn`...0]][..[.12 In $999 In `5esn`,010 =~`6esn`,#usn7 Contains .0 Contains .e1]];"), - octest:ct_string("Merge #usn7=((_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]})) On Create Set usn2+=[usn1[..@usn5][...e0]] In Extract(`6esn` In 0X7 =~`` Where $1000 Contains $`3esn`|12 Ends With 01234567) In {`3esn`:$`5esn` In `2esn` In .0,``:0e0 Is Null Is Null} On Create Set `5esn`+=0 Starts With `6esn` Starts With 0X0123456789ABCDEF,`4esn`+=$`7esn` Ends With $usn2,[usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null].@usn5! =$1000 Ends With 1e1 Ends With 123.654 Union All Merge usn1=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(usn1 :`4esn`:#usn8{``:0 Is Not Null Is Not Null,`3esn`:usn1 Starts With $#usn7 Starts With `5esn`})) On Match Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$`` On Match Set _usn4+=`1esn`[`3esn`..][$@usn6..],Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.e12 Ends With 01 Ends With .e1|@usn6[$`7esn`]).`2esn`! =[usn1 In $123456789 Contains usn2 Where $1000 =~$`7esn`|False In $`7esn` In .0] Union All Unwind [$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] As @usn6;"), - octest:ct_string("Remove Any(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`]).`6esn`?,[$0 Ends With $#usn7 Ends With .12,$7,@usn5 Ends With $`3esn` Ends With 12e12].`1esn`? Union Return Distinct *,None(usn2 In 1000 Contains 0.e0 Where $`6esn`[Count(*)..0.e0][0.0..Count ( * )])[(:usn2:@usn6{@usn6:$`4esn`[$`2esn`..]})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})][Any(@usn6 In @usn5 In $`6esn` Where 12.0[0Xa][00])] As @usn5,$usn1[1e1.._usn3][$@usn6..$#usn7] As `5esn` Skip Count(*)[12.e12..] Unwind Any(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) Is Not Null Is Not Null As `2esn` Union All Match `8esn`=(((:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[:#usn7|:_usn4{``:$1000 Is Null Is Null}]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`}))) Where 0Xa[..$``];"), - octest:ct_string("Unwind $@usn5[.e1] As #usn8;"), - octest:ct_string("Delete $`2esn` Ends With `3esn` Ends With $7,0e0[12][$_usn4],`7esn`[Null..][@usn5..] With @usn5[..True][..0X7] As #usn8,[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..] Skip ({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})[None(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])..] Create (#usn7 $usn2)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` );"), - octest:ct_string("Unwind ``(Distinct `1esn`[0e0..]) =~(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[@usn6?:`1esn`]-(:`5esn`)-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) As _usn4 Union Match `4esn`=(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}),`7esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}) Where $`4esn`[9e1..][0..] Remove ``(Distinct 1e1 Is Null,$`6esn`[Count(*)..0.e0][0.0..Count ( * )]).`7esn`!,Extract(`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]|_usn3 Is Not Null Is Not Null).@usn6,[1e1 In $#usn8 In 12e12,9e1 Contains $`3esn` Contains 01234567].@usn6! Detach Delete 07[0..`4esn`],``(Distinct `1esn`[0e0..]) =~(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[@usn6?:`1esn`]-(:`5esn`)-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}),[$1000 Is Null Is Null] Is Null;"), - octest:ct_string("Remove Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $@usn6 Is Null Is Null).`4esn`,All(@usn5 In $#usn8 Is Null Is Null).usn1! Union Merge (`7esn` :_usn4:usn1)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})-[`1esn`{`2esn`:.12 Starts With @usn5 Starts With $#usn8}]->(:usn1{`6esn`:1000 Contains 0.e0,`7esn`:$@usn6[..$#usn7][..12.e12]}) Unwind `7esn`[1000..][$123456789..] As #usn7 Remove @usn6(_usn4[0xabc..],$usn1[_usn4..][usn2..]).`4esn`?;"), - octest:ct_string("Merge ((@usn6 :#usn7{@usn5:Null Is Null Is Null})) On Create Set `8esn` =Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`],`8esn`+=Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[usn2($#usn8 Is Null Is Null)..Extract(usn1 In 0x0[..`4esn`] Where 123456789 In $usn2 In `6esn`|@usn5[..True][..0X7])][(`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` )..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]] Return Distinct *,9e12[_usn3] As `8esn`,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn` Order By `6esn` Starts With $`5esn` Desc,$`7esn` Ends With 07 Ends With 07 Desc;"), - octest:ct_string("Match @usn6=(((@usn6 :`5esn`{``:.e1 In $@usn6 In 999,`8esn`:_usn3 Is Null Is Null})<-[$#usn8]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})-[`6esn`? *0Xa{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}]-(:`6esn`:`7esn`{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1}))) Union All Merge (({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8)) On Match Set `8esn`:`4esn`:#usn8,Extract(`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]|_usn3 Is Not Null Is Not Null).`6esn`? =#usn8 Is Not Null,usn1 =Extract(#usn8 In $`5esn` Is Null Is Null Where @usn6 Contains .e1 Contains $`4esn`) In Filter(`4esn` In `6esn`['s_str'..][010..] Where 12e12[Count ( * )..][usn2..]) In [123456789 In $usn2 In `6esn`,Count(*) Ends With 010] Detach Delete `7esn` Starts With $`` Starts With $#usn7;"), - octest:ct_string("Return Distinct *,Extract(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12) Starts With (@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]}),$`1esn` Ends With _usn4 Ends With `3esn` Skip [$1000 Is Null Is Null] Is Null Limit $1000 In $`7esn` In $7 Return *,9e1['s_str'..1e1] As #usn7,01234567 As `6esn` Skip `2esn` In Count(*) In 9e0 Limit usn2 Is Not Null Unwind Count ( * )[..usn1][..12.e12] As #usn8 Union Return Distinct #usn8 In $0 As `1esn`,'s_str' In \"d_str\" In 123456789,[0Xa[$``..][01234567..]] Contains `3esn`(Distinct _usn3 In .e1 In $12) Contains (`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']}) As @usn6 Order By Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Ascending,0xabc[$@usn5] Asc,usn1[..$_usn4][..``] Ascending;"), - octest:ct_string("Delete 0e0,7[..12e12][..$`6esn`] Detach Delete Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0},12 Ends With .e12 Ends With $7;"), - octest:ct_string("Unwind .e12 =~0.0 =~9e0 As `8esn` With Distinct 01[Null..][`1esn`..] As `2esn`,$usn1 Contains Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where .e0[..999][..0X7]) Contains [@usn6[`3esn`..][$7..]] Order By 0X7 =~.0 =~\"d_str\" Desc,.12 =~.12 =~1e1 Asc,$#usn8 In .e12 In 9e1 Desc Skip $`3esn` =~$999 =~$`3esn` Limit {`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Where Count ( * )[Count ( * )..12e12][usn1..1000] Detach Delete [@usn5 In $#usn8 Is Null Is Null Where 7 In 0xabc][[Null[01234567][01234567],07[1e1],Count(*)[12.e12..]]..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)],0.12,Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 01234567[.12..7][1000..1.e1]|$`5esn` In False) Contains {@usn5:Null[0e0][12],_usn4:0 Contains 12e12} Contains [usn1 In 0x0[..`4esn`] Where \"d_str\" Contains `3esn` Contains 00|@usn6[`3esn`..][$7..]] Union All With *,Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])[All(#usn7 In 01234567[$`3esn`..] Where Count(*)[.e0.._usn4])..][None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..])..] As @usn6 Order By {`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,0.12 In $7 In 0 Desc Limit 123.654 Contains #usn8 With Distinct *,12 Is Null Is Null As #usn7,$`7esn` Ends With $0 Ends With .e12 As `` Order By $0[01234567..00][$`2esn`..$@usn6] Desc,12.e12['s_str'] Desc,123456789 Starts With #usn7 Starts With `6esn` Asc Limit 999 In 9e1 In 7;"), - octest:ct_string("Return Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Order By 12e12[Count ( * )..][usn2..] Ascending,(`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Descending Detach Delete $999[12.0..] Match usn2=(((`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[?:`5esn`|`1esn` *999..]->(:``)<-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))),`2esn`=(({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(:_usn4:usn1)) Where `4esn` =~123456789 Union Optional Match ((:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})),`1esn`=((@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) Where 0 Ends With $7 Ends With _usn3 Unwind `6esn`[..`5esn`] As #usn8 Union Detach Delete 01234567[$`7esn`][_usn3],0.12 =~9e0,$`8esn` =~1000 =~12e12;"), - octest:ct_string("Optional Match `8esn`=((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Where 0X0123456789ABCDEF[..usn1] Remove {usn1:0e0 Is Not Null Is Not Null}.@usn5,None(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True]).#usn7? Detach Delete Count(*)[_usn3..Count ( * )],0X7 In $@usn5 In 9e0,01234567 Is Null Is Null;"), - octest:ct_string("Unwind 0xabc[$@usn5] As usn2 Optional Match ((:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]})),((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Where $`4esn`[12.e12..][0.0..] Union Merge usn1=((:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[#usn8? *0xabc]-(#usn8 :`4esn`:#usn8)) On Match Set #usn7($123456789 Contains 01 Contains 0.12).usn2! =.e12 =~0.0 =~9e0,All(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1).`4esn` =$999[12.0..],`8esn`+=Filter(_usn4 In usn1 Contains False Contains `` Where 9e0 =~$`5esn`) =~``($`4esn`[usn1..$#usn8][12.0..`3esn`]) =~Single(usn2 In 1000 Contains 0.e0);"), - octest:ct_string("Unwind #usn8 Is Not Null As usn2 Match #usn8=(usn1 :`4esn`:#usn8) Where 00[``..][$`4esn`..] Create `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Union Remove None(`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]).`2esn`!,{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}.`6esn`?,usn2:#usn8 Union Return Distinct (_usn3 :`6esn`:`7esn`{usn1:$_usn3[9e1][$_usn4],`8esn`:123456789 =~_usn4 =~$0})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-({`1esn`:@usn6}) In _usn3(0x0[0X7..][usn1..]) In None(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str') As _usn4 Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending Skip 07[12][$`6esn`] Remove ({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})-[#usn8?]-(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7}).@usn6?,{`3esn`:`4esn`[7..][1000..],usn2:123456789 Starts With `2esn` Starts With 9e12}.`8esn`!,@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12).`5esn`! Create ((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})),#usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}));"), - octest:ct_string("Create ((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6)) Unwind `5esn` In 12 As `2esn` Match `1esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) Where $123456789 Is Not Null Is Not Null Union With Distinct 1.e1 Contains @usn6 As usn2 Order By [@usn6 In @usn5 In $`6esn` Where False In $`7esn` In .0|.12 Starts With $usn2] Ends With Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) Ends With Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Desc,Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}) Desc Limit [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7] Starts With [@usn6 In @usn5 In $`6esn` Where $``[_usn4..][`7esn`..]|12.e12 In $0 In Count(*)] Starts With Extract(`4esn` In $`8esn` Starts With 1000 Where `6esn`['s_str'..][010..]|12.e12[@usn5..123.654]) Where $`5esn` In `2esn` In .0;"), - octest:ct_string("Merge @usn5=(`3esn` :`8esn`{usn1:`2esn`[$`3esn`..],`6esn`:$12[..``][..$7]})-[@usn5?:``|:_usn4]-(`8esn` :#usn8)<-[?:``|:_usn4]-({`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12}) On Create Set _usn3 ={`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]] Merge ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})-[@usn6?:#usn7|:_usn4 *00..]->(`` :@usn5{#usn7:0X7[12]})) On Match Set (@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`6esn`:`4esn`|:`7esn` *1000..{`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}]->(:#usn7)<-[`5esn`:`8esn`|:usn1]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}).#usn7? =1000 Contains 123456789 Contains 1e1 On Match Set usn1+=`4esn` Is Null Union Remove Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|1e1 Is Null).`7esn`!,Filter(usn1 In 0x0[..`4esn`] Where $0[$#usn8..01234567]).`6esn`! Union All Unwind \"d_str\" =~`3esn` =~0Xa As `1esn`;"), - octest:ct_string("Remove {usn1:0e0 Is Not Null Is Not Null,@usn6:0X7[12]}.usn2,`8esn`(Distinct 0X0123456789ABCDEF[..usn1]).usn1!,{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}.#usn8 Return Distinct 0Xa Is Not Null Is Not Null As `1esn`,(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})[..Filter(#usn8 In $`5esn` Is Null Is Null Where 0Xa Is Null Is Null)][..(`7esn` {@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})] As usn1 Skip False[`6esn`][07] Limit [usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]] Starts With (`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` ) Starts With (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8) Union All Unwind .e12 Starts With True As `7esn` Unwind $_usn3 =~`7esn` =~$_usn4 As `5esn` With Distinct *,{`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] Order By 9e1 Starts With _usn3 Starts With `4esn` Descending,usn2(Distinct _usn3 Contains @usn6 Contains 1.e1)[Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where _usn3 Is Null)..[12e12[0.e0][9e1]]][Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``])..Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)] Descending Limit 0 Starts With 12e12 Starts With `4esn` Union Unwind $`8esn` Starts With 1000 As `7esn`;"), - octest:ct_string("Return *,`4esn`[$#usn7] As `1esn`,@usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Order By Count ( * )[`3esn`..][`2esn`..] Ascending,$`7esn` Ends With `1esn` Ends With True Desc With *,12e12 Is Not Null As usn1 Order By [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]) Asc Skip $`6esn` =~1e1 Limit .12 Is Not Null Is Not Null Where @usn5 Contains $`1esn` Contains 999 With $1000 Starts With .0 Starts With 0.0 As `5esn`,`5esn`[`1esn`..`1esn`] As `4esn`,#usn8 In $0 As `4esn` Order By `1esn`(Distinct $@usn5[#usn8..][$`1esn`..],#usn7 Ends With `4esn` Ends With @usn5)[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|usn1[Count ( * )..$usn1]]][{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}] Descending,(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})[Single(`4esn` In 's_str'[12..'s_str'])..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)] Desc Skip 00 In 0.12 In `5esn` Where 's_str' In \"d_str\" In 123456789;"), - octest:ct_string("Create usn2=((`5esn` :`7esn`)),_usn4=(((:`3esn`:`1esn`{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999})<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}))) Union Remove [#usn7 Starts With .e12 Starts With $`7esn`].``! Merge `7esn`=(@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) On Create Set usn2:@usn6:`7esn` On Create Set @usn5+=123456789 In $usn2 In `6esn` Remove [@usn5 In 0X7 =~.0 =~\"d_str\" Where .e0 In $@usn5 In $0|0 Is Not Null Is Not Null].@usn5?,{usn1:_usn3 Contains @usn6 Contains 1.e1}.#usn7!,usn1:@usn5 Union Delete 12e12[.12..],`1esn` In 999 In $#usn7 Create (((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})-[_usn4?:`5esn`|`1esn`]-(@usn5 {``:12[usn1][True],``:$`5esn` In `2esn` In $12})<-[`` *0xabc]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}))),`6esn`=(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Remove [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0].`3esn`,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``!;"), - octest:ct_string("Detach Delete `7esn` In 's_str' In 0.12,9e0[False] Merge `1esn`=((({`6esn`:$`8esn`[..$``]})-[`2esn`]-(@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12}))) On Match Set @usn5+=Extract(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With [01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] Starts With (`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})<-[:`6esn`]->(@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})<-[@usn6?:@usn5|`8esn` *..01{_usn4:07 Ends With 07,`8esn`:`6esn`[1.e1..$#usn7][.e0..True]}]-(usn2 :`3esn`:`1esn`) On Match Set Single(`6esn` In 0X7 =~`` Where 9e1[0.e0..][#usn8..])._usn3! =0X7 =~`4esn` =~`8esn`,`4esn` =0.12 =~9e0 Union All Optional Match `5esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``),`4esn`=(:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8) Where 07[12][$`6esn`] Unwind ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]}) =~`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0) As `3esn` Union With Distinct *,`6esn`[@usn6..01][.0...e12],12.e12[$1000..] Order By None(`4esn` In 's_str'[12..'s_str'] Where 12.0[0Xa][00]) Is Not Null Desc,[$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] Desc Limit `7esn` Starts With $usn2 Starts With .e0;"), - octest:ct_string("Unwind `4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}] As _usn4 Union With Distinct ``(Distinct `1esn`[0e0..]) =~(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[@usn6?:`1esn`]-(:`5esn`)-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}),07[07] Order By Count(*)[..`3esn`] Desc Limit [#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|@usn6 Starts With `7esn` Starts With Null] Is Not Null Is Not Null Union All Remove [usn1 In $123456789 Contains usn2 Where $1000 =~$`7esn`|False In $`7esn` In .0].`5esn`!;"), - octest:ct_string("Return Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1),9e1[010..] As `6esn` Order By $`2esn`[$usn2..][123456789..] Ascending,{@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7) Asc Limit 9e1 Starts With `1esn` Starts With 0Xa Match usn2=(_usn3 :_usn3),usn1=((:_usn4:usn1{#usn8:$`7esn` Ends With `1esn` Ends With True})-[`7esn`?:usn1|`3esn` *123456789..999{`5esn`:.e1 In $@usn6 In 999}]-(usn2 :#usn8{`3esn`:123.654[@usn5]})) Where 0 Is Not Null Is Not Null Create #usn8=((#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})<-[ *00..{`3esn`:12 Ends With 01234567,`4esn`:00[``..][$`4esn`..]}]->(`2esn` :``)) Union With Distinct 12.e12 Contains $`5esn` As `` Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Limit All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Where .e0 =~`5esn` Delete `4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}];"), - octest:ct_string("With Distinct *,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] As `8esn`,123456789 Starts With `2esn` Starts With 9e12 As `3esn` Skip Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) Limit `6esn` Starts With $@usn6 Where 12[0X7..@usn6];"), - octest:ct_string("Match (({``:12 Is Null Is Null})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)})),#usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})) Where 07[12][$`6esn`] Delete `6esn`[False..0.0][12e12..$usn2] Remove [.0 Is Null Is Null,Null Starts With _usn4 Starts With `6esn`].#usn7?,[#usn7 In 01234567[$`3esn`..] Where $999[12.0..]].@usn5!,[12e12[.12..],`2esn`[$`1esn`..][$_usn3..]].usn2? Union All Merge `8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`}) Optional Match _usn4=(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Optional Match usn2=({_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[@usn5?:``|:_usn4]-($12),((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)) Where 07 Ends With 07 Union All Optional Match ((:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[`2esn`:@usn5|`8esn`]->(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7})),((({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)<-[#usn7 *123456789..999]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}))) Unwind `7esn` Ends With $usn2 Ends With 999 As usn1 Create `4esn`=((:`7esn`{``:$`1esn` Starts With @usn6})),`1esn`=((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6}));"), - octest:ct_string("Return Distinct *,[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As `7esn` Skip _usn4(Distinct `7esn` Starts With $usn2 Starts With .e0) =~`3esn`() =~#usn8(9e0 Ends With $`7esn`) Match (`` :`7esn`)<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]}) Where $`4esn`[12.0..`5esn`] Create `1esn`=(((usn1 :`4esn`:#usn8)-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}))),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`)<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)) Union Optional Match (`` :#usn7) With $`2esn`[``..] As `3esn`,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As `3esn`,`7esn`[...e1][..\"d_str\"] Order By [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]) Asc Limit $#usn8 Is Null Where $123456789 In Count(*) In .e1 Unwind 123456789 =~_usn4 =~$0 As @usn5 Union All Detach Delete {@usn6:0Xa Is Null Is Null,`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]} =~_usn4(usn2[`3esn`][_usn3]),`6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Merge @usn6=({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567}) On Match Set (:usn1{`1esn`:`6esn` Starts With $usn2 Starts With 0.0})<-[@usn6?:@usn5|`8esn` *..01{_usn4:07 Ends With 07,`8esn`:`6esn`[1.e1..$#usn7][.e0..True]}]-(usn2 :`3esn`:`1esn`).`8esn` =.0,_usn4+=`3esn`[$999..],#usn7($0[$#usn8..01234567],#usn8[$#usn8..]).#usn8! ={#usn8:$`5esn` In False,usn2:$`7esn` In $7} Starts With Filter(usn2 In 1000 Contains 0.e0 Where `2esn`[$`3esn`..]) Starts With All(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`) On Create Set `6esn`+={`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])],#usn8:`1esn`,[usn1 In 0x0[..`4esn`] Where True =~@usn5 =~$`1esn`|0.0[999..]].`4esn`! =$123456789 Contains 01 Contains 0.12 Detach Delete $999[12.0..];"), - octest:ct_string("Return Distinct `3esn` Contains 0Xa As `6esn`,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,[usn1[..@usn5][...e0]][(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)] Return None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} Order By usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`]) Is Null Ascending,9e1 Starts With 9e1 Starts With 010 Asc Create #usn8=((:`8esn`)-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`{#usn8:Null[0e0][12],`2esn`:`8esn` In $@usn5}]-({_usn3:999 In $_usn4 In 0X7,`1esn`:1e1 In $#usn8 In 12e12})) Union Remove [usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`|`3esn` =~0.0 =~$``].#usn7?,(:usn1{`1esn`:`6esn` Starts With $usn2 Starts With 0.0})<-[#usn7:`3esn`|:`4esn` *00..]->({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})-[`6esn`:`4esn`|:`7esn` *..0x0]->(:usn1{`6esn`:1000 Contains 0.e0,`7esn`:$@usn6[..$#usn7][..12.e12]}).usn2 Remove Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0).`8esn`?,All(`4esn` In `6esn`[1e1..] Where 07[12e12]).`3esn`!;"), - octest:ct_string("Match #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) Where 12e12 Is Not Null With 0Xa[0xabc..] As usn1,`5esn` In 12 As usn2,[#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`][Any(`4esn` In $`8esn` Starts With 1000 Where 123.654 Starts With usn1 Starts With @usn5)..] As `8esn` Skip #usn7 Contains 07 Limit $999[$1000] Union Merge @usn5=(((_usn3 :_usn3{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[#usn8:`3esn`|:`4esn` *0..010]-(:usn1{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]}))) On Match Set `3esn`(False In `3esn`).`5esn`! =Count ( * )[Count ( * )..12e12][usn1..1000],#usn7 =(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])],#usn7+=00[01234567][False] On Match Set @usn5 =1e1[..#usn8][..'s_str'],`8esn` =usn2[`3esn`][_usn3] Optional Match ((:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]})),((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Where $`4esn`[12.e12..][0.0..];"), - octest:ct_string("Optional Match _usn3=(($999)),``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)) Where 9e0[True..`1esn`] Union Remove [#usn7 In 01234567[$`3esn`..] Where .12 Starts With @usn5 Starts With $#usn8|$`6esn`[$`1esn`][1000]].@usn6?,usn2($#usn8 Is Null Is Null)._usn4;"), - octest:ct_string("Create (((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0)));"), - octest:ct_string("Optional Match ``=((`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(usn1 :_usn3)),(((`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`5esn`)<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 ))) Unwind 12[0X7..@usn6] As `` With Distinct *,9e12[_usn3] As `8esn`,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn` Order By `6esn` Starts With $`5esn` Desc,$`7esn` Ends With 07 Ends With 07 Desc Where 's_str'['s_str'..$usn2][_usn3.._usn3] Union All Remove All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null).@usn5,`8esn`:_usn3,#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..]).`7esn`! Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..] Union All Remove [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0].`3esn`,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``! Merge `1esn`=(((`2esn` :_usn3{`5esn`:12.e12[$1000..],`4esn`:'s_str'[..0.0][..$`4esn`]})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})-[usn1?:`1esn` *0X0123456789ABCDEF..{usn2:$`4esn`[12.e12..][0.0..]}]-(:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]}))) On Match Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..] With 's_str'[12..'s_str'] Limit #usn7 Starts With 0x0 Starts With Null Where 1e1[`6esn`..];"), - octest:ct_string("With Distinct 12.0 Contains 9e0 Contains $`7esn` As `6esn`,$`4esn` Contains `6esn` Contains #usn7 Order By `5esn`[`1esn`..`1esn`] Ascending,$1000[01234567] Ascending Skip Null Contains 9e1 Where 7 =~9e0 =~'s_str' Optional Match usn2=((`1esn` :usn2:@usn6)-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})) Optional Match `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Union Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Optional Match ((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)),((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]}));"), - octest:ct_string("Merge `2esn`=(((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) On Match Set `8esn`+=$`7esn` =~.e1,`1esn` =`6esn`[_usn4..][$`6esn`..],``+=0xabc Contains $1000 Union All With Distinct 1000[123.654..9e12][1000.._usn3],Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) As _usn4,``[$`3esn`][01234567] Order By {`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00} Starts With Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12) Desc,9e0 Ends With $`7esn` Ascending,`1esn`(Distinct Count(*)[..`3esn`]) Starts With $0 Ascending Limit .12[`1esn`..][$`3esn`..] Where $0[01234567..00][$`2esn`..$@usn6] Delete $123456789[$`2esn`][True],_usn4 Ends With 01 Ends With $`1esn` With Distinct `8esn`(Distinct False Contains `3esn`,9e12 =~01 =~$`7esn`)[[@usn6[`5esn`..$`3esn`],0e0 Is Not Null Is Not Null]..] Order By usn2[$`1esn`...0] Descending,None(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00)[[@usn6 Starts With `7esn` Starts With Null]][{`1esn`:07[`6esn`..][`5esn`..],usn1:$usn2[False..`7esn`][`7esn`.._usn3]}] Ascending,01234567 Ends With 12.0 Ends With 0X7 Ascending Skip 12e12[1000..][0x0..];"), - octest:ct_string("Detach Delete 00[7..$123456789],`` Starts With 12,{`4esn`:.12 Starts With 0Xa} Starts With All(usn1 In 00 Starts With _usn3 Where `6esn`[False..0.0][12e12..$usn2]) Remove Extract(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`).usn1!,_usn4(Distinct `7esn` Starts With $usn2 Starts With .e0).`5esn`,``:#usn7 Return $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Limit 9e0 Starts With `6esn` Union Return Distinct $`5esn`[$123456789][`1esn`],(`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})-[`4esn`?:`8esn`|:usn1 *..0x0]->(:`7esn`{``:$`1esn` Starts With @usn6}) Ends With `6esn`(Distinct $`4esn`[usn1..$#usn8][12.0..`3esn`],12.e12['s_str']) Ends With (`7esn` {`8esn`:Count ( * ) =~Count(*)})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}) As `7esn`,01234567 As `6esn` Detach Delete $@usn5 In 12e12 In Count(*),`` =~12 =~$#usn7,Null Contains _usn4 Union All Match `1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}),`1esn`=(((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))) Create ((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})),#usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) Match `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Where 's_str'[12..'s_str'];"), - octest:ct_string("With .12[#usn7][$`8esn`],12 Ends With 07 Ends With @usn6 As usn1 Order By $999[..`1esn`] Ascending,Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending,[$`8esn` =~$usn2][Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..] Asc Where 12e12[Null] Match ((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})) Where $123456789[..0.12][..#usn7] Union All Merge ((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Merge `3esn`=((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) On Match Set `6esn` =$@usn5[Count ( * )];"), - octest:ct_string("Return Distinct $`1esn` Starts With $999 As #usn8,Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)[{#usn8:`5esn` =~0Xa,@usn5:0X7[999][$1000]}..[`` Starts With 12,$`1esn` Starts With $999]][`7esn`(Distinct $usn2[..12.0])..`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])] Order By 9e1 Is Not Null Is Not Null Asc,$usn2[$123456789..123.654][$`5esn`..'s_str'] Desc Union Remove (`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(`4esn` :#usn7).@usn5?,All(`4esn` In `6esn`['s_str'..][010..] Where \"d_str\" =~`6esn` =~0Xa).``!,(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}).usn1!;"), - octest:ct_string("Remove [_usn3 Ends With 0x0 Ends With 01234567,9e0[$_usn3..0X7][7..$#usn8]].`6esn` Delete 999 Contains `7esn` Return Distinct *,12 Is Null Is Null As #usn7,$`7esn` Ends With $0 Ends With .e12 As `` Order By $0[01234567..00][$`2esn`..$@usn6] Desc,12.e12['s_str'] Desc,123456789 Starts With #usn7 Starts With `6esn` Asc Limit 999 In 9e1 In 7;"), - octest:ct_string("Unwind $usn2[$123456789..123.654][$`5esn`..'s_str'] As #usn8 Union With Distinct 's_str'[.12..$#usn7][$999..`2esn`] As `5esn` Limit $_usn3[..Count ( * )][..@usn5] Where @usn5 Ends With $`3esn` Ends With 12e12 With *,.e12 Starts With True As _usn4,$1000 In $`7esn` In $7 Skip [$1000 =~$`7esn`,.12 Starts With @usn5 Starts With $#usn8,0x0[...e12][..@usn5]] Ends With Single(@usn5 In .12[#usn7][$`8esn`]) Limit Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]|$0 =~$usn1 =~9e1)[{``:\"d_str\",`1esn`:$1000 =~$`7esn`}] Union Merge `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) On Create Set `5esn` =999[.e12][01],Extract(usn1 In 0x0[..`4esn`] Where @usn6[$`3esn`]).#usn8? =`1esn` In 999 In $#usn7,usn1 =12.e12[0e0..7] On Match Set `1esn`+=Null[0e0][12],Filter(usn1 In 0x0[..`4esn`] Where $`` Ends With 12e12).usn1! =Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] Merge ({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})-[#usn7:`1esn` *07..]->(:`7esn`{``:$`1esn` Starts With @usn6})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) On Match Set [`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|`` Contains 12 Contains True].`2esn`? =$@usn6[..$#usn7][..12.e12],None(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12).`8esn`! =12[..9e0][..999] Match `1esn`=(_usn3 :`4esn`:#usn8{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`});"), - octest:ct_string("Remove ({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}).`5esn`!,`8esn`:_usn4:usn1 Merge ((({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)<-[#usn7 *123456789..999]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}))) On Create Set `8esn` =``;"), - octest:ct_string("Unwind [$12[01..][1.e1..]][[usn1 In 00 Starts With _usn3 Where 00]..@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12)] As `3esn` Union All Create #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) Unwind 07[..$_usn3] As #usn7 Unwind `3esn`(Distinct _usn4 Ends With 01 Ends With $`1esn`) Starts With [Count(*) In 01 In .0,`` Starts With 12,$_usn4[$`8esn`..][07..]] Starts With Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12 In $0 In Count(*)) As _usn3;"), - octest:ct_string("With Distinct *,07[0..`4esn`],Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) Limit Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Where @usn5[..True][..0X7] Union All Remove (:`5esn`{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12})-[`5esn`?:`2esn`|usn2 *999..]->(`5esn` {`5esn`:$`5esn`[False]}).`8esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]).`7esn` Remove {`8esn`:0X7 In 's_str' In $`1esn`}.usn1!;"), - octest:ct_string("Merge _usn3=((#usn7 :``)<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]})<-[? *12..0xabc]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})) On Create Set `6esn` =7[..0X7][..'s_str'],[$`5esn` Contains $@usn6].`1esn` =1e1[@usn5..],Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 07 In 0 In 's_str').@usn5? =True Is Not Null On Create Set usn2 =_usn3 Is Not Null Is Not Null,`4esn` =.e1 Starts With $`8esn`;"), - octest:ct_string("Return {#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] As #usn7,[@usn5 In $#usn8 Is Null Is Null Where 7 In 0xabc][[Null[01234567][01234567],07[1e1],Count(*)[12.e12..]]..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)],False In `3esn` Order By 0x0[$`3esn`..010][$#usn7..00] Ascending,$@usn6 Contains 0 Contains $`2esn` Asc,0xabc Contains Null Contains 9e12 Asc Skip $`7esn` =~.e1 Limit (:`2esn`:`3esn`)-[{``:9e0 Is Not Null}]->({`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`}) Merge (@usn6 )<-[? *12..0xabc]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})<-[``? *12..0xabc]-(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1}) On Create Set `6esn`+={`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])],#usn8:`1esn`,[usn1 In 0x0[..`4esn`] Where True =~@usn5 =~$`1esn`|0.0[999..]].`4esn`! =$123456789 Contains 01 Contains 0.12 On Match Set #usn8+={`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}],(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0}).`3esn`! =07 In $7 In 12,[\"d_str\" =~`6esn` =~0Xa].`4esn`! =0.0 =~0X7 =~#usn7 Union With Distinct Extract(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null) Ends With `2esn`(`7esn`[Null..][@usn5..],123.654[12.e12..1e1]) Ends With Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]) As `7esn` Skip .e0[..0X0123456789ABCDEF][...e12] Limit $`4esn`[9e1..][0..] Where `1esn` In 999 In $#usn7 Remove [`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789]|0.12[Null..]].`8esn`?,All(`4esn` In 's_str'[12..'s_str'] Where $`8esn`[..$``]).`7esn`!,Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`!;"), - octest:ct_string("Optional Match _usn4=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))),@usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})) Remove Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1).usn1!,[$123456789 Is Null Is Null,9e12[@usn6..$``][#usn8..Count ( * )]].`1esn`!,{#usn8:$#usn7[True..][$0..],`8esn`:123456789 Starts With `2esn` Starts With .0}.#usn8! Return *,1.e1[Null][12.e12] As ``,Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) As _usn3 Order By 0.e0[`6esn`...e0][9e12...e12] Descending,_usn3 In .e1 In $12 Asc Skip [$`4esn`[9e1..][0..]][Any(`4esn` In $`8esn` Starts With 1000 Where 0.e0[9e1..][0.0..])..Single(#usn8 In $`5esn` Is Null Is Null Where 1000 Ends With 1000 Ends With $`4esn`)] Limit 123456789 =~_usn4 =~$0 Union Create ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})-[@usn6?:#usn7|:_usn4 *00..]->(`` :@usn5{#usn7:0X7[12]})) Return Distinct $@usn6 =~$#usn8 =~$#usn7 As `7esn`,12e12[0.e0..True][0.12..0.0] As #usn8 Order By @usn5 =~.0 =~$`1esn` Ascending With *,[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As `7esn` Order By 00 Is Null Is Null Descending,$usn2 Starts With $`6esn` Starts With 0xabc Ascending,123456789 Starts With #usn7 Starts With `6esn` Asc Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`) Limit 0x0 Contains _usn4 Contains 123456789 Union All Unwind Single(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`) Is Null As `2esn` Return *,`4esn` Is Null Order By `5esn` In $999 Descending Limit `3esn` =~$`5esn` =~12;"), - octest:ct_string("Unwind 9e1[$@usn6..] As usn2 With (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Order By [$12[01..][1.e1..]][[usn1 In 00 Starts With _usn3 Where 00]..@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12)] Desc,[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|#usn7 Starts With `1esn`][[@usn5 In .12[#usn7][$`8esn`] Where 0.12 In $`4esn` In `6esn`|$`1esn` Starts With @usn6]..][$`1esn`..] Ascending,{#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null Asc Skip Null[0.e0..0x0];"), - octest:ct_string("Optional Match usn1=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})),@usn5=(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})<-[?:`7esn`|`2esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}]->(usn1 :#usn8))) Where 7 Contains $`5esn` Contains $usn1 Unwind Extract(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0|$_usn4[`3esn`][0]) Is Null Is Null As ``;"), - octest:ct_string("Remove Single(usn1 In 00 Starts With _usn3 Where 07 Contains #usn8 Contains $_usn3).`6esn`,Extract(`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF])._usn3? With Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null As `5esn`,`7esn` Contains .0 Contains 9e12 As usn2 Skip .12 Is Null Limit Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Where True =~@usn5 =~$`1esn` Create (usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}) Union All Remove Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`).@usn6! Return Distinct *,01234567[$@usn6..0X7][$`1esn`..123.654],_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) As #usn8 Skip .e0[..0X0123456789ABCDEF][...e12] Detach Delete 12.e12 Contains $`5esn`,$usn1 In 1000 In $#usn7,12.0;"), - octest:ct_string("Create (`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}) Unwind 0 Is Null Is Null As @usn5;"), - octest:ct_string("Merge `3esn`=(((:_usn4:usn1{usn2:$`5esn` In False})<-[?:@usn5|`8esn` *..0X7]->(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}))) On Create Set [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]].`1esn` =9e12 =~01 =~$`7esn` On Create Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$`` Remove [@usn5 In $#usn8 Is Null Is Null Where $#usn8 Is Null|123.654[@usn5]].`6esn`! Remove Filter(@usn5 In $#usn8 Is Null Is Null Where $@usn5 =~$`` =~$usn2).`7esn`,Filter(_usn4 In usn1 Contains False Contains `` Where _usn4[$`4esn`..]).#usn8?,[\"d_str\" =~`3esn` =~0Xa,$123456789[..0.12][..#usn7]].usn2! Union All Optional Match (`` :#usn7)<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})<-[`5esn`?:`6esn`]->(`6esn` :`6esn`:`7esn`{_usn4:\"d_str\"}),`4esn`=(((`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[?{`4esn`:0.e0 Ends With 12 Ends With $7,@usn6:$``[_usn4..][`7esn`..]}]->(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]}))) Remove Any(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0).usn1?,({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}).`5esn`! Optional Match (((usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1)<-[@usn5:#usn8{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(#usn8 :_usn3))),((:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[`2esn`:@usn5|`8esn`]->(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7})) Where .e1 Starts With 0.0 Starts With `6esn` Union With Distinct 07[07] Skip 123.654 Contains `2esn` Limit `8esn` In $@usn5 Where 07[$`5esn`..]['s_str'..] Create ((`5esn` {_usn4:0X7 =~``})<-[`2esn`?:usn2|#usn8{`6esn`:0X7[.e12..01234567],@usn6:`7esn`[...e1][..\"d_str\"]}]->(`5esn` :`8esn`{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})),`8esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) Unwind 0.0[999..] As usn1;"), - octest:ct_string("Optional Match ``=((_usn4 )-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})) Where 123456789 =~_usn4 =~$0 Union Unwind 1000 Contains 0.e0 As #usn8;"), - octest:ct_string("Remove All(@usn5 In $#usn8 Is Null Is Null Where 7 In 0xabc).#usn7?,({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[`2esn`? *0..010]->(usn2 {usn1:0 Is Null Is Null,`8esn`:12.0[..$7][..999]})<-[#usn8:`3esn`|:`4esn` *0..010]->(`3esn` :usn2:@usn6).`4esn`! Merge `4esn`=(_usn4 :#usn8)-[`1esn`?:`1esn` *01234567..12]-({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}) On Create Set ``+={usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null,@usn5+=usn1[..@usn5][...e0],`2esn`+=All(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True])[..[`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|_usn3 In .e1 In $12]][..{`2esn`:$usn1[1e1.._usn3][$@usn6..$#usn7]}] On Create Set _usn4 =All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)[[usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1]],#usn7 =_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) Return Distinct All(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`)[[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]]..][({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})..] As #usn8,'s_str' In \"d_str\" In 123456789,None(`4esn` In 's_str'[12..'s_str'] Where 12.0[0Xa][00]) Is Not Null Union All With *,07[0..`4esn`] Order By 12.e12[$`7esn`] Desc,Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}) Descending Where @usn6 Starts With `7esn` Starts With Null Remove [$`2esn` =~'s_str',12 Ends With 01234567,$1000 Is Null Is Null].`3esn`?,[12.e12[...0][..0x0]]._usn4,(`1esn` :`8esn`)<-[#usn7:`3esn`|:`4esn` *00..]->(`4esn` :`8esn`)-[`4esn`? *0Xa]-(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}).`3esn`? With Distinct $@usn6 Starts With usn2 Starts With usn2,@usn6[$`7esn`],$`4esn`[9e1..][0..] Limit [$`1esn` Is Null Is Null,$12 Contains 123.654 Contains `8esn`] Starts With {`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]} Starts With Filter(usn1 In $123456789 Contains usn2 Where 01234567[.12..7][1000..1.e1]) Where `` Starts With @usn5 Union All Delete Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`);"), - octest:ct_string("Create (({``:12 Is Null Is Null})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)})),#usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})) Remove (`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(`4esn` :#usn7).@usn5?,All(`4esn` In `6esn`['s_str'..][010..] Where \"d_str\" =~`6esn` =~0Xa).``!,(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}).usn1! With Distinct `2esn` Contains $999 As #usn7,$123456789[False.._usn3] As `1esn` Order By (usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Ends With [$`8esn` =~$usn2,0X0123456789ABCDEF[..usn1],`` In `6esn`] Descending Skip 0X7[..12e12] Union All With Distinct 010 Starts With `7esn` Starts With 9e1,False[.e1..Null] As `2esn` Order By {`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]} Ends With (usn1 :_usn3)<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})-[ *..0x0]->(:`7esn`{@usn6:0.0[999..],#usn8:Null Is Null Is Null}) Asc Skip [@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Where .e12[..0.e0][..$`1esn`] Union Unwind 07[..010][..12.0] As `3esn` Return Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] As usn1,@usn5[_usn4..][.e0..] As usn1 Limit $`1esn` Is Null;"), - octest:ct_string("Unwind 0.0[1000..][.e1..] As usn1;"), - octest:ct_string("Return *,(@usn6 {_usn4:$_usn4[#usn8..]})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)[Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null)..] Skip $`7esn` Ends With 07 Ends With 07 Optional Match _usn3=(($999)),``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)) Where 9e0[True..`1esn`] Create ((`7esn` :`2esn`:`3esn`{@usn6:9e0 Ends With $`7esn`})),`6esn`=((`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})) Union Unwind 0X0123456789ABCDEF Contains 12.e12 Contains 999 As _usn4 With *,#usn7 Starts With .e12 Starts With $`7esn` As usn2,{`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) As @usn5 Limit Extract(`4esn` In 's_str'[12..'s_str'] Where 00 Starts With _usn3|$`1esn` Is Null Is Null) Is Null Is Null Union Return *,0.12[Count(*)..],$@usn5 =~$`` =~$usn2 As #usn8 Order By Single(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`) Is Null Desc Skip Single(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7])[None(`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789])..@usn6(Distinct True =~@usn5 =~$`1esn`,.12 Starts With $usn2)];"), - octest:ct_string("Unwind `6esn`[..`5esn`] As #usn8 With *,$`1esn` Ends With _usn4 Ends With `3esn` As `7esn`,({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] As @usn6 Order By $999 Ends With $`3esn` Ends With `8esn` Asc Skip $0[..07] Where $@usn5 In 12e12 In Count(*) Union Unwind $@usn5[Count ( * )] As #usn7 Detach Delete 999 In 12 In \"d_str\",$`5esn` Contains Count(*) Contains #usn7 Union All Create (`8esn` :`1esn`);"), - octest:ct_string("Optional Match ``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}),#usn7=(:#usn7{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[:@usn5|`8esn`*..]-(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) Detach Delete $@usn6[..$usn1],`` =~12 =~$#usn7,`3esn` Is Not Null Is Not Null Union Unwind $@usn6 In usn2 In 123456789 As @usn6 Remove [.12 Starts With 0Xa].`4esn`! Unwind 9e0[$_usn3..0X7][7..$#usn8] As @usn6 Union Return *,1.e1[Null][12.e12] As ``,Extract(usn1 In 0x0[..`4esn`] Where \"d_str\" Contains `3esn` Contains 00|Count(*) Ends With 010)[All(usn2 In 1000 Contains 0.e0 Where #usn8 Ends With `4esn` Ends With $`4esn`)..@usn6(Distinct _usn3 In .e1 In $12,123.654 Starts With usn1 Starts With @usn5)][All(usn2 In 1000 Contains 0.e0 Where 0.0[1000..][.e1..])..{`7esn`:`2esn`[$`1esn`..][$_usn3..]}] Limit 7[..12e12][..$`6esn`] Unwind 07[..010][..12.0] As `2esn`;"), - octest:ct_string("With 010[@usn5..],0x0 =~_usn4 As `8esn` Limit `8esn` Ends With 0X0123456789ABCDEF Ends With `1esn` Where 010[$@usn6] Merge `1esn`=(((`2esn` :_usn3{`5esn`:12.e12[$1000..],`4esn`:'s_str'[..0.0][..$`4esn`]})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})-[usn1?:`1esn` *0X0123456789ABCDEF..{usn2:$`4esn`[12.e12..][0.0..]}]-(:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]}))) On Match Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..] Optional Match ((@usn6 :#usn7{@usn5:Null Is Null Is Null})),_usn4=(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Where 0x0 Starts With $`7esn` Starts With `2esn` Union All Detach Delete usn2 Ends With $`5esn` Ends With `2esn`,$123456789 Is Null Is Null,Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Unwind 0x0[$`3esn`] As _usn4 Union All Merge (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0);"), - octest:ct_string("Delete 0x0[0.0][$_usn4] Unwind 0xabc[$@usn5] As usn2 Union Return Distinct *,$@usn6[..$usn1] As _usn3 Order By {``:12e12[$`5esn`][07],_usn3:$`6esn` Is Null Is Null} Ends With [0 Is Not Null Is Not Null] Descending,Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Desc,.12 Ends With `1esn` Ends With $`1esn` Asc Limit `7esn` Starts With $`` Starts With $#usn7 Create (`8esn` :`1esn`) Merge `7esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}) On Match Set #usn7+=$@usn5[01],usn1 =Extract(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With [01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] Starts With (`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})<-[:`6esn`]->(@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})<-[@usn6?:@usn5|`8esn` *..01{_usn4:07 Ends With 07,`8esn`:`6esn`[1.e1..$#usn7][.e0..True]}]-(usn2 :`3esn`:`1esn`),#usn7+=0X0123456789ABCDEF[.e0..$`4esn`] On Match Set [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|`6esn` Starts With $usn2 Starts With 0.0].#usn8? =`2esn` Starts With $_usn3 Starts With `2esn`,`8esn`+=$`7esn` =~.e1;"), - octest:ct_string("Merge `1esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[? *999..]-(`` :`1esn`) On Create Set usn2 =0.0[..12e12][..$0] Unwind 123.654[@usn5] As _usn3 Optional Match `7esn`=((({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null})<-[`7esn`?:`8esn`|:usn1]-(`7esn` :#usn8)-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`))),`5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) Where $`8esn`[..$usn1][..'s_str'] Union Return Distinct None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..] Create `2esn`=(:`1esn`)<-[`2esn`?:usn2|#usn8{`6esn`:0X7[.e12..01234567],@usn6:`7esn`[...e1][..\"d_str\"]}]->(`5esn` :`8esn`{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]});"), - octest:ct_string("Create `2esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}),(#usn7 :@usn5)<-[@usn5*]->({``:$1000 Is Null Is Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(`7esn` :`2esn`:`3esn`) Merge `4esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Union All Remove [Null Contains _usn4].`8esn`!,Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn2[`3esn`][_usn3]).`7esn`?,{#usn7:False[.e1..Null],`1esn`:9e0 Is Null Is Null}.@usn5!;"), - octest:ct_string("Create `6esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Return Distinct .12[#usn7][$`8esn`],12 Ends With 07 Ends With @usn6 As usn1 Order By $999[..`1esn`] Ascending,Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending,[$`8esn` =~$usn2][Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..] Asc Remove ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`5esn`? *010]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null}).`7esn`! Union All Remove ``:#usn7 Union All Remove ({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}).@usn6?;"), - octest:ct_string("Delete `6esn`[False..0.0][12e12..$usn2];"), - octest:ct_string("Match usn2=((:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})),((`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})<-[?{`8esn`:_usn3 Ends With 0x0 Ends With 01234567,#usn8:$`7esn` Is Null Is Null}]->(:``{#usn8:$`2esn`[..`2esn`]})<-[@usn5:#usn7|:_usn4]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})) Remove {`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}.@usn5? Union All Remove Single(usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1).`7esn`?,Extract(`4esn` In 's_str'[12..'s_str'] Where Null Contains _usn4).`4esn`! Create `4esn`=(:`5esn`{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(_usn4 ),(:#usn7) With Distinct *,07[0..`4esn`] Order By Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`)[Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01)..][{`1esn`:@usn6[`5esn`..$`3esn`],_usn3:$999 Ends With $`3esn` Ends With `8esn`}..] Asc,$999[12.0..] Asc,All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])] Asc Skip $1000 In $`7esn` In $7 Union Detach Delete $`7esn` In $7 Unwind 0x0[$`3esn`] As _usn4;"), - octest:ct_string("Remove [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1|9e1 Starts With `1esn` Starts With 0Xa].usn2?,Count ( * ).@usn5? Union All Delete $123456789[$`2esn`][True],_usn4 Ends With 01 Ends With $`1esn` Unwind usn2[$`7esn`..010][00..``] As `5esn` Unwind $`6esn` =~1e1 As @usn6;"), - octest:ct_string("Merge @usn6=({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})-[#usn7:`1esn` *07..]->(:`7esn`{``:$`1esn` Starts With @usn6})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) On Match Set `7esn`+=9e0[``][123.654] Union With Filter(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[[1e1[0.0],0 Contains 12e12,$123456789[..0x0][..`4esn`]]] As `3esn`,False[`2esn`..#usn8],00 Is Null Is Null Order By {`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,0.12 In $7 In 0 Desc Skip 9e12[0.0..12.e12] Limit $usn1[.e12..`8esn`][True..$@usn5] Return Distinct *,None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`) Is Null As @usn6,123456789 =~_usn4 =~$0 As usn1 Delete All(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True])[..[`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|_usn3 In .e1 In $12]][..{`2esn`:$usn1[1e1.._usn3][$@usn6..$#usn7]}],0.0[12...12];"), - octest:ct_string("Delete Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]),None(`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789])[(`` {`8esn`:0X7 In $@usn5 In 9e0,_usn3:@usn6[$`3esn`]})-[usn1{#usn7:7 Contains 9e1,`5esn`:$`` Ends With 12e12}]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})..0e0][{`1esn`:$@usn6 Contains 07 Contains 0.e0}..{`3esn`:0.12 In $7 In 0,_usn3:07[$999]}] Detach Delete $@usn5[#usn8..][$`1esn`..],Count ( * ) =~All(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7),#usn8 In $0;"), - octest:ct_string("With Distinct *,{`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] Limit [@usn5 In 0X0123456789ABCDEF,False[0Xa..$@usn5][$`6esn`..12e12]] =~({@usn6:0X0123456789ABCDEF[..usn1]})<-[`4esn`:#usn8]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(#usn8 :`7esn`) =~123456789 Remove `7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``]).@usn5,{#usn7:0Xa Is Not Null Is Not Null,#usn7:.0[$`6esn`..False]}.`4esn`?,[usn1[..@usn5][...e0],$`8esn`[``..][123.654..]].`` Match `2esn`=({``:.e12[..0.e0][..$`1esn`]})-[_usn3:#usn8]-(usn1 :#usn7) Union All Return Distinct *,({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) Order By [0 Is Null Is Null][..[_usn3 =~00,9e1 Is Null Is Null]] Descending,Single(`4esn` In `6esn`['s_str'..][010..] Where 12.0 Contains 0.e0)[..Any(`4esn` In 's_str'[12..'s_str'] Where Count(*)[`7esn`..$12])][..Extract(@usn5 In .12[#usn7][$`8esn`] Where 01234567 =~usn1)] Ascending,`8esn` In $@usn5 Asc Limit $#usn8 Is Null Match #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) Union Return Distinct (_usn3 :`6esn`:`7esn`{usn1:$_usn3[9e1][$_usn4],`8esn`:123456789 =~_usn4 =~$0})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-({`1esn`:@usn6}) In _usn3(0x0[0X7..][usn1..]) In None(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str') As _usn4 Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending Skip 07[12][$`6esn`] Remove ({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})-[#usn8?]-(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7}).@usn6?,{`3esn`:`4esn`[7..][1000..],usn2:123456789 Starts With `2esn` Starts With 9e12}.`8esn`!,@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12).`5esn`! Create ((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})),#usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}));"), - octest:ct_string("Remove [#usn7 In 01234567[$`3esn`..] Where .12 Starts With @usn5 Starts With $#usn8|$`6esn`[$`1esn`][1000]].@usn6?,usn2($#usn8 Is Null Is Null)._usn4 Union All With *,123.654 Is Not Null Is Not Null Order By $123456789[$``][010] Desc,#usn8 Is Not Null Asc,$@usn5 Ends With 0X0123456789ABCDEF Desc Skip @usn6 Contains _usn4 Contains $`4esn` Where usn1[..@usn5][...e0];"), - octest:ct_string("Remove {``:9e1 Starts With _usn3 Starts With `4esn`}.`8esn`? Unwind False[.e1..Null] As `5esn` Create (:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0});"), - octest:ct_string("Remove `7esn`:`4esn`:#usn8,@usn6:usn2:@usn6 Create `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})),((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`1esn`{`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654}]->(`7esn` :`7esn`));"), - octest:ct_string("Merge ((:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})) On Create Set `3esn`+=$_usn3 =~$`3esn` =~0x0,Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|999[``..][Null..]).`8esn`? =Extract(usn2 In 1000 Contains 0.e0 Where `7esn` Contains .0 Contains 9e12|_usn3 Is Null)[Single(_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01])],`1esn`+=0.12 Contains .e1 Merge ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) On Match Set (`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})<-[?{#usn7:`6esn`[False..0.0][12e12..$usn2]}]-(`4esn` {`4esn`:#usn7[..$1000][..01]})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}).`4esn`! =0 Is Not Null,`6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`1esn` =$_usn3[$`4esn`..Null] On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Delete 's_str' In \"d_str\" In 123456789,9e12[..$``][..`6esn`],9e0[``][123.654] Union All Unwind (`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:usn1|`3esn`*]->(:_usn3{`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`})-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(usn1 :#usn8) Is Not Null As `8esn` Union All Optional Match _usn3=(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),#usn8=(((`3esn` )-[?:#usn7|:_usn4]-(usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]})));"), - octest:ct_string("Merge `2esn`=(_usn4 {`8esn`:9e1 In 01 In 999})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`) On Match Set @usn5+=`1esn`[9e12..$`8esn`][usn2..$``],usn1 =[12.e12 Ends With 01 Ends With .e1,$@usn5[0.12..][@usn5..],$usn1 In 1000 In $#usn7] Is Not Null On Match Set _usn4 =0 Contains 12e12,`1esn`:#usn8,`7esn` =0 Is Not Null Unwind .12 Contains $`4esn` Contains $`6esn` As _usn4 Optional Match `2esn`=(`` :usn2:@usn6)<-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`7esn` :`4esn`:#usn8{`2esn`:Count(*)[..`3esn`]}),(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})-[`4esn`:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]-(_usn3 :``)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->({`1esn`:0.0[1000..][.e1..]}) Where $`7esn` Ends With $`2esn` Ends With $usn1;"), - octest:ct_string("Create usn1=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[`7esn`?]-(@usn6 :_usn3{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]})),#usn7=(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[@usn5?:_usn3|:`4esn` *..0x0]->(#usn8 {usn2:7 Contains 9e1}) Union Return Distinct *,0.0 Is Null Is Null As `8esn` Order By $1000 Is Null Is Null Descending,1000 In 0X0123456789ABCDEF In 01 Asc Return *,({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) Order By [0 Is Null Is Null][..[_usn3 =~00,9e1 Is Null Is Null]] Descending,Single(`4esn` In `6esn`['s_str'..][010..] Where 12.0 Contains 0.e0)[..Any(`4esn` In 's_str'[12..'s_str'] Where Count(*)[`7esn`..$12])][..Extract(@usn5 In .12[#usn7][$`8esn`] Where 01234567 =~usn1)] Ascending,`8esn` In $@usn5 Asc Limit $#usn8 Is Null Union Merge `7esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)) On Create Set `3esn`+=00 Ends With $_usn4 Ends With $`2esn` On Match Set `6esn`:usn1,`7esn`+=07[`6esn`..][`5esn`..] With Distinct *,.e1 Starts With $`8esn` Where 12.e12[$1000..] Remove [usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]]._usn3,{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12}.@usn6,[usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]].usn2?;"), - octest:ct_string("With Distinct $@usn6 Starts With usn2 Starts With usn2,None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]],$`7esn` Ends With $usn2 As `5esn` Order By $12[01..][1.e1..] Descending,0e0 Starts With .e12 Ascending Where 12 Ends With .e12 Ends With $7 Create @usn6=(((@usn6 :`5esn`{``:.e1 In $@usn6 In 999,`8esn`:_usn3 Is Null Is Null})<-[$#usn8]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})-[`6esn`? *0Xa{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}]-(:`6esn`:`7esn`{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1}))) With Distinct 1000[123.654..9e12][1000.._usn3],Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) As _usn4,``[$`3esn`][01234567] Order By {`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00} Starts With Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12) Desc,9e0 Ends With $`7esn` Ascending,`1esn`(Distinct Count(*)[..`3esn`]) Starts With $0 Ascending Limit .12[`1esn`..][$`3esn`..] Where $0[01234567..00][$`2esn`..$@usn6] Union Optional Match (((usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1)<-[@usn5:#usn8{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(#usn8 :_usn3))),((:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[`2esn`:@usn5|`8esn`]->(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7})) Where .e1 Starts With 0.0 Starts With `6esn` Union Detach Delete $`7esn` In $7 Unwind 0x0[$`3esn`] As _usn4;"), - octest:ct_string("Match `8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Create `1esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) Optional Match usn2=((#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`6esn`?:usn1|`3esn`{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})),((usn1 :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)) Where `3esn`[..7][..12e12];"), - octest:ct_string("Remove `6esn`:@usn5,Extract(@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..])._usn3!,Extract(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7|@usn6[`5esn`..$`3esn`])._usn4! Return *,00 Ends With .12 Ends With `4esn`,9e0[``][123.654] Order By `2esn` Contains $999 Asc Skip $_usn4[$`1esn`] Limit 0xabc Contains 0e0 Contains \"d_str\" Union Return Distinct 123.654 Starts With usn1 Starts With @usn5,`7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As `8esn`,$`7esn` Ends With `1esn` Ends With True As `5esn` Order By {`3esn`:$999[12.0..]} =~[$#usn8 In .e12 In 9e1] Desc,\"d_str\" =~`6esn` =~0Xa Asc,(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Descending Return *,9e12[_usn3] As `8esn`,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn` Order By `6esn` Starts With $`5esn` Desc,$`7esn` Ends With 07 Ends With 07 Desc With Distinct $#usn8 In .e12 In 9e1 Order By All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..] Asc,0Xa[0xabc..] Ascending,@usn6[$`3esn`] Ascending Skip 1e1 In $#usn8 In 12e12;"), - octest:ct_string("Return *,$@usn6[..$usn1] As _usn3 Skip $@usn6 Is Null Limit `3esn` =~$`5esn` =~12 Return Distinct 1.e1 =~$_usn4 As usn2,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,{_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] Order By $12 Starts With #usn7 Asc,$0[$0..] Descending Union Match `3esn`=((:#usn8{_usn4:\"d_str\"[Count ( * )],`2esn`:9e0 Ends With $`7esn`})) Remove All(`4esn` In 's_str'[12..'s_str'] Where $`8esn`[..$``]).`7esn`!,usn2(07[$999]).`4esn` Merge (({@usn6:0X0123456789ABCDEF[..usn1]})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn3{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})-[usn1*]->(:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})) On Match Set `4esn` =.e12[.12..][_usn4..] On Match Set All(`6esn` In 0X7 =~`` Where `7esn`[...e1][..\"d_str\"]).`5esn` =None(usn2 In 1000 Contains 0.e0 Where $usn1[..$`6esn`][..Null]) Starts With Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]|$`1esn` Starts With $999) Union Create @usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})) Optional Match _usn4=(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Where @usn6[..0xabc][..$#usn7];"), - octest:ct_string("Delete Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null Union All Return Distinct *,`4esn` Is Null Order By `5esn` In $999 Descending Limit `3esn` =~$`5esn` =~12 Union Return Distinct *,usn2 =~0x0,07 In `5esn` In 12e12 Skip Null Contains 9e1 Limit [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..];"), - octest:ct_string("Delete [_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]] Ends With [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]],Single(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8)[{_usn3:$0 Ends With $#usn7 Ends With .12}][[12.0[0Xa][00],.0[01][$12]]] Unwind `2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As `4esn` Union Match _usn3=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}),``=(({`5esn`:0e0 =~_usn4})) With *,.e12 Starts With True As _usn4,$1000 In $`7esn` In $7 Skip [$1000 =~$`7esn`,.12 Starts With @usn5 Starts With $#usn8,0x0[...e12][..@usn5]] Ends With Single(@usn5 In .12[#usn7][$`8esn`]) Limit Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]|$0 =~$usn1 =~9e1)[{``:\"d_str\",`1esn`:$1000 =~$`7esn`}] Detach Delete 0X7 In 123456789 In $`5esn`;"), - octest:ct_string("Merge `6esn`=(:_usn3{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) With Distinct $`4esn`[$`2esn`..] As #usn8,#usn8 In $0,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Skip $@usn5 =~$`` =~$usn2 Limit `8esn` Ends With 999 Ends With 9e0 Merge `5esn`=(usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[ *0xabc{`1esn`:123.654 In \"d_str\" In $_usn3}]-({`2esn`:$usn2 Is Not Null});"), - octest:ct_string("Delete Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]),7 Is Null Create ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})),((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) With Distinct Null[0.e0..0x0] As `2esn`,$`1esn` Starts With $999 As #usn8 Where Count(*)[`7esn`..$12] Union All Merge @usn6=(({_usn3:$0 Ends With $#usn7 Ends With .12})-[@usn6?:#usn7|:_usn4 *00..]->(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})) On Match Set [`6esn` In 0X7 =~`` Where $`3esn` =~Null|1.e1[0X0123456789ABCDEF..][$`5esn`..]]._usn3? =Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null)[count(Distinct 0.12 Contains $12 Contains `8esn`)..[$`1esn` Is Null Is Null,9e1 In 01 In 999]],`1esn`+=None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]) Ends With None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With @usn6($123456789[0.0..]),(_usn4 {#usn7:False[`2esn`..#usn8],#usn8:`5esn`[`1esn`..`1esn`]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]}).`3esn` =01234567[$@usn6..0X7][$`1esn`..123.654] Union All Remove `1esn`:`6esn`:`7esn`,`4esn`(@usn6[..0xabc][..$#usn7],0X7[12]).`5esn`!;"), - octest:ct_string("Create `4esn`=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})),(`7esn` :_usn4:usn1)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})-[`1esn`{`2esn`:.12 Starts With @usn5 Starts With $#usn8}]->(:usn1{`6esn`:1000 Contains 0.e0,`7esn`:$@usn6[..$#usn7][..12.e12]}) Create @usn5=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) Remove ``(9e0 Contains `8esn`).`1esn`,[$`1esn` Is Null Is Null,010 Contains 0X0123456789ABCDEF,9e1[0.e0..][#usn8..]].`` Union Create ((@usn6 :#usn7{@usn5:Null Is Null Is Null})) Remove None(usn1 In 0x0[..`4esn`] Where False[.e1..Null]).``,[.e0[..999][..0X7]].`5esn`? With Distinct 12e12[.12..] As #usn8,`4esn` Is Null,Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[{@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null}..] Skip $0[..07] Limit 999 Contains `7esn` Where $`2esn` Starts With .e0 Starts With 12.0 Union Delete `6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]),Extract(_usn4 In usn1 Contains False Contains `` Where $`4esn` Starts With 1e1|Count(*)['s_str'..`1esn`]) =~Extract(`4esn` In $`8esn` Starts With 1000|`7esn`[Null..][@usn5..]) =~(:`4esn`:#usn8)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ) Create @usn5=((#usn7 {#usn7:01234567[.12..7][1000..1.e1],``:@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})) Delete 12e12[1000..][0x0..];"), - octest:ct_string("With Distinct *,0.12 In $`4esn` In `6esn`,`4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}] As `2esn` Order By Null[@usn6..][9e1..] Ascending Skip 07 Ends With 07 Limit All(_usn4 In usn1 Contains False Contains `` Where $`4esn`[$`2esn`..])[..Single(usn1 In $123456789 Contains usn2 Where $usn1[0.12..]['s_str'..])][..``(Distinct `1esn`[0e0..])] Where 's_str'[..0.e0][..`1esn`] Detach Delete $999[12.0..] Remove (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`).`2esn`,[.12 Contains $`4esn` Contains $`6esn`].@usn6;"), - octest:ct_string("Remove None(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567).`8esn` Union Merge usn2=(:`8esn`{usn2:7 Contains 9e1})<-[_usn3?:`7esn`|`2esn` *010]-(#usn8 :`4esn`:#usn8)-[`8esn` *..0x0{#usn7:Count ( * )[Count ( * )..12e12][usn1..1000],`4esn`:010 Is Null Is Null}]->(@usn6 ) Unwind 0x0 =~_usn4 As `5esn`;"), - octest:ct_string("Remove [$0[01234567..00][$`2esn`..$@usn6],@usn6 =~01,`4esn` In $12 In `8esn`].usn1,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[9e1..][0..]|9e12 Is Not Null Is Not Null].#usn8?,None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `7esn` Ends With $usn2 Ends With 999)._usn4! Union All Delete 0X0123456789ABCDEF Contains $usn1 Merge (({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8)) On Match Set `8esn`:`4esn`:#usn8,Extract(`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]|_usn3 Is Not Null Is Not Null).`6esn`? =#usn8 Is Not Null,usn1 =Extract(#usn8 In $`5esn` Is Null Is Null Where @usn6 Contains .e1 Contains $`4esn`) In Filter(`4esn` In `6esn`['s_str'..][010..] Where 12e12[Count ( * )..][usn2..]) In [123456789 In $usn2 In `6esn`,Count(*) Ends With 010];"), - octest:ct_string("Detach Delete [Count ( * )[Count ( * )..12e12][usn1..1000]][None(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..])..][(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})<-[`2esn`:usn1|`3esn` *0Xa]->(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})..],0Xa[..$``],_usn3 Contains @usn6 Contains 1.e1;"), - octest:ct_string("Merge (`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) On Match Set `2esn`(Distinct $`2esn`[..7][..$usn1]).`1esn`? ={`4esn`:.12 Starts With 0Xa} Starts With All(usn1 In 00 Starts With _usn3 Where `6esn`[False..0.0][12e12..$usn2]),`5esn` =$usn1[0.12..]['s_str'..],({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})-[#usn8?]-(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7}).`6esn`? =[999[.e12][01],999 In 9e1 In 7,0xabc Contains Null Contains 9e12][All(`6esn` In 0X7 =~`` Where 0.12[Null..])..[`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]]][count(010 Contains Count(*))..(:`4esn`:#usn8)-[:#usn8 *..0X7]->({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6)];"), - octest:ct_string("Merge #usn8=(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})<-[``]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[ *00..{`2esn`:$0 Is Not Null}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) On Match Set `1esn`+=Null[0e0][12],Filter(usn1 In 0x0[..`4esn`] Where $`` Ends With 12e12).usn1! =Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] With Distinct 's_str'[..0.0][..$`4esn`] As `2esn`,#usn7 Contains .0 Contains .e1,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Skip `6esn` Starts With $usn2 Starts With 0.0 Limit 9e1 Contains $`3esn` Contains 01234567 Union Detach Delete _usn3[...12][..01234567],010 In `7esn`,{`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00} Starts With Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12);"), - octest:ct_string("Unwind 01 In _usn3 In 12 As `4esn` Create @usn5=(`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0}) Unwind #usn8[$#usn8..] As `4esn`;"), - octest:ct_string("Unwind `3esn` =~$`5esn` =~12 As `7esn` Remove [.12 Starts With 0Xa].`4esn`! Union All Detach Delete $7 Ends With 12.0 Ends With 0xabc,`` Is Not Null Create #usn7=((#usn7 {`2esn`:$@usn6[..$usn1],usn2:12 Ends With 01 Ends With 1e1})),`2esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}) With {@usn5:0.e0[@usn6][0x0]} Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7) As #usn7,$`3esn`[`2esn`...e0],0.12[Count(*)..] Order By _usn3[0] Ascending Limit `1esn`(Distinct Count(*)[..`3esn`]) Starts With $0;"), - octest:ct_string("With Distinct *,Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) As _usn3 Order By False[..12.e12] Descending,{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc Limit 12.e12[@usn5..123.654] Union All Unwind 0Xa[0xabc..] As @usn5 Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)],$`4esn` Ends With 0Xa,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null With Distinct *,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn`,@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn` Skip {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]} Where .12 =~.12 =~1e1 Union Unwind 0Xa[0xabc..] As @usn6;"), - octest:ct_string("Match `4esn`=(((`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[?{`4esn`:0.e0 Ends With 12 Ends With $7,@usn6:$``[_usn4..][`7esn`..]}]->(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]}))),((:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Remove Filter(usn1 In 00 Starts With _usn3 Where 12e12[Null]).`7esn`!,Filter(`4esn` In `6esn`['s_str'..][010..] Where 12e12[Count ( * )..][usn2..]).`2esn`! Union All Remove _usn3(Distinct $1000 Contains $`3esn`,7 Contains $`5esn` Contains $usn1).usn2?,{@usn5:0.e0[@usn6][0x0]}._usn4,_usn3:`4esn`:#usn8 Merge `8esn`=(({@usn6:$123456789 Is Null Is Null,@usn6:`6esn`[1.e1..$#usn7][.e0..True]})<-[`5esn`:usn1|`3esn` *010{`2esn`:`6esn` =~01234567 =~0Xa}]->(_usn4 :``)) Union All Remove (:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`2esn`]-(`6esn` :#usn7)-[_usn4?:`6esn`]-(@usn5 :`8esn`).`7esn`,`7esn`(usn2 Is Null Is Null,`6esn` =~$_usn3).`1esn`!;"), - octest:ct_string("With Distinct $`4esn`[12.e12..][0.0..] As `2esn`,$0[..`8esn`] As _usn4,$`1esn` Starts With $999 Skip $#usn8[1e1][9e1] Limit Count(*) Ends With 010 Remove [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1|9e1 Starts With `1esn` Starts With 0Xa].usn2?,Count ( * ).@usn5? Remove `5esn`:usn1,(`3esn` :_usn4:usn1)-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[`` *0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`1esn`! Union All Unwind 07[`6esn`..][`5esn`..] As usn1;"), - octest:ct_string("Create ((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(@usn5 {_usn4:010[$@usn6],`6esn`:123456789[1e1..0.0]})<-[`6esn`?:`2esn`|usn2 *01234567..12]->(:`7esn`{#usn7:True =~@usn5 =~$`1esn`})),`6esn`=({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Remove None(usn1 In 00 Starts With _usn3 Where 123456789[`4esn`..][Count ( * )..]).#usn8!,All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..])._usn4 Union All With 12e12[Null] As usn2,$`4esn`[0][0e0] As _usn3,12e12 Starts With $123456789 Starts With 12.0 Order By Count(*)[.e0.._usn4] Asc Skip (`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Where $`7esn` Ends With `1esn` Ends With True Merge `4esn`=({`8esn`:0X7 In 's_str' In $`1esn`}) Union Create (`` :usn1);"), - octest:ct_string("Merge `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) On Match Set usn2+=$`4esn`[9e1..][0..],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null},(usn1 :#usn7)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->(`4esn` {`7esn`:.e0[..999][..0X7]}).usn2 =$`3esn`[`2esn`...e0] Unwind $_usn4[`3esn`][0] As `7esn` Optional Match _usn3=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))),usn2=((`5esn` :`7esn`)) Where $@usn6[..$#usn7][..12.e12] Union Detach Delete Null Contains _usn4,12.e12[0e0..7];"), - octest:ct_string("Return 0 =~12.e12 =~$``,@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn` Order By $`7esn` Starts With 07 Ascending Merge (usn1 {`4esn`:$123456789[0.0..],`2esn`:12 Ends With 01234567})<-[usn1? *..0X7]-(usn1 :`4esn`:#usn8)-[ *010{@usn5:Null Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Match Set [0X7 =~.0 =~\"d_str\",9e1[...e0]].@usn5 =Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}),{@usn6:usn1 In 1000 In $`5esn`,@usn6:9e0[``][123.654]}.`3esn`! =$999 In $`8esn` In `5esn` On Match Set `6esn` =7[..0X7][..'s_str'],[$`5esn` Contains $@usn6].`1esn` =1e1[@usn5..],Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 07 In 0 In 's_str').@usn5? =True Is Not Null Union Delete .12 Starts With 0Xa,.12[#usn7][$`8esn`] Unwind $_usn4[$`1esn`] As `2esn` Delete [07,$_usn3[..Count ( * )][..@usn5]][All(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0)..{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}][[010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]]..Filter(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12)],`6esn` Starts With $usn2 Starts With 0.0;"), - octest:ct_string("With Distinct *,Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) As _usn3 Skip 010 Starts With `7esn` Starts With 9e1 Limit 07[12][$`6esn`] Where $_usn4[$`8esn`..][07..] Unwind 9e0[False] As #usn8 Detach Delete .e0 Is Not Null Is Not Null,{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]} =~Single(usn2 In 1000 Contains 0.e0) =~Any(@usn6 In @usn5 In $`6esn` Where $`7esn` Is Not Null);"), - octest:ct_string("Remove Single(usn1 In $123456789 Contains usn2 Where 9e12[0.0..12.e12]).`4esn`!,(_usn4 )<-[#usn7? *00..]->(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`).``! With *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `3esn`,07[$999] As `` Where 9e0[$_usn3..0X7][7..$#usn8] Remove (:``{#usn8:$`2esn`[..`2esn`]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]}).`5esn`,(@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}).`4esn`;"), - octest:ct_string("Create `1esn`=(((`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})-[ *010{@usn5:Null Is Null Is Null}]-(:`5esn`)<-[`7esn`{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}]-(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}))) Remove Extract(`4esn` In $`8esn` Starts With 1000 Where `5esn` In 12|010 Contains 0X0123456789ABCDEF).`2esn`,{#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}.`2esn`! Return Distinct *,9e12 Ends With 0X0123456789ABCDEF Ends With #usn7 As `5esn`,$12[`3esn`..0e0][`2esn`..$7] As #usn8 Order By $`2esn` Starts With .e0 Starts With 12.0 Descending,{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,999 Is Null Is Null Desc Limit $7 Ends With `5esn`;"), - octest:ct_string("Merge ((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})) On Create Set _usn4+=@usn6(Distinct 12.e12[0e0..7],usn1[Count ( * )..$usn1]) Is Null Is Null,(_usn4 :``)-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6}).`5esn` =\"d_str\" Contains `3esn` Contains 00,`4esn` =``[True..] On Create Set #usn7+=Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]),Extract(@usn5 In $#usn8 Is Null Is Null Where $@usn5 =~$`` =~$usn2|`5esn`[.e1][0Xa]).`6esn`? =$`1esn` Is Null Is Null Remove (:#usn7{usn1:$123456789[..0.12][..#usn7]})-[:_usn4|:@usn5 *0xabc]-({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`}).``?,(:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8}).#usn8? With Distinct {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null As #usn8,010[$`8esn`..][0..] Order By .e12[.12..][_usn4..] Ascending,Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] Asc Skip {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']}[(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)] Limit 9e12[usn2..7][.e1..$`7esn`] Where .0[01][$12] Union All Detach Delete ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] Return $usn1[0.12..]['s_str'..] As `1esn`,(`4esn` :`8esn`{_usn4:0 Is Null Is Null})-[`6esn`:`8esn`|:usn1$_usn3]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Ends With Filter(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999) Ends With [`4esn` In `6esn`[1e1..] Where 07[12e12]] Order By Count ( * )[..999] Asc Skip (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})<-[`6esn`?:@usn6 *999..]->(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})[Filter(_usn4 In usn1 Contains False Contains `` Where 123456789 Is Null)..];"), - octest:ct_string("Detach Delete $#usn7 In .e1 In 01,False Starts With Count ( * ) Unwind usn1[1e1][$_usn4] As _usn4;"), - octest:ct_string("Remove Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`|.12 Ends With `1esn` Ends With $`1esn`).`5esn`! Optional Match usn2=((usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(usn2 :`5esn`)),((`3esn` :`8esn`)-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})-[ *..0X7]->(`5esn` :_usn4:usn1)) Unwind [@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] As usn1;"), - octest:ct_string("Create @usn6=((:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})-[?:`4esn`|:`7esn`]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})),#usn7=(@usn5 {usn2:$999[12.0..]})<-[usn1]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[_usn3?:``|:_usn4]->(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null});"), - octest:ct_string("Remove {@usn6:True[..'s_str'][..01]}.#usn7!,(_usn4 {#usn7:False[`2esn`..#usn8],#usn8:`5esn`[`1esn`..`1esn`]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]}).`3esn` Unwind `1esn`(Distinct 0.0[999..],9e0 Ends With $`7esn`) Ends With (`7esn` {`8esn`:Count ( * ) =~Count(*)})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}) Ends With (#usn7 :`2esn`:`3esn`)<-[`2esn`?*..]->(:#usn8{`5esn`:0 Contains 12e12}) As usn1 With 1000 Contains $#usn7 Contains `6esn`,All(@usn5 In $#usn8 Is Null Is Null Where 's_str'[..0.0][..$`4esn`]) Is Null Is Null Order By $123456789 Ends With .e1 Ascending Skip $`3esn` Contains 0X0123456789ABCDEF Contains 00 Limit $_usn3 =~$`3esn` =~0x0 Where $usn2[..12.0];"), - octest:ct_string("With Distinct *,$`7esn` Ends With $@usn5 As usn2,$@usn6 Starts With usn2 Starts With usn2 As #usn8 Skip 0.e0[..#usn8][..Null] Limit 00 Starts With _usn3 Where $@usn6 Contains 07 Contains 0.e0 With $usn2[$123456789..123.654][$`5esn`..'s_str'],@usn6[$`8esn`][12.e12] As @usn5,$7[.12] As _usn3 Order By @usn5 Contains 01 Contains 12 Ascending Limit $7[.12] Where $usn1[_usn4..][usn2..] Merge (`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5});"), - octest:ct_string("Create usn1=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})),`4esn`=((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})) Optional Match #usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})),@usn5=(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})<-[`2esn` *12..0xabc{`6esn`:$123456789[0.0..],@usn5:999[$`6esn`]}]-(`7esn` {`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) Where @usn5[..True][..0X7] With Distinct Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] As @usn5,12 Is Null Is Null As #usn7 Limit 0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Where 12[..9e0][..999];"), - octest:ct_string("Optional Match `7esn`=(`2esn` )<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}),`1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Where Null[01234567][01234567] Union All Unwind 123.654[`5esn`] As @usn5 Create usn2=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}),(`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Union All Remove `8esn`(Distinct 0X0123456789ABCDEF[..usn1]).`3esn`?,Extract(`4esn` In `6esn`['s_str'..][010..] Where #usn8[$#usn8..]).`8esn`! With Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4) Is Null As usn2,$`7esn` Ends With $@usn5,9e1 Contains $`3esn` Contains 01234567 As @usn5 Order By Filter(_usn4 In usn1 Contains False Contains `` Where 123456789 Is Null) Contains (:``{#usn8:$`2esn`[..`2esn`]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]}) Contains _usn4(@usn6[`5esn`..$`3esn`],9e1 Starts With _usn3 Starts With `4esn`) Ascending,[@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Desc Skip [usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..] Remove None(#usn8 In $`5esn` Is Null Is Null Where 01234567 Ends With 12.0 Ends With 0X7).`2esn`?,[9e0 =~$`5esn`]._usn3!,(_usn4 )<-[#usn7? *00..]->(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`).`1esn`;"), - octest:ct_string("Optional Match `8esn`=((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})),`4esn`=(#usn7 :@usn5)-[`4esn`:_usn3|:`4esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:usn1{`8esn`:usn1 Contains $``}) Where \"d_str\" Starts With $usn1 Union Create usn2=((`5esn` :usn2:@usn6{`5esn`:0Xa In .e1 In Count(*)})),_usn4=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})) Return Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])[All(#usn7 In 01234567[$`3esn`..] Where Count(*)[.e0.._usn4])..][None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..])..] As @usn6,0X0123456789ABCDEF Contains 12.e12 Contains 999 Order By 9e1[0.e0..][#usn8..] Asc,$0 =~`3esn` Asc Limit False Is Null Union Remove (:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)}).usn1!,None(usn1 In 00 Starts With _usn3 Where 999 Contains `7esn`).`3esn`?,_usn3:usn1 With Distinct $`4esn`[$`2esn`..] As #usn8,#usn8 In $0,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Skip $@usn5 =~$`` =~$usn2 Limit `8esn` Ends With 999 Ends With 9e0;"), - octest:ct_string("Create (((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})-[_usn4?:`5esn`|`1esn`]-(@usn5 {``:12[usn1][True],``:$`5esn` In `2esn` In $12})<-[`` *0xabc]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}))),`6esn`=(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Remove [`3esn`[..7][..12e12]].`2esn`?,(`7esn` :#usn8)-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?{`3esn`:`6esn` =~01234567 =~0Xa,@usn5:0.e0[9e1..][0.0..]}]->(`2esn` {#usn8:12.e12[0e0..7]})._usn4? Union All Match @usn6=((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]->(:_usn3{@usn6:$`7esn` Is Null Is Null})),((({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999})<-[@usn6?:`6esn`*..]-(_usn3 :usn2:@usn6)-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6))) Where #usn7 Ends With 9e1 Optional Match #usn7=(:#usn7{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[:@usn5|`8esn`*..]-(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) Match (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Where Count ( * ) =~Count(*);"), - octest:ct_string("Match (((:`7esn`{#usn8:07 In 0 In 's_str',`6esn`:_usn3 =~00})-[`5esn`?:``|:_usn4]->(:#usn8{#usn7:12e12 Ends With 010 Ends With .0})<-[`3esn`{`7esn`:010 =~`6esn`,``:$usn2 =~$_usn4 =~`5esn`}]->({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}))) Where .0 Starts With `2esn` Starts With `6esn`;"), - octest:ct_string("Remove {`5esn`:0e0 =~_usn4}.usn1?,[usn1 In 00 Starts With _usn3 Where False[.e1..Null]].`4esn`? With *,0 Is Not Null Order By 07[`6esn`..][`5esn`..] Desc,_usn3[`3esn`][False] Ascending,Extract(usn2 In 1000 Contains 0.e0) Ends With Single(usn1 In 0x0[..`4esn`] Where 12.e12 Contains `5esn`) Ends With Single(usn1 In 00 Starts With _usn3 Where $0[01234567..00][$`2esn`..$@usn6]) Desc Where $#usn7 In .e1 In 01 Union All Create (`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})-[`1esn`:usn2|#usn8 *1000..]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`),`4esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Delete (`6esn` {@usn6:9e0 Contains `8esn`})<-[`5esn`:usn1|`3esn` *010{`2esn`:`6esn` =~01234567 =~0Xa}]-(usn2 {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789})<-[ *00..{`3esn`:12 Ends With 01234567,`4esn`:00[``..][$`4esn`..]}]->(`2esn` :``)[[999[``..][Null..],usn1 In 1000 In $`5esn`,`5esn`[.e1][0Xa]]] Create ((_usn4 {`8esn`:9e1 In 01 In 999}));"), - octest:ct_string("Remove None(usn1 In 0x0[..`4esn`] Where $usn1[0.12..]['s_str'..]).@usn6?,Any(usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null).``?,[`6esn` In 0X7 =~`` Where 123456789 =~_usn4 =~$0]._usn3! Union Optional Match _usn3=((:`7esn`{`2esn`:0Xa In .e1 In Count(*),`8esn`:.12[`1esn`..][$`3esn`..]})<-[@usn5?:_usn3|:`4esn` *..0x0]->(#usn8 {usn2:7 Contains 9e1})) Create ({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[ *..0x0]->(#usn8 {usn2:7 Contains 9e1}) Union All Return *,1.e1[Null][12.e12] As ``,Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) As _usn3 Order By 0.e0[`6esn`...e0][9e12...e12] Descending,_usn3 In .e1 In $12 Asc Skip [$`4esn`[9e1..][0..]][Any(`4esn` In $`8esn` Starts With 1000 Where 0.e0[9e1..][0.0..])..Single(#usn8 In $`5esn` Is Null Is Null Where 1000 Ends With 1000 Ends With $`4esn`)] Limit 123456789 =~_usn4 =~$0 With Distinct *,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Limit Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]});"), - octest:ct_string("Create (({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) Return `8esn`[_usn3..$#usn7],({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn` Skip `7esn` Starts With $usn2 Starts With .e0 Limit 00 Is Not Null Is Not Null Union Merge (((usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1)<-[@usn5:#usn8{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(#usn8 :_usn3))) With Distinct None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) As _usn3 Skip `2esn` Is Not Null Is Not Null Limit None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] Union All Optional Match (#usn7 :`6esn`:`7esn`)<-[`3esn`?:_usn3|:`4esn`]->(:`1esn`{_usn4:$_usn3[Null]})-[ *..0X7]->(`5esn` :_usn4:usn1) Where 0.12 In $7 In 0;"), - octest:ct_string("Create @usn5=({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)<-[?:usn2|#usn8{#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7}]-({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}),((:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1})) With Distinct {usn1:'s_str'[12..'s_str'],#usn7:07[`6esn`..][`5esn`..]} As `1esn` Limit {`7esn`:.e0 Contains #usn7 Contains $#usn8}[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..None(`6esn` In 0X7 =~`` Where 12.e12['s_str'])][(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})..({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})];"), - octest:ct_string("Return Distinct Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1),9e1[010..] As `6esn` Order By $`2esn`[$usn2..][123456789..] Ascending,{@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7) Asc Limit 9e1 Starts With `1esn` Starts With 0Xa Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null})-[#usn7:`1esn` *07..]->(#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})) Union All Merge `8esn`=(:`8esn`) On Match Set usn2+=.e1 Ends With _usn4 Ends With @usn5,@usn5+=_usn3 In .e1 In $12,Extract(`4esn` In `6esn`[1e1..] Where $`7esn` Ends With `1esn` Ends With True).`` =010 In @usn6 Return Distinct Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1),9e1[010..] As `6esn` Order By $1000 Contains $`3esn` Desc,(`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Ascending,[$`3esn` Starts With 01234567 Starts With $1000] Starts With `4esn` Starts With [$`2esn`[..7][..$usn1]] Desc Skip $`7esn` =~.e1;"), - octest:ct_string("Remove Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``]).`4esn`!,count(Distinct $#usn8,False Is Not Null Is Not Null)._usn3?,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn` Starts With $`` Starts With $#usn7).`3esn`? Union Merge `1esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) On Create Set Extract(`4esn` In `6esn`['s_str'..][010..] Where 01 Ends With .e0|00[7..$123456789]).usn1? =usn2[`3esn`][_usn3],usn2+=[usn1[..@usn5][...e0]] In Extract(`6esn` In 0X7 =~`` Where $1000 Contains $`3esn`|12 Ends With 01234567) In {`3esn`:$`5esn` In `2esn` In .0,``:0e0 Is Null Is Null} On Create Set usn1+=`4esn` Ends With 123456789 Ends With @usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`! =\"d_str\" =~`3esn` =~0Xa,Any(_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0)._usn3 =`` =~12 =~$#usn7 Detach Delete $_usn3 =~`7esn` =~$_usn4,`7esn` Starts With $`` Starts With $#usn7,$0 =~`3esn` Return Distinct $_usn3[$`4esn`..Null] Skip 123456789 Starts With `2esn` Starts With .0;"), - octest:ct_string("Return Distinct *,01234567 Is Null Is Null Order By 0e0 =~Count(*) =~0Xa Descending Skip [$1000 Is Null Is Null] Is Null Limit Extract(@usn6 In @usn5 In $`6esn` Where $`5esn` Contains $@usn6|$0[7..][Null..])[[`6esn` In 0X7 =~`` Where 9e1[0.e0..][#usn8..]]] Optional Match `1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) Where $`3esn` =~$`7esn` =~False With *,`7esn`[...e1][..\"d_str\"],12e12[0.e0..True][0.12..0.0] As #usn7 Order By 0xabc[12.e12..`1esn`] Ascending,12.e12 In $1000 Ascending,[`6esn` In 0X7 =~`` Where 0.12[Null..]] Is Null Is Null Ascending Limit Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1)[00..] Where 0.e0[..#usn8][..Null] Union All Unwind (#usn7 :#usn8)-[`6esn`:`4esn`|:`7esn` *..0x0]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})[Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])][Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])] As `4esn` Union Merge ((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) On Create Set usn1+=Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Detach Delete $#usn7[...e12][..$7],({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]}) =~`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0) Create `8esn`=(:`8esn`);"), - octest:ct_string("With Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) As _usn4 Where $usn1[0.12..]['s_str'..] Unwind [1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As @usn6 Union All Create ((:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})<-[@usn6:`3esn`|:`4esn`*]->(`6esn` :`5esn`)),@usn6=((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})) Match #usn8=({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]}),(((`3esn` :`8esn`)-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(_usn3 :usn2:@usn6)-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}))) Where 9e0 Starts With `6esn`;"), - octest:ct_string("Delete $123456789 =~$#usn8 =~$#usn8,Count(*)['s_str'..`1esn`],[@usn5 In 0X7 =~.0 =~\"d_str\"|#usn7 Starts With `1esn`][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn`[...e1][..\"d_str\"])..][`2esn`(Distinct 12e12[Null],0xabc[12.e12..`1esn`])..] Delete {`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[{`4esn`:$7 Ends With 12.0 Ends With 0xabc,_usn4:0X0123456789ABCDEF[.e0..$`4esn`]}..][Extract(`4esn` In `6esn`['s_str'..][010..] Where $999 Ends With $`3esn` Ends With `8esn`)..],`3esn`(Distinct 123456789 =~$123456789)[..(usn1 :`6esn`:`7esn`)-[`2esn`? *0..010]->(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]})][..(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})],Extract(`4esn` In `6esn`['s_str'..][010..] Where 07 In $7 In 12|$#usn8)[{`6esn`:12[usn1][True],`3esn`:$@usn6[..$usn1]}..][{`8esn`:00}..];"), - octest:ct_string("Match `6esn`=(`6esn` :`5esn`),(@usn6 :`5esn`{_usn3:010[$`8esn`..][0..],_usn3:`2esn` Is Not Null Is Not Null}) Where 0x0 Union All With [$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] Order By .e12 =~0.0 =~9e0 Desc,010 =~$usn2 =~1e1 Desc,#usn8(0X7 In 's_str' In $`1esn`,$0 Is Not Null)[usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])] Descending Where .0 Is Null Is Null Detach Delete 0xabc Contains Null Contains 9e12,.12 Starts With 0Xa,`6esn` In 1000 In 01234567;"), - octest:ct_string("Merge `7esn`=((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)) Merge (((`3esn` )-[?:#usn7|:_usn4]-(usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]}))) On Match Set `5esn` =01234567 Starts With $_usn4,#usn7 =\"d_str\" =~`6esn` =~0Xa,{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]}.usn2? =9e12 Contains .e0 Contains .e0 Union All Return Distinct *,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}) Skip ({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}) =~None(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Return Distinct *,{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}[Extract(_usn4 In usn1 Contains False Contains `` Where `5esn`[.e1][0Xa])..] Order By [@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|#usn7 Starts With `1esn`][[@usn5 In .12[#usn7][$`8esn`] Where 0.12 In $`4esn` In `6esn`|$`1esn` Starts With @usn6]..][$`1esn`..] Ascending;"), - octest:ct_string("Optional Match `6esn`=({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}),_usn4=((#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) Return *,False In `3esn`,12.e12[$`7esn`] Order By $`1esn` Ends With _usn4 Ends With `3esn` Descending Merge #usn8=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) On Match Set `2esn`+=123.654 In \"d_str\" In $_usn3 Union Delete `6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),$@usn6[..$#usn7][..12.e12],.e0[`4esn`..`4esn`][0.0..$0] Delete 12.e12 In $1000,{_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]},$999 Ends With $`3esn` Ends With `8esn`;"), - octest:ct_string("Remove Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 0.12 Ends With $usn1 Ends With $@usn5|0X0123456789ABCDEF[.e0..$`4esn`]).`7esn`? Delete `8esn`[_usn3..$#usn7],$`6esn` Is Not Null Is Not Null,Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) Merge `3esn`=(({`5esn`:0.12 Contains .e1})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0})-[:@usn5|`8esn` *123456789..999{usn1:9e12 Is Not Null Is Not Null}]-(#usn7 :`5esn`)) Union All With Distinct *,({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]}) =~`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0),\"d_str\" =~`6esn` =~0Xa As `4esn` Create `4esn`=((:`7esn`{``:$`1esn` Starts With @usn6})),`1esn`=((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6}));"), - octest:ct_string("Merge #usn7=((_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]})) On Match Set @usn6+=(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}] On Match Set (usn1 :#usn7)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->(`4esn` {`7esn`:.e0[..999][..0X7]}).usn2 =$`3esn`[`2esn`...e0] Create ``=((`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(usn1 :_usn3)) With $`8esn` In \"d_str\" In 9e12 Order By 0X0123456789ABCDEF Is Null Is Null Descending Skip Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]);"), - octest:ct_string("Match `1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}),`1esn`=(((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))) Create ((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})),#usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) Match `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Where 's_str'[12..'s_str'] Union Return $`5esn` In `2esn` In $12 As @usn6,usn1[Count ( * )..$usn1] As usn1,[0Xa[$``..][01234567..]] Contains `3esn`(Distinct _usn3 In .e1 In $12) Contains (`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']}) As @usn6 Skip @usn6 Starts With `7esn` Starts With Null Limit $`2esn`[$123456789..$`1esn`][0Xa..$``] Union All Create (((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Match (usn2 :#usn8{`3esn`:123.654[@usn5]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`}),((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[usn1?:`1esn` *0X0123456789ABCDEF..{usn2:$`4esn`[12.e12..][0.0..]}]-(#usn7 :`5esn`)) Where 1e1[..False];"), - octest:ct_string("Return Distinct 07[07] Skip $`4esn` Contains 0Xa Limit 00[.e0..9e1] Merge (:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]});"), - octest:ct_string("Create #usn8=((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(#usn7 :`3esn`:`1esn`)<-[?{`4esn`:12e12[$`5esn`][07]}]-(:`1esn`{_usn4:$_usn3[Null]})) Remove {`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}.#usn8? Create (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Union All Create ``=((`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(usn1 :_usn3));"), - octest:ct_string("Match ((`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`)<-[ *0X0123456789ABCDEF..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]->(_usn3 :_usn3)),``=((`6esn` :`7esn`)) Where $`1esn` Starts With @usn6 Union Remove All(@usn5 In $#usn8 Is Null Is Null Where 7 In 0xabc).#usn7?,({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[`2esn`? *0..010]->(usn2 {usn1:0 Is Null Is Null,`8esn`:12.0[..$7][..999]})<-[#usn8:`3esn`|:`4esn` *0..010]->(`3esn` :usn2:@usn6).`4esn`! Merge `4esn`=(_usn4 :#usn8)-[`1esn`?:`1esn` *01234567..12]-({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}) On Create Set ``+={usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null,@usn5+=usn1[..@usn5][...e0],`2esn`+=All(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True])[..[`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|_usn3 In .e1 In $12]][..{`2esn`:$usn1[1e1.._usn3][$@usn6..$#usn7]}] On Create Set _usn4 =All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)[[usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1]],#usn7 =_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) Return Distinct All(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`)[[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]]..][({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})..] As #usn8,'s_str' In \"d_str\" In 123456789,None(`4esn` In 's_str'[12..'s_str'] Where 12.0[0Xa][00]) Is Not Null;"), - octest:ct_string("Optional Match ((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),((_usn4 {`8esn`:9e1 In 01 In 999})) Return .e12[.12..][_usn4..] As _usn4 Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Remove Single(`6esn` In 0X7 =~`` Where 010 =~`6esn`).`2esn`?,@usn6:`6esn`:`7esn`,(:``)-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}).`6esn`?;"), - octest:ct_string("With Distinct `8esn`(Distinct False Contains `3esn`,9e12 =~01 =~$`7esn`)[[@usn6[`5esn`..$`3esn`],0e0 Is Not Null Is Not Null]..] Order By usn2[$`1esn`...0] Descending,None(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00)[[@usn6 Starts With `7esn` Starts With Null]][{`1esn`:07[`6esn`..][`5esn`..],usn1:$usn2[False..`7esn`][`7esn`.._usn3]}] Ascending,01234567 Ends With 12.0 Ends With 0X7 Ascending Skip 12e12[1000..][0x0..] Create (((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Union All Create (:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}) Merge `5esn`=(({_usn3:12.e12 In $0 In Count(*)})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(`2esn` :``)-[:_usn4|:@usn5 *0xabc]-({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})) On Match Set `7esn` ={`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)],@usn6 =`5esn` In $999 On Create Set (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 =123.654 Contains `2esn`,`3esn` =Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`),{`6esn`:$_usn4[$`8esn`..][07..]}.@usn6! =`5esn`[.e1][0Xa];"), - octest:ct_string("Remove Any(usn2 In 1000 Contains 0.e0 Where .e12 Contains $12 Contains 12.e12).`2esn`,[$`6esn`[$`1esn`][1000],$``[False],07[12][$`6esn`]].`5esn`!,`7esn`(`3esn`[..7][..12e12],$999 Ends With $`3esn` Ends With `8esn`).usn2? With *,All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12) Starts With Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Contains .0 Contains .e1) As usn2 Order By All(_usn4 In usn1 Contains False Contains `` Where $`4esn`[$`2esn`..])[..Single(usn1 In $123456789 Contains usn2 Where $usn1[0.12..]['s_str'..])][..``(Distinct `1esn`[0e0..])] Asc,`4esn` =~$`3esn` =~$123456789 Ascending,$123456789[False.._usn3] Desc Skip 7[..0X7][..'s_str'] Where $123456789 Contains 01 Contains 0.12 Create ((:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})<-[@usn6:`3esn`|:`4esn`*]->(`6esn` :`5esn`)),@usn6=((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})) Union Create ((`3esn` {`8esn`:$``[_usn4..][`7esn`..]})) Merge usn2=(((`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[?:`5esn`|`1esn` *999..]->(:``)<-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))) On Match Set #usn7:``,({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})<-[?:@usn5|`8esn` *..0X7]-(:usn1).`4esn` =`6esn` Starts With $`5esn`,[`6esn` In 0X7 =~`` Where 0.12[Null..]]._usn4 =Count ( * )[`3esn`..][`2esn`..];"), - octest:ct_string("Remove [0e0].`7esn`! Detach Delete 0Xa[..$``],9e0 In 01234567 Remove {`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}.@usn5?;"), - octest:ct_string("Remove [usn1 In 0x0[..`4esn`] Where 0.12 Contains $12 Contains `8esn`|$@usn6[_usn3..0.e0]]._usn4?,Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null).`1esn` Merge `4esn`=((({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[usn2?]-(`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))) On Match Set Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where Null[..12e12][..usn1]|\"d_str\" Contains `3esn` Contains 00).#usn7? =12 Is Null Is Null On Create Set [$usn1 In 1000 In $#usn7,$#usn7 In 12.0 In 0X0123456789ABCDEF,9e0 Is Not Null]._usn3 =All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`! =0xabc Starts With _usn3 Union All Return Distinct 9e0 Starts With `6esn`,9e1['s_str'..1e1] As #usn7 Limit `1esn` Contains Count ( * ) Unwind $`1esn` =~$`1esn` =~#usn7 As `4esn` Merge `4esn`=(`3esn` {_usn3:@usn6 Contains _usn4 Contains $`4esn`})<-[`7esn` *..0x0]-(@usn5 :usn1)<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) Union All Optional Match (:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}) Remove {`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}.`3esn`!;"), - octest:ct_string("Unwind [_usn4 Ends With 01 Ends With $`1esn`,0e0 =~_usn4,$7[.12]][Any(`4esn` In 's_str'[12..'s_str'] Where $1000 In $`7esn` In $7)..Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0x0[..`4esn`])] As `3esn` Optional Match (`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}),(:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}) Where Null[01234567][01234567] Optional Match ``=((`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(usn1 :_usn3)),(((`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`5esn`)<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 ))) Union All Delete {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7),None(usn2 In 1000 Contains 0.e0 Where $usn1[..$`6esn`][..Null]) Starts With Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]|$`1esn` Starts With $999),123456789[$#usn7..] With Distinct {usn1:'s_str'[12..'s_str'],#usn7:07[`6esn`..][`5esn`..]} As `1esn` Limit {`7esn`:.e0 Contains #usn7 Contains $#usn8}[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..None(`6esn` In 0X7 =~`` Where 12.e12['s_str'])][(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})..({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})];"), - octest:ct_string("Create #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) Unwind 07[..$_usn3] As #usn7 Unwind `3esn`(Distinct _usn4 Ends With 01 Ends With $`1esn`) Starts With [Count(*) In 01 In .0,`` Starts With 12,$_usn4[$`8esn`..][07..]] Starts With Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12 In $0 In Count(*)) As _usn3 Union Return *,0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str' Order By [`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) Descending,$123456789 Ends With .e0 Ascending,({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) Desc Skip 0X0123456789ABCDEF[.e0..$`4esn`] Remove {usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}.`4esn`,Single(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`).`8esn`? Create (:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}),((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ));"), - octest:ct_string("Return `1esn`[0e0..] As @usn6,[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4,.e0 Is Not Null Is Not Null As `2esn` Order By 12.e12 In .e0 In `7esn` Asc,9e1[.12..] Asc Merge usn2=((`5esn` :usn2:@usn6{`5esn`:0Xa In .e1 In Count(*)})) On Create Set `3esn`+=[_usn4[0xabc..]][..Extract(_usn4 In usn1 Contains False Contains `` Where 12[usn1][True])][..(_usn3 {`7esn`:usn1 Contains False Contains ``})<-[? *0..010]-(#usn8 :`4esn`:#usn8)] Delete $12 Contains 123.654 Contains `8esn`,$`3esn` Is Not Null Is Not Null Union All Optional Match usn2=(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}))) Where 0X0123456789ABCDEF In 01234567 Optional Match `3esn`=((:#usn8{_usn4:\"d_str\"[Count ( * )],`2esn`:9e0 Ends With $`7esn`})) Union Unwind Extract(usn2 In 1000 Contains 0.e0 Where `7esn` Contains .0 Contains 9e12|_usn3 Is Null)[Single(_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01])] As `` With Distinct 999 In $_usn4 In 0X7 As usn2,.e1 Starts With 0.0 Starts With `6esn`,.e1 Starts With $`8esn` Where 's_str'[.12..$#usn7][$999..`2esn`];"), - octest:ct_string("Create (({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})),(({@usn6:0X0123456789ABCDEF[..usn1]})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn3{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})-[usn1*]->(:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7}));"), - octest:ct_string("Detach Delete Any(#usn7 In 01234567[$`3esn`..] Where 00 In 1e1)[[usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0|0xabc[12.e12..`1esn`]]..][[@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2]..],12.e12 Ends With 01 Ends With .e1,07[12e12] Detach Delete .e1 Starts With 0.0 Starts With `6esn`,(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')],`1esn` Contains Count ( * ) Remove usn1:`1esn` Union Remove [@usn5 In 0X7 =~.0 =~\"d_str\" Where $123456789 Ends With .e1]._usn4?,Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`]).@usn5?,{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}._usn3 Detach Delete $`3esn` Contains 0X0123456789ABCDEF Contains 00,Extract(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]|1000[..$`6esn`][..0xabc]) Ends With [07[$999],12e12[Count ( * )..][usn2..]];"), - octest:ct_string("Unwind 0x0 Is Not Null Is Not Null As `7esn` Remove ``(Distinct 0.12 In $`4esn` In `6esn`,12e12[_usn3..][$@usn5..])._usn3!,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]|12e12[Null]].@usn6 Delete 0X0123456789ABCDEF Is Not Null,`5esn`[`1esn`],7[..0X7][..'s_str'] Union Remove [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]|9e0 Starts With `6esn`].#usn8? Union With Distinct *,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] As `8esn`,123456789 Starts With `2esn` Starts With 9e12 As `3esn` Skip Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) Limit `6esn` Starts With $@usn6 Where 12[0X7..@usn6];"), - octest:ct_string("Unwind Count(*) Is Null As `2esn` Remove (usn1 :_usn3{@usn6:True[..'s_str'][..01]})-[? *999..]-(`` :`1esn`).usn2?,Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 123456789[$#usn7..]|123456789 In $usn2 In `6esn`)._usn4?,Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $`6esn` Is Null Is Null)._usn3 Union Return 123456789 =~_usn4 =~$0 Order By 0xabc Starts With _usn3 Desc,(`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Ascending,Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) Contains Extract(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`) Desc Skip Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] Limit [@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2] Is Null Return Distinct *,.e1[usn1..],$1000[.e0..] As `3esn` Skip `5esn`[Count ( * )..][\"d_str\"..];"), - octest:ct_string("Create _usn3=(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})) With @usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Limit .12 Is Not Null Is Not Null Union All Create usn2=(({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)-[@usn5{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8}]->(usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) Unwind 0Xa Is Null Is Null As @usn5 Match `1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]}));"), - octest:ct_string("Merge ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[ *010{@usn5:Null Is Null Is Null}]-({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]})) Match (@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0}) Union All Return $`5esn` Starts With _usn3 Starts With @usn5,9e0 Is Null Is Null,$999[..`1esn`] As `8esn` Order By usn2[$`1esn`...0] Descending,None(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00)[[@usn6 Starts With `7esn` Starts With Null]][{`1esn`:07[`6esn`..][`5esn`..],usn1:$usn2[False..`7esn`][`7esn`.._usn3]}] Ascending,01234567 Ends With 12.0 Ends With 0X7 Ascending Remove (:`7esn`)<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})._usn4!,(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[`2esn` *..7]-(_usn3 {usn1:_usn3 Contains @usn6 Contains 1.e1}).`1esn`?,($1000)<-[`4esn`:#usn8]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}).@usn5? Unwind All(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[..(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[`` *0xabc]->(`7esn` :#usn7{`6esn`:$`3esn` Contains 0X0123456789ABCDEF Contains 00,`1esn`:1000[123.654..9e12][1000.._usn3]})][..{`3esn`:$1000[.e0..]}] As `2esn`;"), - octest:ct_string("Remove [$`2esn` =~'s_str',12 Ends With 01234567,$1000 Is Null Is Null].`3esn`?,[12.e12[...0][..0x0]]._usn4,(`1esn` :`8esn`)<-[#usn7:`3esn`|:`4esn` *00..]->(`4esn` :`8esn`)-[`4esn`? *0Xa]-(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}).`3esn`? With Distinct [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending,9e12 Asc Skip 0X7[.e12..01234567] Limit $_usn4[0.12..$`6esn`][00..$@usn6] Match `4esn`=(({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})) Union Merge (((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))) On Match Set `7esn`+=.e1[..$`4esn`][.._usn4],`4esn`+=@usn6[$`8esn`][12.e12],@usn5+=1000 Contains $#usn7 Contains `6esn` Match (({#usn7:`7esn` In 999 In @usn6,usn2:.12 Ends With $`4esn` Ends With Count(*)})-[`5esn`:@usn6]->(:``)),`6esn`=((:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Where `2esn` Contains $999;"), - octest:ct_string("With Distinct {@usn6:`7esn` In 999 In @usn6} Starts With Extract(usn1 In 0x0[..`4esn`] Where 0x0|07 Ends With 07) Starts With Filter(usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12),False Ends With $`8esn`,``[$`3esn`][$`2esn`] As usn1 Order By $`6esn` Is Null Is Null Desc Limit 999 In $_usn4 In 0X7 With *,[0Xa In .e1 In Count(*)][..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}][..Extract(`4esn` In `6esn`['s_str'..][010..] Where #usn8[$#usn8..])] As @usn6,_usn3 Ends With 0x0 Ends With 01234567 Order By Single(`4esn` In `6esn`['s_str'..][010..] Where 12.0 Contains 0.e0)[..Any(`4esn` In 's_str'[12..'s_str'] Where Count(*)[`7esn`..$12])][..Extract(@usn5 In .12[#usn7][$`8esn`] Where 01234567 =~usn1)] Ascending Skip `7esn` Ends With $usn2 Ends With 999 Unwind All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`3esn` =~$`7esn` =~False)[..[0xabc[..$`1esn`][..01],12 Ends With 01234567,$@usn6 Is Null Is Null]][..#usn7(Distinct $0[$#usn8..01234567],$7)] As _usn4;"), - octest:ct_string("Create #usn7=((#usn7 {`2esn`:$@usn6[..$usn1],usn2:12 Ends With 01 Ends With 1e1})),`2esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}) Merge `7esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)) On Create Set `3esn`+=00 Ends With $_usn4 Ends With $`2esn` On Match Set `6esn`:usn1,`7esn`+=07[`6esn`..][`5esn`..] Remove Extract(usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01).#usn8 Union All With Distinct Extract(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null) Ends With `2esn`(`7esn`[Null..][@usn5..],123.654[12.e12..1e1]) Ends With Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]) As `7esn`,$usn2 In 9e0 In $7 Order By @usn5 Starts With 12e12 Starts With @usn5 Desc Skip $``[_usn4..][`7esn`..] Optional Match ``=((_usn4 )-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})) Union Merge _usn4=(usn1 :_usn4:usn1)<-[`5esn` *0..010]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1});"), - octest:ct_string("Optional Match @usn6=(`` :#usn7)<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})<-[`5esn`?:`6esn`]->(`6esn` :`6esn`:`7esn`{_usn4:\"d_str\"}),`6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Where 0.e0 Ends With 12 Ends With $7 Unwind 0X7 =~`4esn` =~`8esn` As `7esn` Match ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})) Where $`1esn` Starts With $999;"), - octest:ct_string("With Distinct *,$@usn6 =~usn1 As `1esn` Skip $_usn4[$`1esn`] Limit $1000 In $`7esn` In $7 Where 9e0 In 01234567 Union All With $`5esn`[$123456789][`1esn`] As `8esn`,[@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] As #usn7 Order By None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] Ascending,Count(*) In 01 In .0 Asc,Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`6esn`[$@usn6..]) In {`7esn`:12e12 Ends With 010 Ends With .0} In None(#usn8 In $`5esn` Is Null Is Null Where 123456789 In $usn2 In `6esn`) Asc Where 0.e0[9e0][0e0] Optional Match _usn3=(($999)),``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)) Where 9e0[True..`1esn`] Unwind $_usn4[`3esn`][0] As _usn4;"), - octest:ct_string("Optional Match ((#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)-[`6esn`:``|:_usn4 *..01]->(`5esn` :#usn7)) Return .e12[.12..][_usn4..] As _usn4 Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Merge (@usn6 )<-[? *12..0xabc]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})<-[``? *12..0xabc]-(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1}) Union All With Distinct *,$@usn6 =~usn1 As `1esn` Skip $_usn4[$`1esn`] Limit $1000 In $`7esn` In $7 Where 9e0 In 01234567;"), - octest:ct_string("Delete (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]),[usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..],{_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] Create #usn8=(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}) Return Distinct *,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}) Skip ({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}) =~None(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Union All Remove usn1:`1esn` Delete {@usn5:$`3esn`} Starts With .12,.12[..`6esn`][..\"d_str\"],$#usn7[True..][$0..] Unwind 9e1 Starts With `1esn` Starts With 0Xa As `2esn`;"), - octest:ct_string("Unwind Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) In None(`6esn` In 0X7 =~`` Where 12.e12['s_str']) As `5esn` Union All Return Distinct *,$`3esn` =~Null As usn2 Skip Filter(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null) Ends With [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1] Ends With _usn3(Distinct $123456789 Ends With $`6esn`) Limit `3esn`(Distinct _usn4 Ends With 01 Ends With $`1esn`) Starts With [Count(*) In 01 In .0,`` Starts With 12,$_usn4[$`8esn`..][07..]] Starts With Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12 In $0 In Count(*)) Merge (_usn4 :#usn8)-[`1esn`?:`1esn` *01234567..12]-({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999});"), - octest:ct_string("Merge (({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})) On Create Set #usn7:``,({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})<-[?:@usn5|`8esn` *..0X7]-(:usn1).`4esn` =`6esn` Starts With $`5esn`,[`6esn` In 0X7 =~`` Where 0.12[Null..]]._usn4 =Count ( * )[`3esn`..][`2esn`..] On Match Set `3esn` =010 In @usn5 In `5esn` With 01234567 Ends With 0x0,[`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As #usn8,$1000 Is Not Null Is Not Null Order By 's_str'['s_str'..$usn2][_usn3.._usn3] Asc Skip Extract(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]|1000[..$`6esn`][..0xabc]) Ends With [07[$999],12e12[Count ( * )..][usn2..]] Limit Null[01234567][01234567] Where 0X7[..12e12] With *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `3esn`,07[$999] As `` Where 9e0[$_usn3..0X7][7..$#usn8] Union Optional Match _usn4=(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}),`6esn`=((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})) Union Detach Delete Extract(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null) =~Any(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null) =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1],$7 Contains 0x0 Contains ``,[\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Remove [01234567[Null..0.e0][Count(*)..$#usn8],#usn8 Contains .e0 Contains $`8esn`,123456789[1e1..0.0]].`1esn`? Create (:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa}),(`3esn` :usn2:@usn6)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]})-[_usn3]-(`` {`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'});"), - octest:ct_string("Merge ()<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) With *,#usn7 Starts With .e12 Starts With $`7esn` As usn2,{`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) As @usn5 Limit Extract(`4esn` In 's_str'[12..'s_str'] Where 00 Starts With _usn3|$`1esn` Is Null Is Null) Is Null Is Null Unwind 0x0 =~_usn4 As `4esn` Union Create `7esn`=(((@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0})-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[?:usn2|#usn8 *1000..]->(@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]}))) Remove All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.e12 Contains `5esn`).`6esn`?,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 12.e12 Ends With 01 Ends With .e1).`4esn`! Union All Unwind 07[12e12] As `4esn` Remove Extract(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`).`5esn`?,(`2esn` {`3esn`:$999[12.0..]})-[:usn2|#usn8 *01234567..12{usn2:$`3esn` In $12 In 's_str'}]-(usn1 :_usn3).`5esn`;"), - octest:ct_string("With Distinct 7 Contains 9e1 As `` Order By $`1esn` Starts With `8esn` Starts With $0 Descending,[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Desc,#usn8 Is Not Null Asc Skip 12.e12 Contains `5esn` Where 12e12[0.e0][9e1] Create #usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})),usn1=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) Union Return 9e1 Starts With `1esn` Starts With 0Xa,07[$`5esn`..]['s_str'..] As `5esn`,010 =~$usn2 =~1e1 Skip $`8esn`[..$``] Limit 0.0[999..] Unwind 0X7 In $999 In $`` As ``;"), - octest:ct_string("Detach Delete ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] Return $usn1[0.12..]['s_str'..] As `1esn`,(`4esn` :`8esn`{_usn4:0 Is Null Is Null})-[`6esn`:`8esn`|:usn1$_usn3]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Ends With Filter(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999) Ends With [`4esn` In `6esn`[1e1..] Where 07[12e12]] Order By Count ( * )[..999] Asc Skip (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})<-[`6esn`?:@usn6 *999..]->(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})[Filter(_usn4 In usn1 Contains False Contains `` Where 123456789 Is Null)..] Union All Detach Delete 12e12[0.e0..True][0.12..0.0];"), - octest:ct_string("Detach Delete False[0Xa..$@usn5][$`6esn`..12e12] With Distinct `2esn` Contains $999 As #usn7,$123456789[False.._usn3] As `1esn` Order By [@usn6 In @usn5 In $`6esn` Where $999[$1000]|$7[.12]] In {`1esn`:$@usn6 Contains 07 Contains 0.e0} In (`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) Ascending,00[.e1..] Desc Skip 9e1[.12..] Match ((`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`)<-[ *0X0123456789ABCDEF..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]->(_usn3 :_usn3)),``=((`6esn` :`7esn`)) Where $`1esn` Starts With @usn6;"), - octest:ct_string("With Distinct $`5esn`[$123456789][`1esn`] As `8esn`,[@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] As #usn7 Order By None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] Ascending,Count(*) In 01 In .0 Asc,Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`6esn`[$@usn6..]) In {`7esn`:12e12 Ends With 010 Ends With .0} In None(#usn8 In $`5esn` Is Null Is Null Where 123456789 In $usn2 In `6esn`) Asc Remove None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 9e12[usn2..7][.e1..$`7esn`]).`6esn`?,All(usn1 In 00 Starts With _usn3 Where 1e1[..False]).`4esn`?,Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]|@usn6 Contains .e1 Contains $`4esn`)._usn3! Remove [@usn5 In 0X7 =~.0 =~\"d_str\" Where $`8esn` Starts With 1000|@usn6 Contains .e1 Contains $`4esn`].`8esn`! Union Return Distinct {@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null} Is Not Null Is Not Null,$0 =~$0 =~.e0 As `7esn` Order By Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]) Asc,{@usn5:$`3esn`} Starts With .12 Asc Skip Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Union All Unwind 1000 Contains 123456789 Contains 1e1 As `` Return Distinct $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Limit 9e0 Starts With `6esn` Delete [$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)});"), - octest:ct_string("Remove Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|1e1 Is Null).`7esn`!,Filter(usn1 In 0x0[..`4esn`] Where $0[$#usn8..01234567]).`6esn`!;"), - octest:ct_string("Merge ({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] On Create Set (:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[@usn6?:`1esn`]-(:`5esn`)-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`).#usn7! =0x0 Contains $`8esn` Contains `6esn`,`8esn` =None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]) Ends With None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With @usn6($123456789[0.0..]) Remove `7esn`(usn2 Is Null Is Null,`6esn` =~$_usn3).`1esn`!,None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]).`8esn`! Union Match #usn7=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),@usn5=(((_usn3 :_usn3{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[#usn8:`3esn`|:`4esn` *0..010]-(:usn1{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]}))) Unwind Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `4esn` Union With Distinct *,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] As `8esn`,123456789 Starts With `2esn` Starts With 9e12 As `3esn` Skip Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) Limit `6esn` Starts With $@usn6 Where 12[0X7..@usn6];"), - octest:ct_string("With Distinct `2esn` Starts With $_usn3 Starts With `2esn` Skip [@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12]][{@usn6:.12 Starts With 0Xa}..(`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})] Limit {`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]} Is Null Is Null Match @usn5=(:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})-[`1esn`:usn2|#usn8 *1000..]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}) Remove Any(usn1 In 0x0[..`4esn`] Where $0[$#usn8..01234567])._usn3!,Filter(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]).`3esn`!,#usn7(Distinct).`1esn` Union Return Distinct *,9e1 Starts With 9e1 Starts With 010 Delete Null[1.e1..],999[$`6esn`],None(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1])[`8esn`(00[``..][$`4esn`..],123.654[@usn5])] Union All Create usn1=((:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[#usn8? *0xabc]-(#usn8 :`4esn`:#usn8)),#usn7=(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})));"), - octest:ct_string("Create (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Union Create `2esn`=((:#usn7{usn2:$`5esn`[$123456789][`1esn`]})) Return Distinct [`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As @usn6,usn1[$`3esn`..$999][True..False] As `3esn` Order By Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) Ends With [1e1[@usn5..],$#usn8 Is Null,$0[$#usn8..01234567]] Ends With Extract(`6esn` In 0X7 =~`` Where 010 =~`6esn`) Descending,12.0 Contains 0.e0 Desc Limit Count ( * )[`1esn`..$0][$1000..$`5esn`] Unwind `5esn`[`1esn`..`1esn`] As usn2 Union Merge (((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) On Create Set @usn6 =`3esn`[..7][..12e12] With *,Filter(usn1 In 00 Starts With _usn3 Where $_usn4[`3esn`][0])[..Extract(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12|0x0 =~_usn4)][..{_usn4:.12 =~.12 =~1e1,#usn7:.e1 Starts With 0.0 Starts With `6esn`}],12[12e12..@usn6] As `5esn` Order By {_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]} Ends With Extract(`4esn` In $`8esn` Starts With 1000 Where `6esn`['s_str'..][010..]|12.e12[@usn5..123.654]) Ends With [$`5esn` Is Not Null,0e0 Is Null Is Null] Ascending Skip $`1esn`[$_usn3..][9e1..] Limit (:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] Unwind _usn3 Contains @usn6 Contains 1.e1 As `2esn`;"), - octest:ct_string("Merge ((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null})) On Match Set _usn4:_usn3,[0xabc Contains $1000].`6esn` =(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})[Filter(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 0.12 Ends With $usn1 Ends With $@usn5)][`3esn`(Distinct 9e12[_usn3])],{@usn6:0.12[0.e0..][`4esn`..]}.`4esn` =0x0 Contains $`8esn` Contains `6esn` On Create Set Extract(#usn7 In 01234567[$`3esn`..] Where 0X7 In $999 In $``|9e1[...e0]).`7esn`! =0X7 In 's_str' In $`1esn`,{`3esn`:#usn7 Ends With `4esn` Ends With @usn5}.#usn8 =[usn1[..$_usn4][..``],0X7[.e12..01234567]] In `3esn`(@usn5[..True][..0X7],$`3esn` =~$`7esn` =~False) Remove Single(#usn8 In $`5esn` Is Null Is Null Where $123456789[0.0..]).#usn7?,Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]).@usn6! Union With Distinct *,010 Contains Count(*) As `5esn`,'s_str' Ends With .e0 As `1esn` Skip [_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]] Ends With [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]] Limit Count ( * )[`3esn`..][`2esn`..] Where 's_str'['s_str'..$usn2][_usn3.._usn3] Union Detach Delete 01 In _usn3 In 12,`1esn`[`3esn`..][$@usn6..];"), - octest:ct_string("Unwind 7 In $`3esn` In #usn7 As `5esn` Create _usn3=(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})) With Distinct None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} Order By 123.654[`5esn`] Descending,$`2esn`[..7][..$usn1] Descending,123456789 Starts With _usn4 Starts With @usn6 Descending Where $`4esn`[$`2esn`..] Union Return Distinct #usn8 In $0 As `1esn`,'s_str' In \"d_str\" In 123456789,[0Xa[$``..][01234567..]] Contains `3esn`(Distinct _usn3 In .e1 In $12) Contains (`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']}) As @usn6 Order By Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Ascending,0xabc[$@usn5] Asc,usn1[..$_usn4][..``] Ascending Union All Unwind 0X7 =~`4esn` =~`8esn` As `7esn` Remove {`8esn`:Count ( * ) =~Count(*)}.`6esn`,({@usn6:0X0123456789ABCDEF[..usn1]})<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)._usn4?,(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`4esn` Optional Match `4esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}),(((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Where $_usn3[..Count ( * )][..@usn5];"), - octest:ct_string("Detach Delete .e1[$_usn4][1e1],$usn1[_usn4..][usn2..],{@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null} Is Not Null Is Not Null Delete .12[`1esn`..],usn2 Starts With @usn6 Return Distinct *,usn2 =~0x0 As `8esn` Union All Detach Delete $`1esn` Ends With $`1esn` Merge ((`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})) Remove Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12).`6esn`! Union All Remove {`5esn`:`6esn` =~01234567 =~0Xa}.#usn7,(usn1 :#usn7)<-[@usn6?{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(:`2esn`:`3esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})._usn4,(#usn7 :`2esn`:`3esn`)-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})-[_usn3? *00..]-(`1esn` :`1esn`).`4esn`;"), - octest:ct_string("Create (`8esn` :`1esn`),`2esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})) Optional Match `7esn`=(@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Unwind 12.e12[$1000..] As `4esn` Union Remove [#usn7 In 01234567[$`3esn`..] Where .12 Starts With @usn5 Starts With $#usn8|$`6esn`[$`1esn`][1000]].@usn6?,usn2($#usn8 Is Null Is Null)._usn4 Union Unwind .e12[usn2][01] As _usn3 Match usn2=((#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`6esn`?:usn1|`3esn`{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})),((usn1 :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)) Where $0[01234567..00][$`2esn`..$@usn6] Merge (((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) On Create Set @usn6 =`3esn`[..7][..12e12];"), - octest:ct_string("Match (usn1 :`3esn`:`1esn`)-[?:`4esn`|:`7esn` *..0x0]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Where #usn8 Ends With `4esn` Ends With $`4esn` Return Distinct *,$7[12.e12..] As #usn7,`4esn`[$#usn7] As `1esn` Skip #usn7[..$1000][..01] Limit {`8esn`:@usn5[..True][..0X7],`1esn`:`1esn` Contains Count ( * )}[{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)] With Distinct 12.e12 Contains $`5esn` As `` Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Limit All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Where False In $`7esn` In .0 Union Remove [usn1 In 0x0[..`4esn`]|`` Starts With @usn5].`6esn`?,(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})._usn4? Unwind [010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]][(:@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})..][Extract(#usn8 In $`5esn` Is Null Is Null Where 1000[0.0][Null])..] As `5esn` Unwind .e12 Starts With True As `7esn` Union All With Distinct *,Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null As `6esn` Where $@usn6 Contains 0 Contains $`2esn` Remove ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`5esn`? *010]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null}).`7esn`! Delete 0X0123456789ABCDEF Contains $usn1;"), - octest:ct_string("Match _usn3=((:``{`5esn`:.e1 In $@usn6 In 999})) Where .e0[7..$`3esn`] Delete (`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1),`` Contains 12 Contains True,07[12][$`6esn`] Merge (#usn7 :`6esn`:`7esn`)<-[`3esn`?:_usn3|:`4esn`]->(:`1esn`{_usn4:$_usn3[Null]})-[ *..0X7]->(`5esn` :_usn4:usn1) On Match Set _usn4:_usn3,[0xabc Contains $1000].`6esn` =(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})[Filter(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 0.12 Ends With $usn1 Ends With $@usn5)][`3esn`(Distinct 9e12[_usn3])],{@usn6:0.12[0.e0..][`4esn`..]}.`4esn` =0x0 Contains $`8esn` Contains `6esn` On Create Set `5esn`+=0 Starts With `6esn` Starts With 0X0123456789ABCDEF,`4esn`+=$`7esn` Ends With $usn2,[usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null].@usn5! =$1000 Ends With 1e1 Ends With 123.654 Union All Create (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``?:@usn6]-(#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]}) Create (({#usn8:12.0[..$7][..999],@usn5:$`1esn` Is Null})<-[``?:`1esn` *0xabc{`5esn`:$``[_usn4..][`7esn`..]}]->(#usn7 :@usn6:`7esn`{_usn3:\"d_str\" =~`3esn` =~0Xa}));"), - octest:ct_string("Unwind `2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As `4esn` Return Distinct *,01234567 Is Null Is Null Order By 0e0 =~Count(*) =~0Xa Descending Skip [$1000 Is Null Is Null] Is Null Limit Extract(@usn6 In @usn5 In $`6esn` Where $`5esn` Contains $@usn6|$0[7..][Null..])[[`6esn` In 0X7 =~`` Where 9e1[0.e0..][#usn8..]]];"), - octest:ct_string("Merge ((#usn8 {usn2:7 Contains 9e1})-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]->(:_usn3{@usn6:$`7esn` Is Null Is Null})) Merge `2esn`=(_usn4 {`8esn`:9e1 In 01 In 999})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`) On Match Set @usn5+=`1esn`[9e12..$`8esn`][usn2..$``],usn1 =[12.e12 Ends With 01 Ends With .e1,$@usn5[0.12..][@usn5..],$usn1 In 1000 In $#usn7] Is Not Null On Match Set _usn4 =0 Contains 12e12,`1esn`:#usn8,`7esn` =0 Is Not Null Unwind $@usn6 Starts With usn2 Starts With usn2 As _usn4 Union Unwind #usn8 Is Not Null As usn2 Match #usn8=(usn1 :`4esn`:#usn8) Where 00[``..][$`4esn`..] Create `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Union All With Distinct *,07[0..`4esn`] Order By Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`)[Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01)..][{`1esn`:@usn6[`5esn`..$`3esn`],_usn3:$999 Ends With $`3esn` Ends With `8esn`}..] Asc,$999[12.0..] Asc,All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])] Asc Skip $1000 In $`7esn` In $7 Remove Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]).`1esn`,#usn7:_usn4:usn1,(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})<-[`2esn`:usn1|`3esn` *0Xa]->(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})._usn3! Delete usn1[1e1][$_usn4],$123456789[..0.12][..#usn7];"), - octest:ct_string("With Distinct *,[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..] As @usn6,0x0[123456789] As _usn3 Order By Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]|$0 =~$usn1 =~9e1)[{``:\"d_str\",`1esn`:$1000 =~$`7esn`}] Descending Skip $`5esn` In `2esn` In .0 Where 9e12[0.0..12.e12] Unwind Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `4esn` With Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As `5esn` Where 010 Is Null Is Null Union All Merge `5esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) On Create Set `1esn`+=_usn4(Distinct `7esn` Starts With $usn2 Starts With .e0) =~`3esn`() =~#usn8(9e0 Ends With $`7esn`) Remove Filter(usn2 In 1000 Contains 0.e0 Where 12e12[$`5esn`][07])._usn4? Union Merge `2esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) On Create Set [@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where .e0[..999][..0X7]]._usn4 =(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) On Match Set Single(usn1 In 00 Starts With _usn3 Where $`7esn` Ends With 07 Ends With 07).`6esn`? =Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789},@usn5 =[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0])],[usn1 In 00 Starts With _usn3 Where 12 Ends With .e12 Ends With $7|_usn3 =~00].#usn7! =Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null Unwind 12e12[_usn3..][$@usn5..] As usn2;"), - octest:ct_string("Delete `7esn`($123456789 In Count(*) In .e1) Ends With Extract(@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|Count ( * )) Ends With Any(usn1 In 0x0[..`4esn`] Where False[.e1..Null]),`7esn`(0.0[1000..][.e1..],$@usn5 Contains 01)[Any(usn1 In 0x0[..`4esn`] Where 0X7[.e12..01234567])][[$@usn6 Contains 07 Contains 0.e0,`5esn` In 12]],$usn1[0.12..]['s_str'..] Unwind 999 Contains `7esn` As `7esn` Merge @usn5=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) On Create Set usn1+=$@usn6 In $`5esn` In $usn2 Union All Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)],010 In @usn5 In `5esn`,1e1 In $999 In $usn2 Return 01234567 Is Null Is Null As `3esn`,0.12 Contains $12 Contains `8esn` As `5esn`,9e0 Starts With `6esn` Skip `3esn` Ends With 010 Limit Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]} Union All With *,`` =~12 =~$#usn7 Order By 0X7 In 's_str' In $`1esn` Descending,@usn5 In 0X0123456789ABCDEF Asc,$`4esn` In $12 In _usn3 Ascending Skip [usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]] In [0xabc[12.e12..`1esn`]] In {@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} Where 0.12 In $`4esn` In `6esn` With ({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn` Skip count(Distinct 's_str' Starts With 1000 Starts With #usn8,12e12 Starts With $123456789 Starts With 12.0)[[_usn4 In usn1 Contains False Contains `` Where $#usn8]][[$`1esn` Is Null,\"d_str\" =~`6esn` =~0Xa,$usn2[0e0..]]];"), - octest:ct_string("Merge usn1=(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}) On Create Set `8esn`+=$12[..7][..07],@usn5+=#usn7 Starts With .e12 Starts With $`7esn` Union Unwind $`2esn`[$123456789..$`1esn`][0Xa..$``] As `7esn`;"), - octest:ct_string("Unwind 12.e12[0e0..7] As @usn5 Match (((`3esn` :`8esn`)-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(_usn3 :usn2:@usn6)-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}))),`6esn`=((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})) Where 12.e12['s_str'] Union All With 01234567 Ends With 0x0,[`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As #usn8,$1000 Is Not Null Is Not Null Order By 's_str'['s_str'..$usn2][_usn3.._usn3] Asc Skip Extract(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]|1000[..$`6esn`][..0xabc]) Ends With [07[$999],12e12[Count ( * )..][usn2..]] Limit Null[01234567][01234567] Where 0X7[..12e12] With Distinct $12 Contains 123.654 Contains `8esn` As _usn4 Limit Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) Union All Merge _usn4=(usn1 :_usn4:usn1)<-[`5esn` *0..010]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) On Create Set `4esn` =$@usn6 Contains 07 Contains 0.e0 On Match Set [0X7 =~.0 =~\"d_str\",9e1[...e0]].@usn5 =Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}),{@usn6:usn1 In 1000 In $`5esn`,@usn6:9e0[``][123.654]}.`3esn`! =$999 In $`8esn` In `5esn` Merge ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) On Match Set (`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})<-[?{#usn7:`6esn`[False..0.0][12e12..$usn2]}]-(`4esn` {`4esn`:#usn7[..$1000][..01]})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}).`4esn`! =0 Is Not Null,`6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`1esn` =$_usn3[$`4esn`..Null] On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})];"), - octest:ct_string("Unwind `1esn`[12.e12][01] As _usn3 Create (@usn5 {@usn6:$123456789[0X7..12.e12]});"), - octest:ct_string("Match `8esn`=((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Where $usn2[0e0..];"), - octest:ct_string("With $`1esn` Starts With $999 As #usn8,False In $`7esn` In .0 Skip 123456789 Starts With #usn7 Starts With `6esn` Limit 12e12 Is Not Null Where $999[$1000] Merge `6esn`=((@usn6 :`8esn`{`2esn`:0X7 =~.0 =~\"d_str\"})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})) On Create Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$`` On Create Set #usn8+=Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)],`2esn` =$_usn4[$`1esn`..][$0..] Union Create #usn8=(usn1 :`4esn`:#usn8) With [#usn8 In $`5esn` Is Null Is Null Where 0.0[..12e12][..$0]][{`2esn`:.e1 In $@usn6 In 999,usn2:@usn5 Ends With $`3esn` Ends With 12e12}..] As @usn5,usn2[`3esn`][_usn3] Order By None(usn2 In 1000 Contains 0.e0 Where $`6esn`[Count(*)..0.e0][0.0..Count ( * )])[(:usn2:@usn6{@usn6:$`4esn`[$`2esn`..]})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})][Any(@usn6 In @usn5 In $`6esn` Where 12.0[0Xa][00])] Descending Merge ((@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})) On Match Set [@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where .e0[..999][..0X7]]._usn4 =(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) On Match Set usn2 =$`4esn`[$`6esn`];"), - octest:ct_string("Match usn2=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}),(`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Where $#usn8 Is Null With Distinct $`5esn` Is Null As _usn3,[usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]] Starts With (`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` ) Starts With (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8) As @usn5 Order By (`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Descending,$`2esn` Ends With `3esn` Ends With $7 Desc Where $usn1[_usn4..][usn2..] Optional Match `8esn`=(($12)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)),(:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) Where 1e1[..#usn8][..'s_str'];"), - octest:ct_string("Unwind 12 Ends With 07 Ends With @usn6 As `1esn` Union Merge @usn5=(`3esn` :`8esn`{usn1:`2esn`[$`3esn`..],`6esn`:$12[..``][..$7]})-[@usn5?:``|:_usn4]-(`8esn` :#usn8)<-[?:``|:_usn4]-({`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12}) On Create Set _usn3 ={`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]] Merge ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})-[@usn6?:#usn7|:_usn4 *00..]->(`` :@usn5{#usn7:0X7[12]})) On Match Set (@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`6esn`:`4esn`|:`7esn` *1000..{`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}]->(:#usn7)<-[`5esn`:`8esn`|:usn1]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}).#usn7? =1000 Contains 123456789 Contains 1e1 On Match Set usn1+=`4esn` Is Null;"), - octest:ct_string("Create `1esn`=(((`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}))),(@usn5 {_usn4:_usn3 Ends With 0x0 Ends With 01234567}) Create #usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})),usn1=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) Union With Distinct *,`7esn`[$@usn6..$usn2]['s_str'..1e1] As `3esn`,Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) Skip {@usn5:0.e0[@usn6][0x0]} Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7) Limit \"d_str\" =~12.e12 =~07;"), - octest:ct_string("With 123.654 Is Not Null Is Not Null As `3esn`,$usn1 In 1000 In $#usn7 As `8esn` Order By .12 Starts With $usn2 Asc,[usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..] Asc,{`8esn`:$123456789 Is Null Is Null,_usn3:$`4esn` Starts With 1e1}[(#usn7 :`2esn`:`3esn`)<-[`8esn`?]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})..All(_usn4 In usn1 Contains False Contains `` Where $`8esn`[$``..$7][$1000..$`7esn`])] Descending Skip $@usn5[$#usn8..][9e1..] Limit $123456789[0X7..12.e12] Where 0.12[0.e0..][`4esn`..] Union All Remove {``:7[..`1esn`],_usn4:.e1 Ends With _usn4 Ends With @usn5}.usn2? Detach Delete (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[`4esn`{#usn8:Null[0e0][12],`2esn`:`8esn` In $@usn5}]-({_usn3:999 In $_usn4 In 0X7,`1esn`:1e1 In $#usn8 In 12e12}) Contains 0X0123456789ABCDEF Contains Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1]);"), - octest:ct_string("With @usn6 Starts With `7esn` Starts With Null,$usn1[#usn8..][``..] As `2esn`,`3esn`[$`1esn`..] As usn2 Skip ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]];"), - octest:ct_string("Create ((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[?:usn1|`3esn`{#usn8:1000[..$`6esn`][..0xabc]}]->(:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[``?:usn1|`3esn`]->(:@usn5{#usn7:1e1[@usn5..]})),((`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})-[`3esn`? *999..]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]-(`1esn` :`4esn`:#usn8{_usn4:$_usn4[#usn8..]})) Return Distinct *,$123456789 =~$#usn8 =~$#usn8 Order By $@usn6 Contains 07 Contains 0.e0 Asc Skip 0e0[12][$_usn4] Limit 123.654[12.e12..1e1];"), - octest:ct_string("Merge @usn6=({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567}) On Match Set #usn7 =Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]} Union Remove [$`2esn` =~'s_str',12 Ends With 01234567,$1000 Is Null Is Null].`3esn`?,[12.e12[...0][..0x0]]._usn4,(`1esn` :`8esn`)<-[#usn7:`3esn`|:`4esn` *00..]->(`4esn` :`8esn`)-[`4esn`? *0Xa]-(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}).`3esn`? With Distinct [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending,9e12 Asc Skip 0X7[.e12..01234567] Limit $_usn4[0.12..$`6esn`][00..$@usn6] Match `4esn`=(({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})) Union Create ((`7esn` :`2esn`:`3esn`{@usn6:9e0 Ends With $`7esn`})),``=((`3esn` ));"), - octest:ct_string("Merge `1esn`=((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})) Remove Single(_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`).`6esn`?,(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})._usn4!,@usn5:`4esn`:#usn8 Merge (({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})<-[_usn3?:`2esn`|usn2{`3esn`:0[0.12..]}]->(:``{`1esn`:`6esn` =~$_usn3})) Union Unwind 123456789 Starts With #usn7 Starts With `6esn` As `7esn` Return Distinct Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0]) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where Count(*)[True]) In Extract(`4esn` In 's_str'[12..'s_str'] Where 0xabc Ends With $#usn7 Ends With #usn8|.e1 Starts With 0.0 Starts With `6esn`) As #usn7,@usn5 Starts With \"d_str\" As ``;"), - octest:ct_string("With Distinct 9e12 Ends With 0X0123456789ABCDEF Ends With #usn7 As `8esn`,1000[123.654..9e12][1000.._usn3] As `6esn`,Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0} As `4esn` Where 7[..12e12][..$`6esn`] Optional Match `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Where `7esn` In 999 In @usn6;"), - octest:ct_string("Detach Delete .e1 Starts With 0.0 Starts With `6esn`,(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')],`1esn` Contains Count ( * ) Unwind 0Xa[0xabc..] As @usn6 Create `4esn`=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})),(`7esn` :_usn4:usn1)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})-[`1esn`{`2esn`:.12 Starts With @usn5 Starts With $#usn8}]->(:usn1{`6esn`:1000 Contains 0.e0,`7esn`:$@usn6[..$#usn7][..12.e12]}) Union Remove Single(_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0).#usn8?,[`2esn` Is Not Null Is Not Null].`7esn` With Distinct [$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] Order By {#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} Desc Skip 00 Starts With _usn3 Limit True =~@usn5 =~$`1esn` Union All Optional Match #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`1esn`=(((`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}))) Where 010 Contains Count(*) Return Distinct *,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] As @usn6 Order By 010 Starts With `7esn` Starts With 9e1 Ascending,123456789 Is Null Descending,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] Desc Skip {#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null Match #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`) Where $`2esn`[..`2esn`];"), - octest:ct_string("Create @usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})),_usn3=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Create (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Union All Detach Delete Extract(`4esn` In `6esn`['s_str'..][010..] Where 07 In $7 In 12|$#usn8)[{`6esn`:12[usn1][True],`3esn`:$@usn6[..$usn1]}..][{`8esn`:00}..],$`6esn` Is Null Is Null;"), - octest:ct_string("Unwind 0 Starts With `6esn` Starts With 0X0123456789ABCDEF As @usn6 Return *,01234567 Is Null Is Null Order By {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}[..[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]]] Ascending Skip 010 =~$usn2 =~1e1 Union All With Distinct 0x0 In `8esn` In 999,``[$`3esn`][$`2esn`],01234567 Ends With 12.0 Ends With 0X7 Order By Count ( * )[..usn1][..12.e12] Asc,$usn2 Is Not Null Is Not Null Descending Skip `3esn`(Distinct $_usn3[Null],12[..True][..$`4esn`]) Is Null Is Null Detach Delete _usn3 Ends With 12e12 Ends With .e0,({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}) =~None(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Unwind $123456789 In Count(*) In .e1 As usn1;"), - octest:ct_string("Unwind 07[..$_usn3] As #usn7 Union All Create #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`);"), - octest:ct_string("Remove (@usn5 :`3esn`:`1esn`{_usn3:#usn7 Starts With `1esn`})-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`)<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2}).#usn7,None(@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2).`5esn`? Union Create #usn7=(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))),`5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Union All Merge `1esn`=(((:_usn3{@usn6:$`7esn` Is Null Is Null})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)<-[`3esn`? *999..{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`}]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) On Match Set _usn3+=01 In 01 In 12,#usn7 =$@usn5,`1esn`:`5esn` Detach Delete $@usn6[_usn3..0.e0] With [#usn8 In $`5esn` Is Null Is Null][Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where #usn7[..$1000][..01])..][[@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]]..],(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[usn1?:`8esn`|:usn1]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Is Null Is Null As #usn7,1e1[..#usn8][..'s_str'] As #usn8 Order By `3esn`[$123456789][$#usn7] Ascending,{@usn6:12.0[``],_usn4:$`3esn` Contains 0X0123456789ABCDEF Contains 00} Ends With Single(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Ends With Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999|12.0[``]) Asc Skip (:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0}) Starts With Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) Starts With [12.0 In 1000 In _usn4] Limit 00[01234567][False];"), - octest:ct_string("Unwind [usn1 In 1000 In $`5esn`][Extract(#usn8 In $`5esn` Is Null Is Null Where $usn2 Is Not Null|$_usn3 =~`7esn` =~$_usn4)] As @usn5;"), - octest:ct_string("Unwind 07[$`5esn`..]['s_str'..] As _usn3 Unwind Null Is Null Is Null As usn1 Unwind 123456789 =~Filter(usn2 In 1000 Contains 0.e0 Where 0X7[0e0..]) =~{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999} As `7esn`;"), - octest:ct_string("Optional Match (`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Where $`8esn` =~$usn2;"), - octest:ct_string("Delete [$1000 =~$`7esn`,.12 Starts With @usn5 Starts With $#usn8,0x0[...e12][..@usn5]] Ends With Single(@usn5 In .12[#usn7][$`8esn`]) Create @usn6=(`` :#usn7)<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})<-[`5esn`?:`6esn`]->(`6esn` :`6esn`:`7esn`{_usn4:\"d_str\"}),`6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union All Match (`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Where 9e1 Is Null Is Null Return @usn5[..True][..0X7] As `7esn`,{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7} Contains {`5esn`:$7[.12]} Contains Extract(usn1 In 00 Starts With _usn3 Where 07 Contains #usn8 Contains $_usn3|`2esn`[$`1esn`..][$_usn3..]) Order By 0X0123456789ABCDEF[..usn1] Descending Skip `3esn`[$123456789][$#usn7] Union Return Distinct $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Limit 9e0 Starts With `6esn` Remove (usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})<-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null}).`4esn`!,{#usn8:9e1[0.e0..][#usn8..]}.``,Any(@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]).#usn8 Create _usn3=((:``{`5esn`:.e1 In $@usn6 In 999}));"), - octest:ct_string("Match `2esn`=((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Where 9e12[@usn6..$``][#usn8..Count ( * )] Union Create `2esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}),(#usn7 :@usn5)<-[@usn5*]->({``:$1000 Is Null Is Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(`7esn` :`2esn`:`3esn`) Merge `4esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Union All Detach Delete 123.654[@usn5] Merge usn2=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) On Create Set None(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0).`4esn`! =0[usn2..],[@usn6[$`3esn`]].`4esn` =01 In _usn3 In 12,`1esn`+=123456789 =~usn1 Unwind `7esn`(0.0[1000..][.e1..],$@usn5 Contains 01)[Any(usn1 In 0x0[..`4esn`] Where 0X7[.e12..01234567])][[$@usn6 Contains 07 Contains 0.e0,`5esn` In 12]] As `8esn`;"), - octest:ct_string("Delete {`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}[[`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]]][Count ( * )],[$1000 Is Null Is Null] Is Null Merge ((_usn4 {`8esn`:9e1 In 01 In 999})) Union Merge ((:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})) On Match Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..] Optional Match #usn8=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),((#usn7 :_usn3)<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]})-[#usn7:_usn3|:`4esn`]-(:#usn7{usn1:$123456789[..0.12][..#usn7]})) Optional Match (`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}),(:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}) Where Null[01234567][01234567] Union All Merge `1esn`=((({`6esn`:$`8esn`[..$``]})-[`2esn`]-(@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12}))) On Match Set #usn7 =(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`) Is Not Null Is Not Null,`1esn` =`` =~12 =~$#usn7,[123456789[$#usn7..],_usn4[0xabc..],$`3esn` Starts With 01234567 Starts With $1000].`1esn`! =0X0123456789ABCDEF Starts With `2esn` Starts With $999 Remove Any(#usn7 In 01234567[$`3esn`..] Where 0Xa[0xabc..$#usn8])._usn4! Optional Match (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5)));"), - octest:ct_string("Unwind 12e12[Count ( * )..][usn2..] As `3esn` Remove Single(usn1 In 0x0[..`4esn`] Where $`2esn`[123456789..][00..]).`4esn`! Union All Merge usn1=(((`7esn` :``)<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:usn1|`3esn`*]->(:_usn3{`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`}))) On Match Set [@usn5 In .12[#usn7][$`8esn`] Where Count ( * )|#usn7 Starts With 0 Starts With 12].`4esn` =[$1000 Is Null Is Null] Is Null,#usn7+=Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999),`5esn` =Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`]) Contains All(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 01234567[.12..7][1000..1.e1]) On Create Set `6esn` =Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`),{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}.`2esn`? =.12[`1esn`..],`5esn`+=0 Starts With `6esn` Starts With 0X0123456789ABCDEF Detach Delete usn2[`3esn`][_usn3] Create ((`1esn` :usn2:@usn6)),`3esn`=(usn1 :`6esn`:`7esn`) Union All Merge `8esn`=(({@usn6:$123456789 Is Null Is Null,@usn6:`6esn`[1.e1..$#usn7][.e0..True]})<-[`5esn`:usn1|`3esn` *010{`2esn`:`6esn` =~01234567 =~0Xa}]->(_usn4 :``));"), - octest:ct_string("Merge @usn5=(((:`1esn`{#usn7:1e1[`6esn`..]})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) On Create Set _usn4 =All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)[[usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1]],#usn7 =_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) On Create Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$``;"), - octest:ct_string("Return Distinct $`5esn` In `2esn` In $12 As `3esn` Order By [@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0] Is Null Descending,.e1 Starts With $`8esn` Descending,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] Asc Skip $@usn5 Unwind 9e0 Ends With $`7esn` As `7esn`;"), - octest:ct_string("With 01234567[.12..7][1000..1.e1] As `5esn`,{`7esn`:Count(*) In 01 In .0}[..{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}][..#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..])] As `5esn` Skip [@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] Delete {#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null,Extract(`4esn` In $`8esn` Starts With 1000 Where False In `3esn`|$`3esn` =~Null) Create (({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) Union Unwind [usn1 In 1000 In $`5esn`][Extract(#usn8 In $`5esn` Is Null Is Null Where $usn2 Is Not Null|$_usn3 =~`7esn` =~$_usn4)] As `6esn` Detach Delete 01 In _usn3 In 12,`1esn`[`3esn`..][$@usn6..];"), - octest:ct_string("Unwind [$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][{`7esn`:$7[.12]}..[_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`]] As _usn3 Detach Delete $`5esn` In False,$@usn5[$#usn8..][9e1..],`7esn`[...e1][..\"d_str\"] Unwind usn2 Starts With @usn6 As #usn7 Union Detach Delete _usn3 Ends With 12e12 Ends With .e0,01[0.0],None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]) Detach Delete $_usn4['s_str'..] Detach Delete .e0 Is Not Null Is Not Null,{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]} =~Single(usn2 In 1000 Contains 0.e0) =~Any(@usn6 In @usn5 In $`6esn` Where $`7esn` Is Not Null) Union All Delete 7 =~9e0 =~'s_str';"), - octest:ct_string("Detach Delete $usn2[..12.0],$999 In $`8esn` In `5esn` Unwind $1000 Starts With .0 Starts With 0.0 As `6esn` Merge (@usn6 )<-[? *12..0xabc]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})<-[``? *12..0xabc]-(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1}) Union All Unwind `7esn`[1000..][$123456789..] As `1esn` Union All With Distinct $@usn6 Contains 07 Contains 0.e0,0X7 In $@usn5 In 9e0;"), - octest:ct_string("Create `5esn`=(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}),`6esn`=((@usn6 :`8esn`{`2esn`:0X7 =~.0 =~\"d_str\"})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})) Optional Match ((_usn3 :_usn4:usn1)<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})),(:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa})-[:usn1|`3esn`]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]}) Where 00[01234567][False] Union All Remove None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`1esn` Starts With $999).usn1!;"), - octest:ct_string("Delete Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)[..(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})][..Any(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)],123.654 Starts With usn1 Starts With @usn5 With Distinct *,`7esn`[Null..][@usn5..],0X0123456789ABCDEF Contains $usn1 Skip Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] Limit False Ends With $`8esn` Where 0 Starts With 12e12 Starts With `4esn` With Distinct 0x0[...e12][..@usn5] As @usn5 Limit `1esn`(Distinct Count(*)[..`3esn`]) Starts With $0 Union All Return Distinct *,({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) Order By [0 Is Null Is Null][..[_usn3 =~00,9e1 Is Null Is Null]] Descending,Single(`4esn` In `6esn`['s_str'..][010..] Where 12.0 Contains 0.e0)[..Any(`4esn` In 's_str'[12..'s_str'] Where Count(*)[`7esn`..$12])][..Extract(@usn5 In .12[#usn7][$`8esn`] Where 01234567 =~usn1)] Ascending,`8esn` In $@usn5 Asc Limit $#usn8 Is Null Match #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})));"), - octest:ct_string("Remove [.12 Starts With .12 Starts With `3esn`,Count ( * )[Count ( * )..12e12][usn1..1000],False In `3esn`].#usn7,{usn1:$1000 Contains $`3esn`}.#usn8!,None(`4esn` In $`8esn` Starts With 1000 Where True Starts With $`8esn` Starts With \"d_str\").`4esn`! Return Distinct 01234567 As usn2 Order By Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`] Ascending Limit 12e12 Starts With $123456789 Starts With 12.0 Match ((`6esn` :`7esn`)),`4esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Where 9e0 =~$`5esn` Union All Remove {usn1:0e0 Is Not Null Is Not Null,@usn6:0X7[12]}.usn2,`8esn`(Distinct 0X0123456789ABCDEF[..usn1]).usn1!,{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}.#usn8 Return Distinct 0Xa Is Not Null Is Not Null As `1esn`,(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})[..Filter(#usn8 In $`5esn` Is Null Is Null Where 0Xa Is Null Is Null)][..(`7esn` {@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})] As usn1 Skip False[`6esn`][07] Limit [usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]] Starts With (`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` ) Starts With (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8);"), - octest:ct_string("With Distinct *,Count ( * ) In 010 As `1esn` Limit $@usn5 =~07 =~True Match `4esn`=((#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) Where `` Starts With @usn5 Optional Match _usn4=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))),@usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]}));"), - octest:ct_string("Unwind Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As usn2 With Distinct $999[$1000] As `4esn`,[`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Limit {`8esn`:@usn5[..True][..0X7],`1esn`:`1esn` Contains Count ( * )}[{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)] Where $_usn4[12e12][`4esn`] Union All Unwind $_usn4[`3esn`][0] As _usn4 Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) Create (((`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})<-[?:`7esn`|`2esn`]-(:`6esn`:`7esn`{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})));"), - octest:ct_string("Detach Delete .e12[$_usn4..][False..],12.e12 Ends With 01 Ends With .e1,[\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Union Remove Extract(`4esn` In `6esn`['s_str'..][010..] Where 12 =~usn1 =~.e12|$`2esn`[..`2esn`]).`8esn`!,_usn3:`` Union Match ((`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`)<-[ *0X0123456789ABCDEF..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]->(_usn3 :_usn3)),(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Create ((:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})<-[@usn6:`3esn`|:`4esn`*]->(`6esn` :`5esn`)),(({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(:_usn4:usn1));"), - octest:ct_string("Return Distinct 1000 Contains $#usn7 Contains `6esn` Order By (`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})[Single(`4esn` In 's_str'[12..'s_str'])..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)] Desc,usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Desc,Count ( * ) Contains 999 Contains $`8esn` Asc Merge `7esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})) On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Merge `6esn`=((`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})) On Match Set Any(_usn4 In usn1 Contains False Contains `` Where $`4esn`[$`2esn`..]).usn2 =010 In @usn5 In `5esn` Union All Match `1esn`=(({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})),(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Where 12[..9e0][..999] Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.e12 Contains `5esn`|$_usn4[$`8esn`..][07..]).`2esn`!,Single(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0).@usn6,({`2esn`:usn1[..@usn5][...e0],`8esn`:\"d_str\"[Count ( * )]})<-[?*$999]-(`7esn` :``)-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`).`5esn`;"), - octest:ct_string("Detach Delete 0 Is Not Null,#usn7 Contains 07 Union All Return $`4esn`[12.e12..][0.0..],12[`7esn`...0][0.12..``] As @usn6,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Skip $`1esn` Ends With $`1esn` Union Detach Delete 010 Starts With `7esn` Starts With 9e1 With `` Contains 12 Contains True Order By #usn7 Starts With 0 Starts With 12 Asc Skip True =~@usn5 =~$`1esn`;"), - octest:ct_string("With 07 Ends With 07 As #usn8,00[``..][$`4esn`..],$usn2 Is Not Null Is Not Null Limit {`4esn`:0X7 =~.0 =~\"d_str\",_usn4:00 Ends With $_usn4 Ends With $`2esn`} Ends With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Ends With [$`3esn`[@usn5..$123456789],00,'s_str'[.12..$#usn7][$999..`2esn`]] Remove [`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null|9e12 =~01 =~$`7esn`].#usn7! Optional Match usn2=(((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),#usn7=(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))) Where $_usn4[`3esn`][0] Union All With Distinct All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null,0xabc[$@usn5] As `7esn`,.e0[usn2..] As _usn3 Order By False[..12.e12] Descending Skip [\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Limit 7 In @usn5 In $`4esn` Where 12e12 Starts With $123456789 Starts With 12.0 Detach Delete 010 Starts With `7esn` Starts With 9e1 With Distinct *,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Order By .e0 Contains 01234567 Descending,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Desc,'s_str' Starts With 1000 Starts With #usn8 Descending Where 123456789 =~_usn4 =~$0 Union Create `4esn`=(:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) Remove {`5esn`:`6esn` =~01234567 =~0Xa}.#usn7,(usn1 :#usn7)<-[@usn6?{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(:`2esn`:`3esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})._usn4,(#usn7 :`2esn`:`3esn`)-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})-[_usn3? *00..]-(`1esn` :`1esn`).`4esn` Match ((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})),((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})<-[#usn8:`8esn`|:usn1 *123456789..999]-(`7esn` {usn2:`6esn`['s_str'..][010..]})<-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null}));"), - octest:ct_string("With Distinct ``(Distinct `1esn`[0e0..]) =~(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[@usn6?:`1esn`]-(:`5esn`)-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}),All(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`)[[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]]..][({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})..] As #usn8,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Skip None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Ends With $999 Ends With usn2(0X7[0e0..],$#usn8 Is Null Is Null) Limit usn1[$`3esn`..$999][True..False] Return 123456789 =~_usn4 =~$0 Order By 1000[..$`6esn`][..0xabc] Ascending,count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null Desc Skip 12.e12['s_str'] Union All Merge _usn4=(usn1 :_usn4:usn1)<-[`5esn` *0..010]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) On Create Set `4esn` =$@usn6 Contains 07 Contains 0.e0 On Match Set [0X7 =~.0 =~\"d_str\",9e1[...e0]].@usn5 =Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}),{@usn6:usn1 In 1000 In $`5esn`,@usn6:9e0[``][123.654]}.`3esn`! =$999 In $`8esn` In `5esn` Merge ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) On Match Set (`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})<-[?{#usn7:`6esn`[False..0.0][12e12..$usn2]}]-(`4esn` {`4esn`:#usn7[..$1000][..01]})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}).`4esn`! =0 Is Not Null,`6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`1esn` =$_usn3[$`4esn`..Null] On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Union All With Distinct *,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7,@usn6 Starts With `7esn` Starts With Null Order By Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]|$0 =~$usn1 =~9e1)[{``:\"d_str\",`1esn`:$1000 =~$`7esn`}] Descending;"), - octest:ct_string("With *,None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`) Is Null As @usn6,123456789 =~_usn4 =~$0 As usn1 Unwind ({`8esn`:$123456789 Contains 01 Contains 0.12})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(usn1 :#usn8)-[`3esn`? *999..]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})[Single(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)..$#usn7] As `7esn` Union Remove [@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1|00].`3esn`!,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]|$`6esn`[$`1esn`][1000]].`4esn`! Unwind Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] As `8esn`;"), - octest:ct_string("Remove All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]).`7esn`? Union All Return Distinct *,(_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)[Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] As `8esn`,[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `8esn` Order By @usn5 Starts With 12e12 Starts With @usn5 Desc Skip _usn4(usn1[Count ( * )..$usn1],_usn3 Ends With 12e12 Ends With .e0)[All(usn1 In 0x0[..`4esn`] Where $`2esn`[123456789..][00..])..Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``])][[@usn6 In @usn5 In $`6esn` Where $``[_usn4..][`7esn`..]|12.e12 In $0 In Count(*)]..(:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)];"), - octest:ct_string("With *,0.12 In 01 In $`3esn` As @usn5 Order By Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}) Desc,$12[01..][1.e1..] Descending,`7esn`[Null..][@usn5..] Asc Limit Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null)[count(Distinct 0.12 Contains $12 Contains `8esn`)..[$`1esn` Is Null Is Null,9e1 In 01 In 999]] Where $@usn6 =~usn1 Merge `1esn`=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(usn1 :`4esn`:#usn8{``:0 Is Not Null Is Not Null,`3esn`:usn1 Starts With $#usn7 Starts With `5esn`})) On Match Set #usn8($`2esn` Contains usn1 Contains `2esn`).`3esn`? =0xabc[..$`1esn`][..01] On Create Set @usn6+=[usn1[..$_usn4][..``],0X7[.e12..01234567]] In `3esn`(@usn5[..True][..0X7],$`3esn` =~$`7esn` =~False) Merge @usn5=({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)<-[?:usn2|#usn8{#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7}]-({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) Union Optional Match usn1=((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6)) Delete 0.12 Is Null Is Null Create ((`` :`1esn`)-[`1esn`:usn2|#usn8 *1000..]-(`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[`4esn`]->({`8esn`:0X7 In 's_str' In $`1esn`})) Union Return Distinct `4esn` In $12 In `8esn` As `8esn` Order By $_usn3[..$_usn3][.._usn4] Descending,Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Desc,\"d_str\" =~`6esn` =~0Xa Ascending Skip Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] Delete 12.e12 Contains $`5esn`;"), - octest:ct_string("With *,.e12 Starts With True As _usn4,$1000 In $`7esn` In $7 Skip [$1000 =~$`7esn`,.12 Starts With @usn5 Starts With $#usn8,0x0[...e12][..@usn5]] Ends With Single(@usn5 In .12[#usn7][$`8esn`]) Limit Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]|$0 =~$usn1 =~9e1)[{``:\"d_str\",`1esn`:$1000 =~$`7esn`}] Union All With *,00 In 1e1 As `7esn`,0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Skip 7 In @usn5 In $`4esn` Limit {`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]] Return Count ( * ) In 010 Limit Count(*)[True] Create (`4esn` :@usn5{``:$`2esn`[$`2esn`..],@usn6:010 =~`6esn`});"), - octest:ct_string("Match (`` :`7esn`)<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]}) Where $`4esn`[12.0..`5esn`] Unwind 1000[123.654..9e12][1000.._usn3] As _usn3 Union All Remove @usn5:@usn5,Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`]).@usn5,usn2:@usn6:`7esn` Create `2esn`=((:#usn7{usn2:$`5esn`[$123456789][`1esn`]})) Optional Match usn2=(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})));"), - octest:ct_string("Return Distinct `3esn` =~`3esn` =~$`6esn` As `7esn` Limit $`7esn` Is Null Is Null Union All With Distinct *,`2esn` Starts With $_usn3 Starts With `2esn` Order By 0X7 In 123.654 In $`2esn` Asc,0 =~12.e12 =~$`` Asc,12.e12 Is Not Null Descending Skip 0.e0[123.654] Create #usn8=(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0});"), - octest:ct_string("Merge `4esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}) On Create Set `3esn`+=(:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]),{`6esn`:$`8esn`[``..][123.654..],``:999[$`6esn`]}.`5esn`? =$_usn4[$`8esn`..][07..] On Create Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] Union All Merge ((:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})) On Match Set [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]].`1esn` =9e12 =~01 =~$`7esn` On Match Set `8esn` =12 Ends With 01 Ends With 1e1 Return Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])[All(#usn7 In 01234567[$`3esn`..] Where Count(*)[.e0.._usn4])..][None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..])..],9e12 Contains $_usn3 As `2esn`,All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12) Starts With Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Contains .0 Contains .e1) As usn2 Order By 9e1[.12..] Asc,Extract(_usn4 In usn1 Contains False Contains `` Where $`4esn` Starts With 1e1|Count(*)['s_str'..`1esn`]) =~Extract(`4esn` In $`8esn` Starts With 1000|`7esn`[Null..][@usn5..]) =~(:`4esn`:#usn8)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ) Asc,Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[{@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null}..] Descending Skip 9e1[.12..] Detach Delete @usn5[..True][..0X7],Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]),`5esn` Ends With .e1 Ends With $_usn4 Union Remove `1esn`:`5esn`,{`5esn`:0X7[12]}.#usn8,Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])._usn3? Unwind 999 Contains `7esn` As @usn5 Create ((:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})<-[@usn6:`3esn`|:`4esn`*]->(`6esn` :`5esn`)),(({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(:_usn4:usn1));"), - octest:ct_string("With Distinct $`1esn` Starts With $999 As #usn8,False In $`7esn` In .0 Order By .e12[usn2][01] Desc,0 Ends With $7 Ends With _usn3 Ascending,Extract(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|Null Starts With $`7esn` Starts With `2esn`) =~{`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0} Descending Skip [1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Limit \"d_str\" Where Count(*) In 01 In .0 Remove `3esn`:_usn3,{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}._usn3? Union All With Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1) Skip @usn5 Starts With 12e12 Starts With @usn5 Where 07[Count ( * )...e1][0X0123456789ABCDEF..$7] Detach Delete 999[$`8esn`],Single(#usn7 In 01234567[$`3esn`..])[(`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']})][[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0]],$#usn7 In .e1 In 01 With $`2esn`[``..] As `3esn`,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As `3esn`,`7esn`[...e1][..\"d_str\"] Order By [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]) Asc Limit $#usn8 Is Null Where $123456789 In Count(*) In .e1;"), - octest:ct_string("Create _usn4=(((@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})-[`2esn`:@usn5|`8esn`]-(usn2 :`5esn`)-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4}))) Unwind $`5esn` Contains $@usn6 As @usn6 Return Distinct 1000 Contains $#usn7 Contains `6esn`,12.0 Contains 0.e0 As `6esn`,$12[..7][..07] As #usn8 Order By Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending Skip All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)[[usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1]] Limit 0xabc Starts With _usn3 Union Optional Match `4esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}),(((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Where $_usn3[..Count ( * )][..@usn5] Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..] Union All Remove [Null Contains _usn4].`8esn`!,Single(#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4).@usn6 With Distinct 0 =~12.e12 =~$``,0.12 Contains .e1 As `6esn`,01 Contains $`7esn` Contains 9e0 Order By Count ( * )[..1e1] Asc,_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) Asc,[0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] Ascending Skip Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] Limit _usn3(0x0[0X7..][usn1..])[..Any(#usn8 In $`5esn` Is Null Is Null Where 999[$`8esn`])][..{#usn7:False[`2esn`..#usn8]}] Detach Delete $`7esn` In 0.e0 In `4esn`;"), - octest:ct_string("Create (@usn5 {_usn4:_usn3 Ends With 0x0 Ends With 01234567}) Union All With Distinct 0['s_str'][Null] As #usn7,{`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])] As `3esn`,Null Starts With _usn4 Starts With `6esn` As _usn3 Order By $`1esn`[$_usn3..][9e1..] Asc,$`2esn` Starts With .e0 Starts With 12.0 Descending,999 Contains `7esn` Ascending Limit 9e1 =~.0 =~$`1esn` Union Remove [$`5esn`[False],9e1 Contains $`3esn` Contains 01234567,`5esn`[Count ( * )..][\"d_str\"..]].@usn5!,`3esn`:_usn4:usn1,[usn1 In 00 Starts With _usn3].#usn8? Return Distinct *,$@usn6[..$usn1] As _usn3 Order By {``:12e12[$`5esn`][07],_usn3:$`6esn` Is Null Is Null} Ends With [0 Is Not Null Is Not Null] Descending,Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Desc,.12 Ends With `1esn` Ends With $`1esn` Asc Limit `7esn` Starts With $`` Starts With $#usn7 Merge ((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8));"), - octest:ct_string("Remove {_usn4:00 In 0.12 In `5esn`,@usn5:0X7 =~.0 =~\"d_str\"}.`6esn`? Return Distinct @usn5[..True][..0X7] As #usn8,[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..] Order By 0 Ends With $7 Ends With _usn3 Ascending Skip \"d_str\"[$`7esn`][$1000] Limit False[0Xa..$@usn5][$`6esn`..12e12] Remove `4esn`:``,{#usn7:0[0.12..]}.usn2! Union All Create (({``:12 Is Null Is Null})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)})),#usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})) Remove (`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(`4esn` :#usn7).@usn5?,All(`4esn` In `6esn`['s_str'..][010..] Where \"d_str\" =~`6esn` =~0Xa).``!,(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}).usn1! With Distinct `2esn` Contains $999 As #usn7,$123456789[False.._usn3] As `1esn` Order By (usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Ends With [$`8esn` =~$usn2,0X0123456789ABCDEF[..usn1],`` In `6esn`] Descending Skip 0X7[..12e12] Union Optional Match ``=(((:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(:`7esn`{@usn6:0.0[999..],#usn8:Null Is Null Is Null})-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]}))) Where 1000 Ends With 1000 Ends With $`4esn` Remove [_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4].@usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`!,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`)._usn4 Unwind @usn6(Distinct `` Starts With @usn5) =~Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]) =~#usn7(Distinct $0 =~$0 =~.e0) As `2esn`;"), - octest:ct_string("Detach Delete [#usn8 In $`5esn` Is Null Is Null Where 0.0[..12e12][..$0]][{`2esn`:.e1 In $@usn6 In 999,usn2:@usn5 Ends With $`3esn` Ends With 12e12}..] Optional Match ((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 )) Where `7esn`[1e1..07][0x0..Count ( * )] Union Delete 0e0[`2esn`..010],@usn6[`5esn`..$`3esn`],Count ( * )[..usn1][..12.e12] Remove [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1].usn1,None(@usn5 In .12[#usn7][$`8esn`] Where 123456789 Is Null).`1esn`?;"), - octest:ct_string("Merge ((@usn5 :`3esn`:`1esn`{_usn3:#usn7 Starts With `1esn`})<-[?{`8esn`:`8esn`[1000..$7][$`7esn`..`2esn`],@usn5:$`2esn`[..`2esn`]}]->(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})) On Match Set ``+=$@usn6 =~usn1,#usn8+=$#usn8 Is Null Create (`8esn` :@usn5)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->(`6esn` :_usn4:usn1{`6esn`:00 In 12.e12}) Union All Unwind $@usn6 Is Null As `` Union With Distinct $123456789 Ends With $`6esn` As `6esn`,Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Order By $usn2[0e0..] Desc,.0[$`6esn`..False] Ascending,[$`3esn` Starts With 01234567 Starts With $1000] Starts With `4esn` Starts With [$`2esn`[..7][..$usn1]] Asc Skip Extract(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null) Ends With `2esn`(`7esn`[Null..][@usn5..],123.654[12.e12..1e1]) Ends With Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]) Limit $`2esn` Contains usn1 Contains `2esn`;"), - octest:ct_string("Detach Delete $999[12.0..] Remove ``:#usn7 Union Delete #usn8 Ends With `4esn` Ends With $`4esn`,$_usn3[..Count ( * )][..@usn5],$usn2 In 9e0 In $7 Detach Delete Extract(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null) =~Any(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null) =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1],$7 Contains 0x0 Contains ``,[\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Merge (`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :`4esn`:#usn8) On Create Set `2esn` =1e1[0.0],`4esn`+=All(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) =~None(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0) =~None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `7esn` Starts With $usn2 Starts With .e0) On Match Set #usn7 =.12 Is Not Null Is Not Null,Filter(usn2 In 1000 Contains 0.e0 Where 123456789 Starts With `2esn` Starts With .0).`1esn`? =[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][``($`4esn`[usn1..$#usn8][12.0..`3esn`])..[`6esn` In 0X7 =~``|$#usn7[...e12][..$7]]][(:``{@usn5:$@usn6 Contains Count ( * ),`2esn`:$0 Is Not Null})-[_usn3?:`5esn`|`1esn` *0X0123456789ABCDEF..]->(`1esn` :#usn7{_usn3:999[.e12][01],`6esn`:9e12 Is Not Null Is Not Null})<-[`5esn`?:usn1|`3esn` *1000..]-(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})..Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])];"), - octest:ct_string("Merge ((:`2esn`:`3esn`{`7esn`:$_usn4[#usn8..]})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)) Remove [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`6esn`[$@usn6..]|010 =~$usn2 =~1e1].@usn6? With Distinct 01234567 Ends With 0x0,[`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As #usn8,$1000 Is Not Null Is Not Null Where True[Count(*)..][1e1..];"), - octest:ct_string("Return Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])],123456789 Starts With _usn4 Starts With @usn6 Skip _usn3 Ends With 12e12 Ends With .e0 Remove Filter(`6esn` In 0X7 =~`` Where $0[$#usn8..01234567]).`5esn`?,{#usn7:False[`2esn`..#usn8]}.#usn7?,usn1($`1esn` =~$`1esn` =~#usn7).`1esn`? Optional Match (((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))) Union All Return 01 In 01 In 12 As #usn8,$`6esn`[$`1esn`][1000],[#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|@usn6 Starts With `7esn` Starts With Null] Is Not Null Is Not Null Order By 12.e12 Contains `5esn` Ascending,{#usn8:#usn7 Ends With 9e1} Is Not Null Is Not Null Ascending Limit 0.12 Contains $12 Contains `8esn` Detach Delete 123.654[12.e12..1e1],`6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null) With Distinct *,\"d_str\" Order By $`3esn` Descending,[0[usn2..],7[12e12..$_usn4][9e1..True],`1esn` Contains Count ( * )][Extract(@usn5 In .12[#usn7][$`8esn`] Where Count ( * ))..][Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])..] Desc,1e1[..#usn8][..'s_str'] Descending Skip @usn5 Is Not Null Is Not Null Union All Match (_usn4 :#usn8)<-[`6esn`? *..7{`3esn`:123456789[$#usn7..]}]-(:`2esn`:`3esn`{`7esn`:$_usn4[#usn8..]})-[usn1?:_usn3|:`4esn` *123456789..999{`6esn`:01 Ends With .e0,`4esn`:$`7esn` Is Not Null}]->(_usn3 ) Where _usn4 Starts With 0X7;"), - octest:ct_string("Unwind [`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As @usn5 Return *,[010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]][(:@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})..][Extract(#usn8 In $`5esn` Is Null Is Null Where 1000[0.0][Null])..] As `8esn`,`5esn` =~0Xa As usn1 Order By 0X0123456789ABCDEF Is Null Is Null Descending,Count ( * ) In 010 Descending,`5esn` In $999 Descending Limit .e0 Contains #usn7 Contains $#usn8;"), - octest:ct_string("Remove [usn1 In 0x0[..`4esn`]|`` Starts With @usn5].`6esn`?,(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})._usn4? Unwind [010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]][(:@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})..][Extract(#usn8 In $`5esn` Is Null Is Null Where 1000[0.0][Null])..] As `5esn` Unwind .e12 Starts With True As `7esn`;"), - octest:ct_string("Delete 0x0[...e12][..@usn5],$``,@usn6[$`7esn`] Return *,.e1[$_usn4][1e1] As `7esn` Order By 9e0 Ends With $`7esn` Asc Skip 's_str'[12..'s_str'];"), - octest:ct_string("Create ({``:.e12[..0.e0][..$`1esn`]})-[_usn3:#usn8]-(usn1 :#usn7) Merge `3esn`=((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) On Create Set ``+={usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null,@usn5+=usn1[..@usn5][...e0],`2esn`+=All(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True])[..[`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|_usn3 In .e1 In $12]][..{`2esn`:$usn1[1e1.._usn3][$@usn6..$#usn7]}] On Create Set usn1 =(`6esn` :_usn4:usn1{`6esn`:00 In 12.e12})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``)[Extract(@usn5 In .12[#usn7][$`8esn`] Where #usn8 Contains .e0 Contains $`8esn`|.e0[..999][..0X7])..Any(#usn7 In 01234567[$`3esn`..] Where Null[01234567][01234567])],_usn4 =Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`)[@usn6..][usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`])..] Match (`7esn` {_usn3:usn1 Contains $``})<-[usn1]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12}),(({`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})-[#usn8?]-(:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1}));"), - octest:ct_string("Create (`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(`7esn` :`8esn`{`4esn`:00 Ends With .12 Ends With `4esn`})-[ *07..]->(usn2 :@usn6:`7esn`);"), - octest:ct_string("Remove Extract(_usn4 In usn1 Contains False Contains `` Where _usn4[$`4esn`..]|999 Contains `7esn`).usn1? With Distinct *,`4esn`($123456789 =~$0 =~$`3esn`) =~[07[12][$`6esn`],$`2esn` =~'s_str',$12[01..][1.e1..]] =~usn1(#usn7 Starts With `1esn`) As `3esn` Order By Extract(usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`) Contains [0 Contains 12e12,0xabc Ends With $7 Ends With $`2esn`,0x0 =~_usn4] Ascending,07[1e1] Ascending Skip 0e0[$12..`5esn`][Count(*)..`6esn`] Limit $123456789 Is Not Null Is Not Null Where 7 =~9e0 =~'s_str' Return None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) As _usn3 Skip `2esn` Is Not Null Is Not Null Limit None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]];"), - octest:ct_string("Merge (@usn6 {`4esn`:$`2esn`[..`2esn`]})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null}) On Create Set [$usn1 In 1000 In $#usn7,$#usn7 In 12.0 In 0X0123456789ABCDEF,9e0 Is Not Null]._usn3 =All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`! =0xabc Starts With _usn3 On Match Set `2esn` =$usn2[False..`7esn`][`7esn`.._usn3],``+=_usn4 Ends With 01 Ends With $`1esn`,``+=01 Ends With .e0 Delete `2esn`[$`1esn`..][$_usn3..],7 =~9e0 =~'s_str' Merge ((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)) On Create Set All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 9e12[usn2..7][.e1..$`7esn`])._usn3? =$`1esn` =~$`1esn` =~#usn7,`2esn`+={`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] On Create Set None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7).`2esn`! =.e1[..$`4esn`][.._usn4];"), - octest:ct_string("Create ({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[ *..0x0]->(#usn8 {usn2:7 Contains 9e1}) Create `7esn`=(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}),(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}))) Remove [`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999]].`5esn`!,usn1(0X7[.e12..01234567])._usn3 Union Create `4esn`=((:`7esn`{``:$`1esn` Starts With @usn6})),@usn5=((@usn6 :#usn7{@usn5:Null Is Null Is Null})<-[``?:@usn5|`8esn`]->(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})) Merge `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Remove Extract(_usn4 In usn1 Contains False Contains `` Where $12 Contains 123.654 Contains `8esn`|`5esn` In 12).#usn8?,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`7esn` Ends With $`2esn` Ends With $usn1|0[0.12..]].@usn5?;"), - octest:ct_string("Merge (`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(`7esn` :`8esn`{`4esn`:00 Ends With .12 Ends With `4esn`})-[ *07..]->(usn2 :@usn6:`7esn`) On Create Set #usn8:_usn4:usn1,[0 Is Not Null Is Not Null].usn2! =(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] Union With Distinct @usn6 Starts With `7esn` Starts With Null,$usn1[#usn8..][``..] As `2esn`,`3esn`[$`1esn`..] As usn2 Order By _usn3[0] Asc,``[$`3esn`][$`2esn`] Ascending,{@usn5:0.e0[@usn6][0x0]} Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7) Ascending Skip (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) Is Not Null Is Not Null Limit [@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Where `1esn` Contains Count ( * ) Return Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As `5esn` Return Distinct *,.e1 Starts With $`8esn` Skip 0xabc[12.e12..`1esn`] Limit 0.e0[@usn6][0x0];"), - octest:ct_string("With Distinct *,$usn2[12..$`7esn`][$0..$`7esn`],[0Xa[$``..][01234567..]] Contains `3esn`(Distinct _usn3 In .e1 In $12) Contains (`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']}) As @usn6 Skip 9e1 Starts With 9e1 Starts With 010 Limit `3esn`(Distinct 0.0[999..])[Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..[010 =~$usn2 =~1e1,`1esn`[@usn6..$123456789]]] Merge ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) On Match Set (`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})<-[?{#usn7:`6esn`[False..0.0][12e12..$usn2]}]-(`4esn` {`4esn`:#usn7[..$1000][..01]})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}).`4esn`! =0 Is Not Null,`6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`1esn` =$_usn3[$`4esn`..Null] On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Merge (`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(`7esn` :`8esn`{`4esn`:00 Ends With .12 Ends With `4esn`})-[ *07..]->(usn2 :@usn6:`7esn`) On Create Set #usn8:_usn4:usn1,[0 Is Not Null Is Not Null].usn2! =(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] Union All Match @usn6=(((`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}))) Where `7esn`[1e1..07][0x0..Count ( * )] Create _usn3=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))),(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) With Distinct (`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) As #usn8 Order By _usn4 Starts With $@usn6 Starts With #usn7 Asc,$#usn7 Desc Where $@usn6 Is Null Is Null;"), - octest:ct_string("Remove (`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[? *0..010]-(#usn8 :`4esn`:#usn8).`6esn`!,[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null].`5esn`? Remove Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where .e12[..0.e0][..$`1esn`]).`5esn`!,Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`).`5esn`? Remove {`6esn`:9e1 Contains $`3esn` Contains 01234567}.`2esn` Union Unwind 9e12 As `7esn` Unwind 12.e12 Contains $`5esn` As #usn7 Remove {`6esn`:$`8esn`[``..][123.654..],``:999[$`6esn`]}.``,[0X7[..12e12],$`6esn`[$`1esn`][1000]].usn2?;"), - octest:ct_string("Return Distinct *,$7[12.e12..] As #usn7,`4esn`[$#usn7] As `1esn` Skip #usn7[..$1000][..01] Limit {`8esn`:@usn5[..True][..0X7],`1esn`:`1esn` Contains Count ( * )}[{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)] Union All Unwind (`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:usn1|`3esn`*]->(:_usn3{`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`})-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(usn1 :#usn8) Is Not Null As `8esn`;"), - octest:ct_string("With Distinct Count ( * ) Ends With 1000 Ends With 12 As _usn4,False[..12.e12] Skip {usn2:123456789 Starts With `2esn` Starts With 9e12} Ends With All(usn2 In 1000 Contains 0.e0 Where 01234567[Null..0.e0][Count(*)..$#usn8]) Where 0 Is Null Is Null Merge ((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})) On Create Set _usn4+=@usn6(Distinct 12.e12[0e0..7],usn1[Count ( * )..$usn1]) Is Null Is Null,(_usn4 :``)-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6}).`5esn` =\"d_str\" Contains `3esn` Contains 00,`4esn` =``[True..] On Create Set #usn7+=Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]),Extract(@usn5 In $#usn8 Is Null Is Null Where $@usn5 =~$`` =~$usn2|`5esn`[.e1][0Xa]).`6esn`? =$`1esn` Is Null Is Null Delete usn1[1e1][$_usn4],$123456789[..0.12][..#usn7] Union All Optional Match (({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) With Distinct $`2esn`[``..] As `3esn`,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn`,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] As @usn6 Order By `7esn`[1000..][$123456789..] Desc,$#usn8 In .e12 In 9e1 Descending,$@usn5 Contains $`7esn` Contains #usn8 Desc Detach Delete $`3esn` Is Not Null Is Not Null,$1000 Ends With 1e1 Ends With 123.654 Union All With Distinct *,`3esn` =~`3esn` =~$`6esn` As `7esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 123456789[$#usn7..]) Contains [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1] Skip .12[..`6esn`][..\"d_str\"] Limit [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] Where @usn6[$`7esn`];"), - octest:ct_string("Unwind {@usn6:`7esn` In 999 In @usn6} Starts With Extract(usn1 In 0x0[..`4esn`] Where 0x0|07 Ends With 07) Starts With Filter(usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12) As _usn3 Return Distinct .12[#usn7][$`8esn`],12 Ends With 07 Ends With @usn6 As usn1 Order By $999[..`1esn`] Ascending,Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending,[$`8esn` =~$usn2][Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..] Asc;"), - octest:ct_string("Detach Delete 1000 Ends With 1000 Ends With $`4esn`,Filter(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null) Ends With [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1] Ends With _usn3(Distinct $123456789 Ends With $`6esn`) Merge `4esn`=((#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) On Match Set {`8esn`:`8esn` In $@usn5}.`3esn`! =$@usn5[#usn8..][$`1esn`..],All(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $@usn6 Is Null Is Null).`1esn`! =$12[..``][..$7] On Create Set usn2 =_usn3 Is Not Null Is Not Null,`4esn` =.e1 Starts With $`8esn` Union All Create (#usn7 :@usn5)-[`4esn`:_usn3|:`4esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:usn1{`8esn`:usn1 Contains $``}),``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}) Return Distinct $`4esn`[$`2esn`..] As #usn8,#usn8 In $0,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Limit Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`6esn`[$@usn6..]) In {`7esn`:12e12 Ends With 010 Ends With .0} In None(#usn8 In $`5esn` Is Null Is Null Where 123456789 In $usn2 In `6esn`);"), - octest:ct_string("Optional Match (((usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(`4esn` :`4esn`:#usn8{`1esn`:$@usn5 In 12e12 In Count(*)})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3}))),usn2=(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}))) Create (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Union Detach Delete 1000 In 0X0123456789ABCDEF In 01,@usn6(Distinct Null[0e0][12])[..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]]][..`8esn`(010 =~`6esn`)],1e1 Starts With #usn8 Starts With 1.e1 Detach Delete Null Starts With $`7esn` Starts With `2esn` Delete $7 Ends With 12.0 Ends With 0xabc,usn1 =~Null =~`5esn` Union Merge ((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)) Match _usn3=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}),``=(({`5esn`:0e0 =~_usn4}));"), - octest:ct_string("Create @usn6=({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567}),`7esn`=((:@usn6:`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[`6esn`:@usn5|`8esn` *12..0xabc]-(`` :@usn5)-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})) Union All Match `1esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) Where $123456789 Is Not Null Is Not Null Merge _usn4=(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) On Create Set _usn3 =(usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Is Null Is Null,`1esn` =7 Contains $`5esn` Contains $usn1,usn2 =\"d_str\" =~`3esn` =~0x0 On Match Set @usn6+=(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}];"), - octest:ct_string("Return Distinct $12 Contains 123.654 Contains `8esn` As _usn4 Remove None(usn1 In 0x0[..`4esn`] Where False[.e1..Null]).``,[.e0[..999][..0X7]].`5esn`?;"), - octest:ct_string("With Count(*) In 01 In .0,1000 Contains $#usn7 Contains `6esn` Skip (`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`})<-[ *0xabc{`1esn`:123.654 In \"d_str\" In $_usn3}]-({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0}) =~{#usn8:$@usn5[#usn8..][$`1esn`..]} =~{#usn8:0X0123456789ABCDEF[..usn1]} Limit $_usn3[..Count ( * )][..@usn5] Where $123456789 =~$`5esn` =~07 Optional Match `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) With `5esn` In $999 As `6esn` Order By [_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]][[.0 Starts With `2esn` Starts With `6esn`,9e1[0.e0..][#usn8..]]..][[07[$999],9e0 In 01234567,@usn5 In 0X0123456789ABCDEF]..] Asc,False Ends With $`8esn` Asc Where @usn5 Ends With $`3esn` Ends With 12e12 Union Unwind $`1esn` Is Null Is Null As `8esn` Remove `3esn`:#usn8,(`1esn` {@usn6:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,#usn8:\"d_str\" =~`3esn` =~0Xa})<-[#usn7]-({`5esn`:9e1 Starts With _usn3 Starts With `4esn`})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}).`5esn`!,[$`` Ends With 12e12,.12 Starts With .12 Starts With `3esn`,12.e12[0e0..7]].`5esn`? Unwind .e12 Starts With True As `8esn` Union All Return $`4esn`[12.e12..][0.0..],12[`7esn`...0][0.12..``] As @usn6,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Skip $`1esn` Ends With $`1esn`;"), - octest:ct_string("Unwind Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) Ends With [1e1[@usn5..],$#usn8 Is Null,$0[$#usn8..01234567]] Ends With Extract(`6esn` In 0X7 =~`` Where 010 =~`6esn`) As usn2 With $`3esn` As usn1 Order By All(@usn5 In .12[#usn7][$`8esn`] Where $`5esn` Contains $@usn6) Is Null Is Null Ascending,\"d_str\" Contains `3esn` Contains 00 Desc Skip $_usn4[$`1esn`..][$0..] Limit True[0] Union All Merge ((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Merge `3esn`=((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) On Match Set `6esn` =$@usn5[Count ( * )] Union With Distinct 12.e12[$1000..],[_usn4 Ends With 01 Ends With $`1esn`,0e0 =~_usn4,$7[.12]][Any(`4esn` In 's_str'[12..'s_str'] Where $1000 In $`7esn` In $7)..Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0x0[..`4esn`])] As `2esn`,01 In 01 In 12 As #usn8 Order By `3esn` =~$`5esn` =~12 Ascending,`3esn` =~`3esn` =~$`6esn` Asc Limit {@usn6:`7esn` In 999 In @usn6} Starts With Extract(usn1 In 0x0[..`4esn`] Where 0x0|07 Ends With 07) Starts With Filter(usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12) Where True[0x0][@usn6] Unwind [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] As _usn3 Return Distinct *,0.12 In $`4esn` In `6esn`,`4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}] As `2esn` Skip 0X7[..12e12];"), - octest:ct_string("Optional Match ((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})),(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))) Where 00 In 1e1 Create `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Unwind [@usn5 In .12[#usn7][$`8esn`] Where $_usn4[12e12][`4esn`]][`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])..``(False In `3esn`)][[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]]..Filter(@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12])] As @usn6 Union All Delete 7[..0X7][..'s_str'],9e0 Ends With $`7esn`,$0 Ends With $#usn7 Ends With .12 Create (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0),((:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})) Union With 's_str'[..0.0][..$`4esn`] As `2esn`,#usn7 Contains .0 Contains .e1,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Skip `6esn` Starts With $usn2 Starts With 0.0 Limit 9e1 Contains $`3esn` Contains 01234567 Where True Starts With $`8esn` Starts With \"d_str\" Merge `2esn`=(:_usn4:usn1) On Match Set `6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`7esn` =9e1[0.e0..][#usn8..],#usn7+=({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Ends With @usn6(123456789 =~$123456789) Ends With [`1esn` Contains Count ( * ),$@usn6 Contains Count ( * ),False In 123456789 In $0] On Create Set `` =(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[usn1?:`8esn`|:usn1]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Is Null Is Null,`7esn`+=(`7esn` :_usn4:usn1)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`) Starts With ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2) Starts With Extract(usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]|07[`6esn`..][`5esn`..]),`2esn`:`1esn` With Distinct $0 Is Null Is Null Skip [0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',0X0123456789ABCDEF In $1000 In $`3esn`,$0[..`8esn`]] In `4esn`(Distinct 12.e12 In $0 In Count(*),00 In 1e1) In [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]|.e0 =~`5esn`] Where 010 Contains Count(*);"), - octest:ct_string("Remove {#usn8:0X0123456789ABCDEF[..usn1]}.`5esn`! Detach Delete Any(#usn7 In 01234567[$`3esn`..] Where 00 In 1e1)[[usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0|0xabc[12.e12..`1esn`]]..][[@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2]..],12.e12 Ends With 01 Ends With .e1,07[12e12] Union With Distinct $0 Is Null Is Null Skip [0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',0X0123456789ABCDEF In $1000 In $`3esn`,$0[..`8esn`]] In `4esn`(Distinct 12.e12 In $0 In Count(*),00 In 1e1) In [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]|.e0 =~`5esn`] Where 010 Contains Count(*);"), - octest:ct_string("Match ((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})),(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))) Unwind 07[1e1] As `1esn`;"), - octest:ct_string("Detach Delete .e1[$_usn4][1e1] Union Create `5esn`=(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}),`6esn`=((@usn6 :`8esn`{`2esn`:0X7 =~.0 =~\"d_str\"})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})) Optional Match ((_usn3 :_usn4:usn1)<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})),(:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa})-[:usn1|`3esn`]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]}) Where 00[01234567][False];"), - octest:ct_string("Return Distinct *,0['s_str'][Null] As #usn7,{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null As #usn8 Order By `4esn` =~$`3esn` =~$123456789 Ascending,{`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])] Asc,$`4esn`[..usn1] Ascending Skip [@usn5 In 0X7 =~.0 =~\"d_str\"|#usn7 Starts With `1esn`][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn`[...e1][..\"d_str\"])..][`2esn`(Distinct 12e12[Null],0xabc[12.e12..`1esn`])..] Limit $usn2[..12.0] With Distinct *,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Order By .e0 Contains 01234567 Descending,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Desc,'s_str' Starts With 1000 Starts With #usn8 Descending Where 123456789 =~_usn4 =~$0 Unwind 12 =~usn1 =~.e12 As `7esn`;"), - octest:ct_string("With Distinct 0 =~12.e12 =~$``,0.12 Contains .e1 As `6esn`,01 Contains $`7esn` Contains 9e0 Skip [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|.e12 Contains $12 Contains 12.e12][(_usn3 :`6esn`:`7esn`{usn1:$_usn3[9e1][$_usn4],`8esn`:123456789 =~_usn4 =~$0})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-({`1esn`:@usn6})..Any(#usn8 In $`5esn` Is Null Is Null Where 123456789 In $usn2 In `6esn`)][[010[$`8esn`..][0..],False In `3esn`,12e12 Ends With 010 Ends With .0]..{@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}] Limit .12[..`6esn`][..\"d_str\"] Where 0.e0 Ends With 12 Ends With $7 Merge (`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(usn1 :#usn8)<-[ *..0x0{`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) On Create Set `6esn` =$@usn5[Count ( * )] On Create Set Single(usn1 In 00 Starts With _usn3 Where $`7esn` Ends With 07 Ends With 07).`6esn`? =Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789},@usn5 =[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0])],[usn1 In 00 Starts With _usn3 Where 12 Ends With .e12 Ends With $7|_usn3 =~00].#usn7! =Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null;"), - octest:ct_string("Remove _usn3(Distinct 010[@usn5..]).`4esn` Union All Unwind @usn6 =~01 As `8esn` Unwind 999 In 12 In \"d_str\" As #usn8;"), - octest:ct_string("Merge ``=(`7esn` :`7esn`)-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0}) Match (`` :`7esn`)<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]}) Where $`4esn`[12.0..`5esn`] Union All Delete Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`) Union All Unwind $7[.12] As @usn6 Detach Delete ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] Match usn1=(`4esn` :#usn7)-[_usn4?:`6esn`]-(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) Where $`5esn` In `2esn` In .0;"), - octest:ct_string("Unwind $_usn4[`3esn`][0] As _usn4 Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) Create (((`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})<-[?:`7esn`|`2esn`]-(:`6esn`:`7esn`{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}))) Union All Remove {`8esn`:Count ( * ) =~Count(*)}.`6esn`,({@usn6:0X0123456789ABCDEF[..usn1]})<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)._usn4?,(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`4esn` Union Optional Match _usn3=(#usn8 {usn2:7 Contains 9e1})-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}) Where \"d_str\";"), - octest:ct_string("Match (:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}),((:``{`1esn`:`6esn` =~$_usn3})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})) Where _usn4[0xabc..];"), - octest:ct_string("Detach Delete 0Xa Starts With 0.12 Starts With .0,1000 In 0X0123456789ABCDEF In 01,`1esn`[0e0..] Create ((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 )) Union All With Distinct $_usn4[$`1esn`] As `5esn`,None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..] Order By 010[$`8esn`..][0..] Desc,010[@usn5..] Descending,12.e12 In $1000 Ascending Limit 0x0[..$`6esn`][..$#usn8] Where 12.e12['s_str'] Union All Match `8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Create `1esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) Optional Match usn2=((#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`6esn`?:usn1|`3esn`{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})),((usn1 :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)) Where `3esn`[..7][..12e12];"), - octest:ct_string("Optional Match usn2=(:`8esn`{usn2:7 Contains 9e1})<-[_usn3?:`7esn`|`2esn` *010]-(#usn8 :`4esn`:#usn8)-[`8esn` *..0x0{#usn7:Count ( * )[Count ( * )..12e12][usn1..1000],`4esn`:010 Is Null Is Null}]->(@usn6 ) Where .e1 Starts With 0.0 Starts With `6esn` Detach Delete $999[12.0..] Union Optional Match #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))),_usn4=(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) Union All Optional Match `5esn`=(({`2esn`:123456789 Starts With `2esn` Starts With .0,@usn6:$123456789[$`2esn`][True]})-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})-[`4esn`?:`8esn`|:usn1 *..0x0]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}));"), - octest:ct_string("Match `3esn`=(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}),usn2=((#usn8 :`4esn`:#usn8)-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)) Where $`8esn` =~$usn2 Merge _usn3=(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})) On Create Set `4esn`(Distinct .0 Starts With `2esn` Starts With `6esn`).`7esn`! =Filter(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[[1e1[0.0],0 Contains 12e12,$123456789[..0x0][..`4esn`]]],`8esn` =[@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] Merge ((`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}));"), - octest:ct_string("Merge `6esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}) On Match Set Filter(usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01).`8esn`! =`6esn`[..`5esn`] Unwind `1esn`[12.e12][01] As _usn3 Optional Match `1esn`=(((`` :@usn5)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn5:`8esn`|:usn1]-(#usn7 :`5esn`))),usn1=(_usn4 :`8esn`{`3esn`:False[.e1..Null],`3esn`:9e0 =~$`5esn`}) Union All Remove [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7].@usn5,Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])._usn3? Return Distinct *,$@usn6[..$usn1] As _usn3 Order By {``:12e12[$`5esn`][07],_usn3:$`6esn` Is Null Is Null} Ends With [0 Is Not Null Is Not Null] Descending,Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Desc,.12 Ends With `1esn` Ends With $`1esn` Asc Limit `7esn` Starts With $`` Starts With $#usn7 Unwind $@usn6 Starts With usn2 Starts With usn2 As _usn4;"), - octest:ct_string("Optional Match ((`5esn` :#usn7)<-[?:usn2|#usn8 *1000..]->(@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})),`2esn`=((:@usn5{#usn7:1e1[@usn5..]})<-[? *0..010]-({@usn6:$123456789 Is Null Is Null,@usn6:`6esn`[1.e1..$#usn7][.e0..True]})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]})) Where False In 123456789 In $0 Merge usn1=(`3esn` :``) On Match Set All(`6esn` In 0X7 =~`` Where 0X7[..12e12])._usn4 =Null Starts With $`7esn` Starts With `2esn`,`5esn`+=999 Contains Count ( * ) Contains 123.654,usn1+=usn1[$`3esn`..$999][True..False] Union With Distinct 12.e12 In $0 In Count(*) As `` Optional Match @usn6=((:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})-[?:`4esn`|:`7esn`]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})),#usn7=(@usn5 {usn2:$999[12.0..]})<-[usn1]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[_usn3?:``|:_usn4]->(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}) With Distinct `5esn` In $999 As `6esn` Order By [_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]][[.0 Starts With `2esn` Starts With `6esn`,9e1[0.e0..][#usn8..]]..][[07[$999],9e0 In 01234567,@usn5 In 0X0123456789ABCDEF]..] Asc,False Ends With $`8esn` Asc Where _usn4[$`4esn`..];"), - octest:ct_string("Unwind {@usn5:$`3esn`} Starts With .12 As @usn5;"), - octest:ct_string("Create _usn3=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)),(((`3esn` :`8esn`)-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(_usn3 :usn2:@usn6)-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}))) Merge ((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})) On Create Set [$`6esn` Is Null Is Null,Count ( * )[@usn6..0x0],0.0[1000..][.e1..]]._usn3! =.0 Starts With `2esn` Starts With `6esn`,({``:\"d_str\",`1esn`:$1000 =~$`7esn`})-[usn1?:_usn3|:`4esn` *123456789..999{`6esn`:01 Ends With .e0,`4esn`:$`7esn` Is Not Null}]->(_usn3 ).`4esn` =usn2 Is Not Null Match (#usn7 :@usn5)-[`4esn`:_usn3|:`4esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:usn1{`8esn`:usn1 Contains $``}),``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}) Union All Unwind $`1esn`[$usn2..][$1000..] As `1esn` Merge `5esn`=(({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})) On Match Set {`6esn`:$`3esn` Contains 0X0123456789ABCDEF Contains 00,`1esn`:1000[123.654..9e12][1000.._usn3]}.`1esn`! =[$`1esn` Is Null Is Null,$12 Contains 123.654 Contains `8esn`] Starts With {`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]} Starts With Filter(usn1 In $123456789 Contains usn2 Where 01234567[.12..7][1000..1.e1]) On Match Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$`` Remove @usn5:_usn4:usn1,(:_usn4:usn1)-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]-(`1esn` :`1esn`).`1esn`!;"), - octest:ct_string("Unwind [`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) As #usn8 Union All Optional Match usn2=((`5esn` :usn2:@usn6{`5esn`:0Xa In .e1 In Count(*)})),_usn4=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]}));"), - octest:ct_string("With Distinct 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Limit $12[..``][..$7] Detach Delete Count ( * )[..1e1] Union Delete Count ( * ) In 010,False[..12.e12] Unwind `7esn`[$999][7] As `5esn` Create (({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})),(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :`4esn`:#usn8);"), - octest:ct_string("Match `7esn`=(@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}),@usn6=({_usn3:12.e12 In $0 In Count(*)})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}) Where 1e1 In 9e0 In 9e0 Create (({#usn8:12.0[..$7][..999],@usn5:$`1esn` Is Null})<-[``?:`1esn` *0xabc{`5esn`:$``[_usn4..][`7esn`..]}]->(#usn7 :@usn6:`7esn`{_usn3:\"d_str\" =~`3esn` =~0Xa})) Union Delete (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]),[usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..],{_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] Create #usn8=(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}) Return Distinct *,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}) Skip ({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}) =~None(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Union Create `6esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Return Distinct .12[#usn7][$`8esn`],12 Ends With 07 Ends With @usn6 As usn1 Order By $999[..`1esn`] Ascending,Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending,[$`8esn` =~$usn2][Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..] Asc Remove ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`5esn`? *010]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null}).`7esn`!;"), - octest:ct_string("Unwind Count(*)[`7esn`..$12] As `6esn` Detach Delete All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.e12 Contains `5esn`) Starts With None(@usn5 In $#usn8 Is Null Is Null) Starts With `3esn` Unwind #usn7 Contains .0 Contains .e1 As usn1 Union All Unwind Count(*)[`7esn`..$12] As `6esn` Detach Delete All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.e12 Contains `5esn`) Starts With None(@usn5 In $#usn8 Is Null Is Null) Starts With `3esn` Unwind #usn7 Contains .0 Contains .e1 As usn1;"), - octest:ct_string("Create `8esn`=((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})),`4esn`=(#usn7 :@usn5)-[`4esn`:_usn3|:`4esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:usn1{`8esn`:usn1 Contains $``}) Union All With Distinct 12e12 Starts With $123456789 Starts With 12.0,$@usn5 In 12e12 In Count(*) As #usn7,[0Xa In .e1 In Count(*)][..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}][..Extract(`4esn` In `6esn`['s_str'..][010..] Where #usn8[$#usn8..])] As `6esn` Limit @usn6[..0xabc][..$#usn7] Where $`5esn` Contains Count(*) Contains #usn7 Remove (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})<-[usn2?:usn1|`3esn`{`7esn`:0xabc Ends With $#usn7 Ends With #usn8,@usn5:$#usn8}]->(`3esn` :#usn8).usn2 Match (`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Where 9e1 Is Null Is Null;"), - octest:ct_string("Remove Extract(@usn5 In $#usn8 Is Null Is Null Where $#usn8 Is Null).``? Union All Remove [usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`|$`8esn`[$``..$7][$1000..$`7esn`]].`3esn`!,@usn6:#usn8,(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 Remove [@usn5 In 0X7 =~.0 =~\"d_str\" Where $`8esn` Starts With 1000|@usn6 Contains .e1 Contains $`4esn`].`8esn`!;"), - octest:ct_string("Merge usn1=((`6esn` :`3esn`:`1esn`{_usn3:1e1[.e1..],`1esn`:$#usn8})<-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})<-[:`1esn` *01234567..12]-(`7esn` )) With Distinct 0Xa Starts With 0.12 Starts With .0 As usn2 Order By [0Xa In .e1 In Count(*)][..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}][..Extract(`4esn` In `6esn`['s_str'..][010..] Where #usn8[$#usn8..])] Desc Limit Extract(_usn4 In usn1 Contains False Contains `` Where $`4esn` Starts With 1e1|Count(*)['s_str'..`1esn`]) =~Extract(`4esn` In $`8esn` Starts With 1000|`7esn`[Null..][@usn5..]) =~(:`4esn`:#usn8)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ) Return .0 Starts With `2esn` Starts With `6esn` As _usn4,_usn4[$`4esn`..] As `7esn`,\"d_str\"[Count ( * )] As `7esn` Limit 0.e0[123.654] Union All Delete {_usn3:0X7 =~`4esn` =~`8esn`,`2esn`:$`3esn` Starts With $usn1} Is Not Null,.e0[7..$`3esn`] With *,$@usn6 =~$#usn8 =~$#usn7 As `7esn`,#usn7 Ends With `4esn` Ends With @usn5 As `` Order By (`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Ascending,{@usn6:0X0123456789ABCDEF[..usn1]}[..`7esn`($`3esn` =~$`6esn` =~`8esn`)][..(`4esn` {`6esn`:$12[..``][..$7]})<-[#usn7]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})] Ascending Skip Count ( * )[..usn1][..12.e12] Where `6esn` =~$_usn3 Remove {`8esn`:Count ( * ) =~Count(*)}.`6esn`,({@usn6:0X0123456789ABCDEF[..usn1]})<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)._usn4?,(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`4esn` Union Match `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Remove All(#usn8 In $`5esn` Is Null Is Null Where 01234567 Ends With 12.0 Ends With 0X7).`8esn`! Optional Match `8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`}) Where 123456789 Starts With `2esn` Starts With .0;"), - octest:ct_string("Delete `7esn`($123456789 In Count(*) In .e1) Ends With Extract(@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|Count ( * )) Ends With Any(usn1 In 0x0[..`4esn`] Where False[.e1..Null]),usn2 Starts With `6esn` Starts With 12e12 Merge `1esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) On Create Set Extract(`4esn` In `6esn`['s_str'..][010..] Where 01 Ends With .e0|00[7..$123456789]).usn1? =usn2[`3esn`][_usn3],usn2+=[usn1[..@usn5][...e0]] In Extract(`6esn` In 0X7 =~`` Where $1000 Contains $`3esn`|12 Ends With 01234567) In {`3esn`:$`5esn` In `2esn` In .0,``:0e0 Is Null Is Null} On Create Set usn1+=`4esn` Ends With 123456789 Ends With @usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`! =\"d_str\" =~`3esn` =~0Xa,Any(_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0)._usn3 =`` =~12 =~$#usn7 Merge usn1=(({``:12 Is Null Is Null})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)}));"), - octest:ct_string("Unwind {`5esn`:0Xa In .e1 In Count(*)}[$`8esn`][[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7]] As `5esn` Merge `2esn`=(:_usn4:usn1) On Match Set `6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`7esn` =9e1[0.e0..][#usn8..],#usn7+=({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Ends With @usn6(123456789 =~$123456789) Ends With [`1esn` Contains Count ( * ),$@usn6 Contains Count ( * ),False In 123456789 In $0] On Create Set `` =(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[usn1?:`8esn`|:usn1]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Is Null Is Null,`7esn`+=(`7esn` :_usn4:usn1)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`) Starts With ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2) Starts With Extract(usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]|07[`6esn`..][`5esn`..]),`2esn`:`1esn` Merge (((`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`6esn`? *0Xa{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}]-(:`6esn`:`7esn`{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[`1esn`?:`1esn` *01234567..12]-({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}))) On Match Set [usn1 In 00 Starts With _usn3 Where `6esn`[1e1..]].`5esn`! =Count ( * )[Count ( * )..12e12][usn1..1000],@usn5+=usn1 Contains $`` On Match Set `6esn`+=9e0 Is Not Null,``+=`4esn` Ends With 123456789 Ends With @usn5 Union Delete `8esn`[$``] Delete 7[..`1esn`],`6esn` In 1000 In 01234567 Union All Merge `1esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) On Create Set usn1+=Extract(#usn7 In 01234567[$`3esn`..] Where 0X7 In $999 In $``)[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..],Any(_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]).#usn8! =#usn7 Starts With 0x0 Starts With Null Create (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0),((:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]}));"), - octest:ct_string("Optional Match `3esn`=((:#usn8{_usn4:\"d_str\"[Count ( * )],`2esn`:9e0 Ends With $`7esn`})) Union Unwind $`1esn`[$usn2..][$1000..] As `3esn` Delete $`2esn` Contains usn1 Contains `2esn`,12e12[Count ( * )..][usn2..],Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`) Remove [@usn5 In 0X0123456789ABCDEF,False[0Xa..$@usn5][$`6esn`..12e12]].`3esn`!,`7esn`(`3esn`[..7][..12e12],$999 Ends With $`3esn` Ends With `8esn`).usn2? Union All Merge `2esn`=(`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}) Unwind `2esn` Is Not Null Is Not Null As _usn4;"), - octest:ct_string("Unwind $@usn6 Starts With usn2 Starts With usn2 As _usn4 Unwind $`4esn`[..usn1] As #usn7 Union All Return Distinct *,\"d_str\"[Count ( * )] As `7esn` Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) Contains Extract(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`) Limit {`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]] Remove Filter(#usn7 In 01234567[$`3esn`..] Where 0Xa[0xabc..$#usn8]).#usn8? Create ((`3esn` {`8esn`:$``[_usn4..][`7esn`..]}));"), - octest:ct_string("Return *,7 Is Null As #usn7 Order By .e0 Contains 01234567 Descending,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Desc,'s_str' Starts With 1000 Starts With #usn8 Descending Delete `6esn`[_usn4..][$`6esn`..] Unwind `1esn`[@usn6..$123456789] As `2esn`;"), - octest:ct_string("Unwind $0[..07] As usn1 Create (:usn1) Remove (_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`).usn2,Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 123456789[$#usn7..]|.e12 Contains $12 Contains 12.e12).usn1?,{_usn3:'s_str' =~0.e0}.usn2? Union All Optional Match #usn8=((:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[`2esn`? *0..010]->(usn2 :_usn3)-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]})) Return Distinct 12.e12 In $0 In Count(*) As `` Return Distinct $`1esn` Starts With $999 As #usn8,Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)[{#usn8:`5esn` =~0Xa,@usn5:0X7[999][$1000]}..[`` Starts With 12,$`1esn` Starts With $999]][`7esn`(Distinct $usn2[..12.0])..`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])] Order By 9e1 Is Not Null Is Not Null Asc,$usn2[$123456789..123.654][$`5esn`..'s_str'] Desc;"), - octest:ct_string("With *,0xabc Starts With _usn3 As `3esn`,Null[..12e12][..usn1] As `3esn` Order By 0x0[$`3esn`..010][$#usn7..00] Ascending,010 =~$usn2 =~1e1 Desc,(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Asc Limit 0x0 Contains $`8esn` Contains `6esn` Where 0xabc Contains Null Contains 9e12 Remove {`1esn`:0xabc[12.e12..`1esn`]}.`1esn`! Merge #usn7=(:#usn7{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[:@usn5|`8esn`*..]-(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)});"), - octest:ct_string("Match `4esn`=((:`7esn`{``:$`1esn` Starts With @usn6})),@usn5=((@usn6 :#usn7{@usn5:Null Is Null Is Null})<-[``?:@usn5|`8esn`]->(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})) Create ((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) Remove All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null).@usn5,`8esn`:_usn3,#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..]).`7esn`! Union All Remove [.12 Contains $`4esn` Contains $`6esn`].@usn6,[07 In `5esn` In 12e12]._usn3? Remove [Null Contains _usn4].`8esn`!,Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn2[`3esn`][_usn3]).`7esn`?,{#usn7:False[.e1..Null],`1esn`:9e0 Is Null Is Null}.@usn5! Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Union All Match `8esn`=((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Where $usn2[0e0..];"), - octest:ct_string("Remove [12e12 Starts With $123456789 Starts With 12.0].usn1 Delete `8esn`[$``];"), - octest:ct_string("Match usn1=(`4esn` :#usn7)-[_usn4?:`6esn`]-(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) Where $`5esn` In `2esn` In .0 With Distinct 07 Contains 1000 As @usn5,$123456789 =~$#usn8 =~$#usn8 Order By None(`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789])[(`` {`8esn`:0X7 In $@usn5 In 9e0,_usn3:@usn6[$`3esn`]})-[usn1{#usn7:7 Contains 9e1,`5esn`:$`` Ends With 12e12}]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})..0e0][{`1esn`:$@usn6 Contains 07 Contains 0.e0}..{`3esn`:0.12 In $7 In 0,_usn3:07[$999]}] Asc,12e12[.12..] Descending Where 9e12[usn2..7][.e1..$`7esn`];"), - octest:ct_string("Detach Delete All(usn1 In 0x0[..`4esn`] Where $0[$#usn8..01234567]) In [_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0|$`7esn` Is Not Null] In [.12 Ends With `1esn` Ends With $`1esn`,$usn2[False..`7esn`][`7esn`.._usn3],\"d_str\" Contains `3esn` Contains 00],[0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]),07 Contains #usn8 Contains $_usn3 Merge usn2=((({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1)-[``? *..01]->(`6esn` :_usn4:usn1{`6esn`:00 In 12.e12}))) On Match Set `6esn`(Distinct 0Xa[$``..][01234567..],12.0 In 1000 In _usn4).`2esn` =Extract(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0|$_usn4[`3esn`][0]) Is Null Is Null Remove (:``{`1esn`:`6esn` =~$_usn3})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`7esn` :`6esn`:`7esn`)-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6).@usn5?,({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(:``)<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]}).`5esn`?,(:`6esn`:`7esn`{_usn4:12[0X7..@usn6],_usn3:123456789 In $usn2 In `6esn`})<-[usn1]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}).`1esn` Union All Merge `2esn`=(:usn1{`8esn`:usn1 Contains $``})-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1})-[ *010{@usn5:Null Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] Unwind Extract(usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`) Contains [0 Contains 12e12,0xabc Ends With $7 Ends With $`2esn`,0x0 =~_usn4] As `7esn`;"), - octest:ct_string("Optional Match `6esn`=((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})),((@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})) Where 's_str' Ends With .e0 Union Delete `4esn` Is Null,$``[False..123.654] Merge ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[ *010{@usn5:Null Is Null Is Null}]-({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]}));"), - octest:ct_string("Detach Delete usn2(Distinct `7esn` Ends With $usn2 Ends With 999) =~Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0) =~Any(`4esn` In `6esn`['s_str'..][010..] Where 01 Ends With .e0),#usn7 Contains .0 Contains .e1,0.12[Count(*)..];"), - octest:ct_string("Unwind 0X0123456789ABCDEF Contains $usn1 As ``;"), - octest:ct_string("Remove {#usn8:123456789[$#usn7..],#usn7:07[12e12]}.usn2,(#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(_usn4 {`1esn`:010[@usn5..]})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(usn1 :_usn3{@usn6:True[..'s_str'][..01]}).`8esn`! With Distinct 0Xa Starts With 0.12 Starts With .0 As usn2 Order By [0Xa In .e1 In Count(*)][..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}][..Extract(`4esn` In `6esn`['s_str'..][010..] Where #usn8[$#usn8..])] Desc Limit Extract(_usn4 In usn1 Contains False Contains `` Where $`4esn` Starts With 1e1|Count(*)['s_str'..`1esn`]) =~Extract(`4esn` In $`8esn` Starts With 1000|`7esn`[Null..][@usn5..]) =~(:`4esn`:#usn8)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ) Union Return Distinct $`1esn` Starts With $999 As #usn8,Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)[{#usn8:`5esn` =~0Xa,@usn5:0X7[999][$1000]}..[`` Starts With 12,$`1esn` Starts With $999]][`7esn`(Distinct $usn2[..12.0])..`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])] Order By 9e1 Is Not Null Is Not Null Asc,$usn2[$123456789..123.654][$`5esn`..'s_str'] Desc Union Return {usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]} =~Single(usn2 In 1000 Contains 0.e0) =~Any(@usn6 In @usn5 In $`6esn` Where $`7esn` Is Not Null) As `3esn`,Filter(usn1 In 00 Starts With _usn3 Where $_usn4[`3esn`][0])[..Extract(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12|0x0 =~_usn4)][..{_usn4:.12 =~.12 =~1e1,#usn7:.e1 Starts With 0.0 Starts With `6esn`}] Order By @usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Ascending,$`3esn` =~Null Desc Skip Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789} Create #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))),_usn4=(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) With Distinct 's_str'[.12..$#usn7][$999..`2esn`] As `5esn` Limit $_usn3[..Count ( * )][..@usn5] Where @usn5 Ends With $`3esn` Ends With 12e12;"), - octest:ct_string("Unwind 0X0123456789ABCDEF[..usn1] As _usn3 Optional Match usn2=(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})));"), - octest:ct_string("Optional Match (`8esn` :@usn5)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->(`6esn` :_usn4:usn1{`6esn`:00 In 12.e12}),(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})) Where `4esn` In $12 In `8esn` Union All Merge `1esn`=((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})) Remove Single(_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`).`6esn`?,(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})._usn4!,@usn5:`4esn`:#usn8 Merge (({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})<-[_usn3?:`2esn`|usn2{`3esn`:0[0.12..]}]->(:``{`1esn`:`6esn` =~$_usn3})) Union All With usn2 Is Not Null Is Not Null As `2esn`,False[`6esn`][07],0Xa[0xabc..] As usn2 Order By 9e1[0.e0..][#usn8..] Asc Skip #usn7 Is Not Null Is Not Null;"), - octest:ct_string("Return [0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] As `5esn`,(#usn7 :#usn8)-[`6esn`:`4esn`|:`7esn` *..0x0]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})[Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])][Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])],#usn8 Is Not Null Is Not Null Limit None(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`) Contains `3esn`($usn2 Contains 12.e12 Contains 00) Union Return *,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7,@usn6 Starts With `7esn` Starts With Null Merge `1esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) On Create Set Extract(`4esn` In `6esn`['s_str'..][010..] Where 01 Ends With .e0|00[7..$123456789]).usn1? =usn2[`3esn`][_usn3],usn2+=[usn1[..@usn5][...e0]] In Extract(`6esn` In 0X7 =~`` Where $1000 Contains $`3esn`|12 Ends With 01234567) In {`3esn`:$`5esn` In `2esn` In .0,``:0e0 Is Null Is Null} On Create Set usn1+=`4esn` Ends With 123456789 Ends With @usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`! =\"d_str\" =~`3esn` =~0Xa,Any(_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0)._usn3 =`` =~12 =~$#usn7 With *,$usn2[..12.0],$`2esn`[``..] As `3esn` Skip _usn3[.0] Where 0.0[999..] Union All Unwind usn2 Is Not Null Is Not Null As `4esn`;"), - octest:ct_string("Remove True.`5esn`?,Filter(`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]).`7esn`,{`5esn`:#usn7 Is Not Null Is Not Null}.#usn8! Merge usn1=((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)) On Create Set Extract(#usn7 In 01234567[$`3esn`..] Where 0X7 In $999 In $``|9e1[...e0]).`7esn`! =0X7 In 's_str' In $`1esn`,{`3esn`:#usn7 Ends With `4esn` Ends With @usn5}.#usn8 =[usn1[..$_usn4][..``],0X7[.e12..01234567]] In `3esn`(@usn5[..True][..0X7],$`3esn` =~$`7esn` =~False) On Create Set `7esn`+=$7,Extract(#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7).`7esn`? =$999 =~False Optional Match `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}));"), - octest:ct_string("Detach Delete 0.0[.e12][7],usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null,#usn8[$_usn3..7][``..$`5esn`];"), - octest:ct_string("Detach Delete 12[`7esn`...0][0.12..``] Optional Match `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Where `7esn` In 999 In @usn6 Union All Detach Delete Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0},12 Ends With .e12 Ends With $7 Optional Match `6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Where 0.e0[@usn6][0x0] Match (((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))) Where $usn2 In 9e0 In $7;"), - octest:ct_string("Create _usn3=(($999)),``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`));"), - octest:ct_string("Remove [`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`]|#usn8 Ends With `4esn` Ends With $`4esn`]._usn4!,[12 =~usn1 =~.e12,7[12e12..$_usn4][9e1..True],_usn3 Ends With 12e12 Ends With .e0].`6esn`?,[@usn6 In @usn5 In $`6esn` Where 00[``..][$`4esn`..]|`2esn` Contains $999].#usn7 With [#usn8 In $`5esn` Is Null Is Null Where 0.0[..12e12][..$0]][{`2esn`:.e1 In $@usn6 In 999,usn2:@usn5 Ends With $`3esn` Ends With 12e12}..] As @usn5,usn2[`3esn`][_usn3] Order By None(usn2 In 1000 Contains 0.e0 Where $`6esn`[Count(*)..0.e0][0.0..Count ( * )])[(:usn2:@usn6{@usn6:$`4esn`[$`2esn`..]})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})][Any(@usn6 In @usn5 In $`6esn` Where 12.0[0Xa][00])] Descending Merge ((@usn6 :#usn7{@usn5:Null Is Null Is Null})) On Create Set `8esn` =Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`],`8esn`+=Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[usn2($#usn8 Is Null Is Null)..Extract(usn1 In 0x0[..`4esn`] Where 123456789 In $usn2 In `6esn`|@usn5[..True][..0X7])][(`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` )..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]] Union Return Distinct *,9e1 Starts With 9e1 Starts With 010 Delete Null[1.e1..],999[$`6esn`],None(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1])[`8esn`(00[``..][$`4esn`..],123.654[@usn5])] Union All Match `1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) Remove (@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`6esn`,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]).usn2!,(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn`]->(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`1esn`!;"), - octest:ct_string("Detach Delete $`3esn`[@usn5..$123456789] Unwind Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) In None(`6esn` In 0X7 =~`` Where 12.e12['s_str']) As `5esn` Remove _usn3(1.e1[0X0123456789ABCDEF..][$`5esn`..]).#usn8? Union All Optional Match `5esn`=(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}),`7esn`=(({#usn7:False[`2esn`..#usn8]})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})) With Distinct 0xabc[$@usn5] As usn2,(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] Order By $12[01..][1.e1..] Ascending,0x0 =~_usn4 Desc Match `1esn`=(((`` :@usn5)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn5:`8esn`|:usn1]-(#usn7 :`5esn`))),usn1=(_usn4 :`8esn`{`3esn`:False[.e1..Null],`3esn`:9e0 =~$`5esn`});"), - octest:ct_string("With Distinct [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending,9e12 Asc Skip 0X7[.e12..01234567] Limit $_usn4[0.12..$`6esn`][00..$@usn6] With `2esn` In 7 In usn2,$0 =~$usn1 =~9e1 As `5esn`,@usn5[_usn4..][.e0..] As usn1 Skip Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] Union All Merge `8esn`=((#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})<-[ *00..{`3esn`:12 Ends With 01234567,`4esn`:00[``..][$`4esn`..]}]->(`2esn` :``));"), - octest:ct_string("Unwind 0.12 Contains $`2esn` Contains $_usn4 As @usn6 Merge `2esn`=(:usn1{`8esn`:usn1 Contains $``})-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1})-[ *010{@usn5:Null Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] Union All Optional Match ((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})),(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union Return Distinct 999[``..][Null..] As `1esn` Skip usn2(Distinct _usn3 Contains @usn6 Contains 1.e1)[Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where _usn3 Is Null)..[12e12[0.e0][9e1]]][Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``])..Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)] Limit Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)[..(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})][..Any(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)];"), - octest:ct_string("Remove @usn5:_usn4:usn1,(:_usn4:usn1)-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]-(`1esn` :`1esn`).`1esn`!;"), - octest:ct_string("Create @usn6=(:#usn8)<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[_usn3?:@usn5|`8esn`{`3esn`:`4esn`[7..][1000..],usn2:123456789 Starts With `2esn` Starts With 9e12}]-(`7esn` {`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`}) Detach Delete $999[12.0..] Return Distinct *,$@usn6[..$usn1] As @usn6 Order By `3esn` =~0.0 =~$`` Ascending Skip (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]) Limit 0.e0[@usn6][0x0];"), - octest:ct_string("Create ((:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})<-[@usn6:`3esn`|:`4esn`*]->(`6esn` :`5esn`)),@usn6=((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})) Match #usn8=({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]}),(((`3esn` :`8esn`)-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(_usn3 :usn2:@usn6)-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}))) Where 9e0 Starts With `6esn` Union All Unwind `7esn`[$999][7] As `5esn` Merge `6esn`=(($12)<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1})-[?:`8esn`|:usn1{`6esn`:1e1[`6esn`..],`2esn`:7 =~9e0 =~'s_str'}]->({`3esn`:1e1 Is Null})) Union Remove {@usn5:7[..12e12][..$`6esn`]}.usn1,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]|9e0 Starts With `6esn`].#usn8?,9e12.usn1 Create ``=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),(`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[usn2?:usn1|`3esn`{`7esn`:0xabc Ends With $#usn7 Ends With #usn8,@usn5:$#usn8}]->(`3esn` :#usn8)<-[?:`1esn`{`1esn`:123456789[1000]}]->(:usn1{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null});"), - octest:ct_string("With `3esn`(Distinct 123456789 =~$123456789)[..(usn1 :`6esn`:`7esn`)-[`2esn`? *0..010]->(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]})][..(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})] As `8esn` Order By [@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Descending,$123456789 Contains 01 Contains 0.12 Ascending Limit 999 In 9e1 In 7 Remove [@usn5 In .12[#usn7][$`8esn`] Where $_usn4[12e12][`4esn`]]._usn4?,Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0)._usn3!,[#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`|$`8esn` =~$usn2].``! Union Remove Single(`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``).`4esn`?,`1esn`:`4esn`:#usn8 Delete ({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3}),$123456789[$``][010];"), - octest:ct_string("Detach Delete 0X0123456789ABCDEF Contains 12.e12 Contains 999,0X0123456789ABCDEF In $1000 In $`3esn`,'s_str' Is Not Null Is Not Null Return Distinct *,$usn1[#usn8..][``..] As `2esn`,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As @usn5 Order By $1000 Is Null Is Null Descending,1000 In 0X0123456789ABCDEF In 01 Asc Union All Unwind 1.e1 Is Not Null Is Not Null As @usn6 With Distinct 0x0[0X7..][usn1..] As _usn4 Order By `6esn` Starts With $usn2 Starts With 0.0 Ascending,0X7 In $@usn5 In 9e0 Descending Union All Unwind $`5esn`[False] As `6esn` Return *,$0[7..][Null..] As `7esn`,`3esn`()[Filter(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`)..{@usn6:`6esn`[_usn4..][$`6esn`..]}] Order By (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Asc,.e1[..$``][..0X0123456789ABCDEF] Ascending Skip 01[..$``][..$`7esn`] Merge `3esn`=(({`5esn`:0.12 Contains .e1})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0})-[:@usn5|`8esn` *123456789..999{usn1:9e12 Is Not Null Is Not Null}]-(#usn7 :`5esn`)) On Match Set @usn5+=`` In `6esn`,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`` Is Null Is Null).`` =12.e12 Is Not Null On Match Set `` =None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..],#usn7($`8esn`[$``..$7][$1000..$`7esn`],`2esn` In 7 In usn2).`6esn`? =$_usn4['s_str'..],`4esn`+=$`7esn` Ends With $usn2;"), - octest:ct_string("Create (((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]-({usn1:0x0[0X7..][usn1..]}))),(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(`7esn` :`8esn`{`4esn`:00 Ends With .12 Ends With `4esn`})-[ *07..]->(usn2 :@usn6:`7esn`) Remove [_usn3 Ends With 0x0 Ends With 01234567,9e0[$_usn3..0X7][7..$#usn8]].`6esn` Create @usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})) Union All Unwind All(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`)[[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]]..][({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})..] As _usn3 Union All Remove Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]|7[..`1esn`]).``,Extract(#usn8 In $`5esn` Is Null Is Null Where `3esn`[..7][..12e12]).@usn6,(:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[?:`1esn`]-(_usn4 :@usn6:`7esn`{@usn5:$_usn3[$`4esn`..Null]})._usn3!;"), - octest:ct_string("With Distinct *,Single(#usn7 In 01234567[$`3esn`..]) Is Null Limit 123456789 Starts With `2esn` Starts With .0 Where $#usn7 In 12.0 In 0X0123456789ABCDEF Union All Unwind 12e12 Starts With $123456789 Starts With 12.0 As usn1 Optional Match `3esn`=(({``:$1000 Is Null Is Null})) Where `1esn`[...e1];"), - octest:ct_string("Merge (`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) Merge `1esn`=((({`6esn`:$`8esn`[..$``]})-[`2esn`]-(@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12}))) On Match Set #usn7 =(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`) Is Not Null Is Not Null,`1esn` =`` =~12 =~$#usn7,[123456789[$#usn7..],_usn4[0xabc..],$`3esn` Starts With 01234567 Starts With $1000].`1esn`! =0X0123456789ABCDEF Starts With `2esn` Starts With $999 Match `8esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) Union Unwind {@usn6:0X0123456789ABCDEF[..usn1]}[..`7esn`($`3esn` =~$`6esn` =~`8esn`)][..(`4esn` {`6esn`:$12[..``][..$7]})<-[#usn7]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})] As `` Unwind $`6esn` =~1e1 As @usn6 Unwind All(usn1 In 0x0[..`4esn`] Where 07 In $7 In 12) =~Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 999[$`6esn`]|$`8esn` In \"d_str\" In 9e12) As #usn7 Union All Create _usn4=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),(((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})-[?*..{`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}]-(`` :`3esn`:`1esn`{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-({usn1:010[@usn5..],`7esn`:`2esn` Is Not Null Is Not Null}))) Match (`5esn` {_usn4:0X7 =~``}),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null}));"), - octest:ct_string("Remove None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12).#usn8 Union All Optional Match `5esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``),`4esn`=(:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8) Where 07[12][$`6esn`] Unwind ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]}) =~`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0) As `3esn`;"), - octest:ct_string("Return usn2 =~0x0 As `8esn`,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn`,_usn3[`3esn`][False] Skip {@usn5:$@usn6[..$usn1],`1esn`:usn2[`3esn`][_usn3]}[..Any(`4esn` In 's_str'[12..'s_str'] Where Null Contains _usn4)][..{`7esn`:True[..'s_str'][..01]}] Limit [$12 Is Null Is Null,999 Contains Count ( * ) Contains 123.654][Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`)..Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0)][[Null Contains _usn4,$`7esn` Is Null Is Null]..({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3})] Union All With Distinct *,0.12 In $`4esn` In `6esn`,`4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}] As `2esn` Skip 0X7[..12e12] With Distinct *,{`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] Order By 9e1 Starts With _usn3 Starts With `4esn` Descending,usn2(Distinct _usn3 Contains @usn6 Contains 1.e1)[Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where _usn3 Is Null)..[12e12[0.e0][9e1]]][Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``])..Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)] Descending Limit 0 Starts With 12e12 Starts With `4esn` Unwind 12.e12 In $1000 As `6esn`;"), - octest:ct_string("Remove usn2:_usn4:usn1,None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.e0[9e1..][0.0..]).#usn7 Remove Extract(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`).`6esn`?,Extract(@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null|@usn5 Starts With 12e12 Starts With @usn5).`2esn`?,[Count ( * )[Count ( * )..12e12][usn1..1000],12e12[$`5esn`][07],$_usn3[9e1][$_usn4]]._usn4 Union Return Distinct *,`7esn`[Null..][@usn5..],0X0123456789ABCDEF Contains $usn1 Skip Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] Limit False Ends With $`8esn` Merge (:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa})-[:usn1|`3esn`]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]}) Return *,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn`,@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn` Skip {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]};"), - octest:ct_string("Create ``=((`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(usn1 :_usn3));"), - octest:ct_string("Detach Delete All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],`1esn` Contains Count ( * ) Optional Match `3esn`=(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)})-[usn2{`6esn`:$@usn6[_usn3..0.e0]}]->({usn1:`4esn` In $12 In `8esn`})<-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`6esn` {`8esn`:`8esn` In $@usn5}) Where 0x0[...e12][..@usn5] Union Unwind 123456789 Starts With `2esn` Starts With .0 As `3esn` Union All Create @usn6=(:#usn8)<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[_usn3?:@usn5|`8esn`{`3esn`:`4esn`[7..][1000..],usn2:123456789 Starts With `2esn` Starts With 9e12}]-(`7esn` {`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`}),`2esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) Optional Match #usn8=({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]}),(((`3esn` :`8esn`)-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(_usn3 :usn2:@usn6)-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}))) Where 7[..12e12][..$`6esn`] Create ((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]}));"), - octest:ct_string("Delete False[`2esn`..#usn8],#usn8 Contains .e0 Contains $`8esn`,Null Starts With _usn4 Starts With `6esn` Remove Single(_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0).#usn8?,[`2esn` Is Not Null Is Not Null].`7esn`;"), - octest:ct_string("Match ``=(((:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(:`7esn`{@usn6:0.0[999..],#usn8:Null Is Null Is Null})-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]}))) Union All Merge _usn4=(:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]}) On Match Set All(`6esn` In 0X7 =~`` Where `7esn`[...e1][..\"d_str\"]).`5esn` =None(usn2 In 1000 Contains 0.e0 Where $usn1[..$`6esn`][..Null]) Starts With Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]|$`1esn` Starts With $999) On Match Set ``:`2esn`:`3esn`,@usn6 =None(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1])[`8esn`(00[``..][$`4esn`..],123.654[@usn5])],usn2 =$`3esn`[`2esn`...e0] Return usn2 =~0x0 As `8esn`,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn`,_usn3[`3esn`][False] Skip {@usn5:$@usn6[..$usn1],`1esn`:usn2[`3esn`][_usn3]}[..Any(`4esn` In 's_str'[12..'s_str'] Where Null Contains _usn4)][..{`7esn`:True[..'s_str'][..01]}] Limit [$12 Is Null Is Null,999 Contains Count ( * ) Contains 123.654][Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`)..Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0)][[Null Contains _usn4,$`7esn` Is Null Is Null]..({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3})] Create ((:`6esn`:`7esn`{_usn4:12[0X7..@usn6],_usn3:123456789 In $usn2 In `6esn`})<-[#usn7?:_usn3|:`4esn` *00..]->(:`6esn`:`7esn`{_usn3:\"d_str\" Is Null Is Null})<-[@usn6]->(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})),((#usn7 {#usn7:01234567[.12..7][1000..1.e1],``:@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]}));"), - octest:ct_string("Detach Delete [$`8esn` =~$usn2][Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..],\"d_str\" =~`3esn` =~0x0,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)];"), - octest:ct_string("Return {_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] As `1esn` Skip Extract(`4esn` In `6esn`[1e1..] Where 123456789 =~_usn4 =~$0) Contains (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6) Contains ({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[`7esn`?:#usn8]->(@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0}) Return Distinct {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null As #usn8,010[$`8esn`..][0..] Order By .e12[.12..][_usn4..] Ascending,Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] Asc Skip {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']}[(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)] Limit 9e12[usn2..7][.e1..$`7esn`] Remove `1esn`(Distinct `2esn`[$`1esn`..][$_usn3..])._usn4!,Null.`6esn`?,`3esn`(Distinct 01234567 Ends With 0x0).``! Union All Unwind usn2[`3esn`][_usn3] As @usn5;"), - octest:ct_string("Match ((:`3esn`:`1esn`{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->()),(((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))) Where 0xabc[$@usn5] Remove #usn7(Distinct $@usn6[..$usn1],9e12 Is Not Null Is Not Null).usn1 Union All Create ((:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}));"), - octest:ct_string("Unwind $`` Is Null Is Null As #usn8 Union Detach Delete Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`)[Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01)..][{`1esn`:@usn6[`5esn`..$`3esn`],_usn3:$999 Ends With $`3esn` Ends With `8esn`}..],All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..] Match (`6esn` :`5esn`)<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6),_usn3=(($999)) Where 0X7 =~`` Return 0X7 In $@usn5 In 9e0,$`1esn`[9e1.._usn4][$999..$`2esn`] Skip $`5esn` In `2esn` In .0 Limit .0 Is Null Is Null Union All With Distinct *,`7esn` In 999 In @usn6,00 Is Null Is Null Order By None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`)[`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)..] Desc,$`3esn` In $12 In 's_str' Asc Skip $123456789 Is Null Is Null Limit .e0 =~`5esn`;"), - octest:ct_string("With Distinct @usn6 Starts With `7esn` Starts With Null,$usn1[#usn8..][``..] As `2esn`,`3esn`[$`1esn`..] As usn2 Order By _usn3[0] Asc,``[$`3esn`][$`2esn`] Ascending,{@usn5:0.e0[@usn6][0x0]} Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7) Ascending Skip (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) Is Not Null Is Not Null Limit [@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Where `1esn` Contains Count ( * ) Return Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As `5esn` Return Distinct *,.e1 Starts With $`8esn` Skip 0xabc[12.e12..`1esn`] Limit 0.e0[@usn6][0x0];"), - octest:ct_string("Match _usn3=((@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]})) Union Optional Match `1esn`=((usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) Where _usn4 Starts With 0X7 Union Create #usn7=(`3esn` :`8esn`{usn1:`2esn`[$`3esn`..],`6esn`:$12[..``][..$7]})-[@usn5?:``|:_usn4]-(`8esn` :#usn8)<-[?:``|:_usn4]-({`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12});"), - octest:ct_string("With [$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] Order By .e12 =~0.0 =~9e0 Desc,010 =~$usn2 =~1e1 Desc,#usn8(0X7 In 's_str' In $`1esn`,$0 Is Not Null)[usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])] Descending Where .0 Is Null Is Null Detach Delete 0xabc Contains Null Contains 9e12,.12 Starts With 0Xa,`6esn` In 1000 In 01234567 Union Remove None(usn1 In 00 Starts With _usn3).@usn6?,#usn7:_usn3 With 07[07] Skip $`4esn` Contains 0Xa Limit 00[.e0..9e1] Create ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) Union All Create `7esn`=(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}),(((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Unwind 00[.e1..] As `6esn`;"), - octest:ct_string("Unwind 7 In @usn5 In $`4esn` As `5esn` Union With Distinct *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `2esn` Union All Return All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null,0xabc[$@usn5] As `7esn`,.e0[usn2..] As _usn3 Skip 0x0 In `8esn` In 999;"), - octest:ct_string("Optional Match `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Return Distinct *,0.0 Is Null Is Null As `8esn` Order By $1000 Is Null Is Null Descending,1000 In 0X0123456789ABCDEF In 01 Asc With Distinct *,7 Is Null Order By $12[01..][1.e1..] Ascending,0x0 =~_usn4 Desc Limit 12[`7esn`...0][0.12..``] Where $123456789 Ends With .e0 Union Merge (:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}) Merge (`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) On Create Set [$`6esn` Is Null Is Null,Count ( * )[@usn6..0x0],0.0[1000..][.e1..]]._usn3! =.0 Starts With `2esn` Starts With `6esn`,({``:\"d_str\",`1esn`:$1000 =~$`7esn`})-[usn1?:_usn3|:`4esn` *123456789..999{`6esn`:01 Ends With .e0,`4esn`:$`7esn` Is Not Null}]->(_usn3 ).`4esn` =usn2 Is Not Null On Match Set `5esn` =$123456789 =~$`5esn` =~07,`4esn`+=010 Starts With `7esn` Starts With 9e1,@usn5:`6esn`:`7esn`;"), - octest:ct_string("Merge `5esn`=(({`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})-[#usn8?]-(:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})) Union Remove None(#usn7 In 01234567[$`3esn`..] Where 0X7 In $999 In $``).usn1?;"), - octest:ct_string("Merge `6esn`=((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})) Create ({`2esn`:123456789 Starts With `2esn` Starts With .0,@usn6:$123456789[$`2esn`][True]}) With $`2esn`[``..] As `3esn`,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As `3esn`,`7esn`[...e1][..\"d_str\"] Order By [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]) Asc Limit $#usn8 Is Null Where $123456789 In Count(*) In .e1 Union All Merge #usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) On Create Set `4esn` =.12 Is Not Null Is Not Null,{@usn6:True[..'s_str'][..01]}.`2esn` =12.e12[...0][..0x0],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Remove [_usn4 Starts With $@usn6 Starts With #usn7].`4esn`,usn2(Distinct usn2[`3esn`][_usn3]).@usn5? Union All Return *,Count ( * ) In 010 As `1esn` Limit $@usn5 =~07 =~True Merge _usn3=(@usn5 {@usn6:$123456789[0X7..12.e12]}) On Match Set @usn5 =12.e12['s_str'],@usn6 =$usn2[False..`7esn`][`7esn`.._usn3],({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})<-[usn2?:`4esn`|:`7esn` *0X0123456789ABCDEF..]-({usn1:$1000 Contains $`3esn`})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0}).@usn5? =07[07] Return Distinct *,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]});"), - octest:ct_string("Optional Match (_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[`7esn`?:`4esn`|:`7esn` *..0X7]-(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}),usn1=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})) Where _usn3 =~00 Optional Match (((`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})<-[?:`7esn`|`2esn`]-(:`6esn`:`7esn`{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}))) Where 12.0[``] Delete Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null)[..[.e0 Contains #usn7 Contains $#usn8]] Union Merge usn1=(`3esn` :``) On Match Set All(`6esn` In 0X7 =~`` Where 0X7[..12e12])._usn4 =Null Starts With $`7esn` Starts With `2esn`,`5esn`+=999 Contains Count ( * ) Contains 123.654,usn1+=usn1[$`3esn`..$999][True..False] Unwind `5esn`[`1esn`..`1esn`] As _usn4;"), - octest:ct_string("Match ({`5esn`:123456789 Starts With `2esn` Starts With .0})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})<-[`` *12..0xabc]->(`3esn` :_usn4:usn1) Return $`4esn` Contains 0Xa,010 In `7esn` Order By 0x0 In `8esn` In 999 Descending Detach Delete 0X0123456789ABCDEF Contains 12.e12 Contains 999,0X0123456789ABCDEF In $1000 In $`3esn`,'s_str' Is Not Null Is Not Null Union Remove All(`4esn` In 's_str'[12..'s_str'] Where $`8esn`[..$``]).`7esn`!,usn2(07[$999]).`4esn` Remove [_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4].@usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`!,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`)._usn4 Create #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`);"), - octest:ct_string("Return $0 Contains `7esn` Contains $`8esn`,usn1 Contains \"d_str\" Contains 9e12 As _usn4,0Xa[0xabc..] As usn2 Skip \"d_str\" Limit $`7esn` Ends With $`2esn` Ends With $usn1 Delete 0.0 =~0X7 =~#usn7,12e12[True..][07..],Extract(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null) Ends With `2esn`(`7esn`[Null..][@usn5..],123.654[12.e12..1e1]) Ends With Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]) Union All Unwind usn2 Is Not Null Is Not Null As `4esn` Union All Create (usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null});"), - octest:ct_string("Optional Match ((`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(usn1 :_usn3)) Union Return None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..] Remove Extract(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`).usn1!,_usn4(Distinct `7esn` Starts With $usn2 Starts With .e0).`5esn`,``:#usn7;"), - octest:ct_string("Remove Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0).`2esn`?,(`4esn` {@usn5:1e1 In $#usn8 In 12e12})-[_usn4?:`5esn`|`1esn`]-(@usn5 {``:12[usn1][True],``:$`5esn` In `2esn` In $12}).`7esn`!,[999[.e12][01]].`2esn`! Match `5esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``);"), - octest:ct_string("Merge (:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) With `6esn`['s_str'..][010..],$`4esn` Contains 0Xa Where 0X0123456789ABCDEF In $1000 In $`3esn` Detach Delete Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1),$@usn5 =~07 =~True Union All Remove {`4esn`:.12 Starts With 0Xa}.usn1!,[`6esn` In 0X7 =~`` Where 123456789 =~_usn4 =~$0|$#usn8 Ends With 1000 Ends With .0].`7esn`? Remove (:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[?:`1esn`]-(_usn4 :@usn6:`7esn`{@usn5:$_usn3[$`4esn`..Null]})._usn3!;"), - octest:ct_string("Remove Any(#usn7 In 01234567[$`3esn`..] Where 0Xa[0xabc..$#usn8])._usn4! Remove (usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})._usn4?,usn1:`3esn`:`1esn`,{`2esn`:9e1 In 01 In 999,`5esn`:$@usn6[..$usn1]}.@usn5! Union Detach Delete $usn1[0.12..]['s_str'..],usn2 Starts With `6esn` Starts With 12e12,True[Count(*)..][1e1..];"), - octest:ct_string("Remove ({@usn6:0X0123456789ABCDEF[..usn1]})<-[`4esn`:#usn8]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(#usn8 :`7esn`).`6esn`? Match `3esn`=(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}),usn2=((#usn8 :`4esn`:#usn8)-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)) Unwind 123.654[`5esn`] As @usn5 Union All Merge `6esn`=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) On Match Set `8esn` =All(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..]) Is Null Is Null,Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)._usn3? =\"d_str\"[Count ( * )] Remove [.12 Starts With .12 Starts With `3esn`,Count ( * )[Count ( * )..12e12][usn1..1000],False In `3esn`].#usn7,{usn1:$1000 Contains $`3esn`}.#usn8!,None(`4esn` In $`8esn` Starts With 1000 Where True Starts With $`8esn` Starts With \"d_str\").`4esn`! Union All Match ((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})),((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})) Where @usn6 Contains .e1 Contains $`4esn`;"), - octest:ct_string("Delete 0e0[12][$_usn4];"), - octest:ct_string("Merge ({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[ *..0x0]->(#usn8 {usn2:7 Contains 9e1}) On Match Set usn1+=`4esn` Is Null Union All Return Distinct _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0),$`7esn` In 0.e0 In `4esn` As `2esn` Limit Any(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) Is Not Null Is Not Null Create `2esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}),`3esn`=(`4esn` {usn2:7 In 0xabc})<-[$#usn8]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}) With *,`7esn`[...e1][..\"d_str\"],12e12[0.e0..True][0.12..0.0] As #usn7 Order By 0xabc[12.e12..`1esn`] Ascending,12.e12 In $1000 Ascending,[`6esn` In 0X7 =~`` Where 0.12[Null..]] Is Null Is Null Ascending Limit Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1)[00..] Where 0.e0[..#usn8][..Null] Union Optional Match `5esn`=(({`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})-[#usn8?]-(:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1}));"), - octest:ct_string("Unwind `3esn`(Distinct _usn4 Ends With 01 Ends With $`1esn`) Starts With [Count(*) In 01 In .0,`` Starts With 12,$_usn4[$`8esn`..][07..]] Starts With Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12 In $0 In Count(*)) As _usn3 Create `2esn`=(_usn4 {`8esn`:9e1 In 01 In 999})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})));"), - octest:ct_string("Unwind #usn8[$#usn8..] As #usn8 Merge (((`1esn` :`8esn`)-[_usn4:`7esn`|`2esn`]-(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3}))) Create ((_usn4 {`8esn`:9e1 In 01 In 999})) Union All Merge ((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) On Match Set [`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|`` Contains 12 Contains True].`2esn`? =$@usn6[..$#usn7][..12.e12],None(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12).`8esn`! =12[..9e0][..999] With [$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}),[@usn5 In $#usn8 Is Null Is Null Where 7 In 0xabc][[Null[01234567][01234567],07[1e1],Count(*)[12.e12..]]..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)] Skip `1esn`[@usn6..$123456789] With *,{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)] Order By .e1 Starts With $`8esn` Asc Limit $#usn7 In .e1 In 01;"), - octest:ct_string("Optional Match usn2=((`1esn` :usn2:@usn6)-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})) With Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1),9e1[010..] As `6esn` Order By [`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) Desc,`1esn`[`3esn`..][$@usn6..] Desc,123456789[1000] Desc Where 0X7 In 's_str' In $`1esn` Return Distinct $`1esn` Starts With $999 As #usn8,Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)[{#usn8:`5esn` =~0Xa,@usn5:0X7[999][$1000]}..[`` Starts With 12,$`1esn` Starts With $999]][`7esn`(Distinct $usn2[..12.0])..`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])] Order By 9e1 Is Not Null Is Not Null Asc,$usn2[$123456789..123.654][$`5esn`..'s_str'] Desc Union Match `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Remove All(#usn8 In $`5esn` Is Null Is Null Where 01234567 Ends With 12.0 Ends With 0X7).`8esn`! Optional Match `8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`}) Where 123456789 Starts With `2esn` Starts With .0 Union All With [$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] Order By .e12 =~0.0 =~9e0 Desc,010 =~$usn2 =~1e1 Desc,#usn8(0X7 In 's_str' In $`1esn`,$0 Is Not Null)[usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])] Descending Where .0 Is Null Is Null Detach Delete 0xabc Contains Null Contains 9e12,.12 Starts With 0Xa,`6esn` In 1000 In 01234567;"), - octest:ct_string("Remove (_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`).usn2,[`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]|12 Is Null Is Null].#usn8? Union All Create (:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa}),(`3esn` :usn2:@usn6)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]})-[_usn3]-(`` {`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}) Delete True In 0x0,0X7[12] Union Create `4esn`=(:`5esn`{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(_usn4 ),(:#usn7) With Distinct {#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Order By usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Ascending,`` Asc,$999 In $`8esn` In `5esn` Descending Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit `4esn` Is Null Create (:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa}),(`3esn` :usn2:@usn6)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]})-[_usn3]-(`` {`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'});"), - octest:ct_string("Return Distinct $#usn8[1e1][9e1] As @usn5,$`3esn`[`2esn`...e0] As _usn3,.e1 Starts With $`8esn` Skip 0x0 =~$`7esn` =~@usn6 Limit [$_usn3[$`4esn`..Null],0x0 Contains $`8esn` Contains `6esn`,\"d_str\" =~`6esn` =~0Xa] Contains [@usn6 Starts With `7esn` Starts With Null] Contains `6esn`(Distinct $`4esn`[usn1..$#usn8][12.0..`3esn`],12.e12['s_str']) Union Create `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Optional Match ((:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})),_usn4=(({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})<-[#usn7]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn4:usn1)) Where _usn4 Ends With 01 Ends With $`1esn`;"), - octest:ct_string("With Distinct `8esn`(Distinct False Contains `3esn`,9e12 =~01 =~$`7esn`)[[@usn6[`5esn`..$`3esn`],0e0 Is Not Null Is Not Null]..],True[0] As @usn6 Skip .12 Ends With $`4esn` Ends With Count(*) Where $`4esn`[12.0..`5esn`] Delete $`6esn`[$@usn6..],Count ( * ) Contains 999 Contains $`8esn`,usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Merge `3esn`=(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Union Match `5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Where $`2esn` Contains usn1 Contains `2esn` Unwind 12e12[0.e0][9e1] As usn2 Union Delete (usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Is Null Is Null,[@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})];"), - octest:ct_string("Optional Match ((_usn3 :_usn4:usn1)<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})),(:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa})-[:usn1|`3esn`]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]}) Where 123456789 =~$123456789 Create usn1=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[`7esn`?]-(@usn6 :_usn3{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]})),#usn7=(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[@usn5?:_usn3|:`4esn` *..0x0]->(#usn8 {usn2:7 Contains 9e1}) Detach Delete 0Xa Starts With $`4esn` Starts With 1e1 Union Delete `7esn`($123456789 In Count(*) In .e1) Ends With Extract(@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|Count ( * )) Ends With Any(usn1 In 0x0[..`4esn`] Where False[.e1..Null]),`7esn`(0.0[1000..][.e1..],$@usn5 Contains 01)[Any(usn1 In 0x0[..`4esn`] Where 0X7[.e12..01234567])][[$@usn6 Contains 07 Contains 0.e0,`5esn` In 12]],$usn1[0.12..]['s_str'..] Unwind 999 Contains `7esn` As `7esn` Merge @usn5=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) On Create Set usn1+=$@usn6 In $`5esn` In $usn2 Union All Create `5esn`=((#usn8 :`4esn`:#usn8)<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})),usn2=((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn2 *0X0123456789ABCDEF..{usn2:`` Starts With 12}]-(`4esn` {`7esn`:.e0[..999][..0X7]})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})) Remove {`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}.#usn8?,[0X7[..12e12],$`6esn`[$`1esn`][1000]].usn2?;"), - octest:ct_string("Remove {`8esn`:Count ( * ) =~Count(*)}.`6esn`,({@usn6:0X0123456789ABCDEF[..usn1]})<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)._usn4?,(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`4esn` Union All Detach Delete .e1 Starts With $`8esn`,`6esn` Is Not Null;"), - octest:ct_string("With 0.12 In $7 In 0,#usn8 In $0 As `3esn` Order By None(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`) Contains `3esn`($usn2 Contains 12.e12 Contains 00) Ascending Unwind Count(*) Is Not Null Is Not Null As _usn4;"), - octest:ct_string("Unwind $999 =~False As usn1 Merge `5esn`=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))) On Match Set _usn3+=07 In Count ( * ) In \"d_str\" Unwind $`` Is Null Is Null As #usn8 Union All Merge ((`1esn` :usn2:@usn6)-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})) On Match Set [$usn1 In 1000 In $#usn7,$#usn7 In 12.0 In 0X0123456789ABCDEF,9e0 Is Not Null]._usn3 =All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`! =0xabc Starts With _usn3 Create _usn4=(@usn6 {#usn7:False[`2esn`..#usn8]})<-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]-(`4esn` {@usn6:True[..'s_str'][..01]}) Match ({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})-[#usn7:`1esn` *07..]->(:`7esn`{``:$`1esn` Starts With @usn6})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) Where 9e12 =~01 =~$`7esn`;"), - octest:ct_string("Optional Match `1esn`=(((`` :@usn5)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn5:`8esn`|:usn1]-(#usn7 :`5esn`))),usn1=(_usn4 :`8esn`{`3esn`:False[.e1..Null],`3esn`:9e0 =~$`5esn`}) Union With Distinct `` Is Not Null Is Not Null As @usn6,True[Count(*)..][1e1..] Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `7esn` Starts With $usn2 Starts With .e0).`6esn`! Match `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Where 's_str'[12..'s_str'] Union Merge ((@usn6 :#usn7{@usn5:Null Is Null Is Null})) On Create Set `8esn` =Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`],`8esn`+=Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[usn2($#usn8 Is Null Is Null)..Extract(usn1 In 0x0[..`4esn`] Where 123456789 In $usn2 In `6esn`|@usn5[..True][..0X7])][(`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` )..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]] Return Distinct *,9e12[_usn3] As `8esn`,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn` Order By `6esn` Starts With $`5esn` Desc,$`7esn` Ends With 07 Ends With 07 Desc;"), - octest:ct_string("Merge `3esn`=(usn1 :`7esn`)<-[? *00..{`6esn`:$@usn6[_usn3..0.e0]}]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}) On Create Set `1esn` =0X0123456789ABCDEF[.e0..$`4esn`] On Match Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] Return *,{`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])] As `3esn` Limit All(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..]) Is Null Is Null Union All With Distinct *,07[0..`4esn`],Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) Limit Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Where @usn5[..True][..0X7];"), - octest:ct_string("Create `4esn`=((#usn8 {usn2:7 Contains 9e1})-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]->(:_usn3{@usn6:$`7esn` Is Null Is Null}));"), - octest:ct_string("Unwind .12 =~.12 =~1e1 As `8esn` Union All Create `5esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Detach Delete $usn2 =~$_usn4 =~`5esn` Detach Delete Extract(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null) =~Any(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null) =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1],$7 Contains 0x0 Contains ``,[\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Union All Return $`2esn`[``..] As `3esn`,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As `3esn`,`7esn`[...e1][..\"d_str\"] Unwind _usn4 Starts With 0X7 As `4esn` Merge `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) On Create Set `5esn` =999[.e12][01],Extract(usn1 In 0x0[..`4esn`] Where @usn6[$`3esn`]).#usn8? =`1esn` In 999 In $#usn7,usn1 =12.e12[0e0..7] On Match Set `1esn`+=Null[0e0][12],Filter(usn1 In 0x0[..`4esn`] Where $`` Ends With 12e12).usn1! =Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)];"), - octest:ct_string("Create ``=(`4esn` :`8esn`{_usn4:0 Is Null Is Null}),(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})-[`5esn`?:`2esn`|usn2 *999..]->(@usn6 :``{@usn5:@usn5 Starts With 12e12 Starts With @usn5})-[_usn4?:`5esn`|`1esn`]-(`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12}) With Distinct [@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7|$999 Ends With $`3esn` Ends With `8esn`] Starts With [$`6esn` Is Null Is Null,0Xa Is Not Null Is Not Null,0X7 In 123.654 In $`2esn`] Starts With [01234567[Null..0.e0][Count(*)..$#usn8]] As ``,Count ( * )[@usn6..0x0] Limit $`8esn`[..$usn1][..'s_str'] Union All Create (:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}) Merge `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) On Match Set usn2+=$`4esn`[9e1..][0..],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null},(usn1 :#usn7)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->(`4esn` {`7esn`:.e0[..999][..0X7]}).usn2 =$`3esn`[`2esn`...e0] Unwind [@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] As `3esn` Union All Create (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}))),`4esn`=((`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})) Return $`6esn` =~$#usn8 As #usn8 Order By (#usn7 :#usn8)-[`6esn`:`4esn`|:`7esn` *..0x0]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})[Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])][Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])] Descending Limit Null Contains 9e1;"), - octest:ct_string("Create #usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})),`5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Remove Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]|`3esn` Contains 0Xa).usn1?,[12.0[0Xa][00],0 Is Not Null].@usn5?,{`1esn`:@usn6[`5esn`..$`3esn`]}.usn1? Match usn2=((`5esn` :usn2:@usn6{`5esn`:0Xa In .e1 In Count(*)})) Union All Return *,[\"d_str\" Starts With $usn1,.12 Contains $`4esn` Contains $`6esn`,01234567 =~usn1] Is Null Is Null As `7esn`,$123456789 Contains usn2 As `8esn` Limit 1000 Ends With 1000 Ends With $`4esn` Remove Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $@usn6 Is Null Is Null).`4esn`,All(@usn5 In $#usn8 Is Null Is Null).usn1! Union With *,$0[..`8esn`] As _usn4 Order By $`6esn` Is Not Null Is Not Null Desc Skip 0x0 Contains $`8esn` Contains `6esn` Limit 1e1[@usn5..] Where 1000 Contains 0.e0 Merge (#usn7 :@usn5)-[`4esn`:_usn3|:`4esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:usn1{`8esn`:usn1 Contains $``}) On Match Set ``+=`6esn`[0X7..][0x0..],#usn8 =1.e1 =~$_usn4,{`8esn`:1000 Contains 0.e0,usn1:`6esn`[1e1..]}.`4esn`? =$#usn8[1e1][9e1] On Match Set `1esn`+=`` Is Not Null,{@usn6:9e0 Ends With $`7esn`}.`2esn`? =Count ( * ) =~All(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7) Create (`1esn` :`1esn`);"), - octest:ct_string("Remove (@usn5 :`3esn`:`1esn`{_usn3:#usn7 Starts With `1esn`})<-[@usn5?:``|:_usn4]-(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})-[usn2 *0X0123456789ABCDEF..{usn2:`` Starts With 12}]-(`4esn` {`7esn`:.e0[..999][..0X7]})._usn4,[@usn5 In $#usn8 Is Null Is Null Where $#usn8 Is Null|123.654[@usn5]].`6esn`! Unwind [`4esn` In $`8esn` Starts With 1000 Where `5esn` In 12][..Single(`6esn` In 0X7 =~`` Where .0 Starts With `2esn` Starts With `6esn`)][..[@usn5 In $#usn8 Is Null Is Null]] As `1esn` With 's_str'[12..'s_str'] Limit #usn7 Starts With 0x0 Starts With Null Where 1e1[`6esn`..] Union All Remove None(`4esn` In `6esn`[1e1..] Where 12.0[``]).@usn5?;"), - octest:ct_string("Unwind 1e1[.e1..] As #usn7 Unwind `3esn`(`7esn` Starts With $usn2 Starts With .e0,$_usn3 =~`7esn` =~$_usn4)[[$`2esn`[123456789..][00..],Count ( * )[@usn6..0x0]]..][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0)..] As usn1 Merge ((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[? *0..010]-(#usn8 :`4esn`:#usn8)) On Create Set `4esn` =.e12[.12..][_usn4..] On Match Set {`2esn`:12 =~usn1 =~.e12}.usn2 =False Is Not Null Is Not Null,`3esn` =010 In @usn5 In `5esn`,[usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null].@usn5! =$1000 Ends With 1e1 Ends With 123.654 Union Delete 12e12[.12..],`1esn` In 999 In $#usn7 Create (((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})-[_usn4?:`5esn`|`1esn`]-(@usn5 {``:12[usn1][True],``:$`5esn` In `2esn` In $12})<-[`` *0xabc]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}))),`6esn`=(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Remove [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0].`3esn`,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``!;"). + octest:ct_string("Create (:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]}),(((#usn8 :_usn4{@usn5:$0[0Xa..$123456789]})<-[ *..010{#usn7:``[$`3esn`]}]-(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]})<-[ *00..0Xa]->(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})));"), + octest:ct_string("With .e12 Starts With $7 Starts With .0 As _usn4,[010[`5esn`],usn1[$@usn5]] Starts With All(#usn7 In 9e0[$1000] Where .e1 In 123456789) Starts With (`4esn` :usn2{@usn5:True Contains .e12})<-[:`2esn`|`4esn` *1000..0X0123456789ABCDEF]-(usn2 :``:usn2) As _usn3,.e0 As _usn3 Order By @usn5(Distinct) =~[_usn3[`5esn`..][usn2..],$#usn7 =~`2esn`] =~1.e1 Ascending Skip `2esn`[$@usn6..][Null..] Merge ((:`8esn`{@usn5:usn2 Ends With .e1 Ends With $`5esn`})-[usn2?:`3esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})) On Create Set [#usn7 In 9e1[$`1esn`..] Where 00 Ends With $`1esn` Ends With `7esn`].`2esn` =All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null),``:@usn5,@usn5+=12.e12[_usn4..$1000][$7..$999] Union With [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`) Union Delete 0e0 =~0Xa =~$999 Unwind 9e0 =~Count(*) =~$0 As _usn3"), + octest:ct_string("Remove Extract(`6esn` In $`6esn`[``..][Count(*)..] Where 9e0[Count(*)..0.12][$`1esn`..12.0]|07 In `6esn`).usn1,(@usn5 :`4esn`:`6esn`)-[@usn6*..{`1esn`:$`2esn` Contains Count(*)}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}).`8esn`,{`1esn`:0xabc =~$@usn5}.#usn8 Union All Match `5esn`=(`3esn` :_usn4) Remove [$123456789 Starts With 0.12 Starts With Null].`4esn`!,(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`}).#usn8"), + octest:ct_string("Unwind `7esn` Is Null As @usn5 Return Distinct $#usn7 =~`2esn` As #usn7,usn1 Ends With 9e0 Ends With 9e0 As @usn5,{`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`}[Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..])] Skip Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])] Merge ((:`3esn`{@usn5:$`5esn` In _usn3 In 0.0})-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]->(:@usn5{#usn7:12e12 In $`5esn`})-[@usn5 *0X7..]->(`` $`6esn`)) On Match Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] Union With 123.654[$0..0X7][Null..#usn8] As `3esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc,Count ( * )[$`5esn`..][$7..] Desc Skip Extract(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999)[..Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1])] Limit None(#usn7 In 9e0[$1000] Where $_usn3 Is Null)[[0 =~1e1,$#usn8[12.e12..`8esn`][12.0..0.0],$1000 Is Not Null]..] Merge (`6esn` :@usn6)-[usn2?:`3esn`]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) On Create Set #usn8 =$_usn4[$`6esn`..] Merge ((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) On Create Set #usn8 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``|.12 In `8esn` In $#usn8]._usn4? =7 =~0.12,`6esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null,Any(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]).`3esn`! =(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null Union All Detach Delete 0[$`5esn`];"), + octest:ct_string("Delete 0.0 Is Not Null,#usn8 Is Null Optional Match #usn8=(`5esn` :`7esn`)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1)<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}),usn2=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) Where 12.e12[0..0.12][123.654..9e12] Unwind .0[$``..0X7] As usn1"), + octest:ct_string("Create #usn8=((usn1 :@usn6)),`7esn`=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}) Detach Delete usn2 In _usn3,True In (#usn8 :`6esn`:_usn3)<-[`2esn`?:_usn4{#usn8:$12[9e0..$999]}]->({``:.e1 Starts With 12.e12 Starts With `2esn`}),`1esn` Starts With 0X7 Starts With \"d_str\" Return Distinct `1esn`(.0 Starts With `1esn`,01[`3esn`..][Count(*)..]) In [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] As `4esn`,`7esn`[$usn1..]['s_str'..] Union Detach Delete [$`1esn`[``][07],$`4esn`[`6esn`..$12],False[$usn1][0x0]] =~[.e12 Is Null Is Null],`1esn`[0.0..1e1][0x0..7] Unwind Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`2esn` =~9e12) Is Null Is Null As `4esn`"), + octest:ct_string("Merge _usn4=(`1esn` {@usn5:`2esn` Starts With $`4esn`}) On Match Set #usn7 =9e1[`1esn`..0][999..1e1],All(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True]).`1esn`? =$usn2[`2esn`..$`1esn`],Single(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1).#usn7 =All(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null) Unwind 0.0 Ends With $`7esn` As #usn7;"), + octest:ct_string("With Distinct _usn3[`2esn`..0X7][0.e0..$`3esn`] As `7esn` Order By [usn2[12e12..]['s_str'..]] =~Single(`8esn` In 123456789 =~@usn6 Where $`4esn`[`4esn`][Count(*)]) Ascending,`4esn`[\"d_str\"]['s_str'] Ascending,.12 In `8esn` In $#usn8 Asc Skip None(@usn6 In 010[`5esn`] Where 123.654 In $`7esn`)[(`` {`7esn`:$#usn7[..0Xa]})<-[`1esn`?:usn1|`4esn` *00..0Xa]-(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[usn1? *01234567..{@usn5:01[`3esn`..][Count(*)..]}]->(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})..[False Contains 0 Contains $`6esn`,`1esn` Is Not Null Is Not Null]] Limit [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Contains Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|@usn5 Contains #usn8 Contains 12.0) Union All With *,{@usn5:$@usn6 Is Not Null Is Not Null} Starts With [`3esn` In `2esn`[..01][..True] Where 0x0[usn1..usn1]] Starts With Extract(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..]|0X7['s_str'..][01..]) As @usn6,None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] As `4esn` Order By 0x0[..9e0] Asc Skip Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]) =~Extract(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..]) =~Single(_usn4 In 12e12 In 123456789 Where False Is Null) Where _usn3[12.e12..][`5esn`..]"), + octest:ct_string("Match (((@usn6 )<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null}))) Remove {`4esn`:$_usn4 Starts With $1000 Starts With 12,`5esn`:0 Ends With 12.e12 Ends With usn2}.``?,Single(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)._usn4? Union Remove [#usn7 In $999 In 1e1 Where .e12 Starts With $12 Starts With .e12|$usn2[`4esn`..9e12]].`6esn`,`5esn`:``:usn2,(`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})._usn3 Merge #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))) On Create Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] On Match Set Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa).@usn6! =0.e0 Is Not Null Is Not Null,`1esn` =07 In `6esn`"), + octest:ct_string("Return Distinct *,`4esn` Ends With 12 Ends With .12 As usn2 Skip `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] Limit Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``) In Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1) Detach Delete Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null) Is Not Null Is Not Null,010 Starts With $`` Starts With 0e0 Union Create #usn8=({#usn7:12e12 In $`5esn`}) Return *,Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null As usn1,00 Contains Count ( * ) Contains 0x0 As `5esn` Limit .e0 Unwind $`5esn` =~$`8esn` =~usn2 As `1esn` Union Match (`8esn` {usn1:0e0 =~7 =~12.0,`7esn`:usn2 Starts With .0})<-[:_usn4]->(_usn4 {usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}),(@usn5 :`1esn`:_usn4)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})-[? *01..123456789]-(_usn3 :`6esn`:_usn3) Where $0 =~9e1 =~$`2esn`;"), + octest:ct_string("Return Distinct *,{`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}[[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]]..][(_usn4 {`6esn`:$_usn4 =~$`1esn` =~`2esn`,_usn3:#usn8 Is Null})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[_usn4?{_usn3:.e1[.e1..`1esn`],@usn6:.12 In `8esn` In $#usn8}]->(usn2 :@usn5)..] Union All Return *,01[`8esn`..9e12][.12..0] As @usn6,$`1esn` =~1e1 As `4esn` Order By 9e1 =~$_usn4 =~1.e1 Desc,$@usn5[$12...e12][0X0123456789ABCDEF..$999] Asc,(:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Ascending Skip $1000 Is Not Null With $_usn3[$12] Match usn1=((`6esn` :`5esn`)),#usn8=((:@usn5{`5esn`:`4esn` Starts With 0e0})) Where $usn2[`4esn`..9e12] Union With Distinct 0Xa In #usn7 In 's_str',`4esn` Starts With 0e0 As `7esn` Skip (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`) Where .e0 Optional Match `7esn`=((`4esn` )-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`` :_usn3)-[`4esn`?:`5esn`|:usn2]->(:`4esn`:`6esn`{usn2:$`8esn` Is Not Null Is Not Null})) Where 010 Starts With 0 Starts With 0.0"), + octest:ct_string("Match ((:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})),usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})) Where 0x0 Contains $`6esn` Contains `4esn` Merge @usn6=(({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) On Create Set usn2 =(`1esn` $`4esn`)-[@usn6?:`7esn`|:`2esn`]-({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]}) =~Filter(`3esn` In 9e1 Contains $999 Where 12.0 Is Null Is Null) =~[0xabc In Null],Single(#usn7 In True Contains 's_str' Contains $usn1 Where .e12[$@usn6..00][01234567.._usn3]).@usn5? =(`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}) =~[12 In $usn1 In 7] =~Filter(@usn5 In 's_str'[0..] Where 0.e0),`1esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[Extract(#usn7 In 9e0[$1000] Where .e1 In 123456789)][{_usn3:01[`8esn`..9e12][.12..0]}] On Create Set Extract(`3esn` In `2esn`[..01][..True] Where 00[01234567][False]|12[$`5esn`..][False..]).`2esn`! =12.e12 Ends With $``;"), + octest:ct_string("Return [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Any(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`),usn2[usn2..0X7] As `1esn` Order By 's_str'[0x0..1.e1] Asc Limit 0xabc[..$1000][..`5esn`] Union All Optional Match ((usn2 {`5esn`:$@usn5 In 12e12 In 01})-[`8esn`:#usn7|@usn5 *00..0Xa]-(_usn3 {usn1:0x0 Starts With $`6esn`})),((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[_usn3?:`8esn` *1000..0X0123456789ABCDEF{@usn5:07 Is Not Null Is Not Null}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Remove [12e12 =~1e1].`2esn`!;"), + octest:ct_string("Return Distinct .0[$``..0X7],'s_str' Ends With `7esn` Ends With 010 Limit $_usn3 Is Not Null Merge ({`1esn`:1.e1[`8esn`]})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`) On Create Set All(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True]).`1esn`? =$usn2[`2esn`..$`1esn`],{usn1:#usn8 =~.e0,_usn3:$_usn4 Is Null Is Null}.`1esn` =$`7esn`[.e1][12.0] Delete 12.e12 Ends With $``,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null,{#usn7:usn1 In ``}[None(`3esn` In `2esn`[..01][..True])..Extract(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..])] Union Create #usn8=((usn1 {@usn5:_usn4[$usn1..01234567][123.654..`5esn`],`5esn`:1.e1 =~$_usn4})-[?:_usn4]->(`2esn` :usn2)<-[usn1 *999..{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']}]->({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})) Union All Merge (`2esn` :`1esn`:_usn4)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}) On Match Set `5esn`+=010[..7][..`4esn`],(`2esn` :@usn5)-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}).`4esn`! =$@usn6 Ends With `1esn`,`6esn` =.0[$``..0X7]"), + octest:ct_string("Merge #usn7=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))) On Match Set @usn6+=[00[..$`8esn`][..7],`7esn`[$usn1..]['s_str'..]] Is Not Null Is Not Null On Match Set None(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`).`7esn`! =07[..07][..0X7],`4esn`:`1esn`:_usn4 Remove [`5esn` In 0X7 In $#usn7 Where @usn6 Is Not Null Is Not Null|9e1[..123456789]].``?,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7).usn1 Union All With Distinct `4esn` Is Not Null Is Not Null,$`5esn` In `2esn` In `2esn` As usn2,$999[0Xa..][9e1..] As `4esn` Order By 123456789 =~True =~#usn7 Asc,True[..#usn8] Ascending Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Detach Delete [`4esn`[.12][$@usn6],.0[..'s_str'][..01234567],1.e1 =~.12][Any(usn2 In False[$usn1][0x0] Where False Is Null)..],{#usn7:$usn2[0.e0],`6esn`:.e1[..\"d_str\"][..$123456789]}[..Extract(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999|Count ( * ) In 0.12)][..[@usn6 In 010[`5esn`] Where 's_str' Starts With 9e0 Starts With usn2|$`5esn` =~$0 =~``]],Count(*) In #usn8 In \"d_str\" Detach Delete [0.0 Is Not Null,$`4esn`[`8esn`],$123456789[12e12..9e0]] =~.e12,None(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]) Contains [$`2esn` Ends With `6esn`,9e1[..123456789]] Contains [12.0 In 123.654 In _usn4],`1esn`(#usn7[..07])[..[#usn8 In `7esn` Where 9e1 Starts With Count ( * )|`3esn` Starts With 9e0 Starts With usn1]]"), + octest:ct_string("Create _usn4=({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}),`7esn`=((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )) Unwind #usn7 In 0.e0 As usn1 Detach Delete True Contains 's_str' Contains $usn1,$`5esn`[..00] Union Optional Match usn2=((usn1 {_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})),`2esn`=(((_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})-[`4esn`?*..{``:`` =~.12,usn1:123.654 Is Not Null}]-(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->({usn2:@usn6 In .12 In `3esn`,`1esn`:usn2[12e12..]['s_str'..]}))) Where 00 Ends With `` Ends With 12.e12 Remove `5esn`:_usn4"), + octest:ct_string("Create (usn2 :`7esn`)<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[? *7..{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null}) Return Distinct Count ( * ) In True In @usn5 Order By 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Asc,`6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] Desc Optional Match `5esn`=(`2esn` :`1esn`:_usn4)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}) Union All Create `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}) Detach Delete 12 Starts With $123456789 Starts With .e12;"), + octest:ct_string("Match ((({`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[`3esn` *..07{usn2:True Contains 0x0 Contains $_usn3}]-({``:``[$`3esn`],#usn8:$@usn6[00]}))) Where #usn7 =~9e12 With Distinct *,1e1 Is Not Null Is Not Null Where `7esn` Ends With $7 Ends With $@usn5 Union All Merge _usn4=(`1esn` {@usn5:`2esn` Starts With $`4esn`}) On Match Set @usn5+=$0[123.654..0.e0],Any(`8esn` In 123456789 =~@usn6 Where .e1 =~_usn4 =~_usn4)._usn3? =01[..$`8esn`][..9e0],usn1 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) Match _usn4=(((:#usn7:`5esn`{`4esn`:$``[..\"d_str\"][..$#usn8]})<-[`6esn`? *00..0Xa]->(:#usn8:`1esn`$`7esn`)-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]}))) Remove Filter(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null).`7esn`,@usn6:``:usn2,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 07 Is Not Null Is Not Null).`6esn`? Union Merge `3esn`=(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}) On Match Set _usn3+=#usn7[..07],(:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(usn1 :`7esn`).`4esn` =1.e1[$`3esn`][0Xa],All(@usn5 In 's_str'[0..] Where `2esn`[..01][..True]).`2esn`! =`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] On Create Set Filter(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7]).``! =12 Contains 01234567"), + octest:ct_string("Match `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((:#usn7:`5esn`{`3esn`:Null[..0]})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->(`6esn` :#usn7:`5esn`{_usn3:_usn4 Is Null Is Null})) Where $`5esn` =~usn1 Union All With Distinct *,@usn5 Contains #usn8 Contains 12.0 As `6esn`,{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] Skip 0.0 Is Null Is Null Where 07 Ends With 9e12 Ends With `2esn` With 12.e12[..$`6esn`] As `7esn`,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] As ``,1.e1 Contains `6esn` Contains 0.e0 Skip Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])] Where 999 Contains $1000"), + octest:ct_string("Create (:usn2)<-[? *01..123456789{`8esn`:usn2 =~7,@usn5:`6esn` Ends With _usn4 Ends With False}]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`4esn`:usn2]->(`3esn` :_usn4),(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}) With Distinct *,`3esn`(`7esn`,0x0 Contains $`6esn` Contains `4esn`) Is Null Is Null Limit usn2[..$usn1][..$#usn8] Union All Delete $0 =~9e1 =~$`2esn` Remove [$`4esn`[0..][999..],$usn2 Is Not Null Is Not Null,$`5esn` In _usn3 In 0.0].`2esn`! Create `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Union All Detach Delete 9e1[$1000][7],.e0[999..1000][1e1..$`8esn`],(:`2esn`)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})-[@usn6? *0X0123456789ABCDEF..{``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6}]-(`5esn` :@usn5) Is Null Is Null Return Distinct *,'s_str' Order By `5esn`(Distinct .e0[01234567..$`8esn`]) =~All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) =~[999 In #usn8 In $``,.e0 Is Null Is Null] Ascending Skip 123456789 Is Null Is Null Limit `4esn`[123456789] Merge ({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) On Match Set _usn3 =Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)];"), + octest:ct_string("Optional Match ((#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})),usn2=((_usn3 :_usn4)-[`3esn`:`2esn`|`4esn`]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[:@usn6|:`7esn` *01..123456789]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07})) Where Null =~`6esn` With Distinct *,`5esn` Contains `5esn` Contains $_usn3 Limit False Starts With 0X7 Starts With 01234567 Where 9e1[_usn3] With Distinct .0[..'s_str'][..01234567] Order By {_usn4:01234567[Null..$_usn3],usn1:$123456789[12e12..9e0]} Desc,`1esn` Starts With 0X7 Starts With \"d_str\" Descending,9e1[$#usn8][$1000] Asc Skip Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`)[Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``)][Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 1e1 Contains 's_str' Contains `3esn`|$`2esn` Ends With `6esn`)] Limit _usn3 =~9e1 =~12e12 Union Match ({@usn6:0x0[Count(*)..@usn6][Count(*)..0Xa],`7esn`:0.0 =~9e0 =~$0})-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(:_usn3{_usn3:$`3esn`[.e1][_usn4]})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`) Where 9e12 =~@usn6 Create (:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}),`7esn`=((_usn3 :`7esn`)) With Distinct *,`4esn` Ends With 12 Ends With .12 As usn2,`3esn`(`7esn`,0x0 Contains $`6esn` Contains `4esn`) Is Null Is Null As usn1 Order By usn1[..$@usn6][..00] Desc Skip 9e1[$`1esn`..] Where usn1[$@usn5]"), + octest:ct_string("Remove `5esn`(.0 Is Null Is Null).usn1,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5).@usn5?,{``:12 In $usn1 In 7,`1esn`:Count(*) Ends With usn1}.usn2? Union Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) On Create Set #usn7+=.e0[..9e12][..07],`4esn`(True[$_usn3..],$999[``]).usn2 =123456789 Is Null Is Null,@usn5 =01[07..][1.e1..] On Create Set `5esn`+={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},usn2 =True Contains 0x0 Contains $_usn3;"), + octest:ct_string("Detach Delete 12.e12 =~.0 =~usn1 Merge ({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) On Match Set _usn3 =Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] Union All Remove [@usn5 Is Not Null]._usn4!,[@usn6 In 010[`5esn`] Where 9e1 Ends With Count(*) Ends With $7|`1esn` Is Not Null Is Not Null].`` Create _usn3=((:``:usn2{`5esn`:1.e1[`8esn`],`1esn`:.e0})-[`3esn`:`2esn`|`4esn`]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`6esn`?:_usn3|:`7esn` *..010]->(:_usn3{_usn4:.e1[7..][9e0..]})),@usn6=(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`}) Union Match (`1esn` {#usn7:$`1esn` Ends With 0X0123456789ABCDEF,`3esn`:.12 Starts With _usn3 Starts With $``}) Where True Starts With Null Return *,True In (#usn8 :`6esn`:_usn3)<-[`2esn`?:_usn4{#usn8:$12[9e0..$999]}]->({``:.e1 Starts With 12.e12 Starts With `2esn`}) As `5esn`,Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null] Skip 12.0 Ends With usn2 Ends With 0 Limit usn2 Ends With .e1 Ends With $`5esn`"), + octest:ct_string("Remove `8esn`:`2esn` With Distinct Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])] As @usn6,$`1esn`[Null][True] As usn2,0X7 In $#usn7 Order By 01 Ends With 0Xa Ends With 0X7 Desc,$12 =~0X7 =~0x0 Ascending Skip `7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] Where 00[01234567][False] With Distinct *,`2esn`[..$_usn3] As _usn4,1e1 Is Null Is Null As `2esn` Order By 0.e0[$`4esn`..`2esn`] Descending,$123456789[12e12..9e0] Asc,$_usn3[_usn4..] Asc Limit @usn5(Distinct 1e1 Is Not Null Is Not Null,`1esn` Starts With 0xabc Starts With $usn2)[..Extract(`3esn` In 9e1 Contains $999 Where usn2[12.e12..]|.12[01][@usn5])] Where 12e12 Is Not Null"), + octest:ct_string("With $usn1,`1esn` Contains $999 Contains 0.0 As @usn6,$`6esn`[0e0..][010..] With *,9e12[9e1] As @usn6 Merge #usn7=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))) On Match Set @usn6+=[00[..$`8esn`][..7],`7esn`[$usn1..]['s_str'..]] Is Not Null Is Not Null On Match Set None(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`).`7esn`! =07[..07][..0X7],`4esn`:`1esn`:_usn4"), + octest:ct_string("Create ((#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})),usn2=((_usn3 :_usn4)-[`3esn`:`2esn`|`4esn`]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[:@usn6|:`7esn` *01..123456789]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07})) Unwind 12 Is Not Null As `6esn` Unwind `8esn` Contains Count(*) Contains $#usn7 As _usn4 Union Return *,$@usn6 Ends With `1esn` Order By $999 Is Null Is Null Descending,0e0 =~7 =~12.0 Asc Skip `` =~.12 Union Remove Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|@usn5 Contains 9e0)._usn4? Create ((#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[`7esn`? *0Xa{@usn5:123.654 Is Not Null}]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`}));"), + octest:ct_string("Detach Delete usn2 =~usn1 =~Count ( * ),010 Is Null Is Null Match #usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Where 00 Contains Count ( * ) Contains 0x0 Union Unwind (:`2esn`)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})-[@usn6? *0X0123456789ABCDEF..{``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6}]-(`5esn` :@usn5) Is Null Is Null As `4esn` Union All Detach Delete (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)]"), + octest:ct_string("Match `3esn`=((({`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]})<-[ *00..0Xa]->(#usn7 :usn1:`3esn`)<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]}))),`6esn`=(((:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({#usn8:False Starts With 0X7 Starts With 01234567})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5))) Union Return Distinct Count ( * ) In True In @usn5 Skip 01234567[\"d_str\"..`4esn`] Limit 123.654 In $`6esn` Union All Optional Match _usn4=({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}) Where 0x0[@usn6..][01..]"), + octest:ct_string("Match (#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[?:`7esn`|:`2esn`]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]}) Where _usn4[@usn6..][$0..] Remove [$`4esn`[`4esn`][Count(*)],010[..7][..`4esn`],12.0 Starts With $`2esn` Starts With .e1].`6esn`!,[$@usn6[.0..][0e0..]].`8esn`? Merge (((`3esn` :`1esn`:_usn4)-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[`8esn`:#usn7|@usn5 *00..0Xa]-(_usn3 {usn1:0x0 Starts With $`6esn`}))) On Match Set All(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True]).`1esn`? =$usn2[`2esn`..$`1esn`],{usn1:#usn8 =~.e0,_usn3:$_usn4 Is Null Is Null}.`1esn` =$`7esn`[.e1][12.0] On Create Set ``+=$``[7],[@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1|$`4esn` Contains .e0 Contains 0Xa].`` =$`7esn`[123456789..$1000][Count ( * )..$7] Union All Unwind $#usn8[@usn6..] As usn2 Merge ((`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})) On Match Set `1esn` =All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null With 0Xa In #usn7 In 's_str',`4esn` Starts With 0e0 As `7esn` Skip $1000 Is Not Null Limit 0X7['s_str'..][01..] Union All Create `1esn`=(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2}),usn1=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) Optional Match `6esn`=((`6esn` :#usn8:`1esn`{`6esn`:usn1[..$@usn6][..00]})-[@usn5:_usn4 *0x0..]-(_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']}))"), + octest:ct_string("Create (((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})));"), + octest:ct_string("Unwind #usn8 Is Null Is Null As `8esn`;"), + octest:ct_string("With 's_str' Order By $12[9e0..$999] Asc,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip #usn8[`8esn`..] Limit .12 In `8esn` In $#usn8 Where 12.e12 Contains #usn7 Contains $_usn4 Detach Delete 9e0[Count(*)..0.12][$`1esn`..12.0] Return *,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Is Not Null As `3esn`,$12 Starts With $0 Starts With $`8esn` As `3esn` Limit {_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null Union All Delete $`1esn` Contains 1e1 Contains @usn6,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null,`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] Union All Detach Delete $#usn8 Ends With `3esn` Ends With $`` Create (_usn3 :`5esn`{#usn8:0xabc In 010 In #usn7}),((`2esn` :_usn3)-[? *0xabc{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0}))"), + octest:ct_string("Delete $0[0Xa..$123456789],[usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Union With Distinct Count ( * ) In True In @usn5 As `2esn`,$_usn3[$12] Order By $`4esn` Contains .e0 Contains 0Xa Asc,123.654[$0..0X7][Null..#usn8] Desc,07[..07][..0X7] Descending Skip $1000 Ends With `8esn` Ends With `2esn` Limit All(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]) Is Not Null Is Not Null Where $123456789[...12][..@usn6] Unwind #usn8(@usn6[999..$_usn3][0.12..$@usn5])[..`1esn`(Distinct `5esn`[..123.654][...e12],01 Contains usn2 Contains 0X0123456789ABCDEF)] As _usn3 Create (((@usn6 )<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})))"), + octest:ct_string("With $0[010..] As `` Order By `5esn`(Distinct .e0[01234567..$`8esn`]) =~All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) =~[999 In #usn8 In $``,.e0 Is Null Is Null] Ascending Skip count(Distinct 0X0123456789ABCDEF Contains 12e12 Contains 12.e12)[..{usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]}][..(:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null})] Where usn2[12.e12..] Match #usn8=((`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)) Detach Delete Filter(@usn5 In 's_str'[0..] Where $@usn6 =~#usn7 =~True)[Extract(@usn5 In 's_str'[0..] Where _usn3[0x0])..All(_usn4 In 12e12 In 123456789 Where $usn2 Is Not Null Is Not Null)][(`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]})<-[:`8esn`]-(:@usn6)-[? *0X0123456789ABCDEF..]-(usn2 :_usn3)..(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})],$`4esn` In 1.e1 In #usn7 Union All Return `6esn` Starts With `6esn`,usn2(0X7[.0])[{#usn8:0Xa Ends With $`3esn` Ends With $1000}..][[Null =~`6esn`]..] As `6esn` Remove 12.e12.`7esn`!,(`4esn` :@usn6)-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4).`4esn`;"), + octest:ct_string("Return `1esn` Contains $999 Contains 0.0 As @usn6 Return $7 Ends With Count ( * ),`6esn` =~Null As `4esn` Skip 1e1[_usn3] Limit [`2esn` Is Null] Is Null Is Null"), + octest:ct_string("With (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Order By usn1 Ends With 9e0 Ends With 9e0 Descending,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Descending Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Remove [0.e0[1000.._usn4][.e1..usn1],$`1esn` =~999,07[_usn3..][`6esn`..]].usn1!,usn2:`4esn`:`6esn`,Extract(usn2 In False[$usn1][0x0] Where $`7esn`|07 Is Null).#usn7! Delete $`6esn` Is Not Null Is Not Null,$`8esn` Is Not Null Is Not Null Union With (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Order By usn1 Ends With 9e0 Ends With 9e0 Descending,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Descending Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Remove [0.e0[1000.._usn4][.e1..usn1],$`1esn` =~999,07[_usn3..][`6esn`..]].usn1!,usn2:`4esn`:`6esn`,Extract(usn2 In False[$usn1][0x0] Where $`7esn`|07 Is Null).#usn7! Delete $`6esn` Is Not Null Is Not Null,$`8esn` Is Not Null Is Not Null Union All Return Distinct $usn2 =~0.e0 =~@usn6,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As _usn3,0X7[`2esn`..] As `5esn` Skip `1esn` Contains $999 Contains 0.0 Limit ``[..False][..`3esn`] With *,`` =~.12 As #usn7 Skip usn2 =~7 Limit 0x0 In 0.e0 In #usn8 Where `2esn`[..01][..True] With Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Order By @usn5[0..] Ascending,$@usn5 In $`6esn` In 12e12 Desc,#usn7 In 0.e0 Desc Skip {`8esn`:$_usn4 Starts With 12.e12} Is Null Is Null Limit 999 Contains $1000 Where 999 In #usn8 In $``"), + octest:ct_string("Merge usn2=(`8esn` :`6esn`:_usn3) On Match Set @usn5+=0Xa[010..$0][$`2esn`..999],``+=9e12[..`3esn`][..0X0123456789ABCDEF],({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(_usn4 {_usn4:123.654 In 12})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->(`6esn` :#usn7:`5esn`{_usn3:_usn4 Is Null Is Null}).usn2 ={#usn8:.0 Is Null Is Null}[..(_usn3 :@usn6{usn2:0Xa =~False =~@usn5,`3esn`:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})][..{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}] On Create Set `6esn`+=$usn1,`1esn`+={_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] Union Merge `7esn`=(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]}) Detach Delete None(@usn6 In 010[`5esn`] Where $`3esn` Ends With 01234567) Is Not Null Is Not Null,$`2esn` =~9e12,12 Starts With \"d_str\" Starts With 00;"), + octest:ct_string("Remove `2esn`(Distinct)._usn3? Union With 0x0[..9e0],Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By 1.e1[12..][$`4esn`..] Asc,Null[..010][..1000] Descending,Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] Descending Limit 1.e1[12..][$`4esn`..] Where 07[$`2esn`..9e12][$`4esn`..9e12]"), + octest:ct_string("Create (`3esn` {usn2:$usn2[`4esn`..9e12]}),`4esn`=(usn1 :`7esn`) Detach Delete $usn2[0.e0] Create (:usn2)<-[? *01..123456789{`8esn`:usn2 =~7,@usn5:`6esn` Ends With _usn4 Ends With False}]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`4esn`:usn2]->(`3esn` :_usn4),`8esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Union All Create ((#usn7 {`1esn`:$`4esn` Is Null Is Null})<-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(`6esn` :`8esn`)) Delete Count(*) Starts With usn2 Starts With `7esn`,$1000 Starts With $`7esn`"), + octest:ct_string("Return $`4esn`[`4esn`][Count(*)] As `8esn` Skip usn1 Starts With $_usn3 Return 123456789 =~$999 Order By $7[01..$123456789][#usn7..12.0] Descending,.12[..usn2][..12e12] Descending Unwind (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]} As `5esn`"), + octest:ct_string("Delete [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] In [12e12 In 123456789,`1esn`] In All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),$999 Is Null Is Null Union Detach Delete $usn2[`2esn`..],`8esn`(Distinct #usn8 Is Not Null Is Not Null,`2esn` In 9e0 In 7) Starts With None(usn2 In 7[12] Where 123456789 =~12 =~'s_str') Match #usn7=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2),(((:_usn4{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})<-[`2esn`? *01..123456789]-(`2esn` :@usn6))) Where 999[123.654..$usn2][Count ( * )..0x0] Merge (((@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`})<-[`3esn` *7..]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[? *01..123456789]-(usn1 :_usn4{`4esn`:`7esn` Is Null}))) On Match Set usn1(True Contains 's_str' Contains $usn1,.e0 Is Not Null Is Not Null).@usn5! ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]}"), + octest:ct_string("Merge #usn7=(((:`7esn`{`2esn`:$`3esn` Ends With 01234567})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(`` :`3esn`{`8esn`:.e1[12.0..],`6esn`:0e0[999..$``]})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null}))) With Distinct .e1 In 0,Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])[[00[12..$`6esn`],$`4esn`['s_str'..]]..] Skip `3esn`[$123456789..][$usn2..] Where $@usn5[..$#usn7] Union All Detach Delete Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)[..`4esn`][..(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)] Return Distinct usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Skip $@usn6 Ends With `1esn` Limit 9e1 Ends With Count(*) Ends With $7;"), + octest:ct_string("Return `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By $1000[$@usn6][$_usn4] Desc"), + octest:ct_string("Remove All(@usn5 In 's_str'[0..] Where 12e12 Is Not Null)._usn3!,`3esn`(Distinct $@usn5 In $`6esn` In 12e12).`8esn`! Remove `5esn`($`4esn` In 1.e1 In #usn7,0Xa[Count(*)..]).`5esn`,(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`).`3esn`,None(#usn8 In `7esn` Where 9e12[..1e1][..'s_str'])._usn4? Union Create (@usn6 {`4esn`:9e1 Contains 12}) Return *,0X7[`2esn`..] As `6esn`,$`1esn` Contains 1e1 Contains @usn6 As `3esn` Order By $_usn3[_usn4..] Descending,9e1 Contains $999 Ascending Unwind 07[999] As @usn6 Union All Unwind 0x0[``..] As usn1;"), + octest:ct_string("Return *,`2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Order By $`2esn` Starts With 0.12 Starts With $12 Ascending,07 In `6esn` Desc,12[..0e0][...e1] Desc Skip #usn8[`6esn`..][$``..] Limit `3esn`[..0X0123456789ABCDEF][..0x0] Merge (((:`7esn`{_usn3:@usn5[0.0..0X7]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]}))) On Match Set @usn5+=$0[123.654..0.e0],Any(`8esn` In 123456789 =~@usn6 Where .e1 =~_usn4 =~_usn4)._usn3? =01[..$`8esn`][..9e0],usn1 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) On Create Set [#usn7 In 9e1[$`1esn`..] Where 00 Ends With $`1esn` Ends With `7esn`].`2esn` =All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null),``:@usn5,@usn5+=12.e12[_usn4..$1000][$7..$999] Remove `3esn`(Distinct 123.654 Starts With 0X7 Starts With $`4esn`).``!,Any(_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1).`2esn`,Filter(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]).@usn5? Union Remove {#usn8:`1esn`[usn1][0xabc],_usn3:$`6esn`[1.e1][$_usn3]}.#usn7?,[123456789 Contains 0.0 Contains $@usn6,_usn3 Contains _usn4 Contains $@usn5].`8esn`? Return _usn4(Distinct usn2[07..][.0..]) Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]|$`2esn` Starts With `4esn` Starts With $usn1) Ends With Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2),usn1[..$@usn6][..00] As #usn7,(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})[..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})] As `7esn` Order By 0X7[..$`8esn`] Desc,$123456789[12e12..9e0] Descending Remove [@usn6 In False Contains 0 Contains $`6esn` Where 0.0 =~9e0 =~$0|.e0[01234567..$`8esn`]].@usn6?,({`4esn`:.e1[..$`3esn`][..01]})<-[`1esn`?:`8esn` *7..]-(:``:usn2{``:True[$_usn3..]}).`6esn`,All(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7).`6esn`?"), + octest:ct_string("Unwind $_usn3 Is Not Null Is Not Null As `1esn` Merge (((:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]-({`7esn`:9e12 =~@usn6})<-[ *0x0..]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}))) Union All Detach Delete @usn6[..$@usn5];"), + octest:ct_string("Return Distinct 0[$#usn8..][0x0..]"), + octest:ct_string("Create (((`4esn` :``:usn2)<-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]-({`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[:_usn4{`8esn`:12.e12 Is Not Null Is Not Null,#usn7:@usn6[Null...0][\"d_str\"..Count(*)]}]-(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False}))),((@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})) Union All Remove {`5esn`:1.e1[`8esn`],`1esn`:.e0}.`1esn`,{`6esn`:12.e12 Is Not Null Is Not Null,`1esn`:#usn7[0.12..]}.`3esn`?,`6esn`(`1esn`[`3esn`..],01[..01234567][..$_usn3]).`1esn`? Unwind None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]) Ends With [_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4|0x0[0X7]] As usn1 Remove [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`8esn`[123456789..][$@usn5..]|#usn8 Is Not Null Is Not Null].#usn7 Union Detach Delete #usn7[0.e0..]['s_str'..],$0 Starts With @usn5 Create ((:`5esn`{`8esn`:$`1esn` Starts With Count(*),_usn3:usn1[...e12][..1.e1]}))"), + octest:ct_string("Merge ((:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[`2esn`{``:Null[..010][..1000]}]-(`` :usn1:`3esn`)-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})) On Match Set `1esn` =Filter(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12])[..Extract(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])][..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]],#usn8(Distinct 12.0[$1000..][#usn7..],0xabc In Null).`2esn` =0.e0 Starts With usn1 On Match Set `2esn` =[$#usn7 Ends With 's_str' Ends With 0X7] Starts With (usn1 :@usn6)<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}) Starts With [`5esn` In `7esn`[$usn2..][$123456789..] Where $`1esn` Starts With Count(*)]"), + octest:ct_string("With *,9e0[..123456789][..$`3esn`] As #usn7 Unwind [$`4esn`[0..][999..],$usn2 Is Not Null Is Not Null,$`5esn` In _usn3 In 0.0] Ends With [#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|.e1 In 0] Ends With None(#usn7 In $999 In 1e1 Where $`4esn`[`4esn`][Count(*)]) As #usn8 Union All Create ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`))"), + octest:ct_string("Return *,[`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] As `4esn`,$1000[0X0123456789ABCDEF][12] Skip $999[.e12][.0] Limit `` Starts With $123456789 With Distinct {usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}[[@usn5 In 9e0 Ends With $#usn8 Where 00 Contains Count ( * ) Contains 0x0]],(`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Order By `3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] Desc,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1) Asc,$@usn5[..$#usn7] Descending Skip #usn8 Is Not Null Is Not Null;"), + octest:ct_string("Merge ((:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) On Create Set [12 =~usn1,7 =~`4esn`,``[9e12][$999]].`1esn` =Extract(#usn7 In $999 In 1e1 Where `5esn`[..True][..0.e0]|$`5esn` =~$0 =~``) In (:`7esn`{#usn8:0Xa Ends With $`3esn` Ends With $1000})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]}) In Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|999 Contains 0 Contains $`5esn`) On Create Set {usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}.#usn8 =[@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1] Is Null,`4esn`:#usn7:`5esn`,({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})<-[`8esn` *0xabc]-(:_usn3{_usn4:.e1[7..][9e0..]})-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}).usn2 =123.654[..0.e0][..'s_str'] Create (:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Union All Unwind `` =~.12 As _usn3 Unwind 0x0[12e12..$`7esn`] As `7esn`;"), + octest:ct_string("Create _usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Remove {#usn8:`1esn`[usn1][0xabc],_usn3:$`6esn`[1.e1][$_usn3]}.`3esn`,{usn1:@usn6[9e12]}.`4esn`! Return 12[$`5esn`..][False..] As `4esn`,0e0 Ends With 07 Ends With $`8esn` As `1esn` Limit All(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`)[Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null)..][Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..])..] Union All Remove Extract(`3esn` In 9e1 Contains $999 Where usn1[False..`5esn`][$1000..$12]|True Starts With Null).`4esn`! Union With `5esn`[..123.654][...e12] As @usn6,(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) As `2esn`,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As `1esn` Skip $`3esn`[..0X0123456789ABCDEF][..7] Limit 12.0 Starts With .12 Starts With `6esn` Where ``[$`3esn`] Merge ((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})) On Match Set [usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]].`1esn`? =999 Contains 0 Contains $`5esn`"), + octest:ct_string("Create (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}),`6esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) With Distinct $#usn8 Ends With `` Ends With 999 As `5esn`,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]) Is Not Null Is Not Null As _usn3 Order By _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..] Desc,{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Is Not Null Desc,9e0 Ends With $#usn8 Desc Limit 12.0 Starts With $`2esn` Starts With .e1 Where 9e1 Ends With Count(*) Ends With $7"), + octest:ct_string("With Distinct 0e0[``],0X7 In $#usn7 Limit 12e12[12e12][$#usn7];"), + octest:ct_string("Delete 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2],$`3esn` Ends With 1000,[$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..] Remove All(@usn6 In False Contains 0 Contains $`6esn` Where usn1[False..])._usn3! Remove `8esn`:``:usn2 Union All Create (#usn7 {`6esn`:$`2esn` Contains Count(*)})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`}) Return Distinct *,1e1 Contains 0.e0 Contains 9e1 Limit None(#usn7 In 9e0[$1000] Where $1000 Is Not Null) Is Null Is Null Create ((#usn7 {`1esn`:$`4esn` Is Null Is Null})<-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(`6esn` :`8esn`)) Union Remove @usn6:`2esn` Detach Delete {`2esn`:12.e12 Is Not Null Is Not Null,``:Count ( * ) In True In @usn5} Ends With {`7esn`:$1000 Starts With $`3esn` Starts With 0.e0,``:$`2esn` Is Null} Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]],$`5esn`[0X7..010][`7esn`..'s_str'];"), + octest:ct_string("Merge (((`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})<-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Merge ((`4esn` :_usn3{usn2:01[..0Xa][..12],`1esn`:999[..`1esn`][..07]})-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})) Return Distinct .e0 Starts With $@usn6 Starts With $7 As `1esn`,1.e1 Contains `6esn` Contains 0.e0 Order By `3esn`[$123456789..][$usn2..] Ascending Union All Unwind #usn8 Is Null Is Null As `8esn`"), + octest:ct_string("Remove Extract(usn2 In 7[12] Where $_usn3 Is Null|`3esn`[..0X0123456789ABCDEF][..0x0]).#usn8!,Single(`6esn` In $`6esn`[``..][Count(*)..] Where 1.e1 Ends With $_usn4 Ends With #usn7).`3esn`! Detach Delete `4esn`($_usn4 Starts With $1000 Starts With 12)[{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}],$`3esn`[.e1][_usn4],$7[$12..12e12][1.e1..9e1] With $999 In 12 In 1.e1 Order By (`5esn` :`1esn`:_usn4)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})[[.e0 Is Null Is Null,9e1 Contains 12,'s_str' Ends With `7esn` Ends With 010]..] Descending,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} Desc Limit 00 In @usn6 In 0 Where $@usn6 In @usn6 In 1e1 Union Detach Delete `4esn` Contains 9e0,`5esn` Contains `7esn` Merge #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}))"), + octest:ct_string("Unwind usn2[12e12..]['s_str'..] As @usn6 Union Create `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),({_usn3:@usn6 Contains .12 Contains $usn1}) Return Distinct *,12[None(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)..`5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12])][`5esn`(`2esn`[..01][..True])..(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})<-[? *7..]-(#usn7 :``:usn2)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})] As usn1,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) As `7esn`"), + octest:ct_string("With $@usn6[..12] As #usn8,`6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] As #usn8,[`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})] Order By 12.e12[..9e1][..$_usn3] Descending,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] Desc Skip @usn6(Count ( * ) In True In @usn5)[None(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)] Limit Extract(usn2 In 7[12] Where usn1 Starts With 00|`8esn` Contains Count(*) Contains $#usn7) Contains None(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[0.e0]) Contains Extract(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]|$`4esn`['s_str'..]) Where `1esn` Is Not Null Is Not Null Union Unwind 1.e1 Starts With 9e12 As `8esn` Unwind `5esn`[Count ( * )] As @usn6"), + octest:ct_string("Create `6esn`=(((`7esn` :`2esn`{@usn6:$0[123.654..0.e0]})-[_usn3 *..07{@usn6:$`2esn`[..$`3esn`][..12e12]}]->(`1esn` {#usn7:$`1esn` Ends With 0X0123456789ABCDEF,`3esn`:.12 Starts With _usn3 Starts With $``})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`}))),``=(_usn3 :`4esn`:`6esn`)-[?:@usn6|:`7esn`]-(:#usn8:`1esn`)-[_usn3?]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Optional Match @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) Where Count ( * )[@usn6] Create ((:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[`2esn`{``:Null[..010][..1000]}]-(`` :usn1:`3esn`)-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})),((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null}));"), + octest:ct_string("With Distinct $@usn5,0.12[0Xa][$`7esn`] As `4esn`,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As _usn3 Order By 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Asc,`6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] Desc Skip 01[$`7esn`..$@usn6] Where 12 In $usn1 In 7 Union Create _usn3=((:``:usn2{`5esn`:1.e1[`8esn`],`1esn`:.e0})-[`3esn`:`2esn`|`4esn`]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`6esn`?:_usn3|:`7esn` *..010]->(:_usn3{_usn4:.e1[7..][9e0..]})),@usn6=(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`}) Optional Match @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) Where Count ( * )[@usn6];"), + octest:ct_string("Match (`6esn` {`3esn`:$`2esn`[0..123456789][``..`1esn`],`7esn`:$0[0Xa..$123456789]}),`7esn`=((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )) Delete $@usn6[123.654..00] Union Merge (`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) Return *,`6esn` =~Null As `4esn`,.e0 Starts With $@usn6 Starts With $7 As `5esn` Order By [`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]] In (`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(:#usn7:`5esn`)-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:#usn8:`1esn`$`7esn`) In {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]} Asc,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] Desc Skip $`3esn`[$_usn4..0Xa] Union All With Distinct $@usn6 Ends With 12.e12 Ends With @usn5 As usn2,``[usn1][`5esn`],`7esn`[..$`6esn`] Skip `3esn`[7..0.e0][0.0..123456789] With Distinct [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`);"), + octest:ct_string("With *,`3esn`[...e1] Order By $_usn4[01..][$_usn4..] Ascending,Single(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)[[07[_usn3..][`6esn`..],999[123.654..$usn2][Count ( * )..0x0]]..][Single(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])..] Descending,.e12[0Xa..] Descending Skip [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 999 Is Not Null Is Not Null|$`8esn`[123456789..][$@usn5..]] Contains (`1esn` {@usn5:`2esn` Starts With $`4esn`})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->(`2esn` {`1esn`:$`4esn` Is Null Is Null})<-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-({#usn8:0xabc In 010 In #usn7}) Contains Extract(#usn7 In $999 In 1e1 Where .e0 Is Not Null Is Not Null|$`5esn` Is Not Null Is Not Null) Limit usn1[_usn3..] Where #usn7 Contains $0 Contains $usn2 Delete 123456789 Is Null Is Null,{#usn8:12.0 Ends With `2esn`,@usn5:usn1 Starts With 00}[Any(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Union All Optional Match usn1=((:@usn5{@usn5:$12[9e0..$999]})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})) Return @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1|$@usn5 In $`6esn` In 12e12) Ends With (:`7esn`{#usn7:0 =~1.e1 =~$#usn7})<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}),`1esn`($`4esn`[`4esn`][Count(*)],`2esn` Starts With $`7esn`) =~Extract(@usn5 In 9e0 Ends With $#usn8 Where .e0 Starts With $@usn6 Starts With $7) =~{`3esn`:_usn3[`2esn`..0X7][0.e0..$`3esn`]} Union All Delete _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..],``(Distinct 00 Ends With `` Ends With 12.e12,`6esn`[..Count ( * )][..$_usn4]) In (usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[`7esn`?:#usn8|:`3esn`{`6esn`:'s_str'[0..]}]->(#usn8 :`8esn`$#usn8) In Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1]) Return Distinct @usn5[01][@usn5],9e0 Contains $12 Contains `3esn` As #usn8,{`4esn`:0.0[usn1..],`7esn`:12.0[$1000..][#usn7..]}[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7)..[usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]]][[12.e12[..$`6esn`],999 In #usn8 In $``]..Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1)] Skip {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}[[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]]..][(_usn4 {`6esn`:$_usn4 =~$`1esn` =~`2esn`,_usn3:#usn8 Is Null})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[_usn4?{_usn3:.e1[.e1..`1esn`],@usn6:.12 In `8esn` In $#usn8}]->(usn2 :@usn5)..]"), + octest:ct_string("Detach Delete 9e0[Count(*)..0.12][$`1esn`..12.0] Union All Unwind .e0[9e12..] As usn2 Union Remove Any(`6esn` In $`6esn`[``..][Count(*)..] Where False Contains 0 Contains $`6esn`).usn1!,{`1esn`:`1esn`[$@usn6][07]}.`1esn` Unwind #usn7[..07] As usn1"), + octest:ct_string("Merge _usn3=(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`}) On Match Set {_usn3:0Xa[$`8esn`..][$_usn4..],usn1:True Starts With Null}.usn1 ={`4esn`:12e12 =~$`7esn`} Is Not Null Is Not Null Union All Remove (#usn8 :`8esn`$#usn8)-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]})-[`7esn`:`4esn`|@usn5 *12..]-(@usn6 :usn1:`3esn`).@usn5?"), + octest:ct_string("Match ((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})),(((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[?:_usn4]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1}))) Optional Match (:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]}) Where 12e12 In $`5esn` Union All Return $_usn4 Starts With $1000 Starts With 12,_usn4 Starts With `` Starts With 1000,Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null) Is Not Null Is Not Null As usn1 Order By [`5esn` Contains `1esn` Contains usn1,$@usn5 Ends With @usn5 Ends With 0xabc] Is Null Is Null Asc Create ((({`6esn`:`6esn`[..Count ( * )][..$_usn4],`7esn`:#usn7 Contains $0 Contains $usn2})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[`7esn`?]->(#usn8 :@usn5{_usn4:$#usn7 Contains $`7esn` Contains .e12}))),usn2=(_usn4 {_usn4:Null[..010][..1000],_usn3:.0 Is Null Is Null})-[`2esn`?:usn2{_usn3:0Xa In #usn7 In 's_str'}]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null}) Union All With Distinct {`8esn`:9e12 =~@usn6,`1esn`:999 Contains 0 Contains $`5esn`}[`4esn`()],(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null} Order By [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Desc Limit $7 Starts With $`4esn` Merge (({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})) Merge @usn6=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null});"), + octest:ct_string("Unwind [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null) As `7esn` Unwind Extract(@usn6 In 010[`5esn`] Where 00[$usn1..]|_usn3[$usn2..][$``..])[Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])] As _usn3 Remove All(@usn6 In 010[`5esn`] Where 1.e1[$usn1]).`6esn`!,Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5 Union All Remove None(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Is Not Null Is Not Null).`8esn`,[@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc|12.0 Starts With $`2esn` Starts With .e1].`3esn`?,7._usn4 Remove None(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]).`1esn`?,Extract(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null|0 =~1.e1 =~$#usn7).@usn5!,(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}).@usn5"), + octest:ct_string("Detach Delete $7 In $usn1 In 999,00[1.e1..],`8esn` =~@usn6 =~$`2esn` Match _usn3=(`1esn` )<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7}) Where @usn5 Starts With 9e0 Starts With 010 With Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By [Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] Ascending,None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) Descending Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]) Where @usn6 Is Not Null Is Not Null Union Delete $`1esn` Contains 1e1 Contains @usn6,None(#usn7 In 9e0[$1000] Where $_usn3 Is Null)[[0 =~1e1,$#usn8[12.e12..`8esn`][12.0..0.0],$1000 Is Not Null]..],(usn2 :_usn4)-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-({`8esn`:usn2 Starts With .0,@usn5:Count(*) In 12 In `6esn`}) Starts With [`3esn` In `2esn`[..01][..True] Where _usn4 Is Null Is Null|_usn3 In $`8esn` In @usn6] Starts With [@usn5 In 's_str'[0..] Where `6esn`[..Count ( * )][..$_usn4]] Return Distinct *,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] As `1esn` Merge usn1=((`2esn` :@usn5)) On Match Set Any(#usn8 In `7esn` Where $`3esn` Contains $`1esn`).`8esn`? =0x0 Contains $`6esn` Contains `4esn`,Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where False[$usn1][0x0]|@usn5[0.0..0X7]).usn2! =Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1),`3esn` =12.e12[..$999][..07] On Match Set usn1 =`5esn` Contains `5esn` Contains $_usn3,#usn8 =True Contains 0x0 Contains $_usn3"), + octest:ct_string("Create `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}),(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}) With *,#usn7[``] As usn1,None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6) =~Single(`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8) =~(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]}) Order By $@usn6 In @usn6 In 1e1 Desc,.e1[..$`3esn`][..01] Desc Limit _usn3 Is Null Is Null Unwind 9e0[Count(*)..0.12][$`1esn`..12.0] As @usn6 Union All Unwind $999 Starts With 12 Starts With 1e1 As `1esn` Merge `1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}))"), + octest:ct_string("Remove [usn2 In 7[12] Where 9e1 Is Not Null Is Not Null]._usn4?,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where `2esn` Starts With .e1 Starts With 9e12).`3esn`! With *,_usn3[12.e12..][`5esn`..] As @usn6,999[..`1esn`][..07] Order By 7 Is Null Is Null Ascending,Count ( * ) =~0e0 =~`8esn` Descending,#usn7[0.e0..][$#usn8..] Descending Where $999 Ends With .e0 Union Delete 12.e12 Starts With 1000,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null,Single(#usn8 In `7esn` Where 12.0 Starts With $`2esn` Starts With .e1) Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]] Ends With {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01};"), + octest:ct_string("Unwind $`5esn`[`7esn`] As @usn5 With None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,9e1[@usn5][$usn1] As `5esn`,`4esn` Starts With 0e0 As `7esn` Order By 1.e1 Contains `6esn` Contains 0.e0 Descending,07[..07][..0X7] Descending Limit Single(_usn4 In 12e12 In 123456789 Where 0e0 =~7 =~12.0) Starts With Extract(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]|9e12 =~@usn6) Return Distinct *,$#usn8[12.e12..`8esn`][12.0..0.0] As #usn8 Order By $#usn7[..9e0][..123.654] Descending,usn1[False..`5esn`][$1000..$12] Ascending,$usn2 =~1.e1 =~usn1 Desc Skip True Contains 0x0 Contains $_usn3 Limit `4esn` In 010 Union All Unwind @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])] As usn2 Return Distinct *,False Is Null Order By 0X7[..$`8esn`] Desc,[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null Ascending,12.e12 Ends With `` Ends With 0 Desc Skip Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0)[..{`5esn`:0Xa[$`8esn`..][$_usn4..],_usn3:00[$usn1..]}][..Any(@usn6 In 010[`5esn`] Where 1.e1[$usn1])]"), + octest:ct_string("Create (usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}),({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5)<-[_usn4?:@usn6|:`7esn`]->({`6esn`:'s_str' Contains 12.e12 Contains $`4esn`}) Create ((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})) Remove (:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})-[? *0Xa]-(`8esn` {``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]}).`2esn`! Union Create (@usn6 {`4esn`:9e1 Contains 12}) Return *,0X7[`2esn`..] As `6esn`,$`1esn` Contains 1e1 Contains @usn6 As `3esn` Order By $_usn3[_usn4..] Descending,9e1 Contains $999 Ascending Unwind 07[999] As @usn6"), + octest:ct_string("Unwind True Contains 's_str' Contains $usn1 As _usn4 Merge @usn5=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}) With Distinct $_usn4 Is Null Is Null,usn2 Starts With .0 Order By 9e1[$#usn8][$1000] Descending Limit #usn7 =~9e12;"), + octest:ct_string("With Distinct $@usn5 Contains 's_str' Contains \"d_str\" As @usn5 With Distinct *,[1000[0e0][1e1],12.0 Is Null Is Null] Is Not Null Is Not Null Order By $`5esn`[$`6esn`][`2esn`] Descending,`6esn`[..$`4esn`] Descending,12 Starts With $123456789 Starts With .e12 Ascending Limit [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Union All Create `2esn`=()-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]-(:`4esn`:`6esn`{usn1:0 =~1e1,`7esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})-[_usn3:`5esn`|:usn2 *999..{`3esn`:`5esn` Contains $`5esn` Contains 0X7}]-(`8esn` {`1esn`:$`4esn` Is Null Is Null})"), + octest:ct_string("Merge (((usn1 :`8esn`)<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[? *0xabc]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})))"), + octest:ct_string("Unwind True[$_usn3..] As usn2 Union Return Distinct $`3esn`[$_usn4..0Xa] As #usn7,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa) As `3esn`,$`5esn`[$`3esn`..] As `4esn` Limit $`` Is Not Null Is Not Null Union All Merge (((:#usn8:`1esn`{_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(`5esn` {`4esn`:0x0[usn1..usn1],usn1:$`5esn`[0X7..010][`7esn`..'s_str']})<-[? *..010{#usn8:False Is Null}]->(#usn7 {#usn7:1.e1 Starts With 9e12}))) On Create Set {usn1:$_usn4 Starts With $1000 Starts With 12}.@usn6! =[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])] On Match Set [$usn2 =~9e1,$`6esn` Is Null].`8esn`? =(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),usn2 =$@usn5 Ends With @usn5 Ends With 0xabc,#usn8+=$`1esn` Starts With Count(*) With `1esn`[`3esn`..],(`3esn` {usn2:00[False..0e0]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null})<-[@usn6?:`8esn` *0..01]->(`5esn` :`4esn`:`6esn`)[[12.0 Starts With $`2esn` Starts With .e1]..] Skip 07 In 0Xa In usn1 Limit 010 Is Null With Distinct 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] As #usn8,(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null},$#usn7 =~`2esn` As `4esn` Limit Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null);"), + octest:ct_string("Unwind #usn7[..07] As usn1 Union All Match #usn7=((`7esn` :`1esn`:_usn4{@usn5:0x0[usn1..usn1],`6esn`:`4esn`[$_usn3..$`7esn`]})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->({`3esn`:`5esn` Contains $`5esn` Contains 0X7})-[`6esn` *00..0Xa{usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}]->(:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})) Where 0.0 Contains #usn7 With $@usn6 Ends With 12.e12 Ends With @usn5 As usn2 Where 12.0 Is Null Delete 12.e12 Contains `6esn`,$1000 Is Not Null,`1esn`[$@usn6][07] Union Remove Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where _usn4[`7esn`]|0xabc[..$1000][..`5esn`]).`4esn`?,[`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null].#usn8? Remove (usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0})._usn3"), + octest:ct_string("Create (((`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789})<-[`8esn`:#usn7|@usn5 *00..0Xa]->({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6}))),((:`4esn`:`6esn`{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})-[`5esn`?:`6esn`|:#usn8{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]-({`5esn`:#usn8 =~.e0})<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null})) Remove {``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}.`1esn`!,Filter(#usn8 In `7esn` Where 9e1 Starts With Count ( * )).@usn5!,(usn2 {`5esn`:$@usn5 In 12e12 In 01})<-[`7esn`{`4esn`:$_usn4[$`6esn`..],`4esn`:Count(*) In #usn8 In \"d_str\"}]->(`3esn` :usn2)-[`4esn`?*..{``:`` =~.12,usn1:123.654 Is Not Null}]-(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]}).`8esn`? Union Unwind {`8esn`:9e12 =~@usn6,`1esn`:999 Contains 0 Contains $`5esn`}[`4esn`()] As #usn8 Delete {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}[..`2esn`(Distinct 0 Ends With 12.e12 Ends With usn2)][..Filter(_usn4 In 12e12 In 123456789 Where .e1 In 123456789)],Extract(@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1) Is Not Null Merge ((:_usn4{`1esn`:0e0 =~0Xa =~$999})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(`` :`5esn`{@usn5:123456789 =~@usn6})<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null})) On Match Set {usn2:$@usn6 =~#usn7 =~True,_usn3:07 In `6esn`}.`3esn` =$`5esn`[$`6esn`][`2esn`] Union Detach Delete $123456789[12e12..9e0] Remove [12.0 Starts With .12 Starts With `6esn`,usn2 Contains $0 Contains .0,$#usn7 In $@usn5 In $`1esn`].`7esn`!,Single(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]).`3esn`?"), + octest:ct_string("Create (@usn5 :`1esn`:_usn4),`3esn`=(`` {`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']})<-[`6esn`? *00..0Xa]->(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}) Match @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) Merge (((:#usn7:`5esn`{_usn4:$usn2 =~9e1})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`)<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]}))) Union Merge ((:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) On Create Set [12 =~usn1,7 =~`4esn`,``[9e12][$999]].`1esn` =Extract(#usn7 In $999 In 1e1 Where `5esn`[..True][..0.e0]|$`5esn` =~$0 =~``) In (:`7esn`{#usn8:0Xa Ends With $`3esn` Ends With $1000})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]}) In Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|999 Contains 0 Contains $`5esn`) On Create Set {usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}.#usn8 =[@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1] Is Null,`4esn`:#usn7:`5esn`,({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})<-[`8esn` *0xabc]-(:_usn3{_usn4:.e1[7..][9e0..]})-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}).usn2 =123.654[..0.e0][..'s_str'] Create (:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789})"), + octest:ct_string("Detach Delete [0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]][{usn2:$@usn6 Ends With `1esn`,_usn3:`7esn`}..][{@usn6:1e1 Is Not Null Is Not Null,`8esn`:$`1esn` Starts With $`4esn` Starts With $_usn3}..],`6esn`[$1000][`3esn`] Remove Extract(@usn6 In 010[`5esn`] Where $0[0Xa..$123456789]|_usn3[12.e12..][`5esn`..])._usn3,(usn1 :`5esn`{@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`:usn2]->(:`8esn`{``:$`1esn` =~999}).`5esn`? Optional Match (((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}))),`8esn`=(:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}) Union Merge `2esn`=(((`7esn` )<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2))) On Match Set #usn8 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) With Distinct 0Xa In $`6esn` As `2esn`,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null,12[0e0] As `5esn` Skip (`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}) =~[12 In $usn1 In 7] =~Filter(@usn5 In 's_str'[0..] Where 0.e0) Limit .e0[$`8esn`..][1000..]"), + octest:ct_string("Return Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],.12[..usn2][..12e12],$usn2[`5esn`..][01234567..] As #usn8 Limit $`2esn` Is Null With Distinct *,0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Order By #usn7[0.12..] Asc Skip Count(*)[9e12..12.0] Where `3esn`[..0X0123456789ABCDEF][..0x0] Union All Merge (((`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})<-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Merge ((`4esn` :_usn3{usn2:01[..0Xa][..12],`1esn`:999[..`1esn`][..07]})-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})) Return Distinct .e0 Starts With $@usn6 Starts With $7 As `1esn`,1.e1 Contains `6esn` Contains 0.e0 Order By `3esn`[$123456789..][$usn2..] Ascending Union All Return Distinct *,`3esn`[12..1000][\"d_str\"..1000],@usn6[123.654..][0x0..] As _usn3 Order By $999 In 1e1 Descending,True[..#usn8] Ascending,#usn8 Starts With $1000 Starts With $@usn5 Ascending Skip ``[..#usn8] Create `4esn`=((({#usn7:$`3esn` Ends With 01234567,_usn3:usn1 =~$`7esn`})-[`7esn`?:usn1|`4esn` *00..0Xa{`3esn`:usn1 In ``}]-(usn1 {usn1:$#usn7 Starts With 01234567 Starts With $0})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]}))),#usn8=(({usn2:`2esn`[..$_usn3]})) Merge ((@usn6 :`4esn`:`6esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->({usn1:$123456789 In 0.12})) On Match Set All(usn2 In 7[12] Where `2esn`[$12..]).#usn8? =[#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3],Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3|01 In $@usn6).`7esn`? ={`3esn`:.e1[..\"d_str\"][..$123456789]},[$`5esn` =~usn1,@usn6 Contains .12 Contains $usn1,999 In #usn8 In $``]._usn3 =[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )] On Match Set `2esn`+=`3esn`(Null[..010][..1000],$0 =~9e1 =~$`2esn`)[1.e1..][None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`])..],@usn5 =usn2 Ends With .e1 Ends With $`5esn`"), + octest:ct_string("With *,.0 Starts With `1esn` As #usn7,#usn8 =~.e0 Limit .0[.e12..]"), + octest:ct_string("Create ((`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})),(((@usn6 )<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null}))) With Distinct $12 Starts With $0 Starts With $`8esn`,9e1[usn1..0x0][12.e12..12.0] As usn1,$``[..\"d_str\"][..$#usn8] As `6esn` Where `4esn`[.12][$@usn6] Union All Merge @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) With *,``(Distinct 00 Ends With `` Ends With 12.e12,`6esn`[..Count ( * )][..$_usn4]) In (usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[`7esn`?:#usn8|:`3esn`{`6esn`:'s_str'[0..]}]->(#usn8 :`8esn`$#usn8) In Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1]) As `3esn` Order By $usn2[`5esn`..][01234567..] Asc,$`7esn`[.e1][12.0] Asc,$`5esn` =~usn1 Ascending Skip @usn6(0X7 In $#usn7,_usn4 Contains `` Contains 1.e1)[Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)..Any(#usn7 In 9e1[$`1esn`..] Where $`2esn` Ends With `6esn`)]"), + octest:ct_string("Remove {@usn5:123.654 Is Not Null}.`3esn`!,Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc).`1esn`! Unwind [@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Is Not Null As `1esn` Unwind [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Contains Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|@usn5 Contains #usn8 Contains 12.0) As usn1 Union Match `3esn`=(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0}),((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[_usn3?:`8esn` *1000..0X0123456789ABCDEF{@usn5:07 Is Not Null Is Not Null}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Union All Optional Match (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Where $`7esn`[.e1][12.0]"), + octest:ct_string("Remove Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null).`7esn`?,(_usn4 :_usn4)<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[ *..07{`6esn`:Count(*)[9e12..12.0]}]->(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}).``? With *,$@usn5 In 12e12 In 01 Order By 0.12 Starts With $`8esn` Starts With @usn5 Ascending Limit $7 Starts With $`4esn` Merge `1esn`=(((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[?:`8esn`*]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}))) On Match Set _usn4 =0Xa In #usn7 In 's_str',`5esn`+=$#usn8 Starts With .e12 Starts With 1.e1,`1esn`+=usn2 In _usn3 On Match Set _usn3+=`6esn`[$``..$_usn3][1000...0],[usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5|0 Ends With 12.e12 Ends With usn2].`1esn` =123.654 Is Null Is Null Union All Merge `1esn`=(usn2 :`5esn`)<-[? *7..]-(#usn7 :``:usn2) On Match Set `8esn` ={`3esn`:.e1[..\"d_str\"][..$123456789]},`1esn` =$7 Starts With 12.e12 Starts With $@usn6,None(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]).`3esn`? =#usn8[..`8esn`] Unwind $_usn3 Is Not Null Is Not Null As `1esn` Match (((`4esn` :``:usn2)<-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]-({`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[:_usn4{`8esn`:12.e12 Is Not Null Is Not Null,#usn7:@usn6[Null...0][\"d_str\"..Count(*)]}]-(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False}))),((@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})) Union All Return Distinct 12.e12 =~0X0123456789ABCDEF =~1.e1 As `6esn`,0.e0[..$7] As _usn3,usn1 Ends With 0.0 Skip usn2 =~$`` =~$`8esn` Limit (usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null Delete 07[_usn3..][`6esn`..] Unwind 9e12 =~@usn6 As usn1;"), + octest:ct_string("Remove [_usn4 In 12e12 In 123456789 Where 00 In @usn6 In 0].#usn8! Merge `4esn`=(`4esn` :`7esn`)"), + octest:ct_string("Remove @usn5:`7esn` Merge `1esn`=((`2esn` {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})) On Match Set (:``:usn2{`4esn`:#usn7 Contains $0 Contains $usn2})<-[:`8esn` *0X7..]->(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2})<-[`2esn`? *01..123456789]-(`2esn` :@usn6).`8esn` =`7esn`[1e1] Union Optional Match @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) Where 0Xa[$`8esn`..][$_usn4..] Remove Extract(`3esn` In 9e1 Contains $999 Where `2esn`[_usn3]|123.654 In $`7esn`).usn2?,@usn5:_usn3 Remove `5esn`($`4esn` In 1.e1 In #usn7,0Xa[Count(*)..]).`5esn`,(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`).`3esn`,None(#usn8 In `7esn` Where 9e12[..1e1][..'s_str'])._usn4? Union All Return Distinct 9e0 =~Count(*) =~$0,123.654 In $`6esn`,0 Ends With Count(*) Ends With False Order By #usn7 Contains $0 Contains $usn2 Asc,.12[01][@usn5] Desc Limit 12 Ends With Count ( * )"), + octest:ct_string("Detach Delete 9e1 =~123456789 =~999 Create `1esn`=((@usn6 {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})-[:``{``:.0[$``..0X7]}]->(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})-[ *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})),`6esn`=((#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})) With Distinct *,@usn5 Contains #usn8 Contains 12.0 As `6esn`,{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] Skip 0.0 Is Null Is Null Where 07 Ends With 9e12 Ends With `2esn` Union All Return *,9e0[..123456789][..$`3esn`] As #usn7 Order By 999 In 0e0 Ascending Delete $7[01..$123456789][#usn7..12.0] Delete 0.0[usn1..]"), + octest:ct_string("With Distinct .e1[.e1..`1esn`] As @usn5,$`4esn`['s_str'..] As ``,{``:00 In @usn6 In 0}[(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})] As `5esn` Order By 0X0123456789ABCDEF Is Not Null Is Not Null Asc Skip 123.654 In $`7esn` Where 999 Starts With `2esn` Starts With .e1 Union Return *,'s_str' Starts With 9e0 Starts With usn2 As `8esn` Optional Match `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),(`2esn` $`6esn`) Where 7 =~`4esn` Optional Match `6esn`=(((_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})-[``?:_usn4]-(_usn4 :_usn4))) Union Remove All(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01).usn2! Create (((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})))"), + octest:ct_string("Unwind {`8esn`:usn2 =~7,@usn5:`6esn` Ends With _usn4 Ends With False} Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]] Ends With (_usn4 :_usn4)<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[ *..07{`6esn`:Count(*)[9e12..12.0]}]->(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) As _usn4 Optional Match (:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]}) Where 12e12 In $`5esn` Merge ((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})) On Create Set `2esn`+=0X0123456789ABCDEF In .12,`1esn` =$`7esn` In False In $`1esn` Union All Merge #usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Union All Return Distinct 9e0 =~Count(*) =~$0,123.654 In $`6esn`,0 Ends With Count(*) Ends With False Order By #usn7 Contains $0 Contains $usn2 Asc,.12[01][@usn5] Desc Limit 12 Ends With Count ( * )"), + octest:ct_string("Detach Delete `8esn` Is Not Null Is Not Null,Filter(@usn5 In 9e0 Ends With $#usn8 Where 7 Ends With 01234567 Ends With 0Xa) Starts With {usn2:`2esn` =~.e12 =~0X0123456789ABCDEF,@usn6:`2esn` Is Null} Starts With [usn2[12e12..]['s_str'..]] Return *,[`8esn`[..$#usn8],1.e1 Starts With 9e12] Ends With [`6esn` In $`6esn`[``..][Count(*)..]|.e1[12.0..]] Ends With Any(usn2 In 7[12]),$`6esn` Starts With .e12 Starts With $`1esn` As @usn6 Skip $`5esn`[$`3esn`..] Limit Single(@usn6 In 010[`5esn`] Where Count(*)[9e12..12.0])[(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)][`7esn`]"), + octest:ct_string("Delete `2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Union All Detach Delete `4esn`[..$@usn6][..@usn6] Detach Delete @usn6[999..$_usn3][0.12..$@usn5] Union Create (`6esn` :@usn6)-[usn2?:`3esn`]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}),usn1=(#usn8 :``:usn2) Remove {``:.e12 Ends With 0Xa Ends With 0xabc}.usn2? Create (:`6esn`:_usn3{`8esn`:`4esn`[\"d_str\"]['s_str']})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0}),`4esn`=((({#usn7:$`3esn` Ends With 01234567,_usn3:usn1 =~$`7esn`})-[`7esn`?:usn1|`4esn` *00..0Xa{`3esn`:usn1 In ``}]-(usn1 {usn1:$#usn7 Starts With 01234567 Starts With $0})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})))"), + octest:ct_string("Detach Delete $999 In 12 In 1.e1,usn2 Is Not Null Union All Create (((usn2 {`5esn`:$@usn6 Ends With `1esn`})<-[`2esn`? *01..123456789]-(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]})<-[? *7..{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]-(#usn7 :``:usn2))) Union All Delete $@usn6 Ends With 12.e12 Ends With @usn5 Delete 0e0 =~0Xa =~$999"), + octest:ct_string("Optional Match ((:`6esn`:_usn3{usn1:`3esn`[0x0..]})<-[? *1000..0X0123456789ABCDEF{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]->({`4esn`:.e1[..$`3esn`][..01]})<-[usn2?{``:$`1esn`[``][07]}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7})),(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) Where $`3esn` In $usn2 Union With $`3esn`[.e1][_usn4] As _usn4,usn2 =~$`` =~$`8esn`,9e12[9e1] Order By `1esn` Starts With 9e1 Desc"), + octest:ct_string("Return Distinct *,[1000[0e0][1e1],12.0 Is Null Is Null] Is Not Null Is Not Null Order By Extract(usn2 In 7[12] Where usn1 Starts With 00|`8esn` Contains Count(*) Contains $#usn7) Contains None(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[0.e0]) Contains Extract(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]|$`4esn`['s_str'..]) Asc,1.e1[$`3esn`][0Xa] Descending,`2esn` Starts With $`7esn` Ascending Skip $usn2[`2esn`..$`1esn`] Merge ((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})) On Create Set usn1 =`3esn`[123456789],`3esn` =9e1[.12][`7esn`] On Match Set All(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).`3esn`! =12.0[$12..$_usn4] Union Create ({@usn6:999 Contains 0 Contains $`5esn`,#usn7:999[..`1esn`][..07]}) Delete [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null),0x0 In `8esn` Unwind [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e1[usn1..0x0][12.e12..12.0]][..{usn2:0x0[0X7]}][..[12.e12 Is Not Null Is Not Null,$@usn6[.0..][0e0..]]] As _usn4 Union Unwind $`1esn`[``][07] As @usn5"), + octest:ct_string("Create ({_usn3:$12[9e0..$999],#usn7:0.0 Contains `3esn` Contains @usn5})-[#usn7?:`7esn`|:`2esn` *..07]-(#usn7 {#usn7:1.e1 Starts With 9e12}) Return *,00[12..$`6esn`] As _usn4,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] As `3esn` Skip `8esn` Contains `2esn` Contains .0 Limit Null[.12..12e12] Union All Create (:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Remove `2esn`(.12[123.654..]).`4esn` Union All Remove {usn1:#usn8 =~.e0,_usn3:$_usn4 Is Null Is Null}.`1esn`,Single(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`).`3esn`?"), + octest:ct_string("Remove `5esn`:#usn8:`1esn`,[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|.e0 Contains $#usn8].@usn6!,[123.654 Starts With 0X7 Starts With $`4esn`,`6esn` Is Null Is Null].@usn5 Optional Match `6esn`=(((:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({#usn8:False Starts With 0X7 Starts With 01234567})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5))) With Distinct 0Xa Ends With $`3esn` Ends With $1000,Extract(@usn5 In 's_str'[0..] Where 12e12 Is Not Null) =~[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]],$#usn8[@usn6..] As `7esn` Order By (`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Desc,$usn1[Null][`8esn`] Desc,$`5esn` In `2esn` In `2esn` Asc Limit [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Ends With `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Ends With [$`1esn`[``][07],`7esn`] Where _usn3[$`1esn`..] Union Remove Filter(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1).usn2,Extract(#usn8 In `7esn` Where 9e1 Starts With Count ( * )|$@usn6[$`8esn`..][123456789..]).`6esn`!,_usn4:`7esn` Remove All(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7).`2esn`!,(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[ *01234567..]->(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`}).usn2,@usn6:_usn4"), + octest:ct_string("Remove #usn7(@usn6 Contains .12 Contains $usn1).usn1!,_usn3._usn4? Create usn2=(`6esn` {`2esn`:$`3esn` Ends With 01234567}) Union Create ((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})),@usn5=(({@usn5:$`5esn` Is Not Null Is Not Null})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})) Union All Delete 9e1[1.e1][$`8esn`],0X7[0.12..] Remove ({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->(_usn4 :@usn5).`8esn`?,All(`3esn` In `2esn`[..01][..True] Where #usn7 In 0.e0).`4esn`!,Extract(@usn5 In 9e0 Ends With $#usn8 Where `1esn` Is Not Null Is Not Null|Null[..0]).``?"), + octest:ct_string("Delete Extract(#usn7 In 9e0[$1000] Where 00[12..$`6esn`]|$@usn6 Ends With `1esn`) =~[7 =~`4esn`,7 =~`4esn`],@usn5[$`6esn`..][$999..],1e1 Ends With $`2esn` Merge `5esn`=(`2esn` :_usn3) On Create Set usn1 =`3esn`[123456789],`3esn` =9e1[.12][`7esn`]"), + octest:ct_string("Create (`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}),(`8esn` {usn1:0e0 =~7 =~12.0,`7esn`:usn2 Starts With .0})<-[:_usn4]->(_usn4 {usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Union Return *,[`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] As `4esn`,$1000[0X0123456789ABCDEF][12] Skip $999[.e12][.0] Limit `` Starts With $123456789 With Distinct {usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}[[@usn5 In 9e0 Ends With $#usn8 Where 00 Contains Count ( * ) Contains 0x0]],(`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Order By `3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] Desc,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1) Asc,$@usn5[..$#usn7] Descending Skip #usn8 Is Not Null Is Not Null"), + octest:ct_string("With Distinct *,0x0[``..] As `2esn` Order By 12.e12 Ends With $`` Descending Skip 's_str' Starts With 9e0 Starts With usn2 Limit None(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])[Any(`3esn` In `2esn`[..01][..True] Where $`3esn`[..0xabc][..$7])][$#usn7] Where `1esn` Starts With 0xabc Starts With $usn2 Create ((#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})),usn2=((_usn3 :_usn4)-[`3esn`:`2esn`|`4esn`]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[:@usn6|:`7esn` *01..123456789]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07})) Remove Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null).`7esn`?,(_usn4 :_usn4)<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[ *..07{`6esn`:Count(*)[9e12..12.0]}]->(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}).``?"), + octest:ct_string("Return Distinct Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],010 Is Null Is Null As #usn8,All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] As `8esn` Order By $_usn3[_usn4..] Asc,0.12 Is Null Is Null Desc,`6esn` Ends With _usn4 Ends With False Ascending Skip 1.e1 =~.12 Limit `1esn`[$@usn6][07] Return $_usn4 Is Null Is Null,usn2 Starts With .0 Order By 9e1[$#usn8][$1000] Descending Limit #usn7 =~9e12"), + octest:ct_string("Return Distinct [#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]][Any(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..])..Single(usn2 In False[$usn1][0x0] Where 9e1 Is Not Null Is Not Null)],Extract(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|.e1[usn2..$_usn3][.0..$#usn7]) Skip 1.e1 Is Null Is Null Union All Merge ((usn1 {_usn4:#usn8 Is Not Null})<-[:`8esn` *0X7..]->(:`8esn`{@usn5:usn2 Ends With .e1 Ends With $`5esn`})<-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]->({`8esn`:usn2 Starts With .0,@usn5:Count(*) In 12 In `6esn`})) On Match Set @usn5 =$`2esn` Is Null,usn2+=`4esn` Starts With 0e0,``+={_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}[[$`2esn` =~9e12,`6esn` Is Null Is Null,usn2 Is Not Null]..[$`1esn` Starts With $`4esn` Starts With $_usn3]] Optional Match _usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Where 0.e0 Starts With .0 Starts With 123456789 Delete 999[..`1esn`][..07],0x0[@usn5][$#usn8] Union All Merge ((:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})) On Create Set usn1 =[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]][Any(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..])..Single(usn2 In False[$usn1][0x0] Where 9e1 Is Not Null Is Not Null)],`6esn` =12.e12 =~0X0123456789ABCDEF =~1.e1 Detach Delete 9e1[_usn3] Return Distinct $#usn7[..9e0][..123.654] As @usn6 Order By Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null] Desc,None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])[..[_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4]] Desc,None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] Desc Limit `6esn`"), + octest:ct_string("Remove All(usn2 In 7[12] Where #usn8 Is Null Is Null).`5esn` Optional Match ``=(((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),((({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:#usn7|@usn5*..]-(`3esn` :usn2{`6esn`:#usn8 Is Null})<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Where $1000 Starts With $`3esn` Starts With 0.e0 Union All Remove (:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})-[`5esn`?:`6esn`|:#usn8{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]-(usn1 :`5esn`{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})<-[:`1esn`|`3esn`{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(@usn5 :`2esn`{`8esn`:0Xa[$`8esn`..][$_usn4..]}).``!,Any(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]).`2esn`!,`1esn`:`6esn`:_usn3 With Distinct [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) As usn2,#usn8 =~0.e0,$usn1 Limit 00 In @usn6 In 0 Where #usn8 =~.e0 Union Detach Delete 9e1[_usn3] Delete [usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null,$`2esn` Starts With .0 Starts With `1esn`,0x0[0.0] Optional Match _usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Where 0.e0 Starts With .0 Starts With 123456789"), + octest:ct_string("Create ((`4esn` :`4esn`:`6esn`)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Optional Match (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Return *,$`5esn` Is Not Null,usn2 Contains $0 Contains .0 Order By 0.e0[$`4esn`..`2esn`] Descending,$123456789[12e12..9e0] Asc,$_usn3[_usn4..] Asc Skip $`7esn`[$_usn4][.e0] Limit Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..] Union All Match #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) Remove Extract(`6esn` In $`6esn`[``..][Count(*)..] Where False Contains 0 Contains $`6esn`|0X7['s_str'..][01..]).#usn8,{#usn7:.e0 Is Null Is Null,#usn7:0.0 Is Null Is Null}.#usn8!,[$@usn5 Ends With @usn5 Ends With 0xabc,12.0 In 123.654 In _usn4].`3esn`? Create ((`4esn` :_usn3{usn2:01[..0Xa][..12],`1esn`:999[..`1esn`][..07]})-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})),((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Union Detach Delete $usn2[0.e0]"), + octest:ct_string("Create ((:@usn5{`5esn`:`4esn` Starts With 0e0})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]})) Create (#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}),`8esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`))"), + octest:ct_string("Unwind $usn1 As `5esn` Union All Remove All(#usn7 In 9e0[$1000] Where 12e12 Starts With $0 Starts With $`2esn`).`8esn`?,``:@usn5,Single(`8esn` In 123456789 =~@usn6 Where ``[9e12][$999])._usn4! With Distinct *,0.e0 Is Not Null Is Not Null As _usn4 Order By $_usn3 Is Not Null Desc,[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)] Desc,Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Ascending Limit 1.e1[..123456789][..999] Where _usn4 Is Not Null Union Create `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),`8esn`=((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[``:`5esn`|:usn2{`5esn`:_usn4[0]}]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})) Optional Match (`8esn` {usn1:0e0 =~7 =~12.0,`7esn`:usn2 Starts With .0})<-[:_usn4]->(_usn4 {usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}),(@usn5 :`1esn`:_usn4)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})-[? *01..123456789]-(_usn3 :`6esn`:_usn3) Where 12.0 In 123.654 In _usn4 With $usn1,`1esn` Contains $999 Contains 0.0 As @usn6,$`6esn`[0e0..][010..] Order By 0.0 Ends With $`7esn` Descending,`3esn`[7..0.e0][0.0..123456789] Asc Where ``[9e12][$999]"), + octest:ct_string("Delete 7 Is Not Null Match `5esn`=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']}),`7esn`=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}) Return Distinct .e1[.e1..`1esn`] As @usn5,$`4esn`['s_str'..] As ``,{``:00 In @usn6 In 0}[(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})] As `5esn` Skip .e1[..$`3esn`][..01] Union All Delete [$#usn7 Ends With 's_str' Ends With 0X7] Starts With (usn1 :@usn6)<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}) Starts With [`5esn` In `7esn`[$usn2..][$123456789..] Where $`1esn` Starts With Count(*)] Union All With Distinct .e1 In 0,Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])[[00[12..$`6esn`],$`4esn`['s_str'..]]..] Skip `3esn`[$123456789..][$usn2..] Where $@usn5[..$#usn7] Return *,Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) Contains [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where .0 Is Null Is Null|`3esn`[0x0..]] Contains [999[12.e12],#usn8 Is Null Is Null,1.e1 =~$_usn4] As `1esn`,12e12[12.0][False] Skip $`4esn`[`4esn`][Count(*)]"), + octest:ct_string("Delete $`1esn` =~999,`5esn` Contains `5esn` Contains $_usn3,$1000 Is Not Null Return Distinct *,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] As `1esn` Union All Create @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Unwind 010 Starts With 0 Starts With 0.0 As `5esn` Unwind 999[..`1esn`][..07] As `8esn` Union Create `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})),usn2=(#usn7 {_usn4:1.e1[`8esn`]})<-[usn2{`2esn`:$12 Starts With $usn1}]->(:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]})"), + octest:ct_string("With `3esn`[7..0.e0][0.0..123456789] As _usn4,$usn2[0.e0] As _usn3 Limit 9e1 Contains $999 Where @usn5 Is Not Null Unwind [@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] As #usn8"), + octest:ct_string("Create `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),({`1esn`:1.e1[`8esn`]})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`) Union Unwind 1.e1 Starts With 9e12 As `8esn` Unwind `5esn`[Count ( * )] As @usn6"), + octest:ct_string("Unwind [#usn8 In `7esn` Where usn2[07..][.0..]|$usn1 Ends With _usn4 Ends With `2esn`] Contains (_usn3 {#usn7:1000[12e12][`5esn`]})-[`3esn`?:`3esn`]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0}) Contains Extract(`3esn` In `2esn`[..01][..True] Where usn1 In ``) As usn1 Return *,9e0[..123456789][..$`3esn`] As #usn7 Order By 999 In 0e0 Ascending Merge ((({usn2:_usn3[`2esn`..0X7][0.e0..$`3esn`]})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]-(_usn3 )<-[? *..010{usn1:9e1[_usn3]}]->(`5esn` {`4esn`:0x0[usn1..usn1],usn1:$`5esn`[0X7..010][`7esn`..'s_str']}))) Union With *,All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] As `3esn`,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[usn2(Distinct #usn7 Contains $0 Contains $usn2,0.e0)..] As @usn6 Order By [`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})] Ascending,{usn2:`7esn`[$usn1..]['s_str'..],usn2:_usn4 Contains `` Contains 1.e1} Is Not Null Is Not Null Ascending,None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0) Ascending Skip $`8esn`[999] Union All Optional Match ((:#usn8:`1esn`)-[ *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})),`8esn`=(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) Where @usn6[9e12];"), + octest:ct_string("Return 01[$`7esn`..$@usn6] As `2esn`,(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]} Order By `4esn` Contains 9e0 Desc,$12 =~0X7 =~0x0 Ascending,Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 1.e1 Ends With $_usn4 Ends With #usn7|$7 Starts With 12.e12 Starts With $@usn6) Starts With (:``:usn2)<-[`2esn`:`8esn`{`7esn`:$`4esn` Is Null Is Null}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]}) Starts With [01234567[Null..$_usn3],0[1e1][$usn1],False[..$`5esn`][..1e1]] Descending Limit None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]) Is Null Merge `7esn`=(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]}) On Match Set @usn6 =.e0 Is Null Is Null,_usn4(#usn7 Starts With $123456789 Starts With 12e12).`7esn`! =Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 1.e1 Ends With $_usn4 Ends With #usn7|$7 Starts With 12.e12 Starts With $@usn6) Starts With (:``:usn2)<-[`2esn`:`8esn`{`7esn`:$`4esn` Is Null Is Null}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]}) Starts With [01234567[Null..$_usn3],0[1e1][$usn1],False[..$`5esn`][..1e1]] On Match Set `2esn`+=Any(`6esn` In $`6esn`[``..][Count(*)..] Where 1e1 Ends With $`7esn` Ends With .0) Is Not Null Merge `2esn`=(:#usn8:`1esn`$`7esn`) On Match Set `8esn`+=`2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..] Union All Return Distinct *,[usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null As #usn8 Order By @usn5(Distinct) =~[_usn3[`5esn`..][usn2..],$#usn7 =~`2esn`] =~1.e1 Ascending Skip (:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] Limit 0Xa[010..$0][$`2esn`..999]"), + octest:ct_string("Merge (`6esn` :@usn6)-[usn2?:`3esn`]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) On Create Set #usn8 =$_usn4[$`6esn`..] Match #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) Union With 's_str' Order By $12[9e0..$999] Asc,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip #usn8[`8esn`..] Limit .12 In `8esn` In $#usn8 Where 12.e12 Contains #usn7 Contains $_usn4 Detach Delete 9e0[Count(*)..0.12][$`1esn`..12.0] Return *,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Is Not Null As `3esn`,$12 Starts With $0 Starts With $`8esn` As `3esn` Limit {_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null"), + octest:ct_string("Create (_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1}) Union All Create (`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]}),usn1=(((`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]-(#usn8 :`6esn`:_usn3)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1))) Merge #usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) On Create Set @usn6+=$`1esn` =~1e1 On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Union Return 9e1 Ends With Count(*) Ends With $7 As `6esn` Limit _usn3 Contains 9e12 Contains `8esn` Remove [999 Is Not Null Is Not Null,123.654 In $`7esn`].`6esn`,[#usn7 In 9e1[$`1esn`..] Where $`7esn`[$_usn4][.e0]|.0[..'s_str'][..01234567]].usn1?,[`6esn` In $`6esn`[``..][Count(*)..]|.e12 Starts With $12 Starts With .e12].`7esn`! Optional Match _usn3=(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`}),`5esn`=((`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})) Where $`7esn`"), + octest:ct_string("Merge `8esn`=((#usn8 :_usn3)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)) Remove `6esn`(Distinct 0x0 Starts With $`6esn`,.e12[@usn6..][010..]).`8esn`!,[@usn6 In 010[`5esn`] Where 1.e1[$usn1]|_usn3[0x0]].usn2? Union Create `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),({_usn3:@usn6 Contains .12 Contains $usn1}) Return Distinct *,12[None(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)..`5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12])][`5esn`(`2esn`[..01][..True])..(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})<-[? *7..]-(#usn7 :``:usn2)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})] As usn1,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) As `7esn`"), + octest:ct_string("Unwind 0x0[12e12..$`7esn`] As `7esn` Union All Remove (usn1 :@usn6)<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}).@usn5! Union All Create @usn5=((({usn2:`2esn`[..$_usn3]})-[``?:_usn4]-(_usn4 :_usn4)<-[`6esn`? *..010{usn2:Null[..0]}]-(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0})))"), + octest:ct_string("Merge ((#usn7 :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) On Match Set All(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True]).`1esn`? =$usn2[`2esn`..$`1esn`],{usn1:#usn8 =~.e0,_usn3:$_usn4 Is Null Is Null}.`1esn` =$`7esn`[.e1][12.0] Remove usn2(Distinct _usn3 Starts With 12e12 Starts With `5esn`)._usn3!,{`6esn`:$`2esn` Starts With .0 Starts With `1esn`}.#usn7!,{`6esn`:Null =~`6esn`}._usn3! Union Delete [`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``|\"d_str\" Is Not Null] =~All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) =~[01 Ends With 0Xa Ends With 0X7],[#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Remove Any(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]).@usn6?,@usn5(Distinct Count ( * ) Ends With $123456789).`6esn`? Union All With 12.e12[..$`6esn`] As `7esn`,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] As ``,1.e1 Contains `6esn` Contains 0.e0 Skip Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])] Where 999 Contains $1000 Detach Delete Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null) Is Not Null Is Not Null,010 Starts With $`` Starts With 0e0"), + octest:ct_string("Match ((#usn7 :_usn3$usn1)-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(`3esn` :usn2{`6esn`:#usn8 Is Null})),`4esn`=({`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}) Where .e0 Match (((`6esn` :#usn7:`5esn`)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(_usn4 :#usn7:`5esn`))),`1esn`=(`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) Detach Delete False[..$`5esn`][..1e1],`4esn` Contains 9e0,12[$`5esn`..][False..] Union All Delete 0xabc =~@usn5 =~$usn1,[$usn1 Ends With _usn4 Ends With `2esn`][@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)..[#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1]][Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..])..Extract(#usn7 In 9e1[$`1esn`..] Where $999[``])],1000[$7..][_usn4..] With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Order By 1.e1 In 1000 In _usn3 Desc,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Descending,123.654 Is Null Is Null Asc Where _usn4[`7esn`] Union All Optional Match ((`` {#usn7:#usn8 Is Not Null Is Not Null})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`2esn` :@usn5)<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Remove {`6esn`:Null =~`6esn`}._usn3!,[usn2 In False[$usn1][0x0] Where `4esn` Starts With 0e0].`6esn`!,[010[`5esn`],0Xa[..Count ( * )][..$123456789]]._usn3"), + octest:ct_string("Detach Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),{@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Delete 9e1[.12][`7esn`],$12[$usn1..][Count(*)..] Union Merge ((:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Detach Delete All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[usn2(Distinct #usn7 Contains $0 Contains $usn2,0.e0)..]"), + octest:ct_string("Optional Match #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Match #usn8=((`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5))"), + octest:ct_string("Merge ((:usn2{``:Count(*)[9e12..12.0],#usn7:`2esn`[$12..]})) Merge `4esn`=(:#usn7:`5esn`{`4esn`:$``[..\"d_str\"][..$#usn8]}) On Create Set #usn8(Distinct 0[$`5esn`],Count(*)[9e12..12.0]).`7esn`! =123.654 In $999 In _usn3 On Match Set `1esn` =0x0[@usn6..][01..],`5esn`(Distinct $#usn7 Contains $`7esn` Contains .e12).@usn6! =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`) Is Null Union All Return Distinct *,[usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null As #usn8 Order By @usn5(Distinct) =~[_usn3[`5esn`..][usn2..],$#usn7 =~`2esn`] =~1.e1 Ascending Skip (:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] Limit 0Xa[010..$0][$`2esn`..999];"), + octest:ct_string("Create `3esn`=(`` {`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']})<-[`6esn`? *00..0Xa]->(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}),usn1=((`1esn` {``:0.0 Is Not Null,`1esn`:``[$`3esn`]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})) Unwind $123456789 Starts With 0.12 Starts With Null As #usn7 Union All Delete 12[..$999][..$`2esn`],Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])] Create `2esn`=(((:`6esn`:_usn3)<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})-[#usn7?:`7esn`|:`2esn` *..07]-(#usn7 {#usn7:1.e1 Starts With 9e12}))),((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(_usn3 :usn1:`3esn`)<-[`7esn`? *..010{usn2:12 Ends With Count ( * ),#usn8:`8esn` Contains `2esn` Contains .0}]->({`6esn`:'s_str' Contains 12.e12 Contains $`4esn`})) Remove Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 7[0e0..]).`8esn`!,(_usn4 :`1esn`:_usn4)<-[?:`6esn`|:#usn8 *00..0Xa]-(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]}).@usn5! Union Merge usn1=(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[usn1:_usn4]-(:`4esn`:`6esn`) On Match Set _usn3 =$``[01234567..][.0..];"), + octest:ct_string("With `2esn`[$usn2][12.0],Single(#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6])[Filter(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])..] As _usn4 Order By $`7esn`[..@usn6] Ascending Limit [`2esn` Is Null] Is Null Is Null Where usn1[...e12][..1.e1] Union All Unwind 0.12[$0..$usn2] As `8esn` Remove {_usn3:usn2 Ends With .e1 Ends With $`5esn`}.#usn8,(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})<-[@usn5:_usn4 *0x0..]->(:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)._usn3 Return 0X7[`2esn`..] Order By 0[@usn5..$#usn7] Ascending"), + octest:ct_string("Merge (`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) Return *,`6esn` =~Null As `4esn`,.e0 Starts With $@usn6 Starts With $7 As `5esn` Order By [`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]] In (`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(:#usn7:`5esn`)-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:#usn8:`1esn`$`7esn`) In {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]} Asc,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] Desc Skip $`3esn`[$_usn4..0Xa] Union All Optional Match #usn8=(`5esn` :`7esn`)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1)<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}),usn2=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) Remove Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|@usn5 Contains 9e0)._usn4? With Distinct *,`3esn`[...e1] Where 9e0 Contains $12 Contains `3esn` Union All With Distinct 0.e0['s_str'..][01234567..] As `1esn`,None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,.0[$``..0X7] Skip usn2 =~$`` =~$`8esn` With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Where 12.e12 Ends With $`` Unwind (@usn6 :`8esn`)<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`}) Ends With #usn8(Distinct 12.e12 Contains #usn7 Contains $_usn4,01[`3esn`..][Count(*)..]) Ends With [`5esn`[..True][..0.e0],12 In $usn1 In 7,$`8esn`[123456789..][$@usn5..]] As `6esn`"), + octest:ct_string("With Distinct 1.e1[$`3esn`][0Xa] As @usn5 Order By (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Ascending,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null Descending,9e12 =~@usn6 Asc Skip usn1[$@usn5] Where $@usn6[00] Union Delete All(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0)[(:#usn7:`5esn`)<-[#usn8? *0Xa]-(`5esn` :`5esn`{#usn7:``[$`3esn`]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc})..],9e1[`1esn`..0][999..1e1],Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5) Contains [`8esn` In 123456789 =~@usn6 Where .e12[@usn6..][010..]|Count(*) Is Not Null Is Not Null] Contains ({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})"), + octest:ct_string("Match @usn6=(usn2 :_usn4) Where `2esn` In 7 Merge ((@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})) On Create Set _usn4+=010 Starts With $`` Starts With 0e0 On Create Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null Unwind {`8esn`:9e12 =~@usn6,`1esn`:999 Contains 0 Contains $`5esn`}[`4esn`()] As usn2;"), + octest:ct_string("With 9e12[..`3esn`][..0X0123456789ABCDEF] As `5esn`,`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] As usn1 Order By .e1[..$`3esn`][..01] Ascending,'s_str' Is Not Null Descending Where $#usn7[..$`4esn`][..01] Optional Match (((`6esn` :#usn7:`5esn`)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(_usn4 :#usn7:`5esn`))),`1esn`=(`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) Merge `8esn`=(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) On Match Set `3esn`+=[_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1|999 Contains $1000] Starts With Single(`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``),`2esn`+=\"d_str\" In @usn5 In $@usn5 On Create Set `7esn` ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]} Union All Remove Single(#usn7 In 9e0[$1000] Where Count ( * ) In True In @usn5).`3esn`,{`3esn`:9e1 Ends With Count(*) Ends With $7}._usn4!,(`` :`7esn`)-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(usn2 :`5esn`).`2esn`! Unwind True Contains 's_str' Contains $usn1 As _usn4 Merge `4esn`=({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) Union All Create _usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4)))"), + octest:ct_string("Return Count ( * ) In True In @usn5 As `2esn`,$_usn3[$12] Order By $@usn6 =~0xabc =~$999 Descending,Null Ends With _usn4 Ends With 0.0 Asc,`3esn`(Distinct $123456789[...12][..@usn6])[{usn2:$`2esn` Is Null,#usn8:.0 Is Null Is Null}][#usn7(Distinct $@usn6 Is Not Null Is Not Null,``[7.._usn3])] Asc Skip usn2 =~7 Limit 0[@usn5..$#usn7] With *,Extract(`6esn` In $`6esn`[``..][Count(*)..] Where $@usn5 Starts With `5esn` Starts With 01234567|0.e0[..$7]) Is Null Is Null Skip 0xabc In 123456789 In 0x0 Limit _usn4 Starts With 1000 Starts With $usn2 Where 123.654[$0..0X7][Null..#usn8] With Distinct 0e0[01][$`7esn`],'s_str'[0..] As `4esn`,Filter(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) =~{#usn7:1000[12e12][`5esn`]} As _usn4 Skip 0x0[$0][7] Limit None(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])[Any(`3esn` In `2esn`[..01][..True] Where $`3esn`[..0xabc][..$7])][$#usn7] Where $`7esn`[$_usn4][.e0] Union With Distinct [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`) Merge (_usn3 :`7esn`) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] On Create Set #usn7+=Null[.12..12e12],Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]).`1esn`! =[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)],@usn6 =usn2[1.e1]"), + octest:ct_string("Match (:usn2)<-[? *01..123456789{`8esn`:usn2 =~7,@usn5:`6esn` Ends With _usn4 Ends With False}]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`4esn`:usn2]->(`3esn` :_usn4),(({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn4?:@usn6|:`7esn`]-({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn3?:_usn3|:`7esn`]->(`3esn` {`8esn`:`7esn` In 010 In usn1})) Where 00 Ends With `` Ends With 12.e12 Match (((`6esn` :#usn7:`5esn`)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(_usn4 :#usn7:`5esn`))),`1esn`=(`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) Create (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3),(@usn6 :`4esn`:`6esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`2esn`?:`6esn`|:#usn8{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`}]-(_usn3 {_usn3:0.12 Starts With $`8esn` Starts With @usn5}) Union With Distinct (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Unwind Extract(@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1) Is Not Null As `1esn` Unwind Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[{`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}] As #usn8 Union All Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] On Create Set `6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn1+=`4esn`[$_usn3..$`7esn`];"), + octest:ct_string("Optional Match `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),(`2esn` $`6esn`) Delete `5esn`(Distinct .12[123.654..]),.e1[..$`3esn`][..01],9e12[..1e1][..'s_str'] With $usn1,`1esn` Contains $999 Contains 0.0 As @usn6,$`6esn`[0e0..][010..]"), + octest:ct_string("Unwind 123.654[$@usn5..] As @usn5"), + octest:ct_string("Match (`3esn` {_usn4:123.654 In 12})-[`4esn`?:_usn4 *7..]-(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})<-[ *00..0Xa]->(#usn7 :usn1:`3esn`),(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]}) With 's_str' Where 's_str'[0..] Return *,[00[12..$`6esn`],$`4esn`['s_str'..]] Is Null,9e1[$#usn8][$1000] Limit $`3esn`[..$1000][..$123456789] Union Match (((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))),({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}) Where 1000[0e0][1e1] Merge (:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]})<-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(`2esn` :`1esn`:_usn4) On Match Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null On Create Set Any(#usn7 In True Contains 's_str' Contains $usn1 Where $12[9e0..$999]).`5esn`! =1.e1[12..][$`4esn`..],Any(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null).`2esn` =All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]) =~All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where .e12[..999][..@usn5]) =~Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4),`2esn` =1e1 Ends With $`2esn` Union With 0Xa[$`8esn`..][$_usn4..],0e0[``]"), + octest:ct_string("Unwind 0xabc =~@usn5 =~$usn1 As `8esn`"), + octest:ct_string("Return Distinct 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] As #usn8,(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null},$#usn7 =~`2esn` As `4esn` Limit Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Remove #usn7:usn2,[07[_usn3..][`6esn`..],$usn1 Ends With _usn4 Ends With `2esn`,False[$`4esn`..]].`3esn`?,[`6esn` Ends With _usn4 Ends With False].`4esn`!"), + octest:ct_string("Unwind (`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Is Not Null As `4esn`"), + octest:ct_string("Remove (:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}).`6esn`!,[01 Is Null,9e1[..123456789],010 Starts With $`` Starts With 0e0].`6esn`?,(:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[usn2 *0X0123456789ABCDEF..]->(usn2 :`7esn`)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}).`5esn`? Return *,[`8esn`[..$#usn8],1.e1 Starts With 9e12] Ends With [`6esn` In $`6esn`[``..][Count(*)..]|.e1[12.0..]] Ends With Any(usn2 In 7[12]),$`6esn` Starts With .e12 Starts With $`1esn` As @usn6 Skip $`5esn`[$`3esn`..] Limit Single(@usn6 In 010[`5esn`] Where Count(*)[9e12..12.0])[(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)][`7esn`] Union All With Distinct Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],usn2[12.e12..] Skip @usn5[0.0..0X7] Limit 07 Where 12[123.654..] Unwind 12e12 In 123456789 As `7esn`"), + octest:ct_string("Delete All(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0)[(:#usn7:`5esn`)<-[#usn8? *0Xa]-(`5esn` :`5esn`{#usn7:``[$`3esn`]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc})..],9e1[`1esn`..0][999..1e1],Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5) Contains [`8esn` In 123456789 =~@usn6 Where .e12[@usn6..][010..]|Count(*) Is Not Null Is Not Null] Contains ({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]}) Union With *,00[False..0e0] As _usn3 Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc Skip (`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}) =~[12 In $usn1 In 7] =~Filter(@usn5 In 's_str'[0..] Where 0.e0) Limit [_usn3 Ends With 7 Ends With $`1esn`,True Contains .e12,usn2 Is Not Null] Contains [$`2esn`[.0..][0.0..]] Contains (`6esn` :`8esn`)<-[_usn3 *0X0123456789ABCDEF..]-(#usn8 :`2esn`)-[`7esn`:#usn8|:`3esn` *0..01{`3esn`:07[_usn3..][`6esn`..],@usn6:``[usn1][`5esn`]}]->(:_usn3{_usn4:.e1[7..][9e0..]}) Where `2esn` Starts With $`7esn` With Distinct 999[@usn5..][Null..] Limit None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Where @usn5 Contains 9e0 Union All Optional Match `1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}))"), + octest:ct_string("With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Where 12.e12 Ends With $`` Delete count($`4esn`[`8esn`],`4esn` Is Not Null Is Not Null) =~Filter(@usn5 In 's_str'[0..] Where _usn3[0x0]),9e1[$`1esn`..],$usn2[`2esn`..] Union All Delete #usn8 =~.e0,True[`1esn`...e1][00..7],(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}) Union All Create (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}))) Detach Delete Extract(@usn6 In 010[`5esn`] Where 00[$usn1..]|_usn3[$usn2..][$``..])[Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])],_usn4[$usn1..01234567][123.654..`5esn`],None(#usn7 In 9e0[$1000] Where $_usn3 Is Null) In [@usn5 In 's_str'[0..] Where $#usn8[12.e12..`8esn`][12.0..0.0]|`4esn` Ends With 12 Ends With .12] In [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12];"), + octest:ct_string("Merge ((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) On Create Set `5esn` =$1000[$`4esn`..False],`6esn` =[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`],`2esn` =12.0 Is Null Create (`6esn` {`2esn`:$`3esn` Ends With 01234567}),usn2=({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2)<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(_usn4 :@usn5) Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3) Union All Unwind [#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]][Any(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..])..Single(usn2 In False[$usn1][0x0] Where 9e1 Is Not Null Is Not Null)] As @usn6 Union All Unwind True[$_usn3..] As usn2"), + octest:ct_string("Match ((#usn7 {`6esn`:$`2esn` Contains Count(*)})-[?:_usn4]->(`2esn` :usn2)) Detach Delete (`2esn` :usn1:`3esn`)-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})<-[?:`3esn`]-(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})[({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})],0X7 In $#usn7,Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 999 Contains $1000)[(`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8})][#usn8($1000 Is Not Null,$`5esn`[0X7..010][`7esn`..'s_str'])] Union Unwind 07[999] As @usn6 Merge ``=(:_usn3{`7esn`:$999 Ends With .e0})<-[`8esn`?:`2esn`|`4esn`{usn2:#usn8[`6esn`..][$``..]}]-(@usn6 {`6esn`:$`5esn` =~usn1,`5esn`:$`` Starts With $1000 Starts With @usn6})-[?{_usn3:010[`5esn`],_usn4:#usn8 =~.e0}]-(#usn8 :`3esn`{`5esn`:$@usn6 Ends With `1esn`}) On Create Set Filter(usn2 In 7[12] Where $`6esn`[1.e1][$_usn3]).``? =0Xa[$`8esn`..][$_usn4..],_usn4+=0X0123456789ABCDEF In $7 On Create Set Single(@usn6 In 010[`5esn`] Where 123.654).`6esn`? =#usn7 Starts With $123456789 Starts With 12e12,`2esn` =Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[..[#usn7 In True Contains 's_str' Contains $usn1 Where Count(*) Ends With usn1]][..Filter(usn2 In 7[12] Where #usn7[0.e0..]['s_str'..])] Return Distinct .e1 =~_usn4 =~_usn4,`6esn`[..$`4esn`] As `5esn`,True[0xabc..01234567][$`8esn`..$@usn6] As #usn7 Order By @usn5[0..] Descending,Count(*) Is Null Ascending,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] Descending Union With Distinct `2esn` Starts With 12.e12 Starts With 12.0 As _usn4,$``[..\"d_str\"][..$#usn8] As `6esn` Order By $`3esn` Ends With 01234567 Ascending,`3esn`[0X0123456789ABCDEF..][07..] Asc Skip #usn8[`8esn`..] Limit $_usn4 Starts With $1000 Starts With 12 Where .e12[@usn6..][010..] Create @usn5=(({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(usn1 :_usn3{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})),(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})"), + octest:ct_string("Remove {`4esn`:0.0 Contains #usn7,`1esn`:$999[``]}.`5esn`? Remove All(`8esn` In 123456789 =~@usn6 Where $`5esn` =~$`8esn` =~usn2).@usn6?,Filter(@usn6 In 010[`5esn`] Where @usn6[9e12]).`2esn` Detach Delete $@usn6[_usn3..][$999..],$usn2 =~0.e0 =~@usn6"), + octest:ct_string("Merge ({`1esn`:1.e1[`8esn`]})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`) On Create Set @usn6+=7 Ends With 01234567 Ends With 0Xa,`2esn` =0Xa =~False =~@usn5 On Match Set `5esn` =$1000[$`4esn`..False],`6esn` =[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`],`2esn` =12.0 Is Null Union Remove Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|@usn5 Contains 9e0)._usn4? Create ((#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[`7esn`? *0Xa{@usn5:123.654 Is Not Null}]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`})) Union Return Distinct *,12[``...e12] As `6esn` Limit 0x0[Count(*)..@usn6][Count(*)..0Xa] Delete 0X0123456789ABCDEF[..0xabc],All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where False[$usn1][0x0]) In [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null|9e12[9e1]] In [12.0 Is Null,$_usn4[..$_usn4][..`7esn`]],$`4esn` Starts With 0 Starts With `7esn` Merge _usn3=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']}) On Match Set Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]|$``[..\"d_str\"][..$#usn8]).@usn6 =[$usn1[`2esn`..][$`2esn`..]][(`3esn` :usn2)-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})..`2esn`(Distinct $@usn6 Is Not Null Is Not Null,Count ( * ) Ends With $123456789)],None(#usn8 In `7esn` Where ``[7.._usn3]).@usn6? =`6esn`,Any(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])._usn4! =`` Is Null"), + octest:ct_string("Unwind (#usn7 {`3esn`:1.e1 In 1000 In _usn3,#usn7:`2esn` Starts With .e1 Starts With 9e12})-[? *..010{#usn8:False Is Null}]-(:`5esn`)[Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..])] As _usn3 With *,`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] As @usn5 Where 07 Contains `3esn` Contains `7esn` Detach Delete 999[12.e12] Union Remove Any(#usn7 In 9e1[$`1esn`..] Where 999 In #usn8 In $``).`7esn` Merge (:`4esn`:`6esn`{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]-(:`6esn`:_usn3)<-[@usn5? *999..{usn1:.e12[$@usn6..00][01234567.._usn3],`1esn`:`7esn` Contains 9e0}]-({@usn6:999 Contains 0 Contains $`5esn`,#usn7:999[..`1esn`][..07]}) Delete Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null],9e1 =~123456789 =~999,.e12[$@usn6..00][01234567.._usn3]"), + octest:ct_string("With Distinct $usn2 =~0.e0 =~@usn6 As _usn4,9e12[..1e1][..'s_str'] As @usn5 Order By 0X0123456789ABCDEF Is Not Null Is Not Null Asc,0X0123456789ABCDEF Is Not Null Is Not Null Asc Limit $7 In $usn1 In 999 Where 12.e12 Is Not Null Is Not Null"), + octest:ct_string("Merge `4esn`=({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) Match ((`2esn` :_usn3)-[? *0xabc{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})),({@usn5:$`5esn` Is Not Null Is Not Null})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Unwind 01[`3esn`..][Count(*)..] As _usn4"), + octest:ct_string("With Distinct `2esn` Starts With 12.e12 Starts With 12.0 As _usn4,$``[..\"d_str\"][..$#usn8] As `6esn` Order By $`3esn` Ends With 01234567 Ascending,`3esn`[0X0123456789ABCDEF..][07..] Asc Skip #usn8[`8esn`..] Limit $_usn4 Starts With $1000 Starts With 12 Where .e12[@usn6..][010..] Create @usn5=(({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(usn1 :_usn3{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})),(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]}) Union Merge ``=(:_usn3{`7esn`:$999 Ends With .e0})<-[`8esn`?:`2esn`|`4esn`{usn2:#usn8[`6esn`..][$``..]}]-(@usn6 {`6esn`:$`5esn` =~usn1,`5esn`:$`` Starts With $1000 Starts With @usn6})-[?{_usn3:010[`5esn`],_usn4:#usn8 =~.e0}]-(#usn8 :`3esn`{`5esn`:$@usn6 Ends With `1esn`}) On Match Set `7esn`+=$`5esn` Is Not Null,Any(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7])._usn3 =.e12[`2esn`..010],`8esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null Merge `8esn`=(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) Merge _usn3=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) On Match Set @usn6+=(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1+=999 Is Not Null Is Not Null"), + octest:ct_string("Detach Delete {#usn7:usn1 In ``}[None(`3esn` In `2esn`[..01][..True])..Extract(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..])] With 9e0[..123456789][..$`3esn`] Order By 01 Contains usn2 Contains 0X0123456789ABCDEF Desc Limit 00 =~Count ( * ) Return 123456789 =~$999 Order By $7[01..$123456789][#usn7..12.0] Descending,.12[..usn2][..12e12] Descending"), + octest:ct_string("Remove `5esn`:@usn5,{#usn8:$0[123.654..0.e0]}.@usn6!,{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF}.#usn8! Union All Match usn1=(((:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[@usn6:`7esn`|:`2esn` *..07{`6esn`:$_usn4 Is Null Is Null,``:1e1 Ends With $`7esn` Ends With .0}]-(`5esn` :`3esn`{``:`` Is Null,`8esn`:$@usn6[$0..9e12][.e12..Null]}))),(`2esn` :`1esn`:_usn4)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}) Create @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) Merge ((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})) On Create Set `2esn`+=0X0123456789ABCDEF In .12,`1esn` =$`7esn` In False In $`1esn`"), + octest:ct_string("Merge ((_usn3 :_usn4)) On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Return Distinct *,9e12 =~@usn6,`4esn` Contains 9e0 Order By 1000[..$1000] Descending Skip Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Limit {``:123.654 In $`7esn`}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..None(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6 =~#usn7 =~True)]"), + octest:ct_string("Match usn2=(:#usn8:`1esn`$`7esn`),`4esn`=(({#usn7:$@usn6[$0..9e12][.e12..Null]})) Where $``[..$#usn7][..`6esn`] Match (:`7esn`{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]}) Union Optional Match ((_usn4 :#usn7:`5esn`)-[`4esn`:`1esn`|`3esn` *12..]->({`7esn`:9e12 =~@usn6})),((:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[`1esn`:`8esn` *7..]-(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Where Count ( * )[$`5esn`..][$7..] Merge #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))) On Create Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] On Match Set Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa).@usn6! =0.e0 Is Not Null Is Not Null,`1esn` =07 In `6esn`;"), + octest:ct_string("Delete .e1[7..][9e0..],$`5esn` In _usn3 In 0.0 With 0x0[0.0] As ``,Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) Contains [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where .0 Is Null Is Null|`3esn`[0x0..]] Contains [999[12.e12],#usn8 Is Null Is Null,1.e1 =~$_usn4] As `1esn` Order By [#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Asc,usn2[12.e12..] Ascending,$@usn6 Is Not Null Is Not Null Desc Skip `5esn` Contains 1.e1 Contains .e12 Limit `7esn`[0x0][$`4esn`] Where `5esn` Contains #usn7 Contains 9e12 Union Unwind 07[999] As _usn3 Return Distinct 9e12[..`3esn`][..0X0123456789ABCDEF] As `5esn`,`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] As usn1 Order By $@usn5[`1esn`..][$999..] Asc,12 Starts With $123456789 Starts With .e12 Ascending,1.e1[$`3esn`][0Xa] Desc"), + octest:ct_string("Return Distinct 010 Is Not Null Is Not Null As `1esn`,9e12 Starts With 1e1 As `5esn` Order By 9e0[..123456789][..$`3esn`] Asc,$@usn6 Ends With `1esn` Descending,9e1[$#usn8][$1000] Descending Match ``=((:`3esn`{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})),(((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}))) Unwind 0[01234567..][0X0123456789ABCDEF..] As `4esn`;"), + octest:ct_string("Unwind $_usn4 =~$`1esn` =~`2esn` As #usn8 Create (((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),usn1=(`7esn` :`3esn`{`2esn`:999[123.654..$usn2][Count ( * )..0x0]})-[`2esn`?:usn1|`4esn` *00..0Xa]-(`4esn` :`4esn`:`6esn`) Merge ((`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})) On Match Set `1esn` =All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null"), + octest:ct_string("With Distinct *,usn1 Contains 010 As `6esn` Skip 999[@usn5..][Null..] Where `5esn` Contains `1esn` Contains usn1 Return 12.e12 =~0X0123456789ABCDEF =~1.e1 As `6esn`,.e12[`2esn`..010],.e0 Starts With $@usn6 Starts With $7 As `5esn` Order By Single(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) Contains Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0[1e1][$usn1]) Contains {`4esn`:9e1 Contains 12} Ascending Skip usn1 Limit 123456789 Contains 0Xa Union All Merge #usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})));"), + octest:ct_string("Optional Match ((`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})),`5esn`=(((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Union All With *,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Where .e1[12.0..] Create @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Return Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By 1000[$`2esn`..] Asc"), + octest:ct_string("Optional Match #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}),((:#usn7:`5esn`{_usn4:$usn2 =~9e1})<-[@usn5?:usn2 *0..01]->(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})) Where 9e1 Starts With Count ( * ) Merge (`2esn` :`1esn`:_usn4)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}) On Match Set `5esn`+=010[..7][..`4esn`],(`2esn` :@usn5)-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}).`4esn`! =$@usn6 Ends With `1esn`,`6esn` =.0[$``..0X7] Detach Delete 01[`3esn`..][Count(*)..],usn2[07..][.0..] Union All Create @usn5=(:@usn5{#usn7:12e12 In $`5esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})-[?*]-({`8esn`:`5esn` Contains #usn7 Contains 9e12}),`3esn`=(:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Return *,`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] As usn1,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] With .e1 =~_usn4 =~_usn4,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `5esn`,$`4esn` Starts With 0 Starts With `7esn` As usn2 Limit {@usn5:01[`3esn`..][Count(*)..]} Starts With Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str']) Where _usn3[`2esn`..0X7][0.e0..$`3esn`] Union Return Distinct `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,0xabc In .12 In 0Xa Descending,.0 Contains .e12 Contains 0 Desc Delete _usn3[12.e12..][`5esn`..]"), + octest:ct_string("Match (`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]-(#usn8 :`6esn`:_usn3)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]}) Where Count ( * ) In 0.12 Unwind 07 =~`4esn` =~$`1esn` As _usn3 Union Match ((`2esn` :_usn3)-[? *0xabc{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})),({@usn5:$`5esn` Is Not Null Is Not Null})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})"), + octest:ct_string("Return `1esn` Starts With 0X7 Starts With \"d_str\",$`4esn`[..$`8esn`][..Null] As #usn7,None(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With Filter(`5esn` In 0X7 In $#usn7 Where 0x0[0X7]) Ends With Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) As `4esn` Order By [123456789 =~12 =~'s_str',`2esn` Starts With 12.e12 Starts With 12.0,$`8esn`[..True][.._usn4]] Contains Filter(#usn7 In 9e0[$1000] Where `7esn`) Asc,None(#usn8 In `7esn` Where $`3esn` Contains $`1esn`) Starts With #usn8(0x0[Count(*)..@usn6][Count(*)..0Xa]) Ascending,_usn4 Contains $_usn3 Contains .e1 Asc Union All With Distinct *,`2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Order By $`2esn` Starts With 0.12 Starts With $12 Ascending,07 In `6esn` Desc,12[..0e0][...e1] Desc Skip #usn8[`6esn`..][$``..] Limit `3esn`[..0X0123456789ABCDEF][..0x0]"), + octest:ct_string("With `4esn` Is Not Null Is Not Null As `1esn`,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..]) Contains None(@usn5 In 's_str'[0..] Where 010 Is Null) Contains `2esn`(Distinct $`3esn`[$_usn4..0Xa],$`8esn`[123456789..][$@usn5..]),9e12[..`3esn`][..0X0123456789ABCDEF] As `5esn` Limit 0xabc[$999..][$usn1..]"), + octest:ct_string("Return Distinct `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By $1000[$@usn6][$_usn4] Desc Union All Match ((@usn5 )),(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-({`1esn`:#usn7[0]})"), + octest:ct_string("Merge `8esn`=(((`4esn` :`4esn`:`6esn`)<-[ *..07{`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn3{@usn5:$1000 Starts With $`7esn`})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]}))) On Match Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] On Match Set usn1 =$usn1 Starts With usn1 Starts With True Detach Delete True Contains 's_str' Contains $usn1,$`5esn`[..00] Union With Distinct *,`4esn` Ends With 12 Ends With .12 As usn2,`3esn`(`7esn`,0x0 Contains $`6esn` Contains `4esn`) Is Null Is Null As usn1 Order By usn1[..$@usn6][..00] Desc Skip 9e1[$`1esn`..] Where usn1[$@usn5]"), + octest:ct_string("Merge `1esn`=(`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) On Create Set [#usn8 In `7esn` Where 01 Ends With 0Xa Ends With 0X7|`8esn` Contains Count(*) Contains $#usn7].``? ={`5esn`:$`1esn` In .e0,``:`6esn` Ends With Count ( * ) Ends With Count ( * )} Is Null Is Null,`8esn`+=$7 Is Null,`7esn` =_usn4 In #usn7 Union All Remove Extract(@usn6 In 010[`5esn`] Where 0e0[``..$1000][$7..12.e12]|1000[0e0][1e1]).`6esn`?"), + octest:ct_string("Create ({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}) Remove Filter(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`).#usn7,[usn2 In 7[12] Where 12e12 Contains `2esn`].@usn5! Detach Delete $`8esn`[999],usn2 Ends With $`4esn`;"), + octest:ct_string("Remove Extract(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1|9e12 Contains $_usn3 Contains \"d_str\").usn1! Optional Match `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Where _usn3 Contains 9e12 Contains `8esn` Merge (((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) On Create Set _usn3+={@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Union Create ((:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[`2esn`{``:Null[..010][..1000]}]-(`` :usn1:`3esn`)-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})),((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})) With Distinct {`8esn`:9e12 =~@usn6,`1esn`:999 Contains 0 Contains $`5esn`}[`4esn`()],(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null} Order By [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Desc Limit $7 Starts With $`4esn`"), + octest:ct_string("Detach Delete 1e1 Is Null Is Null,01234567[$`2esn`][0Xa]"), + octest:ct_string("Optional Match `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Where _usn3 Contains 9e12 Contains `8esn` Delete 12 Starts With \"d_str\" Starts With 00,1e1 In 0.0 In 0X0123456789ABCDEF Optional Match ((`4esn` :@usn6)-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})) Where 0Xa Ends With $`3esn` Ends With $1000;"), + octest:ct_string("Return _usn4 Contains $_usn3 Contains .e1,$`4esn`['s_str'..] As `` Limit {`7esn`:False[$`4esn`..]}[{#usn8:.e1 Starts With 12.e12 Starts With `2esn`,`8esn`:0 =~1.e1 =~$#usn7}] Unwind [#usn8 In `7esn` Where .e0 Starts With $@usn6 Starts With $7|1000[12e12][`5esn`]] Ends With [`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8] Ends With [$``[..\"d_str\"][..$#usn8],$_usn4 Starts With $1000 Starts With 12,#usn7[.e0]] As `8esn` Remove Extract(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12|0x0[Count(*)..@usn6][Count(*)..0Xa])._usn3!,({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})<-[usn2?:`3esn` *00..0Xa]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})<-[`8esn`? *0Xa{#usn8:$``[True]}]->(_usn3 :`7esn`).`5esn`,Extract(`3esn` In 9e1 Contains $999 Where usn1[False..`5esn`][$1000..$12]).`7esn` Union All Unwind Extract(@usn5 In 9e0 Ends With $#usn8 Where $`8esn`[123456789..][$@usn5..]) =~None(#usn7 In True Contains 's_str' Contains $usn1 Where 's_str' Starts With 9e0 Starts With usn2) As `2esn`"), + octest:ct_string("With Distinct *,$`3esn`[.e1][_usn4] Order By 12[None(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)..`5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12])][`5esn`(`2esn`[..01][..True])..(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})<-[? *7..]-(#usn7 :``:usn2)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})] Descending Match `8esn`=((_usn3 :_usn4)) Where 0.0 Is Null Is Null Unwind 0[01234567..][0X0123456789ABCDEF..] As `4esn` Union All Remove `5esn`($`4esn` In 1.e1 In #usn7,0Xa[Count(*)..]).`2esn`,[$0[123.654..0.e0],01234567[Null..$_usn3]]._usn4!,{usn1:#usn8 =~.e0,_usn3:$_usn4 Is Null Is Null}.`1esn` Remove [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]|12[..$999][..$`2esn`]].`1esn`?,#usn7:`4esn`:`6esn`,Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12).`5esn`?"), + octest:ct_string("Remove _usn4(Distinct 0X0123456789ABCDEF Ends With 01 Ends With ``,$`3esn`[..0xabc][..$7]).`2esn`,`7esn`(`3esn`[0X0123456789ABCDEF..][07..],usn1 =~$`7esn`).usn1!,Filter(#usn8 In `7esn` Where $`3esn`[..0X0123456789ABCDEF][..7]).@usn5? Unwind $@usn5[`1esn`..][$999..] As `8esn` Union Match _usn3=((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7 *01..123456789]->(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})),``=((:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[`5esn`:#usn7|@usn5]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) Where 0x0[Count(*)..@usn6][Count(*)..0Xa] Remove Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12).`5esn`?,_usn3(0[$`5esn`],`2esn`[..$_usn4][...12]).`2esn`?,(usn1 :@usn6)<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})<-[?{`5esn`:123.654[$0..0X7][Null..#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]}]-(usn2 :`7esn`).#usn8 Create _usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Union Unwind usn2[12e12..]['s_str'..] As @usn6;"), + octest:ct_string("Return Distinct *,$`5esn` Is Not Null,usn2 Contains $0 Contains .0 Order By 0.e0[$`4esn`..`2esn`] Descending,$123456789[12e12..9e0] Asc,$_usn3[_usn4..] Asc Skip $`7esn`[$_usn4][.e0] Limit Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..] Union With Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By [Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] Ascending,None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) Descending Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]) Where @usn6 Is Not Null Is Not Null Create (`3esn` )-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]}) Remove Any(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0).usn1,All(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])._usn4!,7._usn4 Union All Remove All(@usn6 In 010[`5esn`] Where `7esn`[$usn1..]['s_str'..]).usn1!,All(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).`8esn` Unwind `4esn` Starts With 0e0 As `1esn` Return Distinct `` Starts With $123456789,$`4esn` Starts With $`4esn` Starts With $_usn3,9e1[$#usn8][$1000] Order By .e12[.12..] Desc,{@usn5:01[`3esn`..][Count(*)..]} Starts With Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str']) Desc,``[$`3esn`] Descending Skip {@usn5:\"d_str\"[True..]} In _usn4(0 =~1e1,$123456789 Contains $#usn8 Contains ``) In [999 Contains $1000,`2esn` =~.e12 =~0X0123456789ABCDEF,_usn4[@usn6..][$0..]]"), + octest:ct_string("Create ((`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Delete 0e0 Is Null Is Null,@usn6(0X7 In $#usn7,_usn4 Contains `` Contains 1.e1)[Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)..Any(#usn7 In 9e1[$`1esn`..] Where $`2esn` Ends With `6esn`)],`1esn`[0.12..][@usn6..] Union All Detach Delete $12[9e0..$999] With $#usn7 =~`2esn` As `4esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc Skip usn2 Is Null Is Null Limit @usn6 Is Not Null Is Not Null Where 's_str' Ends With `7esn` Ends With 010 Merge `8esn`=((_usn3 :_usn4));"), + octest:ct_string("With $@usn5 Contains 's_str' Contains \"d_str\" As @usn5 Union Merge ((`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})<-[`6esn`?:_usn3|:`7esn` *..010]->(:_usn3{_usn4:.e1[7..][9e0..]})<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->({`8esn`:`5esn` Contains #usn7 Contains 9e12})) On Match Set #usn8+=`8esn` In $1000 On Create Set `4esn` =123456789[..0e0][..$#usn7] Return *,False Is Null Order By 0X7[..$`8esn`] Desc,[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null Ascending,12.e12 Ends With `` Ends With 0 Desc Skip Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0)[..{`5esn`:0Xa[$`8esn`..][$_usn4..],_usn3:00[$usn1..]}][..Any(@usn6 In 010[`5esn`] Where 1.e1[$usn1])] Union Optional Match #usn7=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))) With Distinct *,999 Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains {_usn3:123.654 In $`7esn`} As `6esn`,.e0 Is Not Null Is Not Null As `7esn` Order By _usn3 In $`8esn` In @usn6 Desc Where `8esn` Contains Count(*) Contains $#usn7 Delete Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..]) Contains None(@usn5 In 's_str'[0..] Where 010 Is Null) Contains `2esn`(Distinct $`3esn`[$_usn4..0Xa],$`8esn`[123456789..][$@usn5..])"), + octest:ct_string("With Distinct _usn4 Contains `` Contains 1.e1,1000[..`2esn`][..$@usn6] As @usn6,0x0[@usn5][$#usn8] Order By $usn2[`5esn`..][01234567..] Asc,$`7esn`[.e1][12.0] Asc,$`5esn` =~usn1 Ascending Skip Count(*) Ends With usn1 Unwind 07 In 0Xa In usn1 As #usn8 Unwind 0x0[12e12..$`7esn`] As `7esn` Union All Detach Delete `4esn`[..$@usn6][..@usn6] Detach Delete @usn6[999..$_usn3][0.12..$@usn5] Union Create `3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))),usn2=(:#usn8:`1esn`$`7esn`) Return *,$@usn5 Order By ``[$`3esn`] Asc,[1000[0e0][1e1],12.0 Is Null Is Null] Is Not Null Is Not Null Asc,.e0 =~$`7esn` =~0X0123456789ABCDEF Descending Limit {`8esn`:usn2 =~7,@usn5:`6esn` Ends With _usn4 Ends With False} Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]] Ends With (_usn4 :_usn4)<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[ *..07{`6esn`:Count(*)[9e12..12.0]}]->(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12});"), + octest:ct_string("Merge #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})) On Match Set `5esn`(Distinct .12[123.654..]).`3esn` =01234567 In 123456789 In 12,`6esn` =[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null On Match Set usn2+=`6esn`[$`8esn`][9e1]"), + octest:ct_string("Detach Delete Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)[..`4esn`][..(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)] Return Distinct usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Skip $@usn6 Ends With `1esn` Limit 9e1 Ends With Count(*) Ends With $7 Union Delete `1esn` Contains $999 Contains 0.0,[#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) Return 12e12[0x0..12.e12] As `1esn`,.e1[7..][9e0..] As `4esn`,$#usn8 Starts With .e12 Starts With 1.e1 As `8esn` Order By $`5esn` In `2esn` In `2esn` Asc,0.0[..Count ( * )][..`1esn`] Ascending,[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )] Ascending Create (:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})"), + octest:ct_string("With Distinct $@usn5,0.12[0Xa][$`7esn`] As `4esn`,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As _usn3 Order By 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Asc,`6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] Desc Skip 01[$`7esn`..$@usn6]"), + octest:ct_string("Unwind None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]) Is Null As `8esn` Union With 0.e0 Is Not Null Is Not Null As _usn4 Limit \"d_str\" Is Not Null Is Not Null Unwind Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] As @usn6 Merge usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]})"), + octest:ct_string("Merge (((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}))) On Match Set _usn3:`7esn` Detach Delete #usn7[`8esn`..usn1][$999..`7esn`],{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`} Contains Filter(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5) Contains Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``),.0 Ends With 999 Ends With $`5esn`"), + octest:ct_string("Return Distinct *,`4esn` Contains 9e0 Order By Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Asc,12.e12[..9e1][..$_usn3] Descending,True In (#usn8 :`6esn`:_usn3)<-[`2esn`?:_usn4{#usn8:$12[9e0..$999]}]->({``:.e1 Starts With 12.e12 Starts With `2esn`}) Descending Unwind {_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]} Contains ({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}) Contains None(#usn8 In `7esn`) As `4esn` Union Optional Match (({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})),`6esn`=(({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Detach Delete 12[0e0],$``[01234567..][.0..] With *,None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0) Skip @usn6[..$@usn5] Where 12.e12 =~.0 =~usn1 Union All Return Distinct *,$`2esn` Starts With $@usn5 Starts With #usn7 As `6esn` Order By .e12 Starts With $#usn8 Starts With False Desc"), + octest:ct_string("Match `8esn`=((_usn3 :_usn4)) Union Merge ((({usn2:_usn3[`2esn`..0X7][0.e0..$`3esn`]})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]-(_usn3 )<-[? *..010{usn1:9e1[_usn3]}]->(`5esn` {`4esn`:0x0[usn1..usn1],usn1:$`5esn`[0X7..010][`7esn`..'s_str']}))) Detach Delete $0[123.654..0.e0],123.654"), + octest:ct_string("Merge `4esn`=(`4esn` :`7esn`)"), + octest:ct_string("Detach Delete (`3esn` :usn2)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null}) Is Null,$0[0Xa..$123456789],[$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][None(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..])..] Create ((_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`})<-[? *..010{`2esn`:'s_str'[0..]}]->(_usn3 :`5esn`)),(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Match (:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]}),usn2=((#usn7 {`6esn`:$`2esn` Contains Count(*)})-[?:_usn4]->(`2esn` :usn2))"), + octest:ct_string("Unwind $12 Starts With $usn1 As `3esn` Union Return [#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]) As usn2,(`5esn` :@usn6{usn1:'s_str'[0..]})<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})[All(#usn7 In 9e1[$`1esn`..] Where ``[$`3esn`])] As `3esn` Order By @usn6 =~999 =~@usn5 Ascending,$@usn5[..$#usn7] Descending,{`4esn`:12e12 =~$`7esn`} Is Not Null Is Not Null Desc Skip Count(*)[9e12..12.0] Return Distinct *,[`3esn` In `2esn`[..01][..True] Where 0.e0[1000.._usn4][.e1..usn1]|`5esn`[..123.654][...e12]] As `6esn`,$#usn8 Starts With .e12 Starts With 1.e1 As `8esn` Union All With Distinct .e12 Starts With $7 Starts With .0 Where $usn2[`4esn`..9e12] Merge `1esn`=((`2esn` {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})) On Match Set (:``:usn2{`4esn`:#usn7 Contains $0 Contains $usn2})<-[:`8esn` *0X7..]->(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2})<-[`2esn`? *01..123456789]-(`2esn` :@usn6).`8esn` =`7esn`[1e1] Match #usn8=(({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})<-[?:`3esn`*..]-(usn2 :``:usn2)-[`5esn`? *01234567..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})) Where .0[..'s_str'][..01234567]"), + octest:ct_string("Remove (_usn4 {`7esn`:#usn7[0.e0..]['s_str'..]})-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]}).`2esn` Union Return Distinct 0e0 Ends With 07 Ends With $`8esn` As `1esn`,0[01234567..][0X0123456789ABCDEF..] Order By (`1esn` :`3esn`{#usn7:12[..0e0][...e1]})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})[(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null)][{`2esn`:$999 Ends With .e0}..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]] Ascending,1.e1[..`4esn`] Ascending,0xabc Is Not Null Is Not Null Descending Limit _usn4[.12..$usn2][$_usn3..123.654]"), + octest:ct_string("Detach Delete Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1) With *,`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] As @usn5 Where 07 Contains `3esn` Contains `7esn` Unwind False[$usn1][0x0] As usn2;"), + octest:ct_string("Return Distinct *,.0 Contains .e12 Contains 0,1e1 Is Null Is Null As usn2 Optional Match (`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}),`7esn`=(((`` :`5esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`8esn`{`8esn`:usn1 Contains 010,_usn4:`5esn` Contains $`5esn` Contains 0X7}]-({#usn8:0xabc In 010 In #usn7}))) Match #usn8=(({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})<-[?:`3esn`*..]-(usn2 :``:usn2)-[`5esn`? *01234567..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})) Where .0[..'s_str'][..01234567] Union Detach Delete $usn2[0.e0]"), + octest:ct_string("With Distinct Extract(`6esn` In $`6esn`[``..][Count(*)..] Where 1.e1 Ends With $_usn4 Ends With #usn7|0xabc =~$@usn5) Contains {`5esn`:1.e1[`8esn`],`1esn`:.e0} Contains {usn1:$123456789 In 0.12} As #usn7,``[7.._usn3] As usn2 Skip [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Ends With `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Ends With [$`1esn`[``][07],`7esn`] Create `5esn`=(((:`1esn`:_usn4{#usn8:00[12..$`6esn`],@usn6:usn1[..$@usn6][..00]})-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1))) With Distinct $usn2[`5esn`..][01234567..] As #usn8 Order By .0 Ends With 999 Ends With $`5esn` Ascending,01234567 In $@usn6 In $#usn7 Desc Where .e0[01234567..$`8esn`] Union Match @usn6=(usn2 :_usn4) Where `4esn`[$_usn3..$`7esn`] Delete None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6) =~Single(`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8) =~(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]}),[_usn3 In _usn3 Contains _usn4 Contains $@usn5] In Single(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) In [9e12[9e1],999 Starts With `2esn` Starts With .e1] Union With Distinct *,[$usn1[`2esn`..][$`2esn`..]] Contains Extract(usn2 In 7[12] Where $_usn3 Is Null|.e12 Is Null Is Null),$#usn7 Contains $`7esn` Contains .e12 As @usn5 Order By 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Asc,`8esn` Is Null Desc Remove {``:.e12 Ends With 0Xa Ends With 0xabc}.usn2?"), + octest:ct_string("Detach Delete All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]) =~All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where .e12[..999][..@usn5]) =~Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4),`4esn`[.12][$@usn6] Unwind $`5esn` =~$`8esn` =~usn2 As `1esn` Create (:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"}) Union All With 9e0[..123456789][..$`3esn`] Order By 01 Contains usn2 Contains 0X0123456789ABCDEF Desc Limit 00 =~Count ( * ) Union All With *,All(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Is Not Null Is Not Null As `3esn` Limit `5esn`[$`7esn`..$@usn5] Where .e0 =~Null With $999 =~.0 As usn2 Limit 's_str' Ends With _usn4 Ends With 0e0 Where 0Xa[$`8esn`..][$_usn4..]"), + octest:ct_string("With Distinct .0[..'s_str'][..01234567] Order By {_usn4:01234567[Null..$_usn3],usn1:$123456789[12e12..9e0]} Desc,`1esn` Starts With 0X7 Starts With \"d_str\" Descending,9e1[$#usn8][$1000] Asc Skip Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`)[Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``)][Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 1e1 Contains 's_str' Contains `3esn`|$`2esn` Ends With `6esn`)] Limit _usn3 =~9e1 =~12e12 Unwind usn1 Ends With 0.0 As _usn3 Merge `6esn`=(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[@usn6:`1esn`|`3esn` *0X7..]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) On Match Set `4esn`+=$0 =~9e1 =~$`2esn`,_usn3 =Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] On Match Set Single(`5esn` In 0X7 In $#usn7 Where 123456789 =~$999).`5esn` =0[01234567..][0X0123456789ABCDEF..],All(`6esn` In $`6esn`[``..][Count(*)..]).`6esn` =1.e1 Starts With 9e12 Union Delete $@usn6 Ends With `1esn` Union All Remove [_usn3 In $`8esn` In @usn6,.e12 Ends With 0Xa Ends With 0xabc,.e1[12.0..]].#usn8,{_usn4:`5esn` Contains #usn7 Contains 9e12}.`1esn`!;"), + octest:ct_string("Unwind Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null] As `3esn` Unwind Extract(@usn5 In 's_str'[0..] Where 12 In $usn1 In 7) =~All(`3esn` In `2esn`[..01][..True] Where $`7esn`[.e1][12.0]) As @usn5 Union Merge ((_usn3 :_usn4)) On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Return Distinct *,9e12 =~@usn6,`4esn` Contains 9e0 Order By 1000[..$1000] Descending Skip Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Limit {``:123.654 In $`7esn`}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..None(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6 =~#usn7 =~True)] Union Match (({#usn7:$@usn6[$0..9e12][.e12..Null]})) Match `6esn`=(((:`6esn`:_usn3)<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(`3esn` :_usn4{`3esn`:12[..0e0][...e1],`4esn`:.0 Is Null Is Null})-[usn2 *..07]->(`` {_usn3:`5esn` Contains `7esn`}))) Where $_usn4[$`5esn`][`7esn`]"), + octest:ct_string("With *,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Return Distinct `` Starts With $123456789,$`4esn` Starts With $`4esn` Starts With $_usn3,9e1[$#usn8][$1000] Order By .e12[.12..] Desc,{@usn5:01[`3esn`..][Count(*)..]} Starts With Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str']) Desc,``[$`3esn`] Descending Skip {@usn5:\"d_str\"[True..]} In _usn4(0 =~1e1,$123456789 Contains $#usn8 Contains ``) In [999 Contains $1000,`2esn` =~.e12 =~0X0123456789ABCDEF,_usn4[@usn6..][$0..]] Union All Return Distinct *,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null Order By .e0 Starts With $@usn6 Starts With $7 Descending Skip [$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa) With Distinct _usn3[0x0],$@usn6 Is Null Is Null As `5esn` Where 12.0[$1000..][#usn7..] Remove [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]|12[..$999][..$`2esn`]].`1esn`?,#usn7:`4esn`:`6esn`,Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12).`5esn`?;"), + octest:ct_string("Detach Delete False[..$`5esn`][..1e1],`4esn` Contains 9e0,12[$`5esn`..][False..] Unwind .e0 Ends With $123456789 Ends With 0xabc As #usn7 Union All Delete True Starts With Null,`4esn`(Distinct Count(*) In 12 In `6esn`,Count(*) In 12 In `6esn`) =~{`7esn`:$@usn6[00]} =~[0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]];"), + octest:ct_string("Return 999[12e12..$_usn4] Order By Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,0X7[.0] Asc,$`3esn`[..0X0123456789ABCDEF][..7] Descending Limit #usn7 =~9e12 Union Detach Delete _usn3 Ends With 7 Ends With $`1esn`,(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})[..Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|Count ( * )[$`5esn`..][$7..])][..$usn2] Return Distinct ``[$`1esn`] Order By 123456789[12] Ascending,{usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}[[@usn5 In 9e0 Ends With $#usn8 Where 00 Contains Count ( * ) Contains 0x0]] Asc,Count ( * )[$`5esn`..][$7..] Desc Union With 01234567 In 123456789 In 12 As usn1,Count ( * ) In 123456789 In $@usn5 As _usn3 Order By #usn7 In 0.e0 Desc Skip [$#usn7 Ends With 's_str' Ends With 0X7,12e12 Ends With 0.0 Ends With usn1][Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $`6esn`[``..][Count(*)..])..Extract(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1|``[$`3esn`])][(#usn8 :`5esn`)<-[usn2?:`3esn` *00..0Xa]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})..{_usn3:_usn4 Is Null Is Null}] Where 0Xa[Count(*)..]"), + octest:ct_string("Merge ((`4esn` :`4esn`:`6esn`)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})) Create ((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})),@usn5=(({@usn5:$`5esn` Is Not Null Is Not Null})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1}));"), + octest:ct_string("Return Distinct *,$`7esn`[0.12] Limit 12[..0e0][...e1] Return *,`2esn`[..$_usn4][...12] As `6esn`,`1esn` Starts With 9e1 As `6esn` Order By 01 Ends With 123456789 Desc,1.e1[12.e12..] Desc,\"d_str\" Is Not Null Ascending Skip [#usn7 In 9e0[$1000] Where `6esn`[$1000][`3esn`]][Extract(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1|010 Starts With $`` Starts With 0e0)..] Limit @usn6 =~999 =~@usn5 Unwind 01 Ends With 123456789 As usn1"), + octest:ct_string("Optional Match `8esn`=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2) Where $0[0Xa..$123456789] Union Optional Match (`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Where #usn7[0.e0..]['s_str'..] Merge ((@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})) On Match Set #usn7+=`1esn` Remove None(_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`).`2esn`,(`5esn` :``:usn2)<-[?:`4esn`|@usn5{usn2:$@usn6[$`8esn`..][123456789..]}]->(:_usn4{`8esn`:01234567[Null..$_usn3]}).``?,Extract(usn2 In 7[12] Where .12[0X7..][12e12..]|0.0 Contains #usn7).`1esn`"), + octest:ct_string("Unwind 12e12[12e12][$#usn7] As usn2 Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) On Create Set #usn7+=.e0[..9e12][..07],`4esn`(True[$_usn3..],$999[``]).usn2 =123456789 Is Null Is Null,@usn5 =01[07..][1.e1..] On Create Set `5esn`+={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},usn2 =True Contains 0x0 Contains $_usn3 Delete $_usn4[9e0..][$1000..] Union Unwind (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] As `5esn` Return *,0.e0 =~00 As `3esn` Order By 's_str'[0x0..1.e1] Asc,usn1[False..`5esn`][$1000..$12] Ascending"), + octest:ct_string("Match `7esn`=(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]}) Where $#usn7 Ends With 's_str' Ends With 0X7 Optional Match (((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}))),`8esn`=(:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}) Union All Match _usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))),usn1=(_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})"), + octest:ct_string("Merge (_usn3 :`5esn`{#usn8:0xabc In 010 In #usn7}) On Create Set `5esn`+={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},usn2 =True Contains 0x0 Contains $_usn3 Delete .0 Starts With `1esn`,$7[$12..12e12][1.e1..9e1] Union All Optional Match #usn8=(`5esn` :`7esn`)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1)<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}),usn2=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) Where 12.e12[0..0.12][123.654..9e12];"), + octest:ct_string("Create _usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),_usn4=(({usn2:`2esn`[..$_usn3]})) Union All Optional Match ``=(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Remove Any(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]).@usn6?,@usn5(Distinct Count ( * ) Ends With $123456789).`6esn`? Unwind 00[False..0e0] As `6esn`;"), + octest:ct_string("Detach Delete None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`])[Single(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Is Not Null Is Not Null)],`1esn` Is Not Null Is Not Null With *,{@usn6:$`3esn`[.e1][_usn4]}[`8esn`(Distinct $``[True])..] As #usn8,999[12e12..$_usn4] As usn2 Where 01 Ends With 0Xa Ends With 0X7 With `2esn`[$usn2][12.0],Single(#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6])[Filter(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])..] As _usn4 Order By $`7esn`[..@usn6] Ascending Limit [`2esn` Is Null] Is Null Is Null Where usn1[...e12][..1.e1] Union Optional Match ((:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})),(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Where _usn3 Starts With 12e12 Starts With `5esn` Delete 9e1[$`1esn`..] With (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Order By usn1 Ends With 9e0 Ends With 9e0 Descending,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Descending Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Union All Delete [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null),0x0 In `8esn` Detach Delete usn1[..$@usn6][..00] Match _usn4=({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})<-[#usn7 *01..123456789]->({`2esn`:`7esn` In 010 In usn1,`8esn`:$0[123.654..0.e0]});"), + octest:ct_string("Detach Delete .12[..usn2][..12e12] Return Distinct *,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) As `7esn` Skip $`5esn` =~$0 =~`` Limit Count(*) In 12 In `6esn`"), + octest:ct_string("Delete _usn3 =~9e1 =~12e12,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null Union Merge @usn6=(#usn7 {_usn4:1.e1[`8esn`]})<-[usn2{`2esn`:$12 Starts With $usn1}]->(:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]}) On Create Set `3esn`+=`2esn` =~.e12 =~0X0123456789ABCDEF,#usn8:usn1:`3esn`,``+=`2esn` On Create Set `3esn` =12[.0],All(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])._usn4? =12 Starts With True Starts With 12e12 Unwind Count ( * ) In True In @usn5 As `3esn`"), + octest:ct_string("Unwind 12.0 In 010 As @usn5 Merge (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}) On Match Set #usn7+=[#usn8 In `7esn` Where usn2[07..][.0..]|$usn1 Ends With _usn4 Ends With `2esn`] Contains (_usn3 {#usn7:1000[12e12][`5esn`]})-[`3esn`?:`3esn`]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0}) Contains Extract(`3esn` In `2esn`[..01][..True] Where usn1 In ``),@usn6:`8esn`,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.0 Starts With $`2esn` Starts With .e1).`8esn`? =$`3esn`[$_usn4..0Xa] Union Remove All(`8esn` In 123456789 =~@usn6 Where ``[9e12][$999]).``? Detach Delete #usn7[`8esn`..usn1][$999..`7esn`],{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`} Contains Filter(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5) Contains Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``),.0 Ends With 999 Ends With $`5esn` Union All Return .e1 =~_usn4 =~_usn4,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `5esn`,$`4esn` Starts With 0 Starts With `7esn` As usn2 Order By 0.0[$usn2..] Asc Limit @usn5(Distinct) =~[_usn3[`5esn`..][usn2..],$#usn7 =~`2esn`] =~1.e1"), + octest:ct_string("Merge ({@usn6:0x0[Count(*)..@usn6][Count(*)..0Xa],`7esn`:0.0 =~9e0 =~$0})-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(:_usn3{_usn3:$`3esn`[.e1][_usn4]})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`) On Match Set {#usn8:$`5esn` =~$`8esn` =~usn2}.`4esn`! =999[@usn5..][Null..],`4esn`:`1esn`:_usn4 On Create Set [usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]].`1esn`? =999 Contains 0 Contains $`5esn` Match #usn7=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2),`2esn`=({@usn5:$`5esn` Is Not Null Is Not Null})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Where $_usn4[$`5esn`][`7esn`] With `2esn` Starts With $`4esn` As `8esn` Skip @usn6[12.0..0.12] Limit None(#usn7 In 9e0[$1000] Where $_usn3 Is Null)[[0 =~1e1,$#usn8[12.e12..`8esn`][12.0..0.0],$1000 Is Not Null]..] Where $7 Starts With 12.e12 Starts With $@usn6 Union All Create ((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )),@usn5=((_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})<-[#usn8?:@usn6|:`7esn` *0X0123456789ABCDEF..{_usn4:12.e12 =~.0 =~usn1,usn1:12e12 Contains `2esn`}]->(usn2 :@usn6)-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]-(`1esn` {@usn5:`2esn` Starts With $`4esn`})) With $@usn6[..12] As #usn8,`6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] As #usn8,[`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})] Order By 12.e12[..9e1][..$_usn3] Descending,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] Desc Skip @usn6(Count ( * ) In True In @usn5)[None(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)] Limit Extract(usn2 In 7[12] Where usn1 Starts With 00|`8esn` Contains Count(*) Contains $#usn7) Contains None(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[0.e0]) Contains Extract(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]|$`4esn`['s_str'..]) Where `1esn` Is Not Null Is Not Null Optional Match #usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))),@usn5=(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0})"), + octest:ct_string("Merge @usn5=(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Remove (@usn5 :`6esn`:_usn3{`7esn`:`8esn`[..$#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(_usn3 {`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}).@usn5?,Any(`5esn` In `7esn`[$usn2..][$123456789..] Where 999[12.e12])._usn3?"), + octest:ct_string("Optional Match usn2=((usn1 {_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})),({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) Where .e1[usn2..$_usn3][.0..$#usn7] Return Distinct .e12 Starts With $7 Starts With .0,[$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) As #usn7,01 Contains usn2 Contains 0X0123456789ABCDEF As `8esn` Order By 0Xa =~False =~@usn5 Descending,12.0 In 010 Ascending,`4esn`[123456789] Ascending Union All Detach Delete 07[999],Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) Optional Match (:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})<-[`7esn`:`4esn`|@usn5 *12..]->({`4esn`:.e1[..$`3esn`][..01]}),_usn4=((#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[`5esn`? *01234567..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(usn1 {``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})) Where True[..#usn8] With Distinct 0.e0['s_str'..][01234567..] As `1esn`,None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,.0[$``..0X7] Skip 0x0[``..] Where $@usn5 Is Null Is Null"), + octest:ct_string("Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Create ``=(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Union Detach Delete $usn2[`2esn`..],`8esn`(Distinct #usn8 Is Not Null Is Not Null,`2esn` In 9e0 In 7) Starts With None(usn2 In 7[12] Where 123456789 =~12 =~'s_str') Match #usn7=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2),(((:_usn4{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})<-[`2esn`? *01..123456789]-(`2esn` :@usn6))) Where 999[123.654..$usn2][Count ( * )..0x0] Merge (((@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`})<-[`3esn` *7..]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[? *01..123456789]-(usn1 :_usn4{`4esn`:`7esn` Is Null}))) On Match Set usn1(True Contains 's_str' Contains $usn1,.e0 Is Not Null Is Not Null).@usn5! ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]}"), + octest:ct_string("Match `3esn`=((:_usn3{_usn3:$`3esn`[.e1][_usn4]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:`5esn`)<-[ *01234567..]->(#usn8 :`8esn`)) Where 9e1 Starts With Count ( * ) Match (:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}),`7esn`=((_usn3 :`7esn`)) Where .e12[@usn6..][010..] Optional Match ``=((usn1 {_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})),`1esn`=((usn1 :_usn4{`4esn`:`7esn` Is Null})) Union All Merge usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]})"), + octest:ct_string("Remove [Null[..010][..1000]]._usn4!"), + octest:ct_string("Detach Delete $usn2[`2esn`..$`1esn`],12 Ends With True Ends With @usn6 With Distinct `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] As `3esn`,usn1 Ends With 0.0 Order By $`3esn`[$_usn4..0Xa] Desc,$`1esn` Ends With 0X0123456789ABCDEF Ascending,$@usn5 Ends With @usn5 Ends With 0xabc Descending Where #usn8 =~0.e0 Merge #usn7=({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})"), + octest:ct_string("Merge `1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}))"), + octest:ct_string("Remove Any(`3esn` In `2esn`[..01][..True] Where $0 =~9e1 =~$`2esn`).usn1 With Distinct Filter(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3]) In ({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) In Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0) As `2esn`,1e1 Contains 12.0 As `1esn` Order By $999 Is Null Is Null Descending,Single(#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6])[Filter(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])..] Descending,.e12[0Xa..] Descending Where 9e1[`1esn`..0][999..1e1] Union Return Distinct *,0e0 Ends With 07 Ends With $`8esn` As `6esn` Order By {`4esn`:999 In 0e0,`6esn`:0.e0['s_str'..][01234567..]} Contains Single(`8esn` In 123456789 =~@usn6 Where 12.e12 Ends With `` Ends With 0) Ascending,$`4esn` In 1.e1 In #usn7 Desc Skip 0X0123456789ABCDEF In $usn2 In `4esn` Limit Extract(`3esn` In `2esn`[..01][..True] Where 0.0 Is Null Is Null|$usn2[0.e0])[{usn2:@usn5 Is Null,`8esn`:$@usn6 Ends With 123456789 Ends With 12.0}..] Remove [12.0 Is Null,.e1[..\"d_str\"][..$123456789]].`2esn`?,None(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True])._usn4!,None(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null).``! Remove `4esn`:`8esn`,[`1esn`].#usn8?,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where `1esn`[0.12..][@usn6..]).usn2!"), + octest:ct_string("Match ((#usn8 :_usn3)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)),((:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->({@usn6:12.e12 Contains #usn7 Contains $_usn4,usn2:$`5esn` =~$0 =~``})-[#usn7 *01..123456789]->(:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})) Where Count ( * )[@usn6] Union All Unwind $999[0Xa..][9e1..] As _usn4 Union Remove (:@usn5{usn2:$`3esn` Contains $`1esn`})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(`2esn` :@usn5)-[`2esn`? *12..{_usn3:$`2esn` Is Null}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}).`2esn`?,_usn4(Distinct True Contains 0x0 Contains $_usn3).`3esn`,None(#usn7 In 9e0[$1000] Where 00[12..$`6esn`]).`7esn`? Detach Delete All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`],usn2 Ends With $`4esn` Return 0.e0[..$7] As _usn3,0xabc =~@usn5 =~$usn1 Skip $@usn6[00] Limit `2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..]"), + octest:ct_string("Remove (@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`})-[@usn6?{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null}]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}).@usn5?,None(`8esn` In 123456789 =~@usn6 Where $usn1)._usn3! Unwind $123456789 Starts With 0.12 Starts With Null As #usn7 Unwind `1esn`($`4esn`[`4esn`][Count(*)],`2esn` Starts With $`7esn`) =~Extract(@usn5 In 9e0 Ends With $#usn8 Where .e0 Starts With $@usn6 Starts With $7) =~{`3esn`:_usn3[`2esn`..0X7][0.e0..$`3esn`]} As _usn3"), + octest:ct_string("Unwind $12 Starts With $0 Starts With $`8esn` As @usn5 Return *,1e1 Contains 0.e0 Contains 9e1,`1esn` Starts With 9e1 As `6esn` Order By 010 Contains .e1 Asc,(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})<-[#usn7 *01..123456789]->(`6esn` :usn1:`3esn`) Ends With Extract(#usn8 In `7esn` Where 9e12[..1e1][..'s_str']) Ends With [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123.654 Is Not Null|$`2esn`[.0..][0.0..]] Descending Union All Remove (@usn5 :`6esn`:_usn3{`7esn`:`8esn`[..$#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(_usn3 {`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}).@usn5?,Any(`5esn` In `7esn`[$usn2..][$123456789..] Where 999[12.e12])._usn3? Union All Create ((:_usn4{`4esn`:.e1 In 123456789})<-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})) With Distinct (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1"), + octest:ct_string("Optional Match `8esn`=(((`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})<-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Merge ((:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})) On Create Set @usn6+=7 Ends With 01234567 Ends With 0Xa,`2esn` =0Xa =~False =~@usn5"), + octest:ct_string("Unwind $`5esn`[$`6esn`][`2esn`] As _usn4 Merge `3esn`=((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})) With *,0.e0 =~00 As `3esn` Order By 's_str'[0x0..1.e1] Asc,usn1[False..`5esn`][$1000..$12] Ascending Where 9e1[$#usn8][$1000] Union Return Count ( * ) In True In @usn5 As `2esn`,$_usn3[$12] Limit `8esn`[0.e0..] Return Distinct *,0e0 Ends With 07 Ends With $`8esn` As `6esn` Order By {`4esn`:999 In 0e0,`6esn`:0.e0['s_str'..][01234567..]} Contains Single(`8esn` In 123456789 =~@usn6 Where 12.e12 Ends With `` Ends With 0) Ascending,$`4esn` In 1.e1 In #usn7 Desc Skip 0X0123456789ABCDEF In $usn2 In `4esn` Limit Extract(`3esn` In `2esn`[..01][..True] Where 0.0 Is Null Is Null|$usn2[0.e0])[{usn2:@usn5 Is Null,`8esn`:$@usn6 Ends With 123456789 Ends With 12.0}..] Create `1esn`=((@usn6 {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})-[:``{``:.0[$``..0X7]}]->(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})-[ *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})),`6esn`=((#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]}))"), + octest:ct_string("Detach Delete Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])],123.654 Contains @usn5 Contains $`5esn` Union With Distinct *,`5esn`[..123.654][...e12],12e12 =~$`7esn` Skip 0 =~1.e1 =~$#usn7 Remove {`4esn`:0.0 Contains #usn7,`1esn`:$999[``]}.`5esn`? Merge (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}) On Match Set _usn3+=.e0 Ends With $#usn7 Ends With False On Match Set `2esn` =9e1 Ends With Count(*) Ends With $7 Union All Create `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}) Detach Delete 12 Starts With $123456789 Starts With .e12"), + octest:ct_string("Merge ((:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[`2esn`?:usn1|`4esn` *00..0Xa]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[:`2esn`|`4esn` *1000..0X0123456789ABCDEF]-(usn2 :`6esn`:_usn3{@usn5:$0[0Xa..$123456789]})) On Match Set `1esn`:@usn5,All(@usn5 In 's_str'[0..] Where `2esn`[..01][..True]).`2esn`! =`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]],`2esn`+=$_usn4[01..][$_usn4..] On Match Set #usn7+=.e0[..9e12][..07],`4esn`(True[$_usn3..],$999[``]).usn2 =123456789 Is Null Is Null,@usn5 =01[07..][1.e1..] Remove Filter(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1).`5esn`! With Distinct $`1esn`[Null][True] As usn2,Count ( * )[9e12] Skip [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] Limit 0X7[0.12..] Where 0e0[01][$`7esn`] Union All Unwind #usn8(1000[12e12][`5esn`],9e1 Contains 12)[Extract(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0)..`1esn`(Distinct `3esn`[7..0.e0][0.0..123456789],`1esn` Starts With 0xabc Starts With $usn2)][Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 9e0[Count(*)..0.12][$`1esn`..12.0])..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12)] As @usn6 Remove None(`5esn` In 0X7 In $#usn7 Where usn1 =~$`7esn`).`3esn`!,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $123456789 In 0.12)._usn3?,(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]}).`6esn`? With *,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null Order By .e0 Starts With $@usn6 Starts With $7 Descending Skip [$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa) Union Unwind Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) Is Not Null Is Not Null As usn2 With Distinct *,0xabc Is Null Is Null Skip $7 Ends With Count ( * ) With Distinct 0.e0['s_str'..][01234567..] As `7esn`,Single(_usn4 In 12e12 In 123456789 Where 0e0 =~7 =~12.0) Starts With Extract(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]|9e12 =~@usn6),[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Skip $`6esn`[1.e1][$_usn3] Limit usn1 Is Not Null"), + octest:ct_string("Delete [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] In [12e12 In 123456789,`1esn`] In All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),True[..#usn8],0.12[0Xa][$`7esn`] Union With Distinct [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Any(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`) Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc Skip {`4esn`:999 In 0e0,`6esn`:0.e0['s_str'..][01234567..]} Contains Single(`8esn` In 123456789 =~@usn6 Where 12.e12 Ends With `` Ends With 0) Limit `6esn` Is Null Is Null Merge (`2esn` :`1esn`:_usn4)-[?*..]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) On Create Set @usn6+=$#usn7 Ends With 's_str' Ends With 0X7,`6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn2 =$@usn5 Ends With @usn5 Ends With 0xabc With Distinct $12 Starts With $0 Starts With $`8esn`,9e1[usn1..0x0][12.e12..12.0] As usn1,$``[..\"d_str\"][..$#usn8] As `6esn` Union Remove (:#usn8:`1esn`{usn2:$`7esn`[.e1][12.0],``:$`1esn` Contains 1e1 Contains @usn6})-[`` *1000..0X0123456789ABCDEF]-(`` :`7esn`)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:usn2{`6esn`:#usn7[$`3esn`..$1000][0.0..`2esn`],``:010 Starts With 0 Starts With 0.0}).`4esn`!,Extract(`5esn` In 0X7 In $#usn7 Where @usn6 Is Not Null Is Not Null).@usn5?,Any(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).#usn7!"), + octest:ct_string("Return *,@usn5 Contains #usn8 Contains 12.0 As `6esn`,{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] Skip 0.0 Is Null Is Null Return _usn3[`2esn`..0X7][0.e0..$`3esn`] As `7esn` Order By [usn2[12e12..]['s_str'..]] =~Single(`8esn` In 123456789 =~@usn6 Where $`4esn`[`4esn`][Count(*)]) Ascending,`4esn`[\"d_str\"]['s_str'] Ascending,.12 In `8esn` In $#usn8 Asc Skip None(@usn6 In 010[`5esn`] Where 123.654 In $`7esn`)[(`` {`7esn`:$#usn7[..0Xa]})<-[`1esn`?:usn1|`4esn` *00..0Xa]-(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[usn1? *01234567..{@usn5:01[`3esn`..][Count(*)..]}]->(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})..[False Contains 0 Contains $`6esn`,`1esn` Is Not Null Is Not Null]] Limit [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Contains Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|@usn5 Contains #usn8 Contains 12.0) Return Distinct $`3esn`[$_usn4..0Xa] As #usn7,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa) As `3esn`,$`5esn`[$`3esn`..] As `4esn` Limit $`` Is Not Null Is Not Null Union All Merge `7esn`=((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})-[#usn8:#usn7|@usn5 *123456789..{@usn5:usn2[12.e12..]}]->(`` )<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})) On Match Set `7esn`+=$`5esn` Is Not Null,Any(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7])._usn3 =.e12[`2esn`..010],`8esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null On Match Set @usn6 =999[..`1esn`][..07],`3esn`+=$@usn5[0.0][0X0123456789ABCDEF],`6esn`+=$usn1[1000][.12] Optional Match _usn4=({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}) Where 0x0[@usn6..][01..] Match ((#usn8 :_usn3)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)),((:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->({@usn6:12.e12 Contains #usn7 Contains $_usn4,usn2:$`5esn` =~$0 =~``})-[#usn7 *01..123456789]->(:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})) Where Count ( * )[@usn6]"), + octest:ct_string("Remove All(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7).`2esn`!,(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[ *01234567..]->(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`}).usn2,@usn6:_usn4 With *,``(Distinct 00 Ends With `` Ends With 12.e12,`6esn`[..Count ( * )][..$_usn4]) In (usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[`7esn`?:#usn8|:`3esn`{`6esn`:'s_str'[0..]}]->(#usn8 :`8esn`$#usn8) In Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1]) As `3esn` Order By $usn2[`5esn`..][01234567..] Asc,$`7esn`[.e1][12.0] Asc,$`5esn` =~usn1 Ascending Skip @usn6(0X7 In $#usn7,_usn4 Contains `` Contains 1.e1)[Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)..Any(#usn7 In 9e1[$`1esn`..] Where $`2esn` Ends With `6esn`)] Optional Match `8esn`=((_usn3 :_usn4));"), + octest:ct_string("Return (:`2esn`)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})-[@usn6? *0X0123456789ABCDEF..{``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6}]-(`5esn` :@usn5) Is Null Is Null,`7esn` Ends With $7 Ends With $@usn5 As `7esn`,Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] As `6esn` Order By 1000[12e12][`5esn`] Descending Skip {``:0.0 =~9e0 =~$0} Contains [@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn2..][$123456789..]|0Xa[Count(*)..]] Limit .0[.e12..]"), + octest:ct_string("Merge (`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}) On Create Set _usn3+=`5esn`(Distinct .12[123.654..]) On Match Set `2esn` =`3esn`[..0X0123456789ABCDEF][..0x0] With Distinct .e1 In 0,Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])[[00[12..$`6esn`],$`4esn`['s_str'..]]..] Order By .12 In `8esn` In $#usn8 Asc,12.e12[..9e1][..$_usn3] Descending Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Where $`1esn`[``][07] Union Detach Delete All(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]) Is Not Null Is Not Null,@usn6[`1esn`..],$#usn7 Ends With 's_str' Ends With 0X7 Match (((`` :#usn8:`1esn`{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1})<-[_usn3?:_usn3|:`7esn`]->(#usn7 )<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(`5esn` :`3esn`))),((#usn7 :_usn3)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) Union All Remove [`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5|`5esn`[..True][..0.e0]].`2esn`!,None(`8esn` In 123456789 =~@usn6 Where $`5esn` =~$`8esn` =~usn2)._usn3?;"), + octest:ct_string("Delete $@usn5 Contains 7 Contains 7,12 Starts With \"d_str\" Starts With 00,$_usn3[_usn4..] Optional Match (usn2 :_usn4),`1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Where 0e0[01][$`7esn`] Union All Remove [False[$`4esn`..],$#usn7[..0Xa]].usn1?,({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}).`5esn` Merge @usn6=((({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}))) On Match Set `1esn` =Filter(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12])[..Extract(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])][..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]],#usn8(Distinct 12.0[$1000..][#usn7..],0xabc In Null).`2esn` =0.e0 Starts With usn1 With *,0.e0 =~00 As `3esn` Order By 's_str'[0x0..1.e1] Asc,usn1[False..`5esn`][$1000..$12] Ascending Where 9e1[$#usn8][$1000]"), + octest:ct_string("Remove {#usn8:`1esn`[usn1][0xabc],_usn3:$`6esn`[1.e1][$_usn3]}.`3esn`,{usn1:@usn6[9e12]}.`4esn`! Union All Optional Match (`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}) Return Distinct _usn3 Is Not Null Is Not Null As `` Skip 0X7[..$`8esn`] Limit {@usn5:$@usn6 Is Not Null Is Not Null} Starts With [`3esn` In `2esn`[..01][..True] Where 0x0[usn1..usn1]] Starts With Extract(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..]|0X7['s_str'..][01..]) Union Merge @usn5=(:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']}) Remove [#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..]].@usn6!"), + octest:ct_string("With (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),[$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) As #usn7,`7esn` In 010 In usn1 Order By .e12[0Xa..] Descending,`5esn`[$`7esn`..$@usn5] Ascending,`5esn`[..True][..0.e0] Descending Union Remove (:#usn8:`1esn`{usn2:$`7esn`[.e1][12.0],``:$`1esn` Contains 1e1 Contains @usn6})-[`` *1000..0X0123456789ABCDEF]-(`` :`7esn`)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:usn2{`6esn`:#usn7[$`3esn`..$1000][0.0..`2esn`],``:010 Starts With 0 Starts With 0.0}).`4esn`!,Extract(`5esn` In 0X7 In $#usn7 Where @usn6 Is Not Null Is Not Null).@usn5?,Any(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).#usn7!"), + octest:ct_string("Detach Delete 12.e12[_usn4..$1000][$7..$999],$0[010..] Return Distinct `7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..],$`6esn`[0e0..][010..] Skip Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3) Limit 1.e1 Starts With 9e12 Detach Delete Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1)"), + octest:ct_string("With *,1.e1 =~$_usn4,9e12 Contains $_usn3 Contains \"d_str\" As @usn5 Order By `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] Desc,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,$@usn5 Descending Where `6esn`[$1000][`3esn`] Union All Remove ({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})-[usn2?:`3esn`]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}).`7esn` Remove All(#usn7 In 9e0[$1000] Where 12e12 Starts With $0 Starts With $`2esn`).`8esn`?,``:@usn5,Single(`8esn` In 123456789 =~@usn6 Where ``[9e12][$999])._usn4! Merge ((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[?:`4esn`|@usn5 *0Xa]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})<-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]-(:_usn4{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]})) Union Optional Match (((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((`6esn` :`5esn`)<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`5esn` :`4esn`:`6esn`)) Detach Delete Extract(@usn6 In 010[`5esn`] Where 00[$usn1..]|_usn3[$usn2..][$``..])[Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])],_usn4[$usn1..01234567][123.654..`5esn`],None(#usn7 In 9e0[$1000] Where $_usn3 Is Null) In [@usn5 In 's_str'[0..] Where $#usn8[12.e12..`8esn`][12.0..0.0]|`4esn` Ends With 12 Ends With .12] In [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12]"), + octest:ct_string("Create @usn5=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),#usn7=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))) Union All With 0X7[`2esn`..] As `6esn`,Single(usn2 In False[$usn1][0x0])[All(@usn6 In 010[`5esn`] Where 00[1.e1..])][(:`2esn`{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`})-[?{`5esn`:$`2esn`[.0..][0.0..]}]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})-[`` *1000..0X0123456789ABCDEF]->(:_usn4{`8esn`:01234567[Null..$_usn3]})] Order By ``[$`3esn`] Asc,[1000[0e0][1e1],12.0 Is Null Is Null] Is Not Null Is Not Null Asc,.e0 =~$`7esn` =~0X0123456789ABCDEF Descending Skip [#usn8 In `7esn` Where .e0 Is Null Is Null] Ends With {usn1:$`4esn`[`6esn`..$12],`4esn`:usn1 Contains 010} Ends With (:``:usn2{``:True[$_usn3..]})<-[`2esn`? *01..123456789]-(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(`1esn` $`4esn`) Limit `5esn`[..123.654][...e12] Unwind $_usn3 Is Not Null As _usn3 Match ((`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})),`5esn`=(((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Where `3esn` Union All Merge (_usn3 :`7esn`) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] On Create Set #usn7+=Null[.12..12e12],Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]).`1esn`! =[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)],@usn6 =usn2[1.e1] Merge `2esn`=(:#usn8:`1esn`$`7esn`) On Match Set `8esn`+=`2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..]"), + octest:ct_string("Remove `1esn`:_usn3 Return `1esn` Contains $999 Contains 0.0 As @usn6 Detach Delete [$usn1[`2esn`..][$`2esn`..]] Contains Extract(usn2 In 7[12] Where $_usn3 Is Null|.e12 Is Null Is Null),12e12 Ends With 0.0 Ends With usn1 Union All Create (`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]}),usn1=(((`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]-(#usn8 :`6esn`:_usn3)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1))) Merge #usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) On Create Set @usn6+=$`1esn` =~1e1 On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Union Return Distinct 1.e1[..123456789][..999],_usn3[12.e12..][`5esn`..] As @usn6,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `5esn` Order By 123456789 Contains 0Xa Descending,[@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00|`5esn`[$`7esn`..$@usn5]] Is Not Null Is Not Null Desc,00[False..0e0] Ascending Unwind usn1[...e12][..1.e1] As #usn7 Delete usn1 Is Not Null,0X0123456789ABCDEF Ends With 01 Ends With ``"), + octest:ct_string("Optional Match (usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}),({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5)<-[_usn4?:@usn6|:`7esn`]->({`6esn`:'s_str' Contains 12.e12 Contains $`4esn`}) Where True Contains 0x0 Contains $_usn3 Create usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})),((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Remove Single(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]).`8esn`!,Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7]|#usn8 =~.e0).`2esn`?,{_usn3:$`1esn` In .e0,`5esn`:False Starts With 0X7 Starts With 01234567}.`3esn` Union All Create ((#usn7 {`1esn`:$`4esn` Is Null Is Null})<-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(`6esn` :`8esn`)) Delete Count(*) Starts With usn2 Starts With `7esn`,$1000 Starts With $`7esn`;"), + octest:ct_string("Create #usn8=((`3esn` :usn2{`6esn`:#usn8 Is Null})-[`4esn`?:_usn4 *7..{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(usn2 :`6esn`:_usn3{@usn5:$0[0Xa..$123456789]})<-[`2esn`{``:Null[..010][..1000]}]-(`` :usn1:`3esn`)),(`2esn` :`1esn`:_usn4) Union Optional Match _usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))),usn1=(_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})"), + octest:ct_string("Return 9e1[$`1esn`..] As `` Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,{@usn6:$`3esn`[.e1][_usn4]}[`8esn`(Distinct $``[True])..] Desc Skip 010[`5esn`] Union With *,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3])[..{`8esn`:usn2 =~7,`5esn`:.e0[01234567..$`8esn`]}][..Any(@usn6 In 010[`5esn`] Where False[$`4esn`..])] As #usn8,$#usn7 Contains $`7esn` Contains .e12 As @usn5 Limit (:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}) Where 01[`3esn`..][Count(*)..] With Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Order By @usn5[0..] Ascending,$@usn5 In $`6esn` In 12e12 Desc,#usn7 In 0.e0 Desc Skip {`8esn`:$_usn4 Starts With 12.e12} Is Null Is Null Limit 999 Contains $1000 Optional Match `2esn`=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}),`8esn`=((:#usn8:`1esn`)-[ *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})) Where .e1 In 123456789"), + octest:ct_string("Return 0.e0 =~00 As `3esn`,(`2esn` {`7esn`:999 In 0e0})<-[`8esn`?:`2esn`|`4esn` *01..123456789{`8esn`:$`4esn` Is Null Is Null,usn1:$1000 Starts With $`3esn` Starts With 0.e0}]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[ *0X7..{#usn8:.e0 Contains $#usn8}]->(`2esn` :`6esn`:_usn3) In (`8esn` :`6esn`:_usn3)-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(_usn4 {_usn4:123.654 In 12})-[?:#usn8|:`3esn` *0x0..]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) In {_usn4:.e0 Contains $#usn8,@usn6:1000[12e12][`5esn`]} As ``,#usn8[`6esn`..][$``..] As `2esn` Remove Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]|$``[..\"d_str\"][..$#usn8]).`6esn`! Remove `4esn`:`4esn`:`6esn`,(usn2 :_usn4)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]}).usn2!,`5esn`(0.12 Contains False Contains 1.e1).`3esn`? Union All Unwind {`4esn`:12e12 =~$`7esn`} Is Not Null Is Not Null As _usn3 Unwind 0x0[``..] As usn1 Return Distinct *,Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7,[$#usn7 Ends With 's_str' Ends With 0X7,12e12 Ends With 0.0 Ends With usn1][Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $`6esn`[``..][Count(*)..])..Extract(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1|``[$`3esn`])][(#usn8 :`5esn`)<-[usn2?:`3esn` *00..0Xa]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})..{_usn3:_usn4 Is Null Is Null}] Order By 0e0 Is Null Is Null Ascending,$@usn6[..12] Descending Union Create (usn2 :_usn4),`1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Remove [999 Is Not Null Is Not Null,123.654 In $`7esn`].`6esn` Delete 9e0[Count(*)..0.12][$`1esn`..12.0],`7esn` Is Null"), + octest:ct_string("Unwind #usn8[`8esn`..] As `7esn` Union All Merge (({@usn6:010 Starts With 0 Starts With 0.0,_usn4:07[$`2esn`..9e12][$`4esn`..9e12]})<-[:@usn6|:`7esn` *0..01{``:`1esn`[0.0..1e1][0x0..7],usn2:01[`3esn`..][Count(*)..]}]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})) With Distinct *,$`1esn`[07..] As ``,`` Is Null As `7esn` Skip $1000 Is Not Null Delete $usn1[Null][`8esn`],Single(#usn8 In `7esn` Where 12.0 Starts With $`2esn` Starts With .e1) Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]] Ends With {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01}"), + octest:ct_string("Create ((_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`})<-[? *..010{`2esn`:'s_str'[0..]}]->(_usn3 :`5esn`)),(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Optional Match ((_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`})-[?:`2esn`|`4esn`{@usn5:0.e0}]-(`1esn` $`4esn`)),(_usn3 :`7esn`)-[*..{``:.e1 Starts With 12.e12 Starts With `2esn`}]-(#usn7 :_usn3) Return Distinct *,All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] As `3esn`,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[usn2(Distinct #usn7 Contains $0 Contains $usn2,0.e0)..] As @usn6 Order By $`1esn` Ends With 0X0123456789ABCDEF Ascending Limit `4esn` Contains 9e0"), + octest:ct_string("Optional Match `4esn`=((({#usn7:$`3esn` Ends With 01234567,_usn3:usn1 =~$`7esn`})-[`7esn`?:usn1|`4esn` *00..0Xa{`3esn`:usn1 In ``}]-(usn1 {usn1:$#usn7 Starts With 01234567 Starts With $0})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]}))),#usn8=(({usn2:`2esn`[..$_usn3]})) Where `2esn`[..$_usn3] Return `6esn`[`5esn`..00],$1000 Is Null Is Null,0.0[usn1..] As `3esn` Limit All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`]"), + octest:ct_string("With *,$usn2 =~9e1,1e1 Is Null Is Null As usn2 Order By `1esn` Contains $999 Contains 0.0 Ascending,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Descending Skip 123.654[$@usn5..] Where `3esn` Starts With 9e0 Starts With usn1 Optional Match ((({`7esn`:999 In 0e0})<-[#usn7 *01..123456789]->({`2esn`:`7esn` In 010 In usn1,`8esn`:$0[123.654..0.e0]})<-[? *7..]-(usn1 {@usn5:_usn4[$usn1..01234567][123.654..`5esn`],`5esn`:1.e1 =~$_usn4}))) Delete [#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Union All Merge @usn6=((`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[@usn5?:usn2 *00..0Xa{usn2:$usn2[`4esn`..9e12]}]->(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->(usn2 :usn1:`3esn`)) Unwind `8esn`(Distinct #usn8 Is Not Null Is Not Null,`2esn` In 9e0 In 7) Starts With None(usn2 In 7[12] Where 123456789 =~12 =~'s_str') As `` Union All Unwind 0.0 Is Not Null As `` Detach Delete 999[12.e12];"), + octest:ct_string("Return Distinct *,Null[..010][..1000] As #usn7,9e12 Ends With 12e12 Ends With 12 As `` Order By 1000[$7..][_usn4..] Desc Skip $`3esn` Ends With 01234567 Limit 7 Ends With .12 Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Unwind usn1[..$@usn6][..00] As `4esn` Union All Return 0x0[0.0] As ``,Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) Contains [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where .0 Is Null Is Null|`3esn`[0x0..]] Contains [999[12.e12],#usn8 Is Null Is Null,1.e1 =~$_usn4] As `1esn` Order By [#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Asc,usn2[12.e12..] Ascending,$@usn6 Is Not Null Is Not Null Desc Skip `5esn` Contains 1.e1 Contains .e12 Limit `7esn`[0x0][$`4esn`] Merge #usn7=(_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`}) Optional Match @usn6=(usn2 :_usn4) Where _usn3[`2esn`..0X7][0.e0..$`3esn`]"), + octest:ct_string("Unwind .e1[7..][9e0..] As `4esn` Delete [$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][None(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..])..],$@usn5 In 12e12 In 01,All(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0)[(:#usn7:`5esn`)<-[#usn8? *0Xa]-(`5esn` :`5esn`{#usn7:``[$`3esn`]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc})..] Remove Extract(`3esn` In `2esn`[..01][..True] Where $@usn6[$`8esn`..][123456789..]|_usn4 Is Null Is Null)._usn4?;"), + octest:ct_string("Remove [`5esn` In 0X7 In $#usn7 Where @usn6 Is Not Null Is Not Null|9e1[..123456789]].``?,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7).usn1 Unwind `7esn`[1e1] As `6esn` Union All Remove Any(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null).`4esn`,(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(_usn4 :`8esn`)<-[ *0X7..{#usn8:.e0 Contains $#usn8}]->(`2esn` :`6esn`:_usn3).@usn5!"), + octest:ct_string("Remove Extract(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]|0x0[0.0]).`3esn`! Return Distinct 9e1 Ends With Count(*) Ends With $7 As `6esn` Limit _usn3 Contains 9e12 Contains `8esn` Union All Unwind $_usn4 Starts With 12.e12 As `2esn` Return Distinct ``[$`1esn`] Order By 123456789[12] Ascending,{usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}[[@usn5 In 9e0 Ends With $#usn8 Where 00 Contains Count ( * ) Contains 0x0]] Asc,Count ( * )[$`5esn`..][$7..] Desc Union With Distinct 123.654[$0..0X7][Null..#usn8] As `3esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc,Count ( * )[$`5esn`..][$7..] Desc Skip Extract(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999)[..Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1])] Limit None(#usn7 In 9e0[$1000] Where $_usn3 Is Null)[[0 =~1e1,$#usn8[12.e12..`8esn`][12.0..0.0],$1000 Is Not Null]..] Where $123456789 Contains $#usn8 Contains `` Merge _usn3=({`4esn`:.e1[..$`3esn`][..01]})-[`5esn`:#usn7|@usn5]-(`5esn` :`4esn`:`6esn`) On Create Set usn1 =`3esn`[123456789],`3esn` =9e1[.12][`7esn`]"), + octest:ct_string("Delete `2esn` Starts With 12.e12 Starts With 12.0 Delete \"d_str\" Is Not Null,$usn1 Unwind {_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] As `6esn` Union All Delete .e0[...0][..$`2esn`] With Distinct *,@usn5 Contains #usn8 Contains 12.0,Any(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]) =~[9e12 =~@usn6,01 Ends With 0Xa Ends With 0X7,$@usn6[$0..9e12][.e12..Null]] Order By False[$usn1][0x0] Asc,Count ( * ) Ends With `6esn` Ends With 's_str' Asc,@usn6[12.0..0.12] Ascending Skip $usn1[`2esn`..][$`2esn`..] Limit 00[01234567][False] Detach Delete [9e12[9e1]][[_usn3[`2esn`..0X7][0.e0..$`3esn`]]..]"), + octest:ct_string("Create (:usn1:`3esn`{@usn6:.0 Ends With Count ( * )}),usn2=(@usn5 :@usn6{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[`8esn` *0xabc]-(:_usn3{_usn4:.e1[7..][9e0..]})"), + octest:ct_string("With Distinct $#usn7[..9e0][..123.654] Order By 0.0[..Count ( * )][..`1esn`] Desc Limit 0x0 In 0.e0 In #usn8 Union Unwind {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01}[#usn8(False Contains 0 Contains $`6esn`,'s_str' Starts With 1e1 Starts With $0)..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})][(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(`4esn` :`6esn`:_usn3)..[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]]] As `4esn` Create (((`7esn` )<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2))),`5esn`=(({@usn5:``[9e12][$999]})-[usn2{``:$`1esn` =~999}]-(:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0})) Create _usn3=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']});"), + octest:ct_string("Merge _usn4=(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-(:#usn8:`1esn`{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}) On Match Set `8esn`+=0x0[``..],usn1+=0e0 Ends With 07 Ends With $`8esn`,_usn4 =$@usn6[12.0][12.0] On Create Set Filter(usn2 In 7[12] Where $`6esn`[1.e1][$_usn3]).``? =0Xa[$`8esn`..][$_usn4..],_usn4+=0X0123456789ABCDEF In $7 Remove None(_usn4 In 12e12 In 123456789 Where $usn2 Is Not Null Is Not Null).@usn5 Optional Match ((_usn4 :#usn7:`5esn`)-[`4esn`:`1esn`|`3esn` *12..]->({`7esn`:9e12 =~@usn6})),((:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[`1esn`:`8esn` *7..]-(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Where Count ( * )[$`5esn`..][$7..]"), + octest:ct_string("With *,All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] As `3esn`,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[usn2(Distinct #usn7 Contains $0 Contains $usn2,0.e0)..] As @usn6 Order By $`1esn` Ends With 0X0123456789ABCDEF Ascending Limit `4esn` Contains 9e0 Remove [#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|Count(*) Is Null].#usn7,{``:0Xa =~False =~@usn5,`8esn`:.12[123.654..]}.`6esn`!,Any(#usn7 In $999 In 1e1 Where usn1 =~$`7esn`).`1esn`!"), + octest:ct_string("Delete 0X7 In $#usn7 Unwind {#usn8:1.e1 Is Null Is Null,_usn4:0xabc In 123456789 In 0x0}[All(@usn6 In 010[`5esn`] Where 00[1.e1..])..] As _usn4 Detach Delete [`6esn` In $`6esn`[``..][Count(*)..] Where $0[123.654..0.e0]][{`8esn`:$`4esn`[..$`8esn`][..Null]}..({usn2:_usn3[`2esn`..0X7][0.e0..$`3esn`]})<-[_usn4?:@usn6|:`7esn`]-(usn1 :`2esn`{@usn6:True Contains 's_str' Contains $usn1,``:$`4esn` Starts With 0 Starts With `7esn`})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})][None(`3esn` In `2esn`[..01][..True])..[0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF]] Union All Return Distinct *,{`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Skip (`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}) =~[12 In $usn1 In 7] =~Filter(@usn5 In 's_str'[0..] Where 0.e0) Limit `2esn` =~.e12 =~0X0123456789ABCDEF"), + octest:ct_string("Merge #usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})));"), + octest:ct_string("Merge (usn1 :_usn3{`4esn`:$`6esn`[1.e1][$_usn3]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[?:`7esn`|:`2esn`{@usn5:usn2[1.e1],@usn6:$#usn8 Starts With .e12 Starts With 1.e1}]->({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]}) Remove _usn3(Distinct _usn3[`2esn`..0X7][0.e0..$`3esn`]).`8esn`"), + octest:ct_string("Return Distinct *,(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] As `1esn` Skip 01[07..][1.e1..] Limit All(usn2 In 7[12] Where #usn8 Is Null Is Null)[[usn2 In 7[12] Where #usn7[.e0]]..] Detach Delete `` Is Null,12 Starts With $123456789 Starts With .e12,#usn7[$`3esn`..$1000][0.0..`2esn`] Union Remove {``:.0[..'s_str'][..01234567]}.@usn5!,[#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6]].`3esn` Return Distinct *,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``) Is Null Is Null Order By Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Ascending,$@usn5[..$#usn7] Descending,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip 9e1 Starts With Count ( * ) Limit {`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..] Union Unwind #usn8(@usn6[999..$_usn3][0.12..$@usn5])[..`1esn`(Distinct `5esn`[..123.654][...e12],01 Contains usn2 Contains 0X0123456789ABCDEF)] As _usn3 Detach Delete $`1esn`[``][07],`2esn` Starts With .e1 Starts With 9e12,$`4esn` In 1.e1 In #usn7"), + octest:ct_string("Remove usn1:#usn7:`5esn`,[@usn5 In 9e0 Ends With $#usn8 Where `1esn` Is Not Null Is Not Null|usn1 Is Null Is Null].usn2? With Distinct 0.e0['s_str'..][01234567..] As `7esn`,Single(_usn4 In 12e12 In 123456789 Where 0e0 =~7 =~12.0) Starts With Extract(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]|9e12 =~@usn6),[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Skip $`6esn`[1.e1][$_usn3] Limit usn1 Is Not Null Union Match (({#usn7:$@usn6[$0..9e12][.e12..Null]})) Match `6esn`=(((:`6esn`:_usn3)<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(`3esn` :_usn4{`3esn`:12[..0e0][...e1],`4esn`:.0 Is Null Is Null})-[usn2 *..07]->(`` {_usn3:`5esn` Contains `7esn`}))) Where $_usn4[$`5esn`][`7esn`]"), + octest:ct_string("Unwind {@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0} Contains [`1esn`[usn1][0xabc],`5esn` Contains `7esn`,$``[True]] As usn1 Return Distinct *,All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] As `3esn`,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[usn2(Distinct #usn7 Contains $0 Contains $usn2,0.e0)..] As @usn6 Order By $`1esn` Ends With 0X0123456789ABCDEF Ascending Limit `4esn` Contains 9e0 Match ``=((usn1 {_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})),`1esn`=((usn1 :_usn4{`4esn`:`7esn` Is Null})) Union With *,@usn5 Starts With $`3esn`,00[False..0e0] As `7esn` Order By 0.0[..Count ( * )][..`1esn`] Ascending,`1esn`[0.12..][@usn6..] Desc Skip True Contains .e12 Limit $0 =~9e1 =~$`2esn` Where 123.654[$0..0X7][Null..#usn8] Merge ((:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Optional Match @usn5=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Union Return Distinct 0x0[..9e0],Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By 1.e1[12..][$`4esn`..] Asc,Null[..010][..1000] Descending,Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] Descending Limit 1.e1[12..][$`4esn`..]"), + octest:ct_string("Merge _usn3=((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(_usn3 :usn1:`3esn`)<-[`7esn`? *..010{usn2:12 Ends With Count ( * ),#usn8:`8esn` Contains `2esn` Contains .0}]->({`6esn`:'s_str' Contains 12.e12 Contains $`4esn`})) On Match Set #usn8+=Count(*)[$@usn5],@usn6 =0 =~1e1,`2esn`+=Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) On Match Set `8esn`+=#usn8[..`8esn`],_usn4 =0e0 Ends With 07 Ends With $`8esn` Unwind .12[0X7..][12e12..] As `4esn` Return *,`2esn`[..$_usn4][...12] As `6esn`,`1esn` Starts With 9e1 As `6esn` Order By 01 Ends With 123456789 Desc,1.e1[12.e12..] Desc,\"d_str\" Is Not Null Ascending Skip [#usn7 In 9e0[$1000] Where `6esn`[$1000][`3esn`]][Extract(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1|010 Starts With $`` Starts With 0e0)..] Limit @usn6 =~999 =~@usn5 Union All Remove `5esn`:@usn5,{#usn8:$0[123.654..0.e0]}.@usn6!,{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF}.#usn8!"), + octest:ct_string("Unwind [#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)][All(#usn7 In True Contains 's_str' Contains $usn1 Where 0[1e1][$usn1])..][(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[ *0x0..]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..] As usn2"), + octest:ct_string("Remove Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..]).#usn8!,({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[:_usn3|:`7esn` *..07]->(`4esn` :_usn4).`7esn`!,None(#usn7 In True Contains 's_str' Contains $usn1 Where .e12[$@usn6..00][01234567.._usn3])._usn3! Detach Delete $@usn5 Contains 's_str' Contains \"d_str\",010 Is Null,Count(*)[..@usn6][..`7esn`]"), + octest:ct_string("Detach Delete `7esn` Ends With $7 Ends With $@usn5,0X0123456789ABCDEF Is Not Null Is Not Null,All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1)[None(@usn6 In 010[`5esn`] Where 00[1.e1..])..[$12[$usn1..][Count(*)..],$@usn5 Contains 's_str' Contains \"d_str\"]][Extract(`3esn` In 9e1 Contains $999 Where 0e0 Starts With 999 Starts With `2esn`|9e1 Ends With Count(*) Ends With $7).._usn4(`1esn`[0.12..][@usn6..],#usn8 =~0.e0)] Union All Return *,All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],12 In $usn1 In 7 As `8esn` Skip None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1) Limit $@usn5 Starts With .e1 Match `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((:#usn7:`5esn`{`3esn`:Null[..0]})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->(`6esn` :#usn7:`5esn`{_usn3:_usn4 Is Null Is Null})) Where $`5esn` =~usn1 Unwind #usn8 Is Null Is Null As `8esn` Union All Remove Single(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).#usn7,usn2(.12 Starts With _usn3 Starts With $``)._usn3,`4esn`:`3esn` Unwind {`3esn`:.e1[..\"d_str\"][..$123456789]} As `3esn`"), + octest:ct_string("With *,{@usn6:$`3esn`[.e1][_usn4]}[`8esn`(Distinct $``[True])..] As #usn8,999[12e12..$_usn4] As usn2 Where 01 Ends With 0Xa Ends With 0X7 Merge ((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[?:`4esn`|@usn5 *0Xa]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})<-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]-(:_usn4{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]})) Match _usn4=(@usn6 :`4esn`:`6esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`2esn`?:`6esn`|:#usn8{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`}]-(_usn3 {_usn3:0.12 Starts With $`8esn` Starts With @usn5}),#usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Union All Optional Match (((usn1 :`8esn`)<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[? *0xabc]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})));"), + octest:ct_string("With *,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3])[..{`8esn`:usn2 =~7,`5esn`:.e0[01234567..$`8esn`]}][..Any(@usn6 In 010[`5esn`] Where False[$`4esn`..])] As #usn8,$#usn7 Contains $`7esn` Contains .e12 As @usn5 Limit (:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}) Where 01[`3esn`..][Count(*)..] With Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Order By @usn5[0..] Ascending,$@usn5 In $`6esn` In 12e12 Desc,#usn7 In 0.e0 Desc Skip {`8esn`:$_usn4 Starts With 12.e12} Is Null Is Null Limit 999 Contains $1000 Optional Match `2esn`=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}),`8esn`=((:#usn8:`1esn`)-[ *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})) Where .e1 In 123456789"), + octest:ct_string("Return _usn4[@usn6..][$0..],[$usn2 =~1.e1 =~usn1,$usn1 Starts With usn1 Starts With True,$1000 Starts With $`3esn` Starts With 0.e0] In (`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]-(`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]}) In None(`3esn` In 9e1 Contains $999 Where 12.0 Starts With .12 Starts With `6esn`),@usn5 Contains #usn8 Contains 12.0 As `4esn` Limit Any(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null) Is Null Union All Remove `5esn`($`4esn` In 1.e1 In #usn7,0Xa[Count(*)..]).`5esn`,(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`).`3esn`,None(#usn8 In `7esn` Where 9e12[..1e1][..'s_str'])._usn4? Union All Create `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}),(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}) With *,#usn7[``] As usn1,None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6) =~Single(`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8) =~(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]}) Order By $@usn6 In @usn6 In 1e1 Desc,.e1[..$`3esn`][..01] Desc Limit _usn3 Is Null Is Null Unwind 9e0[Count(*)..0.12][$`1esn`..12.0] As @usn6"), + octest:ct_string("Create `1esn`=(`3esn` )-[`7esn`:`4esn`|@usn5 *12..]-({`1esn`:#usn7[0]}),usn1=((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})) Return Distinct #usn7[`8esn`..usn1][$999..`7esn`] As #usn8,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] As `8esn`,999 In #usn8 In $`` Order By 999[12.e12] Desc,07 Ascending,[`6esn` In $`6esn`[``..][Count(*)..] Where $`6esn`[1.e1][$_usn3]|$`5esn` Is Not Null Is Not Null][{`6esn`:usn2 =~usn1 =~Count ( * ),@usn5:999 Is Not Null Is Not Null}..] Desc Merge #usn8=((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})) On Match Set [12e12 =~1e1,0X7[..$`8esn`]].`7esn` =1e1 Ends With $`2esn`,`8esn`+=01[$`7esn`..$@usn6] On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``|.12 In `8esn` In $#usn8]._usn4? =7 =~0.12,`6esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null,Any(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]).`3esn`! =(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null Union Unwind {#usn7:$usn2[0.e0],`6esn`:.e1[..\"d_str\"][..$123456789]}[..Extract(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999|Count ( * ) In 0.12)][..[@usn6 In 010[`5esn`] Where 's_str' Starts With 9e0 Starts With usn2|$`5esn` =~$0 =~``]] As usn1 Unwind {@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0} Contains [`1esn`[usn1][0xabc],`5esn` Contains `7esn`,$``[True]] As usn1 Union Remove (`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})<-[usn1:_usn4]-(#usn7 :@usn6).@usn5?,[@usn5 In 's_str'[0..] Where #usn7[0.12..]|.e12 Ends With 0Xa Ends With 0xabc].`1esn`? Remove [$usn2[0.e0],#usn8 Is Not Null Is Not Null,.12[01][@usn5]].`7esn`!,[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789|123.654[`4esn`..12]]._usn3? Remove Any(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF]).usn1!,[Count(*) Starts With usn2 Starts With `7esn`,07[$`2esn`..9e12][$`4esn`..9e12],9e1 Is Not Null Is Not Null].`2esn`?"), + octest:ct_string("Unwind 9e1 Contains $999 As `8esn` Union Merge ((#usn7 :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) On Match Set `6esn`+=[@usn5 In 's_str'[0..] Where @usn6 In .12 In `3esn`] Ends With Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $`5esn` Is Not Null) On Match Set {#usn8:$`5esn` =~$`8esn` =~usn2}.`4esn`! =999[@usn5..][Null..],`4esn`:`1esn`:_usn4 Unwind 9e1 =~123456789 =~999 As ``;"), + octest:ct_string("Remove [@usn6 In 010[`5esn`] Where 1.e1[$usn1]|_usn3[0x0]].usn2?,usn1().usn1?,Extract(@usn5 In 's_str'[0..] Where #usn7[0.12..]).@usn6! Optional Match (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3),(@usn6 :`4esn`:`6esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`2esn`?:`6esn`|:#usn8{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`}]-(_usn3 {_usn3:0.12 Starts With $`8esn` Starts With @usn5}) Return Distinct *,`3esn`[12..1000][\"d_str\"..1000],@usn6[123.654..][0x0..] As _usn3 Order By $999 In 1e1 Descending,True[..#usn8] Ascending,#usn8 Starts With $1000 Starts With $@usn5 Ascending Skip ``[..#usn8]"), + octest:ct_string("Return 0.0 Contains #usn7 As #usn8,Extract(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|.e1[usn2..$_usn3][.0..$#usn7]) Order By Any(`6esn` In $`6esn`[``..][Count(*)..] Where 1e1 Ends With $`7esn` Ends With .0) Is Not Null Descending,#usn8 Ends With $@usn5 Ends With $7 Desc,usn2[12.e12..] Asc Skip 12.0[$1000..][#usn7..] Limit $`2esn`[0..123456789][``..`1esn`] Delete Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`2esn` =~9e12) Is Null Is Null,0Xa Contains `8esn` Contains 0xabc,Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1) Union Detach Delete 12.e12 =~0X0123456789ABCDEF =~1.e1,$`8esn` Ends With 0x0 Ends With 0e0 Remove (@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`})-[@usn6?{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null}]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}).@usn5?,(`8esn` :@usn6{`7esn`:0e0[999..$``]})-[`6esn`? *01234567..]->(`8esn` {`5esn`:$@usn5 In $`6esn` In 12e12})-[?:`` *7..]-(#usn8 {usn2:12.e12[..$`6esn`],`4esn`:1e1 Contains 's_str' Contains `3esn`}).#usn8 With 0.12 Starts With $`8esn` Starts With @usn5 As @usn5,#usn7 Is Null Is Null As `1esn`,[@usn5[$`6esn`..][$999..],`` Starts With $123456789] Is Null Order By Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) Ascending,'s_str' Starts With 1e1 Starts With $0 Desc Where .e1[7..][9e0..] Union All Delete 0.0[..Count ( * )][..`1esn`] With 0Xa In #usn7 In 's_str',`4esn` Starts With 0e0 As `7esn` Skip $1000 Is Not Null Limit 0X7['s_str'..][01..] Unwind 123.654 In $999 In _usn3 As usn2"), + octest:ct_string("Detach Delete `3esn` Starts With 9e0 Starts With usn1 Remove All(`6esn` In $`6esn`[``..][Count(*)..] Where 0X7['s_str'..][01..]).`2esn`!,(`3esn` {usn2:$usn2[`4esn`..9e12]})<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[_usn4?:@usn6|:`7esn`]->(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}).`4esn` Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] On Create Set `6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn1+=`4esn`[$_usn3..$`7esn`]"), + octest:ct_string("Match ((`2esn` :_usn3)-[? *0xabc{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})),({@usn5:$`5esn` Is Not Null Is Not Null})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Union All Delete $@usn5[..0xabc][..$`3esn`] Create ((`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})),(((@usn6 )<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null}))) Return 0X7[`2esn`..] Order By 0[@usn5..$#usn7] Ascending"), + octest:ct_string("Return Distinct Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..],@usn5 Contains #usn8 Contains 12.0 As `6esn` Order By @usn5 Is Not Null Asc,All(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]) Is Not Null Is Not Null Ascending Skip #usn8 Is Not Null Is Not Null Merge ((`3esn` :usn2{`6esn`:#usn8 Is Null})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->(`7esn` {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01})) On Match Set `5esn`+=[`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})] Union All Unwind @usn6[123.654..][0x0..] As usn1 Remove Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0 =~1e1).`8esn`!,[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]|_usn3 Contains _usn4 Contains $@usn5].usn2!,{`4esn`:_usn4[@usn6..][$0..],@usn5:$@usn6 In @usn6 In 1e1}.`3esn`! Match usn1=((`3esn` {usn2:$usn2[`4esn`..9e12]})<-[?{@usn5:_usn3 Ends With 7 Ends With $`1esn`}]->(_usn3 :_usn4)<-[_usn4?:`3esn`]-(:_usn3{_usn4:.e1[7..][9e0..]})),usn1=(({#usn7:12e12 In $`5esn`})<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}))"), + octest:ct_string("Delete $`8esn`[12.e12][_usn4] Optional Match (({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn4?:@usn6|:`7esn`]-({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn3?:_usn3|:`7esn`]->(`3esn` {`8esn`:`7esn` In 010 In usn1})) Union All Detach Delete Single(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) Contains Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0[1e1][$usn1]) Contains {`4esn`:9e1 Contains 12},@usn6 In .12 In `3esn`,@usn6 In .12 In `3esn` Return 0.e0[$`4esn`..`2esn`],12.e12 Starts With \"d_str\" Starts With 9e1,{``:00 In @usn6 In 0}[(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})] As `5esn` Skip Extract(#usn7 In $999 In 1e1 Where `5esn`[..True][..0.e0]|$`5esn` =~$0 =~``) In (:`7esn`{#usn8:0Xa Ends With $`3esn` Ends With $1000})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]}) In Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|999 Contains 0 Contains $`5esn`) Create (((usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[#usn8 *0x0..]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[_usn4 *00..0Xa{`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]}]-(usn2 :`5esn`{_usn4:`2esn` In 9e0 In 7,@usn5:9e1[`1esn`..0][999..1e1]})))"), + octest:ct_string("Match `6esn`=((:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]})),`3esn`=(:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Where 999 Is Null Is Null"), + octest:ct_string("Remove Extract(#usn8 In `7esn` Where 9e12[$`5esn`..$123456789]|`1esn` Starts With 0xabc Starts With $usn2).`5esn`,{@usn6:0e0 =~7 =~12.0}._usn3!"), + octest:ct_string("Detach Delete None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0),0e0 Starts With 999 Starts With `2esn` Merge (:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Remove Extract(@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00|01[..01234567][..$_usn3]).`6esn`?,None(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null).`5esn`"), + octest:ct_string("Merge (((:`7esn`{_usn3:@usn5[0.0..0X7]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]}))) On Match Set @usn5+=$0[123.654..0.e0],Any(`8esn` In 123456789 =~@usn6 Where .e1 =~_usn4 =~_usn4)._usn3? =01[..$`8esn`][..9e0],usn1 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) On Create Set [#usn7 In 9e1[$`1esn`..] Where 00 Ends With $`1esn` Ends With `7esn`].`2esn` =All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null),``:@usn5,@usn5+=12.e12[_usn4..$1000][$7..$999] Delete {#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]} Return {#usn8:1.e1 Is Null Is Null,_usn4:0xabc In 123456789 In 0x0}[All(@usn6 In 010[`5esn`] Where 00[1.e1..])..],`5esn`(0[1e1][$usn1],Null =~`6esn`)[usn2(Distinct)..][Single(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7)..] As `1esn`,12.0 Starts With $`2esn` Starts With .e1 Order By [#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Ascending Skip `1esn`(#usn7[..07])[..[#usn8 In `7esn` Where 9e1 Starts With Count ( * )|`3esn` Starts With 9e0 Starts With usn1]] Limit _usn3 =~`2esn` =~0 Union Remove All(_usn4 In 12e12 In 123456789 Where .e1 Starts With 12.e12 Starts With `2esn`).`3esn`!,Extract(#usn7 In 9e0[$1000]|9e12[$`5esn`..$123456789]).@usn5! Remove {_usn3:_usn4 Is Null Is Null}.``,``(@usn6[`1esn`..]).`7esn`! Remove All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]).`2esn`,[1000[..`2esn`][..$@usn6],Count(*) Is Null].`4esn`!,`8esn`:`5esn`"), + octest:ct_string("Create (((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))) Match @usn6=((usn1 :_usn3{`4esn`:$`6esn`[1.e1][$_usn3]})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})) Where 1e1 In 0.0 In 0X0123456789ABCDEF With (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Order By usn1 Ends With 9e0 Ends With 9e0 Descending,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Descending Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Union All Create (`5esn` :``:usn2)-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}) Return _usn3[`2esn`..0X7][0.e0..$`3esn`] As `7esn` Order By [usn2[12e12..]['s_str'..]] =~Single(`8esn` In 123456789 =~@usn6 Where $`4esn`[`4esn`][Count(*)]) Ascending,`4esn`[\"d_str\"]['s_str'] Ascending,.12 In `8esn` In $#usn8 Asc Skip None(@usn6 In 010[`5esn`] Where 123.654 In $`7esn`)[(`` {`7esn`:$#usn7[..0Xa]})<-[`1esn`?:usn1|`4esn` *00..0Xa]-(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[usn1? *01234567..{@usn5:01[`3esn`..][Count(*)..]}]->(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})..[False Contains 0 Contains $`6esn`,`1esn` Is Not Null Is Not Null]] Limit [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Contains Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|@usn5 Contains #usn8 Contains 12.0) Detach Delete {`2esn`:12.e12 Is Not Null Is Not Null,``:Count ( * ) In True In @usn5} Ends With {`7esn`:$1000 Starts With $`3esn` Starts With 0.e0,``:$`2esn` Is Null} Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]],$`5esn`[0X7..010][`7esn`..'s_str'] Union Unwind None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])[..[_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4]] As `4esn`"), + octest:ct_string("With $@usn6[..12] As #usn8,Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] As `7esn` Order By $@usn5 In 12e12 In 01 Ascending Limit Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)[..`4esn`][..(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)] Where _usn3 Starts With 12e12 Starts With `5esn` Union All Merge _usn4=(((:`4esn`:`6esn`{usn1:0 =~1e1,`7esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})<-[`6esn`? *..010{usn2:Null[..0]}]-(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`}))) On Create Set [12 =~usn1,7 =~`4esn`,``[9e12][$999]].`1esn` =Extract(#usn7 In $999 In 1e1 Where `5esn`[..True][..0.e0]|$`5esn` =~$0 =~``) In (:`7esn`{#usn8:0Xa Ends With $`3esn` Ends With $1000})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]}) In Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|999 Contains 0 Contains $`5esn`);"), + octest:ct_string("Detach Delete (`5esn` :`6esn`:_usn3)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({#usn8:False Starts With 0X7 Starts With 01234567})<-[usn2?{``:$`1esn`[``][07]}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7}) Is Null Is Null,[`5esn` Contains `1esn` Contains usn1,$@usn5 Ends With @usn5 Ends With 0xabc] Is Null Is Null Return Distinct `1esn`(.0 Starts With `1esn`,01[`3esn`..][Count(*)..]) In [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] As `4esn`,`7esn`[$usn1..]['s_str'..] Detach Delete 01[`3esn`..][Count(*)..],usn2[07..][.0..] Union Remove (:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(_usn4 :#usn7:`5esn`)<-[_usn4]->(`1esn` {#usn7:$`1esn` Ends With 0X0123456789ABCDEF,`3esn`:.12 Starts With _usn3 Starts With $``}).`6esn` Remove Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|$@usn5 Ends With @usn5 Ends With 0xabc).#usn7"), + octest:ct_string("Remove {``:.e12 Ends With 0Xa Ends With 0xabc}.usn2? Union Merge `2esn`=(((:`6esn`:_usn3)<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})-[#usn7?:`7esn`|:`2esn` *..07]-(#usn7 {#usn7:1.e1 Starts With 9e12}))) On Create Set usn2+=$12 Starts With $0 Starts With $`8esn`,`1esn`+=12.0 Starts With .12 Starts With `6esn`"), + octest:ct_string("Create `8esn`=(usn2 :`7esn`)-[? *7..{#usn7:`4esn`[123456789]}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )}),_usn4=((`2esn` {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]-(`1esn` :``:usn2{@usn5:`4esn`[\"d_str\"]['s_str']})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})) Union With Distinct *,1e1 Is Not Null Is Not Null Where `7esn` Ends With $7 Ends With $@usn5 Union All With *,$`7esn`[$_usn4][.e0],`5esn` Contains `1esn` Contains usn1 As `2esn` Order By `4esn` Contains 9e0 Desc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Is Not Null Asc Skip [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] Limit $@usn6 =~#usn7 =~True Where 12.0 Is Null Remove Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 7[0e0..]).`8esn`!,(_usn4 :`1esn`:_usn4)<-[?:`6esn`|:#usn8 *00..0Xa]-(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]}).@usn5! Match `4esn`=((@usn5 {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})),_usn3=(`8esn` :`2esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`6esn`]->({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})"), + octest:ct_string("Merge `3esn`=((`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) Remove Filter(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7).#usn8?,[$#usn7 Ends With 's_str' Ends With 0X7,12e12 Ends With 0.0 Ends With usn1].@usn6?,usn2(usn1 Ends With 9e0 Ends With 9e0).`4esn`? Union All Match usn2=((#usn7 {`8esn`:`7esn` In 010 In usn1})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})),@usn5=(:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']}) With *,1.e1 =~$_usn4,9e12 Contains $_usn3 Contains \"d_str\" As @usn5 Order By `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] Desc,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,$@usn5 Descending Where `6esn`[$1000][`3esn`]"), + octest:ct_string("Detach Delete Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])],[$usn1 Ends With _usn4 Ends With `2esn`][@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)..[#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1]][Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..])..Extract(#usn7 In 9e1[$`1esn`..] Where $999[``])],{`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}[[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]]..][(_usn4 {`6esn`:$_usn4 =~$`1esn` =~`2esn`,_usn3:#usn8 Is Null})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[_usn4?{_usn3:.e1[.e1..`1esn`],@usn6:.12 In `8esn` In $#usn8}]->(usn2 :@usn5)..] With *,12 Ends With True Ends With @usn6,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3) Ascending,$@usn6 =~0xabc =~$999 Descending,[`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5|`7esn`[1e1]] Contains (`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->(`2esn` {`1esn`:$`4esn` Is Null Is Null}) Contains Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``) Desc With *,$`7esn`[$_usn4][.e0],`5esn` Contains `1esn` Contains usn1 As `2esn` Order By `4esn` Contains 9e0 Desc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Is Not Null Asc Skip [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] Limit $@usn6 =~#usn7 =~True Where 12.0 Is Null Union All With Distinct *,``[..False][..`3esn`],(@usn6 :`8esn`)<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`}) Ends With #usn8(Distinct 12.e12 Contains #usn7 Contains $_usn4,01[`3esn`..][Count(*)..]) Ends With [`5esn`[..True][..0.e0],12 In $usn1 In 7,$`8esn`[123456789..][$@usn5..]] As `5esn` Order By $`1esn` Starts With $`4esn` Starts With $_usn3 Asc,01234567 In $@usn6 In $#usn7 Desc Skip 1000 Ends With `7esn` Limit usn2 Starts With .0 Return Distinct #usn7[`8esn`..usn1][$999..`7esn`] As #usn8,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] As `8esn`,999 In #usn8 In $`` Order By 999[12.e12] Desc,07 Ascending,[`6esn` In $`6esn`[``..][Count(*)..] Where $`6esn`[1.e1][$_usn3]|$`5esn` Is Not Null Is Not Null][{`6esn`:usn2 =~usn1 =~Count ( * ),@usn5:999 Is Not Null Is Not Null}..] Desc Merge ``=(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) On Match Set @usn5 ={`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)],`7esn` =None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..];"), + octest:ct_string("Unwind 00[$usn1..] As `3esn`"), + octest:ct_string("Match ((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})),(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Where 123.654 With Distinct 0.e0['s_str'..][01234567..] As `1esn`,None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,.0[$``..0X7] With Distinct $@usn6[.0..][0e0..] Order By $`8esn` Is Not Null Is Not Null Descending,Null Ends With _usn4 Ends With 0.0 Ascending Limit .e0 Where 0.12[..$_usn3][..0Xa] Union All Unwind 123.654 In $999 In _usn3 As usn2 Match #usn8=(({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})<-[?:`3esn`*..]-(usn2 :``:usn2)-[`5esn`? *01234567..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})) Where .0[..'s_str'][..01234567] Unwind 0x0[@usn5][$#usn8] As `1esn` Union All Merge ((`4esn` :_usn3{usn2:01[..0Xa][..12],`1esn`:999[..`1esn`][..07]})-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})) Detach Delete (`1esn` $`4esn`)-[@usn6?:`7esn`|:`2esn`]-({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]}) =~Filter(`3esn` In 9e1 Contains $999 Where 12.0 Is Null Is Null) =~[0xabc In Null],[$`1esn`[``][07],$`4esn`[`6esn`..$12],False[$usn1][0x0]] =~[.e12 Is Null Is Null],$`3esn`"), + octest:ct_string("Detach Delete `` =~.12,[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])],123456789[12] With Distinct $#usn8 Ends With `` Ends With 999 As `5esn`,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]) Is Not Null Is Not Null As _usn3 Order By _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..] Desc,{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Is Not Null Desc,9e0 Ends With $#usn8 Desc Limit 12.0 Starts With $`2esn` Starts With .e1 Where 9e1 Ends With Count(*) Ends With $7 Merge `1esn`=(`6esn` {``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]})-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(`3esn` :usn2{`6esn`:#usn8 Is Null}) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] Union With Distinct usn2 =~$`` =~$`8esn` As `2esn`,'s_str'[0x0..1.e1] As `6esn`,$`5esn`[\"d_str\"..] As `5esn` Limit 01[07..][1.e1..] Return *,1e1[..#usn7][..$`5esn`] Order By [`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8|12.e12[..$`6esn`]][Filter(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])..(:`2esn`{`8esn`:1e1 Contains 's_str' Contains `3esn`})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]-(:`5esn`{@usn6:1000[0e0][1e1]})<-[_usn4]->(:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]})] Ascending Match (`3esn` {_usn4:123.654 In 12})-[`4esn`?:_usn4 *7..]-(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})<-[ *00..0Xa]->(#usn7 :usn1:`3esn`),(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]}) Union Optional Match (_usn4 :#usn7:`5esn`)-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-(`5esn` :#usn8:`1esn`) Where 9e1[`1esn`..0][999..1e1]"), + octest:ct_string("With Distinct $`1esn`[Null][True] As usn2,{`6esn`:$#usn7 =~`2esn`,`4esn`:True[$_usn3..]}[(:`1esn`:_usn4{#usn8:00[12..$`6esn`],@usn6:usn1[..$@usn6][..00]})-[`2esn`:`4esn`|@usn5 *01234567..]-(:`5esn`{_usn4:12 Starts With #usn7 Starts With 0Xa,#usn7:999 Is Null Is Null})-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})..Filter(@usn6 In 010[`5esn`] Where `7esn`[1e1])][Any(@usn6 In 010[`5esn`] Where False[$`4esn`..])..Extract(@usn5 In 's_str'[0..] Where `7esn` In 010 In usn1)] Limit {`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..] Return Distinct 0e0 Ends With 07 Ends With $`8esn` As `1esn`,0[01234567..][0X0123456789ABCDEF..] Order By (`1esn` :`3esn`{#usn7:12[..0e0][...e1]})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})[(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null)][{`2esn`:$999 Ends With .e0}..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]] Ascending,1.e1[..`4esn`] Ascending,0xabc Is Not Null Is Not Null Descending Limit _usn4[.12..$usn2][$_usn3..123.654] Union All Unwind 00 Ends With $`1esn` Ends With `7esn` As `8esn` Merge ((:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})) On Create Set usn1 =[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]][Any(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..])..Single(usn2 In False[$usn1][0x0] Where 9e1 Is Not Null Is Not Null)],`6esn` =12.e12 =~0X0123456789ABCDEF =~1.e1 With $usn1,`1esn` Contains $999 Contains 0.0 As @usn6,$`6esn`[0e0..][010..] Order By 0.0 Ends With $`7esn` Descending,`3esn`[7..0.e0][0.0..123456789] Asc Where ``[9e12][$999] Union Return Distinct *,$`3esn`[.e1][_usn4] Order By 12[None(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)..`5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12])][`5esn`(`2esn`[..01][..True])..(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})<-[? *7..]-(#usn7 :``:usn2)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})] Descending With Distinct usn2 =~$`` =~$`8esn` As `2esn`,'s_str'[0x0..1.e1] As `6esn`,$`5esn`[\"d_str\"..] As `5esn` Limit 01[07..][1.e1..];"), + octest:ct_string("Return $_usn4 Is Null Is Null,usn2 Starts With .0 Order By 9e1[$#usn8][$1000] Descending Limit #usn7 =~9e12 Detach Delete True Contains .e12,[#usn8 In `7esn` Where 9e12[$`5esn`..$123456789]] =~_usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6),True Contains 0x0 Contains $_usn3;"), + octest:ct_string("With Distinct $123456789 Starts With 0.12 Starts With Null As _usn3 Skip {`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Limit [@usn5 In 's_str'[0..] Where @usn6 In .12 In `3esn`] Ends With Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $`5esn` Is Not Null) Unwind #usn8[`8esn`..] As `7esn` Union All Merge _usn3=(((`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})<-[:`2esn`|`4esn` *0X0123456789ABCDEF..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(@usn6 :`2esn`{`4esn`:$999[0Xa..][9e1..]}))) On Match Set ``+=`2esn`[_usn3],[_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]].`2esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`) Is Null,`1esn`+=`4esn`($_usn4 Starts With $1000 Starts With 12)[{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}] On Create Set [usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]].`1esn`? =999 Contains 0 Contains $`5esn` Remove Any(_usn4 In 12e12 In 123456789 Where 9e1 Is Not Null Is Not Null).#usn7? Merge @usn6=(#usn7 {_usn4:1.e1[`8esn`]})<-[usn2{`2esn`:$12 Starts With $usn1}]->(:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]}) On Create Set All(usn2 In 7[12] Where `2esn`[$12..]).#usn8? =[#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3],Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3|01 In $@usn6).`7esn`? ={`3esn`:.e1[..\"d_str\"][..$123456789]},[$`5esn` =~usn1,@usn6 Contains .12 Contains $usn1,999 In #usn8 In $``]._usn3 =[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )]"), + octest:ct_string("Unwind 0e0 Is Not Null As `6esn` Union Merge ``=(:_usn3{`7esn`:$999 Ends With .e0})<-[`8esn`?:`2esn`|`4esn`{usn2:#usn8[`6esn`..][$``..]}]-(@usn6 {`6esn`:$`5esn` =~usn1,`5esn`:$`` Starts With $1000 Starts With @usn6})-[?{_usn3:010[`5esn`],_usn4:#usn8 =~.e0}]-(#usn8 :`3esn`{`5esn`:$@usn6 Ends With `1esn`}) On Match Set `7esn`+=$`5esn` Is Not Null,Any(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7])._usn3 =.e12[`2esn`..010],`8esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null Merge `8esn`=(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) Merge _usn3=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) On Match Set @usn6+=(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1+=999 Is Not Null Is Not Null"), + octest:ct_string("Create @usn5=(({`8esn`:`5esn` Contains #usn7 Contains 9e12})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`1esn` :`3esn`{#usn8:$usn2[0.e0],`8esn`:$`4esn`['s_str'..]})),((`8esn` :@usn6{`7esn`:0e0[999..$``]})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})) With Distinct *,0Xa[Count(*)..],[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,0xabc In .12 In 0Xa Descending,.0 Contains .e12 Contains 0 Desc Skip All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1)[None(@usn6 In 010[`5esn`] Where 00[1.e1..])..[$12[$usn1..][Count(*)..],$@usn5 Contains 's_str' Contains \"d_str\"]][Extract(`3esn` In 9e1 Contains $999 Where 0e0 Starts With 999 Starts With `2esn`|9e1 Ends With Count(*) Ends With $7).._usn4(`1esn`[0.12..][@usn6..],#usn8 =~0.e0)] Limit `1esn` Starts With 9e1 Union Optional Match @usn5=(`3esn` {`4esn`:False Is Null}) Detach Delete $999 In 12 In 1.e1,usn2 Is Not Null Unwind .e12 Ends With 0Xa Ends With 0xabc As @usn6"), + octest:ct_string("Detach Delete $`4esn`[`6esn`..$12],[`3esn` In `2esn`[..01][..True] Where 0.e0[1000.._usn4][.e1..usn1]|`5esn`[..123.654][...e12]],[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e1[usn1..0x0][12.e12..12.0]][..{usn2:0x0[0X7]}][..[12.e12 Is Not Null Is Not Null,$@usn6[.0..][0e0..]]] Delete usn2 Is Null Is Null Create ``=((@usn5 {`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]})<-[`2esn`:`8esn`{`7esn`:$`4esn` Is Null Is Null}]->(usn1 :@usn6)-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(`8esn` :`8esn`)),(:_usn3{usn1:#usn7[..07]})<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]}) Union All Remove Extract(@usn6 In 010[`5esn`] Where 0e0[``..$1000][$7..12.e12]|1000[0e0][1e1]).`6esn`?"), + octest:ct_string("Unwind 1e1 Contains 0.e0 Contains 9e1 As `3esn` Detach Delete $`8esn`[999],usn2 Ends With $`4esn` Union Merge @usn6=((`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[@usn5?:usn2 *00..0Xa{usn2:$usn2[`4esn`..9e12]}]->(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->(usn2 :usn1:`3esn`)) On Match Set [#usn8 In `7esn` Where 01 Ends With 0Xa Ends With 0X7|`8esn` Contains Count(*) Contains $#usn7].``? ={`5esn`:$`1esn` In .e0,``:`6esn` Ends With Count ( * ) Ends With Count ( * )} Is Null Is Null,`8esn`+=$7 Is Null,`7esn` =_usn4 In #usn7 Merge ``=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) On Create Set [12e12 =~1e1,0X7[..$`8esn`]].`7esn` =1e1 Ends With $`2esn`,`8esn`+=01[$`7esn`..$@usn6] On Create Set Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7])._usn4 =count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null,`1esn`+=@usn5[..\"d_str\"],_usn4 =`2esn` =~.e12 =~0X0123456789ABCDEF Union Optional Match #usn7=(((:#usn7:`5esn`{_usn4:$usn2 =~9e1})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`)<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]}))),_usn4=((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})) Unwind None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] As `6esn` Delete `1esn`[`3esn`..],9e12[$`5esn`..$123456789]"), + octest:ct_string("Unwind $1000 Starts With $`3esn` Starts With 0.e0 As usn1 Return Distinct _usn4 Contains $_usn3 Contains .e1,$`4esn`['s_str'..] As `` Order By $usn2 =~9e1 Descending,(:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc,1.e1 =~$_usn4 Desc Skip 12[0e0] Optional Match (_usn4 :#usn7:`5esn`)-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-(`5esn` :#usn8:`1esn`) Where 9e1[`1esn`..0][999..1e1] Union All Remove [usn2 In 7[12] Where #usn7[0.e0..]['s_str'..]].#usn7!,{#usn8:.0 Is Null Is Null}.`2esn` Match ({@usn6:0x0[Count(*)..@usn6][Count(*)..0Xa],`7esn`:0.0 =~9e0 =~$0})-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(:_usn3{_usn3:$`3esn`[.e1][_usn4]})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`) Where 9e12 =~@usn6 Merge `1esn`=(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})-[`4esn`:`1esn`|`3esn` *12..]->(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}) On Match Set Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $@usn5[..0xabc][..$`3esn`]).#usn8 =_usn3 In $`8esn` In @usn6 On Create Set `6esn` =.e1[12.0..],{@usn5:``[9e12][$999]}.@usn5? =usn1 Contains 010,usn2+=All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 1.e1[12..][$`4esn`..])[{usn1:12.e12[..$`6esn`]}..]"), + octest:ct_string("Delete Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..],None(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1)[..{@usn5:$@usn6 Is Not Null Is Not Null}][..{`3esn`:1e1 In 0.0 In 0X0123456789ABCDEF}] Unwind $_usn3 Is Not Null Is Not Null As `3esn` Create (((:`1esn`:_usn4{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]})<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}))),_usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Union Optional Match `8esn`=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2) Where $0[0Xa..$123456789] Union All Delete (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..])"), + octest:ct_string("Detach Delete usn1[False..`5esn`][$1000..$12] Merge _usn3=(((`6esn` {`1esn`:12.0 =~@usn6 =~$`2esn`,`7esn`:0Xa[$`8esn`..][$_usn4..]})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(:`2esn`{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}))) On Match Set _usn3+=`6esn`[$``..$_usn3][1000...0],[usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5|0 Ends With 12.e12 Ends With usn2].`1esn` =123.654 Is Null Is Null On Create Set [usn2[12e12..]['s_str'..],$`3esn`[$_usn4..0Xa],#usn8 Is Null Is Null].usn2? =123.654 In $`6esn` Union All With *,Extract(`6esn` In $`6esn`[``..][Count(*)..] Where $@usn5 Starts With `5esn` Starts With 01234567|0.e0[..$7]) Is Null Is Null Skip 0xabc In 123456789 In 0x0 Limit _usn4 Starts With 1000 Starts With $usn2 Where 123.654[$0..0X7][Null..#usn8] Merge ({`4esn`:.e1[..$`3esn`][..01]})-[`5esn`:#usn7|@usn5]-(`5esn` :`4esn`:`6esn`) Union With $999[0Xa..][9e1..] As `4esn`,0X0123456789ABCDEF In .12 As #usn7 Skip None(@usn6 In 010[`5esn`] Where 123.654 In $`7esn`)[(`` {`7esn`:$#usn7[..0Xa]})<-[`1esn`?:usn1|`4esn` *00..0Xa]-(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[usn1? *01234567..{@usn5:01[`3esn`..][Count(*)..]}]->(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})..[False Contains 0 Contains $`6esn`,`1esn` Is Not Null Is Not Null]] Limit All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..] Remove Extract(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12|0x0[Count(*)..@usn6][Count(*)..0Xa])._usn3!,({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})<-[usn2?:`3esn` *00..0Xa]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})<-[`8esn`? *0Xa{#usn8:$``[True]}]->(_usn3 :`7esn`).`5esn`,Extract(`3esn` In 9e1 Contains $999 Where usn1[False..`5esn`][$1000..$12]).`7esn`"), + octest:ct_string("Return Distinct $0[010..] As `` Skip All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) Is Not Null Is Not Null Union Remove All(`8esn` In 123456789 =~@usn6 Where $`5esn` =~$`8esn` =~usn2).@usn6?,Filter(@usn6 In 010[`5esn`] Where @usn6[9e12]).`2esn` Remove Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`5esn` In _usn3 In 0.0).`8esn` Remove Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]).`3esn`!;"), + octest:ct_string("Delete {#usn7:$usn2[0.e0],`6esn`:.e1[..\"d_str\"][..$123456789]} Is Not Null"), + octest:ct_string("Match #usn8=(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) With Distinct $usn2[`5esn`..][01234567..] As #usn8 Skip $`6esn`[1.e1][$_usn3] Limit False[$`4esn`..] Remove (`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2).#usn7?,Filter(@usn5 In 9e0 Ends With $#usn8 Where 0X7 In $#usn7).`5esn`,[_usn3 Starts With 12e12 Starts With `5esn`,0e0[``..$1000][$7..12.e12],0Xa Ends With $`3esn` Ends With $1000].`8esn`?"), + octest:ct_string("Return Distinct `1esn`[0Xa] As usn1,$`` Contains $`2esn` Contains $usn2 Order By $usn1 Ends With _usn4 Ends With `2esn` Descending,$``[..$#usn7][..`6esn`] Asc Skip 07[999] Union Match ((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4));"), + octest:ct_string("Create #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) Union All Unwind [#usn8 In `7esn` Where 9e12[$`5esn`..$123456789]] =~_usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6) As usn1 With Distinct usn2 Ends With .e1 Ends With $`5esn`,Extract(@usn5 In 's_str'[0..] Where 12e12 Is Not Null) =~[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]] Skip $`3esn`[..$1000][..$123456789] Limit 0xabc Is Null Is Null"), + octest:ct_string("Detach Delete [0.12[$0..$usn2],07 In `6esn`] Is Not Null Is Not Null,12[..$999][..$`2esn`] Union Match _usn3=((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7 *01..123456789]->(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})),``=((:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[`5esn`:#usn7|@usn5]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) Where 0x0[Count(*)..@usn6][Count(*)..0Xa] Remove Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12).`5esn`?,_usn3(0[$`5esn`],`2esn`[..$_usn4][...12]).`2esn`?,(usn1 :@usn6)<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})<-[?{`5esn`:123.654[$0..0X7][Null..#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]}]-(usn2 :`7esn`).#usn8 Create _usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})))"), + octest:ct_string("Unwind Filter(@usn5 In 's_str'[0..] Where $@usn6 =~#usn7 =~True)[Extract(@usn5 In 's_str'[0..] Where _usn3[0x0])..All(_usn4 In 12e12 In 123456789 Where $usn2 Is Not Null Is Not Null)][(`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]})<-[:`8esn`]-(:@usn6)-[? *0X0123456789ABCDEF..]-(usn2 :_usn3)..(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})] As `` Remove All(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1).`6esn`?,None(usn2 In False[$usn1][0x0] Where 9e12 Starts With 1e1).#usn8 Union All Return *,All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],12 In $usn1 In 7 As `8esn` Skip None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1) Limit $@usn5 Starts With .e1 Match `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((:#usn7:`5esn`{`3esn`:Null[..0]})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->(`6esn` :#usn7:`5esn`{_usn3:_usn4 Is Null Is Null})) Where $`5esn` =~usn1 Unwind #usn8 Is Null Is Null As `8esn` Union Delete `6esn` Is Null Is Null,0.e0[..$7] Detach Delete 01 Ends With 0Xa Ends With 0X7 Create (`5esn` :``:usn2)-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})"), + octest:ct_string("Optional Match #usn7=(((`4esn` :#usn7:`5esn`{_usn4:0Xa Ends With $`3esn` Ends With $1000})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7}))),usn1=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) Unwind 9e1[`1esn`..0][999..1e1] As #usn8 Merge `6esn`=(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})"), + octest:ct_string("With *,0.e0 =~00 As `3esn` Order By 's_str'[0x0..1.e1] Asc,usn1[False..`5esn`][$1000..$12] Ascending Where 9e1[$#usn8][$1000] Remove (`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})<-[usn1:_usn4]-(#usn7 :@usn6).@usn5?,[@usn5 In 's_str'[0..] Where #usn7[0.12..]|.e12 Ends With 0Xa Ends With 0xabc].`1esn`? Unwind 0X0123456789ABCDEF Ends With `2esn` Ends With $`7esn` As `8esn`"), + octest:ct_string("Unwind Any(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) =~[#usn7 In 9e1[$`1esn`..] Where 0Xa Ends With $`3esn` Ends With $1000|$@usn5 Contains 's_str' Contains \"d_str\"] =~Extract(@usn6 In False Contains 0 Contains $`6esn` Where $`6esn` Starts With .e12 Starts With $`1esn`|12e12 In 123456789) As `1esn` Union All Optional Match ((`4esn` :@usn6)-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})) Where 0Xa Ends With $`3esn` Ends With $1000 Union Optional Match ``=(((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),((({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:#usn7|@usn5*..]-(`3esn` :usn2{`6esn`:#usn8 Is Null})<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Where $1000 Starts With $`3esn` Starts With 0.e0"), + octest:ct_string("Remove [$@usn5 In 12e12 In 01,$_usn4[..$_usn4][..`7esn`]].`3esn`?,[$_usn4 =~$`1esn` =~`2esn`,#usn7[`8esn`..usn1][$999..`7esn`],$@usn5[..0xabc][..$`3esn`]].`8esn`! Union All Optional Match ((usn2 {`5esn`:$@usn5 In 12e12 In 01})-[`8esn`:#usn7|@usn5 *00..0Xa]-(_usn3 {usn1:0x0 Starts With $`6esn`})),((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[_usn3?:`8esn` *1000..0X0123456789ABCDEF{@usn5:07 Is Not Null Is Not Null}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Remove [12e12 =~1e1].`2esn`!;"), + octest:ct_string("Delete 07 =~`4esn` =~$`1esn`,9e1 In 0X7 In Count(*) Delete 07[_usn3..][`6esn`..] Detach Delete [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] Union All Delete Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]),$_usn3 Is Null Create @usn5=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),_usn4=({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Unwind Extract(#usn7 In $999 In 1e1 Where `5esn`[..True][..0.e0]|$`5esn` =~$0 =~``) In (:`7esn`{#usn8:0Xa Ends With $`3esn` Ends With $1000})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]}) In Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|999 Contains 0 Contains $`5esn`) As usn1 Union All Create `5esn`=(({@usn5:``[9e12][$999]})-[usn2{``:$`1esn` =~999}]-(:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0})),((_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`})<-[? *..010{`2esn`:'s_str'[0..]}]->(_usn3 :`5esn`));"), + octest:ct_string("Merge @usn6=((`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})) On Match Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] Return Distinct $@usn6 Ends With 12.e12 Ends With @usn5 As usn2,``[usn1][`5esn`],`7esn`[..$`6esn`] Order By $@usn6 In @usn6 In 1e1 Desc,.e1[..$`3esn`][..01] Desc Limit Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Merge #usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) On Create Set @usn6+=$`1esn` =~1e1 On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1]"), + octest:ct_string("Unwind 999 In `2esn` In `8esn` As `4esn` Union Return Distinct Null[..010][..1000] As #usn7 Order By Any(`6esn` In $`6esn`[``..][Count(*)..] Where 1e1 Ends With $`7esn` Ends With .0) Is Not Null Descending,#usn8 Ends With $@usn5 Ends With $7 Desc,usn2[12.e12..] Asc Skip 1000[..`2esn`][..$@usn6] Limit [$`6esn`[1.e1][$_usn3],0Xa Ends With $`3esn` Ends With $1000] Ends With (usn2 :_usn4)-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-({`8esn`:usn2 Starts With .0,@usn5:Count(*) In 12 In `6esn`}) Create (`3esn` {_usn4:123.654 In 12})-[`4esn`?:_usn4 *7..]-(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})<-[ *00..0Xa]->(#usn7 :usn1:`3esn`),(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})"), + octest:ct_string("Unwind [#usn8 In `7esn` Where .e0 Starts With $@usn6 Starts With $7|1000[12e12][`5esn`]] Ends With [`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8] Ends With [$``[..\"d_str\"][..$#usn8],$_usn4 Starts With $1000 Starts With 12,#usn7[.e0]] As `8esn` Union All Return 010[12.0..`4esn`][``..Count(*)],$`7esn`[123456789..$1000][Count ( * )..$7],$`2esn` Contains Count(*) As `3esn` Order By [$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) Ascending,[usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Ascending Limit 0.e0 Ends With 1.e1 Unwind Extract(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|.e1[usn2..$_usn3][.0..$#usn7]) As _usn4 Detach Delete 9e1 Contains $999 Union All Unwind (:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Is Not Null As usn1"), + octest:ct_string("With 0.e0 Is Not Null Is Not Null As _usn4,0X0123456789ABCDEF In $usn2 In `4esn`,$usn1 Is Not Null Is Not Null Order By 01234567[$@usn6..$#usn7][123456789..12e12] Desc,Single(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1)[Filter(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])..][Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.0 In 123.654 In _usn4)..] Ascending Skip Null[..0] Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0])"), + octest:ct_string("Detach Delete .e12[..999][..@usn5]"), + octest:ct_string("Unwind $#usn7 =~`2esn` As usn1 Detach Delete [0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]][{usn2:$@usn6 Ends With `1esn`,_usn3:`7esn`}..][{@usn6:1e1 Is Not Null Is Not Null,`8esn`:$`1esn` Starts With $`4esn` Starts With $_usn3}..],`6esn`[$1000][`3esn`] Union Optional Match (`1esn` {#usn7:$`1esn` Ends With 0X0123456789ABCDEF,`3esn`:.12 Starts With _usn3 Starts With $``}) Where 0 =~1e1"), + octest:ct_string("Create `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((`6esn` :`5esn`)<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`5esn` :`4esn`:`6esn`)) Detach Delete [#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null),1e1 Ends With $`2esn` With Distinct $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Order By 12.0 Ends With `2esn` Descending Skip @usn5 Starts With 9e0 Starts With 010 Limit usn1[_usn3..] Where 9e1[usn1..0x0][12.e12..12.0]"), + octest:ct_string("Merge (`1esn` :`3esn`{#usn8:$usn2[0.e0],`8esn`:$`4esn`['s_str'..]})<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]}) On Create Set `2esn`+=0X0123456789ABCDEF In .12,`1esn` =$`7esn` In False In $`1esn` On Create Set usn1+=_usn3 Starts With 12e12 Starts With `5esn`,`4esn`+=(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})[..Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|Count ( * )[$`5esn`..][$7..])][..$usn2],#usn7+=.e0 Is Null Optional Match #usn8=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}),`2esn`=(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Union Optional Match `8esn`=(`5esn` :``:usn2)-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}),((:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Create (`6esn` {`2esn`:$`3esn` Ends With 01234567}),usn2=({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2)<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(_usn4 :@usn5) Return Distinct *,Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] As `7esn` Skip $0 =~9e1 =~$`2esn` Limit Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..] Union All Merge `1esn`=(`5esn` :`5esn`{#usn7:``[$`3esn`]}) On Create Set @usn6+=$`1esn` =~1e1 On Match Set Any(`3esn` In 9e1 Contains $999 Where usn2[12.e12..]).usn1? =usn1[False..`5esn`][$1000..$12],#usn7 =Single(#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6])[Filter(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])..],Any(#usn8 In `7esn` Where .e12 Starts With $#usn8 Starts With False)._usn3? =1.e1 Ends With $#usn7 With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Order By 1.e1 In 1000 In _usn3 Desc,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Descending,123.654 Is Null Is Null Asc Where _usn4[`7esn`]"), + octest:ct_string("Optional Match (((:`1esn`:_usn4{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]})<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}))),_usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Where _usn4[`7esn`];"), + octest:ct_string("Return *,`3esn`[12.0][$_usn3],.e1 =~_usn4 =~_usn4 As `3esn` Limit Count ( * ) In 0.12 With Distinct 010[12.0..`4esn`][``..Count(*)],$`7esn`[123456789..$1000][Count ( * )..$7],$`2esn` Contains Count(*) As `3esn` Skip `1esn` Where Null[..0] Union All Unwind #usn8 Is Not Null As `1esn`"), + octest:ct_string("Remove {usn1:0 =~1e1,`7esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}.usn1!,None(`5esn` In `7esn`[$usn2..][$123456789..] Where $123456789[...12][..@usn6]).usn2? Unwind $#usn8[..$999] As #usn7 Optional Match _usn4=((:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})),(`2esn` :`1esn`:_usn4)-[?*..]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})"), + octest:ct_string("Return Distinct _usn3 Is Not Null Is Not Null As `` Skip 0X7[..$`8esn`] Limit {@usn5:$@usn6 Is Not Null Is Not Null} Starts With [`3esn` In `2esn`[..01][..True] Where 0x0[usn1..usn1]] Starts With Extract(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..]|0X7['s_str'..][01..]) Delete $`7esn`[@usn5..][usn2..],0x0 In `8esn`"), + octest:ct_string("Unwind 0.0 Ends With $`7esn` As #usn7 Detach Delete Single(_usn4 In 12e12 In 123456789 Where False Is Null)[[$usn1,_usn4 Contains `` Contains 1.e1]][(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]})],0 =~1e1 Unwind (#usn7 )<-[`5esn`?:@usn5|_usn3{``:0.0 =~9e0 =~$0}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]}) Contains Filter(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null) As `` Union All Return Distinct *,$@usn6[123.654..00] As @usn5,7 Is Null Is Null Order By 0[01234567..][0X0123456789ABCDEF..] Desc,Extract(usn2 In 7[12] Where usn1 Starts With 00|`8esn` Contains Count(*) Contains $#usn7) Contains None(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[0.e0]) Contains Extract(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]|$`4esn`['s_str'..]) Asc,[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]][Any(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..])..Single(usn2 In False[$usn1][0x0] Where 9e1 Is Not Null Is Not Null)] Ascending Skip $_usn4[..123456789] Limit 0e0 Ends With 07 Ends With $`8esn` Merge ((#usn7 {#usn7:1.e1 Starts With 9e12})<-[ *..07{`5esn`:999 In 0e0}]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})) On Create Set `4esn`:usn2,`2esn`+=`2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..] On Match Set [#usn8 In `7esn` Where 00 In @usn6 In 0].`1esn`? =Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) Is Not Null Is Not Null,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]).@usn6! =[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]),_usn4+=$_usn3[$12]"), + octest:ct_string("Merge usn1=(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]-(`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]}) On Match Set 0.12.`8esn`? =.0 Contains .e12 Contains 0 Remove Any(@usn5 In 's_str'[0..] Where #usn7[0.12..])._usn3,[`6esn` In $`6esn`[``..][Count(*)..] Where @usn5[0.0..0X7]].``! Union Return Distinct 07 As `4esn` Skip `2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..] Unwind Any(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) =~[#usn7 In 9e1[$`1esn`..] Where 0Xa Ends With $`3esn` Ends With $1000|$@usn5 Contains 's_str' Contains \"d_str\"] =~Extract(@usn6 In False Contains 0 Contains $`6esn` Where $`6esn` Starts With .e12 Starts With $`1esn`|12e12 In 123456789) As `1esn` Merge usn1=((`2esn` :@usn5)) On Match Set Any(#usn8 In `7esn` Where $`3esn` Contains $`1esn`).`8esn`? =0x0 Contains $`6esn` Contains `4esn`,Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where False[$usn1][0x0]|@usn5[0.0..0X7]).usn2! =Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1),`3esn` =12.e12[..$999][..07] On Match Set usn1 =`5esn` Contains `5esn` Contains $_usn3,#usn8 =True Contains 0x0 Contains $_usn3 Union All Create ((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[_usn3?:`8esn` *1000..0X0123456789ABCDEF{@usn5:07 Is Not Null Is Not Null}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})),usn2=(`6esn` :usn1:`3esn`)-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})<-[ *..07{`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn3{@usn5:$1000 Starts With $`7esn`})"), + octest:ct_string("Return Distinct $`6esn` Starts With .e12 Starts With $`1esn` As @usn6,$`4esn` Starts With $`4esn` Starts With $_usn3 Order By Extract(@usn6 In 010[`5esn`] Where 00[$usn1..]|_usn3[$usn2..][$``..])[Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])] Asc,True Ends With $_usn3 Ends With 12 Desc Skip 9e1[1.e1][$`8esn`] Limit (`3esn` :usn2)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null}) Is Null Union All Remove {`8esn`:usn2 =~7,`5esn`:.e0[01234567..$`8esn`]}.#usn8 Remove #usn7:`1esn`:_usn4,[`4esn` Ends With 12 Ends With .12,`5esn` Contains `1esn` Contains usn1,$`2esn` =~9e12].@usn5!;"), + octest:ct_string("Match `5esn`=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']}),`7esn`=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}) Unwind {_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]} Contains ({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}) Contains None(#usn8 In `7esn`) As `4esn` Union Remove [`6esn` In $`6esn`[``..][Count(*)..]|$`4esn`['s_str'..]].@usn6?,(usn2 {`5esn`:$@usn5 In 12e12 In 01})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})-[`7esn`:`4esn`|@usn5 *12..]-(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]}).`5esn`"), + octest:ct_string("Remove Filter(`8esn` In 123456789 =~@usn6 Where 0x0[@usn6..][01..]).#usn8! Match `1esn`=(`5esn` :`5esn`{#usn7:``[$`3esn`]}) Union All Remove #usn7:`3esn`,Single(`6esn` In $`6esn`[``..][Count(*)..] Where 's_str' Starts With 1e1 Starts With $0).`4esn`?"), + octest:ct_string("Remove (_usn4 {usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[`2esn`:`8esn`{`7esn`:$`4esn` Is Null Is Null}]->(usn1 :@usn6)-[usn2?:`3esn` *00..0Xa]-(`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]}).`8esn`,{usn1:$123456789 In 0.12}.`1esn`! Union Merge `4esn`=({`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}) On Create Set #usn7+=Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] On Match Set `2esn` =9e1 Ends With Count(*) Ends With $7 Union All Merge ({`4esn`:.e1[..$`3esn`][..01]})-[`5esn`:#usn7|@usn5]-(`5esn` :`4esn`:`6esn`) Create (_usn3 :`7esn`) Unwind $`2esn` Starts With $@usn5 Starts With #usn7 As `4esn`"), + octest:ct_string("Remove (_usn4 {_usn4:Null[..010][..1000],_usn3:.0 Is Null Is Null})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}).usn2 Union All Detach Delete $`1esn`[``][07],`2esn` Starts With .e1 Starts With 9e12,$`4esn` In 1.e1 In #usn7 Union Match (((`6esn` :#usn7:`5esn`)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(_usn4 :#usn7:`5esn`))),`1esn`=(`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})"), + octest:ct_string("Delete 0x0[usn1..usn1] Union All Return Distinct $`3esn`[..0xabc][..$7] As ``,`` Is Not Null Is Not Null As `6esn` Order By (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Ascending,123.654 In 12 Desc,$_usn3[_usn4..] Asc Skip 0[.12..1e1] Limit 01 Ends With .12 Ends With 07 Merge #usn8=(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1}) On Create Set Single(`5esn` In 0X7 In $#usn7 Where 123456789 =~$999).`5esn` =0[01234567..][0X0123456789ABCDEF..],All(`6esn` In $`6esn`[``..][Count(*)..]).`6esn` =1.e1 Starts With 9e12 With {#usn8:1.e1 Is Null Is Null,_usn4:0xabc In 123456789 In 0x0}[All(@usn6 In 010[`5esn`] Where 00[1.e1..])..],`5esn`(0[1e1][$usn1],Null =~`6esn`)[usn2(Distinct)..][Single(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7)..] As `1esn`,12.0 Starts With $`2esn` Starts With .e1 Order By [#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Ascending Skip `1esn`(#usn7[..07])[..[#usn8 In `7esn` Where 9e1 Starts With Count ( * )|`3esn` Starts With 9e0 Starts With usn1]] Limit _usn3 =~`2esn` =~0 Where #usn7[0.e0..]['s_str'..] Union All Optional Match (((:`1esn`:_usn4{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]})<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}))),_usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Where _usn4[`7esn`]"), + octest:ct_string("Merge `7esn`=((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )) On Create Set `5esn`+=_usn4[$usn1..01234567][123.654..`5esn`],`2esn`+=#usn7 In 0.e0 On Match Set Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]|$``[..\"d_str\"][..$#usn8]).@usn6 =[$usn1[`2esn`..][$`2esn`..]][(`3esn` :usn2)-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})..`2esn`(Distinct $@usn6 Is Not Null Is Not Null,Count ( * ) Ends With $123456789)],None(#usn8 In `7esn` Where ``[7.._usn3]).@usn6? =`6esn`,Any(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])._usn4! =`` Is Null Match (((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[?:_usn4]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1}))),#usn7=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`})) Where 123.654 In 12 Return [#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]) As usn2,(`5esn` :@usn6{usn1:'s_str'[0..]})<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})[All(#usn7 In 9e1[$`1esn`..] Where ``[$`3esn`])] As `3esn` Order By @usn6 =~999 =~@usn5 Ascending,$@usn5[..$#usn7] Descending,{`4esn`:12e12 =~$`7esn`} Is Not Null Is Not Null Desc Skip Count(*)[9e12..12.0];"), + octest:ct_string("Unwind Count ( * ) Ends With $123456789 As ``"), + octest:ct_string("Match `2esn`=(`5esn` :``:usn2)<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2) Union Match `1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Union Optional Match `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}),(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}) Where `2esn` =~.e12 =~0X0123456789ABCDEF Merge `8esn`=((_usn3 :_usn4))"), + octest:ct_string("Remove Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01).`3esn`,`5esn`(Distinct).usn1! Detach Delete `2esn` Starts With $`7esn` Remove `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]).#usn8! Union All Create ((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[_usn3?:`8esn` *1000..0X0123456789ABCDEF{@usn5:07 Is Not Null Is Not Null}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})),usn2=(`6esn` :usn1:`3esn`)-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})<-[ *..07{`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn3{@usn5:$1000 Starts With $`7esn`});"), + octest:ct_string("Optional Match (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Where $`7esn`[.e1][12.0] Union All Detach Delete `3esn` Starts With 9e0 Starts With usn1 Remove All(`6esn` In $`6esn`[``..][Count(*)..] Where 0X7['s_str'..][01..]).`2esn`!,(`3esn` {usn2:$usn2[`4esn`..9e12]})<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[_usn4?:@usn6|:`7esn`]->(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}).`4esn` Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] On Create Set `6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn1+=`4esn`[$_usn3..$`7esn`] Union All Return Distinct 12.e12 =~0X0123456789ABCDEF =~1.e1 As `6esn`,0.e0[..$7] As _usn3,usn1 Ends With 0.0 Skip usn2 =~$`` =~$`8esn` Limit (usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null Delete 07[_usn3..][`6esn`..] Unwind 9e12 =~@usn6 As usn1"), + octest:ct_string("Return *,$`8esn`[999] As @usn5,00 Ends With `` Ends With 12.e12 Skip All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] Merge `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] On Match Set (`3esn` {usn2:$usn2[`4esn`..9e12]})<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1).#usn7! =_usn4 Starts With `` Starts With 1000,Extract(`3esn` In `2esn`[..01][..True] Where 0X7[..$`8esn`]|$#usn7 Starts With 01234567 Starts With $0).`5esn`! =@usn6(Count ( * ) In True In @usn5)[None(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)];"), + octest:ct_string("With *,010 Is Not Null Is Not Null As `1esn`,0 =~1.e1 =~$#usn7 Order By Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] Ascending Skip $`5esn`[0X7..010][`7esn`..'s_str'] Where $#usn8[12.e12..`8esn`][12.0..0.0] Optional Match `2esn`=((`6esn` :#usn7:`5esn`)<-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]->(:#usn8:`1esn`$`7esn`)),((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(:`8esn`{``:$`1esn` =~999})) Union Return Distinct *,$`7esn`[0.12] Skip _usn4 Starts With 1000 Starts With $usn2"), + octest:ct_string("Unwind $`1esn` In .e0 As #usn7 Union Optional Match @usn6=(#usn7 {_usn4:1.e1[`8esn`]})<-[usn2{`2esn`:$12 Starts With $usn1}]->(:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]}) Where `6esn`[$1000][`3esn`] Union All Match usn1=(((:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[@usn6:`7esn`|:`2esn` *..07{`6esn`:$_usn4 Is Null Is Null,``:1e1 Ends With $`7esn` Ends With .0}]-(`5esn` :`3esn`{``:`` Is Null,`8esn`:$@usn6[$0..9e12][.e12..Null]}))),(`2esn` :`1esn`:_usn4)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}) Create @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) Merge ((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})) On Create Set `2esn`+=0X0123456789ABCDEF In .12,`1esn` =$`7esn` In False In $`1esn`"), + octest:ct_string("Return usn2 =~$`` =~$`8esn` As `2esn`,'s_str'[0x0..1.e1] As `6esn`,$`5esn`[\"d_str\"..] As `5esn` Limit 01[07..][1.e1..] With Distinct $_usn3[$12] As #usn8,_usn4(Distinct usn2[07..][.0..]) Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]|$`2esn` Starts With `4esn` Starts With $usn1) Ends With Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Skip Single(#usn7 In $999 In 1e1 Where 07 In `6esn`) Is Null Is Null Limit .0 Contains .e12 Contains 0 Remove Extract(#usn7 In True Contains 's_str' Contains $usn1).#usn8!,#usn7().#usn7 Union Create ((`4esn` :`4esn`:`6esn`)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Optional Match (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Return *,$`5esn` Is Not Null,usn2 Contains $0 Contains .0 Order By 0.e0[$`4esn`..`2esn`] Descending,$123456789[12e12..9e0] Asc,$_usn3[_usn4..] Asc Skip $`7esn`[$_usn4][.e0] Limit Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..] Union All Remove {`5esn`:1.e1[`8esn`],`1esn`:.e0}.`1esn`,{`6esn`:12.e12 Is Not Null Is Not Null,`1esn`:#usn7[0.12..]}.`3esn`?,`6esn`(`1esn`[`3esn`..],01[..01234567][..$_usn3]).`1esn`? Unwind None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]) Ends With [_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4|0x0[0X7]] As usn1 Remove [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`8esn`[123456789..][$@usn5..]|#usn8 Is Not Null Is Not Null].#usn7"), + octest:ct_string("With *,12[``...e12] As _usn4,0X0123456789ABCDEF In $7 Order By 123.654 Starts With usn2 Starts With Count ( * ) Descending,01234567[Null..$_usn3] Asc Skip #usn8 Is Not Null Limit 9e12[_usn4..$`5esn`][_usn4...e1] Where 00[False..0e0]"), + octest:ct_string("Merge (((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[?:`8esn`*]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}))) Union All With Distinct 07[$_usn4][usn2] Order By `4esn` In 010 Asc,Single(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)[[07[_usn3..][`6esn`..],999[123.654..$usn2][Count ( * )..0x0]]..][Single(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])..] Descending Skip `` Is Not Null Is Not Null Where 9e12 Starts With 1e1"), + octest:ct_string("Merge `7esn`=(((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}))) On Create Set Single(`5esn` In 0X7 In $#usn7 Where 123456789 =~$999).`5esn` =0[01234567..][0X0123456789ABCDEF..],All(`6esn` In $`6esn`[``..][Count(*)..]).`6esn` =1.e1 Starts With 9e12 With Distinct 0.0[$usn2..] As ``,1e1[_usn3] As `3esn`,(:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Skip $`8esn`[999] Remove (:`1esn`:_usn4{`8esn`:#usn8 Is Null Is Null})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]})-[`2esn`?:@usn6|:`7esn`]->(#usn8 :@usn5{_usn4:$#usn7 Contains $`7esn` Contains .e12}).`7esn`? Union Return 01234567 In 123456789 In 12 As usn1,Count ( * ) In 123456789 In $@usn5 As _usn3 Order By #usn7 In 0.e0 Desc Skip [$#usn7 Ends With 's_str' Ends With 0X7,12e12 Ends With 0.0 Ends With usn1][Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $`6esn`[``..][Count(*)..])..Extract(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1|``[$`3esn`])][(#usn8 :`5esn`)<-[usn2?:`3esn` *00..0Xa]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})..{_usn3:_usn4 Is Null Is Null}] Union All Create (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}),`6esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) With Distinct $#usn8 Ends With `` Ends With 999 As `5esn`,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]) Is Not Null Is Not Null As _usn3 Order By _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..] Desc,{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Is Not Null Desc,9e0 Ends With $#usn8 Desc Limit 12.0 Starts With $`2esn` Starts With .e1 Where 9e1 Ends With Count(*) Ends With $7"), + octest:ct_string("With $usn1,`1esn` Contains $999 Contains 0.0 As @usn6,$`6esn`[0e0..][010..] Order By 12.0 =~@usn6 =~$`2esn` Ascending Skip 123.654 In $999 In _usn3 Union All Unwind (`1esn` :`3esn`{#usn7:12[..0e0][...e1]})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})[(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null)][{`2esn`:$999 Ends With .e0}..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]] As `8esn` Return *,0Xa[Count(*)..],[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,0xabc In .12 In 0Xa Descending,.0 Contains .e12 Contains 0 Desc Skip All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1)[None(@usn6 In 010[`5esn`] Where 00[1.e1..])..[$12[$usn1..][Count(*)..],$@usn5 Contains 's_str' Contains \"d_str\"]][Extract(`3esn` In 9e1 Contains $999 Where 0e0 Starts With 999 Starts With `2esn`|9e1 Ends With Count(*) Ends With $7).._usn4(`1esn`[0.12..][@usn6..],#usn8 =~0.e0)] Limit `1esn` Starts With 9e1 Merge `4esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]})))"), + octest:ct_string("Merge `7esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)) Detach Delete 12[0e0],$``[01234567..][.0..] Return Distinct Filter(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3]) In ({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) In Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0),.e0 Is Not Null Is Not Null As `7esn`,$`2esn` Ends With `6esn` As usn1 Order By `` Is Null Descending,_usn4(Distinct usn2[07..][.0..]) Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]|$`2esn` Starts With `4esn` Starts With $usn1) Ends With Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) Desc Limit 0.e0 Is Not Null Is Not Null;"), + octest:ct_string("Remove [`3esn` In `2esn`[..01][..True] Where 00[01234567][False]].`7esn`!,Any(usn2 In False[$usn1][0x0] Where 12.e12 =~0X0123456789ABCDEF =~1.e1)._usn3,Extract(#usn7 In 9e1[$`1esn`..] Where $`7esn`[$_usn4][.e0]|$`3esn`[..$1000][..$123456789]).`1esn`? Union All Return Distinct *,$_usn4[9e0..][$1000..] As `2esn` Order By $12 =~0X7 =~0x0 Ascending,1e1[_usn3] Asc;"), + octest:ct_string("With Distinct 0.e0['s_str'..][01234567..] As `7esn`,Single(_usn4 In 12e12 In 123456789 Where 0e0 =~7 =~12.0) Starts With Extract(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]|9e12 =~@usn6),[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Skip $`6esn`[1.e1][$_usn3] Limit usn1 Is Not Null;"), + octest:ct_string("Remove Any(@usn6 In False Contains 0 Contains $`6esn` Where $`5esn`[..00]).#usn7?,[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1]._usn3,Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|_usn3[`2esn`..0X7][0.e0..$`3esn`]).`7esn`? Remove {``:.e12 Ends With 0Xa Ends With 0xabc}.usn2? With Distinct 010 Starts With $`` Starts With 0e0,$#usn8 Ends With `` Ends With 999 As _usn3,$@usn5 Ends With @usn5 Ends With 0xabc Skip None(#usn7 In $999 In 1e1 Where 01234567[Null..$_usn3]) Ends With Extract(#usn8 In `7esn` Where $`5esn` Is Not Null Is Not Null) Limit `6esn` In .12 Where $``[7] Union Merge `7esn`=(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789})"), + octest:ct_string("Return Distinct None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,9e1[@usn5][$usn1] As `5esn`,`4esn` Starts With 0e0 As `7esn` Order By 1.e1 Contains `6esn` Contains 0.e0 Descending,07[..07][..0X7] Descending Limit Single(_usn4 In 12e12 In 123456789 Where 0e0 =~7 =~12.0) Starts With Extract(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]|9e12 =~@usn6) With .e1 In 0,Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])[[00[12..$`6esn`],$`4esn`['s_str'..]]..] Order By (:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Is Not Null Descending"), + octest:ct_string("Create ((:`3esn`{`1esn`:`7esn`,`8esn`:12e12 =~$`7esn`})-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})),(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Union With *,{`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Order By [0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]][{usn2:$@usn6 Ends With `1esn`,_usn3:`7esn`}..][{@usn6:1e1 Is Not Null Is Not Null,`8esn`:$`1esn` Starts With $`4esn` Starts With $_usn3}..] Desc,0.0[usn1..] Desc Delete 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2],$`3esn` Ends With 1000,[$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..]"), + octest:ct_string("Delete ``[$`1esn`],All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] With Distinct usn2 =~$`` =~$`8esn` As `2esn`,'s_str'[0x0..1.e1] As `6esn`,$`5esn`[\"d_str\"..] As `5esn` Order By 1.e1 Contains `6esn` Contains 0.e0 Descending,07[..07][..0X7] Descending Skip usn1[False..] Limit `6esn`[$1000][`3esn`] Where 0x0[0X7] Union Create (_usn3 :`4esn`:`6esn`)-[?:@usn6|:`7esn`]-(:#usn8:`1esn`)-[_usn3?]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Remove (_usn4 {`7esn`:#usn7[0.e0..]['s_str'..]})-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]}).`2esn` Union Create `2esn`=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}),(({@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`})<-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->({usn2:$`2esn` Is Null,#usn8:.0 Is Null Is Null}))"), + octest:ct_string("Optional Match #usn8=((`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})) Merge ((($#usn8)<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]-(`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))) Merge (`5esn` :`4esn`:`6esn`)<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]}) On Create Set `4esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1 =(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Union Optional Match (`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-({`1esn`:#usn7[0]}),((:`4esn`:`6esn`{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})) Delete {#usn8:.0 Is Null Is Null}[..(_usn3 :@usn6{usn2:0Xa =~False =~@usn5,`3esn`:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})][..{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}],Count(*) Is Not Null Is Not Null"), + octest:ct_string("Create `3esn`=((:_usn3{_usn3:$`3esn`[.e1][_usn4]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:`5esn`)<-[ *01234567..]->(#usn8 :`8esn`)) Return `3esn`[...e1] Skip 0 Is Not Null Return Distinct *,$999[0Xa..][9e1..] As `4esn` Skip $usn2 Ends With $123456789 Limit @usn6 Contains .12 Contains $usn1"), + octest:ct_string("With *,9e12 =~@usn6,`4esn` Contains 9e0 Order By 1000[..$1000] Descending Skip Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Limit {``:123.654 In $`7esn`}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..None(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6 =~#usn7 =~True)] Where $`` Starts With $1000 Starts With @usn6 With 12.0 Ends With `2esn` Order By 0e0 =~7 =~12.0 Ascending,0Xa[Count(*)..] Ascending,7 Is Not Null Descending Skip $@usn6 Ends With 123456789 Ends With 12.0 Limit Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Where usn1 In `` Return Distinct $@usn6 Ends With 12.e12 Ends With @usn5 As usn2,``[usn1][`5esn`],`7esn`[..$`6esn`] Order By $@usn6 In @usn6 In 1e1 Desc,.e1[..$`3esn`][..01] Desc Limit Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null;"), + octest:ct_string("Return *,00[12..$`6esn`] As _usn4,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] As `3esn` Skip `8esn` Contains `2esn` Contains .0 Limit Null[.12..12e12] Return Distinct *,`` =~.12 As #usn7 Order By Extract(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With [#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4] Ends With [False[$`4esn`..],$#usn7[..0Xa]] Asc,@usn6[..$@usn5] Ascending Skip \"d_str\" Is Null Is Null Limit `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Is Null Optional Match usn2=(`6esn` {`2esn`:$`3esn` Ends With 01234567}) Where usn1 Contains 010 Union Unwind $@usn6[_usn3..][$999..] As `4esn` Optional Match `8esn`=(:`4esn`:`6esn`{usn2:$`8esn` Is Not Null Is Not Null})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Where $999 Ends With .e0"), + octest:ct_string("Merge ((:`3esn`{@usn5:$`5esn` In _usn3 In 0.0})-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]->(:@usn5{#usn7:12e12 In $`5esn`})-[@usn5 *0X7..]->(`` $`6esn`)) On Match Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] With *,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As `8esn` Order By All(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null) Descending,0xabc In .12 In 0Xa Desc Detach Delete 0.12 Contains False Contains 1.e1 Union Return 0.e0 Starts With .0 Starts With 123456789,$7[01..$123456789][#usn7..12.0],(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`) As `` Order By True Ends With $_usn3 Ends With 12 Desc,$`6esn` Starts With .e12 Starts With $`1esn` Ascending,{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]} Contains ({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}) Contains None(#usn8 In `7esn`) Descending Detach Delete Extract(`6esn` In $`6esn`[``..][Count(*)..] Where $@usn5 Starts With `5esn` Starts With 01234567|0.e0[..$7]) Is Null Is Null Merge `7esn`=((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )) On Create Set `5esn`+=_usn4[$usn1..01234567][123.654..`5esn`],`2esn`+=#usn7 In 0.e0 On Match Set Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]|$``[..\"d_str\"][..$#usn8]).@usn6 =[$usn1[`2esn`..][$`2esn`..]][(`3esn` :usn2)-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})..`2esn`(Distinct $@usn6 Is Not Null Is Not Null,Count ( * ) Ends With $123456789)],None(#usn8 In `7esn` Where ``[7.._usn3]).@usn6? =`6esn`,Any(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])._usn4! =`` Is Null Union Merge #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}) On Match Set _usn3:`7esn` On Create Set Single(@usn6 In 010[`5esn`] Where 123.654).`6esn`? =0.e0[0X0123456789ABCDEF..],(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}).`3esn`? =999[..`1esn`][..07],[@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1].`6esn` =`7esn` Starts With @usn5 Merge ((_usn3 :usn2)) On Match Set Any(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0).`5esn`! =.e12 Ends With 0Xa Ends With 0xabc On Match Set `5esn`(Distinct .12[123.654..]).`3esn` =01234567 In 123456789 In 12,`6esn` =[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null Return 0.e0 =~00 As `3esn`,(`2esn` {`7esn`:999 In 0e0})<-[`8esn`?:`2esn`|`4esn` *01..123456789{`8esn`:$`4esn` Is Null Is Null,usn1:$1000 Starts With $`3esn` Starts With 0.e0}]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[ *0X7..{#usn8:.e0 Contains $#usn8}]->(`2esn` :`6esn`:_usn3) In (`8esn` :`6esn`:_usn3)-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(_usn4 {_usn4:123.654 In 12})-[?:#usn8|:`3esn` *0x0..]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) In {_usn4:.e0 Contains $#usn8,@usn6:1000[12e12][`5esn`]} As ``,#usn8[`6esn`..][$``..] As `2esn`"), + octest:ct_string("With *,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As `8esn` Where $`7esn`[.e1][12.0] Union Unwind $1000 Ends With `8esn` Ends With `2esn` As `3esn`;"), + octest:ct_string("Merge _usn3=((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7 *01..123456789]->(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})) On Create Set (:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(usn1 :`7esn`).`4esn` =1.e1[$`3esn`][0Xa],(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})<-[`5esn`?:@usn5|_usn3{``:0.0 =~9e0 =~$0}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]}).usn2 =$`4esn` Starts With 0 Starts With `7esn`,usn2+=`2esn`[..01][..True] Union All Remove Filter(`3esn` In 9e1 Contains $999 Where 0Xa Ends With $`3esn` Ends With $1000).`4esn`,`1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]).#usn8!,Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 7[0e0..]).`8esn`! With Distinct `7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..],$`6esn`[0e0..][010..] Skip Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3) Limit 1.e1 Starts With 9e12 Union All Unwind Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)[(`` :`5esn`{@usn5:123456789 =~@usn6})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`7esn` {``:9e1 Contains $999,``:$usn2[True..0X0123456789ABCDEF]}).._usn3(Distinct 0x0 Contains $`6esn` Contains `4esn`,usn2[1.e1])][(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})..[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|9e1 Is Null]] As `4esn` Unwind [$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) As #usn8"), + octest:ct_string("Match (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}))) Where 010 Starts With 0 Starts With 0.0 Unwind usn2[`8esn`..][0X0123456789ABCDEF..] As `5esn`"), + octest:ct_string("With *,#usn8 Is Not Null Skip usn1 Ends With 9e0 Ends With 9e0 Limit `8esn` Contains Count(*) Contains $#usn7"), + octest:ct_string("Merge (`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]}) On Create Set usn1+={_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]} Contains ({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}) Contains None(#usn8 In `7esn`) Unwind usn2[..$usn1][..$#usn8] As `` Union Remove {@usn6:0e0 =~7 =~12.0}._usn3!,`3esn`:_usn3 Optional Match ``=(_usn3 :`4esn`:`6esn`)-[?:@usn6|:`7esn`]-(:#usn8:`1esn`)-[_usn3?]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}),#usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) Return Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],010 Is Null Is Null As #usn8,All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] As `8esn` Order By $_usn3[_usn4..] Asc,0.12 Is Null Is Null Desc,`6esn` Ends With _usn4 Ends With False Ascending Skip 1.e1 =~.12 Limit `1esn`[$@usn6][07] Union All Optional Match ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)) Merge ((usn2 {`5esn`:$@usn5 In 12e12 In 01})-[`8esn`:#usn7|@usn5 *00..0Xa]-(_usn3 {usn1:0x0 Starts With $`6esn`})) Remove Filter(`3esn` In `2esn`[..01][..True] Where #usn7 Starts With $123456789 Starts With 12e12).`8esn`?,@usn5:`6esn`:_usn3,#usn7:@usn6"), + octest:ct_string("Match (:`7esn`{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]}) Where .0[..'s_str'][..01234567] Unwind None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]) Is Null As `8esn` Union Remove {`5esn`:01234567[\"d_str\"..`4esn`]}.`3esn`? Return *,$`8esn`[999] As @usn5,00 Ends With `` Ends With 12.e12 Skip All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] Optional Match usn2=((usn1 {_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})),({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) Where .e1[usn2..$_usn3][.0..$#usn7]"), + octest:ct_string("With Distinct $usn2[`5esn`..][01234567..] As #usn8 Skip $`6esn`[1.e1][$_usn3] Limit False[$`4esn`..] Delete 12[..$999][..$`2esn`],Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])] Remove None(@usn5 In 's_str'[0..] Where 0.e0).`4esn`,{usn1:0[1e1][$usn1],``:`1esn`[`3esn`..]}.`6esn`! Union All Merge (@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) Merge (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}) On Match Set #usn7+=[#usn8 In `7esn` Where usn2[07..][.0..]|$usn1 Ends With _usn4 Ends With `2esn`] Contains (_usn3 {#usn7:1000[12e12][`5esn`]})-[`3esn`?:`3esn`]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0}) Contains Extract(`3esn` In `2esn`[..01][..True] Where usn1 In ``),@usn6:`8esn`,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.0 Starts With $`2esn` Starts With .e1).`8esn`? =$`3esn`[$_usn4..0Xa]"), + octest:ct_string("With Distinct 0.e0['s_str'..][01234567..] As `1esn`,None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,.0[$``..0X7] Skip usn2 =~$`` =~$`8esn` With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Where 12.e12 Ends With $`` Unwind (@usn6 :`8esn`)<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`}) Ends With #usn8(Distinct 12.e12 Contains #usn7 Contains $_usn4,01[`3esn`..][Count(*)..]) Ends With [`5esn`[..True][..0.e0],12 In $usn1 In 7,$`8esn`[123456789..][$@usn5..]] As `6esn`"), + octest:ct_string("Optional Match (((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))),(_usn4 :#usn7:`5esn`)-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-(`5esn` :#usn8:`1esn`) Where .e0[999..1000][1e1..$`8esn`] Match ((:@usn6)) Where 9e1[_usn3] Union All Merge ((_usn3 :`8esn`{#usn8:False Starts With 0X7 Starts With 01234567})<-[`1esn`?:@usn6|:`7esn`]-(`` {`8esn`:$`6esn`[``..][Count(*)..]})) On Match Set #usn7 =9e1[`1esn`..0][999..1e1],All(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True]).`1esn`? =$usn2[`2esn`..$`1esn`],Single(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1).#usn7 =All(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null) Create usn2=((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`))"), + octest:ct_string("Merge ``=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})) On Create Set #usn8 =$_usn4[$`6esn`..]"), + octest:ct_string("Unwind $#usn7 Ends With \"d_str\" As `7esn` Optional Match ((`1esn` {_usn4:`8esn` Is Null})),`2esn`=(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Where usn2[1.e1] Remove {@usn5:07 Ends With 9e12 Ends With `2esn`}.`2esn`!,{usn2:_usn3[`2esn`..0X7][0.e0..$`3esn`]}.`2esn` Union All Create (((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}))),`7esn`=(({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(usn1 :_usn3{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})) Return Distinct $#usn7 =~`2esn` As `4esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc Skip usn2 Is Null Is Null Limit @usn6 Is Not Null Is Not Null Union All Return Distinct *,Null[..010][..1000] As #usn7,9e12 Ends With 12e12 Ends With 12 As `` Order By 1000[$7..][_usn4..] Desc Skip $`3esn` Ends With 01234567 Limit 7 Ends With .12 Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Unwind usn1[..$@usn6][..00] As `4esn`"), + octest:ct_string("Unwind 00[..$`8esn`][..7] As `6esn` Merge (@usn5 :@usn6{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[`8esn` *0xabc]-(:_usn3{_usn4:.e1[7..][9e0..]}) On Match Set Single(@usn6 In 010[`5esn`] Where 123.654).`6esn`? =0.e0[0X0123456789ABCDEF..],(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}).`3esn`? =999[..`1esn`][..07],[@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1].`6esn` =`7esn` Starts With @usn5 Union Create ((`4esn` :_usn3{usn2:01[..0Xa][..12],`1esn`:999[..`1esn`][..07]})-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})),((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) With 999[12e12..$_usn4] Order By Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,0X7[.0] Asc,$`3esn`[..0X0123456789ABCDEF][..7] Descending Limit #usn7 =~9e12 Union With usn2 Starts With .0 Skip \"d_str\" In @usn5 In $@usn5 Limit _usn4 Starts With 1000 Starts With $usn2 Where _usn4 Is Not Null Is Not Null Merge (#usn7 {#usn7:1.e1 Starts With 9e12})<-[`5esn`?:@usn5|_usn3{``:0.0 =~9e0 =~$0}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]})-[@usn5?{#usn7:12e12 In $`5esn`}]->(`8esn` :`8esn`) On Match Set #usn7 =[$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1],@usn6+=0.12[$0..$usn2]"), + octest:ct_string("Return Distinct *,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) As `7esn` Order By 9e0[$1000] Asc Limit (`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Remove [999 Is Not Null Is Not Null,123.654 In $`7esn`].`6esn`,[#usn7 In 9e1[$`1esn`..] Where $`7esn`[$_usn4][.e0]|.0[..'s_str'][..01234567]].usn1?,[`6esn` In $`6esn`[``..][Count(*)..]|.e12 Starts With $12 Starts With .e12].`7esn`! Remove `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]).#usn8! Union All Merge `6esn`=((:_usn3{`7esn`:$999 Ends With .e0})<-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]-(#usn8 :_usn4)-[:`` *0..01]-(`3esn` :`1esn`:_usn4{#usn8:1e1 Is Not Null Is Not Null})) With Distinct [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) As usn2,#usn8 =~0.e0,$usn1 Limit 00 In @usn6 In 0 Where #usn8 =~.e0 With Distinct $`4esn`[0..][999..],Filter(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12])[..Extract(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])][..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]],(`3esn` {usn2:00[False..0e0]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null})<-[@usn6?:`8esn` *0..01]->(`5esn` :`4esn`:`6esn`)[[12.0 Starts With $`2esn` Starts With .e1]..] As `5esn` Order By .e12[`2esn`..010] Desc,0xabc In 010 In #usn7 Ascending Skip 1e1 Ends With $`7esn` Ends With .0 Where 9e1[$#usn8][$1000] Union All Unwind {_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]} Contains ({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}) Contains None(#usn8 In `7esn`) As `4esn`"), + octest:ct_string("Return #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Order By Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[..[#usn7 In True Contains 's_str' Contains $usn1 Where Count(*) Ends With usn1]][..Filter(usn2 In 7[12] Where #usn7[0.e0..]['s_str'..])] Ascending,{@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Asc,usn2[1.e1] Descending Skip $``[01234567..][.0..] Return Distinct $#usn7 In $@usn5 In $`1esn` As `4esn` Remove Filter(#usn7 In 9e0[$1000] Where 12['s_str'][01])._usn3?,[@usn5 In 's_str'[0..] Where usn1 Starts With 00|True Contains .e12].`6esn`!,None(@usn5 In 's_str'[0..] Where 0.e0).`4esn`;"), + octest:ct_string("Create (((usn2 {`5esn`:$@usn6 Ends With `1esn`})<-[`2esn`? *01..123456789]-(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]})<-[? *7..{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]-(#usn7 :``:usn2)))"), + octest:ct_string("Create @usn6=(((`1esn` $`4esn`)<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)-[@usn5?{#usn7:12e12 In $`5esn`}]->(#usn8 ))),usn1=((:@usn5{@usn5:$12[9e0..$999]})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})) Return *,12 Ends With True Ends With @usn6,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3) Ascending,$@usn6 =~0xabc =~$999 Descending,[`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5|`7esn`[1e1]] Contains (`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->(`2esn` {`1esn`:$`4esn` Is Null Is Null}) Contains Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``) Desc Union Remove _usn4:`2esn` Remove Any(#usn7 In 9e1[$`1esn`..] Where 999 In #usn8 In $``).`7esn` Merge `4esn`=((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`))"), + octest:ct_string("Create `7esn`=((`6esn` :`5esn`)<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`5esn` :`4esn`:`6esn`)) Create usn2=(:#usn8:`1esn`$`7esn`),`4esn`=(({#usn7:$@usn6[$0..9e12][.e12..Null]})) Optional Match (usn2 :_usn4),`1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Where 0e0[01][$`7esn`]"), + octest:ct_string("With Distinct Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..],{#usn8:12.0 Ends With `2esn`,@usn5:usn1 Starts With 00}[Any(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..],999 In 0e0 As #usn7 Order By `1esn` Starts With 9e1 Desc Where $@usn5[..$#usn7] Unwind Extract(@usn5 In 's_str'[0..] Where 12 In $usn1 In 7) =~All(`3esn` In `2esn`[..01][..True] Where $`7esn`[.e1][12.0]) As @usn5 Return Distinct Count ( * ) In True In @usn5 Skip 01234567[\"d_str\"..`4esn`] Limit 123.654 In $`6esn` Union Match _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Where 010 Is Null Is Null Union Unwind usn2 =~usn1 =~Count ( * ) As @usn6 Remove `6esn`:`6esn`:_usn3;"), + octest:ct_string("Unwind $0[0.e0] As `7esn` With Distinct Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..],{#usn8:12.0 Ends With `2esn`,@usn5:usn1 Starts With 00}[Any(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..],999 In 0e0 As #usn7 Order By `1esn` Starts With 9e1 Desc Where $@usn5[..$#usn7] Return 01234567 In 123456789 In 12 As usn1,0.0 Contains #usn7 As #usn8 Order By Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null Asc,{usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}[[@usn5 In 9e0 Ends With $#usn8 Where 00 Contains Count ( * ) Contains 0x0]] Asc,(:`2esn`)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})-[@usn6? *0X0123456789ABCDEF..{``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6}]-(`5esn` :@usn5) Is Null Is Null Ascending Skip 0e0[$999..0.0][$`8esn`..1.e1] Limit None(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1) Contains `3esn`(Distinct $123456789[...12][..@usn6]) Contains {``:`1esn` Starts With 0xabc Starts With $usn2} Union Unwind Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] As @usn6 With $#usn7 =~`2esn` As `4esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc Skip usn2 Is Null Is Null Limit @usn6 Is Not Null Is Not Null Where 's_str' Ends With `7esn` Ends With 010 Union Remove ({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})-[`4esn`?:`5esn`|:usn2]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[@usn5:usn2{`5esn`:#usn8 =~.e0}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]}).`4esn`? Merge #usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Detach Delete Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`)[Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``)][Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 1e1 Contains 's_str' Contains `3esn`|$`2esn` Ends With `6esn`)]"), + octest:ct_string("Unwind True Starts With Null As usn1 Merge `4esn`=(:#usn7:`5esn`{`4esn`:$``[..\"d_str\"][..$#usn8]}) On Create Set #usn8(Distinct 0[$`5esn`],Count(*)[9e12..12.0]).`7esn`! =123.654 In $999 In _usn3 On Match Set `1esn` =0x0[@usn6..][01..],`5esn`(Distinct $#usn7 Contains $`7esn` Contains .e12).@usn6! =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`) Is Null Unwind usn1[...e12][..1.e1] As #usn8 Union All Merge ({`4esn`:.e1[..$`3esn`][..01]})-[`5esn`:#usn7|@usn5]-(`5esn` :`4esn`:`6esn`) Create (_usn3 :`7esn`) Unwind $`2esn` Starts With $@usn5 Starts With #usn7 As `4esn` Union With Distinct *,12.e12 Contains `6esn`,12[``...e12] As `6esn` Limit Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null] Optional Match `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}),(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}) Where `2esn` =~.e12 =~0X0123456789ABCDEF Remove Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|@usn5 Contains 9e0)._usn4?"), + octest:ct_string("Unwind @usn6[123.654..][0x0..] As `2esn` Delete [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null),0x0 In `8esn` Union Detach Delete (`1esn` $`4esn`)-[@usn6?:`7esn`|:`2esn`]-({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]}) =~Filter(`3esn` In 9e1 Contains $999 Where 12.0 Is Null Is Null) =~[0xabc In Null],[$`1esn`[``][07],$`4esn`[`6esn`..$12],False[$usn1][0x0]] =~[.e12 Is Null Is Null],$`3esn` Merge (_usn3 :`7esn`) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] On Create Set #usn7+=Null[.12..12e12],Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]).`1esn`! =[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)],@usn6 =usn2[1.e1]"), + octest:ct_string("Delete [$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],0.0[$@usn5.._usn4],7 Ends With 01234567 Ends With 0Xa Unwind .0 Ends With 999 Ends With $`5esn` As @usn5 Union All Return *,1e1 Contains 0.e0 Contains 9e1 Limit None(#usn7 In 9e0[$1000] Where $1000 Is Not Null) Is Null Is Null Return 12.e12 =~0X0123456789ABCDEF =~1.e1 As `6esn`,.e12[`2esn`..010],.e0 Starts With $@usn6 Starts With $7 As `5esn` Order By Single(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) Contains Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0[1e1][$usn1]) Contains {`4esn`:9e1 Contains 12} Ascending Skip usn1 Limit 123456789 Contains 0Xa With Distinct 0Xa Ends With $`3esn` Ends With $1000,Extract(@usn5 In 's_str'[0..] Where 12e12 Is Not Null) =~[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]],$#usn8[@usn6..] As `7esn` Order By (`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Desc,$usn1[Null][`8esn`] Desc,$`5esn` In `2esn` In `2esn` Asc Limit [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Ends With `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Ends With [$`1esn`[``][07],`7esn`] Where _usn3[$`1esn`..]"), + octest:ct_string("Delete $_usn4[9e0..][$1000..] Unwind 7[0e0..] As `6esn` Union Remove All(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`).`6esn`? Union Match ``=((:`3esn`{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})),(((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null})))"), + octest:ct_string("Unwind $`2esn` Contains Count(*) As `4esn` Union Return $#usn7 Ends With 's_str' Ends With 0X7 As usn1,Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])[[00[12..$`6esn`],$`4esn`['s_str'..]]..] As `3esn` Order By [_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1|999 Contains $1000] Starts With Single(`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``) Descending,01[07..][1.e1..] Ascending Skip 9e12[_usn4..$`5esn`][_usn4...e1] Unwind None(@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn2..][$123456789..]) =~{`2esn`:7[12],usn1:.12[0X7..][12e12..]} =~Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)|True[0xabc..01234567][$`8esn`..$@usn6]) As _usn3 With `2esn` Starts With 12.e12 Starts With 12.0 As #usn8,$_usn3 Is Not Null Is Not Null Order By All(#usn7 In 9e0[$1000] Where 0x0[12e12..$`7esn`])[(:`5esn`{_usn4:12 Starts With #usn7 Starts With 0Xa,#usn7:999 Is Null Is Null})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})][{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}] Desc Union All Optional Match (`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}) Return Distinct _usn3 Is Not Null Is Not Null As `` Skip 0X7[..$`8esn`] Limit {@usn5:$@usn6 Is Not Null Is Not Null} Starts With [`3esn` In `2esn`[..01][..True] Where 0x0[usn1..usn1]] Starts With Extract(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..]|0X7['s_str'..][01..])"), + octest:ct_string("Detach Delete Single(_usn4 In 12e12 In 123456789 Where False Is Null)[[$usn1,_usn4 Contains `` Contains 1.e1]][(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]})],0 =~1e1"), + octest:ct_string("Delete True Starts With Null,`4esn`(Distinct Count(*) In 12 In `6esn`,Count(*) In 12 In `6esn`) =~{`7esn`:$@usn6[00]} =~[0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]];"), + octest:ct_string("Remove {#usn7:`7esn`[$usn2..][$123456789..]}.usn1!,[$0 =~9e1 =~$`2esn`,\"d_str\"[True..]].``,Any(usn2 In 7[12] Where 0x0 Ends With 12.0 Ends With `5esn`).#usn8 Union All With Distinct `2esn` Starts With 12.e12 Starts With 12.0 As #usn8,$_usn3 Is Not Null Is Not Null Order By All(#usn7 In 9e0[$1000] Where 0x0[12e12..$`7esn`])[(:`5esn`{_usn4:12 Starts With #usn7 Starts With 0Xa,#usn7:999 Is Null Is Null})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})][{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}] Desc Where `7esn` In 010 In usn1 Unwind _usn3 Is Not Null Is Not Null As _usn3 Return $@usn5 In 12e12 In 01 As `2esn`,0xabc =~@usn5 =~$usn1 As `8esn` Limit $`4esn`[07..]"), + octest:ct_string("Merge ((:usn2{``:Count(*)[9e12..12.0],#usn7:`2esn`[$12..]})) On Match Set `4esn`+=$0 =~9e1 =~$`2esn`,_usn3 =Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] On Create Set #usn7+=$999 In 1e1"), + octest:ct_string("Unwind `2esn`[..$_usn4][...12] As `3esn`"), + octest:ct_string("Merge ((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)) Remove (@usn5 :`6esn`:_usn3{`7esn`:`8esn`[..$#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]})-[`3esn`:`2esn`|`4esn`]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[usn1:_usn4]-(#usn7 :@usn6).#usn8 Union Remove [$`4esn`[`6esn`..$12],00[12..$`6esn`]].``! Delete $`1esn` Contains 1e1 Contains @usn6,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null,`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] Detach Delete `` =~.12,[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])],123456789[12];"), + octest:ct_string("Unwind Count ( * ) In True In @usn5 As usn1 Union All With *,`2esn` In 9e0 In 7,$7 Starts With $`4esn` As _usn4 Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Limit None(#usn7 In 9e0[$1000] Where $_usn3 Is Null) In (:`3esn`)<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})<-[`4esn`:`1esn`|`3esn` *12..]-(#usn8 :`8esn`) In {`7esn`:$``[..\"d_str\"][..$#usn8],`7esn`:$`` Contains $`2esn` Contains $usn2} Where 12e12 Is Not Null Unwind 07 In 0Xa In usn1 As #usn8 Union Create `8esn`=(((`4esn` :`4esn`:`6esn`)<-[ *..07{`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn3{@usn5:$1000 Starts With $`7esn`})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]}))) Delete .e12 Starts With $7 Starts With .0 Optional Match ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)),((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Where $`3esn`[..0xabc][..$7]"), + octest:ct_string("Remove All(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`).@usn6,Extract(`3esn` In 9e1 Contains $999 Where 12.0 Is Null Is Null)._usn4,Extract(`3esn` In `2esn`[..01][..True] Where $`6esn`[1.e1][$_usn3]|`2esn`[$12..]).@usn5! Create ((`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Union All Remove [`8esn` In 123456789 =~@usn6 Where `7esn`[$usn2..][$123456789..]].@usn6?,None(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]).``!,[1.e1[$usn1]].@usn5! Create ((`` {`7esn`:$#usn7[..0Xa]})-[_usn4{@usn5:`6esn`[$1000][`3esn`]}]-(`` :#usn8:`1esn`{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1}))"), + octest:ct_string("Delete 01234567 In 123456789 In 12 Detach Delete {``:1.e1 In 1000 In _usn3}[[`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1]][Single(#usn7 In 9e1[$`1esn`..] Where `4esn` Is Not Null Is Not Null)],999[..`1esn`][..07] With *,_usn4(#usn7 Starts With $123456789 Starts With 12e12) In None(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1) As @usn5,#usn7[`8esn`..usn1][$999..`7esn`] Order By $@usn6[_usn3..][$999..] Asc,[$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa) Asc Limit @usn6[`1esn`..] Where $`1esn` Starts With Count(*)"), + octest:ct_string("Optional Match `2esn`=(`3esn` {_usn4:123.654 In 12})-[`4esn`?:_usn4 *7..]-(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})<-[ *00..0Xa]->(#usn7 :usn1:`3esn`),((@usn6 :@usn6{_usn4:#usn8 Is Not Null})-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-(`5esn` :#usn8:`1esn`)<-[`1esn`:`8esn` *00..0Xa{#usn8:0X7['s_str'..][01..],``:$usn2 =~1.e1 =~usn1}]->(:_usn3{_usn4:.e1[7..][9e0..]})) Where .e1[12.0..]"), + octest:ct_string("Return *,01[`8esn`..9e12][.12..0] As @usn6,$`1esn` =~1e1 As `4esn` Order By 9e1 =~$_usn4 =~1.e1 Desc,$@usn5[$12...e12][0X0123456789ABCDEF..$999] Asc,(:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Ascending Skip $1000 Is Not Null With $_usn3[$12] Match usn1=((`6esn` :`5esn`)),#usn8=((:@usn5{`5esn`:`4esn` Starts With 0e0})) Where $usn2[`4esn`..9e12]"), + octest:ct_string("Remove All(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)._usn3?,`3esn`:`5esn`,Single(`8esn` In 123456789 =~@usn6 Where ``[9e12][$999])._usn4! Unwind [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) As #usn8 Return Distinct `` Is Not Null Is Not Null As `6esn`,`7esn`[$usn1..]['s_str'..] As usn1,$#usn8 Starts With .e12 Starts With 1.e1 Limit Single(usn2 In 7[12]) Ends With {_usn3:123.654[`4esn`..12]} Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where `1esn`[usn1][0xabc]) Union Optional Match `1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Where #usn8 =~.e0"), + octest:ct_string("Remove All(@usn5 In 9e0 Ends With $#usn8 Where False Contains 0 Contains $`6esn`).@usn6 Remove (:``:usn2{`3esn`:12.0 Starts With .12 Starts With `6esn`,``:$`4esn`[0..][999..]})-[@usn6?{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null}]->(:`7esn`{`2esn`:$`3esn` Ends With 01234567}).`6esn`,(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})<-[:`2esn`|`4esn` *1000..0X0123456789ABCDEF]-(usn2 :`6esn`:_usn3{@usn5:$0[0Xa..$123456789]}).`3esn`!,Any(#usn7 In 9e1[$`1esn`..] Where $`2esn` Ends With `6esn`).usn1!"), + octest:ct_string("Unwind Extract(@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1) Is Not Null As `1esn` Union All Detach Delete None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..],`7esn` Contains 9e0"), + octest:ct_string("Remove None(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]).`1esn`! Remove [0.e0[1000.._usn4][.e1..usn1],$`1esn` =~999,07[_usn3..][`6esn`..]].usn1!,usn2:`4esn`:`6esn`,Extract(usn2 In False[$usn1][0x0] Where $`7esn`|07 Is Null).#usn7! Union Delete Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..],None(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1)[..{@usn5:$@usn6 Is Not Null Is Not Null}][..{`3esn`:1e1 In 0.0 In 0X0123456789ABCDEF}] Unwind $_usn3 Is Not Null Is Not Null As `3esn` Create (((:`1esn`:_usn4{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]})<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}))),_usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Union Match ((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4));"), + octest:ct_string("With Distinct Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1|$@usn5 In $`6esn` In 12e12) Ends With (:`7esn`{#usn7:0 =~1.e1 =~$#usn7})<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) As @usn5,.e0 Is Not Null Is Not Null As `7esn`,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] As `3esn` Limit _usn4 In #usn7 With *,0.e0 =~00 As `3esn` Order By 's_str'[0x0..1.e1] Asc,usn1[False..`5esn`][$1000..$12] Ascending Where 9e1[$#usn8][$1000] Union Return Distinct *,#usn7[.e0] As `8esn` Order By 9e1 =~123456789 =~999 Asc Skip .e1[12.0..] Limit $@usn6 Ends With `1esn` Create `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}) Unwind [#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)] Contains (:`2esn`)-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`3esn` {`4esn`:False Is Null}) Contains Filter(`8esn` In 123456789 =~@usn6 Where $`6esn` Starts With .e12 Starts With $`1esn`) As `1esn` Union Remove All(@usn6 In 010[`5esn`] Where 1.e1[$usn1]).`6esn`!,Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5 Detach Delete 0xabc[$999..][$usn1..],12[..$999][..$`2esn`],Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|$`8esn`[..True][.._usn4]) Ends With Single(_usn4 In 12e12 In 123456789 Where $usn2 Is Not Null Is Not Null) Create (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})))"), + octest:ct_string("Remove None(#usn8 In `7esn` Where $`5esn` Is Not Null Is Not Null).`1esn`! Union Create _usn4=(:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}),((:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})) Return Distinct [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) As usn2,#usn8 =~0.e0,$usn1 Limit 00 In @usn6 In 0 Merge `8esn`=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`})) Union Create usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}))"), + octest:ct_string("With Distinct Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],010 Is Null Is Null As #usn8,All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] As `8esn` Skip usn2 Is Not Null Limit `2esn` =~.e12 =~0X0123456789ABCDEF"), + octest:ct_string("Delete $999[0Xa..][9e1..],[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8|12.e12[..$`6esn`]][({`5esn`:`2esn` Is Null,`4esn`:usn2[1.e1]})-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]-({`7esn`:9e12 =~@usn6})..[$`3esn` Ends With 01234567]] Union All Detach Delete 0.e0,\"d_str\"[True..],$`3esn` Ends With 01234567 Return Distinct @usn5[01][@usn5],9e0 Contains $12 Contains `3esn` As #usn8,{`4esn`:0.0[usn1..],`7esn`:12.0[$1000..][#usn7..]}[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7)..[usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]]][[12.e12[..$`6esn`],999 In #usn8 In $``]..Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1)] Skip {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}[[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]]..][(_usn4 {`6esn`:$_usn4 =~$`1esn` =~`2esn`,_usn3:#usn8 Is Null})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[_usn4?{_usn3:.e1[.e1..`1esn`],@usn6:.12 In `8esn` In $#usn8}]->(usn2 :@usn5)..] Delete 01 Ends With 123456789"), + octest:ct_string("Merge @usn5=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}) Return False[$`1esn`..],``[$`1esn`] As _usn3,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`2esn` =~9e12) Is Null Is Null Order By usn1[..$@usn6][..00] Desc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Descending,`4esn` =~$`3esn` =~@usn5 Descending Limit 0x0 Contains $`6esn` Contains `4esn` With Distinct `2esn` Starts With 12.e12 Starts With 12.0 As #usn8,$_usn3 Is Not Null Is Not Null Order By All(#usn7 In 9e0[$1000] Where 0x0[12e12..$`7esn`])[(:`5esn`{_usn4:12 Starts With #usn7 Starts With 0Xa,#usn7:999 Is Null Is Null})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})][{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}] Desc Where `7esn` In 010 In usn1 Union Remove [True Contains 0x0 Contains $_usn3,_usn3 Contains 9e12 Contains `8esn`].#usn7!,Filter(@usn5 In 's_str'[0..] Where `7esn` In 010 In usn1).`3esn`;"), + octest:ct_string("With Distinct #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Skip `8esn`[$12][123456789] Limit Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)[(`` :`5esn`{@usn5:123456789 =~@usn6})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`7esn` {``:9e1 Contains $999,``:$usn2[True..0X0123456789ABCDEF]}).._usn3(Distinct 0x0 Contains $`6esn` Contains `4esn`,usn2[1.e1])][(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})..[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|9e1 Is Null]] Merge #usn7=(((:`7esn`{`2esn`:$`3esn` Ends With 01234567})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(`` :`3esn`{`8esn`:.e1[12.0..],`6esn`:0e0[999..$``]})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})))"), + octest:ct_string("Delete {#usn8:1.e1 Is Null Is Null,_usn4:0xabc In 123456789 In 0x0}[All(@usn6 In 010[`5esn`] Where 00[1.e1..])..],{`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..],[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8|12.e12[..$`6esn`]][({`5esn`:`2esn` Is Null,`4esn`:usn2[1.e1]})-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]-({`7esn`:9e12 =~@usn6})..[$`3esn` Ends With 01234567]] Remove [@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]|9e12[$`5esn`..$123456789]].`6esn`,All(_usn4 In 12e12 In 123456789 Where 999 Contains $1000).``?,[`3esn` In `2esn`[..01][..True] Where 0x0[usn1..usn1]|0Xa =~False =~@usn5]._usn3! With Distinct *,``(Distinct 00 Ends With `` Ends With 12.e12,`6esn`[..Count ( * )][..$_usn4]) In (usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[`7esn`?:#usn8|:`3esn`{`6esn`:'s_str'[0..]}]->(#usn8 :`8esn`$#usn8) In Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1]) As `3esn` Order By $usn2[`5esn`..][01234567..] Asc,$`7esn`[.e1][12.0] Asc,$`5esn` =~usn1 Ascending Skip @usn6(0X7 In $#usn7,_usn4 Contains `` Contains 1.e1)[Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)..Any(#usn7 In 9e1[$`1esn`..] Where $`2esn` Ends With `6esn`)] Where 9e1[$``..][0.e0..] Union All Create _usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))),usn1=(_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]}) With Distinct [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Any(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`),usn2[usn2..0X7] As `1esn` Order By 's_str'[0x0..1.e1] Asc Limit 0xabc[..$1000][..`5esn`] Where `2esn` Starts With 12.e12 Starts With 12.0 Merge #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}))"), + octest:ct_string("With $usn1,`1esn` Contains $999 Contains 0.0 As @usn6,$`6esn`[0e0..][010..] Order By 0.0 Ends With $`7esn` Descending,`3esn`[7..0.e0][0.0..123456789] Asc Return `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By $1000[$@usn6][$_usn4] Desc Unwind True Ends With $_usn3 Ends With 12 As #usn7"), + octest:ct_string("Return *,`3esn`[...e1] Detach Delete [0x0 Ends With 12.0 Ends With `5esn`,12e12 Ends With 0.0 Ends With usn1,00[1.e1..]] Ends With All(#usn8 In `7esn` Where $`3esn`[..0xabc][..$7]) Ends With Any(@usn6 In False Contains 0 Contains $`6esn` Where `6esn`[$1000][`3esn`]),@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])] Union All Create @usn5=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),#usn7=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))) Union Detach Delete Extract(`6esn` In $`6esn`[``..][Count(*)..] Where $@usn5 Starts With `5esn` Starts With 01234567|0.e0[..$7]) Is Null Is Null Optional Match `1esn`=(`5esn` :`5esn`{#usn7:``[$`3esn`]}) Where $`8esn`[..True][.._usn4];"), + octest:ct_string("With Distinct *,`5esn` Contains `5esn` Contains $_usn3 Limit False Starts With 0X7 Starts With 01234567 Where 9e1[_usn3] Unwind _usn3 Contains _usn4 Contains $@usn5 As `2esn` Union Unwind Count ( * ) Ends With $123456789 As `` Union Optional Match `2esn`=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}),(({@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`})<-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->({usn2:$`2esn` Is Null,#usn8:.0 Is Null Is Null})) Where $`3esn`[.e1][_usn4] Merge ``=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) On Create Set [12e12 =~1e1,0X7[..$`8esn`]].`7esn` =1e1 Ends With $`2esn`,`8esn`+=01[$`7esn`..$@usn6] On Create Set Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7])._usn4 =count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null,`1esn`+=@usn5[..\"d_str\"],_usn4 =`2esn` =~.e12 =~0X0123456789ABCDEF"), + octest:ct_string("Detach Delete 00[False..0e0] Merge ((`2esn` :_usn3)-[? *0xabc{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})) Delete Null[..0] Union All Create (((usn2 :#usn8:`1esn`)-[`5esn`?:`7esn`|:`2esn` *0x0..]->(`8esn` :`8esn`)<-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(#usn7 :`2esn`))),((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) Unwind 9e1 =~123456789 =~999 As `` Union Match (((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}))),@usn6=(:usn2{`6esn`:#usn7[$`3esn`..$1000][0.0..`2esn`],``:010 Starts With 0 Starts With 0.0}) Where `7esn` In 010 In usn1 Create @usn6=(((`` :`5esn`{@usn5:123456789 =~@usn6})<-[`2esn`? *01234567..]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}))),(({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}))"), + octest:ct_string("With 999[12e12..$_usn4] Order By Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,0X7[.0] Asc,$`3esn`[..0X0123456789ABCDEF][..7] Descending Limit #usn7 =~9e12 Unwind $`5esn`[$`6esn`][`2esn`] As _usn4"), + octest:ct_string("Merge `1esn`=(`6esn` {``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]})-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(`3esn` :usn2{`6esn`:#usn8 Is Null}) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] Union All Merge `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) On Create Set _usn3+=`5esn`(Distinct .12[123.654..]) On Match Set _usn3 =$``[01234567..][.0..] Union All Return Distinct 12.e12 =~0X0123456789ABCDEF =~1.e1 As `6esn`,0.e0[..$7] As _usn3,usn1 Ends With 0.0 Order By None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,.e0 Starts With $@usn6 Starts With $7 Descending Limit $@usn6[..12] Merge `3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) On Match Set `1esn` =[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]) Detach Delete 999 Is Not Null Is Not Null"), + octest:ct_string("Unwind Extract(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|.e1[usn2..$_usn3][.0..$#usn7]) As _usn4 Union All Detach Delete 0.e0 =~``,None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Unwind 0.0 Is Null Is Null As #usn8 Union All Return Count ( * ) In True In @usn5 As `2esn`,$_usn3[$12] Order By $@usn6 =~0xabc =~$999 Descending,Null Ends With _usn4 Ends With 0.0 Asc,`3esn`(Distinct $123456789[...12][..@usn6])[{usn2:$`2esn` Is Null,#usn8:.0 Is Null Is Null}][#usn7(Distinct $@usn6 Is Not Null Is Not Null,``[7.._usn3])] Asc Skip usn2 =~7 Limit 0[@usn5..$#usn7] With *,Extract(`6esn` In $`6esn`[``..][Count(*)..] Where $@usn5 Starts With `5esn` Starts With 01234567|0.e0[..$7]) Is Null Is Null Skip 0xabc In 123456789 In 0x0 Limit _usn4 Starts With 1000 Starts With $usn2 Where 123.654[$0..0X7][Null..#usn8] With Distinct 0e0[01][$`7esn`],'s_str'[0..] As `4esn`,Filter(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) =~{#usn7:1000[12e12][`5esn`]} As _usn4 Skip 0x0[$0][7] Limit None(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])[Any(`3esn` In `2esn`[..01][..True] Where $`3esn`[..0xabc][..$7])][$#usn7] Where $`7esn`[$_usn4][.e0];"), + octest:ct_string("Merge _usn4=(:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]})<-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(`2esn` :`1esn`:_usn4) On Match Set @usn6+=$`1esn` =~1e1 On Create Set `6esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null Union All Optional Match (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Where $`7esn`[.e1][12.0]"), + octest:ct_string("Optional Match ((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})),#usn8=({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Delete `2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] With Distinct *,$@usn6 Ends With 12.e12 Ends With @usn5 As `3esn` Order By .e0 Starts With $@usn6 Starts With $7 Descending Limit All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where False[$usn1][0x0]) In [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null|9e12[9e1]] In [12.0 Is Null,$_usn4[..$_usn4][..`7esn`]] Union All Merge (_usn3 :`7esn`) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] On Create Set #usn7+=Null[.12..12e12],Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]).`1esn`! =[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)],@usn6 =usn2[1.e1] Merge `2esn`=(:#usn8:`1esn`$`7esn`) On Match Set `8esn`+=`2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..]"), + octest:ct_string("Merge (((_usn4 :#usn7:`5esn`)<-[#usn8 *0x0..]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})<-[`2esn`?:usn1|`4esn` *00..0Xa]->(`6esn` :#usn8:`1esn`{`6esn`:usn1[..$@usn6][..00]})))"), + octest:ct_string("Match @usn6=((usn1 :_usn3{`4esn`:$`6esn`[1.e1][$_usn3]})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})) Where 1e1 In 0.0 In 0X0123456789ABCDEF Detach Delete ``[$`3esn`],Filter(_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4) Is Null Is Null,010[...12] Return Distinct *,$#usn7 Ends With \"d_str\" As `7esn` Union Unwind $`1esn` In .e0 As #usn8 Delete 0x0[``..],Any(usn2 In 7[12] Where $_usn3 Is Null) Is Not Null Is Not Null,[`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Union Remove Any(`6esn` In $`6esn`[``..][Count(*)..] Where $0[123.654..0.e0]).`4esn`?,Single(`5esn` In `7esn`[$usn2..][$123456789..] Where `2esn` =~.e12 =~0X0123456789ABCDEF).usn1 Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) On Create Set #usn7+=.e0[..9e12][..07],`4esn`(True[$_usn3..],$999[``]).usn2 =123456789 Is Null Is Null,@usn5 =01[07..][1.e1..] On Create Set `5esn`+={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},usn2 =True Contains 0x0 Contains $_usn3 With *,$`5esn`[0X7..010][`7esn`..'s_str'] As `4esn`,999 In 0e0 As #usn7 Skip Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] Limit (`5esn` :`6esn`:_usn3)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({#usn8:False Starts With 0X7 Starts With 01234567})<-[usn2?{``:$`1esn`[``][07]}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7}) Is Null Is Null"), + octest:ct_string("Match `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),`8esn`=((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[``:`5esn`|:usn2{`5esn`:_usn4[0]}]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})) Where 1000[12e12][`5esn`] Union Merge @usn5=((`2esn` {`7esn`:999 In 0e0})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)) On Create Set `8esn` =$#usn8[True][9e0],`1esn`+=@usn6 Contains .12 Contains $usn1 On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1];"), + octest:ct_string("With Distinct 0.e0[$`4esn`..`2esn`],12.e12 Starts With \"d_str\" Starts With 9e1,{``:00 In @usn6 In 0}[(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})] As `5esn` Skip Extract(#usn7 In $999 In 1e1 Where `5esn`[..True][..0.e0]|$`5esn` =~$0 =~``) In (:`7esn`{#usn8:0Xa Ends With $`3esn` Ends With $1000})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]}) In Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|999 Contains 0 Contains $`5esn`) Where $`3esn` Ends With 01234567 Union Return 0.e0[..$7] As _usn3,0xabc =~@usn5 =~$usn1 Skip $@usn6[00] Limit `2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..] Union All Return Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],010 Is Null Is Null As #usn8,All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] As `8esn` Order By $_usn3[_usn4..] Asc,0.12 Is Null Is Null Desc,`6esn` Ends With _usn4 Ends With False Ascending Skip 1.e1 =~.12 Limit `1esn`[$@usn6][07]"), + octest:ct_string("Merge ((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})<-[usn1? *01234567..{@usn5:01[`3esn`..][Count(*)..]}]->(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})-[`4esn`?*..{``:`` =~.12,usn1:123.654 Is Not Null}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]})) On Create Set [`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc].@usn6? =[`4esn`[.12][$@usn6],.0[..'s_str'][..01234567],1.e1 =~.12][Any(usn2 In False[$usn1][0x0] Where False Is Null)..],{#usn8:Count(*) Starts With usn2 Starts With `7esn`}.`1esn`! =`4esn`($_usn4 Starts With $1000 Starts With 12) =~Any(@usn5 In 's_str'[0..] Where 1000[..`2esn`][..$@usn6]) =~[`3esn` In `2esn`[..01][..True] Where usn1 In ``|01[`8esn`..9e12][.12..0]] On Create Set `1esn` =(`4esn` :#usn7:`5esn`{_usn4:0Xa Ends With $`3esn` Ends With $1000})-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})[[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]|`1esn`[0.12..][@usn6..]]..][{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}..] Detach Delete [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null,00[False..0e0],0.e0[1000.._usn4][.e1..usn1];"), + octest:ct_string("Delete `6esn` Starts With `6esn` With Distinct `6esn` In .12,None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]) Ends With [_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4|0x0[0X7]],`6esn` Starts With `6esn` Remove ({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})-[`4esn`?:`5esn`|:usn2]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[@usn5:usn2{`5esn`:#usn8 =~.e0}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]}).`4esn`? Union All Create (((#usn7 :usn2{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]})<-[@usn5?:usn2 *00..0Xa{usn2:$usn2[`4esn`..9e12]}]->(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})<-[ *..07{`5esn`:999 In 0e0}]->(:@usn6$usn1))) Create (((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) With Distinct $`1esn`[Null][True] As `8esn` Order By 9e0[..123456789][..$`3esn`] Asc,Filter(@usn5 In 's_str'[0..] Where $@usn6 =~#usn7 =~True)[Extract(@usn5 In 's_str'[0..] Where _usn3[0x0])..All(_usn4 In 12e12 In 123456789 Where $usn2 Is Not Null Is Not Null)][(`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]})<-[:`8esn`]-(:@usn6)-[? *0X0123456789ABCDEF..]-(usn2 :_usn3)..(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})] Descending,.e1 Is Null Is Null Descending Limit {_usn3:$`6esn`[1.e1][$_usn3]} Contains Extract(#usn7 In 9e1[$`1esn`..] Where $`7esn`[$_usn4][.e0]|7 Ends With 01234567 Ends With 0Xa)"), + octest:ct_string("Return *,'s_str' Starts With 9e0 Starts With usn2 As `8esn` Optional Match `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),(`2esn` $`6esn`) Where 7 =~`4esn` Optional Match `6esn`=(((_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})-[``?:_usn4]-(_usn4 :_usn4))) Union With *,#usn7[.e0] As `8esn` Order By 9e1 =~123456789 =~999 Asc Skip .e1[12.0..] Limit $@usn6 Ends With `1esn` Where ``[$`3esn`] Return Distinct *,All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) As `8esn` Order By 12.0 Ends With `2esn` Descending,$`4esn`[`4esn`][Count(*)] Descending,$`1esn`[07..] Desc Skip 9e12[..123.654][..999] Optional Match `6esn`=(((:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({#usn8:False Starts With 0X7 Starts With 01234567})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5)))"), + octest:ct_string("Create ((`1esn` :usn2)),`2esn`=(`5esn` :``:usn2)<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2) Union Optional Match ((:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})),(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Where _usn3 Starts With 12e12 Starts With `5esn` Delete 9e1[$`1esn`..] With (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Order By usn1 Ends With 9e0 Ends With 9e0 Descending,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Descending Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Union Remove None(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]).`1esn`?,Extract(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null|0 =~1.e1 =~$#usn7).@usn5!,(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}).@usn5 Delete `2esn`[$usn2][12.0],{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}[Single(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7)..],(:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] Return Distinct *,1.e1 Ends With $#usn7 As usn2,@usn5[01][@usn5] Order By $`4esn`[..$`8esn`][..Null] Descending Skip `6esn` Is Null Is Null"), + octest:ct_string("With *,#usn8[`6esn`..][$``..] As usn1,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..]) Contains None(@usn5 In 's_str'[0..] Where 010 Is Null) Contains `2esn`(Distinct $`3esn`[$_usn4..0Xa],$`8esn`[123456789..][$@usn5..]) Order By 0x0[Count(*)..@usn6][Count(*)..0Xa] Desc Limit `6esn` Unwind 9e0 Is Not Null Is Not Null As `5esn` Union Detach Delete #usn7[0.e0..]['s_str'..],$0 Starts With @usn5 Create ((:`5esn`{`8esn`:$`1esn` Starts With Count(*),_usn3:usn1[...e12][..1.e1]})) Union Create usn1=((#usn8 :_usn3)<-[? *12..{#usn7:`6esn` Ends With _usn4 Ends With False,usn1:1000[12e12][`5esn`]}]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07})),`1esn`=((`6esn` {`3esn`:$`2esn`[0..123456789][``..`1esn`],`7esn`:$0[0Xa..$123456789]})<-[? *00..0Xa]->(usn2 :@usn5)-[?:`2esn`|`4esn` *0Xa{#usn7:1.e1 Starts With 9e12}]-(:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) Remove Extract(`3esn` In 9e1 Contains $999 Where usn1[False..`5esn`][$1000..$12]|True Starts With Null).`4esn`! With $usn2 Is Not Null Is Not Null Skip 999[@usn5..][Null..] Limit $@usn6 Ends With `1esn` Where 9e12[$`5esn`..$123456789]"), + octest:ct_string("Unwind {usn2:$@usn6[00]}[..[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1]][..[12e12 Starts With $0 Starts With $`2esn`,$_usn3 Is Null]] As `5esn` Union All Create ((`2esn` {`7esn`:999 In 0e0})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)),#usn8=((:@usn5{`5esn`:`4esn` Starts With 0e0})) Create ((:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})) With `2esn`[$12..] As @usn6 Order By 0x0[``..] Asc,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Is Null Descending,usn1[_usn3..] Descending Skip $7 Starts With $`4esn` Where `1esn` Starts With 0xabc Starts With $usn2 Union Remove @usn6(Distinct .12[123.654..],`2esn` In 7).``,All(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1).`5esn`!,@usn5:`8esn`"), + octest:ct_string("Return 010 Starts With $`` Starts With 0e0,$#usn8 Ends With `` Ends With 999 As _usn3,$@usn5 Ends With @usn5 Ends With 0xabc Skip None(#usn7 In $999 In 1e1 Where 01234567[Null..$_usn3]) Ends With Extract(#usn8 In `7esn` Where $`5esn` Is Not Null Is Not Null) Limit `6esn` In .12"), + octest:ct_string("Detach Delete $`5esn`[\"d_str\"..],0.0 Is Not Null,$@usn6[$0..9e12][.e12..Null];"), + octest:ct_string("Merge usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Union All Merge _usn3=(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[`4esn`:usn2]->(`3esn` :_usn4) On Match Set `8esn` =[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] With Distinct #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Order By Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[..[#usn7 In True Contains 's_str' Contains $usn1 Where Count(*) Ends With usn1]][..Filter(usn2 In 7[12] Where #usn7[0.e0..]['s_str'..])] Ascending,{@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Asc,usn2[1.e1] Descending Skip $``[01234567..][.0..] With Distinct *,$`1esn` Starts With Count(*) Limit `7esn`[..$`6esn`] Union All Merge ((:_usn4{`1esn`:0e0 =~0Xa =~$999})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(`` :`5esn`{@usn5:123456789 =~@usn6})<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null})) Merge (_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]}) On Create Set `7esn` ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]} On Match Set [_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789|9e1 Ends With Count(*) Ends With $7]._usn4 =$`5esn`[0X7..010][`7esn`..'s_str'],@usn5+=(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},usn2+=999[12e12..$_usn4] Create (((usn2 {`5esn`:$@usn6 Ends With `1esn`})<-[`2esn`? *01..123456789]-(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]})<-[? *7..{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]-(#usn7 :``:usn2)))"), + octest:ct_string("Unwind Count(*) In #usn8 In \"d_str\" As `6esn` Match (`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Where $@usn6 Ends With 12.e12 Ends With @usn5 Union All Remove [`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa].`1esn`? Create (((:_usn4{`8esn`:01234567[Null..$_usn3]})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->(`5esn` :`3esn`{``:`` Is Null,`8esn`:$@usn6[$0..9e12][.e12..Null]})<-[`7esn`:`4esn`|@usn5 *12..]->({`4esn`:.e1[..$`3esn`][..01]}))) Union All Create `8esn`=((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[``:`5esn`|:usn2{`5esn`:_usn4[0]}]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})),`2esn`=(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[`4esn`:usn2]->(`3esn` :_usn4) Detach Delete Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])],123.654 Contains @usn5 Contains $`5esn`;"), + octest:ct_string("Delete $0 =~9e1 =~$`2esn` Remove [$`4esn`[0..][999..],$usn2 Is Not Null Is Not Null,$`5esn` In _usn3 In 0.0].`2esn`! Create `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]})"), + octest:ct_string("Remove {`6esn`:Null =~`6esn`}._usn3!,[usn2 In False[$usn1][0x0] Where `4esn` Starts With 0e0].`6esn`!,[010[`5esn`],0Xa[..Count ( * )][..$123456789]]._usn3 Unwind [#usn8 In `7esn` Where .e0 Starts With $@usn6 Starts With $7|1000[12e12][`5esn`]] Ends With [`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8] Ends With [$``[..\"d_str\"][..$#usn8],$_usn4 Starts With $1000 Starts With 12,#usn7[.e0]] As `8esn`"), + octest:ct_string("Unwind usn2[12.e12..] As usn2 Create `7esn`=((`6esn` :`5esn`)<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`5esn` :`4esn`:`6esn`)) Union Optional Match ``=(((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[`2esn`? *01234567..]->(:`2esn`)-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->({`7esn`:999 In 0e0}))) Create #usn8=((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})<-[`8esn`?:`` *01234567..$usn1]->(:_usn4)),`5esn`=(({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]->(#usn8 :``:usn2)-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}))"), + octest:ct_string("Return Distinct 9e1 Ends With Count(*) Ends With $7 As `6esn` Limit _usn3 Contains 9e12 Contains `8esn` Union All Detach Delete `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)],$0 In `3esn` In 07 Unwind .0[$``..0X7] As usn1"), + octest:ct_string("Delete 0xabc =~@usn5 =~$usn1,[$usn1 Ends With _usn4 Ends With `2esn`][@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)..[#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1]][Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..])..Extract(#usn7 In 9e1[$`1esn`..] Where $999[``])],1000[$7..][_usn4..] With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Order By 1.e1 In 1000 In _usn3 Desc,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Descending,123.654 Is Null Is Null Asc Where _usn4[`7esn`] Union All Unwind Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..]) =~[_usn4 In 12e12 In 123456789 Where .0 Ends With Count ( * )|$`1esn` In .e0] As @usn5 Merge @usn6=((`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[@usn5?:usn2 *00..0Xa{usn2:$usn2[`4esn`..9e12]}]->(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->(usn2 :usn1:`3esn`)) On Match Set [#usn8 In `7esn` Where 01 Ends With 0Xa Ends With 0X7|`8esn` Contains Count(*) Contains $#usn7].``? ={`5esn`:$`1esn` In .e0,``:`6esn` Ends With Count ( * ) Ends With Count ( * )} Is Null Is Null,`8esn`+=$7 Is Null,`7esn` =_usn4 In #usn7"), + octest:ct_string("Match `4esn`=((@usn5 {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})),_usn3=(`8esn` :`2esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`6esn`]->({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) Union With Distinct 9e0[..123456789][..$`3esn`] As usn1 Limit 0x0[12e12..$`7esn`] Where usn1 Starts With 00 Merge (((`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})<-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Union All Match usn1=(({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) With $`1esn` Contains 1e1 Contains @usn6,`2esn`(Distinct $`3esn`[$_usn4..0Xa],$`8esn`[123456789..][$@usn5..]) Contains Single(`3esn` In 9e1 Contains $999 Where 0Xa Ends With $`3esn` Ends With $1000) Order By `3esn`[0X0123456789ABCDEF..][07..] Descending,{_usn4:0.0 Is Not Null,`3esn`:`5esn`[..True][..0.e0]}[(`` {#usn8:$12[9e0..$999]})-[`3esn`?:`7esn`|:`2esn`]-(`3esn` {``:9e1 Is Null,usn1:9e0[Count(*)..0.12][$`1esn`..12.0]})..All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])] Descending Skip {`6esn`:$#usn7 =~`2esn`,`4esn`:True[$_usn3..]}[(:`1esn`:_usn4{#usn8:00[12..$`6esn`],@usn6:usn1[..$@usn6][..00]})-[`2esn`:`4esn`|@usn5 *01234567..]-(:`5esn`{_usn4:12 Starts With #usn7 Starts With 0Xa,#usn7:999 Is Null Is Null})-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})..Filter(@usn6 In 010[`5esn`] Where `7esn`[1e1])][Any(@usn6 In 010[`5esn`] Where False[$`4esn`..])..Extract(@usn5 In 's_str'[0..] Where `7esn` In 010 In usn1)] With Distinct *,``[..False][..`3esn`],(@usn6 :`8esn`)<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`}) Ends With #usn8(Distinct 12.e12 Contains #usn7 Contains $_usn4,01[`3esn`..][Count(*)..]) Ends With [`5esn`[..True][..0.e0],12 In $usn1 In 7,$`8esn`[123456789..][$@usn5..]] As `5esn` Order By $`1esn` Starts With $`4esn` Starts With $_usn3 Asc,01234567 In $@usn6 In $#usn7 Desc Skip 1000 Ends With `7esn` Limit usn2 Starts With .0"), + octest:ct_string("Optional Match usn2=((`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Where $@usn5 Is Null Is Null Detach Delete $#usn8[True][9e0],None(_usn4 In 12e12 In 123456789 Where 1.e1 =~.12)[[$`4esn`[0..][999..],0x0[Count(*)..@usn6][Count(*)..0Xa],12e12 In $`5esn`]..],0.0 Contains #usn7 Union Merge `1esn`=(((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[?:`8esn`*]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}))) On Match Set _usn4 =0Xa In #usn7 In 's_str',`5esn`+=$#usn8 Starts With .e12 Starts With 1.e1,`1esn`+=usn2 In _usn3 On Match Set _usn3+=`6esn`[$``..$_usn3][1000...0],[usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5|0 Ends With 12.e12 Ends With usn2].`1esn` =123.654 Is Null Is Null Remove Any(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7])._usn3,`7esn`:@usn5 With *,$`2esn` Contains Count(*) As `3esn`,(`2esn` :usn1:`3esn`)-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})<-[?:`3esn`]-(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})[({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})] Order By 010 Contains .e1 Asc,(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})<-[#usn7 *01..123456789]->(`6esn` :usn1:`3esn`) Ends With Extract(#usn8 In `7esn` Where 9e12[..1e1][..'s_str']) Ends With [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123.654 Is Not Null|$`2esn`[.0..][0.0..]] Descending Skip $@usn5[`1esn`..][$999..] Limit Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] Union All Merge #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}));"), + octest:ct_string("Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),Single(_usn4 In 12e12 In 123456789 Where False Is Null)[[$usn1,_usn4 Contains `` Contains 1.e1]][(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]})] With Distinct *,$`1esn`[07..] As ``,`` Is Null As `7esn` Skip $1000 Is Not Null Unwind @usn6[123.654..][0x0..] As usn1 Union With $999 =~.0 As usn2 Limit 's_str' Ends With _usn4 Ends With 0e0 Where 0Xa[$`8esn`..][$_usn4..] With Distinct *,@usn6[9e12],$`3esn`[..0xabc][..$7] Skip All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) Limit Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null Where 1000[12e12][`5esn`] Union Delete 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2],$`3esn` Ends With 1000,[$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..] Remove All(@usn6 In False Contains 0 Contains $`6esn` Where usn1[False..])._usn3! Remove `8esn`:``:usn2"), + octest:ct_string("With *,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Where .e1[12.0..] Create @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Return Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By 1000[$`2esn`..] Asc"), + octest:ct_string("Remove [Count(*) Starts With usn2 Starts With `7esn`,07[$`2esn`..9e12][$`4esn`..9e12],9e1 Is Not Null Is Not Null].`2esn`?"), + octest:ct_string("Remove Any(_usn4 In 12e12 In 123456789 Where 9e1 Is Not Null Is Not Null).#usn7?,Single(usn2 In 7[12]).@usn5 Union All Merge (`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-({`1esn`:#usn7[0]}) On Match Set `1esn` =0x0[@usn6..][01..],`5esn`(Distinct $#usn7 Contains $`7esn` Contains .e12).@usn6! =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`) Is Null Create (((`` :#usn8:`1esn`{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1})<-[_usn3?:_usn3|:`7esn`]->(#usn7 )<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(`5esn` :`3esn`))),((#usn7 :_usn3)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) Match (((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})))"), + octest:ct_string("Detach Delete @usn5 Starts With $`3esn`,12 Is Not Null,07 Contains `3esn` Contains `7esn` Union All Match (((:`6esn`:_usn3{@usn5:0.e0[..$7],@usn6:.12 In `8esn` In $#usn8})-[?*..]-(usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->(#usn8 :`8esn`))) Merge (:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789});"), + octest:ct_string("Remove [_usn4 In 12e12 In 123456789 Where 1.e1 =~.12|.12 Contains $999].#usn7 Create `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),({_usn3:@usn6 Contains .12 Contains $usn1}) Create (#usn7 :@usn6),`7esn`=(((:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})<-[`1esn`?:usn1|`4esn` *00..0Xa]-(`6esn` )<-[? *12..{#usn7:`6esn` Ends With _usn4 Ends With False,usn1:1000[12e12][`5esn`]}]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}))) Union All Merge `1esn`=(`` {#usn7:#usn8 Is Not Null Is Not Null})<-[`5esn` *0xabc]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Unwind $1000[$@usn6][$_usn4] As `6esn` Detach Delete Null Ends With _usn4 Ends With 0.0 Union All Remove None(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null).`3esn`? Unwind \"d_str\"[#usn8] As @usn5"), + octest:ct_string("Create `4esn`=(({#usn7:$@usn6[$0..9e12][.e12..Null]})) Return Distinct $@usn6[.0..][0e0..] Order By $`8esn` Is Not Null Is Not Null Descending,Null Ends With _usn4 Ends With 0.0 Ascending Limit .e0"), + octest:ct_string("Merge (`2esn` :`1esn`:_usn4)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}) On Match Set `5esn`+=010[..7][..`4esn`],(`2esn` :@usn5)-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}).`4esn`! =$@usn6 Ends With `1esn`,`6esn` =.0[$``..0X7] Union All Remove All(#usn7 In True Contains 's_str' Contains $usn1 Where .e12[$@usn6..00][01234567.._usn3]).usn2,[@usn6 In False Contains 0 Contains $`6esn` Where $`5esn`[..00]|_usn3 Contains 9e12 Contains `8esn`].`3esn`?,{`4esn`:.e1[7..][9e0..],`8esn`:00 In @usn6 In 0}.`4esn`? Unwind All(#usn7 In 9e0[$1000] Where 0x0[12e12..$`7esn`])[(:`5esn`{_usn4:12 Starts With #usn7 Starts With 0Xa,#usn7:999 Is Null Is Null})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})][{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}] As #usn8 Union Merge `3esn`=(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}) On Match Set _usn3+=#usn7[..07],(:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(usn1 :`7esn`).`4esn` =1.e1[$`3esn`][0Xa],All(@usn5 In 's_str'[0..] Where `2esn`[..01][..True]).`2esn`! =`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] On Create Set Filter(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7]).``! =12 Contains 01234567;"), + octest:ct_string("Match ((#usn7 :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})),`2esn`=(((`` :`5esn`{@usn5:123456789 =~@usn6})<-[`2esn`? *01234567..]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}))) With `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By $999 Is Null Is Null Descending,0e0 =~7 =~12.0 Asc Skip 0.e0 Is Not Null Is Not Null Limit Extract(@usn5 In 's_str'[0..] Where usn1 Starts With 00)[..Any(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999)][..[$`5esn`[0X7..010][`7esn`..'s_str']]] Where .e0 Union All Merge ((`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})) On Create Set `6esn` =0e0 Is Not Null,_usn3 =@usn5(Distinct 1e1 Is Not Null Is Not Null,`1esn` Starts With 0xabc Starts With $usn2)[..Extract(`3esn` In 9e1 Contains $999 Where usn2[12.e12..]|.12[01][@usn5])],`7esn`+=12.e12 Contains 9e1 On Match Set {usn2:$@usn6 =~#usn7 =~True,_usn3:07 In `6esn`}.`3esn` =$`5esn`[$`6esn`][`2esn`] Delete [$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],0.0[$@usn5.._usn4],7 Ends With 01234567 Ends With 0Xa Remove [`6esn` In $`6esn`[``..][Count(*)..]|$`4esn`['s_str'..]].@usn6?,(usn2 {`5esn`:$@usn5 In 12e12 In 01})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})-[`7esn`:`4esn`|@usn5 *12..]-(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]}).`5esn`"), + octest:ct_string("Delete [$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4),1.e1[$usn1] Union All Detach Delete [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] Merge usn1=(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) On Create Set `6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn1+=`4esn`[$_usn3..$`7esn`] On Match Set _usn3+=`6esn`[$``..$_usn3][1000...0],[usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5|0 Ends With 12.e12 Ends With usn2].`1esn` =123.654 Is Null Is Null Detach Delete 00[False..0e0];"), + octest:ct_string("Remove `5esn`(Distinct .12[123.654..]).`3esn`,{``:0Xa =~False =~@usn5,`8esn`:.12[123.654..]}._usn4!,Extract(`3esn` In `2esn`[..01][..True] Where 00[01234567][False]|12[$`5esn`..][False..]).`2esn`! Return Distinct [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Any(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`) Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc Skip {`4esn`:999 In 0e0,`6esn`:0.e0['s_str'..][01234567..]} Contains Single(`8esn` In 123456789 =~@usn6 Where 12.e12 Ends With `` Ends With 0) Limit `6esn` Is Null Is Null Union Merge ((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Union All Match (((:`1esn`:_usn4)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[``? *0x0..{`6esn`:$`2esn` Contains Count(*)}]-(`8esn` ))),usn1=((`1esn` {``:0.0 Is Not Null,`1esn`:``[$`3esn`]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]}))"), + octest:ct_string("Detach Delete All(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]) Is Not Null Is Not Null,@usn6[`1esn`..],$#usn7 Ends With 's_str' Ends With 0X7 Match (((`` :#usn8:`1esn`{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1})<-[_usn3?:_usn3|:`7esn`]->(#usn7 )<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(`5esn` :`3esn`))),((#usn7 :_usn3)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) Union Remove {_usn4:``[9e12][$999],#usn8:123.654 In 12}.`5esn`?,{``:`1esn` Starts With 0xabc Starts With $usn2}.`8esn` Optional Match ((:`3esn`{`4esn`:$999[0Xa..][9e1..]})-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]-(:`3esn`{`4esn`:$999[0Xa..][9e1..]})),_usn4=((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})) Where @usn5 Is Null"), + octest:ct_string("Create ((_usn3 :`8esn`{#usn8:False Starts With 0X7 Starts With 01234567})),((`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})<-[? *12..{#usn7:`6esn` Ends With _usn4 Ends With False,usn1:1000[12e12][`5esn`]}]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07})<-[?{`5esn`:123.654[$0..0X7][Null..#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]}]-(#usn7 {`3esn`:1.e1 In 1000 In _usn3,#usn7:`2esn` Starts With .e1 Starts With 9e12})) Delete Count ( * ) Ends With `6esn` Ends With 's_str',Count(*)[$@usn5] Return *,`2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Order By $`2esn` Starts With 0.12 Starts With $12 Ascending,07 In `6esn` Desc,12[..0e0][...e1] Desc Skip #usn8[`6esn`..][$``..] Limit `3esn`[..0X0123456789ABCDEF][..0x0] Union Match usn1=(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[usn1:_usn4]-(:`4esn`:`6esn`),(({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn4?:@usn6|:`7esn`]-({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn3?:_usn3|:`7esn`]->(`3esn` {`8esn`:`7esn` In 010 In usn1})) Where .0[..'s_str'][..01234567] Merge (((`` :#usn8:`1esn`{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1})<-[_usn3?:_usn3|:`7esn`]->(#usn7 )<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(`5esn` :`3esn`))) Create ((:`5esn`{`8esn`:$`1esn` Starts With Count(*),_usn3:usn1[...e12][..1.e1]})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(`4esn` :_usn4)) Union Return Distinct usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Skip $@usn6 Ends With `1esn` Limit 9e1 Ends With Count(*) Ends With $7 Merge _usn4=(`5esn` :``:usn2)-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}) Match @usn6=(usn2 :_usn4) Where `4esn`[$_usn3..$`7esn`]"), + octest:ct_string("Optional Match ((:`3esn`{@usn5:$`5esn` In _usn3 In 0.0})-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]->(:@usn5{#usn7:12e12 In $`5esn`})-[@usn5 *0X7..]->(`` $`6esn`)) Remove [usn2 In 7[12] Where 12e12 =~$`7esn`|.e1[12.0..]].@usn5! Unwind Extract(@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1) Is Not Null As `1esn` Union All With `4esn`[$_usn3..$`7esn`],0e0[``..$1000][$7..12.e12],0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Order By $_usn4[01..][$_usn4..] Ascending,$@usn5[..$#usn7] Descending With Distinct *,`2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Order By $`2esn` Starts With 0.12 Starts With $12 Ascending,07 In `6esn` Desc,12[..0e0][...e1] Desc Skip #usn8[`6esn`..][$``..] Limit `3esn`[..0X0123456789ABCDEF][..0x0] Remove (@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[? *12..{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7}]->(#usn7 :usn1:`3esn`).`6esn`,[`6esn` In $`6esn`[``..][Count(*)..] Where @usn6 Is Not Null Is Not Null|123.654].`4esn`,_usn3._usn4?"), + octest:ct_string("Return Distinct 1.e1[$`3esn`][0Xa] As @usn5 Limit {`1esn`:1e1 Contains 's_str' Contains `3esn`} =~None(#usn7 In 9e0[$1000] Where `6esn`[$1000][`3esn`])"), + octest:ct_string("With $#usn7 =~`2esn` As #usn7,usn1 Ends With 9e0 Ends With 9e0 As @usn5,{`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`}[Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..])] Order By 0xabc In .12 In 0Xa Descending,$@usn5 Descending Detach Delete [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null),07 Ends With 9e12 Ends With `2esn`,usn1 In `` Match ((:usn2)-[usn2:#usn8|:`3esn`{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}]->(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`2esn` :usn2)),_usn4=((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) Union All Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) Union Return Distinct *,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As `8esn` Optional Match (:`7esn`{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8] Unwind (`1esn` :`3esn`{#usn7:12[..0e0][...e1]})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})[(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null)][{`2esn`:$999 Ends With .e0}..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]] As `8esn`"), + octest:ct_string("Unwind 9e1 In $#usn7 In Count(*) As #usn7 Remove #usn8(Distinct 0X0123456789ABCDEF Contains 12e12 Contains 12.e12,Count(*) Starts With usn2 Starts With `7esn`).usn1,Single(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..]).#usn7?,Any(_usn4 In 12e12 In 123456789 Where `3esn`[7..0.e0][0.0..123456789]).`8esn`! Merge `6esn`=(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Union All Remove [00[..$`8esn`][..7],_usn4 Starts With `` Starts With 1000,.e0].`1esn`?,_usn3:``:usn2 With Distinct 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] As #usn8,(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null},$#usn7 =~`2esn` As `4esn` Limit Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Return *,1e1 Contains 0.e0 Contains 9e1,`1esn` Starts With 9e1 As `6esn` Order By 010 Contains .e1 Asc,(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})<-[#usn7 *01..123456789]->(`6esn` :usn1:`3esn`) Ends With Extract(#usn8 In `7esn` Where 9e12[..1e1][..'s_str']) Ends With [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123.654 Is Not Null|$`2esn`[.0..][0.0..]] Descending;"), + octest:ct_string("Create (((`4esn` :``:usn2)<-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]-({`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[:_usn4{`8esn`:12.e12 Is Not Null Is Not Null,#usn7:@usn6[Null...0][\"d_str\"..Count(*)]}]-(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False}))),usn2=(`6esn` {`2esn`:$`3esn` Ends With 01234567})"), + octest:ct_string("Unwind Count(*)[.e12..][01234567..] As `6esn` Union All Merge `7esn`=(((`` :`5esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`8esn`{`8esn`:usn1 Contains 010,_usn4:`5esn` Contains $`5esn` Contains 0X7}]-({#usn8:0xabc In 010 In #usn7}))) On Create Set `3esn` =12[.0],All(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])._usn4? =12 Starts With True Starts With 12e12 Merge usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})) With `8esn` Is Null As `2esn`,[#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) Starts With [12 In $usn1 In 7,`6esn` Ends With Count ( * ) Ends With Count ( * ),`2esn` Starts With $`7esn`] Starts With usn2(Distinct .0[..'s_str'][..01234567],Count(*) In 12 In `6esn`) Ascending,_usn4[.12..$usn2][$_usn3..123.654] Desc,`4esn`[\"d_str\"]['s_str'] Ascending Skip Filter(@usn5 In 9e0 Ends With $#usn8) Contains {@usn6:#usn7[`8esn`..usn1][$999..`7esn`]} Contains (:#usn7:`5esn`)-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}) Where $@usn6[$`8esn`..][123456789..];"), + octest:ct_string("Create (@usn5 :`1esn`:_usn4) Detach Delete $_usn3,[Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] Union Unwind 9e1[$``..][0.e0..] As @usn6"), + octest:ct_string("Match `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((:#usn7:`5esn`{`3esn`:Null[..0]})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->(`6esn` :#usn7:`5esn`{_usn3:_usn4 Is Null Is Null})) Where $#usn8 Starts With .e12 Starts With 1.e1 Detach Delete [#usn8 In `7esn` Where .e0 Is Null Is Null] Ends With {usn1:$`4esn`[`6esn`..$12],`4esn`:usn1 Contains 010} Ends With (:``:usn2{``:True[$_usn3..]})<-[`2esn`? *01..123456789]-(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(`1esn` $`4esn`),Extract(`6esn` In $`6esn`[``..][Count(*)..] Where 1.e1 Ends With $_usn4 Ends With #usn7|0xabc =~$@usn5) Contains {`5esn`:1.e1[`8esn`],`1esn`:.e0} Contains {usn1:$123456789 In 0.12} With 01234567 Starts With True Starts With $999 As `6esn`,usn2[..$usn1][..$#usn8] As `8esn` Limit $`5esn` Is Not Null Is Not Null Where usn1 Starts With 00 Union Create ((:`5esn`{`8esn`:$`1esn` Starts With Count(*),_usn3:usn1[...e12][..1.e1]})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(`4esn` :_usn4)) With *,Filter(`5esn` In 0X7 In $#usn7 Where $@usn5 Starts With `5esn` Starts With 01234567) Is Null Is Null,$@usn6[$`8esn`..][123456789..] As @usn6 Order By 0X0123456789ABCDEF In $usn2 In `4esn` Descending,.e0 Ends With $#usn7 Ends With False Desc Where .12[..usn2][..12e12] Create `3esn`=((:_usn3{_usn3:$`3esn`[.e1][_usn4]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:`5esn`)<-[ *01234567..]->(#usn8 :`8esn`))"), + octest:ct_string("Unwind 9e1 =~123456789 =~999 As @usn5 Union Unwind 123.654 Starts With 0X7 Starts With $`4esn` As `2esn`"), + octest:ct_string("With Distinct *,$7[$12..12e12][1.e1..9e1],12[..Count(*)][..$`2esn`] As `4esn` Remove All(`8esn` In 123456789 =~@usn6 Where ``[9e12][$999]).``? Union With `1esn`[`3esn`..],(`3esn` {usn2:00[False..0e0]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null})<-[@usn6?:`8esn` *0..01]->(`5esn` :`4esn`:`6esn`)[[12.0 Starts With $`2esn` Starts With .e1]..] Skip 07 In 0Xa In usn1 Limit 010 Is Null Where Count ( * )[$`5esn`..][$7..] Return Extract(#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null)[All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])..] As `1esn`,$`6esn`[1.e1][$_usn3] As usn1 Order By [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null] Is Not Null Desc Limit Count ( * ) In 0.12"), + octest:ct_string("Match #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Where `6esn` Starts With `6esn` Match #usn8=(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Optional Match (:`3esn`{@usn6:$`5esn` =~$`8esn` =~usn2,`8esn`:12[..0e0][...e1]}),@usn5=(:@usn5{#usn7:12e12 In $`5esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})-[?*]-({`8esn`:`5esn` Contains #usn7 Contains 9e12}) Union All Unwind .e0[9e12..] As usn2 Union All Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}));"), + octest:ct_string("Return 12 Contains 1.e1 As `5esn`,Extract(usn2 In 7[12] Where 12e12 Contains `2esn`|`5esn`[$`7esn`..$@usn5])[`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)..],usn2(0X7[.0])[{#usn8:0Xa Ends With $`3esn` Ends With $1000}..][[Null =~`6esn`]..] As `6esn` Merge `8esn`=(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) Union All Remove #usn7:usn2,[07[_usn3..][`6esn`..],$usn1 Ends With _usn4 Ends With `2esn`,False[$`4esn`..]].`3esn`?,[`6esn` Ends With _usn4 Ends With False].`4esn`! Merge ((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) On Create Set #usn8+=[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null),@usn5+=.e0 =~$`7esn` =~0X0123456789ABCDEF,``+=(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) On Match Set `6esn`(Distinct 0Xa[$`8esn`..][$_usn4..],0xabc In Null).`2esn`! =(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[? *..010{#usn8:False Is Null}]->(#usn7 {#usn7:1.e1 Starts With 9e12})<-[:_usn3|:`7esn` *00..0Xa]-(`1esn` $`4esn`)[..[0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]]][..(:`2esn`{_usn3:@usn5[0.0..0X7]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null).`7esn`? =Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])],Extract(`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]).@usn5 =$@usn6 Ends With 123456789 Ends With 12.0 Return Distinct _usn4(Distinct usn2[07..][.0..]) Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]|$`2esn` Starts With `4esn` Starts With $usn1) Ends With Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2),usn1[..$@usn6][..00] As #usn7,(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})[..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})] As `7esn` Order By 0X7[..$`8esn`] Desc,$123456789[12e12..9e0] Descending Union All Return Distinct *,$`7esn`[0.12] Limit 12[..0e0][...e1] Return *,`2esn`[..$_usn4][...12] As `6esn`,`1esn` Starts With 9e1 As `6esn` Order By 01 Ends With 123456789 Desc,1.e1[12.e12..] Desc,\"d_str\" Is Not Null Ascending Skip [#usn7 In 9e0[$1000] Where `6esn`[$1000][`3esn`]][Extract(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1|010 Starts With $`` Starts With 0e0)..] Limit @usn6 =~999 =~@usn5 Unwind 01 Ends With 123456789 As usn1"), + octest:ct_string("Delete #usn7[``],$`2esn`[.0..][0.0..],999 Ends With 999 Ends With `3esn` Union All Unwind 01 Ends With 123456789 As `7esn`"), + octest:ct_string("With *,_usn4(#usn7 Starts With $123456789 Starts With 12e12) In None(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1) As @usn5,#usn7[`8esn`..usn1][$999..`7esn`] Order By $@usn6[_usn3..][$999..] Asc,[$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa) Asc Limit @usn6[`1esn`..] Where $`1esn` Starts With Count(*) Return *,Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] As `7esn` Skip $0 =~9e1 =~$`2esn` Limit Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..] Match ((`4esn` :`4esn`:`6esn`)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Where usn2 Contains $0 Contains .0"), + octest:ct_string("Delete None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])[..[_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4]] Remove {``:.e12 Ends With 0Xa Ends With 0xabc}.usn2? Union Unwind 999[..`1esn`][..07] As `8esn` Optional Match ((:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]})<-[_usn4?:`3esn`]-(:_usn3{_usn4:.e1[7..][9e0..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})) Optional Match ``=(((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),_usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))) Union All Optional Match `8esn`=(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}),`8esn`=(:`4esn`:`6esn`{usn2:$`8esn` Is Not Null Is Not Null})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Where `7esn` In 010 In usn1 Merge #usn8=((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})) On Match Set [12e12 =~1e1,0X7[..$`8esn`]].`7esn` =1e1 Ends With $`2esn`,`8esn`+=01[$`7esn`..$@usn6] On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``|.12 In `8esn` In $#usn8]._usn4? =7 =~0.12,`6esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null,Any(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]).`3esn`! =(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null"), + octest:ct_string("Return Distinct *,00[12e12][$`7esn`],@usn5(Distinct) =~[_usn3[`5esn`..][usn2..],$#usn7 =~`2esn`] =~1.e1 As #usn8 Order By Extract(`3esn` In `2esn`[..01][..True] Where 0.0 Is Null Is Null|$usn2[0.e0])[{usn2:@usn5 Is Null,`8esn`:$@usn6 Ends With 123456789 Ends With 12.0}..] Descending,(:_usn4$12)-[`1esn`?:`6esn`|:#usn8 *0Xa]-(usn1 :#usn8:`1esn`)[{`7esn`:$usn2 =~9e1}..] Desc,.12 In `8esn` In $#usn8 Desc Skip Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[{`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}] Limit `6esn` In .0 In $`` Unwind {`8esn`:usn2 =~7,@usn5:`6esn` Ends With _usn4 Ends With False} Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]] Ends With (_usn4 :_usn4)<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[ *..07{`6esn`:Count(*)[9e12..12.0]}]->(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) As _usn4 Union All Optional Match #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}),((:#usn7:`5esn`{_usn4:$usn2 =~9e1})<-[@usn5?:usn2 *0..01]->(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})) Where 9e1 Starts With Count ( * ) Merge (`2esn` :`1esn`:_usn4)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}) On Match Set `5esn`+=010[..7][..`4esn`],(`2esn` :@usn5)-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}).`4esn`! =$@usn6 Ends With `1esn`,`6esn` =.0[$``..0X7] Detach Delete 01[`3esn`..][Count(*)..],usn2[07..][.0..] Union All Unwind 0x0[Count(*)..@usn6][Count(*)..0Xa] As _usn3"), + octest:ct_string("Match `2esn`=({@usn5:$`5esn` Is Not Null Is Not Null})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Create `8esn`=(usn2 :`7esn`)-[? *7..{#usn7:`4esn`[123456789]}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )}),_usn4=((`2esn` {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]-(`1esn` :``:usn2{@usn5:`4esn`[\"d_str\"]['s_str']})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})) Optional Match usn1=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`),`6esn`=(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Union All Delete [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12] Starts With usn2(01 Is Null) Starts With Filter(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),All(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null) Contains [@usn5 In 's_str'[0..] Where `6esn`[..Count ( * )][..$_usn4]] Contains ({usn1:$123456789 In 0.12})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(usn2 ) Create _usn3=((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})-[#usn8:#usn7|@usn5 *123456789..{@usn5:usn2[12.e12..]}]->(`` )<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})),usn2=((`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})) Merge `1esn`=(((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[?:`8esn`*]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}))) On Match Set _usn4 =0Xa In #usn7 In 's_str',`5esn`+=$#usn8 Starts With .e12 Starts With 1.e1,`1esn`+=usn2 In _usn3 On Match Set _usn3+=`6esn`[$``..$_usn3][1000...0],[usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5|0 Ends With 12.e12 Ends With usn2].`1esn` =123.654 Is Null Is Null Union With *,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As `8esn` Where $`7esn`[.e1][12.0]"), + octest:ct_string("Optional Match `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),(`2esn` $`6esn`) Where 7 =~`4esn` Merge ((@usn6 {_usn4:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})) On Match Set `8esn` =Count(*)[9e12..12.0],@usn5+=9e0[Count(*)..0.12][$`1esn`..12.0] Create (`8esn` :#usn8:`1esn`{usn1:0x0 Starts With $`6esn`})"), + octest:ct_string("Detach Delete 0Xa[Count(*)..],$`1esn` =~1e1 Optional Match usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})),((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Where $123456789[...12][..@usn6] Detach Delete (`3esn` :usn2)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null}) Is Null,(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`),Any(#usn7 In 9e0[$1000] Where .e0 Is Null) =~Extract(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0|$`3esn` In $usn2) =~{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789}"), + octest:ct_string("Remove Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0 =~1e1).`8esn`!,[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]|_usn3 Contains _usn4 Contains $@usn5].usn2!,{`4esn`:_usn4[@usn6..][$0..],@usn5:$@usn6 In @usn6 In 1e1}.`3esn`!"), + octest:ct_string("Remove ``:`5esn` Merge `8esn`=(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) On Match Set `3esn`+=[_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1|999 Contains $1000] Starts With Single(`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``),`2esn`+=\"d_str\" In @usn5 In $@usn5 On Create Set `7esn` ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]} Unwind usn1 Starts With 00 As _usn3 Union All Remove usn1:`1esn`:_usn4,[#usn8 In `7esn` Where 12.0 Starts With $`2esn` Starts With .e1|$`6esn`[1.e1][$_usn3]].usn1?,[`5esn` In `7esn`[$usn2..][$123456789..]].``? Optional Match (`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}),`4esn`=({`7esn`:`8esn`[$`4esn`..$#usn8]}) Where $`2esn` =~9e12 Union Unwind 0x0[0.0] As `3esn`"), + octest:ct_string("Create (((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})<-[?:usn1|`4esn` *01..123456789{usn1:.e12[$@usn6..00][01234567.._usn3],`1esn`:`7esn` Contains 9e0}]-(_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`}))),`6esn`=(:`3esn`{@usn6:$`5esn` =~$`8esn` =~usn2,`8esn`:12[..0e0][...e1]}) Create usn2=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})),`8esn`=((`1esn` :``:usn2{@usn5:`4esn`[\"d_str\"]['s_str']})) Union Merge @usn5=(:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']}) On Create Set usn1+=@usn5 Is Null,usn2 =`8esn` =~@usn6 =~$`2esn`,@usn5 =count($`4esn`[`8esn`],`4esn` Is Not Null Is Not Null) =~Filter(@usn5 In 's_str'[0..] Where _usn3[0x0]) Union All Match ((:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) Remove Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5,{`3esn`:9e1 Ends With Count(*) Ends With $7}._usn4! Detach Delete {usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}[[@usn5 In 9e0 Ends With $#usn8 Where 00 Contains Count ( * ) Contains 0x0]]"), + octest:ct_string("Match _usn4=(`5esn` :``:usn2)-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}),`2esn`=(:#usn8:`1esn`$`7esn`) Where `2esn`[..$_usn3] Unwind $@usn5[..$#usn7] As #usn8 Union All Detach Delete $#usn7 Ends With 's_str' Ends With 0X7,[#usn8 In `7esn` Where .e0 Starts With $@usn6 Starts With $7|1000[12e12][`5esn`]] Ends With [`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8] Ends With [$``[..\"d_str\"][..$#usn8],$_usn4 Starts With $1000 Starts With 12,#usn7[.e0]] Union All Unwind 1.e1 Ends With $#usn7 As `5esn`;"), + octest:ct_string("Return *,1e1 Is Not Null Is Not Null;"), + octest:ct_string("With Distinct [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`) Merge (_usn3 :`7esn`) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] On Create Set #usn7+=Null[.12..12e12],Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]).`1esn`! =[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)],@usn6 =usn2[1.e1] Union All Remove (`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[usn1? *01234567..{@usn5:01[`3esn`..][Count(*)..]}]->(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null}).#usn7,[`8esn` In 123456789 =~@usn6 Where 0x0[@usn6..][01..]|#usn7[.e0]].usn2?,Extract(#usn7 In True Contains 's_str' Contains $usn1 Where `8esn`[..$#usn8]).`2esn`! Unwind 9e1 =~123456789 =~999 As @usn5 Create #usn7=(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}),({`1esn`:1.e1[`8esn`]})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->({usn1:$123456789 In 0.12}) Union Unwind Any(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) =~[#usn7 In 9e1[$`1esn`..] Where 0Xa Ends With $`3esn` Ends With $1000|$@usn5 Contains 's_str' Contains \"d_str\"] =~Extract(@usn6 In False Contains 0 Contains $`6esn` Where $`6esn` Starts With .e12 Starts With $`1esn`|12e12 In 123456789) As #usn7 Remove Extract(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1|010 Starts With $`` Starts With 0e0)._usn3!,1000.`2esn`? Remove None(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`).@usn6?,[Count ( * ) In True In @usn5,#usn7[0.12..],1000[0e0][1e1]].`3esn`?"), + octest:ct_string("Unwind 00[False..0e0] As `6esn` Union Create `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Union Unwind _usn4(Distinct 0X0123456789ABCDEF Ends With 01 Ends With ``,$`3esn`[..0xabc][..$7]) In Single(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0) In Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7]) As `1esn` Return Distinct *,`` =~.12 As #usn7 Order By Extract(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With [#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4] Ends With [False[$`4esn`..],$#usn7[..0Xa]] Asc,@usn6[..$@usn5] Ascending Skip \"d_str\" Is Null Is Null Limit `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Is Null Match `6esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Where `` Is Null;"), + octest:ct_string("Unwind 0.0 Contains `3esn` Contains @usn5 As @usn5 Union All Remove Single(#usn7 In 9e1[$`1esn`..] Where 999 In #usn8 In $``).``,Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7]|#usn8 =~.e0).`2esn`?,{usn2:Count ( * )[@usn6],`3esn`:$_usn4[$`5esn`][`7esn`]}.`7esn`? Delete 12 Contains 01234567,[@usn5[$`6esn`..][$999..],`` Starts With $123456789] Is Null,`6esn` Is Null Is Null Remove [0x0[0X7]].``!,(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}).`4esn`,{@usn5:01[`3esn`..][Count(*)..]}.`8esn`? Union Return $123456789 Starts With 0.12 Starts With Null As _usn3 Order By #usn7[``] Desc,{`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Ascending,`` Is Null Descending Skip 0X0123456789ABCDEF In $7 Limit All(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0)[(:#usn7:`5esn`)<-[#usn8? *0Xa]-(`5esn` :`5esn`{#usn7:``[$`3esn`]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc})..] With Distinct Count(*) In #usn8 In \"d_str\" As ``,$`4esn` Starts With 0 Starts With `7esn` As usn2 Order By $7 Starts With 12.e12 Starts With $@usn6 Desc,1.e1 Is Null Is Null Descending Skip $`1esn`[``][07] Limit `5esn` Contains 1.e1 Contains .e12 Where 9e1 Contains $999 Detach Delete All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`],usn2 Ends With $`4esn`"), + octest:ct_string("Return *,All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) As `8esn` Order By 12.0 Ends With `2esn` Descending,$`4esn`[`4esn`][Count(*)] Descending,$`1esn`[07..] Desc Skip 9e12[..123.654][..999] Merge @usn6=((`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})) On Match Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] Union Merge usn2=(@usn5 :@usn6{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[`8esn` *0xabc]-(:_usn3{_usn4:.e1[7..][9e0..]}) On Match Set None(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`).`7esn`! =07[..07][..0X7],`4esn`:`1esn`:_usn4 Merge `6esn`=(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})"), + octest:ct_string("Merge _usn3=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) Optional Match _usn4=({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}) Where 0x0[@usn6..][01..] Unwind $12 Starts With $usn1 As `4esn`"), + octest:ct_string("Unwind $@usn6 Ends With 123456789 Ends With 12.0 As `3esn` Merge ((@usn6 :@usn6{_usn4:#usn8 Is Not Null})-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-(`5esn` :#usn8:`1esn`)<-[`1esn`:`8esn` *00..0Xa{#usn8:0X7['s_str'..][01..],``:$usn2 =~1.e1 =~usn1}]->(:_usn3{_usn4:.e1[7..][9e0..]})) On Match Set (:``:usn2{`4esn`:#usn7 Contains $0 Contains $usn2})<-[:`8esn` *0X7..]->(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2})<-[`2esn`? *01..123456789]-(`2esn` :@usn6).`8esn` =`7esn`[1e1] On Create Set `7esn` ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]} Create `4esn`=((`6esn` :#usn8:`1esn`{`6esn`:usn1[..$@usn6][..00]})-[@usn5:_usn4 *0x0..]-(_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})),(:`4esn`:`6esn`{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]-(:`6esn`:_usn3)<-[@usn5? *999..{usn1:.e12[$@usn6..00][01234567.._usn3],`1esn`:`7esn` Contains 9e0}]-({@usn6:999 Contains 0 Contains $`5esn`,#usn7:999[..`1esn`][..07]}) Union Merge usn1=(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[usn1:_usn4]-(:`4esn`:`6esn`) On Match Set _usn3 =$``[01234567..][.0..] Union All Remove #usn7:@usn6,[#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0]._usn4?"), + octest:ct_string("Return Distinct *,1.e1 Ends With $#usn7 As usn2,@usn5[01][@usn5] Skip $`5esn` Limit (`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Is Not Null Union Unwind 9e12 =~@usn6 As usn1 Merge _usn3=((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(_usn3 :usn1:`3esn`)<-[`7esn`? *..010{usn2:12 Ends With Count ( * ),#usn8:`8esn` Contains `2esn` Contains .0}]->({`6esn`:'s_str' Contains 12.e12 Contains $`4esn`})) On Match Set #usn8+=Count(*)[$@usn5],@usn6 =0 =~1e1,`2esn`+=Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) On Match Set `8esn`+=#usn8[..`8esn`],_usn4 =0e0 Ends With 07 Ends With $`8esn`"), + octest:ct_string("Create ((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(:`8esn`{``:$`1esn` =~999})) Union All With Distinct [`8esn`[..$#usn8],$1000 Starts With $`7esn`,0xabc In 010 In #usn7] Is Null Is Null As #usn7,9e1[@usn5][$usn1],None(`3esn` In `2esn`[..01][..True] Where usn1 In ``)[None(usn2 In 7[12] Where 12e12 =~$`7esn`)..] Limit None(@usn5 In 's_str'[0..] Where 1000[..`2esn`][..$@usn6])[{usn2:`2esn` =~.e12 =~0X0123456789ABCDEF,@usn6:`2esn` Is Null}][(#usn7 {_usn3:0.e0 Starts With .0 Starts With 123456789,_usn4:'s_str' Ends With `7esn` Ends With 010})<-[`7esn`{`4esn`:$_usn4[$`6esn`..],`4esn`:Count(*) In #usn8 In \"d_str\"}]->(#usn8 :``:usn2)<-[`1esn`:`8esn` *00..0Xa{#usn8:0X7['s_str'..][01..],``:$usn2 =~1.e1 =~usn1}]->(:_usn3{_usn4:.e1[7..][9e0..]})] Where $`5esn` =~usn1"), + octest:ct_string("Unwind @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])] As usn2 Return Distinct *,False Is Null Order By 0X7[..$`8esn`] Desc,[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null Ascending,12.e12 Ends With `` Ends With 0 Desc Skip Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0)[..{`5esn`:0Xa[$`8esn`..][$_usn4..],_usn3:00[$usn1..]}][..Any(@usn6 In 010[`5esn`] Where 1.e1[$usn1])] Union With Distinct [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`) Merge (_usn3 :`7esn`) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] On Create Set #usn7+=Null[.12..12e12],Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]).`1esn`! =[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)],@usn6 =usn2[1.e1]"), + octest:ct_string("Remove [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`].@usn6?,[usn2 In False[$usn1][0x0] Where 999[@usn5..][Null..]|0.e0['s_str'..][01234567..]].``!,(:`1esn`:_usn4{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]})<-[@usn5:`3esn` *0Xa{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`}]->(:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})._usn4? Unwind [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null] Is Not Null As `3esn` Remove [#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3]|1.e1 Starts With 9e12].#usn8?,usn1:usn2,Single(#usn8 In `7esn` Where 07 Contains `3esn` Contains `7esn`).@usn5! Union Create `3esn`=((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})),((`5esn` :@usn5{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) Create (usn2 :``:usn2) Union All Merge ((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) On Create Set #usn8+=[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null),@usn5+=.e0 =~$`7esn` =~0X0123456789ABCDEF,``+=(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) On Match Set `6esn`(Distinct 0Xa[$`8esn`..][$_usn4..],0xabc In Null).`2esn`! =(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[? *..010{#usn8:False Is Null}]->(#usn7 {#usn7:1.e1 Starts With 9e12})<-[:_usn3|:`7esn` *00..0Xa]-(`1esn` $`4esn`)[..[0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]]][..(:`2esn`{_usn3:@usn5[0.0..0X7]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null).`7esn`? =Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])],Extract(`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]).@usn5 =$@usn6 Ends With 123456789 Ends With 12.0 Return *,Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null As usn1,00 Contains Count ( * ) Contains 0x0 As `5esn` Limit .e0"), + octest:ct_string("Remove Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 1.e1[12..][$`4esn`..]).`7esn`? Detach Delete `2esn`[$@usn6..][Null..],$1000 Starts With $`7esn` Unwind Count ( * ) =~0e0 =~`8esn` As `8esn`"), + octest:ct_string("Unwind (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]} As `5esn` Merge (({@usn6:010 Starts With 0 Starts With 0.0,_usn4:07[$`2esn`..9e12][$`4esn`..9e12]})<-[:@usn6|:`7esn` *0..01{``:`1esn`[0.0..1e1][0x0..7],usn2:01[`3esn`..][Count(*)..]}]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})) Detach Delete {#usn7:usn1 In ``}[None(`3esn` In `2esn`[..01][..True])..Extract(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..])] Union Optional Match (({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn4?:@usn6|:`7esn`]-({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn3?:_usn3|:`7esn`]->(`3esn` {`8esn`:`7esn` In 010 In usn1})) Where _usn3 Ends With 7 Ends With $`1esn`;"), + octest:ct_string("With Distinct $usn2,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Order By 's_str' Contains 12.e12 Contains $`4esn` Descending,.e12 Ends With 0Xa Ends With 0xabc Descending Skip #usn7 =~9e12 Union Remove [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 1.e1 Ends With $_usn4 Ends With #usn7|False Starts With 0X7 Starts With 01234567]._usn4! Remove Any(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7])._usn3,`7esn`:@usn5"), + octest:ct_string("With (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By 1000[$`2esn`..] Asc Where .e0 Contains $#usn8"), + octest:ct_string("Unwind $_usn3 Is Not Null As _usn3 Union All Delete Count ( * ) Ends With `6esn` Ends With 's_str',Count(*)[$@usn5] Optional Match @usn6=(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})-[:@usn5|_usn3 *00..0Xa]-(:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(_usn4 :@usn5) Merge (#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[?:`7esn`|:`2esn`]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]}) On Match Set `2esn` =`3esn`[..0X0123456789ABCDEF][..0x0] On Create Set `2esn` =$@usn5[0.0][0X0123456789ABCDEF],@usn6+=[`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})]"), + octest:ct_string("Merge usn2=(({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`)) Unwind Filter(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1) Contains {@usn5:07 Is Not Null Is Not Null} Contains None(@usn5 In 's_str'[0..] Where usn1 Starts With 00) As @usn6;"), + octest:ct_string("Optional Match (_usn3 :`5esn`{#usn8:0xabc In 010 In #usn7}),`3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) Where $#usn7[..9e0][..123.654] Merge usn2=(#usn7 {_usn4:1.e1[`8esn`]})<-[usn2{`2esn`:$12 Starts With $usn1}]->(:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]}) With Distinct *,{`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Skip (`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}) =~[12 In $usn1 In 7] =~Filter(@usn5 In 's_str'[0..] Where 0.e0) Limit `2esn` =~.e12 =~0X0123456789ABCDEF Where 0.12[..$_usn3][..0Xa]"), + octest:ct_string("With Distinct 0Xa Ends With $`3esn` Ends With $1000,Extract(@usn5 In 's_str'[0..] Where 12e12 Is Not Null) =~[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]],$#usn8[@usn6..] As `7esn` Order By (`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Desc,$usn1[Null][`8esn`] Desc,$`5esn` In `2esn` In `2esn` Asc Limit [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Ends With `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Ends With [$`1esn`[``][07],`7esn`] Where _usn3[$`1esn`..] Unwind $_usn4[9e0..][$1000..] As `5esn` Merge (:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Union All Detach Delete @usn5 Starts With $`3esn`,12 Is Not Null,07 Contains `3esn` Contains `7esn`"), + octest:ct_string("Return _usn3 Is Not Null Is Not Null As `` Order By Extract(`3esn` In `2esn`[..01][..True] Where 0.0 Is Null Is Null|$usn2[0.e0])[{usn2:@usn5 Is Null,`8esn`:$@usn6 Ends With 123456789 Ends With 12.0}..] Descending,(:_usn4$12)-[`1esn`?:`6esn`|:#usn8 *0Xa]-(usn1 :#usn8:`1esn`)[{`7esn`:$usn2 =~9e1}..] Desc,.12 In `8esn` In $#usn8 Desc Limit 9e1 Contains 12 Detach Delete 0.e0,\"d_str\"[True..],$`3esn` Ends With 01234567 Union All Remove {``:0Xa =~False =~@usn5,`6esn`:$`2esn` Starts With `4esn` Starts With $usn1}.@usn5,All(#usn7 In 9e0[$1000] Where 12e12 Starts With $0 Starts With $`2esn`).#usn7?"), + octest:ct_string("Delete 0X7[.0] Match @usn6=(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-(:`5esn`{@usn6:1000[0e0][1e1]})<-[:`8esn`]-(:@usn6) Where $7 In $usn1 In 999 Union Merge ((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)) Remove (@usn5 :`6esn`:_usn3{`7esn`:`8esn`[..$#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]})-[`3esn`:`2esn`|`4esn`]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[usn1:_usn4]-(#usn7 :@usn6).#usn8"), + octest:ct_string("Delete 9e0[$`8esn`] Merge (_usn3 :`7esn`) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] On Create Set #usn7+=Null[.12..12e12],Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]).`1esn`! =[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)],@usn6 =usn2[1.e1] Union With Distinct 0.e0['s_str'..][01234567..] As `1esn`,None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,.0[$``..0X7] Skip usn2 =~$`` =~$`8esn` Where `4esn`[.12][$@usn6] Union All Create (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}),`6esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) With Distinct $#usn8 Ends With `` Ends With 999 As `5esn`,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]) Is Not Null Is Not Null As _usn3 Order By _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..] Desc,{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Is Not Null Desc,9e0 Ends With $#usn8 Desc Limit 12.0 Starts With $`2esn` Starts With .e1 Where 9e1 Ends With Count(*) Ends With $7"), + octest:ct_string("With *,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3])[..{`8esn`:usn2 =~7,`5esn`:.e0[01234567..$`8esn`]}][..Any(@usn6 In 010[`5esn`] Where False[$`4esn`..])] As #usn8,$#usn7 Contains $`7esn` Contains .e12 As @usn5 Limit (:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}) Where 's_str' Is Not Null Merge (_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})"), + octest:ct_string("Optional Match `8esn`=(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}),`8esn`=(:`4esn`:`6esn`{usn2:$`8esn` Is Not Null Is Not Null})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Where `7esn` In 010 In usn1 Merge #usn8=((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})) On Match Set [12e12 =~1e1,0X7[..$`8esn`]].`7esn` =1e1 Ends With $`2esn`,`8esn`+=01[$`7esn`..$@usn6] On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``|.12 In `8esn` In $#usn8]._usn4? =7 =~0.12,`6esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null,Any(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]).`3esn`! =(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null Union Remove All(#usn8 In `7esn`).`1esn` With Distinct *,999 Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains {_usn3:123.654 In $`7esn`} As `6esn`,.e0 Is Not Null Is Not Null As `7esn` Order By _usn3 In $`8esn` In @usn6 Desc Return Distinct [$#usn7 Ends With 's_str' Ends With 0X7] Starts With (usn1 :@usn6)<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}) Starts With [`5esn` In `7esn`[$usn2..][$123456789..] Where $`1esn` Starts With Count(*)] As #usn8,0.12 Is Null Is Null As _usn3,_usn4[0] As `2esn` Skip `1esn`[$@usn6][07] Union All Delete [#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)] Contains (:`2esn`)-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`3esn` {`4esn`:False Is Null}) Contains Filter(`8esn` In 123456789 =~@usn6 Where $`6esn` Starts With .e12 Starts With $`1esn`),(_usn4 :_usn4)<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[ *..07{`6esn`:Count(*)[9e12..12.0]}]->(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12})[[0[$`5esn`],$999 In 1e1,$`6esn` Is Null]] Remove Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 1.e1[12..][$`4esn`..]).`7esn`?"), + octest:ct_string("Match ((:@usn6)) Where 9e1[_usn3] Return Distinct $#usn7[..9e0][..123.654],1e1 Contains 0.e0 Contains 9e1 As `8esn` Order By 01234567[Null..$_usn3] Descending,.e12 Starts With $12 Starts With .e12 Descending,0[01234567..][0X0123456789ABCDEF..] Ascending Remove Any(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0).usn1,All(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])._usn4!,7._usn4 Union All Remove All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]).`2esn`,[1000[..`2esn`][..$@usn6],Count(*) Is Null].`4esn`!,`8esn`:`5esn` Remove Any(`3esn` In `2esn`[..01][..True] Where $0 =~9e1 =~$`2esn`).usn1 Detach Delete (`3esn` :usn2)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null}) Is Null,(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`),Any(#usn7 In 9e0[$1000] Where .e0 Is Null) =~Extract(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0|$`3esn` In $usn2) =~{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Union All Return 0.12 Starts With $`8esn` Starts With @usn5 As @usn5,#usn7 Is Null Is Null As `1esn`,[@usn5[$`6esn`..][$999..],`` Starts With $123456789] Is Null Order By Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) Ascending,'s_str' Starts With 1e1 Starts With $0 Desc"), + octest:ct_string("Remove #usn7:usn2,[07[_usn3..][`6esn`..],$usn1 Ends With _usn4 Ends With `2esn`,False[$`4esn`..]].`3esn`?,[`6esn` Ends With _usn4 Ends With False].`4esn`! Merge ((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) On Create Set #usn8+=[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null),@usn5+=.e0 =~$`7esn` =~0X0123456789ABCDEF,``+=(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) On Match Set `6esn`(Distinct 0Xa[$`8esn`..][$_usn4..],0xabc In Null).`2esn`! =(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[? *..010{#usn8:False Is Null}]->(#usn7 {#usn7:1.e1 Starts With 9e12})<-[:_usn3|:`7esn` *00..0Xa]-(`1esn` $`4esn`)[..[0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]]][..(:`2esn`{_usn3:@usn5[0.0..0X7]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null).`7esn`? =Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])],Extract(`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]).@usn5 =$@usn6 Ends With 123456789 Ends With 12.0 Return Distinct _usn4(Distinct usn2[07..][.0..]) Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]|$`2esn` Starts With `4esn` Starts With $usn1) Ends With Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2),usn1[..$@usn6][..00] As #usn7,(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})[..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})] As `7esn` Order By 0X7[..$`8esn`] Desc,$123456789[12e12..9e0] Descending Union All Match _usn3=(`2esn` $`6esn`)-[`2esn`{``:Null[..010][..1000]}]-(#usn7 :``:usn2),@usn5=((#usn7 :@usn6{`8esn`:0x0[0.0],#usn7:`7esn`[$usn1..]['s_str'..]})) Where usn2[12e12..]['s_str'..] Union All Return #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Order By Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[..[#usn7 In True Contains 's_str' Contains $usn1 Where Count(*) Ends With usn1]][..Filter(usn2 In 7[12] Where #usn7[0.e0..]['s_str'..])] Ascending,{@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Asc,usn2[1.e1] Descending Skip $``[01234567..][.0..] Return Distinct $#usn7 In $@usn5 In $`1esn` As `4esn` Remove Filter(#usn7 In 9e0[$1000] Where 12['s_str'][01])._usn3?,[@usn5 In 's_str'[0..] Where usn1 Starts With 00|True Contains .e12].`6esn`!,None(@usn5 In 's_str'[0..] Where 0.e0).`4esn`"), + octest:ct_string("Unwind $0 Ends With Count ( * ) Ends With @usn5 As `8esn` Create `6esn`=(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[@usn6:`1esn`|`3esn` *0X7..]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}),(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(`3esn` :_usn4{`3esn`:12[..0e0][...e1],`4esn`:.0 Is Null Is Null}) Union Optional Match `4esn`=({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}),@usn5=(({@usn5:$`5esn` Is Not Null Is Not Null})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})) Where `8esn` Is Null Match (`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}),`7esn`=(((`` :`5esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`8esn`{`8esn`:usn1 Contains 010,_usn4:`5esn` Contains $`5esn` Contains 0X7}]-({#usn8:0xabc In 010 In #usn7}))) Optional Match `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((`6esn` :`5esn`)<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`5esn` :`4esn`:`6esn`)) Where 07 Is Not Null Is Not Null"), + octest:ct_string("Merge _usn3=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']}) On Match Set Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]|$``[..\"d_str\"][..$#usn8]).@usn6 =[$usn1[`2esn`..][$`2esn`..]][(`3esn` :usn2)-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})..`2esn`(Distinct $@usn6 Is Not Null Is Not Null,Count ( * ) Ends With $123456789)],None(#usn8 In `7esn` Where ``[7.._usn3]).@usn6? =`6esn`,Any(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])._usn4! =`` Is Null Union Unwind False[$usn1][0x0] As usn2 Delete $_usn4 Starts With $1000 Starts With 12,@usn5[$`7esn`..`5esn`],usn1 Unwind 12['s_str'][01] As `6esn`"), + octest:ct_string("Remove Extract(_usn4 In 12e12 In 123456789 Where .e1 Starts With 12.e12 Starts With `2esn`|$@usn5 Is Null Is Null).@usn5!,Extract(@usn6 In 010[`5esn`] Where $0[0Xa..$123456789]|#usn7[0.e0..]['s_str'..]).`8esn`?,(:#usn8:`1esn`$`7esn`)-[?:@usn6|:`7esn` *0X0123456789ABCDEF..{_usn4:0x0[12e12..$`7esn`]}]->({@usn5:Count(*) Is Not Null Is Not Null}).`5esn`?;"), + octest:ct_string("Unwind usn1[$@usn5] As _usn4 Return {`1esn`:1e1 Contains 's_str' Contains `3esn`} =~None(#usn7 In 9e0[$1000] Where `6esn`[$1000][`3esn`]) As `7esn`,(`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Order By {`4esn`:999 In 0e0,`6esn`:0.e0['s_str'..][01234567..]} Contains Single(`8esn` In 123456789 =~@usn6 Where 12.e12 Ends With `` Ends With 0) Ascending,`1esn` Starts With 0xabc Starts With $usn2 Desc Skip Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Limit $usn1[Null][`8esn`] With *,.e12[.12..],_usn4 Ends With _usn4 Ends With 9e0 As `` Skip None(`3esn` In `2esn`[..01][..True] Where usn1 In ``)[None(usn2 In 7[12] Where 12e12 =~$`7esn`)..] Limit Null[..0] Union All Merge #usn8=((`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})) On Create Set `4esn`+=$`4esn`[07..],`1esn` =123.654[`4esn`..12] On Match Set `6esn`(Distinct 0Xa[$`8esn`..][$_usn4..],0xabc In Null).`2esn`! =(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[? *..010{#usn8:False Is Null}]->(#usn7 {#usn7:1.e1 Starts With 9e12})<-[:_usn3|:`7esn` *00..0Xa]-(`1esn` $`4esn`)[..[0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]]][..(:`2esn`{_usn3:@usn5[0.0..0X7]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null).`7esn`? =Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])],Extract(`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]).@usn5 =$@usn6 Ends With 123456789 Ends With 12.0 Remove [0[$`5esn`],$999 In 1e1,$`6esn` Is Null].`5esn`,(:usn1:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]})<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1}).`3esn`,{`6esn`:$`7esn`[0.12]}._usn3! Union Return Distinct *,$`6esn`[0e0..][010..],.e12 Is Null Is Null Skip 's_str' Ends With _usn4 Ends With 0e0 Return Distinct @usn6[9e12],usn2 =~$`` =~$`8esn` Order By All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) Is Not Null Is Not Null Descending Limit `5esn` Contains `7esn` Remove Extract(`3esn` In 9e1 Contains $999 Where usn1[False..`5esn`][$1000..$12]|True Starts With Null).`4esn`!"), + octest:ct_string("Create usn1=(({#usn7:12e12 In $`5esn`})<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})) Union Optional Match usn1=(({#usn7:12e12 In $`5esn`})<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})),``=({`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[? *..010{usn1:9e1[_usn3]}]->(`5esn` {`4esn`:0x0[usn1..usn1],usn1:$`5esn`[0X7..010][`7esn`..'s_str']}) Where $usn2 Is Not Null Is Not Null Union All With 's_str' Where 's_str'[0..] Unwind 12e12 In 123456789 As `7esn` Detach Delete $12 Starts With $0 Starts With $`8esn`"), + octest:ct_string("Unwind {usn2:`7esn`[$usn1..]['s_str'..],usn2:_usn4 Contains `` Contains 1.e1} Is Not Null Is Not Null As _usn3 Union Match ((:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]})<-[@usn5?{`7esn`:0.0 Contains #usn7,`6esn`:@usn5[0.0..0X7]}]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`8esn`:usn2[`8esn`..][0X0123456789ABCDEF..]})),usn2=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) Where 0.12 Starts With $`8esn` Starts With @usn5 Merge (`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-({`1esn`:#usn7[0]}) On Match Set `1esn` =0x0[@usn6..][01..],`5esn`(Distinct $#usn7 Contains $`7esn` Contains .e12).@usn6! =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`) Is Null Create ((#usn7 {`1esn`:$`4esn` Is Null Is Null})<-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(`6esn` :`8esn`))"), + octest:ct_string("Unwind 9e1 =~123456789 =~999 As `` Union All Delete 7 =~0.12 Match #usn7=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2),`2esn`=({@usn5:$`5esn` Is Not Null Is Not Null})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Where $_usn4[$`5esn`][`7esn`]"), + octest:ct_string("Optional Match ((_usn4 :#usn7:`5esn`)-[`4esn`:`1esn`|`3esn` *12..]->({`7esn`:9e12 =~@usn6})),((:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[`1esn`:`8esn` *7..]-(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Where Count ( * )[$`5esn`..][$7..] Merge #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))) On Create Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] On Match Set Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa).@usn6! =0.e0 Is Not Null Is Not Null,`1esn` =07 In `6esn` Union All With *,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``) Is Null Is Null Remove Any(@usn5 In 's_str'[0..] Where #usn7[0.12..])._usn3,[`6esn` In $`6esn`[``..][Count(*)..] Where @usn5[0.0..0X7]].``! Delete 0x0[usn1..usn1],`2esn` Starts With .e1 Starts With 9e12;"), + octest:ct_string("Optional Match (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3),(@usn6 :`4esn`:`6esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`2esn`?:`6esn`|:#usn8{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`}]-(_usn3 {_usn3:0.12 Starts With $`8esn` Starts With @usn5}) Unwind [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e1[usn1..0x0][12.e12..12.0]][..{usn2:0x0[0X7]}][..[12.e12 Is Not Null Is Not Null,$@usn6[.0..][0e0..]]] As _usn4"), + octest:ct_string("Match (((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}))) Union Detach Delete 999 Is Not Null Is Not Null Union Remove Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $123456789 In 0.12).#usn8?,[`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null|$#usn7 Starts With 01234567 Starts With $0].`7esn`,(`4esn` :@usn6)-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4).`4esn`"), + octest:ct_string("Merge (:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Union With Distinct 0X7[`2esn`..] As `6esn`,Single(usn2 In False[$usn1][0x0])[All(@usn6 In 010[`5esn`] Where 00[1.e1..])][(:`2esn`{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`})-[?{`5esn`:$`2esn`[.0..][0.0..]}]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})-[`` *1000..0X0123456789ABCDEF]->(:_usn4{`8esn`:01234567[Null..$_usn3]})] Order By $0 Starts With @usn5 Desc,Filter(@usn5 In 9e0 Ends With $#usn8) Contains {@usn6:#usn7[`8esn`..usn1][$999..`7esn`]} Contains (:#usn7:`5esn`)-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}) Asc Limit [@usn5 In 's_str'[0..] Where 01234567[\"d_str\"..`4esn`]|usn1 In ``] Is Null Is Null"), + octest:ct_string("With Distinct `2esn`[$usn2][12.0],Single(#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6])[Filter(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])..] As _usn4 Limit `4esn` In 010 Union All Delete $0[12.0...e1],_usn4[.12..$usn2][$_usn3..123.654],07[..07][..0X7] Remove [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where _usn4[`7esn`]|$#usn7 In $@usn5 In $`1esn`].@usn6 Return Distinct .0 Starts With `1esn` As #usn7,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} As usn2,$@usn5[..$#usn7] Limit None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[Extract(#usn7 In 9e0[$1000] Where .e1 In 123456789)][{_usn3:01[`8esn`..9e12][.12..0]}]"), + octest:ct_string("Merge usn2=(`3esn` {``:9e1 Is Null,usn1:9e0[Count(*)..0.12][$`1esn`..12.0]})-[?:`7esn`|:`2esn`{@usn5:usn2[1.e1],@usn6:$#usn8 Starts With .e12 Starts With 1.e1}]->({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]}) On Create Set {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}.usn1 =[`4esn`[.12][$@usn6],.0[..'s_str'][..01234567],1.e1 =~.12][Any(usn2 In False[$usn1][0x0] Where False Is Null)..],`5esn`+={`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}[Extract(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]|.e1[..$`3esn`][..01])..],`2esn` =0e0[.12..7][12...e12] Match @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Where 7[0e0..] Union Merge `2esn`=(((:`6esn`:_usn3)<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})-[#usn7?:`7esn`|:`2esn` *..07]-(#usn7 {#usn7:1.e1 Starts With 9e12}))) On Create Set usn2+=$12 Starts With $0 Starts With $`8esn`,`1esn`+=12.0 Starts With .12 Starts With `6esn`"), + octest:ct_string("Detach Delete `6esn` =~`3esn` =~@usn6,(:_usn4$12)-[`1esn`?:`6esn`|:#usn8 *0Xa]-(usn1 :#usn8:`1esn`)[{`7esn`:$usn2 =~9e1}..] Create `2esn`=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) Remove (`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[usn1? *01234567..{@usn5:01[`3esn`..][Count(*)..]}]->(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null}).#usn7,[`8esn` In 123456789 =~@usn6 Where 0x0[@usn6..][01..]|#usn7[.e0]].usn2?,Extract(#usn7 In True Contains 's_str' Contains $usn1 Where `8esn`[..$#usn8]).`2esn`! Union All Unwind 0.e0[$`4esn`..`2esn`] As @usn5 Optional Match (_usn4 :#usn7:`5esn`)-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-(`5esn` :#usn8:`1esn`) Where 9e1[`1esn`..0][999..1e1]"), + octest:ct_string("With *,`2esn` In 9e0 In 7,$7 Starts With $`4esn` As _usn4 Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Limit None(#usn7 In 9e0[$1000] Where $_usn3 Is Null) In (:`3esn`)<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})<-[`4esn`:`1esn`|`3esn` *12..]-(#usn8 :`8esn`) In {`7esn`:$``[..\"d_str\"][..$#usn8],`7esn`:$`` Contains $`2esn` Contains $usn2} Where 12e12 Is Not Null Unwind 07 In 0Xa In usn1 As #usn8 Union Unwind 9e1 =~$_usn4 =~1.e1 As `7esn`"), + octest:ct_string("Unwind True Ends With $_usn3 Ends With 12 As #usn7 Return Distinct 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] As #usn8,(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null},$#usn7 =~`2esn` As `4esn` Limit Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Union All Merge ``=(@usn5 :`6esn`:_usn3{`7esn`:`8esn`[..$#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Union Return _usn4 Contains $_usn3 Contains .e1,$`4esn`['s_str'..] As `` Limit None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`])[Single(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Is Not Null Is Not Null)] Delete (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Remove Filter(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $#usn7 Starts With 01234567 Starts With $0).usn2!"), + octest:ct_string("Unwind 0X0123456789ABCDEF[..0xabc] As `8esn` Delete $7[$12..12e12][1.e1..9e1],Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..]) =~[_usn4 In 12e12 In 123456789 Where .0 Ends With Count ( * )|$`1esn` In .e0];"), + octest:ct_string("Unwind Count ( * ) In 123456789 In $@usn5 As usn1 Unwind $1000[$@usn6][$_usn4] As `6esn` With 9e12[..`3esn`][..0X0123456789ABCDEF] As `5esn`,`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] As usn1 Order By .e1[..$`3esn`][..01] Ascending,'s_str' Is Not Null Descending Where $#usn7[..$`4esn`][..01]"), + octest:ct_string("Remove Extract(@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1|True Contains 's_str' Contains $usn1)._usn4?,All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]).`4esn` Union All Optional Match (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Where $`7esn`[.e1][12.0]"), + octest:ct_string("Optional Match ``=(((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),_usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))) Create @usn6=((({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}))),@usn5=()-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]-(:`4esn`:`6esn`{usn1:0 =~1e1,`7esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})-[_usn3:`5esn`|:usn2 *999..{`3esn`:`5esn` Contains $`5esn` Contains 0X7}]-(`8esn` {`1esn`:$`4esn` Is Null Is Null}) Return *,'s_str' Ends With `7esn` Ends With 010 Order By #usn7[``] Desc,`7esn` Starts With @usn5 Ascending Skip @usn6 =~999 =~@usn5"), + octest:ct_string("Optional Match ((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})) Unwind 's_str' Is Not Null As `4esn` Return 01[$`7esn`..$@usn6] As `2esn`,(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]} Order By `4esn` Contains 9e0 Desc,$12 =~0X7 =~0x0 Ascending,Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 1.e1 Ends With $_usn4 Ends With #usn7|$7 Starts With 12.e12 Starts With $@usn6) Starts With (:``:usn2)<-[`2esn`:`8esn`{`7esn`:$`4esn` Is Null Is Null}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]}) Starts With [01234567[Null..$_usn3],0[1e1][$usn1],False[..$`5esn`][..1e1]] Descending Limit None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]) Is Null Union Unwind $`4esn`[..$`8esn`][..Null] As #usn8 Union All Optional Match ((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})),#usn8=({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Delete `2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] With Distinct *,$@usn6 Ends With 12.e12 Ends With @usn5 As `3esn` Order By .e0 Starts With $@usn6 Starts With $7 Descending Limit All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where False[$usn1][0x0]) In [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null|9e12[9e1]] In [12.0 Is Null,$_usn4[..$_usn4][..`7esn`]]"), + octest:ct_string("Optional Match (`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}),`7esn`=(((`` :`5esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`8esn`{`8esn`:usn1 Contains 010,_usn4:`5esn` Contains $`5esn` Contains 0X7}]-({#usn8:0xabc In 010 In #usn7}))) With Distinct Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1|$@usn5 In $`6esn` In 12e12) Ends With (:`7esn`{#usn7:0 =~1.e1 =~$#usn7})<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) As @usn5,.e0 Is Not Null Is Not Null As `7esn`,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] As `3esn` Limit _usn4 In #usn7 Union All Detach Delete usn1 Ends With 9e0 Ends With 9e0,999 Is Null Is Null,[_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1|999 Contains $1000] Starts With Single(`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``) Merge ``=(((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[`2esn`? *01234567..]->(:`2esn`)-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->({`7esn`:999 In 0e0}))) Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) On Create Set #usn7+=.e0[..9e12][..07],`4esn`(True[$_usn3..],$999[``]).usn2 =123456789 Is Null Is Null,@usn5 =01[07..][1.e1..] On Create Set `5esn`+={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},usn2 =True Contains 0x0 Contains $_usn3 Union Merge `2esn`=(((`7esn` )<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2))) On Match Set #usn8 =[`5esn` Contains `1esn` Contains usn1,$@usn5 Ends With @usn5 Ends With 0xabc] Is Null Is Null,`8esn` =[$@usn6 =~#usn7 =~True,$`1esn` Contains 1e1 Contains @usn6,9e1[..123456789]] Is Null On Create Set @usn6+=$#usn7 Ends With 's_str' Ends With 0X7,`6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn2 =$@usn5 Ends With @usn5 Ends With 0xabc"), + octest:ct_string("With Distinct `6esn`[..$`4esn`],0xabc Is Not Null Is Not Null,[`2esn` Is Null] Is Null Is Null As `4esn` Union Return *,`8esn` =~@usn6 =~$`2esn` As _usn3 Optional Match @usn5=(`7esn` :`3esn`{`2esn`:999[123.654..$usn2][Count ( * )..0x0]})-[`2esn`?:usn1|`4esn` *00..0Xa]-(`4esn` :`4esn`:`6esn`),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Where 12 Starts With #usn7 Starts With 0Xa Return $7 Ends With Count ( * ),`6esn` =~Null As `4esn` Skip 1e1[_usn3] Limit [`2esn` Is Null] Is Null Is Null Union All Return Distinct $#usn7 In $@usn5 In $`1esn` As `4esn` Merge ((:`6esn`:_usn3)) On Match Set `` =Extract(@usn5 In 's_str'[0..] Where 12e12 Is Not Null) =~[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]]"), + octest:ct_string("Unwind {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01}[#usn8(False Contains 0 Contains $`6esn`,'s_str' Starts With 1e1 Starts With $0)..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})][(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(`4esn` :`6esn`:_usn3)..[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]]] As `4esn` Create (((`7esn` )<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2))),`5esn`=(({@usn5:``[9e12][$999]})-[usn2{``:$`1esn` =~999}]-(:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0})) Create _usn3=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']}) Union All Merge (`2esn` :`1esn`:_usn4)-[?*..]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) On Create Set @usn6+=$#usn7 Ends With 's_str' Ends With 0X7,`6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn2 =$@usn5 Ends With @usn5 Ends With 0xabc Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] On Create Set `6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn1+=`4esn`[$_usn3..$`7esn`] Unwind $`5esn`[`7esn`] As @usn5"), + octest:ct_string("Optional Match usn1=((:@usn5{@usn5:$12[9e0..$999]})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})) Return @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1|$@usn5 In $`6esn` In 12e12) Ends With (:`7esn`{#usn7:0 =~1.e1 =~$#usn7})<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}),`1esn`($`4esn`[`4esn`][Count(*)],`2esn` Starts With $`7esn`) =~Extract(@usn5 In 9e0 Ends With $#usn8 Where .e0 Starts With $@usn6 Starts With $7) =~{`3esn`:_usn3[`2esn`..0X7][0.e0..$`3esn`]} Union With Distinct Count(*)[$@usn5] As `6esn`,[#usn8 In `7esn` Where usn2[07..][.0..]|$usn1 Ends With _usn4 Ends With `2esn`] Contains (_usn3 {#usn7:1000[12e12][`5esn`]})-[`3esn`?:`3esn`]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0}) Contains Extract(`3esn` In `2esn`[..01][..True] Where usn1 In ``) As `2esn`,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..] Order By ``[$`1esn`] Desc,123456789 Contains 0Xa Asc,[$`8esn` Is Not Null Is Not Null,0xabc In Null] =~Single(#usn7 In 9e0[$1000] Where .e0 Is Null) Descending Where 9e1[_usn3] Unwind Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null As #usn7"), + octest:ct_string("Merge #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))) On Create Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] On Match Set Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa).@usn6! =0.e0 Is Not Null Is Not Null,`1esn` =07 In `6esn`;"), + octest:ct_string("Merge ((#usn8 :`8esn`$#usn8)) Optional Match ((`1esn` {_usn4:`8esn` Is Null})),`2esn`=(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Union Return *,$`2esn` Ends With `6esn` As usn1,`2esn` Is Null As `` Order By `6esn` =~$_usn4 =~7 Asc Skip `5esn`[..True][..0.e0] With Distinct 0e0[01][$`7esn`],'s_str'[0..] As `4esn`,Filter(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) =~{#usn7:1000[12e12][`5esn`]} As _usn4 Skip 0x0[$0][7] Limit None(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])[Any(`3esn` In `2esn`[..01][..True] Where $`3esn`[..0xabc][..$7])][$#usn7] Where $`7esn`[$_usn4][.e0] Optional Match ((:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})),(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Where _usn3 Starts With 12e12 Starts With `5esn` Union All Return Distinct *,123.654[`4esn`..12] Order By 0.0[$usn2..] Asc,$7 Starts With 12.e12 Starts With $@usn6 Asc Limit $``[..\"d_str\"][..$#usn8] Merge `8esn`=(((@usn6 :`4esn`:`6esn`)<-[?{``:'s_str' Is Not Null,`8esn`:$`2esn` Is Null}]->(`1esn` :`2esn`)-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}))) On Match Set `8esn` ={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},None(@usn5 In 's_str'[0..] Where 1000[..`2esn`][..$@usn6]).`2esn`? =0X0123456789ABCDEF Is Not Null Is Not Null;"), + octest:ct_string("Delete [@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]],[$`6esn`[1.e1][$_usn3],0Xa Ends With $`3esn` Ends With $1000] Ends With (usn2 :_usn4)-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-({`8esn`:usn2 Starts With .0,@usn5:Count(*) In 12 In `6esn`}),12.e12 Is Not Null Is Not Null Unwind Count ( * ) Ends With `6esn` Ends With 's_str' As _usn3 With *,0xabc Is Null Is Null,usn2 =~$`` =~$`8esn` As `2esn` Skip 0 Ends With Count(*) Ends With False;"), + octest:ct_string("Create (@usn6 {`4esn`:9e1 Contains 12}) Return *,0X7[`2esn`..] As `6esn`,$`1esn` Contains 1e1 Contains @usn6 As `3esn` Order By $_usn3[_usn4..] Descending,9e1 Contains $999 Ascending Unwind 07[999] As @usn6 Union Remove All(@usn5 In 's_str'[0..] Where 12e12 Is Not Null)._usn3!,`3esn`(Distinct $@usn5 In $`6esn` In 12e12).`8esn`! Remove `5esn`($`4esn` In 1.e1 In #usn7,0Xa[Count(*)..]).`5esn`,(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`).`3esn`,None(#usn8 In `7esn` Where 9e12[..1e1][..'s_str'])._usn4?"), + octest:ct_string("With *,``(Distinct 00 Ends With `` Ends With 12.e12,`6esn`[..Count ( * )][..$_usn4]) In (usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[`7esn`?:#usn8|:`3esn`{`6esn`:'s_str'[0..]}]->(#usn8 :`8esn`$#usn8) In Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1]) As `3esn` Order By $usn2[`5esn`..][01234567..] Asc,$`7esn`[.e1][12.0] Asc,$`5esn` =~usn1 Ascending Skip @usn6(0X7 In $#usn7,_usn4 Contains `` Contains 1.e1)[Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)..Any(#usn7 In 9e1[$`1esn`..] Where $`2esn` Ends With `6esn`)] Where 00[$usn1..] With Distinct {`8esn`:9e12 =~@usn6,`1esn`:999 Contains 0 Contains $`5esn`}[`4esn`()],(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null} Order By [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Desc Limit $7 Starts With $`4esn` Merge `6esn`=(((:`6esn`:_usn3)<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(`3esn` :_usn4{`3esn`:12[..0e0][...e1],`4esn`:.0 Is Null Is Null})-[usn2 *..07]->(`` {_usn3:`5esn` Contains `7esn`}))) On Match Set (:_usn3)<-[`2esn`? *01..123456789]-(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}).#usn8! =Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``),{`1esn`:`8esn` Is Not Null Is Not Null}.`4esn`? =$@usn5 Starts With `5esn` Starts With 01234567,{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}.``? =12 In $usn1 In 7"), + octest:ct_string("Optional Match (((:`6esn`:_usn3{@usn5:0.e0[..$7],@usn6:.12 In `8esn` In $#usn8})-[?*..]-(usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->(#usn8 :`8esn`))) Where True[..#usn8] Merge ({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) On Match Set `3esn`+=`2esn` =~.e12 =~0X0123456789ABCDEF,#usn8:usn1:`3esn`,``+=`2esn` Create (@usn5 :`1esn`:_usn4)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})-[? *01..123456789]-(_usn3 :`6esn`:_usn3) Union Merge #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})) On Match Set `5esn`(Distinct .12[123.654..]).`3esn` =01234567 In 123456789 In 12,`6esn` =[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null On Match Set usn2+=`6esn`[$`8esn`][9e1] Union All Unwind 12e12 In 123456789 As `7esn`;"), + octest:ct_string("Create `5esn`=((`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5)),(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[`4esn`:usn2]->(`3esn` :_usn4) Detach Delete $@usn6[_usn3..][$999..],$usn2 =~0.e0 =~@usn6 Match (((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})))"), + octest:ct_string("Merge ((usn1 {_usn4:#usn8 Is Not Null})<-[:`8esn` *0X7..]->(:`8esn`{@usn5:usn2 Ends With .e1 Ends With $`5esn`})<-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]->({`8esn`:usn2 Starts With .0,@usn5:Count(*) In 12 In `6esn`})) On Match Set @usn5 =$`2esn` Is Null,usn2+=`4esn` Starts With 0e0,``+={_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}[[$`2esn` =~9e12,`6esn` Is Null Is Null,usn2 Is Not Null]..[$`1esn` Starts With $`4esn` Starts With $_usn3]] Optional Match _usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Where 0.e0 Starts With .0 Starts With 123456789 Delete 999[..`1esn`][..07],0x0[@usn5][$#usn8]"), + octest:ct_string("Delete Any(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) =~[#usn7 In 9e1[$`1esn`..] Where 0Xa Ends With $`3esn` Ends With $1000|$@usn5 Contains 's_str' Contains \"d_str\"] =~Extract(@usn6 In False Contains 0 Contains $`6esn` Where $`6esn` Starts With .e12 Starts With $`1esn`|12e12 In 123456789),.e0 =~Null,12.e12[..9e1][..$_usn3] Remove None(#usn7 In 9e1[$`1esn`..]).`5esn` Union Optional Match usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})),((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Where $123456789[...12][..@usn6] Detach Delete `2esn`[$@usn6..][Null..],$1000 Starts With $`7esn` Union Merge ``=(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) On Create Set `8esn` =[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] On Match Set Any(#usn8 In `7esn` Where $`3esn` Contains $`1esn`).`8esn`? =0x0 Contains $`6esn` Contains `4esn`,Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where False[$usn1][0x0]|@usn5[0.0..0X7]).usn2! =Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1),`3esn` =12.e12[..$999][..07] Create (((`6esn` :#usn7:`5esn`)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(_usn4 :#usn7:`5esn`))),usn2=((#usn7 {`6esn`:$`2esn` Contains Count(*)})-[?:_usn4]->(`2esn` :usn2));"), + octest:ct_string("Create #usn7=(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}),({`1esn`:1.e1[`8esn`]})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->({usn1:$123456789 In 0.12}) Return Distinct `2esn` Starts With 12.e12 Starts With 12.0 As #usn8,$_usn3 Is Not Null Is Not Null Skip `1esn`[$@usn6][07] Limit $1000 Is Not Null Union All Unwind 0 =~1e1 As usn2 Match #usn8=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}),(:#usn8:`1esn`{usn2:$`7esn`[.e1][12.0],``:$`1esn` Contains 1e1 Contains @usn6}) Where $_usn4 Starts With $1000 Starts With 12 Detach Delete (`3esn` :usn2)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null}) Is Null,(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`),Any(#usn7 In 9e0[$1000] Where .e0 Is Null) =~Extract(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0|$`3esn` In $usn2) =~{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Union Optional Match ((:`6esn`:_usn3{usn1:`3esn`[0x0..]})<-[? *1000..0X0123456789ABCDEF{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]->({`4esn`:.e1[..$`3esn`][..01]})<-[usn2?{``:$`1esn`[``][07]}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7})),(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) Create (((:_usn4{`8esn`:01234567[Null..$_usn3]})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->(`5esn` :`3esn`{``:`` Is Null,`8esn`:$@usn6[$0..9e12][.e12..Null]})<-[`7esn`:`4esn`|@usn5 *12..]->({`4esn`:.e1[..$`3esn`][..01]}))),_usn4=(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-(:#usn8:`1esn`{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0})"), + octest:ct_string("Unwind $`4esn`[..$`8esn`][..Null] As `7esn`;"), + octest:ct_string("Create ``=((@usn5 {`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]})<-[`2esn`:`8esn`{`7esn`:$`4esn` Is Null Is Null}]->(usn1 :@usn6)-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(`8esn` :`8esn`)),(:_usn3{usn1:#usn7[..07]})<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]}) Return 010 Starts With $`` Starts With 0e0 As @usn5 Unwind True Starts With Null As usn1 Union With Distinct *,.e0 Is Null As `2esn`,[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]) Order By _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..] Descending,[.e12 Is Null Is Null] Starts With `5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12]) Starts With None(`8esn` In 123456789 =~@usn6 Where `7esn`[$usn2..][$123456789..]) Descending With {``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}[..Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)][..Any(#usn7 In $999 In 1e1 Where 07 In `6esn`)] As usn1,`8esn` Is Not Null Is Not Null As `4esn` Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Limit Any(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]) =~[9e12 =~@usn6,01 Ends With 0Xa Ends With 0X7,$@usn6[$0..9e12][.e12..Null]] Delete _usn4 Is Null Is Null,010[`5esn`],#usn8 Starts With $1000 Starts With $@usn5 Union Match (`8esn` :#usn8:`1esn`{usn1:0x0 Starts With $`6esn`}) Create ((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})),@usn5=(({@usn5:$`5esn` Is Not Null Is Not Null})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})) Return Distinct .e0 Ends With $123456789 Ends With 0xabc Limit 's_str' Starts With 1e1 Starts With $0"), + octest:ct_string("Delete $0[12.0...e1],_usn4[.12..$usn2][$_usn3..123.654],07[..07][..0X7] Remove [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where _usn4[`7esn`]|$#usn7 In $@usn5 In $`1esn`].@usn6 Return Distinct .0 Starts With `1esn` As #usn7,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} As usn2,$@usn5[..$#usn7] Limit None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[Extract(#usn7 In 9e0[$1000] Where .e1 In 123456789)][{_usn3:01[`8esn`..9e12][.12..0]}] Union All Unwind (#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})[..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})] As #usn7"), + octest:ct_string("Match (`3esn` {usn2:$usn2[`4esn`..9e12]}),usn1=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) Where 9e1 Ends With Count(*) Ends With $7 Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),Single(_usn4 In 12e12 In 123456789 Where False Is Null)[[$usn1,_usn4 Contains `` Contains 1.e1]][(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]})] Delete \"d_str\" Is Not Null,$usn1;"), + octest:ct_string("Create #usn8=((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})<-[`8esn`?:`` *01234567..$usn1]->(:_usn4)),`5esn`=(({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]->(#usn8 :``:usn2)-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1})) Unwind $_usn4 Starts With $1000 Starts With 12 As #usn7 Unwind $_usn3 Is Not Null Is Not Null As `1esn`"), + octest:ct_string("Create ((@usn6 {_usn4:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})) Delete [#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Union All Optional Match @usn5=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),#usn7=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))) Merge (`1esn` :`3esn`{#usn8:$usn2[0.e0],`8esn`:$`4esn`['s_str'..]})<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]}) Union Match @usn5=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),#usn7=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})))"), + octest:ct_string("Return *,`6esn` =~Null As `4esn`,.e0 Starts With $@usn6 Starts With $7 As `5esn` Order By [`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]] In (`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(:#usn7:`5esn`)-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:#usn8:`1esn`$`7esn`) In {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]} Asc,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] Desc Skip $`3esn`[$_usn4..0Xa] Create (:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"}) Union Return *,`3esn`[12.0][$_usn3],.e1 =~_usn4 =~_usn4 As `3esn` Limit Count ( * ) In 0.12 With Distinct 010[12.0..`4esn`][``..Count(*)],$`7esn`[123456789..$1000][Count ( * )..$7],$`2esn` Contains Count(*) As `3esn` Skip `1esn` Where Null[..0];"), + octest:ct_string("Merge `1esn`=(`` {#usn7:#usn8 Is Not Null Is Not Null})<-[`5esn` *0xabc]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Unwind $1000[$@usn6][$_usn4] As `6esn` Detach Delete Null Ends With _usn4 Ends With 0.0 Union Detach Delete [0x0 Ends With 12.0 Ends With `5esn`,12e12 Ends With 0.0 Ends With usn1,00[1.e1..]] Ends With All(#usn8 In `7esn` Where $`3esn`[..0xabc][..$7]) Ends With Any(@usn6 In False Contains 0 Contains $`6esn` Where `6esn`[$1000][`3esn`]),@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])] Union Merge (((_usn4 :#usn7:`5esn`)<-[#usn8 *0x0..]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})<-[`2esn`?:usn1|`4esn` *00..0Xa]->(`6esn` :#usn8:`1esn`{`6esn`:usn1[..$@usn6][..00]})))"), + octest:ct_string("Unwind `6esn`[$`8esn`][9e1] As `7esn` Merge ({`1esn`:1.e1[`8esn`]})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`) On Create Set All(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True]).`1esn`? =$usn2[`2esn`..$`1esn`],{usn1:#usn8 =~.e0,_usn3:$_usn4 Is Null Is Null}.`1esn` =$`7esn`[.e1][12.0] Optional Match ((`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})),`5esn`=(((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Union Optional Match usn1=((`3esn` {usn2:$usn2[`4esn`..9e12]})<-[?{@usn5:_usn3 Ends With 7 Ends With $`1esn`}]->(_usn3 :_usn4)<-[_usn4?:`3esn`]-(:_usn3{_usn4:.e1[7..][9e0..]})),`7esn`=(usn1 :`7esn`) Return Distinct Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null),9e1[usn1..0x0][12.e12..12.0] Order By 00[12e12][$`7esn`] Ascending,@usn5[0..] Descending,Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Descending Limit 0.e0[$`4esn`..`2esn`] Merge `5esn`=(({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]->(#usn8 :``:usn2)-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}))"), + octest:ct_string("Remove Single(`3esn` In `2esn`[..01][..True] Where 9e12[9e1]).`2esn`?,`2esn`($7 In $usn1 In 999,'s_str' Contains 12.e12 Contains $`4esn`).`3esn`! Unwind 0X7[..$`8esn`] As `1esn` With Distinct `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] As `3esn`,usn1 Ends With 0.0 Order By $`3esn`[$_usn4..0Xa] Desc,$`1esn` Ends With 0X0123456789ABCDEF Ascending,$@usn5 Ends With @usn5 Ends With 0xabc Descending Where #usn8 =~0.e0;"), + octest:ct_string("Match _usn4=((:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})) Where 123456789[12] Merge #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}) On Match Set _usn3:`7esn` On Create Set Single(@usn6 In 010[`5esn`] Where 123.654).`6esn`? =0.e0[0X0123456789ABCDEF..],(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}).`3esn`? =999[..`1esn`][..07],[@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1].`6esn` =`7esn` Starts With @usn5 With Distinct 0Xa In #usn7 In 's_str',`4esn` Starts With 0e0 As `7esn` Skip (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`) Where .e0 Union Remove [0x0[0X7]].``!,(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}).`4esn`,{@usn5:01[`3esn`..][Count(*)..]}.`8esn`? Unwind 07[False] As @usn6 Union Remove [Null[..010][..1000]]._usn4!"), + octest:ct_string("Unwind #usn8 Is Null As `8esn` Merge ((_usn3 :usn2))"), + octest:ct_string("Merge ((:@usn6)) On Create Set {`3esn`:07[_usn3..][`6esn`..],@usn6:``[usn1][`5esn`]}.@usn6 =Count(*)[``..#usn8][`3esn`..0xabc] On Create Set #usn7+=`6esn`[$`8esn`][9e1] Detach Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),{@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Union Return 0X7[`2esn`..] Order By 0[@usn5..$#usn7] Ascending Remove `8esn`:@usn5,Single(#usn7 In 9e0[$1000] Where $1000 Is Not Null).`5esn` Match (@usn6 :`4esn`:`6esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`2esn`?:`6esn`|:#usn8{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`}]-(_usn3 {_usn3:0.12 Starts With $`8esn` Starts With @usn5}),usn1=((:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[`2esn`?:usn1|`4esn` *00..0Xa]->({usn2:_usn3[`2esn`..0X7][0.e0..$`3esn`]}));"), + octest:ct_string("Merge (#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) Return Distinct *,9e1[$``..][0.e0..] Order By Count ( * )[$`5esn`..][$7..] Desc"), + octest:ct_string("Unwind $12[$usn1..][Count(*)..] As usn2 Return $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Order By 1.e1 In 1000 In _usn3 Desc,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Descending,123.654 Is Null Is Null Asc Union Delete True Contains 's_str' Contains $usn1 Union Optional Match ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)) Where 010 Starts With 0 Starts With 0.0 With _usn4 Contains $_usn3 Contains .e1,$`4esn`['s_str'..] As `` Limit .e12[..999][..@usn5] Where .12 In `8esn` In $#usn8 Return 0x0[12e12..$`7esn`] As #usn7 Order By .e12[`2esn`..010] Desc,0xabc In 010 In #usn7 Ascending Skip $999 In 1e1"), + octest:ct_string("Remove [$``[7],`7esn` Ends With $7 Ends With $@usn5].`8esn` Union Return *,(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null As `3esn` Order By 1e1 Ends With $`2esn` Descending,$usn1 Starts With 0x0 Starts With #usn8 Descending Skip #usn8 Ends With $@usn5 Ends With $7 Limit $`5esn`[$`3esn`..] Unwind $usn1 Starts With usn1 Starts With True As `8esn` Detach Delete `1esn`[$@usn6][07],``[$`3esn`];"), + octest:ct_string("Return Distinct *,$`3esn`[.e1][_usn4] Order By 12[None(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)..`5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12])][`5esn`(`2esn`[..01][..True])..(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})<-[? *7..]-(#usn7 :``:usn2)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})] Descending With Distinct usn2 =~$`` =~$`8esn` As `2esn`,'s_str'[0x0..1.e1] As `6esn`,$`5esn`[\"d_str\"..] As `5esn` Limit 01[07..][1.e1..] Union All Remove None(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null).`3esn`? Unwind \"d_str\"[#usn8] As @usn5 Union All Create _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),(((`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})<-[:`2esn`|`4esn` *0X0123456789ABCDEF..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(@usn6 :`2esn`{`4esn`:$999[0Xa..][9e1..]}))) Merge #usn8=({#usn7:12e12 In $`5esn`}) On Create Set @usn6+=None(`3esn` In `2esn`[..01][..True] Where usn1 In ``)[None(usn2 In 7[12] Where 12e12 =~$`7esn`)..],Single(#usn7 In 9e1[$`1esn`..] Where Count ( * ) In 0.12).@usn6? =7[0e0..] On Create Set ``+=$``[7],[@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1|$`4esn` Contains .e0 Contains 0Xa].`` =$`7esn`[123456789..$1000][Count ( * )..$7];"), + octest:ct_string("Remove Extract(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..]|`2esn`[$@usn6..][Null..]).``,Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12).@usn6 Unwind #usn8(1000[12e12][`5esn`],9e1 Contains 12)[Extract(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0)..`1esn`(Distinct `3esn`[7..0.e0][0.0..123456789],`1esn` Starts With 0xabc Starts With $usn2)][Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 9e0[Count(*)..0.12][$`1esn`..12.0])..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12)] As @usn6 Remove [@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|$`3esn` In $usn2].usn1,[#usn8 In `7esn` Where $`5esn` Is Not Null Is Not Null].#usn8 Union Return Distinct $`3esn`[$_usn4..0Xa] As #usn7,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa) As `3esn`,$`5esn`[$`3esn`..] As `4esn` Limit $`` Is Not Null Is Not Null"), + octest:ct_string("Optional Match #usn7=((`7esn` :`1esn`:_usn4{@usn5:0x0[usn1..usn1],`6esn`:`4esn`[$_usn3..$`7esn`]})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->({`3esn`:`5esn` Contains $`5esn` Contains 0X7})-[`6esn` *00..0Xa{usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}]->(:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})) Where 999 Is Null Is Null Remove (:`5esn`{@usn6:1000[0e0][1e1]})-[:`` *0..01]-(:`8esn`{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]-(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}).@usn6!,[123456789 Contains 0.0 Contains $@usn6,usn1 =~$`7esn`,9e12[9e1]].`8esn`,Filter(@usn6 In 010[`5esn`] Where @usn6[9e12]).usn2 Union All Detach Delete $@usn5 Contains 's_str' Contains \"d_str\",010 Is Null,Count(*)[..@usn6][..`7esn`];"), + octest:ct_string("With *,$@usn5 In 12e12 In 01 Order By 0.12 Starts With $`8esn` Starts With @usn5 Ascending Limit $7 Starts With $`4esn` Return Distinct *,00 Ends With $`1esn` Ends With `7esn`,$@usn6 Is Not Null Is Not Null As `8esn` Order By (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Descending,[#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Descending Skip [usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Limit 12.e12 =~.0 =~usn1 Return Distinct (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] As #usn7,1e1 Is Null Is Null As usn2,{`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}[..`2esn`(Distinct 0 Ends With 12.e12 Ends With usn2)][..Filter(_usn4 In 12e12 In 123456789 Where .e1 In 123456789)] As usn1"), + octest:ct_string("Remove #usn8(1000[12e12][`5esn`],9e1 Contains 12).@usn5?,({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]->(:#usn8:`1esn`$`7esn`).`6esn`?,[#usn7 In 9e0[$1000] Where .e0 Is Null|Count(*)[9e12..12.0]].``! Return *,`2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] As `3esn`,``[$`1esn`] Skip None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] Limit True Ends With $_usn3 Ends With 12 Union Optional Match @usn5=(`7esn` :`3esn`{`2esn`:999[123.654..$usn2][Count ( * )..0x0]})-[`2esn`?:usn1|`4esn` *00..0Xa]-(`4esn` :`4esn`:`6esn`),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Where 12 Starts With #usn7 Starts With 0Xa Union With [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`)"), + octest:ct_string("With 12 Starts With True Starts With 12e12 As _usn4 Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc Union All Merge `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] On Match Set (`3esn` {usn2:$usn2[`4esn`..9e12]})<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1).#usn7! =_usn4 Starts With `` Starts With 1000,Extract(`3esn` In `2esn`[..01][..True] Where 0X7[..$`8esn`]|$#usn7 Starts With 01234567 Starts With $0).`5esn`! =@usn6(Count ( * ) In True In @usn5)[None(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)]"), + octest:ct_string("Remove Single(#usn7 In 9e1[$`1esn`..] Where `3esn`[7..0.e0][0.0..123456789]).`7esn`?,{usn1:$123456789 In 0.12}.`1esn`!,`3esn`(9e0[0X7..$`6esn`][123456789..0]).@usn5 With Distinct *,999 Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains {_usn3:123.654 In $`7esn`} As `6esn`,.e0 Is Not Null Is Not Null As `7esn` Order By _usn3 In $`8esn` In @usn6 Desc Where `8esn` Contains Count(*) Contains $#usn7 Merge `3esn`=(usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})-[@usn5?{#usn7:12e12 In $`5esn`}]->(`8esn` :`8esn`)"), + octest:ct_string("Match ({`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[:@usn6|:`7esn` *0..01{``:`1esn`[0.0..1e1][0x0..7],usn2:01[`3esn`..][Count(*)..]}]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[:@usn6|:`7esn` *0..01{``:`1esn`[0.0..1e1][0x0..7],usn2:01[`3esn`..][Count(*)..]}]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}),`4esn`=(:#usn7:`5esn`{`4esn`:$``[..\"d_str\"][..$#usn8]}) Remove None(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null).`5esn` Union All Optional Match ((({`7esn`:999 In 0e0})<-[#usn7 *01..123456789]->({`2esn`:`7esn` In 010 In usn1,`8esn`:$0[123.654..0.e0]})<-[? *7..]-(usn1 {@usn5:_usn4[$usn1..01234567][123.654..`5esn`],`5esn`:1.e1 =~$_usn4}))) With Distinct *,0Xa[Count(*)..],[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,0xabc In .12 In 0Xa Descending,.0 Contains .e12 Contains 0 Desc Skip All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1)[None(@usn6 In 010[`5esn`] Where 00[1.e1..])..[$12[$usn1..][Count(*)..],$@usn5 Contains 's_str' Contains \"d_str\"]][Extract(`3esn` In 9e1 Contains $999 Where 0e0 Starts With 999 Starts With `2esn`|9e1 Ends With Count(*) Ends With $7).._usn4(`1esn`[0.12..][@usn6..],#usn8 =~0.e0)] Limit `1esn` Starts With 9e1 Create ``=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})"), + octest:ct_string("Unwind .e1 In 123456789 As `4esn` Unwind .e1[7..][9e0..] As `4esn` With *,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``) Is Null Is Null"), + octest:ct_string("Return Distinct *,[`3esn` In `2esn`[..01][..True] Where 0.e0[1000.._usn4][.e1..usn1]|`5esn`[..123.654][...e12]] As `6esn`,$#usn8 Starts With .e12 Starts With 1.e1 As `8esn` Return _usn4 Is Null Is Null As @usn5,.e12[$@usn6..00][01234567.._usn3],Extract(@usn5 In 9e0 Ends With $#usn8 Where $`8esn`[123456789..][$@usn5..]) =~None(#usn7 In True Contains 's_str' Contains $usn1 Where 's_str' Starts With 9e0 Starts With usn2) As @usn5 Skip 9e12 Ends With 12e12 Ends With 12 Limit (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Union Unwind 07 =~`4esn` =~$`1esn` As _usn3 Create `4esn`=(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})<-[`7esn`:`4esn`|@usn5 *12..]->({`4esn`:.e1[..$`3esn`][..01]}),@usn5=(_usn3 :`7esn`)"), + octest:ct_string("Unwind _usn3 =~00 As `4esn` With Distinct #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Skip `8esn`[$12][123456789] Limit Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)[(`` :`5esn`{@usn5:123456789 =~@usn6})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`7esn` {``:9e1 Contains $999,``:$usn2[True..0X0123456789ABCDEF]}).._usn3(Distinct 0x0 Contains $`6esn` Contains `4esn`,usn2[1.e1])][(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})..[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|9e1 Is Null]]"), + octest:ct_string("Create `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})),usn2=(#usn7 {_usn4:1.e1[`8esn`]})<-[usn2{`2esn`:$12 Starts With $usn1}]->(:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]});"), + octest:ct_string("Optional Match ((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(:`8esn`{``:$`1esn` =~999})) Where @usn6[9e12] Union All Unwind #usn7[..07] As usn1;"), + octest:ct_string("Optional Match @usn6=(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-(:`5esn`{@usn6:1000[0e0][1e1]})<-[:`8esn`]-(:@usn6) Where .e1[..$`3esn`][..01] Delete 9e0[Count(*)..0.12][$`1esn`..12.0],`7esn` Is Null Unwind _usn3[`5esn`..][usn2..] As #usn7 Union All Return Distinct *,`4esn` Ends With 12 Ends With .12 As usn2 Skip `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] Limit Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``) In Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1) Detach Delete Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null) Is Not Null Is Not Null,010 Starts With $`` Starts With 0e0 Union All Unwind #usn7[..07] As usn1;"), + octest:ct_string("Unwind `7esn`[1e1] As `6esn` Match ((@usn5 )),(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-({`1esn`:#usn7[0]}) Return Distinct *,#usn8 =~.e0,Count ( * ) Ends With $123456789 Skip $#usn8[True][9e0] Union All Optional Match usn1=((:@usn5{@usn5:$12[9e0..$999]})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})) Return @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1|$@usn5 In $`6esn` In 12e12) Ends With (:`7esn`{#usn7:0 =~1.e1 =~$#usn7})<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}),`1esn`($`4esn`[`4esn`][Count(*)],`2esn` Starts With $`7esn`) =~Extract(@usn5 In 9e0 Ends With $#usn8 Where .e0 Starts With $@usn6 Starts With $7) =~{`3esn`:_usn3[`2esn`..0X7][0.e0..$`3esn`]}"), + octest:ct_string("Unwind Any(@usn6 In False Contains 0 Contains $`6esn` Where 0.0 Is Null Is Null) =~{``:$`2esn`[0..123456789][``..`1esn`]} As `` Delete $`3esn`[.e1][_usn4],None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Union Delete 123.654 In $`7esn` Return Distinct *,12.e12 Contains `6esn`,12[``...e12] As `6esn` Order By 's_str' Is Not Null Descending,123.654[`4esn`..12] Asc,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) Ascending Union Unwind `4esn` Starts With 0e0 As `1esn` Remove {_usn3:_usn4 Is Null Is Null}.``,``(@usn6[`1esn`..]).`7esn`! Return Distinct 1.e1[..123456789][..999],_usn3[12.e12..][`5esn`..] As @usn6,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `5esn` Order By 123456789 Contains 0Xa Descending,[@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00|`5esn`[$`7esn`..$@usn5]] Is Not Null Is Not Null Desc,00[False..0e0] Ascending"), + octest:ct_string("Return 010 Starts With $`` Starts With 0e0 As @usn5"), + octest:ct_string("With *,{`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Order By [0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]][{usn2:$@usn6 Ends With `1esn`,_usn3:`7esn`}..][{@usn6:1e1 Is Not Null Is Not Null,`8esn`:$`1esn` Starts With $`4esn` Starts With $_usn3}..] Desc,0.0[usn1..] Desc Delete 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2],$`3esn` Ends With 1000,[$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..] Union All Return Distinct 12.e12 =~0X0123456789ABCDEF =~1.e1 As `6esn`,0.e0[..$7] As _usn3,usn1 Ends With 0.0 Order By None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,.e0 Starts With $@usn6 Starts With $7 Descending Limit $@usn6[..12] Merge `3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) On Match Set `1esn` =[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]) Detach Delete 999 Is Not Null Is Not Null"), + octest:ct_string("With *,$`7esn`[$_usn4][.e0],`5esn` Contains `1esn` Contains usn1 As `2esn` Order By `4esn` Contains 9e0 Desc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Is Not Null Asc Skip [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] Limit $@usn6 =~#usn7 =~True Where 12.0 Is Null Remove Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 7[0e0..]).`8esn`!,(_usn4 :`1esn`:_usn4)<-[?:`6esn`|:#usn8 *00..0Xa]-(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]}).@usn5! Match `4esn`=((@usn5 {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})),_usn3=(`8esn` :`2esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`6esn`]->({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null});"), + octest:ct_string("Merge #usn8=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}) On Create Set Filter(usn2 In 7[12] Where $`6esn`[1.e1][$_usn3]).``? =0Xa[$`8esn`..][$_usn4..],_usn4+=0X0123456789ABCDEF In $7 On Match Set #usn7 =9e1[`1esn`..0][999..1e1],All(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True]).`1esn`? =$usn2[`2esn`..$`1esn`],Single(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1).#usn7 =All(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null) Detach Delete $`5esn` Starts With 0.0 Starts With .e0,Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)[(`` :`5esn`{@usn5:123456789 =~@usn6})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`7esn` {``:9e1 Contains $999,``:$usn2[True..0X0123456789ABCDEF]}).._usn3(Distinct 0x0 Contains $`6esn` Contains `4esn`,usn2[1.e1])][(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})..[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|9e1 Is Null]],usn1[False..`5esn`][$1000..$12] Union Remove Extract(_usn4 In 12e12 In 123456789 Where .e1 Starts With 12.e12 Starts With `2esn`|$@usn5 Is Null Is Null).@usn5!,Extract(@usn6 In 010[`5esn`] Where $0[0Xa..$123456789]|#usn7[0.e0..]['s_str'..]).`8esn`?,(:#usn8:`1esn`$`7esn`)-[?:@usn6|:`7esn` *0X0123456789ABCDEF..{_usn4:0x0[12e12..$`7esn`]}]->({@usn5:Count(*) Is Not Null Is Not Null}).`5esn`?"), + octest:ct_string("Create ((({`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[`3esn` *..07{usn2:True Contains 0x0 Contains $_usn3}]-({``:``[$`3esn`],#usn8:$@usn6[00]}))),`5esn`=(({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Optional Match `3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))),usn2=(:#usn8:`1esn`$`7esn`) Where 123456789 Is Null Is Null Merge `8esn`=(((#usn8 :``:usn2)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[@usn5? *0xabc{`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}]->(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}))) On Match Set Any(#usn8 In `7esn` Where $`3esn` Contains $`1esn`).`8esn`? =0x0 Contains $`6esn` Contains `4esn`,Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where False[$usn1][0x0]|@usn5[0.0..0X7]).usn2! =Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1),`3esn` =12.e12[..$999][..07] On Match Set usn1 =_usn4 Is Not Null,`3esn` =usn1[...e12][..1.e1] Union Remove Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $123456789 In 0.12).#usn8?,[`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null|$#usn7 Starts With 01234567 Starts With $0].`7esn`,(`4esn` :@usn6)-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4).`4esn`"), + octest:ct_string("With Distinct *,{@usn6:$`3esn`[.e1][_usn4]}[`8esn`(Distinct $``[True])..] As #usn8,999[12e12..$_usn4] As usn2 Where `6esn`[$1000][`3esn`] Detach Delete `1esn` Starts With 0X7 Starts With \"d_str\",\"d_str\" Is Not Null Is Not Null,_usn4 Starts With `` Starts With 1000 Unwind $`6esn`[0e0..][010..] As `7esn` Union Detach Delete Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null) Is Not Null Is Not Null,010 Starts With $`` Starts With 0e0 Return 12e12[0x0..12.e12] As `1esn`,.e1[7..][9e0..] As `4esn`,$#usn8 Starts With .e12 Starts With 1.e1 As `8esn` Order By $`5esn` In `2esn` In `2esn` Asc,0.0[..Count ( * )][..`1esn`] Ascending,[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )] Ascending Union Detach Delete [#usn8 In `7esn` Where .e0 Is Null Is Null] Ends With {usn1:$`4esn`[`6esn`..$12],`4esn`:usn1 Contains 010} Ends With (:``:usn2{``:True[$_usn3..]})<-[`2esn`? *01..123456789]-(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(`1esn` $`4esn`),Extract(`6esn` In $`6esn`[``..][Count(*)..] Where 1.e1 Ends With $_usn4 Ends With #usn7|0xabc =~$@usn5) Contains {`5esn`:1.e1[`8esn`],`1esn`:.e0} Contains {usn1:$123456789 In 0.12} Match _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Where 010 Is Null Is Null Remove `3esn`(Distinct 123.654 Starts With 0X7 Starts With $`4esn`).``!,Any(_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1).`2esn`,Filter(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]).@usn5?"), + octest:ct_string("Remove (:`8esn`{@usn5:usn2 Ends With .e1 Ends With $`5esn`})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`).`8esn`!,{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null}.``,{``:0Xa =~False =~@usn5,`6esn`:$`2esn` Starts With `4esn` Starts With $usn1}.@usn5 Unwind [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] As usn2 Match #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}),((_usn3 :usn2)) Union Delete $`6esn` Is Not Null Is Not Null,@usn5 Starts With 9e0 Starts With 010 Return Extract(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0),None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1) Order By 123456789 =~$999 Asc Skip $`4esn`[..$`8esn`][..Null] Unwind {``:0.0 =~9e0 =~$0} Contains [@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn2..][$123456789..]|0Xa[Count(*)..]] As ``"), + octest:ct_string("Remove [#usn7 In True Contains 's_str' Contains $usn1 Where $#usn7[..$`4esn`][..01]|1.e1 Is Null Is Null].#usn7?,(#usn8 :`2esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4)-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}).`8esn`!,`1esn`(Distinct `3esn`[7..0.e0][0.0..123456789],`1esn` Starts With 0xabc Starts With $usn2)._usn4!;"), + octest:ct_string("Return *,None(#usn8 In `7esn` Where 9e1 Starts With Count ( * )) In (:`2esn`{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`})-[?{`5esn`:$`2esn`[.0..][0.0..]}]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})-[`` *1000..0X0123456789ABCDEF]->(:_usn4{`8esn`:01234567[Null..$_usn3]}),Extract(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0) As #usn8 Order By .e12 In $`5esn` In 0X7 Descending,$usn2[`2esn`..$`1esn`] Desc Limit $123456789[0.12..] Delete usn2 Is Not Null,{`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..] Union Optional Match usn2=((usn1 {_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})),`2esn`=(((_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})-[`4esn`?*..{``:`` =~.12,usn1:123.654 Is Not Null}]-(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->({usn2:@usn6 In .12 In `3esn`,`1esn`:usn2[12e12..]['s_str'..]}))) Where 00 Ends With `` Ends With 12.e12 Remove `5esn`:_usn4 Union With Distinct Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],010 Is Null Is Null As #usn8,All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] As `8esn` Order By $_usn3[_usn4..] Asc,0.12 Is Null Is Null Desc,`6esn` Ends With _usn4 Ends With False Ascending Skip 1.e1 =~.12 Limit `1esn`[$@usn6][07] Create ``=(`3esn` :_usn4),((_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`})-[?:`2esn`|`4esn`{@usn5:0.e0}]-(`1esn` $`4esn`))"), + octest:ct_string("Delete [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[$usn1..][Count(*)..]|0e0 =~7 =~12.0] Is Null Is Null,$7[999][usn1] Optional Match (({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn4?:@usn6|:`7esn`]-({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn3?:_usn3|:`7esn`]->(`3esn` {`8esn`:`7esn` In 010 In usn1})) Return _usn4[@usn6..][$0..],[$usn2 =~1.e1 =~usn1,$usn1 Starts With usn1 Starts With True,$1000 Starts With $`3esn` Starts With 0.e0] In (`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]-(`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]}) In None(`3esn` In 9e1 Contains $999 Where 12.0 Starts With .12 Starts With `6esn`),@usn5 Contains #usn8 Contains 12.0 As `4esn` Limit Any(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null) Is Null Union With 9e1[usn1..0x0][12.e12..12.0] Order By $@usn6[$0..9e12][.e12..Null] Desc,.e0 Is Not Null Is Not Null Desc,usn2[..$usn1][..$#usn8] Asc Skip $7 Ends With Count ( * ) Where 's_str' Starts With 9e0 Starts With usn2 Unwind `` Is Not Null Is Not Null As _usn4 Optional Match (usn2 :``:usn2) Where @usn6 Is Not Null Is Not Null"), + octest:ct_string("Match ((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(:`8esn`{``:$`1esn` =~999})),`8esn`=(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`)-[?:usn2{#usn7:0 =~1.e1 =~$#usn7}]->(`8esn` $12) Create ((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})),(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Unwind $_usn3 Is Not Null Is Not Null As `3esn` Union Unwind 123.654 Contains @usn5 Contains $`5esn` As `6esn` Detach Delete 123.654[..0.e0][..'s_str']"), + octest:ct_string("Unwind 12.e12 Starts With 1000 As `` Union All Merge (_usn3 :`7esn`)-[*..{``:.e1 Starts With 12.e12 Starts With `2esn`}]-(#usn7 :_usn3) On Create Set Extract(`3esn` In `2esn`[..01][..True] Where 00[01234567][False]|12[$`5esn`..][False..]).`2esn`! =12.e12 Ends With $``"), + octest:ct_string("Optional Match ``=(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Remove Any(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]).@usn6?,@usn5(Distinct Count ( * ) Ends With $123456789).`6esn`? Unwind 00[False..0e0] As `6esn`"), + octest:ct_string("Create `7esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)) Delete $_usn4[9e0..][$1000..] Union All Return 123456789 =~$999 Order By $7[01..$123456789][#usn7..12.0] Descending,.12[..usn2][..12e12] Descending Merge `8esn`=((#usn8 :_usn3)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`))"), + octest:ct_string("Delete $#usn7[..$`4esn`][..01],Filter(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) =~{#usn7:1000[12e12][`5esn`]} Union All Unwind $#usn7 Ends With 's_str' Ends With 0X7 As usn1 Remove All(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7).`2esn`!,(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[ *01234567..]->(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`}).usn2,@usn6:_usn4 Unwind $@usn6 Ends With 123456789 Ends With 12.0 As _usn3 Union All With *,$`5esn` Is Not Null,usn2 Contains $0 Contains .0 Order By 12.0 Ends With `2esn` Ascending,01234567[$0..][0..] Descending,$12 In True In 1.e1 Desc Skip 9e0[Count(*)..0.12][$`1esn`..12.0] Where `7esn` Return *,0e0 Ends With 07 Ends With $`8esn` As `6esn` Order By {`4esn`:999 In 0e0,`6esn`:0.e0['s_str'..][01234567..]} Contains Single(`8esn` In 123456789 =~@usn6 Where 12.e12 Ends With `` Ends With 0) Ascending,$`4esn` In 1.e1 In #usn7 Desc Skip 0X0123456789ABCDEF In $usn2 In `4esn` Limit Extract(`3esn` In `2esn`[..01][..True] Where 0.0 Is Null Is Null|$usn2[0.e0])[{usn2:@usn5 Is Null,`8esn`:$@usn6 Ends With 123456789 Ends With 12.0}..]"), + octest:ct_string("With 01234567 Starts With True Starts With $999 As `6esn`,usn2[..$usn1][..$#usn8] As `8esn` Limit $`5esn` Is Not Null Is Not Null Where usn1 Starts With 00 Create `8esn`=(((#usn7 {`6esn`:$`2esn` Contains Count(*)})<-[#usn8{`5esn`:$@usn5 In 12e12 In 01}]->(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}))) Union All With *,#usn7[``] As usn1,None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6) =~Single(`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8) =~(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]}) Order By $@usn6 In @usn6 In 1e1 Desc,.e1[..$`3esn`][..01] Desc Limit _usn3 Is Null Is Null Merge ((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)) Return Distinct *,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``) Is Null Is Null Order By Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Ascending,$@usn5[..$#usn7] Descending,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip 9e1 Starts With Count ( * ) Limit {`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..] Union All With `1esn`[`3esn`..],(`3esn` {usn2:00[False..0e0]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null})<-[@usn6?:`8esn` *0..01]->(`5esn` :`4esn`:`6esn`)[[12.0 Starts With $`2esn` Starts With .e1]..] Skip 07 In 0Xa In usn1 Limit 010 Is Null Remove {_usn3:_usn4 Is Null Is Null}.``,(`1esn` )<-[@usn5?{`7esn`:0.0 Contains #usn7,`6esn`:@usn5[0.0..0X7]}]->(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})<-[usn2 *0X0123456789ABCDEF..]->(usn2 :`7esn`).#usn7?,[$#usn8[@usn6..]].`6esn`? Merge _usn3=((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7 *01..123456789]->(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})) On Create Set (:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(usn1 :`7esn`).`4esn` =1.e1[$`3esn`][0Xa],(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})<-[`5esn`?:@usn5|_usn3{``:0.0 =~9e0 =~$0}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]}).usn2 =$`4esn` Starts With 0 Starts With `7esn`,usn2+=`2esn`[..01][..True]"), + octest:ct_string("With usn2 Starts With .0 Skip \"d_str\" In @usn5 In $@usn5 Limit _usn4 Starts With 1000 Starts With $usn2 Where _usn4 Is Not Null Is Not Null Merge (#usn7 {#usn7:1.e1 Starts With 9e12})<-[`5esn`?:@usn5|_usn3{``:0.0 =~9e0 =~$0}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]})-[@usn5?{#usn7:12e12 In $`5esn`}]->(`8esn` :`8esn`) On Match Set #usn7 =[$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1],@usn6+=0.12[$0..$usn2] Union Delete $#usn7[..$`4esn`][..01],Filter(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) =~{#usn7:1000[12e12][`5esn`]} Union All Return Distinct _usn4 Contains $_usn3 Contains .e1,$`4esn`['s_str'..] As `` Order By $usn2 =~9e1 Descending,(:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc,1.e1 =~$_usn4 Desc Skip 12[0e0] Unwind $#usn8[@usn6..] As usn2;"), + octest:ct_string("Match ((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}));"), + octest:ct_string("With *,'s_str'[0x0..1.e1] As `6esn` Where 07[_usn3..][`6esn`..]"), + octest:ct_string("Unwind usn1 Starts With 00 As _usn3 Union Delete 12.e12 Contains `6esn`,$1000 Is Not Null,`1esn`[$@usn6][07] Optional Match usn1=(({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) Unwind 12 Is Not Null As `6esn`;"), + octest:ct_string("Unwind #usn7[0.12..] As `8esn`;"), + octest:ct_string("With 0.0 Contains #usn7 As #usn8,Extract(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|.e1[usn2..$_usn3][.0..$#usn7]) Order By Any(`6esn` In $`6esn`[``..][Count(*)..] Where 1e1 Ends With $`7esn` Ends With .0) Is Not Null Descending,#usn8 Ends With $@usn5 Ends With $7 Desc,usn2[12.e12..] Asc Skip 12.0[$1000..][#usn7..] Limit $`2esn`[0..123456789][``..`1esn`] Optional Match (_usn3 :`5esn`{#usn8:0xabc In 010 In #usn7}),`3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) Where $#usn7[..9e0][..123.654] With Distinct *,01[`8esn`..9e12][.12..0] As @usn6,$`1esn` =~1e1 As `4esn` Order By 9e1 =~$_usn4 =~1.e1 Desc,$@usn5[$12...e12][0X0123456789ABCDEF..$999] Asc,(:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Ascending Skip $1000 Is Not Null Union All Match ((`4esn` :`4esn`:`6esn`)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Where usn2 Contains $0 Contains .0 Merge ((`5esn` :@usn5{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) On Match Set `` =Null[..010][..1000] On Create Set #usn8 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..])"), + octest:ct_string("Return $#usn8 Starts With .e12 Starts With 1.e1,999 Starts With `4esn` Starts With 1000 Order By [$`1esn`[``][07],$`4esn`[`6esn`..$12],False[$usn1][0x0]] =~[.e12 Is Null Is Null] Descending Skip All(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)[Extract(`3esn` In `2esn`[..01][..True] Where #usn7 Starts With $123456789 Starts With 12e12)][Extract(_usn4 In 12e12 In 123456789 Where .e1 Starts With 12.e12 Starts With `2esn`|$@usn5 Is Null Is Null)] Return Distinct `1esn` Starts With 0X7 Starts With \"d_str\",$`4esn`[..$`8esn`][..Null] As #usn7,None(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With Filter(`5esn` In 0X7 In $#usn7 Where 0x0[0X7]) Ends With Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) As `4esn` Order By [123456789 =~12 =~'s_str',`2esn` Starts With 12.e12 Starts With 12.0,$`8esn`[..True][.._usn4]] Contains Filter(#usn7 In 9e0[$1000] Where `7esn`) Asc,None(#usn8 In `7esn` Where $`3esn` Contains $`1esn`) Starts With #usn8(0x0[Count(*)..@usn6][Count(*)..0Xa]) Ascending,_usn4 Contains $_usn3 Contains .e1 Asc Unwind $@usn6 In @usn6 In 1e1 As `5esn`"), + octest:ct_string("With Distinct #usn8[`6esn`..][$``..] As `2esn` Match (`1esn` {#usn7:$`1esn` Ends With 0X0123456789ABCDEF,`3esn`:.12 Starts With _usn3 Starts With $``}) Where True Starts With Null Remove (:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}).`6esn`!,[01 Is Null,9e1[..123456789],010 Starts With $`` Starts With 0e0].`6esn`?,(:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[usn2 *0X0123456789ABCDEF..]->(usn2 :`7esn`)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}).`5esn`? Union All Return Distinct .0[$``..0X7],(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})[..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})] As #usn8,01234567[$`2esn`][0Xa] As `5esn` Order By True[0xabc..01234567][$`8esn`..$@usn6] Descending,(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..] Desc,(:`2esn`)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})-[@usn6? *0X0123456789ABCDEF..{``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6}]-(`5esn` :@usn5) Is Null Is Null Ascending Skip Filter(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) =~{#usn7:1000[12e12][`5esn`]}"), + octest:ct_string("Optional Match ((({`7esn`:999 In 0e0})<-[#usn7 *01..123456789]->({`2esn`:`7esn` In 010 In usn1,`8esn`:$0[123.654..0.e0]})<-[? *7..]-(usn1 {@usn5:_usn4[$usn1..01234567][123.654..`5esn`],`5esn`:1.e1 =~$_usn4}))) With Distinct *,0Xa[Count(*)..],[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,0xabc In .12 In 0Xa Descending,.0 Contains .e12 Contains 0 Desc Skip All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1)[None(@usn6 In 010[`5esn`] Where 00[1.e1..])..[$12[$usn1..][Count(*)..],$@usn5 Contains 's_str' Contains \"d_str\"]][Extract(`3esn` In 9e1 Contains $999 Where 0e0 Starts With 999 Starts With `2esn`|9e1 Ends With Count(*) Ends With $7).._usn4(`1esn`[0.12..][@usn6..],#usn8 =~0.e0)] Limit `1esn` Starts With 9e1 Create ``=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}) Union Create `2esn`=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}),(({@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`})<-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->({usn2:$`2esn` Is Null,#usn8:.0 Is Null Is Null})) Union Merge `8esn`=(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})"), + octest:ct_string("Unwind {`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`} Contains Filter(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5) Contains Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) As `5esn` Union Delete $#usn7[..$`4esn`][..01];"), + octest:ct_string("Unwind $7 In $usn1 In 999 As `2esn` Create (`3esn` )-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]})"), + octest:ct_string("Remove Any(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]).`4esn`! Optional Match (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Where $`7esn`[.e1][12.0] Union All Unwind _usn3 In $`8esn` In @usn6 As #usn7 Union Delete 123.654 In $`7esn` Return Distinct *,12.e12 Contains `6esn`,12[``...e12] As `6esn` Order By 's_str' Is Not Null Descending,123.654[`4esn`..12] Asc,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) Ascending"), + octest:ct_string("Match #usn8=((`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)) Union Remove None(@usn5 In 's_str'[0..] Where 01234567[\"d_str\"..`4esn`])._usn4! Union All Merge ((`2esn` :_usn3)-[? *0xabc{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})) With Distinct *,{@usn6:$`3esn`[.e1][_usn4]}[`8esn`(Distinct $``[True])..] As #usn8,999[12e12..$_usn4] As usn2 Where `6esn`[$1000][`3esn`] Unwind `6esn`[$`8esn`][9e1] As `7esn`"), + octest:ct_string("Remove [7 =~`4esn`,`2esn` Starts With $`7esn`].`8esn`! Delete `6esn` Starts With `6esn` Union All Create @usn6=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}),((:#usn8:`1esn`$`7esn`)-[`6esn`?:usn2]-(@usn6 {@usn6:0e0 =~7 =~12.0})-[`7esn`:`4esn`|@usn5 *12..]-(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})) With Distinct #usn8 Is Not Null,.e0[..9e12][..07] Skip usn1 Limit 1000 Contains [True Contains 0x0 Contains $_usn3,_usn3 Contains 9e12 Contains `8esn`] Contains [12.0 In 123.654 In _usn4] Where $``[..\"d_str\"][..$#usn8] Union Unwind 0x0[12e12..$`7esn`] As `7esn`"), + octest:ct_string("Return Distinct #usn8[`6esn`..][$``..] As `2esn` Merge `6esn`=(((_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})-[``?:_usn4]-(_usn4 :_usn4))) On Match Set Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]|$``[..\"d_str\"][..$#usn8]).@usn6 =[$usn1[`2esn`..][$`2esn`..]][(`3esn` :usn2)-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})..`2esn`(Distinct $@usn6 Is Not Null Is Not Null,Count ( * ) Ends With $123456789)],None(#usn8 In `7esn` Where ``[7.._usn3]).@usn6? =`6esn`,Any(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])._usn4! =`` Is Null On Match Set `4esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1 =(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Create ``=((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)),``=(@usn5 :`6esn`:_usn3{`7esn`:`8esn`[..$#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Union Delete 12.e12 Ends With $``,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null,{#usn7:usn1 In ``}[None(`3esn` In `2esn`[..01][..True])..Extract(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..])] Union All Delete 's_str' Starts With 1e1 Starts With $0 Return 010 Starts With $`` Starts With 0e0 As @usn5 Order By 123456789 =~True =~#usn7 Asc,True[..#usn8] Ascending Skip Extract(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0) Ends With `2esn`(Distinct 123.654[`4esn`..12],_usn3[`2esn`..0X7][0.e0..$`3esn`]) Ends With [`5esn` In 0X7 In $#usn7 Where 12e12 =~1e1|0e0 =~0Xa =~$999] Limit #usn7 =~9e12;"), + octest:ct_string("Match @usn5=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),({`4esn`:.e1[..$`3esn`][..01]})-[`5esn`:#usn7|@usn5]-(`5esn` :`4esn`:`6esn`) Delete 7 Is Not Null Union All Create ((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) Unwind 123.654 Contains @usn5 Contains $`5esn` As `6esn` Union Remove All(#usn8 In `7esn`).`1esn` With Distinct *,999 Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains {_usn3:123.654 In $`7esn`} As `6esn`,.e0 Is Not Null Is Not Null As `7esn` Order By _usn3 In $`8esn` In @usn6 Desc Return Distinct [$#usn7 Ends With 's_str' Ends With 0X7] Starts With (usn1 :@usn6)<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}) Starts With [`5esn` In `7esn`[$usn2..][$123456789..] Where $`1esn` Starts With Count(*)] As #usn8,0.12 Is Null Is Null As _usn3,_usn4[0] As `2esn` Skip `1esn`[$@usn6][07]"), + octest:ct_string("Detach Delete `1esn` Starts With 0X7 Starts With \"d_str\",\"d_str\" Is Not Null Is Not Null,_usn4 Starts With `` Starts With 1000 Union All Remove Single(`5esn` In 0X7 In $#usn7 Where 123456789 =~$999).`5esn`,[`6esn` In $`6esn`[``..][Count(*)..]|.e1[12.0..]]._usn4? Union Detach Delete `4esn`[..$@usn6][..@usn6],$_usn4 Is Null Is Null;"), + octest:ct_string("Remove count(@usn5[$`6esn`..][$999..],_usn4[0]).`7esn`,_usn4(.12[0X7..][12e12..],9e1).#usn7! Remove {@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}.`8esn`!,{`4esn`:12[$`5esn`..][False..]}.``? Union All With Distinct *,[1000[0e0][1e1],12.0 Is Null Is Null] Is Not Null Is Not Null Order By $`5esn`[$`6esn`][`2esn`] Descending,`6esn`[..$`4esn`] Descending,12 Starts With $123456789 Starts With .e12 Ascending Limit [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Detach Delete usn1 Ends With 0.0,$999 In 1e1,`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..]"), + octest:ct_string("Merge (((`6esn` :#usn7:`5esn`)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(_usn4 :#usn7:`5esn`))) Remove [`3esn` In `2esn`[..01][..True] Where 00[01234567][False]].`7esn`!,Any(usn2 In False[$usn1][0x0] Where 12.e12 =~0X0123456789ABCDEF =~1.e1)._usn3,Extract(#usn7 In 9e1[$`1esn`..] Where $`7esn`[$_usn4][.e0]|$`3esn`[..$1000][..$123456789]).`1esn`?"), + octest:ct_string("Merge (({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})) Union Remove None(@usn6 In False Contains 0 Contains $`6esn` Where #usn8 Is Not Null)._usn4!,Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc).`1esn`!,{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}.``? Remove Single(#usn7 In 9e1[$`1esn`..] Where ``[$`3esn`]).#usn7!,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3])._usn3?,{usn2:`2esn`[..$_usn3]}.usn2? Optional Match (`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]->(_usn4 {_usn4:Null[..010][..1000],_usn3:.0 Is Null Is Null}) Where 00 Ends With `` Ends With 12.e12"), + octest:ct_string("Merge `7esn`=({@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`})<-[`5esn` *0xabc]->(_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]}) Union All Unwind `8esn` Contains Count(*) Contains $#usn7 As _usn4 With {``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}[..Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)][..Any(#usn7 In $999 In 1e1 Where 07 In `6esn`)] As usn1,`8esn` Is Not Null Is Not Null As `4esn` Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Limit Any(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]) =~[9e12 =~@usn6,01 Ends With 0Xa Ends With 0X7,$@usn6[$0..9e12][.e12..Null]] Union All Create (((usn2 :#usn8:`1esn`)-[`5esn`?:`7esn`|:`2esn` *0x0..]->(`8esn` :`8esn`)<-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(#usn7 :`2esn`))),((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) Unwind 9e1 =~123456789 =~999 As ``"), + octest:ct_string("Delete $usn1[1000][.12] Union With Distinct $usn2[`5esn`..][01234567..] As #usn8 Order By .0 Ends With 999 Ends With $`5esn` Ascending,01234567 In $@usn6 In $#usn7 Desc Where .e0[01234567..$`8esn`] Remove Any(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]).`4esn`! Match (((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2)))"), + octest:ct_string("Remove {`8esn`:usn2 =~7,`5esn`:.e0[01234567..$`8esn`]}.#usn8 Remove #usn7:`1esn`:_usn4,[`4esn` Ends With 12 Ends With .12,`5esn` Contains `1esn` Contains usn1,$`2esn` =~9e12].@usn5! Union All With 0.e0 Is Not Null Is Not Null As _usn4,0X0123456789ABCDEF In $usn2 In `4esn`,$usn1 Is Not Null Is Not Null Order By 01234567[$@usn6..$#usn7][123456789..12e12] Desc,Single(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1)[Filter(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])..][Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.0 In 123.654 In _usn4)..] Ascending Skip Null[..0] Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]) Where 9e12 Starts With 1e1 Unwind `3esn`(Distinct $123456789[...12][..@usn6])[{usn2:$`2esn` Is Null,#usn8:.0 Is Null Is Null}][#usn7(Distinct $@usn6 Is Not Null Is Not Null,``[7.._usn3])] As `` Create (`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}),(`8esn` {usn1:0e0 =~7 =~12.0,`7esn`:usn2 Starts With .0})<-[:_usn4]->(_usn4 {usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Union All Remove {``:0Xa =~False =~@usn5,`6esn`:$`2esn` Starts With `4esn` Starts With $usn1}.@usn5,All(#usn7 In 9e0[$1000] Where 12e12 Starts With $0 Starts With $`2esn`).#usn7?"), + octest:ct_string("Unwind 0.12[$0..$usn2] As `4esn` Union Remove `5esn`:#usn8:`1esn`,[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|.e0 Contains $#usn8].@usn6!,[123.654 Starts With 0X7 Starts With $`4esn`,`6esn` Is Null Is Null].@usn5 Optional Match `6esn`=(((:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({#usn8:False Starts With 0X7 Starts With 01234567})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5))) With Distinct 0Xa Ends With $`3esn` Ends With $1000,Extract(@usn5 In 's_str'[0..] Where 12e12 Is Not Null) =~[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]],$#usn8[@usn6..] As `7esn` Order By (`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Desc,$usn1[Null][`8esn`] Desc,$`5esn` In `2esn` In `2esn` Asc Limit [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Ends With `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Ends With [$`1esn`[``][07],`7esn`] Where _usn3[$`1esn`..] Union All Unwind [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] As `4esn` Return #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Order By `6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] Desc Limit $_usn4[$_usn4] Remove None(`5esn` In 0X7 In $#usn7 Where usn1 =~$`7esn`).`3esn`!,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $123456789 In 0.12)._usn3?,(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]}).`6esn`?"), + octest:ct_string("Unwind .e0 Ends With $123456789 Ends With 0xabc As #usn7 Match `3esn`=(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0}),usn1=(({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) Where \"d_str\"[True..]"), + octest:ct_string("Return Distinct `1esn`(.0 Starts With `1esn`,01[`3esn`..][Count(*)..]) In [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] As `4esn`,`7esn`[$usn1..]['s_str'..] Detach Delete 00[12e12][$`7esn`],\"d_str\" Is Null Is Null,usn2[1.e1] Delete {``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]}[#usn7(Distinct $`1esn`[``][07])..None(@usn6 In 010[`5esn`] Where $`3esn` Ends With 01234567)]"), + octest:ct_string("Return 0x0[0.0] As ``,Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) Contains [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where .0 Is Null Is Null|`3esn`[0x0..]] Contains [999[12.e12],#usn8 Is Null Is Null,1.e1 =~$_usn4] As `1esn` Skip 0X0123456789ABCDEF Ends With `2esn` Ends With $`7esn` With Distinct $@usn6[12.0][12.0] Skip `7esn`[$usn2..][$123456789..] Where 0xabc =~$@usn5 Return $_usn4 Is Null Is Null,usn2 Starts With .0 Order By 9e1[$#usn8][$1000] Descending Limit #usn7 =~9e12 Union Unwind `4esn` Starts With 0e0 As `1esn` Remove {_usn3:_usn4 Is Null Is Null}.``,``(@usn6[`1esn`..]).`7esn`! Return Distinct 1.e1[..123456789][..999],_usn3[12.e12..][`5esn`..] As @usn6,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `5esn` Order By 123456789 Contains 0Xa Descending,[@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00|`5esn`[$`7esn`..$@usn5]] Is Not Null Is Not Null Desc,00[False..0e0] Ascending"), + octest:ct_string("Create @usn6=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}),(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[?:`7esn`|:`2esn`]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]}) Union Merge ``=(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) On Match Set usn2+=`6esn`[$`8esn`][9e1] On Match Set Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa).@usn6! =0.e0 Is Not Null Is Not Null,`1esn` =07 In `6esn` Remove `4esn`:`3esn` Create (usn1 :usn1:`3esn`),((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` ))"), + octest:ct_string("Remove `8esn`:``:usn2 Return Distinct *,`1esn` Contains `2esn` Order By (:`2esn`)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})-[@usn6? *0X0123456789ABCDEF..{``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6}]-(`5esn` :@usn5) Is Null Is Null Asc,7 Is Not Null Ascending Delete None(`3esn` In `2esn`[..01][..True] Where usn1 In ``)[None(usn2 In 7[12] Where 12e12 =~$`7esn`)..],$`1esn` =~1e1 Union Optional Match `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})),usn2=((#usn7 {`8esn`:`7esn` In 010 In usn1})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})) Create (#usn7 {`6esn`:$`2esn` Contains Count(*)})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})"), + octest:ct_string("Delete 01234567[$0..][0..],`1esn`[0.0..1e1][0x0..7] With Distinct Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..],{#usn8:12.0 Ends With `2esn`,@usn5:usn1 Starts With 00}[Any(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..],999 In 0e0 As #usn7 Order By `1esn` Starts With 9e1 Desc Where $@usn5[..$#usn7]"), + octest:ct_string("Delete [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12] Starts With usn2(01 Is Null) Starts With Filter(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),12[0e0] Union Delete 's_str' Is Not Null,.e1[..$`3esn`][..01],0.e0[$`4esn`..`2esn`] Match ((_usn3 :`8esn`{#usn8:False Starts With 0X7 Starts With 01234567})) Merge ((:_usn4{`1esn`:0e0 =~0Xa =~$999})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(`` :`5esn`{@usn5:123456789 =~@usn6})<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}))"), + octest:ct_string("Optional Match (`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]->(_usn4 {_usn4:Null[..010][..1000],_usn3:.0 Is Null Is Null}) Where 00 Ends With `` Ends With 12.e12 Union All Remove Filter(`8esn` In 123456789 =~@usn6 Where True[`3esn`]).`8esn`?,Single(`8esn` In 123456789 =~@usn6 Where @usn6 Is Not Null Is Not Null).`1esn`?,Single(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]).`6esn`! Optional Match (({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn4?:@usn6|:`7esn`]-({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn3?:_usn3|:`7esn`]->(`3esn` {`8esn`:`7esn` In 010 In usn1})) Where _usn3 Ends With 7 Ends With $`1esn` Merge (@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`}) On Create Set All(usn2 In 7[12] Where `2esn`[$12..]).#usn8? =[#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3],Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3|01 In $@usn6).`7esn`? ={`3esn`:.e1[..\"d_str\"][..$123456789]},[$`5esn` =~usn1,@usn6 Contains .12 Contains $usn1,999 In #usn8 In $``]._usn3 =[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )] On Match Set `5esn` =0.e0[0X0123456789ABCDEF..];"), + octest:ct_string("Create ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)),((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Optional Match ((`1esn` {_usn4:`8esn` Is Null})),`2esn`=(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Where usn2[1.e1] Union All Remove {`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}.`2esn`!,(_usn4 :`3esn`)-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}).`4esn`,All(_usn4 In 12e12 In 123456789 Where .0 Ends With Count ( * )).`3esn` Remove (`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[ *0..01]-(@usn6 :_usn3{@usn6:07 Is Not Null Is Not Null,`5esn`:0e0 =~7 =~12.0}).`2esn`?,Extract(@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00).@usn5!"), + octest:ct_string("Return Distinct *,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] As `1esn` Union All Create _usn3=(`1esn` )<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7}) With *,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) As `7esn` Order By (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc Where 1.e1 In 1000 In _usn3 Delete 0x0[``..],Any(usn2 In 7[12] Where $_usn3 Is Null) Is Not Null Is Not Null,[`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Union Remove All(@usn6 In 010[`5esn`] Where 1.e1[$usn1]).`6esn`!,Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5 Detach Delete 0xabc[$999..][$usn1..],12[..$999][..$`2esn`],Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|$`8esn`[..True][.._usn4]) Ends With Single(_usn4 In 12e12 In 123456789 Where $usn2 Is Not Null Is Not Null) Create (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})))"), + octest:ct_string("Unwind $``[..\"d_str\"][..$#usn8] As _usn4 Union All Merge _usn3=((@usn6 :`8esn`)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})) Union All Remove {`6esn`:Null =~`6esn`}._usn3!,[usn2 In False[$usn1][0x0] Where `4esn` Starts With 0e0].`6esn`!,[010[`5esn`],0Xa[..Count ( * )][..$123456789]]._usn3 Unwind [#usn8 In `7esn` Where .e0 Starts With $@usn6 Starts With $7|1000[12e12][`5esn`]] Ends With [`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8] Ends With [$``[..\"d_str\"][..$#usn8],$_usn4 Starts With $1000 Starts With 12,#usn7[.e0]] As `8esn`"), + octest:ct_string("Delete {#usn8:.0 Is Null Is Null}[..(_usn3 :@usn6{usn2:0Xa =~False =~@usn5,`3esn`:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})][..{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}],Count(*) Is Not Null Is Not Null Remove {`8esn`:$`3esn`[$_usn4..0Xa]}._usn3,@usn5:`6esn`:_usn3,[0.e0[1000.._usn4][.e1..usn1],$`1esn` =~999,07[_usn3..][`6esn`..]].usn1! Union All Detach Delete Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}],Extract(usn2 In 7[12] Where usn1 Starts With 00|`8esn` Contains Count(*) Contains $#usn7) Contains None(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[0.e0]) Contains Extract(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]|$`4esn`['s_str'..]),`` Starts With $123456789;"), + octest:ct_string("Optional Match _usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))),usn1=(_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]}) Union Return *,$`1esn` Contains 1e1 Contains @usn6 Skip 07[_usn3..][`6esn`..] Optional Match _usn4=((:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})),(`2esn` :`1esn`:_usn4)-[?*..]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Delete _usn4[$usn1..01234567][123.654..`5esn`] Union All Create ((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})) Remove `2esn`(#usn7[0.12..])._usn4?;"), + octest:ct_string("Return Distinct False[$usn1][0x0] As #usn7 Limit $`8esn` Is Null Union Unwind usn2[12e12..]['s_str'..] As @usn6 Union Detach Delete $999 In 12 In 1.e1,usn2 Is Not Null"), + octest:ct_string("With Distinct *,123.654[`4esn`..12] Order By 0.0[$usn2..] Asc,$7 Starts With 12.e12 Starts With $@usn6 Asc Limit $``[..\"d_str\"][..$#usn8] Where .e1[..\"d_str\"][..$123456789] Optional Match `1esn`=(`5esn` :`5esn`{#usn7:``[$`3esn`]}) Where $`8esn`[..True][.._usn4] Detach Delete None(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``)[[`5esn` In 0X7 In $#usn7 Where $@usn5 Starts With `5esn` Starts With 01234567|$``[..$#usn7][..`6esn`]]..Single(@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn1..]['s_str'..])] Union Optional Match (:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]}) Where 12e12 In $`5esn` Union All Return Distinct $usn2 =~0.e0 =~@usn6,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As _usn3,0X7[`2esn`..] As `5esn` Skip `1esn` Contains $999 Contains 0.0 Limit ``[..False][..`3esn`] With *,`` =~.12 As #usn7 Skip usn2 =~7 Limit 0x0 In 0.e0 In #usn8 Where `2esn`[..01][..True] With Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Order By @usn5[0..] Ascending,$@usn5 In $`6esn` In 12e12 Desc,#usn7 In 0.e0 Desc Skip {`8esn`:$_usn4 Starts With 12.e12} Is Null Is Null Limit 999 Contains $1000 Where 999 In #usn8 In $``"), + octest:ct_string("Merge _usn3=(`1esn` )<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7}) On Create Set `6esn` =0e0 Is Not Null,_usn3 =@usn5(Distinct 1e1 Is Not Null Is Not Null,`1esn` Starts With 0xabc Starts With $usn2)[..Extract(`3esn` In 9e1 Contains $999 Where usn2[12.e12..]|.12[01][@usn5])],`7esn`+=12.e12 Contains 9e1 Union Optional Match usn1=((`3esn` {usn2:$usn2[`4esn`..9e12]})<-[?{@usn5:_usn3 Ends With 7 Ends With $`1esn`}]->(_usn3 :_usn4)<-[_usn4?:`3esn`]-(:_usn3{_usn4:.e1[7..][9e0..]})),`7esn`=(usn1 :`7esn`) Return Distinct Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null),9e1[usn1..0x0][12.e12..12.0] Order By 00[12e12][$`7esn`] Ascending,@usn5[0..] Descending,Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Descending Limit 0.e0[$`4esn`..`2esn`] Merge `5esn`=(({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]->(#usn8 :``:usn2)-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}))"), + octest:ct_string("Detach Delete `` Is Null,12 Starts With $123456789 Starts With .e12,#usn7[$`3esn`..$1000][0.0..`2esn`] Union Merge (`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null}) Create `1esn`=((@usn6 {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})-[:``{``:.0[$``..0X7]}]->(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})-[ *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})) Remove {#usn8:`1esn`[usn1][0xabc],_usn3:$`6esn`[1.e1][$_usn3]}.`3esn`,{usn1:@usn6[9e12]}.`4esn`!"), + octest:ct_string("Match ((({`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[`3esn` *..07{usn2:True Contains 0x0 Contains $_usn3}]-({``:``[$`3esn`],#usn8:$@usn6[00]}))) Unwind $_usn3 Is Not Null As _usn3 With Distinct _usn4 Is Null Is Null As @usn5,.e12[$@usn6..00][01234567.._usn3],Extract(@usn5 In 9e0 Ends With $#usn8 Where $`8esn`[123456789..][$@usn5..]) =~None(#usn7 In True Contains 's_str' Contains $usn1 Where 's_str' Starts With 9e0 Starts With usn2) As @usn5 Skip 9e12 Ends With 12e12 Ends With 12 Limit (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Where 's_str'[0..] Union All Return Distinct *,07 As `4esn` Order By 1000[0e0][1e1] Asc,Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null Asc Skip 9e12[..1e1][..'s_str'] Detach Delete [9e12[9e1]][[_usn3[`2esn`..0X7][0.e0..$`3esn`]]..] Union All Create ``=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}) Delete Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`2esn` =~9e12) Is Null Is Null,0Xa Contains `8esn` Contains 0xabc,Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1)"), + octest:ct_string("With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Where Count ( * ) In 0.12 Delete $@usn5[_usn4] Create `1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}))"), + octest:ct_string("Optional Match `6esn`=((`6esn` :#usn8:`1esn`{`6esn`:usn1[..$@usn6][..00]})-[@usn5:_usn4 *0x0..]-(_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})) Return Extract(#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null)[All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])..] As `1esn`,$`6esn`[1.e1][$_usn3] As usn1 Order By [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null] Is Not Null Desc Limit Count ( * ) In 0.12 Detach Delete `6esn` =~`3esn` =~@usn6,(:_usn4$12)-[`1esn`?:`6esn`|:#usn8 *0Xa]-(usn1 :#usn8:`1esn`)[{`7esn`:$usn2 =~9e1}..] Union All Create #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))),#usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Create ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)),((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Optional Match ``=((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)) Where 010 Is Null Is Null Union All Unwind Filter(`5esn` In 0X7 In $#usn7 Where $@usn5 Starts With `5esn` Starts With 01234567) Is Null Is Null As `8esn` Return Distinct .e12 Starts With $7 Starts With .0,[$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) As #usn7,01 Contains usn2 Contains 0X0123456789ABCDEF As `8esn` Order By 0Xa =~False =~@usn5 Descending,12.0 In 010 Ascending,`4esn`[123456789] Ascending"), + octest:ct_string("Return $@usn6[..12] As #usn8,Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] As `7esn` Create (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3) Union Detach Delete `4esn` Contains 9e0,`5esn` Contains `7esn` Merge #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Union Return Distinct Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],010 Is Null Is Null As #usn8,All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] As `8esn` Order By $_usn3[_usn4..] Asc,0.12 Is Null Is Null Desc,`6esn` Ends With _usn4 Ends With False Ascending Skip 1.e1 =~.12 Limit `1esn`[$@usn6][07] Return $_usn4 Is Null Is Null,usn2 Starts With .0 Order By 9e1[$#usn8][$1000] Descending Limit #usn7 =~9e12"), + octest:ct_string("Merge (#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) On Match Set Extract(@usn5 In 's_str'[0..] Where @usn6 In .12 In `3esn`|$@usn6[00]).`8esn`? =9e0 Contains $12 Contains `3esn`,_usn4+=0x0[@usn5][$#usn8],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null On Match Set `1esn` =[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]) Match `8esn`=(((#usn7 {`6esn`:$`2esn` Contains Count(*)})<-[#usn8{`5esn`:$@usn5 In 12e12 In 01}]->(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}))) Where $#usn7 In $@usn5 In $`1esn` Union All With Distinct usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Order By $`7esn`[..@usn6] Ascending Skip 12.0 =~@usn6 =~$`2esn` Where 0e0[``..$1000][$7..12.e12] Union Detach Delete $`5esn`[..00] Unwind `8esn`(Distinct #usn8 Is Not Null Is Not Null,`2esn` In 9e0 In 7) Starts With None(usn2 In 7[12] Where 123456789 =~12 =~'s_str') As @usn6 Unwind [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] As usn2;"), + octest:ct_string("Match usn2=((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)) Where 1e1 Contains 's_str' Contains `3esn` Merge #usn7=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`}));"), + octest:ct_string("Optional Match #usn8=(((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Where .12[123.654..] Create ((usn1 :`2esn`{@usn6:True Contains 's_str' Contains $usn1,``:$`4esn` Starts With 0 Starts With `7esn`})-[?*..{`6esn`:01 Ends With 0Xa Ends With 0X7}]->(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12})) Union All Return Distinct *,(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] As `1esn` Skip 01[07..][1.e1..] Limit All(usn2 In 7[12] Where #usn8 Is Null Is Null)[[usn2 In 7[12] Where #usn7[.e0]]..] Detach Delete `` Is Null,12 Starts With $123456789 Starts With .e12,#usn7[$`3esn`..$1000][0.0..`2esn`] Union Merge (((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[?:`8esn`*]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4})))"), + octest:ct_string("Unwind [_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`] As `6esn` Return Distinct 12 Starts With True Starts With 12e12 As _usn4 Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc"), + octest:ct_string("Delete 12 Contains 01234567,[@usn5[$`6esn`..][$999..],`` Starts With $123456789] Is Null,`6esn` Is Null Is Null Union All With Distinct *,`3esn`(`7esn`,0x0 Contains $`6esn` Contains `4esn`) Is Null Is Null Limit usn2[..$usn1][..$#usn8] Merge `5esn`=({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})<-[_usn4?:@usn6|:`7esn`]->(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})<-[`8esn`:usn1|`4esn` *0Xa{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]->(:`8esn`) On Create Set {usn1:$_usn4 Starts With $1000 Starts With 12}.@usn6! =[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])] On Create Set `5esn`+=All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],`2esn` =False Starts With 0X7 Starts With 01234567 Detach Delete 9e1 Contains $999"), + octest:ct_string("With Distinct *,$_usn3 Is Not Null Is Not Null As @usn6,$0[#usn8] As `4esn` Order By 0.0 Ends With $`7esn` Asc,010 Starts With 0 Starts With 0.0 Desc,Extract(`6esn` In $`6esn`[``..][Count(*)..] Where 1.e1 Ends With $_usn4 Ends With #usn7|0xabc =~$@usn5) =~{_usn4:9e1[`1esn`..0][999..1e1]} Desc Limit `1esn`[$@usn6][07] Union All Unwind Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..]) =~[_usn4 In 12e12 In 123456789 Where .0 Ends With Count ( * )|$`1esn` In .e0] As @usn5 Merge @usn6=((`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[@usn5?:usn2 *00..0Xa{usn2:$usn2[`4esn`..9e12]}]->(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->(usn2 :usn1:`3esn`)) On Match Set [#usn8 In `7esn` Where 01 Ends With 0Xa Ends With 0X7|`8esn` Contains Count(*) Contains $#usn7].``? ={`5esn`:$`1esn` In .e0,``:`6esn` Ends With Count ( * ) Ends With Count ( * )} Is Null Is Null,`8esn`+=$7 Is Null,`7esn` =_usn4 In #usn7 Union All Remove (:`6esn`:_usn3$usn2)<-[:`4esn`|@usn5{`3esn`:Null[..0]}]->(:`4esn`:`6esn`{`4esn`:$`3esn`[..0X0123456789ABCDEF][..7],`5esn`:$0 =~9e1 =~$`2esn`})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(#usn8 :@usn5{_usn4:$#usn7 Contains $`7esn` Contains .e12}).usn2 Delete $`1esn` Ends With 0X0123456789ABCDEF"), + octest:ct_string("Remove {``:.0[..'s_str'][..01234567]}.@usn5!,[#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6]].`3esn` Return Distinct *,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``) Is Null Is Null Order By Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Ascending,$@usn5[..$#usn7] Descending,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip 9e1 Starts With Count ( * ) Limit {`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..] Union All Delete `7esn` In 010 In usn1"), + octest:ct_string("Remove {`1esn`:0xabc =~$@usn5}.#usn8 With Distinct *,None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] As #usn7,12 Is Not Null As `6esn` Order By Null[.12..12e12] Descending Detach Delete $`5esn` In 07 In 00 Union With Distinct 999[12e12..$_usn4] Order By Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,0X7[.0] Asc,$`3esn`[..0X0123456789ABCDEF][..7] Descending Limit #usn7 =~9e12 Where _usn4 Contains `` Contains 1.e1;"), + octest:ct_string("Create @usn5=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),({`4esn`:.e1[..$`3esn`][..01]})-[`5esn`:#usn7|@usn5]-(`5esn` :`4esn`:`6esn`) Union All Delete 12 Contains 01234567,[@usn5[$`6esn`..][$999..],`` Starts With $123456789] Is Null,`6esn` Is Null Is Null;"), + octest:ct_string("With Distinct Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])] As @usn6,$`1esn`[Null][True] As usn2,0X7 In $#usn7 Order By 01 Ends With 0Xa Ends With 0X7 Desc,$12 =~0X7 =~0x0 Ascending Skip `7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] Where 00[01234567][False] Unwind `` Is Not Null Is Not Null As _usn4;"), + octest:ct_string("Create #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))),#usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Create ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)),((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Optional Match ``=((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)) Where 010 Is Null Is Null Union All Unwind Count(*)[9e12..12.0] As #usn8 Match _usn3=(`1esn` )<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7}) Where @usn5 Starts With 9e0 Starts With 010;"), + octest:ct_string("Delete $7[$12..12e12][1.e1..9e1],Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..]) =~[_usn4 In 12e12 In 123456789 Where .0 Ends With Count ( * )|$`1esn` In .e0];"), + octest:ct_string("Detach Delete `5esn` Contains $`5esn` Contains 0X7 Remove Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null).usn1 Union Match (`8esn` :#usn8:`1esn`{usn1:0x0 Starts With $`6esn`}) Create ((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})),@usn5=(({@usn5:$`5esn` Is Not Null Is Not Null})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})) Return Distinct .e0 Ends With $123456789 Ends With 0xabc Limit 's_str' Starts With 1e1 Starts With $0;"), + octest:ct_string("Remove None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]).`4esn`,[@usn6 In 010[`5esn`] Where 9e1 Ends With Count(*) Ends With $7|`1esn` Is Not Null Is Not Null].`` Match `6esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Where `` Is Null Create (_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]}),`2esn`=(:#usn8:`1esn`$`7esn`);"), + octest:ct_string("Merge `7esn`=(((`` :`5esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`8esn`{`8esn`:usn1 Contains 010,_usn4:`5esn` Contains $`5esn` Contains 0X7}]-({#usn8:0xabc In 010 In #usn7}))) On Create Set `3esn` =12[.0],All(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])._usn4? =12 Starts With True Starts With 12e12 Merge usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})) With `8esn` Is Null As `2esn`,[#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) Starts With [12 In $usn1 In 7,`6esn` Ends With Count ( * ) Ends With Count ( * ),`2esn` Starts With $`7esn`] Starts With usn2(Distinct .0[..'s_str'][..01234567],Count(*) In 12 In `6esn`) Ascending,_usn4[.12..$usn2][$_usn3..123.654] Desc,`4esn`[\"d_str\"]['s_str'] Ascending Skip Filter(@usn5 In 9e0 Ends With $#usn8) Contains {@usn6:#usn7[`8esn`..usn1][$999..`7esn`]} Contains (:#usn7:`5esn`)-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}) Where $@usn6[$`8esn`..][123456789..];"), + octest:ct_string("Create (#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}),`8esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Unwind 999 Contains 0 Contains $`5esn` As @usn5;"), + octest:ct_string("With Distinct $`4esn`[0..][999..],Filter(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12])[..Extract(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])][..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]],(`3esn` {usn2:00[False..0e0]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null})<-[@usn6?:`8esn` *0..01]->(`5esn` :`4esn`:`6esn`)[[12.0 Starts With $`2esn` Starts With .e1]..] As `5esn` Order By .e12[`2esn`..010] Desc,0xabc In 010 In #usn7 Ascending Skip 1e1 Ends With $`7esn` Ends With .0 Where 9e1[$#usn8][$1000] Return Distinct `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By $1000[$@usn6][$_usn4] Desc Union All Detach Delete [`4esn`[.12][$@usn6],.0[..'s_str'][..01234567],1.e1 =~.12][Any(usn2 In False[$usn1][0x0] Where False Is Null)..],{#usn7:$usn2[0.e0],`6esn`:.e1[..\"d_str\"][..$123456789]}[..Extract(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999|Count ( * ) In 0.12)][..[@usn6 In 010[`5esn`] Where 's_str' Starts With 9e0 Starts With usn2|$`5esn` =~$0 =~``]],Count(*) In #usn8 In \"d_str\" Create (((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}))),`7esn`=(({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(usn1 :_usn3{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})) Unwind Single(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1)[Filter(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])..][Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.0 In 123.654 In _usn4)..] As _usn4 Union Optional Match `5esn`=((({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:#usn7|@usn5*..]-(`3esn` :usn2{`6esn`:#usn8 Is Null})<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Optional Match `2esn`=((`6esn` :#usn7:`5esn`)<-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]->(:#usn8:`1esn`$`7esn`)),((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(:`8esn`{``:$`1esn` =~999}));"), + octest:ct_string("Return 12e12[0x0..12.e12] As `1esn`,.e1[7..][9e0..] As `4esn`,$#usn8 Starts With .e12 Starts With 1.e1 As `8esn` Order By $`5esn` In `2esn` In `2esn` Asc,0.0[..Count ( * )][..`1esn`] Ascending,[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )] Ascending Optional Match (((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Where usn1[..$@usn6][..00] Unwind 0e0[999..$``] As usn1;"), + octest:ct_string("Remove None(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]).`1esn`?,Extract(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null|0 =~1.e1 =~$#usn7).@usn5!,(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}).@usn5 Delete `2esn`[$usn2][12.0],{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}[Single(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7)..],(:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] Return Distinct *,1.e1 Ends With $#usn7 As usn2,@usn5[01][@usn5] Order By $`4esn`[..$`8esn`][..Null] Descending Skip `6esn` Is Null Is Null Union Create (((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),usn1=(`7esn` :`3esn`{`2esn`:999[123.654..$usn2][Count ( * )..0x0]})-[`2esn`?:usn1|`4esn` *00..0Xa]-(`4esn` :`4esn`:`6esn`) Unwind False[$usn1][0x0] As usn2;"), + octest:ct_string("Merge @usn5=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}) On Match Set `4esn` =$#usn8 Ends With `3esn` Ends With $`` On Create Set Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null).`` =01 In $@usn6,@usn5+=$@usn5 Ends With @usn5 Ends With 0xabc,Extract(`3esn` In 9e1 Contains $999 Where usn1[False..`5esn`][$1000..$12]).`7esn` =.e0[9e12..] Remove Single(#usn7 In 9e1[$`1esn`..] Where `3esn`[7..0.e0][0.0..123456789]).`7esn`?;"), + octest:ct_string("Remove [usn2 In False[$usn1][0x0] Where `4esn` Starts With 0e0].`6esn`!,(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[ *01234567..]->(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`}).usn2,(:``:usn2{`3esn`:12.0 Starts With .12 Starts With `6esn`,``:$`4esn`[0..][999..]})-[@usn6?{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null}]->(:`7esn`{`2esn`:$`3esn` Ends With 01234567}).`6esn` Unwind 9e12[..1e1][..'s_str'] As @usn6 Union All Merge `4esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) Detach Delete 0[$`5esn`] Union Unwind False[$usn1][0x0] As usn2 Delete $_usn4 Starts With $1000 Starts With 12,@usn5[$`7esn`..`5esn`],usn1 Unwind 12['s_str'][01] As `6esn`;"), + octest:ct_string("Delete $#usn7[..0Xa],01 In $@usn6 With `5esn`[..123.654][...e12] As @usn6,(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) As `2esn`,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As `1esn` Order By None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0) Descending,@usn5[$`7esn`..`5esn`] Ascending,.0 Contains .e12 Contains 0 Asc Skip usn1 Limit `6esn`[$`8esn`][9e1] Where False Starts With 0X7 Starts With 01234567;"), + octest:ct_string("Delete `7esn`[$usn2..][$123456789..] Return $@usn6 Ends With 12.e12 Ends With @usn5 As usn2,``[usn1][`5esn`],`7esn`[..$`6esn`] Order By [#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Asc,(`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc Skip None(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])[Any(`3esn` In `2esn`[..01][..True] Where $`3esn`[..0xabc][..$7])][$#usn7] Limit 0e0 Is Null Is Null Return Distinct *,count($`4esn`[`8esn`],`4esn` Is Not Null Is Not Null) =~Filter(@usn5 In 's_str'[0..] Where _usn3[0x0]),@usn6 Contains .12 Contains $usn1 As `6esn` Order By 12.0 =~@usn6 =~$`2esn` Ascending Skip 0.0 Is Not Null Limit Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null Union Match ({`1esn`:1.e1[`8esn`]})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->({usn1:$123456789 In 0.12}) Union All Delete [Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] With Distinct (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3) Order By `1esn` Contains $999 Contains 0.0 Ascending Limit 0.e0[1000.._usn4][.e1..usn1];"), + octest:ct_string("Unwind #usn8(@usn6[999..$_usn3][0.12..$@usn5])[..`1esn`(Distinct `5esn`[..123.654][...e12],01 Contains usn2 Contains 0X0123456789ABCDEF)] As _usn3 Detach Delete $`1esn`[``][07],`2esn` Starts With .e1 Starts With 9e12,$`4esn` In 1.e1 In #usn7 Union All Create `8esn`=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2) Remove All(usn2 In False[$usn1][0x0] Where False Is Null).usn2 Unwind None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]) Is Null As `8esn` Union Detach Delete $@usn5 Ends With @usn5 Ends With 0xabc,_usn3 Ends With 7 Ends With $`1esn`,'s_str' Ends With `7esn` Ends With 010 With 0X7[`2esn`..] As `6esn`,Single(usn2 In False[$usn1][0x0])[All(@usn6 In 010[`5esn`] Where 00[1.e1..])][(:`2esn`{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`})-[?{`5esn`:$`2esn`[.0..][0.0..]}]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})-[`` *1000..0X0123456789ABCDEF]->(:_usn4{`8esn`:01234567[Null..$_usn3]})] Order By ``[$`3esn`] Asc,[1000[0e0][1e1],12.0 Is Null Is Null] Is Not Null Is Not Null Asc,.e0 =~$`7esn` =~0X0123456789ABCDEF Descending Skip [#usn8 In `7esn` Where .e0 Is Null Is Null] Ends With {usn1:$`4esn`[`6esn`..$12],`4esn`:usn1 Contains 010} Ends With (:``:usn2{``:True[$_usn3..]})<-[`2esn`? *01..123456789]-(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(`1esn` $`4esn`) Limit `5esn`[..123.654][...e12];"), + octest:ct_string("Create (((`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})<-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Remove Extract(#usn8 In `7esn` Where 9e12[$`5esn`..$123456789]|`1esn` Starts With 0xabc Starts With $usn2).`5esn`,{@usn6:0e0 =~7 =~12.0}._usn3! With *,All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],12 In $usn1 In 7 As `8esn` Skip None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1) Limit $@usn5 Starts With .e1 Where usn1 Is Null Is Null Union All With $999[0Xa..][9e1..] As `4esn` Skip [#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Where 1000 Ends With `7esn`;"), + octest:ct_string("Return *,1e1 Contains 0.e0 Contains 9e1,`1esn` Starts With 9e1 As `6esn` Order By 010 Contains .e1 Asc,(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})<-[#usn7 *01..123456789]->(`6esn` :usn1:`3esn`) Ends With Extract(#usn8 In `7esn` Where 9e12[..1e1][..'s_str']) Ends With [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123.654 Is Not Null|$`2esn`[.0..][0.0..]] Descending Return $123456789 Starts With 0.12 Starts With Null As _usn3 Order By #usn7[``] Desc,{`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Ascending,`` Is Null Descending Skip 0X0123456789ABCDEF In $7 Limit All(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0)[(:#usn7:`5esn`)<-[#usn8? *0Xa]-(`5esn` :`5esn`{#usn7:``[$`3esn`]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc})..] Union All Return Distinct *,Null[..010][..1000] As #usn7,9e12 Ends With 12e12 Ends With 12 As `` Order By 1000[$7..][_usn4..] Desc Skip $`3esn` Ends With 01234567 Limit 7 Ends With .12 Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Unwind usn1[..$@usn6][..00] As `4esn`;"), + octest:ct_string("Return Distinct 0.e0 Is Not Null Is Not Null As _usn4,0X0123456789ABCDEF In $usn2 In `4esn`,$usn1 Is Not Null Is Not Null Order By Count(*) Starts With usn2 Starts With `7esn` Desc;"), + octest:ct_string("Unwind Any(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) =~[#usn7 In 9e1[$`1esn`..] Where 0Xa Ends With $`3esn` Ends With $1000|$@usn5 Contains 's_str' Contains \"d_str\"] =~Extract(@usn6 In False Contains 0 Contains $`6esn` Where $`6esn` Starts With .e12 Starts With $`1esn`|12e12 In 123456789) As #usn7 Remove Extract(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1|010 Starts With $`` Starts With 0e0)._usn3!,1000.`2esn`? Remove None(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`).@usn6?,[Count ( * ) In True In @usn5,#usn7[0.12..],1000[0e0][1e1]].`3esn`?;"), + octest:ct_string("Remove Extract(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]|9e12 =~@usn6).#usn7,[@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01].`` Remove {`3esn`:$`5esn` Is Not Null Is Not Null}.`2esn`!,{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1}.`1esn`? Union All Merge #usn8=(({usn2:`2esn`[..$_usn3]})) On Create Set #usn8+=$123456789[.0..],`` =All(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0)[(:#usn7:`5esn`)<-[#usn8? *0Xa]-(`5esn` :`5esn`{#usn7:``[$`3esn`]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc})..] On Match Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] Merge (_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]}) On Create Set `7esn` ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]} On Match Set [_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789|9e1 Ends With Count(*) Ends With $7]._usn4 =$`5esn`[0X7..010][`7esn`..'s_str'],@usn5+=(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},usn2+=999[12e12..$_usn4];"), + octest:ct_string("Merge (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}) On Match Set #usn7+=[#usn8 In `7esn` Where usn2[07..][.0..]|$usn1 Ends With _usn4 Ends With `2esn`] Contains (_usn3 {#usn7:1000[12e12][`5esn`]})-[`3esn`?:`3esn`]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0}) Contains Extract(`3esn` In `2esn`[..01][..True] Where usn1 In ``),@usn6:`8esn`,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.0 Starts With $`2esn` Starts With .e1).`8esn`? =$`3esn`[$_usn4..0Xa] Unwind 0X7[..$`8esn`] As `1esn` With Distinct $@usn6[.0..][0e0..] Order By $`8esn` Is Not Null Is Not Null Descending,Null Ends With _usn4 Ends With 0.0 Ascending Limit .e0 Where 0.12[..$_usn3][..0Xa] Union With Distinct *,[$usn1[`2esn`..][$`2esn`..]] Contains Extract(usn2 In 7[12] Where $_usn3 Is Null|.e12 Is Null Is Null),$#usn7 Contains $`7esn` Contains .e12 As @usn5 Order By 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Asc,`8esn` Is Null Desc Remove {``:.e12 Ends With 0Xa Ends With 0xabc}.usn2? Union All Remove `4esn`:`8esn`,[`1esn`].#usn8?,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where `1esn`[0.12..][@usn6..]).usn2! Match `3esn`=(`` :`6esn`:_usn3{_usn3:$`6esn`[1.e1][$_usn3]})-[_usn4?:`6esn`|:#usn8]->(#usn7 :`3esn`{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}),#usn7=(({@usn6:0x0[Count(*)..@usn6][Count(*)..0Xa],`7esn`:0.0 =~9e0 =~$0})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF}));"), + octest:ct_string("Return Distinct *,1e1 Contains 0.e0 Contains 9e1 Limit None(#usn7 In 9e0[$1000] Where $1000 Is Not Null) Is Null Is Null Merge ((`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})) With 's_str' Order By $12[9e0..$999] Asc,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip #usn8[`8esn`..] Limit .12 In `8esn` In $#usn8 Where 12.e12 Contains #usn7 Contains $_usn4 Union All Merge ((`1esn` {_usn4:`8esn` Is Null})) On Create Set All(usn2 In False[$usn1][0x0] Where 0.0[usn1..]).`8esn`? =_usn4 Starts With 1000 Starts With $usn2,`7esn`+=12 In $usn1 In 7,Any(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1).`2esn`! ={_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] On Match Set @usn6+=0.0[..Count ( * )][..`1esn`],usn2 =1.e1 Starts With 9e12,Single(usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5).@usn5! =0xabc[$999..][$usn1..];"), + octest:ct_string("Match _usn3=(`1esn` )<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7}) Where @usn5 Starts With 9e0 Starts With 010 Return `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Skip 0e0[``] Limit .e0 =~Null Return *,#usn7[0.12..],$`3esn`[.e1][_usn4] As _usn4 Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Limit \"d_str\" Is Not Null Is Not Null Union Detach Delete `7esn`[0x0][$`4esn`],0.0[$usn2..] Return (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3) Skip Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null) Is Not Null Is Not Null Limit $`1esn` Starts With Count(*);"), + octest:ct_string("Remove None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where `2esn` Starts With .e1 Starts With 9e12).usn1?;"), + octest:ct_string("Return $`4esn`[`6esn`..$12] As `3esn` Order By [0x0 Ends With 12.0 Ends With `5esn`,12e12 Ends With 0.0 Ends With usn1,00[1.e1..]] Ends With All(#usn8 In `7esn` Where $`3esn`[..0xabc][..$7]) Ends With Any(@usn6 In False Contains 0 Contains $`6esn` Where `6esn`[$1000][`3esn`]) Asc,Filter(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3]) In ({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) In Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0) Asc Skip usn1 Union Merge `3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) On Match Set @usn6 =999[..`1esn`][..07],`3esn`+=$@usn5[0.0][0X0123456789ABCDEF],`6esn`+=$usn1[1000][.12] On Match Set #usn8+=Count(*)[$@usn5],@usn6 =0 =~1e1,`2esn`+=Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Unwind Count(*)[9e12..12.0] As #usn8 Remove All(#usn7 In True Contains 's_str' Contains $usn1 Where .e12[$@usn6..00][01234567.._usn3]).usn2,[@usn6 In False Contains 0 Contains $`6esn` Where $`5esn`[..00]|_usn3 Contains 9e12 Contains `8esn`].`3esn`?,{`4esn`:.e1[7..][9e0..],`8esn`:00 In @usn6 In 0}.`4esn`?;"), + octest:ct_string("Return #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Order By `6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] Desc Limit $_usn4[$_usn4] Union All With @usn6 Is Not Null Is Not Null,(@usn6 :`8esn`)<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`}) Ends With #usn8(Distinct 12.e12 Contains #usn7 Contains $_usn4,01[`3esn`..][Count(*)..]) Ends With [`5esn`[..True][..0.e0],12 In $usn1 In 7,$`8esn`[123456789..][$@usn5..]] Skip [_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) Limit {@usn6:$`3esn`[.e1][_usn4]}[`8esn`(Distinct $``[True])..] Union Remove [$@usn5 In 12e12 In 01,$_usn4[..$_usn4][..`7esn`]].`3esn`?,[$_usn4 =~$`1esn` =~`2esn`,#usn7[`8esn`..usn1][$999..`7esn`],$@usn5[..0xabc][..$`3esn`]].`8esn`!;"), + octest:ct_string("With Distinct 999[12e12..$_usn4] Order By Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,0X7[.0] Asc,$`3esn`[..0X0123456789ABCDEF][..7] Descending Limit #usn7 =~9e12 Where _usn4 Contains `` Contains 1.e1 Union All Merge `7esn`=(((#usn7 :usn2{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]})<-[@usn5?:usn2 *00..0Xa{usn2:$usn2[`4esn`..9e12]}]->(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})<-[ *..07{`5esn`:999 In 0e0}]->(:@usn6$usn1))) Return Distinct *,`2esn`[..$_usn4][...12] As `6esn`,$999 Is Null Is Null Order By 12.0 Ends With `2esn` Descending,.0 Ends With 999 Ends With $`5esn` Ascending Match _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Where 010 Is Null Is Null Union Unwind 0.0 Contains `3esn` Contains @usn5 As @usn5;"), + octest:ct_string("Return *,#usn7[0.12..],$`3esn`[.e1][_usn4] As _usn4 Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Limit \"d_str\" Is Not Null Is Not Null;"), + octest:ct_string("Optional Match usn1=(`3esn` {_usn3:$123456789[0.12..]})<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(usn2 ) Remove All(@usn6 In False Contains 0 Contains $`6esn` Where usn1[False..])._usn3! Union With Distinct 00[12e12][$`7esn`],[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `6esn`,0X7[..$`8esn`] As #usn7 Merge #usn8=((`3esn` :usn2)<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})<-[`5esn`?:usn1|`4esn`{`3esn`:_usn3[0x0],`3esn`:00[False..0e0]}]->(`3esn` )) On Match Set `8esn`+=0x0[``..],usn1+=0e0 Ends With 07 Ends With $`8esn`,_usn4 =$@usn6[12.0][12.0] On Match Set usn1(True Contains 's_str' Contains $usn1,.e0 Is Not Null Is Not Null).@usn5! ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]};"), + octest:ct_string("Detach Delete #usn7 In 0.e0,07,[.e0 Is Not Null Is Not Null,$#usn7 Contains $`7esn` Contains .e12,123.654 Is Not Null] In {`6esn`:0X7['s_str'..][01..],#usn7:12.e12 Is Not Null Is Not Null} In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where `2esn` =~.e12 =~0X0123456789ABCDEF) Unwind Extract(#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null)[All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])..] As `7esn` Return 1e1 Contains 's_str' Contains `3esn` Order By [9e12[9e1]][[_usn3[`2esn`..0X7][0.e0..$`3esn`]]..] Ascending,Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])[[00[12..$`6esn`],$`4esn`['s_str'..]]..] Ascending,9e1[$1000][7] Descending Skip 9e12[_usn4..$`5esn`][_usn4...e1] Limit $0 =~9e1 =~$`2esn` Union Unwind @usn6[123.654..][0x0..] As `2esn` Delete [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null),0x0 In `8esn`;"), + octest:ct_string("Match #usn7=((`7esn` :`1esn`:_usn4{@usn5:0x0[usn1..usn1],`6esn`:`4esn`[$_usn3..$`7esn`]})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->({`3esn`:`5esn` Contains $`5esn` Contains 0X7})-[`6esn` *00..0Xa{usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}]->(:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})) Where 0.0 Contains #usn7 With $@usn6 Ends With 12.e12 Ends With @usn5 As usn2 Where 12.0 Is Null Delete 12.e12 Contains `6esn`,$1000 Is Not Null,`1esn`[$@usn6][07] Union All With *,`` =~.12 As #usn7 Skip usn2 =~7 Limit 0x0 In 0.e0 In #usn8 Where $999[0Xa..][9e1..] Create (:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}),`7esn`=((_usn3 :`7esn`)) Return Distinct 12 Starts With True Starts With 12e12 As _usn4 Skip .e1 In 123456789 Limit $7 Starts With $`4esn`;"), + octest:ct_string("Unwind (:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Is Not Null As usn1;"), + octest:ct_string("Detach Delete 12e12[12e12][$#usn7] Delete [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null),0x0 In `8esn`;"), + octest:ct_string("Optional Match #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),((:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8}));"), + octest:ct_string("Create ((usn1 :`5esn`{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})) With Distinct *,$`7esn`[$_usn4][.e0],`5esn` Contains `1esn` Contains usn1 As `2esn` Order By `4esn` Contains 9e0 Desc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Is Not Null Asc Skip [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] Limit $@usn6 =~#usn7 =~True Where $@usn5 In $`6esn` In 12e12 Union Create `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})),usn2=(#usn7 {_usn4:1.e1[`8esn`]})<-[usn2{`2esn`:$12 Starts With $usn1}]->(:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]}) Union With Distinct *,`5esn` Contains `5esn` Contains $_usn3 Order By 0xabc In Null Descending,12[.0] Ascending Skip None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Where .0 Ends With Count ( * ) Merge ``=(((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))) On Create Set usn1 =`3esn`[123456789],`3esn` =9e1[.12][`7esn`] Unwind 12.e12 Starts With 1000 As @usn5;"), + octest:ct_string("Merge @usn6=(:usn2{`6esn`:#usn7[$`3esn`..$1000][0.0..`2esn`],``:010 Starts With 0 Starts With 0.0}) On Create Set usn2+=$#usn7 Starts With $`2esn`,`4esn`+={#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Is Not Null,`8esn`+=12.e12 Ends With `` Ends With 0 Unwind $@usn5[0.0][0X0123456789ABCDEF] As usn1 Union All Match `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),`8esn`=((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[``:`5esn`|:usn2{`5esn`:_usn4[0]}]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})) Where 1000[12e12][`5esn`] Union Match ((#usn7 {`6esn`:$`2esn` Contains Count(*)})-[?:_usn4]->(`2esn` :usn2)) Detach Delete (`2esn` :usn1:`3esn`)-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})<-[?:`3esn`]-(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})[({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})],0X7 In $#usn7,Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 999 Contains $1000)[(`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8})][#usn8($1000 Is Not Null,$`5esn`[0X7..010][`7esn`..'s_str'])];"), + octest:ct_string("Merge ((:`3esn`{`1esn`:`7esn`,`8esn`:12e12 =~$`7esn`})-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})) On Create Set _usn3 =@usn6 Is Not Null Is Not Null,`5esn` =[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]][Any(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..])..Single(usn2 In False[$usn1][0x0] Where 9e1 Is Not Null Is Not Null)] On Match Set #usn8 =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Is Null Match (`3esn` {usn2:$usn2[`4esn`..9e12]}),usn1=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) Where $`4esn` Contains _usn3 Contains `8esn` Union With 010 Starts With $`` Starts With 0e0 As @usn5 Where $`3esn`[$_usn4..0Xa] Union All Merge (`5esn` :`4esn`:`6esn`)<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]}) On Create Set `4esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1 =(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]);"), + octest:ct_string("With Distinct *,$#usn7[..0Xa] As #usn8,0X7[`2esn`..] As `5esn` Order By $7[999][usn1] Asc Union All Merge (:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}) On Match Set [12e12 =~1e1,0X7[..$`8esn`]].`7esn` =1e1 Ends With $`2esn`,`8esn`+=01[$`7esn`..$@usn6] On Create Set usn1+=Extract(@usn5 In 's_str'[0..] Where 12 In $usn1 In 7) =~All(`3esn` In `2esn`[..01][..True] Where $`7esn`[.e1][12.0]),@usn6+=[$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][None(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..])..] Match (((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Where .0 Is Null Is Null Union All Unwind 07[False] As @usn5 Remove {_usn4:$``[True],`3esn`:$#usn8[@usn6..]}.@usn5!,[$@usn6[00],$@usn5 In $`6esn` In 12e12].`6esn`?,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null Is Not Null|1.e1 =~.12).usn2! Return Distinct 12 Starts With True Starts With 12e12 As _usn4 Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc;"), + octest:ct_string("Remove All(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01).usn2! Create (((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Union All Return Distinct *,`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[12[..0e0][...e1]]..Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $123456789 Contains $#usn8 Contains ``)] As #usn8 Order By Extract(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With [#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4] Ends With [False[$`4esn`..],$#usn7[..0Xa]] Asc,@usn6[..$@usn5] Ascending Limit `1esn`[usn1][0xabc] Delete `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Is Null Return 0e0[``],0X7 In $#usn7 Order By Extract(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1|``[$`3esn`])[(:`6esn`:_usn3$usn2)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)..All(_usn3 In _usn3 Contains _usn4 Contains $@usn5)] Desc,`5esn`[$`7esn`..$@usn5] Ascending;"), + octest:ct_string("Remove Any(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[0.e0])._usn3!,[usn2 Contains $0 Contains .0,$`5esn`[0X7..010][`7esn`..'s_str'],123.654[$0..0X7][Null..#usn8]]._usn4?,(`` {`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']})<-[`1esn`?:`8esn` *7..]-(:``:usn2{``:True[$_usn3..]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3).usn2 Detach Delete usn1[False..`5esn`][$1000..$12] Return $7[999][usn1] As `6esn`,0 Ends With Count(*) Ends With False As `7esn` Order By Any(#usn7 In 9e0[$1000] Where .e0 Is Null) =~Extract(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0|$`3esn` In $usn2) =~{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Descending Skip 010[...12] Limit $`1esn` In .e0;"), + octest:ct_string("With Distinct *,12e12[12e12][$#usn7] Order By {`3esn`:.e1[..\"d_str\"][..$123456789]} Descending,010[..7][..`4esn`] Desc,12e12 Is Not Null Ascending Skip None(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]) Contains [$`2esn` Ends With `6esn`,9e1[..123456789]] Contains [12.0 In 123.654 In _usn4] Where False[..$`5esn`][..1e1] Union All With Distinct 12e12 Is Not Null Order By Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $`6esn`[``..][Count(*)..])[[$`2esn` =~9e12,`6esn` Is Null Is Null,usn2 Is Not Null]] Descending Skip 12 Contains 01234567 Limit @usn5 Is Not Null Optional Match (((`` $`6esn`)<-[usn2*{_usn3:0.e0[0X0123456789ABCDEF..],`8esn`:$`5esn` In 07 In 00}]-(`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}))),(((`` $`6esn`)<-[usn2*{_usn3:0.e0[0X0123456789ABCDEF..],`8esn`:$`5esn` In 07 In 00}]-(`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}))) Where 9e12 Starts With 1e1 Merge `8esn`=((_usn3 :_usn4));"), + octest:ct_string("Merge `5esn`=({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})<-[_usn4?:@usn6|:`7esn`]->(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})<-[`8esn`:usn1|`4esn` *0Xa{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]->(:`8esn`) On Create Set {usn1:$_usn4 Starts With $1000 Starts With 12}.@usn6! =[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])] On Create Set `5esn`+=All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],`2esn` =False Starts With 0X7 Starts With 01234567;"), + octest:ct_string("With `5esn`[..123.654][...e12] As @usn6,(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) As `2esn`,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As `1esn` Skip $`3esn`[..0X0123456789ABCDEF][..7] Limit 12.0 Starts With .12 Starts With `6esn` Where ``[$`3esn`] Merge ((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})) On Match Set [usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]].`1esn`? =999 Contains 0 Contains $`5esn`;"), + octest:ct_string("Return *,12 Ends With True Ends With @usn6,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3) Ascending,$@usn6 =~0xabc =~$999 Descending,[`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5|`7esn`[1e1]] Contains (`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->(`2esn` {`1esn`:$`4esn` Is Null Is Null}) Contains Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``) Desc Remove {`8esn`:usn2 =~7,`5esn`:.e0[01234567..$`8esn`]}.#usn8 Merge #usn7=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`}));"), + octest:ct_string("Remove [`1esn`[$@usn6][07],123.654 Starts With 0X7 Starts With $`4esn`,$`5esn` =~$`8esn` =~usn2].`8esn`,Filter(_usn3 In _usn3 Contains _usn4 Contains $@usn5)._usn4?,[@usn6 In 010[`5esn`] Where 12e12 In 123456789].`7esn`? With Distinct 0X0123456789ABCDEF Is Not Null Is Not Null Order By #usn8[`8esn`..] Descending,9e1[`1esn`..0][999..1e1] Desc Create @usn6=((#usn8 :_usn3)<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`)-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})) Union Delete ``[$`1esn`],All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] With Distinct usn2 =~$`` =~$`8esn` As `2esn`,'s_str'[0x0..1.e1] As `6esn`,$`5esn`[\"d_str\"..] As `5esn` Order By 1.e1 Contains `6esn` Contains 0.e0 Descending,07[..07][..0X7] Descending Skip usn1[False..] Limit `6esn`[$1000][`3esn`] Where 0x0[0X7];"), + octest:ct_string("With *,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null Where $`5esn`[0X7..010][`7esn`..'s_str'] Return Distinct `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] As `3esn`,usn1 Ends With 0.0 Limit 7 Ends With .12;"), + octest:ct_string("Merge (`2esn` :usn2)<-[:`2esn`|`4esn` *0X0123456789ABCDEF..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(:``:usn2{`4esn`:#usn7 Contains $0 Contains $usn2}) Union Unwind 0.12[$0..$usn2] As `4esn`;"), + octest:ct_string("Create #usn7=((:`7esn`{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})) Union All Create (((usn2 :#usn8:`1esn`)-[`5esn`?:`7esn`|:`2esn` *0x0..]->(`8esn` :`8esn`)<-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(#usn7 :`2esn`))),((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) Unwind 9e1 =~123456789 =~999 As ``;"), + octest:ct_string("Unwind _usn3[`5esn`..][usn2..] As #usn7 Unwind $1000 Starts With $`3esn` Starts With 0.e0 As usn1 Union Remove All(#usn7 In 9e1[$`1esn`..] Where Count ( * ) In 0.12).#usn7?,All(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`).#usn8,{`4esn`:$999[0Xa..][9e1..]}.`3esn` Detach Delete $123456789[.0..],All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] Union Match (((@usn6 )<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null}))) Remove {`4esn`:$_usn4 Starts With $1000 Starts With 12,`5esn`:0 Ends With 12.e12 Ends With usn2}.``?,Single(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)._usn4?;"), + octest:ct_string("With Distinct 9e1[usn1..0x0][12.e12..12.0] Limit 0.e0[..$999][..0Xa] Delete Extract(#usn7 In 9e0[$1000] Where 00[12..$`6esn`]|$@usn6 Ends With `1esn`) =~[7 =~`4esn`,7 =~`4esn`],@usn5[$`6esn`..][$999..],1e1 Ends With $`2esn` Optional Match `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),(`2esn` $`6esn`) Where 7 =~`4esn` Union All Unwind Count(*)[``..#usn8][`3esn`..0xabc] As @usn5;"), + octest:ct_string("Merge usn2=((`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5)) On Create Set [$``[True]].#usn8! =[0.0 Is Not Null,$`4esn`[`8esn`],$123456789[12e12..9e0]] =~.e12 On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] Remove None(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null).`5esn` Unwind @usn6[123.654..][0x0..] As usn1 Union Return Distinct 01[$`7esn`..$@usn6] As `2esn`,(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]} Skip Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]) Is Not Null Is Not Null Return Distinct `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,0xabc In .12 In 0Xa Descending,.0 Contains .e12 Contains 0 Desc Unwind 0x0[usn1..usn1] As `1esn` Union All Unwind 0Xa =~False =~@usn5 As `8esn`;"), + octest:ct_string("Optional Match ({@usn6:999 Contains 0 Contains $`5esn`,#usn7:999[..`1esn`][..07]}),((:#usn7:`5esn`{_usn4:$usn2 =~9e1})<-[@usn5?:usn2 *0..01]->(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})) Where False[$usn1][0x0] Union Return *,usn1 Contains 010 As `6esn`,(:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]] As `5esn` Skip [`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})] Limit .e0[...0][..$`2esn`] Union Merge #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})) On Match Set `5esn`(Distinct .12[123.654..]).`3esn` =01234567 In 123456789 In 12,`6esn` =[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null On Match Set usn2+=`6esn`[$`8esn`][9e1];"), + octest:ct_string("Remove Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 7[0e0..]).`8esn`!,(_usn4 :`1esn`:_usn4)<-[?:`6esn`|:#usn8 *00..0Xa]-(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]}).@usn5! Unwind @usn5[0..] As usn2;"), + octest:ct_string("With Distinct 0X0123456789ABCDEF In $usn2 In `4esn` Order By $0 Ends With $usn1 Ends With $_usn3 Desc Limit $123456789[12e12..9e0] Remove (_usn4 {_usn4:Null[..010][..1000],_usn3:.0 Is Null Is Null})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}).usn2 Delete None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6) =~Single(`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8) =~(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]}),{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]}[#usn7(Distinct $`1esn`[``][07])..None(@usn6 In 010[`5esn`] Where $`3esn` Ends With 01234567)] Union All Unwind $``[..\"d_str\"][..$#usn8] As @usn6 Union Create `3esn`=(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}) Unwind $_usn3 Is Not Null As _usn3;"), + octest:ct_string("Delete @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])] Delete 's_str' Starts With 1e1 Starts With $0 Remove `7esn`:@usn6 Union With `3esn`[7..0.e0][0.0..123456789] As _usn4,$usn2[0.e0] As _usn3 Limit 9e1 Contains $999 Where @usn5 Is Not Null Unwind [@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] As #usn8;"), + octest:ct_string("Delete 12.e12 Ends With $``,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null,{#usn7:usn1 In ``}[None(`3esn` In `2esn`[..01][..True])..Extract(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..])];"), + octest:ct_string("Create `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Create (((usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[#usn8 *0x0..]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[_usn4 *00..0Xa{`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]}]-(usn2 :`5esn`{_usn4:`2esn` In 9e0 In 7,@usn5:9e1[`1esn`..0][999..1e1]}))) Union All With Distinct $#usn7[..9e0][..123.654] Order By 0.0[..Count ( * )][..`1esn`] Desc Limit 0x0 In 0.e0 In #usn8;"), + octest:ct_string("Create #usn7=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2),(((:_usn4{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)));"), + octest:ct_string("Match (((`` :#usn8:`1esn`{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1})<-[_usn3?:_usn3|:`7esn`]->(#usn7 )<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(`5esn` :`3esn`))),((#usn7 :_usn3)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) Union All Unwind _usn3[`5esn`..][usn2..] As #usn7 Unwind $1000 Starts With $`3esn` Starts With 0.e0 As usn1;"), + octest:ct_string("Unwind 9e1[$1000][7] As `8esn` Create (((:_usn4{`8esn`:01234567[Null..$_usn3]})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->(`5esn` :`3esn`{``:`` Is Null,`8esn`:$@usn6[$0..9e12][.e12..Null]})<-[`7esn`:`4esn`|@usn5 *12..]->({`4esn`:.e1[..$`3esn`][..01]}))),_usn4=(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-(:#usn8:`1esn`{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}) Return $_usn3[_usn4..] Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Union Unwind .12[..usn2][..12e12] As `5esn` Unwind {#usn8:.0 Is Null Is Null}[..(_usn3 :@usn6{usn2:0Xa =~False =~@usn5,`3esn`:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})][..{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}] As `2esn`;"), + octest:ct_string("Merge ((:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})<-[*..{`7esn`:$``[..\"d_str\"][..$#usn8],`7esn`:$`` Contains $`2esn` Contains $usn2}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) With Distinct *,1e1 Is Not Null Is Not Null Where `7esn` Ends With $7 Ends With $@usn5 Remove None(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*)).@usn5,_usn3:_usn3 Union Remove Extract(usn2 In 7[12] Where $_usn3 Is Null|`3esn`[..0X0123456789ABCDEF][..0x0]).#usn8!,Single(`6esn` In $`6esn`[``..][Count(*)..] Where 1.e1 Ends With $_usn4 Ends With #usn7).`3esn`! Detach Delete `4esn`($_usn4 Starts With $1000 Starts With 12)[{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}],$`3esn`[.e1][_usn4],$7[$12..12e12][1.e1..9e1] With $999 In 12 In 1.e1 Order By (`5esn` :`1esn`:_usn4)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})[[.e0 Is Null Is Null,9e1 Contains 12,'s_str' Ends With `7esn` Ends With 010]..] Descending,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} Desc Limit 00 In @usn6 In 0 Where $@usn6 In @usn6 In 1e1;"), + octest:ct_string("Return Distinct *,All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],12 In $usn1 In 7 As `8esn` Skip None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1) Limit $@usn5 Starts With .e1 Optional Match ((@usn5 {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})) Union All Unwind [#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null) As `3esn`;"), + octest:ct_string("Return Distinct .e0 Ends With $123456789 Ends With 0xabc Limit 's_str' Starts With 1e1 Starts With $0;"), + octest:ct_string("Unwind `8esn`[0.e0..] As #usn7;"), + octest:ct_string("Delete Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null],_usn3[`2esn`..0X7][0.e0..$`3esn`],'s_str' Ends With _usn4 Ends With 0e0;"), + octest:ct_string("Merge @usn5=(((:`7esn`{#usn7:0 =~1.e1 =~$#usn7})-[?:`2esn`|`4esn`{@usn5:0.e0}]-(`1esn` $`4esn`)-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}))) On Match Set #usn7:_usn3,`` =None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6) =~Single(`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8) =~(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]}) Return Distinct *,$#usn7[..0Xa] As #usn8,0X7[`2esn`..] As `5esn` Order By $7[999][usn1] Asc Create usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})),((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'}));"), + octest:ct_string("Return $7[999][usn1] As `6esn`,0 Ends With Count(*) Ends With False As `7esn` Order By Any(#usn7 In 9e0[$1000] Where .e0 Is Null) =~Extract(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0|$`3esn` In $usn2) =~{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Descending Skip 010[...12] Limit $`1esn` In .e0 Remove {`4esn`:`7esn` Is Null}.`4esn`! Union Remove [12e12 =~1e1].`2esn`!;"), + octest:ct_string("Create (:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(`3esn` :_usn4{`3esn`:12[..0e0][...e1],`4esn`:.0 Is Null Is Null}) Match (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}))) Optional Match _usn4=(((`2esn` )-[?{_usn3:01[`8esn`..9e12][.12..0]}]->(`8esn` {@usn5:#usn7[..07],usn2:999 Contains 0 Contains $`5esn`})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]->(_usn3 :`5esn`))),((:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->({@usn6:12.e12 Contains #usn7 Contains $_usn4,usn2:$`5esn` =~$0 =~``})-[#usn7 *01..123456789]->(:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})) Union Merge ((:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[`2esn`?:usn1|`4esn` *00..0Xa]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[:`2esn`|`4esn` *1000..0X0123456789ABCDEF]-(usn2 :`6esn`:_usn3{@usn5:$0[0Xa..$123456789]})) On Match Set `1esn`:@usn5,All(@usn5 In 's_str'[0..] Where `2esn`[..01][..True]).`2esn`! =`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]],`2esn`+=$_usn4[01..][$_usn4..] On Match Set #usn7+=.e0[..9e12][..07],`4esn`(True[$_usn3..],$999[``]).usn2 =123456789 Is Null Is Null,@usn5 =01[07..][1.e1..] Remove Filter(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1).`5esn`! With Distinct $`1esn`[Null][True] As usn2,Count ( * )[9e12] Skip [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] Limit 0X7[0.12..] Where 0e0[01][$`7esn`] Union Unwind None(@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn2..][$123456789..]) =~{`2esn`:7[12],usn1:.12[0X7..][12e12..]} =~Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)|True[0xabc..01234567][$`8esn`..$@usn6]) As `6esn`;"), + octest:ct_string("Merge ((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) On Create Set #usn8+=[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null),@usn5+=.e0 =~$`7esn` =~0X0123456789ABCDEF,``+=(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) On Match Set `6esn`(Distinct 0Xa[$`8esn`..][$_usn4..],0xabc In Null).`2esn`! =(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[? *..010{#usn8:False Is Null}]->(#usn7 {#usn7:1.e1 Starts With 9e12})<-[:_usn3|:`7esn` *00..0Xa]-(`1esn` $`4esn`)[..[0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]]][..(:`2esn`{_usn3:@usn5[0.0..0X7]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null).`7esn`? =Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])],Extract(`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]).@usn5 =$@usn6 Ends With 123456789 Ends With 12.0 Return *,Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null As usn1,00 Contains Count ( * ) Contains 0x0 As `5esn` Limit .e0 Union All Return Distinct *,1e1 Contains 0.e0 Contains 9e1 Limit None(#usn7 In 9e0[$1000] Where $1000 Is Not Null) Is Null Is Null Merge ((`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})) With 's_str' Order By $12[9e0..$999] Asc,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip #usn8[`8esn`..] Limit .12 In `8esn` In $#usn8 Where 12.e12 Contains #usn7 Contains $_usn4;"), + octest:ct_string("Remove Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2).`2esn`! With 0.e0 Is Not Null Is Not Null As _usn4,0X0123456789ABCDEF In $usn2 In `4esn`,$usn1 Is Not Null Is Not Null Order By 01234567[$@usn6..$#usn7][123456789..12e12] Desc,Single(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1)[Filter(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])..][Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.0 In 123.654 In _usn4)..] Ascending Skip Null[..0] Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]) Where 9e12 Starts With 1e1 Match (:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}),`7esn`=((_usn3 :`7esn`)) Where .e12[@usn6..][010..];"), + octest:ct_string("Delete $123456789[0X0123456789ABCDEF],'s_str'[0..] Union Create usn2=((#usn7 {`8esn`:`7esn` In 010 In usn1})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})),@usn5=(:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']});"), + octest:ct_string("Detach Delete $usn2[`2esn`..],`8esn`(Distinct #usn8 Is Not Null Is Not Null,`2esn` In 9e0 In 7) Starts With None(usn2 In 7[12] Where 123456789 =~12 =~'s_str') Match #usn7=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2),(((:_usn4{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})<-[`2esn`? *01..123456789]-(`2esn` :@usn6))) Where 999[123.654..$usn2][Count ( * )..0x0] Merge (((@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`})<-[`3esn` *7..]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[? *01..123456789]-(usn1 :_usn4{`4esn`:`7esn` Is Null}))) On Match Set usn1(True Contains 's_str' Contains $usn1,.e0 Is Not Null Is Not Null).@usn5! ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]};"), + octest:ct_string("Create _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),(((`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})<-[:`2esn`|`4esn` *0X0123456789ABCDEF..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(@usn6 :`2esn`{`4esn`:$999[0Xa..][9e1..]}))) Merge #usn8=({#usn7:12e12 In $`5esn`}) On Create Set @usn6+=None(`3esn` In `2esn`[..01][..True] Where usn1 In ``)[None(usn2 In 7[12] Where 12e12 =~$`7esn`)..],Single(#usn7 In 9e1[$`1esn`..] Where Count ( * ) In 0.12).@usn6? =7[0e0..] On Create Set ``+=$``[7],[@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1|$`4esn` Contains .e0 Contains 0Xa].`` =$`7esn`[123456789..$1000][Count ( * )..$7] Union All Return *,12 Ends With True Ends With @usn6,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By $123456789[12e12..9e0] Asc,1e1 Contains 0.e0 Contains 9e1 Ascending,.e12[@usn6..][010..] Desc Limit $`7esn` In False In $`1esn`;"), + octest:ct_string("Return Distinct *,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``) Is Null Is Null Order By Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Ascending,$@usn5[..$#usn7] Descending,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip 9e1 Starts With Count ( * ) Limit {`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..];"), + octest:ct_string("Detach Delete Extract(`6esn` In $`6esn`[``..][Count(*)..] Where $@usn5 Starts With `5esn` Starts With 01234567|0.e0[..$7]) Is Null Is Null Optional Match `1esn`=(`5esn` :`5esn`{#usn7:``[$`3esn`]}) Where $`8esn`[..True][.._usn4];"), + octest:ct_string("With *,12 Ends With True Ends With @usn6,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By $#usn8[True][9e0] Asc,All(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7) Contains `2esn`(Distinct 0x0[0.0],0Xa =~False =~@usn5) Contains Single(#usn7 In $999 In 1e1 Where $@usn6 =~#usn7 =~True) Descending Limit $`5esn`[$`3esn`..] Union Return Distinct .0 Starts With `1esn` As #usn7,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} As usn2,$@usn5[..$#usn7] Limit None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[Extract(#usn7 In 9e0[$1000] Where .e1 In 123456789)][{_usn3:01[`8esn`..9e12][.12..0]}] Unwind `7esn` Is Null As @usn5 Union All With Distinct *,$@usn6 Ends With 12.e12 Ends With @usn5 As `3esn` Order By .e0 Starts With $@usn6 Starts With $7 Descending Limit All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where False[$usn1][0x0]) In [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null|9e12[9e1]] In [12.0 Is Null,$_usn4[..$_usn4][..`7esn`]] Detach Delete $`8esn`[999],usn2 Ends With $`4esn` Return Distinct *,True In (#usn8 :`6esn`:_usn3)<-[`2esn`?:_usn4{#usn8:$12[9e0..$999]}]->({``:.e1 Starts With 12.e12 Starts With `2esn`}) As `5esn`,Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null];"), + octest:ct_string("Delete .12 In `8esn` In $#usn8 Unwind .e0[9e12..] As @usn5 Remove `4esn`($`4esn` Contains _usn3 Contains `8esn`).`4esn`! Union Detach Delete _usn4(Distinct 0X0123456789ABCDEF Ends With 01 Ends With ``,$`3esn`[..0xabc][..$7]) In Single(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0) In Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7]),Count(*) Ends With usn1 Union With Distinct `5esn`[..123.654][...e12] As @usn6,(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) As `2esn`,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As `1esn` Skip $`3esn`[..0X0123456789ABCDEF][..7] Limit 12.0 Starts With .12 Starts With `6esn` Where ``[usn1][`5esn`] Delete `2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Return _usn4 Contains $_usn3 Contains .e1,$`4esn`['s_str'..] As `` Limit None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`])[Single(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Is Not Null Is Not Null)];"), + octest:ct_string("Unwind $7[999][usn1] As `` Match (((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Where .e1[..\"d_str\"][..$123456789] Unwind 9e0 Is Not Null Is Not Null As `4esn`;"), + octest:ct_string("Optional Match _usn4=(`5esn` :``:usn2)-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}),`2esn`=(:#usn8:`1esn`$`7esn`) Union Remove `3esn`:#usn7:`5esn`,[$123456789 In 0.12]._usn3!,None(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).@usn6! Merge `4esn`=({`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}) On Create Set #usn7+=Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] On Match Set `2esn` =9e1 Ends With Count(*) Ends With $7 Union All With *,.e12[.12..],_usn4 Ends With _usn4 Ends With 9e0 As `` Skip None(`3esn` In `2esn`[..01][..True] Where usn1 In ``)[None(usn2 In 7[12] Where 12e12 =~$`7esn`)..] Limit Null[..0];"), + octest:ct_string("Remove Any(@usn5 In 's_str'[0..] Where #usn7[0.12..])._usn3,[`6esn` In $`6esn`[``..][Count(*)..] Where @usn5[0.0..0X7]].``! Return Distinct *,Null[..010][..1000] As #usn7,9e12 Ends With 12e12 Ends With 12 As `` Order By 1000[$7..][_usn4..] Desc Skip $`3esn` Ends With 01234567 Limit 7 Ends With .12;"), + octest:ct_string("Unwind $_usn4 =~_usn3 As _usn3 Merge usn2=(({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`)) Unwind $#usn7 Ends With \"d_str\" As `7esn` Union All Merge `5esn`=(((usn1 :`8esn`)<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[? *0xabc]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]}))) On Create Set Any(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]).`4esn`? =12.0[0X0123456789ABCDEF..],Extract(@usn5 In 's_str'[0..] Where $#usn8[12.e12..`8esn`][12.0..0.0]|123.654[$0..0X7][Null..#usn8]).#usn8! =12 Starts With \"d_str\" Starts With 00,`2esn` =12.0[$12..$_usn4] Unwind 0x0[..9e0] As #usn8 With Distinct 0e0[``],0X7 In $#usn7 Limit 12e12[12e12][$#usn7];"), + octest:ct_string("Remove {@usn5:0e0 Starts With 999 Starts With `2esn`,#usn7:Count ( * ) In 0.12}._usn4,Any(usn2 In 7[12] Where 123456789 =~12 =~'s_str').`3esn`?,{`2esn`:`7esn` Is Null}.`6esn`! With Distinct [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`) Optional Match usn2=(`8esn` :`6esn`:_usn3),#usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Union Optional Match `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})),usn2=((#usn7 {`8esn`:`7esn` In 010 In usn1})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})) Create (#usn7 {`6esn`:$`2esn` Contains Count(*)})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`}) Union All Create (_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1});"), + octest:ct_string("Unwind .0 Contains .e12 Contains 0 As `6esn` Detach Delete `4esn` Contains 9e0,$`1esn` =~999,$@usn5 Is Null Is Null;"), + octest:ct_string("Match (:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}),`7esn`=((_usn3 :`7esn`)) Where 12 Starts With True Starts With 12e12 Union Unwind None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])[..[_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4]] As `4esn`;"), + octest:ct_string("Remove [#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|Count(*) Is Null].#usn7,{``:0Xa =~False =~@usn5,`8esn`:.12[123.654..]}.`6esn`!,Any(#usn7 In $999 In 1e1 Where usn1 =~$`7esn`).`1esn`! Match (_usn3 :`5esn`{#usn8:0xabc In 010 In #usn7}),`3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) Union All With 12 Starts With True Starts With 12e12 As _usn4 Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc Union Remove None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]).`4esn`,[@usn6 In 010[`5esn`] Where 9e1 Ends With Count(*) Ends With $7|`1esn` Is Not Null Is Not Null].`` Match `6esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Where `` Is Null Create (_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]}),`2esn`=(:#usn8:`1esn`$`7esn`);"), + octest:ct_string("Remove `8esn`:@usn5,Single(#usn7 In 9e0[$1000] Where $1000 Is Not Null).`5esn` Merge `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] On Match Set (`3esn` {usn2:$usn2[`4esn`..9e12]})<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1).#usn7! =_usn4 Starts With `` Starts With 1000,Extract(`3esn` In `2esn`[..01][..True] Where 0X7[..$`8esn`]|$#usn7 Starts With 01234567 Starts With $0).`5esn`! =@usn6(Count ( * ) In True In @usn5)[None(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)] Merge ((@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]->(_usn4 )-[#usn7?:`7esn`|:`2esn` *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})) On Create Set #usn7 =[$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1],@usn6+=0.12[$0..$usn2] On Create Set `4esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1 =(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Union Match (((`` $`6esn`)<-[usn2*{_usn3:0.e0[0X0123456789ABCDEF..],`8esn`:$`5esn` In 07 In 00}]-(`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}))),(((`` $`6esn`)<-[usn2*{_usn3:0.e0[0X0123456789ABCDEF..],`8esn`:$`5esn` In 07 In 00}]-(`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}))) Where $@usn6 In @usn6 In 1e1 Create usn1=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) Merge `6esn`=((:_usn3{`7esn`:$999 Ends With .e0})<-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]-(#usn8 :_usn4)-[:`` *0..01]-(`3esn` :`1esn`:_usn4{#usn8:1e1 Is Not Null Is Not Null}));"), + octest:ct_string("Merge #usn7=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2) On Match Set `2esn` =`3esn`[..0X0123456789ABCDEF][..0x0] On Match Set _usn4(Distinct $#usn7 In $@usn5 In $`1esn`,usn2 =~usn1 =~Count ( * )).`8esn`! =.12 Starts With _usn3 Starts With $``,usn1 =[0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]][{usn2:$@usn6 Ends With `1esn`,_usn3:`7esn`}..][{@usn6:1e1 Is Not Null Is Not Null,`8esn`:$`1esn` Starts With $`4esn` Starts With $_usn3}..] Create `4esn`=((`` {#usn7:#usn8 Is Not Null Is Not Null})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})) Delete Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] Union All Create (`3esn` {usn2:$usn2[`4esn`..9e12]}),`4esn`=(usn1 :`7esn`) Detach Delete $usn2[0.e0] Create (:usn2)<-[? *01..123456789{`8esn`:usn2 =~7,@usn5:`6esn` Ends With _usn4 Ends With False}]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`4esn`:usn2]->(`3esn` :_usn4),`8esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Union All Merge ((_usn3 :usn2)) On Match Set Any(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0).`5esn`! =.e12 Ends With 0Xa Ends With 0xabc On Match Set `5esn`(Distinct .12[123.654..]).`3esn` =01234567 In 123456789 In 12,`6esn` =[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null;"), + octest:ct_string("Merge (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) On Match Set [$0[123.654..0.e0],01234567[Null..$_usn3]]._usn4! ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,None(#usn7 In 9e0[$1000] Where 00[12..$`6esn`]).`7esn`? =`4esn`(Distinct)[`2esn`($`2esn`[..$`3esn`][..12e12])][Extract(@usn6 In 010[`5esn`] Where 1.e1[$usn1]|.e12[..999][..@usn5])],`5esn`+={`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}[Extract(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]|.e1[..$`3esn`][..01])..] Merge ((`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})) On Match Set `1esn` =All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null Union All Unwind $@usn6 In @usn6 In 1e1 As #usn7 With usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Skip $@usn6 Ends With `1esn` Limit 9e1 Ends With Count(*) Ends With $7 Delete $0[12.0...e1],_usn4[.12..$usn2][$_usn3..123.654],07[..07][..0X7];"), + octest:ct_string("Create #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),((:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Delete Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa) In Extract(`3esn` In 9e1 Contains $999 Where 0e0 Starts With 999 Starts With `2esn`|9e1 Ends With Count(*) Ends With $7),Any(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) =~[#usn7 In 9e1[$`1esn`..] Where 0Xa Ends With $`3esn` Ends With $1000|$@usn5 Contains 's_str' Contains \"d_str\"] =~Extract(@usn6 In False Contains 0 Contains $`6esn` Where $`6esn` Starts With .e12 Starts With $`1esn`|12e12 In 123456789) Remove [12.0 Starts With .12 Starts With `6esn`,usn2 Contains $0 Contains .0,$#usn7 In $@usn5 In $`1esn`].`7esn`!,Single(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]).`3esn`? Union All Unwind $_usn4 =~$`1esn` =~`2esn` As #usn8 Create (((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),usn1=(`7esn` :`3esn`{`2esn`:999[123.654..$usn2][Count ( * )..0x0]})-[`2esn`?:usn1|`4esn` *00..0Xa]-(`4esn` :`4esn`:`6esn`) Merge ((`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})) On Match Set `1esn` =All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null;"), + octest:ct_string("Remove [`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5|`5esn`[..True][..0.e0]].`2esn`!,None(`8esn` In 123456789 =~@usn6 Where $`5esn` =~$`8esn` =~usn2)._usn3? Union All Remove Extract(@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1|True Contains 's_str' Contains $usn1)._usn4?,All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]).`4esn`;"), + octest:ct_string("Merge `7esn`=(:_usn3{@usn5:$1000 Starts With $`7esn`})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]->(#usn8 :``:usn2) On Create Set #usn8+=`8esn` In $1000 Merge #usn7=(({@usn6:0x0[Count(*)..@usn6][Count(*)..0Xa],`7esn`:0.0 =~9e0 =~$0})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})) On Match Set [$usn2 =~9e1,$`6esn` Is Null].`8esn`? =(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),usn2 =$@usn5 Ends With @usn5 Ends With 0xabc,#usn8+=$`1esn` Starts With Count(*) Union Merge ((usn1 :_usn4{`4esn`:`7esn` Is Null})<-[`8esn`?:`2esn`|`4esn` *01..123456789{`8esn`:$`4esn` Is Null Is Null,usn1:$1000 Starts With $`3esn` Starts With 0.e0}]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})) Match ((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Delete (`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Is Not Null;"), + octest:ct_string("With *,None(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With Filter(`5esn` In 0X7 In $#usn7 Where 0x0[0X7]) Ends With Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) As #usn7,@usn5 Contains #usn8 Contains 12.0 Order By 12[..0e0][...e1] Descending Where 0X0123456789ABCDEF Contains 12e12 Contains 12.e12 Unwind usn2[..$usn1][..$#usn8] As `` Return *,'s_str' Ends With `7esn` Ends With 010 Order By #usn7[``] Desc,`7esn` Starts With @usn5 Ascending Skip @usn6 =~999 =~@usn5 Union Remove Filter(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`).#usn7,[usn2 In 7[12] Where 12e12 Contains `2esn`].@usn5! Union All Merge @usn5=((:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})) Detach Delete 12.e12 =~.0 =~usn1;"), + octest:ct_string("Detach Delete `2esn`[$@usn6..][Null..],$1000 Starts With $`7esn`;"), + octest:ct_string("Detach Delete Extract(@usn6 In 010[`5esn`] Where 00[$usn1..]|_usn3[$usn2..][$``..])[Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])],_usn4[$usn1..01234567][123.654..`5esn`],None(#usn7 In 9e0[$1000] Where $_usn3 Is Null) In [@usn5 In 's_str'[0..] Where $#usn8[12.e12..`8esn`][12.0..0.0]|`4esn` Ends With 12 Ends With .12] In [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12] Return *,[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]),01234567[$`2esn`][0Xa] As `5esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc Skip $@usn6[123.654..00] Merge (((_usn4 :#usn7:`5esn`)<-[#usn8 *0x0..]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})<-[`2esn`?:usn1|`4esn` *00..0Xa]->(`6esn` :#usn8:`1esn`{`6esn`:usn1[..$@usn6][..00]})));"), + octest:ct_string("Optional Match usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})),((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Where $123456789[...12][..@usn6] Detach Delete `2esn`[$@usn6..][Null..],$1000 Starts With $`7esn` Union All Match `5esn`=(`3esn` :_usn4) Remove [$123456789 Starts With 0.12 Starts With Null].`4esn`!,(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`}).#usn8;"), + octest:ct_string("Remove [999 Is Not Null Is Not Null,123.654 In $`7esn`].`6esn`,[#usn7 In 9e1[$`1esn`..] Where $`7esn`[$_usn4][.e0]|.0[..'s_str'][..01234567]].usn1?,[`6esn` In $`6esn`[``..][Count(*)..]|.e12 Starts With $12 Starts With .e12].`7esn`!;"), + octest:ct_string("Merge `7esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)) On Create Set All(usn2 In False[$usn1][0x0] Where 0.0[usn1..]).`8esn`? =_usn4 Starts With 1000 Starts With $usn2,`7esn`+=12 In $usn1 In 7,Any(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1).`2esn`! ={_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] Merge (#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[?:`7esn`|:`2esn`]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]}) On Match Set `2esn` =`3esn`[..0X0123456789ABCDEF][..0x0] On Create Set `2esn` =$@usn5[0.0][0X0123456789ABCDEF],@usn6+=[`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})] Remove Any(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]).@usn6?,@usn5(Distinct Count ( * ) Ends With $123456789).`6esn`? Union Return 00[$`1esn`..][@usn6..] As _usn4 Limit @usn5[$`6esn`..][$999..] Merge `6esn`=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})));"), + octest:ct_string("Merge `3esn`=(usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})-[@usn5?{#usn7:12e12 In $`5esn`}]->(`8esn` :`8esn`) Unwind 0.12[$0..$usn2] As `7esn` Union All Remove Any(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null).@usn6!,[$0 In `3esn` In 07,123456789 Contains 0.0 Contains $@usn6].#usn8! Union Optional Match #usn8=(({`8esn`:usn2 Starts With .0,@usn5:Count(*) In 12 In `6esn`})<-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]->({`8esn`:usn2 Starts With .0,@usn5:Count(*) In 12 In `6esn`})-[`7esn`?]->(:#usn7:`5esn`)),@usn5=((:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})) Match @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) With Distinct *,999 Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains {_usn3:123.654 In $`7esn`} As `6esn`,.e0 Is Not Null Is Not Null As `7esn` Order By _usn3 In $`8esn` In @usn6 Desc;"), + octest:ct_string("Return Distinct 12.e12[..$`6esn`] As `7esn`,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] As ``,1.e1 Contains `6esn` Contains 0.e0 Skip Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])] Merge usn2=((`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5)) On Create Set [$``[True]].#usn8! =[0.0 Is Not Null,$`4esn`[`8esn`],$123456789[12e12..9e0]] =~.e12 On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] Union Remove `8esn`:@usn5,Single(#usn7 In 9e0[$1000] Where $1000 Is Not Null).`5esn` Merge `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] On Match Set (`3esn` {usn2:$usn2[`4esn`..9e12]})<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1).#usn7! =_usn4 Starts With `` Starts With 1000,Extract(`3esn` In `2esn`[..01][..True] Where 0X7[..$`8esn`]|$#usn7 Starts With 01234567 Starts With $0).`5esn`! =@usn6(Count ( * ) In True In @usn5)[None(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)] Merge ((@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]->(_usn4 )-[#usn7?:`7esn`|:`2esn` *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})) On Create Set #usn7 =[$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1],@usn6+=0.12[$0..$usn2] On Create Set `4esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1 =(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]);"), + octest:ct_string("Unwind @usn5[$`6esn`..][$999..] As @usn5 Unwind 0x0[..9e0] As #usn8 Union All Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] On Create Set `6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn1+=`4esn`[$_usn3..$`7esn`] Union All Detach Delete 0X7[.0];"), + octest:ct_string("Remove [$12[$usn1..][Count(*)..]].`8esn`?,{`2esn`:.e12 Starts With $12 Starts With .e12,usn2:0e0 =~7 =~12.0}.`3esn`? Merge ``=(:_usn3{`7esn`:$999 Ends With .e0})<-[`8esn`?:`2esn`|`4esn`{usn2:#usn8[`6esn`..][$``..]}]-(@usn6 {`6esn`:$`5esn` =~usn1,`5esn`:$`` Starts With $1000 Starts With @usn6})-[?{_usn3:010[`5esn`],_usn4:#usn8 =~.e0}]-(#usn8 :`3esn`{`5esn`:$@usn6 Ends With `1esn`}) On Match Set `7esn`+=$`5esn` Is Not Null,Any(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7])._usn3 =.e12[`2esn`..010],`8esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null Union All Match #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}),((:#usn7:`5esn`{_usn4:$usn2 =~9e1})<-[@usn5?:usn2 *0..01]->(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})) Where 9e1[usn1..0x0][12.e12..12.0] Optional Match `6esn`=(((_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})-[``?:_usn4]-(_usn4 :_usn4))) Create `8esn`=(`4esn` :usn1:`3esn`) Union All Remove [0.e0[1000.._usn4][.e1..usn1],$`1esn` =~999,07[_usn3..][`6esn`..]].usn1!,usn2:`4esn`:`6esn`,Extract(usn2 In False[$usn1][0x0] Where $`7esn`|07 Is Null).#usn7! Return Distinct $0[010..] As `` Order By `5esn`(Distinct .e0[01234567..$`8esn`]) =~All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) =~[999 In #usn8 In $``,.e0 Is Null Is Null] Ascending Skip count(Distinct 0X0123456789ABCDEF Contains 12e12 Contains 12.e12)[..{usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]}][..(:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null})] Remove `4esn`:`8esn`,[`1esn`].#usn8?,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where `1esn`[0.12..][@usn6..]).usn2!;"), + octest:ct_string("Create ((#usn7 {`6esn`:$`2esn` Contains Count(*)})-[?:_usn4]->(`2esn` :usn2)) Detach Delete @usn6[..$@usn5] Create usn1=((#usn8 :_usn3)<-[? *12..{#usn7:`6esn` Ends With _usn4 Ends With False,usn1:1000[12e12][`5esn`]}]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07})),`1esn`=((`6esn` {`3esn`:$`2esn`[0..123456789][``..`1esn`],`7esn`:$0[0Xa..$123456789]})<-[? *00..0Xa]->(usn2 :@usn5)-[?:`2esn`|`4esn` *0Xa{#usn7:1.e1 Starts With 9e12}]-(:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) Union All With Distinct `2esn`[$usn2][12.0],Single(#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6])[Filter(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])..] As _usn4 Limit `4esn` In 010;"), + octest:ct_string("Detach Delete @usn6 Is Not Null Is Not Null,01 Contains usn2 Contains 0X0123456789ABCDEF,None(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])[Any(`3esn` In `2esn`[..01][..True] Where $`3esn`[..0xabc][..$7])][$#usn7] Union With (`2esn` {`7esn`:999 In 0e0})<-[`8esn`?:`2esn`|`4esn` *01..123456789{`8esn`:$`4esn` Is Null Is Null,usn1:$1000 Starts With $`3esn` Starts With 0.e0}]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[ *0X7..{#usn8:.e0 Contains $#usn8}]->(`2esn` :`6esn`:_usn3) In (`8esn` :`6esn`:_usn3)-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(_usn4 {_usn4:123.654 In 12})-[?:#usn8|:`3esn` *0x0..]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) In {_usn4:.e0 Contains $#usn8,@usn6:1000[12e12][`5esn`]},`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] As @usn5 Order By Count(*) Is Null Ascending,#usn8[..`8esn`] Ascending,None(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1) Contains `3esn`(Distinct $123456789[...12][..@usn6]) Contains {``:`1esn` Starts With 0xabc Starts With $usn2} Descending Skip (`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[``? *0x0..{`6esn`:$`2esn` Contains Count(*)}]->(`6esn` :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`3esn` {``:9e1 Is Null,usn1:9e0[Count(*)..0.12][$`1esn`..12.0]})[..{`6esn`:.e12 Is Null Is Null}];"), + octest:ct_string("Detach Delete [$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa),`8esn` Is Null,.0 Starts With `1esn` Merge ((#usn7 :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] Union With Distinct *,12.e12 Contains `6esn`,12[``...e12] As `6esn` Limit Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null] Optional Match `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}),(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}) Where `2esn` =~.e12 =~0X0123456789ABCDEF Remove Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|@usn5 Contains 9e0)._usn4?;"), + octest:ct_string("Optional Match `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((`6esn` :`5esn`)<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`5esn` :`4esn`:`6esn`)) Where 07 Is Not Null Is Not Null Merge @usn5=(((_usn3 :`6esn`:_usn3)-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})));"), + octest:ct_string("Unwind \"d_str\"[#usn8] As #usn7 Return *,$_usn4[usn2..] As @usn5,@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])] Order By Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[..[#usn7 In True Contains 's_str' Contains $usn1 Where Count(*) Ends With usn1]][..Filter(usn2 In 7[12] Where #usn7[0.e0..]['s_str'..])] Ascending,{@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Asc,usn2[1.e1] Descending Delete `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Is Null;"), + octest:ct_string("Merge ((usn2 :``:usn2)<-[usn1?:`1esn`|`3esn`{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->(:#usn8:`1esn`{_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})<-[`1esn`?:usn1|`4esn` *00..0Xa]-(`6esn` )) On Create Set None(`8esn` In 123456789 =~@usn6 Where Count(*) Ends With usn1).`7esn`! =All(usn2 In 7[12] Where #usn8 Is Null Is Null)[[usn2 In 7[12] Where #usn7[.e0]]..];"), + octest:ct_string("Merge (@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) On Match Set usn1 =$usn1 Starts With usn1 Starts With True With None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,9e1[@usn5][$usn1] As `5esn`,`4esn` Starts With 0e0 As `7esn` Order By 1.e1 Contains `6esn` Contains 0.e0 Descending,07[..07][..0X7] Descending Limit Single(_usn4 In 12e12 In 123456789 Where 0e0 =~7 =~12.0) Starts With Extract(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]|9e12 =~@usn6) With *,All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] As `3esn`,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[usn2(Distinct #usn7 Contains $0 Contains $usn2,0.e0)..] As @usn6 Order By $`1esn` Ends With 0X0123456789ABCDEF Ascending Limit `4esn` Contains 9e0;"), + octest:ct_string("Return 00[$`1esn`..][@usn6..] As _usn4 Limit $@usn5[`1esn`..][$999..] Union With Distinct $@usn5,0.12[0Xa][$`7esn`] As `4esn`,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As _usn3 Order By 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Asc,`6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] Desc Skip 01[$`7esn`..$@usn6] Union All With (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By 0Xa[..Count ( * )][..$123456789] Desc,`5esn`[$`7esn`..$@usn5] Ascending Skip usn2[..$usn1][..$#usn8] Limit 12.0 Ends With usn2 Ends With 0 Remove [@usn6 In False Contains 0 Contains $`6esn` Where 0.0 =~9e0 =~$0|.e0[01234567..$`8esn`]].@usn6?,({`4esn`:.e1[..$`3esn`][..01]})<-[`1esn`?:`8esn` *7..]-(:``:usn2{``:True[$_usn3..]}).`6esn`,All(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7).`6esn`? Return *,0.e0 =~00 As `3esn` Order By 's_str'[0x0..1.e1] Asc,usn1[False..`5esn`][$1000..$12] Ascending;"), + octest:ct_string("Create ((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})),(((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[?:_usn4]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1}))) Union All With .0 Starts With `1esn` As #usn7,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} As usn2,$@usn5[..$#usn7] Limit None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[Extract(#usn7 In 9e0[$1000] Where .e1 In 123456789)][{_usn3:01[`8esn`..9e12][.12..0]}] Detach Delete 9e1[_usn3] Union Return *,`6esn`[$1000][`3esn`],$`1esn`[Null][True] As `7esn` Order By `5esn` Contains `5esn` Contains $_usn3 Ascending,[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]] In (`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(:#usn7:`5esn`)-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:#usn8:`1esn`$`7esn`) In {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]} Asc,#usn7 Starts With $123456789 Starts With 12e12 Asc Match ((:`5esn`{`8esn`:$`1esn` Starts With Count(*),_usn3:usn1[...e12][..1.e1]})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(`4esn` :_usn4)) Merge (((:#usn7:`5esn`{_usn4:$usn2 =~9e1})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`)<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})));"), + octest:ct_string("Create `7esn`=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}),_usn3=((:``:usn2{`5esn`:1.e1[`8esn`],`1esn`:.e0})-[`3esn`:`2esn`|`4esn`]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`6esn`?:_usn3|:`7esn` *..010]->(:_usn3{_usn4:.e1[7..][9e0..]})) Union Remove #usn8(Distinct 0X0123456789ABCDEF Contains 12e12 Contains 12.e12,Count(*) Starts With usn2 Starts With `7esn`).usn1,Single(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..]).#usn7?,Any(_usn4 In 12e12 In 123456789 Where `3esn`[7..0.e0][0.0..123456789]).`8esn`! Return $`4esn`[`4esn`][Count(*)] As `8esn`,$usn1[`2esn`..][$`2esn`..] As _usn3,_usn4[`7esn`] As usn2 Skip 01[..$`8esn`][..9e0] Limit 0X7[.0] Union With *,1.e1 Ends With $#usn7 As usn2,@usn5[01][@usn5] Skip $`5esn` Limit (`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Is Not Null;"), + octest:ct_string("Unwind `6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] As @usn5 Return Distinct $@usn6 Ends With 12.e12 Ends With @usn5 As usn2,``[usn1][`5esn`],`7esn`[..$`6esn`] Order By $@usn6 In @usn6 In 1e1 Desc,.e1[..$`3esn`][..01] Desc Limit Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Unwind $`5esn` Starts With 0.0 Starts With .e0 As `2esn`;"), + octest:ct_string("Unwind Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[{`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}] As `5esn` Union All Create (((usn2 {`5esn`:$@usn6 Ends With `1esn`})<-[`2esn`? *01..123456789]-(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]})<-[? *7..{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]-(#usn7 :``:usn2))) Union Return 9e1[$`1esn`..] As `` Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,{@usn6:$`3esn`[.e1][_usn4]}[`8esn`(Distinct $``[True])..] Desc Skip 010[`5esn`];"), + octest:ct_string("Unwind `8esn`[..$#usn8] As @usn6 Union All Remove All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $usn1 Ends With _usn4 Ends With `2esn`).`8esn`!,[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|1.e1 In 1000 In _usn3].`2esn`?;"), + octest:ct_string("Merge `4esn`=(({#usn7:$@usn6[$0..9e12][.e12..Null]})) On Create Set count(Count(*) Is Null,`` Is Null).`8esn` =0Xa In $`6esn`;"), + octest:ct_string("Optional Match ((`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Delete [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] In [12e12 In 123456789,`1esn`] In All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),True[..#usn8],0.12[0Xa][$`7esn`] Union All Delete `1esn` Starts With 9e1,{`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..],999 Is Null Is Null;"), + octest:ct_string("Unwind 0x0[..9e0] As @usn6 Create (_usn4 :`6esn`:_usn3)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}),#usn8=(:@usn6{@usn6:010 Starts With 0 Starts With 0.0,_usn4:07[$`2esn`..9e12][$`4esn`..9e12]}) Union All With Distinct Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Order By Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Asc,12.e12[..9e1][..$_usn3] Descending,True In (#usn8 :`6esn`:_usn3)<-[`2esn`?:_usn4{#usn8:$12[9e0..$999]}]->({``:.e1 Starts With 12.e12 Starts With `2esn`}) Descending Where $#usn7[..$`4esn`][..01] Match `3esn`=(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0}),((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[_usn3?:`8esn` *1000..0X0123456789ABCDEF{@usn5:07 Is Not Null Is Not Null}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Where `5esn`[$`7esn`..$@usn5] Union All Delete `4esn`($_usn4 Starts With $1000 Starts With 12)[{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}],00[$`1esn`..][@usn6..],0.12 Starts With $`8esn` Starts With @usn5;"), + octest:ct_string("Create (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3) Remove ``:`5esn` Detach Delete True Contains 's_str' Contains $usn1,$`5esn`[..00] Union All Unwind 7 =~0.12 As `3esn` Remove (#usn7 {_usn3:0.e0 Starts With .0 Starts With 123456789,_usn4:'s_str' Ends With `7esn` Ends With 010})<-[#usn7? *0X7..{`1esn`:$1000 Starts With $`7esn`}]->({`5esn`:'s_str'[0x0..1.e1],@usn6:.e0[01234567..$`8esn`]})<-[:`1esn`|`3esn`{`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6}]-(`` :`6esn`:_usn3{_usn3:$`6esn`[1.e1][$_usn3]}).`3esn`? Unwind True[$_usn3..] As usn2 Union Optional Match `8esn`=(:_usn3{usn1:#usn7[..07]})-[?:`7esn`|:`2esn`{@usn5:usn2[1.e1],@usn6:$#usn8 Starts With .e12 Starts With 1.e1}]->({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7}) Remove (:#usn8:`1esn`{usn2:$`7esn`[.e1][12.0],``:$`1esn` Contains 1e1 Contains @usn6})-[`` *1000..0X0123456789ABCDEF]-(`` :`7esn`)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:usn2{`6esn`:#usn7[$`3esn`..$1000][0.0..`2esn`],``:010 Starts With 0 Starts With 0.0}).`4esn`!,Extract(`5esn` In 0X7 In $#usn7 Where @usn6 Is Not Null Is Not Null).@usn5?,Any(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).#usn7! Return 0.e0[..$7] As _usn3,0xabc =~@usn5 =~$usn1 Skip $@usn6[00] Limit `2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..];"), + octest:ct_string("Unwind Extract(@usn5 In 9e0 Ends With $#usn8 Where $`8esn`[123456789..][$@usn5..]) =~None(#usn7 In True Contains 's_str' Contains $usn1 Where 's_str' Starts With 9e0 Starts With usn2) As `2esn` Union Return Distinct *,None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`5esn` In _usn3 In 0.0) Is Not Null Is Not Null As @usn5 Order By 0.0[$usn2..] Asc,All(@usn5 In 9e0 Ends With $#usn8 Where _usn4[`7esn`]) In {`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6} In (:`6esn`:_usn3$usn2)-[:`3esn` *0Xa{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->(usn1 {usn1:$#usn7 Starts With 01234567 Starts With $0})-[?:#usn8|:`3esn` *0x0..]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) Asc,12e12 Starts With $0 Starts With $`2esn` Ascending Unwind (`1esn` :`3esn`{#usn7:12[..0e0][...e1]})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})[(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null)][{`2esn`:$999 Ends With .e0}..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]] As `8esn`;"), + octest:ct_string("Remove Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|_usn3[`2esn`..0X7][0.e0..$`3esn`]).`7esn`? Return Distinct *,#usn8 =~0.e0 Order By $`5esn`[\"d_str\"..] Ascending,Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5) Contains [`8esn` In 123456789 =~@usn6 Where .e12[@usn6..][010..]|Count(*) Is Not Null Is Not Null] Contains ({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]}) Desc,$1000 Is Null Is Null Ascending Limit $0 =~9e1 =~$`2esn` Union Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3) With `5esn`[..123.654][...e12] As @usn6,(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) As `2esn`,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As `1esn` Order By None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0) Descending,@usn5[$`7esn`..`5esn`] Ascending,.0 Contains .e12 Contains 0 Asc Skip usn1 Limit `6esn`[$`8esn`][9e1] Where False Starts With 0X7 Starts With 01234567;"), + octest:ct_string("Optional Match `5esn`=(({#usn8:1e1 Is Not Null Is Not Null})<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(usn2 )<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)) Merge ((@usn6 {_usn4:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})) On Match Set `8esn` =Count(*)[9e12..12.0],@usn5+=9e0[Count(*)..0.12][$`1esn`..12.0] Union With 9e1[usn1..0x0][12.e12..12.0] Order By $@usn6[$0..9e12][.e12..Null] Desc,.e0 Is Not Null Is Not Null Desc,usn2[..$usn1][..$#usn8] Asc Skip $7 Ends With Count ( * ) Where 's_str' Starts With 9e0 Starts With usn2 Unwind `` Is Not Null Is Not Null As _usn4 Optional Match (usn2 :``:usn2) Where @usn6 Is Not Null Is Not Null;"), + octest:ct_string("Return Distinct *,$`7esn`[0.12] Skip _usn4 Starts With 1000 Starts With $usn2 Union All Unwind (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]} As `4esn` Union Create _usn4=({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]});"), + octest:ct_string("Merge ``=(((`7esn` :`2esn`{@usn6:$0[123.654..0.e0]})-[_usn3 *..07{@usn6:$`2esn`[..$`3esn`][..12e12]}]->(`1esn` {#usn7:$`1esn` Ends With 0X0123456789ABCDEF,`3esn`:.12 Starts With _usn3 Starts With $``})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`}))) On Match Set `1esn`:@usn5,All(@usn5 In 's_str'[0..] Where `2esn`[..01][..True]).`2esn`! =`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]],`2esn`+=$_usn4[01..][$_usn4..] On Match Set Single(`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5).usn1? =`6esn`[9e12..],`7esn`+=$0[0.e0] Optional Match (`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}) Union Return Distinct *,All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) As `8esn` Order By 12.0 Ends With `2esn` Descending,$`4esn`[`4esn`][Count(*)] Descending,$`1esn`[07..] Desc Skip 9e12[..123.654][..999] Union All Return *,#usn7[0.12..],$`3esn`[.e1][_usn4] As _usn4 Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Limit \"d_str\" Is Not Null Is Not Null;"), + octest:ct_string("Optional Match ``=(((_usn3 :`6esn`:_usn3)<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]-(`3esn` :`1esn`:_usn4{#usn8:1e1 Is Not Null Is Not Null})-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null}))) Where 0.e0[1000.._usn4][.e1..usn1] Detach Delete _usn3 Ends With 7 Ends With $`1esn`,(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})[..Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|Count ( * )[$`5esn`..][$7..])][..$usn2] Union All Unwind 12.e12 Starts With 1000 As @usn5;"), + octest:ct_string("With (`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})<-[`8esn`? *0Xa{#usn8:$``[True]}]->(:`7esn`{usn2:@usn5 Is Not Null}) Is Null Is Null,$#usn8 Ends With `3esn` Ends With $`` As #usn7,{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]}[#usn7(Distinct $`1esn`[``][07])..None(@usn6 In 010[`5esn`] Where $`3esn` Ends With 01234567)] As _usn3 Order By @usn6 =~999 =~@usn5 Ascending,``[7.._usn3] Descending,All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) Is Not Null Is Not Null Ascending Skip #usn8 Ends With $@usn5 Ends With $7 Limit #usn8[`8esn`..] Create ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)) Optional Match ((:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) Where 12.e12 Starts With \"d_str\" Starts With 9e1 Union All Merge @usn5=(({`8esn`:`5esn` Contains #usn7 Contains 9e12})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`1esn` :`3esn`{#usn8:$usn2[0.e0],`8esn`:$`4esn`['s_str'..]})) On Match Set `4esn`+=@usn5 Is Not Null,@usn6+=.e12[`2esn`..010],#usn7 =$999[``] On Match Set [$0[123.654..0.e0],01234567[Null..$_usn3]]._usn4! ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,None(#usn7 In 9e0[$1000] Where 00[12..$`6esn`]).`7esn`? =`4esn`(Distinct)[`2esn`($`2esn`[..$`3esn`][..12e12])][Extract(@usn6 In 010[`5esn`] Where 1.e1[$usn1]|.e12[..999][..@usn5])],`5esn`+={`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}[Extract(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]|.e1[..$`3esn`][..01])..] Delete $usn1 Starts With 0x0 Starts With #usn8,$@usn6 Ends With `1esn`,Extract(`3esn` In `2esn`[..01][..True] Where 00[01234567][False]|$`3esn` Ends With 01234567) Starts With (_usn4 :_usn4)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}) Starts With Extract(@usn6 In 010[`5esn`] Where $`2esn` Starts With `4esn` Starts With $usn1) Union Return _usn3 Is Not Null Is Not Null As `` Order By Extract(`3esn` In `2esn`[..01][..True] Where 0.0 Is Null Is Null|$usn2[0.e0])[{usn2:@usn5 Is Null,`8esn`:$@usn6 Ends With 123456789 Ends With 12.0}..] Descending,(:_usn4$12)-[`1esn`?:`6esn`|:#usn8 *0Xa]-(usn1 :#usn8:`1esn`)[{`7esn`:$usn2 =~9e1}..] Desc,.12 In `8esn` In $#usn8 Desc Limit 9e1 Contains 12 Detach Delete 0.e0,\"d_str\"[True..],$`3esn` Ends With 01234567;"), + octest:ct_string("Delete `2esn`[$usn2][12.0],{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}[Single(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7)..],(:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] Unwind [$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1] As `1esn`;"), + octest:ct_string("Merge #usn7=((@usn5 {`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]})<-[`2esn`:`8esn`{`7esn`:$`4esn` Is Null Is Null}]->(usn1 :@usn6)-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(`8esn` :`8esn`)) On Match Set `1esn` =All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null On Match Set `5esn`+=[`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})] Match `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Optional Match `2esn`=(:#usn8:`1esn`$`7esn`) Where _usn4 Is Not Null;"), + octest:ct_string("Return $_usn3[_usn4..] Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Create @usn5=(({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(usn1 :_usn3{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})),(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]}) Union With $#usn7 =~`2esn` As `4esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc Skip usn2 Is Null Is Null Limit @usn6 Is Not Null Is Not Null Where 's_str' Ends With `7esn` Ends With 010 With Distinct *,(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) Is Not Null As `3esn`,$0 Starts With @usn5 As @usn5 Order By 's_str' Contains 12.e12 Contains $`4esn` Descending,False Contains 0 Contains $`6esn` Ascending,9e1 =~$_usn4 =~1.e1 Desc Limit 01234567 Starts With True Starts With $999;"), + octest:ct_string("Remove {`6esn`:$@usn5 Contains 's_str' Contains \"d_str\",`4esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}.`1esn`! Remove `2esn`(.12[123.654..]).`4esn` Merge `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2));"), + octest:ct_string("Optional Match (:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]}),(((#usn8 :_usn4{@usn5:$0[0Xa..$123456789]})<-[ *..010{#usn7:``[$`3esn`]}]-(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]})<-[ *00..0Xa]->(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]}))) Detach Delete Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null,@usn5[$`7esn`..`5esn`];"), + octest:ct_string("Unwind .0 Is Null Is Null As @usn6 Unwind 999[..`1esn`][..07] As `8esn`;"), + octest:ct_string("Return *,`5esn`(0[1e1][$usn1],Null =~`6esn`)[usn2(Distinct)..][Single(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7)..] As `1esn` Order By `3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] Desc Merge @usn6=((#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})) On Match Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null On Match Set Extract(@usn5 In 's_str'[0..] Where @usn6 In .12 In `3esn`|$@usn6[00]).`8esn`? =9e0 Contains $12 Contains `3esn`,_usn4+=0x0[@usn5][$#usn8],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null Unwind (#usn7 )<-[`5esn`?:@usn5|_usn3{``:0.0 =~9e0 =~$0}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]}) Contains Filter(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null) As `` Union All With $@usn6[12.0][12.0] Skip `7esn`[$usn2..][$123456789..] Optional Match `3esn`=(`` {`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']})<-[`6esn`? *00..0Xa]->(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}),usn1=((`1esn` {``:0.0 Is Not Null,`1esn`:``[$`3esn`]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})) Where 01234567[\"d_str\"..`4esn`] Unwind $`1esn` In .e0 As #usn8;"), + octest:ct_string("Unwind usn1[...e12][..1.e1] As #usn8;"), + octest:ct_string("Unwind .e12[`2esn`..010] As `1esn`;"), + octest:ct_string("Delete $usn1[Null][`8esn`],`5esn`[..True][..0.e0] Merge @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) On Match Set `1esn`+=Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..];"), + octest:ct_string("Delete Count ( * )[9e12],12.0 Is Null,$@usn5[0.0][0X0123456789ABCDEF] Optional Match ((_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`})-[?:`2esn`|`4esn`{@usn5:0.e0}]-(`1esn` $`4esn`)),(_usn3 :`7esn`)-[*..{``:.e1 Starts With 12.e12 Starts With `2esn`}]-(#usn7 :_usn3) Remove [999 Is Not Null Is Not Null,123.654 In $`7esn`].`6esn` Union All Remove {usn1:0 =~1e1,`7esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}.usn1!,None(`5esn` In `7esn`[$usn2..][$123456789..] Where $123456789[...12][..@usn6]).usn2? Unwind $#usn8[..$999] As #usn7 Optional Match _usn4=((:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})),(`2esn` :`1esn`:_usn4)-[?*..]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``});"), + octest:ct_string("Remove All(`6esn` In $`6esn`[``..][Count(*)..] Where 0X7['s_str'..][01..]).`2esn`!,(`3esn` {usn2:$usn2[`4esn`..9e12]})<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[_usn4?:@usn6|:`7esn`]->(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}).`4esn` Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) On Create Set #usn7+=.e0[..9e12][..07],`4esn`(True[$_usn3..],$999[``]).usn2 =123456789 Is Null Is Null,@usn5 =01[07..][1.e1..] On Create Set `5esn`+={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},usn2 =True Contains 0x0 Contains $_usn3 Remove All(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`).`6esn`?;"), + octest:ct_string("Remove Any(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0).`5esn`;"), + octest:ct_string("Match ((_usn3 :`8esn`{#usn8:False Starts With 0X7 Starts With 01234567})) Optional Match (:`7esn`{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8] Match `3esn`=((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})),((`5esn` :@usn5{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) Where 07 Is Null Union All Unwind .e0 Ends With $123456789 Ends With 0xabc As #usn7 Match `3esn`=(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0}),usn1=(({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) Where \"d_str\"[True..] Union Optional Match (`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Where #usn7[0.e0..]['s_str'..] Merge ((@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})) On Match Set #usn7+=`1esn` Remove None(_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`).`2esn`,(`5esn` :``:usn2)<-[?:`4esn`|@usn5{usn2:$@usn6[$`8esn`..][123456789..]}]->(:_usn4{`8esn`:01234567[Null..$_usn3]}).``?,Extract(usn2 In 7[12] Where .12[0X7..][12e12..]|0.0 Contains #usn7).`1esn`;"), + octest:ct_string("Match (((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2)));"), + octest:ct_string("Remove Extract(@usn6 In False Contains 0 Contains $`6esn` Where $`5esn`[..00]).usn2 Create (_usn4 :`8esn`{usn1:12.e12[..$`6esn`]}),@usn6=(`2esn` :`1esn`:_usn4)-[?*..]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Remove Filter(usn2 In 7[12] Where $#usn8[12.e12..`8esn`][12.0..0.0]).``,[`8esn` In 123456789 =~@usn6 Where ``[9e12][$999]].@usn5?,`4esn`:`7esn` Union All Merge `7esn`=((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )) On Create Set `5esn`+=_usn4[$usn1..01234567][123.654..`5esn`],`2esn`+=#usn7 In 0.e0 On Match Set Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]|$``[..\"d_str\"][..$#usn8]).@usn6 =[$usn1[`2esn`..][$`2esn`..]][(`3esn` :usn2)-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})..`2esn`(Distinct $@usn6 Is Not Null Is Not Null,Count ( * ) Ends With $123456789)],None(#usn8 In `7esn` Where ``[7.._usn3]).@usn6? =`6esn`,Any(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])._usn4! =`` Is Null Match (((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[?:_usn4]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1}))),#usn7=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`})) Where 123.654 In 12 Return [#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]) As usn2,(`5esn` :@usn6{usn1:'s_str'[0..]})<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})[All(#usn7 In 9e1[$`1esn`..] Where ``[$`3esn`])] As `3esn` Order By @usn6 =~999 =~@usn5 Ascending,$@usn5[..$#usn7] Descending,{`4esn`:12e12 =~$`7esn`} Is Not Null Is Not Null Desc Skip Count(*)[9e12..12.0] Union Merge @usn6=((`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})) On Match Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] Return Distinct $@usn6 Ends With 12.e12 Ends With @usn5 As usn2,``[usn1][`5esn`],`7esn`[..$`6esn`] Order By $@usn6 In @usn6 In 1e1 Desc,.e1[..$`3esn`][..01] Desc Limit Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Merge #usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) On Create Set @usn6+=$`1esn` =~1e1 On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1];"), + octest:ct_string("With usn1[False..] As usn2 Order By 0 Ends With 12.e12 Ends With usn2 Asc,\"d_str\" In @usn5 In $@usn5 Ascending,$usn2 Desc Skip $usn2[`2esn`..$`1esn`] Delete [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] In [12e12 In 123456789,`1esn`] In All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),$999 Is Null Is Null Return *,'s_str' Starts With 9e0 Starts With usn2 As `8esn` Union All Create ((:_usn4{`4esn`:.e1 In 123456789})<-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})) With Distinct (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Union Return Distinct usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Skip $@usn6 Ends With `1esn` Limit 9e1 Ends With Count(*) Ends With $7 Merge _usn4=(`5esn` :``:usn2)-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}) Match @usn6=(usn2 :_usn4) Where `4esn`[$_usn3..$`7esn`];"), + octest:ct_string("With *,`2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Limit $1000[$@usn6][$_usn4] Delete $usn1 Contains 0,'s_str' Contains 12.e12 Contains $`4esn`,0xabc[$999..][$usn1..] Unwind `8esn`(Distinct #usn8 Is Not Null Is Not Null,`2esn` In 9e0 In 7) Starts With None(usn2 In 7[12] Where 123456789 =~12 =~'s_str') As @usn6 Union Remove Single(@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]).`7esn`,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|12.e12 Is Not Null Is Not Null).`2esn` Union All Remove [usn2 In 7[12] Where 12e12 =~$`7esn`|.e1[12.0..]].@usn5!;"), + octest:ct_string("Delete 9e1[.12][`7esn`],$12[$usn1..][Count(*)..] Merge (((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}))) On Match Set _usn3:`7esn` Detach Delete 7 Is Not Null,$`1esn`[Count ( * )],`6esn`[`5esn`..00] Union All Detach Delete $123456789[.0..],All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] Union All Remove Filter(@usn6 In 010[`5esn`] Where 00[$usn1..]).usn2?;"), + octest:ct_string("Match `3esn`=(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0}),usn1=(({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) Where \"d_str\"[True..];"), + octest:ct_string("Merge @usn5=(({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})) Union All Unwind `7esn` In 010 In usn1 As usn1 Merge `3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) On Match Set @usn6 =999[..`1esn`][..07],`3esn`+=$@usn5[0.0][0X0123456789ABCDEF],`6esn`+=$usn1[1000][.12] On Match Set #usn8+=Count(*)[$@usn5],@usn6 =0 =~1e1,`2esn`+=Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]});"), + octest:ct_string("Merge (({@usn6:010 Starts With 0 Starts With 0.0,_usn4:07[$`2esn`..9e12][$`4esn`..9e12]})<-[:@usn6|:`7esn` *0..01{``:`1esn`[0.0..1e1][0x0..7],usn2:01[`3esn`..][Count(*)..]}]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})) With Distinct *,$`1esn`[07..] As ``,`` Is Null As `7esn` Skip $1000 Is Not Null Delete $usn1[Null][`8esn`],Single(#usn8 In `7esn` Where 12.0 Starts With $`2esn` Starts With .e1) Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]] Ends With {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01} Union Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3) With `5esn`[..123.654][...e12] As @usn6,(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) As `2esn`,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As `1esn` Order By None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0) Descending,@usn5[$`7esn`..`5esn`] Ascending,.0 Contains .e12 Contains 0 Asc Skip usn1 Limit `6esn`[$`8esn`][9e1] Where False Starts With 0X7 Starts With 01234567;"), + octest:ct_string("Unwind {#usn7:$usn2[0.e0],`6esn`:.e1[..\"d_str\"][..$123456789]}[..Extract(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999|Count ( * ) In 0.12)][..[@usn6 In 010[`5esn`] Where 's_str' Starts With 9e0 Starts With usn2|$`5esn` =~$0 =~``]] As usn1 Unwind {@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0} Contains [`1esn`[usn1][0xabc],`5esn` Contains `7esn`,$``[True]] As usn1 Union All Return .e12[$@usn6..00][01234567.._usn3] Skip @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])] Limit 07 Is Not Null Is Not Null;"), + octest:ct_string("Delete `8esn` In $1000 Delete `1esn` Contains $999 Contains 0.0,[#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) Union With Distinct _usn3[0x0],$@usn6 Is Null Is Null As `5esn` Where $`8esn` Is Not Null Is Not Null;"), + octest:ct_string("Merge (`5esn` :``:usn2)<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2) On Match Set (:_usn3)<-[`2esn`? *01..123456789]-(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}).#usn8! =Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``),{`1esn`:`8esn` Is Not Null Is Not Null}.`4esn`? =$@usn5 Starts With `5esn` Starts With 01234567,{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}.``? =12 In $usn1 In 7 On Create Set #usn7+=Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] Union Match _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Where 010 Is Null Is Null Union All With Distinct *,@usn6[9e12],$`3esn`[..0xabc][..$7] Skip All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) Limit Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null Where 1000[12e12][`5esn`] Optional Match `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((`6esn` :`5esn`)<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`5esn` :`4esn`:`6esn`)) Where 07 Is Not Null Is Not Null;"), + octest:ct_string("Create @usn5=()-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]-(:`4esn`:`6esn`{usn1:0 =~1e1,`7esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})-[_usn3:`5esn`|:usn2 *999..{`3esn`:`5esn` Contains $`5esn` Contains 0X7}]-(`8esn` {`1esn`:$`4esn` Is Null Is Null}) Detach Delete (`5esn` :`6esn`:_usn3)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({#usn8:False Starts With 0X7 Starts With 01234567})<-[usn2?{``:$`1esn`[``][07]}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7}) Is Null Is Null,[`5esn` Contains `1esn` Contains usn1,$@usn5 Ends With @usn5 Ends With 0xabc] Is Null Is Null;"), + octest:ct_string("With {#usn8:1.e1 Is Null Is Null,_usn4:0xabc In 123456789 In 0x0}[All(@usn6 In 010[`5esn`] Where 00[1.e1..])..],`5esn`(0[1e1][$usn1],Null =~`6esn`)[usn2(Distinct)..][Single(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7)..] As `1esn`,12.0 Starts With $`2esn` Starts With .e1 Order By [#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Ascending Skip `1esn`(#usn7[..07])[..[#usn8 In `7esn` Where 9e1 Starts With Count ( * )|`3esn` Starts With 9e0 Starts With usn1]] Limit _usn3 =~`2esn` =~0 Where #usn7[0.e0..]['s_str'..] Merge ((@usn6 :@usn6{_usn4:#usn8 Is Not Null})-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-(`5esn` :#usn8:`1esn`)<-[`1esn`:`8esn` *00..0Xa{#usn8:0X7['s_str'..][01..],``:$usn2 =~1.e1 =~usn1}]->(:_usn3{_usn4:.e1[7..][9e0..]})) On Match Set (:``:usn2{`4esn`:#usn7 Contains $0 Contains $usn2})<-[:`8esn` *0X7..]->(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2})<-[`2esn`? *01..123456789]-(`2esn` :@usn6).`8esn` =`7esn`[1e1] On Create Set `7esn` ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]} Remove Filter(usn2 In 7[12] Where $#usn8[12.e12..`8esn`][12.0..0.0]).``,[`8esn` In 123456789 =~@usn6 Where ``[9e12][$999]].@usn5?,`4esn`:`7esn` Union All Match (:#usn8:`1esn`{usn2:$`7esn`[.e1][12.0],``:$`1esn` Contains 1e1 Contains @usn6}) Unwind usn1[...e12][..1.e1] As #usn8 Union All Merge ((:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})) On Create Set usn1 =[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]][Any(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..])..Single(usn2 In False[$usn1][0x0] Where 9e1 Is Not Null Is Not Null)],`6esn` =12.e12 =~0X0123456789ABCDEF =~1.e1 Detach Delete 9e1[_usn3] Return Distinct $#usn7[..9e0][..123.654] As @usn6 Order By Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null] Desc,None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])[..[_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4]] Desc,None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] Desc Limit `6esn`;"), + octest:ct_string("Unwind (:`2esn`)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})-[@usn6? *0X0123456789ABCDEF..{``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6}]-(`5esn` :@usn5) Is Null Is Null As `4esn` Union Delete $`3esn`[.e1][_usn4],None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Create @usn6=((({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}))),`6esn`=((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[``:`5esn`|:usn2{`5esn`:_usn4[0]}]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]}));"), + octest:ct_string("Remove [.e0 Starts With $@usn6 Starts With $7,12.0 In 123.654 In _usn4,$`5esn` In _usn3 In 0.0].`5esn`?,All(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1).`5esn`!,@usn5:_usn4 Union Optional Match #usn8=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}),`2esn`=(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Detach Delete `2esn` Starts With $`7esn` Match `8esn`=({`6esn`:usn1[..$@usn6][..00]}) Where 0Xa[..Count ( * )][..$123456789];"), + octest:ct_string("Detach Delete 123.654[..0.e0][..'s_str'] Delete 01234567[$0..][0..],`1esn`[0.0..1e1][0x0..7];"), + octest:ct_string("Optional Match _usn4=(((`2esn` )-[?{_usn3:01[`8esn`..9e12][.12..0]}]->(`8esn` {@usn5:#usn7[..07],usn2:999 Contains 0 Contains $`5esn`})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]->(_usn3 :`5esn`))),((:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->({@usn6:12.e12 Contains #usn7 Contains $_usn4,usn2:$`5esn` =~$0 =~``})-[#usn7 *01..123456789]->(:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})) With Distinct 0Xa In $`6esn` As `2esn`,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null,12[0e0] As `5esn` Skip (`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}) =~[12 In $usn1 In 7] =~Filter(@usn5 In 's_str'[0..] Where 0.e0) Limit .e0[$`8esn`..][1000..] Union All Merge `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] On Match Set (`3esn` {usn2:$usn2[`4esn`..9e12]})<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1).#usn7! =_usn4 Starts With `` Starts With 1000,Extract(`3esn` In `2esn`[..01][..True] Where 0X7[..$`8esn`]|$#usn7 Starts With 01234567 Starts With $0).`5esn`! =@usn6(Count ( * ) In True In @usn5)[None(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)] Union All Return *,False Is Null Order By 0X7[..$`8esn`] Desc,[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null Ascending,12.e12 Ends With `` Ends With 0 Desc Skip Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0)[..{`5esn`:0Xa[$`8esn`..][$_usn4..],_usn3:00[$usn1..]}][..Any(@usn6 In 010[`5esn`] Where 1.e1[$usn1])] Unwind 9e1 =~123456789 =~999 As @usn5 Merge ((_usn3 :usn2)) On Match Set Any(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0).`5esn`! =.e12 Ends With 0Xa Ends With 0xabc On Match Set `5esn`(Distinct .12[123.654..]).`3esn` =01234567 In 123456789 In 12,`6esn` =[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null;"), + octest:ct_string("Merge @usn5=((:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})) Detach Delete 12.e12 =~.0 =~usn1 Union Unwind 9e1 =~123456789 =~999 As @usn5 Union All Optional Match `4esn`=((({#usn7:$`3esn` Ends With 01234567,_usn3:usn1 =~$`7esn`})-[`7esn`?:usn1|`4esn` *00..0Xa{`3esn`:usn1 In ``}]-(usn1 {usn1:$#usn7 Starts With 01234567 Starts With $0})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]}))),#usn8=(({usn2:`2esn`[..$_usn3]})) Where `2esn`[..$_usn3] Return `6esn`[`5esn`..00],$1000 Is Null Is Null,0.0[usn1..] As `3esn` Limit All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`];"), + octest:ct_string("Return *,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) As `7esn` Order By 9e0[$1000] Asc Limit (`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]);"), + octest:ct_string("Remove `6esn`(Distinct 9e1 Contains $999,_usn4 Is Not Null Is Not Null).`4esn`?,None(`8esn` In 123456789 =~@usn6 Where $usn1)._usn3! With Distinct $usn2 =~0.e0 =~@usn6 As _usn4,9e12[..1e1][..'s_str'] As @usn5 Order By 0X0123456789ABCDEF Is Not Null Is Not Null Asc,0X0123456789ABCDEF Is Not Null Is Not Null Asc Limit $7 In $usn1 In 999 Where 12.e12 Is Not Null Is Not Null;"), + octest:ct_string("With *,$`2esn` Contains Count(*) As `3esn`,(`2esn` :usn1:`3esn`)-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})<-[?:`3esn`]-(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})[({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})] Order By 010 Contains .e1 Asc,(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})<-[#usn7 *01..123456789]->(`6esn` :usn1:`3esn`) Ends With Extract(#usn8 In `7esn` Where 9e12[..1e1][..'s_str']) Ends With [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123.654 Is Not Null|$`2esn`[.0..][0.0..]] Descending Skip $@usn5[`1esn`..][$999..] Limit Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] Union All Return Distinct #usn8 Is Not Null Is Not Null,{`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..] As _usn4 Skip $`5esn`[$`3esn`..] Detach Delete [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null,00[False..0e0],0.e0[1000.._usn4][.e1..usn1] Detach Delete _usn4(Distinct 0X0123456789ABCDEF Ends With 01 Ends With ``,$`3esn`[..0xabc][..$7]) In Single(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0) In Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7]),Count(*) Ends With usn1 Union All Unwind `2esn`[$@usn6..][Null..] As `8esn` Return *,[`8esn`[..$#usn8],$1000 Starts With $`7esn`,0xabc In 010 In #usn7] Is Null Is Null As `8esn` Skip All(@usn5 In 's_str'[0..] Where 0.e0) In Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $123456789 In 0.12) In {`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]} Limit Filter(@usn6 In 010[`5esn`] Where `7esn`[1e1]) Contains {`7esn`:$`5esn` In 07 In 00,`1esn`:07 In `6esn`} Contains {`3esn`:00[12..$`6esn`]} Match _usn4=(@usn6 :`4esn`:`6esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`2esn`?:`6esn`|:#usn8{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`}]-(_usn3 {_usn3:0.12 Starts With $`8esn` Starts With @usn5}),#usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})));"), + octest:ct_string("Remove Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`).`8esn` Union Merge (`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]}) On Create Set usn1+={_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]} Contains ({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}) Contains None(#usn8 In `7esn`) Unwind usn2[..$usn1][..$#usn8] As ``;"), + octest:ct_string("Unwind #usn8(1000[12e12][`5esn`],9e1 Contains 12)[Extract(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0)..`1esn`(Distinct `3esn`[7..0.e0][0.0..123456789],`1esn` Starts With 0xabc Starts With $usn2)][Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 9e0[Count(*)..0.12][$`1esn`..12.0])..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12)] As @usn6 Remove None(`5esn` In 0X7 In $#usn7 Where usn1 =~$`7esn`).`3esn`!,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $123456789 In 0.12)._usn3?,(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]}).`6esn`? With *,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null Order By .e0 Starts With $@usn6 Starts With $7 Descending Skip [$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa) Union Remove #usn8(Distinct 0X0123456789ABCDEF Contains 12e12 Contains 12.e12,Count(*) Starts With usn2 Starts With `7esn`).usn1,Single(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..]).#usn7?,Any(_usn4 In 12e12 In 123456789 Where `3esn`[7..0.e0][0.0..123456789]).`8esn`! Return $`4esn`[`4esn`][Count(*)] As `8esn`,$usn1[`2esn`..][$`2esn`..] As _usn3,_usn4[`7esn`] As usn2 Skip 01[..$`8esn`][..9e0] Limit 0X7[.0] Union All Create ((`1esn` :usn2)),`2esn`=(`5esn` :``:usn2)<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2);"), + octest:ct_string("With Distinct *,Count ( * ) In True In @usn5 As `2esn` Skip `7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] Union All Delete _usn4[$usn1..01234567][123.654..`5esn`] With *,1.e1 Ends With $#usn7 As usn2,@usn5[01][@usn5] Skip $`5esn` Limit (`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Is Not Null;"), + octest:ct_string("Detach Delete $_usn3,[Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] Union All Optional Match ((`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Delete [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] In [12e12 In 123456789,`1esn`] In All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),True[..#usn8],0.12[0Xa][$`7esn`];"), + octest:ct_string("Merge _usn4=(#usn8 :`6esn`:_usn3)<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`2esn` :usn2)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) On Create Set Single(`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5).usn1? =`6esn`[9e12..],`7esn`+=$0[0.e0] Merge `2esn`=(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[`4esn`:usn2]->(`3esn` :_usn4) On Create Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null On Create Set #usn7+=`6esn`[$`8esn`][9e1];"), + octest:ct_string("Return *,`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] As usn1,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] Merge `1esn`=(`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) On Create Set [#usn8 In `7esn` Where 01 Ends With 0Xa Ends With 0X7|`8esn` Contains Count(*) Contains $#usn7].``? ={`5esn`:$`1esn` In .e0,``:`6esn` Ends With Count ( * ) Ends With Count ( * )} Is Null Is Null,`8esn`+=$7 Is Null,`7esn` =_usn4 In #usn7 Unwind $12 Starts With $0 Starts With $`8esn` As usn2 Union Return Distinct *,1.e1 Ends With $#usn7 As usn2,@usn5[01][@usn5] Skip $`5esn` Limit (`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Is Not Null Union Return Distinct *,9e12 =~@usn6,`4esn` Contains 9e0 Order By 1000[..$1000] Descending Skip Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Limit {``:123.654 In $`7esn`}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..None(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6 =~#usn7 =~True)] Detach Delete Null Ends With _usn4 Ends With 0.0 Optional Match ((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})),#usn8=({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``});"), + octest:ct_string("Return Distinct (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] As #usn7,1e1 Is Null Is Null As usn2,{`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}[..`2esn`(Distinct 0 Ends With 12.e12 Ends With usn2)][..Filter(_usn4 In 12e12 In 123456789 Where .e1 In 123456789)] As usn1 Match ``=(:_usn3{`7esn`:$999 Ends With .e0})<-[`8esn`?:`2esn`|`4esn`{usn2:#usn8[`6esn`..][$``..]}]-(@usn6 {`6esn`:$`5esn` =~usn1,`5esn`:$`` Starts With $1000 Starts With @usn6})-[?{_usn3:010[`5esn`],_usn4:#usn8 =~.e0}]-(#usn8 :`3esn`{`5esn`:$@usn6 Ends With `1esn`}),`3esn`=((`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) With *,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null Order By .e0 Starts With $@usn6 Starts With $7 Descending Skip [$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa) Union Merge ((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) On Create Set `5esn` =$1000[$`4esn`..False],`6esn` =[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`],`2esn` =12.0 Is Null Create (`6esn` {`2esn`:$`3esn` Ends With 01234567}),usn2=({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2)<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(_usn4 :@usn5) Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3);"), + octest:ct_string("Return 0.0 Contains @usn5 As #usn8,{`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`}[Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..])] Skip Extract(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1|``[$`3esn`])[(:`6esn`:_usn3$usn2)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)..All(_usn3 In _usn3 Contains _usn4 Contains $@usn5)] Limit $_usn3 Is Null Create (:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]}) Match ``=(:_usn3{`7esn`:$999 Ends With .e0})<-[`8esn`?:`2esn`|`4esn`{usn2:#usn8[`6esn`..][$``..]}]-(@usn6 {`6esn`:$`5esn` =~usn1,`5esn`:$`` Starts With $1000 Starts With @usn6})-[?{_usn3:010[`5esn`],_usn4:#usn8 =~.e0}]-(#usn8 :`3esn`{`5esn`:$@usn6 Ends With `1esn`}),`3esn`=((`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`}));"), + octest:ct_string("Optional Match `8esn`=(:_usn3{usn1:#usn7[..07]})-[?:`7esn`|:`2esn`{@usn5:usn2[1.e1],@usn6:$#usn8 Starts With .e12 Starts With 1.e1}]->({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7}) Remove (:#usn8:`1esn`{usn2:$`7esn`[.e1][12.0],``:$`1esn` Contains 1e1 Contains @usn6})-[`` *1000..0X0123456789ABCDEF]-(`` :`7esn`)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:usn2{`6esn`:#usn7[$`3esn`..$1000][0.0..`2esn`],``:010 Starts With 0 Starts With 0.0}).`4esn`!,Extract(`5esn` In 0X7 In $#usn7 Where @usn6 Is Not Null Is Not Null).@usn5?,Any(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).#usn7! Return 0.e0[..$7] As _usn3,0xabc =~@usn5 =~$usn1 Skip $@usn6[00] Limit `2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..];"), + octest:ct_string("Delete 12.e12 Starts With \"d_str\" Starts With 9e1 Union All Return 123456789 =~$999 Order By $7[01..$123456789][#usn7..12.0] Descending,.12[..usn2][..12e12] Descending Merge `8esn`=((#usn8 :_usn3)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)) Union All Unwind $_usn3 Is Not Null As _usn3;"), + octest:ct_string("Match (`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]-(#usn8 :`6esn`:_usn3)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]}),`4esn`=((`` {#usn7:#usn8 Is Not Null Is Not Null})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})) Where 1.e1 Starts With 9e12 Union All Detach Delete usn1 Ends With 0.0,Count(*)[..@usn6][..`7esn`] With $@usn6[12.0][12.0] Skip `7esn`[$usn2..][$123456789..] Return Distinct @usn5[01][@usn5],9e0 Contains $12 Contains `3esn` As #usn8,{`4esn`:0.0[usn1..],`7esn`:12.0[$1000..][#usn7..]}[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7)..[usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]]][[12.e12[..$`6esn`],999 In #usn8 In $``]..Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1)] Order By Null Ends With _usn4 Ends With 0.0 Asc Skip (`1esn` $`4esn`)-[@usn6?:`7esn`|:`2esn`]-({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]}) =~Filter(`3esn` In 9e1 Contains $999 Where 12.0 Is Null Is Null) =~[0xabc In Null] Union Unwind 01[07..][1.e1..] As _usn3 Match `4esn`=((`3esn` {usn2:$usn2[`4esn`..9e12]})<-[?{@usn5:_usn3 Ends With 7 Ends With $`1esn`}]->(_usn3 :_usn4)<-[_usn4?:`3esn`]-(:_usn3{_usn4:.e1[7..][9e0..]})) Merge `2esn`=(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[`4esn`:usn2]->(`3esn` :_usn4) On Create Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null On Create Set #usn7+=`6esn`[$`8esn`][9e1];"), + octest:ct_string("With 0x0[..9e0],Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By 1.e1[12..][$`4esn`..] Asc,Null[..010][..1000] Descending,Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] Descending Limit 1.e1[12..][$`4esn`..] Where 07[$`2esn`..9e12][$`4esn`..9e12] Union All Create ((:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})),`2esn`=(((@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]})<-[? *7..{`1esn`:.e12 Ends With 0Xa Ends With 0xabc}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[ *..07]->(`8esn` {`8esn`:$_usn4 Starts With 12.e12}))) Match (({`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]})) Unwind `4esn` Contains 9e0 As `8esn`;"), + octest:ct_string("Match `5esn`=(`3esn` :_usn4) Remove [$123456789 Starts With 0.12 Starts With Null].`4esn`!,(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`}).#usn8 Union Return Distinct *,0x0[12e12..$`7esn`],.e1 In 0 Limit {`1esn`:$`2esn` Contains Count(*)}[[$`4esn`[0..][999..],@usn5 Contains #usn8 Contains 12.0]..[@usn6 In 010[`5esn`] Where 0e0[``..$1000][$7..12.e12]|@usn6[`1esn`..]]];"), + octest:ct_string("Create `2esn`=(`5esn` :``:usn2)<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2) Match `6esn`=(((:#usn7:`5esn`{`4esn`:$``[..\"d_str\"][..$#usn8]})<-[`6esn`? *00..0Xa]->(:#usn8:`1esn`$`7esn`)-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]}))),`8esn`=(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) Where 0e0[``..$1000][$7..12.e12] Union All Match ((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )),@usn5=((_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})<-[#usn8?:@usn6|:`7esn` *0X0123456789ABCDEF..{_usn4:12.e12 =~.0 =~usn1,usn1:12e12 Contains `2esn`}]->(usn2 :@usn6)-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]-(`1esn` {@usn5:`2esn` Starts With $`4esn`})) Where 12.0 Is Null Is Null;"), + octest:ct_string("Create `8esn`=(((`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})<-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))),`4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}) Union Return Distinct *,`6esn`,01234567[$`2esn`][0Xa] Limit None(#usn7 In 9e0[$1000] Where $_usn3 Is Null) In [@usn5 In 's_str'[0..] Where $#usn8[12.e12..`8esn`][12.0..0.0]|`4esn` Ends With 12 Ends With .12] In [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12] Return `6esn`[`5esn`..00],$1000 Is Null Is Null,0.0[usn1..] As `3esn` Limit All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] With (`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})<-[`8esn`? *0Xa{#usn8:$``[True]}]->(:`7esn`{usn2:@usn5 Is Not Null}) Is Null Is Null,$#usn8 Ends With `3esn` Ends With $`` As #usn7,{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]}[#usn7(Distinct $`1esn`[``][07])..None(@usn6 In 010[`5esn`] Where $`3esn` Ends With 01234567)] As _usn3 Order By @usn6 =~999 =~@usn5 Ascending,``[7.._usn3] Descending,All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) Is Not Null Is Not Null Ascending Skip #usn8 Ends With $@usn5 Ends With $7 Limit #usn8[`8esn`..] Union All Return *,0X7[`2esn`..] As `6esn`,$`1esn` Contains 1e1 Contains @usn6 As `3esn` Order By $_usn3[_usn4..] Descending,9e1 Contains $999 Ascending With _usn4(Distinct usn2[07..][.0..]) Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]|$`2esn` Starts With `4esn` Starts With $usn1) Ends With Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2),None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]) Is Null As `5esn` Remove _usn4(.12[0X7..][12e12..],9e1).#usn7!,All(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).`8esn`;"), + octest:ct_string("Create usn2=((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`));"), + octest:ct_string("Merge (:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]})<-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(`2esn` :`1esn`:_usn4) On Match Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null On Create Set Any(#usn7 In True Contains 's_str' Contains $usn1 Where $12[9e0..$999]).`5esn`! =1.e1[12..][$`4esn`..],Any(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null).`2esn` =All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]) =~All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where .e12[..999][..@usn5]) =~Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4),`2esn` =1e1 Ends With $`2esn` Remove Filter(#usn8 In `7esn` Where $`3esn`[..0X0123456789ABCDEF][..7]).@usn5?,Extract(@usn6 In False Contains 0 Contains $`6esn`|$7 In 0.e0 In 999).`2esn`!,Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null).usn1 Union Detach Delete `2esn`[$@usn6..][Null..],$1000 Starts With $`7esn`;"), + octest:ct_string("Create usn1=((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})) Union Delete `2esn`[$usn2][12.0],{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}[Single(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7)..],(:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] Unwind [$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1] As `1esn`;"), + octest:ct_string("Unwind 07 In 0Xa In usn1 As #usn8 Detach Delete usn1[False..`5esn`][$1000..$12] Match _usn4=(((:#usn7:`5esn`{`4esn`:$``[..\"d_str\"][..$#usn8]})<-[`6esn`? *00..0Xa]->(:#usn8:`1esn`$`7esn`)-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]})));"), + octest:ct_string("Merge ((@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]->(_usn4 )-[#usn7?:`7esn`|:`2esn` *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})) On Create Set #usn7 =[$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1],@usn6+=0.12[$0..$usn2] On Create Set `4esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1 =(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Detach Delete `7esn` Ends With $7 Ends With $@usn5,0X0123456789ABCDEF Is Not Null Is Not Null,All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1)[None(@usn6 In 010[`5esn`] Where 00[1.e1..])..[$12[$usn1..][Count(*)..],$@usn5 Contains 's_str' Contains \"d_str\"]][Extract(`3esn` In 9e1 Contains $999 Where 0e0 Starts With 999 Starts With `2esn`|9e1 Ends With Count(*) Ends With $7).._usn4(`1esn`[0.12..][@usn6..],#usn8 =~0.e0)] Detach Delete @usn6 Is Not Null Is Not Null,01 Contains usn2 Contains 0X0123456789ABCDEF,None(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])[Any(`3esn` In `2esn`[..01][..True] Where $`3esn`[..0xabc][..$7])][$#usn7];"), + octest:ct_string("Match _usn3=((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7 *01..123456789]->(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})),``=((:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[`5esn`:#usn7|@usn5]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) Remove None(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`).@usn6?,[Count ( * ) In True In @usn5,#usn7[0.12..],1000[0e0][1e1]].`3esn`? Union Merge (_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) Merge @usn6=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}) Match (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}))) Where 010 Starts With 0 Starts With 0.0;"), + octest:ct_string("Delete (@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`})<-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(#usn7 :`2esn`)-[`4esn`?{`1esn`:0xabc =~$@usn5}]->(usn2 {`5esn`:$@usn5 In 12e12 In 01}) Ends With `4esn`,[$usn1[`2esn`..][$`2esn`..]] Contains Extract(usn2 In 7[12] Where $_usn3 Is Null|.e12 Is Null Is Null),`1esn`[`3esn`..];"), + octest:ct_string("Merge (_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1}) Delete [9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )];"), + octest:ct_string("Delete 01 Ends With 123456789 Union With Distinct *,.0 Contains .e12 Contains 0 Skip .e1[..$`3esn`][..01] Where 9e12[_usn4..$`5esn`][_usn4...e1] Merge `5esn`=({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})<-[_usn4?:@usn6|:`7esn`]->(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})<-[`8esn`:usn1|`4esn` *0Xa{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]->(:`8esn`) On Create Set {usn1:$_usn4 Starts With $1000 Starts With 12}.@usn6! =[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])] On Create Set `5esn`+=All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],`2esn` =False Starts With 0X7 Starts With 01234567 With Distinct *,0X7[`2esn`..] As `6esn`,$`1esn` Contains 1e1 Contains @usn6 As `3esn` Order By 0xabc In .12 In 0Xa Descending Limit [#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Union All Return Distinct *,$#usn7[..0Xa] As #usn8,0X7[`2esn`..] As `5esn` Order By $7[999][usn1] Asc Create ((usn1 :_usn4{`4esn`:`7esn` Is Null})<-[`8esn`?:`2esn`|`4esn` *01..123456789{`8esn`:$`4esn` Is Null Is Null,usn1:$1000 Starts With $`3esn` Starts With 0.e0}]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})) Merge ((`1esn` {_usn4:`8esn` Is Null})) On Create Set All(usn2 In False[$usn1][0x0] Where 0.0[usn1..]).`8esn`? =_usn4 Starts With 1000 Starts With $usn2,`7esn`+=12 In $usn1 In 7,Any(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1).`2esn`! ={_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] On Match Set @usn6+=0.0[..Count ( * )][..`1esn`],usn2 =1.e1 Starts With 9e12,Single(usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5).@usn5! =0xabc[$999..][$usn1..];"), + octest:ct_string("Remove Extract(`6esn` In $`6esn`[``..][Count(*)..] Where 9e0[Count(*)..0.12][$`1esn`..12.0]|`2esn`[..01][..True]).#usn8!,[.0[$``..0X7],'s_str'[0..],0.0[usn1..]].`1esn`? Return Distinct usn2[12.e12..] As `2esn` Order By $@usn5 In $`6esn` In 12e12 Desc,07[_usn3..][`6esn`..] Descending,$`4esn` Contains _usn3 Contains `8esn` Asc Limit 0x0[0X7];"), + octest:ct_string("Merge @usn6=((({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}))) On Match Set `1esn` =Filter(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12])[..Extract(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])][..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]],#usn8(Distinct 12.0[$1000..][#usn7..],0xabc In Null).`2esn` =0.e0 Starts With usn1 Union All Create #usn7=(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}),({`1esn`:1.e1[`8esn`]})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->({usn1:$123456789 In 0.12}) Return Distinct `2esn` Starts With 12.e12 Starts With 12.0 As #usn8,$_usn3 Is Not Null Is Not Null Skip `1esn`[$@usn6][07] Limit $1000 Is Not Null;"), + octest:ct_string("Match `8esn`=((_usn3 :_usn4)) Where 0.0 Is Null Is Null Detach Delete `4esn`[..$@usn6][..@usn6],$_usn4 Is Null Is Null Detach Delete True Contains 's_str' Contains $usn1,$`5esn`[..00] Union Remove [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`].@usn6?,[usn2 In False[$usn1][0x0] Where 999[@usn5..][Null..]|0.e0['s_str'..][01234567..]].``!,(:`1esn`:_usn4{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]})<-[@usn5:`3esn` *0Xa{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`}]->(:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})._usn4? Unwind [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null] Is Not Null As `3esn` Remove [#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3]|1.e1 Starts With 9e12].#usn8?,usn1:usn2,Single(#usn8 In `7esn` Where 07 Contains `3esn` Contains `7esn`).@usn5!;"), + octest:ct_string("Match (((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))),({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}) Where 1000[0e0][1e1] Merge (:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]})<-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(`2esn` :`1esn`:_usn4) On Match Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null On Create Set Any(#usn7 In True Contains 's_str' Contains $usn1 Where $12[9e0..$999]).`5esn`! =1.e1[12..][$`4esn`..],Any(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null).`2esn` =All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]) =~All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where .e12[..999][..@usn5]) =~Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4),`2esn` =1e1 Ends With $`2esn` Union All Return Distinct Filter(@usn5 In 9e0 Ends With $#usn8) Contains {@usn6:#usn7[`8esn`..usn1][$999..`7esn`]} Contains (:#usn7:`5esn`)-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}) Skip $usn2 Ends With $123456789 Limit [@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00|`5esn`[$`7esn`..$@usn5]] Is Not Null Is Not Null Delete `2esn`[$usn2][12.0],{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}[Single(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7)..],(:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] Delete 1000[12e12][`5esn`],0Xa Contains `8esn` Contains 0xabc;"), + octest:ct_string("Detach Delete Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}],Extract(usn2 In 7[12] Where usn1 Starts With 00|`8esn` Contains Count(*) Contains $#usn7) Contains None(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[0.e0]) Contains Extract(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]|$`4esn`['s_str'..]),`` Starts With $123456789;"), + octest:ct_string("Unwind {`8esn`:9e12 =~@usn6,`1esn`:999 Contains 0 Contains $`5esn`}[`4esn`()] As usn2 Merge #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))) On Create Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] On Match Set Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa).@usn6! =0.e0 Is Not Null Is Not Null,`1esn` =07 In `6esn` Union Delete 0X7 In $#usn7 Unwind {#usn8:1.e1 Is Null Is Null,_usn4:0xabc In 123456789 In 0x0}[All(@usn6 In 010[`5esn`] Where 00[1.e1..])..] As _usn4 Detach Delete [`6esn` In $`6esn`[``..][Count(*)..] Where $0[123.654..0.e0]][{`8esn`:$`4esn`[..$`8esn`][..Null]}..({usn2:_usn3[`2esn`..0X7][0.e0..$`3esn`]})<-[_usn4?:@usn6|:`7esn`]-(usn1 :`2esn`{@usn6:True Contains 's_str' Contains $usn1,``:$`4esn` Starts With 0 Starts With `7esn`})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})][None(`3esn` In `2esn`[..01][..True])..[0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF]] Union All Unwind #usn8(1000[12e12][`5esn`],9e1 Contains 12)[Extract(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0)..`1esn`(Distinct `3esn`[7..0.e0][0.0..123456789],`1esn` Starts With 0xabc Starts With $usn2)][Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 9e0[Count(*)..0.12][$`1esn`..12.0])..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12)] As @usn6 Remove None(`5esn` In 0X7 In $#usn7 Where usn1 =~$`7esn`).`3esn`!,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $123456789 In 0.12)._usn3?,(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]}).`6esn`? With *,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null Order By .e0 Starts With $@usn6 Starts With $7 Descending Skip [$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa);"), + octest:ct_string("Create (:@usn5{@usn5:$12[9e0..$999]})-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]->(:@usn5{#usn7:12e12 In $`5esn`})<-[:`8esn` *0X7..]->(:`3esn`{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]}) With Distinct $usn2,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Order By 's_str' Contains 12.e12 Contains $`4esn` Descending,.e12 Ends With 0Xa Ends With 0xabc Descending Skip #usn7 =~9e12;"), + octest:ct_string("Unwind $12 Starts With $usn1 As `4esn` Return Distinct *,@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])],[#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) As usn2 Order By $7 Starts With 12.e12 Starts With $@usn6 Asc,12e12 In 123456789 Asc Skip [0.0 Is Not Null,$`4esn`[`8esn`],$123456789[12e12..9e0]] =~.e12 Limit _usn4 Ends With _usn4 Ends With 9e0 Merge ``=((`4esn` :`4esn`:`6esn`)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})) Union Detach Delete $123456789[12e12..9e0] Remove [12.0 Starts With .12 Starts With `6esn`,usn2 Contains $0 Contains .0,$#usn7 In $@usn5 In $`1esn`].`7esn`!,Single(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]).`3esn`? Union Unwind .0[.e12..] As usn1 Remove `5esn`($`4esn` In 1.e1 In #usn7,0Xa[Count(*)..]).`2esn`,[$0[123.654..0.e0],01234567[Null..$_usn3]]._usn4!,{usn1:#usn8 =~.e0,_usn3:$_usn4 Is Null Is Null}.`1esn`;"), + octest:ct_string("With Distinct $7[999][usn1] As `6esn`,[Null[..0]][[#usn7 In 9e1[$`1esn`..] Where Count ( * ) In 0.12|$`6esn`[1.e1][$_usn3]]..] As @usn5 Skip None(#usn8 In `7esn` Where $`3esn` Contains $`1esn`) Starts With #usn8(0x0[Count(*)..@usn6][Count(*)..0Xa]) Create ((:#usn8:`1esn`)-[ *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})),`8esn`=(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) Merge (({@usn6:010 Starts With 0 Starts With 0.0,_usn4:07[$`2esn`..9e12][$`4esn`..9e12]})<-[:@usn6|:`7esn` *0..01{``:`1esn`[0.0..1e1][0x0..7],usn2:01[`3esn`..][Count(*)..]}]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})) On Create Set [12 =~usn1,7 =~`4esn`,``[9e12][$999]].`1esn` =Extract(#usn7 In $999 In 1e1 Where `5esn`[..True][..0.e0]|$`5esn` =~$0 =~``) In (:`7esn`{#usn8:0Xa Ends With $`3esn` Ends With $1000})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]}) In Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|999 Contains 0 Contains $`5esn`) Union All Create _usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))),usn1=(_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]}) With Distinct [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Any(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`),usn2[usn2..0X7] As `1esn` Order By 's_str'[0x0..1.e1] Asc Limit 0xabc[..$1000][..`5esn`] Where `2esn` Starts With 12.e12 Starts With 12.0 Merge #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Union All Remove Any(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1).`2esn`!,None(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2).``;"), + octest:ct_string("Merge @usn6=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}) Create `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Union All Delete $`1esn` Contains 1e1 Contains @usn6,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null,`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..];"), + octest:ct_string("Create #usn8=(`5esn` :`7esn`)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1)<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}) Union Create usn2=((_usn3 :_usn4)-[`3esn`:`2esn`|`4esn`]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[:@usn6|:`7esn` *01..123456789]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}));"), + octest:ct_string("Unwind All(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Is Not Null Is Not Null As `8esn` Create ((#usn8 :_usn3)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)),((:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->({@usn6:12.e12 Contains #usn7 Contains $_usn4,usn2:$`5esn` =~$0 =~``})-[#usn7 *01..123456789]->(:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})) Create `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})),usn2=((#usn7 {`8esn`:`7esn` In 010 In usn1})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})) Union Unwind 123.654[`4esn`..12] As `2esn` Create (((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})<-[?:usn1|`4esn` *01..123456789{usn1:.e12[$@usn6..00][01234567.._usn3],`1esn`:`7esn` Contains 9e0}]-(_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`}))),`6esn`=(:`3esn`{@usn6:$`5esn` =~$`8esn` =~usn2,`8esn`:12[..0e0][...e1]}) Union All Delete Extract(usn2 In 7[12] Where 0X7[.0])[Single(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)],0x0[..9e0] Create #usn8=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}),`2esn`=(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Merge `5esn`=({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})<-[_usn4?:@usn6|:`7esn`]->(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})<-[`8esn`:usn1|`4esn` *0Xa{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]->(:`8esn`) On Create Set {usn1:$_usn4 Starts With $1000 Starts With 12}.@usn6! =[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])] On Create Set `5esn`+=All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],`2esn` =False Starts With 0X7 Starts With 01234567;"), + octest:ct_string("Return *,'s_str' Ends With `7esn` Ends With 010 Order By #usn7[``] Desc,`7esn` Starts With @usn5 Ascending Skip @usn6 =~999 =~@usn5 With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Where 12.e12 Ends With $`` Unwind $`5esn`[$`3esn`..] As #usn8 Union Merge `6esn`=(((_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})-[``?:_usn4]-(_usn4 :_usn4))) On Match Set Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]|$``[..\"d_str\"][..$#usn8]).@usn6 =[$usn1[`2esn`..][$`2esn`..]][(`3esn` :usn2)-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})..`2esn`(Distinct $@usn6 Is Not Null Is Not Null,Count ( * ) Ends With $123456789)],None(#usn8 In `7esn` Where ``[7.._usn3]).@usn6? =`6esn`,Any(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])._usn4! =`` Is Null On Match Set `4esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1 =(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Create (((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))),#usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Create _usn3=((:``:usn2{`5esn`:1.e1[`8esn`],`1esn`:.e0})-[`3esn`:`2esn`|`4esn`]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`6esn`?:_usn3|:`7esn` *..010]->(:_usn3{_usn4:.e1[7..][9e0..]})),@usn6=(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`}) Union Remove Extract(_usn4 In 12e12 In 123456789 Where .e1 Starts With 12.e12 Starts With `2esn`|$@usn5 Is Null Is Null).@usn5!,Extract(@usn6 In 010[`5esn`] Where $0[0Xa..$123456789]|#usn7[0.e0..]['s_str'..]).`8esn`?,(:#usn8:`1esn`$`7esn`)-[?:@usn6|:`7esn` *0X0123456789ABCDEF..{_usn4:0x0[12e12..$`7esn`]}]->({@usn5:Count(*) Is Not Null Is Not Null}).`5esn`?;"), + octest:ct_string("With 010[12.0..`4esn`][``..Count(*)],$`7esn`[123456789..$1000][Count ( * )..$7],$`2esn` Contains Count(*) As `3esn` Order By [$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) Ascending,[usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Ascending Limit 0.e0 Ends With 1.e1 Where _usn4 Is Not Null Optional Match ((`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})),`5esn`=(((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Union All With 0.12 Starts With $`8esn` Starts With @usn5 As @usn5,#usn7 Is Null Is Null As `1esn`,[@usn5[$`6esn`..][$999..],`` Starts With $123456789] Is Null Order By Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) Ascending,'s_str' Starts With 1e1 Starts With $0 Desc Where .e1[7..][9e0..] Merge `2esn`=(((`7esn` )<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2))) On Match Set #usn8 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) Unwind _usn3[`5esn`..][usn2..] As #usn7 Union Remove {`3esn`:$`5esn` Is Not Null Is Not Null}.`2esn`!,{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1}.`1esn`? Match _usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))),usn1=(_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]});"), + octest:ct_string("Delete 9e0 Contains $12 Contains `3esn` Remove Filter(@usn6 In 010[`5esn`] Where 00[$usn1..]).usn2? Return @usn5[01][@usn5],9e0 Contains $12 Contains `3esn` As #usn8,{`4esn`:0.0[usn1..],`7esn`:12.0[$1000..][#usn7..]}[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7)..[usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]]][[12.e12[..$`6esn`],999 In #usn8 In $``]..Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1)] Order By Null Ends With _usn4 Ends With 0.0 Asc Skip (`1esn` $`4esn`)-[@usn6?:`7esn`|:`2esn`]-({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]}) =~Filter(`3esn` In 9e1 Contains $999 Where 12.0 Is Null Is Null) =~[0xabc In Null] Union Remove Any(#usn7 In 9e1[$`1esn`..] Where 999 In #usn8 In $``).`7esn` Merge (:`4esn`:`6esn`{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]-(:`6esn`:_usn3)<-[@usn5? *999..{usn1:.e12[$@usn6..00][01234567.._usn3],`1esn`:`7esn` Contains 9e0}]-({@usn6:999 Contains 0 Contains $`5esn`,#usn7:999[..`1esn`][..07]}) Delete Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null],9e1 =~123456789 =~999,.e12[$@usn6..00][01234567.._usn3] Union All Merge `2esn`=((#usn7 {#usn7:1.e1 Starts With 9e12})<-[ *..07{`5esn`:999 In 0e0}]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})) Merge usn1=(((`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]-(#usn8 :`6esn`:_usn3)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1))) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..];"), + octest:ct_string("Detach Delete 9e1[_usn3] Delete [usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null,$`2esn` Starts With .0 Starts With `1esn`,0x0[0.0] Optional Match _usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Where 0.e0 Starts With .0 Starts With 123456789;"), + octest:ct_string("With $@usn5 Ends With @usn5 Ends With 0xabc Union With Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By [Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] Ascending,None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) Descending Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]) Where @usn6 Is Not Null Is Not Null Create (`3esn` )-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]}) Remove Any(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0).usn1,All(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])._usn4!,7._usn4 Union All Merge #usn8=((`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})) On Create Set `4esn`+=$`4esn`[07..],`1esn` =123.654[`4esn`..12] On Match Set `6esn`(Distinct 0Xa[$`8esn`..][$_usn4..],0xabc In Null).`2esn`! =(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[? *..010{#usn8:False Is Null}]->(#usn7 {#usn7:1.e1 Starts With 9e12})<-[:_usn3|:`7esn` *00..0Xa]-(`1esn` $`4esn`)[..[0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]]][..(:`2esn`{_usn3:@usn5[0.0..0X7]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null).`7esn`? =Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])],Extract(`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]).@usn5 =$@usn6 Ends With 123456789 Ends With 12.0 Remove [0[$`5esn`],$999 In 1e1,$`6esn` Is Null].`5esn`,(:usn1:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]})<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1}).`3esn`,{`6esn`:$`7esn`[0.12]}._usn3!;"), + octest:ct_string("Unwind 0e0[$999..0.0][$`8esn`..1.e1] As `` Union Remove `6esn`($`2esn` Starts With `4esn` Starts With $usn1,.12 Starts With _usn3 Starts With $``).usn2!;"), + octest:ct_string("Unwind $`6esn` Is Not Null Is Not Null As `4esn` Remove Single(#usn7 In 9e1[$`1esn`..] Where ``[$`3esn`]).#usn7!,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3])._usn3?,{usn2:`2esn`[..$_usn3]}.usn2? Unwind $`3esn` Contains $`1esn` As `6esn` Union Unwind 0x0[12e12..$`7esn`] As `7esn` Union All Detach Delete $0[123.654..0.e0],123.654;"), + octest:ct_string("Unwind 0xabc In 123456789 In 0x0 As usn1;"), + octest:ct_string("With Distinct *,`2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Order By $`2esn` Starts With 0.12 Starts With $12 Ascending,07 In `6esn` Desc,12[..0e0][...e1] Desc Skip #usn8[`6esn`..][$``..] Limit `3esn`[..0X0123456789ABCDEF][..0x0] Union With {``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}[..Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)][..Any(#usn7 In $999 In 1e1 Where 07 In `6esn`)] As usn1,`8esn` Is Not Null Is Not Null As `4esn` Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Limit Any(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]) =~[9e12 =~@usn6,01 Ends With 0Xa Ends With 0X7,$@usn6[$0..9e12][.e12..Null]];"), + octest:ct_string("Unwind $@usn6 Ends With `1esn` As usn1 Detach Delete [$usn1[`2esn`..][$`2esn`..]] Contains Extract(usn2 In 7[12] Where $_usn3 Is Null|.e12 Is Null Is Null),12e12 Ends With 0.0 Ends With usn1 Unwind `6esn`[..Count ( * )][..$_usn4] As usn2 Union All Delete None(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1)[..{@usn5:$@usn6 Is Not Null Is Not Null}][..{`3esn`:1e1 In 0.0 In 0X0123456789ABCDEF}] Union With 0.e0 =~00 As `3esn`,(`2esn` {`7esn`:999 In 0e0})<-[`8esn`?:`2esn`|`4esn` *01..123456789{`8esn`:$`4esn` Is Null Is Null,usn1:$1000 Starts With $`3esn` Starts With 0.e0}]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[ *0X7..{#usn8:.e0 Contains $#usn8}]->(`2esn` :`6esn`:_usn3) In (`8esn` :`6esn`:_usn3)-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(_usn4 {_usn4:123.654 In 12})-[?:#usn8|:`3esn` *0x0..]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) In {_usn4:.e0 Contains $#usn8,@usn6:1000[12e12][`5esn`]} As ``,#usn8[`6esn`..][$``..] As `2esn` Where 00 In @usn6 In 0;"), + octest:ct_string("Create `4esn`=((@usn5 {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})),_usn3=(`8esn` :`2esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`6esn`]->({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) Match ((#usn7 {`6esn`:$`2esn` Contains Count(*)})-[?:_usn4]->(`2esn` :usn2)) Remove `1esn`:@usn5 Union With 12[..0e0][...e1] Order By `4esn` =~$`3esn` =~@usn5 Descending,1000[7..$12] Ascending,True Ends With $_usn3 Ends With 12 Desc Delete `1esn`[`3esn`..],9e12[$`5esn`..$123456789];"), + octest:ct_string("Create _usn4=((_usn3 :`8esn`{#usn8:False Starts With 0X7 Starts With 01234567})),((`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}));"), + octest:ct_string("Create (({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})),`6esn`=(({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Delete $`5esn`,[Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1],.12[123.654..] Union Create (((`6esn` {`3esn`:$`2esn`[0..123456789][``..`1esn`],`7esn`:$0[0Xa..$123456789]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}))),_usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) With Distinct $`1esn`[Null][True] As usn2,{`6esn`:$#usn7 =~`2esn`,`4esn`:True[$_usn3..]}[(:`1esn`:_usn4{#usn8:00[12..$`6esn`],@usn6:usn1[..$@usn6][..00]})-[`2esn`:`4esn`|@usn5 *01234567..]-(:`5esn`{_usn4:12 Starts With #usn7 Starts With 0Xa,#usn7:999 Is Null Is Null})-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})..Filter(@usn6 In 010[`5esn`] Where `7esn`[1e1])][Any(@usn6 In 010[`5esn`] Where False[$`4esn`..])..Extract(@usn5 In 's_str'[0..] Where `7esn` In 010 In usn1)] Limit {`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..] Unwind 1.e1 Ends With $#usn7 As `5esn`;"), + octest:ct_string("Create usn1=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) Union Delete Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7) =~usn2(1.e1 =~.12) =~Filter(`3esn` In `2esn`[..01][..True] Where #usn8 =~.e0) Remove {_usn3:_usn4 Is Null Is Null}.``,``(@usn6[`1esn`..]).`7esn`! Union All With *,All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] As `3esn`,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[usn2(Distinct #usn7 Contains $0 Contains $usn2,0.e0)..] As @usn6 Order By $`1esn` Ends With 0X0123456789ABCDEF Ascending Limit `4esn` Contains 9e0 Remove [#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|Count(*) Is Null].#usn7,{``:0Xa =~False =~@usn5,`8esn`:.12[123.654..]}.`6esn`!,Any(#usn7 In $999 In 1e1 Where usn1 =~$`7esn`).`1esn`!;"), + octest:ct_string("Create (`6esn` {`3esn`:$`2esn`[0..123456789][``..`1esn`],`7esn`:$0[0Xa..$123456789]}),`7esn`=((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )) With *,0.0[$@usn5.._usn4] As `1esn`,07 Is Null As #usn7 Order By 12.e12 Contains `6esn` Ascending,[$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1] Asc,Extract(`3esn` In `2esn`[..01][..True] Where 00[01234567][False]|$`3esn` Ends With 01234567) Starts With (_usn4 :_usn4)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}) Starts With Extract(@usn6 In 010[`5esn`] Where $`2esn` Starts With `4esn` Starts With $usn1) Asc Limit 9e1 With *,1.e1 =~$_usn4,9e12 Contains $_usn3 Contains \"d_str\" As @usn5 Order By `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] Desc,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,$@usn5 Descending Where `6esn`[$1000][`3esn`] Union All Return 999 In #usn8 In $``,$1000 Starts With $`3esn` Starts With 0.e0 As @usn6,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `5esn` Order By [@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null Ascending Skip [`8esn`[..$#usn8],1.e1 Starts With 9e12] Ends With [`6esn` In $`6esn`[``..][Count(*)..]|.e1[12.0..]] Ends With Any(usn2 In 7[12]) Limit Count(*)[9e12..12.0];"), + octest:ct_string("Match ({_usn3:$12[9e0..$999],#usn7:0.0 Contains `3esn` Contains @usn5})-[#usn7?:`7esn`|:`2esn` *..07]-(#usn7 {#usn7:1.e1 Starts With 9e12}),#usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) Create ((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})),(((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[?:_usn4]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1}))) Unwind #usn7[0.12..] As `8esn` Union All Merge `1esn`=((`2esn` {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})) On Match Set (:``:usn2{`4esn`:#usn7 Contains $0 Contains $usn2})<-[:`8esn` *0X7..]->(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2})<-[`2esn`? *01..123456789]-(`2esn` :@usn6).`8esn` =`7esn`[1e1] Delete True Contains 's_str' Contains $usn1 Unwind 12['s_str'][01] As `6esn`;"), + octest:ct_string("Delete 123.654 In $`7esn` Return Distinct *,12.e12 Contains `6esn`,12[``...e12] As `6esn` Order By 's_str' Is Not Null Descending,123.654[`4esn`..12] Asc,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) Ascending;"), + octest:ct_string("Return Distinct $7 Ends With Count ( * ),`6esn` =~Null As `4esn` Order By None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]) Ends With [_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4|0x0[0X7]] Asc,12 Starts With #usn7 Starts With 0Xa Desc Skip .12[01][@usn5] Union Return Distinct `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,0xabc In .12 In 0Xa Descending,.0 Contains .e12 Contains 0 Desc Delete _usn3[12.e12..][`5esn`..];"), + octest:ct_string("Create (#usn7 {`6esn`:$`2esn` Contains Count(*)})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`}) Return Distinct *,1e1 Contains 0.e0 Contains 9e1 Limit None(#usn7 In 9e0[$1000] Where $1000 Is Not Null) Is Null Is Null Create ((#usn7 {`1esn`:$`4esn` Is Null Is Null})<-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(`6esn` :`8esn`)) Union Merge `1esn`=((`6esn` {`3esn`:$`2esn`[0..123456789][``..`1esn`],`7esn`:$0[0Xa..$123456789]})<-[? *00..0Xa]->(usn2 :@usn5)-[?:`2esn`|`4esn` *0Xa{#usn7:1.e1 Starts With 9e12}]-(:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) On Create Set `3esn`+=$@usn6 Is Not Null Is Not Null,[$usn2 Is Not Null Is Not Null,0 =~1e1].`3esn`? =$1000[0X0123456789ABCDEF][12] On Match Set `2esn` =`3esn`[..0X0123456789ABCDEF][..0x0];"), + octest:ct_string("Detach Delete Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`) Create _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),(((`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})<-[:`2esn`|`4esn` *0X0123456789ABCDEF..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(@usn6 :`2esn`{`4esn`:$999[0Xa..][9e1..]}))) Merge ((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) On Create Set `5esn` =$1000[$`4esn`..False],`6esn` =[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`],`2esn` =12.0 Is Null;"), + octest:ct_string("Delete Filter(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3]) In ({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) In Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0),{`1esn`:1e1 Contains 's_str' Contains `3esn`} =~None(#usn7 In 9e0[$1000] Where `6esn`[$1000][`3esn`]) Union All Return $@usn5,0.12[0Xa][$`7esn`] As `4esn`,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As _usn3 Create `2esn`=((`6esn` :#usn7:`5esn`)<-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]->(:#usn8:`1esn`$`7esn`)),((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(:`8esn`{``:$`1esn` =~999})) Remove [`8esn` Contains Count(*) Contains $#usn7,$12[$usn1..][Count(*)..],_usn4 Is Not Null].@usn6 Union With $usn2 Is Not Null Is Not Null Skip 999[@usn5..][Null..] Limit $@usn6 Ends With `1esn` Where 9e12[$`5esn`..$123456789] Match ((({`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[`3esn` *..07{usn2:True Contains 0x0 Contains $_usn3}]-({``:``[$`3esn`],#usn8:$@usn6[00]}))) Where #usn7 =~9e12 Detach Delete 0Xa In #usn7 In 's_str',0.e0[1000.._usn4][.e1..usn1];"), + octest:ct_string("Detach Delete usn1 Ends With 0.0,$999 In 1e1,`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..];"), + octest:ct_string("Return Distinct 010[12.0..`4esn`][``..Count(*)],$`7esn`[123456789..$1000][Count ( * )..$7],$`2esn` Contains Count(*) As `3esn` Order By [$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) Ascending,[usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Ascending Limit 0.e0 Ends With 1.e1;"), + octest:ct_string("Create (`6esn` :`5esn`)-[_usn4?:`6esn`|:#usn8]->(#usn7 :`3esn`{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null}),`6esn`=((:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]})) Match ({_usn3:$12[9e0..$999],#usn7:0.0 Contains `3esn` Contains @usn5})-[#usn7?:`7esn`|:`2esn` *..07]-(#usn7 {#usn7:1.e1 Starts With 9e12}) Union Return Distinct *,$999[0Xa..][9e1..] As `4esn` Skip $usn2 Ends With $123456789 Limit @usn6 Contains .12 Contains $usn1 Create ((`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})),`5esn`=(((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Union All Remove None(_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1).``?,[@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2].`1esn` Return Distinct `1esn`[0Xa] As usn1,$`` Contains $`2esn` Contains $usn2 Order By $usn1 Ends With _usn4 Ends With `2esn` Descending,$``[..$#usn7][..`6esn`] Asc Skip 07[999];"), + octest:ct_string("Remove Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5,{`3esn`:9e1 Ends With Count(*) Ends With $7}._usn4! Detach Delete 0X7[..$`8esn`] Union All Delete `4esn`($_usn4 Starts With $1000 Starts With 12)[{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}],00[$`1esn`..][@usn6..],0.12 Starts With $`8esn` Starts With @usn5 Union Return Distinct `1esn`(.0 Starts With `1esn`,01[`3esn`..][Count(*)..]) In [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] As `4esn`,`7esn`[$usn1..]['s_str'..] Detach Delete 00[12e12][$`7esn`],\"d_str\" Is Null Is Null,usn2[1.e1] Delete {``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]}[#usn7(Distinct $`1esn`[``][07])..None(@usn6 In 010[`5esn`] Where $`3esn` Ends With 01234567)];"), + octest:ct_string("Unwind $#usn8[@usn6..] As usn2 Merge ((`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})) On Match Set `1esn` =All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null With 0Xa In #usn7 In 's_str',`4esn` Starts With 0e0 As `7esn` Skip $1000 Is Not Null Limit 0X7['s_str'..][01..] Union All Unwind $@usn6 In @usn6 In 1e1 As #usn7 With usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Skip $@usn6 Ends With `1esn` Limit 9e1 Ends With Count(*) Ends With $7 Delete $0[12.0...e1],_usn4[.12..$usn2][$_usn3..123.654],07[..07][..0X7] Union Detach Delete $@usn6 Ends With `1esn`,$123456789[0X0123456789ABCDEF],12[..0e0][...e1] Remove None(_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`).`2esn`,(`5esn` :``:usn2)<-[?:`4esn`|@usn5{usn2:$@usn6[$`8esn`..][123456789..]}]->(:_usn4{`8esn`:01234567[Null..$_usn3]}).``?,Extract(usn2 In 7[12] Where .12[0X7..][12e12..]|0.0 Contains #usn7).`1esn` Optional Match @usn6=(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})-[:@usn5|_usn3 *00..0Xa]-(:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(_usn4 :@usn5) Where \"d_str\"[True..];"), + octest:ct_string("With *,`3esn`[...e1] Where 12.e12[`8esn`..][1000..];"), + octest:ct_string("Merge @usn5=(({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})) On Create Set [@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null|Count(*) Starts With usn2 Starts With `7esn`].`3esn` =[@usn5 In 's_str'[0..] Where 123456789 =~12 =~'s_str'|0Xa In #usn7 In 's_str'] Is Not Null Union All Match _usn4=((:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})) Where 123456789[12] Merge #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}) On Match Set _usn3:`7esn` On Create Set Single(@usn6 In 010[`5esn`] Where 123.654).`6esn`? =0.e0[0X0123456789ABCDEF..],(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}).`3esn`? =999[..`1esn`][..07],[@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1].`6esn` =`7esn` Starts With @usn5 With Distinct 0Xa In #usn7 In 's_str',`4esn` Starts With 0e0 As `7esn` Skip (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`) Where .e0;"), + octest:ct_string("Delete 's_str' In $_usn4,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null,12.0 Is Null Union Detach Delete All(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`])[None(`5esn` In 0X7 In $#usn7 Where 's_str' Starts With 1e1 Starts With $0)..(_usn3 :`7esn`)<-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]-(:`6esn`:_usn3)],0Xa[..Count ( * )][..$123456789],`2esn` Starts With .e1 Starts With 9e12 Unwind All(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7) Contains `2esn`(Distinct 0x0[0.0],0Xa =~False =~@usn5) Contains Single(#usn7 In $999 In 1e1 Where $@usn6 =~#usn7 =~True) As `8esn` Merge ``=(((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[`2esn`? *01234567..]->(:`2esn`)-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->({`7esn`:999 In 0e0}))) Union Merge (@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`}) On Create Set All(usn2 In 7[12] Where `2esn`[$12..]).#usn8? =[#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3],Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3|01 In $@usn6).`7esn`? ={`3esn`:.e1[..\"d_str\"][..$123456789]},[$`5esn` =~usn1,@usn6 Contains .12 Contains $usn1,999 In #usn8 In $``]._usn3 =[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )] On Match Set `5esn` =0.e0[0X0123456789ABCDEF..] Optional Match @usn6=(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})-[:@usn5|_usn3 *00..0Xa]-(:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(_usn4 :@usn5);"), + octest:ct_string("Detach Delete #usn8[`8esn`..],$`5esn` =~usn1 Merge (`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) Create @usn5=(({`8esn`:`5esn` Contains #usn7 Contains 9e12})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`1esn` :`3esn`{#usn8:$usn2[0.e0],`8esn`:$`4esn`['s_str'..]})) Union All Merge _usn4=(`1esn` {@usn5:`2esn` Starts With $`4esn`}) On Match Set @usn5+=$0[123.654..0.e0],Any(`8esn` In 123456789 =~@usn6 Where .e1 =~_usn4 =~_usn4)._usn3? =01[..$`8esn`][..9e0],usn1 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) Match _usn4=(((:#usn7:`5esn`{`4esn`:$``[..\"d_str\"][..$#usn8]})<-[`6esn`? *00..0Xa]->(:#usn8:`1esn`$`7esn`)-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]}))) Remove Filter(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null).`7esn`,@usn6:``:usn2,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 07 Is Not Null Is Not Null).`6esn`?;"), + octest:ct_string("Remove Extract(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12|.e1[12.0..]).`1esn`!,(:`5esn`{@usn6:1000[0e0][1e1]})-[:`` *0..01]-(:`8esn`{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]-(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}).@usn6! Remove [`5esn` In 0X7 In $#usn7 Where @usn6 Is Not Null Is Not Null|9e1[..123456789]].``?,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7).usn1 Optional Match (`8esn` {usn1:010[`5esn`],_usn3:_usn4 Is Null Is Null}) Union All Remove All(@usn6 In 010[`5esn`] Where `7esn`[$usn1..]['s_str'..]).usn1!,All(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).`8esn` Unwind `4esn` Starts With 0e0 As `1esn` Return Distinct `` Starts With $123456789,$`4esn` Starts With $`4esn` Starts With $_usn3,9e1[$#usn8][$1000] Order By .e12[.12..] Desc,{@usn5:01[`3esn`..][Count(*)..]} Starts With Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str']) Desc,``[$`3esn`] Descending Skip {@usn5:\"d_str\"[True..]} In _usn4(0 =~1e1,$123456789 Contains $#usn8 Contains ``) In [999 Contains $1000,`2esn` =~.e12 =~0X0123456789ABCDEF,_usn4[@usn6..][$0..]];"), + octest:ct_string("Match (({`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]})-[usn2?:`3esn`]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})),((#usn7 {`6esn`:$`2esn` Contains Count(*)})-[?:_usn4]->(`2esn` :usn2)) Where 12e12 Contains `2esn` With $@usn6[..12] As #usn8,Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] As `7esn` Order By $@usn5 In 12e12 In 01 Ascending Limit Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)[..`4esn`][..(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)] Where _usn3 Starts With 12e12 Starts With `5esn` Optional Match `8esn`=((@usn6 {usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}));"), + octest:ct_string("Create ((:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})),(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Optional Match @usn5=(:@usn5{#usn7:12e12 In $`5esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})-[?*]-({`8esn`:`5esn` Contains #usn7 Contains 9e12}) Where 9e1 Contains 12 Return Distinct *,.0 Contains .e12 Contains 0,1e1 Is Null Is Null As usn2 Union Detach Delete 9e0[$`8esn`],`5esn` Contains #usn7 Contains 9e12,12 Is Null Match @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Where 7[0e0..] Detach Delete (`4esn` :#usn7:`5esn`{_usn4:0Xa Ends With $`3esn` Ends With $1000})-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})[[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]|`1esn`[0.12..][@usn6..]]..][{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}..],07 Contains `3esn` Contains `7esn`,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1) Union Create _usn3=((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})-[#usn8:#usn7|@usn5 *123456789..{@usn5:usn2[12.e12..]}]->(`` )<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})),usn2=((`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})) Create usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})),((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Merge (({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8}));"), + octest:ct_string("Match `1esn`=(`3esn` )-[`7esn`:`4esn`|@usn5 *12..]-({`1esn`:#usn7[0]}),(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}) Where .0[$``..0X7] Union All Create ((`1esn` :usn2)),`2esn`=(`5esn` :``:usn2)<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2);"), + octest:ct_string("With Distinct `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] As `3esn`,usn1 Ends With 0.0 Order By $`3esn`[$_usn4..0Xa] Desc,$`1esn` Ends With 0X0123456789ABCDEF Ascending,$@usn5 Ends With @usn5 Ends With 0xabc Descending;"), + octest:ct_string("Match ((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[?:`4esn`|@usn5 *0Xa]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})<-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]-(:_usn4{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]})),(:`3esn`{``:`` Is Null,`8esn`:$@usn6[$0..9e12][.e12..Null]}) Match #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Where `6esn` Starts With `6esn` Detach Delete [#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Union All Return *,0.e0 =~00 As `3esn` Order By 's_str'[0x0..1.e1] Asc,usn1[False..`5esn`][$1000..$12] Ascending Unwind @usn6[123.654..][0x0..] As `2esn`;"), + octest:ct_string("Delete 999 Starts With `4esn` Starts With 1000,Filter(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12])[..Extract(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])][..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]],Filter(_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4) Is Null Is Null;"), + octest:ct_string("Unwind [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e1[usn1..0x0][12.e12..12.0]][..{usn2:0x0[0X7]}][..[12.e12 Is Not Null Is Not Null,$@usn6[.0..][0e0..]]] As _usn4 Union All With Distinct 1.e1[$`3esn`][0Xa] As @usn5 Order By (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Ascending,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null Descending,9e12 =~@usn6 Asc Skip usn1[$@usn5] Where $@usn6[00];"), + octest:ct_string("Detach Delete 9e0[$`8esn`],`5esn` Contains #usn7 Contains 9e12,12 Is Null Match @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Where 7[0e0..] Detach Delete (`4esn` :#usn7:`5esn`{_usn4:0Xa Ends With $`3esn` Ends With $1000})-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})[[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]|`1esn`[0.12..][@usn6..]]..][{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}..],07 Contains `3esn` Contains `7esn`,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1) Union All Return *,`2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Order By $`2esn` Starts With 0.12 Starts With $12 Ascending,07 In `6esn` Desc,12[..0e0][...e1] Desc Skip #usn8[`6esn`..][$``..] Limit `3esn`[..0X0123456789ABCDEF][..0x0] Merge (((:`7esn`{_usn3:@usn5[0.0..0X7]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]}))) On Match Set @usn5+=$0[123.654..0.e0],Any(`8esn` In 123456789 =~@usn6 Where .e1 =~_usn4 =~_usn4)._usn3? =01[..$`8esn`][..9e0],usn1 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) On Create Set [#usn7 In 9e1[$`1esn`..] Where 00 Ends With $`1esn` Ends With `7esn`].`2esn` =All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null),``:@usn5,@usn5+=12.e12[_usn4..$1000][$7..$999] Remove `3esn`(Distinct 123.654 Starts With 0X7 Starts With $`4esn`).``!,Any(_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1).`2esn`,Filter(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]).@usn5? Union Detach Delete 1e1 Contains 's_str' Contains `3esn`,12[``...e12];"), + octest:ct_string("With Distinct 0[$#usn8..][0x0..];"), + octest:ct_string("Optional Match (`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}) Return Distinct _usn3 Is Not Null Is Not Null As `` Skip 0X7[..$`8esn`] Limit {@usn5:$@usn6 Is Not Null Is Not Null} Starts With [`3esn` In `2esn`[..01][..True] Where 0x0[usn1..usn1]] Starts With Extract(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..]|0X7['s_str'..][01..]) Union All Merge (`1esn` :`3esn`{#usn8:$usn2[0.e0],`8esn`:$`4esn`['s_str'..]})<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]}) On Create Set `2esn`+=0X0123456789ABCDEF In .12,`1esn` =$`7esn` In False In $`1esn` On Create Set usn1+=_usn3 Starts With 12e12 Starts With `5esn`,`4esn`+=(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})[..Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|Count ( * )[$`5esn`..][$7..])][..$usn2],#usn7+=.e0 Is Null Optional Match #usn8=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}),`2esn`=(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``});"), + octest:ct_string("Unwind (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]} As `4esn` Union Delete 12.e12 Ends With $``,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null,{#usn7:usn1 In ``}[None(`3esn` In `2esn`[..01][..True])..Extract(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..])];"), + octest:ct_string("Delete 12.e12 Starts With \"d_str\" Starts With 9e1,'s_str' Starts With 9e0 Starts With usn2,$`4esn`[..$`8esn`][..Null] Optional Match (`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}) Return Distinct *,00 Ends With $`1esn` Ends With `7esn`,$@usn6 Is Not Null Is Not Null As `8esn` Order By (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Descending,[#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Descending Skip [usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Limit 12.e12 =~.0 =~usn1 Union All Detach Delete 0.e0 =~00 Unwind 9e1 =~123456789 =~999 As @usn5;"), + octest:ct_string("Create ((({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:#usn7|@usn5*..]-(`3esn` :usn2{`6esn`:#usn8 Is Null})<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))),`8esn`=(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`)-[?:usn2{#usn7:0 =~1.e1 =~$#usn7}]->(`8esn` $12);"), + octest:ct_string("Match (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})));"), + octest:ct_string("Create _usn4=((#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[`5esn`? *01234567..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(usn1 {``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})),(_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Create _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),(((`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})<-[:`2esn`|`4esn` *0X0123456789ABCDEF..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(@usn6 :`2esn`{`4esn`:$999[0Xa..][9e1..]})));"), + octest:ct_string("With Distinct *,True[$_usn3..] As usn1 Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Descending Limit [0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]][{usn2:$@usn6 Ends With `1esn`,_usn3:`7esn`}..][{@usn6:1e1 Is Not Null Is Not Null,`8esn`:$`1esn` Starts With $`4esn` Starts With $_usn3}..] With Distinct [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Any(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`),usn2[usn2..0X7] As `1esn` Order By 's_str'[0x0..1.e1] Asc Limit 0xabc[..$1000][..`5esn`] Where `2esn` Starts With 12.e12 Starts With 12.0 With *,0.0 Contains `3esn` Contains @usn5 As #usn8,[`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] As `4esn` Order By [#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Descending,0x0[usn1..usn1] Asc,`2esn` Starts With $`7esn` Descending Union Return *,`8esn` =~@usn6 =~$`2esn` As _usn3 Optional Match @usn5=(`7esn` :`3esn`{`2esn`:999[123.654..$usn2][Count ( * )..0x0]})-[`2esn`?:usn1|`4esn` *00..0Xa]-(`4esn` :`4esn`:`6esn`),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Where 12 Starts With #usn7 Starts With 0Xa Return $7 Ends With Count ( * ),`6esn` =~Null As `4esn` Skip 1e1[_usn3] Limit [`2esn` Is Null] Is Null Is Null Union All Match ``=(:_usn3{`7esn`:$999 Ends With .e0})<-[`8esn`?:`2esn`|`4esn`{usn2:#usn8[`6esn`..][$``..]}]-(@usn6 {`6esn`:$`5esn` =~usn1,`5esn`:$`` Starts With $1000 Starts With @usn6})-[?{_usn3:010[`5esn`],_usn4:#usn8 =~.e0}]-(#usn8 :`3esn`{`5esn`:$@usn6 Ends With `1esn`}),`3esn`=((`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) Optional Match ((({`7esn`:999 In 0e0})<-[#usn7 *01..123456789]->({`2esn`:`7esn` In 010 In usn1,`8esn`:$0[123.654..0.e0]})<-[? *7..]-(usn1 {@usn5:_usn4[$usn1..01234567][123.654..`5esn`],`5esn`:1.e1 =~$_usn4})));"), + octest:ct_string("Optional Match (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3) Where $`4esn`[..$`8esn`][..Null] Remove {`6esn`:Null =~`6esn`}._usn3!,[usn2 In False[$usn1][0x0] Where `4esn` Starts With 0e0].`6esn`!,[010[`5esn`],0Xa[..Count ( * )][..$123456789]]._usn3 Unwind Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null] As #usn7 Union With $`3esn` Ends With 1000,999[..`1esn`][..07] Skip [123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)] Limit [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12] Starts With usn2(01 Is Null) Starts With Filter(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]) Remove _usn4:`2esn` Union All Remove All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..]).@usn6!,Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12).@usn6!,[`8esn` In 123456789 =~@usn6 Where @usn6 Is Not Null Is Not Null|$`5esn` =~$`8esn` =~usn2].`7esn`? Remove (`3esn` {`8esn`:`7esn` In 010 In usn1})<-[:`1esn`|`3esn`{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]}).@usn5,[`8esn` In 123456789 =~@usn6 Where ``[9e12][$999]].@usn5?,(`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]}).`6esn` With _usn3 Is Not Null Is Not Null As `` Skip [$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][None(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..])..] Where .e1[12.0..];"), + octest:ct_string("With Distinct $7[999][usn1] As `6esn`,0 Ends With Count(*) Ends With False As `7esn` Order By Any(#usn7 In 9e0[$1000] Where .e0 Is Null) =~Extract(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0|$`3esn` In $usn2) =~{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Descending Skip 010[...12] Limit $`1esn` In .e0 Return Distinct `3esn`[$123456789..][$usn2..] Order By `3esn`[7..0.e0][0.0..123456789] Asc,``[$`1esn`] Desc Skip Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) Starts With [12 In $usn1 In 7,`6esn` Ends With Count ( * ) Ends With Count ( * ),`2esn` Starts With $`7esn`] Starts With usn2(Distinct .0[..'s_str'][..01234567],Count(*) In 12 In `6esn`) Limit `3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[12[..0e0][...e1]]..Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $123456789 Contains $#usn8 Contains ``)] Union With *,00[False..0e0] As _usn3 Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc Skip (`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}) =~[12 In $usn1 In 7] =~Filter(@usn5 In 's_str'[0..] Where 0.e0) Limit [_usn3 Ends With 7 Ends With $`1esn`,True Contains .e12,usn2 Is Not Null] Contains [$`2esn`[.0..][0.0..]] Contains (`6esn` :`8esn`)<-[_usn3 *0X0123456789ABCDEF..]-(#usn8 :`2esn`)-[`7esn`:#usn8|:`3esn` *0..01{`3esn`:07[_usn3..][`6esn`..],@usn6:``[usn1][`5esn`]}]->(:_usn3{_usn4:.e1[7..][9e0..]}) Where `2esn` Starts With $`7esn` With Distinct 999[@usn5..][Null..] Limit None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Where @usn5 Contains 9e0;"), + octest:ct_string("Return 1e1 Contains 's_str' Contains `3esn` Order By [9e12[9e1]][[_usn3[`2esn`..0X7][0.e0..$`3esn`]]..] Ascending,Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])[[00[12..$`6esn`],$`4esn`['s_str'..]]..] Ascending,9e1[$1000][7] Descending Skip 9e12[_usn4..$`5esn`][_usn4...e1] Limit $0 =~9e1 =~$`2esn` Union Unwind #usn8 Is Null Is Null As `6esn` Union All Merge ((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})) On Match Set [usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]].`1esn`? =999 Contains 0 Contains $`5esn`;"), + octest:ct_string("With @usn5[0..] As `6esn`,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `6esn`,_usn4[.12..$usn2][$_usn3..123.654] As `` Skip Single(#usn7 In $999 In 1e1 Where $`4esn`[`4esn`][Count(*)]) Contains None(#usn8 In `7esn` Where 12.0 Starts With $`2esn` Starts With .e1) Contains [.0 Ends With Count ( * ),0e0 Starts With 999 Starts With `2esn`,$@usn6 =~#usn7 =~True] Limit Filter(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) =~{#usn7:1000[12e12][`5esn`]} Where 9e12[..`3esn`][..0X0123456789ABCDEF] Union Optional Match ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)) Where 010 Starts With 0 Starts With 0.0 With _usn4 Contains $_usn3 Contains .e1,$`4esn`['s_str'..] As `` Limit .e12[..999][..@usn5] Where .12 In `8esn` In $#usn8 Return 0x0[12e12..$`7esn`] As #usn7 Order By .e12[`2esn`..010] Desc,0xabc In 010 In #usn7 Ascending Skip $999 In 1e1 Union Create _usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Remove {#usn8:`1esn`[usn1][0xabc],_usn3:$`6esn`[1.e1][$_usn3]}.`3esn`,{usn1:@usn6[9e12]}.`4esn`! Return 12[$`5esn`..][False..] As `4esn`,0e0 Ends With 07 Ends With $`8esn` As `1esn` Limit All(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`)[Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null)..][Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..])..];"), + octest:ct_string("Create `2esn`=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`})) Merge ``=(((`7esn` :`2esn`{@usn6:$0[123.654..0.e0]})-[_usn3 *..07{@usn6:$`2esn`[..$`3esn`][..12e12]}]->(`1esn` {#usn7:$`1esn` Ends With 0X0123456789ABCDEF,`3esn`:.12 Starts With _usn3 Starts With $``})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`}))) On Create Set `6esn`+=0x0[0X7] On Create Set `5esn` =`2esn` Starts With $`4esn`,`5esn`+={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},Extract(_usn4 In 12e12 In 123456789 Where .e1 Starts With 12.e12 Starts With `2esn`|$@usn5 Is Null Is Null).@usn5! =Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) Contains [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where .0 Is Null Is Null|`3esn`[0x0..]] Contains [999[12.e12],#usn8 Is Null Is Null,1.e1 =~$_usn4] Remove Any(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`).`1esn`,Single(`3esn` In `2esn`[..01][..True]).``,{usn1:'s_str'[0..]}._usn3? Union All Unwind .0 Contains .e12 Contains 0 As _usn4 With *,$`5esn` Is Not Null,usn2 Contains $0 Contains .0 Skip Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)[(`` :`5esn`{@usn5:123456789 =~@usn6})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`7esn` {``:9e1 Contains $999,``:$usn2[True..0X0123456789ABCDEF]}).._usn3(Distinct 0x0 Contains $`6esn` Contains `4esn`,usn2[1.e1])][(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})..[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|9e1 Is Null]] Limit $`4esn`[`6esn`..$12] Where 0Xa[Count(*)..] Union Merge @usn5=(:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']}) Remove [#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..]].@usn6!;"), + octest:ct_string("Merge ((:`6esn`:_usn3)) On Match Set `` =Extract(@usn5 In 's_str'[0..] Where 12e12 Is Not Null) =~[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]] With Distinct @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1|$@usn5 In $`6esn` In 12e12) Ends With (:`7esn`{#usn7:0 =~1.e1 =~$#usn7})<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}),`1esn`($`4esn`[`4esn`][Count(*)],`2esn` Starts With $`7esn`) =~Extract(@usn5 In 9e0 Ends With $#usn8 Where .e0 Starts With $@usn6 Starts With $7) =~{`3esn`:_usn3[`2esn`..0X7][0.e0..$`3esn`]} Where False Is Null Union Merge `3esn`=(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}) On Match Set _usn3+=#usn7[..07],(:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(usn1 :`7esn`).`4esn` =1.e1[$`3esn`][0Xa],All(@usn5 In 's_str'[0..] Where `2esn`[..01][..True]).`2esn`! =`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] On Create Set Filter(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7]).``! =12 Contains 01234567 Union Remove Single(`6esn` In $`6esn`[``..][Count(*)..] Where 0x0 Starts With $`6esn`).`4esn`,(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`).`5esn`,({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}).`5esn` Return Distinct 999[12e12..$_usn4] Order By Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,0X7[.0] Asc,$`3esn`[..0X0123456789ABCDEF][..7] Descending Limit #usn7 =~9e12 Merge ((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) On Create Set #usn8 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``|.12 In `8esn` In $#usn8]._usn4? =7 =~0.12,`6esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null,Any(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]).`3esn`! =(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null;"), + octest:ct_string("Match _usn3=((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7 *01..123456789]->(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})),``=((:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[`5esn`:#usn7|@usn5]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) Where 0x0[Count(*)..@usn6][Count(*)..0Xa] Remove Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12).`5esn`?,_usn3(0[$`5esn`],`2esn`[..$_usn4][...12]).`2esn`?,(usn1 :@usn6)<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})<-[?{`5esn`:123.654[$0..0X7][Null..#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]}]-(usn2 :`7esn`).#usn8 Create _usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})));"), + octest:ct_string("Detach Delete 07[999],12.e12 Contains #usn7 Contains $_usn4,0[@usn5..$#usn7] Union All Create #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))),#usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Create ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)),((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Optional Match ``=((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)) Where 010 Is Null Is Null Union Create `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]});"), + octest:ct_string("Remove Filter(`8esn` In 123456789 =~@usn6 Where True[`3esn`]).`8esn`?,Single(`8esn` In 123456789 =~@usn6 Where @usn6 Is Not Null Is Not Null).`1esn`?,Single(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]).`6esn`! Optional Match (({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn4?:@usn6|:`7esn`]-({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn3?:_usn3|:`7esn`]->(`3esn` {`8esn`:`7esn` In 010 In usn1})) Where _usn3 Ends With 7 Ends With $`1esn` Merge (@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`}) On Create Set All(usn2 In 7[12] Where `2esn`[$12..]).#usn8? =[#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3],Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3|01 In $@usn6).`7esn`? ={`3esn`:.e1[..\"d_str\"][..$123456789]},[$`5esn` =~usn1,@usn6 Contains .12 Contains $usn1,999 In #usn8 In $``]._usn3 =[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )] On Match Set `5esn` =0.e0[0X0123456789ABCDEF..];"), + octest:ct_string("With Distinct *,`2esn` In 9e0 In 7,$7 Starts With $`4esn` As _usn4 Skip Extract(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0) Ends With `2esn`(Distinct 123.654[`4esn`..12],_usn3[`2esn`..0X7][0.e0..$`3esn`]) Ends With [`5esn` In 0X7 In $#usn7 Where 12e12 =~1e1|0e0 =~0Xa =~$999] Where 9e0[$1000] Unwind [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null) As `7esn` Return 999[12e12..$_usn4] Order By Count(*) In #usn8 In \"d_str\" Ascending,[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null) Descending,9e12 =~@usn6 Desc Skip [#usn7 In 9e0[$1000] Where `6esn`[$1000][`3esn`]][Extract(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1|010 Starts With $`` Starts With 0e0)..] Union Unwind 1000[..$1000] As `` Return Distinct @usn5[01][@usn5],9e0 Contains $12 Contains `3esn` As #usn8,{`4esn`:0.0[usn1..],`7esn`:12.0[$1000..][#usn7..]}[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7)..[usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]]][[12.e12[..$`6esn`],999 In #usn8 In $``]..Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1)] Order By Null Ends With _usn4 Ends With 0.0 Asc Skip (`1esn` $`4esn`)-[@usn6?:`7esn`|:`2esn`]-({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]}) =~Filter(`3esn` In 9e1 Contains $999 Where 12.0 Is Null Is Null) =~[0xabc In Null] With Distinct usn2 =~$`` =~$`8esn` As `2esn`,'s_str'[0x0..1.e1] As `6esn`,$`5esn`[\"d_str\"..] As `5esn` Order By 1.e1 Contains `6esn` Contains 0.e0 Descending,07[..07][..0X7] Descending Skip usn1[False..] Limit `6esn`[$1000][`3esn`] Where 0x0[0X7] Union Return *,1e1 Is Not Null Is Not Null;"), + octest:ct_string("Optional Match `4esn`=((@usn5 {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})) Where 00[False..0e0] Delete None(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1)[..{@usn5:$@usn6 Is Not Null Is Not Null}][..{`3esn`:1e1 In 0.0 In 0X0123456789ABCDEF}] Match (((`4esn` :``:usn2)<-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]-({`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[:_usn4{`8esn`:12.e12 Is Not Null Is Not Null,#usn7:@usn6[Null...0][\"d_str\"..Count(*)]}]-(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False}))),((@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12}));"), + octest:ct_string("Remove None(_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1).``?,[@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2].`1esn` Return Distinct `1esn`[0Xa] As usn1,$`` Contains $`2esn` Contains $usn2 Order By $usn1 Ends With _usn4 Ends With `2esn` Descending,$``[..$#usn7][..`6esn`] Asc Skip 07[999];"), + octest:ct_string("Merge _usn3=(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[`4esn`:usn2]->(`3esn` :_usn4) On Match Set `8esn` =[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] With Distinct #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Order By Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[..[#usn7 In True Contains 's_str' Contains $usn1 Where Count(*) Ends With usn1]][..Filter(usn2 In 7[12] Where #usn7[0.e0..]['s_str'..])] Ascending,{@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Asc,usn2[1.e1] Descending Skip $``[01234567..][.0..] With Distinct *,$`1esn` Starts With Count(*) Limit `7esn`[..$`6esn`];"), + octest:ct_string("Detach Delete 12.0[0X0123456789ABCDEF..] Optional Match ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)),((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Union Match (`3esn` :``:usn2)<-[?:`4esn`|@usn5 *1000..0X0123456789ABCDEF{`8esn`:0x0[0.0],`8esn`:12.e12 Starts With \"d_str\" Starts With 9e1}]-(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]});"), + octest:ct_string("Create ((`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})),`5esn`=(((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Union All Unwind [#usn8 In `7esn` Where usn2[07..][.0..]|$usn1 Ends With _usn4 Ends With `2esn`] Contains (_usn3 {#usn7:1000[12e12][`5esn`]})-[`3esn`?:`3esn`]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0}) Contains Extract(`3esn` In `2esn`[..01][..True] Where usn1 In ``) As usn1 Return *,9e0[..123456789][..$`3esn`] As #usn7 Order By 999 In 0e0 Ascending Merge ((({usn2:_usn3[`2esn`..0X7][0.e0..$`3esn`]})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]-(_usn3 )<-[? *..010{usn1:9e1[_usn3]}]->(`5esn` {`4esn`:0x0[usn1..usn1],usn1:$`5esn`[0X7..010][`7esn`..'s_str']}))) Union All Detach Delete $#usn8[True][9e0],None(_usn4 In 12e12 In 123456789 Where 1.e1 =~.12)[[$`4esn`[0..][999..],0x0[Count(*)..@usn6][Count(*)..0Xa],12e12 In $`5esn`]..],0.0 Contains #usn7 Match (((`` $`6esn`)<-[usn2*{_usn3:0.e0[0X0123456789ABCDEF..],`8esn`:$`5esn` In 07 In 00}]-(`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}))),(((`` $`6esn`)<-[usn2*{_usn3:0.e0[0X0123456789ABCDEF..],`8esn`:$`5esn` In 07 In 00}]-(`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}))) Where $@usn6 In @usn6 In 1e1;"), + octest:ct_string("With Distinct #usn8 Is Not Null,.e0[..9e12][..07] Skip usn1 Limit 1000 Contains [True Contains 0x0 Contains $_usn3,_usn3 Contains 9e12 Contains `8esn`] Contains [12.0 In 123.654 In _usn4] Where $``[..\"d_str\"][..$#usn8] Create ((usn1 :`5esn`{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF}));"), + octest:ct_string("Unwind $0 Ends With $usn1 Ends With $_usn3 As `` Return Distinct Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null),9e1[usn1..0x0][12.e12..12.0] Order By 00[12e12][$`7esn`] Ascending,@usn5[0..] Descending,Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Descending Limit 0.e0[$`4esn`..`2esn`] With Distinct *,`5esn`[$`7esn`..$@usn5],`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] As #usn7 Order By 1000[..$1000] Asc,`7esn` Is Null Asc,#usn7 Desc Limit 010 Is Null Union All Delete $_usn4[..123456789],.e1 In 123456789 Union All Remove Filter(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $#usn7 Starts With 01234567 Starts With $0).usn2! Unwind Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[{`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}] As #usn8 Match `6esn`=(`` :`5esn`{@usn5:123456789 =~@usn6});"), + octest:ct_string("Return Distinct *,`5esn`[..123.654][...e12],12e12 =~$`7esn` Skip 0 =~1.e1 =~$#usn7 Union Merge (({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Union Create @usn6=(((`` :`5esn`{@usn5:123456789 =~@usn6})<-[`2esn`? *01234567..]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}))) Merge @usn6=((`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[@usn5?:usn2 *00..0Xa{usn2:$usn2[`4esn`..9e12]}]->(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->(usn2 :usn1:`3esn`)) Remove [False[$`4esn`..],$#usn7[..0Xa]].usn1?,({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}).`5esn`;"), + octest:ct_string("Merge `7esn`=((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})-[#usn8:#usn7|@usn5 *123456789..{@usn5:usn2[12.e12..]}]->(`` )<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})) Union All With *,$#usn7 Ends With \"d_str\" As `7esn` Where 12.e12 Contains 9e1;"), + octest:ct_string("Create (_usn3 :`4esn`:`6esn`)-[?:@usn6|:`7esn`]-(:#usn8:`1esn`)-[_usn3?]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Remove (_usn4 {`7esn`:#usn7[0.e0..]['s_str'..]})-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]}).`2esn` Union Unwind Count ( * ) =~0e0 =~`8esn` As `8esn` Merge _usn4=(({usn2:`2esn`[..$_usn3]})) On Match Set usn1 =7 =~`4esn` On Create Set [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where False[$usn1][0x0]|$_usn4[..$_usn4][..`7esn`]].`1esn` =12 Starts With \"d_str\" Starts With 00,#usn8+=0 =~1e1,#usn8 =12 Contains 1.e1 Merge _usn3=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']});"), + octest:ct_string("Create ((:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[`2esn`{``:Null[..010][..1000]}]-(`` :usn1:`3esn`)-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})),((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})) With Distinct {`8esn`:9e12 =~@usn6,`1esn`:999 Contains 0 Contains $`5esn`}[`4esn`()],(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null} Order By [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Desc Limit $7 Starts With $`4esn`;"), + octest:ct_string("Detach Delete 01234567[\"d_str\"..`4esn`],9e0 Ends With $#usn8 Union Unwind @usn5[$`6esn`..][$999..] As @usn5 Unwind 0x0[..9e0] As #usn8 Union Remove [#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]|00 In @usn6 In 0].`8esn`,All(@usn5 In 9e0 Ends With $#usn8 Where _usn4[`7esn`]).`8esn`;"), + octest:ct_string("Unwind Any(usn2 In 7[12] Where $_usn3 Is Null) Is Not Null Is Not Null As `2esn` With Distinct Any(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]) =~[9e12 =~@usn6,01 Ends With 0Xa Ends With 0X7,$@usn6[$0..9e12][.e12..Null]] As `7esn` Where .0 Starts With `1esn` Optional Match `7esn`=((`4esn` )-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`` :_usn3)-[`4esn`?:`5esn`|:usn2]->(:`4esn`:`6esn`{usn2:$`8esn` Is Not Null Is Not Null}));"), + octest:ct_string("Create #usn8=((`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})) Remove [_usn3 In $`8esn` In @usn6,.e12 Ends With 0Xa Ends With 0xabc,.e1[12.0..]].#usn8,{_usn4:`5esn` Contains #usn7 Contains 9e12}.`1esn`! Union All Match ((:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) Remove Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5,{`3esn`:9e1 Ends With Count(*) Ends With $7}._usn4! Detach Delete {usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}[[@usn5 In 9e0 Ends With $#usn8 Where 00 Contains Count ( * ) Contains 0x0]] Union Create #usn7=((`7esn` :`1esn`:_usn4{@usn5:0x0[usn1..usn1],`6esn`:`4esn`[$_usn3..$`7esn`]})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->({`3esn`:`5esn` Contains $`5esn` Contains 0X7})-[`6esn` *00..0Xa{usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}]->(:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})) Create _usn4=({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}) Unwind None(@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn2..][$123456789..]) =~{`2esn`:7[12],usn1:.12[0X7..][12e12..]} =~Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)|True[0xabc..01234567][$`8esn`..$@usn6]) As `6esn`;"), + octest:ct_string("Remove `2esn`(.12[123.654..]).`4esn` Remove Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`).`8esn` Merge `2esn`=(((`7esn` )<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2))) On Match Set #usn8 =[`5esn` Contains `1esn` Contains usn1,$@usn5 Ends With @usn5 Ends With 0xabc] Is Null Is Null,`8esn` =[$@usn6 =~#usn7 =~True,$`1esn` Contains 1e1 Contains @usn6,9e1[..123456789]] Is Null On Create Set @usn6+=$#usn7 Ends With 's_str' Ends With 0X7,`6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn2 =$@usn5 Ends With @usn5 Ends With 0xabc;"), + octest:ct_string("Merge (@usn5 :@usn6{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[`8esn` *0xabc]-(:_usn3{_usn4:.e1[7..][9e0..]}) On Match Set Single(@usn6 In 010[`5esn`] Where 123.654).`6esn`? =0.e0[0X0123456789ABCDEF..],(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}).`3esn`? =999[..`1esn`][..07],[@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1].`6esn` =`7esn` Starts With @usn5 Detach Delete 0.12 Contains False Contains 1.e1 Union All Unwind 01 Contains usn2 Contains 0X0123456789ABCDEF As usn2 Detach Delete All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]) =~All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where .e12[..999][..@usn5]) =~Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4),`4esn`[.12][$@usn6];"), + octest:ct_string("Delete 0X0123456789ABCDEF[..0xabc],All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where False[$usn1][0x0]) In [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null|9e12[9e1]] In [12.0 Is Null,$_usn4[..$_usn4][..`7esn`]],$`4esn` Starts With 0 Starts With `7esn` Merge ((`` {#usn7:#usn8 Is Not Null Is Not Null})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`2esn` :@usn5)<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Union Return Distinct *,`5esn`(0[1e1][$usn1],Null =~`6esn`)[usn2(Distinct)..][Single(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7)..] As `1esn` Order By `3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] Desc Delete count($`4esn`[`8esn`],`4esn` Is Not Null Is Not Null) =~Filter(@usn5 In 's_str'[0..] Where _usn3[0x0]),9e1[$`1esn`..],$usn2[`2esn`..] Unwind Extract(@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1) Is Not Null As `1esn` Union All Create @usn6=((usn2 {`5esn`:$@usn5 In 12e12 In 01})-[`8esn`:#usn7|@usn5 *00..0Xa]-(_usn3 {usn1:0x0 Starts With $`6esn`})),`2esn`=((#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]-(usn2 :_usn4));"), + octest:ct_string("Detach Delete (`4esn` :#usn7:`5esn`{_usn4:0Xa Ends With $`3esn` Ends With $1000})-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})[[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]|`1esn`[0.12..][@usn6..]]..][{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}..],07 Contains `3esn` Contains `7esn`,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1);"), + octest:ct_string("Return *,$@usn6 Ends With `1esn` Order By $999 Is Null Is Null Descending,0e0 =~7 =~12.0 Asc Skip `` =~.12 Union All Remove Any(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null).@usn6!,[$0 In `3esn` In 07,123456789 Contains 0.0 Contains $@usn6].#usn8!;"), + octest:ct_string("Remove [00[..$`8esn`][..7],_usn4 Starts With `` Starts With 1000,.e0].`1esn`?,Filter(usn2 In False[$usn1][0x0] Where $`7esn`).`2esn`! Unwind 0e0 Is Not Null As `6esn` Union Return Distinct 999[12e12..$_usn4] Order By Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,0X7[.0] Asc,$`3esn`[..0X0123456789ABCDEF][..7] Descending Limit #usn7 =~9e12 Unwind @usn6[..$@usn5] As #usn7;"), + octest:ct_string("Unwind 12['s_str'][01] As `6esn` With $999 =~.0 As usn2 Limit 's_str' Ends With _usn4 Ends With 0e0 Where 0Xa[$`8esn`..][$_usn4..] Create ``=((:`3esn`{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})),(((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}))) Union All Remove {_usn4:$``[True],`3esn`:$#usn8[@usn6..]}.@usn5!,[$@usn6[00],$@usn5 In $`6esn` In 12e12].`6esn`?,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null Is Not Null|1.e1 =~.12).usn2! Optional Match @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) Where Count ( * )[@usn6] Union Create `6esn`=((:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]})),`3esn`=(:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Match ((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(:`8esn`{``:$`1esn` =~999})),`8esn`=(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`)-[?:usn2{#usn7:0 =~1.e1 =~$#usn7}]->(`8esn` $12) Detach Delete 0X7[..$`8esn`];"), + octest:ct_string("Remove [@usn5 Starts With $`3esn`].`2esn`?,_usn3(Distinct .0[..'s_str'][..01234567],$#usn7 Contains $`7esn` Contains .e12).usn1 Delete 010 Is Not Null Is Not Null Remove (:`1esn`:_usn4{`8esn`:#usn8 Is Null Is Null})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]})-[`2esn`?:@usn6|:`7esn`]->(#usn8 :@usn5{_usn4:$#usn7 Contains $`7esn` Contains .e12}).`7esn`?;"), + octest:ct_string("Delete Count ( * ) In 999 With *,@usn5 Contains #usn8 Contains 12.0 As `6esn`,{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] Skip 0.0 Is Null Is Null Remove All(@usn6 In 010[`5esn`] Where 1.e1[$usn1]).`6esn`!,Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5;"), + octest:ct_string("Detach Delete @usn5[0..],$#usn7 =~`2esn` Remove Filter(#usn8 In `7esn` Where 07 Ends With 9e12 Ends With `2esn`).@usn6?,`5esn`:`1esn`:_usn4 Match #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}),((:#usn7:`5esn`{_usn4:$usn2 =~9e1})<-[@usn5?:usn2 *0..01]->(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})) Where 9e1[usn1..0x0][12.e12..12.0] Union All Merge @usn5=(({`8esn`:`5esn` Contains #usn7 Contains 9e12})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`1esn` :`3esn`{#usn8:$usn2[0.e0],`8esn`:$`4esn`['s_str'..]})) On Match Set `4esn`+=@usn5 Is Not Null,@usn6+=.e12[`2esn`..010],#usn7 =$999[``] On Match Set [$0[123.654..0.e0],01234567[Null..$_usn3]]._usn4! ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,None(#usn7 In 9e0[$1000] Where 00[12..$`6esn`]).`7esn`? =`4esn`(Distinct)[`2esn`($`2esn`[..$`3esn`][..12e12])][Extract(@usn6 In 010[`5esn`] Where 1.e1[$usn1]|.e12[..999][..@usn5])],`5esn`+={`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}[Extract(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]|.e1[..$`3esn`][..01])..] Delete $usn1 Starts With 0x0 Starts With #usn8,$@usn6 Ends With `1esn`,Extract(`3esn` In `2esn`[..01][..True] Where 00[01234567][False]|$`3esn` Ends With 01234567) Starts With (_usn4 :_usn4)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}) Starts With Extract(@usn6 In 010[`5esn`] Where $`2esn` Starts With `4esn` Starts With $usn1) Union With [#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null) Order By `2esn` Starts With $`4esn` Ascending Where 12.0 In 123.654 In _usn4;"), + octest:ct_string("Detach Delete $@usn6[_usn3..][$999..],$usn2 =~0.e0 =~@usn6 Unwind None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null As `4esn` Union Create `8esn`=(:#usn8:`1esn`{usn2:$`7esn`[.e1][12.0],``:$`1esn` Contains 1e1 Contains @usn6})-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(_usn3 :usn1:`3esn`);"), + octest:ct_string("Return *,00[$usn1..] Limit `4esn`(Distinct 0.0 Contains #usn7)[(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})..][None(@usn5 In 's_str'[0..] Where #usn7[0.12..])..];"), + octest:ct_string("Optional Match usn2=(`8esn` :`6esn`:_usn3),#usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) With *,Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],True In (#usn8 :`6esn`:_usn3)<-[`2esn`?:_usn4{#usn8:$12[9e0..$999]}]->({``:.e1 Starts With 12.e12 Starts With `2esn`}) As `5esn` Order By Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} Desc,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) Ascending,$`7esn`[$_usn4][.e0] Descending;"), + octest:ct_string("Merge (({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Union All With Distinct *,0X7[`2esn`..] As `6esn`,$`1esn` Contains 1e1 Contains @usn6 As `3esn` Order By 0xabc In .12 In 0Xa Descending Limit [#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Optional Match ((:`6esn`:_usn3{usn1:`3esn`[0x0..]})<-[? *1000..0X0123456789ABCDEF{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]->({`4esn`:.e1[..$`3esn`][..01]})<-[usn2?{``:$`1esn`[``][07]}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7})),(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) Where $`3esn` In $usn2;"), + octest:ct_string("Unwind \"d_str\"[#usn8] As @usn5;"), + octest:ct_string("Create ((:`5esn`{`8esn`:$`1esn` Starts With Count(*),_usn3:usn1[...e12][..1.e1]})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(`4esn` :_usn4)) With *,Filter(`5esn` In 0X7 In $#usn7 Where $@usn5 Starts With `5esn` Starts With 01234567) Is Null Is Null,$@usn6[$`8esn`..][123456789..] As @usn6 Order By 0X0123456789ABCDEF In $usn2 In `4esn` Descending,.e0 Ends With $#usn7 Ends With False Desc Where .12[..usn2][..12e12] Create `3esn`=((:_usn3{_usn3:$`3esn`[.e1][_usn4]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:`5esn`)<-[ *01234567..]->(#usn8 :`8esn`));"), + octest:ct_string("Return Distinct $usn2 =~0.e0 =~@usn6,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As _usn3,0X7[`2esn`..] As `5esn` Skip `1esn` Contains $999 Contains 0.0 Limit ``[..False][..`3esn`] With *,`` =~.12 As #usn7 Skip usn2 =~7 Limit 0x0 In 0.e0 In #usn8 Where `2esn`[..01][..True] With Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Order By @usn5[0..] Ascending,$@usn5 In $`6esn` In 12e12 Desc,#usn7 In 0.e0 Desc Skip {`8esn`:$_usn4 Starts With 12.e12} Is Null Is Null Limit 999 Contains $1000 Where 999 In #usn8 In $`` Union All With 123456789 Contains 0Xa As usn1,True Contains 's_str' Contains $usn1 As `8esn`,`2esn` Is Null As `8esn` Order By .e12[0Xa..] Descending,`5esn`[$`7esn`..$@usn5] Ascending,`5esn`[..True][..0.e0] Descending Where $@usn5[..$#usn7] Unwind 1000[7..$12] As @usn6 Union Unwind @usn6[..$@usn5] As #usn7 Unwind Count(*)[``..#usn8][`3esn`..0xabc] As @usn5;"), + octest:ct_string("Unwind 7[0e0..] As `6esn` Optional Match ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)) Union With *,00[12..$`6esn`] As _usn4,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] As `3esn` Order By (`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[``? *0x0..{`6esn`:$`2esn` Contains Count(*)}]->(`6esn` :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`3esn` {``:9e1 Is Null,usn1:9e0[Count(*)..0.12][$`1esn`..12.0]})[..{`6esn`:.e12 Is Null Is Null}] Descending,`1esn` Starts With 9e1 Asc,$`8esn` Contains 12 Contains `6esn` Asc Skip True Ends With $_usn3 Ends With 12 Limit usn1 Ends With 0.0 Unwind 010 Starts With $`` Starts With 0e0 As `3esn` Union Create ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)),((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Optional Match ((`1esn` {_usn4:`8esn` Is Null})),`2esn`=(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Where usn2[1.e1];"), + octest:ct_string("Unwind $123456789 In 0.12 As `7esn` With Distinct *,1e1 Is Not Null Is Not Null Where `7esn` Ends With $7 Ends With $@usn5 Unwind {usn2:$@usn6[00]}[..[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1]][..[12e12 Starts With $0 Starts With $`2esn`,$_usn3 Is Null]] As `5esn` Union Unwind _usn3 Is Null Is Null As `7esn` Detach Delete 0Xa In #usn7 In 's_str',0.e0[1000.._usn4][.e1..usn1] With *,_usn3[12.e12..][`5esn`..] As @usn6,999[..`1esn`][..07] Order By 7 Is Null Is Null Ascending,Count ( * ) =~0e0 =~`8esn` Descending,#usn7[0.e0..][$#usn8..] Descending Where $999 Ends With .e0 Union All Merge (usn2 :`1esn`:_usn4{usn2:999 Contains $1000})<-[@usn6? *0..01{_usn4:0Xa Ends With $`3esn` Ends With $1000}]-(`3esn` :`1esn`:_usn4) On Match Set 0.12.`8esn`? =.0 Contains .e12 Contains 0;"), + octest:ct_string("With Distinct [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Any(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`) Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc Skip {`4esn`:999 In 0e0,`6esn`:0.e0['s_str'..][01234567..]} Contains Single(`8esn` In 123456789 =~@usn6 Where 12.e12 Ends With `` Ends With 0) Limit `6esn` Is Null Is Null Merge (`2esn` :`1esn`:_usn4)-[?*..]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) On Create Set @usn6+=$#usn7 Ends With 's_str' Ends With 0X7,`6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn2 =$@usn5 Ends With @usn5 Ends With 0xabc With Distinct $12 Starts With $0 Starts With $`8esn`,9e1[usn1..0x0][12.e12..12.0] As usn1,$``[..\"d_str\"][..$#usn8] As `6esn` Union Merge (({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Union All Return *,[`8esn`[..$#usn8],1.e1 Starts With 9e12] Ends With [`6esn` In $`6esn`[``..][Count(*)..]|.e1[12.0..]] Ends With Any(usn2 In 7[12]),$`6esn` Starts With .e12 Starts With $`1esn` As @usn6 Skip $`5esn`[$`3esn`..] Limit Single(@usn6 In 010[`5esn`] Where Count(*)[9e12..12.0])[(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)][`7esn`] Remove count(Distinct .e12[..999][..@usn5]).usn2!,[@usn6 In 010[`5esn`] Where 010 Is Null Is Null].`3esn`,Single(@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]).`7esn`;"), + octest:ct_string("Unwind Count ( * ) Ends With `6esn` Ends With 's_str' As _usn3 Create #usn8=(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`6esn` :`1esn`:_usn4{@usn5:07 Ends With 9e12 Ends With `2esn`}) With 0.e0['s_str'..][01234567..] As `1esn`,.e12 Starts With $7 Starts With .0 As _usn4,None(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With Filter(`5esn` In 0X7 In $#usn7 Where 0x0[0X7]) Ends With Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) As #usn7 Skip Single(#usn8 In `7esn` Where 12.0 Starts With $`2esn` Starts With .e1) Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]] Ends With {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01} Union Merge ((`2esn` :@usn5)-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})) Unwind None(@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn2..][$123456789..]) =~{`2esn`:7[12],usn1:.12[0X7..][12e12..]} =~Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)|True[0xabc..01234567][$`8esn`..$@usn6]) As `6esn`;"), + octest:ct_string("Detach Delete 0.0 Ends With $`7esn`,123.654 Is Null Is Null,1000 Contains [True Contains 0x0 Contains $_usn3,_usn3 Contains 9e12 Contains `8esn`] Contains [12.0 In 123.654 In _usn4] Detach Delete (`2esn` :usn1:`3esn`)-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})<-[?:`3esn`]-(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})[({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})],0X7 In $#usn7,Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 999 Contains $1000)[(`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8})][#usn8($1000 Is Not Null,$`5esn`[0X7..010][`7esn`..'s_str'])];"), + octest:ct_string("Remove Any(#usn8 In `7esn` Where 12.0 Starts With $`2esn` Starts With .e1).`7esn`!,[12e12 Is Not Null].usn1?,(_usn3 :usn2)-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}).#usn7! Union Create `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)) Unwind 07[False] As @usn6;"), + octest:ct_string("Remove usn2($usn1[`2esn`..][$`2esn`..])._usn3!,[@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7]|1e1 In 0.0 In 0X0123456789ABCDEF].#usn7!,[#usn7 In $999 In 1e1 Where .e12 Starts With $12 Starts With .e12|$usn2[`4esn`..9e12]].`6esn` Unwind 12.e12 Starts With 1000 As @usn5;"), + octest:ct_string("Unwind $@usn6[_usn3..][$999..] As `4esn` Optional Match `8esn`=(:`4esn`:`6esn`{usn2:$`8esn` Is Not Null Is Not Null})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Where $999 Ends With .e0 Union All Delete `1esn` Contains $999 Contains 0.0,999[..`1esn`][..07] Union All Detach Delete True Contains 's_str' Contains $usn1,$`5esn`[..00] Delete .e1[7..][9e0..],$`5esn` In _usn3 In 0.0;"), + octest:ct_string("Return Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By 0Xa[..Count ( * )][..$123456789] Desc,`5esn`[$`7esn`..$@usn5] Ascending Skip usn2[..$usn1][..$#usn8] Limit 12.0 Ends With usn2 Ends With 0 Match @usn5=(:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']}),(`3esn` {_usn3:$123456789[0.12..]})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}) Remove {@usn6:07 Is Not Null Is Not Null,`5esn`:0e0 =~7 =~12.0}.`8esn`,All(#usn7 In 9e0[$1000] Where .e1 In 123456789).`6esn`! Union All Remove Any(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null).`4esn`,(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(_usn4 :`8esn`)<-[ *0X7..{#usn8:.e0 Contains $#usn8}]->(`2esn` :`6esn`:_usn3).@usn5!;"), + octest:ct_string("Unwind 9e1[`1esn`..0][999..1e1] As `1esn` Unwind {usn2:$@usn6[00]}[..[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1]][..[12e12 Starts With $0 Starts With $`2esn`,$_usn3 Is Null]] As `5esn` Optional Match #usn8=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}),`2esn`=(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Union All Optional Match @usn6=((#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})),((`1esn` :usn2)) Where $usn2 Is Not Null Is Not Null Delete 9e0[$`8esn`] Unwind (:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] As #usn7;"), + octest:ct_string("Unwind 010 Starts With 0 Starts With 0.0 As `5esn` Unwind 07[_usn3..][`6esn`..] As #usn8 Return Distinct Extract(`6esn` In $`6esn`[``..][Count(*)..] Where $@usn5 Starts With `5esn` Starts With 01234567|0.e0[..$7]) Is Null Is Null,`7esn`[1e1] Order By `2esn`[$12..] Desc,usn2 Is Null Is Null Ascending Skip [$@usn6 =~#usn7 =~True,$`1esn` Contains 1e1 Contains @usn6,9e1[..123456789]] Is Null Limit 0Xa =~False =~@usn5;"), + octest:ct_string("Unwind 01[`3esn`..][Count(*)..] As _usn4 Union All Optional Match `3esn`=(`` {`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']})<-[`6esn`? *00..0Xa]->(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}),usn1=((`1esn` {``:0.0 Is Not Null,`1esn`:``[$`3esn`]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})) Where 01234567[\"d_str\"..`4esn`];"), + octest:ct_string("Delete _usn4[$usn1..01234567][123.654..`5esn`] With *,1.e1 Ends With $#usn7 As usn2,@usn5[01][@usn5] Skip $`5esn` Limit (`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Is Not Null Union Delete {#usn8:0e0 =~0Xa =~$999,`7esn`:`3esn`} In [#usn7 In True Contains 's_str' Contains $usn1 Where Count(*) Ends With usn1] In None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Is Not Null Is Not Null) Merge (_usn3 :`4esn`:`6esn`)-[?:@usn6|:`7esn`]-(:#usn8:`1esn`)-[_usn3?]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Detach Delete $_usn3,[Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1];"), + octest:ct_string("With Distinct 12.e12 =~0X0123456789ABCDEF =~1.e1 As `6esn`,0.e0[..$7] As _usn3,usn1 Ends With 0.0 Order By None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,.e0 Starts With $@usn6 Starts With $7 Descending Limit $@usn6[..12] Where `3esn` Starts With 9e0 Starts With usn1 Match ((usn1 :_usn4{`4esn`:`7esn` Is Null})<-[`8esn`?:`2esn`|`4esn` *01..123456789{`8esn`:$`4esn` Is Null Is Null,usn1:$1000 Starts With $`3esn` Starts With 0.e0}]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})) Union Merge ((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})) On Create Set usn1 =`3esn`[123456789],`3esn` =9e1[.12][`7esn`] On Match Set All(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).`3esn`! =12.0[$12..$_usn4] Union All Create `7esn`=(((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}))),`2esn`=((`6esn` :#usn7:`5esn`)<-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]->(:#usn8:`1esn`$`7esn`)) Create `6esn`=(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[@usn6:`1esn`|`3esn` *0X7..]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}),(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(`3esn` :_usn4{`3esn`:12[..0e0][...e1],`4esn`:.0 Is Null Is Null});"), + octest:ct_string("Optional Match (:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})<-[`7esn`:`4esn`|@usn5 *12..]->({`4esn`:.e1[..$`3esn`][..01]}),_usn4=((#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[`5esn`? *01234567..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(usn1 {``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})) Where True[..#usn8] With [.e12 Is Null Is Null] Starts With `5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12]) Starts With None(`8esn` In 123456789 =~@usn6 Where `7esn`[$usn2..][$123456789..]),9e1[usn1..0x0][12.e12..12.0] As usn1,Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3) As `7esn` Order By [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[$usn1..][Count(*)..]|0e0 =~7 =~12.0] Is Null Is Null Descending,@usn5[0..] Ascending Skip 0.0[..Count ( * )][..`1esn`] Where 12e12 In $`5esn` Union Detach Delete 9e0[$`8esn`],`5esn` Contains #usn7 Contains 9e12,12 Is Null Match @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Where 7[0e0..] Detach Delete (`4esn` :#usn7:`5esn`{_usn4:0Xa Ends With $`3esn` Ends With $1000})-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})[[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]|`1esn`[0.12..][@usn6..]]..][{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}..],07 Contains `3esn` Contains `7esn`,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1);"), + octest:ct_string("Remove (`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[ *0..01]-(@usn6 :_usn3{@usn6:07 Is Not Null Is Not Null,`5esn`:0e0 =~7 =~12.0}).`2esn`?,Extract(@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00).@usn5! Merge (@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) On Match Set usn1 =$usn1 Starts With usn1 Starts With True Create ((:`3esn`{`1esn`:`7esn`,`8esn`:12e12 =~$`7esn`})-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})),((`8esn` {`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]})<-[_usn3?:_usn3|:`7esn`]->(#usn7 )-[?:#usn8|:`3esn` *0x0..]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}));"), + octest:ct_string("Remove {_usn3:_usn4 Is Null Is Null}.``,``(@usn6[`1esn`..]).`7esn`! With Distinct 0e0[``],0X7 In $#usn7 Order By Extract(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1|``[$`3esn`])[(:`6esn`:_usn3$usn2)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)..All(_usn3 In _usn3 Contains _usn4 Contains $@usn5)] Desc,`5esn`[$`7esn`..$@usn5] Ascending Where 01 Ends With 0Xa Ends With 0X7 Union All With *,.e0 Is Null As `2esn`,(:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Skip True Contains 0x0 Contains $_usn3 Limit 's_str' Ends With _usn4 Ends With 0e0 Where 1.e1[$usn1] Union With Distinct @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1|$@usn5 In $`6esn` In 12e12) Ends With (:`7esn`{#usn7:0 =~1.e1 =~$#usn7})<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}),`1esn`($`4esn`[`4esn`][Count(*)],`2esn` Starts With $`7esn`) =~Extract(@usn5 In 9e0 Ends With $#usn8 Where .e0 Starts With $@usn6 Starts With $7) =~{`3esn`:_usn3[`2esn`..0X7][0.e0..$`3esn`]} Where False Is Null Return #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Order By `6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] Desc Limit $_usn4[$_usn4];"), + octest:ct_string("Unwind `3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] As `8esn` Merge ((:@usn6)) On Create Set {`3esn`:07[_usn3..][`6esn`..],@usn6:``[usn1][`5esn`]}.@usn6 =Count(*)[``..#usn8][`3esn`..0xabc] On Create Set #usn7+=`6esn`[$`8esn`][9e1] Create ((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})),(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Union All Create (`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]}),usn1=(((`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]-(#usn8 :`6esn`:_usn3)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1))) Merge #usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) On Create Set @usn6+=$`1esn` =~1e1 On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Union All Return `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Skip 0e0[``] Limit .e0 =~Null Optional Match ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`));"), + octest:ct_string("With Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By [Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] Ascending,None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) Descending Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]) Where @usn6 Is Not Null Is Not Null Create (`3esn` )-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]}) Remove Any(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0).usn1,All(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])._usn4!,7._usn4 Union Merge #usn8=(((#usn8 :``:usn2)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[@usn5? *0xabc{`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}]->(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}))) On Match Set #usn8 =[`5esn` Contains `1esn` Contains usn1,$@usn5 Ends With @usn5 Ends With 0xabc] Is Null Is Null,`8esn` =[$@usn6 =~#usn7 =~True,$`1esn` Contains 1e1 Contains @usn6,9e1[..123456789]] Is Null On Match Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null Remove {usn1:12[$`5esn`..][False..]}.`1esn` Union Remove [`3esn` In `2esn`[..01][..True] Where 00[01234567][False]].`7esn`!,Any(usn2 In False[$usn1][0x0] Where 12.e12 =~0X0123456789ABCDEF =~1.e1)._usn3,Extract(#usn7 In 9e1[$`1esn`..] Where $`7esn`[$_usn4][.e0]|$`3esn`[..$1000][..$123456789]).`1esn`?;"), + octest:ct_string("Create (`3esn` {_usn4:123.654 In 12})-[`4esn`?:_usn4 *7..]-(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})<-[ *00..0Xa]->(#usn7 :usn1:`3esn`),(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]}) Merge #usn7=({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Union Optional Match (`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Where #usn7[0.e0..]['s_str'..] Merge ((@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})) On Match Set #usn7+=`1esn` Remove None(_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`).`2esn`,(`5esn` :``:usn2)<-[?:`4esn`|@usn5{usn2:$@usn6[$`8esn`..][123456789..]}]->(:_usn4{`8esn`:01234567[Null..$_usn3]}).``?,Extract(usn2 In 7[12] Where .12[0X7..][12e12..]|0.0 Contains #usn7).`1esn` Union Delete 9e1[$`1esn`..];"), + octest:ct_string("Return Distinct Filter(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3]) In ({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) In Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0),.e0 Is Not Null Is Not Null As `7esn`,$`2esn` Ends With `6esn` As usn1 Merge ((:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})<-[*..{`7esn`:$``[..\"d_str\"][..$#usn8],`7esn`:$`` Contains $`2esn` Contains $usn2}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Merge @usn5=({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`}) Union With Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By [Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] Ascending,None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) Descending Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]) Where @usn6 Is Not Null Is Not Null Create (`3esn` )-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]}) Remove Any(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0).usn1,All(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])._usn4!,7._usn4;"), + octest:ct_string("Return *,$`5esn`[0X7..010][`7esn`..'s_str'] As `4esn`,999 In 0e0 As #usn7 Order By 0xabc In Null Descending Skip count($`4esn`[`8esn`],`4esn` Is Not Null Is Not Null) =~Filter(@usn5 In 's_str'[0..] Where _usn3[0x0]) Return *,12 Ends With True Ends With @usn6,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By $123456789[12e12..9e0] Asc,1e1 Contains 0.e0 Contains 9e1 Ascending,.e12[@usn6..][010..] Desc Limit $`7esn` In False In $`1esn` Union Unwind 7[0e0..] As `6esn` Optional Match ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`));"), + octest:ct_string("Optional Match @usn5=(:@usn5{#usn7:12e12 In $`5esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})-[?*]-({`8esn`:`5esn` Contains #usn7 Contains 9e12}) Where 9e1 Contains 12 Remove Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]|$``[..\"d_str\"][..$#usn8]).`6esn`!;"), + octest:ct_string("With Distinct 123.654[$0..0X7][Null..#usn8] As `3esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc,Count ( * )[$`5esn`..][$7..] Desc Skip Extract(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999)[..Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1])] Limit None(#usn7 In 9e0[$1000] Where $_usn3 Is Null)[[0 =~1e1,$#usn8[12.e12..`8esn`][12.0..0.0],$1000 Is Not Null]..] Where $123456789 Contains $#usn8 Contains `` Merge _usn3=({`4esn`:.e1[..$`3esn`][..01]})-[`5esn`:#usn7|@usn5]-(`5esn` :`4esn`:`6esn`) On Create Set usn1 =`3esn`[123456789],`3esn` =9e1[.12][`7esn`];"), + octest:ct_string("With Distinct 01234567[$`2esn`][0Xa],`4esn`[.12][$@usn6] Order By 0[01234567..][0X0123456789ABCDEF..] Desc Where _usn4 Is Null Is Null With *,(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null As `3esn` Union All Optional Match `5esn`=(((usn1 :`8esn`)<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[? *0xabc]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]}))),`2esn`=(((`7esn` )<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2))) Create @usn5=(:@usn5{#usn7:12e12 In $`5esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})-[?*]-({`8esn`:`5esn` Contains #usn7 Contains 9e12}) Union All Unwind usn2[..$usn1][..$#usn8] As ``;"), + octest:ct_string("Unwind None(@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn2..][$123456789..]) =~{`2esn`:7[12],usn1:.12[0X7..][12e12..]} =~Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)|True[0xabc..01234567][$`8esn`..$@usn6]) As `6esn`;"), + octest:ct_string("With 0X7[`2esn`..] As `6esn`,Single(usn2 In False[$usn1][0x0])[All(@usn6 In 010[`5esn`] Where 00[1.e1..])][(:`2esn`{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`})-[?{`5esn`:$`2esn`[.0..][0.0..]}]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})-[`` *1000..0X0123456789ABCDEF]->(:_usn4{`8esn`:01234567[Null..$_usn3]})] Order By ``[$`3esn`] Asc,[1000[0e0][1e1],12.0 Is Null Is Null] Is Not Null Is Not Null Asc,.e0 =~$`7esn` =~0X0123456789ABCDEF Descending Skip [#usn8 In `7esn` Where .e0 Is Null Is Null] Ends With {usn1:$`4esn`[`6esn`..$12],`4esn`:usn1 Contains 010} Ends With (:``:usn2{``:True[$_usn3..]})<-[`2esn`? *01..123456789]-(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(`1esn` $`4esn`) Limit `5esn`[..123.654][...e12] Unwind $_usn3 Is Not Null As _usn3 Match ((`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})),`5esn`=(((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Where `3esn`;"), + octest:ct_string("Unwind Count(*)[..`8esn`] As _usn3;"), + octest:ct_string("With Distinct $@usn6 Ends With 12.e12 Ends With @usn5 As usn2,``[usn1][`5esn`],`7esn`[..$`6esn`] Skip `3esn`[7..0.e0][0.0..123456789] With Distinct [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`) Union All Create (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}),`6esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) With Distinct $#usn8 Ends With `` Ends With 999 As `5esn`,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]) Is Not Null Is Not Null As _usn3 Order By _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..] Desc,{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Is Not Null Desc,9e0 Ends With $#usn8 Desc Limit 12.0 Starts With $`2esn` Starts With .e1 Where 9e1 Ends With Count(*) Ends With $7;"), + octest:ct_string("Delete $_usn4[..123456789],.e1 In 123456789 Union Optional Match `8esn`=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2) Where $0[0Xa..$123456789] Union Remove All(#usn7 In 9e1[$`1esn`..] Where Count ( * ) In 0.12).#usn7?,All(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`).#usn8,{`4esn`:$999[0Xa..][9e1..]}.`3esn` Detach Delete $123456789[.0..],All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})];"), + octest:ct_string("Optional Match #usn8=((`3esn` :usn2{`6esn`:#usn8 Is Null})-[`4esn`?:_usn4 *7..{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(usn2 :`6esn`:_usn3{@usn5:$0[0Xa..$123456789]})<-[`2esn`{``:Null[..010][..1000]}]-(`` :usn1:`3esn`)),(`2esn` :`1esn`:_usn4) Union Delete {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}[..`2esn`(Distinct 0 Ends With 12.e12 Ends With usn2)][..Filter(_usn4 In 12e12 In 123456789 Where .e1 In 123456789)],Extract(@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1) Is Not Null Union With Distinct Single(usn2 In False[$usn1][0x0])[All(@usn6 In 010[`5esn`] Where 00[1.e1..])][(:`2esn`{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`})-[?{`5esn`:$`2esn`[.0..][0.0..]}]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})-[`` *1000..0X0123456789ABCDEF]->(:_usn4{`8esn`:01234567[Null..$_usn3]})],`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] As #usn7 Skip $`4esn` =~$`4esn` Return 0.0 Contains #usn7 As #usn8,Extract(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|.e1[usn2..$_usn3][.0..$#usn7]) Order By Any(`6esn` In $`6esn`[``..][Count(*)..] Where 1e1 Ends With $`7esn` Ends With .0) Is Not Null Descending,#usn8 Ends With $@usn5 Ends With $7 Desc,usn2[12.e12..] Asc Skip 12.0[$1000..][#usn7..] Limit $`2esn`[0..123456789][``..`1esn`];"), + octest:ct_string("With 12.e12[..$`6esn`] As `7esn`,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] As ``,1.e1 Contains `6esn` Contains 0.e0 Skip Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])] Where 999 Contains $1000 Detach Delete Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null) Is Not Null Is Not Null,010 Starts With $`` Starts With 0e0;"), + octest:ct_string("Detach Delete None(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1) Contains `3esn`(Distinct $123456789[...12][..@usn6]) Contains {``:`1esn` Starts With 0xabc Starts With $usn2} Create ``=((:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[`5esn`:#usn7|@usn5]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})),#usn8=(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`6esn` :`1esn`:_usn4{@usn5:07 Ends With 9e12 Ends With `2esn`}) Union All Optional Match ((`1esn` {_usn4:`8esn` Is Null})),`2esn`=(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Where usn2[1.e1] Union All Delete _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..],``(Distinct 00 Ends With `` Ends With 12.e12,`6esn`[..Count ( * )][..$_usn4]) In (usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[`7esn`?:#usn8|:`3esn`{`6esn`:'s_str'[0..]}]->(#usn8 :`8esn`$#usn8) In Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1]) Return Distinct @usn5[01][@usn5],9e0 Contains $12 Contains `3esn` As #usn8,{`4esn`:0.0[usn1..],`7esn`:12.0[$1000..][#usn7..]}[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7)..[usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]]][[12.e12[..$`6esn`],999 In #usn8 In $``]..Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1)] Skip {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}[[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]]..][(_usn4 {`6esn`:$_usn4 =~$`1esn` =~`2esn`,_usn3:#usn8 Is Null})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[_usn4?{_usn3:.e1[.e1..`1esn`],@usn6:.12 In `8esn` In $#usn8}]->(usn2 :@usn5)..];"), + octest:ct_string("Return Distinct `1esn` Starts With 0X7 Starts With \"d_str\",$`4esn`[..$`8esn`][..Null] As #usn7,None(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With Filter(`5esn` In 0X7 In $#usn7 Where 0x0[0X7]) Ends With Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) As `4esn` Order By [123456789 =~12 =~'s_str',`2esn` Starts With 12.e12 Starts With 12.0,$`8esn`[..True][.._usn4]] Contains Filter(#usn7 In 9e0[$1000] Where `7esn`) Asc,None(#usn8 In `7esn` Where $`3esn` Contains $`1esn`) Starts With #usn8(0x0[Count(*)..@usn6][Count(*)..0Xa]) Ascending,_usn4 Contains $_usn3 Contains .e1 Asc With usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Skip $@usn6 Ends With `1esn` Limit 9e1 Ends With Count(*) Ends With $7 Delete $`6esn` Is Not Null Is Not Null,@usn5 Starts With 9e0 Starts With 010 Union All Create (:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']}),((#usn7 :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8}));"), + octest:ct_string("With [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) As usn2,$`3esn`[.e1][_usn4],All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As `4esn` Order By $`3esn` Ends With 01234567 Asc Skip @usn6 =~999 =~@usn5 Return {``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}[..Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)][..Any(#usn7 In $999 In 1e1 Where 07 In `6esn`)] As usn1,`8esn` Is Not Null Is Not Null As `4esn` Order By Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $#usn7[..$`4esn`][..01])[Extract(usn2 In 7[12] Where $`2esn` Ends With `6esn`)][`7esn`(@usn5 Contains #usn8 Contains 12.0)] Ascending Skip 01[..9e12] Merge (#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) On Match Set Extract(@usn5 In 's_str'[0..] Where @usn6 In .12 In `3esn`|$@usn6[00]).`8esn`? =9e0 Contains $12 Contains `3esn`,_usn4+=0x0[@usn5][$#usn8],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null On Match Set `1esn` =[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]);"), + octest:ct_string("Detach Delete `7esn`[$usn1..]['s_str'..],None(#usn8 In `7esn` Where $`3esn` Contains $`1esn`) Starts With #usn8(0x0[Count(*)..@usn6][Count(*)..0Xa]),(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`) Is Null Merge ({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) On Match Set _usn3 =Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] Remove Any(`6esn` In $`6esn`[``..][Count(*)..] Where False Contains 0 Contains $`6esn`).usn1!,{`1esn`:`1esn`[$@usn6][07]}.`1esn` Union Unwind $@usn6[_usn3..][$999..] As `4esn` Optional Match `8esn`=(:`4esn`:`6esn`{usn2:$`8esn` Is Not Null Is Not Null})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Where $999 Ends With .e0 Union All Unwind $123456789[.0..] As `7esn`;"), + octest:ct_string("Unwind 123.654 In 12 As `7esn`;"), + octest:ct_string("With Distinct *,None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`5esn` In _usn3 In 0.0) Is Not Null Is Not Null As @usn5 Order By 1000[12e12][`5esn`] Descending Limit All(@usn5 In 9e0 Ends With $#usn8 Where _usn4[`7esn`]) In {`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6} In (:`6esn`:_usn3$usn2)-[:`3esn` *0Xa{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->(usn1 {usn1:$#usn7 Starts With 01234567 Starts With $0})-[?:#usn8|:`3esn` *0x0..]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) Where $999[``] Return Distinct (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] As #usn7,1e1 Is Null Is Null As usn2,{`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}[..`2esn`(Distinct 0 Ends With 12.e12 Ends With usn2)][..Filter(_usn4 In 12e12 In 123456789 Where .e1 In 123456789)] As usn1 Unwind {`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`} Contains Filter(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5) Contains Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) As `5esn` Union All Optional Match ((:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]})-[@usn6?*{_usn3:$usn1,_usn3:`2esn`[$12..]}]-(:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[? *0Xa]-(#usn8 ));"), + octest:ct_string("Merge ((#usn7 {#usn7:1.e1 Starts With 9e12})<-[ *..07{`5esn`:999 In 0e0}]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})) On Create Set `4esn`:usn2,`2esn`+=`2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..] On Match Set [#usn8 In `7esn` Where 00 In @usn6 In 0].`1esn`? =Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) Is Not Null Is Not Null,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]).@usn6! =[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]),_usn4+=$_usn3[$12] Unwind usn1[..$@usn6][..00] As `4esn` Union All Detach Delete [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]],$999 Ends With .e0,$`5esn` =~usn1 Optional Match ((:`4esn`:`6esn`{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})-[`5esn`?:`6esn`|:#usn8{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]-({`5esn`:#usn8 =~.e0})<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null})),((:#usn7:`5esn`{_usn4:$usn2 =~9e1})<-[@usn5?:usn2 *0..01]->(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})) Where `6esn`[..Count ( * )][..$_usn4] With *,All(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Is Not Null Is Not Null As `3esn` Limit `5esn`[$`7esn`..$@usn5] Where .e0 =~Null Union Remove Single(usn2 In 7[12] Where .e12[0Xa..]).usn1!,(`` $`6esn`)-[`4esn`:`1esn`|`3esn` *12..]->({`7esn`:9e12 =~@usn6})-[#usn7? *0X7..{`1esn`:#usn7[0]}]->(`5esn` :`6esn`:_usn3).``,`3esn`(Distinct $@usn5 In $`6esn` In 12e12).`8esn`! Remove Any(_usn4 In 12e12 In 123456789 Where 9e1 Is Not Null Is Not Null).#usn7? Remove None(#usn8 In `7esn` Where $`5esn` Is Not Null Is Not Null).`1esn`!;"), + octest:ct_string("Detach Delete Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3),$#usn8 Ends With `3esn` Ends With $``,01 Ends With .12 Ends With 07 Optional Match #usn8=(((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Where .12[123.654..];"), + octest:ct_string("Merge ((`` {#usn7:#usn8 Is Not Null Is Not Null})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`2esn` :@usn5)<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Delete 9e0[$`8esn`] Remove [7 =~`4esn`,`2esn` Starts With $`7esn`].`8esn`! Union Return Distinct .0 Starts With `1esn` As #usn7,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} As usn2,$@usn5[..$#usn7] Limit None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[Extract(#usn7 In 9e0[$1000] Where .e1 In 123456789)][{_usn3:01[`8esn`..9e12][.12..0]}] Unwind `7esn` Is Null As @usn5 Union All Create (:`6esn`:_usn3{`8esn`:`4esn`[\"d_str\"]['s_str']})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0}),`4esn`=((({#usn7:$`3esn` Ends With 01234567,_usn3:usn1 =~$`7esn`})-[`7esn`?:usn1|`4esn` *00..0Xa{`3esn`:usn1 In ``}]-(usn1 {usn1:$#usn7 Starts With 01234567 Starts With $0})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})));"), + octest:ct_string("Create @usn5=(:@usn5{#usn7:12e12 In $`5esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})-[?*]-({`8esn`:`5esn` Contains #usn7 Contains 9e12}) Union Unwind {`1esn`:$`2esn` Contains Count(*)}[[$`4esn`[0..][999..],@usn5 Contains #usn8 Contains 12.0]..[@usn6 In 010[`5esn`] Where 0e0[``..$1000][$7..12.e12]|@usn6[`1esn`..]]] As `5esn`;"), + octest:ct_string("Create (:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']}),((#usn7 :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Union All Detach Delete {`2esn`:12.e12 Is Not Null Is Not Null,``:Count ( * ) In True In @usn5} Ends With {`7esn`:$1000 Starts With $`3esn` Starts With 0.e0,``:$`2esn` Is Null} Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]],$`5esn`[0X7..010][`7esn`..'s_str'] Union All Merge @usn5=((:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})) Detach Delete 12.e12 =~.0 =~usn1;"), + octest:ct_string("Remove {`1esn`:0.e0}.usn1,`7esn`(`7esn` Contains 9e0,0.12[$0..$usn2]).`4esn`? With 0x0[0.0] As ``,Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) Contains [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where .0 Is Null Is Null|`3esn`[0x0..]] Contains [999[12.e12],#usn8 Is Null Is Null,1.e1 =~$_usn4] As `1esn` Order By [#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Asc,usn2[12.e12..] Ascending,$@usn6 Is Not Null Is Not Null Desc Skip `5esn` Contains 1.e1 Contains .e12 Limit `7esn`[0x0][$`4esn`] Where `5esn` Contains #usn7 Contains 9e12 Union All Remove [0X0123456789ABCDEF Ends With 01 Ends With ``,$`4esn` Contains .e0 Contains 0Xa].`6esn` With Distinct $usn2 =~0.e0 =~@usn6 As _usn4,9e12[..1e1][..'s_str'] As @usn5 Order By 0X0123456789ABCDEF Is Not Null Is Not Null Asc,0X0123456789ABCDEF Is Not Null Is Not Null Asc Limit $7 In $usn1 In 999 Where 12.e12 Is Not Null Is Not Null Union All With Distinct *,.0 Contains .e12 Contains 0,1e1 Is Null Is Null As usn2 Detach Delete 01[..0Xa][..12],$`4esn`[..$`8esn`][..Null] Unwind 07[False] As @usn5;"), + octest:ct_string("Delete [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12] Starts With usn2(01 Is Null) Starts With Filter(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),All(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null) Contains [@usn5 In 's_str'[0..] Where `6esn`[..Count ( * )][..$_usn4]] Contains ({usn1:$123456789 In 0.12})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(usn2 ) Create _usn3=((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})-[#usn8:#usn7|@usn5 *123456789..{@usn5:usn2[12.e12..]}]->(`` )<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})),usn2=((`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})) Merge `1esn`=(((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[?:`8esn`*]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}))) On Match Set _usn4 =0Xa In #usn7 In 's_str',`5esn`+=$#usn8 Starts With .e12 Starts With 1.e1,`1esn`+=usn2 In _usn3 On Match Set _usn3+=`6esn`[$``..$_usn3][1000...0],[usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5|0 Ends With 12.e12 Ends With usn2].`1esn` =123.654 Is Null Is Null Union With *,$`5esn` Is Not Null,usn2 Contains $0 Contains .0 Skip Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)[(`` :`5esn`{@usn5:123456789 =~@usn6})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`7esn` {``:9e1 Contains $999,``:$usn2[True..0X0123456789ABCDEF]}).._usn3(Distinct 0x0 Contains $`6esn` Contains `4esn`,usn2[1.e1])][(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})..[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|9e1 Is Null]] Limit $`4esn`[`6esn`..$12] Where 0Xa[Count(*)..] Union With Distinct Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],010 Is Null Is Null As #usn8,All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] As `8esn` Order By $_usn3[_usn4..] Asc,0.12 Is Null Is Null Desc,`6esn` Ends With _usn4 Ends With False Ascending Skip 1.e1 =~.12 Limit `1esn`[$@usn6][07] Create ``=(`3esn` :_usn4),((_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`})-[?:`2esn`|`4esn`{@usn5:0.e0}]-(`1esn` $`4esn`));"), + octest:ct_string("Unwind 9e0 Is Not Null Is Not Null As `4esn`;"), + octest:ct_string("Unwind [#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)] Contains (:`2esn`)-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`3esn` {`4esn`:False Is Null}) Contains Filter(`8esn` In 123456789 =~@usn6 Where $`6esn` Starts With .e12 Starts With $`1esn`) As `1esn` Union Delete 12.e12 Starts With \"d_str\" Starts With 9e1,'s_str' Starts With 9e0 Starts With usn2,$`4esn`[..$`8esn`][..Null] Optional Match (`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}) Return Distinct *,00 Ends With $`1esn` Ends With `7esn`,$@usn6 Is Not Null Is Not Null As `8esn` Order By (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Descending,[#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Descending Skip [usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Limit 12.e12 =~.0 =~usn1;"), + octest:ct_string("Unwind [@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00|`5esn`[$`7esn`..$@usn5]] Is Not Null Is Not Null As @usn5 Create (((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),usn1=(`7esn` :`3esn`{`2esn`:999[123.654..$usn2][Count ( * )..0x0]})-[`2esn`?:usn1|`4esn` *00..0Xa]-(`4esn` :`4esn`:`6esn`);"), + octest:ct_string("Unwind [Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] As `5esn` Merge #usn7=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`})) Remove Extract(`6esn` In $`6esn`[``..][Count(*)..] Where False Contains 0 Contains $`6esn`|0X7['s_str'..][01..]).#usn8,{#usn7:.e0 Is Null Is Null,#usn7:0.0 Is Null Is Null}.#usn8!,[$@usn5 Ends With @usn5 Ends With 0xabc,12.0 In 123.654 In _usn4].`3esn`? Union All Merge `4esn`=((@usn6 {usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[ *..07{`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}]-({#usn7:$`3esn` Ends With 01234567,_usn3:usn1 =~$`7esn`})) Return Distinct $0[010..] As `` Order By `5esn`(Distinct .e0[01234567..$`8esn`]) =~All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) =~[999 In #usn8 In $``,.e0 Is Null Is Null] Ascending Skip count(Distinct 0X0123456789ABCDEF Contains 12e12 Contains 12.e12)[..{usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]}][..(:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null})] With *,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As `8esn` Where $`7esn`[.e1][12.0] Union All Delete 0xabc =~@usn5 =~$usn1,[$usn1 Ends With _usn4 Ends With `2esn`][@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)..[#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1]][Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..])..Extract(#usn7 In 9e1[$`1esn`..] Where $999[``])],1000[$7..][_usn4..] With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Order By 1.e1 In 1000 In _usn3 Desc,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Descending,123.654 Is Null Is Null Asc Where _usn4[`7esn`];"), + octest:ct_string("Return $123456789 Starts With 0.12 Starts With Null As _usn3 Order By #usn7[``] Desc,{`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Ascending,`` Is Null Descending Skip 0X0123456789ABCDEF In $7 Limit All(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0)[(:#usn7:`5esn`)<-[#usn8? *0Xa]-(`5esn` :`5esn`{#usn7:``[$`3esn`]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc})..] With Distinct Count(*) In #usn8 In \"d_str\" As ``,$`4esn` Starts With 0 Starts With `7esn` As usn2 Order By $7 Starts With 12.e12 Starts With $@usn6 Desc,1.e1 Is Null Is Null Descending Skip $`1esn`[``][07] Limit `5esn` Contains 1.e1 Contains .e12 Where 9e1 Contains $999 Detach Delete All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`],usn2 Ends With $`4esn`;"), + octest:ct_string("Return Distinct *,None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0) Order By 0X0123456789ABCDEF In $usn2 In `4esn` Descending,0xabc In .12 In 0Xa Desc,01[$`7esn`..$@usn6] Ascending Skip 123.654[`4esn`..12] Create ((#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[`7esn`? *0Xa{@usn5:123.654 Is Not Null}]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`})) Union All Return Distinct 0Xa In #usn7 In 's_str' Limit 9e1[$1000][7] Return Distinct $usn2 =~1.e1 =~usn1 As `8esn`,``[$`3esn`] Order By 00[$`6esn`.._usn3][12e12..``] Desc Union Detach Delete {`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null,12[None(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)..`5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12])][`5esn`(`2esn`[..01][..True])..(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})<-[? *7..]-(#usn7 :``:usn2)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})],12.0 =~@usn6 =~$`2esn`;"), + octest:ct_string("Create ((`3esn` :usn2{`6esn`:#usn8 Is Null})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->(`7esn` {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01})),`5esn`=(({@usn5:``[9e12][$999]})-[usn2{``:$`1esn` =~999}]-(:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0})) Delete 123.654 In $`7esn`;"), + octest:ct_string("Delete _usn3[12.e12..][`5esn`..] Remove [`7esn` Contains 9e0,010[`5esn`],0.e0 Starts With .0 Starts With 123456789].`8esn`?,All(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]).`7esn`!;"), + octest:ct_string("Optional Match ((@usn5 {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})) Remove Any(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`).`1esn`,Single(`3esn` In `2esn`[..01][..True]).``,{usn1:'s_str'[0..]}._usn3? With *,00[12..$`6esn`] As _usn4,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] As `3esn` Skip `8esn` Contains `2esn` Contains .0 Limit Null[.12..12e12] Where 9e12 Starts With 1e1 Union All Match ((`4esn` :`4esn`:`6esn`)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Where usn2 Contains $0 Contains .0 Merge ((`5esn` :@usn5{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) On Match Set `` =Null[..010][..1000] On Create Set #usn8 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]);"), + octest:ct_string("Merge ((#usn7 :_usn3)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]}));"), + octest:ct_string("Merge `1esn`=((`6esn` {`3esn`:$`2esn`[0..123456789][``..`1esn`],`7esn`:$0[0Xa..$123456789]})<-[? *00..0Xa]->(usn2 :@usn5)-[?:`2esn`|`4esn` *0Xa{#usn7:1.e1 Starts With 9e12}]-(:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) On Create Set `3esn`+=$@usn6 Is Not Null Is Not Null,[$usn2 Is Not Null Is Not Null,0 =~1e1].`3esn`? =$1000[0X0123456789ABCDEF][12] On Match Set `2esn` =`3esn`[..0X0123456789ABCDEF][..0x0];"), + octest:ct_string("Unwind All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]) =~All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where .e12[..999][..@usn5]) =~Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) As _usn4 Detach Delete $@usn6 Ends With `1esn` Union Merge (((:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]-({`7esn`:9e12 =~@usn6})<-[ *0x0..]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})));"), + octest:ct_string("Optional Match (usn2 :_usn4),`1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Where 0e0[01][$`7esn`] Remove (:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})-[? *0Xa]-(`8esn` {``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]}).`2esn`! Union All Detach Delete [$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][None(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..])..],1.e1 In 1000 In _usn3,#usn8 =~.e0 Remove None(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7).`5esn`?,({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})<-[`4esn`:usn2]->(:`8esn`{``:$`1esn` =~999}).usn2,(usn1 {usn1:$#usn7 =~`2esn`})-[{_usn3:01 Is Null,_usn3:$@usn6 Ends With 12.e12 Ends With @usn5}]-(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})-[`7esn`:#usn8|:`3esn` *0..01{`3esn`:07[_usn3..][`6esn`..],@usn6:``[usn1][`5esn`]}]->(:_usn3{_usn4:.e1[7..][9e0..]}).`4esn` Create `4esn`=((`` {#usn7:#usn8 Is Not Null Is Not Null})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]}));"), + octest:ct_string("Unwind 0 Is Not Null As `6esn` Optional Match `2esn`=((#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]-(usn2 :_usn4)),(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))) Detach Delete `8esn` Is Not Null Is Not Null,Filter(@usn5 In 9e0 Ends With $#usn8 Where 7 Ends With 01234567 Ends With 0Xa) Starts With {usn2:`2esn` =~.e12 =~0X0123456789ABCDEF,@usn6:`2esn` Is Null} Starts With [usn2[12e12..]['s_str'..]];"), + octest:ct_string("With Distinct *,0xabc Is Null Is Null,usn2 =~$`` =~$`8esn` As `2esn` Skip 0 Ends With Count(*) Ends With False With *,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Where .e1[12.0..] Union Unwind 9e1 =~$_usn4 =~1.e1 As `7esn`;"), + octest:ct_string("With Distinct *,999 Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains {_usn3:123.654 In $`7esn`} As `6esn`,.e0 Is Not Null Is Not Null As `7esn` Order By _usn3 In $`8esn` In @usn6 Desc Where `8esn` Contains Count(*) Contains $#usn7 Detach Delete None(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``)[[`5esn` In 0X7 In $#usn7 Where $@usn5 Starts With `5esn` Starts With 01234567|$``[..$#usn7][..`6esn`]]..Single(@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn1..]['s_str'..])] Remove `4esn`:`4esn`:`6esn`,(usn2 :_usn4)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]}).usn2!,`5esn`(0.12 Contains False Contains 1.e1).`3esn`? Union With Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Order By @usn5[0..] Ascending,$@usn5 In $`6esn` In 12e12 Desc,#usn7 In 0.e0 Desc Skip {`8esn`:$_usn4 Starts With 12.e12} Is Null Is Null Limit 999 Contains $1000 Where 999 In #usn8 In $`` Union All Match #usn7=(((:@usn5{@usn5:$12[9e0..$999]})<-[ *01234567..]-(`2esn` {`1esn`:$`4esn` Is Null Is Null})<-[@usn6?:`8esn` *0..01]->(`5esn` :`4esn`:`6esn`))),((usn2 :#usn8:`1esn`)<-[`4esn`? *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})<-[`4esn`:`1esn`|`3esn` *12..]-(@usn6 {`4esn`:9e1 Contains 12})) Where `2esn` In 7;"), + octest:ct_string("Unwind 12.e12 Is Not Null Is Not Null As `2esn` Remove {`6esn`:$@usn5 Contains 's_str' Contains \"d_str\",`4esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}.`1esn`!,{`8esn`:12.0 Ends With `2esn`,`3esn`:123.654[$0..0X7][Null..#usn8]}.`1esn`! Return Distinct Count ( * ) In True In @usn5 Skip 01234567[\"d_str\"..`4esn`] Limit 123.654 In $`6esn` Union All Unwind {`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`} Contains Filter(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5) Contains Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) As #usn7 Return Distinct *,False Is Null Order By 0X7[..$`8esn`] Desc,[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null Ascending,12.e12 Ends With `` Ends With 0 Desc Skip Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0)[..{`5esn`:0Xa[$`8esn`..][$_usn4..],_usn3:00[$usn1..]}][..Any(@usn6 In 010[`5esn`] Where 1.e1[$usn1])] Union Delete 1000[7..$12],@usn5 Is Not Null,usn2 Is Not Null Detach Delete None(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1) Contains `3esn`(Distinct $123456789[...12][..@usn6]) Contains {``:`1esn` Starts With 0xabc Starts With $usn2} Return *,00[$usn1..] Limit `4esn`(Distinct 0.0 Contains #usn7)[(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})..][None(@usn5 In 's_str'[0..] Where #usn7[0.12..])..];"), + octest:ct_string("Remove [`5esn` In 0X7 In $#usn7 Where 01 Is Null]._usn4?,Any(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1).`3esn` Unwind `3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] As `8esn`;"), + octest:ct_string("Remove [@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|$`3esn` In $usn2].`5esn`?,[$usn2[0.e0],#usn8 Is Not Null Is Not Null,.12[01][@usn5]].`7esn`! Optional Match ((:`3esn`{`4esn`:$999[0Xa..][9e1..]})-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]-(:`3esn`{`4esn`:$999[0Xa..][9e1..]})),_usn4=((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})) Where @usn5 Is Null Remove Any(usn2 In 7[12] Where 0x0 Ends With 12.0 Ends With `5esn`).#usn8,Filter(#usn7 In 9e0[$1000] Where .e0 Is Null).`2esn`! Union All Match _usn4=((:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})) Where 123456789[12] Merge #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}) On Match Set _usn3:`7esn` On Create Set Single(@usn6 In 010[`5esn`] Where 123.654).`6esn`? =0.e0[0X0123456789ABCDEF..],(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}).`3esn`? =999[..`1esn`][..07],[@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1].`6esn` =`7esn` Starts With @usn5 With Distinct 0Xa In #usn7 In 's_str',`4esn` Starts With 0e0 As `7esn` Skip (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`) Where .e0 Union Detach Delete `` =~.12,[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])],123456789[12] With Distinct $#usn8 Ends With `` Ends With 999 As `5esn`,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]) Is Not Null Is Not Null As _usn3 Order By _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..] Desc,{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Is Not Null Desc,9e0 Ends With $#usn8 Desc Limit 12.0 Starts With $`2esn` Starts With .e1 Where 9e1 Ends With Count(*) Ends With $7 Merge `1esn`=(`6esn` {``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]})-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(`3esn` :usn2{`6esn`:#usn8 Is Null}) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]];"), + octest:ct_string("Optional Match @usn5=(`5esn` :``:usn2)<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2) Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] On Create Set `6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn1+=`4esn`[$_usn3..$`7esn`] Union Unwind $1000[$@usn6][$_usn4] As `6esn`;"), + octest:ct_string("Merge `1esn`=(`5esn` :`5esn`{#usn7:``[$`3esn`]}) On Create Set @usn6+=$`1esn` =~1e1 On Match Set Any(`3esn` In 9e1 Contains $999 Where usn2[12.e12..]).usn1? =usn1[False..`5esn`][$1000..$12],#usn7 =Single(#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6])[Filter(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])..],Any(#usn8 In `7esn` Where .e12 Starts With $#usn8 Starts With False)._usn3? =1.e1 Ends With $#usn7 With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Order By 1.e1 In 1000 In _usn3 Desc,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Descending,123.654 Is Null Is Null Asc Where _usn4[`7esn`] Union All Remove (:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`8esn`{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})-[``?:`3esn` *12..]-(#usn7 {`1esn`:$`4esn` Is Null Is Null}).usn2?,Single(`3esn` In 9e1 Contains $999 Where $`8esn` Is Null Is Null).`6esn`? Delete $0[0Xa..$123456789],[usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Union All Create (((`4esn` :``:usn2)<-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]-({`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[:_usn4{`8esn`:12.e12 Is Not Null Is Not Null,#usn7:@usn6[Null...0][\"d_str\"..Count(*)]}]-(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False}))),#usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) Unwind Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null] As `3esn` Merge ``=(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]->(_usn4 {_usn4:Null[..010][..1000],_usn3:.0 Is Null Is Null}) On Match Set [$`7esn`[.e1][12.0]]._usn3! =123.654[..0.e0][..'s_str'],`2esn`+=.e0 =~Null,``:#usn7:`5esn` On Create Set None(`8esn` In 123456789 =~@usn6 Where Count(*) Ends With usn1).`7esn`! =All(usn2 In 7[12] Where #usn8 Is Null Is Null)[[usn2 In 7[12] Where #usn7[.e0]]..];"), + octest:ct_string("Unwind Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)[(`` :`5esn`{@usn5:123456789 =~@usn6})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`7esn` {``:9e1 Contains $999,``:$usn2[True..0X0123456789ABCDEF]}).._usn3(Distinct 0x0 Contains $`6esn` Contains `4esn`,usn2[1.e1])][(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})..[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|9e1 Is Null]] As usn1 Union All Create _usn3=(`1esn` )<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7}) With *,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) As `7esn` Order By (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc Where 1.e1 In 1000 In _usn3 Delete 0x0[``..],Any(usn2 In 7[12] Where $_usn3 Is Null) Is Not Null Is Not Null,[`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Union Unwind 01[07..][1.e1..] As _usn3 Match `4esn`=((`3esn` {usn2:$usn2[`4esn`..9e12]})<-[?{@usn5:_usn3 Ends With 7 Ends With $`1esn`}]->(_usn3 :_usn4)<-[_usn4?:`3esn`]-(:_usn3{_usn4:.e1[7..][9e0..]})) Merge `2esn`=(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[`4esn`:usn2]->(`3esn` :_usn4) On Create Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null On Create Set #usn7+=`6esn`[$`8esn`][9e1];"), + octest:ct_string("Remove None(@usn5 In 's_str'[0..] Where usn2 Ends With .e1 Ends With $`5esn`).`7esn`?,count(Distinct 00[$usn1..],$`2esn` Ends With `6esn`).`4esn`? Remove All(#usn8 In `7esn`).`1esn` Union Delete $#usn7[..0Xa],01 In $@usn6 With `5esn`[..123.654][...e12] As @usn6,(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) As `2esn`,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As `1esn` Order By None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0) Descending,@usn5[$`7esn`..`5esn`] Ascending,.0 Contains .e12 Contains 0 Asc Skip usn1 Limit `6esn`[$`8esn`][9e1] Where False Starts With 0X7 Starts With 01234567 Union All Optional Match `1esn`=(_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`}),`5esn`=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']}) Where 07 In `6esn` Merge `7esn`=(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]});"), + octest:ct_string("Create ``=({usn2:$`2esn` Is Null,#usn8:.0 Is Null Is Null})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]}),`8esn`=(((`4esn` :`4esn`:`6esn`)<-[ *..07{`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn3{@usn5:$1000 Starts With $`7esn`})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]}))) With *,$`5esn` Is Not Null,usn2 Contains $0 Contains .0 Order By 12.0 Ends With `2esn` Ascending,01234567[$0..][0..] Descending,$12 In True In 1.e1 Desc Skip 9e0[Count(*)..0.12][$`1esn`..12.0] Where `7esn` Union All Unwind ({`6esn`:usn1[..$@usn6][..00]})-[`6esn`?:`1esn`|`3esn` *01..123456789]-({`2esn`:`7esn` In 010 In usn1,`8esn`:$0[123.654..0.e0]}) In [$``[7]] In `6esn`(#usn8 Is Not Null Is Not Null) As usn1;"), + octest:ct_string("Unwind $12 Starts With $0 Starts With $`8esn` As usn2 Union Create _usn4=(:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}),((:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})) Return Distinct [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) As usn2,#usn8 =~0.e0,$usn1 Limit 00 In @usn6 In 0 Merge `8esn`=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`}));"), + octest:ct_string("Remove All(@usn6 In 010[`5esn`] Where 1.e1[$usn1]).`6esn`!,Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5 Detach Delete 0xabc[$999..][$usn1..],12[..$999][..$`2esn`],Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|$`8esn`[..True][.._usn4]) Ends With Single(_usn4 In 12e12 In 123456789 Where $usn2 Is Not Null Is Not Null) Create (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})));"), + octest:ct_string("Unwind $_usn4[9e0..][$1000..] As `5esn` Merge usn2=(@usn5 :@usn6{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[`8esn` *0xabc]-(:_usn3{_usn4:.e1[7..][9e0..]}) On Match Set None(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`).`7esn`! =07[..07][..0X7],`4esn`:`1esn`:_usn4 Remove [@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|$`3esn` In $usn2].usn1,[#usn8 In `7esn` Where $`5esn` Is Not Null Is Not Null].#usn8;"), + octest:ct_string("Unwind $@usn5[_usn4] As #usn8 Union All Create ((#usn8 :_usn3)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)),((:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->({@usn6:12.e12 Contains #usn7 Contains $_usn4,usn2:$`5esn` =~$0 =~``})-[#usn7 *01..123456789]->(:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})) Union All With 's_str' Where 's_str'[0..] Unwind 12e12 In 123456789 As `7esn` Detach Delete $12 Starts With $0 Starts With $`8esn`;"), + octest:ct_string("With Distinct *,0.0[$@usn5.._usn4] As `1esn`,07 Is Null As #usn7 Order By 12.e12 Contains `6esn` Ascending,[$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1] Asc,Extract(`3esn` In `2esn`[..01][..True] Where 00[01234567][False]|$`3esn` Ends With 01234567) Starts With (_usn4 :_usn4)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}) Starts With Extract(@usn6 In 010[`5esn`] Where $`2esn` Starts With `4esn` Starts With $usn1) Asc Limit 9e1;"), + octest:ct_string("Return Distinct $@usn6[.0..][0e0..] Order By $`8esn` Is Not Null Is Not Null Descending,Null Ends With _usn4 Ends With 0.0 Ascending Limit .e0 Create `4esn`=((`6esn` :#usn8:`1esn`{`6esn`:usn1[..$@usn6][..00]})-[@usn5:_usn4 *0x0..]-(_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})),(:`4esn`:`6esn`{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]-(:`6esn`:_usn3)<-[@usn5? *999..{usn1:.e12[$@usn6..00][01234567.._usn3],`1esn`:`7esn` Contains 9e0}]-({@usn6:999 Contains 0 Contains $`5esn`,#usn7:999[..`1esn`][..07]}) Union Return Distinct *,00 Ends With $`1esn` Ends With `7esn`,$@usn6 Is Not Null Is Not Null As `8esn` Order By (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Descending,[#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Descending Skip [usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Limit 12.e12 =~.0 =~usn1 Union All Delete [0x0 Ends With 12.0 Ends With `5esn`,12e12 Ends With 0.0 Ends With usn1,00[1.e1..]] Ends With All(#usn8 In `7esn` Where $`3esn`[..0xabc][..$7]) Ends With Any(@usn6 In False Contains 0 Contains $`6esn` Where `6esn`[$1000][`3esn`]) With Distinct *,@usn5 Contains #usn8 Contains 12.0 As `6esn`,{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] Skip 0.0 Is Null Is Null Where 07 Ends With 9e12 Ends With `2esn` Unwind usn1 Starts With 00 As _usn3;"), + octest:ct_string("With Distinct 12[$`5esn`..][False..] As `4esn`,0e0 Ends With 07 Ends With $`8esn` As `1esn` Limit All(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`)[Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null)..][Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..])..] Union Unwind Extract(@usn6 In 010[`5esn`] Where 00[$usn1..]|_usn3[$usn2..][$``..])[Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])] As _usn3;"), + octest:ct_string("With *,All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],12 In $usn1 In 7 As `8esn` Skip None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1) Limit $@usn5 Starts With .e1 Where usn1 Is Null Is Null Unwind [$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) As #usn8 Union All Return Distinct .e12 Starts With $7 Starts With .0,[$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) As #usn7,01 Contains usn2 Contains 0X0123456789ABCDEF As `8esn` Order By 0Xa =~False =~@usn5 Descending,12.0 In 010 Ascending,`4esn`[123456789] Ascending Return (#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null} Order By Extract(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With [#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4] Ends With [False[$`4esn`..],$#usn7[..0Xa]] Asc,@usn6[..$@usn5] Ascending Skip 999 Starts With `2esn` Starts With .e1 Limit 0.e0[..$999][..0Xa] Union All Delete Count ( * ) Ends With `6esn` Ends With 's_str',Count(*)[$@usn5] Optional Match @usn6=(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})-[:@usn5|_usn3 *00..0Xa]-(:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(_usn4 :@usn5) Merge (#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[?:`7esn`|:`2esn`]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]}) On Match Set `2esn` =`3esn`[..0X0123456789ABCDEF][..0x0] On Create Set `2esn` =$@usn5[0.0][0X0123456789ABCDEF],@usn6+=[`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})];"), + octest:ct_string("With 9e0[..123456789][..$`3esn`] Order By 01 Contains usn2 Contains 0X0123456789ABCDEF Desc Limit 00 =~Count ( * ) Union All Optional Match ((`4esn` :@usn6)-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})) Where 0Xa Ends With $`3esn` Ends With $1000 Union Create _usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Remove {#usn8:`1esn`[usn1][0xabc],_usn3:$`6esn`[1.e1][$_usn3]}.`3esn`,{usn1:@usn6[9e12]}.`4esn`! Return 12[$`5esn`..][False..] As `4esn`,0e0 Ends With 07 Ends With $`8esn` As `1esn` Limit All(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`)[Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null)..][Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..])..];"), + octest:ct_string("Unwind 07 =~`4esn` =~$`1esn` As usn1 Remove [#usn7 In True Contains 's_str' Contains $usn1 Where $#usn7[..$`4esn`][..01]|1.e1 Is Null Is Null].#usn7?,(#usn8 :`2esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4)-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}).`8esn`!,`1esn`(Distinct `3esn`[7..0.e0][0.0..123456789],`1esn` Starts With 0xabc Starts With $usn2)._usn4! Unwind Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) As usn1 Union All Detach Delete _usn4(Distinct 0X0123456789ABCDEF Ends With 01 Ends With ``,$`3esn`[..0xabc][..$7]) Contains `1esn`(999 Is Null Is Null) Contains (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[usn1:_usn4]-(#usn7 :@usn6) Union All Create `7esn`=(((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}))),`2esn`=((`6esn` :#usn7:`5esn`)<-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]->(:#usn8:`1esn`$`7esn`)) Create `6esn`=(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[@usn6:`1esn`|`3esn` *0X7..]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}),(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(`3esn` :_usn4{`3esn`:12[..0e0][...e1],`4esn`:.0 Is Null Is Null});"), + octest:ct_string("Unwind Extract(#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null)[All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])..] As `7esn` With *,.e0 Is Null As `2esn`,(:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Skip True Contains 0x0 Contains $_usn3 Limit 's_str' Ends With _usn4 Ends With 0e0 Where 1.e1[$usn1];"), + octest:ct_string("Remove Filter(usn2 In 7[12] Where $#usn8[12.e12..`8esn`][12.0..0.0]).``,[`8esn` In 123456789 =~@usn6 Where ``[9e12][$999]].@usn5?,`4esn`:`7esn` Return Distinct 12.e12[..$`6esn`] As `7esn`,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] As ``,1.e1 Contains `6esn` Contains 0.e0 Skip Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])];"), + octest:ct_string("Optional Match `3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))),usn2=(:#usn8:`1esn`$`7esn`) Where 123456789 Is Null Is Null Delete (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Union Return *,1e1 Is Not Null Is Not Null Order By Single(@usn6 In 010[`5esn`] Where Count(*)[9e12..12.0])[(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)][`7esn`] Descending Skip 12 Contains 1.e1 Unwind 1000[$7..][_usn4..] As `5esn` Match ((_usn4 :#usn7:`5esn`)-[`4esn`:`1esn`|`3esn` *12..]->({`7esn`:9e12 =~@usn6})),((:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[`1esn`:`8esn` *7..]-(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Union Remove Extract(#usn7 In True Contains 's_str' Contains $usn1).#usn8!,#usn7().#usn7 Unwind 00[False..0e0] As `6esn` Remove ({``:.e1 Starts With 12.e12 Starts With `2esn`})<-[``:`5esn`|:usn2{`5esn`:_usn4[0]}]-(`8esn` :`8esn`)<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"}).@usn5,`5esn`:`5esn`,Any(#usn7 In 9e0[$1000] Where `3esn` Starts With 9e0 Starts With usn1)._usn4?;"), + octest:ct_string("Detach Delete $0[010..];"), + octest:ct_string("Unwind Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])] As usn2 Remove Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 7[0e0..]).`8esn`!,`4esn`:usn2,(:`8esn`{@usn5:usn2 Ends With .e1 Ends With $`5esn`})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`).`8esn`? Remove #usn7:`3esn`,Single(`6esn` In $`6esn`[``..][Count(*)..] Where 's_str' Starts With 1e1 Starts With $0).`4esn`?;"), + octest:ct_string("Return Distinct _usn4(Distinct usn2[07..][.0..]) Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]|$`2esn` Starts With `4esn` Starts With $usn1) Ends With Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2),usn1[..$@usn6][..00] As #usn7,(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})[..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})] As `7esn` Order By 0X7[..$`8esn`] Desc,$123456789[12e12..9e0] Descending Create (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3);"), + octest:ct_string("Create ((:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})),`2esn`=(((@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]})<-[? *7..{`1esn`:.e12 Ends With 0Xa Ends With 0xabc}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[ *..07]->(`8esn` {`8esn`:$_usn4 Starts With 12.e12}))) Match (({`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]})) Unwind `4esn` Contains 9e0 As `8esn` Union With (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Order By usn1 Ends With 9e0 Ends With 9e0 Descending,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Descending Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Remove [0.e0[1000.._usn4][.e1..usn1],$`1esn` =~999,07[_usn3..][`6esn`..]].usn1!,usn2:`4esn`:`6esn`,Extract(usn2 In False[$usn1][0x0] Where $`7esn`|07 Is Null).#usn7! Delete $`6esn` Is Not Null Is Not Null,$`8esn` Is Not Null Is Not Null;"), + octest:ct_string("Merge `4esn`=({`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}) On Create Set #usn7+=Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] On Match Set `2esn` =9e1 Ends With Count(*) Ends With $7;"), + octest:ct_string("Return Distinct `` Is Not Null Is Not Null As `6esn`,`7esn`[$usn1..]['s_str'..] As usn1,$#usn8 Starts With .e12 Starts With 1.e1 Limit Single(usn2 In 7[12]) Ends With {_usn3:123.654[`4esn`..12]} Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where `1esn`[usn1][0xabc]) Remove Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01).`3esn`,`5esn`(Distinct).usn1! Unwind 0 Is Not Null As `6esn` Union Match `3esn`=(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0}),usn1=(({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) Where \"d_str\"[True..] Union All Optional Match `1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}));"). diff --git a/test/performance_cypher_legacy_SUITE.erl b/test/performance_cypher_legacy_SUITE.erl index 9d577ab..0eb17ba 100644 --- a/test/performance_cypher_legacy_SUITE.erl +++ b/test/performance_cypher_legacy_SUITE.erl @@ -2,7 +2,7 @@ %%% File : performance_cypher_legacy_SUITE.erl %%% Description : Test Suite for rule: cypher. %%% -%%% Created : 03.10.2016 +%%% Created : 15.12.2016 %%%------------------------------------------------------------------- -module(performance_cypher_legacy_SUITE). @@ -38,1003 +38,1003 @@ all() -> %%-------------------------------------------------------------------- test_cypher(_Config) -> - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Start _usn4=Rel:#usn8({_usn3}) ,`8esn`=Rel:`1esn`(@usn5='s_str') Create Unique ((@usn6 :`1esn`{#usn8:`4esn`[1.0],``:.e12[@usn5..#usn7][010..{usn1}]}))"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Create Constraint On()<-[usn1:#usn7]-()Assert Exists(All(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null).`1esn`)"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Create Constraint On()<-[`5esn`:@usn5]-()Assert Exists({`3esn`:{0}[01][`7esn`],`8esn`:2.12 Is Null}.usn2)"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Drop Constraint On(`6esn`:`1esn`)Assert Exists(Case When True[07..$usn2][$7..{usn1}] Then 's_str'[00][{`5esn`}] When 12e12 Ends With {usn1} Then 2.12 =~False End.`6esn`?)"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Create Constraint On()-[_usn3:`7esn`]->()Assert Exists([0.12 =~`5esn` =~`5esn`].#usn7)"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Detach Delete 1.e1[$`1esn`..@usn6][$0..$_usn3],$@usn6[..{#usn7}][..{@usn6}] Load Csv From `5esn`[..Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`])] As _usn4 "), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Create Constraint On(`2esn`:`6esn`)Assert (@usn6 :``:#usn8)-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->(:``:#usn8{`4esn`:{`4esn`}[$123456789..][$#usn7..]})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}).`6esn`? Is Unique"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Drop Constraint On()-[``:usn2]-()Assert Exists([$12 Ends With 07 Ends With $123456789,$@usn5 =~1000 =~1000,.e12[@usn5..$12]].#usn7?)"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Create Constraint On(_usn3:@usn6)Assert Exists(Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {`6esn`}).``?)"), - octest_legacy:ct_string("Explain Drop Constraint On(`3esn`:#usn7)Assert usn1(Distinct 0X7[`7esn`][123.654],$`5esn`[..$`5esn`][..$12]).#usn7? Is Unique"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Create Constraint On(usn1:_usn3)Assert (:`3esn`:@usn5)-[?:`5esn`{`4esn`:{`4esn`}[$123456789..][$#usn7..]}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]}).`8esn`! Is Unique;"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Unwind 123.654[$`1esn`] As `2esn` Remove [$1000 Is Null,$`1esn`[{`2esn`}..],.e1[{`7esn`}..{_usn4}]].@usn5 Union All Merge (`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]}) On Create Set `4esn`+=(`1esn` :#usn8:#usn8)-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})[..(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})][..`5esn`({12} Ends With 1.0 Ends With .e0)],Any(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`])._usn4! ={@usn6}[{999}..][00..] Unwind $12 Starts With {`1esn`} Starts With Null As `6esn` Union All Foreach(`5esn` In $#usn7[..{`5esn`}][..9e12]| Delete `5esn`(Distinct `2esn` Is Null,123456789[{123456789}..'s_str'])[.._usn3(.e0[..$`8esn`])][..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]) Return Distinct 2.12[$`5esn`][$#usn8],$7 Ends With `4esn` As `5esn` Order By ({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}) Asc,{#usn8} Starts With 00 Starts With {`6esn`} Desc Skip `1esn`[{usn1}..``][7..$#usn8];"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Delete [`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\"] Is Null Union Create `5esn`=((`` :`2esn`:usn1)<-[usn2?:``]-(usn2 :``:#usn8)<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})) Delete $#usn8[..{`2esn`}][..1.0],`4esn`[1.0]"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Drop Constraint On(usn1:usn1)Assert Exists({usn1:0X0123456789ABCDEF Is Null Is Null}.`4esn`!)"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Create Constraint On(#usn7:`1esn`)Assert Exists(Shortestpath((#usn8 {#usn7:`4esn` Ends With 07 Ends With {`3esn`},`3esn`:{0} In $_usn3})<-[:`4esn` *..010{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]->(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})).#usn7)"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Foreach(`7esn` In Case When _usn4 Is Null Is Null Then Null[$#usn7] When $`2esn` Is Null Is Null Then $`3esn` =~{#usn8} End[(@usn5 :usn1)-[`2esn`:_usn4|:usn2]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})..Reduce(@usn5=`3esn`[{usn1}],`8esn` In 01[2.12..`8esn`]|`5esn` Starts With `3esn`)][Shortestpath((:``:#usn8{``:1.0[0e0..0.e0]}))..None(#usn8 In {`5esn`}[.e1..``] Where {_usn3}[..\"d_str\"][..`5esn`])]| Optional Match ((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})),``=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))) Using Scan _usn3:_usn3 Where Count ( * ) Ends With $@usn5 Optional Match `8esn`=Allshortestpaths(((:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))),`2esn`=((`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(_usn3 :#usn7)<-[@usn5?]->(`1esn` :`5esn`{`5esn`:{``} Is Null})) Where $usn1[{`5esn`}][$`6esn`]) Detach Delete 1e1 Contains 0e0;"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain With $@usn6 Contains 07 As @usn5 Order By [`5esn` In $999[0.0..] Where `5esn` Starts With `3esn`|12e12 Is Not Null Is Not Null] Asc,010 =~{usn2} Asc,$12 Is Not Null Is Not Null Ascending Skip {usn2} =~12 Create Unique usn2=Allshortestpaths((:`2esn`:usn1{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]})),((({@usn5:{usn2}[.e0..$999]})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(`6esn` :_usn3:_usn3{`4esn`:0Xa Starts With {`6esn`} Starts With $usn1})-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1}))) Union Merge _usn4=Shortestpath(((#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]}))) Unwind @usn5 =~{`5esn`} =~`5esn` As _usn4;"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Using Periodic Commit Load Csv With Headers From [`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999}] Ends With usn1(Distinct 1000 In {`8esn`} In 01,{_usn3}[..\"d_str\"][..`5esn`]) Ends With Reduce(_usn4=1000[Null..{123456789}],`5esn` In $999[0.0..]|9e1 In $`3esn` In $@usn6) As _usn4 Fieldterminator \"d_str\" Return 12 Ends With 0x0 Ends With 0.e0,Case When 1.0 In Count(*) Then False End Contains `1esn`(Distinct 0.e0 Starts With `2esn`) Contains Reduce(`1esn`=\"d_str\" Is Null Is Null,#usn7 In {``} Is Not Null|#usn7),0e0[..010] As `` Skip False =~$7 =~2.12"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Load Csv From True[{`7esn`}..] As `4esn` Union With 's_str'[00][{`5esn`}],#usn8 In $@usn6,{1000}[_usn3][$123456789] As `1esn` Order By {999} Starts With $999 Descending Skip {`7esn`} Ends With `4esn` Ends With {@usn5} Limit $@usn5 Starts With {@usn5} Starts With 9e0 Where #usn7"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Merge `2esn`=Shortestpath((:`4esn`{`7esn`:$0[..9e1],usn1:{_usn4} Ends With `6esn`})-[@usn6?:`3esn`|:#usn8 *123456789..]->(:_usn3:_usn3{`7esn`:$`1esn` =~0X7})-[`4esn`]->(:`6esn`$123456789)) On Create Set usn2 =`3esn` In $0 In `1esn`,@usn6:`1esn`,count(Distinct {`1esn`}[usn1][.e1]).`1esn`? =01 Contains {`8esn`} Contains 2.12 Union Remove @usn6:`5esn`,[usn1 In @usn5 =~{`5esn`} =~`5esn` Where $usn1 Ends With $`` Ends With $12|`5esn` Starts With `3esn`].`8esn`,(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn2 ).`7esn`? Union Optional Match ``=(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}}),`3esn`=(`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8}) Using Index `3esn`:`5esn`(#usn7) Using Join On `8esn`,`2esn` Where $`6esn`[{999}..9e0] With Distinct All(`3esn` In {7} Is Null Where Count ( * ) Contains 07) Is Null Is Null Limit $12[`5esn`..] Foreach(`3esn` In {`7esn`}[`6esn`][#usn7]| With Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where @usn6 Is Null Is Null)[(`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})..] As `3esn`,{`3esn`} In 0X7 Skip `1esn` In .e0 In {`3esn`} Limit Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End Create Unique #usn7=((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})),Shortestpath((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))));"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Return Distinct Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`3esn`} In 01)[Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12e12 Contains 0Xa|Null[$#usn7])..Allshortestpaths(((`` {`3esn`:{12} Contains {123456789} Contains `4esn`})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})))][Reduce(`6esn`=7[..123456789][..{@usn6}],`5esn` In \"d_str\" Is Null Is Null|$_usn4 Is Not Null Is Not Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] As _usn4,Allshortestpaths((:@usn5{_usn3:07 =~01})) Starts With [`3esn` In {7} Is Null Where {`4esn`} =~{7} =~{`7esn`}] Starts With ({`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}})<-[`6esn`?:_usn4|:usn2]-(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}) Skip 7 Ends With (@usn5 {`7esn`:$`6esn`[010..]})-[:`8esn` *..01]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]}) Ends With #usn8(False =~$7 =~2.12) Union All Foreach(_usn3 In {#usn7} Contains _usn3 Contains 12.e12| Create Unique #usn8=({`7esn`:\"d_str\" Starts With $123456789})<-[`4esn`:``{usn1:`` Is Not Null Is Not Null,usn1:{1000}[{_usn3}..]}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[`4esn`]->(:`6esn`$123456789) Match (usn2 {``:01[{@usn5}]}) Where {123456789} =~`8esn` =~@usn5) Union Foreach(`7esn` In {`5esn`} =~`4esn` =~{_usn4}| Optional Match `7esn`=Shortestpath(((:`5esn`{``:1.0[0e0..0.e0]})-[_usn4:#usn8|`1esn`{`6esn`:#usn8[..{#usn7}]}]->(#usn7 :`4esn`))) Using Index `7esn`:usn2(`6esn`)) Load Csv From {``} Starts With $`2esn` Starts With `1esn` As `` Delete Extract(#usn7 In {``} Is Not Null Where 123456789[0xabc..'s_str'][``..`1esn`])[Reduce(usn1=False,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|$_usn4 Starts With 1e1)];"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 With Distinct $`3esn`[0.12..`8esn`][$#usn7..`5esn`],Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]) =~Reduce(usn1=.e1 Ends With 1e1 Ends With @usn5,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$#usn7[#usn7..]) =~`1esn`($1000 Is Null) As @usn6 Limit 7[$`4esn`][0x0] Where 7[$`2esn`..{`5esn`}] With 0.e0 In $#usn7 In $_usn3,(usn2 :@usn5)-[?{`8esn`:{7} Is Null}]->(`` )<-[`3esn`?:`3esn`|:#usn8]-(`` :#usn8:#usn8)[Reduce(usn2=`2esn` Starts With $_usn4,#usn7 In {``} Is Not Null|{7} Is Null)..][Single(#usn7 In {``} Is Not Null Where $1000[0Xa][{#usn7}])..] As `2esn` Order By $usn1 Ends With $`` Ends With $12 Desc,1e1[1000..] Ascending,{123456789}[0.e0..$123456789][0Xa..`6esn`] Descending Limit {123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4] Where `4esn` Ends With 07 Ends With {`3esn`}"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Create Constraint On(`4esn`:@usn5)Assert Exists([_usn3 In {`3esn`}[`2esn`]|{#usn7}[`2esn`..]].`5esn`)"), - octest_legacy:ct_string("Cypher Create Constraint On()<-[_usn4:_usn4]-()Assert Exists(Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]).`4esn`!);"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Create Constraint On(`6esn`:@usn5)Assert Reduce(`5esn`=07[..True][..9e12],#usn8 In {`5esn`}[.e1..``]|@usn5 =~{`5esn`} =~`5esn`).`1esn` Is Unique;"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Detach Delete None(`5esn` In $999[0.0..] Where {``}[010..][0xabc..])[{`3esn`:False Is Null Is Null,`8esn`:2.12}] Load Csv With Headers From #usn8 Starts With `6esn` Starts With 12.e12 As `` Union Foreach(#usn7 In .e1 =~{@usn6} =~Null| Create (:`2esn`:usn1{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}) Start `6esn`=Node:@usn5({0}) Where $#usn7[#usn7..]) Optional Match (((`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[usn1?:@usn5*]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})-[#usn7:@usn5 *0X7..]->(`2esn` ))),Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))) Where `7esn` In {123456789} In `1esn` Union All Detach Delete $usn1 In {999} In $#usn7,Shortestpath((:`3esn`:@usn5{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`4esn` {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}))[Filter(#usn8 In 7[..999][..{#usn8}] Where $#usn7 Contains 0x0 Contains 1000)..] Match Allshortestpaths((@usn5 {`7esn`:$`6esn`[010..],#usn8:0.e0 Starts With `2esn`})-[@usn5]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})) Using Join On `2esn` Where $1000 In $1000 In $`3esn` Detach Delete $`1esn` =~0X7,.e0 Ends With 0.12,0e0[`8esn`..][$123456789..]"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Load Csv From Shortestpath(({`7esn`:\"d_str\" Starts With $123456789})<-[`4esn`:``{usn1:`` Is Not Null Is Not Null,usn1:{1000}[{_usn3}..]}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[`4esn`]->(:`6esn`$123456789)) Is Null As `7esn` "), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Create Constraint On(@usn6:#usn8)Assert (usn1 :``:#usn8)-[`4esn`?:_usn4|:usn2 *..01]->(`7esn` :`8esn`:`7esn`{#usn8:01234567[usn2..$12][{`7esn`}..$usn2]})<-[@usn5? *..01]-(`8esn` :@usn6:#usn8).@usn5 Is Unique;"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Create Constraint On(`8esn`:#usn7)Assert Exists(Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $123456789 Starts With 9e0 Starts With 's_str'|9e12 Is Not Null Is Not Null).``!)"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Load Csv With Headers From Allshortestpaths((:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))[[{_usn4} In {12} In $0,$`5esn`[2.12..],12[1.e1..{_usn3}][1.e1..1.0]]][[12e12 Is Not Null Is Not Null]] As _usn3 Fieldterminator 's_str' Create ((usn2 :`4esn`)),(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[`6esn`]-(`1esn` {@usn5:1.0[0e0..0.e0]})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}) Optional Match ``=Shortestpath((`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})) Using Scan `6esn`:`` Using Scan `6esn`:`1esn` Where \"d_str\" Is Null Is Null Union Unwind $12[..{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}] As `5esn` With Distinct *,9e1[2.12],$_usn4 Contains Null Contains #usn8 As #usn7 Order By (usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]})<-[ *123456789..]-(:@usn5) Is Null Is Null Desc,False[..{`1esn`}] Desc Skip 1e1[$`5esn`][{`3esn`}] Limit {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains [1.0[0X7][{`5esn`}]] Where 123.654 Contains $`4esn` Contains 1.0 Create Shortestpath((`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(_usn4 {`5esn`:\"d_str\" Starts With 01})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(:`3esn`:@usn5$usn2)),#usn8=Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Union All Foreach(_usn4 In [`5esn` In $999[0.0..] Where `5esn` Starts With `3esn`|12e12 Is Not Null Is Not Null]| Start ``=Rel:#usn8({12}) Match ((:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?:`5esn` *0..]->(usn2 :``:#usn8)<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})) Using Scan _usn4:@usn6 Where `` Ends With 0Xa Ends With `2esn`);"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Create Constraint On(`7esn`:`7esn`)Assert Case When 07 Contains 0X7 Contains $`8esn` Then {`4esn`} =~9e0 =~{12} When .e1 Ends With 1e1 Ends With @usn5 Then $#usn8[Count ( * )] Else Count ( * )[True..][{#usn7}..] End.`6esn` Is Unique"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Unwind $7 Is Not Null Is Not Null As usn2"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Detach Delete $`1esn` =~0X7,.e0 Ends With 0.12,0e0[`8esn`..][$123456789..] Remove [{12} Contains {123456789} Contains `4esn`,1.e1[`8esn`][00],1.0[$`1esn`..][$123456789..]]._usn4?,Reduce(_usn3=123456789[#usn8..False],_usn3 In {`3esn`}[`2esn`]|123.654 Contains $`4esn` Contains 1.0).#usn8? Union All Start usn2=Rel:_usn4(\"d_str\") Where {`6esn`} Union Unwind All(#usn8 In {`5esn`}[.e1..``] Where {_usn3}[..\"d_str\"][..`5esn`])[..Allshortestpaths((`5esn` :`4esn`))] As `2esn` Merge ((`3esn` :usn2)) On Match Set _usn3+=$`3esn` Is Not Null Is Not Null,`3esn` ={`4esn`} Ends With {usn2} Ends With {999},{@usn6:{999} Starts With $999,`4esn`:$usn1[{`5esn`}][$`6esn`]}.@usn5? =$usn1[..{`6esn`}] Create Unique `5esn`=Shortestpath((_usn3 :#usn7)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})<-[`5esn`? *..12{`8esn`:{`7esn`}[`6esn`][#usn7],`1esn`:0x0 Ends With $12}]->({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000})),((:#usn8:#usn8{_usn4})<-[usn1?:`7esn`]-(:usn1{usn1:{`6esn`}}));"), - octest_legacy:ct_string("Cypher Create Constraint On(`1esn`:_usn4)Assert Exists({@usn5:$_usn3['s_str'][07]}._usn3?);"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Drop Constraint On(`8esn`:`1esn`)Assert Exists({_usn3:{#usn7} Is Not Null Is Not Null}.`6esn`?);"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Load Csv With Headers From 00 Starts With 0xabc As @usn5 Fieldterminator 's_str'"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Merge `1esn`=(`` {@usn6:1.0[$`1esn`..][$123456789..]})<-[?{usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null}]-(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null}) On Match Set usn1(Distinct 01 Ends With 999 Ends With {`7esn`},$_usn4 Ends With usn1 Ends With $0).`2esn`! =Single(`5esn` In \"d_str\" Is Null Is Null Where {1000} =~0 =~123.654)[None(`5esn` In \"d_str\" Is Null Is Null Where 12.e12 Starts With {999} Starts With {`1esn`})..None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`)] On Match Set Allshortestpaths((#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})).`6esn` =_usn4 Contains 0e0,`3esn` =2.12 Is Not Null Is Not Null,Extract(`3esn` In {7} Is Null Where `1esn` =~0 =~$#usn7|{`3esn`} In 01).`5esn`! ={1000}[_usn3][$123456789] Union Foreach(`2esn` In $999 Is Not Null| Start `3esn`=Node:_usn4(`6esn`='s_str') Create Unique `6esn`=Shortestpath((({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})<-[_usn4?:`` *0X0123456789ABCDEF{`5esn`:$123456789 Is Null Is Null,@usn6:{12} Ends With 1.0 Ends With .e0}]->(:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null})<-[``?:#usn8|`1esn`{#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1}]->({@usn5:12e12 Contains 0Xa,_usn4:01[2.12..`8esn`]}))),((@usn5 :`7esn`:_usn3)))"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Return *,Case When 1.0 =~'s_str' =~{`2esn`} Then $`5esn` In $`6esn` When {`7esn`}[..{`4esn`}] Then {usn1} Ends With $0 End[All(`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"])..[Count ( * )[0.12...e1],1.0[00..],$``]][`4esn`(`4esn` Ends With 07 Ends With {`3esn`})..Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `1esn` =~\"d_str\"|9e12 Is Not Null Is Not Null)] As `` Order By `3esn`(`5esn`[{`4esn`}..`2esn`],9e1[2.12..{#usn8}]) In `8esn`(Distinct $1000[`2esn`..`5esn`][1e1..1.e1],0X0123456789ABCDEF Ends With $`8esn` Ends With 0.12) In All(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`4esn`} Starts With $usn2 Starts With $1000) Ascending,Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Is Not Null Is Not Null Asc,{`2esn`} Ends With {`7esn`} Desc Return [`5esn`[{`4esn`}..`2esn`],Null Ends With {`5esn`} Ends With 0.e0,010[#usn7..True]] Contains [`3esn` In {7} Is Null Where {usn2}[.e0..$999]|Count ( * ) Contains `8esn` Contains .e1] Contains Reduce(``=@usn5 In {`7esn`} In `2esn`,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{_usn4}[1000..{@usn5}]) As `3esn`,{7}[$7..$``][{``}..{7}] As usn2,{1000}[{_usn3}..] As #usn7 Skip Shortestpath((_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})) Contains [`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 7 Starts With {@usn6} Starts With $``|.e12 Is Not Null Is Not Null] Limit $`6esn` Ends With Count(*) Return *,'s_str' Starts With 123.654 As usn1 Skip {0} In $_usn3 Limit {`3esn`} In 01 Union Merge _usn4=(({``:9e12[`1esn`..][$`1esn`..],#usn7:#usn8})<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]-({`7esn`:{999}})) On Create Set #usn7+=Count(*) In $12,`2esn`+=$usn2[9e0],[9e1[1000][{123456789}],$usn2[{@usn5}],0Xa Starts With {`6esn`} Starts With $usn1].usn1? =Reduce(`4esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|False[..``]) Is Null Is Null On Match Set ``(Distinct 0.12 =~`5esn` =~`5esn`,Null[``]).`1esn`! =12e12 Ends With {usn1},@usn5 =7 Ends With $`4esn`,_usn4 =Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End[..[9e1[1000][{123456789}],$_usn3[{#usn7}],`5esn` Starts With $`2esn` Starts With $1000]][..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0 In `2esn` In 010)] Create Shortestpath((((usn2 :`4esn`)-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[``? *..01{`1esn`:$@usn6 Contains 07}]-(:`3esn`:@usn5{#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})))),`1esn`=((usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``}));"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Using Periodic Commit Load Csv With Headers From {`4esn`:False,_usn4:$`7esn` Is Null Is Null}[..Reduce(`4esn`={`4esn`} Ends With {123456789} Ends With $`4esn`,`2esn` In `1esn` =~\"d_str\"|7[..123456789][..{@usn6}])][..None(`5esn` In \"d_str\" Is Null Is Null Where {``} Ends With `7esn` Ends With 0.0)] As `8esn` Fieldterminator 's_str' Match `7esn`=Allshortestpaths((({_usn3:$`5esn`[`3esn`..]})-[? *..07{`4esn`:@usn5 =~{`5esn`} =~`5esn`}]->(_usn3 :usn2{#usn7:{999} Starts With {0}}))) Using Scan _usn4:@usn6 Start `7esn`=Rel:`6esn`(\"d_str\") ,#usn7=Node:@usn6(`7esn`={`8esn`})Where {#usn7} Is Not Null Is Not Null"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Detach Delete Count(*) Contains $#usn7 Contains 1e1 Start `8esn`=Relationship:usn2('s_str') Union All Unwind `4esn`[`5esn`..12][@usn6..False] As #usn8 Start `2esn`=Node:`2esn`({1000}) Unwind `8esn` Is Not Null Is Not Null As `6esn`"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` With Distinct {#usn7}[`2esn`..],Filter(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0]) Ends With Case When {#usn8}[010] Then False =~$7 =~2.12 End,0.0 =~999 As `4esn` Detach Delete [0x0[{`7esn`}..][$usn2..],{`4esn`} =~{7} =~{`7esn`},usn1 In 7 In {123456789}] Is Null Is Null,Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`])[Case 00[{`8esn`}..][{`8esn`}..] When 0e0 Starts With 2.12 Starts With $12 Then Null[``] When 12e12 Ends With {usn1} Then $`2esn` Else 2.12['s_str'..$12][{`1esn`}..`2esn`] End..],1000 =~@usn6 =~0x0 Union Create (({`5esn`:$`8esn`[1000..0Xa]})-[:`8esn` *..01]->(`` {`3esn`:{12} Contains {123456789} Contains `4esn`}))"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Drop Constraint On(@usn5:`2esn`)Assert Exists((_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})<-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :`3esn`:@usn5)<-[? *..999]-(#usn8 :`5esn`{#usn8:0xabc[.e0]}).`7esn`?);"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Create Constraint On(``:#usn7)Assert (_usn3 :usn2{#usn7:{999} Starts With {0}})-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->(:``:#usn8{`7esn`:00 Starts With 0xabc,_usn3:{123456789} Contains $#usn8})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}).usn2! Is Unique;"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Detach Delete _usn4(0.e0 Starts With 12.e12 Starts With {_usn4},0X0123456789ABCDEF Is Null Is Null)[Case 's_str' In 00 When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null When $@usn5 Starts With {0} Starts With 12 Then {usn2} Else {#usn7}[`2esn`..] End..],(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]}) Is Not Null Is Not Null Merge ((`5esn` )-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(@usn6 {`3esn`:{``} Is Not Null})<-[`1esn` *0Xa{_usn3:Null Ends With `2esn` Ends With $usn1,#usn8:.e12 Is Not Null Is Not Null}]->(usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})) On Match Set `6esn`:`8esn`:`7esn` On Match Set `7esn`+=$1000 Is Not Null,`8esn`+=$_usn4 Is Not Null Is Not Null Foreach(_usn4 In {@usn6} Ends With 's_str' Ends With 12.0| Return `6esn`[2.12..01][{``}..False] As @usn5 Skip 1.0[$`1esn`..][$123456789..] Limit Allshortestpaths((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3))[{_usn3:01[{@usn5}]}..Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where True In 0e0)][Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0.12 In _usn3 In {0})..None(`3esn` In {7} Is Null Where 0Xa[2.12])] Delete Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With Reduce(`1esn`=0.12 Starts With $`5esn` Starts With 12,_usn3 In {`3esn`}[`2esn`]|$12[True..][{0}..]) Starts With Reduce(usn2=Null Ends With {`5esn`} Ends With 0.e0,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{`6esn`})) Union All With Distinct *,$`7esn`['s_str'] Limit Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) Is Not Null Is Not Null Where .e12 In 0.e0 In {12} Load Csv From #usn7[usn1][$`5esn`] As `6esn` Foreach(`2esn` In 123456789[_usn3]| Start _usn4=Node( {123456789}) ,`8esn`=Relationship:usn2('s_str')Where {_usn3}[12.e12]) Union All Create Unique `1esn`=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})<-[{`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}]->({`7esn`:7[{0}..{_usn4}]})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-({#usn8:0xabc[.e0]})))) Match `1esn`=(((_usn4 :#usn7)-[? *..07{`4esn`:@usn5 =~{`5esn`} =~`5esn`}]->(_usn3 :usn2{#usn7:{999} Starts With {0}})-[usn1?:`4esn` *..01]-({``:.e1 Is Null Is Null}))) Using Join On `1esn`,_usn3,_usn3 Using Scan ``:`7esn` Where {``} Is Not Null;"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Merge `4esn`=Shortestpath((:`3esn`:@usn5{`2esn`:{`3esn`}[..07][..{`5esn`}]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})) On Match Set #usn8:usn2,usn1 =Reduce(`2esn`=1e1 In 123.654 In `3esn`,`5esn` In \"d_str\" Is Null Is Null|$_usn3[{#usn7}]) Is Not Null,`6esn` =0.e0 Starts With `2esn` Return `` Is Not Null Is Not Null,$_usn3 Ends With 0x0 Ends With 12.0,$_usn3[.e0..$usn2] Order By Single(_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..])[..All(`` In `` Is Not Null Is Not Null Where {`7esn`} Is Null)] Ascending Limit {`4esn`} Ends With {123456789} Ends With $`4esn` Union Load Csv From `3esn`[{0}][usn1] As #usn7 Fieldterminator \"d_str\" Create ({`8esn`:`3esn`[{0}][usn1]})-[_usn4?:_usn4|:usn2 *00]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``})<-[ *0X7..]-(`2esn` {_usn3:`1esn` Contains {usn2} Contains $#usn8}),(#usn8 :@usn6:#usn8) Remove [0.12 =~$0 =~$0,2.12 Contains usn2 Contains True,2.12].`4esn`"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Create Constraint On(`2esn`:`8esn`)Assert Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`6esn`}|{7}[..1.0][..9e0])._usn4! Is Unique"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Create Unique (((`6esn` :@usn5)-[usn1?:_usn3|_usn3]-(usn2 :#usn7)<-[#usn8:@usn6|`6esn`{`8esn`:True[00][0Xa]}]->(`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]}))),Allshortestpaths((((:_usn4{usn2:0X0123456789ABCDEF[123456789]})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)))) Optional Match ({`3esn`:usn1 Is Null Is Null})-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]-({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`4esn` {@usn6:{12}[..0X7]}) Using Join On _usn3,@usn5 Union All Delete `7esn` In {123456789} In `1esn` Union Create Unique ({`3esn`:usn1 Is Null Is Null})-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]-({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`4esn` {@usn6:{12}[..0X7]}) Return Reduce(`7esn`=$`5esn` In $`` In 123.654,`` In 123456789 Ends With 12.e12 Ends With $`7esn`|{`7esn`} Is Null)[Reduce(_usn3=#usn8 Is Not Null,`` In 123456789 Ends With 12.e12 Ends With $`7esn`|1.0 Starts With 12e12 Starts With {`5esn`})] As `8esn`,$`8esn` Is Not Null Is Not Null As `1esn`,\"d_str\" Starts With $123456789 Order By `` Ends With $1000 Desc,Case {`8esn`} Ends With `6esn` When False Is Null Is Null Then 's_str' In 00 Else 123456789 Ends With $`6esn` Ends With $#usn7 End Starts With Case `1esn` =~0 =~$#usn7 When $#usn8[9e12..][.e1..] Then False =~$7 =~2.12 When {123456789}[9e12][{0}] Then 12.0 =~999 =~$_usn3 End Desc"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` With Distinct *,{``}[`8esn`..],Case {`3esn`}[@usn6..0Xa][{12}..0Xa] When {usn1}[0X0123456789ABCDEF] Then 0x0 Ends With $12 When 0e0 Starts With `2esn` Starts With $`` Then {123456789}[9e12][{0}] Else 0X7[1000..{`1esn`}] End[..({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})] As #usn7 Order By False Contains {`6esn`} Ascending,{`1esn`}[usn1][.e1] Asc Where `7esn`[..2.12][..{usn1}] Load Csv From 1000 In `7esn` In 9e12 As `3esn` Fieldterminator 's_str' Create Allshortestpaths((:`3esn`:@usn5{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`4esn` {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})),(({@usn5:{usn2}[.e0..$999]}))"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Return Distinct *,'s_str'[$_usn3..][Count ( * )..] As #usn7,{1000} =~$@usn6 =~12 Order By {_usn3:`4esn`[..Count ( * )][..{#usn7}]}[Any(_usn3 In {`3esn`}[`2esn`] Where 1e1 In \"d_str\" In `7esn`)..(:usn1{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[`2esn`:_usn4|:usn2]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[`6esn`{`6esn`:Count(*) Ends With 12.0 Ends With 12}]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})][Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7|123.654[{7}..])..Filter(`3esn` In {7} Is Null Where usn1 Is Null Is Null)] Asc Skip 0X7 In $#usn7 In 1.e1 Limit usn2(7[..999][..{#usn8}])[[$_usn4 Contains Null Contains #usn8,{#usn8}[{7}],{@usn6}[{999}..][00..]]..] Load Csv With Headers From usn2[{7}] As @usn6 Fieldterminator \"d_str\" Union Return *,1e1 Contains 0e0 Skip @usn6 Contains Null Contains $`7esn` Limit $0 Return Distinct $123456789 Ends With $999 Ends With {999},7[$`8esn`..123456789][$usn1..$usn1] As `5esn`,{#usn7}[`2esn`..] Order By #usn7 =~Count ( * ) =~`` Ascending,{123456789} Starts With 0.0 Starts With `5esn` Desc,12.e12 Starts With {999} Starts With {`1esn`} Desc Skip 1.0[0e0..0.e0] Limit `6esn`[12..$usn2][{#usn8}..{usn2}] Union All Optional Match _usn4=(_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :_usn3:_usn3{`7esn`:$`6esn`[123456789..12][True..{`3esn`}],`5esn`:0X0123456789ABCDEF[123456789]})-[?{usn1:0[`7esn`..]}]->(`2esn` :`6esn`) Using Join On @usn6,@usn6 Using Scan _usn4:usn1"), - octest_legacy:ct_string("Cypher Load Csv With Headers From [`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`]|`8esn` Contains $usn1 Contains $12][Filter(_usn3 In {`3esn`}[`2esn`] Where #usn7 Contains _usn3 Contains {`3esn`})..(:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})-[usn2?:`7esn` *123456789..{_usn4:$@usn5 Starts With {0} Starts With 12,`2esn`:{7}[..12e12][..Count ( * )]}]->({_usn3:False =~1e1 =~0.e0,_usn3:{999} Starts With $999})] As `5esn` Fieldterminator \"d_str\" Create Unique Shortestpath((_usn4 )<-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:usn2)<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})),@usn5=(((usn2 :`4esn`)-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[``? *..01{`1esn`:$@usn6 Contains 07}]-(:`3esn`:@usn5{#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}))) Foreach(`4esn` In 1000[0X7..2.12]| Remove ({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)._usn4?) Union Load Csv With Headers From 9e12[`6esn`..12.0] As @usn6 Union All Merge ``=Allshortestpaths(((:`3esn`:@usn5$7))) Detach Delete 123.654[$`1esn`];"), - octest_legacy:ct_string("Explain Drop Constraint On(`5esn`:`8esn`)Assert (usn1 )-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}).`4esn`! Is Unique;"), - octest_legacy:ct_string("Cypher Load Csv From 12[1.e1..{_usn3}][1.e1..1.0] As `8esn` Fieldterminator 's_str' Union Unwind 12.0 Ends With True Ends With 123456789 As _usn3;"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Create Constraint On(`1esn`:_usn3)Assert Exists(Extract(`3esn` In {7} Is Null Where 0.e0[123.654][01]|12e12 Is Not Null Is Not Null).#usn7)"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Drop Constraint On()-[`4esn`:usn1]->()Assert Exists(Reduce(usn1={usn1} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|False)._usn4!)"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Drop Constraint On()<-[_usn4:`4esn`]-()Assert Exists((@usn6 :`1esn`{#usn8:`4esn`[1.0],``:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn4?:_usn4|:usn2 *00]->(`` :`5esn`)._usn3)"), - octest_legacy:ct_string("Cypher Load Csv From `2esn`[..$#usn8][..Count(*)] As `6esn` Fieldterminator 's_str'"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Foreach(`4esn` In {`6esn`}| Create Unique `8esn`=(_usn4 :usn2{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]})) Create Unique (@usn6 :`1esn`)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``}),_usn3=(((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5))) Union With Distinct `5esn`[_usn4..],$123456789 In 0X0123456789ABCDEF In 0.e0 Where 7[True..][2.12..];"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Load Csv From Shortestpath((_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})) Contains [`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 7 Starts With {@usn6} Starts With $``|.e12 Is Not Null Is Not Null] As `2esn` Fieldterminator 's_str' Start #usn8=Rel:`7esn`(`6esn`={_usn4}) Foreach(#usn8 In $`8esn`| Remove Reduce(usn2=#usn7 Is Null Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{_usn3}[12.e12]).@usn6?,#usn8(Distinct $#usn7[@usn5..{1000}][1.e1..7]).#usn7!,Reduce(#usn7=usn1 Is Null,`8esn` In 01[2.12..`8esn`]|{_usn3}[..\"d_str\"][..`5esn`])._usn4? Remove `4esn`(Distinct usn1 Is Not Null).@usn5,Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where False Starts With {`5esn`}).#usn7,Reduce(`8esn`=123456789 Ends With 01234567 Ends With 1.e1,_usn3 In {`3esn`}[`2esn`]|0X7 =~9e1)._usn3!) Union All Unwind 010[#usn7..True] As _usn4 Delete $`8esn` In {`1esn`} In 12,Reduce(`4esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|False[..``]) Is Null Is Null,Reduce(`6esn`=@usn5 Is Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{12} Ends With 1.0 Ends With .e0)[Filter(_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null)..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`|`7esn`[..2.12][..00])] Union With Distinct .e12[..`7esn`][..0Xa],123.654 Is Not Null Is Not Null As `8esn`,All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Limit {7} In `2esn` Where 0e0 Contains Null Foreach(#usn8 In .e12 Ends With $`2esn` Ends With {``}| Start `3esn`=Node:@usn5({0}) ,`2esn`=Relationship:`3esn`(\"d_str\")) Merge (:`2esn`:usn1{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]})"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Create Constraint On()<-[usn2:`6esn`]-()Assert Exists((:_usn4{@usn6})-[`5esn`?:_usn4|:usn2{_usn4:{999}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[{`4esn`:{_usn3}[..$12][..0.12],`7esn`:1.0[0X7][{`5esn`}]}]-({`2esn`:{7} In `2esn`,`1esn`:`4esn`[1.0]})._usn3!);"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Drop Constraint On(``:`7esn`)Assert Extract(#usn8 In {`5esn`}[.e1..``]|$`6esn` Is Null)._usn4 Is Unique"), - octest_legacy:ct_string("Cypher Create Constraint On()-[`8esn`:`3esn`]-()Assert Exists({@usn5:$`3esn` Is Not Null}.`4esn`!)"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Drop Constraint On(`8esn`:#usn7)Assert Any(`3esn` In {7} Is Null Where usn1 Is Null Is Null).`4esn`? Is Unique"), - octest_legacy:ct_string("Explain Foreach(usn2 In @usn6 Ends With {_usn3}| Load Csv From {123456789}['s_str'] As #usn7 Fieldterminator 's_str' Create @usn6=Allshortestpaths(((:@usn6:#usn8{`4esn`:$`8esn`[..00]})<-[_usn4?:_usn4|:usn2 *00]->(:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))))"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Create Constraint On(usn1:`8esn`)Assert Exists(Case {_usn4} Is Not Null Is Not Null When {#usn8} Is Not Null Then $`8esn`[..00] When $#usn7[..{`5esn`}][..9e12] Then `7esn`[$0][9e12] End.@usn5?);"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Delete $`1esn` In $`7esn` In $`6esn`,1000[0X7..2.12] Merge `2esn`=(`2esn` :`3esn`:@usn5)<-[`3esn`:`6esn`|`5esn` *..12{usn1:0X0123456789ABCDEF Is Null Is Null}]-(:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[`7esn` *0X0123456789ABCDEF]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0}) On Create Set @usn5+=[$`5esn`[..$`5esn`][..$12],01[2.12..`8esn`],_usn3 Contains $123456789 Contains ``],None(`8esn` In 01[2.12..`8esn`] Where Count ( * ) Ends With $@usn5).`4esn` =Reduce(``={999},#usn8 In {`5esn`}[.e1..``]|$_usn3['s_str'][07])[..{`4esn`:0.0[$0][{@usn5}]}][..Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..])] On Match Set `1esn`+=usn1 Is Null Is Null,Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]).`5esn` =0X0123456789ABCDEF Is Null Is Null"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Create Constraint On(`6esn`:`1esn`)Assert Exists(Filter(#usn7 In {``} Is Not Null Where Count ( * ) =~$usn2 =~$usn2).usn1);"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Create Unique `5esn`=Shortestpath((((@usn5 :_usn4{#usn7:Null Ends With `2esn` Ends With $usn1,`5esn`:12.0})-[?:#usn7 *01234567..0Xa]->({``:$`8esn` =~{1000}})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})))) With Distinct $`3esn`[0.12..`8esn`][$#usn7..`5esn`],Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]) =~Reduce(usn1=.e1 Ends With 1e1 Ends With @usn5,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$#usn7[#usn7..]) =~`1esn`($1000 Is Null) As @usn6 Limit 7[$`4esn`][0x0] Where 7[$`2esn`..{`5esn`}] Union All Return {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]),Shortestpath((@usn5 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[:#usn8|`1esn`*{`8esn`:0Xa[usn2..]}]-(`3esn` :_usn3:_usn3{@usn5:False})) Ends With {@usn5:$12[Null..Count(*)][{`5esn`}..{999}],#usn7:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4]} Ends With Case {123456789}[0xabc..] When $0[..9e1] Then 0.e0 Ends With $#usn7 Ends With $7 End As _usn3 Skip Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where _usn4 Contains 2.12)[(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})..][#usn7(7 =~{`8esn`} =~$`6esn`,$123456789 Ends With {`1esn`} Ends With $`4esn`)..] Start #usn7=Rel:@usn6(`7esn`={`8esn`}) ,``=Node:`2esn`(usn2='s_str');"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Foreach(@usn5 In 1.0 Starts With 12e12 Starts With {`5esn`}| Optional Match `3esn`=((`1esn` {#usn7:{_usn4} In {12} In $0})-[{#usn8:$#usn8 =~{@usn5},`8esn`:0X0123456789ABCDEF[{_usn4}..00]}]-(_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})) Using Scan `3esn`:`8esn` Using Scan `6esn`:`2esn` Where {0}[01][`7esn`] Start #usn7=Node:@usn5(usn2='s_str') Where 9e1[2.12..{#usn8}]);"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Return $`5esn`[..$`5esn`][..$12] As `5esn`,Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn`,$`2esn` Is Null Is Null Order By Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains Extract(`5esn` In \"d_str\" Is Null Is Null Where Null Ends With `2esn` Ends With $usn1|$#usn7[@usn5..{1000}][1.e1..7]) Descending,Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) Is Not Null Is Not Null Asc,None(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {123456789}[0xabc..]) In (`4esn` {`6esn`:#usn8[..{#usn7}]})<-[_usn4 *..999]->({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[#usn8? *0..]->(#usn7 ) In Extract(`3esn` In {7} Is Null Where 1e1 Contains Count ( * )) Desc Limit $`7esn`[1.e1.._usn4][0Xa..`2esn`] Start @usn5=Node:#usn7({_usn3}) ,@usn6=Relationship:@usn6(`4esn`='s_str')Where {``} Is Not Null Union All Merge ``=((:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?:`5esn` *0..]->(usn2 :``:#usn8)<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})) On Match Set All(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`).`6esn`! =_usn4 Contains 2.12 On Match Set `1esn`+=Single(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}])[Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] Return *,123.654 Is Not Null,Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..] As `7esn` Skip Case When 1.0 =~'s_str' =~{`2esn`} Then $`5esn` In $`6esn` When {`7esn`}[..{`4esn`}] Then {usn1} Ends With $0 End[All(`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"])..[Count ( * )[0.12...e1],1.0[00..],$``]][`4esn`(`4esn` Ends With 07 Ends With {`3esn`})..Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `1esn` =~\"d_str\"|9e12 Is Not Null Is Not Null)] Limit Single(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}])[Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] Union All Create `6esn`=(`7esn` :`5esn`)<-[`5esn`:#usn7 *00{#usn7:{999} Starts With {0}}]-(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]}),`2esn`=(:`1esn`{``:.e1 Is Null Is Null})<-[#usn8?:usn1|@usn6]->(`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Create Constraint On()-[usn2:`7esn`]-()Assert Exists(Reduce(#usn7=1.0 Contains $_usn4,#usn7 In {``} Is Not Null|$`4esn`[9e12..123.654]).`5esn`?)"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Drop Constraint On(`2esn`:_usn4)Assert Exists(Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {123456789}[0xabc..]|{7}[$``][{@usn6}]).#usn7);"), - octest_legacy:ct_string("Cypher With Distinct *,07[$#usn7..{1000}],0X0123456789ABCDEF =~1e1 =~{`4esn`} Order By $`5esn`[2.12..] Asc Where @usn5 Is Null Create ((:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})),#usn7=((:`5esn`{``:1.0[0e0..0.e0]})) Union All Start @usn5=Rel:#usn8({_usn3}) Where $`6esn` Is Null Detach Delete ({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}),`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) In [#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]|@usn6 Contains $1000 Contains {`7esn`}] In Filter(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]),usn2[{7}] Create @usn5=Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})));"), - octest_legacy:ct_string("Cypher 12.999 Optional Match Allshortestpaths(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))),Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Using Join On `8esn`,`2esn` Where 0e0 In @usn5 Merge `6esn`=Allshortestpaths(((_usn3 :`3esn`:@usn5))) On Create Set Any(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12.0[123.654][Count(*)]).`4esn`? =(:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case When `6esn`[12..$usn2][{#usn8}..{usn2}] Then {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] When .e12[@usn5..#usn7][010..{usn1}] Then 0.12 =~$0 =~$0 End,`8esn` =All(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Contains (`5esn` :_usn4{`5esn`:07[..True][..9e12]})-[`8esn`?:`2esn`{@usn6:{12}[..0X7]}]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]})<-[_usn4{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00}) Contains [0.12[$`3esn`..$_usn3][12.0..usn1]],_usn4 =$#usn8 In 0Xa In `6esn` On Match Set `2esn`+=#usn7 Contains _usn3 Contains {`3esn`},Reduce(`8esn`={usn1} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|0xabc[.e0]).`3esn`! =$@usn5 Starts With 01 Starts With .e0 Union Foreach(`5esn` In 0.12 Contains 0X0123456789ABCDEF Contains .e0| Return None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})[Any(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")..Reduce(usn1=#usn7[usn1][$`5esn`],`3esn` In {7} Is Null|Count(*) Ends With 12.0 Ends With 12)][(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})..({usn1:`5esn`[_usn4..]})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})],@usn5 =~{`5esn`} =~`5esn` As _usn4,$123456789 In $#usn7 In `4esn` As `` Limit #usn7[010..False]) Load Csv From usn2 Is Not Null As @usn6 Fieldterminator \"d_str\" Load Csv From Shortestpath(((:`8esn`:`7esn`$#usn7)-[`5esn`:`8esn`]->(#usn8 {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]}))) In [_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..]|1.0 Is Null Is Null] In Case When Count ( * ) Contains 07 Then 123.654[$`1esn`] End As `3esn` Fieldterminator \"d_str\" Union All Start `3esn`=Relationship:_usn3(`8esn`={123456789}) ,#usn7=Node:@usn5('s_str') Unwind $`4esn` Starts With $`5esn` Starts With False As #usn8 Remove Extract(`5esn` In \"d_str\" Is Null Is Null Where 12.e12 Starts With {999} Starts With {`1esn`}).`5esn`,{_usn3:$@usn5 Starts With 01 Starts With .e0,@usn6:123456789[$@usn5..]}.usn2?,[#usn8 In 7[..999][..{#usn8}] Where `5esn`[{`4esn`}..`2esn`]|1.0[0X0123456789ABCDEF]].`7esn`?"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Merge Shortestpath(((#usn7 :``:#usn8{`2esn`})<-[usn1?:#usn8|`1esn`]->({@usn5:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],@usn6:$0})<-[@usn6?:`5esn`]-(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]}))) On Create Set _usn3+=1000[..$0][..True] Foreach(`3esn` In 's_str' In $usn1 In False| With Distinct Case #usn7 Starts With {#usn7} Starts With `7esn` When $#usn7 Is Null Then Count(*) Is Null Is Null End =~Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))) =~Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {_usn4}[...e1][..$7]),Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..],{123456789} Contains $#usn8 As `3esn` Order By {`4esn`}[$123456789..][$#usn7..] Ascending Skip Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[usn2?:`5esn` *0..]-({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:usn1|@usn6 *00]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})))[..{_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]}] Start `8esn`=Node:_usn4(`6esn`='s_str') ,_usn3=Rel:`6esn`(\"d_str\")Where Count(*) Is Null Is Null) Merge @usn6=((usn2 :@usn5)-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`4esn`{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})) On Match Set `6esn`+=$_usn4 Ends With usn1 Ends With $0,All(`5esn` In \"d_str\" Is Null Is Null Where 1000 In {`8esn`} In 01)._usn4 =Filter(`4esn` In $`3esn` Is Not Null Where {`6esn`}) =~{_usn3:{`3esn`} Is Not Null Is Not Null} On Match Set ``+={12} =~#usn8 Union All Return Distinct 9e0 Starts With 01 As `2esn`,`` Ends With 123456789 Ends With 123.654 As usn2,Count ( * ) Contains 07 Skip {`4esn`} =~{7} =~{`7esn`} Start `3esn`=Node:usn1(\"d_str\") Where Count ( * ) =~$usn2 =~$usn2 Union Match Allshortestpaths(((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(@usn5 :`4esn`)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]}))) Using Index `1esn`:@usn5(#usn8) Merge ``=(`1esn` {``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Start `8esn`=Rel:@usn6(`7esn`={`8esn`}) ,_usn4=Node( {`1esn`})Where 0[1.e1..12e12]"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Unwind [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}|{usn1} Is Null Is Null][Allshortestpaths(((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})))..] As `3esn` Start @usn6=Rel:``(_usn3='s_str') ,``=Node:_usn4(usn1={12}) Create (:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})-[`1esn`:_usn4|:usn2]-(`8esn` :`8esn`:`7esn`) Union Optional Match (((usn2 {``:01[{@usn5}]})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})-[`6esn`? *0..]-(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12}))) Using Scan usn2:`6esn` Using Join On #usn8 Where $_usn3[..1000] Create usn1=(((@usn5 :`8esn`:`7esn`{`6esn`:`7esn`[$0][9e12],`4esn`:.e1 Is Null Is Null})<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->(`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`))),(((usn2 :`4esn`)-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[``? *..01{`1esn`:$@usn6 Contains 07}]-(:`3esn`:@usn5{#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}))) Remove [{#usn7}[9e1..][{123456789}..]].usn1!,None(`2esn` In `1esn` =~\"d_str\" Where `` Ends With 123456789 Ends With 123.654).@usn6,All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8).`4esn` Union All Return Distinct {`4esn`:`7esn` Is Null}[{`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]}..] As #usn8 Order By 9e12[`1esn`..][$`1esn`..] Ascending,Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]] Ascending,9e1 Is Not Null Asc Match ``=Shortestpath(({`1esn`:`3esn`[{`2esn`}]})-[`3esn`?*{`8esn`:False Is Null Is Null}]->(:#usn7{_usn4:$`8esn` Contains 123456789 Contains $usn2})),usn2=Allshortestpaths(((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]}))) Using Join On #usn7,_usn4 Where $#usn8 Contains $`1esn` Contains {`6esn`};"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Detach Delete Shortestpath((((`7esn` {`5esn`:123.654 Contains $`4esn` Contains 1.0,`8esn`:123.654 =~$usn2 =~{999}})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[`2esn`?:`1esn` *00]->({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})))) In (usn2 :@usn5)-[?{`8esn`:{7} Is Null}]->(`` )<-[`3esn`?:`3esn`|:#usn8]-(`` :#usn8:#usn8) In (@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8}),Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`)[None(#usn8 In 7[..999][..{#usn8}] Where 0Xa[2.12])..][[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789]]..],$999 Delete $`8esn` In {`1esn`} In 12,Reduce(`4esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|False[..``]) Is Null Is Null,Reduce(`6esn`=@usn5 Is Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{12} Ends With 1.0 Ends With .e0)[Filter(_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null)..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`|`7esn`[..2.12][..00])] Union All Start `8esn`=Relationship:`4esn`(`1esn`={`2esn`}) With Distinct *,`1esn`(Distinct $1000[999]) =~Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) =~{`6esn`:'s_str'[00][{`5esn`}]},{_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] As `` Order By {0}[{`8esn`}..`4esn`] Desc,Case When Count ( * ) Contains 07 Then $`2esn` When 1.0 Is Null Is Null Then `7esn`[..2.12][..{usn1}] End Is Not Null Desc Limit $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Create Unique Allshortestpaths((:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 :usn1));"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Drop Constraint On(@usn6:_usn3)Assert Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6})._usn3! Is Unique;"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Create Constraint On(`2esn`:`2esn`)Assert Any(`8esn` In 01[2.12..`8esn`] Where {12}[..0X7]).@usn6 Is Unique;"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Drop Constraint On(`1esn`:``)Assert Exists(Allshortestpaths((:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 :usn1)).`2esn`);"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Create Constraint On(`1esn`:`2esn`)Assert (@usn6 :``:#usn8)-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->(:``:#usn8{`4esn`:{`4esn`}[$123456789..][$#usn7..]})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}).#usn8? Is Unique"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Drop Constraint On(usn2:`5esn`)Assert [{1000} =~0 =~123.654,\"d_str\" Starts With $123456789,$`2esn`[2.12..'s_str'][{@usn6}.._usn4]].`4esn`? Is Unique;"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Return *,Reduce(`2esn`=12[1.e1..{_usn3}][1.e1..1.0],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{#usn8}[010]) Is Not Null Is Not Null Skip Reduce(@usn6=0.e0 Ends With $#usn7 Ends With $7,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999})[[#usn8[`3esn`..][{#usn7}..]]..(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`8esn` :@usn6:#usn8)<-[{`8esn`:07 In `2esn` In 12e12}]->(:_usn4{`6esn`:{`6esn`} =~$999,`6esn`:$#usn7[..{`5esn`}][..9e12]})][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)..Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0e0 Starts With `2esn` Starts With $``)] Limit {`5esn`} =~`4esn` =~{_usn4} Foreach(`7esn` In {#usn8} Is Not Null| Start `1esn`=Rel:_usn4(``={#usn7}) ,`3esn`=Relationship:#usn7('s_str')Where 's_str'[00][{`5esn`}]) Detach Delete Shortestpath((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0}))[Single(`5esn` In $999[0.0..] Where usn2 Ends With 999 Ends With .e1)..],{0}[{`8esn`}..`4esn`],Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 1.0 =~7 =~{usn2}) Is Not Null Is Not Null Union All Foreach(`2esn` In 9e1[True]| Create Unique @usn6=((usn2 :@usn5)-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`4esn`{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})) Load Csv With Headers From 0e0[07] As _usn4 Fieldterminator 's_str') Unwind 0x0[{`7esn`}..][$usn2..] As `7esn` Union Remove Case When 1.0 Starts With 12e12 Starts With {`5esn`} Then {0} End.usn1!,Case When 1.0 Contains $_usn4 Then {999} Contains .e0 Contains 12.0 Else `5esn`[_usn4..] End.#usn8! Start _usn4=Node:`3esn`(`2esn`={usn1}) ,`6esn`=Node:``('s_str') Unwind 999 In {`3esn`} In usn2 As `6esn`;"), - octest_legacy:ct_string("Cypher Drop Constraint On(usn1:@usn6)Assert Exists((`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[`6esn`?:#usn7]->(`2esn` )<-[`7esn`?:@usn5{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]}]-(`` :@usn6:#usn8{`8esn`:'s_str' In 00}).`7esn`);"), - octest_legacy:ct_string("Cypher Drop Constraint On(`3esn`:@usn5)Assert (:_usn4{@usn6})<-[`4esn`?:_usn4|:usn2{_usn4:$usn2[{@usn5}],`2esn`:usn1[`5esn`..$7]}]->({``:$`8esn` =~{1000}})<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(:``:#usn8{usn1:{`6esn`}}).`1esn` Is Unique"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Create Constraint On()<-[`7esn`:`2esn`]-()Assert Exists({`8esn`:{_usn4} Ends With `6esn`,``:{1000}[{_usn3}..]}.#usn7?)"), - octest_legacy:ct_string("Cypher 12.999 Create Unique `6esn`=(({``})<-[`5esn`{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(usn2 {#usn7:2.12 =~Count(*),_usn4:$usn2[9e0]})),`1esn`=((:usn2{#usn8:$`5esn` In $`6esn`})<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})) Return Distinct (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As ``,12[..$`4esn`] As `7esn` Order By 01234567[usn2..$12][{`7esn`}..$usn2] Asc Skip .e12[..`7esn`][..0Xa];"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Using Periodic Commit Load Csv From Allshortestpaths((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3))[Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})))] As `3esn` Unwind 12.0 Ends With {``} As _usn4 With Distinct *,None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As `5esn`,Null[{#usn7}..][0X0123456789ABCDEF..] Where $999;"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Drop Constraint On(#usn8:`3esn`)Assert Exists({`6esn`:$usn1 Ends With $`` Ends With $12}._usn4?)"), - octest_legacy:ct_string("Explain Drop Constraint On(``:usn1)Assert Exists((`3esn` :`7esn`:_usn3)-[`7esn` *0X0123456789ABCDEF]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})<-[#usn8?:#usn7{`1esn`:#usn7 =~Count ( * ) =~``,usn2:`` Ends With $1000}]->(:@usn6:#usn8{`4esn`:$`8esn`[..00]}).`4esn`)"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Load Csv From .e0 Starts With 0 Starts With 0.e0 As _usn3 Fieldterminator 's_str' Optional Match ``=Shortestpath((`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})),Allshortestpaths(((:_usn4))) Remove Case {_usn4} Is Not Null Is Not Null When {#usn8} Is Not Null Then $`8esn`[..00] When $#usn7[..{`5esn`}][..9e12] Then `7esn`[$0][9e12] End.`5esn` Union All Foreach(`2esn` In [`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]][Case 1.0 In Count(*) When $_usn4[Count ( * )..] Then Null[``] When $1000[`2esn`..`5esn`][1e1..1.e1] Then .e12[@usn5..#usn7][010..{usn1}] Else 1.0[$`1esn`..][$123456789..] End][All(`4esn` In $`3esn` Is Not Null Where usn2 Is Not Null Is Not Null)]| Detach Delete $usn1[_usn4],.e1[..usn2][..`8esn`],$123456789 Ends With `3esn` Ends With 123456789 Load Csv From {``} Starts With $`2esn` Starts With `1esn` As `` ) Delete {`3esn`} In 01,.e1 In 0,Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]] Union Return #usn7 As `8esn`,0.12[..False][..{1000}] Order By Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`])[Case 00[{`8esn`}..][{`8esn`}..] When 0e0 Starts With 2.12 Starts With $12 Then Null[``] When 12e12 Ends With {usn1} Then $`2esn` Else 2.12['s_str'..$12][{`1esn`}..`2esn`] End..] Desc,[{@usn6} Ends With 's_str' Ends With 12.0,{12} Contains {123456789} Contains `4esn`] Starts With Filter(_usn3 In {`3esn`}[`2esn`] Where {1000} =~0 =~123.654) Starts With Case When Count ( * )[0.12...e1] Then $@usn5 =~1000 =~1000 When Null Ends With `2esn` Ends With $usn1 Then $usn2[{@usn5}] End Ascending,{12}[{7}][$123456789] Asc Skip `7esn` Ends With 0x0;"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Load Csv With Headers From .e0[..$`8esn`] As `7esn` Fieldterminator \"d_str\" Union All Remove (:usn1{_usn3:{#usn7}[`2esn`..]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(#usn7 ).`2esn`,Case `5esn` Starts With $`2esn` Starts With $1000 When 123.654 =~$usn2 =~{999} Then Count ( * ) Contains `8esn` Contains .e1 End._usn3!,exists($12[$1000..123456789],123456789[0xabc..'s_str'][``..`1esn`]).@usn5 Return {#usn8} Starts With 00 Starts With {`6esn`} As ``,7[{0}..{_usn4}] As #usn8,`4esn`[$999..{`1esn`}][{@usn6}.._usn3] Order By `8esn` Is Not Null Is Not Null Desc Limit {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Create usn2=Shortestpath((usn2 :#usn7)) Union All Return Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7) Contains Filter(`` In `` Is Not Null Is Not Null Where 0e0 Starts With 1000 Starts With #usn7) Contains Shortestpath((($#usn8)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]}))) As #usn7 Order By 2.12 =~Count(*) Descending,`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) Contains Reduce(`7esn`=$_usn4 Ends With usn1 Ends With $0,`4esn` In $`3esn` Is Not Null|`7esn` In {123456789} In `1esn`) Asc;"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Foreach(`7esn` In Case 's_str' In 00 When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null When $@usn5 Starts With {0} Starts With 12 Then {usn2} Else {#usn7}[`2esn`..] End| Create `8esn`=Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))),#usn8=(:`2esn`:usn1)-[`1esn`:@usn6|`6esn`*..{`7esn`:7[{0}..{_usn4}]}]->(`8esn` {_usn4:`4esn`[1.0],`5esn`:0e0 Ends With 1.e1 Ends With $`4esn`})-[:@usn5{@usn5:{#usn7}[9e1..][{123456789}..],``:#usn7 Is Not Null Is Not Null}]->(`4esn` :`6esn`{_usn3:$123456789 Ends With `3esn` Ends With 123456789,`6esn`:0e0 Starts With 2.12 Starts With $12})) Merge Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))) Union All Start usn1=Rel:@usn6(#usn7='s_str') ,``=Node:@usn6({_usn4}) Union All Load Csv From None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`]) Is Not Null As `2esn` ;"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Create Constraint On()-[_usn3:`2esn`]->()Assert Exists([#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|False].`8esn`?);"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Drop Constraint On()<-[``:usn2]-()Assert Exists(Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {@usn6}[7]|$_usn3[.e0..$usn2]).#usn7);"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Drop Constraint On(`4esn`:`6esn`)Assert Exists(({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})-[:#usn8|`1esn` *..01{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}]->(`1esn` {@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}).@usn6!);"), - octest_legacy:ct_string("Cypher Create Constraint On()-[@usn6:#usn8]->()Assert Exists([@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Starts With $1000|$usn2[{@usn5}]].@usn6!)"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Unwind 's_str' =~$`7esn` As `4esn` Unwind [_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|`` Is Not Null Is Not Null] Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where {_usn3}[..\"d_str\"][..`5esn`]) Ends With Filter(`3esn` In {7} Is Null Where {123456789} Contains $#usn8) As _usn3 Union All Load Csv From All(#usn8 In 7[..999][..{#usn8}] Where $_usn4[1.e1]['s_str']) Starts With 123456789 As usn2 Load Csv From {usn1} In 2.12 In 1000 As _usn4 Foreach(#usn8 In False[$usn1.._usn4][_usn4..{`3esn`}]| Create `3esn`=({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})<-[usn2?:@usn5{`4esn`:{`7esn`} Is Null,_usn4:$123456789 Ends With {`1esn`} Ends With $`4esn`}]->(`6esn` {`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null})-[usn1? *0X0123456789ABCDEF]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}),Allshortestpaths((((@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:_usn3|_usn3 *01234567..0Xa{@usn5:123.654[True..$#usn8][0.12..Count(*)]}]-(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})<-[?:#usn7 *01234567..0Xa]-(@usn6 {#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12})))));"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Merge (`` :@usn5{`1esn`:2.12 Contains usn2 Contains True}) Match ({`5esn`:\"d_str\" Starts With 01})-[_usn3:@usn5 *7..12{`2esn`:12.0 =~999 =~$_usn3}]->(`3esn` {usn1:$0[..9e1],@usn5:`7esn`[..{usn1}]}) Using Scan @usn5:_usn4"), - octest_legacy:ct_string("Cypher With (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As ``,12[..$`4esn`] As `7esn` Skip Allshortestpaths((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3))[Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})))] Where 0.12 =~$0 =~$0 Union All Merge `7esn`=((`7esn` :``:#usn8)) On Create Set _usn3:`7esn`:_usn3,`8esn` ={1000}[$999...e12][`7esn`..'s_str'] On Create Set Case When $`1esn`[{`2esn`}..] Then .e1 =~$`8esn` End.`7esn`? =All(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0[{usn2}..][$`6esn`..])[[{0}[12.0..0Xa][$`5esn`..{_usn3}],$`6esn`[12],.e12[@usn5..#usn7][010..{usn1}]]..],`3esn` =$`2esn` Is Null Is Null With [1.0 =~'s_str' =~{`2esn`}] Contains [9e1[2.12],{usn2}[$`3esn`..][{#usn7}..],Null Ends With {`5esn`} Ends With 0.e0] Contains `5esn` As `8esn`,[`` Ends With 0Xa Ends With `2esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},{`4esn`} =~{7} =~{`7esn`}] As @usn6 Skip {7}[$`5esn`][{_usn3}] Where {7}[..1.0][..9e0] Union Remove @usn6:usn2 Start `6esn`=Relationship:usn2(#usn8=\"d_str\") ,`7esn`=Rel:#usn8({_usn3})"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Drop Constraint On(#usn7:usn1)Assert usn1(Distinct $123456789 Ends With `3esn` Ends With 123456789,`5esn`[7][{usn2}]).`2esn` Is Unique;"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Drop Constraint On(`8esn`:#usn8)Assert Exists((`7esn` {`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})._usn4);"), - octest_legacy:ct_string("Cypher Foreach(`3esn` In {`7esn`}[`6esn`][#usn7]| With Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where @usn6 Is Null Is Null)[(`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})..] As `3esn`,{`3esn`} In 0X7 Skip `1esn` In .e0 In {`3esn`} Limit Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End Create Unique #usn7=((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})),Shortestpath((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))))) Start #usn7=Node:`6esn`(`3esn`=\"d_str\") ,`7esn`=Node:``(@usn6={usn1})Where 9e12 Is Not Null Is Not Null Return Distinct 9e1[True] As _usn3 Order By Count ( * ) =~$usn2 =~$usn2 Descending Limit $@usn6 Is Not Null Union All Create Unique Shortestpath((({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`4esn`:`8esn` *00]->(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]->(`6esn` :`4esn`{#usn8:@usn6[$`3esn`..{`3esn`}],`3esn`:usn2[{7}]}))) Union All Foreach(`2esn` In [`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]][Case 1.0 In Count(*) When $_usn4[Count ( * )..] Then Null[``] When $1000[`2esn`..`5esn`][1e1..1.e1] Then .e12[@usn5..#usn7][010..{usn1}] Else 1.0[$`1esn`..][$123456789..] End][All(`4esn` In $`3esn` Is Not Null Where usn2 Is Not Null Is Not Null)]| Detach Delete $usn1[_usn4],.e1[..usn2][..`8esn`],$123456789 Ends With `3esn` Ends With 123456789 Load Csv From {``} Starts With $`2esn` Starts With `1esn` As `` ) Delete {`3esn`} In 01,.e1 In 0,Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]];"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Merge #usn8=Shortestpath((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[_usn3? *0X7..]-(:`5esn`{`2esn`:`4esn`[1.0]})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})) On Match Set usn2+=Case {#usn7}[9e1..][{123456789}..] When $0 Ends With 12.0 Then $`` Is Not Null When $usn1 In {999} In $#usn7 Then 1000[Null..{123456789}] Else 1.0 =~'s_str' =~{`2esn`} End[{@usn5:.e0[..$`8esn`],`4esn`:{usn2} =~12}..Any(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``)] With #usn8 In $@usn6,1.e1[`8esn`][00] Skip 01 Ends With 999 Ends With {`7esn`} Where 123456789 Ends With $`6esn` Ends With $#usn7;"), - octest_legacy:ct_string("Cypher Load Csv From All(#usn7 In {``} Is Not Null Where .e0 Starts With $`` Starts With $usn2)[..``(`8esn`[`4esn`..{#usn8}][$12..2.12],{0} In _usn4)] As `6esn` Foreach(`8esn` In 12.e12[``][{`2esn`}]| Unwind 1e1[1.e1..7][{12}...e12] As #usn8 Remove Reduce(`4esn`=12.e12[$_usn3..],`2esn` In `1esn` =~\"d_str\"|0x0[`4esn`..'s_str']).#usn8!,Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn2[{7}]|.e1 Ends With 1e1 Ends With @usn5).`8esn`?) Union All Start usn1=Relationship:`8esn`(#usn8={`2esn`}) ,`7esn`=Node:`6esn`({_usn3}) Unwind 12e12 Ends With `5esn` Ends With {@usn6} As `3esn` Remove ({#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]})<-[?:_usn3|_usn3{`3esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],#usn8:False Starts With {`5esn`}}]-(usn2 :`5esn`{`7esn`:01234567 Is Null Is Null})-[_usn4:#usn8|`1esn`{`6esn`:#usn8[..{#usn7}]}]->(@usn6 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})._usn3?,Any(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}]).`6esn`! Union Detach Delete 12[..$`4esn`]"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Create Constraint On(`6esn`:#usn7)Assert {@usn5:{usn1}[0X0123456789ABCDEF],_usn4:usn2[$7..$123456789][$@usn6..$7]}._usn3 Is Unique;"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Drop Constraint On()<-[_usn4:@usn6]-()Assert Exists(Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`).`1esn`)"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Drop Constraint On(``:`5esn`)Assert [`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`4esn`} Starts With $usn2 Starts With $1000|123456789 Is Null].usn2? Is Unique"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Create Constraint On(`6esn`:#usn8)Assert Exists(Reduce(usn1=01 Contains {`8esn`} Contains 2.12,`5esn` In $999[0.0..]|0x0[`4esn`..'s_str']).`2esn`);"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Return Distinct 12.e12 Is Null Is Null As `6esn`,01 Is Null As `2esn`,$12 =~$_usn3 As #usn8 Skip Filter(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]) Ends With Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``]) Ends With Case $`7esn` Is Null Is Null When {#usn7}[9e1..][{123456789}..] Then False =~1e1 =~0.e0 Else 1000 In {`8esn`} In 01 End Limit $999 Is Not Null Create (`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]->(usn2 :`6esn`{#usn7:Count ( * ) Contains 07})<-[`4esn`?{`3esn`:\"d_str\" Is Null Is Null,usn1:0X0123456789ABCDEF[123456789]}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]}),`2esn`=(@usn5 :usn1) Create Allshortestpaths((:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 :usn1)) Union Create `4esn`=((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})),`1esn`=((({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})<-[`4esn`?:usn2|`` *0X7..]->(_usn3 :@usn5)<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8})))"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Create Unique Shortestpath(((({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(:`6esn`$123456789)))),@usn6=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7)) Union All Create Unique usn1=Allshortestpaths((#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(usn2 {``:01[{@usn5}]})),Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[`3esn`? *123456789..]->({_usn3:$`5esn`[`3esn`..]}))) Return Distinct Case #usn7 Starts With {#usn7} Starts With `7esn` When $#usn7 Is Null Then Count(*) Is Null Is Null End =~Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))) =~Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {_usn4}[...e1][..$7]),Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..],{123456789} Contains $#usn8 As `3esn` Order By {`4esn`}[$123456789..][$#usn7..] Ascending Skip Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[usn2?:`5esn` *0..]-({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:usn1|@usn6 *00]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})))[..{_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]}];"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Merge usn1=Shortestpath(((`7esn` {`4esn`:{usn1} Ends With $0})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2})-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]-(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null}))) On Create Set (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(:usn2{usn2:7[..999][..{#usn8}]}).`3esn` ={_usn4:Count ( * )[True..][{#usn7}..],``:{``} Ends With `7esn` Ends With 0.0} In (usn2 {``:01[{@usn5}]})<-[?:_usn4|:usn2{`8esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],``:_usn3 Contains $123456789 Contains ``}]->(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(:_usn4{_usn4:{7} In `2esn`}) In {`4esn`:`7esn` Is Null} Return {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]),Shortestpath((@usn5 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[:#usn8|`1esn`*{`8esn`:0Xa[usn2..]}]-(`3esn` :_usn3:_usn3{@usn5:False})) Ends With {@usn5:$12[Null..Count(*)][{`5esn`}..{999}],#usn7:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4]} Ends With Case {123456789}[0xabc..] When $0[..9e1] Then 0.e0 Ends With $#usn7 Ends With $7 End As _usn3 Skip Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where _usn4 Contains 2.12)[(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})..][#usn7(7 =~{`8esn`} =~$`6esn`,$123456789 Ends With {`1esn`} Ends With $`4esn`)..] Union All Start `2esn`=Node:``({`1esn`}) "), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Create Constraint On(usn1:#usn8)Assert Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn1[9e12..][$7..]).usn2? Is Unique;"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 With Distinct .e1 =~$usn2 =~999 As `2esn`,Allshortestpaths(((`7esn` {`2esn`:$`6esn`[123456789..12][True..{`3esn`}],#usn7:$_usn3[Count(*)]})-[#usn8? *..07$_usn4]->(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}))) Is Not Null Is Not Null As `8esn` Skip Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where `5esn` Starts With $`2esn` Starts With $1000) Ends With Reduce(``=0.12 =~$0 =~$0,`2esn` In `1esn` =~\"d_str\"|9e12[`1esn`..][$`1esn`..]) Limit 9e0 Starts With 01 Where 's_str'[00][{`5esn`}] Union Delete 7[..999][..{#usn8}],`1esn`[{usn1}..``][7..$#usn8] Unwind Case When {_usn4} Starts With 0.e0 Starts With 0x0 Then 12 Ends With 0x0 Ends With 0.e0 Else $1000 Is Null Is Null End Starts With `7esn`(Distinct $#usn7[..{`5esn`}][..9e12]) Starts With {`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`} As usn1 Union All Return *,Case When False Then 0.e0 Ends With $#usn7 Ends With $7 When {@usn6}[{999}..][00..] Then `5esn` Ends With {``} Ends With 12.e12 Else 123.654[$`1esn`] End[Reduce(#usn8=$`6esn` Ends With Count(*),`2esn` In `1esn` =~\"d_str\"|_usn4 Contains 2.12)..] As _usn3 Order By $12[Null..Count(*)][{`5esn`}..{999}] Desc,12.e12[7..$`6esn`] Desc Skip {`4esn`} Ends With {123456789} Ends With $`4esn` Create usn2=Allshortestpaths(((:@usn6:#usn8{`4esn`:$`8esn`[..00]})<-[_usn4?:_usn4|:usn2 *00]->(:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))),#usn8=(((`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})-[@usn5]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})));"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Match (((#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})<-[`2esn`?:`7esn` *0X7..]-(_usn4 :usn2{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}))),#usn7=Shortestpath((:`8esn`:`7esn`)) Using Scan `6esn`:`3esn`"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Create Constraint On(`7esn`:`2esn`)Assert (:`6esn`{#usn8:{`3esn`}[@usn6..0Xa][{12}..0Xa],@usn5:False Is Null Is Null})-[?:`5esn`]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}).`2esn` Is Unique;"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Create Constraint On()-[`5esn`:usn2]-()Assert Exists((`2esn` :usn1)-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}).usn2!);"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Drop Constraint On()-[`7esn`:`6esn`]-()Assert Exists(Allshortestpaths(({`1esn`:`3esn`[{`2esn`}]})-[`3esn`?*{`8esn`:False Is Null Is Null}]->(:#usn7{_usn4:$`8esn` Contains 123456789 Contains $usn2})).usn1?)"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Drop Constraint On()-[`7esn`:@usn6]-()Assert Exists([{12}[..0X7]].#usn8)"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Drop Constraint On(`5esn`:_usn4)Assert Exists(Case When .e12 Ends With _usn4 Then True[..$`6esn`] When 123.654[0e0..$``][$`1esn`..$`8esn`] Then {`1esn`}[usn1][.e1] Else {#usn7} Is Not Null Is Not Null End.`7esn`);"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Drop Constraint On()-[`3esn`:`5esn`]->()Assert Exists(Case usn1 Ends With $@usn6 Ends With `3esn` When $`7esn`['s_str'] Then 0X0123456789ABCDEF =~1e1 =~{`4esn`} When Null Ends With `2esn` Ends With $usn1 Then {#usn7}[9e1..][{123456789}..] Else {_usn3}[12.e12] End.`6esn`);"), - octest_legacy:ct_string("Explain Drop Constraint On()-[#usn7:`3esn`]->()Assert Exists((`8esn` :#usn8:#usn8{`3esn`:$`4esn`[9e12..123.654]})<-[`2esn` *0Xa{#usn8:1.0[0e0..0.e0]}]-(_usn4 {``:1.0[0e0..0.e0]}).`3esn`?);"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Create Constraint On(_usn3:@usn5)Assert Reduce(`7esn`={12} =~#usn8,#usn7 In {``} Is Not Null|1.e1[$`1esn`..@usn6][$0..$_usn3]).`5esn` Is Unique;"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Create Constraint On(``:`2esn`)Assert Exists(Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where $usn1[{`5esn`}][$`6esn`]|`5esn`[7][{usn2}]).`1esn`?);"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Return {7}[$``][{@usn6}] As `2esn` Order By {`4esn`:{`4esn`} =~{7} =~{`7esn`},`8esn`:$#usn7[#usn7..]} Is Null Is Null Desc,{123456789}[9e12][{0}] Ascending,$_usn3['s_str'][07] Ascending Skip [usn2[$_usn4..][True..],1.0 In Count(*)] =~Any(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12.0[123.654][Count(*)]) =~Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where usn2 Is Not Null Is Not Null) Create (({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})),Shortestpath(((`` :@usn6:#usn8{`8esn`:'s_str' In 00})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-({#usn8:0xabc[.e0]}))) Return {usn2:0X0123456789ABCDEF[123456789]}[[0e0 Starts With 1000 Starts With #usn7,True =~010,$usn2[{@usn5}]]..],1000[..$0][..True],[$0] In [`2esn` In `1esn` =~\"d_str\" Where {0} Ends With $_usn3 Ends With $`7esn`|{999} Contains .e0 Contains 12.0] In None(`2esn` In `1esn` =~\"d_str\" Where {`7esn`}[..$@usn5][..$#usn8]) As usn1 Limit $#usn8[Count ( * )] Union All Merge usn2=((@usn6 :_usn4)) With Distinct #usn8 In $@usn6,1.e1[`8esn`][00] Where 0.e0 Starts With `2esn` Return *,({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}),`1esn`[..{`2esn`}][..$_usn4] As #usn7 Order By [Count(*) Ends With 12.0 Ends With 12,9e0[{0}..{`3esn`}][\"d_str\"..0Xa]][..Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``])][..{usn1:$_usn3[..1000],`7esn`:{1000} =~0 =~123.654}] Asc,count(`1esn` Contains {usn2} Contains $#usn8) Contains [`5esn`[7][{usn2}],@usn5 Is Null] Descending,(:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8)[Reduce(`7esn`=7[$`2esn`..{`5esn`}],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$_usn4[0e0..][False..])..({``:00 Starts With 0xabc,`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})][{}..{@usn6:`4esn`[..010][..{12}]}] Descending Skip [@usn6 Contains Null Contains $`7esn`,{`4esn`} Starts With $usn2 Starts With $1000] Ends With Any(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $_usn4[0e0..][False..]) Ends With (`1esn` :`2esn`:usn1)-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(`1esn` :_usn3:_usn3{#usn7:$@usn5 Is Not Null Is Not Null}) Limit .e12[..`7esn`][..0Xa];"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Using Periodic Commit Load Csv From usn2(7[..999][..{#usn8}])[[$_usn4 Contains Null Contains #usn8,{#usn8}[{7}],{@usn6}[{999}..][00..]]..] As `7esn` Start `5esn`=Relationship:usn1({999}) ,usn1=Relationship:_usn3(`8esn`={123456789});"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Create Constraint On(@usn6:`6esn`)Assert Exists([`3esn` In {7} Is Null Where usn1 Is Null Is Null].`8esn`!)"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Drop Constraint On(usn2:`4esn`)Assert Exists(None(`4esn` In $`3esn` Is Not Null Where `2esn`[..$#usn8][..Count(*)]).`3esn`)"), - octest_legacy:ct_string("Cypher Create Constraint On(@usn5:`3esn`)Assert Exists(Filter(`2esn` In `1esn` =~\"d_str\" Where 0.12 In _usn3 In {0})._usn3!)"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Drop Constraint On(`3esn`:``)Assert Exists(({`1esn`:$`8esn`[1000..0Xa]})-[:`8esn` *0..{_usn3:`4esn` Ends With 07 Ends With {`3esn`}}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null}).`8esn`?);"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Drop Constraint On(`5esn`:usn2)Assert Exists(None(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12])._usn3);"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Return *,Shortestpath(((({#usn7:2.12 Contains usn2 Contains True})-[_usn3?:`6esn`|`5esn` *0X0123456789ABCDEF]-(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}))))[Case When $999[0.0..] Then 12 Ends With 0x0 Ends With 0.e0 When `` Is Not Null Is Not Null Then {`3esn`}[..07][..{`5esn`}] End..[`3esn` In {7} Is Null Where usn1 Is Null Is Null]],$`3esn`[0.12..`8esn`][$#usn7..`5esn`] As `` Order By 123456789[_usn4..][{999}..] Ascending,All(`3esn` In {7} Is Null Where Count ( * ) Contains 07) Is Null Is Null Ascending Delete [@usn6 Contains Null Contains $`7esn`,{`4esn`} Starts With $usn2 Starts With $1000] Ends With Any(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $_usn4[0e0..][False..]) Ends With (`1esn` :`2esn`:usn1)-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(`1esn` :_usn3:_usn3{#usn7:$@usn5 Is Not Null Is Not Null}) Load Csv From ({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}) As #usn8 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Using Periodic Commit Load Csv With Headers From usn2 Ends With 999 Ends With .e1 As `2esn` Fieldterminator 's_str' Merge Shortestpath((`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[:`3esn`|:#usn8 *7..12{@usn5:_usn4 Starts With $_usn4 Starts With 12.e12}]->(`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}))"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Start ``=Node:`1esn`(@usn5='s_str') ,``=Node:@usn6({_usn4})Where $`8esn`[$`6esn`..$`4esn`][0.12.._usn3] Union All Detach Delete $#usn7 Is Not Null Merge ({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`) On Match Set _usn3+={_usn3}[12.e12],`3esn`+=@usn5 =~{`5esn`} =~`5esn`,#usn8 =[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*));"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Start ``=Node:@usn5({0}) ,`7esn`=Rel:`4esn`(`2esn`=\"d_str\")Where `3esn`[`3esn`..][#usn8..] Merge _usn3=((:`2esn`:usn1)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`}))"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Optional Match Shortestpath((({`5esn`:$#usn8 Ends With $`2esn` Ends With $@usn6})<-[`4esn`?:usn2|`` *0X7..]->({_usn3:$`5esn`[`3esn`..]})-[@usn5?:`4esn`]-(:usn1{usn1:{`6esn`}}))) Create Unique @usn5=((`5esn` {`8esn`:1000[Null..{123456789}]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})-[:@usn6|`6esn`{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}]->(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})),`4esn`=Allshortestpaths(((:`2esn`:usn1)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})))"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Drop Constraint On(_usn3:@usn5)Assert Case When 0X7[1000..{`1esn`}] Then Count(*) Ends With 12.0 Ends With 12 End.@usn6! Is Unique;"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Start usn1=Node:`3esn`(`2esn`={usn1}) ,@usn5=Relationship:`6esn`(`8esn`='s_str') Merge ``=((:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?:`5esn` *0..]->(usn2 :``:#usn8)<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})) On Match Set All(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`).`6esn`! =_usn4 Contains 2.12 On Match Set `1esn`+=Single(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}])[Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] Union Unwind `7esn`[..{usn1}] As `4esn` Create Unique @usn5=Allshortestpaths((:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})-[:#usn7 *..010]->(#usn8 :usn1)),`4esn`=Allshortestpaths((({usn1:`5esn`[_usn4..]})-[usn1?:_usn3|_usn3]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))) Merge Shortestpath(((`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}))) Union Start _usn3=Node:`6esn`('s_str') With Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`3esn`} In 01)[Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12e12 Contains 0Xa|Null[$#usn7])..Allshortestpaths(((`` {`3esn`:{12} Contains {123456789} Contains `4esn`})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})))][Reduce(`6esn`=7[..123456789][..{@usn6}],`5esn` In \"d_str\" Is Null Is Null|$_usn4 Is Not Null Is Not Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] As _usn4,Allshortestpaths((:@usn5{_usn3:07 =~01})) Starts With [`3esn` In {7} Is Null Where {`4esn`} =~{7} =~{`7esn`}] Starts With ({`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}})<-[`6esn`?:_usn4|:usn2]-(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}) Skip 7 Ends With (@usn5 {`7esn`:$`6esn`[010..]})-[:`8esn` *..01]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]}) Ends With #usn8(False =~$7 =~2.12) Where $_usn4 Starts With 1e1"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Return Distinct `5esn`(Distinct `2esn` Is Null,123456789[{123456789}..'s_str'])[.._usn3(.e0[..$`8esn`])][..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}] Skip [`5esn` In $999[0.0..] Where `5esn` Starts With `3esn`|12e12 Is Not Null Is Not Null]"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Using Periodic Commit Load Csv From {``}[...e12] As `1esn` Fieldterminator \"d_str\" Delete [`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\"] Is Null"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Remove Extract(#usn7 In {``} Is Not Null Where True[..$`6esn`]|{``} Is Null).`8esn`!,Case $123456789 Ends With {`1esn`} Ends With $`4esn` When {1000}[$`4esn`][\"d_str\"] Then usn1 Ends With $@usn6 Ends With `3esn` When $#usn7[..{`5esn`}][..9e12] Then {usn2}[$`3esn`..][{#usn7}..] Else Null[{#usn7}..][0X0123456789ABCDEF..] End.@usn6!,Reduce(@usn5=$12[$1000..123456789],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|`4esn` Is Not Null Is Not Null).`5esn` Remove #usn8(Distinct $`4esn`[Null..],2.12 =~False).@usn5,[$`3esn` In $_usn4 In {_usn3},{1000} =~0 =~123.654].`3esn` With Distinct *,`1esn`(Distinct $1000[999]) =~Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) =~{`6esn`:'s_str'[00][{`5esn`}]},{_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] As `` Order By {0}[{`8esn`}..`4esn`] Desc,Case When Count ( * ) Contains 07 Then $`2esn` When 1.0 Is Null Is Null Then `7esn`[..2.12][..{usn1}] End Is Not Null Desc Limit $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Union All Create Unique Allshortestpaths((({`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})<-[?*..]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})));"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Delete `5esn`(Distinct $0,$_usn4 Contains Null Contains #usn8) In Case 12.0[123.654][Count(*)] When $_usn3[Count(*)] Then 0e0 =~`6esn` =~123456789 End In {`8esn`:False Is Null Is Null},`6esn`[2.12..01][{``}..False],[_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null|999 Is Not Null Is Not Null] Ends With [`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null|{`5esn`} Starts With $`5esn` Starts With .e1] Ends With {``:usn1 Starts With usn1 Starts With $``} Merge (`1esn` :`4esn`{`6esn`:$`6esn` Ends With Count(*),`7esn`:_usn3 Starts With 12.e12 Starts With 0.12})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0});"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Drop Constraint On(_usn4:`8esn`)Assert Allshortestpaths((((:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)-[usn1? *1000..00]->({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})))).`5esn`! Is Unique"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Remove {#usn8:#usn7 Contains _usn3 Contains {`3esn`}}._usn3?,{`3esn`}.`4esn` Union All Load Csv From None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`]) Is Not Null As `2esn` Union All Unwind 2.12 Contains usn2 Contains True As `4esn` With Distinct Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn`,{``}[$#usn8..$usn1] As @usn6,None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`]) Is Not Null Order By $0[..9e1] Descending,{usn1}[Count(*)..] Desc Skip (`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})-[:`6esn`|`5esn`{`8esn`:$0 Ends With 12.0}]->(`5esn` {`4esn`:7[$`2esn`..{`5esn`}],@usn6:{7} Is Null}) Contains Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) Contains Case 9e12 Is Not Null Is Not Null When 0[..usn2][..{@usn5}] Then 0e0 Ends With 1.e1 Ends With $`4esn` Else usn1 Is Null End Where $`5esn` In $`6esn` Load Csv With Headers From {0}[\"d_str\"..07][0..'s_str'] As @usn5 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Create ((@usn6 ))"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Create Constraint On(`6esn`:`7esn`)Assert Extract(`2esn` In `1esn` =~\"d_str\" Where `` Ends With 123456789 Ends With 123.654|#usn7 =~Count ( * ) =~``).`2esn`? Is Unique;"), - octest_legacy:ct_string("Cypher 12.999 Using Periodic Commit Load Csv With Headers From $@usn6 Ends With $_usn4 Ends With 0.12 As `4esn` Start ``=Rel:#usn8({12}) ,`7esn`=Relationship:@usn5({`8esn`})Where `7esn` In {123456789} In `1esn` Return *,Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0) Is Not Null Is Not Null As `1esn`,[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `4esn` Ends With 07 Ends With {`3esn`}|@usn5 Is Null] Is Null Is Null As _usn3 Order By 123456789[$@usn5..] Ascending,.e12 Contains 00 Contains {999} Asc,{`5esn`}[{usn2}..1000][$`8esn`..{`3esn`}] Ascending Skip $`8esn`[1000..0Xa];"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Create Constraint On(`8esn`:@usn5)Assert Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`|$_usn3[..1000]).`` Is Unique;"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Create Constraint On(`2esn`:`4esn`)Assert Reduce(`4esn`=$_usn4 Ends With usn1 Ends With $0,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|.e12 Is Not Null Is Not Null).usn1? Is Unique;"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Create Constraint On()-[@usn6:#usn7]-()Assert Exists([$_usn4[1.e1]['s_str'],#usn8 Is Not Null,123456789[#usn8..False]].usn1!)"), - octest_legacy:ct_string("Explain Foreach(`4esn` In 1000[0X7..2.12]| Remove ({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)._usn4?) Foreach(`3esn` In 0.0[Null][$`2esn`]| Remove (:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:_usn3|_usn3{`3esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],#usn8:False Starts With {`5esn`}}]-(usn2 :`5esn`{`7esn`:01234567 Is Null Is Null})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)._usn3,[@usn6[$`3esn`..{`3esn`}]].#usn7!,Reduce(@usn5='s_str' Ends With 7 Ends With {_usn4},`8esn` In 01[2.12..`8esn`]|{999}).#usn8!) Optional Match _usn3=Allshortestpaths(((:usn1{_usn4})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}))),(({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})) Using Scan _usn4:usn1 Where 12e12 Ends With {usn1} Union All Merge Allshortestpaths((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))) On Match Set Filter(`4esn` In $`3esn` Is Not Null Where `7esn`[..2.12][..{usn1}]).@usn6? =123456789 Ends With $`6esn` Ends With $#usn7,`1esn`+=(`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})[\"d_str\"..Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null)][Shortestpath(((:`3esn`:@usn5$7)))..usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010])],#usn7 =$123456789 In $#usn7 In `4esn` Union All Load Csv From {_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] As #usn8 Create Unique Allshortestpaths(({_usn3:{_usn4} Is Not Null Is Not Null})),(({_usn3:{_usn4} Is Not Null Is Not Null})) With Distinct 123.654 Is Not Null As `1esn`,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) As `4esn` Order By 0.0 =~999 Asc,1e1 In \"d_str\" In `7esn` Descending"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Return 1000 In `7esn` In 9e12 As `6esn`,$12 Starts With {`1esn`} Starts With Null Skip .e12[@usn5..$12] Limit (`` :_usn4{_usn4:False[..``],usn2:9e1[1000][{123456789}]})<-[:`5esn`{@usn6:$#usn8 Ends With $`2esn` Ends With $@usn6,`6esn`:{7}[..12e12][..Count ( * )]}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]->({@usn6:$usn1 Ends With $`` Ends With $12}) Starts With `3esn`($123456789 Is Null Is Null,0Xa[usn2..]) Starts With (@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(@usn5 {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]->(#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12}) Return Distinct *,`6esn`[2.12..01][{``}..False] As @usn5,Reduce(`5esn`=$`5esn`[{`3esn`}],`3esn` In {7} Is Null|`6esn`[12..$usn2][{#usn8}..{usn2}]) In @usn5(Distinct _usn4 Starts With $_usn4 Starts With 12.e12) In None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Count ( * ) Ends With 12.0) Order By `4esn`[..Count ( * )][..{#usn7}] Ascending Create Unique `1esn`=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})<-[{`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}]->({`7esn`:7[{0}..{_usn4}]})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-({#usn8:0xabc[.e0]}))));"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Drop Constraint On(_usn3:`8esn`)Assert Exists(({`7esn`:7[{0}..{_usn4}]})-[`` *..12]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})-[:`2esn`*..{`1esn`}]-(usn2 :`5esn`{`7esn`:01234567 Is Null Is Null})._usn3?)"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Drop Constraint On(`1esn`:`4esn`)Assert Exists(Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where $usn1 Ends With $`` Ends With $12).`7esn`);"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Foreach(usn2 In Case {999} Is Null Is Null When 1000[Null..{123456789}] Then 9e12[`6esn`..12.0] Else `` Ends With $1000 End[Reduce(`2esn`={`3esn`} In 0X7,_usn3 In {`3esn`}[`2esn`]|$`5esn`[{`3esn`}])..(@usn5 {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})]| Return Distinct 010[Count(*)..12][$_usn3..{`8esn`}],Filter(_usn3 In {`3esn`}[`2esn`] Where False =~$7 =~2.12)[Case When .e12 Is Not Null Is Not Null Then `1esn` In .e0 In {`3esn`} When 7 Starts With {@usn6} Starts With $`` Then 0X0123456789ABCDEF =~1e1 =~{`4esn`} Else {`4esn`}[$123456789..][$#usn7..] End] As `5esn`,9e1[2.12] As _usn3 Delete 010 In Count(*),Count(*)[..usn2][..usn2]) Create usn1=(((@usn5 :`8esn`:`7esn`{`6esn`:`7esn`[$0][9e12],`4esn`:.e1 Is Null Is Null})<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->(`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`))),(((usn2 :`4esn`)-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[``? *..01{`1esn`:$@usn6 Contains 07}]-(:`3esn`:@usn5{#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}))) Match usn1=Allshortestpaths(((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))),((@usn6 :`1esn`{#usn8:`4esn`[1.0],``:.e12[@usn5..#usn7][010..{usn1}]})) Using Join On @usn5,_usn3,_usn3 Using Scan #usn7:@usn6"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Optional Match `8esn`=Allshortestpaths(({@usn5:07[..True][..9e12]})-[_usn4?:`5esn` *..07]->({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})) Using Join On #usn7,_usn4 Using Index `3esn`:`5esn`(#usn7) Where usn1 Ends With $@usn6 Ends With `3esn` Load Csv From {#usn7:0X0123456789ABCDEF =~1e1 =~{`4esn`},`2esn`:1.0 =~'s_str' =~{`2esn`}}[..None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 0X7[`7esn`][123.654])][..(:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})<-[`2esn`?:`7esn`]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})] As `8esn` Fieldterminator \"d_str\" Union All Create ((:`4esn`{`5esn`})) With *,Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn` Skip 010[\"d_str\"..{@usn6}] Limit $`3esn`[0.12..`8esn`][$#usn7..`5esn`];"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Drop Constraint On(`8esn`:@usn6)Assert Allshortestpaths((@usn6 :_usn3:_usn3{`7esn`:$`6esn`[123456789..12][True..{`3esn`}],`5esn`:0X0123456789ABCDEF[123456789]})-[{#usn8:$#usn8 =~{@usn5},`8esn`:0X0123456789ABCDEF[{_usn4}..00]}]-(_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})<-[`6esn`? *..010]-(`` :`1esn`)).`2esn` Is Unique"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Match #usn8=Shortestpath((#usn8 :@usn5));"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Return *,12[..$`4esn`],Case When 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] Then {1000} =~0 =~123.654 When `8esn`[`4esn`..{#usn8}][$12..2.12] Then 00[$`7esn`] End Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`7esn` =~{`8esn`} =~$usn1) Contains [0.12 =~`5esn` =~`5esn`] Order By {12} Contains {123456789} Contains `4esn` Desc,{_usn3:`4esn`[..Count ( * )][..{#usn7}]}[..{_usn4:`5esn`[.e0..][07..],`3esn`:{0} In $_usn3}][..Allshortestpaths(((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})))] Desc,`1esn` In .e0 In {`3esn`} Descending Limit 7 Contains @usn6 Union Start `2esn`=Relationship:`4esn`(`1esn`={`2esn`}) ,`3esn`=Rel:``({`1esn`})Where `4esn` Is Not Null Is Not Null Start usn2=Relationship:`3esn`({`1esn`}) Where `1esn`[..{@usn6}][..$123456789] Foreach(`3esn` In .e1 In 0| Load Csv From {_usn4} Starts With 0.e0 Starts With 0x0 As `8esn` Fieldterminator 's_str' Start `1esn`=Node( {_usn4}) ,`6esn`=Relationship:`4esn`(`1esn`={`2esn`})Where {_usn3}[..\"d_str\"])"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Create Constraint On()-[`3esn`:`3esn`]-()Assert Exists(Case When 1.0 Starts With 12e12 Starts With {`5esn`} Then {0}[{`8esn`}..`4esn`] When usn2[{7}] Then $`4esn`[`7esn`] Else 9e1 In $`3esn` In $@usn6 End.@usn5!);"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Drop Constraint On()-[`6esn`:`1esn`]-()Assert Exists(Allshortestpaths((`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})).``)"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Delete False[$usn1.._usn4][_usn4..{`3esn`}],{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],$`1esn` Ends With 9e1 Ends With $123456789"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Start _usn4=Node:`4esn`(_usn4={123456789}) Where {_usn4} In {12} In $0 Union All Create #usn7=Shortestpath(((@usn6 )<-[usn1?:`8esn` *..010]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})<-[?:`8esn` *..0x0{`2esn`:$`4esn`[Null..]}]->({#usn8:0xabc[.e0]}))),`3esn`=Shortestpath((@usn5 :`8esn`:`7esn`{`6esn`:`7esn`[$0][9e12],`4esn`:.e1 Is Null Is Null})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`4esn` {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null})-[`1esn`?:`8esn`]->(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})) Delete `2esn`[{`4esn`}][$_usn3] Union Foreach(`1esn` In {#usn7} In 0x0 In $0| Unwind $`1esn` Ends With 9e1 Ends With $123456789 As ``) Create `8esn`=Allshortestpaths((`` :#usn7)-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})),(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`8esn` :`8esn`:`7esn`) Start ``=Rel:#usn8(_usn3='s_str') ,`7esn`=Rel:`6esn`(\"d_str\")Where 0[..usn2][..{@usn5}]"), - octest_legacy:ct_string("Cypher Merge _usn4=Shortestpath((usn1 {`2esn`})-[@usn5? *0Xa]->(:`3esn`:@usn5{``:12.e12[$_usn3..],_usn3:$`6esn`[010..]})) On Create Set Reduce(usn1=7[{0}..{_usn4}],`` In 123456789 Ends With 12.e12 Ends With $`7esn`|$999 Is Not Null)._usn3 =@usn6 Contains `3esn` Contains {`2esn`} Remove Reduce(#usn8={0}[01][`7esn`],@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|2.12 =~False).`6esn`!,Case True In 0e0 When 0.0 =~999 Then {@usn5} Is Null Is Null End.`6esn`? Union All Optional Match @usn5=(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(`2esn` :`8esn`:`7esn`),usn1=Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` )))) Using Join On `7esn`,`8esn`,`3esn` Where 7[{0}..{_usn4}] Foreach(`` In $`8esn`| Create `8esn`=(:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`),(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7) Remove Case `1esn`[{usn1}..``][7..$#usn8] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] End.@usn5) Match `3esn`=Shortestpath((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))),Shortestpath(({@usn5:07[..True][..9e12]})-[_usn4?:`5esn` *..07]->({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})) Using Index @usn5:`2esn`(@usn5) Using Scan `7esn`:usn1 Where Null[$#usn7];"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Delete 0[07..{123456789}][999...e12],0Xa[9e1..][$`6esn`..],Extract(#usn7 In {``} Is Not Null Where 123456789[0xabc..'s_str'][``..`1esn`])[Reduce(usn1=False,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|$_usn4 Starts With 1e1)] Foreach(`8esn` In [_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|`` Is Not Null Is Not Null] Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where {_usn3}[..\"d_str\"][..`5esn`]) Ends With Filter(`3esn` In {7} Is Null Where {123456789} Contains $#usn8)| Remove (:#usn7)-[?:_usn3|_usn3]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[:#usn7 *..010]->(#usn8 :usn1)._usn4!,{_usn4:0.12 Contains 0X0123456789ABCDEF Contains .e0}.`1esn`! Remove None(#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01).`5esn`!) Union All Create Unique @usn5=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}) Merge `2esn`=Shortestpath((((:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})<-[:#usn7 *..010]-(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})))) On Match Set #usn8:usn2,usn1 =Reduce(`2esn`=1e1 In 123.654 In `3esn`,`5esn` In \"d_str\" Is Null Is Null|$_usn3[{#usn7}]) Is Not Null,`6esn` =0.e0 Starts With `2esn` On Match Set @usn5 =Extract(#usn8 In {`5esn`}[.e1..``] Where {`3esn`}[..07][..{`5esn`}]) Is Null Is Null;"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Drop Constraint On()-[`4esn`:_usn3]->()Assert Exists(All(`4esn` In $`3esn` Is Not Null Where $`2esn`).usn2!)"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Drop Constraint On(`6esn`:@usn5)Assert Filter(#usn8 In {`5esn`}[.e1..``] Where 0X7[..2.12]).@usn5 Is Unique"), - octest_legacy:ct_string("Cypher 12.999 Drop Constraint On(``:`7esn`)Assert Exists(Case When `5esn` Is Null Then True[..$`6esn`] Else `3esn`[`3esn`..][#usn8..] End.@usn5?);"), - octest_legacy:ct_string("Cypher Drop Constraint On()<-[#usn8:`3esn`]-()Assert Exists(Allshortestpaths(((:`1esn`{})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]}))).`2esn`?);"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Drop Constraint On()<-[#usn8:@usn6]-()Assert Exists([`5esn` In $999[0.0..] Where {_usn3}[..\"d_str\"]|Count(*) Is Null Is Null]._usn3);"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Drop Constraint On(`6esn`:`4esn`)Assert Exists([@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where 1.0 Contains $_usn4].`2esn`!);"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Start usn2=Node:`4esn`('s_str') ,@usn6=Rel:``(_usn3='s_str')Where `7esn` In {123456789} In `1esn`"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Create Constraint On()-[usn1:@usn5]->()Assert Exists(Extract(`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}|$@usn5 Starts With $1000).@usn5!)"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Create Constraint On()-[`1esn`:@usn6]->()Assert Exists(None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa).``?);"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Drop Constraint On(`7esn`:@usn6)Assert Exists(Filter(#usn8 In 7[..999][..{#usn8}] Where $@usn5 Starts With {0} Starts With 12).usn2?)"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Optional Match `8esn`=Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))) Using Join On `8esn`,@usn5 Using Index _usn3:`4esn`(`2esn`) Where 0 In `2esn` In 010 Union Foreach(`8esn` In (`1esn` :#usn8:#usn8)-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})[..(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})][..`5esn`({12} Ends With 1.0 Ends With .e0)]| Remove [usn1 Ends With $@usn6 Ends With `3esn`,0xabc[.e0],{``}[010..][0xabc..]].``?) With Distinct 9e0 Starts With 01 As `2esn`,`` Ends With 123456789 Ends With 123.654 As usn2,Count ( * ) Contains 07 Skip {`4esn`} =~{7} =~{`7esn`} Where 0X7[0e0..`7esn`][1000..0e0] Unwind $`3esn` Is Not Null Is Not Null As _usn3 Union All Unwind @usn5 In $7 As `` With Case When @usn5 Is Null Then 2.12 Ends With $_usn3 Ends With `3esn` Else $1000 Is Null End[Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}])..None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa)][Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01|usn2 Is Null)..Case When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` End] As `2esn` Order By Case When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $`4esn`[..$`3esn`][..0.0] Then `1esn` =~0 =~$#usn7 Else {``} Is Null End Contains Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Contains All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {@usn6}[7]) Asc,Shortestpath(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})))[#usn7(Distinct $`5esn`[`3esn`..])..{``:0Xa Starts With {`6esn`} Starts With $usn1}] Ascending,All(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0[{usn2}..][$`6esn`..]) Is Not Null Asc Where {usn2}[.e0..$999] Start #usn7=Node( {`8esn`}) "), - octest_legacy:ct_string("Explain Drop Constraint On()-[`2esn`:_usn3]-()Assert Exists(None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`).``?)"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Create Constraint On()-[_usn4:_usn3]->()Assert Exists(Extract(#usn7 In {``} Is Not Null Where {`1esn`}[usn1][.e1]|`6esn` In 0Xa)._usn3?)"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Drop Constraint On(`8esn`:`4esn`)Assert Exists(usn1(123.654 =~$usn2 =~{999},1.0[$`1esn`..][$123456789..]).`7esn`?)"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Start `7esn`=Rel:_usn4(``={#usn7}) ,`8esn`=Relationship:`4esn`(`1esn`={`2esn`}) Match @usn5=Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))),`2esn`=Allshortestpaths(((#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})-[`8esn`?:@usn6|`6esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}))) Using Scan `4esn`:`8esn` Using Join On `8esn`,`2esn` Where {_usn3}[..$12][..0.12] Match Shortestpath((`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})),``=Allshortestpaths((`2esn` :`8esn`:`7esn`)-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})) Using Scan _usn3:`1esn` Where 12.0[123.654][Count(*)]"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Start `7esn`=Rel:_usn4(``={#usn7}) ,@usn6=Node:`7esn`(_usn4={12})Where Count ( * )[0.12...e1] Create `7esn`=Shortestpath(((:usn1{`3esn`:{123456789} Is Null Is Null})-[_usn4{`5esn`:{0} Ends With $_usn3 Ends With $`7esn`,`2esn`:Null[``]}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[? *0Xa]-({`7esn`:{999}}))) Union All Match Shortestpath((`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})) Using Index ``:usn1(@usn5) Union All Unwind 12 Ends With $usn2 As `6esn` Unwind `7esn`[$12..][$`8esn`..] As `2esn` Unwind .e0 =~`6esn` =~{12} As `3esn`"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Detach Delete $12 Ends With 07 Ends With $123456789,$`6esn`[{_usn3}..$`4esn`][$_usn4...e12] Foreach(usn1 In (:_usn4{@usn6})<-[`4esn`?:_usn4|:usn2{_usn4:$usn2[{@usn5}],`2esn`:usn1[`5esn`..$7]}]->({``:$`8esn` =~{1000}})<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(:``:#usn8{usn1:{`6esn`}})[[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn` Contains 123456789 Contains $usn2|123456789 Ends With 01234567 Ends With 1.e1]..{usn2:1.0 =~7 =~{usn2},`8esn`:$_usn3[.e0..$usn2]}][None(_usn3 In {`3esn`}[`2esn`] Where 7 Ends With $`4esn`)..Case {`2esn`} Starts With 123456789 When $`5esn` In $`6esn` Then $`6esn` Ends With Count(*) End]| Optional Match Shortestpath(((({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(:`6esn`$123456789)))),@usn6=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7)) Using Index `7esn`:usn2(`6esn`)) Start `1esn`=Node:usn2({12}) ,usn1=Node:`7esn`(`3esn`={``})Where {usn2};"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Merge `2esn`=Allshortestpaths(((#usn7 :_usn3:_usn3{`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]-({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5}))) On Match Set `8esn`+=$@usn5 Starts With 01 Starts With .e0,usn2+=Shortestpath(((({#usn7:2.12 Contains usn2 Contains True})-[_usn3?:`6esn`|`5esn` *0X0123456789ABCDEF]-(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}))))[Case When $999[0.0..] Then 12 Ends With 0x0 Ends With 0.e0 When `` Is Not Null Is Not Null Then {`3esn`}[..07][..{`5esn`}] End..[`3esn` In {7} Is Null Where usn1 Is Null Is Null]],@usn6+=`3esn`[{`2esn`}] Unwind Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where _usn4 Contains 2.12)[(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})..][#usn7(7 =~{`8esn`} =~$`6esn`,$123456789 Ends With {`1esn`} Ends With $`4esn`)..] As `7esn` Delete 12.e12[9e12..{`6esn`}] Union Delete 010[Count(*)..12][$_usn3..{`8esn`}],{`5esn`} Contains $0 Contains {``},()-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[@usn6?$0]->({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})[{#usn8:_usn4 Starts With $_usn4 Starts With 12.e12}..Allshortestpaths(((@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})))][(usn2 :usn2)<-[@usn5? *..01]-(`8esn` :@usn6:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})..Case When #usn8 Is Not Null Is Not Null Then `3esn`[{usn1}] Else 0.12 Starts With $`5esn` Starts With 12 End];"), - octest_legacy:ct_string("Cypher With Distinct 0X7[1000..{`1esn`}],Extract(#usn8 In {`5esn`}[.e1..``] Where {7}[..1.0][..9e0]) Ends With Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where `8esn` Ends With 999 Ends With .e12|9e1[..$`2esn`]) Ends With $_usn4 As `4esn`,12.e12[`3esn`] As #usn7 Where {`6esn`}[..$@usn6][..`7esn`] Create Unique (@usn6 :`1esn`)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``}),_usn3=(((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5))) Foreach(`3esn` In {123456789}[0xabc..]| Remove (_usn4 :#usn7{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})<-[:`4esn` *..010{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-({`1esn`:`3esn`[{`2esn`}]}).`4esn`,Allshortestpaths(((:`1esn`{`5esn`:1.0 In Count(*)}))).@usn5! Delete 010 In Count(*),Count(*)[..usn2][..usn2]) Union With usn2 Ends With 999 Ends With .e1 As `7esn`,$`5esn`[$123456789],[#usn8 In 7[..999][..{#usn8}] Where {12} =~#usn8|\"d_str\" Contains {123456789} Contains 01] Contains {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} As `8esn` Order By {`6esn`}[..$@usn6][..`7esn`] Asc Match @usn6=(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(@usn6 {`3esn`:{``} Is Not Null})<-[@usn5 *0X0123456789ABCDEF]->(`6esn` :`3esn`:@usn5{`3esn`:0.e0 In $#usn7 In $_usn3,_usn4:{`8esn`} Ends With `6esn`}) Where False Remove `5esn`:_usn4,[1.0[0X7][{`5esn`}],@usn6[$`3esn`..{`3esn`}]].#usn8! Union All With *,{_usn4} =~$_usn4 As _usn4 Order By {12} =~#usn8 Asc,[00[$`7esn`],{usn1} In 2.12 In 1000,01 Ends With 999 Ends With {`7esn`}] Starts With Reduce(`6esn`=00[{`8esn`}..][{`8esn`}..],`5esn` In $999[0.0..]|`5esn`[{`4esn`}..`2esn`]) Asc,$1000 Is Null Is Null Descending Skip False[$usn1.._usn4][_usn4..{`3esn`}];"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Load Csv With Headers From ({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]})<-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})[(@usn5 :`6esn`)-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]->(:@usn6:#usn8)..{`2esn`:{_usn4} Starts With 0.e0 Starts With 0x0}] As `1esn` Detach Delete $7 In $7 In $7,0X7[1000..{`1esn`}],.e1 Is Null Is Null Union All With Distinct *,9e1[2.12],$_usn4 Contains Null Contains #usn8 As #usn7 Order By (usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]})<-[ *123456789..]-(:@usn5) Is Null Is Null Desc,False[..{`1esn`}] Desc Skip 1e1[$`5esn`][{`3esn`}] Limit {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains [1.0[0X7][{`5esn`}]] Where 123.654 Contains $`4esn` Contains 1.0;"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Detach Delete .e0[..$`8esn`],$@usn5 Starts With #usn7,12.0[{@usn5}..$#usn7] Union All Foreach(@usn5 In `5esn` Starts With 010 Starts With 0.0| Create Shortestpath(((:#usn8:#usn8)-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12}))),Shortestpath((({_usn3:{_usn4} Is Not Null Is Not Null})<-[_usn4 *0..{_usn4:00[`2esn`..12][123456789..0.e0],`8esn`:0x0[`4esn`..'s_str']}]->()<-[``? *..01{`1esn`:$@usn6 Contains 07}]->(:#usn8:#usn8{@usn6:$_usn3[..1000]}))) Create ((`1esn` {`5esn`})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})),Shortestpath((((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`8esn`?:`2esn`*..{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]}))))) Delete 0.0 Is Not Null Is Not Null,None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})[Any(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")..Reduce(usn1=#usn7[usn1][$`5esn`],`3esn` In {7} Is Null|Count(*) Ends With 12.0 Ends With 12)][(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})..({usn1:`5esn`[_usn4..]})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})],Reduce(#usn7=$1000 Is Null,#usn7 In {``} Is Not Null|$`1esn` Ends With 9e1 Ends With $123456789) In Case When `5esn` Is Null Then True[..$`6esn`] Else `3esn`[`3esn`..][#usn8..] End Create Unique `8esn`=((:@usn6:#usn8)<-[`1esn`?:usn2|``]-({@usn5:{usn2}[.e0..$999]}));"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Optional Match Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))),`2esn`=(usn2 :`4esn`)-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(`` :_usn4) Where {123456789} Is Null Is Null Union Unwind Count(*) In $`3esn` In 0Xa As `1esn`"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Drop Constraint On(`7esn`:_usn4)Assert Exists((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})<-[?:`7esn`{`3esn`:{#usn8}[010]}]-(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]}).@usn5!);"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Return *,Reduce(`2esn`=12[1.e1..{_usn3}][1.e1..1.0],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{#usn8}[010]) Is Not Null Is Not Null,usn1 In 7 In {123456789} As `5esn` Return Distinct 07 Is Not Null Is Not Null As `6esn`,(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})[[{@usn6}[{999}..][00..],@usn5 =~{`5esn`} =~`5esn`,`7esn` Is Null]][Reduce(`7esn`=0X0123456789ABCDEF Is Null Is Null,`5esn` In $999[0.0..]|$1000[Null][`4esn`])] As @usn6 Limit Shortestpath((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]}))[None(#usn7 In `2esn`[..$#usn8][..Count(*)])][(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})] Detach Delete $`1esn` =~0X7,.e0 Ends With 0.12,0e0[`8esn`..][$123456789..] Union All Create _usn3=(((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5))),(:``:#usn8{_usn3:$`7esn` Is Null Is Null})"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Start _usn4=Node:`3esn`(`2esn`={usn1}) ,`6esn`=Node:``('s_str') Load Csv With Headers From $@usn6 Ends With $_usn4 Ends With 0.12 As `4esn` Start `8esn`=Relationship:`4esn`(`1esn`={`2esn`}) Union All Return {#usn7}[..9e12][..`8esn`] As #usn7,{0}[{`8esn`}..`4esn`] As #usn8 Order By 0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn` Asc Skip [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}|{usn1} Is Null Is Null][Allshortestpaths(((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})))..] Limit `3esn`[$`1esn`..999][``..$123456789] Create `6esn`=({usn1:$`3esn` In $_usn4 In {_usn3}})-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})-[``?]-(#usn8 :@usn6:#usn8{`2esn`:$7 Is Not Null Is Not Null,`1esn`:`1esn` =~\"d_str\"}),_usn4=(:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null}) Load Csv With Headers From 123456789 Ends With $`6esn` Ends With $#usn7 As `6esn` Fieldterminator 's_str' Union All Load Csv With Headers From 0X7[1000..{`1esn`}] As usn1 Match ((_usn4 )) Using Index `3esn`:@usn5(`2esn`) Using Scan _usn3:`1esn` Where {usn1}[0X0123456789ABCDEF] Start `7esn`=Node:`7esn`(_usn4={@usn6}) ;"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Using Periodic Commit Load Csv From [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789] Ends With None(`2esn` In `1esn` =~\"d_str\" Where False Starts With {`5esn`}) As `4esn` Fieldterminator \"d_str\" Optional Match _usn3=(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})-[`8esn`?:#usn8|`1esn` *1000..00]->(:_usn4$@usn5)-[`7esn`:``{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2}]->({_usn4:00 Starts With 0xabc}))) Using Join On `8esn`,``"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Optional Match _usn4=Allshortestpaths((:_usn4{usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})) Using Scan usn1:_usn3 Using Scan `1esn`:`3esn` Where 7[$`2esn`..{`5esn`}] Union All Create (((:`4esn`{`5esn`})-[`7esn`?:`4esn`{_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}]-(#usn7 :#usn8:#usn8{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[`6esn`?:`1esn` *0X7..]->(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null}))) Load Csv With Headers From #usn8 Is Not Null Is Not Null As _usn4 Load Csv From 0Xa Starts With `7esn` Starts With $`1esn` As `7esn` Fieldterminator \"d_str\";"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Remove [@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where 01[2.12..`8esn`]].@usn6?,Any(#usn7 In {``} Is Not Null Where {`1esn`}[usn1][.e1]).#usn8? Union All Delete (:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case `8esn` Contains $usn1 Contains $12 When 12.e12[7..$`6esn`] Then {12} Contains {123456789} Contains `4esn` When $`1esn`[1.0..][_usn3..] Then `7esn`[$0][9e12] End,Case usn2 Is Null When 1000[0X7..2.12] Then `7esn`[9e0..] End Starts With Reduce(@usn6=$@usn5 Is Not Null,`2esn` In `1esn` =~\"d_str\"|{999} Starts With $999),$@usn6[12.0..][#usn7..]"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Create Constraint On()-[``:`3esn`]->()Assert Exists([`7esn`[..2.12][..{usn1}]].@usn5)"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Drop Constraint On(``:_usn3)Assert Exists(Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01|7[True..][2.12..])._usn4)"), - octest_legacy:ct_string("Cypher Foreach(`5esn` In $`5esn`[..$`5esn`][..$12]| Load Csv With Headers From 0e0[07] As _usn4 Fieldterminator 's_str' Create _usn4=(_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :_usn3:_usn3{`7esn`:$`6esn`[123456789..12][True..{`3esn`}],`5esn`:0X0123456789ABCDEF[123456789]})-[?{usn1:0[`7esn`..]}]->(`2esn` :`6esn`),@usn5=(((:_usn4)<-[:`6esn`|`5esn` *..010]-(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})<-[`4esn`?:`7esn` *0..{`2esn`:00[`2esn`..12][123456789..0.e0]}]->(`1esn` :_usn3:_usn3)))) Union All Foreach(`` In 010 =~{usn2}| Load Csv With Headers From 0X7[..2.12] As #usn8 Fieldterminator \"d_str\") Start #usn8=Rel:usn1(\"d_str\") ,`2esn`=Node:_usn4(#usn7=\"d_str\");"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Return usn1[..@usn6][...e0],usn1 Is Not Null As `6esn`,False[_usn3..`8esn`][$`8esn`..{`3esn`}] As _usn3 Order By Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End[[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]]..Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})))] Ascending,All(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Contains (`5esn` :_usn4{`5esn`:07[..True][..9e12]})-[`8esn`?:`2esn`{@usn6:{12}[..0X7]}]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]})<-[_usn4{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00}) Contains [0.12[$`3esn`..$_usn3][12.0..usn1]] Ascending Union Start usn1=Relationship:`3esn`(`6esn`='s_str') ,_usn3=Node:`6esn`('s_str')"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Drop Constraint On(usn1:usn1)Assert Shortestpath(((:@usn6:#usn8{`4esn`:$`8esn`[..00]})<-[_usn4?:_usn4|:usn2 *00]->(:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))).`2esn`? Is Unique"), - octest_legacy:ct_string("Cypher Using Periodic Commit Load Csv From $`4esn` Is Null Is Null As @usn6 Unwind Single(#usn8 In {`5esn`}[.e1..``] Where 123.654[$`1esn`]) Is Not Null Is Not Null As @usn5 Delete 2.12 Ends With $_usn3 Ends With `3esn`,usn1 Ends With $@usn6 Ends With `3esn`;"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Merge (`6esn` :`8esn`:`7esn`)<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}}) On Create Set Extract(#usn7 In {``} Is Not Null Where 0.12 =~`5esn` =~`5esn`).`8esn` =1000[0X7..2.12],`1esn`+={`5esn`} Starts With @usn5 Starts With `7esn`,`5esn`+=123.654 Is Not Null On Create Set _usn4 =[`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null,@usn6+=Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 07 Contains 0X7 Contains $`8esn`) Is Not Null Is Not Null Create Unique Shortestpath((({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`4esn`:`8esn` *00]->(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]->(`6esn` :`4esn`{#usn8:@usn6[$`3esn`..{`3esn`}],`3esn`:usn2[{7}]}))) Delete True[{_usn4}..][False..],$#usn7[@usn5..{1000}][1.e1..7],#usn7 Contains usn2 Contains @usn5"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Match @usn6=(((:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)-[usn1? *1000..00]->({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}))),(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``}) Using Scan `2esn`:usn1 Using Index _usn3:`6esn`(#usn7) Detach Delete $#usn7 Contains 0x0 Contains 1000,{_usn3}[..\"d_str\"][..`5esn`] Union All Load Csv From Allshortestpaths((:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))[[{_usn4} In {12} In $0,$`5esn`[2.12..],12[1.e1..{_usn3}][1.e1..1.0]]][[12e12 Is Not Null Is Not Null]] As usn2 Union All Optional Match `3esn`=Allshortestpaths(((#usn7 {``:9e12[`1esn`..][$`1esn`..],#usn7:#usn8})-[?:`7esn` *0X0123456789ABCDEF]->(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})<-[#usn8?:#usn7{`1esn`:#usn7 =~Count ( * ) =~``,usn2:`` Ends With $1000}]->(:@usn6:#usn8{`4esn`:$`8esn`[..00]}))) Where 00 Starts With 0xabc Create `7esn`=((:`3esn`:@usn5$7)) Detach Delete @usn6 Contains Null Contains $`7esn`,$usn2[$`2esn`..`4esn`];"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Drop Constraint On(#usn7:`1esn`)Assert Exists(Single(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 01[{@usn5}])._usn3?);"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Create `6esn`=((`2esn` :_usn4)),(((:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[:`6esn`|`5esn` *123456789..]-(#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}))) Union All Load Csv With Headers From `8esn`[$`8esn`..{`4esn`}] As _usn4 Fieldterminator 's_str' Remove [{12} Contains {123456789} Contains `4esn`,1.e1[`8esn`][00],1.0[$`1esn`..][$123456789..]]._usn4?,Reduce(_usn3=123456789[#usn8..False],_usn3 In {`3esn`}[`2esn`]|123.654 Contains $`4esn` Contains 1.0).#usn8? Union Return $`5esn` Starts With $0 Starts With {0},0e0 Starts With 1000 Starts With #usn7 As _usn3,$@usn5 Is Not Null Order By [0x0 Is Null,{``} Ends With `7esn` Ends With 0.0,0X7[0e0..`7esn`][1000..0e0]] =~Any(`5esn` In \"d_str\" Is Null Is Null Where $`6esn` Is Null) =~[$12[True..][{0}..],usn1[`5esn`..$7]] Desc,``[12.0..0e0][{`5esn`}..`7esn`] Ascending Match ((:usn1{usn1:{`6esn`}})),`2esn`=(:`4esn`{_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[#usn8:@usn5 *..01]-(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null}) Using Join On `8esn`,@usn6 Using Index `6esn`:_usn4(``) Where usn2 Is Not Null Is Not Null Create Unique _usn3=Shortestpath((:`3esn`:@usn5{`2esn`:{`3esn`}[..07][..{`5esn`}]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})),usn2=({@usn5:usn1 Is Not Null})<-[`3esn`:`6esn`|`5esn` *..12{usn1:0X0123456789ABCDEF Is Null Is Null}]-(:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Create Constraint On(``:`8esn`)Assert Exists(Single(#usn8 In {`5esn`}[.e1..``] Where {`1esn`}[12.0..`2esn`][@usn6..{usn1}]).``!)"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 With Distinct *,9e1[2.12],$_usn4 Contains Null Contains #usn8 As #usn7 Order By (usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]})<-[ *123456789..]-(:@usn5) Is Null Is Null Desc,False[..{`1esn`}] Desc Skip 1e1[$`5esn`][{`3esn`}] Limit {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains [1.0[0X7][{`5esn`}]] Where 123.654 Contains $`4esn` Contains 1.0"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Drop Constraint On(_usn4:#usn7)Assert [{`2esn`} Starts With 0.0 Starts With {usn1}].usn1! Is Unique"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Optional Match `6esn`=(({``})<-[`5esn`{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(usn2 {#usn7:2.12 =~Count(*),_usn4:$usn2[9e0]})),@usn5=Allshortestpaths((:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[#usn8]-(:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})) Using Index @usn5:`4esn`(`3esn`) Using Scan _usn3:`1esn` Where $123456789 =~{`6esn`} =~\"d_str\""), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Unwind $#usn7[..{`5esn`}][..9e12] As #usn7 Merge Shortestpath((:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null})) On Create Set None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0xabc[01..{999}][{7}..{`7esn`}]).#usn8? =123.654[`3esn`..] Start `2esn`=Node:@usn5({`1esn`}) ,`1esn`=Rel:``({`1esn`}) Union With Distinct {#usn7} In 0x0 In $0 As ``,`4esn`[`5esn`..12][@usn6..False],$@usn5 As @usn5 Where {`1esn`}[12.0..`2esn`][@usn6..{usn1}]"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Drop Constraint On(`3esn`:``)Assert Exists(Case When 0X0123456789ABCDEF Is Null Is Null Then `3esn` In $0 In `1esn` End.#usn8?)"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Drop Constraint On()<-[`7esn`:`5esn`]-()Assert Exists((`` :`8esn`:`7esn`)-[`1esn`? *1000..00{@usn5:.e0[..$`8esn`],`4esn`:{usn2} =~12}]->({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}).`1esn`!);"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Drop Constraint On()-[`2esn`:`2esn`]->()Assert Exists(Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``]).`8esn`)"), - octest_legacy:ct_string("Cypher 12.999 Drop Constraint On()-[`4esn`:_usn3]-()Assert Exists(Shortestpath(((`5esn` :`2esn`:usn1)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3))).usn2?)"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` With Distinct 7 =~{`8esn`} =~$`6esn` Order By 0.0 =~0 =~`6esn` Ascending,{``}[$`8esn`..] Ascending,9e1 Is Not Null Descending Skip Reduce(_usn4=01[{`2esn`}..{@usn6}][$`2esn`..0.0],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|0.12 =~$0 =~$0)[Shortestpath((((`1esn` {@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00})-[`6esn`?:`3esn`|:#usn8]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))))..[{12}[{7}][$123456789]]] Limit ({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(:@usn5)<-[`7esn`?:`8esn`]-({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}) Ends With $7 Ends With All(`` In `` Is Not Null Is Not Null Where 1000 In {`8esn`} In 01) Where $0[12.e12..] Remove Case 2.12['s_str'..$12][{`1esn`}..`2esn`] When 7[$`2esn`..{`5esn`}] Then {7}[..1.0][..9e0] Else 0x0[`4esn`..'s_str'] End.@usn6! Union Merge `4esn`=(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})<-[:`5esn`{@usn6:$#usn8 Ends With $`2esn` Ends With $@usn6,`6esn`:{7}[..12e12][..Count ( * )]}]->(#usn8 :_usn3:_usn3{`4esn`:{_usn3}[..$12][..0.12],`7esn`:1.0[0X7][{`5esn`}]})<-[`4esn`?:usn2|`` *0X7..]->(_usn3 :@usn5) Union All Foreach(usn1 In 9e1[2.12..{#usn8}]| Match `7esn`=Allshortestpaths((((`6esn` {`7esn`:$`6esn`[010..]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-({`1esn`:`3esn`[{`2esn`}]})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})))),@usn6=Allshortestpaths((`1esn` :`5esn`{`5esn`:{``} Is Null})-[:@usn6|`6esn`{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}]->(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[`2esn`?:`2esn`]->(`7esn` {``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})) Using Join On `6esn` Using Index `4esn`:`3esn`(#usn8) Where 123456789 Ends With $`6esn` Ends With $#usn7 Create `3esn`=Allshortestpaths((((_usn3 )-[?{@usn6:0X7[`7esn`][123.654]}]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})))),`2esn`=Shortestpath((`6esn` {_usn4:0Xa =~Null =~$``})<-[``? *0X7..]->(`` :`1esn`))) Merge ((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null})) With Distinct *,2.12[$`5esn`][$#usn8] As #usn8 Order By Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0)[..Case When 01234567[usn2..$12][{`7esn`}..$usn2] Then usn1[`5esn`..$7] Else $1000[0Xa][{#usn7}] End][..Reduce(@usn6=07 Contains 0X7 Contains $`8esn`,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|{#usn7}[9e1..][{123456789}..])] Descending,(:usn2{usn2:7[..999][..{#usn8}]})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})<-[:`4esn` *..010{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]->(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}) Desc,{usn2} Starts With $`8esn` Starts With Count ( * ) Ascending Skip 2.12[$`5esn`][$#usn8] Where 1e1 In \"d_str\" In `7esn`"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Remove ({`5esn`:\"d_str\" Starts With 01})<-[:_usn4|:usn2{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]}]-(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})._usn4,[`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 0.e0[123.654][01]|{usn1}[0X0123456789ABCDEF]].`7esn`?,Extract(`4esn` In $`3esn` Is Not Null Where `7esn`[..2.12][..{usn1}]|9e1[..$`2esn`]).`8esn`! Create Unique `7esn`=Shortestpath(((({#usn7:2.12 Contains usn2 Contains True})-[_usn3?:`6esn`|`5esn` *0X0123456789ABCDEF]-(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})))),`5esn`=((:@usn5)-[:#usn7{`2esn`:.e12 Ends With _usn4}]-(usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)) Union Remove [`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 01234567 Is Null Is Null].`6esn`?,`8esn`:`8esn`:`7esn`,Allshortestpaths(((`4esn` {`6esn`:#usn8[..{#usn7}]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]}))).#usn7! Unwind [{@usn6} Ends With 's_str' Ends With 12.0,{12} Contains {123456789} Contains `4esn`] Starts With Filter(_usn3 In {`3esn`}[`2esn`] Where {1000} =~0 =~123.654) Starts With Case When Count ( * )[0.12...e1] Then $@usn5 =~1000 =~1000 When Null Ends With `2esn` Ends With $usn1 Then $usn2[{@usn5}] End As `4esn` Merge `4esn`=(({_usn3:.e12[@usn5..$12]})-[`3esn`:#usn7]->(@usn6 {_usn3:{#usn7} Is Not Null Is Not Null})) On Match Set ``:_usn3:_usn3;"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Using Periodic Commit Load Csv With Headers From 12.0 In {`2esn`} As #usn8 Create usn1=Allshortestpaths((`` {@usn6:1.0[$`1esn`..][$123456789..]})-[`7esn`*]->(`7esn` {`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})-[@usn6]-(`5esn` {`4esn`:01 Is Null})) Unwind Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6} As `4esn`;"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Foreach(_usn3 In 1.0 =~'s_str' =~{`2esn`}| Detach Delete 07 Is Not Null Is Not Null) With Distinct *,$`7esn`['s_str'] Limit Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) Is Not Null Is Not Null Where .e12 In 0.e0 In {12} Foreach(@usn5 In {7}[..12e12][..Count ( * )]| Load Csv With Headers From 0e0 Starts With `2esn` Starts With $`` As `3esn` Fieldterminator \"d_str\" Detach Delete {123456789} Contains $#usn8) Union Match (:#usn7{usn2:{usn1} Ends With $0,#usn8:`5esn` Starts With $`2esn` Starts With $1000})-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(`1esn` :_usn3:_usn3{#usn7:$@usn5 Is Not Null Is Not Null}),`7esn`=((@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[`4esn`?:_usn4|:usn2{_usn4:$usn2[{@usn5}],`2esn`:usn1[`5esn`..$7]}]->({``:$`8esn` =~{1000}})<-[?:`7esn`{`3esn`:{#usn8}[010]}]-(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})) Union All Remove Reduce(`8esn`={`7esn`}[..$@usn5][..$#usn8],`3esn` In {7} Is Null|0.12[$`3esn`..$_usn3][12.0..usn1]).`1esn`,Reduce(`4esn`=$999 Is Not Null,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|$`7esn`['s_str']).``?,(@usn5 {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`}).#usn7;"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Drop Constraint On(`1esn`:usn2)Assert Exists({_usn4:`8esn`[`4esn`..{#usn8}][$12..2.12]}.#usn7)"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Load Csv With Headers From 0X7[1000..{`1esn`}] As usn1 Match ((_usn4 )) Using Index `3esn`:@usn5(`2esn`) Using Scan _usn3:`1esn` Where {usn1}[0X0123456789ABCDEF] Start `7esn`=Node:`7esn`(_usn4={@usn6}) Union All Delete 12.e12[9e12..{`6esn`}] Union Unwind 0.0[$0][{@usn5}] As `5esn`;"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Load Csv With Headers From {_usn4} Is Not Null Is Not Null As `5esn` Return Distinct $``[1.0],{`5esn`}[0..`8esn`][0..Null] As `7esn` Order By 0Xa =~123456789 =~_usn4 Desc Skip $7[{usn2}..][{usn2}..] Limit $1000 Is Null Remove Allshortestpaths((:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[usn1:`8esn`]-({_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null})).`6esn`!,(`4esn` :``:#usn8{`1esn`:$`5esn`[`3esn`..]})-[`7esn`*]->(:#usn7{@usn5:{12} =~#usn8})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 ).`4esn`? Union All Optional Match #usn7=((usn2 :`6esn`{#usn7:Count ( * ) Contains 07})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})) Using Join On `8esn`,`` Using Index `8esn`:`1esn`(@usn5) Where `1esn`[..{@usn6}][..$123456789] Unwind {7} Is Null As `6esn` Merge #usn8=Allshortestpaths(({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null}))"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Remove Extract(#usn8 In {`5esn`}[.e1..``]|12e12 Ends With {usn1})._usn3! Union All Delete Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End[[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]]..Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})))],7[$`8esn`..123456789][$usn1..$usn1],.e0 Ends With 0.12 Union Return 123.654 Is Not Null Is Not Null As `8esn` Order By Count ( * ) Starts With 7 Starts With $123456789 Descending,01234567 Ends With .e12 Ends With $#usn7 Asc,$`6esn` =~1.e1 =~12 Asc;"), - octest_legacy:ct_string("Cypher 12.999 Foreach(`6esn` In `7esn`[..2.12][..{usn1}]| Start `2esn`=Node:@usn6({_usn4}) ,_usn3=Relationship:`8esn`({`1esn`}) Return Distinct 0X7[1000..{`1esn`}] As `3esn`,$`2esn`[12.e12..][{`4esn`}..] Order By 0.0 =~999 Asc,$`5esn` In 0.e0 Asc,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) Ascending Limit Count ( * ) Is Null) With Distinct .e0 Ends With 0.12 As _usn3 Order By .e1 =~{@usn6} =~Null Asc,usn2(Distinct Null In $7 In .e1,`1esn` Contains {usn2} Contains $#usn8) In All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7) In Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 2.12 Ends With $_usn3 Ends With `3esn`|{123456789} Contains $#usn8) Asc,Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]] Ascending Skip _usn3[..`8esn`][..2.12] Limit Reduce(`1esn`={`8esn`} Ends With `6esn`,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|1e1 In 123.654 In `3esn`)[[#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]]] Foreach(`4esn` In {usn1} Is Not Null Is Not Null| With Distinct $`8esn`[1000..0Xa],({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(:@usn5)<-[`7esn`?:`8esn`]-({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}) Ends With $7 Ends With All(`` In `` Is Not Null Is Not Null Where 1000 In {`8esn`} In 01) As ``,usn1 Starts With $usn1 As `1esn` Order By Null[``] Descending,1.e1[$`1esn`..@usn6][$0..$_usn3] Asc,$`6esn`[.e0..$`6esn`][$_usn3..{#usn7}] Desc Limit {`4esn`} Starts With 1e1 Where 0Xa[usn2..]) Union Unwind Extract(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|{@usn5} Is Null Is Null)[Case When $0[..9e1] Then Count(*)[..usn2][..usn2] When {`2esn`} Starts With 0.0 Starts With {usn1} Then 0e0 In @usn5 Else 01 =~{_usn3} =~`3esn` End.._usn3(1.0 In Count(*),0[{usn2}..][$`6esn`..])][count(Distinct $12[Null..Count(*)][{`5esn`}..{999}],$`4esn`[`7esn`])..Case When $123456789 Ends With $999 Ends With {999} Then `3esn`[{usn1}] When #usn7 =~Count ( * ) =~`` Then $_usn4 Starts With 1e1 End] As usn1 Return (_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})[[{@usn6}[{999}..][00..],@usn5 =~{`5esn`} =~`5esn`,`7esn` Is Null]][Reduce(`7esn`=0X0123456789ABCDEF Is Null Is Null,`5esn` In $999[0.0..]|$1000[Null][`4esn`])] As @usn6,9e0 Is Not Null Is Not Null Skip {7}[$`5esn`][{_usn3}] Limit Shortestpath(((`1esn` )))[Case 7[$`2esn`..{`5esn`}] When 0e0[..010] Then {123456789} Is Null Is Null Else `6esn`[..$@usn6] End..][Shortestpath(((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(@usn5 :`4esn`)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]})))..] Remove Reduce(``=2.12 Contains usn2 Contains True,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|`4esn`[..Count ( * )][..{#usn7}]).@usn6?,[Null Ends With `2esn` Ends With $usn1,0X0123456789ABCDEF[123456789],0Xa[$123456789..123.654][.e12..0.e0]].`3esn`! Union All Remove {`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null}.`4esn`?,usn1:#usn7,Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`|$_usn3[..1000]).``"), - octest_legacy:ct_string("Cypher 12.999 Using Periodic Commit Load Csv From $@usn5 Starts With $1000 As `2esn` Foreach(#usn7 In (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12}| Return Distinct 0e0 =~`6esn` =~123456789 As @usn5,Count ( * )[True..][{#usn7}..],2.12 =~{7} As `6esn` Order By {`2esn`}[1e1..1.0][{#usn8}..$`1esn`] Ascending,0X0123456789ABCDEF Is Null Is Null Asc Skip \"d_str\"[#usn8] Match `8esn`=(:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`),Shortestpath(({usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null})) Using Join On `5esn`,#usn7 Using Scan `2esn`:`6esn` Where `7esn`[..2.12][..{usn1}]) Merge usn1=(#usn7 :`8esn`:`7esn`) On Create Set Single(_usn3 In {`3esn`}[`2esn`] Where _usn3 Contains $123456789 Contains ``).`2esn` =Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With Reduce(`1esn`=0.12 Starts With $`5esn` Starts With 12,_usn3 In {`3esn`}[`2esn`]|$12[True..][{0}..]) Starts With Reduce(usn2=Null Ends With {`5esn`} Ends With 0.e0,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{`6esn`}),[@usn6 Ends With {_usn3},12.0 Contains #usn7,$_usn3[..1000]].`2esn`? =0e0 Contains Null,`5esn`+=7 Ends With (@usn5 {`7esn`:$`6esn`[010..]})-[:`8esn` *..01]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]}) Ends With #usn8(False =~$7 =~2.12)"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Create Constraint On()-[#usn7:usn2]->()Assert Exists(Reduce(usn1=$12 Is Null Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|Count ( * ) Contains {`1esn`} Contains 07).`4esn`);"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Drop Constraint On(`2esn`:`8esn`)Assert (:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})-[`7esn`?:usn1|@usn6 *1000..00{`8esn`:Count(*)[..usn2][..usn2],`5esn`:usn1 Is Null}]->(:`1esn`{`5esn`}).usn1! Is Unique"), - octest_legacy:ct_string("Explain Foreach(usn2 In {`2esn`} Is Not Null| Delete 00[{`8esn`}..][{`8esn`}..]) Union Remove Reduce(``=$usn1[.._usn4][..False],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|#usn8[#usn8..]).`8esn`,Reduce(@usn5=9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Ends With {_usn3}).`8esn` Return Distinct *,`6esn` Is Not Null Is Not Null As `3esn` Order By $`5esn` Starts With $0 Starts With {0} Asc Union All Create Unique ``=Allshortestpaths((((:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)-[usn1? *1000..00]->({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})))),Shortestpath(((:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null}))) Remove Shortestpath((`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[:`3esn`|:#usn8 *7..12{@usn5:_usn4 Starts With $_usn4 Starts With 12.e12}]->(`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null})).`5esn`?,Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01).`7esn`;"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Unwind {usn1} In 2.12 In 1000 As `8esn` Union All Foreach(`8esn` In \"d_str\" Starts With 01| Start `8esn`=Relationship:`6esn`('s_str') Where 010 =~{usn2}) Unwind $`1esn` In $`7esn` In $`6esn` As `2esn` Delete 123456789[#usn8..False],9e1 In 2.12"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Load Csv From Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where _usn4 Contains 2.12|{_usn3}[..\"d_str\"]) Contains Shortestpath((`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})) Contains [$123456789 Ends With $999 Ends With {999},12.0 Contains #usn7] As _usn4 Merge _usn3=Shortestpath(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))) On Create Set `5esn`+=999 In {`3esn`} In usn2 On Match Set _usn4 =[`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null,@usn6+=Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 07 Contains 0X7 Contains $`8esn`) Is Not Null Is Not Null Union Return {0} As `7esn`,1000[..$0][..True] Limit Case When @usn5 Is Null Then 2.12 Ends With $_usn3 Ends With `3esn` Else $1000 Is Null End[Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}])..None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa)][Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01|usn2 Is Null)..Case When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` End] Create Allshortestpaths((`3esn` :#usn8:#usn8)),`4esn`=Allshortestpaths(((:`2esn`:usn1)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`}))) With Distinct *,$@usn5 Is Not Null,Count ( * ) Is Null Skip Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where _usn4 Contains 2.12|{_usn3}[..\"d_str\"]) Contains Shortestpath((`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})) Contains [$123456789 Ends With $999 Ends With {999},12.0 Contains #usn7] Limit {1000} Is Null Is Null Where usn2 Is Null;"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Drop Constraint On()-[`6esn`:_usn3]->()Assert Exists([1.0[0X0123456789ABCDEF]].@usn6!);"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Drop Constraint On()-[@usn5:@usn6]->()Assert Exists(Reduce(`5esn`=$123456789 Starts With 9e0 Starts With 's_str',`` In 123456789 Ends With 12.e12 Ends With $`7esn`|False =~$7 =~2.12).`6esn`?)"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Drop Constraint On(`5esn`:``)Assert Exists(Reduce(`2esn`=.e1[{`7esn`}..{_usn4}],#usn7 In `2esn`[..$#usn8][..Count(*)]|usn1 In 7 In {123456789}).`1esn`);"), - octest_legacy:ct_string("Explain Drop Constraint On(`3esn`:`5esn`)Assert Exists((:usn2{`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})-[@usn6?$0]-(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7}).usn2!)"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Start _usn4=Node:`6esn`(\"d_str\") Where {_usn3}[..$12][..0.12] Start `7esn`=Relationship:`3esn`(`6esn`='s_str') Where 0Xa =~123456789 =~_usn4 Union All Return Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]) =~({``:$`8esn` =~{1000}})<-[#usn8? *0..]->(`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7}) =~Shortestpath((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})) As #usn8,Reduce(`8esn`={@usn5}[{#usn8}][9e0],`3esn` In {7} Is Null|0e0 Starts With 1000 Starts With #usn7)[Single(#usn8 In 7[..999][..{#usn8}] Where 123456789 Is Null)] Order By 's_str' In 00 Desc,{1000}[{_usn3}..] Descending,$usn1[...e0][..$_usn3] Asc Union All Create `1esn`=Shortestpath((((`2esn` :`8esn`:`7esn`)<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``}))));"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Match (({_usn3:$`5esn`[`3esn`..]})-[? *..07{`4esn`:@usn5 =~{`5esn`} =~`5esn`}]->(_usn3 :usn2{#usn7:{999} Starts With {0}})) Using Index @usn5:`2esn`(@usn5) Where $123456789 Is Null Is Null Foreach(`4esn` In None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12])[Reduce(`4esn`=`1esn` =~0 =~$#usn7,`2esn` In `1esn` =~\"d_str\"|{123456789} Is Null Is Null)][{``:`7esn` Starts With $#usn7 Starts With $`7esn`}]| Remove [@usn5 In {`7esn`} In `2esn`,9e0,$`5esn`[..$`5esn`][..$12]].`4esn`!,Reduce(usn2=$usn2[{@usn5}],`4esn` In $`3esn` Is Not Null|$7[{usn2}..][{usn2}..]).usn2,[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 01[2.12..`8esn`]|{0} Ends With $_usn3 Ends With $`7esn`].`6esn`!) Union Remove Filter(`4esn` In $`3esn` Is Not Null Where 12.e12[7..$`6esn`]).usn2?,#usn7:``:#usn8,Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01).usn2 Unwind $`5esn` Starts With $0 Starts With {0} As usn1;"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Create Constraint On(#usn7:usn2)Assert [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {123456789} Is Null Is Null|1e1 Contains Count ( * )].`6esn`! Is Unique;"), - octest_legacy:ct_string("Cypher 12.999 Drop Constraint On(`3esn`:`3esn`)Assert Shortestpath((:#usn8:#usn8{_usn4})).@usn6? Is Unique"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Create Constraint On(`7esn`:`3esn`)Assert Exists((`7esn` :`8esn`:`7esn`)-[?:`2esn` *00]->(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]}).`7esn`)"), - octest_legacy:ct_string("Cypher 12.999 Start _usn4=Rel:#usn8(\"d_str\") ,#usn7=Relationship:`7esn`('s_str') Union Start ``=Rel:#usn8(_usn3='s_str') ,`7esn`=Rel:`6esn`(\"d_str\")Where 0[..usn2][..{@usn5}] Delete $#usn7[..{`5esn`}][..9e12],{``}[$`8esn`..],Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6};"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Drop Constraint On(`8esn`:@usn6)Assert Exists([_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|`` Is Not Null Is Not Null]._usn4?)"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Drop Constraint On()-[@usn6:`3esn`]-()Assert Exists(({``:00 Starts With 0xabc,`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]}).`2esn`);"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Foreach(`3esn` In {123456789} Contains $#usn8| Create `7esn`=Shortestpath((((:`7esn`:_usn3{@usn5:07 Contains 0X7 Contains $`8esn`,`6esn`:{1000}[{_usn3}..]})<-[`3esn`? *..01]->(@usn5 :`5esn`)-[`8esn`?:usn1|@usn6{`8esn`:\"d_str\" Contains {123456789} Contains 01,@usn5:`1esn` In .e0 In {`3esn`}}]-(@usn6 :`1esn`{#usn8:`4esn`[1.0],``:.e12[@usn5..#usn7][010..{usn1}]})))) Match `2esn`=(({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->({`1esn`:{1000}[{_usn3}..],`1esn`:{123456789}[9e12][{0}]})),``=Shortestpath(((`` {@usn6:1.0[$`1esn`..][$123456789..]})-[?{`1esn`:$0[..9e1]}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]}))) Using Index `7esn`:usn2(`6esn`) Using Scan _usn3:_usn3 Where @usn6 Ends With {_usn3})"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 With Distinct [01[2.12..`8esn`],{7} In `2esn`,123456789 Ends With $`6esn` Ends With $#usn7] Starts With Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With `7esn`(Distinct {_usn4} Ends With `6esn`,{@usn6}[7]),$1000 =~$`2esn` As `6esn` Union Start `3esn`=Node:@usn6('s_str') ,`7esn`=Node:`4esn`(usn1=\"d_str\") Union All Merge usn2=((@usn6 :_usn4)) On Create Set `` =Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End,Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where 01[2.12..`8esn`]).`5esn` =Shortestpath(((:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]-(:`5esn`{``:1.0[0e0..0.e0]})<-[``? *..0x0{#usn7:False =~$7 =~2.12}]->(`3esn` :usn2)))[['s_str' In 00,{@usn6}[$`6esn`..`4esn`]]..][Case @usn6 Starts With `6esn` Starts With $`1esn` When {`3esn`}[`2esn`] Then Null In $7 In .e1 When {0}[@usn6..$1000] Then 12.0 Contains #usn7 End..] On Create Set _usn3+=$`3esn` Is Not Null Is Not Null,`3esn` ={`4esn`} Ends With {usn2} Ends With {999},{@usn6:{999} Starts With $999,`4esn`:$usn1[{`5esn`}][$`6esn`]}.@usn5? =$usn1[..{`6esn`}]"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Create Constraint On(`8esn`:`8esn`)Assert Exists({@usn5}.usn1?);"), - octest_legacy:ct_string("Cypher Create Constraint On(usn2:`3esn`)Assert Exists(Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 01234567 Is Null Is Null).`2esn`?)"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Match `7esn`=Shortestpath(((({#usn7:2.12 Contains usn2 Contains True})-[_usn3?:`6esn`|`5esn` *0X0123456789ABCDEF]-(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})))),`5esn`=((:@usn5)-[:#usn7{`2esn`:.e12 Ends With _usn4}]-(usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)) Using Scan #usn7:`2esn` Where $999 Merge Shortestpath(({`1esn`:0.12[$`3esn`..$_usn3][12.0..usn1]})<-[{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}]->(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`6esn`?:`3esn`|:#usn8{usn1:$usn1 In {999} In $#usn7}]-({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})) On Create Set `8esn`+=[9e1[..$`2esn`]][{`8esn`:False =~$7 =~2.12,`3esn`:Count ( * ) =~$usn2 =~$usn2}][Case {``} Is Null When 2.12 Then $123456789 Ends With {`1esn`} Ends With $`4esn` End] On Create Set None(`1esn` In {`6esn`}[..$@usn6][..`7esn`]).@usn5? =12.0 =~{`2esn`} =~{`1esn`},@usn6 =Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) Is Not Null Is Not Null Remove Filter(`5esn` In \"d_str\" Is Null Is Null Where `6esn`[..$@usn6]).usn2,Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {123456789} Is Null Is Null).`` Union All Remove Case When _usn3[$`8esn`] Then $0[..9e1] End.usn1?,[_usn3[_usn3..][12.e12..]].`8esn`!,None(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where False).`4esn`? Start `7esn`=Rel:_usn4(``={#usn7}) Start `6esn`=Relationship:`2esn`({0}) Where 0e0[..010] Union Start #usn7=Node:_usn4(#usn7=\"d_str\") ;"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Foreach(#usn8 In $`1esn` Ends With 9e1 Ends With $123456789| Start _usn3=Node:`8esn`(`1esn`={#usn7}) Where usn2[9e12] Remove Case When 01 Contains {`8esn`} Contains 2.12 Then $_usn3[Count(*)] Else {`3esn`}[@usn6..0Xa][{12}..0Xa] End.`5esn`!,[#usn8 In 7[..999][..{#usn8}] Where {`5esn`} Contains $0 Contains {``}|#usn7 Starts With {#usn7} Starts With `7esn`].`1esn`?) Return 1.e1 Is Null Is Null As @usn5,$`7esn` =~7 =~12e12 Limit $12[Count ( * )][0X7] Union All Remove Case When $#usn8[$`8esn`..{`8esn`}] Then $#usn8[$`8esn`..{`8esn`}] Else #usn8 Is Not Null Is Not Null End.@usn6! Start usn1=Node:_usn3({`6esn`}) ,`5esn`=Relationship(*)"), - octest_legacy:ct_string("Cypher Unwind {`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}[Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End..[`3esn` In {7} Is Null Where {123456789} Contains $#usn8|#usn7 =~Count ( * ) =~``]][`7esn`(9e1[1000][{123456789}]).._usn3(0.12 =~$0 =~$0)] As ``;"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 With Distinct *,$123456789 Starts With {_usn4} Starts With $1000,`6esn`(Distinct 0X7[`7esn`][123.654]) Is Not Null Is Not Null Skip $`7esn` Is Not Null Remove `2esn`($`6esn`[123456789..12][True..{`3esn`}],$`5esn`[`3esn`..]).``! Union All Merge usn1=Allshortestpaths((`` {@usn6:1.0[$`1esn`..][$123456789..]})-[`7esn`*]->(`7esn` {`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})-[@usn6]-(`5esn` {`4esn`:01 Is Null})) Union All With Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]) =~({``:$`8esn` =~{1000}})<-[#usn8? *0..]->(`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7}) =~Shortestpath((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})) As #usn8,Reduce(`8esn`={@usn5}[{#usn8}][9e0],`3esn` In {7} Is Null|0e0 Starts With 1000 Starts With #usn7)[Single(#usn8 In 7[..999][..{#usn8}] Where 123456789 Is Null)] Order By 's_str' In 00 Desc,{1000}[{_usn3}..] Descending,$usn1[...e0][..$_usn3] Asc Where 123.654[$`1esn`];"), - octest_legacy:ct_string("Explain Start `3esn`=Rel:`7esn`(`3esn`='s_str') ,``=Node:#usn8(`8esn`={`6esn`})Where usn1 Is Null Create Unique ((:_usn4)) Union Start _usn4=Node:`3esn`(`2esn`={usn1}) ,`6esn`=Node:``('s_str') Load Csv With Headers From $@usn6 Ends With $_usn4 Ends With 0.12 As `4esn` Start `8esn`=Relationship:`4esn`(`1esn`={`2esn`}) "), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Drop Constraint On()<-[usn2:`5esn`]-()Assert Exists(Allshortestpaths((@usn5 {`7esn`:$`6esn`[010..],#usn8:0.e0 Starts With `2esn`})-[@usn5]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})).usn1!)"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Drop Constraint On(`3esn`:@usn6)Assert Exists(Case {``} Is Null When {0} Then {`5esn`} Starts With $`5esn` Starts With .e1 End.`8esn`)"), - octest_legacy:ct_string("Explain Unwind 9e1 In 2.12 As @usn6 Return Distinct Case #usn7 Starts With {#usn7} Starts With `7esn` When $#usn7 Is Null Then Count(*) Is Null Is Null End =~Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))) =~Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {_usn4}[...e1][..$7]),Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..],{123456789} Contains $#usn8 As `3esn` Order By {`4esn`}[$123456789..][$#usn7..] Ascending Skip Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[usn2?:`5esn` *0..]-({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:usn1|@usn6 *00]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})))[..{_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]}] Load Csv From @usn6 Starts With `6esn` Starts With $`1esn` As _usn3 Union Remove {`3esn`:2.12 Contains usn2 Contains True}.`6esn`! Union All With 12[..$`4esn`] As `7esn`,(:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case When `6esn`[12..$usn2][{#usn8}..{usn2}] Then {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] When .e12[@usn5..#usn7][010..{usn1}] Then 0.12 =~$0 =~$0 End,Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Order By ({``:$`8esn` =~{1000}})-[:`8esn`*]->({_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]})-[`4esn`]->(:`6esn`$123456789) Contains Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {123456789}[0xabc..]) Asc,{@usn6}[..$7][..$`7esn`] Desc,None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12]) Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where $_usn3[.e0..$usn2]|{#usn7}[9e1..][{123456789}..]) Ends With Reduce(`2esn`={`3esn`} In 0X7,_usn3 In {`3esn`}[`2esn`]|$`5esn`[{`3esn`}]) Desc Skip (`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})[Single(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where Count(*) In $12)] Where $_usn3[{#usn7}] Foreach(`7esn` In $`3esn`[..$123456789][..$`1esn`]| Unwind [`` Is Not Null Is Not Null,`1esn` Contains {usn2} Contains $#usn8] Is Not Null As _usn4);"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Drop Constraint On(_usn3:`3esn`)Assert Exists([`3esn` In {7} Is Null Where 0.e0[123.654][01]].`5esn`!);"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Create Constraint On(@usn5:`6esn`)Assert Exists({`1esn`:\"d_str\" Starts With 01}.`4esn`!);"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Create Constraint On(usn2:``)Assert Exists(()<-[`1esn`?:`8esn` *123456789..]->(:`1esn`{@usn6:$usn1 Ends With $`` Ends With $12})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`).usn2!);"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Create (:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})-[?:`5esn`]->(:usn2),`2esn`=Shortestpath((({usn2:7[..999][..{#usn8}]}))) Union All Foreach(#usn8 In $`7esn` Is Not Null| Create #usn7=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}),@usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})) Create `3esn`=Allshortestpaths(((:usn1{_usn4})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})))) Delete Shortestpath((((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))))[..Case 0Xa =~123456789 =~_usn4 When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $1000 In $1000 In $`3esn` Then 0.e0[#usn8] End][..(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})],Case $1000[999] When `4esn`[`5esn`..12][@usn6..False] Then {0} Ends With $_usn3 Ends With $`7esn` When $usn1 In {999} In $#usn7 Then Count ( * )[True..][{#usn7}..] End Ends With {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null},`7esn` In 00 Start _usn4=Relationship:`1esn`({12}) ,@usn6=Relationship:`8esn`({`3esn`}) Union All Start `6esn`=Rel( {0}) With Distinct [`4esn` In $`3esn` Is Not Null Where $@usn5 Contains 0xabc Contains {#usn7}|`3esn`[{0}][usn1]] In [{12}[{7}][$123456789],`2esn` Starts With $_usn4] In count($1000 Is Null,0Xa[$123456789..123.654][.e12..0.e0]) Order By None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null) Desc,None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null) Desc Where $usn2[{@usn5}];"), - octest_legacy:ct_string("Explain Drop Constraint On(usn1:`6esn`)Assert Exists(None(`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1)._usn3!);"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Drop Constraint On()-[_usn3:`8esn`]-()Assert Exists(Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 01[2.12..`8esn`])._usn4);"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Start `3esn`=Relationship:#usn7('s_str') ,#usn7=Rel:_usn3({@usn5}) With #usn8 In $@usn6,1.e1[`8esn`][00] Skip 01 Ends With 999 Ends With {`7esn`} Where 123456789 Ends With $`6esn` Ends With $#usn7 Union All Create Unique `3esn`=Shortestpath((`4esn` {`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}})) Unwind `4esn`[`5esn`..12][@usn6..False] As `5esn` Create Allshortestpaths((`3esn` :#usn8:#usn8)),((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})-[`8esn`?:@usn6|`6esn`]-(`2esn` :`6esn`));"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Create Constraint On(@usn6:@usn6)Assert Exists({_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1}.`1esn`!);"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Create Constraint On(@usn6:`6esn`)Assert Allshortestpaths(((`4esn` {`6esn`:#usn8[..{#usn7}]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]}))).#usn7! Is Unique"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Drop Constraint On()<-[usn1:@usn6]-()Assert Exists(Shortestpath((((`8esn` :#usn8:#usn8{_usn4:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[#usn8]-(`6esn` :#usn7)<-[:#usn7 *..010]-(@usn6 :@usn5{usn2:$`5esn`[..$`5esn`][..$12]})))).@usn5!)"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Remove `2esn`(Distinct 123.654[0e0..$``][$`1esn`..$`8esn`],`5esn`[{`4esn`}..`2esn`]).#usn8!,Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0xabc[01..{999}][{7}..{`7esn`}]|0 In `2esn` In 010).`7esn`? Optional Match Shortestpath(((`` :usn2)<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})-[`2esn`?:usn2|``{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}]-({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}))) Using Join On ``,`4esn`,@usn6 Using Join On `5esn`,@usn6 With Distinct 07[$123456789..] Order By {7}[$7..$``][{``}..{7}] Descending,$_usn3[Count(*)] Desc Union Optional Match `8esn`=Allshortestpaths(((:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))),`2esn`=((`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(_usn3 :#usn7)<-[@usn5?]->(`1esn` :`5esn`{`5esn`:{``} Is Null})) Where $usn1[{`5esn`}][$`6esn`] Union Foreach(usn2 In {`3esn`}[`2esn`]| Load Csv From 2.12 Is Null As `7esn` ) With [9e1[..$`2esn`]][{`8esn`:False =~$7 =~2.12,`3esn`:Count ( * ) =~$usn2 =~$usn2}][Case {``} Is Null When 2.12 Then $123456789 Ends With {`1esn`} Ends With $`4esn` End] As `8esn`,`7esn` Is Null As `7esn` Skip $`4esn`[010..`4esn`] Where {1000} =~0 =~123.654 Merge `2esn`=Shortestpath((((:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})<-[:#usn7 *..010]-(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})))) On Match Set #usn8:usn2,usn1 =Reduce(`2esn`=1e1 In 123.654 In `3esn`,`5esn` In \"d_str\" Is Null Is Null|$_usn3[{#usn7}]) Is Not Null,`6esn` =0.e0 Starts With `2esn` On Match Set @usn5 =Extract(#usn8 In {`5esn`}[.e1..``] Where {`3esn`}[..07][..{`5esn`}]) Is Null Is Null"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Foreach(_usn4 In [1000 =~@usn6 =~0x0] Starts With {#usn8:$`7esn` =~{`8esn`} =~$usn1,`7esn`:0xabc[01..{999}][{7}..{`7esn`}]} Starts With `7esn`(Distinct 123.654[`3esn`..])| Unwind $12[`5esn`..] As `7esn` With *,`7esn` Is Null As `7esn`,None(`` In `` Is Not Null Is Not Null Where $`6esn` Is Null) Contains Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}))) Contains Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End Order By {usn2} Starts With $`8esn` Starts With Count ( * ) Asc,(:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(:_usn3:_usn3{``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Is Not Null Descending,.e0[..0X0123456789ABCDEF][...e12] Descending Limit {``}[...e12]) Union All Unwind {usn2} Starts With $`8esn` Starts With Count ( * ) As @usn5 Start usn1=Rel:@usn6(#usn7='s_str') ,`4esn`=Relationship:`3esn`({`1esn`})Where {123456789} Is Null Is Null"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Create Constraint On(@usn6:``)Assert (#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})<-[? *1000..00]->(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}).`8esn` Is Unique;"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Create Constraint On()-[`1esn`:usn2]-()Assert Exists(Reduce(`7esn`=01 =~{_usn3} =~`3esn`,usn1 In @usn5 =~{`5esn`} =~`5esn`|12e12[$`3esn`]).`3esn`);"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Create Unique @usn6=((`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})) With Distinct 0e0[..010] As _usn3,Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..]) In Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null) In Filter(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {#usn8}[.._usn4][..$`3esn`]) As `` Skip {12}[{7}][$123456789] Union Merge `5esn`=(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]->(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[`1esn`?:`8esn` *123456789..]->(#usn7 :`6esn`$1000) On Create Set Extract(`3esn` In {7} Is Null Where $#usn7[@usn5..{1000}][1.e1..7]|$7 Is Not Null Is Not Null).`4esn`! =Case When {``} Starts With $`2esn` Starts With `1esn` Then $`5esn` Starts With $0 Starts With {0} End[None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e1 Is Not Null)..[`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1]],[12[1.e1..{_usn3}][1.e1..1.0]].`8esn`? ={`4esn`:{`4esn`} =~{7} =~{`7esn`},`8esn`:$#usn7[#usn7..]} Is Null Is Null,usn1 =$_usn4 Contains Null Contains #usn8 Load Csv With Headers From 0 In `2esn` In 010 As `1esn` Fieldterminator 's_str' Match ``=(`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}),(#usn8 :@usn6:#usn8) Using Index `7esn`:usn2(`6esn`) Union Create (((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6}))),#usn8=(`5esn` :`4esn`)<-[_usn4 *..999]->({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5}) Optional Match Shortestpath((((:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[`2esn`?{`3esn`:{123456789} Is Null Is Null}]->(usn2 :#usn7)<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) Unwind Reduce(`6esn`=@usn5 Is Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{12} Ends With 1.0 Ends With .e0)[Filter(_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null)..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`|`7esn`[..2.12][..00])] As ``;"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Drop Constraint On(`5esn`:`7esn`)Assert Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null).`6esn` Is Unique;"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Unwind Null Ends With {`5esn`} Ends With 0.e0 As usn1 Load Csv From [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `4esn` Ends With 07 Ends With {`3esn`}|@usn5 Is Null] Is Null Is Null As #usn8 Fieldterminator \"d_str\" Union Match ((:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?:`5esn` *0..]->(usn2 :``:#usn8)<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})) Using Scan _usn4:@usn6 Where `` Ends With 0Xa Ends With `2esn` Merge #usn7=Allshortestpaths((@usn5 {`3esn`:.e1[..usn2][..`8esn`]})<-[usn2:`7esn`]->(:usn1{_usn3:{#usn7}[`2esn`..]})-[?:usn2|``$#usn7]-(#usn8 :``:#usn8{`7esn`:9e1[$usn2],_usn4:$_usn4 Contains Null Contains #usn8})) On Create Set @usn5 =(#usn8 :``:#usn8)-[]->(`5esn` {`4esn`:01 Is Null})-[_usn3:@usn5 *7..12{`2esn`:12.0 =~999 =~$_usn3}]->(`3esn` {usn1:$0[..9e1],@usn5:`7esn`[..{usn1}]}) =~None(#usn7 In {``} Is Not Null Where .e0 Starts With $`` Starts With $usn2) =~Case When 0X0123456789ABCDEF Ends With $`8esn` Ends With 0.12 Then `3esn` In $0 In `1esn` When \"d_str\"[#usn8] Then `7esn`[$0][9e12] Else {`7esn`} Is Null End On Match Set _usn4+={`7esn`}[`6esn`][#usn7],@usn6 =01 Is Null Union All Detach Delete ({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}),`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) In [#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]|@usn6 Contains $1000 Contains {`7esn`}] In Filter(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]),usn2[{7}] Foreach(`1esn` In 12[..$`4esn`]| Optional Match #usn7=Shortestpath((@usn6 {`3esn`:{``} Is Not Null})-[usn1?:@usn5*]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})),``=({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True}) Using Scan `1esn`:usn2 Using Scan `3esn`:`5esn` Where 1.0 Starts With 12e12 Starts With {`5esn`} Delete Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},Shortestpath(((:`8esn`:`7esn`$#usn7)-[`5esn`:`8esn`]->(#usn8 {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]}))) In [_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..]|1.0 Is Null Is Null] In Case When Count ( * ) Contains 07 Then 123.654[$`1esn`] End,$123456789 Is Null Is Null)"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Create Constraint On()-[@usn6:usn2]-()Assert Exists(`1esn`($1000[999],True In 0e0).`8esn`!)"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Unwind $0[$`1esn`..07] As usn2 With .e0 Ends With 0.12 As `6esn` Order By 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] Asc,[#usn8 In 7[..999][..{#usn8}] Where {12} =~#usn8|\"d_str\" Contains {123456789} Contains 01] Contains {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Descending Skip 0.0[Null][$`2esn`] Where 1000 In {`8esn`} In 01 Foreach(`8esn` In {#usn8}[$@usn5..usn1][$1000..0xabc]| Detach Delete Count(*) Contains $#usn7 Contains 1e1 Return Distinct *,{_usn4:Count ( * )[True..][{#usn7}..],``:{``} Ends With `7esn` Ends With 0.0} In (usn2 {``:01[{@usn5}]})<-[?:_usn4|:usn2{`8esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],``:_usn3 Contains $123456789 Contains ``}]->(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(:_usn4{_usn4:{7} In `2esn`}) In {`4esn`:`7esn` Is Null} As `2esn`,`5esn` Is Null Order By Reduce(@usn6=$1000[999],`8esn` In 01[2.12..`8esn`]|#usn7 Is Null Is Null)[_usn3(0.12 =~$0 =~$0)..][count($12 Ends With 07 Ends With $123456789,`8esn`[{123456789}..])..] Desc Skip `5esn`({12} Ends With 1.0 Ends With .e0) Contains `3esn`(`5esn`[{`4esn`}..`2esn`],9e1[2.12..{#usn8}]) Contains (@usn5 :#usn7)<-[``?:`3esn`|:#usn8{`1esn`:.e0[..$`8esn`]}]-(`5esn` {`4esn`:01 Is Null})<-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(_usn4 ) Limit {@usn5} =~Count ( * ) =~12.0)"), - octest_legacy:ct_string("Cypher Drop Constraint On(#usn8:`3esn`)Assert Case When 1.0 Starts With 12e12 Starts With {`5esn`} Then {0} End.usn2 Is Unique;"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Create Constraint On()-[#usn7:@usn6]->()Assert Exists(`7esn`(Distinct {999}).usn1?);"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Create Constraint On(`2esn`:`4esn`)Assert Exists({`3esn`:.e0 Starts With 0 Starts With 0.e0}._usn3?);"), - octest_legacy:ct_string("Explain Drop Constraint On()-[usn2:`7esn`]->()Assert Exists(Extract(#usn7 In {``} Is Not Null Where @usn5 In {`7esn`} In `2esn`).`1esn`);"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Drop Constraint On()-[@usn6:_usn4]-()Assert Exists(Allshortestpaths(((@usn5 :`4esn`))).`4esn`!)"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Create Unique `7esn`=Allshortestpaths(((`1esn` ))) Union All Start @usn5=Rel:#usn8(\"d_str\") ,`2esn`=Rel:#usn8({``})Where 0X0123456789ABCDEF[123456789] Foreach(#usn8 In {123456789}[0.e0..$123456789][0Xa..`6esn`]| Remove Case When `2esn` Is Null Then 1000 =~@usn6 =~0x0 Else \"d_str\"[#usn8] End.`1esn` Start usn2=Node:usn1(`4esn`='s_str') ,_usn3=Node:`7esn`(`3esn`='s_str')) With Distinct [01[2.12..`8esn`],{7} In `2esn`,123456789 Ends With $`6esn` Ends With $#usn7] Starts With Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With `7esn`(Distinct {_usn4} Ends With `6esn`,{@usn6}[7]),$1000 =~$`2esn` As `6esn`;"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Create Constraint On(@usn5:`1esn`)Assert Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $0[``][{@usn6}]).`7esn` Is Unique"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Create Constraint On(_usn4:_usn3)Assert Exists(Case When 0x0 Ends With $12 Then 07 =~01 When 0X7[`7esn`][123.654] Then 's_str' Ends With 7 Ends With {_usn4} End._usn3!);"), - octest_legacy:ct_string("Cypher Create Constraint On(#usn8:`4esn`)Assert Exists(Shortestpath(((({#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[`4esn`]->(:`6esn`$123456789)))).usn2!);"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Drop Constraint On()<-[`4esn`:@usn6]-()Assert Exists(Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`4esn`} Starts With $usn2 Starts With $1000).`7esn`)"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Drop Constraint On()<-[`1esn`:`6esn`]-()Assert Exists(Reduce(`4esn`=$`3esn`[..$123456789][..$`1esn`],@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|$#usn8[$`8esn`..{`8esn`}]).`7esn`);"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Create Constraint On()<-[`2esn`:`7esn`]-()Assert Exists(All(`2esn` In `1esn` =~\"d_str\" Where 0.12 In _usn3 In {0}).``!)"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Drop Constraint On(@usn6:#usn7)Assert Exists((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[usn1? *0X0123456789ABCDEF]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->(_usn3 {`5esn`:12.e12[0xabc],`2esn`:{`7esn`}[..$@usn5][..$#usn8]}).`8esn`)"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Create `7esn`=(@usn6 :`6esn`)-[`6esn`?:#usn7]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}) Union Delete All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {_usn4} Is Not Null Is Not Null) Is Null With {`5esn`} =~`4esn` =~{_usn4} As `4esn`,Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]) =~Reduce(usn1=.e1 Ends With 1e1 Ends With @usn5,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$#usn7[#usn7..]) =~`1esn`($1000 Is Null) As @usn6,07 =~01 Order By `5esn`[_usn4..] Desc Skip `8esn`[{123456789}..] Start `5esn`=Node:`7esn`('s_str') ,usn1=Node:#usn8({``});"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Create #usn8=Shortestpath(((`5esn` )-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(@usn6 {`3esn`:{``} Is Not Null})<-[`1esn` *0Xa{_usn3:Null Ends With `2esn` Ends With $usn1,#usn8:.e12 Is Not Null Is Not Null}]->(usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]}))) Optional Match (((`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})-[usn1:_usn3|_usn3 *..999{`2esn`:'s_str'[00][{`5esn`}],@usn6:999 Is Not Null Is Not Null}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]}))),(@usn6 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}) Where 123.654[`3esn`..] Foreach(usn1 In usn1(Distinct $@usn5 Starts With $1000)[[`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}|0Xa =~Null =~$``]..]| With Distinct $`8esn` Contains 123456789 Contains $usn2,{_usn4} In {12} In $0,Extract(#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12) Ends With [False =~$7 =~2.12,$`4esn` In Null In 0xabc,{`7esn`} Starts With $123456789 Starts With $@usn6] Skip _usn3[..`8esn`][..2.12] Limit 0X7[0e0..`7esn`][1000..0e0]);"), - octest_legacy:ct_string("Explain Drop Constraint On(@usn6:_usn3)Assert Exists((`` :`2esn`:usn1{`2esn`:$7 Is Not Null Is Not Null,`1esn`:`1esn` =~\"d_str\"})<-[usn2?:`5esn`{`8esn`:{_usn4}[1000..{@usn5}],_usn3:12e12 Ends With {usn1}}]-(usn2 {_usn3:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`1esn`:7[$`8esn`..123456789][$usn1..$usn1]})<-[ *..12]->(`3esn` :@usn5{`8esn`:$`8esn` =~{1000}}).`6esn`);"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Create Constraint On(``:@usn6)Assert [$@usn5 Is Not Null,_usn3[_usn3..][12.e12..]].#usn8? Is Unique;"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Drop Constraint On(`6esn`:@usn6)Assert Exists(All(#usn8 In 7[..999][..{#usn8}] Where $1000 In $1000 In $`3esn`).`8esn`?);"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Create `7esn`=Shortestpath((((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``})))),((:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12}));"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Delete $`7esn` Is Not Null,`2esn`(Distinct $``,7 Starts With {@usn6} Starts With $``) Contains {@usn6:_usn3[$`8esn`],usn1:$@usn5 Is Not Null} Contains {@usn5:`8esn`[{123456789}..]},Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..]) In Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null) In Filter(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {#usn8}[.._usn4][..$`3esn`]) Load Csv With Headers From 9e0 As `1esn` Load Csv From [`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null As usn2 Fieldterminator 's_str' Union All Create Allshortestpaths((:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 :usn1)) Foreach(@usn5 In 2.12 Is Null| Load Csv With Headers From `5esn`[.e0..][07..] As `6esn` Fieldterminator \"d_str\" Match _usn4=(:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null})) Detach Delete 010[..12e12][..12e12],Allshortestpaths((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))) Contains Filter(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]) Contains Shortestpath(({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})),Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`)[None(#usn8 In 7[..999][..{#usn8}] Where 0Xa[2.12])..][[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789]]..] Union All Start usn1=Node:#usn8(\"d_str\") "), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Create Constraint On(`5esn`:`5esn`)Assert Exists(Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..])._usn4!)"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Create Constraint On(#usn8:usn1)Assert Allshortestpaths((({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})-[`6esn`?]->({@usn6:$usn1 Ends With $`` Ends With $12}))).``! Is Unique"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Load Csv From {`2esn`}[$`4esn`][$`5esn`] As `7esn` Start `2esn`=Node:@usn6({_usn4}) "), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Create Constraint On(``:usn2)Assert Exists(Any(`5esn` In \"d_str\" Is Null Is Null Where 00[$`7esn`]).`5esn`);"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Create `7esn`=Allshortestpaths(((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[`1esn`?:usn2|``{_usn4:$`4esn`[..$`3esn`][..0.0],@usn6:0e0 Starts With 2.12 Starts With $12}]->(:_usn3:_usn3{`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})<-[`8esn` *0X0123456789ABCDEF]->(usn2 :_usn4))),#usn7=Allshortestpaths((@usn6 :`6esn`)<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3));"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Drop Constraint On(usn1:usn1)Assert Extract(`` In `` Is Not Null Is Not Null Where `4esn`[..Count ( * )][..{#usn7}]|00[`2esn`..12][123456789..0.e0]).usn2? Is Unique;"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Create Constraint On(`4esn`:`1esn`)Assert Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..]|0xabc[01..{999}][{7}..{`7esn`}])._usn3! Is Unique"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Return Distinct (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(:_usn3:_usn3{``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Is Not Null,$#usn8[Count ( * )] As `4esn` Order By Case When Count(*) In $12 Then .e0 Starts With 0 Starts With 0.e0 When {usn1}[0X0123456789ABCDEF] Then $`6esn`[123456789..12][True..{`3esn`}] Else 7 Starts With {@usn6} Starts With $`` End[Case @usn6 Contains $1000 Contains {`7esn`} When 0.12 =~$0 =~$0 Then $usn1[.._usn4][..False] When {0} Ends With $_usn3 Ends With $`7esn` Then 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3] End..] Desc,False Ascending Skip `2esn`[{`4esn`}][$_usn3] Limit Reduce(`4esn`=01 Ends With 999 Ends With {`7esn`},`4esn` In $`3esn` Is Not Null|1.0[`3esn`..][9e0..]) Is Null Is Null Load Csv With Headers From Case When {_usn4} Starts With 0.e0 Starts With 0x0 Then 12 Ends With 0x0 Ends With 0.e0 Else $1000 Is Null Is Null End Starts With `7esn`(Distinct $#usn7[..{`5esn`}][..9e12]) Starts With {`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`} As _usn3 Fieldterminator \"d_str\" Return Distinct .e0 Ends With 0.12,{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}[Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End..[`3esn` In {7} Is Null Where {123456789} Contains $#usn8|#usn7 =~Count ( * ) =~``]][`7esn`(9e1[1000][{123456789}]).._usn3(0.12 =~$0 =~$0)] As `8esn`,{`6esn`} =~$999 As usn1 Skip {`4esn`}[#usn7..$123456789][{7}..usn2] Limit Case _usn3[$`8esn`] When 12e12 Contains 0Xa Then 7[{0}..{_usn4}] End Starts With {#usn7:Null Ends With `2esn` Ends With $usn1,`5esn`:12.0} Union Remove Case When 1.0 Starts With 12e12 Starts With {`5esn`} Then {0} End.usn1!,Case When 1.0 Contains $_usn4 Then {999} Contains .e0 Contains 12.0 Else `5esn`[_usn4..] End.#usn8! Start _usn4=Node:`3esn`(`2esn`={usn1}) ,`6esn`=Node:``('s_str') Unwind 999 In {`3esn`} In usn2 As `6esn` Union Return *,$`7esn`['s_str'] As #usn8,Reduce(`3esn`=$0[..9e1],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|999 In {`3esn`} In usn2) Starts With Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Starts With Allshortestpaths((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})) As `` Limit {@usn5} =~Count ( * ) =~12.0;"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Drop Constraint On()-[`5esn`:_usn3]-()Assert Exists(`7esn`(Distinct #usn7 Starts With {#usn7} Starts With `7esn`,9e0).@usn5);"), - octest_legacy:ct_string("Explain Unwind False Ends With `3esn` As `8esn` Union All Foreach(`4esn` In $#usn7 Is Not Null Is Not Null| With *,123.654 Is Not Null,Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..] As `7esn` Skip Case When 1.0 =~'s_str' =~{`2esn`} Then $`5esn` In $`6esn` When {`7esn`}[..{`4esn`}] Then {usn1} Ends With $0 End[All(`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"])..[Count ( * )[0.12...e1],1.0[00..],$``]][`4esn`(`4esn` Ends With 07 Ends With {`3esn`})..Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `1esn` =~\"d_str\"|9e12 Is Not Null Is Not Null)] Limit Single(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}])[Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] Where 00 Starts With 0xabc Optional Match _usn3=Shortestpath((:`3esn`:@usn5{`2esn`:{`3esn`}[..07][..{`5esn`}]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})),usn2=({@usn5:usn1 Is Not Null})<-[`3esn`:`6esn`|`5esn` *..12{usn1:0X0123456789ABCDEF Is Null Is Null}]-(:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})) Remove $999.``,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789].`5esn`?,(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})-[usn2?]-(:@usn5)<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->(`7esn` {`5esn`:123.654 Contains $`4esn` Contains 1.0,`8esn`:123.654 =~$usn2 =~{999}}).`5esn`? Union All Load Csv With Headers From 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] As #usn8 Fieldterminator 's_str' Detach Delete $#usn7 Contains 0x0 Contains 1000,{7}[..12e12][..Count ( * )],None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`3esn`} In 01)[Allshortestpaths((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null}))..{@usn6:.e0[..$`8esn`],`6esn`:12 Ends With 0x0 Ends With 0.e0}];"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Create Constraint On()<-[`8esn`:#usn8]-()Assert Exists(None(`3esn` In {7} Is Null Where {123456789} Contains $#usn8)._usn3);"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Drop Constraint On(_usn3:`8esn`)Assert (@usn6 :``:#usn8)-[#usn8?{`5esn`:#usn7 Contains _usn3 Contains {`3esn`}}]-(:``:#usn8)<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(:usn2{`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]}).#usn8? Is Unique"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Create Unique #usn8=Allshortestpaths(((:`1esn`{@usn6:$usn1 Ends With $`` Ends With $12})-[]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]}))) Merge `6esn`=({usn1:$`3esn` In $_usn4 In {_usn3}})-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})-[``?]-(#usn8 :@usn6:#usn8{`2esn`:$7 Is Not Null Is Not Null,`1esn`:`1esn` =~\"d_str\"}) Remove Shortestpath(((_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})-[`6esn`?:`3esn`|:#usn8{usn1:$usn1 In {999} In $#usn7}]-({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``}))).@usn6?,[{usn2}[.e0..$999],123456789[{123456789}..'s_str'],{`4esn`} Starts With $usn2 Starts With $1000].`5esn` Union Remove None(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`3esn`} Is Not Null Is Not Null).`` Load Csv From {999}[1000..{usn2}] As @usn6 Union Create _usn4=Allshortestpaths((:_usn4{usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})),({`4esn`:`7esn` Is Null});"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Drop Constraint On(``:#usn7)Assert Exists([{`4esn`} Ends With {123456789} Ends With $`4esn`].usn1!);"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Merge ((:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[ *0xabc..{usn2:{12} Is Not Null,`6esn`:``[$`2esn`]}]-(`4esn` {`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})) On Create Set usn1 =0.e0[123.654][01],@usn5+=$`8esn`[$`7esn`..][0.e0..] Match `8esn`=(((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) Using Join On `8esn`,@usn5 Where 123456789[0xabc..'s_str'][``..`1esn`];"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Create Constraint On(`7esn`:@usn6)Assert Exists(Filter(`` In `` Is Not Null Is Not Null Where 9e1[1000][{123456789}]).`6esn`?)"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Create Constraint On(`2esn`:usn1)Assert {`5esn`:$123456789 In 0X0123456789ABCDEF In 0.e0,``:$1000[0Xa][{#usn7}]}.`7esn` Is Unique;"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Create Constraint On(`4esn`:_usn3)Assert None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]).`8esn`! Is Unique"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Unwind 07 Contains 0X7 Contains $`8esn` As `6esn` Unwind (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8)[Reduce(`7esn`=7[$`2esn`..{`5esn`}],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$_usn4[0e0..][False..])..({``:00 Starts With 0xabc,`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})][{}..{@usn6:`4esn`[..010][..{12}]}] As _usn4 Create Unique (`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[`8esn`?:@usn6|`6esn`]-(`2esn` :`6esn`) Union All Create Unique @usn6=Shortestpath(((:@usn6:#usn8{`4esn`:$`8esn`[..00]})<-[_usn4?:_usn4|:usn2 *00]->(:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))),#usn8=Shortestpath((#usn8 :@usn5)) Union Unwind 0.12[`2esn`..{`6esn`}] As `6esn` With Distinct *,1000[0X7..2.12] As `4esn` Limit {7}[$7..$``][{``}..{7}] Where _usn3 Starts With 12.e12 Starts With 0.12 Unwind `7esn`(usn2 Is Null)[Case {usn1}[0X0123456789ABCDEF] When $`` Then `8esn` Contains $usn1 Contains $12 Else 's_str'[00][{`5esn`}] End] As @usn6;"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Foreach(usn1 In {12} Ends With 0Xa Ends With $`6esn`| Create Unique Allshortestpaths(((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})-[`7esn`:#usn8|`1esn` *0xabc..]->(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]->(:@usn6:#usn8))),#usn7=Allshortestpaths((@usn6 :`6esn`)<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3)) Optional Match `1esn`=(#usn8 {`2esn`:$`5esn`[..$`5esn`][..$12]}),@usn5=Allshortestpaths(()<-[_usn4 *..999]->(`7esn` {#usn7:\"d_str\" Contains {123456789} Contains 01,@usn5:$1000 In $1000 In $`3esn`})) Where 1000[0X7..2.12]) Return Distinct *,Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`]|123456789 Ends With 12.e12 Ends With $`7esn`) Is Not Null As `6esn` Order By {#usn7:0X0123456789ABCDEF =~1e1 =~{`4esn`},`2esn`:1.0 =~'s_str' =~{`2esn`}}[..None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 0X7[`7esn`][123.654])][..(:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})<-[`2esn`?:`7esn`]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})] Asc,usn2 Is Null Desc,$_usn3 Starts With $@usn6 Starts With {`8esn`} Desc Limit Reduce(`3esn`=12.0[123.654][Count(*)],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|`1esn` =~\"d_str\")[..Case When $`` Is Not Null Then 12[1.e1..{_usn3}][1.e1..1.0] When 7[True..][2.12..] Then $_usn4 Is Not Null Is Not Null End][..Case When $#usn8[$`2esn`..][{`2esn`}..] Then 0X7[1000..{`1esn`}] When {#usn8}[{7}] Then 07 In `2esn` In 12e12 Else $`1esn` Ends With 9e1 Ends With $123456789 End]"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Create `8esn`=Allshortestpaths(((:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))),`2esn`=((`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(_usn3 :#usn7)<-[@usn5?]->(`1esn` :`5esn`{`5esn`:{``} Is Null})) Union All Create Shortestpath(((:@usn6:#usn8{`4esn`:{`7esn`} Is Null,_usn4:$123456789 Ends With {`1esn`} Ends With $`4esn`}))) Foreach(`4esn` In $1000[`2esn`..`5esn`][1e1..1.e1]| Start `6esn`=Rel:#usn8(@usn6={_usn4}) ,`5esn`=Relationship:@usn5(\"d_str\")) Union All Unwind Extract(`5esn` In \"d_str\" Is Null Is Null)[Any(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``)][Case $`7esn` Is Null Is Null When {#usn7}[9e1..][{123456789}..] Then False =~1e1 =~0.e0 Else 1000 In {`8esn`} In 01 End] As `2esn` Create Unique @usn6=Allshortestpaths((`6esn` :`8esn`:`7esn`)<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})),``=((`5esn` :_usn4{7})-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})) Create Unique ((`4esn` {``:{#usn8}[010],usn1:{``} Starts With $`2esn` Starts With `1esn`}));"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Load Csv With Headers From {`3esn`}[..07][..{`5esn`}] As `1esn` Fieldterminator 's_str' Delete 12.0 Contains #usn7,$12[Null..Count(*)][{`5esn`}..{999}],Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where `5esn` Starts With $`2esn` Starts With $1000) Ends With Reduce(``=0.12 =~$0 =~$0,`2esn` In `1esn` =~\"d_str\"|9e12[`1esn`..][$`1esn`..]) Start `3esn`=Rel:#usn8(`8esn`={`6esn`}) ,usn1=Node:`3esn`(`2esn`={usn1});"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` With Allshortestpaths(((`8esn` ))) Ends With (`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]}),$_usn3['s_str'][07] As @usn5 Skip $_usn4[0e0..][False..] Return 12 Ends With $usn2 As #usn8,$`3esn` In Null As @usn6 Unwind ({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)[Shortestpath((((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``}))))..][{usn2:{7}[..1.0][..9e0]}..] As `8esn` Union Start #usn7=Node:`5esn`(\"d_str\") With Distinct None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As `5esn`,01 Is Null As `2esn`,{1000} =~$_usn4 Detach Delete Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})]"), - octest_legacy:ct_string("Explain Drop Constraint On()<-[`4esn`:@usn5]-()Assert Exists([$@usn5[..12e12][..$123456789]].`3esn`?)"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Drop Constraint On(`8esn`:@usn6)Assert Exists(Case When 0.12[`2esn`..{`6esn`}] Then 7[{0}..{_usn4}] When $@usn5 Starts With {0} Starts With 12 Then `` Ends With 123456789 Ends With 123.654 Else $`8esn`[$`6esn`..$`4esn`][0.12.._usn3] End._usn3?);"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Match @usn5=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})),(`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]}) Merge Shortestpath(((:#usn8:#usn8)-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12}))) On Match Set `5esn` =All(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`2esn`} Is Not Null)[Filter(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`4esn`} Starts With $usn2 Starts With $1000)..Reduce(`8esn`={`2esn`} Is Not Null Is Not Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{usn1} Ends With $0)][Allshortestpaths(((`1esn` )))..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] On Match Set `7esn` =`4esn`[..010][..{12}],@usn5+=0X7[$999][_usn4],@usn5 =0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn` Load Csv From 2.12[{7}..] As #usn8 Union Create (((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7}))),((:#usn8:#usn8{_usn4})<-[usn1?:`7esn`]-(:usn1{usn1:{`6esn`}})) Merge ((#usn7 :#usn7)<-[#usn8:@usn6|`6esn`{`8esn`:True[00][0Xa]}]->(`7esn` :`7esn`:_usn3{usn2:_usn3[$`8esn`]})) On Match Set Case When 1.0[0X0123456789ABCDEF] Then 9e1 In $`3esn` In $@usn6 End.#usn8? =12e12 Is Null Is Null,Filter(#usn8 In 7[..999][..{#usn8}] Where 0e0 Contains Null).`6esn`! =0xabc[.e0],@usn6+={999} Is Null Is Null On Create Set `4esn` =Shortestpath(((({#usn7:2.12 Contains usn2 Contains True})-[_usn3?:`6esn`|`5esn` *0X0123456789ABCDEF]-(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}))))[Case When $999[0.0..] Then 12 Ends With 0x0 Ends With 0.e0 When `` Is Not Null Is Not Null Then {`3esn`}[..07][..{`5esn`}] End..[`3esn` In {7} Is Null Where usn1 Is Null Is Null]],Case When Count ( * ) Ends With $@usn5 Then _usn4 Contains 2.12 Else False =~$7 =~2.12 End.`5esn`! =7 Ends With $`4esn` Return 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] As #usn8,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6} As _usn4,12.0 Ends With True Ends With 123456789 As #usn7 Skip $1000 Is Not Null Union All With Distinct Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn`,{``}[$#usn8..$usn1] As @usn6,None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`]) Is Not Null Order By $0[..9e1] Descending,{usn1}[Count(*)..] Desc Skip (`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})-[:`6esn`|`5esn`{`8esn`:$0 Ends With 12.0}]->(`5esn` {`4esn`:7[$`2esn`..{`5esn`}],@usn6:{7} Is Null}) Contains Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) Contains Case 9e12 Is Not Null Is Not Null When 0[..usn2][..{@usn5}] Then 0e0 Ends With 1.e1 Ends With $`4esn` Else usn1 Is Null End Where $`5esn` In $`6esn` Load Csv With Headers From `6esn`[12..$usn2][{#usn8}..{usn2}] As `2esn` Fieldterminator \"d_str\";"), - octest_legacy:ct_string("Explain Create Constraint On(`3esn`:usn1)Assert {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}.`2esn` Is Unique;"), - octest_legacy:ct_string("Cypher Create Constraint On()<-[`8esn`:`4esn`]-()Assert Exists(Reduce(`3esn`=12.0[123.654][Count(*)],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|`1esn` =~\"d_str\").usn1?);"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Create Constraint On(#usn7:`4esn`)Assert Allshortestpaths((_usn4 :#usn7)<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]})).`4esn` Is Unique;"), - octest_legacy:ct_string("Explain Return Distinct {``} =~12 =~`` As `2esn`,Filter(`4esn` In $`3esn` Is Not Null Where {`6esn`}) =~{_usn3:{`3esn`} Is Not Null Is Not Null} Skip 1.0[00..] Limit 12.e12 Starts With {999} Starts With {`1esn`} Union All Merge (@usn5 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[:#usn8|`1esn`*{`8esn`:0Xa[usn2..]}]-(`3esn` :_usn3:_usn3{@usn5:False}) On Match Set #usn8+={#usn8}[1.e1...e12];"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Drop Constraint On()<-[usn2:`6esn`]-()Assert Exists(Extract(#usn7 In {``} Is Not Null Where `8esn`[{123456789}..]).`3esn`);"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Drop Constraint On(`3esn`:usn2)Assert [`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 123.654[$`1esn`]]._usn3! Is Unique;"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Drop Constraint On(`5esn`:`2esn`)Assert {_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]}.`7esn`! Is Unique"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Drop Constraint On(#usn8:`7esn`)Assert Exists(Filter(usn1 In @usn5 =~{`5esn`} =~`5esn` Where $`1esn`[1.0..][_usn3..]).`4esn`);"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Create Constraint On()-[#usn8:`3esn`]->()Assert Exists([$_usn4 Contains Null Contains #usn8,usn2 Is Null,$`8esn`].@usn5?);"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Drop Constraint On(_usn4:`3esn`)Assert {_usn4:True[07..$usn2][$7..{usn1}]}.``? Is Unique"), - octest_legacy:ct_string("Cypher Drop Constraint On()<-[`8esn`:#usn8]-()Assert Exists(Any(`` In `` Is Not Null Is Not Null Where {`7esn`} Is Null).`2esn`)"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Load Csv With Headers From 0Xa[..{`4esn`}][..12.0] As `7esn` Fieldterminator \"d_str\" Delete {@usn6:$_usn3[..1000]} Is Null Is Null"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Create Constraint On(`3esn`:`7esn`)Assert All(#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn1 Is Not Null).`5esn`! Is Unique"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Drop Constraint On(`5esn`:_usn4)Assert [`` In `` Is Not Null Is Not Null Where `1esn` =~0 =~$#usn7|'s_str' In 00].`2esn`! Is Unique"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Create Unique `1esn`=((:usn2{#usn8:$`5esn` In $`6esn`})<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})) Merge `2esn`=Allshortestpaths(((#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})-[`8esn`?:@usn6|`6esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}))) On Create Set _usn3+=Case _usn3[$`8esn`] When 12e12 Contains 0Xa Then 7[{0}..{_usn4}] End Ends With Reduce(usn2=$`5esn`[`3esn`..],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|{_usn4} In {12} In $0) Ends With [$0],#usn8+=12.e12 Is Null Is Null Create Unique ((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})),Allshortestpaths(((`2esn` :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})))"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Optional Match (((_usn4 :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})<-[``?:_usn4|:usn2{`1esn`:False Is Null Is Null}]->(usn2 :`6esn`{#usn7:Count ( * ) Contains 07}))),``=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))) Where usn2 Is Null Merge usn1=Shortestpath((`7esn` :``:#usn8)<-[ *0X7..]-(`2esn` {_usn3:`1esn` Contains {usn2} Contains $#usn8})-[_usn4:#usn8|`1esn`{`6esn`:#usn8[..{#usn7}]}]->(#usn7 :`4esn`)) Foreach(usn1 In \"d_str\" Starts With 01| Unwind [`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"]|$#usn7 Is Null][..{`4esn`:{`4esn`} =~{7} =~{`7esn`},`8esn`:$#usn7[#usn7..]}] As @usn6);"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Delete 123456789[#usn8..False],9e1 In 2.12 Load Csv From Shortestpath(({`7esn`:\"d_str\" Starts With $123456789})<-[`4esn`:``{usn1:`` Is Not Null Is Not Null,usn1:{1000}[{_usn3}..]}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[`4esn`]->(:`6esn`$123456789)) Is Null As `7esn` Merge (`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}) On Create Set usn1+=Extract(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|{@usn5} Is Null Is Null)[Case When $0[..9e1] Then Count(*)[..usn2][..usn2] When {`2esn`} Starts With 0.0 Starts With {usn1} Then 0e0 In @usn5 Else 01 =~{_usn3} =~`3esn` End.._usn3(1.0 In Count(*),0[{usn2}..][$`6esn`..])][count(Distinct $12[Null..Count(*)][{`5esn`}..{999}],$`4esn`[`7esn`])..Case When $123456789 Ends With $999 Ends With {999} Then `3esn`[{usn1}] When #usn7 =~Count ( * ) =~`` Then $_usn4 Starts With 1e1 End],`7esn` =[12.0,2.12 Is Not Null Is Not Null][Case When usn1 In 7 In {123456789} Then `5esn`[_usn4..] When `7esn`[9e0..] Then {`3esn`} In 01 End..999] On Match Set Shortestpath(({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[`6esn`? *0..]-(:usn1{`3esn`:{123456789} Is Null Is Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})).`6esn` =$`8esn`[1000..0Xa],`4esn`+=1e1[1000..],(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})-[? *0Xa]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(`3esn` :`6esn`).#usn7! =1000 =~@usn6 =~0x0 Union All Foreach(#usn8 In $`7esn` Is Not Null| Create #usn7=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}),@usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})) Create `3esn`=Allshortestpaths(((:usn1{_usn4})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})))) Delete Shortestpath((((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))))[..Case 0Xa =~123456789 =~_usn4 When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $1000 In $1000 In $`3esn` Then 0.e0[#usn8] End][..(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})],Case $1000[999] When `4esn`[`5esn`..12][@usn6..False] Then {0} Ends With $_usn3 Ends With $`7esn` When $usn1 In {999} In $#usn7 Then Count ( * )[True..][{#usn7}..] End Ends With {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null},`7esn` In 00 Start _usn4=Relationship:`1esn`({12}) ,@usn6=Relationship:`8esn`({`3esn`})"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Create Constraint On(_usn3:usn2)Assert Exists(Filter(`4esn` In $`3esn` Is Not Null Where 12.0 =~999 =~$_usn3).`5esn`!)"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Remove Any(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..]).usn2 Remove `8esn`(Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},9e1[$usn2]).`8esn` Union Return *,0X7[1000..{`1esn`}],12.e12 Is Null Is Null Order By $`6esn`[{_usn3}..$`4esn`][$_usn4...e12] Descending,$`6esn`[.e0..$`6esn`][$_usn3..{#usn7}] Desc Skip `4esn` Is Not Null Is Not Null Load Csv With Headers From 0Xa Starts With {`6esn`} Starts With $usn1 As `` Union All Merge @usn5=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})) On Create Set [{#usn8}[010]].`8esn`! =`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) In [#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]|@usn6 Contains $1000 Contains {`7esn`}] In Filter(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]),`2esn`+=9e1[1000][{123456789}] On Create Set `` =2.12 =~False,#usn7+=$usn1[..{`6esn`}],#usn7+=(:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12} Unwind Count(*) In $`3esn` In 0Xa As `1esn` Return Distinct {123456789} =~`8esn` =~@usn5 As `5esn` Order By {`4esn`} In 1.0 Descending,`8esn`(Distinct $#usn7 Is Null) Ends With Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]) Ends With Shortestpath(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))) Descending Skip {`4esn`}[#usn7..$123456789][{7}..usn2];"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Drop Constraint On(@usn5:`5esn`)Assert (`5esn` :`2esn`:usn1)-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-(:#usn8:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[:`3esn`|:#usn8 *7..12{@usn5:_usn4 Starts With $_usn4 Starts With 12.e12}]-(`3esn` :_usn4).`8esn` Is Unique;"), - octest_legacy:ct_string("Explain Using Periodic Commit Load Csv From 0X0123456789ABCDEF[{_usn4}..00] As @usn5 Create Unique (:`1esn`{})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(:`6esn`$123456789) Remove Case When {usn2} =~12 Then `7esn`[..2.12][..00] When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null End.usn2?,[1000 =~@usn6 =~0x0,12.e12[7..$`6esn`],_usn4 Is Null Is Null].#usn7,[{_usn4} Is Not Null Is Not Null,{#usn7} Is Not Null Is Not Null,$usn1[.._usn4][..False]].`4esn`!;"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Create Constraint On(`2esn`:`6esn`)Assert {_usn4:12e12[$`3esn`],_usn3:usn2 Is Null}.`3esn`? Is Unique"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Create Constraint On(@usn5:@usn6)Assert Exists(Allshortestpaths((({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]})))._usn3)"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Create Constraint On(usn1:`7esn`)Assert Exists(Single(#usn8 In 7[..999][..{#usn8}] Where .e0[..$`8esn`]).#usn8);"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Unwind [$`5esn`[..$`5esn`][..$12],01[2.12..`8esn`],_usn3 Contains $123456789 Contains ``] As `1esn` Remove Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..]|0xabc[01..{999}][{7}..{`7esn`}]).`8esn`!,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]|123456789[#usn8..False]].`5esn`?,[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0.0 In $usn1|{#usn8}[{7}]].#usn8?"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Create Unique ((:@usn6:#usn8)<-[`1esn`?:usn2|``]-({@usn5:{usn2}[.e0..$999]})),@usn6=Shortestpath((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})) Merge Allshortestpaths(({@usn5:07[..True][..9e12]})-[_usn4?:`5esn` *..07]->({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})) On Match Set None(`2esn` In `1esn` =~\"d_str\" Where $`1esn`[1.0..][_usn3..]).`1esn`? =.e12 Contains 0X7 Contains {0} On Create Set Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {@usn6}[7]|`8esn` =~0xabc =~010).#usn8! =Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)[None(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Starts With $1000)..{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}][Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8)..None(#usn8 In {`5esn`}[.e1..``] Where $`3esn` Is Not Null)]"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Create ``=Allshortestpaths(({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})) Match usn2=(`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[@usn5?:`3esn`|:#usn8{_usn4:{999}}]->(:#usn8:#usn8{``:1.0[0e0..0.e0]}) Union All Unwind 0e0 Starts With 2.12 Starts With $12 As _usn3 Create Unique ((_usn3 :`7esn`:_usn3)-[]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]}));"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Drop Constraint On(`1esn`:`3esn`)Assert `6esn`(`4esn`[``],True[{`7esn`}..]).usn1? Is Unique;"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Merge (_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5}) On Match Set ``(Distinct 0.12 =~`5esn` =~`5esn`,Null[``]).`1esn`! =12e12 Ends With {usn1},@usn5 =7 Ends With $`4esn`,_usn4 =Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End[..[9e1[1000][{123456789}],$_usn3[{#usn7}],`5esn` Starts With $`2esn` Starts With $1000]][..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0 In `2esn` In 010)] On Match Set `6esn`:`8esn`:`7esn` Union All With *,None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12]) Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where $_usn3[.e0..$usn2]|{#usn7}[9e1..][{123456789}..]) Ends With Reduce(`2esn`={`3esn`} In 0X7,_usn3 In {`3esn`}[`2esn`]|$`5esn`[{`3esn`}]) As ``,0.e0[123.654][01] As _usn3 Where 1000 In {`8esn`} In 01 Delete 0.0 Is Not Null Is Not Null,None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})[Any(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")..Reduce(usn1=#usn7[usn1][$`5esn`],`3esn` In {7} Is Null|Count(*) Ends With 12.0 Ends With 12)][(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})..({usn1:`5esn`[_usn4..]})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})],Reduce(#usn7=$1000 Is Null,#usn7 In {``} Is Not Null|$`1esn` Ends With 9e1 Ends With $123456789) In Case When `5esn` Is Null Then True[..$`6esn`] Else `3esn`[`3esn`..][#usn8..] End Union All Foreach(_usn3 In $#usn7 Is Not Null| Load Csv With Headers From 0e0[07] As _usn4 Fieldterminator 's_str') With Distinct $1000 =~$`2esn` As `6esn`,`` Is Not Null Is Not Null Order By $12[..{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}] Ascending Skip False[..``] Limit Count ( * )[$_usn4..$`4esn`] Foreach(#usn8 In $`1esn` Ends With 9e1 Ends With $123456789| Start _usn3=Node:`8esn`(`1esn`={#usn7}) Where usn2[9e12] Remove Case When 01 Contains {`8esn`} Contains 2.12 Then $_usn3[Count(*)] Else {`3esn`}[@usn6..0Xa][{12}..0Xa] End.`5esn`!,[#usn8 In 7[..999][..{#usn8}] Where {`5esn`} Contains $0 Contains {``}|#usn7 Starts With {#usn7} Starts With `7esn`].`1esn`?);"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Merge usn2=((:`1esn`{})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})) On Match Set Reduce(usn1=.e1 Ends With 1e1 Ends With @usn5,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$#usn7[#usn7..]).``! ={123456789} =~`8esn` =~@usn5 On Create Set @usn6+={0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]],{`8esn`:{_usn4} Starts With 0.e0 Starts With 0x0}.@usn5! =`4esn`[`5esn`..123456789][0..$12] Union Start `6esn`=Node:`8esn`(\"d_str\") ,`6esn`=Relationship:`4esn`(`1esn`={`2esn`})Where {usn2}[.e0..$999] Create `5esn`=((`` :`2esn`:usn1)<-[usn2?:``]-(usn2 :``:#usn8)<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})) Load Csv From usn2(Distinct Null In $7 In .e1,`1esn` Contains {usn2} Contains $#usn8) In All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7) In Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 2.12 Ends With $_usn3 Ends With `3esn`|{123456789} Contains $#usn8) As `5esn` Fieldterminator 's_str' Union Foreach(`6esn` In {`4esn`} Starts With 1e1| Create Unique (:`6esn`{_usn4:$`5esn` Starts With $0 Starts With {0}})<-[`1esn` *0Xa{_usn3:Null Ends With `2esn` Ends With $usn1,#usn8:.e12 Is Not Null Is Not Null}]->(usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]}),(`4esn` {`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}})<-[``?]->(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})) With Distinct {12} Ends With Count ( * ) Ends With .e12 As `8esn` Skip 12 Ends With 0x0 Ends With 0.e0 Limit Case When `4esn`[`5esn`..12][@usn6..False] Then $123456789 Ends With $999 Ends With {999} When $123456789 Ends With $999 Ends With {999} Then False Is Null Is Null Else 7[True..][2.12..] End Starts With [`8esn` Ends With 999 Ends With .e12] Starts With (`5esn` :`4esn`)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null})<-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]-(`7esn` :`5esn`{`3esn`:`7esn` Is Null}) Foreach(`5esn` In usn2[{7}]| Return Distinct *,(:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8)[Reduce(`7esn`=7[$`2esn`..{`5esn`}],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$_usn4[0e0..][False..])..({``:00 Starts With 0xabc,`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})][{}..{@usn6:`4esn`[..010][..{12}]}],(:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[`6esn` *0Xa{_usn3}]-({@usn5:usn1 Is Not Null})-[:`8esn` *0..{_usn3:`4esn` Ends With 07 Ends With {`3esn`}}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})[..[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]|{7}[..12e12][..Count ( * )]]] Order By (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12} Asc,({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}) In Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 07 In `2esn` In 12e12) Descending,All(#usn7 In {``} Is Not Null Where {_usn4}[...e1][..$7]) Is Null Is Null Ascending Skip 1e1 Contains 0e0);"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Create Constraint On(#usn7:`3esn`)Assert Exists([{12} Contains {123456789} Contains `4esn`,1.e1[`8esn`][00],1.0[$`1esn`..][$123456789..]].usn1?);"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Drop Constraint On(`8esn`:usn1)Assert (`8esn` :`7esn`:_usn3{#usn7:'s_str' Is Not Null Is Not Null})-[:@usn6|`6esn`{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}]->(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789}).@usn5 Is Unique"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Unwind $usn1[.._usn4][..False] As @usn6 Return Distinct *,2.12 Ends With $_usn3 Ends With `3esn` As `7esn`,0 In `2esn` In 010 Order By Count ( * ) Starts With 7 Starts With $123456789 Descending,01234567 Ends With .e12 Ends With $#usn7 Asc,$`6esn` =~1.e1 =~12 Asc Skip [{`3esn`} Is Not Null Is Not Null] Limit Single(#usn8 In {`5esn`}[.e1..``] Where $`` =~12.0 =~$`7esn`) Contains Case When {`1esn`}[12.0..`2esn`][@usn6..{usn1}] Then 's_str'[00][{`5esn`}] Else $#usn7 Is Null End Contains None(`5esn` In $999[0.0..] Where .e1 =~$`8esn`) Detach Delete `6esn`[2.12..01][{``}..False];"), - octest_legacy:ct_string("Explain Delete _usn3[..`8esn`][..2.12],None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 7[..999][..{#usn8}]) Is Not Null,0.e0 Starts With 12.e12 Starts With {_usn4} Return *,Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End Is Null Is Null,$`5esn`[$`4esn`..{@usn6}][07..$@usn6] Order By {`1esn`:{@usn6}[{999}..][00..]}[..`5esn`][..{#usn8:{`7esn`}[`6esn`][#usn7],`5esn`:$`4esn`[9e12..123.654]}] Ascending Skip [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `4esn` Ends With 07 Ends With {`3esn`}|@usn5 Is Null] Is Null Is Null Match Allshortestpaths((@usn5 {`7esn`:$`6esn`[010..],#usn8:0.e0 Starts With `2esn`})-[@usn5]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})) Using Join On `2esn` Where $1000 In $1000 In $`3esn`"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Drop Constraint On()-[``:`2esn`]-()Assert Exists(All(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where @usn6 Is Null Is Null).`4esn`)"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Load Csv From 123456789[_usn3] As _usn3 Create _usn4=Shortestpath((((`7esn` )-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:`1esn`{``:.e1 Is Null Is Null})))),#usn8=Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Union Remove [usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0X0123456789ABCDEF =~1e1 =~{`4esn`}|$_usn3['s_str'][07]].`6esn`?,Single(`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1).@usn5! Union Optional Match `2esn`=((`5esn` :_usn4{7})<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})-[:`4esn` *0xabc..{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(`3esn` :`5esn`)) Using Scan `1esn`:usn2 Where {@usn5} Is Null Is Null Return Distinct All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)],None(#usn8 In 7[..999][..{#usn8}] Where 2.12['s_str'..$12][{`1esn`}..`2esn`])[[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 12e12 Ends With {usn1}]][[$12 Ends With 07 Ends With $123456789,$@usn5 =~1000 =~1000,.e12[@usn5..$12]]] As @usn5 Order By 0.12 =~$0 =~$0 Descending Create Unique Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` )))),_usn3=Shortestpath((:`3esn`:@usn5{`2esn`:{`3esn`}[..07][..{`5esn`}]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null}));"), - octest_legacy:ct_string("Explain Optional Match Allshortestpaths((`` {@usn6:1.0[$`1esn`..][$123456789..]})<-[?{usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null}]-(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})),(({`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})-[`8esn`?:`2esn`*..{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})) Using Index usn2:@usn6(`5esn`) Using Join On `6esn`,`8esn`,`4esn` Create Unique (((`6esn` :@usn5)-[usn1?:_usn3|_usn3]-(usn2 :#usn7)<-[#usn8:@usn6|`6esn`{`8esn`:True[00][0Xa]}]->(`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]}))),Allshortestpaths((((:_usn4{usn2:0X0123456789ABCDEF[123456789]})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)))) Union Load Csv From [.e12[@usn5..#usn7][010..{usn1}]] In All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {`6esn`} Contains \"d_str\") In None(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) As usn1 With 07[$123456789..] Order By {`2esn`} Ends With 12.0 Desc,`6esn`[12..$usn2][{#usn8}..{usn2}] Asc,9e1[..$`2esn`] Ascending Create `3esn`=Allshortestpaths((usn2 :`4esn`)),`2esn`=Shortestpath((((:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})<-[:#usn7 *..010]-(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})))) Union All Return {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}])"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Create Constraint On(`5esn`:usn2)Assert [$`5esn` Starts With $0 Starts With {0},0x0[`4esn`..'s_str'],$usn2[9e0]].#usn8! Is Unique;"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Create Constraint On()-[`6esn`:`3esn`]-()Assert Exists({`6esn`:False =~$7 =~2.12,`1esn`:\"d_str\" Is Null Is Null}.``!);"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Drop Constraint On()-[`3esn`:`4esn`]-()Assert Exists(({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[`6esn`?:`4esn` *..01]-({`7esn`:{999}}).`4esn`!);"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Remove (usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[usn1?:`8esn` *..010]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}).usn2! Union All Start `3esn`=Relationship:#usn7('s_str') ,#usn7=Rel:_usn3({@usn5}) With #usn8 In $@usn6,1.e1[`8esn`][00] Skip 01 Ends With 999 Ends With {`7esn`} Where 123456789 Ends With $`6esn` Ends With $#usn7 Union Foreach(_usn3 In 00[{`8esn`}..][{`8esn`}..]| Load Csv From {1000}[$`4esn`][\"d_str\"] As `8esn` Fieldterminator \"d_str\")"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Create Constraint On()<-[@usn5:`4esn`]-()Assert Exists(Extract(`5esn` In $999[0.0..] Where {999}|9e1[$usn2]).usn1)"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Create `7esn`=({`5esn`:\"d_str\" Starts With 01})-[_usn3:@usn5 *7..12{`2esn`:12.0 =~999 =~$_usn3}]->(`3esn` {usn1:$0[..9e1],@usn5:`7esn`[..{usn1}]}),Allshortestpaths((((:_usn4{usn2:0X0123456789ABCDEF[123456789]})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)))) With Distinct $12[Count ( * )][0X7],Case {`3esn`}[@usn6..0Xa][{12}..0Xa] When {usn1}[0X0123456789ABCDEF] Then 0x0 Ends With $12 When 0e0 Starts With `2esn` Starts With $`` Then {123456789}[9e12][{0}] Else 0X7[1000..{`1esn`}] End[..({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})] As `3esn`,{`5esn`:01 =~{_usn3} =~`3esn`,@usn5:{`3esn`} Is Not Null Is Not Null}[[`3esn` In {7} Is Null Where usn1 Is Null Is Null]..Reduce(@usn5=$0 Ends With 12.0,`5esn` In $999[0.0..]|$`8esn`[..00])][Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where usn2[$7..$123456789][$@usn6..$7]|0xabc[01..{999}][{7}..{`7esn`}])..None(`` In `` Is Not Null Is Not Null Where 0x0[`4esn`..'s_str'])] As @usn5 Skip $usn2[9e0] Limit {12} Is Not Null Unwind `4esn`[..010][..{12}] As `` Union All Start `6esn`=Relationship:usn2(#usn8=\"d_str\") ,`5esn`=Relationship(*)"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Unwind {12}[..0X7] As `3esn` Foreach(usn1 In Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End Ends With Case When 0x0 Ends With $12 Then 07 =~01 End| Detach Delete $@usn5,'s_str' =~{_usn4} =~$`7esn`,usn1(Distinct $@usn5 Starts With $1000)[[`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}|0Xa =~Null =~$``]..]) Start `2esn`=Node:@usn5({`1esn`}) ,usn1=Node:#usn7(usn1=\"d_str\")Where #usn7 Starts With {#usn7} Starts With `7esn` Union All Load Csv From $usn2[{@usn5}] As #usn7 Fieldterminator 's_str';"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Drop Constraint On()-[usn2:#usn8]->()Assert Exists(Reduce(#usn8={0}[01][`7esn`],@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|2.12 =~False).#usn7);"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Using Periodic Commit Load Csv From Shortestpath((((`7esn` {`5esn`:123.654 Contains $`4esn` Contains 1.0,`8esn`:123.654 =~$usn2 =~{999}})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[`2esn`?:`1esn` *00]->({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})))) In (usn2 :@usn5)-[?{`8esn`:{7} Is Null}]->(`` )<-[`3esn`?:`3esn`|:#usn8]-(`` :#usn8:#usn8) In (@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8}) As @usn6 Fieldterminator 's_str';"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Drop Index On:#usn8(`6esn`)"), - octest_legacy:ct_string("Explain Drop Constraint On()-[`6esn`:`8esn`]->()Assert Exists((:usn2{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})-[`6esn`:`2esn`{`5esn`:00 Starts With 0xabc,`6esn`:0Xa =~Null =~$``}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}).`1esn`?)"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Create Constraint On()<-[usn2:`4esn`]-()Assert Exists({#usn7:{`4esn`} =~9e0 =~{12},#usn7:True[07..$usn2][$7..{usn1}]}.#usn8!)"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Delete \"d_str\" =~1000 =~{`1esn`} Match usn2=Shortestpath(((_usn4 :``:#usn8)-[:`8esn` *..01]->({#usn7:0.e0 Starts With `2esn`})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->($#usn8))) Using Index `8esn`:@usn6(`5esn`)"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Unwind All(#usn8 In {`5esn`}[.e1..``] Where {_usn3}[..\"d_str\"][..`5esn`])[..Allshortestpaths((`5esn` :`4esn`))] As `2esn` Merge ((`3esn` :usn2)) On Match Set _usn3+=$`3esn` Is Not Null Is Not Null,`3esn` ={`4esn`} Ends With {usn2} Ends With {999},{@usn6:{999} Starts With $999,`4esn`:$usn1[{`5esn`}][$`6esn`]}.@usn5? =$usn1[..{`6esn`}] Create Unique `5esn`=Shortestpath((_usn3 :#usn7)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})<-[`5esn`? *..12{`8esn`:{`7esn`}[`6esn`][#usn7],`1esn`:0x0 Ends With $12}]->({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000})),((:#usn8:#usn8{_usn4})<-[usn1?:`7esn`]-(:usn1{usn1:{`6esn`}})) Union Remove Reduce(usn2=#usn7 Is Null Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{_usn3}[12.e12]).@usn6?,#usn8(Distinct $#usn7[@usn5..{1000}][1.e1..7]).#usn7!,Reduce(#usn7=usn1 Is Null,`8esn` In 01[2.12..`8esn`]|{_usn3}[..\"d_str\"][..`5esn`])._usn4? Return *,$12 Starts With $`8esn` Starts With $`1esn` As `1esn`,$_usn4 Contains Null Contains #usn8 Skip [`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null Match usn2=Shortestpath(((_usn4 :``:#usn8)-[:`8esn` *..01]->({#usn7:0.e0 Starts With `2esn`})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->($#usn8))) Using Index `8esn`:@usn6(`5esn`) Union All Merge (`5esn` {`8esn`:1000[Null..{123456789}]})-[:`6esn`|`5esn` *123456789..]-(#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})-[`8esn`?:usn1|@usn6{`8esn`:\"d_str\" Contains {123456789} Contains 01,@usn5:`1esn` In .e0 In {`3esn`}}]-(`6esn` {`7esn`:$`6esn`[010..]}) Foreach(`5esn` In .e0[12.e12..]| Optional Match `5esn`=(((_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(#usn7 {@usn5:$`8esn` =~{1000}})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]}))),usn1=(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})-[_usn4? *..01]-(_usn4 :usn2{usn1:7[True..][2.12..],`8esn`:2.12 Ends With $_usn3 Ends With `3esn`})-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]-({`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}) Using Index `1esn`:_usn3(_usn4) Using Index `2esn`:`3esn`(@usn6) Where #usn8 With ()-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[@usn6?$0]->({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})[{#usn8:_usn4 Starts With $_usn4 Starts With 12.e12}..Allshortestpaths(((@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})))][(usn2 :usn2)<-[@usn5? *..01]-(`8esn` :@usn6:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})..Case When #usn8 Is Not Null Is Not Null Then `3esn`[{usn1}] Else 0.12 Starts With $`5esn` Starts With 12 End],0Xa[..{`4esn`}][..12.0],$`` Ends With 0.0 Ends With {1000} Order By 0.0 =~999 Asc,1e1 In \"d_str\" In `7esn` Descending Skip {123456789}[{`8esn`}][$`8esn`] Limit Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789])[`7esn`(Distinct Count ( * ) =~$usn2 =~$usn2)]);"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Start `2esn`=Node:@usn6({_usn4}) Create `1esn`=Shortestpath((((`2esn` :`8esn`:`7esn`)<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})))) Optional Match (`7esn` {`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2}),`5esn`=Allshortestpaths(((:`1esn`{``:.e1 Is Null Is Null})<-[usn1?:`7esn` *0xabc..{`3esn`:$#usn8[$`8esn`..{`8esn`}]}]->(:`4esn`{`8esn`:0.e0 In $#usn7 In $_usn3}))) Where {`5esn`} Contains $0 Contains {``} Union All Detach Delete {`6esn`},Single(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]) Ends With Case When 07 Contains 0X7 Contains $`8esn` Then {`4esn`} =~9e0 =~{12} When .e1 Ends With 1e1 Ends With @usn5 Then $#usn8[Count ( * )] Else Count ( * )[True..][{#usn7}..] End Ends With Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End,`1esn`[..{@usn6}][..$123456789] Union All Remove Reduce(#usn8=#usn7 Is Null Is Null,`8esn` In 01[2.12..`8esn`]|0Xa[2.12]).`7esn`?,(:#usn7{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[`4esn`:`8esn` *00]->(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]})<-[{`6esn`:2.12 Contains `1esn`,`1esn`:9e12[`6esn`..12.0]}]-(:_usn3:_usn3{``:`7esn` Starts With $#usn7 Starts With $`7esn`})._usn3!"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Return Distinct Filter(`4esn` In $`3esn` Is Not Null Where {`6esn`}) =~{_usn3:{`3esn`} Is Not Null Is Not Null} As `7esn`,.e0[12.e12..] As `3esn`,0e0 =~`6esn` =~123456789 As @usn5 Skip {12} Is Not Null Limit $@usn5 Starts With $1000 Union Unwind Reduce(@usn6=0.e0 Ends With $#usn7 Ends With $7,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999})[[#usn8[`3esn`..][{#usn7}..]]..(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`8esn` :@usn6:#usn8)<-[{`8esn`:07 In `2esn` In 12e12}]->(:_usn4{`6esn`:{`6esn`} =~$999,`6esn`:$#usn7[..{`5esn`}][..9e12]})][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)..Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0e0 Starts With `2esn` Starts With $``)] As #usn7 Create (({`4esn`:`7esn` Is Null})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})) Union All Load Csv From \"d_str\"[..{@usn5}][..``] As `6esn` Fieldterminator 's_str'"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Create usn2=Allshortestpaths(((@usn5 :`4esn`))),(@usn6 :`6esn`)<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3) Union All Unwind {`2esn`} In 12 As `7esn` Foreach(`5esn` In {123456789} Starts With 0.0 Starts With `5esn`| Remove 2.12.`7esn`!,[@usn6 Contains $1000 Contains {`7esn`}].`3esn`?) Union All Optional Match @usn6=Shortestpath((((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``})))),Shortestpath(((@usn6 :`8esn`:`7esn`)<-[`6esn`?:`4esn` *..01]->(`3esn` :#usn7{usn2:12.0 =~999 =~$_usn3,@usn6:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?]-(`7esn` :`5esn`))) Unwind .e12[$usn2..][12.e12..] As `6esn`;"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Create Constraint On()-[`1esn`:_usn3]-()Assert Exists(Single(#usn8 In {`5esn`}[.e1..``] Where {`1esn`}[12.0..`2esn`][@usn6..{usn1}]).``!)"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Return Distinct *,`4esn`[`5esn`..12][@usn6..False],Case 's_str' In 00 When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null When $@usn5 Starts With {0} Starts With 12 Then {usn2} Else {#usn7}[`2esn`..] End As `4esn` Order By 123456789[{123456789}..'s_str'] Descending Limit 9e0 Union All Optional Match `6esn`=Allshortestpaths(((_usn3 :`3esn`:@usn5))) Using Scan `3esn`:`5esn` Using Scan `6esn`:`3esn`"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Load Csv With Headers From $`8esn` Is Not Null Is Not Null As #usn8 Union Create `8esn`=Allshortestpaths((`` :#usn7)-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})),(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`8esn` :`8esn`:`7esn`) Union All Create Unique _usn3=(({@usn6:01234567 Ends With .e12 Ends With $#usn7,`4esn`:12.e12[`3esn`]})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(#usn7 :`7esn`:_usn3)),(((#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})<-[`2esn`?:`7esn` *0X7..]-(_usn4 :usn2{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}))) Create ``=Shortestpath(({`1esn`:`3esn`[{`2esn`}]})-[`3esn`?*{`8esn`:False Is Null Is Null}]->(:#usn7{_usn4:$`8esn` Contains 123456789 Contains $usn2})),@usn6=Allshortestpaths(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})))"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Return Distinct *,None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12]) Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where $_usn3[.e0..$usn2]|{#usn7}[9e1..][{123456789}..]) Ends With Reduce(`2esn`={`3esn`} In 0X7,_usn3 In {`3esn`}[`2esn`]|$`5esn`[{`3esn`}]) Order By Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) Is Not Null Is Not Null Asc,$`4esn`[010..`4esn`] Ascending,1e1 In \"d_str\" In `7esn` Descending Skip 9e1 Is Not Null Union All Create _usn3=(((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5))),(:``:#usn8{_usn3:$`7esn` Is Null Is Null}) Union Optional Match `2esn`=Shortestpath(((usn2 :`6esn`{#usn7:Count ( * ) Contains 07})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))),Allshortestpaths(((`8esn` )-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})<-[ *..12]->(#usn8 {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]}))) Merge ((:_usn4{usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})) Match (({_usn3:$`5esn`[`3esn`..]})-[? *..07{`4esn`:@usn5 =~{`5esn`} =~`5esn`}]->(_usn3 :usn2{#usn7:{999} Starts With {0}})) Using Index @usn5:`2esn`(@usn5) Where $123456789 Is Null Is Null"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Create Constraint On()-[`8esn`:`8esn`]-()Assert Exists(Reduce(``=$usn1[.._usn4][..False],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|#usn8[#usn8..]).`8esn`)"), - octest_legacy:ct_string("Cypher 12.999 Remove (:usn1{usn1:{`6esn`}})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(@usn6 :`1esn`)<-[`6esn`]-(`1esn` {@usn5:1.0[0e0..0.e0]}).`7esn`!,Any(`3esn` In {7} Is Null Where 1e1 Contains Count ( * )).`4esn`,#usn8:`4esn` Start ``=Relationship:usn2('s_str') ,`1esn`=Rel:`4esn`(`4esn`='s_str') Union All Detach Delete 's_str' =~{_usn4} =~$`7esn`,(:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0}) In [`4esn`[..Count ( * )][..{#usn7}]],$`5esn` Starts With `` Union Match `3esn`=Shortestpath((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))),Shortestpath(({@usn5:07[..True][..9e12]})-[_usn4?:`5esn` *..07]->({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})) Using Index @usn5:`2esn`(@usn5) Using Scan `7esn`:usn1 Where Null[$#usn7] Start `7esn`=Rel:`6esn`(\"d_str\") "), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Foreach(_usn4 In {`2esn`} Is Not Null| Match usn2=(`7esn` {`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2}),`4esn`=Allshortestpaths((({usn1:`5esn`[_usn4..]})-[usn1?:_usn3|_usn3]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))) Using Join On #usn7,_usn4 Using Join On `8esn`,@usn5 Where `3esn`[{`2esn`}]) Union All Return *,12.0 Ends With True Skip {`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}[Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End..[`3esn` In {7} Is Null Where {123456789} Contains $#usn8|#usn7 =~Count ( * ) =~``]][`7esn`(9e1[1000][{123456789}]).._usn3(0.12 =~$0 =~$0)] With *,{_usn4:Count ( * )[True..][{#usn7}..],``:{``} Ends With `7esn` Ends With 0.0} In (usn2 {``:01[{@usn5}]})<-[?:_usn4|:usn2{`8esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],``:_usn3 Contains $123456789 Contains ``}]->(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(:_usn4{_usn4:{7} In `2esn`}) In {`4esn`:`7esn` Is Null} As `2esn`,`5esn` Is Null Order By Reduce(@usn6=$1000[999],`8esn` In 01[2.12..`8esn`]|#usn7 Is Null Is Null)[_usn3(0.12 =~$0 =~$0)..][count($12 Ends With 07 Ends With $123456789,`8esn`[{123456789}..])..] Desc Skip `5esn`({12} Ends With 1.0 Ends With .e0) Contains `3esn`(`5esn`[{`4esn`}..`2esn`],9e1[2.12..{#usn8}]) Contains (@usn5 :#usn7)<-[``?:`3esn`|:#usn8{`1esn`:.e0[..$`8esn`]}]-(`5esn` {`4esn`:01 Is Null})<-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(_usn4 ) Limit {@usn5} =~Count ( * ) =~12.0 Start `2esn`=Node:``({`1esn`}) ;"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Merge `4esn`=Allshortestpaths((((#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)-[@usn5?:`4esn`]-(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})))) On Match Set _usn3+=2.12 =~False =~`5esn` Union All Return Distinct #usn7 Contains usn2 Contains @usn5 As `1esn` Order By 1.e1 Is Null Is Null Asc,12.e12 Starts With {999} Starts With {`1esn`} Desc,Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7) Contains Filter(`` In `` Is Not Null Is Not Null Where 0e0 Starts With 1000 Starts With #usn7) Contains Shortestpath((($#usn8)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]}))) Asc Skip 0e0 Starts With 1000 Starts With #usn7"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Drop Constraint On(``:`6esn`)Assert Extract(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`]).#usn8 Is Unique"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Drop Constraint On(`5esn`:usn2)Assert Filter(`5esn` In \"d_str\" Is Null Is Null).@usn6! Is Unique"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Start `4esn`=Relationship:`3esn`({`1esn`}) ,`7esn`=Rel:`4esn`(`2esn`=\"d_str\")Where usn2 Is Not Null Is Not Null Match #usn7=(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[#usn8]-(:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}) Using Index #usn8:`2esn`(`5esn`) Using Index `3esn`:`5esn`(#usn7) Detach Delete `1esn` In .e0 In {`3esn`}"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Load Csv With Headers From 01234567 Is Null Is Null As #usn7 Fieldterminator 's_str' Merge _usn3=Allshortestpaths((({_usn3:.e12[@usn5..$12]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]}))) On Create Set `3esn` =0.0[Null][$`2esn`] Create Unique usn2=(`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[@usn5?:`3esn`|:#usn8{_usn4:{999}}]->(:#usn8:#usn8{``:1.0[0e0..0.e0]}),#usn8=((`3esn` {`8esn`:\"d_str\" Contains {123456789} Contains 01,@usn5:`1esn` In .e0 In {`3esn`}})-[#usn7?:`3esn`|:#usn8]->(`2esn` :usn1)-[ *..999{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(@usn5 {_usn3:`1esn` Contains {usn2} Contains $#usn8}))"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Start usn2=Node:_usn4(``={#usn7}) ,`8esn`=Node:@usn6({_usn4})Where 12.0 =~1.0 =~9e12 Start #usn7=Node:`6esn`(`3esn`=\"d_str\") Union Start `5esn`=Node:@usn5({usn1}) ,``=Node:usn2(#usn8=\"d_str\") Delete {`4esn`:`7esn` Is Null}[{`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]}..],0.0[$0][{@usn5}],{`4esn`}[$usn2..07] Union All With 123.654 Is Not Null,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where False|{`1esn`}[12.0..`2esn`][@usn6..{usn1}]] =~Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 00[{`8esn`}..][{`8esn`}..]|{0}) =~{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}} Where $@usn5 Starts With $1000 Create Unique `3esn`=Shortestpath((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})));"), - octest_legacy:ct_string("Explain Drop Constraint On(`6esn`:`6esn`)Assert Exists((:usn2{`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2})._usn4?);"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Load Csv From {#usn7:0X0123456789ABCDEF =~1e1 =~{`4esn`},`2esn`:1.0 =~'s_str' =~{`2esn`}}[..None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 0X7[`7esn`][123.654])][..(:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})<-[`2esn`?:`7esn`]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})] As `8esn` Fieldterminator \"d_str\" Union All Match Allshortestpaths(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))),Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Using Index ``:_usn4(_usn4) Where {#usn7}[9e1..][{123456789}..] Union All Merge @usn6=Shortestpath((#usn7 {`5esn`:00 Starts With 0xabc,`6esn`:0Xa =~Null =~$``})) On Create Set `4esn`+=(`1esn` :#usn8:#usn8)-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})[..(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})][..`5esn`({12} Ends With 1.0 Ends With .e0)],Any(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`])._usn4! ={@usn6}[{999}..][00..] Create Unique #usn8=Shortestpath((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[_usn3? *0X7..]-(:`5esn`{`2esn`:`4esn`[1.0]})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"}));"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Create (`3esn` :#usn8:#usn8) Return #usn8 In $@usn6,1.e1[`8esn`][00] Optional Match `7esn`=Allshortestpaths(((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[`1esn`?:usn2|``{_usn4:$`4esn`[..$`3esn`][..0.0],@usn6:0e0 Starts With 2.12 Starts With $12}]->(:_usn3:_usn3{`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})<-[`8esn` *0X0123456789ABCDEF]->(usn2 :_usn4))),#usn7=Allshortestpaths((@usn6 :`6esn`)<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3)) Using Scan `4esn`:`2esn` Where $usn1[{`5esn`}][$`6esn`] Union With Distinct *,Allshortestpaths((:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))[[{_usn4} In {12} In $0,$`5esn`[2.12..],12[1.e1..{_usn3}][1.e1..1.0]]][[12e12 Is Not Null Is Not Null]] Order By $_usn3 In {1000} In 0.12 Desc Remove Case True[{`7esn`}..] When .e1 Is Null Is Null Then `3esn`[..$12][..{`7esn`}] When {_usn3}[..$12][..0.12] Then $7[0.12][usn1] End.`5esn`,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $123456789 Is Null Is Null|{`6esn`}[..$@usn6][..`7esn`]]._usn4,Single(`3esn` In {7} Is Null Where {`3esn`} In 01).`5esn` Union Remove Reduce(_usn4=01234567[usn2..$12][{`7esn`}..$usn2],@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|$@usn5 =~1000 =~1000).`8esn`?,[$1000 Is Null,$`1esn`[{`2esn`}..],.e1[{`7esn`}..{_usn4}]].@usn5,Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 123.654[$`1esn`])._usn3 Return *,$`4esn` Is Not Null Is Not Null As `6esn`,None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`])[Any(`3esn` In {7} Is Null Where {`4esn`} =~{7} =~{`7esn`})..][Extract(`2esn` In `1esn` =~\"d_str\" Where $_usn4[1.e1]['s_str']|usn1[`5esn`..$7])..] Skip Reduce(`8esn`={@usn5}[{#usn8}][9e0],`3esn` In {7} Is Null|0e0 Starts With 1000 Starts With #usn7)[Single(#usn8 In 7[..999][..{#usn8}] Where 123456789 Is Null)] Limit $usn2[$@usn6][True];"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Create Constraint On(#usn8:_usn3)Assert Case When {``} Starts With $`2esn` Starts With `1esn` Then False =~$7 =~2.12 When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] Else True In 0e0 End.`1esn`! Is Unique"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Create Constraint On(@usn5:`5esn`)Assert [`5esn` In \"d_str\" Is Null Is Null Where {0}]._usn4? Is Unique"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Drop Constraint On()-[`2esn`:_usn3]-()Assert Exists([_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $@usn6 Contains 07|999 Is Not Null Is Not Null].@usn5)"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Create Unique `1esn`=((:usn1{`6esn`:2.12 Contains `1esn`,`1esn`:9e12[`6esn`..12.0]})<-[`3esn`? *..01]->(@usn5 :`5esn`)<-[? *..07]-(:`4esn`)),(((`6esn` :`5esn`{usn1:{`6esn`}})<-[? *0X7..{#usn8:{1000} Is Null Is Null,`3esn`:0.e0 Starts With 12.e12 Starts With {_usn4}}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})<-[:`1esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}))) Create ((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})),Allshortestpaths(((`2esn` :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0}))) Union All Create Unique #usn8=Shortestpath((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[_usn3? *0X7..]-(:`5esn`{`2esn`:`4esn`[1.0]})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})) Foreach(`6esn` In $`5esn` In $`` In 123.654| Return $`8esn`[1000..0Xa],({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(:@usn5)<-[`7esn`?:`8esn`]-({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}) Ends With $7 Ends With All(`` In `` Is Not Null Is Not Null Where 1000 In {`8esn`} In 01) As ``,usn1 Starts With $usn1 As `1esn` Order By Null[``] Descending,1.e1[$`1esn`..@usn6][$0..$_usn3] Asc,$`6esn`[.e0..$`6esn`][$_usn3..{#usn7}] Desc Limit {`4esn`} Starts With 1e1 Unwind {`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]}[@usn5(Distinct {`5esn`} Contains $0 Contains {``},12.e12 Starts With {999} Starts With {`1esn`})] As _usn4)"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Load Csv From Reduce(@usn6=0.e0 Ends With $#usn7 Ends With $7,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999})[[#usn8[`3esn`..][{#usn7}..]]..(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`8esn` :@usn6:#usn8)<-[{`8esn`:07 In `2esn` In 12e12}]->(:_usn4{`6esn`:{`6esn`} =~$999,`6esn`:$#usn7[..{`5esn`}][..9e12]})][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)..Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0e0 Starts With `2esn` Starts With $``)] As `2esn` Fieldterminator \"d_str\" With *,$``[1.0] As `6esn`,12.0[123.654][Count(*)] Where 0.12[$`3esn`..$_usn3][12.0..usn1] Union All Detach Delete 7[{0}..{_usn4}] Remove ({@usn5:_usn3 Contains $123456789 Contains ``,_usn4:{``} Ends With `7esn` Ends With 0.0})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(#usn7 :usn1).#usn7!,All(`` In `` Is Not Null Is Not Null Where `1esn` =~0 =~$#usn7).#usn7! Match _usn3=(((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5))),(:``:#usn8{_usn3:$`7esn` Is Null Is Null}) Using Scan `4esn`:#usn7 Using Scan `5esn`:usn2;"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Create Constraint On(`1esn`:usn2)Assert {`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}.`6esn`! Is Unique"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Drop Constraint On(``:@usn5)Assert {usn1:12 Ends With 0x0 Ends With 0.e0}._usn3? Is Unique"), - octest_legacy:ct_string("Cypher 12.999 Load Csv From [1.0 =~'s_str' =~{`2esn`}] Contains [9e1[2.12],{usn2}[$`3esn`..][{#usn7}..],Null Ends With {`5esn`} Ends With 0.e0] Contains `5esn` As @usn6 With Distinct *,{#usn8} Is Not Null,$`5esn`[2.12..{_usn3}][_usn3..{1000}] As usn2 Order By 9e0[1.e1..][0Xa..] Descending,{_usn3:`4esn`[..Count ( * )][..{#usn7}]}[Any(_usn3 In {`3esn`}[`2esn`] Where 1e1 In \"d_str\" In `7esn`)..(:usn1{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[`2esn`:_usn4|:usn2]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[`6esn`{`6esn`:Count(*) Ends With 12.0 Ends With 12}]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})][Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7|123.654[{7}..])..Filter(`3esn` In {7} Is Null Where usn1 Is Null Is Null)] Asc With Distinct 0e0[..010] As _usn3,Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..]) In Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null) In Filter(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {#usn8}[.._usn4][..$`3esn`]) As `` Skip {12}[{7}][$123456789] Union All Foreach(_usn3 In (_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})<-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :`3esn`:@usn5)<-[? *..999]-(#usn8 :`5esn`{#usn8:0xabc[.e0]})[Shortestpath(({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[`6esn`? *0..]-(:usn1{`3esn`:{123456789} Is Null Is Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))..Allshortestpaths((_usn4 :#usn7)<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]}))]| Delete `4esn`[$999..{`1esn`}][{@usn6}.._usn3] Create #usn8=Shortestpath(((`5esn` )-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(@usn6 {`3esn`:{``} Is Not Null})<-[`1esn` *0Xa{_usn3:Null Ends With `2esn` Ends With $usn1,#usn8:.e12 Is Not Null Is Not Null}]->(usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]}))))"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Foreach(usn1 In 0Xa[2.12]| Unwind `3esn`[$`1esn`..999][``..$123456789] As usn1) Return #usn7 As `8esn`,0.12[..False][..{1000}] Order By Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`])[Case 00[{`8esn`}..][{`8esn`}..] When 0e0 Starts With 2.12 Starts With $12 Then Null[``] When 12e12 Ends With {usn1} Then $`2esn` Else 2.12['s_str'..$12][{`1esn`}..`2esn`] End..] Desc,[{@usn6} Ends With 's_str' Ends With 12.0,{12} Contains {123456789} Contains `4esn`] Starts With Filter(_usn3 In {`3esn`}[`2esn`] Where {1000} =~0 =~123.654) Starts With Case When Count ( * )[0.12...e1] Then $@usn5 =~1000 =~1000 When Null Ends With `2esn` Ends With $usn1 Then $usn2[{@usn5}] End Ascending,{12}[{7}][$123456789] Asc Skip `7esn` Ends With 0x0 Start `7esn`=Node:`6esn`({_usn3}) Where 123456789 Ends With 12.e12 Ends With $`7esn` Union All Create Unique @usn5=Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))),`2esn`=Allshortestpaths(((#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})-[`8esn`?:@usn6|`6esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}))) Unwind Shortestpath((((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))))[..Case 0Xa =~123456789 =~_usn4 When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $1000 In $1000 In $`3esn` Then 0.e0[#usn8] End][..(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})] As `3esn` Delete (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null Union Foreach(@usn5 In None(`5esn` In $999[0.0..] Where {``}[010..][0xabc..])[{`3esn`:False Is Null Is Null,`8esn`:2.12}]| Return *,Case When False Then 0.e0 Ends With $#usn7 Ends With $7 When {@usn6}[{999}..][00..] Then `5esn` Ends With {``} Ends With 12.e12 Else 123.654[$`1esn`] End[Reduce(#usn8=$`6esn` Ends With Count(*),`2esn` In `1esn` =~\"d_str\"|_usn4 Contains 2.12)..] As _usn3 Order By $12[Null..Count(*)][{`5esn`}..{999}] Desc,12.e12[7..$`6esn`] Desc Skip {`4esn`} Ends With {123456789} Ends With $`4esn` Return Distinct {``}[`8esn`..],{`7esn`} Starts With $123456789 Starts With $@usn6 As _usn3 Limit `8esn`(Distinct $#usn7 Is Null) Ends With Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]) Ends With Shortestpath(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))))"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Foreach(`1esn` In Count ( * ) Ends With $@usn5| With Distinct {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]),Count ( * ) Is Null As @usn6,123.654[...e0] Order By {usn2} Starts With $`8esn` Starts With Count ( * ) Asc Limit $@usn5 Starts With #usn7 Where {123456789}[0xabc..]) Start usn2=Node:usn1(`4esn`='s_str') Where 12.e12[..Null][..$#usn8] Detach Delete {_usn3} Ends With `5esn`,$#usn8[$`8esn`..{`8esn`}],{`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]}[@usn5(Distinct {`5esn`} Contains $0 Contains {``},12.e12 Starts With {999} Starts With {`1esn`})]"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Remove None(`2esn` In `1esn` =~\"d_str\" Where 0e0 Ends With 1.e1 Ends With $`4esn`)._usn4? Create #usn8=Shortestpath(((`5esn` )-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(@usn6 {`3esn`:{``} Is Not Null})<-[`1esn` *0Xa{_usn3:Null Ends With `2esn` Ends With $usn1,#usn8:.e12 Is Not Null Is Not Null}]->(usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})));"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` With *,'s_str' Starts With 123.654 As usn1 Skip {0} In $_usn3 Limit {`3esn`} In 01 Load Csv With Headers From 2.12 =~{7} As `7esn` Fieldterminator 's_str';"), - octest_legacy:ct_string("Cypher 12.999 Drop Constraint On(`5esn`:@usn6)Assert Exists(Single(`4esn` In $`3esn` Is Not Null Where {`6esn`}).#usn7?)"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Remove {`4esn`:{`4esn`}[$123456789..][$#usn7..]}.`1esn` Foreach(_usn4 In (`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})-[:`6esn`|`5esn`{`8esn`:$0 Ends With 12.0}]->(`5esn` {`4esn`:7[$`2esn`..{`5esn`}],@usn6:{7} Is Null}) Contains Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) Contains Case 9e12 Is Not Null Is Not Null When 0[..usn2][..{@usn5}] Then 0e0 Ends With 1.e1 Ends With $`4esn` Else usn1 Is Null End| Optional Match (((`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[usn1?:@usn5*]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})-[#usn7:@usn5 *0X7..]->(`2esn` ))),Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))) Where `7esn` In {123456789} In `1esn`) Create Unique `3esn`=((`7esn` {`4esn`:{usn1} Ends With $0})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2})-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]-(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})),(:`4esn`{`7esn`:$0[..9e1],usn1:{_usn4} Ends With `6esn`})-[:@usn5{@usn5:{#usn7}[9e1..][{123456789}..],``:#usn7 Is Not Null Is Not Null}]->(`4esn` :`6esn`{_usn3:$123456789 Ends With `3esn` Ends With 123456789,`6esn`:0e0 Starts With 2.12 Starts With $12})-[`7esn` *..0x0]-(`2esn` :_usn4) Union With *,{12} Is Not Null As `7esn` Skip usn2 Is Not Null Where @usn6[$`3esn`..{`3esn`}] Create `3esn`=({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})<-[usn2?:@usn5{`4esn`:{`7esn`} Is Null,_usn4:$123456789 Ends With {`1esn`} Ends With $`4esn`}]->(`6esn` {`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null})-[usn1? *0X0123456789ABCDEF]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}),`4esn`=Allshortestpaths((((_usn3 )-[?{@usn6:0X7[`7esn`][123.654]}]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})))) Union Load Csv From {``} Starts With $`2esn` Starts With `1esn` As `` Create (({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})),`7esn`=Allshortestpaths((:`4esn`{`5esn`})<-[@usn6?:`5esn`]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})) Merge #usn8=((:`4esn`{`7esn`:$0[..9e1],usn1:{_usn4} Ends With `6esn`})-[`1esn`? *123456789..{_usn4:$@usn6 Ends With $_usn4 Ends With 0.12}]->(_usn4 :#usn7{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})) On Create Set Any(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12.0[123.654][Count(*)]).`4esn`? =(:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case When `6esn`[12..$usn2][{#usn8}..{usn2}] Then {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] When .e12[@usn5..#usn7][010..{usn1}] Then 0.12 =~$0 =~$0 End,`8esn` =All(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Contains (`5esn` :_usn4{`5esn`:07[..True][..9e12]})-[`8esn`?:`2esn`{@usn6:{12}[..0X7]}]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]})<-[_usn4{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00}) Contains [0.12[$`3esn`..$_usn3][12.0..usn1]],_usn4 =$#usn8 In 0Xa In `6esn`;"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Merge `7esn`=((`1esn` :#usn7)) Create Unique _usn4=Allshortestpaths((`` {@usn6:1.0[$`1esn`..][$123456789..]})<-[?{usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null}]-(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})) Union Merge `4esn`=Shortestpath((((#usn8 :`8esn`:`7esn`{#usn7:#usn8[..{#usn7}]})-[usn1?]->({_usn3:False =~1e1 =~0.e0,_usn3:{999} Starts With $999})-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(`` :_usn4)))) Merge Allshortestpaths(((`` :`1esn`)-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 $999)<-[`4esn`?:`7esn` *0..{`2esn`:00[`2esn`..12][123456789..0.e0]}]->(`1esn` :_usn3:_usn3))) On Match Set `1esn`+=usn1 Is Null Is Null,Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]).`5esn` =0X0123456789ABCDEF Is Null Is Null Start `7esn`=Node:`6esn`({_usn3}) Where 123456789 Ends With 12.e12 Ends With $`7esn` Union All With Distinct {0} As `7esn`,1000[..$0][..True] Limit Case When @usn5 Is Null Then 2.12 Ends With $_usn3 Ends With `3esn` Else $1000 Is Null End[Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}])..None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa)][Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01|usn2 Is Null)..Case When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` End];"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Create Constraint On()<-[@usn5:`6esn`]-()Assert Exists(Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where {@usn5} Is Null Is Null|@usn5 In $7).#usn7);"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Remove (_usn3 :usn2{#usn7:{999} Starts With {0}})<-[`4esn`:@usn6|`6esn`{`4esn`:`2esn` Is Null,@usn5:00 Starts With 0xabc}]-({`5esn`:$#usn8 Ends With $`2esn` Ends With $@usn6}).`2esn`?,Reduce(#usn8=123.654[$`1esn`],#usn8 In {`5esn`}[.e1..``]|{`5esn`} Starts With $`5esn` Starts With .e1).#usn7? Union All Detach Delete $#usn7 Is Null Foreach(usn1 In $@usn5 Is Not Null Is Not Null| Unwind {usn1} Starts With #usn8 As _usn3)"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Create Constraint On()-[`8esn`:`3esn`]-()Assert Exists(Single(_usn3 In {`3esn`}[`2esn`] Where `3esn`[`3esn`..][#usn8..]).`8esn`!)"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Drop Constraint On()-[`7esn`:``]->()Assert Exists(Single(#usn7 In {``} Is Not Null Where {`2esn`} Ends With {`7esn`}).`4esn`?)"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Foreach(@usn6 In Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0) Is Not Null Is Not Null| Unwind {1000}[$`4esn`][\"d_str\"] As `3esn`) Unwind [$`5esn`[..$`5esn`][..$12],01[2.12..`8esn`],_usn3 Contains $123456789 Contains ``] As `1esn` Union Start #usn7=Node:``(\"d_str\") ,_usn3=Relationship:`3esn`('s_str')Where $@usn5 =~1000 =~1000 Union All Return Distinct 12 Ends With 0x0 Ends With 0.e0,Case When 1.0 In Count(*) Then False End Contains `1esn`(Distinct 0.e0 Starts With `2esn`) Contains Reduce(`1esn`=\"d_str\" Is Null Is Null,#usn7 In {``} Is Not Null|#usn7),0e0[..010] As `` Limit $@usn5[010..$#usn8][12..$`4esn`] Match @usn6=Allshortestpaths((`6esn` :`8esn`:`7esn`)<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})),`8esn`=((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})) Using Index `6esn`:`8esn`(``) Using Join On `5esn`,#usn7 Where 1.0[0e0..0.e0] Merge _usn3=({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True})-[@usn5?:`4esn`]-(:usn1{usn1:{`6esn`}})<-[_usn4 *..999]->(`7esn` {#usn7:\"d_str\" Contains {123456789} Contains 01,@usn5:$1000 In $1000 In $`3esn`}) On Match Set `4esn`+=$_usn4 Starts With 1e1,_usn3 =(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})-[usn1?:_usn3|_usn3]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})-[`7esn`]->(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]}) =~Shortestpath(((`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]})-[usn2?]-(`7esn` :`5esn`)-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->(:``:#usn8{`7esn`:00 Starts With 0xabc,_usn3:{123456789} Contains $#usn8})))"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Drop Constraint On(`6esn`:`8esn`)Assert Exists(Filter(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 00[{`8esn`}..][{`8esn`}..]).`7esn`?)"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Start _usn4=Node( {123456789}) ,`8esn`=Relationship:usn2('s_str')Where {_usn3}[12.e12] Union Foreach(@usn5 In $_usn4[1.e1]['s_str']| Delete $12[$1000..123456789] With Distinct *,Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))) As _usn3 Order By 1.e1[$`1esn`..@usn6][$0..$_usn3] Asc,Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Is Not Null Is Not Null Asc Skip [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789] =~Reduce(_usn3=$``,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{#usn8} Is Null) =~Case {``} Is Null When 2.12 Then $123456789 Ends With {`1esn`} Ends With $`4esn` End Limit {usn1} Ends With $0) Merge `3esn`=(((:`5esn`)<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})-[`3esn`:#usn7]-({@usn6:$usn1 Ends With $`` Ends With $12}))) On Match Set usn1+=Extract(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|{@usn5} Is Null Is Null)[Case When $0[..9e1] Then Count(*)[..usn2][..usn2] When {`2esn`} Starts With 0.0 Starts With {usn1} Then 0e0 In @usn5 Else 01 =~{_usn3} =~`3esn` End.._usn3(1.0 In Count(*),0[{usn2}..][$`6esn`..])][count(Distinct $12[Null..Count(*)][{`5esn`}..{999}],$`4esn`[`7esn`])..Case When $123456789 Ends With $999 Ends With {999} Then `3esn`[{usn1}] When #usn7 =~Count ( * ) =~`` Then $_usn4 Starts With 1e1 End],`7esn` =[12.0,2.12 Is Not Null Is Not Null][Case When usn1 In 7 In {123456789} Then `5esn`[_usn4..] When `7esn`[9e0..] Then {`3esn`} In 01 End..999] Union With Distinct *,(:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As `` Skip (:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]}) Is Null Limit $`8esn` In {`1esn`} In 12 Create @usn6=((`` :`7esn`:_usn3)),((usn2 :`4esn`)-[_usn3:#usn8|`1esn`{_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]}]->(@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:`5esn` *0..{_usn4:7[$`2esn`..{`5esn`}]}]->());"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Using Periodic Commit Load Csv From 9e1[2.12..{#usn8}] As `2esn` ;"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Create Constraint On(@usn5:_usn4)Assert Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``]).`8esn` Is Unique;"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Create Unique Allshortestpaths((:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[@usn6:_usn4|:usn2]->(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})-[`3esn`?:@usn5]->(usn1 {`8esn`:False Is Null Is Null})),Allshortestpaths((:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null})<-[#usn7{`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]}]-({#usn8:True[..$`6esn`]})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})) Return 12.0 Ends With True Ends With 123456789 As #usn7 Order By {_usn3}[12.e12] Descending Skip 0X7[{@usn6}] Limit 1e1 Contains Count ( * ) Create ({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})<-[usn2?:@usn5{`4esn`:{`7esn`} Is Null,_usn4:$123456789 Ends With {`1esn`} Ends With $`4esn`}]->(`6esn` {`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null})-[usn1? *0X0123456789ABCDEF]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}),`5esn`=(({_usn3:$`5esn`[`3esn`..]})-[? *..07{`4esn`:@usn5 =~{`5esn`} =~`5esn`}]->(_usn3 :usn2{#usn7:{999} Starts With {0}}));"), - octest_legacy:ct_string("Cypher 12.999 Drop Constraint On()<-[`3esn`:_usn3]-()Assert Exists([`3esn` In {7} Is Null Where {usn2}[.e0..$999]|01[2.12..`8esn`]].@usn6!);"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Create `1esn`=Allshortestpaths((((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[? *0Xa]-({`7esn`:{999}})-[`7esn`]->(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})))) Union All Create Unique (#usn8 {#usn7:`4esn` Ends With 07 Ends With {`3esn`},`3esn`:{0} In $_usn3})<-[:`4esn` *..010{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]->(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}),(`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]}) Union Create `8esn`=(:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`),Shortestpath(({usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null})) Merge (`1esn` :`4esn`{`6esn`:$`6esn` Ends With Count(*),`7esn`:_usn3 Starts With 12.e12 Starts With 0.12})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}) Start _usn4=Node:`4esn`(_usn4={123456789}) Where {_usn4} In {12} In $0;"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Merge #usn8=(:`2esn`:usn1)-[`1esn`:@usn6|`6esn`*..{`7esn`:7[{0}..{_usn4}]}]->(`8esn` {_usn4:`4esn`[1.0],`5esn`:0e0 Ends With 1.e1 Ends With $`4esn`})-[:@usn5{@usn5:{#usn7}[9e1..][{123456789}..],``:#usn7 Is Not Null Is Not Null}]->(`4esn` :`6esn`{_usn3:$123456789 Ends With `3esn` Ends With 123456789,`6esn`:0e0 Starts With 2.12 Starts With $12}) On Create Set `5esn` =$`` Is Not Null,{usn2:usn2 Is Not Null Is Not Null}.usn1? =Case When 07 Contains 0X7 Contains $`8esn` Then 123456789[{123456789}..'s_str'] When _usn3[_usn3..][12.e12..] Then $12[True..][{0}..] End Is Null Is Null,[{_usn4}[...e1][..$7],_usn4 Starts With $_usn4 Starts With 12.e12].#usn8? =0X7[0e0..`7esn`][1000..0e0] Union With Distinct *,(:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As `` Skip (:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]}) Is Null Limit $`8esn` In {`1esn`} In 12 Create @usn6=((`` :`7esn`:_usn3)),((usn2 :`4esn`)-[_usn3:#usn8|`1esn`{_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]}]->(@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:`5esn` *0..{_usn4:7[$`2esn`..{`5esn`}]}]->()) Union Load Csv With Headers From (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8) Contains All(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) As #usn8 Fieldterminator 's_str';"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Load Csv From {usn1} In 2.12 In 1000 As _usn4 Merge Shortestpath((((`1esn` :`5esn`{`5esn`:{``} Is Null})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(_usn4 :usn1)))) On Create Set `1esn`+=0.0 =~999,Case When `8esn` Ends With 999 Ends With .e12 Then 12.e12[7..$`6esn`] When 1000 In {`8esn`} In 01 Then `2esn` Starts With $_usn4 Else 0Xa Starts With {`6esn`} Starts With $usn1 End.`3esn`! =Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where `3esn`[{0}][usn1]) Starts With Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[`3esn`? *123456789..]->({_usn3:$`5esn`[`3esn`..]}))),@usn5 =`3esn` Is Null On Create Set `` =$#usn7 Contains 0x0 Contains 1000,#usn7+={``} Is Not Null,Reduce(`5esn`=01234567 Ends With .e12 Ends With $#usn7,`8esn` In 01[2.12..`8esn`]|0Xa =~Null =~$``).`6esn`! ={0} Contains 0.0 Contains $@usn5 Union Remove Single(_usn3 In {`3esn`}[`2esn`] Where `3esn`[`3esn`..][#usn8..]).`1esn`?,[0.e0 Ends With $#usn7 Ends With $7].`6esn`!,(`2esn` :`8esn`:`7esn`)<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(:``:#usn8{usn1:{`6esn`}})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]}).`1esn` Foreach(`6esn` In [#usn8 In {`5esn`}[.e1..``] Where {`1esn`}[12.0..`2esn`][@usn6..{usn1}]] Is Not Null| With Distinct True[..$`6esn`],{@usn6} Ends With 's_str' Ends With 12.0 As `1esn` Order By Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $`3esn` =~{#usn8}|12.0 Ends With True)[..usn2(Distinct)] Ascending Skip Case When {``} Starts With $`2esn` Starts With `1esn` Then $`5esn` Starts With $0 Starts With {0} End[None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e1 Is Not Null)..[`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1]] Load Csv With Headers From `5esn`({12} Ends With 1.0 Ends With .e0) Contains `3esn`(`5esn`[{`4esn`}..`2esn`],9e1[2.12..{#usn8}]) Contains (@usn5 :#usn7)<-[``?:`3esn`|:#usn8{`1esn`:.e0[..$`8esn`]}]-(`5esn` {`4esn`:01 Is Null})<-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(_usn4 ) As `6esn` Fieldterminator 's_str')"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Start `5esn`=Rel:`8esn`({usn1}) Where {@usn6}[{999}..][00..] Create `5esn`=Allshortestpaths(((`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}))),Allshortestpaths(((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]}))) Unwind 0X7[1000..{`1esn`}] As `4esn` Union Start usn2=Relationship( {`5esn`}) Foreach(`8esn` In 0X0123456789ABCDEF[123456789]| Delete 07[..True][..9e12]) Match (({`4esn`:`7esn` Is Null})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})),({`4esn`:{`4esn`} Ends With {usn2} Ends With {999}})<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-(:#usn8:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]}) Using Index `6esn`:`8esn`(``) Using Scan `2esn`:`7esn` Where 0.e0 Contains 9e1 Contains {`7esn`}"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Remove `7esn`(Distinct {usn1} Ends With $0).#usn8! Match `8esn`=(((usn2 :#usn7)<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[`7esn`:`1esn` *0X0123456789ABCDEF{`6esn`:1000[..$0][..True],_usn4:Count ( * ) Ends With $@usn5}]->(`4esn` {usn2:0x0 Is Null,`5esn`:{usn2} =~12}))),((_usn3 :`7esn`:_usn3)-[]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})) Unwind usn2 Ends With 12.e12 As `6esn` Union All Return *,Reduce(`2esn`=12[1.e1..{_usn3}][1.e1..1.0],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{#usn8}[010]) Is Not Null Is Not Null,usn1 In 7 In {123456789} As `5esn` Return Distinct 07 Is Not Null Is Not Null As `6esn`,(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})[[{@usn6}[{999}..][00..],@usn5 =~{`5esn`} =~`5esn`,`7esn` Is Null]][Reduce(`7esn`=0X0123456789ABCDEF Is Null Is Null,`5esn` In $999[0.0..]|$1000[Null][`4esn`])] As @usn6 Limit Shortestpath((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]}))[None(#usn7 In `2esn`[..$#usn8][..Count(*)])][(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})] Detach Delete $`1esn` =~0X7,.e0 Ends With 0.12,0e0[`8esn`..][$123456789..] Union Start ``=Rel:#usn8(_usn3='s_str') ,`7esn`=Rel:`6esn`(\"d_str\")Where 0[..usn2][..{@usn5}] Delete $#usn7[..{`5esn`}][..9e12],{``}[$`8esn`..],Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6};"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` With Distinct usn1(Distinct 999 In {`3esn`} In usn2,$12[Null..Count(*)][{`5esn`}..{999}]) Starts With ``($12[$1000..123456789],\"d_str\" Starts With 01) Starts With All(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`7esn` =~{`8esn`} =~$usn1),(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(`5esn` :@usn5{`8esn`:{usn2} =~12})[All(`` In `` Is Not Null Is Not Null Where `3esn`[{0}][usn1])] As _usn4 Skip $12 Ends With 07 Ends With $123456789 Where _usn3 Starts With 12.e12 Starts With 0.12 Merge `3esn`=(((`1esn` :`5esn`{`5esn`:{``} Is Null})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(_usn4 :usn1))) On Create Set `7esn`(Distinct `3esn`[..010][..$7]).#usn8? =7 Ends With $`4esn` Start _usn3=Relationship:usn2(`8esn`={`8esn`}) ,`1esn`=Rel:#usn8(`8esn`={`6esn`})Where #usn8 Is Not Null Is Not Null Union Create @usn5=((`8esn` :#usn7)-[`3esn`{usn1:True =~010,#usn7:0X0123456789ABCDEF Is Null Is Null}]->(:`1esn`{_usn4:{999}})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null})),@usn6=((`` :`7esn`:_usn3)) With Distinct [{`3esn`} Is Not Null Is Not Null] As `2esn`,Count ( * )[True..][{#usn7}..] As usn2,Reduce(`2esn`=1e1 In 123.654 In `3esn`,`5esn` In \"d_str\" Is Null Is Null|$_usn3[{#usn7}]) Is Not Null As `2esn` Skip {`4esn`} Starts With 1e1 Union All Unwind True[00][0Xa] As #usn8 Remove [0e0 Ends With 1.e1 Ends With $`4esn`].`7esn`!;"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Create Constraint On(_usn4:`8esn`)Assert $`7esn`.`8esn`! Is Unique"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Drop Constraint On(`2esn`:`5esn`)Assert Exists(usn1(0e0 =~`6esn` =~123456789,$#usn8[$`2esn`..][{`2esn`}..]).`8esn`);"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Create Constraint On(`2esn`:@usn5)Assert Exists([$123456789 Ends With `3esn` Ends With 123456789,$7[{usn2}..][{usn2}..],$_usn3 Contains 999 Contains \"d_str\"].`8esn`?);"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Create Constraint On()-[#usn7:`2esn`]-()Assert Exists(Allshortestpaths(((usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]->(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(:@usn6:#usn8$`5esn`))).`5esn`);"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Create Constraint On(#usn7:@usn5)Assert Exists(None(_usn3 In {`3esn`}[`2esn`])._usn3?);"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Load Csv From `5esn`[..Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`])] As _usn4 "), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Create Constraint On()<-[``:_usn3]-()Assert Exists(Shortestpath(((`1esn` :`7esn`:_usn3{`2esn`:$#usn7[#usn7..],_usn4:'s_str' Is Not Null Is Not Null})-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1}))).`5esn`?)"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Unwind Allshortestpaths(((`7esn` {`2esn`:$`6esn`[123456789..12][True..{`3esn`}],#usn7:$_usn3[Count(*)]})-[#usn8? *..07$_usn4]->(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}))) =~(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null}) =~{#usn8:{`3esn`}[@usn6..0Xa][{12}..0Xa],@usn5:False Is Null Is Null} As usn2 Union Optional Match ``=(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[?:#usn7 *01234567..0Xa]-(@usn6 {#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12})-[usn1? *1000..00]->(#usn7 :@usn5{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}))) Using Join On #usn7 Using Index _usn4:usn2(#usn8) Union All Start _usn3=Node:@usn6({#usn7}) Where usn1 In 7 In {123456789} Remove [`5esn` In \"d_str\" Is Null Is Null Where 1.e1[$`1esn`..@usn6][$0..$_usn3]].usn2!,{`5esn`:{999},_usn3:$`5esn`[2.12..]}.`1esn`?"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Drop Constraint On(_usn4:`6esn`)Assert @usn6(`5esn` Is Null,7[..123456789][..{@usn6}]).`6esn` Is Unique;"), - octest_legacy:ct_string("Explain Foreach(`2esn` In \"d_str\"[#usn8]| Create Unique usn1=(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})-[_usn4? *..01]-(_usn4 :usn2{usn1:7[True..][2.12..],`8esn`:2.12 Ends With $_usn3 Ends With `3esn`})-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]-({`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}),(((`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(:`3esn`:@usn5$usn2))) Load Csv With Headers From $`6esn`[010..] As `7esn` Fieldterminator \"d_str\") Unwind {#usn8}[{``}..] As `6esn` Remove Reduce(`3esn`={12} Is Null Is Null,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|`5esn` Starts With $`2esn` Starts With $1000).`7esn`!;"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Unwind {`1esn`:9e1[1000][{123456789}],``:$`8esn`} Starts With (#usn8 :#usn8:#usn8{@usn5:{#usn8} Is Not Null})-[?:`5esn`]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}) As @usn5 Union Load Csv From $usn1[_usn4] As `` Return Distinct (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(:_usn3:_usn3{``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Is Not Null,$#usn8[Count ( * )] As `4esn` Order By Case When Count(*) In $12 Then .e0 Starts With 0 Starts With 0.e0 When {usn1}[0X0123456789ABCDEF] Then $`6esn`[123456789..12][True..{`3esn`}] Else 7 Starts With {@usn6} Starts With $`` End[Case @usn6 Contains $1000 Contains {`7esn`} When 0.12 =~$0 =~$0 Then $usn1[.._usn4][..False] When {0} Ends With $_usn3 Ends With $`7esn` Then 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3] End..] Desc,False Ascending Skip `2esn`[{`4esn`}][$_usn3] Limit Reduce(`4esn`=01 Ends With 999 Ends With {`7esn`},`4esn` In $`3esn` Is Not Null|1.0[`3esn`..][9e0..]) Is Null Is Null Union Foreach(`8esn` In {usn1}[0X0123456789ABCDEF]| Create Unique usn1=Allshortestpaths((`` {@usn6:1.0[$`1esn`..][$123456789..]})-[`7esn`*]->(`7esn` {`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})-[@usn6]-(`5esn` {`4esn`:01 Is Null})),({_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})<-[:#usn7{@usn5:$usn2[9e0]}]-(`2esn` :``:#usn8) Load Csv With Headers From [_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null|999 Is Not Null Is Not Null] Ends With [`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null|{`5esn`} Starts With $`5esn` Starts With .e1] Ends With {``:usn1 Starts With usn1 Starts With $``} As @usn5 ) Return Distinct [12.e12[$_usn3..]][Shortestpath(((@usn6 :`4esn`)))..Reduce(`5esn`=01234567 Ends With .e12 Ends With $#usn7,`8esn` In 01[2.12..`8esn`]|0Xa =~Null =~$``)] As `1esn`,$`8esn` Contains 123456789 Contains $usn2 Order By Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 1.0 =~7 =~{usn2}) Is Not Null Is Not Null Desc,Case When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $`4esn`[..$`3esn`][..0.0] Then `1esn` =~0 =~$#usn7 Else {``} Is Null End Contains Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Contains All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {@usn6}[7]) Ascending,[`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]][..None(#usn8 In 7[..999][..{#usn8}] Where $`7esn`['s_str'])][..`1esn`(Distinct 12e12[$`3esn`],0.0 =~999)] Desc Create #usn8=Allshortestpaths((({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})-[? *..0x0{_usn3:01 Ends With 999 Ends With {`7esn`}}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[?{usn1:0[`7esn`..]}]->({usn1:{`7esn`}[`6esn`][#usn7],usn1:{999} Starts With $999})))"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Unwind $`3esn`[0.12..`8esn`][$#usn7..`5esn`] As `6esn` Union All Match (:#usn7{usn2:{usn1} Ends With $0,#usn8:`5esn` Starts With $`2esn` Starts With $1000})-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(`1esn` :_usn3:_usn3{#usn7:$@usn5 Is Not Null Is Not Null}),`3esn`=({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True}) Using Join On `8esn`,@usn5 Using Index `3esn`:_usn3(`6esn`) Create Unique `2esn`=Allshortestpaths(((#usn7 {``:9e12[`1esn`..][$`1esn`..],#usn7:#usn8})-[?:`7esn` *0X0123456789ABCDEF]->(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})<-[#usn8?:#usn7{`1esn`:#usn7 =~Count ( * ) =~``,usn2:`` Ends With $1000}]->(:@usn6:#usn8{`4esn`:$`8esn`[..00]}))) Union Start #usn7=Node:``(\"d_str\") ,_usn3=Relationship:`3esn`('s_str')Where $@usn5 =~1000 =~1000;"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 With Distinct $_usn3 In {1000} In 0.12,$_usn3[..1000] Order By `7esn`[$12..][$`8esn`..] Descending,9e1[2.12] Ascending,$`1esn` Starts With {`8esn`} Descending Limit @usn6 Contains Null Contains $`7esn` Remove 0Xa.`6esn`?,[`1esn` =~0 =~$#usn7,0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,0.12 In _usn3 In {0}].`4esn`? Union With Distinct Case When @usn5 Is Null Then 2.12 Ends With $_usn3 Ends With `3esn` Else $1000 Is Null End[Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}])..None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa)][Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01|usn2 Is Null)..Case When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` End] As `2esn` Skip {12}[..0X7] Limit 1e1 Contains Count ( * ) Where {`3esn`}[`2esn`];"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Merge Shortestpath((((`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})<-[`8esn`]-(usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[`3esn`?:`` *..0x0{`4esn`:0.e0 Contains 9e1 Contains {`7esn`},@usn6:$@usn5 =~1000 =~1000}]->(:@usn5{_usn3:07 =~01})))) On Create Set `3esn`+=Count(*) In $12,#usn7+=Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`)[None(#usn8 In 7[..999][..{#usn8}] Where 0Xa[2.12])..][[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789]]..],``+=7[$`8esn`..123456789][$usn1..$usn1] On Match Set [$usn1 =~``].`5esn`! =0e0 Starts With `2esn` Starts With $``,usn1 =0.e0[123.654][01],Case {#usn7}[`2esn`..] When $0 Ends With 12.0 Then $`` Is Not Null End.`6esn`! =Extract(`` In `` Is Not Null Is Not Null Where {``}[...e12]|12 Ends With 0x0 Ends With 0.e0) Is Null Is Null Union Create (`2esn` :`8esn`:`7esn`)-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}),@usn5=(({`2esn`:Count(*)[..usn2][..usn2]})-[`7esn`:#usn8|`1esn` *..0x0$`3esn`]-(:`3esn`:@usn5)-[usn1? *0X0123456789ABCDEF]->(`6esn` {_usn4:0Xa =~Null =~$``})) Return Distinct Reduce(usn2={`6esn`} Contains \"d_str\",`8esn` In 01[2.12..`8esn`]|7[..999][..{#usn8}]) Starts With All(#usn8 In 7[..999][..{#usn8}] Where $#usn7 Contains 0x0 Contains 1000) Skip 7 =~{`8esn`} =~$`6esn` Foreach(`8esn` In [$`1esn` =~0X7] =~[{7}[..1.0][..9e0],7 Is Not Null Is Not Null] =~{_usn3:`1esn` Contains {usn2} Contains $#usn8}| Return Distinct .e0 Ends With 0.12,{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}[Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End..[`3esn` In {7} Is Null Where {123456789} Contains $#usn8|#usn7 =~Count ( * ) =~``]][`7esn`(9e1[1000][{123456789}]).._usn3(0.12 =~$0 =~$0)] As `8esn`,{`6esn`} =~$999 As usn1 Skip {`4esn`}[#usn7..$123456789][{7}..usn2] Limit Case _usn3[$`8esn`] When 12e12 Contains 0Xa Then 7[{0}..{_usn4}] End Starts With {#usn7:Null Ends With `2esn` Ends With $usn1,`5esn`:12.0} Remove 2.12.`7esn`!,{`1esn`:$0[..9e1]}.usn2!,Reduce(usn2=#usn7 Is Null Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{_usn3}[12.e12]).@usn6?)"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Create Constraint On(@usn6:_usn4)Assert Exists(Case When $`7esn` =~{`8esn`} =~$usn1 Then $`4esn`[9e12..123.654] When $#usn7 Is Null Then Count(*) Is Null Is Null End.#usn7?);"), - octest_legacy:ct_string("Explain Load Csv From [`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`]|`8esn` Contains $usn1 Contains $12][Filter(_usn3 In {`3esn`}[`2esn`] Where #usn7 Contains _usn3 Contains {`3esn`})..(:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})-[usn2?:`7esn` *123456789..{_usn4:$@usn5 Starts With {0} Starts With 12,`2esn`:{7}[..12e12][..Count ( * )]}]->({_usn3:False =~1e1 =~0.e0,_usn3:{999} Starts With $999})] As `6esn` Fieldterminator \"d_str\" With Distinct $7[{123456789}] As `6esn` Order By _usn4 Starts With $_usn4 Starts With 12.e12 Descending Skip \"d_str\" Ends With {`2esn`} Ends With usn2 Limit Reduce(`2esn`=$_usn3[.e0..$usn2],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$`7esn` Is Null Is Null)[Shortestpath((({``})))..{@usn6:{`6esn`} =~$999}];"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Merge ``=Allshortestpaths(((@usn6 :_usn3:_usn3)-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8))) On Match Set `8esn`+=[9e1[..$`2esn`]][{`8esn`:False =~$7 =~2.12,`3esn`:Count ( * ) =~$usn2 =~$usn2}][Case {``} Is Null When 2.12 Then $123456789 Ends With {`1esn`} Ends With $`4esn` End],`6esn`+=9e1 Is Not Null On Create Set Single(_usn3 In {`3esn`}[`2esn`] Where _usn3 Contains $123456789 Contains ``).`2esn` =Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With Reduce(`1esn`=0.12 Starts With $`5esn` Starts With 12,_usn3 In {`3esn`}[`2esn`]|$12[True..][{0}..]) Starts With Reduce(usn2=Null Ends With {`5esn`} Ends With 0.e0,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{`6esn`}),[@usn6 Ends With {_usn3},12.0 Contains #usn7,$_usn3[..1000]].`2esn`? =0e0 Contains Null,`5esn`+=7 Ends With (@usn5 {`7esn`:$`6esn`[010..]})-[:`8esn` *..01]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]}) Ends With #usn8(False =~$7 =~2.12) Create Unique ``=Allshortestpaths(((:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->(:usn1{`3esn`:{123456789} Is Null Is Null}))) Create usn1=Allshortestpaths((#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(usn2 {``:01[{@usn5}]})),(({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})-[`3esn`{usn1:True =~010,#usn7:0X0123456789ABCDEF Is Null Is Null}]->(:`1esn`{_usn4:{999}})<-[?:`7esn`{`3esn`:{#usn8}[010]}]-(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})) Union Delete $`8esn` Contains 123456789 Contains $usn2,Shortestpath(((({`4esn`:`7esn` Is Null})<-[`4esn`? *..12{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7}]->({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3))))[(`4esn` {`6esn`:#usn8[..{#usn7}]})<-[?:`8esn`{`3esn`:1.0 In Count(*)}]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[`1esn`:usn2|``]->(`3esn` {@usn5:$usn2[9e0]})] Unwind $#usn8[$`2esn`..][{`2esn`}..] As `5esn` Delete 0x0 Is Null,00[`2esn`..12][123456789..0.e0],Count(*)[$#usn8];"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Drop Constraint On()-[#usn7:@usn5]-()Assert Exists(Reduce(`3esn`=01234567 Is Null Is Null,#usn7 In {``} Is Not Null|{`5esn`} =~`4esn` =~{_usn4}).`3esn`?);"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Create `4esn`=Shortestpath((`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})<-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(`3esn` :`6esn`)),Allshortestpaths(((_usn4 :`8esn`:`7esn`{`4esn`:{`2esn`} Is Not Null Is Not Null,`1esn`:.e1 =~$`8esn`})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2}))) Foreach(`6esn` In `7esn`[..2.12][..{usn1}]| Start `2esn`=Node:@usn6({_usn4}) ,_usn3=Relationship:`8esn`({`1esn`}) Return Distinct 0X7[1000..{`1esn`}] As `3esn`,$`2esn`[12.e12..][{`4esn`}..] Order By 0.0 =~999 Asc,$`5esn` In 0.e0 Asc,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) Ascending Limit Count ( * ) Is Null) Unwind {1000} =~0 =~123.654 As `3esn`;"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Match #usn7=Shortestpath((`2esn` :usn1)<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(`3esn` :`8esn`:`7esn`)<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)) Using Join On `8esn`,@usn6 Where 999 Is Not Null Is Not Null Union Delete $`7esn` Is Not Null,`2esn`(Distinct $``,7 Starts With {@usn6} Starts With $``) Contains {@usn6:_usn3[$`8esn`],usn1:$@usn5 Is Not Null} Contains {@usn5:`8esn`[{123456789}..]},Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..]) In Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null) In Filter(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {#usn8}[.._usn4][..$`3esn`]) Load Csv With Headers From 9e0 As `1esn` Load Csv From [`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null As usn2 Fieldterminator 's_str'"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Drop Constraint On(`4esn`:#usn7)Assert Reduce(usn1=Count ( * ) Ends With 12.0,`3esn` In {7} Is Null|$999).`3esn`! Is Unique;"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Unwind True[00][0Xa] As #usn8 Remove [0e0 Ends With 1.e1 Ends With $`4esn`].`7esn`!"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Create Constraint On()-[`8esn`:``]-()Assert Exists({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2}.`8esn`!);"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Start usn2=Node:_usn4(``={#usn7}) ,``=Node:usn2(#usn8=\"d_str\")Where usn1 Starts With usn1 Starts With $`` Return *,$`7esn`['s_str'] As #usn8,Reduce(`3esn`=$0[..9e1],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|999 In {`3esn`} In usn2) Starts With Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Starts With Allshortestpaths((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})) As `` Limit {@usn5} =~Count ( * ) =~12.0 Create (`6esn` :`8esn`:`7esn`)<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}});"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Drop Constraint On(@usn6:`3esn`)Assert {_usn3:{7}[..1.0][..9e0],`8esn`:{123456789} Is Not Null}.usn2 Is Unique;"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Drop Constraint On(@usn5:_usn4)Assert Exists(All(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc]).@usn5);"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Remove `4esn`({12} Ends With 1.0 Ends With .e0).`3esn`!,_usn4:`2esn`:usn1,[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e1 Is Not Null|Null[$`5esn`][False]].`3esn`? Foreach(`2esn` In $@usn5 Starts With {@usn5} Starts With 9e0| Return Distinct 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] Skip $`5esn`[2.12..] Limit {_usn4}[`3esn`][12.0] Create Unique ((({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})<-[`5esn`:#usn7 *00{#usn7:{999} Starts With {0}}]-(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]})-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))),Allshortestpaths((@usn6 :_usn3:_usn3)-[?{`3esn`:7[{0}..{_usn4}]}]->(`7esn` :_usn3:_usn3)-[?:usn2|`` *..010{`4esn`:{`4esn`} Starts With $usn2 Starts With $1000,`7esn`:$@usn6 Contains 07}]->(:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})));"), - octest_legacy:ct_string("Cypher 12.999 Create Constraint On()-[``:`1esn`]-()Assert Exists(Case @usn6 Contains $1000 Contains {`7esn`} When $_usn3[Count(*)] Then 010[#usn7..True] When {`2esn`} Is Not Null Is Not Null Then $`2esn` Is Null Is Null End.`4esn`?)"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Create Constraint On(`3esn`:#usn8)Assert Exists(`2esn`(Distinct 01234567[usn2..$12][{`7esn`}..$usn2]).#usn7?);"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Drop Constraint On(@usn6:`3esn`)Assert Exists(usn2(Distinct `5esn` Is Null,#usn8 Is Not Null Is Not Null).``);"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Foreach(`2esn` In Null Is Not Null Is Not Null| With {``} Is Not Null As #usn7,{#usn7}[`2esn`..],Count ( * ) Contains {`1esn`} Contains 07 Order By `8esn` Is Not Null Is Not Null Desc Limit $123456789[_usn3][{#usn7}] Where Count ( * ) Ends With 12.0) Create usn2=Shortestpath((({_usn3:.e12[@usn5..$12]})-[`3esn`:#usn7]->(@usn6 {_usn3:{#usn7} Is Not Null Is Not Null}))),`5esn`=(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})-[_usn4? *..01]-(_usn4 :usn2{usn1:7[True..][2.12..],`8esn`:2.12 Ends With $_usn3 Ends With `3esn`})-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]-({`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}) Union Create `7esn`=Allshortestpaths(((`1esn` :#usn7))),((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})) Remove {`4esn`:01 Is Null}.#usn7?,(:`3esn`:@usn5{``:12.e12[$_usn3..],_usn3:$`6esn`[010..]})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07}).`3esn`,Single(`8esn` In 01[2.12..`8esn`] Where {usn2}).`7esn` Start _usn3=Node:@usn6({#usn7}) Where `5esn` Starts With 010 Starts With 0.0 Union All Create Unique Allshortestpaths((`1esn` {_usn4:1.e1[$`1esn`..@usn6][$0..$_usn3],#usn8:$@usn5[..12e12][..$123456789]})<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})),(:@usn6:#usn8{`7esn`:0x0[`4esn`..'s_str']}) Remove usn1(Distinct {`3esn`} In 01,0X7 =~9e1).`3esn`?,Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}).`1esn`!,Filter(`5esn` In $999[0.0..] Where $`3esn`[..$123456789][..$`1esn`]).@usn6 Start usn1=Node:`7esn`(`3esn`={``}) "), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Create Constraint On(#usn7:`8esn`)Assert Single(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {`4esn`} =~{7} =~{`7esn`}).`` Is Unique;"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Optional Match ((`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0})),Shortestpath((`7esn` :``:#usn8)<-[#usn8:`6esn`|`5esn`]-(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})) Using Index `2esn`:`1esn`(`4esn`) Using Scan `3esn`:_usn4 Where {`7esn`}[`6esn`][#usn7];"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Remove Shortestpath(((({#usn7:2.12 Contains usn2 Contains True})-[_usn3?:`6esn`|`5esn` *0X0123456789ABCDEF]-(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}))))._usn3!,Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {123456789} Is Null Is Null).`6esn`!,{_usn4:12.0 Ends With True}.`2esn`! Remove 123.654.`3esn`!;"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Optional Match Shortestpath((`2esn` :#usn7{`5esn`:\"d_str\" Starts With $123456789}))"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Create Constraint On(_usn3:`8esn`)Assert Exists([12.e12[7..$`6esn`],07 In `2esn` In 12e12,{#usn8}[.._usn4][..$`3esn`]]._usn3)"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Drop Constraint On(`2esn`:`4esn`)Assert Reduce(`7esn`=False[..``],#usn8 In {`5esn`}[.e1..``]|$`` Starts With $1000 Starts With False).``? Is Unique"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Optional Match ((`4esn` :@usn6:#usn8)-[:`8esn`*]->({_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})),`3esn`=Shortestpath(((:`1esn`{`5esn`:1.0 In Count(*)}))) Using Scan _usn4:`7esn` Where 0x0[{`7esn`}..][$usn2..] Detach Delete `3esn`[$`1esn`..999][``..$123456789],$12[Null..Count(*)][{`5esn`}..{999}] Load Csv With Headers From Extract(`5esn` In \"d_str\" Is Null Is Null)[Any(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``)][Case $`7esn` Is Null Is Null When {#usn7}[9e1..][{123456789}..] Then False =~1e1 =~0.e0 Else 1000 In {`8esn`} In 01 End] As _usn4 Fieldterminator \"d_str\" Union All Create ({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}) Union All Delete {0}[12.0..0Xa][$`5esn`..{_usn3}] Create Unique _usn3=Allshortestpaths((`8esn` {`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})<-[`3esn`? *..01]->(:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)),`8esn`=((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}}))"), - octest_legacy:ct_string("Explain Drop Constraint On()-[`7esn`:@usn5]-()Assert Exists(Reduce(usn2=@usn6 Contains $1000 Contains {`7esn`},`2esn` In `1esn` =~\"d_str\"|usn1 In 7 In {123456789}).`8esn`!)"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Create Constraint On(`2esn`:`1esn`)Assert Exists(({`5esn`:$`8esn`[1000..0Xa]})-[`4esn`?:_usn4|:usn2 *..01]->(`7esn` :`8esn`:`7esn`{#usn8:01234567[usn2..$12][{`7esn`}..$usn2]}).`4esn`!)"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Drop Constraint On()<-[`7esn`:`2esn`]-()Assert Exists(({`8esn`:12e12 Is Not Null Is Not Null,usn1:0X7[0e0..`7esn`][1000..0e0]})-[`2esn`:@usn6|`6esn` *..999]->(_usn4 :`4esn`)._usn3!);"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Unwind 12 Ends With $usn2 As `6esn` Unwind `7esn`[$12..][$`8esn`..] As `2esn` Unwind .e0 =~`6esn` =~{12} As `3esn`"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Create Constraint On(`8esn`:#usn8)Assert Exists([01 =~{_usn3} =~`3esn`,9e1[2.12..{#usn8}],{usn2}[.e0..$999]].`8esn`);"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 With Distinct *,`7esn` Is Null As `7esn`,None(`` In `` Is Not Null Is Not Null Where $`6esn` Is Null) Contains Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}))) Contains Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End Limit [@usn6 Contains Null Contains $`7esn`,{`4esn`} Starts With $usn2 Starts With $1000] Ends With Any(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $_usn4[0e0..][False..]) Ends With (`1esn` :`2esn`:usn1)-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(`1esn` :_usn3:_usn3{#usn7:$@usn5 Is Not Null Is Not Null})"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Remove @usn5(2.12 Is Null,_usn3 Ends With 7 Ends With `1esn`).usn1,[`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`]].#usn7? Foreach(`5esn` In {#usn8} Is Null| Create `5esn`=Allshortestpaths(((`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}))),`6esn`=Shortestpath((((_usn4 :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})<-[``?:_usn4|:usn2{`1esn`:False Is Null Is Null}]->(usn2 :`6esn`{#usn7:Count ( * ) Contains 07})))) Start #usn8=Relationship:usn2(`8esn`={`8esn`}) ,`3esn`=Node:usn1(\"d_str\")Where 0.0[Null][$`2esn`]) Union Unwind `8esn`[$#usn7..123456789] As `` Start `6esn`=Rel:#usn8(@usn6={_usn4}) ,`4esn`=Relationship:`6esn`(#usn8={_usn3});"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Using Periodic Commit Load Csv With Headers From 9e12[`6esn`..12.0] As @usn6 Merge (`7esn` {@usn5:{7}[..1.0][..9e0]})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})<-[`1esn`?:usn2|``]-({@usn5:{usn2}[.e0..$999]}) On Match Set `2esn`+=#usn7 Contains _usn3 Contains {`3esn`},Reduce(`8esn`={usn1} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|0xabc[.e0]).`3esn`! =$@usn5 Starts With 01 Starts With .e0 Detach Delete $12 Ends With 07 Ends With $123456789,$`6esn`[{_usn3}..$`4esn`][$_usn4...e12]"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Start `7esn`=Node:`7esn`(`3esn`={``}) ;"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Return All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By (`` :#usn7)<-[`1esn`?:usn1|@usn6 *0..]-(:#usn8:#usn8{@usn6:$_usn3[..1000]})[[`4esn`[..010][..{12}],0.e0 Starts With `2esn`,1000[..$0][..True]]..] Desc,0Xa =~Null =~$`` Ascending,Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12) Ends With Single(_usn3 In {`3esn`}[`2esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12]) Desc Limit Reduce(``={999},#usn8 In {`5esn`}[.e1..``]|$_usn3['s_str'][07])[..{`4esn`:0.0[$0][{@usn5}]}][..Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..])] Union All Remove Case When {usn2} =~12 Then `7esn`[..2.12][..00] When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null End.usn2?,[1000 =~@usn6 =~0x0,12.e12[7..$`6esn`],_usn4 Is Null Is Null].#usn7,[{_usn4} Is Not Null Is Not Null,{#usn7} Is Not Null Is Not Null,$usn1[.._usn4][..False]].`4esn`! Foreach(usn1 In None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {@usn6}[{999}..][00..]) Ends With Shortestpath((`6esn` {_usn4:0Xa =~Null =~$``})<-[``? *0X7..]->(`` :`1esn`)) Ends With Reduce(_usn3={7}[..1.0][..9e0],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|`1esn` Contains {usn2} Contains $#usn8)| With Distinct *,{``}[`8esn`..],Case {`3esn`}[@usn6..0Xa][{12}..0Xa] When {usn1}[0X0123456789ABCDEF] Then 0x0 Ends With $12 When 0e0 Starts With `2esn` Starts With $`` Then {123456789}[9e12][{0}] Else 0X7[1000..{`1esn`}] End[..({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})] As #usn7 Order By False Contains {`6esn`} Ascending,{`1esn`}[usn1][.e1] Asc Where `7esn`[..2.12][..{usn1}] Remove exists($123456789[_usn3][{#usn7}]).`6esn`?,count(Distinct $999 Is Not Null).`8esn`!,Case When $`5esn` In $`6esn` Then $`6esn` Ends With Count(*) When 0X7[`7esn`][123.654] Then 0X0123456789ABCDEF[{_usn4}..00] Else $@usn5 Is Not Null End.usn2) Union All Create #usn7=(`4esn` :#usn7),(({`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})<-[usn2?:#usn7]-(@usn6 :@usn5{usn2:$`5esn`[..$`5esn`][..$12]})) Match `8esn`=(((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) Using Join On `8esn`,@usn5 Where 123456789[0xabc..'s_str'][``..`1esn`];"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Create (((:`6esn`{_usn4:'s_str' Ends With 7 Ends With {_usn4},@usn6:$`2esn`})-[:@usn6|`6esn` *1000..00]-(usn1 {`1esn`:$@usn6 Ends With $_usn4 Ends With 0.12,`3esn`:`4esn` =~$`5esn`})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(:`3esn`:@usn5$usn2))),@usn5=((:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12})) Unwind 0.e0 Starts With 12.e12 Starts With {_usn4} As _usn3 Load Csv With Headers From None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As usn1 ;"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain With 123.654 Is Not Null,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where False|{`1esn`}[12.0..`2esn`][@usn6..{usn1}]] =~Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 00[{`8esn`}..][{`8esn`}..]|{0}) =~{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}} Where $@usn5 Starts With $1000 Create Unique `3esn`=Shortestpath((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})));"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Unwind Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0)[..Case When 01234567[usn2..$12][{`7esn`}..$usn2] Then usn1[`5esn`..$7] Else $1000[0Xa][{#usn7}] End][..Reduce(@usn6=07 Contains 0X7 Contains $`8esn`,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|{#usn7}[9e1..][{123456789}..])] As _usn4 Optional Match ((usn2 :#usn8:#usn8)-[`2esn`?{_usn3:$_usn4[Count ( * )..],#usn7:{`3esn`}[..07][..{`5esn`}]}]-({_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]})),Allshortestpaths(((:_usn4{_usn4:{7} In `2esn`})<-[#usn8?:usn1|@usn6]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]}))) Using Scan @usn5:#usn7 Using Index #usn8:`2esn`(`5esn`) Unwind $#usn8 As `6esn`"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Create Constraint On()-[``:`2esn`]->()Assert Exists(Shortestpath((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})).usn2?)"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Create Constraint On(@usn5:`4esn`)Assert Exists(None(`8esn` In 01[2.12..`8esn`] Where 0X7[..2.12]).`6esn`?)"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Foreach(`7esn` In `1esn`(Distinct $@usn5[..12e12][..$123456789],{#usn7} Is Not Null Is Not Null)[{`7esn`:\"d_str\" Starts With $123456789}..]| Load Csv With Headers From `7esn` In 00 As @usn5 )"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Load Csv From {#usn7}[True][.e1] As `` Fieldterminator \"d_str\" Remove (:usn2{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})-[`2esn`:`7esn`]-(`2esn` :usn1).`8esn`!,Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0xabc[01..{999}][{7}..{`7esn`}]|0 In `2esn` In 010).`1esn`!,{#usn8:$123456789 Is Null Is Null,`8esn`:Count ( * )[0.12...e1]}._usn4 With Distinct False Is Null Is Null,Count(*) Is Null Is Null As usn2,0Xa[9e1..][$`6esn`..] As @usn6 Order By 123.654 Is Not Null Is Not Null Descending,{123456789} Starts With 0.0 Starts With `5esn` Desc,Case 01[{`2esn`}..{@usn6}][$`2esn`..0.0] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] When 12e12[$`3esn`] Then {`5esn`} Contains $0 Contains {``} Else usn1 Starts With usn1 Starts With $`` End[usn2(Distinct 0.12 In _usn3 In {0},@usn6 Is Null Is Null).._usn4(0.e0 Starts With 12.e12 Starts With {_usn4},0X0123456789ABCDEF Is Null Is Null)][[{7}[$``][{@usn6}],0.0 Ends With 010 Ends With 1.e1]..$`4esn`] Asc Skip 0.0[Null][$`2esn`];"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Remove All(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 07 Contains 0X7 Contains $`8esn`).`4esn`,Reduce(``=`5esn`[.e0..][07..],`5esn` In \"d_str\" Is Null Is Null|0.0 In $usn1).#usn8? Union All Merge Allshortestpaths(((:`2esn`:usn1{@usn5:`5esn`[.e0..][07..],`4esn`:`8esn` =~0xabc =~010})<-[``? *0X7..]->(`8esn` :#usn7))) On Create Set `5esn`+=999 In {`3esn`} In usn2;"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Create Constraint On(#usn8:`4esn`)Assert Exists(Reduce(`8esn`={`2esn`} Is Not Null Is Not Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{usn1} Ends With $0).`8esn`);"), - octest_legacy:ct_string("Cypher 12.999 Create Constraint On(`5esn`:`3esn`)Assert Exists({`3esn`:12.0 Contains #usn7}.@usn5!);"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Create Constraint On(@usn5:`5esn`)Assert #usn8(Distinct {``}[010..][0xabc..],`7esn` In {123456789} In `1esn`).usn2? Is Unique"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Create Constraint On(`5esn`:usn1)Assert None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e1 Is Not Null).`5esn`! Is Unique"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Foreach(_usn4 In {@usn6} Ends With 's_str' Ends With 12.0| Return `6esn`[2.12..01][{``}..False] As @usn5 Skip 1.0[$`1esn`..][$123456789..] Limit Allshortestpaths((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3))[{_usn3:01[{@usn5}]}..Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where True In 0e0)][Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0.12 In _usn3 In {0})..None(`3esn` In {7} Is Null Where 0Xa[2.12])] Delete Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With Reduce(`1esn`=0.12 Starts With $`5esn` Starts With 12,_usn3 In {`3esn`}[`2esn`]|$12[True..][{0}..]) Starts With Reduce(usn2=Null Ends With {`5esn`} Ends With 0.e0,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{`6esn`})) Return Distinct (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As ``,12[..$`4esn`] As `7esn` Skip Allshortestpaths((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3))[Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})))] Union Detach Delete [`` Ends With 0Xa Ends With `2esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},{`4esn`} =~{7} =~{`7esn`}],Reduce(`4esn`=01 Ends With 999 Ends With {`7esn`},`4esn` In $`3esn` Is Not Null|1.0[`3esn`..][9e0..]) Is Null Is Null,$_usn3 In {1000} In 0.12 Detach Delete {1000}[$999...e12][`7esn`..'s_str'],12.e12 Is Not Null Is Not Null,$#usn8 Ends With $`2esn` Ends With $@usn6 Create `3esn`=Allshortestpaths(((:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null}))) Union All Detach Delete 0.0 =~0 =~`6esn`,@usn5 In $7,{`7esn`}[..$@usn5][..$#usn8] Return `6esn`(Distinct 2.12 Ends With $_usn3 Ends With `3esn`) Is Null,`8esn`[$#usn7..123456789],All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By Single(#usn8 In {`5esn`}[.e1..``] Where 123.654[$`1esn`]) Is Not Null Is Not Null Descending,_usn4(Distinct _usn3[_usn3..][12.e12..])[[0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},0Xa Starts With {`6esn`} Starts With $usn1]] Desc,1e1 In \"d_str\" In `7esn` Descending Skip [`` Ends With 0Xa Ends With `2esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},{`4esn`} =~{7} =~{`7esn`}] Remove [{12} Contains {123456789} Contains `4esn`,1.e1[`8esn`][00],1.0[$`1esn`..][$123456789..]]._usn4?,Reduce(_usn3=123456789[#usn8..False],_usn3 In {`3esn`}[`2esn`]|123.654 Contains $`4esn` Contains 1.0).#usn8?"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Create Constraint On(@usn6:usn2)Assert Exists(Reduce(`8esn`=$0[$`1esn`..07],`8esn` In 01[2.12..`8esn`]|{12} =~#usn8)._usn4?)"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Detach Delete {`7esn`} Ends With `4esn` Ends With {@usn5},None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12])[Reduce(`4esn`=`1esn` =~0 =~$#usn7,`2esn` In `1esn` =~\"d_str\"|{123456789} Is Null Is Null)][{``:`7esn` Starts With $#usn7 Starts With $`7esn`}],Case When {_usn4} Starts With 0.e0 Starts With 0x0 Then 12 Ends With 0x0 Ends With 0.e0 Else $1000 Is Null Is Null End Starts With `7esn`(Distinct $#usn7[..{`5esn`}][..9e12]) Starts With {`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`};"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Create Constraint On(`2esn`:_usn3)Assert `7esn`(Count(*) Ends With 12.0 Ends With 12)._usn4 Is Unique"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Remove (_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[? *00]->(@usn5 :usn1)<-[?{`3esn`:7[{0}..{_usn4}]}]-(#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})._usn4!,Case $#usn8[Count ( * )] When .e1[{`7esn`}..{_usn4}] Then {7} Is Null End.`` Detach Delete $1000 =~$`2esn`,00[Count(*)..] Unwind 1e1 Contains 0e0 As _usn3 Union Unwind $12[..{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}] As usn1;"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Drop Constraint On(`4esn`:#usn8)Assert Allshortestpaths(((:@usn5{#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`4esn` {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null})))._usn4 Is Unique"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Create Constraint On(`6esn`:@usn6)Assert Allshortestpaths(((@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[? *..12{#usn8:`5esn` Is Null,#usn8:`1esn`[{usn1}..``][7..$#usn8]}]-(`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]}))).`7esn`? Is Unique"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Drop Constraint On()<-[`6esn`:`7esn`]-()Assert Exists(Case When $#usn8[$`8esn`..{`8esn`}] Then $#usn8[$`8esn`..{`8esn`}] Else 9e1[2.12..{#usn8}] End.`6esn`!);"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Merge (:`8esn`:`7esn`) Create Unique ((`4esn` :@usn6:#usn8)-[:`8esn`*]->({_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})),`3esn`=Shortestpath(((:`1esn`{`5esn`:1.0 In Count(*)})));"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Drop Constraint On()<-[`7esn`:usn1]-()Assert Exists(Single(#usn7 In `2esn`[..$#usn8][..Count(*)]).usn1);"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Foreach(#usn8 In 9e1[1000][{123456789}]| Load Csv With Headers From Case `7esn`[9e0..] When 1.0 =~'s_str' =~{`2esn`} Then 0xabc[01..{999}][{7}..{`7esn`}] When 0X7[$999][_usn4] Then 010 In Count(*) Else usn2[{7}] End =~Reduce(@usn6=usn2[9e12],#usn8 In 7[..999][..{#usn8}]|{999} Is Null Is Null) =~(:`1esn`{_usn4:$@usn6 Ends With $_usn4 Ends With 0.12})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->(_usn3 {`5esn`:12.e12[0xabc],`2esn`:{`7esn`}[..$@usn5][..$#usn8]})-[`7esn` *..0x0]-(`2esn` :_usn4) As `1esn` ) Load Csv From `3esn` In $0 In `1esn` As `8esn` Fieldterminator \"d_str\" Create Unique #usn7=((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})),Shortestpath((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))) Union Unwind {7}[$7..$``][{``}..{7}] As `3esn` Start usn1=Node:``(@usn6={usn1}) ,usn1=Relationship:`3esn`(`6esn`='s_str')"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Start `1esn`=Node:usn2({12}) ,usn1=Node:`7esn`(`3esn`={``})Where {usn2} Foreach(_usn3 In (_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})<-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :`3esn`:@usn5)<-[? *..999]-(#usn8 :`5esn`{#usn8:0xabc[.e0]})[Shortestpath(({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[`6esn`? *0..]-(:usn1{`3esn`:{123456789} Is Null Is Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))..Allshortestpaths((_usn4 :#usn7)<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]}))]| Delete `4esn`[$999..{`1esn`}][{@usn6}.._usn3] Create #usn8=Shortestpath(((`5esn` )-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(@usn6 {`3esn`:{``} Is Not Null})<-[`1esn` *0Xa{_usn3:Null Ends With `2esn` Ends With $usn1,#usn8:.e12 Is Not Null Is Not Null}]->(usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})))) Union All Start usn2=Rel:usn2({`4esn`}) Where $usn1 In {999} In $#usn7;"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Create Constraint On(`1esn`:_usn3)Assert Exists(Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where False =~1e1 =~0.e0)._usn3);"), - octest_legacy:ct_string("Cypher 12.999 Load Csv With Headers From `8esn`[$`8esn`..{`4esn`}] As @usn6 Fieldterminator 's_str' Create @usn6=((`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})),(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})<-[usn2?:`5esn` *0..]-({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}) Start `6esn`=Rel:#usn8(@usn6={_usn4}) ,`4esn`=Relationship:`6esn`(#usn8={_usn3})"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Merge @usn6=Allshortestpaths(((@usn5 :`4esn`))) Delete Shortestpath((((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))))[..Case 0Xa =~123456789 =~_usn4 When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $1000 In $1000 In $`3esn` Then 0.e0[#usn8] End][..(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})],Case $1000[999] When `4esn`[`5esn`..12][@usn6..False] Then {0} Ends With $_usn3 Ends With $`7esn` When $usn1 In {999} In $#usn7 Then Count ( * )[True..][{#usn7}..] End Ends With {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null},`7esn` In 00 Remove (:usn1{_usn3:{#usn7}[`2esn`..]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(#usn7 ).`2esn`,Case `5esn` Starts With $`2esn` Starts With $1000 When 123.654 =~$usn2 =~{999} Then Count ( * ) Contains `8esn` Contains .e1 End._usn3!,exists($12[$1000..123456789],123456789[0xabc..'s_str'][``..`1esn`]).@usn5 Union All Match (({`4esn`:`7esn` Is Null})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})),({`4esn`:{`4esn`} Ends With {usn2} Ends With {999}})<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-(:#usn8:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]}) Using Index `6esn`:`8esn`(``) Using Scan `2esn`:`7esn` Where 0.e0 Contains 9e1 Contains {`7esn`} Create (:``:#usn8$`3esn`)-[`1esn`?:`8esn`]->(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Drop Constraint On()-[``:`2esn`]->()Assert Exists((`1esn` {``:`7esn` Starts With $#usn7 Starts With $`7esn`})-[`4esn`]->(:`6esn`$123456789)-[?:#usn7 *0xabc..]->(`3esn` :`5esn`{_usn3:7[True..][2.12..],`1esn`:$@usn5 Starts With {0} Starts With 12}).@usn5);"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Return Distinct usn1[..@usn6][...e0],usn1 Is Not Null As `6esn`,False[_usn3..`8esn`][$`8esn`..{`3esn`}] As _usn3 Order By Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End[[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]]..Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})))] Ascending,All(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Contains (`5esn` :_usn4{`5esn`:07[..True][..9e12]})-[`8esn`?:`2esn`{@usn6:{12}[..0X7]}]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]})<-[_usn4{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00}) Contains [0.12[$`3esn`..$_usn3][12.0..usn1]] Ascending Start `3esn`=Rel:#usn8(`8esn`={`6esn`}) ,usn1=Node:`3esn`(`2esn`={usn1}) Union All Load Csv With Headers From Case When False Then 0.e0 Ends With $#usn7 Ends With $7 When {@usn6}[{999}..][00..] Then `5esn` Ends With {``} Ends With 12.e12 Else 123.654[$`1esn`] End[Reduce(#usn8=$`6esn` Ends With Count(*),`2esn` In `1esn` =~\"d_str\"|_usn4 Contains 2.12)..] As `1esn` "), - octest_legacy:ct_string("Explain Foreach(`4esn` In $12 Starts With {`1esn`} Starts With Null| Start `7esn`=Rel( {``}) Where `1esn` =~0 =~$#usn7 Delete Extract(#usn7 In {``} Is Not Null Where 123456789[0xabc..'s_str'][``..`1esn`])[Reduce(usn1=False,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|$_usn4 Starts With 1e1)]) Union Load Csv From {usn1} In 2.12 In 1000 As _usn4 Merge Shortestpath((((`1esn` :`5esn`{`5esn`:{``} Is Null})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(_usn4 :usn1)))) On Create Set `1esn`+=0.0 =~999,Case When `8esn` Ends With 999 Ends With .e12 Then 12.e12[7..$`6esn`] When 1000 In {`8esn`} In 01 Then `2esn` Starts With $_usn4 Else 0Xa Starts With {`6esn`} Starts With $usn1 End.`3esn`! =Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where `3esn`[{0}][usn1]) Starts With Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[`3esn`? *123456789..]->({_usn3:$`5esn`[`3esn`..]}))),@usn5 =`3esn` Is Null On Create Set `` =$#usn7 Contains 0x0 Contains 1000,#usn7+={``} Is Not Null,Reduce(`5esn`=01234567 Ends With .e12 Ends With $#usn7,`8esn` In 01[2.12..`8esn`]|0Xa =~Null =~$``).`6esn`! ={0} Contains 0.0 Contains $@usn5"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Return Distinct {``} Is Not Null As #usn7,{#usn7}[`2esn`..],Count ( * ) Contains {`1esn`} Contains 07 Order By `8esn` Is Not Null Is Not Null Desc Limit $123456789[_usn3][{#usn7}];"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Create Constraint On(`2esn`:`2esn`)Assert $123456789._usn3! Is Unique"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Start @usn5=Relationship:``(\"d_str\") Union With Distinct *,$`3esn`[0.12..`8esn`][$#usn7..`5esn`],`3esn`[..010][..$7] As usn1 Order By (:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case When `6esn`[12..$usn2][{#usn8}..{usn2}] Then {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] When .e12[@usn5..#usn7][010..{usn1}] Then 0.12 =~$0 =~$0 End Desc,({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}) In Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 07 In `2esn` In 12e12) Descending,$12 Is Not Null Is Not Null Ascending Limit 123.654[0e0..$``][$`1esn`..$`8esn`] Remove Reduce(``=00[`2esn`..12][123456789..0.e0],_usn3 In {`3esn`}[`2esn`]|{#usn8} Is Null).`7esn`?"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Create `1esn`=Shortestpath((((`2esn` :`8esn`:`7esn`)<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})))),(((:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[:`6esn`|`5esn` *123456789..]-(#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}))) Union All Optional Match (:`5esn`{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}),((`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[`2esn`]->({`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}})) Using Index `6esn`:@usn5(`2esn`) With Distinct *,0Xa Is Null Is Null As `1esn` Order By {7}[$`5esn`][{_usn3}] Asc,.e1 Is Null Is Null Descending,usn1[`5esn`..$7] Desc Union Merge `6esn`=(@usn5 {`7esn`:$`6esn`[010..]})-[?:`8esn`{`3esn`:1.0 In Count(*)}]-(`4esn` :#usn7{``:$#usn7[@usn5..{1000}][1.e1..7]})-[`5esn`?:@usn5{`4esn`:0Xa =~Null =~$``}]->(:#usn7{usn2:{usn1} Ends With $0,#usn8:`5esn` Starts With $`2esn` Starts With $1000}) On Create Set `4esn`+=(`1esn` :#usn8:#usn8)-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})[..(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})][..`5esn`({12} Ends With 1.0 Ends With .e0)],Any(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`])._usn4! ={@usn6}[{999}..][00..] On Match Set _usn3+={_usn3}[12.e12],`3esn`+=@usn5 =~{`5esn`} =~`5esn`,#usn8 =[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*));"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Drop Constraint On()<-[`5esn`:`7esn`]-()Assert Exists([@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 123456789 Ends With 12.e12 Ends With $`7esn`|`3esn`[..$12][..{`7esn`}]].`6esn`)"), - octest_legacy:ct_string("Cypher 12.999 Match @usn6=Allshortestpaths((`6esn` :`8esn`:`7esn`)<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})),`8esn`=((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})) Using Index `6esn`:`8esn`(``) Using Join On `5esn`,#usn7 Where 1.0[0e0..0.e0] Create Unique Allshortestpaths((_usn3 :@usn5)-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})),`4esn`=Allshortestpaths(({@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})-[`6esn`?:``]-(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})) Load Csv With Headers From Reduce(`3esn`=$0[..9e1],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|999 In {`3esn`} In usn2) Starts With Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Starts With Allshortestpaths((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})) As @usn5 Fieldterminator 's_str'"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Load Csv From {usn2} =~12 As #usn8 Unwind [`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]][..None(#usn8 In 7[..999][..{#usn8}] Where $`7esn`['s_str'])][..`1esn`(Distinct 12e12[$`3esn`],0.0 =~999)] As `8esn` Union Remove [`5esn` In $999[0.0..] Where #usn7 =~Count ( * ) =~``|\"d_str\" Is Null Is Null].`5esn`!,(:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12})-[usn1:`8esn`]-({_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null}).`2esn`,Case When 9e1[$usn2] Then {7}[..12e12][..Count ( * )] When 12.e12[$_usn3..] Then {`8esn`} Ends With `6esn` End.#usn7? Match `5esn`=Allshortestpaths(((`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}))),Allshortestpaths(((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]}))) Where {7}[..12e12][..Count ( * )] Foreach(#usn7 In {`3esn`} In $@usn5 In _usn4| Detach Delete {999} Contains .e0 Contains 12.0,$usn1[{`5esn`}][$`6esn`])"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Create Constraint On()<-[``:_usn4]-()Assert Exists(Shortestpath((((_usn3 )-[?{@usn6:0X7[`7esn`][123.654]}]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})))).usn1?)"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Create Constraint On(``:@usn5)Assert Exists([#usn8 In {`5esn`}[.e1..``] Where $`` =~12.0 =~$`7esn`].@usn6?);"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Delete Reduce(_usn4=01[{`2esn`}..{@usn6}][$`2esn`..0.0],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|0.12 =~$0 =~$0)[Shortestpath((((`1esn` {@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00})-[`6esn`?:`3esn`|:#usn8]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))))..[{12}[{7}][$123456789]]] Create Unique Shortestpath((((`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})<-[@usn6:@usn5 *0Xa]->({`3esn`:9e1[2.12..{#usn8}]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})))),#usn7=({@usn5:07[..True][..9e12]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}) Union Unwind 0.e0 Starts With 12.e12 Starts With {_usn4} As _usn3 Union Remove Reduce(#usn7=`7esn` Starts With $#usn7 Starts With $`7esn`,#usn8 In 7[..999][..{#usn8}]|`1esn` Ends With {_usn3} Ends With `2esn`).`8esn`,Any(`8esn` In 01[2.12..`8esn`] Where {usn2}).`1esn`!,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}|$#usn8 Ends With $`2esn` Ends With $@usn6].usn1?"), - octest_legacy:ct_string("Cypher Foreach(#usn8 In 1000 =~@usn6 =~0x0| Create Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))),`2esn`=(usn2 :`4esn`)-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(`` :_usn4) Unwind {`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}[Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End..[`3esn` In {7} Is Null Where {123456789} Contains $#usn8|#usn7 =~Count ( * ) =~``]][`7esn`(9e1[1000][{123456789}]).._usn3(0.12 =~$0 =~$0)] As ``) Create Allshortestpaths((:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 :usn1)) Foreach(_usn4 In {`4esn`} Starts With $usn2 Starts With $1000| Unwind {`4esn`}[$0..] As @usn5 Unwind 0e0[..010] As ``);"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Using Periodic Commit Load Csv From $1000[`2esn`..`5esn`][1e1..1.e1] As `4esn` Fieldterminator \"d_str\" Return *,0.0 =~999 As `4esn` Limit 9e1[..$`2esn`] Detach Delete Case {#usn7}[9e1..][{123456789}..] When $0 Ends With 12.0 Then $`` Is Not Null When $usn1 In {999} In $#usn7 Then 1000[Null..{123456789}] Else 1.0 =~'s_str' =~{`2esn`} End[{@usn5:.e0[..$`8esn`],`4esn`:{usn2} =~12}..Any(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``)],0.12 In _usn3 In {0},Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`]|123456789 Ends With 12.e12 Ends With $`7esn`) Is Not Null"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Create Unique `6esn`=((`2esn` :_usn4)),(((:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[:`6esn`|`5esn` *123456789..]-(#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}))) Union All Detach Delete 1.0 In Count(*),{_usn4}[`3esn`][12.0],1e1 Contains Count ( * ) Create Unique _usn4=(`1esn` {@usn5:1.0[0e0..0.e0]})-[usn2?:#usn7]-(:`4esn`{``:2.12 Is Not Null Is Not Null}),Shortestpath(((`7esn` {``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})-[?:`2esn` *00]->(`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]})<-[`6esn`?:`4esn` *..01]-({`7esn`:{999}}))) Load Csv From Reduce(@usn6=0.e0 Ends With $#usn7 Ends With $7,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999})[[#usn8[`3esn`..][{#usn7}..]]..(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`8esn` :@usn6:#usn8)<-[{`8esn`:07 In `2esn` In 12e12}]->(:_usn4{`6esn`:{`6esn`} =~$999,`6esn`:$#usn7[..{`5esn`}][..9e12]})][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)..Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0e0 Starts With `2esn` Starts With $``)] As `2esn` Fieldterminator \"d_str\" Union Return 2.12[$`5esn`][$#usn8] As #usn8 Skip False =~$7 =~2.12 Delete $@usn5 Starts With #usn7"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain With 2.12[$`5esn`][$#usn8],$7 Ends With `4esn` As `5esn` Order By ({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}) Asc,{#usn8} Starts With 00 Starts With {`6esn`} Desc Skip `1esn`[{usn1}..``][7..$#usn8] Unwind $123456789[_usn3][{#usn7}] As `3esn` Create `1esn`=Shortestpath((usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})<-[ *..010{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}}]->(:_usn4$@usn5)<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]->(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})),((:_usn4{@usn6})) Union All Remove Case When $#usn8[$`8esn`..{`8esn`}] Then $#usn8[$`8esn`..{`8esn`}] Else #usn8 Is Not Null Is Not Null End.@usn6! Start usn1=Node:_usn3({`6esn`}) ,`5esn`=Relationship(*)"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Drop Constraint On(`5esn`:usn1)Assert Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where {@usn5} Is Null Is Null|01[2.12..`8esn`])._usn3! Is Unique"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Optional Match `6esn`=Allshortestpaths((#usn8 :@usn6:#usn8));"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Start `5esn`=Rel:`2esn`({`1esn`}) ,`4esn`=Relationship:`6esn`(`3esn`=\"d_str\")Where {1000} =~0 =~123.654 Create Unique `6esn`=((`8esn` :#usn8:#usn8{`3esn`:$`4esn`[9e12..123.654]})),((:`4esn`{``:2.12 Is Not Null Is Not Null})-[usn1? *1000..00]->(#usn7 :@usn5{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})) Foreach(`8esn` In True Contains {0} Contains 7| Start ``=Relationship:usn2('s_str') ,`1esn`=Rel:`4esn`(`4esn`='s_str') Delete Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0) Is Not Null Is Not Null) Union Merge `3esn`=Shortestpath(((:usn1{usn1:{`6esn`}})-[@usn6?:`3esn`|:#usn8 *123456789..]->(:_usn3:_usn3{`7esn`:$`1esn` =~0X7})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``}))) On Match Set [1.0 Is Null Is Null,0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`].usn2? =12.0 On Create Set Filter(usn1 In @usn5 =~{`5esn`} =~`5esn` Where @usn6 Contains Null Contains $`7esn`).`4esn` =00 Starts With 0xabc Remove ({usn1:`5esn`[_usn4..]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[?:`8esn`{`3esn`:1.0 In Count(*)}]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})._usn4,Filter(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {_usn4}[...e1][..$7]).`6esn`! Foreach(`7esn` In 999[..$`5esn`][..12.0]| Return Distinct Single(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}])[Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] Skip 0Xa[..{`4esn`}][..12.0] Limit (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})<-[{`8esn`:07 In `2esn` In 12e12}]-(`3esn` :@usn5)-[?:`5esn`]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}) Is Not Null Is Not Null Return Distinct $12 =~$_usn3 As #usn8,`7esn` Ends With 0x0 As @usn6,$1000 =~$`2esn` As `7esn` Skip All(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`2esn`} Is Not Null)[Filter(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`4esn`} Starts With $usn2 Starts With $1000)..Reduce(`8esn`={`2esn`} Is Not Null Is Not Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{usn1} Ends With $0)][Allshortestpaths(((`1esn` )))..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End]) Union All Unwind .e0[..$`8esn`] As usn2 Load Csv With Headers From 0e0 Starts With `2esn` Starts With $`` As `3esn` Fieldterminator \"d_str\";"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Drop Constraint On(`4esn`:`4esn`)Assert Exists(Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``]).`5esn`?);"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Using Periodic Commit Load Csv From Allshortestpaths((((:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]->(:`4esn`{``:2.12 Is Not Null Is Not Null}))))[{`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null}][Allshortestpaths(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})))] As `2esn` Optional Match @usn6=(({#usn7:2.12 Contains usn2 Contains True})<-[`7esn`?:@usn5{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]}]-(`` :@usn6:#usn8{`8esn`:'s_str' In 00})-[`7esn`?*..]->({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})),((`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})-[`4esn`:``{usn1:`` Is Not Null Is Not Null,usn1:{1000}[{_usn3}..]}]-(`` :_usn4{_usn4:False[..``],usn2:9e1[1000][{123456789}]})) Start `5esn`=Rel:`8esn`({usn1}) ,`7esn`=Node:`6esn`({_usn3})"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Drop Constraint On(`7esn`:``)Assert Exists([`7esn`[$0][9e12],$`7esn`['s_str']].`6esn`!)"), - octest_legacy:ct_string("Explain Foreach(@usn5 In {`3esn`} In 01| Load Csv With Headers From {0}[\"d_str\"..07][0..'s_str'] As @usn5 Fieldterminator \"d_str\" Remove Case When $#usn8[$`8esn`..{`8esn`}] Then $#usn8[$`8esn`..{`8esn`}] Else #usn8 Is Not Null Is Not Null End.@usn6!) Return Distinct *,9e1[2.12],$_usn4 Contains Null Contains #usn8 As #usn7 Order By (usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]})<-[ *123456789..]-(:@usn5) Is Null Is Null Desc,False[..{`1esn`}] Desc Skip 1e1[$`5esn`][{`3esn`}] Limit {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains [1.0[0X7][{`5esn`}]];"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Create ``=(`1esn` {``:`7esn` Starts With $#usn7 Starts With $`7esn`}),usn2=(((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))) Union All Merge (#usn7 :`8esn`:`7esn`)<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[_usn4?:`1esn` *7..12]->(:#usn8:#usn8{_usn3:$_usn3['s_str'][07],`7esn`:$1000 In $1000 In $`3esn`}) Return Distinct *,{`5esn`:01234567 Is Null Is Null}[..`1esn`(Distinct 00 Starts With 0xabc,$0)],Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn` As _usn3 Skip 1.0 =~7 =~{usn2} Union Return Distinct $`5esn`[$`4esn`..{@usn6}][07..$@usn6] As usn2 Order By [usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*)) Ascending,Case When 1.0 In Count(*) Then False End Contains `1esn`(Distinct 0.e0 Starts With `2esn`) Contains Reduce(`1esn`=\"d_str\" Is Null Is Null,#usn7 In {``} Is Not Null|#usn7) Descending Skip Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End Limit All(#usn7 In {``} Is Not Null Where {_usn4}[...e1][..$7]) Is Null Is Null Match Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Using Index ``:usn1(@usn5) Using Index `3esn`:`5esn`(#usn7) Where $`5esn`[2.12..] Unwind $_usn4 In usn1 In $7 As usn1"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Foreach(`5esn` In 0.0[`7esn`..][12.e12..]| Load Csv With Headers From {`6esn`}[..$@usn6][..`7esn`] As @usn6 Fieldterminator \"d_str\") Remove @usn6:usn2 Union Optional Match Allshortestpaths(((`` :usn2)<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})-[`2esn`?:usn2|``{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}]-({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}))) Where `7esn`[$0][9e12] Start _usn4=Node:``(\"d_str\") Where `6esn`[12..$usn2][{#usn8}..{usn2}] Union Foreach(`3esn` In Reduce(usn2=01[{`2esn`}..{@usn6}][$`2esn`..0.0],usn1 In @usn5 =~{`5esn`} =~`5esn`|$#usn8 Ends With $`2esn` Ends With $@usn6) =~[#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01|{0} Ends With $_usn3 Ends With $`7esn`] =~(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True})| Detach Delete 's_str' =~{_usn4} =~$`7esn`,(:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0}) In [`4esn`[..Count ( * )][..{#usn7}]],$`5esn` Starts With `` Unwind [#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn2 Is Null|@usn6[$`3esn`..{`3esn`}]] In Filter(_usn3 In {`3esn`}[`2esn`] Where 1e1 In 123.654 In `3esn`) As _usn3) Delete 010 In Count(*),Count(*)[..usn2][..usn2];"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Create Constraint On(@usn5:`7esn`)Assert Exists({`3esn`:usn1 Is Null Is Null}.`2esn`?)"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Create Constraint On(`2esn`:usn2)Assert None(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where $@usn5 =~1000 =~1000).`5esn` Is Unique"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Return *,`4esn`[`5esn`..12][@usn6..False],None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As `5esn` Order By {0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]] Ascending,.e1 =~{@usn6} =~Null Asc,(:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case `8esn` Contains $usn1 Contains $12 When 12.e12[7..$`6esn`] Then {12} Contains {123456789} Contains `4esn` When $`1esn`[1.0..][_usn3..] Then `7esn`[$0][9e12] End Desc Skip 123.654[`3esn`..] Limit `7esn`[$12..][$`8esn`..] Load Csv From 123.654[...e0] As usn2 Union All Create Unique `1esn`=(`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})<-[`2esn`?:`7esn` *0X7..]-(:_usn4)<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]}),usn1=((({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[{``:12.e12[$_usn3..],_usn3:$`6esn`[010..]}]->(@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null}))) With Distinct 12 Ends With $usn2 As #usn8,$`3esn` In Null As @usn6 Order By 9e1 In 2.12 Asc,True[{`7esn`}..] Asc,{`2esn`}[``..07][0x0..1000] Desc Skip [@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null] Is Null Is Null Where Null Ends With {`5esn`} Ends With 0.e0 Union All Start #usn7=Node:``(\"d_str\") ,`3esn`=Rel:`7esn`(`3esn`='s_str')Where 9e0 Start `7esn`=Node:_usn4(#usn7=\"d_str\") ,`5esn`=Rel:`4esn`(`2esn`=\"d_str\") Unwind $#usn8[$`8esn`..{`8esn`}] As `6esn`"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Remove Shortestpath(({`7esn`:{999}})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})).@usn5 Create Allshortestpaths(((usn2 :@usn5)<-[? *00]->(@usn5 :usn1))) Union All Remove (:usn1{_usn3:{#usn7}[`2esn`..]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(#usn7 ).`2esn`,Case `5esn` Starts With $`2esn` Starts With $1000 When 123.654 =~$usn2 =~{999} Then Count ( * ) Contains `8esn` Contains .e1 End._usn3!,exists($12[$1000..123456789],123456789[0xabc..'s_str'][``..`1esn`]).@usn5 Return {#usn8} Starts With 00 Starts With {`6esn`} As ``,7[{0}..{_usn4}] As #usn8,`4esn`[$999..{`1esn`}][{@usn6}.._usn3] Order By `8esn` Is Not Null Is Not Null Desc Limit {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Create usn2=Shortestpath((usn2 :#usn7)) Union All Detach Delete $7 In $7 In $7,0X7[1000..{`1esn`}],.e1 Is Null Is Null Optional Match _usn3=Allshortestpaths((`4esn` {usn2:0x0 Is Null,`5esn`:{usn2} =~12})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]})-[usn1:_usn3|_usn3 *..999{`2esn`:'s_str'[00][{`5esn`}],@usn6:999 Is Not Null Is Not Null}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})) Using Index `3esn`:@usn5(`8esn`) Where 0X7[$999][_usn4] Create ((:usn2{usn2:123.654[$`1esn`],@usn6:123456789[$@usn5..]})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`` {usn2:9e0[..999],`2esn`:0e0 In @usn5})<-[]->(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})),#usn8=Allshortestpaths((({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})-[? *..0x0{_usn3:01 Ends With 999 Ends With {`7esn`}}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[?{usn1:0[`7esn`..]}]->({usn1:{`7esn`}[`6esn`][#usn7],usn1:{999} Starts With $999})))"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Create Constraint On(`5esn`:`2esn`)Assert Allshortestpaths((_usn4 :usn1)<-[`1esn`?:`4esn`]->(`5esn` :`4esn`)).usn2? Is Unique"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Create Constraint On()-[@usn6:#usn7]-()Assert Exists(Case When {#usn8}[010] Then False =~$7 =~2.12 End.`1esn`?);"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Remove (`8esn` {`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})<-[`7esn`?:`8esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]})-[`7esn`?*..]->(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01}).`7esn`!,{`7esn`:Count(*)[..usn2][..usn2]}.``!,Case 01[{`2esn`}..{@usn6}][$`2esn`..0.0] When Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6} Then {7}[$``][{@usn6}] Else usn1 Is Null End.`6esn`! Load Csv With Headers From 9e12[`6esn`..12.0] As @usn5 Start `1esn`=Node:usn2({`5esn`}) Union All Match ((:@usn5{#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})-[?:usn2|`` *0..{usn2:{12} Is Not Null,`6esn`:``[$`2esn`]}]-(`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})),((_usn3 :`7esn`:_usn3)-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})<-[`5esn`{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(_usn3 {#usn8:_usn4 Is Null Is Null})) Using Index ``:_usn3(usn1) Foreach(@usn6 In 123.654 Contains $`4esn` Contains 1.0| Load Csv From `5esn`[{`4esn`}..`2esn`] As `8esn` Fieldterminator \"d_str\" Optional Match `2esn`=(((`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[:`8esn` *..01]->({#usn7:0.e0 Starts With `2esn`})-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(@usn5 {usn2:0.e0[123.654][01]}))) Using Scan `6esn`:`` Where {`4esn`}[$123456789..][$#usn7..])"), - octest_legacy:ct_string("Cypher With Distinct *,$_usn3 Ends With 0x0 Ends With 12.0 As usn2,[usn1 In @usn5 =~{`5esn`} =~`5esn` Where $999 Is Not Null|{_usn4} Is Not Null Is Not Null][Shortestpath((:`5esn`{``:1.0[0e0..0.e0]})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]}))..{`4esn`:{`4esn`} Ends With {usn2} Ends With {999}}][Single(`5esn` In $999[0.0..] Where .e0[..$`8esn`])..Shortestpath(((:`3esn`:@usn5$7)))] Order By usn1 Starts With $usn1 Desc,1.e1[`8esn`][00] Descending Where 0 In `2esn` In 010 Optional Match Allshortestpaths(((`7esn` :`5esn`{`3esn`:`7esn` Is Null})<-[`5esn`?:`4esn`]-(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})<-[{`4esn`:{_usn3}[..$12][..0.12],`7esn`:1.0[0X7][{`5esn`}]}]-({`2esn`:{7} In `2esn`,`1esn`:`4esn`[1.0]}))),`1esn`=((`8esn` )) Union All With Distinct None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As `5esn`,01 Is Null As `2esn`,{1000} =~$_usn4 Return Distinct 1.e1 Starts With 's_str' Starts With `5esn`,$123456789 Starts With {_usn4} Starts With $1000 As `6esn` Order By Allshortestpaths(((_usn4 :`8esn`:`7esn`{`4esn`:{`2esn`} Is Not Null Is Not Null,`1esn`:.e1 =~$`8esn`})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2}))) Ascending,Case When 07 Contains 0X7 Contains $`8esn` Then 123456789[{123456789}..'s_str'] When _usn3[_usn3..][12.e12..] Then $12[True..][{0}..] End Is Null Is Null Ascending,_usn4(Distinct _usn3[_usn3..][12.e12..])[[0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},0Xa Starts With {`6esn`} Starts With $usn1]] Desc"), - octest_legacy:ct_string("Cypher Drop Constraint On(`8esn`:`1esn`)Assert Exists(`4esn`(Distinct $_usn3['s_str'][07],{12}[..0X7])._usn4)"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Load Csv From {#usn8}[$@usn5..usn1][$1000..0xabc] As usn2 ;"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Create Constraint On(_usn4:#usn8)Assert Exists([12.e12 Starts With {999} Starts With {`1esn`}].`6esn`?);"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Start usn2=Node:`4esn`('s_str') Union Create Allshortestpaths((({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}))) Delete $_usn4[0e0..][False..],01234567 Is Null Is Null Start `6esn`=Node:``('s_str') Where 12.e12[7..$`6esn`] Union Foreach(#usn7 In .e1 =~{@usn6} =~Null| Create (:`2esn`:usn1{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}) Start `6esn`=Node:@usn5({0}) Where $#usn7[#usn7..]) Optional Match (((`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[usn1?:@usn5*]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})-[#usn7:@usn5 *0X7..]->(`2esn` ))),Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))) Where `7esn` In {123456789} In `1esn`;"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Drop Constraint On()-[#usn7:_usn3]-()Assert Exists(Allshortestpaths((:@usn5{_usn3:07 =~01}))._usn4)"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Drop Constraint On(_usn4:`4esn`)Assert Exists(``(Distinct $_usn3 Contains 999 Contains \"d_str\").``?)"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Merge @usn6=((`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})) On Match Set Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {`6esn`} =~$999).`7esn`! =Extract(_usn3 In {`3esn`}[`2esn`] Where _usn3 Contains $123456789 Contains ``)[Extract(`5esn` In \"d_str\" Is Null Is Null Where 00[$`7esn`]|$`6esn` Is Null)],``+=`` Ends With 0Xa Ends With `2esn`,`` =`3esn`[{0}][usn1] On Match Set `6esn`:`8esn`:`7esn` Union All Remove usn1:`5esn` Load Csv With Headers From $_usn4 Contains Null Contains #usn8 As #usn7 Fieldterminator \"d_str\" Union All Merge Allshortestpaths(((`` :usn2)<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})-[`2esn`?:usn2|``{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}]-({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}))) On Match Set [#usn8 In {`5esn`}[.e1..``] Where {7}[..12e12][..Count ( * )]|$123456789 Ends With {`1esn`} Ends With $`4esn`].`6esn`! =Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7) In [{_usn3}[..$12][..0.12],usn1 Is Null] In [#usn8 In 7[..999][..{#usn8}] Where $_usn3 Contains 999 Contains \"d_str\"] On Match Set Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0).``? ={@usn6}[{999}..][00..];"), - octest_legacy:ct_string("Cypher 12.999 Create Constraint On(`2esn`:`3esn`)Assert Case #usn8[..{#usn7}] When $@usn5 Starts With $1000 Then 0e0 In @usn5 Else $#usn7 Contains 0x0 Contains 1000 End.usn2 Is Unique"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Merge ((`4esn` {`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}})) On Match Set @usn6 ='s_str' Starts With 123.654 Union Load Csv With Headers From [_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|`` Is Not Null Is Not Null] Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where {_usn3}[..\"d_str\"][..`5esn`]) Ends With Filter(`3esn` In {7} Is Null Where {123456789} Contains $#usn8) As _usn3 Fieldterminator 's_str' With 07[$123456789..] Order By {`2esn`} Ends With 12.0 Desc,`6esn`[12..$usn2][{#usn8}..{usn2}] Asc,9e1[..$`2esn`] Ascending;"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 With *,Shortestpath((((`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`2esn` *..07]-(`1esn` {#usn7:{_usn4} In {12} In $0})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})))) In ({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}) As `1esn`,`6esn`[2.12..01][{``}..False] As `1esn` Where $123456789 In 0X0123456789ABCDEF In 0.e0 Merge Shortestpath((((:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[:`6esn`|`5esn` *123456789..]-(#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})))) Unwind Case {`3esn`}[@usn6..0Xa][{12}..0Xa] When {usn1}[0X0123456789ABCDEF] Then 0x0 Ends With $12 When 0e0 Starts With `2esn` Starts With $`` Then {123456789}[9e12][{0}] Else 0X7[1000..{`1esn`}] End[..({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})] As `5esn` Union Load Csv With Headers From 0.0 In {#usn8} As `4esn` Merge `3esn`=Allshortestpaths((:@usn5{`2esn`:_usn3 Ends With 7 Ends With `1esn`})<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`4esn`{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})) Optional Match #usn8=Allshortestpaths(((@usn5 {_usn3:`1esn` Contains {usn2} Contains $#usn8})<-[:`3esn`|:#usn8 *7..12{@usn5:_usn4 Starts With $_usn4 Starts With 12.e12}]->(#usn7 :_usn3:_usn3{`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}}))),Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))) Where 0Xa[7..2.12][`3esn`.._usn3] Union With Distinct 0[07..{123456789}][999...e12] As `4esn` Order By Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End Descending Skip $`6esn`[$`6esn`..`8esn`] Limit Allshortestpaths((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))) Contains Filter(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]) Contains Shortestpath(({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})) Foreach(`4esn` In 1000[0X7..2.12]| Remove ({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)._usn4?) Unwind $usn1 In {999} In $#usn7 As _usn4"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Create Shortestpath(((:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[`7esn`? *7..12]->({`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})<-[{`6esn`:2.12 Contains `1esn`,`1esn`:9e12[`6esn`..12.0]}]-(`4esn` {`6esn`:#usn8[..{#usn7}]}))) Union All Load Csv With Headers From 0.0 In $usn1 As `5esn` Fieldterminator 's_str' Create usn2=((`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(#usn8 {@usn5:_usn3 Contains $123456789 Contains ``,_usn4:{``} Ends With `7esn` Ends With 0.0})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)),(#usn8 :@usn6:#usn8) Union All Create Unique `1esn`=Allshortestpaths(()<-[_usn4 *..999]->(`7esn` {#usn7:\"d_str\" Contains {123456789} Contains 01,@usn5:$1000 In $1000 In $`3esn`}));"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Foreach(_usn4 In Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})]| Create Unique @usn5=Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))),`2esn`=Allshortestpaths(((#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})-[`8esn`?:@usn6|`6esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}))));"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Drop Constraint On()-[`5esn`:`1esn`]->()Assert Exists(All(#usn8 In 7[..999][..{#usn8}] Where $@usn5 Starts With {0} Starts With 12).usn2?)"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Create Constraint On(``:_usn3)Assert Exists({`6esn`}.usn1);"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Create Constraint On(@usn6:`5esn`)Assert Exists(Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then Count ( * )[0.12...e1] Else 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] End.`4esn`);"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Create Constraint On()-[`1esn`:#usn8]->()Assert Exists(Any(#usn8 In {`5esn`}[.e1..``] Where {_usn3}[..\"d_str\"][..`5esn`]).usn1!)"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Create Constraint On()-[`1esn`:`4esn`]-()Assert Exists(All(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `1esn` =~0 =~$#usn7).``?)"), - octest_legacy:ct_string("Cypher Foreach(#usn8 In Shortestpath(((:`8esn`:`7esn`$#usn7)-[`5esn`:`8esn`]->(#usn8 {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]}))) In [_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..]|1.0 Is Null Is Null] In Case When Count ( * ) Contains 07 Then 123.654[$`1esn`] End| Detach Delete .e0[12.e12..],Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0) Is Not Null Is Not Null,0.12[`2esn`..{`6esn`}] Optional Match (({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}]->({`7esn`:7[{0}..{_usn4}]})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(usn2 {``:01[{@usn5}]})),`5esn`=Shortestpath((((`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})<-[@usn6:@usn5 *0Xa]->({`3esn`:9e1[2.12..{#usn8}]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})))) Using Scan `1esn`:`3esn` Where 7[..999][..{#usn8}]) Union All Remove (:_usn4{@usn6})-[`5esn`?:_usn4|:usn2{_usn4:{999}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[{`4esn`:{_usn3}[..$12][..0.12],`7esn`:1.0[0X7][{`5esn`}]}]-({`2esn`:{7} In `2esn`,`1esn`:`4esn`[1.0]})._usn3!,Case `1esn`[{usn1}..``][7..$#usn8] When 9e1[2.12] Then $_usn4 Is Not Null Is Not Null When $`7esn` =~{`8esn`} =~$usn1 Then $`4esn`[9e12..123.654] Else {123456789}[0xabc..] End.`7esn`?,None(#usn7 In `2esn`[..$#usn8][..Count(*)] Where Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6}).usn1? Detach Delete Allshortestpaths(((_usn4 :`8esn`:`7esn`{`4esn`:{`2esn`} Is Not Null Is Not Null,`1esn`:.e1 =~$`8esn`})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2}))),7[$_usn4..9e0],Count(*) Ends With 12.0 Ends With 12 Return Distinct usn2 Is Null,Shortestpath((_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})) Contains [`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 7 Starts With {@usn6} Starts With $``|.e12 Is Not Null Is Not Null] As `6esn` Order By Case When Count(*) In $12 Then .e0 Starts With 0 Starts With 0.e0 When {usn1}[0X0123456789ABCDEF] Then $`6esn`[123456789..12][True..{`3esn`}] Else 7 Starts With {@usn6} Starts With $`` End[Case @usn6 Contains $1000 Contains {`7esn`} When 0.12 =~$0 =~$0 Then $usn1[.._usn4][..False] When {0} Ends With $_usn3 Ends With $`7esn` Then 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3] End..] Desc,$#usn7[@usn5..{1000}][1.e1..7] Asc,123456789[$@usn5..] Asc"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Start #usn7=Node:@usn6({_usn4}) ,usn1=Rel:`7esn`(usn2={`7esn`})Where 123.654 =~$usn2 =~{999} Foreach(`5esn` In All(`5esn` In $999[0.0..] Where {@usn6} Ends With 's_str' Ends With 12.0) In (:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})| Start _usn4=Rel:#usn8(\"d_str\") Where $#usn8[9e12..][.e1..]) Return Distinct 0.e0 Starts With 12.e12 Starts With {_usn4} As _usn3,0e0 =~`6esn` =~123456789,`1esn`($123456789 Starts With 9e0 Starts With 's_str',{usn2}[.e0..$999])[{usn2:{`3esn`} In 0X7,_usn3:7 Starts With {@usn6} Starts With $``}..Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {usn1} In 2.12 In 1000)][Case 0[`7esn`..] When 123456789 Is Null Then .e12 Is Not Null Is Not Null Else $@usn5 =~1000 =~1000 End..[`4esn` In $`3esn` Is Not Null Where `8esn`[{123456789}..]|{`3esn`}[`2esn`]]] Skip 0X0123456789ABCDEF Ends With $`8esn` Ends With 0.12 Limit Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]|@usn5 =~{`5esn`} =~`5esn`) Contains Case When 0[..usn2][..{@usn5}] Then 2.12['s_str'..$12][{`1esn`}..`2esn`] When 01 Contains {`8esn`} Contains 2.12 Then #usn8[#usn8..] End Contains (:`5esn`{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]})<-[usn2?:_usn4|:usn2{``:`1esn` Contains {usn2} Contains $#usn8}]-(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc}) Union Load Csv From [{`3esn`} Is Not Null Is Not Null] As @usn5 Merge `1esn`=Allshortestpaths((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))))"), - octest_legacy:ct_string("Explain Drop Constraint On(`4esn`:_usn3)Assert Exists((`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[:@usn5{@usn5:{#usn7}[9e1..][{123456789}..],``:#usn7 Is Not Null Is Not Null}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[? *00]->(@usn5 :usn1).`1esn`!);"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Unwind $usn1[{`5esn`}][$`6esn`] As @usn6 Merge ((:usn2{usn2:123.654[$`1esn`],@usn6:123456789[$@usn5..]})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`` {usn2:9e0[..999],`2esn`:0e0 In @usn5})<-[]->(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})) On Create Set `8esn`+=[9e1[..$`2esn`]][{`8esn`:False =~$7 =~2.12,`3esn`:Count ( * ) =~$usn2 =~$usn2}][Case {``} Is Null When 2.12 Then $123456789 Ends With {`1esn`} Ends With $`4esn` End] On Match Set @usn6+=$1000[0Xa][{#usn7}];"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Using Periodic Commit Load Csv From $`4esn` =~.e12 As `4esn` Fieldterminator \"d_str\""), - octest_legacy:ct_string("Cypher 12.999 Drop Constraint On(@usn5:`4esn`)Assert count($1000 Is Null,0Xa[$123456789..123.654][.e12..0.e0]).`8esn` Is Unique;"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Drop Constraint On()-[_usn3:@usn6]-()Assert Exists(Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`2esn`} Is Not Null).`3esn`)"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Drop Constraint On(`3esn`:`3esn`)Assert Exists(Single(`` In `` Is Not Null Is Not Null Where $`6esn` Is Null).`8esn`!);"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Create Unique `3esn`=(((`1esn` :`5esn`{`5esn`:{``} Is Null})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(_usn4 :usn1))),(`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Foreach(usn1 In \"d_str\" Starts With 01| Unwind [`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"]|$#usn7 Is Null][..{`4esn`:{`4esn`} =~{7} =~{`7esn`},`8esn`:$#usn7[#usn7..]}] As @usn6);"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Drop Constraint On(``:`4esn`)Assert {`3esn`:$`6esn` Ends With Count(*),``:.e12 Ends With _usn4}.`5esn`! Is Unique;"), - octest_legacy:ct_string("Explain Drop Constraint On()-[`3esn`:_usn3]->()Assert Exists(Case When @usn6[{`5esn`}] Then $_usn4 Contains Null Contains #usn8 When `5esn` Is Null Then 010[#usn7..True] Else {123456789} Contains $#usn8 End.@usn6);"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Drop Constraint On(_usn3:``)Assert (usn1 :`6esn`)<-[`4esn`?:`7esn` *0..{`2esn`:00[`2esn`..12][123456789..0.e0]}]-(_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12}).`1esn`! Is Unique;"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Unwind 2.12 Contains usn2 Contains True As `4esn` With Distinct Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn`,{``}[$#usn8..$usn1] As @usn6,None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`]) Is Not Null Order By $0[..9e1] Descending,{usn1}[Count(*)..] Desc Skip (`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})-[:`6esn`|`5esn`{`8esn`:$0 Ends With 12.0}]->(`5esn` {`4esn`:7[$`2esn`..{`5esn`}],@usn6:{7} Is Null}) Contains Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) Contains Case 9e12 Is Not Null Is Not Null When 0[..usn2][..{@usn5}] Then 0e0 Ends With 1.e1 Ends With $`4esn` Else usn1 Is Null End Where $`5esn` In $`6esn` Load Csv With Headers From {0}[\"d_str\"..07][0..'s_str'] As @usn5 Fieldterminator \"d_str\";"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Drop Constraint On(_usn4:`5esn`)Assert Extract(`8esn` In 01[2.12..`8esn`] Where Count ( * ) Ends With $@usn5|Count ( * )[True..][{#usn7}..]).usn2? Is Unique;"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Drop Constraint On(@usn6:@usn5)Assert (`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})-[_usn4? *..01]-(@usn6 :`8esn`:`7esn`).`4esn`! Is Unique"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Start _usn4=Node( {123456789}) ,#usn7=Relationship:usn2(`8esn`={`8esn`})Where _usn4 Is Null Is Null Create `3esn`=Allshortestpaths(((:usn1{_usn4})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}))) Load Csv From 1.0 Is Null Is Null As `3esn` Fieldterminator 's_str'"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Create Constraint On(`1esn`:#usn8)Assert `1esn`(Distinct `3esn`[{`2esn`}],$#usn7 Contains 0x0 Contains 1000).``! Is Unique;"), - octest_legacy:ct_string("Explain Foreach(`5esn` In $`8esn`[..00]| Load Csv From .e0 =~`6esn` =~{12} As usn1 Fieldterminator \"d_str\" Start `3esn`=Relationship:#usn7('s_str') ,#usn7=Rel:_usn3({@usn5})) Foreach(`5esn` In \"d_str\" Contains {123456789} Contains 01| Match #usn7=({@usn5:07[..True][..9e12]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}),Allshortestpaths((_usn4 :usn1)<-[`1esn`?:`4esn`]->(`5esn` :`4esn`)) With Distinct .e12[..`7esn`][..0Xa],123.654 Is Not Null Is Not Null As `8esn`,All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By {usn2} Descending,1.0 =~7 =~{usn2} Desc Skip 0.0[$0][{@usn5}] Where _usn3 Contains $123456789 Contains ``) Union Create Unique Shortestpath(((({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})<-[#usn8?:usn1|@usn6]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]})-[#usn7?:_usn4|:usn2 *00]-(`7esn` :`4esn`)))) Load Csv From Case 1.0 In Count(*) When $_usn4[Count ( * )..] Then Null[``] When $1000[`2esn`..`5esn`][1e1..1.e1] Then .e12[@usn5..#usn7][010..{usn1}] Else 1.0[$`1esn`..][$123456789..] End As `6esn` Union Create `6esn`=(usn2 {``:01[{@usn5}]})<-[{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(`3esn` :`2esn`:usn1{`8esn`:9e12[`6esn`..12.0],``:01[{@usn5}]})<-[`8esn`:`2esn` *..07]->({@usn6:01234567 Ends With .e12 Ends With $#usn7,`4esn`:12.e12[`3esn`]}),Allshortestpaths((((`4esn` )<-[? *0X7..{#usn8:{1000} Is Null Is Null,`3esn`:0.e0 Starts With 12.e12 Starts With {_usn4}}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})-[`8esn`?]->(`1esn` :#usn8:#usn8))))"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Create Unique #usn8=Shortestpath((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[_usn3? *0X7..]-(:`5esn`{`2esn`:`4esn`[1.0]})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})) Foreach(`6esn` In $`5esn` In $`` In 123.654| Return $`8esn`[1000..0Xa],({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(:@usn5)<-[`7esn`?:`8esn`]-({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}) Ends With $7 Ends With All(`` In `` Is Not Null Is Not Null Where 1000 In {`8esn`} In 01) As ``,usn1 Starts With $usn1 As `1esn` Order By Null[``] Descending,1.e1[$`1esn`..@usn6][$0..$_usn3] Asc,$`6esn`[.e0..$`6esn`][$_usn3..{#usn7}] Desc Limit {`4esn`} Starts With 1e1 Unwind {`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]}[@usn5(Distinct {`5esn`} Contains $0 Contains {``},12.e12 Starts With {999} Starts With {`1esn`})] As _usn4) Union All Merge usn2=Allshortestpaths(((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]}))) On Create Set _usn3:`7esn`:_usn3,`8esn` ={1000}[$999...e12][`7esn`..'s_str'] Foreach(usn2 In $12[True..][{0}..]| Return Distinct 0X7[1000..{`1esn`}] As `3esn`,$`2esn`[12.e12..][{`4esn`}..] Order By 0.0 =~999 Asc,$`5esn` In 0.e0 Asc,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) Ascending Limit Count ( * ) Is Null Load Csv With Headers From {1000}[$`4esn`][\"d_str\"] As _usn3 );"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Drop Constraint On(usn1:`5esn`)Assert ({`1esn`:$`8esn`[1000..0Xa]})-[:`8esn` *0..{_usn3:`4esn` Ends With 07 Ends With {`3esn`}}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null}).`8esn`? Is Unique;"), - octest_legacy:ct_string("Cypher 12.999 Drop Constraint On()-[@usn5:#usn7]->()Assert Exists(Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $0[``][{@usn6}]).@usn6!);"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Load Csv With Headers From Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End[..[9e1[1000][{123456789}],$_usn3[{#usn7}],`5esn` Starts With $`2esn` Starts With $1000]][..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0 In `2esn` In 010)] As `5esn` Fieldterminator \"d_str\" Union Foreach(_usn3 In 1e1 In 123.654 In `3esn`| Remove Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $`` Is Not Null|{123456789}[9e12][{0}]).``!,Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6}).@usn5) Detach Delete {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]),[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12),$_usn4 Is Null Is Null"), - octest_legacy:ct_string("Cypher Unwind (:_usn4{@usn6})<-[`4esn`?:_usn4|:usn2{_usn4:$usn2[{@usn5}],`2esn`:usn1[`5esn`..$7]}]->({``:$`8esn` =~{1000}})<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(:``:#usn8{usn1:{`6esn`}})[[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn` Contains 123456789 Contains $usn2|123456789 Ends With 01234567 Ends With 1.e1]..{usn2:1.0 =~7 =~{usn2},`8esn`:$_usn3[.e0..$usn2]}][None(_usn3 In {`3esn`}[`2esn`] Where 7 Ends With $`4esn`)..Case {`2esn`} Starts With 123456789 When $`5esn` In $`6esn` Then $`6esn` Ends With Count(*) End] As usn1 Union Return Distinct [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789] Ends With None(`2esn` In `1esn` =~\"d_str\" Where False Starts With {`5esn`}) As `5esn`,07[$123456789..],Reduce(`3esn`=$0[..9e1],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|999 In {`3esn`} In usn2) Starts With Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Starts With Allshortestpaths((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})) As `` Limit {`7esn`}[..{`4esn`}] Return 0X7[1000..{`1esn`}] As `3esn`,$`2esn`[12.e12..][{`4esn`}..] Order By Case 01[{`2esn`}..{@usn6}][$`2esn`..0.0] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] When 12e12[$`3esn`] Then {`5esn`} Contains $0 Contains {``} Else usn1 Starts With usn1 Starts With $`` End[usn2(Distinct 0.12 In _usn3 In {0},@usn6 Is Null Is Null).._usn4(0.e0 Starts With 12.e12 Starts With {_usn4},0X0123456789ABCDEF Is Null Is Null)][[{7}[$``][{@usn6}],0.0 Ends With 010 Ends With 1.e1]..$`4esn`] Asc,01[{@usn5}] Asc Union Create Unique ((:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`)) Return Distinct 010[Count(*)..12][$_usn3..{`8esn`}],Filter(_usn3 In {`3esn`}[`2esn`] Where False =~$7 =~2.12)[Case When .e12 Is Not Null Is Not Null Then `1esn` In .e0 In {`3esn`} When 7 Starts With {@usn6} Starts With $`` Then 0X0123456789ABCDEF =~1e1 =~{`4esn`} Else {`4esn`}[$123456789..][$#usn7..] End] As `5esn`,9e1[2.12] As _usn3 Foreach(`8esn` In $_usn3[.e0..$usn2]| Match Shortestpath((`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})),``=Allshortestpaths((`2esn` :`8esn`:`7esn`)-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})) Using Scan _usn3:`1esn` Where 12.0[123.654][Count(*)] Unwind .e1 =~$usn2 =~999 As `7esn`);"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Using Periodic Commit Load Csv With Headers From Shortestpath(({`7esn`:\"d_str\" Starts With $123456789})<-[`4esn`:``{usn1:`` Is Not Null Is Not Null,usn1:{1000}[{_usn3}..]}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[`4esn`]->(:`6esn`$123456789)) Is Null As _usn3 Fieldterminator \"d_str\" Start usn2=Rel:#usn8({``}) Foreach(`3esn` In usn2(7[..999][..{#usn8}])[[$_usn4 Contains Null Contains #usn8,{#usn8}[{7}],{@usn6}[{999}..][00..]]..]| Unwind [_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null|999 Is Not Null Is Not Null] Ends With [`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null|{`5esn`} Starts With $`5esn` Starts With .e1] Ends With {``:usn1 Starts With usn1 Starts With $``} As #usn7 Remove Reduce(#usn8=01 =~{_usn3} =~`3esn`,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{12} Is Null Is Null).@usn6,Extract(`4esn` In $`3esn` Is Not Null Where 12[1.e1..{_usn3}][1.e1..1.0]).`1esn`!,@usn5(#usn8,{`3esn`} In 0X7).`7esn`?);"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Create Unique @usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]}));"), - octest_legacy:ct_string("Explain Create Shortestpath((((:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[`2esn`?{`3esn`:{123456789} Is Null Is Null}]->(usn2 :#usn7)<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) With @usn6[$`3esn`..{`3esn`}] As `3esn`,`6esn`() In {#usn7:0X0123456789ABCDEF =~1e1 =~{`4esn`},`2esn`:1.0 =~'s_str' =~{`2esn`}} In usn1() Skip $`4esn` Is Null Is Null Unwind All(`3esn` In {7} Is Null Where Count ( * ) Contains 07) Is Null Is Null As `2esn` Union All Foreach(@usn5 In `5esn` Starts With 010 Starts With 0.0| Create Shortestpath((:`4esn`{``:2.12 Is Not Null Is Not Null})),Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[`3esn`? *123456789..]->({_usn3:$`5esn`[`3esn`..]}))) Optional Match ``=Shortestpath((`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})),Allshortestpaths(((:_usn4)))) Start usn1=Node:`2esn`({`1esn`}) ;"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Drop Constraint On(#usn8:`7esn`)Assert Exists(Allshortestpaths((((`8esn` {_usn4:`4esn`[1.0],`5esn`:0e0 Ends With 1.e1 Ends With $`4esn`})-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})))).`3esn`!);"), - octest_legacy:ct_string("Cypher 12.999 Drop Constraint On()-[`4esn`:usn1]->()Assert Exists(Reduce(_usn4=1.0 =~7 =~{usn2},usn1 In @usn5 =~{`5esn`} =~`5esn`|$#usn8[9e12..][.e1..]).#usn7?)"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Create Constraint On(#usn7:`4esn`)Assert Reduce(@usn6=7[True..][2.12..],#usn8 In {`5esn`}[.e1..``]|$`3esn` Is Null)._usn4? Is Unique"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Using Periodic Commit Load Csv From $`5esn`[2.12..{_usn3}][_usn3..{1000}] As `5esn` With Distinct [{`3esn`} Is Not Null Is Not Null] As `2esn`,Count ( * )[True..][{#usn7}..] As usn2,Reduce(`2esn`=1e1 In 123.654 In `3esn`,`5esn` In \"d_str\" Is Null Is Null|$_usn3[{#usn7}]) Is Not Null As `2esn` Skip {`4esn`} Starts With 1e1 Return {`4esn`:`7esn` Is Null}[{`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]}..] As #usn8 Order By 9e12[`1esn`..][$`1esn`..] Ascending,Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]] Ascending,9e1 Is Not Null Asc;"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Create Constraint On(`3esn`:@usn6)Assert {`6esn`:0.e0 Ends With $#usn7 Ends With $7}.`5esn`? Is Unique"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Drop Constraint On(`4esn`:_usn3)Assert Exists(`5esn`(@usn6 Contains Null Contains $`7esn`).@usn6!);"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Drop Constraint On()-[`8esn`:`2esn`]->()Assert Exists(Reduce(`6esn`=$`4esn`[9e12..123.654],`8esn` In 01[2.12..`8esn`]|$0[$`1esn`..07]).@usn5!);"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Create Constraint On()-[`8esn`:`6esn`]->()Assert Exists({_usn3:{#usn7} Is Not Null Is Not Null}.`6esn`?)"), - octest_legacy:ct_string("Cypher Create Constraint On(`1esn`:`5esn`)Assert (:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})<-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]-(`7esn` :`5esn`{`3esn`:`7esn` Is Null}).#usn8! Is Unique;"), - octest_legacy:ct_string("Cypher 12.999 Create Constraint On(_usn3:@usn6)Assert Exists(Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))).``);"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Start _usn3=Relationship:`8esn`({`1esn`}) ,`6esn`=Relationship:`2esn`({0}) With Distinct *,'s_str'[$_usn3..][Count ( * )..] As #usn7 Limit {_usn3}[12.e12] Where 0e0 Starts With 2.12 Starts With $12 Load Csv From {_usn3}[..\"d_str\"] As `3esn` "), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Unwind Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)[(:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0})..Shortestpath((({``})))] As @usn6 Foreach(`5esn` In 0.12 Contains 0X0123456789ABCDEF Contains .e0| Return None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})[Any(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")..Reduce(usn1=#usn7[usn1][$`5esn`],`3esn` In {7} Is Null|Count(*) Ends With 12.0 Ends With 12)][(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})..({usn1:`5esn`[_usn4..]})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})],@usn5 =~{`5esn`} =~`5esn` As _usn4,$123456789 In $#usn7 In `4esn` As `` Limit #usn7[010..False]) Create Unique (:`4esn`{`7esn`:$0[..9e1],usn1:{_usn4} Ends With `6esn`})-[:@usn5{@usn5:{#usn7}[9e1..][{123456789}..],``:#usn7 Is Not Null Is Not Null}]->(`4esn` :`6esn`{_usn3:$123456789 Ends With `3esn` Ends With 123456789,`6esn`:0e0 Starts With 2.12 Starts With $12})-[`7esn` *..0x0]-(`2esn` :_usn4)"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Start #usn7=Node:`5esn`(\"d_str\") With Distinct None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As `5esn`,01 Is Null As `2esn`,{1000} =~$_usn4 Detach Delete Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})] Union All Detach Delete $#usn7 Is Not Null Merge ({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`) On Match Set _usn3+={_usn3}[12.e12],`3esn`+=@usn5 =~{`5esn`} =~`5esn`,#usn8 =[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*)) Union All Start `8esn`=Node:`7esn`({_usn3}) Where 1.0 Contains $_usn4 Remove Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..]).`2esn`,({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)._usn4? Delete Case {`8esn`} Ends With `6esn` When False Is Null Is Null Then 's_str' In 00 Else 123456789 Ends With $`6esn` Ends With $#usn7 End Starts With Case `1esn` =~0 =~$#usn7 When $#usn8[9e12..][.e1..] Then False =~$7 =~2.12 When {123456789}[9e12][{0}] Then 12.0 =~999 =~$_usn3 End,{`7esn`} Starts With $123456789 Starts With $@usn6;"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Start usn1=Rel:`7esn`(usn2={`7esn`}) ,``=Node:usn2(#usn8=\"d_str\") Return Distinct All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {_usn4} Is Not Null Is Not Null) Is Null As `2esn`,{0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]] As `1esn`,$`6esn` =~1.e1 =~12 Limit 0e0 Starts With `2esn` Starts With $``;"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Create Constraint On()-[#usn7:`2esn`]-()Assert Exists(Case `5esn` Starts With $`2esn` Starts With $1000 When 123.654 =~$usn2 =~{999} Then Count ( * ) Contains `8esn` Contains .e1 End.usn2?);"), - octest_legacy:ct_string("Cypher 12.999 Merge ((`7esn` )-[@usn5?:`4esn`]-(:usn1{usn1:{`6esn`}})) Union All Return 1.0 Contains $_usn4,Case 1.0 In Count(*) When $_usn4[Count ( * )..] Then Null[``] When $1000[`2esn`..`5esn`][1e1..1.e1] Then .e12[@usn5..#usn7][010..{usn1}] Else 1.0[$`1esn`..][$123456789..] End,0 In $_usn4 In $@usn5 As `1esn` Skip $@usn5[..12e12][..$123456789] Load Csv From Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains Extract(`5esn` In \"d_str\" Is Null Is Null Where Null Ends With `2esn` Ends With $usn1|$#usn7[@usn5..{1000}][1.e1..7]) As `4esn` Fieldterminator 's_str'"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Create Constraint On(`2esn`:`2esn`)Assert Reduce(`4esn`=$usn1 In {999} In $#usn7,`8esn` In 01[2.12..`8esn`]|usn2 Is Not Null Is Not Null).`5esn`? Is Unique"), - octest_legacy:ct_string("Cypher Drop Constraint On()-[usn2:#usn8]->()Assert Exists((:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})-[ *..999{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(@usn5 {_usn3:`1esn` Contains {usn2} Contains $#usn8}).`6esn`)"), - octest_legacy:ct_string("Explain Drop Constraint On(`1esn`:@usn5)Assert Filter(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {``} Starts With $`2esn` Starts With `1esn`).`4esn` Is Unique;"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Drop Constraint On(`1esn`:usn2)Assert Exists((:#usn7{@usn5:{12} =~#usn8})<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->(`` :_usn4).`6esn`?);"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Merge (`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) On Match Set Any(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`])._usn4! =$#usn8[..{`2esn`}][..1.0],#usn7+={@usn5:`1esn` =~0 =~$#usn7,usn2:{7} In `2esn`} Ends With ({`4esn`:{`4esn`} Ends With {usn2} Ends With {999}})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7}) Ends With Case False[..``] When 0.12 Starts With $`5esn` Starts With 12 Then `4esn` =~$`5esn` When 's_str' In 00 Then $0[..9e1] Else 1e1 In \"d_str\" In `7esn` End Foreach(`2esn` In Shortestpath(((({`4esn`:`7esn` Is Null})<-[`4esn`? *..12{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7}]->({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3))))[(`4esn` {`6esn`:#usn8[..{#usn7}]})<-[?:`8esn`{`3esn`:1.0 In Count(*)}]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[`1esn`:usn2|``]->(`3esn` {@usn5:$usn2[9e0]})]| Detach Delete Reduce(#usn7=`3esn`[{`2esn`}],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|#usn8 Is Not Null)[(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(#usn7 {_usn3:`4esn`[..Count ( * )][..{#usn7}]})..None(`8esn` In 01[2.12..`8esn`] Where {usn2})],Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))),12 Ends With 0x0 Ends With 0.e0 Unwind 12.e12 Starts With {999} Starts With {`1esn`} As `4esn`) Union All Foreach(`3esn` In Reduce(usn2=01[{`2esn`}..{@usn6}][$`2esn`..0.0],usn1 In @usn5 =~{`5esn`} =~`5esn`|$#usn8 Ends With $`2esn` Ends With $@usn6) =~[#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01|{0} Ends With $_usn3 Ends With $`7esn`] =~(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True})| Unwind All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] As @usn6) With Distinct *,`4esn` =~$`5esn` As usn1,{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4] Order By $`5esn` Starts With `` Descending,2.12 Is Null Asc Skip None(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Is Null Is Null Where 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Create Unique `5esn`=(_usn4 :`5esn`)-[ *0..]->(`` :usn2);"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Create Constraint On()-[#usn8:`5esn`]->()Assert Exists(Filter(`5esn` In \"d_str\" Is Null Is Null Where usn1 Ends With $@usn6 Ends With `3esn`).usn2!);"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Unwind All(`4esn` In $`3esn` Is Not Null Where {123456789} Is Not Null) As `` Remove Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7))._usn4 Union Detach Delete @usn6 Contains Null Contains $`7esn`,$usn2[$`2esn`..`4esn`] Union Detach Delete usn2 Ends With 12.e12,Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})] Create Unique `6esn`=Shortestpath(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null}))),(:`7esn`:_usn3{usn1:$usn1 In {999} In $#usn7}) With Distinct 0x0[{`7esn`}..][$usn2..],Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {`3esn`} Is Not Null Is Not Null)[{@usn6:1.0[$`1esn`..][$123456789..]}] As `6esn`,12.e12 Is Not Null Is Not Null As #usn8 Skip 12.0[..9e0][..$``]"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Detach Delete $`5esn`[$`4esn`..{@usn6}][07..$@usn6],0X7[`7esn`][123.654];"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Unwind {`1esn`:#usn7 =~Count ( * ) =~``,usn2:`` Ends With $1000} Is Not Null Is Not Null As ``;"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Create Constraint On(`3esn`:``)Assert Exists((`` :_usn4{_usn4:False[..``],usn2:9e1[1000][{123456789}]})<-[:`5esn`{@usn6:$#usn8 Ends With $`2esn` Ends With $@usn6,`6esn`:{7}[..12e12][..Count ( * )]}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]->({@usn6:$usn1 Ends With $`` Ends With $12}).`1esn`!);"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Create Constraint On()-[`3esn`:#usn8]-()Assert Exists(Extract(`3esn` In {7} Is Null Where 0.e0[123.654][01]|{@usn5}[{#usn8}][9e0]).@usn6!);"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Drop Constraint On()-[usn1:`1esn`]-()Assert Exists([$0[$`1esn`..07],{`5esn`} =~`4esn` =~{_usn4},.e0[..$`8esn`]]._usn4?)"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Create Constraint On(`2esn`:_usn4)Assert Shortestpath(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))).@usn6 Is Unique"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Foreach(`2esn` In 1e1 In \"d_str\" In `7esn`| Return Distinct *,Reduce(`5esn`=$`5esn`[{`3esn`}],`3esn` In {7} Is Null|`6esn`[12..$usn2][{#usn8}..{usn2}]) In @usn5(Distinct _usn4 Starts With $_usn4 Starts With 12.e12) In None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Count ( * ) Ends With 12.0) As #usn8 Order By {7}[..1.0][..9e0] Asc Skip {_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] Limit 0 In $_usn4 In $@usn5) Unwind $@usn5 Is Not Null Is Not Null As `8esn` Return Distinct *,`4esn`[`5esn`..12][@usn6..False],Case 's_str' In 00 When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null When $@usn5 Starts With {0} Starts With 12 Then {usn2} Else {#usn7}[`2esn`..] End As `4esn` Order By 123456789[{123456789}..'s_str'] Descending Limit 9e0 Union Return 12.e12 Is Null Is Null As `6esn`,01 Is Null As `2esn`,$12 =~$_usn3 As #usn8 Order By (`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(`5esn` :@usn5{`8esn`:{usn2} =~12})[All(`` In `` Is Not Null Is Not Null Where `3esn`[{0}][usn1])] Descending Skip [0x0 Is Null,{``} Ends With `7esn` Ends With 0.0,0X7[0e0..`7esn`][1000..0e0]] =~Any(`5esn` In \"d_str\" Is Null Is Null Where $`6esn` Is Null) =~[$12[True..][{0}..],usn1[`5esn`..$7]] Start @usn6=Node:#usn7(@usn6={#usn8}) ,`4esn`=Relationship:@usn6({12})Where \"d_str\" Starts With 01 Remove ``:`1esn`,[#usn7 In {``} Is Not Null Where {0}[01][`7esn`]|0e0 Starts With 1000 Starts With #usn7].#usn7,{usn1:`1esn` Contains {usn2} Contains $#usn8}._usn3?"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Drop Constraint On(usn1:`8esn`)Assert [01 Ends With 999 Ends With {`7esn`},#usn8[#usn8..],`5esn` Is Null].usn1! Is Unique;"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Drop Constraint On(usn2:``)Assert Exists(Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 's_str' Ends With 7 Ends With {_usn4}).`2esn`?);"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Drop Constraint On()-[@usn5:usn2]->()Assert Exists(Reduce(_usn3={@usn5} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{usn1}[0X0123456789ABCDEF]).@usn5?);"), - octest_legacy:ct_string("Cypher 12.999 Unwind $@usn5 Is Not Null Is Not Null As `8esn` Match ``=(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[?:#usn7 *01234567..0Xa]-(@usn6 {#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12})-[usn1? *1000..00]->(#usn7 :@usn5{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}))),`1esn`=((`` :@usn6:#usn8{`8esn`:'s_str' In 00})-[#usn8:`6esn`|`5esn`]-(usn1 {`1esn`:$@usn6 Ends With $_usn4 Ends With 0.12,`3esn`:`4esn` =~$`5esn`})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(`7esn` {@usn5:{7}[..1.0][..9e0]})) Using Join On `7esn` Unwind 0e0[`8esn`..][$123456789..] As usn2 Union All Create Unique (((:_usn4{usn2:0X0123456789ABCDEF[123456789]})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3))) Create Unique ((`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(_usn3 :#usn7)<-[@usn5?]->(`1esn` :`5esn`{`5esn`:{``} Is Null})),((`5esn` :`2esn`:usn1))"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Create Constraint On()<-[@usn6:`7esn`]-()Assert Exists(Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {_usn4}[...e1][..$7]|$1000[999]).#usn7)"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Foreach(`8esn` In \"d_str\" Starts With 01| Start `8esn`=Relationship:`6esn`('s_str') Where 010 =~{usn2}) Unwind $`1esn` In $`7esn` In $`6esn` As `2esn` Delete 123456789[#usn8..False],9e1 In 2.12 Union Delete #usn7[$usn1];"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 With Distinct *,2.12[$`5esn`][$#usn8] As #usn8 Order By Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0)[..Case When 01234567[usn2..$12][{`7esn`}..$usn2] Then usn1[`5esn`..$7] Else $1000[0Xa][{#usn7}] End][..Reduce(@usn6=07 Contains 0X7 Contains $`8esn`,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|{#usn7}[9e1..][{123456789}..])] Descending,(:usn2{usn2:7[..999][..{#usn8}]})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})<-[:`4esn` *..010{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]->(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}) Desc,{usn2} Starts With $`8esn` Starts With Count ( * ) Ascending Skip 2.12[$`5esn`][$#usn8] Where 1e1 In \"d_str\" In `7esn` Optional Match ({`3esn`:usn1 Is Null Is Null})-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]-({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`4esn` {@usn6:{12}[..0X7]}) Using Join On _usn3,@usn5 Union Merge usn1=(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})-[_usn4? *..01]-(_usn4 :usn2{usn1:7[True..][2.12..],`8esn`:2.12 Ends With $_usn3 Ends With `3esn`})-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]-({`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}) Merge Shortestpath(((:#usn8:#usn8)-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12}))) On Match Set `5esn` =All(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`2esn`} Is Not Null)[Filter(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`4esn`} Starts With $usn2 Starts With $1000)..Reduce(`8esn`={`2esn`} Is Not Null Is Not Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{usn1} Ends With $0)][Allshortestpaths(((`1esn` )))..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] On Match Set `7esn` =`4esn`[..010][..{12}],@usn5+=0X7[$999][_usn4],@usn5 =0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn` Union Unwind ({`7esn`:7[{0}..{_usn4}]})-[`` *..12]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})-[:`2esn`*..{`1esn`}]-(usn2 :`5esn`{`7esn`:01234567 Is Null Is Null}) =~Reduce(#usn8=$_usn4[0e0..][False..],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|#usn8[#usn8..]) =~Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) As _usn3 Remove [2.12 Is Null,{`5esn`} =~`4esn` =~{_usn4}].`7esn`! Create Unique ((:`1esn`)),`2esn`=((@usn6 :_usn4));"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Create Constraint On(`1esn`:``)Assert (#usn7 {@usn6:1.0[0e0..0.e0],`5esn`:9e1 In $`3esn` In $@usn6})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->(`4esn` )-[`7esn`*]->(:#usn7{@usn5:{12} =~#usn8}).`8esn` Is Unique;"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Create #usn8=(`1esn` :`4esn`{`6esn`:$`6esn` Ends With Count(*),`7esn`:_usn3 Starts With 12.e12 Starts With 0.12}),(:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]->(#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})-[`1esn`?:`8esn`]->(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}) Union Match usn2=Allshortestpaths(((@usn6 :`1esn`{#usn8:`4esn`[1.0],``:.e12[@usn5..#usn7][010..{usn1}]}))) Using Join On ``,#usn7,`` Using Scan `5esn`:usn2 Optional Match (`7esn` {`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2}),`5esn`=Allshortestpaths(((:`1esn`{``:.e1 Is Null Is Null})<-[usn1?:`7esn` *0xabc..{`3esn`:$#usn8[$`8esn`..{`8esn`}]}]->(:`4esn`{`8esn`:0.e0 In $#usn7 In $_usn3}))) Where {`5esn`} Contains $0 Contains {``} Remove [9e1[1000][{123456789}],$usn2[{@usn5}],0Xa Starts With {`6esn`} Starts With $usn1].`3esn`?,[`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]].#usn7?;"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Return Distinct *,Case {#usn8} Is Not Null When {`4esn`} =~9e0 =~{12} Then _usn3[_usn3..][12.e12..] Else 123.654 Contains $`4esn` Contains 1.0 End[(`6esn` {`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]})<-[? *..0x0]->(`3esn` :`7esn`:_usn3)-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->(:``:#usn8{`7esn`:00 Starts With 0xabc,_usn3:{123456789} Contains $#usn8})..][Single(`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1)..] As `4esn`,All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By #usn8 Starts With `6esn` Starts With 12.e12 Desc Optional Match usn2=((`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(#usn8 {@usn5:_usn3 Contains $123456789 Contains ``,_usn4:{``} Ends With `7esn` Ends With 0.0})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)),Shortestpath(({@usn5:07[..True][..9e12]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]})) Using Index #usn8:`2esn`(`5esn`)"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` With Distinct Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7) Contains Filter(`` In `` Is Not Null Is Not Null Where 0e0 Starts With 1000 Starts With #usn7) Contains Shortestpath((($#usn8)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]}))) As #usn7 Order By 2.12 =~Count(*) Descending,`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) Contains Reduce(`7esn`=$_usn4 Ends With usn1 Ends With $0,`4esn` In $`3esn` Is Not Null|`7esn` In {123456789} In `1esn`) Asc Where 1.0 Contains $_usn4;"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Return {123456789} Contains $#usn8 As `3esn`,{7}[..12e12][..Count ( * )],$0[$`1esn`..07] Order By 0e0[$1000][{usn1}] Descending,1.0 Starts With 12e12 Starts With {`5esn`} Desc Skip $`5esn` In 0.e0 Union Load Csv With Headers From `6esn`[..$@usn6] As @usn6 Fieldterminator 's_str' Unwind {`2esn`}[$`4esn`][$`5esn`] As ``"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 With $123456789 In $#usn7 In `4esn` As `4esn` Order By $`3esn` Is Null Is Null Desc Skip {`1esn`}[{123456789}][{0}] Limit {`2esn`}[$`8esn`][$12] Where {12} Is Null Is Null"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Drop Constraint On(`1esn`:`4esn`)Assert (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})<-[`1esn`:_usn4|:usn2]->(`` :`3esn`:@usn5{`8esn`:`4esn` Is Not Null Is Not Null,`2esn`:2.12 Ends With $_usn3 Ends With `3esn`}).@usn6! Is Unique;"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Drop Constraint On()-[_usn4:`7esn`]->()Assert Exists(Case $`4esn`[..$`3esn`][..0.0] When 1.0 =~7 =~{usn2} Then #usn8 End.`7esn`?)"), - octest_legacy:ct_string("Cypher Return [`5esn`[{`4esn`}..`2esn`],Null Ends With {`5esn`} Ends With 0.e0,010[#usn7..True]] Contains [`3esn` In {7} Is Null Where {usn2}[.e0..$999]|Count ( * ) Contains `8esn` Contains .e1] Contains Reduce(``=@usn5 In {`7esn`} In `2esn`,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{_usn4}[1000..{@usn5}]) As `3esn`,{7}[$7..$``][{``}..{7}] As usn2,{1000}[{_usn3}..] As #usn7 Skip Shortestpath((_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})) Contains [`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 7 Starts With {@usn6} Starts With $``|.e12 Is Not Null Is Not Null] Limit $`6esn` Ends With Count(*) Return Allshortestpaths((({`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})<-[?*..]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}))) Ends With Reduce(_usn3='s_str'[00][{`5esn`}],`4esn` In $`3esn` Is Not Null|Count ( * ) Contains `8esn` Contains .e1),$_usn4[0e0..][False..] As ``,$`6esn` Ends With Count(*) Order By {usn1} Is Not Null Is Not Null Desc,{usn2}[$`3esn`..][{#usn7}..] Ascending Limit {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]) Union Create Unique (((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`8esn`?:`2esn`*..{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]}))),Allshortestpaths((_usn3 :@usn5)-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})) Union Match (({_usn3:$`5esn`[`3esn`..]})-[? *..07{`4esn`:@usn5 =~{`5esn`} =~`5esn`}]->(_usn3 :usn2{#usn7:{999} Starts With {0}})) Using Index @usn5:`2esn`(@usn5) Where $123456789 Is Null Is Null Foreach(`4esn` In None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12])[Reduce(`4esn`=`1esn` =~0 =~$#usn7,`2esn` In `1esn` =~\"d_str\"|{123456789} Is Null Is Null)][{``:`7esn` Starts With $#usn7 Starts With $`7esn`}]| Remove [@usn5 In {`7esn`} In `2esn`,9e0,$`5esn`[..$`5esn`][..$12]].`4esn`!,Reduce(usn2=$usn2[{@usn5}],`4esn` In $`3esn` Is Not Null|$7[{usn2}..][{usn2}..]).usn2,[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 01[2.12..`8esn`]|{0} Ends With $_usn3 Ends With $`7esn`].`6esn`!)"), - octest_legacy:ct_string("Cypher Create Constraint On(`2esn`:@usn6)Assert Exists({#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}.@usn6);"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Optional Match #usn7=((`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})-[_usn4 *0X7..]->(`8esn` :#usn8:#usn8{`3esn`:$`4esn`[9e12..123.654]})) Using Index #usn8:`2esn`(`5esn`) Where $`8esn`[..{`2esn`}] Foreach(`3esn` In Allshortestpaths(((_usn4 :`8esn`:`7esn`{`4esn`:{`2esn`} Is Not Null Is Not Null,`1esn`:.e1 =~$`8esn`})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2})))| Load Csv With Headers From 01 Contains {`8esn`} Contains 2.12 As usn1 Fieldterminator \"d_str\" Unwind .e0[..$`8esn`] As usn2) Union All Remove _usn4(Distinct `` Ends With $1000,$`5esn`[{`3esn`}]).`7esn`,`6esn`:usn2 Optional Match Shortestpath((((:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[`2esn`?{`3esn`:{123456789} Is Null Is Null}]->(usn2 :#usn7)<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) Using Join On ``,`6esn`,usn2 Using Scan ``:`7esn` Where $999[0.0..] Union Load Csv From {`4esn`}[$0..] As `6esn` Fieldterminator \"d_str\" Create Unique Allshortestpaths((`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})),({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`) Remove [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`|`4esn`[`5esn`..12][@usn6..False]].#usn7?,`6esn`(Distinct False Starts With {`5esn`}).`2esn`?,Extract(`3esn` In {7} Is Null Where $#usn7[@usn5..{1000}][1.e1..7]|1.0 =~7 =~{usn2}).usn2!"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Delete Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Is Not Null Is Not Null,7[..123456789][..{@usn6}] Start `4esn`=Relationship:`3esn`({`1esn`}) Foreach(#usn8 In 12.e12 Is Null Is Null| Optional Match ((usn2 :#usn8:#usn8)-[`2esn`?{_usn3:$_usn4[Count ( * )..],#usn7:{`3esn`}[..07][..{`5esn`}]}]-({_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]})),Allshortestpaths(((:_usn4{_usn4:{7} In `2esn`})<-[#usn8?:usn1|@usn6]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]}))) Using Scan @usn5:#usn7 Using Index #usn8:`2esn`(`5esn`)) Union All Optional Match @usn5=(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(`2esn` :`8esn`:`7esn`),usn1=Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` )))) Using Join On `7esn`,`8esn`,`3esn` Where 7[{0}..{_usn4}] Foreach(`` In $`8esn`| Create `8esn`=(:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`),(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7) Remove Case `1esn`[{usn1}..``][7..$#usn8] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] End.@usn5) Match `3esn`=Shortestpath((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))),Shortestpath(({@usn5:07[..True][..9e12]})-[_usn4?:`5esn` *..07]->({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})) Using Index @usn5:`2esn`(@usn5) Using Scan `7esn`:usn1 Where Null[$#usn7];"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Drop Constraint On(@usn6:_usn3)Assert Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]).`2esn`? Is Unique;"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Start `4esn`=Node:_usn4(#usn7=\"d_str\") Union All Unwind {0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]] As `4esn` Create Unique `6esn`=Allshortestpaths(((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(@usn5 :`4esn`)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]}))),_usn3=(((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5))) Start `2esn`=Node:_usn4(#usn7=\"d_str\") Union With Distinct $`3esn`[0.12..`8esn`][$#usn7..`5esn`],Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]) =~Reduce(usn1=.e1 Ends With 1e1 Ends With @usn5,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$#usn7[#usn7..]) =~`1esn`($1000 Is Null) As @usn6 Order By {`1esn`}[12.0..`2esn`][@usn6..{usn1}] Ascending,$`3esn` Is Not Null Desc Where 01 Contains {`8esn`} Contains 2.12;"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Create Constraint On(`7esn`:`7esn`)Assert Exists(Extract(`8esn` In 01[2.12..`8esn`] Where Count ( * ) Ends With $@usn5|Count ( * )[True..][{#usn7}..]).`6esn`!)"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Using Periodic Commit Load Csv With Headers From Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn` As usn2 Fieldterminator \"d_str\" Foreach(_usn4 In 9e0[1.e1..][0Xa..]| Match Allshortestpaths(((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(@usn5 :`4esn`)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]}))) Using Index `1esn`:@usn5(#usn8));"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 With Distinct [1.0 =~'s_str' =~{`2esn`}] Contains [9e1[2.12],{usn2}[$`3esn`..][{#usn7}..],Null Ends With {`5esn`} Ends With 0.e0] Contains `5esn`,All(`3esn` In {7} Is Null)[{`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]}..],{`2esn`} Ends With {`7esn`} Skip `6esn`(Distinct 0X7[`7esn`][123.654]) Is Not Null Is Not Null Unwind 1000 In {`8esn`} In 01 As `` Union All Start #usn7=Rel:@usn6(`7esn`={`8esn`}) Return *,'s_str' Starts With 123.654 As usn1 Order By $#usn7[..{`5esn`}][..9e12] Desc,Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`)[None(#usn8 In 7[..999][..{#usn8}] Where 0Xa[2.12])..][[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789]]..] Desc,0x0 Ends With $12 Asc Limit $123456789 In $#usn7 In `4esn` Detach Delete 's_str' Ends With 7 Ends With {_usn4},{@usn6}[..$7][..$`7esn`]"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 With Distinct All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)],None(#usn8 In 7[..999][..{#usn8}] Where 2.12['s_str'..$12][{`1esn`}..`2esn`])[[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 12e12 Ends With {usn1}]][[$12 Ends With 07 Ends With $123456789,$@usn5 =~1000 =~1000,.e12[@usn5..$12]]] As @usn5 Order By True =~{`5esn`} Asc,\"d_str\" Contains {123456789} Contains 01 Asc Where {999} Starts With {0} Union All Create Unique ((usn2 :@usn5)<-[? *00]->(@usn5 :usn1)),Allshortestpaths((((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})))) Create `6esn`=Shortestpath((({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})<-[_usn4?:`` *0X0123456789ABCDEF{`5esn`:$123456789 Is Null Is Null,@usn6:{12} Ends With 1.0 Ends With .e0}]->(:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null})<-[``?:#usn8|`1esn`{#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1}]->({@usn5:12e12 Contains 0Xa,_usn4:01[2.12..`8esn`]}))),usn2=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})<-[{`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}]->({`7esn`:7[{0}..{_usn4}]})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-({#usn8:0xabc[.e0]})))) Start `6esn`=Node:``('s_str') Where 12.e12[7..$`6esn`] Union Start `5esn`=Relationship(*) ,`7esn`=Rel:#usn8({_usn3}) Match ((_usn4 )) Using Index `3esn`:@usn5(`2esn`) Using Scan _usn3:`1esn` Where {usn1}[0X0123456789ABCDEF];"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Create Constraint On()-[`1esn`:_usn3]-()Assert Exists([_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null|@usn6 Is Null Is Null].`6esn`);"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 With Distinct $@usn5,{`5esn`} Starts With @usn5 Starts With `7esn`,$1000 =~$`2esn` As `6esn` Skip 9e12[{123456789}..#usn8][{_usn3}..{#usn7}] Limit 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3] Where `1esn` Contains {usn2} Contains $#usn8 Union Foreach(@usn5 In $`5esn` In $`6esn`| Start `8esn`=Rel:`7esn`(_usn4={12}) Where 0.12 Starts With $`5esn` Starts With 12 Detach Delete $`1esn` =~0X7,.e0 Ends With 0.12,0e0[`8esn`..][$123456789..]);"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Create Constraint On(`3esn`:#usn7)Assert {@usn5}.usn1? Is Unique;"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Drop Constraint On(@usn6:`3esn`)Assert Case `4esn`[1.0] When $`4esn`[9e12..123.654] Then $`4esn` In Null In 0xabc End.``? Is Unique"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Create Constraint On(`7esn`:#usn7)Assert `7esn`(Distinct $`6esn`[123456789..12][True..{`3esn`}],7 =~{`8esn`} =~$`6esn`).#usn7 Is Unique;"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Create Constraint On()-[#usn8:`1esn`]-()Assert Exists(Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {`3esn`} Is Not Null Is Not Null).`2esn`!);"), - octest_legacy:ct_string("Explain Return Distinct @usn6 Contains $1000 Contains {`7esn`} Unwind `5esn` Ends With {``} Ends With 12.e12 As `1esn`;"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Foreach(_usn4 In $999 In $_usn3 In {`5esn`}| Load Csv From {999}[1000..{usn2}] As @usn6 ) Start _usn4=Node:usn2(`8esn`='s_str') Where `7esn`[9e0..] Foreach(`1esn` In 07 Is Not Null Is Not Null| Remove (_usn4 {usn1:True Contains {0} Contains 7})-[`3esn`:#usn7]-(`2esn` :_usn3:_usn3).@usn6)"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Create `6esn`=Allshortestpaths((#usn8 :@usn6:#usn8)) With 0.e0 Starts With 12.e12 Starts With {_usn4} As _usn3,0e0 =~`6esn` =~123456789,`1esn`($123456789 Starts With 9e0 Starts With 's_str',{usn2}[.e0..$999])[{usn2:{`3esn`} In 0X7,_usn3:7 Starts With {@usn6} Starts With $``}..Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {usn1} In 2.12 In 1000)][Case 0[`7esn`..] When 123456789 Is Null Then .e12 Is Not Null Is Not Null Else $@usn5 =~1000 =~1000 End..[`4esn` In $`3esn` Is Not Null Where `8esn`[{123456789}..]|{`3esn`}[`2esn`]]] Order By `5esn`[_usn4..] Ascending Where $`1esn` Ends With 9e1 Ends With $123456789 Union Delete Extract(_usn3 In {`3esn`}[`2esn`] Where _usn3 Contains $123456789 Contains ``)[Extract(`5esn` In \"d_str\" Is Null Is Null Where 00[$`7esn`]|$`6esn` Is Null)]"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Create Constraint On(`7esn`:#usn8)Assert Exists(Shortestpath((`4esn` {`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}})).`6esn`?)"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Using Periodic Commit Load Csv From $123456789 In $#usn7 In `4esn` As `5esn` ;"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Unwind 12.e12[..Null][..$#usn8] As usn1 Remove Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]).@usn6!,{`6esn`:Count(*) Ends With 12.0 Ends With 12}.`2esn`?,Reduce(`8esn`='s_str' Ends With 7 Ends With {_usn4},#usn7 In `2esn`[..$#usn8][..Count(*)]|$123456789 Ends With `3esn` Ends With 123456789).#usn7 Union All Foreach(#usn8 In [_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null|999 Is Not Null Is Not Null] Ends With [`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null|{`5esn`} Starts With $`5esn` Starts With .e1] Ends With {``:usn1 Starts With usn1 Starts With $``}| Match `7esn`=Allshortestpaths((((`6esn` {`7esn`:$`6esn`[010..]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-({`1esn`:`3esn`[{`2esn`}]})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})))),@usn6=Allshortestpaths((`1esn` :`5esn`{`5esn`:{``} Is Null})-[:@usn6|`6esn`{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}]->(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[`2esn`?:`2esn`]->(`7esn` {``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})) Using Join On `6esn` Using Index `4esn`:`3esn`(#usn8) Where 123456789 Ends With $`6esn` Ends With $#usn7 Match usn2=(`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[@usn5?:`3esn`|:#usn8{_usn4:{999}}]->(:#usn8:#usn8{``:1.0[0e0..0.e0]})) Foreach(usn1 In Case 01[{`2esn`}..{@usn6}][$`2esn`..0.0] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] When 12e12[$`3esn`] Then {`5esn`} Contains $0 Contains {``} Else usn1 Starts With usn1 Starts With $`` End[usn2(Distinct 0.12 In _usn3 In {0},@usn6 Is Null Is Null).._usn4(0.e0 Starts With 12.e12 Starts With {_usn4},0X0123456789ABCDEF Is Null Is Null)][[{7}[$``][{@usn6}],0.0 Ends With 010 Ends With 1.e1]..$`4esn`]| Start `7esn`=Node:`7esn`(_usn4={@usn6}) ) Foreach(#usn8 In $`7esn` Is Not Null| Create #usn7=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}),@usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})) Create `3esn`=Allshortestpaths(((:usn1{_usn4})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}))));"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Delete exists()[..[`5esn` In $999[0.0..] Where $`3esn`[..$123456789][..$`1esn`]]][..Reduce(`2esn`={123456789} Is Null Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4])],`3esn`[`3esn`..][#usn8..],1.0 Starts With 12e12 Starts With {`5esn`} Start `6esn`=Rel:`7esn`(`3esn`=\"d_str\") Where 1.0[0X7][{`5esn`}] Union All Return 123456789[0xabc..'s_str'][``..`1esn`] As `4esn` Skip `4esn`[`5esn`..12][@usn6..False] Limit $_usn4[Count ( * )..] Detach Delete 1.e1[$`1esn`..@usn6][$0..$_usn3],$@usn6[..{#usn7}][..{@usn6}] Create `1esn`=Shortestpath((usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})<-[ *..010{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}}]->(:_usn4$@usn5)<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]->(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})),((:_usn4{@usn6})) Union All Detach Delete Filter(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0]) Ends With Case When {#usn8}[010] Then False =~$7 =~2.12 End,1.0[$`1esn`..][$123456789..]"), - octest_legacy:ct_string("Cypher Create `1esn`=Allshortestpaths(((({#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[`4esn`]->(:`6esn`$123456789)))) Union Remove [0.12 =~$0 =~$0,2.12 Contains usn2 Contains True,2.12].`4esn` Union All Load Csv With Headers From 0Xa Starts With {`6esn`} Starts With $usn1 As `` Load Csv From {_usn4} Is Not Null Is Not Null As usn2 "), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Drop Constraint On(`7esn`:usn2)Assert Exists(Shortestpath((`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})<-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(`3esn` :`6esn`)).`8esn`!);"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Create Constraint On()-[``:@usn5]-()Assert Exists(`5esn`(Distinct #usn7 =~Count ( * ) =~``).`5esn`!);"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Load Csv From Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End[[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]]..Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})))] As usn1 Fieldterminator 's_str' Remove Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..]).`2esn`,({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)._usn4? Match `8esn`=(((usn2 :#usn7)<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[`7esn`:`1esn` *0X0123456789ABCDEF{`6esn`:1000[..$0][..True],_usn4:Count ( * ) Ends With $@usn5}]->(`4esn` {usn2:0x0 Is Null,`5esn`:{usn2} =~12}))),((_usn3 :`7esn`:_usn3)-[]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})) Union All Create Unique @usn5=(((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``})))"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Drop Constraint On(`3esn`:`2esn`)Assert (`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1}).@usn6 Is Unique"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Match Allshortestpaths(((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(@usn5 :`4esn`)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]}))) Using Index `1esn`:@usn5(#usn8) Merge ``=(`1esn` {``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Start `8esn`=Rel:@usn6(`7esn`={`8esn`}) ,_usn4=Node( {`1esn`})Where 0[1.e1..12e12] Union All With *,.e0 Ends With 0.12,12.e12[`3esn`] As #usn7 Skip False Contains {`6esn`} Create Unique Allshortestpaths((@usn5 {`3esn`:.e1[..usn2][..`8esn`]})<-[usn2:`7esn`]->(:usn1{_usn3:{#usn7}[`2esn`..]})-[?:usn2|``$#usn7]-(#usn8 :``:#usn8{`7esn`:9e1[$usn2],_usn4:$_usn4 Contains Null Contains #usn8})),({`4esn`:`7esn` Is Null}) Return {12} Contains {123456789} Contains `4esn` Union Foreach(usn1 In 0Xa[..{`4esn`}][..12.0]| Return *,Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7) In [{_usn3}[..$12][..0.12],usn1 Is Null] In [#usn8 In 7[..999][..{#usn8}] Where $_usn3 Contains 999 Contains \"d_str\"] Limit [`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999}] Ends With usn1(Distinct 1000 In {`8esn`} In 01,{_usn3}[..\"d_str\"][..`5esn`]) Ends With Reduce(_usn4=1000[Null..{123456789}],`5esn` In $999[0.0..]|9e1 In $`3esn` In $@usn6) Remove Reduce(`8esn`={`7esn`}[..$@usn5][..$#usn8],`3esn` In {7} Is Null|0.12[$`3esn`..$_usn3][12.0..usn1]).`1esn`,Reduce(`4esn`=$999 Is Not Null,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|$`7esn`['s_str']).``?,(@usn5 {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`}).#usn7) With Distinct (`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(`5esn` :@usn5{`8esn`:{usn2} =~12})[All(`` In `` Is Not Null Is Not Null Where `3esn`[{0}][usn1])] As _usn4,$_usn4[1.e1]['s_str'] As #usn8,usn2[$7..$123456789][$@usn6..$7] Order By 9e1[0.0..] Desc,0.12 =~$0 =~$0 Desc Limit {_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] Where 0X7 =~9e1 Unwind .e0 Starts With $`` Starts With $usn2 As _usn3"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Start #usn8=Relationship:`8esn`(#usn8={`2esn`}) ,`6esn`=Rel:`7esn`(`3esn`=\"d_str\") Remove Allshortestpaths(({`3esn`:usn1 Is Null Is Null})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(usn2 {`6esn`:{#usn8}[.._usn4][..$`3esn`],`7esn`:01 =~{_usn3} =~`3esn`})).@usn5!,All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where ``[$`2esn`])._usn4!,Filter(#usn7 In {``} Is Not Null Where .e0 Starts With $`` Starts With $usn2).#usn8 Union All Remove (:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn` *0X7..{usn2:_usn3[$`8esn`]}]->(`8esn` :_usn4).@usn5,[@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $0[``][{@usn6}]].#usn8! Unwind (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12} As `1esn`;"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Create Constraint On()-[`1esn`:`8esn`]->()Assert Exists([`6esn` In 0Xa,12.0 =~999 =~$_usn3].``);"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Create Unique `3esn`=Shortestpath((`3esn` :@usn5)<-[_usn4?:`` *0X0123456789ABCDEF{`5esn`:$123456789 Is Null Is Null,@usn6:{12} Ends With 1.0 Ends With .e0}]->({@usn5:{usn2}[.e0..$999]})) Union Optional Match Shortestpath(({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->(`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[:`3esn`|:#usn8 *1000..00{usn1:0[`7esn`..]}]-(usn1 :`3esn`:@usn5)),`4esn`=Allshortestpaths((:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})) Using Index ``:usn1(@usn5) Where 12.0 =~999 =~$_usn3 Delete {`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]} Starts With [False] Starts With Filter(#usn8 In 7[..999][..{#usn8}] Where $_usn3[.e0..$usn2]) Foreach(`8esn` In .e1 In 0Xa In #usn7| With Distinct #usn8 In $@usn6,1.e1[`8esn`][00] Where 0.e0 Starts With `2esn` Return Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})] As `4esn`,usn2 Is Null As `7esn`,Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn` As _usn3 Order By Count ( * ) =~$usn2 =~$usn2 Descending Limit {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains [1.0[0X7][{`5esn`}]]) Union All With Distinct {0} As `7esn`,1000[..$0][..True] Limit Case When @usn5 Is Null Then 2.12 Ends With $_usn3 Ends With `3esn` Else $1000 Is Null End[Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}])..None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa)][Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01|usn2 Is Null)..Case When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` End];"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Drop Constraint On()<-[@usn6:`2esn`]-()Assert Exists({`6esn`:0.e0 Ends With $#usn7 Ends With $7}.`5esn`?);"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Drop Constraint On()-[_usn4:@usn5]-()Assert Exists(Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where ``[$`2esn`]).`6esn`?)"), - octest_legacy:ct_string("Explain Create Constraint On(`3esn`:_usn4)Assert Exists(Reduce(@usn5=\"d_str\"[..{@usn5}][..``],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$`7esn` Is Null Is Null).`2esn`);"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Return `6esn`[..$@usn6] As `` Order By Extract(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0])[Case $`3esn` In $`6esn` In $`` When {_usn3}[..\"d_str\"] Then `3esn`[{usn1}] Else {999} Starts With {0} End][usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010])] Desc,Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))) Desc Limit Count(*) Contains $#usn7 Contains 1e1 Create @usn6=Shortestpath((usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})),(((`3esn` :`8esn`:`7esn`)-[`7esn`:#usn8|`1esn` *0xabc..]->(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})-[`2esn`?:`7esn` *..07$0]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})))"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Start usn2=Node:_usn4(``={#usn7}) ,`3esn`=Rel:usn1(`6esn`={7}) Union All Create Unique ((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})),Allshortestpaths(((`2esn` :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0}))) Merge ((@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})) On Match Set `3esn` =Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End On Match Set Case When $_usn3[Count(*)] Then 010[#usn7..True] End.`6esn` =(`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})[\"d_str\"..Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null)][Shortestpath(((:`3esn`:@usn5$7)))..usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010])],All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where $_usn4 Ends With usn1 Ends With $0).@usn5? =Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End Union Create usn2=Allshortestpaths(((:@usn6:#usn8{`4esn`:$`8esn`[..00]})<-[_usn4?:_usn4|:usn2 *00]->(:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))),#usn8=(((`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})-[@usn5]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})));"), - octest_legacy:ct_string("Explain Load Csv From False =~$7 =~2.12 As `6esn` Union All Unwind Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789])[`7esn`(Distinct Count ( * ) =~$usn2 =~$usn2)] As @usn6 Create ``=(((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))),@usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})) Union Create @usn6=((`` :`7esn`:_usn3)),((usn2 :`4esn`)-[_usn3:#usn8|`1esn`{_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]}]->(@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:`5esn` *0..{_usn4:7[$`2esn`..{`5esn`}]}]->()) Merge `8esn`=Allshortestpaths((`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}));"), - octest_legacy:ct_string("Explain Using Periodic Commit Load Csv From (:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]}) Is Null As @usn6 Fieldterminator \"d_str\" Foreach(`7esn` In (:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case When `6esn`[12..$usn2][{#usn8}..{usn2}] Then {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] When .e12[@usn5..#usn7][010..{usn1}] Then 0.12 =~$0 =~$0 End| Optional Match Allshortestpaths((((:`2esn`:usn1{@usn5:`5esn`[.e0..][07..],`4esn`:`8esn` =~0xabc =~010})-[`7esn`?*..]->(#usn7 {`5esn`:00 Starts With 0xabc,`6esn`:0Xa =~Null =~$``})-[usn2?]-(:@usn5)))),_usn4=(((#usn8 :#usn8:#usn8{@usn5:{#usn8} Is Not Null})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})-[`4esn`?:_usn4|:usn2 *..01]->(`7esn` :`8esn`:`7esn`{#usn8:01234567[usn2..$12][{`7esn`}..$usn2]}))) Using Join On `6esn`,`8esn`,`4esn` Using Index #usn7:#usn7(``) Where 1.0 Is Null Is Null Create _usn4=((@usn6 )<-[usn1?:`8esn` *..010]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})<-[?:`8esn` *..0x0{`2esn`:$`4esn`[Null..]}]->({#usn8:0xabc[.e0]})),Shortestpath(((`6esn` :`4esn`))));"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Create Constraint On()<-[`1esn`:`3esn`]-()Assert Exists(All(#usn7 In {``} Is Not Null Where {`6esn`} =~$999).`4esn`!)"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Drop Constraint On(`7esn`:@usn6)Assert Exists(Reduce(#usn8=123.654[$`1esn`],#usn8 In {`5esn`}[.e1..``]|{`5esn`} Starts With $`5esn` Starts With .e1).`2esn`)"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Drop Constraint On()-[_usn3:#usn7]->()Assert Exists(Case When 0X7[1000..{`1esn`}] Then Count(*) Ends With 12.0 Ends With 12 End.#usn7)"), - octest_legacy:ct_string("Explain Create Unique @usn5=Allshortestpaths((:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})-[:#usn7 *..010]->(#usn8 :usn1)),`4esn`=Allshortestpaths((({usn1:`5esn`[_usn4..]})-[usn1?:_usn3|_usn3]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))) Create @usn5=Allshortestpaths((:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})-[:#usn7 *..010]->(#usn8 :usn1)),(((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`}))) Unwind {`5esn`}[0..`8esn`][0..Null] As usn1 Union Unwind $999 Is Not Null As `` Union All Optional Match ({usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null}) Using Join On `8esn`,@usn5 Using Scan `6esn`:`1esn` Where $#usn8[Count ( * )] With {123456789} Contains $#usn8 As `3esn`,{7}[..12e12][..Count ( * )],$0[$`1esn`..07] Order By {`8esn`}[..{`8esn`}][..$`3esn`] Descending,Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Desc Limit None(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {123456789}[0xabc..]) In (`4esn` {`6esn`:#usn8[..{#usn7}]})<-[_usn4 *..999]->({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[#usn8? *0..]->(#usn7 ) In Extract(`3esn` In {7} Is Null Where 1e1 Contains Count ( * )) Where $`3esn` In $`6esn` In $``;"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Merge ((`4esn` {`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}})) On Match Set `2esn`+=Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`]) In {usn2:{`3esn`} Is Not Null Is Not Null} In {`4esn`:False,_usn4:$`7esn` Is Null Is Null} Union Match #usn8=((`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0})),usn1=Allshortestpaths((`` {@usn6:1.0[$`1esn`..][$123456789..]})-[`7esn`*]->(`7esn` {`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})-[@usn6]-(`5esn` {`4esn`:01 Is Null})) Using Scan `4esn`:`2esn` Using Join On `1esn` Where {1000} =~0 =~123.654 Union All Create Unique `5esn`=(((_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(#usn7 {@usn5:$`8esn` =~{1000}})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]}))),usn2=Shortestpath((usn2 :#usn7)) Create Unique @usn6=((usn2 :@usn5)-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`4esn`{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})) Merge `3esn`=Allshortestpaths((((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5)))) On Match Set _usn4:usn1,@usn5 =0.e0[#usn8],`4esn` =`7esn`[$12..][$`8esn`..]"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Create Constraint On()<-[`8esn`:`1esn`]-()Assert Exists([`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|usn1 Is Not Null].usn1);"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Drop Constraint On(#usn8:`2esn`)Assert Exists(Single(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07).``!)"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Detach Delete [`4esn` In $`3esn` Is Not Null Where $@usn5 Contains 0xabc Contains {#usn7}|`3esn`[{0}][usn1]] In [{12}[{7}][$123456789],`2esn` Starts With $_usn4] In count($1000 Is Null,0Xa[$123456789..123.654][.e12..0.e0]),{0} Contains 0.0 Contains $@usn5 With Distinct usn2 Ends With 999 Ends With .e1 As `7esn`,$`5esn`[$123456789],[#usn8 In 7[..999][..{#usn8}] Where {12} =~#usn8|\"d_str\" Contains {123456789} Contains 01] Contains {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} As `8esn` Order By $0[$`1esn`..07] Desc,Filter(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0]) Ends With Case When {#usn8}[010] Then False =~$7 =~2.12 End Descending,{`4esn`:{`4esn`} =~{7} =~{`7esn`},`8esn`:$#usn7[#usn7..]} Is Null Is Null Desc Limit Extract(`5esn` In $999[0.0..] Where {_usn3}[..\"d_str\"]) =~All(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {@usn6}[{999}..][00..]) =~Any(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01) Optional Match ((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})),``=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))) Using Scan _usn3:_usn3 Where Count ( * ) Ends With $@usn5 Union Merge ((@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})) On Match Set `3esn` =Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End On Match Set Case When $_usn3[Count(*)] Then 010[#usn7..True] End.`6esn` =(`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})[\"d_str\"..Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null)][Shortestpath(((:`3esn`:@usn5$7)))..usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010])],All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where $_usn4 Ends With usn1 Ends With $0).@usn5? =Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Foreach(usn2 In {1000}[$999...e12][`7esn`..'s_str']| Create _usn3=Allshortestpaths((((:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)-[usn1? *1000..00]->({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})))),(((#usn8 :#usn8:#usn8{@usn5:{#usn8} Is Not Null})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})-[`4esn`?:_usn4|:usn2 *..01]->(`7esn` :`8esn`:`7esn`{#usn8:01234567[usn2..$12][{`7esn`}..$usn2]})))) Union With All(`3esn` In {7} Is Null Where Count ( * ) Contains 07) Is Null Is Null Limit $12[`5esn`..] Where 0.12[`2esn`..{`6esn`}] Delete $#usn8[Count ( * )]"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Merge #usn8=Allshortestpaths((#usn8 :@usn5)) On Create Set $`1esn`.``? =[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12);"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Create Constraint On(`2esn`:_usn4)Assert Exists(Filter(#usn8 In 7[..999][..{#usn8}] Where 2.12['s_str'..$12][{`1esn`}..`2esn`]).@usn5);"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Create Constraint On()<-[``:_usn4]-()Assert Exists(Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]).@usn5)"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Create Constraint On(`5esn`:``)Assert Exists(Reduce(`5esn`=usn1 Is Not Null,@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|7 Is Not Null Is Not Null).`3esn`);"), - octest_legacy:ct_string("Explain Create Constraint On(#usn8:usn1)Assert Exists([0[1.e1..12e12],999 In {`3esn`} In usn2].`5esn`)"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Remove usn1:_usn4,[`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|0Xa[2.12]].`2esn`! Remove (_usn3 :usn2{#usn7:{999} Starts With {0}})<-[`4esn`:@usn6|`6esn`{`4esn`:`2esn` Is Null,@usn5:00 Starts With 0xabc}]-({`5esn`:$#usn8 Ends With $`2esn` Ends With $@usn6}).`2esn`? Create Unique ((:@usn6:#usn8)<-[`1esn`?:usn2|``]-({@usn5:{usn2}[.e0..$999]})),@usn6=Shortestpath((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null}));"), - octest_legacy:ct_string("Cypher 12.999 Drop Constraint On(`6esn`:@usn5)Assert Exists([{usn1} Is Null Is Null].`7esn`)"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Load Csv With Headers From usn2[{7}] As @usn6 Fieldterminator \"d_str\" Union Return Distinct *,_usn4(Count(*) In $12) In Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $123456789 =~{`6esn`} =~\"d_str\"|01 Ends With 999 Ends With {`7esn`}),$`` Ends With 0.0 Ends With {1000} Union Merge `8esn`=(_usn4 :usn2{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}) On Match Set #usn8+=`2esn`(Distinct $``,7 Starts With {@usn6} Starts With $``) Contains {@usn6:_usn3[$`8esn`],usn1:$@usn5 Is Not Null} Contains {@usn5:`8esn`[{123456789}..]},({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(#usn7 :#usn8:#usn8{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null}).@usn6? =01[{@usn5}]"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Using Periodic Commit Load Csv From Reduce(`2esn`=$_usn3[.e0..$usn2],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$`7esn` Is Null Is Null)[Shortestpath((({``})))..{@usn6:{`6esn`} =~$999}] As `5esn` Foreach(@usn5 In 1.0 Starts With 12e12 Starts With {`5esn`}| Optional Match `3esn`=((`1esn` {#usn7:{_usn4} In {12} In $0})-[{#usn8:$#usn8 =~{@usn5},`8esn`:0X0123456789ABCDEF[{_usn4}..00]}]-(_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})) Using Scan `3esn`:`8esn` Using Scan `6esn`:`2esn` Where {0}[01][`7esn`] Start #usn7=Node:@usn5(usn2='s_str') Where 9e1[2.12..{#usn8}])"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` With *,usn2 Ends With 12.e12 As usn1,{`4esn`:`7esn` Is Null}[{`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]}..] As #usn8 Limit `1esn`(Distinct $@usn5[..12e12][..$123456789],{#usn7} Is Not Null Is Not Null)[{`7esn`:\"d_str\" Starts With $123456789}..] Where $`1esn`[1.0..][_usn3..] With {``} Is Not Null As #usn7,{#usn7}[`2esn`..],Count ( * ) Contains {`1esn`} Contains 07 Order By `8esn` Is Not Null Is Not Null Desc Limit $123456789[_usn3][{#usn7}] Where Count ( * ) Ends With 12.0 Detach Delete Extract(`2esn` In `1esn` =~\"d_str\" Where usn2[9e12]|#usn7 Starts With {#usn7} Starts With `7esn`)[..(:#usn8:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})<-[_usn4?:`` *0X0123456789ABCDEF{`5esn`:$123456789 Is Null Is Null,@usn6:{12} Ends With 1.0 Ends With .e0}]->(:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null})<-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})][..Extract(`3esn` In {7} Is Null Where usn1 Is Null Is Null|12.0)],1.0 Starts With 12e12 Starts With {`5esn`} Union Remove `2esn`($`6esn`[123456789..12][True..{`3esn`}],$`5esn`[`3esn`..]).``! Merge Shortestpath((:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})<-[usn1?:`7esn`]-(:usn1{usn1:{`6esn`}})<-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(_usn3 :#usn7)) Union All Load Csv With Headers From `1esn` =~\"d_str\" As @usn6 Fieldterminator \"d_str\" Create Unique Allshortestpaths(({_usn3:{_usn4} Is Not Null Is Not Null})),(({_usn3:{_usn4} Is Not Null Is Not Null})) Load Csv From 0Xa Is Null Is Null As _usn3 ;"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Drop Constraint On(`3esn`:`3esn`)Assert {#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]}.#usn7! Is Unique"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Create Constraint On()-[_usn4:`2esn`]-()Assert Exists(Extract(`5esn` In \"d_str\" Is Null Is Null Where 1.e1[$`1esn`..@usn6][$0..$_usn3]|{`7esn`}[..{`4esn`}]).`4esn`);"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Drop Constraint On(_usn4:_usn4)Assert Exists({`2esn`:usn2[{7}],`2esn`:0e0 Ends With 1.e1 Ends With $`4esn`}.`4esn`?);"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Create Constraint On()-[@usn5:@usn6]->()Assert Exists(Any(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`6esn`}).``?)"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Create Constraint On(@usn5:`3esn`)Assert [{`5esn`} Starts With $`5esn` Starts With .e1]._usn4? Is Unique;"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Create Unique Allshortestpaths((`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(_usn4 {`5esn`:\"d_str\" Starts With 01})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(:`3esn`:@usn5$usn2)),`5esn`=Shortestpath((((`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})<-[@usn6:@usn5 *0Xa]->({`3esn`:9e1[2.12..{#usn8}]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})))) Union Detach Delete $`` Ends With 0.0 Ends With {1000},$`1esn` =~0X7,All(`3esn` In {7} Is Null)[{`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]}..] Match Shortestpath((`3esn` :`8esn`:`7esn`)-[`` *..12]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[`3esn`? *123456789..]-(`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})),Shortestpath((`5esn` :`4esn`)) Using Index _usn4:usn1(`1esn`) Using Index `1esn`:_usn3(_usn4) Where True[00][0Xa] Load Csv From [`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`]|`8esn` Contains $usn1 Contains $12][Filter(_usn3 In {`3esn`}[`2esn`] Where #usn7 Contains _usn3 Contains {`3esn`})..(:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})-[usn2?:`7esn` *123456789..{_usn4:$@usn5 Starts With {0} Starts With 12,`2esn`:{7}[..12e12][..Count ( * )]}]->({_usn3:False =~1e1 =~0.e0,_usn3:{999} Starts With $999})] As `6esn` Fieldterminator \"d_str\" Union Merge Shortestpath(((`2esn` :#usn7{`5esn`:\"d_str\" Starts With $123456789})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`)<-[`6esn`?:_usn4|:usn2 *1000..00{`6esn`:@usn5 In {`7esn`} In `2esn`,@usn5:0.0 =~999}]->($#usn8))) On Create Set @usn6+=None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End],`3esn` ={`7esn`}[0e0][1.e1],usn1+=Reduce(`8esn`=$@usn5[..12e12][..$123456789],@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|@usn5 In {`7esn`} In `2esn`) Is Not Null Is Not Null On Match Set Case usn1 In 7 In {123456789} When _usn3[_usn3..][12.e12..] Then 0x0 Ends With $12 Else `7esn`[..2.12][..00] End.`7esn`? =Reduce(`8esn`=0[..usn2][..{@usn5}],#usn8 In {`5esn`}[.e1..``]|Count ( * )[True..][{#usn7}..])[2.12..][{999}..],`` ={`3esn`} Is Null Is Null,(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(usn2 {``:01[{@usn5}]})._usn4? =Reduce(`1esn`={0} Ends With $_usn3 Ends With $`7esn`,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|010 In Count(*))[9e12..(`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})][0X7..Case $_usn4 Starts With 1e1 When {12} Ends With 1.0 Ends With .e0 Then {`2esn`} Is Not Null Else \"d_str\"[..{@usn5}][..``] End] Detach Delete (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12},{`4esn`} Starts With $usn2 Starts With $1000"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Create Constraint On(``:usn2)Assert Exists(Case When _usn3[$`8esn`] Then $0[..9e1] End.`7esn`);"), - octest_legacy:ct_string("Cypher 12.999 Create Constraint On()-[`7esn`:usn1]-()Assert Exists(Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]|07[..True][..9e12]).`8esn`!);"), - octest_legacy:ct_string("Cypher 12.999 Drop Constraint On(`8esn`:`3esn`)Assert Exists(All(#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn1 Is Not Null).@usn5?);"), - octest_legacy:ct_string("Cypher 12.999 Return Distinct [1000 =~@usn6 =~0x0] Starts With {#usn8:$`7esn` =~{`8esn`} =~$usn1,`7esn`:0xabc[01..{999}][{7}..{`7esn`}]} Starts With `7esn`(Distinct 123.654[`3esn`..]) As `1esn`,Shortestpath((($#usn8)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})))[Single(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where usn1 Ends With $@usn6 Ends With `3esn`)..],{#usn7}[True][.e1] Order By $_usn4[Count ( * )..] Descending,$123456789 In 0X0123456789ABCDEF In 0.e0 Asc Skip 0x0[`4esn`..'s_str'] Foreach(_usn4 In _usn3 In 0xabc| Unwind 123.654[$`1esn`] As `2esn` Remove [{12} Contains {123456789} Contains `4esn`,1.e1[`8esn`][00],1.0[$`1esn`..][$123456789..]]._usn4?,Reduce(_usn3=123456789[#usn8..False],_usn3 In {`3esn`}[`2esn`]|123.654 Contains $`4esn` Contains 1.0).#usn8?) Delete 12.e12 Starts With {999} Starts With {`1esn`} Union All Remove Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `5esn` Starts With 010 Starts With 0.0).`3esn`?,(`7esn` {`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]}).`2esn`?,(:`1esn`)<-[`3esn`:`6esn`|`5esn` *..12{usn1:0X0123456789ABCDEF Is Null Is Null}]-(:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[`3esn`?:`3esn`|:#usn8]->(`8esn` :_usn4)._usn4! Union All Return Distinct [1000 =~@usn6 =~0x0] Starts With {#usn8:$`7esn` =~{`8esn`} =~$usn1,`7esn`:0xabc[01..{999}][{7}..{`7esn`}]} Starts With `7esn`(Distinct 123.654[`3esn`..]) As `1esn`,0.0[Null][$`2esn`],`6esn` Is Not Null Is Not Null As `3esn` Skip (usn2 :_usn4)-[ *7..12]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})[$`2esn`] Merge (:`1esn`{})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(:`6esn`$123456789) On Create Set usn2 =All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {_usn4} Is Not Null Is Not Null) Is Null On Match Set @usn6 ='s_str' Starts With 123.654;"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Match `6esn`=((`3esn` {usn1:$0[..9e1],@usn5:`7esn`[..{usn1}]})-[#usn7?:`3esn`|:#usn8]->(`2esn` :usn1)-[`7esn`]-(`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})),`3esn`=Allshortestpaths(((#usn7 {``:9e12[`1esn`..][$`1esn`..],#usn7:#usn8})-[?:`7esn` *0X0123456789ABCDEF]->(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})<-[#usn8?:#usn7{`1esn`:#usn7 =~Count ( * ) =~``,usn2:`` Ends With $1000}]->(:@usn6:#usn8{`4esn`:$`8esn`[..00]}))) Where .e1 Is Null Is Null Remove Case When $#usn8 Ends With $`2esn` Ends With $@usn6 Then $1000[`2esn`..`5esn`][1e1..1.e1] Else {`4esn`} =~{7} =~{`7esn`} End._usn3?,{`8esn`:{usn2} =~12}.@usn5,`2esn`(Distinct 7[$`8esn`..123456789][$usn1..$usn1],1e1 In 123.654 In `3esn`)._usn4! Unwind Allshortestpaths((((:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]->(:`4esn`{``:2.12 Is Not Null Is Not Null}))))[{`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null}][Allshortestpaths(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})))] As @usn5"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Create Constraint On()-[#usn8:`5esn`]->()Assert Exists(Reduce(`1esn`=9e0[`3esn`..$_usn4],#usn7 In `2esn`[..$#usn8][..Count(*)]|{7} In `2esn`).usn1?)"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Merge Shortestpath(((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null}))) On Create Set `2esn`+={0} In $_usn3,`8esn` ={#usn8} Is Not Null,`1esn`($1000 Is Null).#usn8? =`5esn` Ends With {``} Ends With 12.e12 Union Create `8esn`=Shortestpath(({`1esn`:`3esn`[{`2esn`}]})-[`3esn`?*{`8esn`:False Is Null Is Null}]->(:#usn7{_usn4:$`8esn` Contains 123456789 Contains $usn2})),@usn6=Allshortestpaths(((@usn5 :`4esn`))) Foreach(usn2 In Reduce(usn1=$123456789 Is Null Is Null,_usn3 In {`3esn`}[`2esn`]|Null[$`5esn`][False])[Case 0e0 Contains Null When 0X7[`7esn`][123.654] Then 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] End..][[9e1[$usn2],{`4esn`}[$123456789..][$#usn7..]]..]| Delete Case When {1000}[$`4esn`][\"d_str\"] Then `4esn`[``] When {usn2}[.e0..$999] Then {_usn3}[12.e12] Else `4esn`[``] End[Shortestpath((@usn5 {`7esn`:$`6esn`[010..]})-[?:`8esn`{`3esn`:1.0 In Count(*)}]-(`4esn` :#usn7{``:$#usn7[@usn5..{1000}][1.e1..7]})-[`5esn`?:@usn5{`4esn`:0Xa =~Null =~$``}]->(:#usn7{usn2:{usn1} Ends With $0,#usn8:`5esn` Starts With $`2esn` Starts With $1000}))..],$`4esn`[Null..],Case 0x0[`4esn`..'s_str'] When 0.e0 Ends With $#usn7 Ends With $7 Then 0X7[..2.12] When {123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4] Then 0.e0[123.654][01] Else {_usn3}[..$12][..0.12] End[[`1esn`[..{@usn6}][..$123456789]]..] Load Csv From 1e1 Contains Count ( * ) As usn2 Fieldterminator \"d_str\");"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Drop Constraint On(``:usn1)Assert Exists((_usn4 :``:#usn8{#usn7})<-[?:`7esn`{`3esn`:{#usn8}[010]}]-(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})<-[`7esn`? *7..12]->(@usn6 :_usn3:_usn3).`7esn`?)"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Remove (:_usn4{@usn6})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {_usn3:{#usn7} Is Not Null Is Not Null})<-[#usn7?:`8esn` *0Xa]-({@usn6:01234567 Ends With .e12 Ends With $#usn7,`4esn`:12.e12[`3esn`]}).#usn8,Reduce(`2esn`={123456789}[9e12][{0}],@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|False[..``]).`6esn`?,Case 2.12 =~Count(*) When $`4esn`[`7esn`] Then usn1 Ends With $@usn6 Ends With `3esn` End.#usn8!;"), - octest_legacy:ct_string("Cypher Detach Delete $`4esn` In Null In 0xabc,{0} In _usn4 Union All Remove ``:`1esn`,[#usn7 In {``} Is Not Null Where {0}[01][`7esn`]|0e0 Starts With 1000 Starts With #usn7].#usn7,{usn1:`1esn` Contains {usn2} Contains $#usn8}._usn3? Union Unwind $#usn8[$`2esn`..][{`2esn`}..] As `5esn` Foreach(`4esn` In 1000[0X7..2.12]| Remove ({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)._usn4?) Start _usn4=Node:usn2(`8esn`='s_str') ,#usn7=Node:usn2({12})Where $`3esn` Is Not Null"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Drop Constraint On(#usn8:`3esn`)Assert Reduce(#usn7={`5esn`} Starts With $`5esn` Starts With .e1,`` In 123456789 Ends With 12.e12 Ends With $`7esn`|{`5esn`} Contains $0 Contains {``}).usn1? Is Unique;"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Start @usn6=Relationship:`8esn`({`3esn`}) ,`3esn`=Node:usn1(_usn4={12}) Remove Shortestpath((usn1 {`7esn`:{999}})).`5esn`!,Any(`4esn` In $`3esn` Is Not Null Where `8esn`[{123456789}..]).`5esn`;"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Match #usn8=Shortestpath((#usn8 :@usn5)) Using Scan `1esn`:`3esn` Using Join On _usn4 Where {``} Starts With $`2esn` Starts With `1esn` Detach Delete [`4esn` In $`3esn` Is Not Null Where $@usn5 Contains 0xabc Contains {#usn7}|`3esn`[{0}][usn1]] In [{12}[{7}][$123456789],`2esn` Starts With $_usn4] In count($1000 Is Null,0Xa[$123456789..123.654][.e12..0.e0]),{0} Contains 0.0 Contains $@usn5"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Drop Constraint On()-[`3esn`:_usn4]->()Assert Exists(Case `4esn`[1.0] When $`4esn`[9e12..123.654] Then $`4esn` In Null In 0xabc End.`7esn`?);"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Create Constraint On()-[usn1:`5esn`]-()Assert Exists(Any(#usn7 In {``} Is Not Null Where True =~010).`2esn`!);"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Drop Constraint On()<-[`1esn`:`6esn`]-()Assert Exists([`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where #usn8 Is Not Null|{123456789}[0xabc..]]._usn4?)"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Remove Reduce(`4esn`=0X7[$999][_usn4],`2esn` In `1esn` =~\"d_str\"|0Xa[$123456789..123.654][.e12..0.e0]).usn2,{@usn6}.@usn6 With 7[$`8esn`..123456789][$usn1..$usn1] As `5esn`,2.12[{7}..] As `5esn`,[usn2[$_usn4..][True..],1.0 In Count(*)] =~Any(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12.0[123.654][Count(*)]) =~Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where usn2 Is Not Null Is Not Null) As `` Skip 12.0 In {`2esn`} Where 123.654 Is Not Null Is Not Null Union All Remove Case When `2esn` Is Null Then 1000 =~@usn6 =~0x0 Else \"d_str\"[#usn8] End.`1esn` Union All Foreach(_usn3 In 123456789 Ends With $`6esn` Ends With $#usn7| Unwind $`1esn`[{`2esn`}..] As `7esn` Create `8esn`=((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}}))) Start usn1=Rel:@usn6(#usn7='s_str') ,``=Node:@usn6({_usn4})"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Merge ((#usn7 {`5esn`:00 Starts With 0xabc,`6esn`:0Xa =~Null =~$``})) On Match Set Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0).``? ={@usn6}[{999}..][00..] Match #usn7=(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[#usn8]-(:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}) Using Index #usn8:`2esn`(`5esn`) Using Index `3esn`:`5esn`(#usn7) Union Unwind Shortestpath((((`7esn` {`5esn`:123.654 Contains $`4esn` Contains 1.0,`8esn`:123.654 =~$usn2 =~{999}})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[`2esn`?:`1esn` *00]->({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})))) In (usn2 :@usn5)-[?{`8esn`:{7} Is Null}]->(`` )<-[`3esn`?:`3esn`|:#usn8]-(`` :#usn8:#usn8) In (@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8}) As ``;"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Create Constraint On()<-[``:usn1]-()Assert Exists(Case {999} Is Null Is Null When 12.0 =~1.0 =~9e12 Then $usn1 In {999} In $#usn7 Else `1esn` Ends With {_usn3} Ends With `2esn` End.usn2);"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Create Constraint On(#usn8:``)Assert Exists(Any(`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"]).@usn6)"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Load Csv With Headers From Reduce(`4esn`=01 Ends With 999 Ends With {`7esn`},`4esn` In $`3esn` Is Not Null|1.0[`3esn`..][9e0..]) Is Null Is Null As `3esn` Delete {#usn7} Is Not Null Is Not Null,None(`3esn` In {7} Is Null Where 0Xa[2.12]) Is Null Is Null,Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End[[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]]..Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})))] Union All Start `5esn`=Node:`6esn`(`8esn`='s_str') ,`7esn`=Rel:#usn8({_usn3})Where 0.e0 Starts With `2esn` Remove #usn8(Distinct $`4esn`[Null..],2.12 =~False).@usn5,[$`3esn` In $_usn4 In {_usn3},{1000} =~0 =~123.654].`3esn` Union All Unwind $`7esn` Is Null Is Null As _usn3 With *,{_usn4} =~$_usn4 As _usn4 Order By {12} =~#usn8 Asc,[00[$`7esn`],{usn1} In 2.12 In 1000,01 Ends With 999 Ends With {`7esn`}] Starts With Reduce(`6esn`=00[{`8esn`}..][{`8esn`}..],`5esn` In $999[0.0..]|`5esn`[{`4esn`}..`2esn`]) Asc,$1000 Is Null Is Null Descending Skip False[$usn1.._usn4][_usn4..{`3esn`}];"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Create Unique Allshortestpaths((@usn5 {`3esn`:.e1[..usn2][..`8esn`]})<-[usn2:`7esn`]->(:usn1{_usn3:{#usn7}[`2esn`..]})-[?:usn2|``$#usn7]-(#usn8 :``:#usn8{`7esn`:9e1[$usn2],_usn4:$_usn4 Contains Null Contains #usn8})),({`4esn`:`7esn` Is Null}) Return Distinct {#usn8}[$@usn5..usn1][$1000..0xabc],{_usn4}[{`5esn`}..{1000}][9e1..{1000}] Delete Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},Shortestpath(((:`8esn`:`7esn`$#usn7)-[`5esn`:`8esn`]->(#usn8 {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]}))) In [_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..]|1.0 Is Null Is Null] In Case When Count ( * ) Contains 07 Then 123.654[$`1esn`] End,$123456789 Is Null Is Null Union All Merge Shortestpath(((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null}))) On Match Set None(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $12[True..][{0}..]).usn1! ={123456789} Is Not Null,`5esn`+=Reduce(``={999},#usn8 In {`5esn`}[.e1..``]|$_usn3['s_str'][07])[..{`4esn`:0.0[$0][{@usn5}]}][..Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..])],{`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000}.usn1 ={`3esn`}[..07][..{`5esn`}] On Match Set _usn3+=2.12 =~False =~`5esn` Delete {`2esn`:1000[..$0][..True],@usn5:{12} Ends With 0Xa Ends With $`6esn`}[Single(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn1} Ends With $0)..][Extract(`2esn` In `1esn` =~\"d_str\" Where $`4esn` In Null In 0xabc|{`5esn`} Starts With $`5esn` Starts With .e1)..],usn2 Is Null Unwind 07[..True][..9e12] As _usn3 Union All Create Unique (:`7esn`:_usn3{usn1:$usn1 In {999} In $#usn7});"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Load Csv From {1000} =~0 =~123.654 As @usn6 Fieldterminator 's_str' Remove Case When Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6} Then {`2esn`} Is Not Null Is Not Null When `3esn`[{usn1}] Then `5esn` Starts With $`2esn` Starts With $1000 End._usn3!,Allshortestpaths((((`3esn` :`8esn`:`7esn`)-[`7esn`:#usn8|`1esn` *0xabc..]->(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})-[`2esn`?:`7esn` *..07$0]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})))).``! Foreach(_usn3 In Single(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]) Is Not Null Is Not Null| Create Unique @usn6=(((@usn6 :`3esn`:@usn5)<-[`4esn`:`8esn` *00]-(`2esn` :`8esn`:`7esn`)<-[? *..999]->(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null}))),((:`1esn`{`5esn`:1.0 In Count(*)})) Create Unique _usn3=(({@usn6:01234567 Ends With .e12 Ends With $#usn7,`4esn`:12.e12[`3esn`]})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(#usn7 :`7esn`:_usn3))) Union All Load Csv With Headers From 123456789[{123456789}..'s_str'] As `5esn` Merge #usn8=Allshortestpaths((({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})-[? *..0x0{_usn3:01 Ends With 999 Ends With {`7esn`}}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[?{usn1:0[`7esn`..]}]->({usn1:{`7esn`}[`6esn`][#usn7],usn1:{999} Starts With $999}))) Optional Match `2esn`=((`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]})-[{`7esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4]}]-(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)),`6esn`=Shortestpath(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null}))) Using Index `3esn`:usn1(@usn6) Using Scan `4esn`:`5esn` Where {`5esn`}[.e1..``] Union All Create @usn6=Shortestpath((usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})),(((`3esn` :`8esn`:`7esn`)-[`7esn`:#usn8|`1esn` *0xabc..]->(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})-[`2esn`?:`7esn` *..07$0]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]}))) Load Csv With Headers From (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8) Contains All(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) As #usn8 Fieldterminator 's_str'"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Drop Constraint On(`5esn`:_usn3)Assert Exists(`5esn`(Distinct Count ( * )[0.12...e1]).usn1);"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Create Constraint On()-[``:`2esn`]-()Assert Exists(All(`4esn` In $`3esn` Is Not Null Where {`6esn`} Contains \"d_str\").`3esn`);"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Unwind $999 Is Not Null As #usn7 Union All Foreach(`7esn` In 1.0[0X0123456789ABCDEF]| Load Csv From $`3esn` In 123.654 In #usn8 As `` Fieldterminator \"d_str\" Create (({@usn5:{usn2}[.e0..$999]})),Allshortestpaths(((:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]})))) Union All Create Unique `2esn`=((`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]})-[{`7esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4]}]-(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)),`6esn`=Shortestpath(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null}))) With *,Count ( * )[$_usn4..$`4esn`] As _usn4,@usn6[#usn7][#usn8] As `4esn`"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Create Unique #usn7=Shortestpath(((#usn8 :_usn3:_usn3{`4esn`:{_usn3}[..$12][..0.12],`7esn`:1.0[0X7][{`5esn`}]})-[_usn3?:#usn8|`1esn`]-({``:$`8esn` =~{1000}}))),(((_usn4 :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})<-[``?:_usn4|:usn2{`1esn`:False Is Null Is Null}]->(usn2 :`6esn`{#usn7:Count ( * ) Contains 07})));"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Merge Shortestpath((:usn1{usn2:7[..999][..{#usn8}]})-[?:#usn7 *01234567..0Xa]->({``:$`8esn` =~{1000}})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})) On Create Set `8esn`(00 Starts With 0xabc,{12} Is Not Null).`6esn`! =$12 Ends With 07 Ends With $123456789,`3esn` ='s_str' Ends With 7 Ends With {_usn4},``(0X7 =~9e1,0.0 =~999).`3esn`! =$1000[Null][`4esn`] With Distinct $123456789 Ends With {`1esn`} Ends With $`4esn`,$`8esn`[..{`2esn`}],Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0)[..Case When 01234567[usn2..$12][{`7esn`}..$usn2] Then usn1[`5esn`..$7] Else $1000[0Xa][{#usn7}] End][..Reduce(@usn6=07 Contains 0X7 Contains $`8esn`,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|{#usn7}[9e1..][{123456789}..])] Order By `5esn`[_usn4..] Ascending Limit [`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]][..None(#usn8 In 7[..999][..{#usn8}] Where $`7esn`['s_str'])][..`1esn`(Distinct 12e12[$`3esn`],0.0 =~999)] Where $_usn4[0e0..][False..] Remove `6esn`({1000}[{_usn3}..],0.12 =~$0 =~$0).`` Union All Return Distinct .e12[..`7esn`][..0Xa],123.654 Is Not Null Is Not Null As `8esn`,All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By {usn2} Descending,1.0 =~7 =~{usn2} Desc Skip 0.0[$0][{@usn5}] Create Unique ((`1esn` {`5esn`})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})),Shortestpath((((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`8esn`?:`2esn`*..{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]}))));"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Load Csv From {_usn3}[..\"d_str\"] As `3esn` Remove `6esn`(Distinct `5esn`[7][{usn2}],.e12[@usn5..$12]).usn1!,{`1esn`:True[..$`6esn`]}.`2esn`,Reduce(@usn6=0.e0[#usn8],usn1 In @usn5 =~{`5esn`} =~`5esn`|$`5esn` In $`6esn`).`5esn`? Union Unwind Allshortestpaths(((`8esn` ))) Ends With (`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]}) As _usn3 Foreach(`4esn` In {_usn3}[12.e12]| Optional Match (#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})<-[`6esn`?{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}),usn2=(@usn6 :``:#usn8)<-[?:`8esn`{`3esn`:1.0 In Count(*)}]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}) Using Index _usn4:`5esn`(`6esn`) Using Scan `6esn`:`2esn`) Union Optional Match Shortestpath((_usn3 :#usn7)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})<-[`5esn`? *..12{`8esn`:{`7esn`}[`6esn`][#usn7],`1esn`:0x0 Ends With $12}]->({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000})) Using Index _usn3:`6esn`(#usn7) Using Index usn2:`7esn`(`2esn`) Where Count(*)[..usn2][..usn2] Remove Reduce(`4esn`=0X7[$999][_usn4],`2esn` In `1esn` =~\"d_str\"|0Xa[$123456789..123.654][.e12..0.e0]).usn2,{@usn6}.@usn6 With *,123.654 Is Not Null,Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..] As `7esn` Order By Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End[[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]]..Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})))] Ascending,All(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Contains (`5esn` :_usn4{`5esn`:07[..True][..9e12]})-[`8esn`?:`2esn`{@usn6:{12}[..0X7]}]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]})<-[_usn4{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00}) Contains [0.12[$`3esn`..$_usn3][12.0..usn1]] Ascending Skip {_usn4} In {12} In $0 Where {7}[..12e12][..Count ( * )];"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Remove [123456789 Ends With $`6esn` Ends With $#usn7]._usn3!,{usn1:`1esn` Contains {usn2} Contains $#usn8}._usn3?,{_usn4:True[07..$usn2][$7..{usn1}]}.``?"), - octest_legacy:ct_string("Cypher Drop Constraint On(`1esn`:`5esn`)Assert Exists(({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]-(:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654}).@usn5?)"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Using Periodic Commit Load Csv With Headers From `5esn` Is Null As usn2 Create Unique ({_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Drop Constraint On(`6esn`:_usn4)Assert [#usn7 In {``} Is Not Null Where usn1[9e12..][$7..]].`1esn` Is Unique"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Drop Constraint On(@usn5:usn2)Assert Exists({_usn4:`5esn` Is Null}.`2esn`?);"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Start `8esn`=Node:@usn6({_usn4}) Where `3esn`[`3esn`..][#usn8..] Start #usn7=Node:`6esn`(`3esn`=\"d_str\") ,`7esn`=Node:``(@usn6={usn1})Where 9e12 Is Not Null Is Not Null Create Unique ((:usn2{#usn8:$`5esn` In $`6esn`})<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})),_usn3=(({@usn6:01234567 Ends With .e12 Ends With $#usn7,`4esn`:12.e12[`3esn`]})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(#usn7 :`7esn`:_usn3)) Union Foreach(_usn4 In {@usn6} Ends With 's_str' Ends With 12.0| With Distinct @usn6 Contains $1000 Contains {`7esn`} Unwind 999 Ends With Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 1.0 In Count(*)) As `5esn`) Foreach(@usn6 In $usn1 Ends With $`` Ends With $12| Create `8esn`=Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))),#usn8=(:`2esn`:usn1)-[`1esn`:@usn6|`6esn`*..{`7esn`:7[{0}..{_usn4}]}]->(`8esn` {_usn4:`4esn`[1.0],`5esn`:0e0 Ends With 1.e1 Ends With $`4esn`})-[:@usn5{@usn5:{#usn7}[9e1..][{123456789}..],``:#usn7 Is Not Null Is Not Null}]->(`4esn` :`6esn`{_usn3:$123456789 Ends With `3esn` Ends With 123456789,`6esn`:0e0 Starts With 2.12 Starts With $12})) Foreach(`6esn` In [#usn8 In {`5esn`}[.e1..``] Where {`1esn`}[12.0..`2esn`][@usn6..{usn1}]] Is Not Null| With Distinct True[..$`6esn`],{@usn6} Ends With 's_str' Ends With 12.0 As `1esn` Order By Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $`3esn` =~{#usn8}|12.0 Ends With True)[..usn2(Distinct)] Ascending Skip Case When {``} Starts With $`2esn` Starts With `1esn` Then $`5esn` Starts With $0 Starts With {0} End[None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e1 Is Not Null)..[`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1]] Load Csv With Headers From `5esn`({12} Ends With 1.0 Ends With .e0) Contains `3esn`(`5esn`[{`4esn`}..`2esn`],9e1[2.12..{#usn8}]) Contains (@usn5 :#usn7)<-[``?:`3esn`|:#usn8{`1esn`:.e0[..$`8esn`]}]-(`5esn` {`4esn`:01 Is Null})<-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(_usn4 ) As `6esn` Fieldterminator 's_str') Union Delete 7[..999][..{#usn8}],`1esn`[{usn1}..``][7..$#usn8] Unwind Case When {_usn4} Starts With 0.e0 Starts With 0x0 Then 12 Ends With 0x0 Ends With 0.e0 Else $1000 Is Null Is Null End Starts With `7esn`(Distinct $#usn7[..{`5esn`}][..9e12]) Starts With {`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`} As usn1;"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Return Distinct (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8) Contains All(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) As @usn5,`8esn`[$`8esn`..{`4esn`}],None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `5esn` Starts With 010 Starts With 0.0) Ends With Reduce(usn2=False =~1e1 =~0.e0,`` In `` Is Not Null Is Not Null|#usn8[`3esn`..][{#usn7}..]) Order By @usn6 Is Null Is Null Descending,{_usn3} Is Null Is Null Desc,Allshortestpaths((({`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})<-[?*..]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}))) Ends With Reduce(_usn3='s_str'[00][{`5esn`}],`4esn` In $`3esn` Is Not Null|Count ( * ) Contains `8esn` Contains .e1) Descending;"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Delete `4esn`[`5esn`..12][@usn6..False],07 Contains 0X7 Contains $`8esn`,$`5esn`[2.12..] Start `2esn`=Node:`7esn`(`3esn`=\"d_str\") ,_usn3=Node:@usn6({#usn7}) Foreach(`2esn` In {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}])| Start `1esn`=Node:`2esn`(#usn8={123456789}) );"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Create usn2=(((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})));"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Unwind $#usn8[$`2esn`..][{`2esn`}..] As @usn5 Unwind 0Xa[7..2.12][`3esn`.._usn3] As _usn3"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Unwind 0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn` As `4esn` Delete 1e1 In \"d_str\" In `7esn` Foreach(`5esn` In $@usn5 Starts With {@usn5} Starts With 9e0| Remove _usn3(0.12 =~$0 =~$0).`3esn`) Union With .e0 Ends With 0.12 As `6esn` Skip Case 's_str' In 00 When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null When $@usn5 Starts With {0} Starts With 12 Then {usn2} Else {#usn7}[`2esn`..] End Limit 1.0 Starts With 12e12 Starts With {`5esn`} Where 123.654[True..$#usn8][0.12..Count(*)] Unwind $usn1[{`5esn`}][$`6esn`] As @usn6;"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Start `6esn`=Node:``('s_str') ,usn2=Relationship( {`5esn`}) Delete $@usn5 Starts With #usn7"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Using Periodic Commit Load Csv With Headers From Shortestpath(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})))[#usn7(Distinct $`5esn`[`3esn`..])..{``:0Xa Starts With {`6esn`} Starts With $usn1}] As #usn8 "), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Foreach(_usn3 In 0e0 In @usn5| Return .e1 =~{@usn6} =~Null Order By $#usn7[..{`5esn`}][..9e12] Desc,Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`)[None(#usn8 In 7[..999][..{#usn8}] Where 0Xa[2.12])..][[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789]]..] Desc,0x0 Ends With $12 Asc Limit _usn4(Distinct _usn3[_usn3..][12.e12..])[[0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},0Xa Starts With {`6esn`} Starts With $usn1]]) Load Csv With Headers From 9e12[`6esn`..12.0] As @usn6 Union All Merge `3esn`=Shortestpath((_usn3 {@usn5:`5esn`[{`4esn`}..`2esn`],_usn3:07 =~01})) Union All Foreach(`8esn` In True Contains {0} Contains 7| Start ``=Relationship:usn2('s_str') ,`1esn`=Rel:`4esn`(`4esn`='s_str') Delete Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0) Is Not Null Is Not Null)"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Return Distinct [1.0 =~'s_str' =~{`2esn`}] Contains [9e1[2.12],{usn2}[$`3esn`..][{#usn7}..],Null Ends With {`5esn`} Ends With 0.e0] Contains `5esn` As `8esn`,[`` Ends With 0Xa Ends With `2esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},{`4esn`} =~{7} =~{`7esn`}] As @usn6 Skip #usn8 Starts With $_usn4 Starts With $7 Remove Reduce(`5esn`=$`5esn` In $`` In 123.654,_usn3 In {`3esn`}[`2esn`]|$@usn5 Starts With 01 Starts With .e0).``,(`` {`1esn`:{@usn6}[{999}..][00..]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->({12}).`5esn`! Detach Delete .e0[12.e12..],Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0) Is Not Null Is Not Null,0.12[`2esn`..{`6esn`}]"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Drop Constraint On(`1esn`:`2esn`)Assert Filter(_usn3 In {`3esn`}[`2esn`] Where 0e0[07]).@usn6 Is Unique"), - octest_legacy:ct_string("Explain Foreach(#usn7 In Allshortestpaths(((`7esn` {`2esn`:$`6esn`[123456789..12][True..{`3esn`}],#usn7:$_usn3[Count(*)]})-[#usn8? *..07$_usn4]->(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}))) =~(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null}) =~{#usn8:{`3esn`}[@usn6..0Xa][{12}..0Xa],@usn5:False Is Null Is Null}| Create ``=((({_usn4:00 Starts With 0xabc})<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]->(`5esn` :`4esn`{@usn6:{`6esn`} =~$999}))),`2esn`=(:`4esn`{`3esn`:$`7esn` =~{`8esn`} =~$usn1})) Create `2esn`=(:`4esn`{_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[#usn8:@usn5 *..01]-(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null}),_usn4=Shortestpath(((:`1esn`{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789}))) Union Optional Match (:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`8esn` :`8esn`:`7esn`) Using Join On `1esn`,_usn3,_usn3 Return *,$@usn5 Contains 0xabc Contains {#usn7} Limit Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $_usn3 In {1000} In 0.12)[{@usn6}..] Load Csv With Headers From #usn7[usn1][$`5esn`] As `4esn` Union Merge (((:usn1{usn1:`5esn`[_usn4..]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[:usn1|@usn6 *7..12]-({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]}))) Start `7esn`=Node:`4esn`({usn1}) ,`1esn`=Relationship:`2esn`({1000})Where $`6esn`[010..] Match (`2esn` :`8esn`:`7esn`)-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}) Using Scan ``:_usn4 Using Join On ``,_usn3,`1esn`;"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Merge @usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})) On Match Set #usn8+={#usn8}[1.e1...e12] Remove {`3esn`:Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},@usn6:$`8esn` Contains 123456789 Contains $usn2}._usn3,`5esn`(Distinct {usn2}[$`3esn`..][{#usn7}..]).@usn6?,_usn4:`5esn`"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Drop Constraint On(#usn7:#usn7)Assert Exists([`4esn` In $`3esn` Is Not Null Where @usn5 =~{`5esn`} =~`5esn`|#usn8].@usn5?);"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Drop Constraint On(`7esn`:`7esn`)Assert Exists(Case 123.654[...e0] When $#usn7 Contains 0x0 Contains 1000 Then usn2[$_usn4..][True..] When 0.12[$`3esn`..$_usn3][12.0..usn1] Then #usn8 Else 07 =~01 End.@usn5);"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Drop Constraint On(`2esn`:`4esn`)Assert None(`8esn` In 01[2.12..`8esn`] Where {999} Starts With {0}).`4esn`! Is Unique;"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Create `6esn`=((`8esn` )<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})),(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}) Union All Remove {`5esn`:{12}[..0X7],#usn8:$1000 In $1000 In $`3esn`}.#usn7?,Case 0Xa[2.12] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] Else $1000[0Xa][{#usn7}] End.`1esn`,[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0.0 In $usn1|{#usn8}[{7}]].#usn8? Load Csv From usn1 Is Null As @usn5 Fieldterminator 's_str' Merge @usn6=(_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5}) On Match Set `6esn`+=Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``|usn2[9e12]) Ends With [{`7esn`}[..{`4esn`}]] Ends With Filter(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`4esn`} Starts With $usn2 Starts With $1000),`3esn`+=123456789[0xabc..'s_str'][``..`1esn`],_usn3 ={usn1}[0X0123456789ABCDEF] On Create Set [_usn3[_usn3..][12.e12..]].`8esn`! =Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where .e0 Starts With 0 Starts With 0.e0) Is Null Is Null,{`3esn`:$`4esn`[9e12..123.654]}.#usn8 =Filter(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8])[{`4esn`:Null In $7 In .e1,_usn3:usn2 Is Null}..Case _usn3[$`8esn`] When {0} In $_usn3 Then 01[{`2esn`}..{@usn6}][$`2esn`..0.0] Else $7 Is Not Null Is Not Null End] Union All Load Csv From 0.0 In $usn1 As `2esn` Remove Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`]).usn1!,`7esn`(Distinct $`6esn`[123456789..12][True..{`3esn`}],7 =~{`8esn`} =~$`6esn`).`1esn`?,Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789)._usn3"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Drop Constraint On(`2esn`:@usn5)Assert Exists(Shortestpath((((:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`4esn` {@usn6:{12}[..0X7]})<-[:`6esn`|`5esn` *..010]-(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})))).`6esn`)"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Create Shortestpath((`3esn` :`8esn`:`7esn`)-[`` *..12]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[`3esn`? *123456789..]-(`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})),Shortestpath((`5esn` :`4esn`)) Return Distinct {``} Is Not Null As #usn7,{#usn7}[`2esn`..],Count ( * ) Contains {`1esn`} Contains 07 Order By `8esn` Is Not Null Is Not Null Desc Limit $123456789[_usn3][{#usn7}] With Distinct *,2.12 Ends With $_usn3 Ends With `3esn` As `7esn`,0 In `2esn` In 010 Order By Count ( * ) Starts With 7 Starts With $123456789 Descending,01234567 Ends With .e12 Ends With $#usn7 Asc,$`6esn` =~1.e1 =~12 Asc Skip [{`3esn`} Is Not Null Is Not Null] Limit Single(#usn8 In {`5esn`}[.e1..``] Where $`` =~12.0 =~$`7esn`) Contains Case When {`1esn`}[12.0..`2esn`][@usn6..{usn1}] Then 's_str'[00][{`5esn`}] Else $#usn7 Is Null End Contains None(`5esn` In $999[0.0..] Where .e1 =~$`8esn`) Where $`8esn` Contains 123456789 Contains $usn2"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Load Csv With Headers From 01[2.12..`8esn`] As @usn5 ;"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Create Constraint On(`5esn`:#usn8)Assert Exists(All(`5esn` In \"d_str\" Is Null Is Null Where 00[$`7esn`]).#usn7!);"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Detach Delete $`3esn` In $`6esn` In $``,\"d_str\" =~{usn1} =~{`7esn`} Remove Single(#usn8 In 7[..999][..{#usn8}] Where $_usn4[1.e1]['s_str']).``,Case When $#usn8 Ends With $`2esn` Ends With $@usn6 Then $1000[`2esn`..`5esn`][1e1..1.e1] Else {`4esn`} =~{7} =~{`7esn`} End._usn3? With *,$#usn7 Starts With {7} Starts With 1.0,Extract(`8esn` In 01[2.12..`8esn`] Where {usn2}|$0[12.e12..]) =~Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null|7 Ends With $`4esn`) =~(usn1 {`2esn`})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->(:_usn3:_usn3{`4esn`:12e12 Ends With {usn1}})<-[`7esn`?:`8esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}) As usn2 Order By {#usn8} Starts With 00 Starts With {`6esn`} Descending,$123456789 Ends With $999 Ends With {999} Desc Skip $#usn8[..{`2esn`}][..1.0] Union All Detach Delete {`4esn`}[..'s_str'][..$12],(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(`5esn` :@usn5{`8esn`:{usn2} =~12})[All(`` In `` Is Not Null Is Not Null Where `3esn`[{0}][usn1])],`2esn`(Distinct $``,7 Starts With {@usn6} Starts With $``) Contains {@usn6:_usn3[$`8esn`],usn1:$@usn5 Is Not Null} Contains {@usn5:`8esn`[{123456789}..]} Start usn2=Node:`6esn`(usn2={`8esn`}) ,@usn5=Node:`6esn`(\"d_str\")Where {0}[@usn6..$1000]"), - octest_legacy:ct_string("Cypher Create Unique _usn3=((@usn5 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[`2esn`?:`7esn` *0X7..]-(@usn5 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})) Remove `8esn`:`5esn`,_usn4:#usn7,(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})-[`7esn`:#usn8|`1esn` *..0x0$`3esn`]-(:`3esn`:@usn5)-[`7esn` *..0x0]-(`2esn` :_usn4).`2esn`? Optional Match `4esn`=Allshortestpaths((((_usn3 )-[?{@usn6:0X7[`7esn`][123.654]}]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})))) Using Join On @usn5,_usn3,_usn3 Using Join On `2esn` Where $_usn3['s_str'][07] Union All Unwind $`3esn`[0.12..`8esn`][$#usn7..`5esn`] As `6esn`"), - octest_legacy:ct_string("Cypher 12.999 Foreach(`3esn` In $`7esn` Is Null Is Null| Create Unique usn2=Allshortestpaths((:`2esn`:usn1{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]})),((({@usn5:{usn2}[.e0..$999]})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(`6esn` :_usn3:_usn3{`4esn`:0Xa Starts With {`6esn`} Starts With $usn1})-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1}))) Detach Delete Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 2.12 Ends With $_usn3 Ends With `3esn`|{123456789} Contains $#usn8)[{`7esn`:$`6esn`[010..]}..],01 Ends With 999 Ends With {`7esn`},All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)])"), - octest_legacy:ct_string("Cypher With Distinct {123456789} Contains $#usn8 As `3esn`,{7}[..12e12][..Count ( * )],$0[$`1esn`..07] Order By 0Xa[$123456789..123.654][.e12..0.e0] Asc,1000 In `7esn` In 9e12 Asc,Null[$#usn7] Asc Where 0X7 =~9e1 Union Optional Match `3esn`=({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True}),Shortestpath((:`8esn`:`7esn`)<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})) Using Index ``:_usn4(_usn4) Where {_usn3}[..\"d_str\"] Merge `6esn`=(@usn5 {`7esn`:$`6esn`[010..]})-[?:`8esn`{`3esn`:1.0 In Count(*)}]-(`4esn` :#usn7{``:$#usn7[@usn5..{1000}][1.e1..7]})-[`5esn`?:@usn5{`4esn`:0Xa =~Null =~$``}]->(:#usn7{usn2:{usn1} Ends With $0,#usn8:`5esn` Starts With $`2esn` Starts With $1000}) On Create Set `4esn`+=(`1esn` :#usn8:#usn8)-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})[..(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})][..`5esn`({12} Ends With 1.0 Ends With .e0)],Any(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`])._usn4! ={@usn6}[{999}..][00..] On Match Set _usn3+={_usn3}[12.e12],`3esn`+=@usn5 =~{`5esn`} =~`5esn`,#usn8 =[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*)) Union Return Distinct 010[Count(*)..12][$_usn3..{`8esn`}],Filter(_usn3 In {`3esn`}[`2esn`] Where False =~$7 =~2.12)[Case When .e12 Is Not Null Is Not Null Then `1esn` In .e0 In {`3esn`} When 7 Starts With {@usn6} Starts With $`` Then 0X0123456789ABCDEF =~1e1 =~{`4esn`} Else {`4esn`}[$123456789..][$#usn7..] End] As `5esn`,9e1[2.12] As _usn3 Load Csv From $123456789 Starts With {_usn4} Starts With $1000 As #usn8 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Create Constraint On(usn2:`6esn`)Assert Allshortestpaths((((`1esn` {@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00})-[`6esn`?:`3esn`|:#usn8]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})))).#usn7! Is Unique"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Create @usn5=(((`1esn` :`5esn`{`5esn`:{``} Is Null})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(_usn4 :usn1)));"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Drop Constraint On()-[`5esn`:``]->()Assert Exists(`4esn`(Distinct $_usn3['s_str'][07],{12}[..0X7]).`5esn`?)"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 With Distinct *,{`2esn`} Ends With {`7esn`},Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 1.0 =~7 =~{usn2}) Is Not Null Is Not Null As `5esn` Skip 12 In `3esn` In 1e1 Where $`7esn` =~{`8esn`} =~$usn1 Foreach(_usn3 In None(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Is Null Is Null| Unwind Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]] As `8esn`) Start `6esn`=Node:usn2({`4esn`}) ,``=Relationship:_usn3(`8esn`={123456789})Where $`6esn` Is Null"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Create Unique `5esn`=(#usn7 :`8esn`:`7esn`)<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[_usn4?:`1esn` *7..12]->(:#usn8:#usn8{_usn3:$_usn3['s_str'][07],`7esn`:$1000 In $1000 In $`3esn`}) With Distinct $`8esn` Contains 123456789 Contains $usn2,{_usn4} In {12} In $0,Extract(#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12) Ends With [False =~$7 =~2.12,$`4esn` In Null In 0xabc,{`7esn`} Starts With $123456789 Starts With $@usn6] Skip _usn3[..`8esn`][..2.12] Limit 0X7[0e0..`7esn`][1000..0e0] Foreach(`2esn` In [@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null] Is Null Is Null| Create Allshortestpaths(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))) With Distinct 0.0 Is Not Null Is Not Null As `8esn` Skip $`3esn` Is Not Null Is Not Null);"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Drop Constraint On()-[`5esn`:`4esn`]-()Assert Exists(Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $@usn6 Contains 07).`6esn`!);"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Remove Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0X0123456789ABCDEF =~1e1 =~{`4esn`}|1.0 Contains $_usn4).`5esn`?,Reduce(`5esn`=12[1.e1..{_usn3}][1.e1..1.0],#usn7 In `2esn`[..$#usn8][..Count(*)]|12.e12[7..$`6esn`]).`5esn`!,`4esn`:`6esn` Detach Delete [#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01|{0} Ends With $_usn3 Ends With $`7esn`] Contains Case {0}[12.0..0Xa][$`5esn`..{_usn3}] When .e1 Ends With 1e1 Ends With @usn5 Then 01[{`2esn`}..{@usn6}][$`2esn`..0.0] Else 123.654[...e0] End,9e0[{0}..{`3esn`}][\"d_str\"..0Xa],``[12.0..0e0][{`5esn`}..`7esn`] Union Detach Delete 1.0[00..] Foreach(@usn5 In 0.12 In _usn3 In {0}| Match `2esn`=Allshortestpaths((({`3esn`:.e1[..usn2][..`8esn`]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`1esn`{_usn4:{999}}))),#usn7=Shortestpath((((#usn7 :`8esn`:`7esn`{`5esn`:1.0 In Count(*)})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000})))) Where $@usn6 Contains 07) Union Match Allshortestpaths((`1esn` {_usn4:1.e1[$`1esn`..@usn6][$0..$_usn3],#usn8:$@usn5[..12e12][..$123456789]})<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})),usn2=({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->(`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[:`3esn`|:#usn8 *1000..00{usn1:0[`7esn`..]}]-(usn1 :`3esn`:@usn5) Where `4esn`[..Count ( * )][..{#usn7}] Start `7esn`=Rel:_usn4(``={#usn7}) Where 00 Starts With 0xabc Start #usn7=Node:@usn6({_usn4}) "), - octest_legacy:ct_string("Cypher @usn6=`5esn` Delete 2.12 Ends With $_usn3 Ends With `3esn`,usn1 Ends With $@usn6 Ends With `3esn`;"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Optional Match (((`5esn` :`6esn`)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}))),#usn7=(:#usn7)<-[`5esn`{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(_usn3 {#usn8:_usn4 Is Null Is Null})<-[#usn7{`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]}]-({#usn8:True[..$`6esn`]}) Using Join On ``,`4esn`,@usn6 Return *,Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})] As `5esn`,False Ends With `3esn` Order By 00[{`8esn`}..][{`8esn`}..] Descending Skip 123456789[_usn4..][{999}..] Limit 0x0 Is Null Delete `8esn` Ends With $`2esn`,[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where $7[0.12][usn1]] Ends With {#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12} Ends With Case `1esn`[{usn1}..``][7..$#usn8] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] End,$123456789 =~{`6esn`} =~\"d_str\" Union Merge `5esn`=(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]->(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[`1esn`?:`8esn` *123456789..]->(#usn7 :`6esn`$1000) On Create Set Extract(`3esn` In {7} Is Null Where $#usn7[@usn5..{1000}][1.e1..7]|$7 Is Not Null Is Not Null).`4esn`! =Case When {``} Starts With $`2esn` Starts With `1esn` Then $`5esn` Starts With $0 Starts With {0} End[None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e1 Is Not Null)..[`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1]],[12[1.e1..{_usn3}][1.e1..1.0]].`8esn`? ={`4esn`:{`4esn`} =~{7} =~{`7esn`},`8esn`:$#usn7[#usn7..]} Is Null Is Null,usn1 =$_usn4 Contains Null Contains #usn8 Load Csv With Headers From 0 In `2esn` In 010 As `1esn` Fieldterminator 's_str' Match ``=(`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}),(#usn8 :@usn6:#usn8) Using Index `7esn`:usn2(`6esn`)"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Create Constraint On(`4esn`:_usn4)Assert [`8esn` In 01[2.12..`8esn`] Where Count ( * ) Ends With $@usn5|_usn3[_usn3..][12.e12..]]._usn3 Is Unique"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` With Distinct *,{``}[$`8esn`..] As `6esn` Order By None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {@usn6}[{999}..][00..]) Ends With Shortestpath((`6esn` {_usn4:0Xa =~Null =~$``})<-[``? *0X7..]->(`` :`1esn`)) Ends With Reduce(_usn3={7}[..1.0][..9e0],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|`1esn` Contains {usn2} Contains $#usn8) Asc,12.e12[7..$`6esn`] Desc,$usn1[.._usn4][..False] Asc Limit $#usn8[Count ( * )] Create Shortestpath(((:#usn8:#usn8{_usn4})<-[usn1?:`7esn`]-(:usn1{usn1:{`6esn`}}))),`7esn`=((:`3esn`:@usn5$7)-[ *0xabc..{usn2:{12} Is Not Null,`6esn`:``[$`2esn`]}]-(`4esn` {`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})<-[?{#usn8:9e12[`1esn`..][$`1esn`..]}]-(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})) Start ``=Rel:`7esn`(usn2={`6esn`}) ,`2esn`=Node:@usn5({`1esn`}) Union Start `3esn`=Node:``(_usn3='s_str') ,`7esn`=Node:_usn4(#usn7=\"d_str\") Foreach(`7esn` In {@usn6} Ends With 's_str' Ends With 12.0| With Distinct `7esn` Is Null As `7esn`,count($123456789 Is Null Is Null,{`7esn`} Starts With $123456789 Starts With $@usn6)[`8esn`(Distinct `8esn` =~0xabc =~010)][Case When `2esn`[..$#usn8][..Count(*)] Then False =~1e1 =~0.e0 When {`4esn`} Starts With $usn2 Starts With $1000 Then {``} Is Not Null End] As @usn5,1000 In `7esn` In 9e12 As `6esn` Limit $`` Is Not Null Match `2esn`=Allshortestpaths((({`3esn`:.e1[..usn2][..`8esn`]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`1esn`{_usn4:{999}}))),#usn7=Shortestpath((((#usn7 :`8esn`:`7esn`{`5esn`:1.0 In Count(*)})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000})))) Using Scan ``:_usn4 Using Scan ``:`2esn`) Create ``=Shortestpath(({`7esn`:{999}})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})),``=(((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})));"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Drop Constraint On()<-[`8esn`:`4esn`]-()Assert Exists(Allshortestpaths((:`4esn`{`5esn`})<-[@usn6?:`5esn`]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})).`8esn`)"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Merge `4esn`=((usn2 )-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-(`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})) On Create Set [{#usn8}[010]].`8esn`! =`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) In [#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]|@usn6 Contains $1000 Contains {`7esn`}] In Filter(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]),`2esn`+=9e1[1000][{123456789}] On Create Set Shortestpath(((`4esn` {`6esn`:#usn8[..{#usn7}]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]}))).`4esn`? ={#usn8} Starts With 00 Starts With {`6esn`} Create (((#usn7 :`8esn`:`7esn`{`5esn`:1.0 In Count(*)})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000}))) Create @usn5=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}) Union Start `2esn`=Node:usn1(`6esn`={7}) "), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Create Constraint On(`2esn`:usn2)Assert Case When @usn6 Ends With {_usn3} Then False Contains {`6esn`} When `3esn`[`3esn`..][#usn8..] Then {`7esn`}[`6esn`][#usn7] End.@usn6? Is Unique;"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Match (((usn2 :`4esn`)-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[``? *..01{`1esn`:$@usn6 Contains 07}]-(:`3esn`:@usn5{#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}))),Shortestpath((`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})) Using Scan `3esn`:_usn4 Using Index `3esn`:@usn5(`8esn`) Where Count(*) Ends With 12.0 Ends With 12 Unwind Case When {_usn4} Starts With 0.e0 Starts With 0x0 Then 12 Ends With 0x0 Ends With 0.e0 Else $1000 Is Null Is Null End Starts With `7esn`(Distinct $#usn7[..{`5esn`}][..9e12]) Starts With {`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`} As usn1"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Create Constraint On(`1esn`:@usn6)Assert Reduce(`4esn`={7}[$``][{@usn6}],usn1 In @usn5 =~{`5esn`} =~`5esn`|0.e0[123.654][01]).`4esn` Is Unique"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Detach Delete [12.e12[$_usn3..]][..All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where True In 0e0)][..[.e12[@usn5..#usn7][010..{usn1}],$@usn5 Is Not Null]],Count(*) In $12,{`8esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`6esn`:2.12 =~Count(*)} =~Shortestpath(((:`4esn`{`5esn`})))"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Drop Constraint On(`7esn`:`7esn`)Assert Exists((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[`5esn`?:`5esn` *1000..00]->({`1esn`:`3esn`[{`2esn`}]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]}).usn2?)"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Create Constraint On()<-[usn2:@usn6]-()Assert Exists([#usn7 In {``} Is Not Null Where 123456789[0xabc..'s_str'][``..`1esn`]|{`1esn`}[12.0..`2esn`][@usn6..{usn1}]].`3esn`)"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Load Csv With Headers From 0Xa[2.12] As `1esn` Fieldterminator 's_str' Union With Distinct 1e1 In 123.654 In `3esn` As `8esn` Skip Reduce(`6esn`=0X7[$999][_usn4],`8esn` In 01[2.12..`8esn`]|{1000} =~0 =~123.654) Is Null Is Null Where `3esn`[{usn1}]"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Create Constraint On(@usn5:usn1)Assert Exists(Case 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3] When $123456789 =~{`6esn`} =~\"d_str\" Then {@usn5} Is Null Is Null When 9e0 Then {_usn4} Is Not Null Is Not Null Else `7esn` In {123456789} In `1esn` End.usn1!)"), - octest_legacy:ct_string("Cypher Merge ((`6esn` {`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]})<-[usn2?:`5esn`{`8esn`:{_usn4}[1000..{@usn5}],_usn3:12e12 Ends With {usn1}}]-(#usn7 :#usn8:#usn8{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[? *7..12]->({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})) On Create Set @usn5 =Extract(#usn8 In {`5esn`}[.e1..``] Where {`3esn`}[..07][..{`5esn`}]) Is Null Is Null On Create Set None(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $12[True..][{0}..]).usn1! ={123456789} Is Not Null Create Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))),`2esn`=(usn2 :`4esn`)-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(`` :_usn4);"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Return *,Allshortestpaths((:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))[[{_usn4} In {12} In $0,$`5esn`[2.12..],12[1.e1..{_usn3}][1.e1..1.0]]][[12e12 Is Not Null Is Not Null]] Order By $_usn3 In {1000} In 0.12 Desc Merge ((@usn5 :`4esn`)) On Match Set `3esn`+=.e1[..$@usn6][..`2esn`] On Create Set Shortestpath((`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[:`3esn`|:#usn8 *7..12{@usn5:_usn4 Starts With $_usn4 Starts With 12.e12}]->(`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null})).`1esn` =[$0] In [`2esn` In `1esn` =~\"d_str\" Where {0} Ends With $_usn3 Ends With $`7esn`|{999} Contains .e0 Contains 12.0] In None(`2esn` In `1esn` =~\"d_str\" Where {`7esn`}[..$@usn5][..$#usn8]) Foreach(`` In {`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]} Starts With [False] Starts With Filter(#usn8 In 7[..999][..{#usn8}] Where $_usn3[.e0..$usn2])| Load Csv With Headers From 123.654[0e0..$``][$`1esn`..$`8esn`] As _usn4 ) Union Create Unique (`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]}) Match #usn8=Shortestpath((#usn8 :@usn5)) With True[..$`6esn`],(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})[[{@usn6}[{999}..][00..],@usn5 =~{`5esn`} =~`5esn`,`7esn` Is Null]][Reduce(`7esn`=0X0123456789ABCDEF Is Null Is Null,`5esn` In $999[0.0..]|$1000[Null][`4esn`])] As @usn5 Skip Count ( * ) Is Null Limit 07 =~01 Where 0X0123456789ABCDEF[123456789];"), - octest_legacy:ct_string("Explain Optional Match _usn4=Allshortestpaths((:_usn4{usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})),({`4esn`:`7esn` Is Null}) Union Remove Allshortestpaths((:@usn5{_usn3:07 =~01}))._usn4 Foreach(`` In .e0[..0X0123456789ABCDEF][...e12]| Return *,12.0 Ends With True Skip {`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}[Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End..[`3esn` In {7} Is Null Where {123456789} Contains $#usn8|#usn7 =~Count ( * ) =~``]][`7esn`(9e1[1000][{123456789}]).._usn3(0.12 =~$0 =~$0)] Return Distinct *,0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn` As `7esn` Limit 9e12[`6esn`..12.0]) Union Load Csv With Headers From $`6esn`[010..] As `7esn` Fieldterminator \"d_str\" With 12 Ends With $usn2 As #usn8,$`3esn` In Null As @usn6 Create Unique Shortestpath(((({`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})<-[`8esn`*..{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]}]-(#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(`6esn` :_usn3:_usn3{`4esn`:0Xa Starts With {`6esn`} Starts With $usn1}))))"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Drop Constraint On()-[`3esn`:usn1]->()Assert Exists(Extract(#usn8 In {`5esn`}[.e1..``]).``?);"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Drop Constraint On()<-[`7esn`:`8esn`]-()Assert Exists(All(_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..]).@usn6?)"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Optional Match (:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})-[?:`5esn`]->(:usn2),`2esn`=Shortestpath((({usn2:7[..999][..{#usn8}]}))) Using Join On @usn6,@usn6 Union All Load Csv With Headers From [_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null|999 Is Not Null Is Not Null] Ends With [`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null|{`5esn`} Starts With $`5esn` Starts With .e1] Ends With {``:usn1 Starts With usn1 Starts With $``} As @usn5 Load Csv From .e1 In 0Xa In #usn7 As `2esn` Fieldterminator \"d_str\" Remove Any(`5esn` In \"d_str\" Is Null Is Null Where `6esn`[..$@usn6]).`7esn`,Case When _usn3[$`8esn`] Then $0[..9e1] End.usn1?,Allshortestpaths((_usn3 :@usn5)-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})).@usn6?"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Create Constraint On()-[_usn3:``]->()Assert Exists(Reduce(usn2={123456789} Is Not Null,`` In 123456789 Ends With 12.e12 Ends With $`7esn`|$0[``][{@usn6}]).@usn6!)"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Create Constraint On(_usn3:`8esn`)Assert [usn1 In @usn5 =~{`5esn`} =~`5esn` Where $`1esn`[1.0..][_usn3..]].#usn7? Is Unique;"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Create Constraint On()<-[`5esn`:``]-()Assert Exists(Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0).`4esn`)"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Create Constraint On()-[usn2:`6esn`]-()Assert Exists(Extract(`2esn` In `1esn` =~\"d_str\" Where usn2[9e12]|$usn1[{`5esn`}][$`6esn`]).`6esn`!)"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Create Constraint On(`7esn`:@usn6)Assert Shortestpath((((`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})-[usn1:_usn3|_usn3 *..999{`2esn`:'s_str'[00][{`5esn`}],@usn6:999 Is Not Null Is Not Null}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})))).`1esn`! Is Unique"), - octest_legacy:ct_string("Cypher 12.999 With Distinct .e12[..`7esn`][..0Xa],123.654 Is Not Null Is Not Null As `8esn`,All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By {usn2} Descending,1.0 =~7 =~{usn2} Desc Skip 0.0[$0][{@usn5}] Where _usn3 Contains $123456789 Contains `` Merge Shortestpath((((`1esn` :`5esn`{`5esn`:{``} Is Null})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(_usn4 :usn1)))) On Create Set `1esn`+=0.0 =~999,Case When `8esn` Ends With 999 Ends With .e12 Then 12.e12[7..$`6esn`] When 1000 In {`8esn`} In 01 Then `2esn` Starts With $_usn4 Else 0Xa Starts With {`6esn`} Starts With $usn1 End.`3esn`! =Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where `3esn`[{0}][usn1]) Starts With Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[`3esn`? *123456789..]->({_usn3:$`5esn`[`3esn`..]}))),@usn5 =`3esn` Is Null On Create Set `` =$#usn7 Contains 0x0 Contains 1000,#usn7+={``} Is Not Null,Reduce(`5esn`=01234567 Ends With .e12 Ends With $#usn7,`8esn` In 01[2.12..`8esn`]|0Xa =~Null =~$``).`6esn`! ={0} Contains 0.0 Contains $@usn5 Foreach(`7esn` In Single(#usn8 In {`5esn`}[.e1..``] Where 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4])[All(`5esn` In \"d_str\" Is Null Is Null Where {`6esn`}[..$@usn6][..`7esn`])..][Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`])..]| Load Csv From .e1 =~$usn2 =~999 As @usn5 Fieldterminator \"d_str\");"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Create Constraint On(`8esn`:_usn3)Assert {#usn8:`4esn`[``]}.usn2 Is Unique;"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Drop Constraint On()<-[usn2:#usn7]-()Assert Exists(Reduce(``={@usn5} Is Null Is Null,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|0[.e0..{`1esn`}]).usn2?)"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Create Constraint On(`8esn`:#usn8)Assert `8esn`(Distinct `8esn` =~0xabc =~010).@usn5 Is Unique;"), - octest_legacy:ct_string("Explain Drop Constraint On()-[`7esn`:`6esn`]-()Assert Exists((#usn7 :``:#usn8{`2esn`})-[`2esn`?{_usn3:$_usn4[Count ( * )..],#usn7:{`3esn`}[..07][..{`5esn`}]}]-({_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}).`1esn`?)"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Drop Constraint On(``:#usn7)Assert `4esn`(0X7[$999][_usn4],#usn8 Is Not Null Is Not Null).`5esn` Is Unique;"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Create Unique ((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})),Allshortestpaths(((`2esn` :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0}))) Merge ((@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})) On Match Set `3esn` =Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End On Match Set Case When $_usn3[Count(*)] Then 010[#usn7..True] End.`6esn` =(`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})[\"d_str\"..Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null)][Shortestpath(((:`3esn`:@usn5$7)))..usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010])],All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where $_usn4 Ends With usn1 Ends With $0).@usn5? =Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Drop Constraint On()-[`4esn`:`8esn`]->()Assert Exists(Any(`8esn` In 01[2.12..`8esn`] Where #usn7 Starts With {#usn7} Starts With `7esn`).#usn7?)"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Create Constraint On(`7esn`:_usn4)Assert All(`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}).#usn8? Is Unique;"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Drop Constraint On(``:#usn7)Assert Exists(Reduce(usn2=#usn7,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|#usn7 Is Null Is Null)._usn4)"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Drop Constraint On()-[_usn3:usn2]->()Assert Exists(_usn3(Distinct).#usn8);"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Match `2esn`=(:`1esn`{``:.e1 Is Null Is Null})<-[#usn8?:usn1|@usn6]->(`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`}),`6esn`=(((usn2 :``:#usn8)-[ *123456789..{`4esn`:0Xa[2.12],#usn7:0.e0 In $#usn7 In $_usn3}]-(@usn6 :`3esn`:@usn5)-[`7esn` *0X0123456789ABCDEF]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0}))) Using Index `6esn`:`8esn`(``) Using Index `1esn`:_usn3(_usn4) Where $#usn8 Ends With $`2esn` Ends With $@usn6 Foreach(`4esn` In 12 Ends With 0x0 Ends With 0.e0| With *,Shortestpath((((`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`2esn` *..07]-(`1esn` {#usn7:{_usn4} In {12} In $0})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})))) In ({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}) As `1esn`,`6esn`[2.12..01][{``}..False] As `1esn` Where $123456789 In 0X0123456789ABCDEF In 0.e0 Unwind 123456789 Ends With 0.12 Ends With `` As _usn3) Foreach(usn2 In {@usn6} Is Null Is Null| Remove `3esn`(False Starts With {`5esn`},0[{usn2}..][$`6esn`..]).usn2? Detach Delete Reduce(#usn7=`3esn`[{`2esn`}],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|#usn8 Is Not Null)[(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(#usn7 {_usn3:`4esn`[..Count ( * )][..{#usn7}]})..None(`8esn` In 01[2.12..`8esn`] Where {usn2})],Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))),12 Ends With 0x0 Ends With 0.e0) Union Detach Delete Case {#usn8} Is Not Null When {`4esn`} =~9e0 =~{12} Then _usn3[_usn3..][12.e12..] Else 123.654 Contains $`4esn` Contains 1.0 End[(`6esn` {`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]})<-[? *..0x0]->(`3esn` :`7esn`:_usn3)-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->(:``:#usn8{`7esn`:00 Starts With 0xabc,_usn3:{123456789} Contains $#usn8})..][Single(`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1)..],Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End Is Null Is Null Unwind 0.e0 Starts With 12.e12 Starts With {_usn4} As _usn3 Return [01[2.12..`8esn`],{7} In `2esn`,123456789 Ends With $`6esn` Ends With $#usn7] Starts With Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With `7esn`(Distinct {_usn4} Ends With `6esn`,{@usn6}[7]),{_usn4}[...e1][..$7] Skip 0x0 Ends With $12"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Unwind {`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]}[@usn5(Distinct {`5esn`} Contains $0 Contains {``},12.e12 Starts With {999} Starts With {`1esn`})] As _usn4 Load Csv With Headers From $`4esn`[..$`3esn`][..0.0] As `4esn` Detach Delete Case {usn2} When {_usn4} Starts With 0.e0 Starts With 0x0 Then 12 Ends With 0x0 Ends With 0.e0 Else 1.0 =~'s_str' =~{`2esn`} End[(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True})..All(`3esn` In {7} Is Null Where $#usn7[@usn5..{1000}][1.e1..7])][{usn2:$`5esn`[..$`5esn`][..$12]}..Any(`8esn` In 01[2.12..`8esn`] Where `1esn`[{usn1}..``][7..$#usn8])],'s_str' Is Not Null Is Not Null Union Foreach(_usn4 In {usn1} Ends With 12.0 Ends With 00| With *,`7esn` Is Null As `7esn`,None(`` In `` Is Not Null Is Not Null Where $`6esn` Is Null) Contains Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}))) Contains Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End Order By {usn2} Starts With $`8esn` Starts With Count ( * ) Asc,(:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(:_usn3:_usn3{``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Is Not Null Descending,.e0[..0X0123456789ABCDEF][...e12] Descending Limit {``}[...e12]) Foreach(`4esn` In #usn8[`3esn`..][{#usn7}..]| Create `5esn`=Allshortestpaths(((`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}))),(((`6esn` :`5esn`{usn1:{`6esn`}})<-[? *0X7..{#usn8:{1000} Is Null Is Null,`3esn`:0.e0 Starts With 12.e12 Starts With {_usn4}}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})<-[:`1esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]})))) Union Return Distinct 12.0 Ends With True Ends With 123456789 As #usn7 Order By {_usn3}[12.e12] Descending Skip 0X7[{@usn6}] Limit 1e1 Contains Count ( * ) Create @usn5=(((`1esn` :`5esn`{`5esn`:{``} Is Null})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(_usn4 :usn1))) Delete Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End Starts With Single(`2esn` In `1esn` =~\"d_str\" Where False Starts With {`5esn`}) Starts With Extract(`5esn` In $999[0.0..] Where 0x0 Ends With $12),$`7esn` Is Not Null,7[$`2esn`..{`5esn`}]"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Create Constraint On(`4esn`:_usn3)Assert Exists(Any(`5esn` In \"d_str\" Is Null Is Null Where {0}).``?)"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Optional Match (`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2}),_usn4=({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[?:`8esn`{`3esn`:1.0 In Count(*)}]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}) Where {usn1}[0X0123456789ABCDEF] Start usn1=Node:`3esn`(`2esn`={usn1}) ,@usn5=Relationship:`6esn`(`8esn`='s_str') Union Unwind 's_str' In $usn1 In False As `6esn` Union All Merge _usn3=((:`1esn`{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})) On Create Set `2esn` =$``[1.0],`8esn` =010[..12e12][..12e12],`5esn` =Extract(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|{@usn5} Is Null Is Null)[Case When $0[..9e1] Then Count(*)[..usn2][..usn2] When {`2esn`} Starts With 0.0 Starts With {usn1} Then 0e0 In @usn5 Else 01 =~{_usn3} =~`3esn` End.._usn3(1.0 In Count(*),0[{usn2}..][$`6esn`..])][count(Distinct $12[Null..Count(*)][{`5esn`}..{999}],$`4esn`[`7esn`])..Case When $123456789 Ends With $999 Ends With {999} Then `3esn`[{usn1}] When #usn7 =~Count ( * ) =~`` Then $_usn4 Starts With 1e1 End] Remove ({@usn6:01234567 Ends With .e12 Ends With $#usn7,`4esn`:12.e12[`3esn`]})<-[ *123456789..]-(:@usn5).`1esn`!"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Create Constraint On(usn1:usn2)Assert Exists(Shortestpath((_usn3 :usn2{#usn7:{999} Starts With {0}})).`6esn`?)"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Create `4esn`=((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})),`1esn`=((({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})<-[`4esn`?:usn2|`` *0X7..]->(_usn3 :@usn5)<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8}))) Union All With 0.e0 In $#usn7 In $_usn3,(usn2 :@usn5)-[?{`8esn`:{7} Is Null}]->(`` )<-[`3esn`?:`3esn`|:#usn8]-(`` :#usn8:#usn8)[Reduce(usn2=`2esn` Starts With $_usn4,#usn7 In {``} Is Not Null|{7} Is Null)..][Single(#usn7 In {``} Is Not Null Where $1000[0Xa][{#usn7}])..] As `2esn` Order By $usn1 Ends With $`` Ends With $12 Desc,1e1[1000..] Ascending,{123456789}[0.e0..$123456789][0Xa..`6esn`] Descending Limit {123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4] Where `4esn` Ends With 07 Ends With {`3esn`};"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Merge `3esn`=Shortestpath(((:`1esn`{`5esn`:1.0 In Count(*)}))) Create `1esn`=(`5esn` :_usn4{7})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}),((`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})) Union All Foreach(@usn6 In #usn7 =~Count ( * ) =~``| With `5esn`[.e0..][07..] As `7esn` Order By {usn2}[$`3esn`..][{#usn7}..] Ascending,{@usn6} In {123456789} In 0xabc Asc Skip {999} Limit Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)[None(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Starts With $1000)..{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}][Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8)..None(#usn8 In {`5esn`}[.e1..``] Where $`3esn` Is Not Null)] Where usn2 Is Null Optional Match ((`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(_usn3 :#usn7)<-[@usn5?]->(`1esn` :`5esn`{`5esn`:{``} Is Null})),`7esn`=(@usn6 :_usn3:_usn3)-[?{`3esn`:7[{0}..{_usn4}]}]->(`7esn` :_usn3:_usn3)-[?:usn2|`` *..010{`4esn`:{`4esn`} Starts With $usn2 Starts With $1000,`7esn`:$@usn6 Contains 07}]->(:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}) Where {123456789}[9e12][{0}]) Remove [$1000 Is Null,$`1esn`[{`2esn`}..],.e1[{`7esn`}..{_usn4}]].@usn5 Delete 1000 In {`8esn`} In 01,1.0 Contains $_usn4 Union All Detach Delete $12 Ends With 07 Ends With $123456789,$`6esn`[{_usn3}..$`4esn`][$_usn4...e12] Foreach(usn1 In (:_usn4{@usn6})<-[`4esn`?:_usn4|:usn2{_usn4:$usn2[{@usn5}],`2esn`:usn1[`5esn`..$7]}]->({``:$`8esn` =~{1000}})<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(:``:#usn8{usn1:{`6esn`}})[[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn` Contains 123456789 Contains $usn2|123456789 Ends With 01234567 Ends With 1.e1]..{usn2:1.0 =~7 =~{usn2},`8esn`:$_usn3[.e0..$usn2]}][None(_usn3 In {`3esn`}[`2esn`] Where 7 Ends With $`4esn`)..Case {`2esn`} Starts With 123456789 When $`5esn` In $`6esn` Then $`6esn` Ends With Count(*) End]| Optional Match Shortestpath(((({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(:`6esn`$123456789)))),@usn6=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7)) Using Index `7esn`:usn2(`6esn`)) Start `1esn`=Node:usn2({12}) ,usn1=Node:`7esn`(`3esn`={``})Where {usn2};"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Create Constraint On(`8esn`:`6esn`)Assert Exists(({`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}})-[:#usn7 *..010]->(:`1esn`{})-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01}).`5esn`?)"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Create Constraint On(usn1:`2esn`)Assert Single(#usn7 In {``} Is Not Null Where usn1[9e12..][$7..]).`1esn` Is Unique"), - octest_legacy:ct_string("Cypher Drop Constraint On(`6esn`:usn1)Assert Exists(Case 0X0123456789ABCDEF Ends With $`8esn` Ends With 0.12 When 9e1 Is Not Null Then $`4esn`[..$`3esn`][..0.0] End.`1esn`!);"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Return *,Allshortestpaths((:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))[[{_usn4} In {12} In $0,$`5esn`[2.12..],12[1.e1..{_usn3}][1.e1..1.0]]][[12e12 Is Not Null Is Not Null]] Skip 1.e1[Count ( * )..] Limit 0e0 Starts With 1000 Starts With #usn7 Create `8esn`=((`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]->(`` )<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})) Create ``=Allshortestpaths(({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})) Union All Unwind $#usn7[..{`5esn`}][..9e12] As `3esn` Foreach(`` In Reduce(_usn4=01[{`2esn`}..{@usn6}][$`2esn`..0.0],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|0.12 =~$0 =~$0)[Shortestpath((((`1esn` {@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00})-[`6esn`?:`3esn`|:#usn8]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))))..[{12}[{7}][$123456789]]]| Remove 2.12.`7esn`!,{`1esn`:$0[..9e1]}.usn2!,Reduce(usn2=#usn7 Is Null Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{_usn3}[12.e12]).@usn6?) Foreach(_usn3 In {@usn6} Starts With `5esn`| Remove {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}}.`6esn`!,All(`5esn` In $999[0.0..] Where $`5esn`[..$`5esn`][..$12])._usn4?,(:@usn6:#usn8$`5esn`)<-[`1esn`?:usn1|@usn6 *0..]-(:#usn8:#usn8{@usn6:$_usn3[..1000]})-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :_usn3:_usn3{`7esn`:$`6esn`[123456789..12][True..{`3esn`}],`5esn`:0X0123456789ABCDEF[123456789]}).`3esn` Start `1esn`=Rel:`4esn`(`4esn`='s_str') Where 12.e12[`3esn`]) Union All Return Distinct Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where @usn6 Is Null Is Null)[(`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})..] As `3esn`,{`3esn`} In 0X7 Skip `1esn` In .e0 In {`3esn`} Limit Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End Optional Match `8esn`=Allshortestpaths(((`` {usn2:0X0123456789ABCDEF[123456789]})-[?{`8esn`:{7} Is Null}]->(`4esn` {`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})-[]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]}))),@usn5=((`5esn` {`8esn`:1000[Null..{123456789}]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})-[:@usn6|`6esn`{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}]->(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})) Using Scan `4esn`:`5esn` Using Join On #usn8 Where {#usn8} Is Null Return {_usn4:$_usn4[1.e1]['s_str']} Is Null As _usn3,[$0] In [`2esn` In `1esn` =~\"d_str\" Where {0} Ends With $_usn3 Ends With $`7esn`|{999} Contains .e0 Contains 12.0] In None(`2esn` In `1esn` =~\"d_str\" Where {`7esn`}[..$@usn5][..$#usn8]) As usn1,Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {`3esn`} Is Not Null Is Not Null)[{@usn6:1.0[$`1esn`..][$123456789..]}] As `6esn` Order By $`3esn`[..12.0] Asc Skip 0.0[$0][{@usn5}] Limit {``} Starts With $`2esn` Starts With `1esn`;"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Drop Constraint On(@usn6:``)Assert Exists(Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {#usn8}[.._usn4][..$`3esn`]).`8esn`);"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Create Constraint On(#usn7:_usn3)Assert Reduce(#usn7=$@usn5[..12e12][..$123456789],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{``} Is Not Null).`1esn`! Is Unique"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Drop Constraint On()<-[_usn3:``]-()Assert Exists(Reduce(#usn7=9e12[`6esn`..12.0],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|{@usn5}[{#usn8}][9e0]).``)"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Start ``=Relationship:_usn3(`8esn`={123456789}) ,`3esn`=Rel:usn1(_usn4={12}) Remove exists(Distinct 9e1 In $`3esn` In $@usn6).`8esn`!,None(_usn3 In {`3esn`}[`2esn`] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0])._usn4,[usn1 Starts With usn1 Starts With $``,False =~1e1 =~0.e0,`3esn`[..010][..$7]].`1esn` Remove (`1esn` :_usn3:_usn3)<-[? *7..12]->({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})<-[`6esn` *0Xa{_usn3}]-({@usn5:usn1 Is Not Null}).`3esn`!,Case When {7} Is Null Then .e1[{`7esn`}..{_usn4}] When 1.0 =~'s_str' =~{`2esn`} Then $`5esn` In $`6esn` End.`6esn`? Union All Foreach(usn1 In Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End Ends With Case When 0x0 Ends With $12 Then 07 =~01 End| Detach Delete $@usn5,'s_str' =~{_usn4} =~$`7esn`,usn1(Distinct $@usn5 Starts With $1000)[[`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}|0Xa =~Null =~$``]..])"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Load Csv From Allshortestpaths((((:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]->(:`4esn`{``:2.12 Is Not Null Is Not Null}))))[{`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null}][Allshortestpaths(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})))] As `2esn` Merge `2esn`=Allshortestpaths((((#usn8 :usn1)-[:`6esn`|`5esn` *123456789..]-(#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})-[_usn4{`5esn`:{0} Ends With $_usn3 Ends With $`7esn`,`2esn`:Null[``]}]-(`7esn` :`5esn`)))) Union Unwind 0e0[`8esn`..][$123456789..] As usn2 Optional Match `6esn`=Shortestpath((((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})))),Shortestpath(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null}))) Using Scan `3esn`:_usn4 Using Scan ``:`2esn` Where $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Load Csv With Headers From `6esn`[..$@usn6] As @usn6 Fieldterminator 's_str' Union Unwind $_usn4 =~usn2 =~{_usn3} As _usn4"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Foreach(@usn5 In _usn3 Contains Count(*) Contains 12e12| Match Shortestpath(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))),usn2=Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))) Where 01234567 Ends With .e12 Ends With $#usn7 Load Csv From [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `4esn` Ends With 07 Ends With {`3esn`}|@usn5 Is Null] Is Null Is Null As #usn8 Fieldterminator \"d_str\") Detach Delete Reduce(#usn7=`3esn`[{`2esn`}],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|#usn8 Is Not Null)[(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(#usn7 {_usn3:`4esn`[..Count ( * )][..{#usn7}]})..None(`8esn` In 01[2.12..`8esn`] Where {usn2})],Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))),12 Ends With 0x0 Ends With 0.e0;"), - octest_legacy:ct_string("Explain Drop Constraint On(`7esn`:_usn4)Assert All(`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}).#usn8? Is Unique;"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Load Csv With Headers From 0e0 Starts With `2esn` Starts With $`` As `3esn` Fieldterminator \"d_str\" Match (_usn3 {@usn5:`5esn`[{`4esn`}..`2esn`],_usn3:07 =~01}) Using Index #usn7:#usn8(`4esn`) Where {``} Starts With $`2esn` Starts With `1esn` Foreach(`8esn` In [_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|`` Is Not Null Is Not Null] Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where {_usn3}[..\"d_str\"][..`5esn`]) Ends With Filter(`3esn` In {7} Is Null Where {123456789} Contains $#usn8)| Remove (:#usn7)-[?:_usn3|_usn3]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[:#usn7 *..010]->(#usn8 :usn1)._usn4!,{_usn4:0.12 Contains 0X0123456789ABCDEF Contains .e0}.`1esn`! Remove None(#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01).`5esn`!) Union Remove `5esn`:_usn4,[1.0[0X7][{`5esn`}],@usn6[$`3esn`..{`3esn`}]].#usn8!"), - octest_legacy:ct_string("Cypher 12.999 Create #usn7=(`4esn` :#usn7),(({`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})<-[usn2?:#usn7]-(@usn6 :@usn5{usn2:$`5esn`[..$`5esn`][..$12]})) Match `8esn`=(((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) Using Join On `8esn`,@usn5 Where 123456789[0xabc..'s_str'][``..`1esn`] Union All Return Distinct *,{``}[`8esn`..],Case {`3esn`}[@usn6..0Xa][{12}..0Xa] When {usn1}[0X0123456789ABCDEF] Then 0x0 Ends With $12 When 0e0 Starts With `2esn` Starts With $`` Then {123456789}[9e12][{0}] Else 0X7[1000..{`1esn`}] End[..({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})] As #usn7 Order By False Contains {`6esn`} Ascending,{`1esn`}[usn1][.e1] Asc Return *,0Xa[9e1..][$`6esn`..] As @usn6,1e1 In 123.654 In `3esn` As @usn6 Order By 0.0 =~False =~$999 Desc,123456789 Ends With 01234567 Ends With 1.e1 Ascending Limit $999 Delete 12e12 Contains 0Xa;"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Create Constraint On()-[@usn6:`3esn`]->()Assert Exists({_usn4:00 Starts With 0xabc}.`2esn`?);"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Merge Allshortestpaths(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))) On Match Set `3esn`+=.e1[..$@usn6][..`2esn`] Create Unique `2esn`=((`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]})-[{`7esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4]}]-(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)),`6esn`=Shortestpath(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})));"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Create Index On:_usn4(@usn5)"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Unwind 0X7[1000..{`1esn`}] As `4esn` Return Distinct `4esn` =~$`5esn`,$`1esn` Starts With {`8esn`} As _usn3,None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`])[Any(`3esn` In {7} Is Null Where {`4esn`} =~{7} =~{`7esn`})..][Extract(`2esn` In `1esn` =~\"d_str\" Where $_usn4[1.e1]['s_str']|usn1[`5esn`..$7])..] As `7esn` Skip [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where False|{`1esn`}[12.0..`2esn`][@usn6..{usn1}]] =~Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 00[{`8esn`}..][{`8esn`}..]|{0}) =~{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}} Start `7esn`=Relationship:`3esn`(`6esn`='s_str') Where 0Xa =~123456789 =~_usn4 Union Unwind $`5esn` In 0.e0 As @usn6 Return Distinct 1000[..$0][..True] As `3esn`,`7esn` In {123456789} In `1esn` Skip 7[$_usn4..9e0] Union Optional Match ((:@usn5{#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})-[?:usn2|`` *0..{usn2:{12} Is Not Null,`6esn`:``[$`2esn`]}]-(`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})),(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07}) Using Join On @usn6 With Distinct *,$123456789[_usn3][{#usn7}] As `4esn`,All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8) Is Not Null Is Not Null Limit True Contains {0} Contains 7 Where {12} =~#usn8 With Distinct $`` As #usn8,None(`3esn` In {7} Is Null Where 0Xa[2.12]) Is Null Is Null As #usn7 Order By Count ( * ) Contains {`1esn`} Contains 07 Ascending Limit @usn6(Distinct 0X7[1000..{`1esn`}],True[07..$usn2][$7..{usn1}])[Reduce(`4esn`=0.0[$0][{@usn5}],`4esn` In $`3esn` Is Not Null|$`5esn`[`3esn`..])][Case When 123.654[0e0..$``][$`1esn`..$`8esn`] Then $_usn3['s_str'][07] When {`3esn`}[..07][..{`5esn`}] Then 's_str' Is Not Null Is Not Null End] Where {`4esn`} =~{7} =~{`7esn`};"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Drop Constraint On()-[_usn3:`4esn`]->()Assert Exists(Allshortestpaths(((usn2 :`4esn`)-[_usn3:#usn8|`1esn`{_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]}]->(@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:`5esn` *0..{_usn4:7[$`2esn`..{`5esn`}]}]->())).`5esn`?);"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Create Constraint On(``:#usn8)Assert Reduce(`8esn`=Count ( * ) Contains 07,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|\"d_str\"[#usn8]).`5esn`! Is Unique"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Drop Constraint On()<-[usn1:#usn7]-()Assert Exists(Allshortestpaths((((usn2 :#usn8:#usn8)-[`2esn`?:`7esn` *..07$0]-(`4esn` )-[:`2esn`*..{`1esn`}]-(`` {@usn6:1.0[$`1esn`..][$123456789..]})))).`2esn`?);"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Drop Constraint On()-[``:#usn7]-()Assert Exists({`3esn`:usn1 Is Null Is Null}.`2esn`?)"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Drop Constraint On(@usn6:`1esn`)Assert Exists(Reduce(`8esn`={`2esn`} Is Not Null Is Not Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{usn1} Ends With $0).`8esn`);"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Create Constraint On(usn1:`8esn`)Assert Exists(Case $`6esn`[123456789..12][True..{`3esn`}] When 1e1 Contains Count ( * ) Then $`3esn`[..$123456789][..$`1esn`] When $1000 In $1000 In $`3esn` Then {`7esn`}[..{`4esn`}] End.@usn5!)"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Remove #usn8(Distinct $`4esn`[Null..],2.12 =~False).@usn5,[$`3esn` In $_usn4 In {_usn3},{1000} =~0 =~123.654].`3esn` Create `7esn`=Shortestpath((((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``})))),((:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12})) Union All With 7[$`8esn`..123456789][$usn1..$usn1] As `5esn`,2.12[{7}..] As `5esn`,[usn2[$_usn4..][True..],1.0 In Count(*)] =~Any(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12.0[123.654][Count(*)]) =~Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where usn2 Is Not Null Is Not Null) As `` Skip 12.0 In {`2esn`} Where 123.654 Is Not Null Is Not Null Create Unique @usn6=(((:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)-[usn1? *1000..00]->({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}))),(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``}) Optional Match ((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})),``=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))) Using Scan _usn3:_usn3 Where Count ( * ) Ends With $@usn5"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Load Csv From _usn3[_usn3..][12.e12..] As `5esn` Fieldterminator 's_str' Return {usn2} =~12 Order By @usn6 Is Null Is Null Descending,{_usn3} Is Null Is Null Desc,Allshortestpaths((({`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})<-[?*..]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}))) Ends With Reduce(_usn3='s_str'[00][{`5esn`}],`4esn` In $`3esn` Is Not Null|Count ( * ) Contains `8esn` Contains .e1) Descending Unwind 7[..999][..{#usn8}] As `8esn` Union All Foreach(`5esn` In {123456789} Starts With 0.0 Starts With `5esn`| Remove 2.12.`7esn`!,[@usn6 Contains $1000 Contains {`7esn`}].`3esn`?) Optional Match `7esn`=Shortestpath(((:`5esn`{``:1.0[0e0..0.e0]})-[_usn4:#usn8|`1esn`{`6esn`:#usn8[..{#usn7}]}]->(#usn7 :`4esn`))) Using Index `6esn`:@usn5(`2esn`) Using Scan ``:`2esn` Union Merge `7esn`=((`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]->(`` )<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})) Unwind None(`` In `` Is Not Null Is Not Null Where $`6esn` Is Null) Contains Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}))) Contains Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End As usn2 Detach Delete $`3esn` In $`6esn` In $``,\"d_str\" =~{usn1} =~{`7esn`}"), - octest_legacy:ct_string("Explain Start `5esn`=Relationship(*) Return Distinct 12.e12 Is Null Is Null As `6esn`,01 Is Null As `2esn`,$12 =~$_usn3 As #usn8 Skip Filter(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]) Ends With Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``]) Ends With Case $`7esn` Is Null Is Null When {#usn7}[9e1..][{123456789}..] Then False =~1e1 =~0.e0 Else 1000 In {`8esn`} In 01 End Limit $999 Is Not Null With Distinct Extract(`8esn` In 01[2.12..`8esn`] Where {usn2}|$0[12.e12..]) =~Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null|7 Ends With $`4esn`) =~(usn1 {`2esn`})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->(:_usn3:_usn3{`4esn`:12e12 Ends With {usn1}})<-[`7esn`?:`8esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}) As `1esn`,Extract(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null)[..Any(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})] Order By $`1esn`[{`2esn`}..] Desc,$12 Starts With $`8esn` Starts With $`1esn` Descending Union Merge #usn7=((`4esn` :@usn6:#usn8)-[:`8esn`*]->({_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})) On Match Set usn1 =$`3esn`[{`5esn`}..#usn7][{`2esn`}...e1],(`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[`5esn`?:`5esn` *1000..00]->({`1esn`:`3esn`[{`2esn`}]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]}).`5esn` ={#usn8}[{``}..];"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Drop Constraint On()-[_usn3:@usn6]->()Assert Exists((usn1 {`7esn`:{999}})<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4).#usn7!)"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Create Constraint On(`5esn`:_usn3)Assert {`6esn`:01 Is Null,`7esn`:True In 0e0}.`1esn` Is Unique;"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Load Csv With Headers From {`1esn`}[12.0..`2esn`][@usn6..{usn1}] As `8esn` Fieldterminator 's_str' Detach Delete (:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[`6esn` *0Xa{_usn3}]-({@usn5:usn1 Is Not Null})-[:`8esn` *0..{_usn3:`4esn` Ends With 07 Ends With {`3esn`}}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})[..[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]|{7}[..12e12][..Count ( * )]]],({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})[[@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where 0 In `2esn` In 010]..][{_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null}..] With *,All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8) Is Not Null Is Not Null As `2esn`,Allshortestpaths(((`7esn` {`2esn`:$`6esn`[123456789..12][True..{`3esn`}],#usn7:$_usn3[Count(*)]})-[#usn8? *..07$_usn4]->(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}))) =~(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null}) =~{#usn8:{`3esn`}[@usn6..0Xa][{12}..0Xa],@usn5:False Is Null Is Null} Order By [`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null Ascending,0.0 =~0 =~`6esn` Ascending Skip $_usn3[.e0..$usn2] Union Remove Reduce(#usn7=`7esn` Starts With $#usn7 Starts With $`7esn`,#usn8 In 7[..999][..{#usn8}]|`1esn` Ends With {_usn3} Ends With `2esn`).`8esn`,Any(`8esn` In 01[2.12..`8esn`] Where {usn2}).`1esn`!,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}|$#usn8 Ends With $`2esn` Ends With $@usn6].usn1? Union With Distinct 12.e12[`3esn`] As #usn7,{12} Ends With 1.0 Ends With .e0 As `5esn` Skip Filter(`4esn` In $`3esn` Is Not Null Where {`6esn`}) =~{_usn3:{`3esn`} Is Not Null Is Not Null} Where 0X7[..2.12] Detach Delete 12.0 Ends With {``};"), - octest_legacy:ct_string("Cypher Optional Match `7esn`=Allshortestpaths(((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[`1esn`?:usn2|``{_usn4:$`4esn`[..$`3esn`][..0.0],@usn6:0e0 Starts With 2.12 Starts With $12}]->(:_usn3:_usn3{`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})<-[`8esn` *0X0123456789ABCDEF]->(usn2 :_usn4))),#usn7=Allshortestpaths((@usn6 :`6esn`)<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3)) Using Join On `6esn`,`8esn`,`4esn` Using Scan `4esn`:`2esn` Where 0.12 Starts With $`5esn` Starts With 12 Load Csv With Headers From Filter(`8esn` In 01[2.12..`8esn`] Where 1e1 In 123.654 In `3esn`) Is Not Null As usn2 Union All Return Distinct {`5esn`}[0..`8esn`][0..Null] As `7esn`,usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010]) Is Not Null Is Not Null As `7esn`,{0}[{`8esn`}..`4esn`] As #usn8 Skip {_usn4} Is Not Null Is Not Null Limit 9e12[`6esn`..12.0] Union All Load Csv With Headers From 0Xa[2.12] As `7esn` Fieldterminator \"d_str\" Start `2esn`=Relationship:usn2(`8esn`={`8esn`}) ,usn2=Node:`4esn`('s_str')Where Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6} Unwind Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`3esn`} In 01)[Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12e12 Contains 0Xa|Null[$#usn7])..Allshortestpaths(((`` {`3esn`:{12} Contains {123456789} Contains `4esn`})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})))][Reduce(`6esn`=7[..123456789][..{@usn6}],`5esn` In \"d_str\" Is Null Is Null|$_usn4 Is Not Null Is Not Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] As `6esn`"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Remove {usn1:$usn1[{`5esn`}][$`6esn`]}.usn2?,Reduce(`1esn`=True =~010,`8esn` In 01[2.12..`8esn`]|{_usn3}[..\"d_str\"][..`5esn`]).#usn8?,Case 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] When $`1esn` =~0X7 Then $`2esn`[2.12..'s_str'][{@usn6}.._usn4] When $1000[`2esn`..`5esn`][1e1..1.e1] Then {`3esn`}[`2esn`] Else 0[..usn2][..{@usn5}] End.@usn5! Unwind {`3esn`}[..$`3esn`][..12.e12] As _usn3 Foreach(usn1 In 0.0[`7esn`..][12.e12..]| Create Allshortestpaths((((`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`2esn` *..07]-(`1esn` {#usn7:{_usn4} In {12} In $0})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})))));"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Start _usn4=Rel:#usn8({_usn3}) ,#usn8=Node:@usn5(usn2='s_str')Where 1.0 Contains $_usn4 Foreach(#usn8 In $`3esn` In Null| Optional Match #usn8=(`1esn` :`4esn`{`6esn`:$`6esn` Ends With Count(*),`7esn`:_usn3 Starts With 12.e12 Starts With 0.12}),(:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]->(#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})-[`1esn`?:`8esn`]->(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}) Using Index `6esn`:`8esn`(``)) Union Remove [`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where $7[0.12][usn1]].`3esn`!,[#usn8 In 7[..999][..{#usn8}] Where $_usn4[1.e1]['s_str']|`2esn` Is Null].usn1 Start _usn4=Node:`2esn`(#usn7='s_str') ,`3esn`=Node:#usn8(`1esn`={`3esn`})Where @usn6 Is Null Is Null"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Unwind {``} Is Not Null As `1esn` Start @usn5=Relationship:``(\"d_str\") ;"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Load Csv From All(#usn8 In {`5esn`}[.e1..``] Where {_usn3}[..\"d_str\"][..`5esn`])[..Allshortestpaths((`5esn` :`4esn`))] As @usn5 Load Csv From None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {@usn6}[{999}..][00..]) Ends With Shortestpath((`6esn` {_usn4:0Xa =~Null =~$``})<-[``? *0X7..]->(`` :`1esn`)) Ends With Reduce(_usn3={7}[..1.0][..9e0],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|`1esn` Contains {usn2} Contains $#usn8) As `` Fieldterminator 's_str' Union Merge `7esn`=Shortestpath(((`5esn` :_usn4{7})<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})-[:`4esn` *0xabc..{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(`3esn` :`5esn`))) On Create Set `1esn` =12.e12[``][{`2esn`}],`8esn`+=00[{`8esn`}..][{`8esn`}..],#usn7+={_usn4} Ends With `6esn` Match Shortestpath((:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[`6esn`]-(`1esn` {@usn5:1.0[0e0..0.e0]})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})),(((#usn7 :`8esn`:`7esn`{`5esn`:1.0 In Count(*)})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000}))) Using Index _usn4:@usn5(`8esn`) Using Index `8esn`:`1esn`(@usn5) Create `7esn`=Allshortestpaths((@usn6 {`3esn`:{``} Is Not Null})-[usn1?:@usn5*]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})) Union Unwind $`4esn` Starts With $`5esn` Starts With False As #usn8 Detach Delete Single(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]) Is Not Null Is Not Null,{`2esn`:1000[..$0][..True],@usn5:{12} Ends With 0Xa Ends With $`6esn`}[Single(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn1} Ends With $0)..][Extract(`2esn` In `1esn` =~\"d_str\" Where $`4esn` In Null In 0xabc|{`5esn`} Starts With $`5esn` Starts With .e1)..],usn1 Is Not Null;"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Start ``=Node:`2esn`(usn2='s_str') With Distinct 123.654 Is Not Null As `1esn`,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) As `4esn` Order By 0.0 =~999 Asc,1e1 In \"d_str\" In `7esn` Descending Where 12.e12[`3esn`] Union All Load Csv From Reduce(@usn6=0.e0 Ends With $#usn7 Ends With $7,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999})[[#usn8[`3esn`..][{#usn7}..]]..(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`8esn` :@usn6:#usn8)<-[{`8esn`:07 In `2esn` In 12e12}]->(:_usn4{`6esn`:{`6esn`} =~$999,`6esn`:$#usn7[..{`5esn`}][..9e12]})][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)..Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0e0 Starts With `2esn` Starts With $``)] As `2esn` Fieldterminator \"d_str\" With *,$``[1.0] As `6esn`,12.0[123.654][Count(*)] Where 0.12[$`3esn`..$_usn3][12.0..usn1] Union Create #usn7=Shortestpath((`2esn` :usn1)<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(`3esn` :`8esn`:`7esn`)<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)),usn2=Shortestpath(({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Create @usn6=((`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})),(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})<-[usn2?:`5esn` *0..]-({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}) Unwind Case When False Then 0.e0 Ends With $#usn7 Ends With $7 When {@usn6}[{999}..][00..] Then `5esn` Ends With {``} Ends With 12.e12 Else 123.654[$`1esn`] End[Reduce(#usn8=$`6esn` Ends With Count(*),`2esn` In `1esn` =~\"d_str\"|_usn4 Contains 2.12)..] As `8esn` Union Start #usn7=Node:`6esn`(`3esn`=\"d_str\") ,`7esn`=Node:``(@usn6={usn1})Where 9e12 Is Not Null Is Not Null With Distinct {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null} Contains {@usn5:{`3esn`} In 01} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 1.0[0X7][{`5esn`}]|{``}[010..][0xabc..]) As #usn8 Where {1000}[{_usn3}..] Detach Delete 12[1.e1..{_usn3}][1.e1..1.0],{_usn4:`` Ends With 0Xa Ends With `2esn`}[[{`4esn`} Ends With {123456789} Ends With $`4esn`,$#usn7[#usn7..]]],Extract(_usn3 In {`3esn`}[`2esn`] Where _usn3 Contains $123456789 Contains ``)[Extract(`5esn` In \"d_str\" Is Null Is Null Where 00[$`7esn`]|$`6esn` Is Null)] Union With Distinct {#usn7}[`2esn`..],Filter(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0]) Ends With Case When {#usn8}[010] Then False =~$7 =~2.12 End,0.0 =~999 As `4esn` Detach Delete [0x0[{`7esn`}..][$usn2..],{`4esn`} =~{7} =~{`7esn`},usn1 In 7 In {123456789}] Is Null Is Null,Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`])[Case 00[{`8esn`}..][{`8esn`}..] When 0e0 Starts With 2.12 Starts With $12 Then Null[``] When 12e12 Ends With {usn1} Then $`2esn` Else 2.12['s_str'..$12][{`1esn`}..`2esn`] End..],1000 =~@usn6 =~0x0"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Drop Constraint On(#usn8:`6esn`)Assert Case `3esn`[`3esn`..][#usn8..] When 9e12[`6esn`..12.0] Then 123.654[`3esn`..] When Count ( * ) =~$usn2 =~$usn2 Then #usn7 Else 12e12 Contains 0Xa End.`2esn`? Is Unique;"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Foreach(@usn5 In `5esn` Starts With 010 Starts With 0.0| Create Shortestpath(((:#usn8:#usn8)-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12}))),Shortestpath((({_usn3:{_usn4} Is Not Null Is Not Null})<-[_usn4 *0..{_usn4:00[`2esn`..12][123456789..0.e0],`8esn`:0x0[`4esn`..'s_str']}]->()<-[``? *..01{`1esn`:$@usn6 Contains 07}]->(:#usn8:#usn8{@usn6:$_usn3[..1000]}))) Create ((`1esn` {`5esn`})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})),Shortestpath((((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`8esn`?:`2esn`*..{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]}))))) Delete 0.0 Is Not Null Is Not Null,None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})[Any(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")..Reduce(usn1=#usn7[usn1][$`5esn`],`3esn` In {7} Is Null|Count(*) Ends With 12.0 Ends With 12)][(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})..({usn1:`5esn`[_usn4..]})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})],Reduce(#usn7=$1000 Is Null,#usn7 In {``} Is Not Null|$`1esn` Ends With 9e1 Ends With $123456789) In Case When `5esn` Is Null Then True[..$`6esn`] Else `3esn`[`3esn`..][#usn8..] End Create Unique `8esn`=((:@usn6:#usn8)<-[`1esn`?:usn2|``]-({@usn5:{usn2}[.e0..$999]})) Union Return Distinct $`5esn`[$`4esn`..{@usn6}][07..$@usn6] As usn2 Order By [usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*)) Ascending,Case When 1.0 In Count(*) Then False End Contains `1esn`(Distinct 0.e0 Starts With `2esn`) Contains Reduce(`1esn`=\"d_str\" Is Null Is Null,#usn7 In {``} Is Not Null|#usn7) Descending Skip Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End Limit All(#usn7 In {``} Is Not Null Where {_usn4}[...e1][..$7]) Is Null Is Null Match Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Using Index ``:usn1(@usn5) Using Index `3esn`:`5esn`(#usn7) Where $`5esn`[2.12..] Unwind $_usn4 In usn1 In $7 As usn1 Union All Foreach(usn2 In $12[True..][{0}..]| Return Distinct 0X7[1000..{`1esn`}] As `3esn`,$`2esn`[12.e12..][{`4esn`}..] Order By 0.0 =~999 Asc,$`5esn` In 0.e0 Asc,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) Ascending Limit Count ( * ) Is Null Load Csv With Headers From {1000}[$`4esn`][\"d_str\"] As _usn3 ) Create Unique (:``:#usn8{_usn3:$`7esn` Is Null Is Null}),`5esn`=Shortestpath((((@usn5 :_usn4{#usn7:Null Ends With `2esn` Ends With $usn1,`5esn`:12.0})-[?:#usn7 *01234567..0Xa]->({``:$`8esn` =~{1000}})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})))) Remove [`2esn` In `1esn` =~\"d_str\" Where usn2[9e12]|usn2 Ends With 999 Ends With .e1].`5esn`,(`` :_usn4{_usn4:False[..``],usn2:9e1[1000][{123456789}]})-[ *7..12{`2esn`:.e12 Ends With _usn4}]->(:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(:@usn6:#usn8{`1esn`:`4esn`[..010][..{12}]})._usn4?,Extract(#usn8 In {`5esn`}[.e1..``] Where $`` =~12.0 =~$`7esn`|1e1 In 123.654 In `3esn`).`6esn`!"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Using Periodic Commit Load Csv With Headers From Case When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $`4esn`[..$`3esn`][..0.0] Then `1esn` =~0 =~$#usn7 Else {``} Is Null End Contains Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Contains All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {@usn6}[7]) As _usn4 Fieldterminator \"d_str\";"), - octest_legacy:ct_string("Explain Create Unique _usn4=((@usn6 )<-[usn1?:`8esn` *..010]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})<-[?:`8esn` *..0x0{`2esn`:$`4esn`[Null..]}]->({#usn8:0xabc[.e0]})),Shortestpath(((`6esn` :`4esn`))) Remove {usn1:#usn7 Is Null Is Null,`5esn`:{`3esn`} In 0X7}.`8esn`! Create Shortestpath((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654}))"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Foreach(`7esn` In 12.0 In {`2esn`}| Unwind $123456789[_usn3][{#usn7}] As `3esn` Optional Match (#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null}),(({usn1:`5esn`[_usn4..]})-[usn1?:_usn3|_usn3]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))) Union Start `6esn`=Node:`8esn`(\"d_str\") ,`4esn`=Relationship:``(@usn6={usn1}) Union All Optional Match (:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})-[?:`5esn`]->(:usn2),`2esn`=Shortestpath((({usn2:7[..999][..{#usn8}]}))) Using Join On @usn6,@usn6"), - octest_legacy:ct_string("Cypher Unwind $`1esn`[{`2esn`}..] As `7esn` Unwind [#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn2 Is Null|@usn6[$`3esn`..{`3esn`}]] In Filter(_usn3 In {`3esn`}[`2esn`] Where 1e1 In 123.654 In `3esn`) As _usn3 With Distinct `5esn`[_usn4..],$123456789 In 0X0123456789ABCDEF In 0.e0 Where 7[True..][2.12..] Union All Detach Delete {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]),[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12),$_usn4 Is Null Is Null Match #usn7=Shortestpath((`2esn` :usn1)<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(`3esn` :`8esn`:`7esn`)<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)) Using Join On `8esn`,@usn6 Where 999 Is Not Null Is Not Null;"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Remove Case When Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6} Then {`2esn`} Is Not Null Is Not Null When `3esn`[{usn1}] Then `5esn` Starts With $`2esn` Starts With $1000 End._usn3!,Allshortestpaths((((`3esn` :`8esn`:`7esn`)-[`7esn`:#usn8|`1esn` *0xabc..]->(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})-[`2esn`?:`7esn` *..07$0]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})))).``! Foreach(_usn3 In usn2 Ends With 999 Ends With .e1| Match `4esn`=Allshortestpaths((((_usn3 )-[?{@usn6:0X7[`7esn`][123.654]}]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})))),((:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})) Create `8esn`=((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})),`8esn`=Allshortestpaths(((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})))) Detach Delete $1000 =~$`2esn`,00[Count(*)..];"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Create Unique #usn7=(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[#usn8]-(:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}) Foreach(`2esn` In `6esn`[..$@usn6]| Optional Match (`2esn` :usn1)<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(`3esn` :`8esn`:`7esn`)<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1),Allshortestpaths(((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[? *..0x0]->(`3esn` :`7esn`:_usn3))) Using Index _usn4:`5esn`(`6esn`) Using Index `5esn`:usn2(``) Where 1.0[0X0123456789ABCDEF] Remove _usn3:`2esn`:usn1,[$0[..9e1],0.0[Null][$`2esn`]]._usn4?) Union All Merge Allshortestpaths((@usn6 :`6esn`)<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3))"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Using Periodic Commit Load Csv With Headers From $`` Is Not Null As `7esn` ;"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Unwind 7 Starts With `6esn` Starts With 01234567 As #usn8 Union All Return Distinct Shortestpath((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))) Is Null Is Null As @usn5,1000 In `7esn` In 9e12 As `6esn`,`1esn`[..{`2esn`}][..$_usn4] As #usn7 Union All Return Distinct (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As ``,12[..$`4esn`] As `7esn` Skip Allshortestpaths((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3))[Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})))] Load Csv With Headers From Extract(#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12) Ends With [False =~$7 =~2.12,$`4esn` In Null In 0xabc,{`7esn`} Starts With $123456789 Starts With $@usn6] As @usn6 Fieldterminator 's_str'"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 With All(`` In `` Is Not Null Is Not Null Where $_usn4 Starts With 1e1)[Shortestpath(((:usn1{`3esn`:{123456789} Is Null Is Null})-[_usn4{`5esn`:{0} Ends With $_usn3 Ends With $`7esn`,`2esn`:Null[``]}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[? *0Xa]-({`7esn`:{999}})))][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)] As ``,Shortestpath((`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})<-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(`3esn` :`6esn`))[(:`5esn`{``:1.0[0e0..0.e0]})-[ *7..12]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})] Order By `1esn`($123456789 Starts With 9e0 Starts With 's_str',{usn2}[.e0..$999])[{usn2:{`3esn`} In 0X7,_usn3:7 Starts With {@usn6} Starts With $``}..Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {usn1} In 2.12 In 1000)][Case 0[`7esn`..] When 123456789 Is Null Then .e12 Is Not Null Is Not Null Else $@usn5 =~1000 =~1000 End..[`4esn` In $`3esn` Is Not Null Where `8esn`[{123456789}..]|{`3esn`}[`2esn`]]] Desc,(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]}) Is Not Null Is Not Null Descending Limit [`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null Start `8esn`=Node:@usn6({_usn4}) Where `3esn`[`3esn`..][#usn8..];"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 With Distinct $12[True..][{0}..],$@usn5[010..$#usn8][12..$`4esn`] As `6esn` Order By Shortestpath((`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})<-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(`3esn` :`6esn`))[(:`5esn`{``:1.0[0e0..0.e0]})-[ *7..12]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})] Ascending,0e0 Starts With `2esn` Starts With $`` Descending,usn2[9e12] Desc Skip $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Load Csv From 9e12[0.0..][$12..] As _usn4 Fieldterminator \"d_str\" Union All Optional Match ((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})),``=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))) Using Scan _usn3:_usn3 Where Count ( * ) Ends With $@usn5 Return {#usn7}[`2esn`..],Filter(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0]) Ends With Case When {#usn8}[010] Then False =~$7 =~2.12 End,0.0 =~999 As `4esn`;"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Create Constraint On(@usn6:`2esn`)Assert Allshortestpaths(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))).`8esn`? Is Unique"), - octest_legacy:ct_string("Cypher Foreach(`2esn` In 7[..999][..{#usn8}]| Delete {#usn8}[.._usn4][..$`3esn`],$123456789 Ends With `3esn` Ends With 123456789);"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Create Unique (((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`}))),Allshortestpaths((usn2 :`4esn`))"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Drop Constraint On()<-[#usn8:usn2]-()Assert Exists({@usn6:{999} Starts With $999,`4esn`:$usn1[{`5esn`}][$`6esn`]}.@usn5?);"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Using Periodic Commit Load Csv From None(#usn8 In 7[..999][..{#usn8}] Where 2.12['s_str'..$12][{`1esn`}..`2esn`])[[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 12e12 Ends With {usn1}]][[$12 Ends With 07 Ends With $123456789,$@usn5 =~1000 =~1000,.e12[@usn5..$12]]] As `2esn` ;"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Using Periodic Commit Load Csv With Headers From `1esn` =~\"d_str\" As usn1 Fieldterminator \"d_str\" Foreach(`5esn` In All(`5esn` In $999[0.0..] Where {@usn6} Ends With 's_str' Ends With 12.0) In (:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})| Start _usn4=Rel:#usn8(\"d_str\") Where $#usn8[9e12..][.e1..])"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Unwind {0} In $_usn3 As `3esn`;"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Create Constraint On(_usn4:usn2)Assert Case When $#usn8 Ends With $`2esn` Ends With $@usn6 Then $@usn5[010..$#usn8][12..$`4esn`] When $12 Ends With 07 Ends With $123456789 Then $`4esn`[`7esn`] Else {`3esn`}[`2esn`] End.usn1! Is Unique;"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Create Constraint On(`7esn`:`7esn`)Assert {`3esn`:\"d_str\" Is Null Is Null,usn1:0X0123456789ABCDEF[123456789]}.`5esn`! Is Unique;"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` With Distinct Case #usn7 Starts With {#usn7} Starts With `7esn` When $#usn7 Is Null Then Count(*) Is Null Is Null End =~Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))) =~Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {_usn4}[...e1][..$7]),Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..],{123456789} Contains $#usn8 As `3esn` Order By {`4esn`}[$123456789..][$#usn7..] Ascending Skip Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[usn2?:`5esn` *0..]-({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:usn1|@usn6 *00]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})))[..{_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]}] Union All Merge (@usn6 :`6esn`)-[`6esn`?:#usn7]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}) On Create Set None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0xabc[01..{999}][{7}..{`7esn`}]).#usn8? =123.654[`3esn`..] Create `6esn`=Shortestpath((((`2esn` :`8esn`:`7esn`)<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})))) Foreach(`1esn` In Count ( * ) Ends With $@usn5| With Distinct {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]),Count ( * ) Is Null As @usn6,123.654[...e0] Order By {usn2} Starts With $`8esn` Starts With Count ( * ) Asc Limit $@usn5 Starts With #usn7 Where {123456789}[0xabc..]) Union All Unwind $`1esn`[{`2esn`}..] As `7esn` Unwind [#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn2 Is Null|@usn6[$`3esn`..{`3esn`}]] In Filter(_usn3 In {`3esn`}[`2esn`] Where 1e1 In 123.654 In `3esn`) As _usn3 With Distinct `5esn`[_usn4..],$123456789 In 0X0123456789ABCDEF In 0.e0 Where 7[True..][2.12..];"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Return Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains Extract(`5esn` In \"d_str\" Is Null Is Null Where Null Ends With `2esn` Ends With $usn1|$#usn7[@usn5..{1000}][1.e1..7]),$1000 Is Not Null,$@usn5 Is Not Null Order By {`4esn`} =~{7} =~{`7esn`} Ascending Foreach(@usn5 In $_usn4[1.e1]['s_str']| Delete $12[$1000..123456789] With Distinct *,Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))) As _usn3 Order By 1.e1[$`1esn`..@usn6][$0..$_usn3] Asc,Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Is Not Null Is Not Null Asc Skip [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789] =~Reduce(_usn3=$``,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{#usn8} Is Null) =~Case {``} Is Null When 2.12 Then $123456789 Ends With {`1esn`} Ends With $`4esn` End Limit {usn1} Ends With $0) Create Unique Allshortestpaths((:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 :usn1)) Union All Start #usn8=Relationship:`4esn`(_usn4={`2esn`}) Create Unique ((:`3esn`:@usn5$7)),((_usn4 {usn1:True Contains {0} Contains 7})) Union All Start #usn7=Rel:@usn6(`7esn`={`8esn`}) ,`3esn`=Node:@usn6('s_str')Where 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Unwind 0Xa[9e1..][$`6esn`..] As `8esn`;"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Drop Constraint On()-[`5esn`:`1esn`]->()Assert Exists(None(`4esn` In $`3esn` Is Not Null Where `2esn`[..$#usn8][..Count(*)]).`1esn`!);"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Start `5esn`=Relationship:usn1({999}) ,usn1=Relationship:_usn3(`8esn`={123456789}) Return Distinct 0e0 =~`6esn` =~123456789 As @usn5,Count ( * )[True..][{#usn7}..],2.12 =~{7} As `6esn` Order By {`2esn`}[1e1..1.0][{#usn8}..$`1esn`] Ascending,0X0123456789ABCDEF Is Null Is Null Asc Skip \"d_str\"[#usn8] Detach Delete `6esn`[2.12..01][{``}..False];"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Create `8esn`=Allshortestpaths(((:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))),#usn7=Shortestpath((`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})) Remove [`5esn` In $999[0.0..] Where {7}[..12e12][..Count ( * )]]._usn4!,All(#usn8 In 7[..999][..{#usn8}] Where {12} =~#usn8).``!,{#usn8:01234567[usn2..$12][{`7esn`}..$usn2]}.`4esn`? Return Distinct *,Reduce(usn1=$123456789 Is Null Is Null,_usn3 In {`3esn`}[`2esn`]|Null[$`5esn`][False])[Case 0e0 Contains Null When 0X7[`7esn`][123.654] Then 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] End..][[9e1[$usn2],{`4esn`}[$123456789..][$#usn7..]]..],01234567 Is Null Is Null Order By @usn6 Contains Null Contains $`7esn` Ascending"), - octest_legacy:ct_string("Cypher Foreach(_usn4 In \"d_str\" Is Null Is Null| Detach Delete {#usn8}[{``}..] Remove Single(`` In `` Is Not Null Is Not Null Where 1.0 In Count(*)).`6esn`!,All(#usn8 In 7[..999][..{#usn8}] Where `4esn`[1.0]).@usn6);"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Create Constraint On(@usn6:`6esn`)Assert [#usn8 In {`5esn`}[.e1..``]|$`1esn` =~0X7]._usn4 Is Unique"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Load Csv With Headers From {`5esn`}[{usn2}..1000][$`8esn`..{`3esn`}] As #usn8 Fieldterminator \"d_str\" Union Merge Allshortestpaths((#usn8 :@usn5)) On Create Set `1esn` =12.e12[``][{`2esn`}],`8esn`+=00[{`8esn`}..][{`8esn`}..],#usn7+={_usn4} Ends With `6esn`"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Unwind Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 1.0 =~7 =~{usn2}) Is Not Null Is Not Null As usn2 Merge `8esn`=(#usn7 :`6esn`$1000)<-[`6esn`? *..010]-(`` :`1esn`);"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Create Constraint On(`6esn`:`3esn`)Assert Allshortestpaths((({_usn3:.e12[@usn5..$12]})-[`7esn` *0X0123456789ABCDEF]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0}))).usn1 Is Unique"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Create Constraint On(`3esn`:#usn7)Assert Case `4esn`[1.0] When $`4esn`[9e12..123.654] Then $`4esn` In Null In 0xabc End.``? Is Unique;"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Using Periodic Commit Load Csv With Headers From {`3esn`} In $@usn5 In _usn4 As _usn3 Match (({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}]->({`7esn`:7[{0}..{_usn4}]})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(usn2 {``:01[{@usn5}]})),(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``}) Foreach(`1esn` In True =~{`5esn`}| Return *,$_usn3 =~0.12 =~{#usn8},9e0 Is Not Null Is Not Null Skip {usn2} Starts With $`8esn` Starts With Count ( * ) Limit $@usn5 Starts With $1000 Detach Delete {0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]],$`7esn`['s_str'],Reduce(`1esn`={`8esn`} Ends With `6esn`,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|1e1 In 123.654 In `3esn`)[[#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]]]);"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Create Unique Shortestpath((:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[`6esn`]-(`1esn` {@usn5:1.0[0e0..0.e0]})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})),(((#usn7 :`8esn`:`7esn`{`5esn`:1.0 In Count(*)})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000}))) Merge @usn6=((`7esn` {`7esn`:{123456789} Contains $#usn8})) On Match Set `` =2.12 =~False,#usn7+=$usn1[..{`6esn`}],#usn7+=(:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12} With Distinct $_usn3 In {1000} In 0.12,$_usn3[..1000] Order By `7esn`[$12..][$`8esn`..] Descending,9e1[2.12] Ascending,$`1esn` Starts With {`8esn`} Descending Limit @usn6 Contains Null Contains $`7esn` Union Remove Filter(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 7[..999][..{#usn8}]).usn1!,_usn4:`7esn`:_usn3 Create `7esn`=((:`3esn`:@usn5$7))"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Create Constraint On(``:@usn5)Assert Exists(None(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {#usn8}[.._usn4][..$`3esn`])._usn4!);"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Create Constraint On()-[`8esn`:`4esn`]-()Assert Exists(Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where #usn8 Is Not Null).`5esn`!)"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Create Constraint On()-[#usn8:`8esn`]-()Assert Exists((`4esn` :`7esn`:_usn3{#usn8:{`7esn`} Is Null,`3esn`:`1esn` =~\"d_str\"})-[_usn4?:`1esn` *7..12]->(:#usn8:#usn8{_usn3:$_usn3['s_str'][07],`7esn`:$1000 In $1000 In $`3esn`}).usn1?);"), - octest_legacy:ct_string("Cypher 12.999 Merge @usn6=Allshortestpaths(((:`1esn`))) On Match Set All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where $_usn4 Ends With usn1 Ends With $0).@usn5? =Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End,Reduce(`8esn`={usn1} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|0xabc[.e0]).`3esn`! =Reduce(`3esn`=12.0[123.654][Count(*)],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|`1esn` =~\"d_str\")[..Case When $`` Is Not Null Then 12[1.e1..{_usn3}][1.e1..1.0] When 7[True..][2.12..] Then $_usn4 Is Not Null Is Not Null End][..Case When $#usn8[$`2esn`..][{`2esn`}..] Then 0X7[1000..{`1esn`}] When {#usn8}[{7}] Then 07 In `2esn` In 12e12 Else $`1esn` Ends With 9e1 Ends With $123456789 End],`3esn` =12.e12[0xabc];"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Remove [9e1[1000][{123456789}],$usn2[{@usn5}],0Xa Starts With {`6esn`} Starts With $usn1].`3esn`?,[`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]].#usn7? Load Csv With Headers From Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 2.12 Ends With $_usn3 Ends With `3esn`|{123456789} Contains $#usn8)[{`7esn`:$`6esn`[010..]}..] As @usn5 ;"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Start @usn5=Node:#usn8(#usn7=\"d_str\") ,`8esn`=Rel:`1esn`(@usn5='s_str')Where {@usn6}[{999}..][00..] Optional Match (#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})<-[`6esn`?{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}),usn2=(@usn6 :``:#usn8)<-[?:`8esn`{`3esn`:1.0 In Count(*)}]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}) Using Index _usn4:`5esn`(`6esn`) Using Scan `6esn`:`2esn` Union All With Distinct *,Extract(`8esn` In 01[2.12..`8esn`] Where {usn2}|$0[12.e12..]) =~Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null|7 Ends With $`4esn`) =~(usn1 {`2esn`})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->(:_usn3:_usn3{`4esn`:12e12 Ends With {usn1}})<-[`7esn`?:`8esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}) Order By {_usn3}[{12}..$_usn4][`5esn`..$`5esn`] Asc,123.654 Contains $`4esn` Contains 1.0 Descending Limit $1000[999] Match (usn2 :#usn7);"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain With Distinct $123456789 Ends With $999 Ends With {999},7[$`8esn`..123456789][$usn1..$usn1] As `5esn`,{#usn7}[`2esn`..] Order By $`6esn`[010..] Ascending Skip 1e1 In \"d_str\" In `7esn` Limit Case Count ( * ) Contains 07 When {7}[..12e12][..Count ( * )] Then 9e12 Is Not Null Is Not Null When $`2esn` Then 1.0 Contains $_usn4 Else _usn4 Contains 2.12 End[Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`2esn`} Ends With {`7esn`})..] Detach Delete 123456789[$1000..$#usn7],#usn8 Is Not Null Union All Unwind 0X7[1000..{`1esn`}] As `4esn` Return Distinct `4esn` =~$`5esn`,$`1esn` Starts With {`8esn`} As _usn3,None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`])[Any(`3esn` In {7} Is Null Where {`4esn`} =~{7} =~{`7esn`})..][Extract(`2esn` In `1esn` =~\"d_str\" Where $_usn4[1.e1]['s_str']|usn1[`5esn`..$7])..] As `7esn` Skip [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where False|{`1esn`}[12.0..`2esn`][@usn6..{usn1}]] =~Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 00[{`8esn`}..][{`8esn`}..]|{0}) =~{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}} Start `7esn`=Relationship:`3esn`(`6esn`='s_str') Where 0Xa =~123456789 =~_usn4 Union All Optional Match (({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}]->({`7esn`:7[{0}..{_usn4}]})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(usn2 {``:01[{@usn5}]})),`5esn`=Shortestpath((((`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})<-[@usn6:@usn5 *0Xa]->({`3esn`:9e1[2.12..{#usn8}]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})))) Using Scan `1esn`:`3esn` Where 7[..999][..{#usn8}] Foreach(`8esn` In $`2esn` Ends With 1000 Ends With `6esn`| Load Csv With Headers From $#usn8 =~{@usn5} As usn2 Fieldterminator 's_str') Merge (usn2 :usn2)-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->({``:12.e12[$_usn3..],_usn3:$`6esn`[010..]})<-[_usn3?:`5esn`]-({`7esn`:{999}}) On Match Set Allshortestpaths((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})).`8esn`? =123456789 Ends With 12.e12 Ends With $`7esn`,{usn2:{`3esn`} In 0X7,_usn3:7 Starts With {@usn6} Starts With $``}.`8esn` =7 Ends With $`4esn`,All(#usn8 In 7[..999][..{#usn8}] Where .e0[..$`8esn`]).@usn5! =`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) In [#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]|@usn6 Contains $1000 Contains {`7esn`}] In Filter(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]);"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Drop Constraint On(`3esn`:`2esn`)Assert Exists(Reduce(usn2=0.e0 In $#usn7 In $_usn3,`3esn` In {7} Is Null|{12} Is Null Is Null).`7esn`)"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Drop Constraint On(`4esn`:`2esn`)Assert Exists((`6esn` :@usn6:#usn8)-[`1esn`?:`8esn`]->(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})._usn3!)"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Using Periodic Commit Load Csv With Headers From _usn4 Contains 2.12 As #usn8 Merge `8esn`=Allshortestpaths((`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})) With Distinct $@usn5 Contains 0xabc Contains {#usn7},Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))) As _usn3 Limit {`3esn`}[@usn6..0Xa][{12}..0Xa]"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Create Constraint On(_usn3:_usn4)Assert All(#usn7 In {``} Is Not Null Where @usn5 In {`7esn`} In `2esn`).`5esn`? Is Unique"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Create Constraint On(#usn7:`2esn`)Assert Exists(Allshortestpaths(((:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}))).`3esn`);"), - octest_legacy:ct_string("Cypher Create `2esn`=Shortestpath(((usn2 :`6esn`{#usn7:Count ( * ) Contains 07})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))),Allshortestpaths(((`8esn` )-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})<-[ *..12]->(#usn8 {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]}))) Union Optional Match Shortestpath((({`5esn`:$#usn8 Ends With $`2esn` Ends With $@usn6})<-[`4esn`?:usn2|`` *0X7..]->({_usn3:$`5esn`[`3esn`..]})-[@usn5?:`4esn`]-(:usn1{usn1:{`6esn`}}))) Create Unique @usn5=((`5esn` {`8esn`:1000[Null..{123456789}]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})-[:@usn6|`6esn`{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}]->(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})),`4esn`=Allshortestpaths(((:`2esn`:usn1)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})));"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 With (`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})-[:`6esn`|`5esn`{`8esn`:$0 Ends With 12.0}]->(`5esn` {`4esn`:7[$`2esn`..{`5esn`}],@usn6:{7} Is Null}) Contains Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) Contains Case 9e12 Is Not Null Is Not Null When 0[..usn2][..{@usn5}] Then 0e0 Ends With 1.e1 Ends With $`4esn` Else usn1 Is Null End Optional Match Shortestpath(((`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}))) Using Join On `8esn`,`2esn` Where `7esn`[..{usn1}] Delete Shortestpath((((`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`2esn` *..07]-(`1esn` {#usn7:{_usn4} In {12} In $0})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})))) In ({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}),[0x0 Is Null,{``} Ends With `7esn` Ends With 0.0,0X7[0e0..`7esn`][1000..0e0]] =~Any(`5esn` In \"d_str\" Is Null Is Null Where $`6esn` Is Null) =~[$12[True..][{0}..],usn1[`5esn`..$7]],1.0[`3esn`..][9e0..]"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Return 2.12 Is Null,$_usn3 Ends With 0x0 Ends With 12.0 Order By {`3esn`} In $@usn5 In _usn4 Asc Limit [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789] Ends With None(`2esn` In `1esn` =~\"d_str\" Where False Starts With {`5esn`}) Start #usn8=Rel:usn1(\"d_str\") ,@usn6=Node:_usn3({@usn5}) Foreach(`7esn` In $`1esn` Starts With {`8esn`}| Start #usn8=Rel:`7esn`(`6esn`={_usn4}) Match @usn5=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})),(`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]}));"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Create Constraint On(#usn7:`6esn`)Assert Exists((:`7esn`:_usn3)<-[`6esn`?:`4esn` *..01]->(`3esn` :#usn7{usn2:12.0 =~999 =~$_usn3,@usn6:{usn2}[$`3esn`..][{#usn7}..]})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}).`4esn`);"), - octest_legacy:ct_string("Explain Load Csv With Headers From {0}[\"d_str\"..07][0..'s_str'] As @usn5 Fieldterminator \"d_str\" Match _usn3=Allshortestpaths((`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})) Where {#usn7}[..9e12][..`8esn`] Remove Reduce(_usn4=12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],#usn7 In {``} Is Not Null|$`8esn`).@usn5,Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {123456789}[0xabc..]|{7}[$``][{@usn6}]).#usn7 Union All Start @usn5=Relationship:@usn5({1000}) Where $_usn4 Starts With 1e1 Unwind $1000 In $1000 In $`3esn` As usn2 Union All Foreach(@usn5 In {7}[..12e12][..Count ( * )]| Load Csv With Headers From 0e0 Starts With `2esn` Starts With $`` As `3esn` Fieldterminator \"d_str\" Detach Delete {123456789} Contains $#usn8) Remove `4esn`(#usn7 =~Count ( * ) =~``).#usn8!,{`4esn`:$`4esn`[Null..],`3esn`:.e12 Ends With _usn4}.`4esn`,[usn1 In @usn5 =~{`5esn`} =~`5esn` Where $0|1.0[0X7][{`5esn`}]]._usn3 Start `8esn`=Rel:`7esn`(_usn4={12}) ,`1esn`=Node:`2esn`(#usn8={123456789})"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 With *,@usn6(`5esn`[.e0..][07..]) Is Null Is Null,Count(*) In $12 As @usn6 Order By @usn6 In 1000 In $`` Desc,usn1[..00][..$#usn8] Descending Where `` Ends With 0Xa Ends With `2esn` Unwind 9e0[..999] As #usn8;"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Create Constraint On(_usn3:@usn6)Assert Exists(Reduce(``=`8esn` Ends With 999 Ends With .e12,`3esn` In {7} Is Null|1.0 Starts With 12e12 Starts With {`5esn`}).#usn7?);"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Create Constraint On(@usn5:`8esn`)Assert Exists([`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`]|123.654[{7}..]].@usn5)"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Match _usn3=((:`2esn`:usn1)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})) Using Join On `3esn`,`5esn` Using Join On @usn5,_usn3,_usn3 Remove [12.e12[9e12..{`6esn`}]].usn1!,Case When {``}[010..][0xabc..] Then usn1 Starts With usn1 Starts With $`` Else $#usn8 Ends With $`2esn` Ends With $@usn6 End.`6esn`? Union All Unwind 0e0[07] As `7esn` Remove {`8esn`:Count ( * ) =~$usn2 =~$usn2}.@usn6 Unwind $`1esn` Ends With 9e1 Ends With $123456789 As `8esn`"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Drop Constraint On()-[#usn7:@usn5]-()Assert Exists(Any(`2esn` In `1esn` =~\"d_str\" Where $`4esn` In Null In 0xabc)._usn3?);"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Start #usn7=Rel:_usn4(\"d_str\") Where `3esn`[`3esn`..][#usn8..] Unwind 1e1 Contains 0e0 As _usn3 Optional Match @usn6=Shortestpath((((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``})))),Shortestpath(((@usn6 :`8esn`:`7esn`)<-[`6esn`?:`4esn` *..01]->(`3esn` :#usn7{usn2:12.0 =~999 =~$_usn3,@usn6:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?]-(`7esn` :`5esn`))) Where _usn3[_usn3..][12.e12..];"), - octest_legacy:ct_string("Explain Create usn2=(`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[@usn5?:`3esn`|:#usn8{_usn4:{999}}]->(:#usn8:#usn8{``:1.0[0e0..0.e0]}),#usn8=((`3esn` {`8esn`:\"d_str\" Contains {123456789} Contains 01,@usn5:`1esn` In .e0 In {`3esn`}})-[#usn7?:`3esn`|:#usn8]->(`2esn` :usn1)-[ *..999{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(@usn5 {_usn3:`1esn` Contains {usn2} Contains $#usn8})) With Distinct #usn8 Starts With $_usn4 Starts With $7 As `6esn` Order By $0[$`1esn`..07] Descending Skip 9e1 Is Not Null"), - octest_legacy:ct_string("Explain Create Constraint On(_usn4:usn1)Assert Exists(Reduce(@usn5=$1000[999],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|0xabc[.e0]).`3esn`)"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Using Periodic Commit Load Csv With Headers From Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 2.12 Ends With $_usn3 Ends With `3esn`|{123456789} Contains $#usn8)[{`7esn`:$`6esn`[010..]}..] As @usn5 "), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Drop Constraint On(`2esn`:`4esn`)Assert [`4esn` In $`3esn` Is Not Null Where `7esn`[..2.12][..{usn1}]|#usn7 Contains _usn3 Contains {`3esn`}]._usn4! Is Unique"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Create Constraint On(usn1:usn2)Assert Exists(Shortestpath(({`7esn`:{999}})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})).``!);"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Using Periodic Commit Load Csv From 0e0[$1000][{usn1}] As usn2 Create _usn3=Allshortestpaths((((:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)-[usn1? *1000..00]->({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})))),``=(:`3esn`:@usn5{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`4esn` {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}) Match Allshortestpaths((:@usn5$`5esn`)<-[usn1?:`8esn` *..010]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})<-[ *1000..00{#usn7:Count ( * ) Contains 07}]->(usn1 :`3esn`:@usn5)),(`3esn` {@usn5:$usn2[9e0]})<-[usn1?:`7esn` *0xabc..{`3esn`:$#usn8[$`8esn`..{`8esn`}]}]->(:`4esn`{`8esn`:0.e0 In $#usn7 In $_usn3})-[`4esn`?:@usn5{`7esn`:{_usn4}[1000..{@usn5}],`5esn`:$@usn5 Is Not Null}]->({`8esn`:`3esn`[{0}][usn1]}) Where 12.e12[0xabc]"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Create Unique Allshortestpaths(((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]}))) Return *,$@usn5 =~1000 =~1000 Skip $`4esn`[010..`4esn`] Limit 00[$`2esn`..][`6esn`..] Union Return Distinct 0X7[1000..{`1esn`}] As `3esn`,$`2esn`[12.e12..][{`4esn`}..] Order By 0.0 =~999 Asc,$`5esn` In 0.e0 Asc,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) Ascending Limit Count ( * ) Is Null Merge Allshortestpaths(((:@usn5{#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})-[?:usn2|`` *0..{usn2:{12} Is Not Null,`6esn`:``[$`2esn`]}]-(`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}))) Create Unique Allshortestpaths((`1esn` {_usn4:1.e1[$`1esn`..@usn6][$0..$_usn3],#usn8:$@usn5[..12e12][..$123456789]})<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})),usn2=({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->(`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[:`3esn`|:#usn8 *1000..00{usn1:0[`7esn`..]}]-(usn1 :`3esn`:@usn5)"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Merge Shortestpath(((:_usn4{usn2:0X7 =~9e1})<-[? *..0x0]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}}))) On Match Set Reduce(`8esn`=Count ( * ) Contains 07,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|\"d_str\"[#usn8])._usn3! =[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12),Reduce(@usn6={`8esn`} Ends With `6esn`,`4esn` In $`3esn` Is Not Null|False =~$7 =~2.12).`8esn` =$`4esn`[`7esn`] On Create Set #usn8 =Extract(`5esn` In \"d_str\" Is Null Is Null)[Any(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``)][Case $`7esn` Is Null Is Null When {#usn7}[9e1..][{123456789}..] Then False =~1e1 =~0.e0 Else 1000 In {`8esn`} In 01 End],#usn7+=`4esn`[..Count ( * )][..{#usn7}],@usn5 =@usn6 In 1000 In $``"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` With *,`7esn` Is Null As `7esn`,None(`` In `` Is Not Null Is Not Null Where $`6esn` Is Null) Contains Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}))) Contains Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End Order By {usn2} Starts With $`8esn` Starts With Count ( * ) Asc,(:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(:_usn3:_usn3{``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Is Not Null Descending,.e0[..0X0123456789ABCDEF][...e12] Descending Limit {``}[...e12] Load Csv With Headers From ({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]})<-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})[(@usn5 :`6esn`)-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]->(:@usn6:#usn8)..{`2esn`:{_usn4} Starts With 0.e0 Starts With 0x0}] As `1esn` Load Csv From Any(#usn8 In 7[..999][..{#usn8}] Where .e0[..$`8esn`]) In Case When 123.654[0e0..$``][$`1esn`..$`8esn`] Then $_usn3['s_str'][07] When {`3esn`}[..07][..{`5esn`}] Then 's_str' Is Not Null Is Not Null End In {`7esn`:{1000}[{_usn3}..],usn2:2.12 =~False} As `7esn` Fieldterminator \"d_str\" Union All Unwind {``} Ends With `7esn` Ends With 0.0 As `6esn` Union All Start #usn7=Node:``(\"d_str\") ,`3esn`=Rel:`7esn`(`3esn`='s_str')Where 9e0 Start `7esn`=Node:_usn4(#usn7=\"d_str\") ,`5esn`=Rel:`4esn`(`2esn`=\"d_str\") Unwind $#usn8[$`8esn`..{`8esn`}] As `6esn`;"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Return Distinct $`5esn`[$`4esn`..{@usn6}][07..$@usn6] As usn2 Order By [usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*)) Ascending,Case When 1.0 In Count(*) Then False End Contains `1esn`(Distinct 0.e0 Starts With `2esn`) Contains Reduce(`1esn`=\"d_str\" Is Null Is Null,#usn7 In {``} Is Not Null|#usn7) Descending Skip Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End Limit All(#usn7 In {``} Is Not Null Where {_usn4}[...e1][..$7]) Is Null Is Null Match Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Using Index ``:usn1(@usn5) Using Index `3esn`:`5esn`(#usn7) Where $`5esn`[2.12..] Unwind $_usn4 In usn1 In $7 As usn1"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Create Constraint On(`3esn`:`1esn`)Assert Exists(Reduce(usn1=01 Contains {`8esn`} Contains 2.12,`5esn` In $999[0.0..]|0x0[`4esn`..'s_str'])._usn3!);"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 With (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As ``,12[..$`4esn`] As `7esn` Limit Count ( * ) =~$usn2 =~$usn2 Create Unique Allshortestpaths((`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})),(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})<-[`6esn`?{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}) Return Distinct Reduce(`7esn`=$`5esn` In $`` In 123.654,`` In 123456789 Ends With 12.e12 Ends With $`7esn`|{`7esn`} Is Null)[Reduce(_usn3=#usn8 Is Not Null,`` In 123456789 Ends With 12.e12 Ends With $`7esn`|1.0 Starts With 12e12 Starts With {`5esn`})] As `8esn`,$`8esn` Is Not Null Is Not Null As `1esn`,\"d_str\" Starts With $123456789 Order By `` Ends With $1000 Desc,Case {`8esn`} Ends With `6esn` When False Is Null Is Null Then 's_str' In 00 Else 123456789 Ends With $`6esn` Ends With $#usn7 End Starts With Case `1esn` =~0 =~$#usn7 When $#usn8[9e12..][.e1..] Then False =~$7 =~2.12 When {123456789}[9e12][{0}] Then 12.0 =~999 =~$_usn3 End Desc;"), - octest_legacy:ct_string("Cypher Match ``=Shortestpath(({`1esn`:`3esn`[{`2esn`}]})-[`3esn`?*{`8esn`:False Is Null Is Null}]->(:#usn7{_usn4:$`8esn` Contains 123456789 Contains $usn2})),usn2=Allshortestpaths(((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]}))) Using Join On #usn7,_usn4 Where $#usn8 Contains $`1esn` Contains {`6esn`} Return *,0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn` As `7esn` Limit 9e12[`6esn`..12.0] Union Optional Match Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))),`2esn`=(usn2 :`4esn`)-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(`` :_usn4) Where {123456789} Is Null Is Null Union Return *,12[..$`4esn`],Case When 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] Then {1000} =~0 =~123.654 When `8esn`[`4esn`..{#usn8}][$12..2.12] Then 00[$`7esn`] End Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`7esn` =~{`8esn`} =~$usn1) Contains [0.12 =~`5esn` =~`5esn`] Order By False[_usn3..`8esn`][$`8esn`..{`3esn`}] Ascending Limit _usn3 Starts With 12.e12 Starts With 0.12 Return Allshortestpaths((({`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})<-[?*..]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}))) Ends With Reduce(_usn3='s_str'[00][{`5esn`}],`4esn` In $`3esn` Is Not Null|Count ( * ) Contains `8esn` Contains .e1),$_usn4[0e0..][False..] As ``,$`6esn` Ends With Count(*) Order By {usn1} Is Not Null Is Not Null Desc,{usn2}[$`3esn`..][{#usn7}..] Ascending Limit {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]) Match Allshortestpaths((((#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)-[@usn5?:`4esn`]-(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})))) Using Scan ``:`2esn` Where 12.e12[$_usn3..]"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Optional Match `2esn`=Allshortestpaths((`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})),Shortestpath((((:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]->(:`4esn`{``:2.12 Is Not Null Is Not Null})))) Using Scan `4esn`:#usn7 Where 0.12 Contains 0X0123456789ABCDEF Contains .e0 Create Unique `8esn`=Allshortestpaths(((:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))) Union Merge Allshortestpaths(((:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`))) On Match Set (:usn1{usn2:0x0 Is Null,`5esn`:{usn2} =~12})<-[:`5esn` *0..{_usn4:7[$`2esn`..{`5esn`}]}]-(`5esn` {`4esn`:01 Is Null})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}).usn1 =2.12 Is Not Null Is Not Null,(:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[{`7esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4]}]-({`5esn`:$#usn8 Ends With $`2esn` Ends With $@usn6})<-[usn1:_usn4|:usn2]-(:_usn4{usn2:0X0123456789ABCDEF[123456789]}).usn2! =Single(#usn8 In {`5esn`}[.e1..``] Where 123.654[$`1esn`]) Is Not Null Is Not Null,[{_usn3}[12.e12],123456789 Ends With 01234567 Ends With 1.e1,True =~010].`8esn`? =9e1 Contains #usn7 Foreach(`3esn` In {`7esn`}[`6esn`][#usn7]| With Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where @usn6 Is Null Is Null)[(`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})..] As `3esn`,{`3esn`} In 0X7 Skip `1esn` In .e0 In {`3esn`} Limit Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End Create Unique #usn7=((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})),Shortestpath((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))))"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Remove ({#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(`7esn` {`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})-[`2esn` *0xabc..{`3esn`:$#usn8[$`8esn`..{`8esn`}]}]-({_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1}).``?,#usn7(Distinct).`3esn`!"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Drop Constraint On(`3esn`:`3esn`)Assert {`6esn`:#usn8[..{#usn7}],@usn5:`8esn`[`4esn`..{#usn8}][$12..2.12]}.`4esn`? Is Unique"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Create Constraint On()-[#usn8:``]-()Assert Exists(Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`6esn`}|{7}[..1.0][..9e0]).`7esn`);"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Create Unique Allshortestpaths((`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})),({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`) Return Case When usn1 Is Not Null Then $0[12.e12..] Else 7[{0}..{_usn4}] End[..Reduce(_usn3={@usn5} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{usn1}[0X0123456789ABCDEF])] As #usn8,$`7esn` =~7 =~12e12,$`8esn`[..{`2esn`}] Skip Reduce(`2esn`=$_usn3[.e0..$usn2],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$`7esn` Is Null Is Null)[Shortestpath((({``})))..{@usn6:{`6esn`} =~$999}] Limit `8esn`[$`8esn`..{`4esn`}] Create `3esn`=Shortestpath(((:usn1{usn1:{`6esn`}})-[@usn6?:`3esn`|:#usn8 *123456789..]->(:_usn3:_usn3{`7esn`:$`1esn` =~0X7})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``}))),@usn6=Allshortestpaths(((:`1esn`)));"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Drop Constraint On(``:``)Assert Reduce(#usn8=#usn7 Is Null Is Null,`8esn` In 01[2.12..`8esn`]|0Xa[2.12]).`7esn`? Is Unique;"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Drop Constraint On()-[`4esn`:#usn7]->()Assert Exists(Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8).`3esn`?)"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Create Constraint On(_usn3:_usn4)Assert Exists([@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 01[2.12..`8esn`]|$`2esn`[2.12..'s_str'][{@usn6}.._usn4]]._usn3);"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Drop Constraint On(usn2:usn2)Assert [2.12 Contains usn2 Contains True].`8esn` Is Unique;"), - octest_legacy:ct_string("Cypher 12.999 Drop Constraint On(`3esn`:`2esn`)Assert [`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`]|{`7esn`}[..$@usn5][..$#usn8]].`5esn`! Is Unique;"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Drop Constraint On()<-[@usn6:usn2]-()Assert Exists(Extract(_usn3 In {`3esn`}[`2esn`]).`7esn`!)"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Create #usn8=((:`4esn`{`7esn`:$0[..9e1],usn1:{_usn4} Ends With `6esn`})-[`1esn`? *123456789..{_usn4:$@usn6 Ends With $_usn4 Ends With 0.12}]->(_usn4 :#usn7{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})),((usn1 {`7esn`:{999}})) Load Csv From {_usn4} Is Not Null Is Not Null As usn2 Return Extract(`8esn` In 01[2.12..`8esn`] Where {usn2}|$0[12.e12..]) =~Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null|7 Ends With $`4esn`) =~(usn1 {`2esn`})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->(:_usn3:_usn3{`4esn`:12e12 Ends With {usn1}})<-[`7esn`?:`8esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}) As `1esn`,Extract(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null)[..Any(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})] Order By $`1esn`[{`2esn`}..] Desc,$12 Starts With $`8esn` Starts With $`1esn` Descending Union All Delete .e12[$usn2..][12.e12..],Allshortestpaths(((`7esn` {`2esn`:$`6esn`[123456789..12][True..{`3esn`}],#usn7:$_usn3[Count(*)]})-[#usn8? *..07$_usn4]->(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}))) Is Not Null Is Not Null,1.e1[$`1esn`..@usn6][$0..$_usn3]"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Foreach(`8esn` In $`3esn` Is Not Null Is Not Null| With Distinct *,{``}[$#usn8..$usn1] As `3esn` Order By $usn2[$`2esn`..`4esn`] Ascending,$`6esn`[{_usn3}..$`4esn`][$_usn4...e12] Asc,True[{_usn4}..][False..] Ascending Where \"d_str\" Contains {123456789} Contains 01 Start `3esn`=Relationship:#usn7('s_str') ) Union Load Csv From All(#usn8 In {`5esn`}[.e1..``] Where {_usn3}[..\"d_str\"][..`5esn`])[..Allshortestpaths((`5esn` :`4esn`))] As @usn5 Load Csv From None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {@usn6}[{999}..][00..]) Ends With Shortestpath((`6esn` {_usn4:0Xa =~Null =~$``})<-[``? *0X7..]->(`` :`1esn`)) Ends With Reduce(_usn3={7}[..1.0][..9e0],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|`1esn` Contains {usn2} Contains $#usn8) As `` Fieldterminator 's_str' Union Create Unique (((`6esn` :@usn5)-[usn1?:_usn3|_usn3]-(usn2 :#usn7)<-[#usn8:@usn6|`6esn`{`8esn`:True[00][0Xa]}]->(`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]}))),Allshortestpaths((((:_usn4{usn2:0X0123456789ABCDEF[123456789]})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)))) Optional Match ({`3esn`:usn1 Is Null Is Null})-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]-({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`4esn` {@usn6:{12}[..0X7]}) Using Join On _usn3,@usn5"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Create Constraint On()-[`6esn`:`3esn`]-()Assert Exists(Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn3}[..\"d_str\"][..`5esn`]).`4esn`!);"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Create Constraint On(@usn6:_usn4)Assert Exists([`6esn` In 0Xa,`8esn` Contains $usn1 Contains $12].`2esn`)"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Create Constraint On(@usn5:`2esn`)Assert Exists(Filter(`` In `` Is Not Null Is Not Null Where 1.0 In Count(*)).@usn5?)"), - octest_legacy:ct_string("Cypher 12.999 With Distinct 07[$123456789..] Order By {7}[$7..$``][{``}..{7}] Descending,$_usn3[Count(*)] Desc Union All Foreach(`8esn` In $`3esn` Is Not Null Is Not Null| With Distinct *,{``}[$#usn8..$usn1] As `3esn` Order By $usn2[$`2esn`..`4esn`] Ascending,$`6esn`[{_usn3}..$`4esn`][$_usn4...e12] Asc,True[{_usn4}..][False..] Ascending Where \"d_str\" Contains {123456789} Contains 01 Start `3esn`=Relationship:#usn7('s_str') )"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Using Periodic Commit Load Csv From \"d_str\"[..{@usn5}][..``] As `6esn` Fieldterminator 's_str' Unwind $usn2[9e0] As `5esn`;"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Delete 0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,$12 Starts With $`8esn` Starts With $`1esn`,123456789[_usn4..][{999}..] Union All Merge Allshortestpaths((_usn4 )<-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:usn2)<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})) Start `8esn`=Rel:`7esn`(_usn4={12}) Where 0.12 Starts With $`5esn` Starts With 12 Merge `1esn`=((`8esn` )) On Create Set usn1:`4esn`,usn2+=0Xa[2.12],`7esn`:usn1 On Create Set `4esn` =[1000 =~@usn6 =~0x0] Starts With {#usn8:$`7esn` =~{`8esn`} =~$usn1,`7esn`:0xabc[01..{999}][{7}..{`7esn`}]} Starts With `7esn`(Distinct 123.654[`3esn`..]);"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Merge `5esn`=(_usn4 :`5esn`)-[ *0..]->(`` :usn2) With Distinct *,1e1 Contains 0e0 Skip @usn6 Contains Null Contains $`7esn` Limit $0 Where 0Xa Starts With {`6esn`} Starts With $usn1 Foreach(`2esn` In 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3]| Create (#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})) Union Optional Match (({`7esn`:\"d_str\" Starts With $123456789})-[`6esn`? *0..]-(`5esn` :`2esn`:usn1)<-[? *..999]->(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})),(_usn3 {@usn5:`5esn`[{`4esn`}..`2esn`],_usn3:07 =~01}) Using Scan `6esn`:`2esn` Using Index _usn4:`5esn`(`6esn`) With *,#usn7(usn2 Is Not Null Is Not Null,$`6esn` Ends With Count(*)) Is Null Is Null As `6esn`,#usn8 In $@usn6 Skip 0e0 Contains Null Where $1000[Null][`4esn`] Union Remove Reduce(@usn5={@usn6}[{999}..][00..],`2esn` In `1esn` =~\"d_str\"|1.0 =~7 =~{usn2}).`8esn`? Return *,1e1 Contains 0e0 Order By `6esn`({usn1} Ends With $0) Is Not Null Desc,$#usn7 Is Not Null Desc Limit None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null) Load Csv With Headers From Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where `5esn` Starts With $`2esn` Starts With $1000) Ends With Reduce(``=0.12 =~$0 =~$0,`2esn` In `1esn` =~\"d_str\"|9e12[`1esn`..][$`1esn`..]) As usn1 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Create Constraint On(``:``)Assert {`3esn`:$usn1 Ends With $`` Ends With $12,_usn4:12.e12[..Null][..$#usn8]}.`3esn`! Is Unique"), - octest_legacy:ct_string("Cypher `8esn`=#usn7 Cypher `7esn`=#usn8 Return *,$`7esn`['s_str'] As #usn8,Reduce(`3esn`=$0[..9e1],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|999 In {`3esn`} In usn2) Starts With Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Starts With Allshortestpaths((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})) As `` Limit {@usn5} =~Count ( * ) =~12.0 Union Load Csv From 9e1[2.12..{#usn8}] As `2esn` Unwind $@usn5 Is Not Null Is Not Null As `8esn` Start `1esn`=Rel:`4esn`(`4esn`='s_str') Where 123456789 Is Null;"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Match #usn7=({@usn5:07[..True][..9e12]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}),Allshortestpaths((_usn4 :usn1)<-[`1esn`?:`4esn`]->(`5esn` :`4esn`)) Match `6esn`=((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})) Using Index usn2:@usn6(`5esn`) Using Scan `2esn`:_usn4 Where $@usn5 Contains 0xabc Contains {#usn7} Detach Delete {`3esn`}[`2esn`],{12} Ends With 0Xa Ends With $`6esn`,False[$usn1.._usn4][_usn4..{`3esn`}] Union With *,07 Is Not Null Is Not Null Delete {@usn6}[7] Foreach(`4esn` In {`6esn`}| Create Unique `8esn`=(_usn4 :usn2{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]})) Union Create Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null})))"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Create Constraint On()-[usn2:usn1]->()Assert Exists(All(#usn8 In {`5esn`}[.e1..``] Where $`3esn` Is Not Null).#usn8?);"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Drop Constraint On(@usn6:#usn8)Assert Exists(exists(Distinct 0X7[..2.12],07 =~01).`3esn`)"), - octest_legacy:ct_string("Cypher usn2=`3esn` Cypher @usn6=`5esn` Detach Delete All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $`` Is Not Null)[..Reduce(@usn6=$`4esn`[..$`3esn`][..0.0],`3esn` In {7} Is Null|$`7esn` =~{`8esn`} =~$usn1)][..Reduce(@usn6={`3esn`} Is Not Null Is Not Null,`` In `` Is Not Null Is Not Null|$`3esn` Is Null)],12.e12[$_usn3..] Union Foreach(usn1 In Case When False Then 0.e0 Ends With $#usn7 Ends With $7 When {@usn6}[{999}..][00..] Then `5esn` Ends With {``} Ends With 12.e12 Else 123.654[$`1esn`] End[Reduce(#usn8=$`6esn` Ends With Count(*),`2esn` In `1esn` =~\"d_str\"|_usn4 Contains 2.12)..]| Start @usn6=Relationship:@usn6(`4esn`='s_str') Remove (:`1esn`{_usn4:{999}})-[`4esn`?:_usn4|:usn2 *..01]->(`7esn` :`8esn`:`7esn`{#usn8:01234567[usn2..$12][{`7esn`}..$usn2]}).``!,Any(#usn8 In {`5esn`}[.e1..``] Where 0X7[..2.12])._usn4,{#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12}.`5esn`?) Delete {_usn4} =~$_usn4 Union All Optional Match Shortestpath(((:@usn6:#usn8{`4esn`:{`7esn`} Is Null,_usn4:$123456789 Ends With {`1esn`} Ends With $`4esn`}))),`1esn`=Allshortestpaths(((:@usn5)-[:#usn7{`2esn`:.e12 Ends With _usn4}]-(usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1))) Using Join On _usn4,`4esn`,`5esn` Create _usn4=Shortestpath(((:`1esn`{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789}))),`3esn`=((:`5esn`{#usn7:{123456789} Contains $#usn8})) Remove Filter(`2esn` In `1esn` =~\"d_str\" Where $`4esn` In Null In 0xabc).`6esn`?,None(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`]).`4esn`!"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Match @usn5=Allshortestpaths((`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[:`3esn`|:#usn8 *7..12{@usn5:_usn4 Starts With $_usn4 Starts With 12.e12}]->(`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null})),`2esn`=Shortestpath(((#usn8 {_usn4:00[`2esn`..12][123456789..0.e0],`8esn`:0x0[`4esn`..'s_str']}))) Using Join On `5esn`,#usn7 Create ((@usn5 :usn1)<-[`5esn`? *7..12{`5esn`:{999},_usn3:$`5esn`[2.12..]}]->(:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})-[_usn4?:_usn4|:usn2 *..999]-({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})),``=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))) Union All Unwind 123456789 Ends With 0.12 Ends With `` As _usn3 Remove [{12} Contains {123456789} Contains `4esn`,1.e1[`8esn`][00],1.0[$`1esn`..][$123456789..]]._usn4?,Reduce(_usn3=123456789[#usn8..False],_usn3 In {`3esn`}[`2esn`]|123.654 Contains $`4esn` Contains 1.0).#usn8? Remove Case When $#usn8 Ends With $`2esn` Ends With $@usn6 Then $1000[`2esn`..`5esn`][1e1..1.e1] Else {`4esn`} =~{7} =~{`7esn`} End._usn3?,{`8esn`:{usn2} =~12}.@usn5,`2esn`(Distinct 7[$`8esn`..123456789][$usn1..$usn1],1e1 In 123.654 In `3esn`)._usn4!"), - octest_legacy:ct_string("Cypher Create Unique (`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[`8esn`?:@usn6|`6esn`]-(`2esn` :`6esn`) Merge @usn5=(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(`2esn` :`8esn`:`7esn`) Unwind $`4esn`[`7esn`] As _usn4 Union All Create Unique #usn8=(:`4esn`{``:2.12 Is Not Null Is Not Null}),Allshortestpaths(({_usn3:$`5esn`[`3esn`..]})-[usn1? *0X0123456789ABCDEF]->(:`8esn`:`7esn`)) Union Create Unique ((`3esn` )) Unwind {`5esn`}[0..`8esn`][0..Null] As usn1"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Foreach(`2esn` In `5esn`(Distinct {_usn4} Ends With `6esn`,$`4esn` In Null In 0xabc) Ends With Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Ends With All(`3esn` In {7} Is Null Where Count ( * ) Contains 07)| Delete {`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]} Starts With [False] Starts With Filter(#usn8 In 7[..999][..{#usn8}] Where $_usn3[.e0..$usn2])) With {usn2}[$`3esn`..][{#usn7}..] As `1esn`,[$0] In [`2esn` In `1esn` =~\"d_str\" Where {0} Ends With $_usn3 Ends With $`7esn`|{999} Contains .e0 Contains 12.0] In None(`2esn` In `1esn` =~\"d_str\" Where {`7esn`}[..$@usn5][..$#usn8]) As usn1,0X7[123.654..@usn6] As _usn3 Limit usn2(7[..999][..{#usn8}])[[$_usn4 Contains Null Contains #usn8,{#usn8}[{7}],{@usn6}[{999}..][00..]]..] Where $#usn7 Is Null Merge _usn4=Shortestpath(((:`1esn`{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789}))) On Match Set `2esn` =$``[1.0],`8esn` =010[..12e12][..12e12],`5esn` =Extract(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|{@usn5} Is Null Is Null)[Case When $0[..9e1] Then Count(*)[..usn2][..usn2] When {`2esn`} Starts With 0.0 Starts With {usn1} Then 0e0 In @usn5 Else 01 =~{_usn3} =~`3esn` End.._usn3(1.0 In Count(*),0[{usn2}..][$`6esn`..])][count(Distinct $12[Null..Count(*)][{`5esn`}..{999}],$`4esn`[`7esn`])..Case When $123456789 Ends With $999 Ends With {999} Then `3esn`[{usn1}] When #usn7 =~Count ( * ) =~`` Then $_usn4 Starts With 1e1 End] On Match Set `` =[Count(*) Ends With 12.0 Ends With 12,9e0[{0}..{`3esn`}][\"d_str\"..0Xa]][..Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``])][..{usn1:$_usn3[..1000],`7esn`:{1000} =~0 =~123.654}],`5esn`+=Count ( * )[0.12...e1] Union All Load Csv From `5esn`[_usn4..] As @usn5 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Using Periodic Commit Load Csv With Headers From False[..``] As usn1 Fieldterminator 's_str' Unwind {``}[010..][0xabc..] As `` Match (((usn2 {``:01[{@usn5}]})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})-[`6esn`? *0..]-(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12}))) Using Index _usn4:`8esn`(#usn7);"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Create Constraint On()-[`3esn`:`3esn`]->()Assert Exists([@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 01[2.12..`8esn`]|$`2esn`[2.12..'s_str'][{@usn6}.._usn4]]._usn3);"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Using Periodic Commit Load Csv From {999}[_usn4..] As @usn6 Fieldterminator \"d_str\" Create usn1=Shortestpath((()<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[?:`2esn` *00]->(`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}))) Return Distinct *,07[$#usn7..{1000}],0X0123456789ABCDEF =~1e1 =~{`4esn`} Order By $`5esn`[2.12..] Asc"), - octest_legacy:ct_string("Explain Match _usn3=(((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5))),(:``:#usn8{_usn3:$`7esn` Is Null Is Null}) Using Scan `4esn`:#usn7 Using Scan `5esn`:usn2 Union All Merge `4esn`=Allshortestpaths((({`3esn`:.e1[..usn2][..`8esn`]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`1esn`{_usn4:{999}}))) Match ((_usn4 )) Using Index `3esn`:@usn5(`2esn`) Using Scan _usn3:`1esn` Where {usn1}[0X0123456789ABCDEF] Union All Merge `5esn`=(((:@usn6:#usn8{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})<-[`6esn`?{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}]->(`4esn` {_usn4:0Xa =~Null =~$``})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))) On Match Set _usn4+=.e1 Ends With 1e1 Ends With @usn5,#usn8+=1.e1[`8esn`][00],`1esn` =[1000 =~@usn6 =~0x0] Starts With {#usn8:$`7esn` =~{`8esn`} =~$usn1,`7esn`:0xabc[01..{999}][{7}..{`7esn`}]} Starts With `7esn`(Distinct 123.654[`3esn`..])"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Start `4esn`=Node:_usn4(#usn7=\"d_str\") ,``=Relationship:usn2(`3esn`='s_str')Where #usn7 Is Null Is Null Create ``=Shortestpath(((usn2 :`4esn`)-[_usn3:#usn8|`1esn`{_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]}]->(@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:`5esn` *0..{_usn4:7[$`2esn`..{`5esn`}]}]->()));"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Drop Constraint On(`3esn`:`5esn`)Assert Exists(`4esn`().`6esn`?)"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Create Constraint On(#usn8:#usn7)Assert Exists(Extract(#usn8 In {`5esn`}[.e1..``] Where `6esn`[..$@usn6]|7 Starts With {@usn6} Starts With $``).usn2!);"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Drop Constraint On()-[`4esn`:#usn8]->()Assert Exists(Extract(`5esn` In \"d_str\" Is Null Is Null Where #usn8|$0[$`1esn`..07]).#usn7)"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Create Constraint On(usn1:`5esn`)Assert Exists(None(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 7[True..][2.12..])._usn4?)"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Drop Constraint On(`6esn`:usn1)Assert [$@usn5 Starts With $1000,0x0 Is Null,`1esn`[{usn1}..``][7..$#usn8]]._usn3 Is Unique;"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Return Shortestpath(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})))[#usn7(Distinct $`5esn`[`3esn`..])..{``:0Xa Starts With {`6esn`} Starts With $usn1}] Limit Single(`3esn` In {7} Is Null Where Count ( * ) Contains 07) Contains None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Delete 0x0 =~$usn2 Union Start ``=Rel:#usn8(_usn3='s_str') ,`5esn`=Rel:`8esn`({usn1})Where `8esn`[{123456789}..] Return Distinct Filter(`4esn` In $`3esn` Is Not Null Where {`6esn`}) =~{_usn3:{`3esn`} Is Not Null Is Not Null} As `7esn`,.e0[12.e12..] As `3esn`,0e0 =~`6esn` =~123456789 As @usn5 Skip {12} Is Not Null Limit $@usn5 Starts With $1000 Foreach(`2esn` In $@usn5 Starts With {@usn5} Starts With 9e0| Return Distinct 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] Skip $`5esn`[2.12..] Limit {_usn4}[`3esn`][12.0] Create Unique ((({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})<-[`5esn`:#usn7 *00{#usn7:{999} Starts With {0}}]-(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]})-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))),Allshortestpaths((@usn6 :_usn3:_usn3)-[?{`3esn`:7[{0}..{_usn4}]}]->(`7esn` :_usn3:_usn3)-[?:usn2|`` *..010{`4esn`:{`4esn`} Starts With $usn2 Starts With $1000,`7esn`:$@usn6 Contains 07}]->(:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}))) Union All Load Csv From 9e12[0.0..][$12..] As _usn4 Fieldterminator \"d_str\";"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Create Constraint On()-[``:`2esn`]-()Assert Exists(#usn7(0.e0 Starts With `2esn`).`6esn`!);"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Drop Constraint On(``:_usn3)Assert [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {123456789}[0xabc..]].`2esn`? Is Unique;"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Using Periodic Commit Load Csv With Headers From Single(#usn8 In 7[..999][..{#usn8}] Where $_usn3[.e0..$usn2])[Reduce(`8esn`=$#usn8 Ends With $`2esn` Ends With $@usn6,`2esn` In `1esn` =~\"d_str\"|$`8esn`[1000..0Xa])][[$123456789 =~{`6esn`} =~\"d_str\",01234567 Ends With .e12 Ends With $#usn7]] As `` Fieldterminator 's_str' Load Csv From {#usn7}[True][.e1] As `` Fieldterminator \"d_str\" Return Distinct @usn6 Starts With `6esn` Starts With $`1esn` As `7esn`,usn1 In 7 In {123456789} As `5esn`,`8esn` Ends With 999 Ends With .e12 Order By 0.12[..False][..{1000}] Asc;"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Load Csv From $`2esn` Is Null Is Null As `3esn` Merge #usn8=Allshortestpaths((#usn8 :@usn5)) On Create Set $`1esn`.``? =[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12) Union All Start _usn3=Relationship:`8esn`({`1esn`}) ,`6esn`=Relationship:`2esn`({0}) With Distinct *,'s_str'[$_usn3..][Count ( * )..] As #usn7 Limit {_usn3}[12.e12] Where 0e0 Starts With 2.12 Starts With $12 Load Csv From {_usn3}[..\"d_str\"] As `3esn` Union Create `8esn`=((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})) Load Csv From 1000 =~@usn6 =~0x0 As #usn7 Remove Reduce(_usn4=12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],#usn7 In {``} Is Not Null|$`8esn`).@usn5,Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {123456789}[0xabc..]|{7}[$``][{@usn6}]).#usn7;"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Merge _usn3=((@usn5 {usn2:0.e0[123.654][01]})-[`3esn`:#usn7]->(@usn6 {_usn3:{#usn7} Is Not Null Is Not Null})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})) On Match Set `2esn`+=`8esn`[9e12][$`1esn`] Union All Delete .e0 Ends With 0.12 Unwind {0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]] As `2esn` Union All Remove 0xabc.`1esn`?,Allshortestpaths(((($#usn8)-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)<-[? *7..12]->({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})))).``?,(_usn3 {`5esn`:12.e12[0xabc],`2esn`:{`7esn`}[..$@usn5][..$#usn8]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]->(:`4esn`{``:2.12 Is Not Null Is Not Null}).`2esn`!;"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Create Constraint On(_usn4:_usn3)Assert [`5esn` In $999[0.0..] Where $`3esn`[..$123456789][..$`1esn`]|7[..999][..{#usn8}]]._usn4? Is Unique"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Drop Constraint On(`3esn`:`3esn`)Assert Exists([#usn7 In {``} Is Not Null Where @usn5 In {`7esn`} In `2esn`].#usn7!);"), - octest_legacy:ct_string("Explain Create Constraint On()-[`2esn`:usn2]-()Assert Exists({@usn5:123.654[...e0],`8esn`:07 =~01}.usn1?);"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Create Constraint On()-[@usn5:@usn6]->()Assert Exists(Reduce(`7esn`=$#usn8[$`2esn`..][{`2esn`}..],#usn7 In `2esn`[..$#usn8][..Count(*)]|$123456789 Ends With {`1esn`} Ends With $`4esn`).`3esn`?);"), - octest_legacy:ct_string("Cypher 12.999 Create Constraint On()-[`1esn`:usn2]-()Assert Exists(Filter(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0).usn2)"), - octest_legacy:ct_string("Explain Drop Constraint On()-[`5esn`:``]-()Assert Exists({`4esn`:12e12 Ends With {usn1}}._usn3!);"), - octest_legacy:ct_string("Cypher Unwind Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})] As #usn8 Return Distinct {123456789} =~`8esn` =~@usn5 As `5esn` Order By {`4esn`} In 1.0 Descending,`8esn`(Distinct $#usn7 Is Null) Ends With Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]) Ends With Shortestpath(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))) Descending Skip {`4esn`}[#usn7..$123456789][{7}..usn2] Delete 123.654 Is Not Null Union All Match (({`1esn`})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})<-[`3esn`:#usn7]-(:#usn8:#usn8{_usn4})) Using Index `3esn`:_usn3(`6esn`) Where `7esn`[..{usn1}] Start ``=Rel:#usn8(`5esn`=\"d_str\") ,`3esn`=Relationship:#usn7('s_str')"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Using Periodic Commit Load Csv With Headers From 0Xa[..{`4esn`}][..12.0] As `7esn` Fieldterminator \"d_str\" Detach Delete 1.0 =~7 =~{usn2},{`1esn`}[{123456789}][{0}],{_usn4}[{`5esn`}..{1000}][9e1..{1000}]"), - octest_legacy:ct_string("Explain Load Csv From 12e12 Ends With `5esn` Ends With {@usn6} As `` Fieldterminator \"d_str\" Create Shortestpath((({@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}))) Merge `7esn`=Shortestpath(((`5esn` :_usn4{7})<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})-[:`4esn` *0xabc..{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(`3esn` :`5esn`))) On Create Set `1esn` =12.e12[``][{`2esn`}],`8esn`+=00[{`8esn`}..][{`8esn`}..],#usn7+={_usn4} Ends With `6esn` Union Match Allshortestpaths((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(`2esn` :`8esn`:`7esn`)),(#usn7 :@usn5{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]}) Where True In 0e0 Load Csv With Headers From _usn4 Contains 2.12 As #usn8 Foreach(@usn5 In `5esn` Starts With 010 Starts With 0.0| Create Shortestpath((:`4esn`{``:2.12 Is Not Null Is Not Null})),Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[`3esn`? *123456789..]->({_usn3:$`5esn`[`3esn`..]}))) Optional Match ``=Shortestpath((`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})),Allshortestpaths(((:_usn4)))) Union Start _usn4=Node:usn2(`8esn`='s_str') ,#usn7=Node:usn2({12})Where $`3esn` Is Not Null;"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Return Distinct {``}[$#usn8..$usn1] As `3esn`,{`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]} Starts With [False] Starts With Filter(#usn8 In 7[..999][..{#usn8}] Where $_usn3[.e0..$usn2]) As _usn3,$`6esn`[{999}..9e0] Order By Case When @usn5 Is Null Then 2.12 Ends With $_usn3 Ends With `3esn` Else $1000 Is Null End[Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}])..None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa)][Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01|usn2 Is Null)..Case When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` End] Descending,``[12.0..0e0][{`5esn`}..`7esn`] Asc,Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End Descending Skip {_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] Create (#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null}) Create Unique Allshortestpaths(((usn2 :`6esn`{#usn7:Count ( * ) Contains 07})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))),`3esn`=({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]->(_usn3 :`5esn`) Union Merge (#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(#usn7 ) On Create Set `6esn` =#usn7(usn2 Is Not Null Is Not Null,$`6esn` Ends With Count(*)) Is Null Is Null,Case $usn1 =~`` When 07 Contains 0X7 Contains $`8esn` Then 123456789[{123456789}..'s_str'] When $_usn3[Count(*)] Then $`5esn` In $`` In 123.654 End.`5esn`? =Reduce(`2esn`=$`5esn` In $`` In 123.654,#usn8 In {`5esn`}[.e1..``]|$12[True..][{0}..]) =~Shortestpath((((:#usn7)<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})))),`5esn`+=2.12 =~Count(*) Create Unique `8esn`=Allshortestpaths((((:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?{usn1:0[`7esn`..]}]->({usn1:{`7esn`}[`6esn`][#usn7],usn1:{999} Starts With $999})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))),_usn4=(`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null})<-[``?]->(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}) Create Unique Allshortestpaths(((`8esn` )<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}))),`6esn`=(_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]});"), - octest_legacy:ct_string("Cypher Load Csv With Headers From Extract(#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12) Ends With [False =~$7 =~2.12,$`4esn` In Null In 0xabc,{`7esn`} Starts With $123456789 Starts With $@usn6] As @usn6 Fieldterminator 's_str' Load Csv With Headers From {`2esn`} Ends With 12.0 As _usn4 Unwind {`6esn`} =~$999 As `8esn` Union Merge ((#usn7 :``:#usn8{`2esn`})<-[usn1?:#usn8|`1esn`]->({@usn5:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],@usn6:$0})<-[@usn6?:`5esn`]-(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})) On Create Set #usn7+=01 =~{_usn3} =~`3esn` On Match Set #usn7:@usn5 Union Delete $_usn4 Is Null Is Null,.e0 Starts With 0 Starts With 0.e0,$`1esn`[1.0..][_usn3..] Foreach(`3esn` In {`7esn`}[`6esn`][#usn7]| With Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where @usn6 Is Null Is Null)[(`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})..] As `3esn`,{`3esn`} In 0X7 Skip `1esn` In .e0 In {`3esn`} Limit Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End Create Unique #usn7=((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})),Shortestpath((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))))) Create Unique _usn4=(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})<-[ *..010{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}}]->(:_usn4$@usn5)<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]->(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc}),(((usn1 :`7esn`:_usn3{_usn4:{999}})-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]-(:`1esn`{`4esn`:12e12 Ends With {usn1}})-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})));"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Detach Delete $@usn5 Starts With {0} Starts With 12 Foreach(`7esn` In {@usn6} Is Null Is Null| Return {`4esn`:`7esn` Is Null}[{`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]}..] As #usn8 Order By 9e12[`1esn`..][$`1esn`..] Ascending,Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]] Ascending,9e1 Is Not Null Asc Unwind None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`])[Any(`3esn` In {7} Is Null Where {`4esn`} =~{7} =~{`7esn`})..][Extract(`2esn` In `1esn` =~\"d_str\" Where $_usn4[1.e1]['s_str']|usn1[`5esn`..$7])..] As usn2);"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Using Periodic Commit Load Csv With Headers From 123456789 Ends With 01234567 Ends With 1.e1 As #usn8 Fieldterminator \"d_str\" Create `1esn`=(`5esn` :_usn4{7})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}),((`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8}));"), - octest_legacy:ct_string("Explain Create Constraint On(`7esn`:usn1)Assert [0.12 =~$0 =~$0,Count ( * ) Contains {`1esn`} Contains 07].`2esn`! Is Unique;"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Start @usn5=Relationship(*) Create Unique `8esn`=({@usn5:07[..True][..9e12]})<-[? *1000..00]->(#usn8 {#usn7:`4esn` Ends With 07 Ends With {`3esn`},`3esn`:{0} In $_usn3})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Load Csv With Headers From $_usn4 In usn1 In $7 As `2esn` Fieldterminator 's_str' Union Unwind {1000} =~0 =~123.654 As `3esn` Create Unique ``=(:`3esn`:@usn5{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`4esn` {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}) Return Distinct `5esn`[.e0..][07..] As `7esn` Skip All(`4esn` In $`3esn` Is Not Null Where {123456789} Is Not Null) Limit {1000} =~0 =~123.654 Union All Create Shortestpath((((:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[`2esn`?{`3esn`:{123456789} Is Null Is Null}]->(usn2 :#usn7)<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) With @usn6[$`3esn`..{`3esn`}] As `3esn`,`6esn`() In {#usn7:0X0123456789ABCDEF =~1e1 =~{`4esn`},`2esn`:1.0 =~'s_str' =~{`2esn`}} In usn1() Skip $`4esn` Is Null Is Null Unwind All(`3esn` In {7} Is Null Where Count ( * ) Contains 07) Is Null Is Null As `2esn`"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Start @usn6=Rel:``(_usn3='s_str') ,``=Node:_usn4(usn1={12}) Union All Match #usn7=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}),@usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})) Using Join On _usn4 Create `1esn`=(`5esn` :_usn4{7})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}),((`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})) Load Csv With Headers From 7 =~{`8esn`} =~$`6esn` As `5esn` Union All Remove Extract(#usn8 In {`5esn`}[.e1..``]|12e12 Ends With {usn1})._usn3!;"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Create Constraint On(`4esn`:``)Assert Allshortestpaths((`2esn` :`8esn`:`7esn`)-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})).`8esn`? Is Unique"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Load Csv From #usn7[usn1][$`5esn`] As `6esn` Load Csv From 12 Ends With 0x0 Ends With 0.e0 As usn1 Union Remove All(#usn7 In `2esn`[..$#usn8][..Count(*)]).#usn7!,All(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01).usn1?,[`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {_usn4} Starts With 0.e0 Starts With 0x0|123.654[`3esn`..]].`2esn`? Union All Optional Match usn2=((@usn6 :_usn4)),Shortestpath((((:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})<-[:#usn7 *..010]-(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})))) Using Index _usn3:`6esn`(#usn7) Where $`4esn`[..$`3esn`][..0.0];"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Match ((_usn4 :``:#usn8)-[:`8esn` *..01]->({#usn7:0.e0 Starts With `2esn`})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->($#usn8)) Using Join On `2esn` Using Join On `1esn`;"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Drop Constraint On(`1esn`:@usn6)Assert Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789)._usn3 Is Unique;"), - octest_legacy:ct_string("Explain Create Constraint On(`1esn`:`4esn`)Assert (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})<-[`1esn`:_usn4|:usn2]->(`` :`3esn`:@usn5{`8esn`:`4esn` Is Not Null Is Not Null,`2esn`:2.12 Ends With $_usn3 Ends With `3esn`}).@usn6! Is Unique;"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Create Constraint On()-[_usn4:_usn3]->()Assert Exists(Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where ``[$`2esn`])._usn3?);"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Drop Constraint On()-[`5esn`:@usn5]->()Assert Exists({@usn6:$_usn3[..1000]}.`3esn`?)"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Create Unique @usn5=Allshortestpaths(({`1esn`:$`8esn`[1000..0Xa]})),(:`1esn`{``:.e1 Is Null Is Null})<-[#usn8?:usn1|@usn6]->(`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`}) Delete Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) Is Not Null Is Not Null,$@usn5[..12e12][..$123456789] Create _usn4=(`` :#usn8:#usn8) Union All Create @usn5=Shortestpath(((`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8}))),_usn3=Allshortestpaths((`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})) Match (`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Using Scan `6esn`:`3esn` Using Scan _usn4:`7esn` Where 0[{usn2}..][$`6esn`..] Return Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7) Contains Filter(`` In `` Is Not Null Is Not Null Where 0e0 Starts With 1000 Starts With #usn7) Contains Shortestpath((($#usn8)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]}))) As #usn7 Order By 2.12 =~Count(*) Descending,`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) Contains Reduce(`7esn`=$_usn4 Ends With usn1 Ends With $0,`4esn` In $`3esn` Is Not Null|`7esn` In {123456789} In `1esn`) Asc Union All Start `6esn`=Node:``({`1esn`}) ,usn2=Node:_usn4(``={#usn7})Where $`5esn`[{`3esn`}] Detach Delete Single(_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..])[..All(`` In `` Is Not Null Is Not Null Where {`7esn`} Is Null)],{123456789}[0xabc..],Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`]) In {usn2:{`3esn`} Is Not Null Is Not Null} In {`4esn`:False,_usn4:$`7esn` Is Null Is Null} Create `4esn`=Allshortestpaths(((usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})<-[`2esn`?:`7esn`]->(`7esn` {`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})));"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Create Constraint On(`5esn`:`4esn`)Assert Exists(Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {_usn4} In {12} In $0).usn2?)"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Foreach(@usn5 In 2.12 Is Null| Load Csv With Headers From `5esn`[.e0..][07..] As `6esn` Fieldterminator \"d_str\" Match _usn4=(:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null})) Union Detach Delete $`5esn`[$`4esn`..{@usn6}][07..$@usn6],0X7[`7esn`][123.654]"), - octest_legacy:ct_string("Cypher 12.999 Create Constraint On(`3esn`:`7esn`)Assert Exists([$`5esn` Starts With $0 Starts With {0},0x0[`4esn`..'s_str'],$usn2[9e0]].#usn8!)"), - octest_legacy:ct_string("Cypher 12.999 Merge (`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]}) On Create Set `4esn`+=(`1esn` :#usn8:#usn8)-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})[..(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})][..`5esn`({12} Ends With 1.0 Ends With .e0)],Any(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`])._usn4! ={@usn6}[{999}..][00..] Unwind $12 Starts With {`1esn`} Starts With Null As `6esn` Union All Unwind $#usn7 Contains 0x0 Contains 1000 As `4esn` Remove Extract(`8esn` In 01[2.12..`8esn`] Where {999} Starts With {0}|01 Contains {`8esn`} Contains 2.12).usn2?,Shortestpath((`4esn` :#usn7)-[@usn5?:`4esn`]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]})).`6esn`!,Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn1[9e12..][$7..]).usn2? Create Unique ({`8esn`:`3esn`[{0}][usn1]})-[_usn4?:_usn4|:usn2 *00]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``})<-[ *0X7..]-(`2esn` {_usn3:`1esn` Contains {usn2} Contains $#usn8}),(#usn8 :@usn6:#usn8) Union Foreach(`3esn` In {7} Is Null Is Null| Load Csv With Headers From $_usn4 Contains Null Contains #usn8 As #usn7 Fieldterminator \"d_str\") Start _usn3=Node:usn1(`6esn`={7}) Where 0X7[1000..{`1esn`}]"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Create Constraint On(`1esn`:`7esn`)Assert Exists(`8esn`(`3esn`[{usn1}]).`3esn`)"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Using Periodic Commit Load Csv With Headers From {_usn4} Is Not Null Is Not Null As `5esn` Return `6esn`[..$@usn6] As `` Order By Extract(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0])[Case $`3esn` In $`6esn` In $`` When {_usn3}[..\"d_str\"] Then `3esn`[{usn1}] Else {999} Starts With {0} End][usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010])] Desc,Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))) Desc Limit Count(*) Contains $#usn7 Contains 1e1 Optional Match ``=(`5esn` :_usn4{7})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}),((`5esn` )-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(@usn6 {`3esn`:{``} Is Not Null})<-[`1esn` *0Xa{_usn3:Null Ends With `2esn` Ends With $usn1,#usn8:.e12 Is Not Null Is Not Null}]->(usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})) Using Index `2esn`:`3esn`(@usn6) Using Join On `5esn`,#usn7 Where 123456789 Ends With $`6esn` Ends With $#usn7;"), - octest_legacy:ct_string("Cypher Create Constraint On()-[`4esn`:#usn7]-()Assert Exists(All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 's_str' Ends With 7 Ends With {_usn4})._usn4!);"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Delete True[{_usn4}..][False..],$#usn7[@usn5..{1000}][1.e1..7],#usn7 Contains usn2 Contains @usn5 Unwind [_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null|999 Is Not Null Is Not Null] Ends With [`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null|{`5esn`} Starts With $`5esn` Starts With .e1] Ends With {``:usn1 Starts With usn1 Starts With $``} As #usn7 Union Return Distinct [$`5esn`[..$`5esn`][..$12],9e12[`6esn`..12.0],Null[$`5esn`][False]] Is Null Is Null As #usn8 Skip Case #usn7 Starts With {#usn7} Starts With `7esn` When $#usn7 Is Null Then Count(*) Is Null Is Null End =~Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))) =~Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {_usn4}[...e1][..$7]) Limit exists({#usn7}[`2esn`..],$`3esn`[..$123456789][..$`1esn`])[All(`5esn` In \"d_str\" Is Null Is Null Where #usn8)..] Create _usn4=Allshortestpaths(({`7esn`:{999}})) Create `6esn`=((`2esn` :_usn4)) Union All Remove [_usn3[_usn3..][12.e12..]].`8esn`!,All(`8esn` In 01[2.12..`8esn`])._usn4! Create usn2=(((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})));"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` With $1000 =~$`2esn` As `6esn`,`` Is Not Null Is Not Null Order By $12[..{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}] Ascending Skip False[..``] Limit Count ( * )[$_usn4..$`4esn`] Where $#usn8[$`2esn`..][{`2esn`}..] Load Csv With Headers From _usn3 Ends With 7 Ends With `1esn` As `4esn` Union Load Csv From Shortestpath(((:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]-(:`5esn`{``:1.0[0e0..0.e0]})<-[``? *..0x0{#usn7:False =~$7 =~2.12}]->(`3esn` :usn2)))[['s_str' In 00,{@usn6}[$`6esn`..`4esn`]]..][Case @usn6 Starts With `6esn` Starts With $`1esn` When {`3esn`}[`2esn`] Then Null In $7 In .e1 When {0}[@usn6..$1000] Then 12.0 Contains #usn7 End..] As @usn5 Union All Merge Allshortestpaths((:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null})<-[#usn7{`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]}]-({#usn8:True[..$`6esn`]})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})) On Match Set `6esn`+=01[{`2esn`}..{@usn6}][$`2esn`..0.0],Case #usn8[..{#usn7}] When _usn4 Is Null Is Null Then {@usn6} Ends With 's_str' Ends With 12.0 When 010 =~{usn2} Then _usn4 Starts With $_usn4 Starts With 12.e12 Else {`5esn`} Starts With $`5esn` Starts With .e1 End.`8esn`? =_usn4 Contains {`1esn`} Contains \"d_str\",`3esn`(Distinct 0[..usn2][..{@usn5}]).`8esn`? =({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})[Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 0X7[`7esn`][123.654])..Filter(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")] On Match Set All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where $_usn4 Ends With usn1 Ends With $0).@usn5? =Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End,Reduce(`8esn`={usn1} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|0xabc[.e0]).`3esn`! =Reduce(`3esn`=12.0[123.654][Count(*)],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|`1esn` =~\"d_str\")[..Case When $`` Is Not Null Then 12[1.e1..{_usn3}][1.e1..1.0] When 7[True..][2.12..] Then $_usn4 Is Not Null Is Not Null End][..Case When $#usn8[$`2esn`..][{`2esn`}..] Then 0X7[1000..{`1esn`}] When {#usn8}[{7}] Then 07 In `2esn` In 12e12 Else $`1esn` Ends With 9e1 Ends With $123456789 End],`3esn` =12.e12[0xabc];"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Using Periodic Commit Load Csv From Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`)[None(#usn8 In 7[..999][..{#usn8}] Where 0Xa[2.12])..][[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789]]..] As #usn8 ;"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Start _usn3=Relationship:usn2(`8esn`={`8esn`}) ,`1esn`=Rel:#usn8(`8esn`={`6esn`})Where #usn8 Is Not Null Is Not Null"), - octest_legacy:ct_string("Cypher `7esn`=#usn8 Cypher `7esn`=#usn8 Create Constraint On()-[@usn6:_usn4]-()Assert Exists(`8esn`(`4esn`[..Count ( * )][..{#usn7}],{``}[...e12]).``)"), - octest_legacy:ct_string("Cypher #usn8=`1esn` Explain Start ``=Relationship:usn2('s_str') ,`1esn`=Rel:`4esn`(`4esn`='s_str') With Distinct $`3esn`[0.12..`8esn`][$#usn7..`5esn`],Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]) =~Reduce(usn1=.e1 Ends With 1e1 Ends With @usn5,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$#usn7[#usn7..]) =~`1esn`($1000 Is Null) As @usn6 Order By {`1esn`}[12.0..`2esn`][@usn6..{usn1}] Ascending,$`3esn` Is Not Null Desc Where 01 Contains {`8esn`} Contains 2.12 Remove usn1:`1esn`,Filter(#usn8 In 7[..999][..{#usn8}] Where 123456789 Is Null).`8esn`!,[7[..123456789][..{@usn6}],#usn7].#usn8 Union All Unwind False[..``] As `7esn` Union Load Csv From $_usn4 =~usn2 =~{_usn3} As _usn3 Start _usn4=Node:`3esn`(`2esn`={usn1}) ,`6esn`=Node:``('s_str')"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Return {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null} Contains {@usn5:{`3esn`} In 01} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 1.0[0X7][{`5esn`}]|{``}[010..][0xabc..]) As #usn8 Union Unwind 7[{0}..{_usn4}] As `3esn` Create `6esn`=Allshortestpaths((#usn8 :@usn6:#usn8)) Union All Optional Match usn2=Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))) Using Index `2esn`:usn1(`2esn`);"), - octest_legacy:ct_string("Cypher 0.123456789 `6esn`=_usn4 @usn5=@usn5 Create Constraint On(`7esn`:#usn8)Assert Exists(`8esn`(00 Starts With 0xabc,{12} Is Not Null).`6esn`!);"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Remove _usn4(Distinct `` Ends With $1000,$`5esn`[{`3esn`}]).`7esn`,`6esn`:usn2 Optional Match Shortestpath((((:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[`2esn`?{`3esn`:{123456789} Is Null Is Null}]->(usn2 :#usn7)<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) Using Join On ``,`6esn`,usn2 Using Scan ``:`7esn` Where $999[0.0..] Union All With (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As ``,12[..$`4esn`] As `7esn` Skip Allshortestpaths((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3))[Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})))] Where 0.12 =~$0 =~$0 Union With *,(`1esn` {#usn7:{_usn4} In {12} In $0})<-[#usn7?:_usn3|_usn3 *..0x0]-(`1esn` :`8esn`:`7esn`)[Case When {``} Starts With $`2esn` Starts With `1esn` Then $`5esn` Starts With $0 Starts With {0} End..(`7esn` {@usn5:{7}[..1.0][..9e0]})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})][{usn2:$`2esn`}..[`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $`` Is Not Null|$#usn7[#usn7..]]] As `2esn` Limit {_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] Where {#usn7}[`2esn`..] Create Unique (`7esn` {@usn5:{7}[..1.0][..9e0]})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})<-[`1esn`?:usn2|``]-({@usn5:{usn2}[.e0..$999]}),((`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0}))"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Merge ((`3esn` :usn2)) On Match Set _usn3+=$`3esn` Is Not Null Is Not Null,`3esn` ={`4esn`} Ends With {usn2} Ends With {999},{@usn6:{999} Starts With $999,`4esn`:$usn1[{`5esn`}][$`6esn`]}.@usn5? =$usn1[..{`6esn`}] Union All Match `2esn`=({#usn7:2.12 Contains usn2 Contains True})-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})-[:#usn7{`2esn`:.e12 Ends With _usn4}]-(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5}),`7esn`=Allshortestpaths((:@usn5$`5esn`)<-[usn1?:`8esn` *..010]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})<-[ *1000..00{#usn7:Count ( * ) Contains 07}]->(usn1 :`3esn`:@usn5)) Using Scan `3esn`:`2esn` Using Index `6esn`:#usn8(`2esn`) Where 01[{@usn5}];"), - octest_legacy:ct_string("Explain Create Constraint On(`1esn`:#usn8)Assert Single(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 9e1[2.12..{#usn8}]).`8esn`! Is Unique;"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Create Constraint On()<-[``:_usn4]-()Assert Exists({#usn7:.e1 Ends With 1e1 Ends With @usn5}.@usn5)"), - octest_legacy:ct_string("Cypher 0.123456789 `4esn`=`1esn` #usn7=`6esn` Create Constraint On()-[`4esn`:#usn7]->()Assert Exists([`` In `` Is Not Null Is Not Null|@usn6 Starts With `6esn` Starts With $`1esn`]._usn3);"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Create Unique (:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null}) Optional Match @usn6=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7)),(({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})) Using Scan `1esn`:`1esn` Using Index `8esn`:`1esn`(@usn5) Match Allshortestpaths(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))),Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Using Index ``:_usn4(_usn4) Where {#usn7}[9e1..][{123456789}..]"), - octest_legacy:ct_string("Cypher @usn5=@usn5 Cypher `8esn`=#usn7 Drop Constraint On(`6esn`:_usn4)Assert Exists(Reduce(`3esn`=Null[``],_usn3 In {`3esn`}[`2esn`]|{123456789} Contains $#usn8).`4esn`!)"), - octest_legacy:ct_string("Cypher 7.1000 Cypher 1000.0 Drop Constraint On()-[@usn6:@usn6]->()Assert Exists(Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where _usn4 Contains 2.12)._usn3?)"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` With Distinct *,{#usn8} Is Not Null,$`5esn`[2.12..{_usn3}][_usn3..{1000}] As usn2 Order By 9e0[1.e1..][0Xa..] Descending,{_usn3:`4esn`[..Count ( * )][..{#usn7}]}[Any(_usn3 In {`3esn`}[`2esn`] Where 1e1 In \"d_str\" In `7esn`)..(:usn1{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[`2esn`:_usn4|:usn2]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[`6esn`{`6esn`:Count(*) Ends With 12.0 Ends With 12}]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})][Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7|123.654[{7}..])..Filter(`3esn` In {7} Is Null Where usn1 Is Null Is Null)] Asc Create #usn8=Shortestpath((#usn8 :@usn5)) Union Remove [`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|0Xa[2.12]].`2esn`!,#usn7:usn1 Create Unique @usn6=((`7esn` {`7esn`:{123456789} Contains $#usn8})),Allshortestpaths((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})) Unwind $`2esn`[2.12..'s_str'][{@usn6}.._usn4] As `7esn`"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Remove Case {#usn7}[`2esn`..] When {1000}[$999...e12][`7esn`..'s_str'] Then 0x0 Ends With $12 When $`5esn`[{`3esn`}] Then $#usn7 Contains 0x0 Contains 1000 Else {@usn6}[7] End.`2esn`!,Reduce(@usn6=1000 In {`8esn`} In 01,#usn7 In `2esn`[..$#usn8][..Count(*)]|$`4esn`[Null..]).usn2,Case {123456789} =~`8esn` =~@usn5 When $#usn8[9e12..][.e1..] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] When 0x0[{`7esn`}..][$usn2..] Then @usn5 Is Null Else 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] End.`2esn` Start @usn6=Rel:@usn6(usn1={999}) Where 0e0 Ends With 1.e1 Ends With $`4esn`;"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Delete 0xabc[.e0],(:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8)[Reduce(`7esn`=7[$`2esn`..{`5esn`}],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$_usn4[0e0..][False..])..({``:00 Starts With 0xabc,`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})][{}..{@usn6:`4esn`[..010][..{12}]}] Create Unique Allshortestpaths((_usn3 :@usn5)-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})),`4esn`=Allshortestpaths(({@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})-[`6esn`?:``]-(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]}))"), - octest_legacy:ct_string("Cypher _usn4=usn2 Cypher 0.123456789 Create Constraint On(@usn5:@usn5)Assert (:#usn8:#usn8)<-[? *0X7..{#usn8:{1000} Is Null Is Null,`3esn`:0.e0 Starts With 12.e12 Starts With {_usn4}}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12}).usn2! Is Unique"), - octest_legacy:ct_string("Cypher @usn6=`5esn` Drop Constraint On()-[_usn3:#usn7]->()Assert Exists(Case When 123.654[True..$#usn8][0.12..Count(*)] Then #usn8 Is Not Null Is Not Null When `4esn`[..Count ( * )][..{#usn7}] Then 0e0 Starts With 1000 Starts With #usn7 End._usn4)"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Load Csv From $123456789 In $#usn7 In `4esn` As `5esn` Union All Load Csv With Headers From Null[$`5esn`][False] As `` Fieldterminator \"d_str\" Merge (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[`4esn`:`8esn` *00]-(`2esn` :`8esn`:`7esn`)<-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:usn2) Union All Merge ((`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})) On Create Set usn1(Distinct $123456789 Ends With `3esn` Ends With 123456789,`5esn`[7][{usn2}]).@usn5 =All(#usn7 In {``} Is Not Null Where {_usn4}[...e1][..$7]) Is Null Is Null,`2esn`+=Case {#usn8} Is Not Null When {`4esn`} =~9e0 =~{12} Then _usn3[_usn3..][12.e12..] Else 123.654 Contains $`4esn` Contains 1.0 End[(`6esn` {`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]})<-[? *..0x0]->(`3esn` :`7esn`:_usn3)-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->(:``:#usn8{`7esn`:00 Starts With 0xabc,_usn3:{123456789} Contains $#usn8})..][Single(`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1)..],usn1+=$`6esn`[123456789..12][True..{`3esn`}] Detach Delete $@usn5 Starts With {0} Starts With 12 Detach Delete 0X7[{@usn6}],Null In $7 In .e1,9e12[0.0..][$12..];"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Delete {`4esn`} =~9e0 =~{12},Count ( * ) Ends With $@usn5,Reduce(`2esn`=1e1 In 123.654 In `3esn`,`5esn` In \"d_str\" Is Null Is Null|$_usn3[{#usn7}]) Is Not Null Return Distinct *,.e1[..$@usn6][..`2esn`] As #usn8,0Xa[usn2..] Order By $12[..{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}] Ascending Limit {1000}[{_usn3}..] Union Start `1esn`=Relationship:`2esn`({1000}) With @usn6 Starts With `6esn` Starts With $`1esn` As `7esn`,usn1 In 7 In {123456789} As `5esn`,`8esn` Ends With 999 Ends With .e12 Order By {@usn6} Is Null Is Null Desc,`7esn` In 00 Asc,Case When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $`4esn`[..$`3esn`][..0.0] Then `1esn` =~0 =~$#usn7 Else {``} Is Null End Contains Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Contains All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {@usn6}[7]) Asc;"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 With 0.e0 In $#usn7 In $_usn3,(usn2 :@usn5)-[?{`8esn`:{7} Is Null}]->(`` )<-[`3esn`?:`3esn`|:#usn8]-(`` :#usn8:#usn8)[Reduce(usn2=`2esn` Starts With $_usn4,#usn7 In {``} Is Not Null|{7} Is Null)..][Single(#usn7 In {``} Is Not Null Where $1000[0Xa][{#usn7}])..] As `2esn` Order By $usn1 Ends With $`` Ends With $12 Desc,1e1[1000..] Ascending,{123456789}[0.e0..$123456789][0Xa..`6esn`] Descending Limit {123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4] Where `4esn` Ends With 07 Ends With {`3esn`}"), - octest_legacy:ct_string("Cypher `3esn`=@usn5 @usn6=`5esn` Cypher 123456789.12 #usn7=`6esn` Create Constraint On(`8esn`:@usn6)Assert Exists(Single(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01).@usn6!);"), - octest_legacy:ct_string("Profile Cypher `7esn`=#usn8 Merge Shortestpath(({`1esn`:0.12[$`3esn`..$_usn3][12.0..usn1]})<-[{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}]->(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`6esn`?:`3esn`|:#usn8{usn1:$usn1 In {999} In $#usn7}]-({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})) On Create Set None(`3esn` In {7} Is Null Where {_usn3}[12.e12]).#usn8? =Case {999} Is Null Is Null When 1000[Null..{123456789}] Then 9e12[`6esn`..12.0] Else `` Ends With $1000 End[Reduce(`2esn`={`3esn`} In 0X7,_usn3 In {`3esn`}[`2esn`]|$`5esn`[{`3esn`}])..(@usn5 {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})],#usn8 ={usn2} In _usn3 In $#usn7,[{@usn6}[$`6esn`..`4esn`],0Xa[$123456789..123.654][.e12..0.e0]]._usn3? =Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Is Not Null Is Not Null On Match Set `5esn` =$@usn5[010..$#usn8][12..$`4esn`],@usn5+={`6esn`:1000[..$0][..True],_usn4:Count ( * ) Ends With $@usn5}[[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 12e12 Ends With {usn1}|$#usn8 Contains $`1esn` Contains {`6esn`}]..Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..])][[_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `3esn`[{`2esn`}]|$0[12.e12..]]..Filter(_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null)],`5esn`+=0.e0 Starts With `2esn` Union All Remove usn1(Distinct $@usn5 Is Not Null).``! Union Merge Shortestpath(((`2esn` :_usn4))) On Match Set #usn8+=`2esn`(Distinct $``,7 Starts With {@usn6} Starts With $``) Contains {@usn6:_usn3[$`8esn`],usn1:$@usn5 Is Not Null} Contains {@usn5:`8esn`[{123456789}..]},({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(#usn7 :#usn8:#usn8{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null}).@usn6? =01[{@usn5}] Merge Allshortestpaths(((_usn3 :`3esn`:@usn5))) On Create Set `7esn` =`6esn`({usn1} Ends With $0) Is Not Null,`2esn`+=All(`` In `` Is Not Null Is Not Null Where $_usn4 Starts With 1e1)[Shortestpath(((:usn1{`3esn`:{123456789} Is Null Is Null})-[_usn4{`5esn`:{0} Ends With $_usn3 Ends With $`7esn`,`2esn`:Null[``]}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[? *0Xa]-({`7esn`:{999}})))][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)],Reduce(#usn7=`` Is Not Null Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{`7esn`}[..$@usn5][..$#usn8]).`2esn` =None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12])[Reduce(`4esn`=`1esn` =~0 =~$#usn7,`2esn` In `1esn` =~\"d_str\"|{123456789} Is Null Is Null)][{``:`7esn` Starts With $#usn7 Starts With $`7esn`}] On Create Set [`5esn` In \"d_str\" Is Null Is Null|$`8esn`[..00]].usn2! =[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*)),#usn7:#usn8:#usn8"), - octest_legacy:ct_string("Cypher 123456789.12 #usn7=`6esn` Using Periodic Commit Load Csv From .e12 In None(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`2esn`} Is Not Null) In Reduce(`3esn`=01[{`2esn`}..{@usn6}][$`2esn`..0.0],`` In 123456789 Ends With 12.e12 Ends With $`7esn`|$_usn4[1.e1]['s_str']) As `1esn` Fieldterminator 's_str' Merge `1esn`=((:usn2{#usn8:$`5esn` In $`6esn`})<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})) Detach Delete {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]),[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12),$_usn4 Is Null Is Null"), - octest_legacy:ct_string("Cypher 1000.0 Cypher @usn5=@usn5 Unwind `7esn` In 00 As `` Load Csv With Headers From 7 Starts With {@usn6} Starts With $`` As #usn8 Unwind Reduce(`5esn`=$`5esn`[{`3esn`}],`3esn` In {7} Is Null|`6esn`[12..$usn2][{#usn8}..{usn2}]) In @usn5(Distinct _usn4 Starts With $_usn4 Starts With 12.e12) In None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Count ( * ) Ends With 12.0) As _usn3 Union All Foreach(`2esn` In Allshortestpaths((`5esn` :`4esn`)) Is Not Null| Delete [#usn8 In {`5esn`}[.e1..``] Where {7}[..12e12][..Count ( * )]|{`2esn`} Ends With {`7esn`}] In All(#usn8 In {`5esn`}[.e1..``] Where {7}[..1.0][..9e0]),Null Ends With `2esn` Ends With $usn1,[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12)) Union All Load Csv With Headers From .e12[@usn5..#usn7][010..{usn1}] As `4esn` Detach Delete 1e1 Contains 0e0,Case {#usn8} Is Not Null When {`4esn`} =~9e0 =~{12} Then _usn3[_usn3..][12.e12..] Else 123.654 Contains $`4esn` Contains 1.0 End[(`6esn` {`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]})<-[? *..0x0]->(`3esn` :`7esn`:_usn3)-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->(:``:#usn8{`7esn`:00 Starts With 0xabc,_usn3:{123456789} Contains $#usn8})..][Single(`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1)..],usn1 Is Null Is Null Merge Shortestpath(((`5esn` :_usn4{7})-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})));"), - octest_legacy:ct_string("Cypher 0.123456789 Cypher 12.999 Return Distinct $12 =~$_usn3 As #usn8,`7esn` Ends With 0x0 As @usn6,$1000 =~$`2esn` As `7esn` Skip All(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`2esn`} Is Not Null)[Filter(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`4esn`} Starts With $usn2 Starts With $1000)..Reduce(`8esn`={`2esn`} Is Not Null Is Not Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{usn1} Ends With $0)][Allshortestpaths(((`1esn` )))..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End];"), - octest_legacy:ct_string("Cypher `5esn`=`6esn` `7esn`=#usn8 Cypher `5esn`=`6esn` `7esn`=#usn8 Delete 1e1 In \"d_str\" In `7esn` Union Foreach(`2esn` In $`5esn`[2.12..{_usn3}][_usn3..{1000}]| Unwind 0.12[`2esn`..{`6esn`}] As usn2) Remove Filter(`2esn` In `1esn` =~\"d_str\" Where $`4esn` In Null In 0xabc).`6esn`?,None(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`]).`4esn`! Start _usn4=Node:`4esn`(_usn4={123456789}) Where {_usn4} In {12} In $0 Union All Merge (((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})-[:`8esn` *..01]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[usn2?:@usn5{`4esn`:{`7esn`} Is Null,_usn4:$123456789 Ends With {`1esn`} Ends With $`4esn`}]->(`6esn` {`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}))) On Create Set {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}.`8esn`? =$@usn5[010..$#usn8][12..$`4esn`],`7esn`+=`8esn`(Distinct $#usn7 Is Null) Ends With Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]) Ends With Shortestpath(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))),`7esn` =`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) Contains Reduce(`7esn`=$_usn4 Ends With usn1 Ends With $0,`4esn` In $`3esn` Is Not Null|`7esn` In {123456789} In `1esn`) On Match Set usn2 ='s_str'[$_usn3..][Count ( * )..]"), - octest_legacy:ct_string("Cypher usn1=`7esn` `2esn`=#usn7 Cypher 123456789.12 #usn7=`6esn` Create @usn5=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}) Create Unique Allshortestpaths((`1esn` :#usn7)),(({`3esn`:.e1[..usn2][..`8esn`]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`1esn`{_usn4:{999}})) Create `8esn`=(((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) Union Create `1esn`=Allshortestpaths((((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[? *0Xa]-({`7esn`:{999}})-[`7esn`]->(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]}))))"). + octest_legacy:ct_string("Profile Merge _usn3=(`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})<-[usn2 *07{usn1:07 =~@usn5}]->(_usn4 {`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}) Detach Delete {1000}[01234567..$_usn4][{@usn6}..$_usn3],{usn2} =~`7esn` =~07,count(Distinct 999[12.0..][#usn7..]) =~Allshortestpaths(((usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}))) =~@usn6(`8esn` Starts With {123456789},$`` Starts With 12 Starts With $usn2) Unwind {`7esn`}[0X7..][0x0..] As `3esn` Union All Create (((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),`7esn`=(({`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})) Remove {@usn6:12 Starts With {_usn4} Starts With $#usn8,`2esn`:{@usn6}[$`7esn`..][False..]}.`1esn` Merge `2esn`=((_usn3 :`5esn`:@usn5)<-[`7esn`? *0xabc..7]->(:`6esn`:`8esn`{`3esn`:$`6esn`[{`3esn`}..12],_usn3:0[{@usn5}..][7..]})) On Create Set _usn4 =Filter(`1esn` In $12 Is Not Null Where {@usn5}[1e1..][9e1..]) In [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 12 Starts With {_usn4} Starts With $#usn8] In Filter(`2esn` In {999} Is Not Null Where $7 Ends With 0X7),#usn8 =0Xa[@usn5][{`7esn`}]"), + octest_legacy:ct_string("Cypher 0.1000 Create Constraint On(#usn7:`2esn`)Assert Exists(@usn6(12e12 Starts With `1esn` Starts With usn2,00[..$123456789][..$`5esn`])._usn3?)"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Drop Constraint On()-[`5esn`:@usn5]->()Assert Exists((:`4esn`:@usn6{`1esn`:{12}[00..{@usn6}][1.e1..0],usn1:``[..0X0123456789ABCDEF]})<-[@usn5?:`8esn`|:_usn4 *0X0123456789ABCDEF{usn1:False Contains $#usn8 Contains 9e1}]->(usn2 :`4esn`:@usn6)<-[`5esn`{`6esn`:12 Is Not Null Is Not Null,`8esn`:`3esn` Is Not Null Is Not Null}]->(_usn3 {@usn5:.e12 =~.e0}).`8esn`);"), + octest_legacy:ct_string("Explain Profile Detach Delete Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`])[(`3esn` :#usn7{`6esn`:{_usn4} Is Null,usn2:{`2esn`} Starts With @usn6})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`8esn`:@usn5)<-[@usn6?:`7esn`]->(:`2esn`{#usn7:#usn8 =~{999}})..Shortestpath((`8esn` {_usn4:{usn1} In Count ( * )})<-[`6esn`?]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})<-[@usn6?:`7esn`]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1}))][Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0[$#usn8...e12])..[`1esn` In $12 Is Not Null Where {usn1} In Count ( * )|$`3esn`[{``}..]]],\"d_str\" Contains @usn6 Contains 12.e12 With 9e12[{123456789}..][$`2esn`..] As `2esn` Order By {#usn7}[{`4esn`}..][0X7..] Desc Where 1.e1 =~`2esn` Union All Remove None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000).`2esn`? With Distinct {#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null As `8esn`,Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4])[Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End] As `7esn`,{_usn4} In {1000} As `1esn` Order By $@usn5[`1esn`..] Desc Limit #usn8['s_str'..][123.654..] Where 's_str' Starts With 12e12 Starts With $_usn4;"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Match (_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0}),`5esn`=Shortestpath(((#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null})<-[?:#usn7|`2esn`{@usn5:$0 Is Not Null}]-(`` {``:0x0 =~123.654 =~{999}}))) Using Index `6esn`:`7esn`(#usn8) Using Join On #usn8,usn2,#usn7 Where $_usn3[010..False] Union All Detach Delete Count ( * )[{12}..{@usn5}][{#usn8}..Null],(:_usn3{#usn7:#usn8 =~{999}})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07}) Contains None(_usn4 In 0.0[..{999}][..0.0] Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`) Contains Case When $`` Is Null Then 0.12 Ends With {1000} Ends With `6esn` When True[7][$999] Then 0Xa Contains Count ( * ) End;"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create Constraint On(usn1:`1esn`)Assert Exists(Reduce(usn2={12} Contains 9e0,`` In {usn1} Ends With {`6esn`} Ends With 123456789|1e1[..$1000][..999])._usn4!);"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On(_usn4:@usn5)Assert Exists(Extract(#usn7 In 0Xa[@usn5][{`7esn`}] Where $0[_usn4..{`3esn`}][$#usn7..$#usn7]|$`7esn` Contains {`1esn`} Contains 9e12).``);"), + octest_legacy:ct_string("Cypher 999.999 Cypher Create Constraint On()<-[`6esn`:usn1]-()Assert Exists(Case When 0.0 Is Not Null Then 1.e1 =~9e12 =~`4esn` When 9e12 Is Not Null Is Not Null Then $999 Ends With {0} End.`1esn`!)"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Drop Constraint On(usn2:_usn4)Assert Exists([12.e12[$`4esn`..],\"d_str\" Contains @usn6 Contains 12.e12,$7 Is Not Null].@usn6!);"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Unique usn1=((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})),Allshortestpaths(((`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->(`4esn` {`2esn`:@usn5[$12..\"d_str\"]}))) Unwind [#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 Starts With {_usn3}|@usn6[$12]] Ends With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null] Ends With Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) As `8esn`"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Using Periodic Commit 0xabc Load Csv From {`3esn`}[{123456789}..][{usn1}..] As `6esn` Start @usn6=Rel:`2esn`(`5esn`='s_str') ,usn1=Rel(*)Where {#usn7} Contains @usn5 Contains Count ( * );"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Create Constraint On(_usn4:@usn6)Assert Case When #usn8 Is Not Null Then 12.e12 In $0 In $0 Else $`8esn`[..$999][..0] End.@usn5! Is Unique"), + octest_legacy:ct_string("Explain Profile Drop Constraint On(_usn4:`1esn`)Assert [01234567[..9e1],``[{#usn8}],12e12 Is Not Null Is Not Null]._usn3! Is Unique"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Unwind $0[..{usn2}][..$usn1] As `` Detach Delete `` Is Null Is Null,`2esn`[$usn1..{123456789}],$#usn7[.e1..{`7esn`}][{`6esn`}..$_usn4] Union Foreach(`7esn` In @usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2)| Detach Delete .e1 Ends With _usn3,Single(`8esn` In $12[{7}..0X0123456789ABCDEF])[Case 9e1[123456789..] When 12 Starts With 7 Starts With $`5esn` Then {_usn3} Contains True Contains 0X7 When `1esn`[..00][..{7}] Then 1.e1[12e12..{`6esn`}] End..]) Detach Delete [`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*)][Extract(`` In {`1esn`} Starts With @usn6 Where $`7esn`[$``..][999..]|.e1 Contains $`3esn`)..Case When 's_str'[.._usn4][..``] Then 123.654 Starts With $`` Else 0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] End] Union Load Csv From 9e0 Starts With .e0 Starts With \"d_str\" As `5esn` "), + octest_legacy:ct_string("Cypher 999.999 Cypher Delete $_usn4[{``}..][1e1..],[#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 In 01234567 In .e1|{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]] =~Extract(`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]|$usn1 In 0.12 In $``) =~Single(_usn3 In {@usn5}[..#usn7] Where {`4esn`}[..07][..$`6esn`]) Union Optional Match `5esn`=Allshortestpaths(((:_usn4)<-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]->(_usn4 {_usn3:`1esn`[..00][..{7}]}))),Allshortestpaths((:@usn5{@usn6:{7} Contains $123456789})<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}}))"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Create Constraint On(``:@usn5)Assert Exists([_usn3 In True[7][$999] Where 12.0 =~$#usn7 =~9e12|_usn4[Count(*)]].usn1!);"), + octest_legacy:ct_string("Profile Create Constraint On(`7esn`:usn1)Assert Exists((:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[?:usn2|#usn7]->(#usn8 :#usn7)-[#usn7{usn1:1.0[{999}][$999]}]->(:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]}).`8esn`);"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Create Constraint On()-[`1esn`:`5esn`]->()Assert Exists(Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 1.e1[0X0123456789ABCDEF..]).#usn7?)"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Delete $12 Starts With $`8esn` Foreach(@usn6 In 1.e1[0xabc..]| Delete .e1[@usn5]['s_str'],Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..] Unwind {12}[$`3esn`] As `6esn`) Union All Start `4esn`=Node:`4esn`(\"d_str\") Where {#usn8}[#usn7..{`2esn`}] Detach Delete $`` In \"d_str\",$12[{7}..0X0123456789ABCDEF] Foreach(#usn8 In _usn4[..``][..{``}]| Return Distinct *,{#usn7} Ends With Extract(`1esn` In 0.e0 =~`1esn` =~`6esn`|.e1 Ends With 0Xa Ends With .e1) As `5esn`,123456789 Is Not Null Is Not Null As #usn7 Skip {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Detach Delete Single(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2])[(_usn3 {usn1:0Xa[0e0..{#usn7}],`1esn`:.e0[True..Count ( * )][#usn7..0X7]})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1})..],`6esn`[00..][$123456789..],$usn2 Ends With $`5esn`);"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(usn1:usn2)Assert All(`2esn` In {999} Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]).`3esn` Is Unique"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Unwind {`6esn`}[All(`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0])..][{`3esn`:{``}[010],`4esn`:$123456789 Starts With `5esn`}..] As `2esn` Return Distinct *,{@usn6} Contains 0e0,[`1esn` In $12 Is Not Null Where {`3esn`}[{`5esn`}]|True Is Not Null Is Not Null] Ends With Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End Ends With `3esn`(Distinct 1.e1 =~$usn2,0X0123456789ABCDEF Is Null Is Null) As `5esn` Order By 0Xa[..07] Ascending,False[999] Descending,'s_str'[_usn3..] Ascending Skip Single(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2])[(_usn3 {usn1:0Xa[0e0..{#usn7}],`1esn`:.e0[True..Count ( * )][#usn7..0X7]})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1})..] Limit {999}[$123456789..][12..] Return Distinct $@usn6[1.e1..`8esn`][Null..123456789] As `2esn` Order By $7 Is Not Null Descending Skip ({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]})<-[`5esn`?:`7esn`]->(:@usn5)<-[`4esn`:`4esn`|:#usn7{`2esn`:{`4esn`}[$_usn4..][9e0..]}]-({usn2:`1esn` In 07}) =~Reduce(@usn6=`3esn` =~9e0 =~@usn6,_usn3 In True[7][$999]|$`8esn`[..$999][..0]) =~{@usn5:12 Is Not Null,`2esn`:$999 In 999} Limit `6esn` Starts With 123.654 Union All Foreach(`8esn` In $`7esn` Contains {`1esn`} Contains 9e12| Remove (#usn7 :@usn6{`8esn`:{@usn6}[True..{_usn3}],`1esn`:07 Is Null})-[`3esn`:`6esn`{`3esn`}]-(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[`1esn`?:_usn3|`8esn` *0xabc..7]-(`4esn` :@usn6).@usn6) Optional Match #usn7=Allshortestpaths(((:`5esn`:@usn5))),@usn5=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Where _usn4[Count(*)] Foreach(`6esn` In _usn3 =~123.654| Create Unique ((`5esn` :_usn3)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})),``=(_usn4 :#usn7{`8esn`:$999 Contains {7}}) Remove (usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[`7esn`? *0X0123456789ABCDEF{@usn6:12 Starts With {_usn4} Starts With $#usn8}]-(:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}})<-[``{`3esn`:{`3esn`}[{`5esn`}]}]-({@usn5:``[{123456789}..]}).`5esn`) Union All Remove `7esn`(Distinct {999} Starts With {12},999 Ends With .e12 Ends With .e1).@usn5;"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Drop Constraint On(`1esn`:`8esn`)Assert Exists((`2esn` :@usn6{7})-[?:`1esn`|:`3esn`{@usn5:{`6esn`} Ends With 0e0 Ends With {``},@usn5:{`1esn`} Starts With `4esn` Starts With {0}}]->(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]}).`5esn`)"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Start _usn3=Node:_usn3(_usn3='s_str') ,``=Relationship:#usn7(_usn3=\"d_str\")Where $_usn3[010..False] Match `2esn`=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`))),@usn5=(_usn3 :@usn5)-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}) Using Join On `6esn`,#usn7 Using Join On #usn7,@usn5 Union Merge (_usn3 :#usn8) On Create Set _usn3 =$`1esn` Ends With {`7esn`} Ends With $_usn3 Union All Unwind {123456789}[..'s_str'][..$@usn6] As `8esn` Remove [`3esn` In 123.654[1e1..][{#usn8}..] Where _usn3[\"d_str\"]|False Contains 0.e0 Contains Count(*)].`8esn`!,Filter(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`]).`3esn`!,Extract(_usn4 In `2esn` Where 1.0[{999}][$999]|`4esn`[usn1]).#usn7!;"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create Constraint On(`5esn`:usn2)Assert Allshortestpaths(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]}))).@usn6 Is Unique;"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On(`2esn`:usn1)Assert Exists({``:.e1 Ends With {7} Ends With $usn1}.@usn6?)"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Create Unique @usn5=({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1}) Union All Remove None(`1esn` In $12 Is Not Null Where 0Xa Contains Count ( * )).`3esn`,{`2esn`:Null In .e0,usn1:01234567[..9e1]}.`2esn`,Filter(`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0.12 In 0X7).`1esn` Match usn1=Shortestpath((:_usn3{@usn5:.e1[..\"d_str\"],#usn8:{`1esn`}[`6esn`..12e12]})<-[`7esn`?*..]-(usn1 :`1esn`{#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]})),`4esn`=Shortestpath((({@usn5:``[{123456789}..]})-[`3esn`:`6esn`{`3esn`}]-({`1esn`:$123456789[..$7][..$`6esn`]})<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`))) Using Scan `2esn`:`2esn` Using Join On `8esn`,_usn4 Where True =~_usn3 =~123456789"), + octest_legacy:ct_string("Explain Profile Detach Delete $`3esn`[{``}..],All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.e12[$`8esn`..{`8esn`}]) Is Null,$@usn5[..usn2][..$#usn7] Union All Delete $`2esn`[{`6esn`}][0.0],Single(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7])[..{@usn5:_usn4[Count(*)],`6esn`:$`3esn` Contains 0 Contains 07}][..Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`])],Single(`6esn` In 00 Where 0.12 In 0X7)[..{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] Union Unwind 010 Is Not Null Is Not Null As usn1"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Return *,Any(_usn4 In 0.0[..{999}][..0.0] Where Count(*) In {``})[..[$#usn7[`5esn`],.e1[@usn5]['s_str'],Count(*) Starts With $usn1 Starts With {usn2}]][..{usn2:$7 In @usn5 In {@usn5},`7esn`:{#usn7} Contains @usn5 Contains Count ( * )}] Order By $`4esn` In Null Descending,#usn8 =~{999} Asc Skip Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $#usn7[$`4esn`])[(usn1 :`6esn`:`8esn`)<-[_usn4?:`6esn` *0xabc..7$_usn3]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})][Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))] Load Csv From (:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) As `1esn` Fieldterminator 's_str' Start `2esn`=Node:`8esn`(`6esn`='s_str') ,`3esn`=Node:`4esn`({#usn8}) Union All With Distinct _usn3[\"d_str\"],None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12.e12[``..usn2][{#usn7}..@usn5]) Is Null Is Null Order By 0Xa[1000.._usn4] Asc,$0[..{usn2}][..$usn1] Desc Skip {#usn8}[12.0][$@usn6];"), + octest_legacy:ct_string("Explain Profile Foreach(#usn8 In Case Count(*) Ends With 123.654 Ends With $12 When $@usn6[$0..usn1][0X0123456789ABCDEF..$999] Then {`6esn`}[..{`2esn`}] End In Reduce(`4esn`={@usn6} In {#usn7} In 12.e12,usn1 In 12.e12 In {0} In 9e1|\"d_str\"[..0.e0]) In [_usn4 In `2esn` Where 9e12 Ends With 123456789|$999 Is Null]| Remove usn2:@usn5,Case 0.0 =~12.e12 =~1.0 When 0.e0 Ends With False Then 00[..$123456789][..$`5esn`] Else _usn3[$usn2..0] End.#usn8!,`8esn`:_usn3) Return *,{`4esn`:$`3esn` Contains 0 Contains 07}[Reduce(_usn4={123456789} =~01234567 =~`3esn`,_usn3 In True[7][$999]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`])][(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6)] As #usn7,_usn4 Is Null Is Null Order By {usn2} =~@usn6 =~{`4esn`} Asc,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Descending Skip `6esn` Starts With 123.654 Limit @usn6(`` Ends With $`4esn` Ends With 0X0123456789ABCDEF)[..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[:#usn8|`2esn` *0x0..{`3esn`:.e12[$7..][{`6esn`}..]}]->({usn1:1000 Is Null Is Null})];"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(usn1:`7esn`)Assert Exists(All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e12 =~$_usn4).`5esn`)"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On(@usn6:usn2)Assert Exists([12 Starts With 7 Starts With $`5esn`].usn2!);"), + octest_legacy:ct_string("Cypher 7.0 Create Constraint On(#usn8:_usn3)Assert Exists([`6esn` In Count(*) Ends With $`` Ends With {7} Where $12 Is Not Null]._usn3?);"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Create Constraint On(`2esn`:@usn5)Assert None(`1esn` In $12 Is Not Null Where 12.e12[{@usn5}..][9e1..]).`3esn`? Is Unique;"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` With usn2[`7esn`..{`3esn`}][$7..{#usn7}],Case When $`6esn` Starts With 12.e12 Starts With $#usn7 Then #usn8[`7esn`..] When {`4esn`}[$123456789..] Then {_usn3} Contains 9e0 Contains $999 End As @usn6 Order By 1.e1 Ends With 0 Ends With $usn1 Descending,[_usn4 In `2esn` Where 0X0123456789ABCDEF[$`5esn`..]] Ends With {``:{usn1} Ends With {`6esn`} Ends With 123456789,`5esn`:{999} Is Null} Ascending Limit $`1esn`[`4esn`..][{``}..] Where {12}[00..{@usn6}][1.e1..0] Union All Foreach(`7esn` In True Is Not Null Is Not Null| Detach Delete `2esn`[Null]) Remove #usn7._usn4!,_usn3($``['s_str'..][0x0..]).`6esn`"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Create Unique Shortestpath((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->({_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})),Allshortestpaths(({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) Start @usn5=Node:``(#usn7=\"d_str\") ,#usn8=Relationship:`4esn`(``='s_str')Where $``[..1.e1][..12] Union All Create Unique ((`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]-(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->({_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})) Create @usn6=Shortestpath(((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}))),(`6esn` :#usn8) With {1000}[\"d_str\"..{@usn5}][$1000..$#usn8] Order By 0.12[999][$#usn8] Descending,`7esn`[..$`5esn`][..{`5esn`}] Desc Limit {`1esn`:{123456789}[12..][$12..]} =~{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF} =~[`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`|_usn3[\"d_str\"]] Where 1.0 Is Null Is Null Union Foreach(`3esn` In `2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}]| Match Shortestpath(({`3esn`:0.e0[{999}][{`1esn`}],`1esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[:usn2|#usn7 *0X7..0Xa]->(#usn7 :@usn5)),`3esn`=(((`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[usn1?:`4esn`|:#usn7 *0X7..0Xa]->({_usn4:01234567[..9e1]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}))))"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Drop Constraint On(`1esn`:`5esn`)Assert [`6esn` In Count(*) Ends With $`` Ends With {7} Where $12 Is Not Null]._usn4 Is Unique"), + octest_legacy:ct_string("Profile Drop Constraint On(usn1:@usn5)Assert Exists(Extract(_usn4 In 0.0[..{999}][..0.0] Where #usn8 Is Null|07 Is Null).@usn6?);"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Create Constraint On()-[`6esn`:`2esn`]-()Assert Exists(`2esn`(Distinct 0Xa[$1000..$123456789]).`3esn`)"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Foreach(`` In (`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[{_usn4:{1000} Ends With {`8esn`}}]-(@usn5 :`7esn`{_usn3:{``}[_usn4..$`1esn`]})<-[`2esn`?*]->({#usn7:1e1[1.e1..][123.654..],`3esn`:True Starts With $`4esn` Starts With 12e12})[Shortestpath((((:`1esn`{`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[`6esn`?:_usn4|:usn1 *07{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}]-(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )})<-[`7esn`? *0X0123456789ABCDEF{@usn6:12 Starts With {_usn4} Starts With $#usn8}]-(`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}}))))..][(`1esn` :@usn6)<-[@usn5:_usn4|:usn1*]->(:@usn5)<-[`2esn`:#usn8|`2esn` *0xabc..7]-(usn1 :#usn8)..]| Remove {usn2:7 In 1.e1 In $usn1}.`4esn`!,All(_usn4 In 0.0[..{999}][..0.0] Where #usn8 Is Null).`8esn`? Create `5esn`=Shortestpath(((_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->(`` {``:0x0 =~123.654 =~{999}})-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->(:`3esn`:`6esn`{@usn5:.e12 =~.e0}))),#usn8=Allshortestpaths((_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})-[`1esn`?:_usn3|`8esn` *0xabc..7]->(@usn5 :`6esn`:`8esn`))) Create `6esn`=((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[:`2esn` *07]-(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]->({``:.e1 Contains $`3esn`}));"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Remove (usn1 :#usn8{``:$7[{`1esn`}]})-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-(_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null}).usn1?,[`3esn` =~9e0 =~@usn6].`1esn`,None(`1esn` In $12 Is Not Null Where .e1[@usn5]['s_str']).usn1! Unwind 07[$#usn8] As usn2 Match (_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Using Index @usn6:#usn8(_usn4) Using Index usn1:``(#usn7) Where 0X7[0X7..][Count ( * )..];"), + octest_legacy:ct_string("Cypher 7.0 With $12 Is Not Null As `6esn`,(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Is Not Null Is Not Null As `2esn`,$`4esn` In Null Order By 2.12[`8esn`][1e1] Descending Skip $1000 Is Null Is Null Optional Match `8esn`=Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Using Scan `4esn`:_usn4;"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On()<-[@usn5:#usn8]-()Assert Exists(Case When 2.12 In $`8esn` In {`7esn`} Then $usn1 In 01234567 In .e1 Else $`3esn` Contains 0 Contains 07 End.`1esn`!)"), + octest_legacy:ct_string("Cypher 7.0 Load Csv From $0 Is Not Null As `3esn` Fieldterminator 's_str' Start `5esn`=Rel:`4esn`('s_str') ,`6esn`=Node:_usn4(``=\"d_str\")Where $@usn5[$`4esn`][$@usn6]"), + octest_legacy:ct_string("Cypher 7.0 Using Periodic Commit Load Csv From Single(_usn3 In {@usn5}[..#usn7] Where {@usn6} In {#usn7} In 12.e12)[(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[*{`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]}]->(:`2esn`{#usn8:`6esn` Ends With 2.12 Ends With @usn6,`1esn`:{`8esn`}[True..][.e1..]})<-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` :`8esn`:@usn5)] As @usn6 Fieldterminator 's_str' Delete [#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 In 01234567 In .e1|{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]] =~Extract(`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]|$usn1 In 0.12 In $``) =~Single(_usn3 In {@usn5}[..#usn7] Where {`4esn`}[..07][..$`6esn`]);"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Foreach(`` In _usn4(Distinct 9e12[$`5esn`],$_usn4[$`4esn`..$12]) Starts With [`` In {`1esn`} Starts With @usn6 Where {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]|$`` In 0 In {1000}] Starts With [_usn4 In 0.0[..{999}][..0.0] Where Count(*) In {``}]| Load Csv From 12 In 999 As `8esn` Fieldterminator \"d_str\" Load Csv From None(`` In {`1esn`} Starts With @usn6 Where {12}[00..{@usn6}][1.e1..0])[Filter(_usn3 In True[7][$999] Where 12e12 Ends With `6esn` Ends With {`3esn`})] As _usn3 Fieldterminator \"d_str\") Start #usn8=Node:usn2(_usn3='s_str') Where 9e12 Ends With 123456789"), + octest_legacy:ct_string("Cypher 999.999 Cypher Create `4esn`=((:#usn8{#usn8:`3esn` Is Not Null Is Not Null})),``=Shortestpath((((`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})))) Union Detach Delete {123456789}[{12}..],9e0 =~0.0 =~$`5esn`;"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` With *,Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*))[Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12)..] As `3esn`,123456789[12..$`4esn`] As `7esn` Skip 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF Where $`3esn` Ends With $999 Ends With 0X0123456789ABCDEF Foreach(#usn7 In {`1esn`}[`6esn`..12e12]| Delete $`1esn`[07],{`3esn`}[{`5esn`}],999 Optional Match `8esn`=(({#usn7:#usn8 =~{999}})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})),((@usn5 )<-[#usn8? *..01234567]-($_usn3)) Using Join On ``,`7esn`,#usn7 Where True[$`7esn`..{1000}]) Unwind {#usn8} Is Null Is Null As _usn4 Union Optional Match `5esn`=(((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4}))),`8esn`=Shortestpath((({`2esn`:{7}[$7..],#usn7:`1esn` In 07}))) Return Distinct [`6esn` In 00 Where 0.12 In 0X7|{999} Is Null][Allshortestpaths((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]}))][Case {999}[$123456789..][12..] When $@usn6 =~#usn8 Then $999 Contains {7} When False Starts With 010 Then `8esn` Starts With {123456789} Else True Is Not Null Is Not Null End] As usn1 Order By 7[010][00] Descending,False[{`8esn`}] Asc,1e1 =~#usn8 =~2.12 Ascending Skip Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))[All(`2esn` In {999} Is Not Null Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF)][Shortestpath((:_usn3{_usn3:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF,`5esn`:1.0 Is Null Is Null})<-[`3esn`:`6esn`{`3esn`}]-(_usn4 :#usn7{_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})<-[ *123456789..0X7]-(`2esn` :`2esn`{`3esn`:#usn8 =~{999}}))] Limit 00 Contains #usn8 Return Allshortestpaths((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})<-[`1esn`?]->(:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}}))[Case When 123.654[$`1esn`..Null][1000..{_usn3}] Then ``[$0..][`1esn`..] When 00 Ends With `8esn` Then $usn2 Is Null Is Null Else $999 Is Null End..``(999 Starts With 's_str',1e1[1.e1..][123.654..])][Single(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{usn2:{1000},`6esn`:#usn8[`7esn`..]}] As @usn5,#usn7[00] As `7esn`,False Contains $#usn8 Contains 9e1 Order By Count(*) Is Not Null Asc Skip usn1 Is Not Null Is Not Null;"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Drop Constraint On(_usn4:`2esn`)Assert {`4esn`:1.e1[{#usn8}]}.usn2! Is Unique;"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(`4esn`:`6esn`)Assert Any(`6esn` In Count(*) Ends With $`` Ends With {7} Where 7 Contains `2esn` Contains $`8esn`).@usn5? Is Unique;"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Create Unique Shortestpath((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->({_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})),Allshortestpaths((#usn7 {``:0x0 =~123.654 =~{999}})) Union All Remove [$12[{7}..0X0123456789ABCDEF]]._usn4?,(usn1 :`2esn`{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})-[?{`7esn`:{``} Ends With .e12 Ends With 0.e0}]-(`4esn` {`2esn`:12 Starts With 7 Starts With $`5esn`})<-[``?:usn2|#usn7 *0x0..]->(@usn6 :usn1:_usn4).`7esn`? Unwind 999 Starts With $123456789 Starts With {``} As `8esn`;"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Create Constraint On(usn2:usn2)Assert Exists((`7esn` {`3esn`:0.0 =~12.e12 =~1.0,`1esn`:$usn1 Starts With {_usn3}})-[ *..0{`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null}]->(:usn1:_usn4{`4esn`:01234567 In $123456789}).`2esn`!);"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Create Index On:`3esn`(usn2)"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Return Distinct {`5esn`:2.12 =~0x0 =~_usn4,`3esn`:$@usn6 Contains `7esn`}[..(#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]})<-[`7esn`?:`7esn` *..7{`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})][..Any(_usn3 In {`2esn`} Ends With {12} Ends With 7)] As #usn8,12.e12 In {0} In 9e1 As #usn8 Order By #usn7[9e0] Ascending Skip #usn8 =~{999} Limit $`6esn`['s_str'..][{_usn4}..];"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Create Constraint On()-[`4esn`:#usn7]-()Assert Exists(Reduce(usn1=$7[$`3esn`],`5esn` In $`2esn`[12.e12][$@usn5]|9e1 =~999).`7esn`?)"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Drop Constraint On(usn2:``)Assert Exists((`6esn` :`8esn`:@usn5)-[@usn5?:`6esn` *12..]->(`4esn` :`7esn`)-[?:usn2|#usn7]-(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})._usn4!)"), + octest_legacy:ct_string("Cypher Drop Constraint On(#usn7:_usn4)Assert Allshortestpaths((`6esn` :@usn5{`4esn`:{#usn8}[$#usn7..],`4esn`:0[{@usn5}..][7..]})).usn1 Is Unique"), + octest_legacy:ct_string("Cypher 999.999 Cypher Remove Case 0.12 Starts With 9e12 Starts With $`1esn` When $`5esn`[`1esn`][0X0123456789ABCDEF] Then 9e12 Is Not Null Is Not Null Else {`2esn`} Ends With {12} Ends With 7 End.usn1 Load Csv With Headers From $usn1[0X7] As `6esn` Fieldterminator 's_str' Foreach(@usn6 In $`` Contains 1.e1| Create Unique #usn8=Allshortestpaths((`5esn` :_usn4)<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]})),Shortestpath((((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[`6esn`?]-(`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}))))) Union All Delete 12e12 =~{#usn7} =~$`3esn` With {`3esn`}[{12}..][0.12..] As ``,$``[True..] Order By [`2esn` In {999} Is Not Null Where {@usn6}[True..{_usn3}]] =~None(#usn7 In 123.654 Starts With $`` Where {usn2}[$`4esn`]) =~Extract(`1esn` In $12 Is Not Null Where Null Is Null Is Null|$123456789 =~`4esn`) Ascending,{0}[False..@usn5] Desc Limit 12 In 999 Where Count(*)[..``][..#usn8];"), + octest_legacy:ct_string("Explain Profile Create Constraint On(`1esn`:`5esn`)Assert None(_usn4 In `2esn` Where 0Xa Contains {`7esn`} Contains $999)._usn3? Is Unique"), + octest_legacy:ct_string("Cypher 999.999 Cypher Create Constraint On()-[`8esn`:`5esn`]-()Assert Exists(Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]|0.0 Contains $_usn4 Contains {`2esn`}).usn2);"), + octest_legacy:ct_string("Explain Profile Load Csv From Extract(usn1 In 12.e12 In {0} In 9e1 Where {_usn4} Is Null|{@usn5}[..{12}][..0x0]) Starts With (@usn6 )<-[?:`6esn`$usn1]->(_usn4 )<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00}) As usn2 Fieldterminator \"d_str\" Create `5esn`=((usn1 :``{_usn3:``[{#usn8}],`3esn`:{`3esn`} Is Null})-[?:`4esn`|:#usn7 *..0]-({`7esn`:{`1esn`} =~{_usn4}})),Shortestpath(((`5esn` :_usn3{`4esn`:12.e12[``..usn2][{#usn7}..@usn5]})<-[:`1esn`|:`3esn` *..01234567]-({`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF})-[``?:`4esn`|:#usn7 *07]-(_usn3 {@usn5:.e12 =~.e0}))) Union With Distinct 0e0[..1000] As #usn7,#usn8 Is Not Null As usn2 Order By 0.0[9e1..][Null..] Ascending,123.654[{@usn5}..123.654][1.0..$12] Descending,All(`5esn` In $`2esn`[12.e12][$@usn5] Where 12[..$@usn6]) =~(_usn4 :`7esn`)<-[{`2esn`:1000 Is Null Is Null}]->({`6esn`:7[010][00],#usn8:$usn1 =~010 =~07}) Desc Skip `8esn` Is Null Is Null Limit 12.0[#usn7]"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Load Csv From `4esn` Is Not Null Is Not Null As `7esn` Fieldterminator \"d_str\" Create Unique _usn4=Shortestpath(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})-[:`1esn`|:`3esn` *..01234567{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(#usn7 {``:0x0 =~123.654 =~{999}})),#usn8=((`2esn` :@usn6)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)<-[`1esn`:`8esn`|:_usn4 *123456789..0X7$12]->(:`1esn`{`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})) Load Csv From `1esn` In 07 As `8esn` ;"), + octest_legacy:ct_string("Cypher 7.0 Create Constraint On(`4esn`:`4esn`)Assert Shortestpath((((usn2 :``)-[@usn5?:#usn7|`2esn`{`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}]->(`2esn` :@usn6{7})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`)))).@usn6! Is Unique"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Create Constraint On(usn1:`3esn`)Assert [`6esn` In 00 Where 0X0123456789ABCDEF Is Null Is Null].`7esn`? Is Unique"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On(#usn8:`5esn`)Assert [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[{999}..][{_usn4}..]].`6esn` Is Unique"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Drop Constraint On(@usn6:``)Assert Exists(_usn3(usn2[`7esn`..{`3esn`}][$7..{#usn7}],.e1[..{`7esn`}][..{_usn3}]).#usn7)"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(``:`7esn`)Assert Exists(All(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null)._usn4?);"), + octest_legacy:ct_string("Cypher Create Unique _usn3=Allshortestpaths((((:`3esn`:`6esn`)-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})-[:`8esn`|:_usn4 *999{_usn3:9e1 =~999}]->(:#usn7{usn2:{`8esn`}[0X7][$`3esn`]})))),Allshortestpaths((((:`7esn`{`1esn`:@usn5 =~'s_str',`8esn`:{999} Starts With {_usn4} Starts With 00})<-[@usn5:`8esn`|:_usn4]->(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]})<-[?:_usn3|`8esn` *1000]-(:``)))) Detach Delete False[1000][{`7esn`}] Union Optional Match @usn5=Allshortestpaths((@usn6 :usn1:_usn4)<-[?:@usn6|`` *..01234567]->(#usn8 {usn1:$123456789 Starts With `5esn`})-[? *01..07]->(`8esn` :#usn7)),`8esn`=Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Using Scan usn2:`5esn` Where 123.654[{@usn5}..123.654][1.0..$12] Load Csv With Headers From 0X0123456789ABCDEF Is Null Is Null As `` Union All With {`3esn`} =~[1.e1 =~$usn2] =~Filter(`6esn` In 00 Where `5esn`[..9e0][..01234567]) Limit {#usn8} =~{999} =~{#usn7} Where $_usn3[010..False];"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Drop Constraint On()-[`1esn`:#usn7]-()Assert Exists(Any(`6esn` In 00 Where usn1 Is Null Is Null).`2esn`);"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Optional Match _usn4=Allshortestpaths((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})),`3esn`=((_usn4 :#usn8{`5esn`})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5)-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->({`7esn`:123456789[0..]})) Using Scan `4esn`:`` Using Index usn1:@usn5(`7esn`) Where {@usn5}[12.0..1000][{`3esn`}..{7}] Optional Match ((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})-[:`5esn`]-({`7esn`:@usn5[..$@usn5][..0Xa]})-[@usn5? *0x0..{`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}]-(_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null}));"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Return *,Case $1000 =~{1000} =~`5esn` When 9e1[9e1...e0] Then 00 Starts With $`6esn` When 123.654[1e1..][{#usn8}..] Then $`3esn`[{``}..] End In [`6esn` In Count(*) Ends With $`` Ends With {7} Where 0Xa[..{1000}][..$#usn7]] As `5esn` Limit {#usn8}[2.12] Union With Distinct *,$`8esn` In $`2esn` In {7} As _usn3 Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,1.e1 =~$`1esn` Ascending,12.e12[..1e1] Asc Skip [$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]][..Case {#usn8}[#usn7..{`2esn`}] When $7 Is Not Null Then $@usn6[$`8esn`..][7..] When $`4esn`[..'s_str'][..`8esn`] Then `7esn` Contains {@usn5} Contains $123456789 Else 12.e12 In $0 In $0 End] Where {`5esn`} Contains 's_str' Contains 9e1 Detach Delete #usn8 Is Null,1e1 Starts With 9e1 Starts With {`4esn`} Return Distinct *,$_usn4[$`4esn`..$12],{`5esn`} Starts With 12.0 Order By @usn5 =~`` Asc"), + octest_legacy:ct_string("Cypher 999.999 Cypher Create Constraint On(usn2:`6esn`)Assert Exists(Shortestpath((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )).`2esn`?)"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Using Periodic Commit 0X0123456789ABCDEF Load Csv From (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Is Null As usn1 Fieldterminator 's_str'"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(`6esn`:`2esn`)Assert [`` In {`1esn`} Starts With @usn6 Where 's_str'[.._usn4][..``]].`7esn`? Is Unique;"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Foreach(_usn3 In 12 In 999| With Distinct `7esn`[{7}..@usn5] As `6esn`,[`1esn` In $12 Is Not Null Where {`3esn`}[{`5esn`}]|True Is Not Null Is Not Null] Ends With Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End Ends With `3esn`(Distinct 1.e1 =~$usn2,0X0123456789ABCDEF Is Null Is Null) As `5esn`,$999 Is Not Null Is Not Null As `3esn` With Distinct `2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] Limit `` =~`6esn` =~usn1 Where @usn5[12.0][{1000}]) Remove `1esn`:`4esn`:@usn6,{@usn6:12 Starts With {_usn4} Starts With $#usn8,`3esn`:.e1[@usn5]['s_str']}.#usn7? Union Unwind 9e0 Contains @usn6 Contains {#usn7} As `` Create #usn8=(`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})<-[? *0X7..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Load Csv With Headers From {999} Starts With {_usn4} Starts With 00 As `8esn` Fieldterminator \"d_str\" Union Return 999[12.0..][#usn7..],7[010][00] Limit `4esn` Contains #usn8 Contains 7 Create Unique `3esn`=(((`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[usn1?:`4esn`|:#usn7 *0X7..0Xa]->({_usn4:01234567[..9e1]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}))) Remove None(_usn3 In {@usn5}[..#usn7] Where $`` In 0 In {1000}).`5esn`,[@usn5 In Null =~12e12 Where 0[{usn2}..][usn1..]|_usn3[\"d_str\"]].`3esn`?,Extract(`1esn` In `3esn`[07..] Where 12 Ends With 01|{#usn7}[Count ( * )..12][$`2esn`..`4esn`]).usn1?;"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Return *,0X0123456789ABCDEF[9e12] As @usn5,Count(*)[.e12..] Skip (usn1 :@usn5)<-[_usn4?:usn2|#usn7{_usn4:{`1esn`} In 12.e12 In 9e1}]-(:usn2:`2esn`)[Extract(`1esn` In $12 Is Not Null Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`|12.0 =~$#usn7 =~9e12)] Limit (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})-[:`2esn` *1000{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(_usn3 :#usn8)-[:``]->({`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}}) Ends With 01234567 Detach Delete Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`])[(`3esn` :#usn7{`6esn`:{_usn4} Is Null,usn2:{`2esn`} Starts With @usn6})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`8esn`:@usn5)<-[@usn6?:`7esn`]->(:`2esn`{#usn7:#usn8 =~{999}})..Shortestpath((`8esn` {_usn4:{usn1} In Count ( * )})<-[`6esn`?]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})<-[@usn6?:`7esn`]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1}))][Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0[$#usn8...e12])..[`1esn` In $12 Is Not Null Where {usn1} In Count ( * )|$`3esn`[{``}..]]],{usn2}[`6esn`..01234567],All(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7]) Contains Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End Contains Reduce(`6esn`={_usn4} In {1000},usn1 In 12.e12 In {0} In 9e1|{`4esn`} Starts With $7 Starts With $``) Start `8esn`=Node:`4esn`(\"d_str\") ,#usn8=Relationship:`4esn`(``='s_str');"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Load Csv With Headers From @usn5 Contains {0} Contains 9e12 As `` Remove Filter(`` In {`1esn`} Starts With @usn6 Where 12 Starts With 7 Starts With $`5esn`).``,Single(`1esn` In $12 Is Not Null Where {usn1} In Count ( * )).usn2?,Shortestpath((_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}})).#usn8? Foreach(`7esn` In usn2(Distinct 0Xa[..{1000}][..$#usn7])[Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000|\"d_str\"[{`8esn`}..])][(`4esn` :`1esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]->(#usn7 )]| With Distinct *,{@usn6} Contains 0e0,[`1esn` In $12 Is Not Null Where {`3esn`}[{`5esn`}]|True Is Not Null Is Not Null] Ends With Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End Ends With `3esn`(Distinct 1.e1 =~$usn2,0X0123456789ABCDEF Is Null Is Null) As `5esn` Order By @usn5 =~`` Asc Skip 07 =~$`8esn` =~9e1 Limit \"d_str\"[{`8esn`}..] Where `3esn` Is Not Null Is Not Null Create Unique @usn5=Allshortestpaths(({`8esn`:0[$`6esn`...e1][`1esn`..$`7esn`]})-[#usn8:#usn7|`2esn`]->(:@usn6{`2esn`:$999 In 999})),`1esn`=((`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})-[ *0xabc..7{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}]-({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})-[`2esn`:`3esn`|:@usn5 *..010{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->({`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]}))) Union All Load Csv From $`4esn` Starts With 9e12 As `3esn` Fieldterminator \"d_str\" Unwind @usn5[12.0][{1000}] As `8esn` Merge #usn8=Allshortestpaths((((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`})))) On Create Set [0X0123456789ABCDEF Contains $`1esn` Contains 1000].``! =1000[$7..$123456789] On Create Set Filter(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $7[{`1esn`}]).``! =$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,exists($`5esn`[`4esn`][_usn3]).@usn5 =$7[{`1esn`}],`2esn`({1000}[1000][$usn1]).`8esn`! =_usn4[['s_str'[..0X7],False Contains 0.e0 Contains Count(*)]..] Union Create (({`1esn`:{123456789}[12..][$12..]}));"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Drop Constraint On(@usn6:usn1)Assert Exists({`4esn`:$`5esn` Is Not Null}.`1esn`)"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Return 1.0 In 9e1 In {`7esn`},$12 Is Not Null As `6esn`,01234567[$7..{12}] Order By False[1000][{`7esn`}] Asc,Count(*) Ends With $`` Ends With {7} Asc Skip 9e12 Contains $`7esn` Limit #usn7 Ends With $#usn7 Ends With {`8esn`} Return 1.e1 Is Null Skip $`2esn`[{``}..{1000}][#usn8..`2esn`] Limit $123456789[..$7][..$`6esn`] Union All Create @usn6=Shortestpath(((_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]}))),`8esn`=Shortestpath((({`7esn`:{`1esn`} =~{_usn4}})-[_usn3?:usn1 *12..{#usn7:0e0 Contains `3esn` Contains `7esn`}]-(`5esn` $`8esn`))) Return *,1.e1 Starts With $`2esn` Starts With $0 Union Create Unique usn1=Allshortestpaths((`2esn` :#usn8{@usn6:`7esn` Ends With $_usn3 Ends With usn2,_usn4:{12} Starts With #usn8 Starts With 0e0})<-[:`6esn`{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},`6esn`:``[..$#usn7]}]->({_usn4:False[0Xa..$usn1]})),#usn7=Allshortestpaths((({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True}))) Delete 0.0 In `6esn` In $@usn5,9e12 In 1e1 In .e12,1.0[..`4esn`][..{0}] Foreach(`1esn` In $#usn7[`5esn`]| Start ``=Rel:_usn4({`2esn`}) ,`7esn`=Node:`4esn`(``='s_str')Where 1000 Is Not Null)"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Detach Delete Case When Null Ends With 12 Ends With usn2 Then {7}[{`4esn`}][`6esn`] End Is Not Null Is Not Null Union Create Unique (((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))) Union All Match ({`4esn`:_usn4 Is Null Is Null,@usn6:{`5esn`} Contains 's_str' Contains 9e1})<-[? *0xabc..7]->(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6}) Using Scan `1esn`:`7esn` Using Join On `8esn`,`3esn` Start `5esn`=Node:`6esn`(usn2={`8esn`}) ,usn1=Node:`6esn`({`8esn`})Where {#usn7} Contains 0.0 Contains $0 Create _usn3=(({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}))"), + octest_legacy:ct_string("Cypher 0.1000 Using Periodic Commit 01234567 Load Csv With Headers From 's_str'[$usn2][Count(*)] As usn2 Fieldterminator \"d_str\" Return 9e12[{123456789}..][$`2esn`..] As `1esn`,010 Is Not Null Is Not Null As #usn7,{7} Is Null Order By $12 Contains 0Xa Descending Skip $12 Contains 0Xa Create Unique usn1=(((usn2 )<-[ *0xabc..7]->(:`4esn`:@usn6)<-[usn2?:usn2|#usn7]->(`3esn` :_usn4))),`4esn`=(`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})-[?:@usn6|`` *..0Xa]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})"), + octest_legacy:ct_string("Profile Optional Match ((()-[?:`3esn`|:@usn5 *0x0..{`3esn`:.e1[0.12],`7esn`:$123456789 Starts With .e12}]-(:`6esn`:`8esn`{@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]})-[?:usn2|#usn7]-(`1esn` {#usn7:Count ( * )[$12..]}))),((`4esn` {`1esn`:9e12 Is Not Null Is Not Null})-[?:`7esn` *999{@usn6:{``} Ends With .e12 Ends With 0.e0,`5esn`:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})) Using Index usn1:`7esn`(_usn3) Where 07 =~@usn5 Union Detach Delete 9e0 Starts With .e0 Starts With \"d_str\",(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) Union Match _usn3=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`)));"), + octest_legacy:ct_string("Cypher 0.1000 Unwind 9e0 Contains @usn6 Contains {#usn7} As `` Create #usn8=(`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})<-[? *0X7..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Load Csv With Headers From {999} Starts With {_usn4} Starts With 00 As `8esn` Fieldterminator \"d_str\";"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Drop Constraint On(`6esn`:`2esn`)Assert Exists(Case When {@usn6} Contains 123.654 Contains 01 Then #usn8 Is Not Null Else 0.12 Ends With {1000} Ends With `6esn` End._usn3?);"), + octest_legacy:ct_string("Cypher 999.999 Cypher Start _usn3=Node(01,0x0,0X7,0X7) ,`2esn`=Relationship:_usn4(usn1={_usn4})Where $`8esn`[..$999][..0] Union All Match _usn4=Allshortestpaths(((:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})-[?:#usn8|`2esn` *999{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({@usn6:#usn8[$0..False][$`1esn`..$#usn7]})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}))) Using Join On _usn3 Using Scan `6esn`:``;"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Remove Filter(`1esn` In `3esn`[07..] Where #usn8 =~{_usn3} =~``).@usn5!,[`5esn` Is Null Is Null,$1000 Is Not Null Is Not Null].@usn6! Merge Shortestpath((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})<-[#usn7?:#usn8|`2esn`]-(usn2 {`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})) On Create Set `1esn`+=010 In $`5esn` In 0,[_usn3 In True[7][$999] Where 12e12 Is Not Null Is Not Null].@usn6? ={@usn6} Contains 123.654 Contains 01,@usn5 =$#usn7 =~{12} =~False On Create Set usn1+={usn1}[{`5esn`}..],Case {0} Is Null When $0 Is Not Null Then #usn8 Is Not Null When 12.e12[{@usn5}..][9e1..] Then `2esn`[$1000..9e12][{#usn8}..{7}] End.`6esn` =#usn8 =~{_usn3} =~``,`7esn`+=12e12 Ends With `4esn` Ends With 123456789 Create `4esn`=Shortestpath(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))),((#usn8 {`8esn`:{7} Contains $123456789})) Union All Unwind $7 Is Not Null As `5esn` Create @usn6=(#usn8 :`7esn`);"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(#usn8:_usn3)Assert Exists(Case 1.e1 =~`2esn` When Count(*) Is Not Null Then ``[..$#usn7] When {`3esn`}[{`5esn`}] Then \"d_str\" Contains @usn6 Contains 12.e12 Else $12 Contains 0Xa End.``?)"), + octest_legacy:ct_string("Explain Profile Match `2esn`=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`))),@usn5=(_usn3 :@usn5)-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}) Using Join On `6esn`,#usn7 Using Join On #usn7,@usn5 Union With Distinct $`` =~{``} =~0.e0,{`3esn`}[{`5esn`}] As `6esn` Order By 12.e12[$`4esn`..] Descending,{`2esn`}[@usn5..][{``}..] Descending Skip 0.0[..{999}][..0.0] Where _usn4 In $usn1 Union Delete $0 Starts With `2esn` Create Unique `8esn`=(({`1esn`:12 Starts With 0x0})<-[`5esn`{`6esn`:12 Is Not Null Is Not Null,`8esn`:`3esn` Is Not Null Is Not Null}]->(_usn3 {@usn5:.e12 =~.e0}));"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Unwind $@usn5 Is Not Null Is Not Null As #usn7 Union With {usn2} Starts With `` Starts With {0},@usn6[2.12..$#usn8][`3esn`..{`5esn`}] As `8esn` Order By ({usn1:0[{@usn5}..][7..],`7esn`:{``}[_usn4..$`1esn`]})<-[@usn5:`8esn`|:_usn4]->(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(_usn4 :_usn4) In (`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})<-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]->(`4esn` :#usn7)<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}) In Allshortestpaths((((:`7esn`{`1esn`:{1000} In {123456789},`4esn`:010 In `1esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)))) Desc,{_usn4}[{usn1}..$_usn3] Asc Skip {`3esn`}[$1000] Detach Delete {`2esn`} Ends With {12} Ends With 7,1e1[7..][.e1..],#usn7(Distinct)[usn2(Distinct)..{#usn7:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:#usn8[$0..False][$`1esn`..$#usn7]}][Case When {`4esn`}[..{`4esn`}] Then {`7esn`}[0X7..][0x0..] When {@usn6} Contains 123.654 Contains 01 Then #usn8 Is Not Null End..[9e12 Ends With 123456789]]"), + octest_legacy:ct_string("Profile Create Constraint On()-[`3esn`:`2esn`]-()Assert Exists([999[12.0..][#usn7..],12.e12 In $0 In $0,1000]._usn3?);"), + octest_legacy:ct_string("Cypher 999.999 Cypher Return {`4esn`}[$_usn4..][9e0..],0X7 Starts With {999} Starts With 12e12 As @usn5,$`2esn` Ends With 0.12 Ends With .e1 As `` Order By False[{`8esn`}] Asc,Reduce(usn2={`6esn`}[..{`2esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|1e1[..01]) Is Not Null Is Not Null Asc,{1000}[1000][$usn1] Ascending Union All Create Unique Shortestpath((`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})),(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]}) Union All Create `3esn`=Allshortestpaths((`7esn` :@usn6)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]}));"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Drop Constraint On(#usn8:`3esn`)Assert {#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000}.`` Is Unique;"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Load Csv With Headers From 1000 As `2esn` Fieldterminator \"d_str\" Create @usn6=((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1)),``=Shortestpath(((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))) Union All Remove [{usn1} Ends With {`6esn`} Ends With 123456789,$usn1[@usn6][#usn7]].`2esn`!,Reduce(`4esn`=$1000 Starts With $`8esn` Starts With {`5esn`},`` In {usn1} Ends With {`6esn`} Ends With 123456789|{`8esn`}[True..][.e1..]).`3esn`! Create Unique #usn8=Shortestpath(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]}))) Union All Unwind $`2esn` Ends With `` Ends With {12} As `6esn`"), + octest_legacy:ct_string("Cypher 0.1000 Optional Match Allshortestpaths((:usn1:_usn4{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[`8esn`? *999]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})),`6esn`=(({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})) Using Join On `6esn`,`1esn`,`` Using Index `4esn`:usn2(`4esn`) Where {``} Starts With 123456789 Starts With usn2 Unwind `6esn` Ends With 2.12 Ends With @usn6 As @usn6;"), + octest_legacy:ct_string("Cypher 7.0 Create Constraint On(`1esn`:`7esn`)Assert [`1esn` Is Null Is Null,$`3esn` Contains 0 Contains 07,0 Contains $usn2 Contains 12e12].usn2! Is Unique"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(`8esn`:#usn7)Assert Exists(Reduce(`2esn`=01234567 In $123456789,`1esn` In $12 Is Not Null|#usn7 =~{`4esn`} =~123456789).`4esn`!)"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Match Shortestpath((((:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})))) Using Index `4esn`:usn2(`4esn`) Match (({`8esn`:0[$`6esn`...e1][`1esn`..$`7esn`]})) Union All Create `4esn`=((`7esn` {`4esn`:#usn8 =~{999},`2esn`:9e1 =~`` =~{`7esn`}})-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-({`1esn`:$123456789[..$7][..$`6esn`]})) Foreach(_usn4 In $`` In \"d_str\"| Load Csv From `4esn` Is Not Null Is Not Null As `7esn` Fieldterminator \"d_str\" Return ``[{#usn8}]) Load Csv With Headers From {#usn8} Is Null Is Null As usn2 Fieldterminator \"d_str\";"), + octest_legacy:ct_string("Explain Profile Create Constraint On()<-[`7esn`:`2esn`]-()Assert Exists((usn1 :``{`6esn`})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})-[`7esn`? *123456789..0X7{`6esn`:{0}[..{`7esn`}]}]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999}).usn1)"), + octest_legacy:ct_string("Cypher Drop Constraint On(`2esn`:`6esn`)Assert Exists(Single(`1esn` In $12 Is Not Null Where {``}[010]).`8esn`?);"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create Allshortestpaths((_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})<-[*{`8esn`:0Xa[.._usn3][..$`6esn`]}]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})) Union All With *,$`1esn`[`6esn`..][00..],$1000 =~{1000} =~`5esn` As @usn6 Order By {#usn8}[usn1][1.0] Asc,`7esn`[{usn1}][999] Descending Skip Null In .e0 Where {999} Is Null Foreach(#usn7 In 0Xa Contains #usn8 Contains 1000| Create Unique #usn7=(_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}) Match ``=(({`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[ *0xabc..7]->(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]})) Using Index `1esn`:`4esn`(`1esn`)) Start _usn3=Relationship:``(_usn3={0}) Union All Load Csv With Headers From {@usn5}[{`5esn`}][$12] As usn1 ;"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Load Csv From 999 Starts With 's_str' As _usn4 Optional Match `3esn`=((_usn4 :#usn8{`5esn`})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5)-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->({`7esn`:123456789[0..]})) Using Scan `3esn`:`3esn` Union All With Distinct {usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}[..None(`1esn` In `3esn`[07..] Where 0X0123456789ABCDEF[`5esn`..][$#usn8..])] Skip 0xabc[$999..][{#usn7}..] Optional Match Allshortestpaths((usn2 :`5esn`:@usn5)),Allshortestpaths((((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]-({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})-[#usn8:`` *..0{@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})))) Load Csv With Headers From 0Xa[$1000..$123456789] As `7esn` Union Optional Match #usn7=Allshortestpaths(((:`5esn`:@usn5))),@usn5=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Where _usn4[Count(*)] Load Csv From {`1esn`} Starts With {`3esn`} As `2esn` Fieldterminator \"d_str\" Remove Shortestpath(({usn2:#usn8 =~{_usn3} =~``})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})-[?:`1esn`|:`3esn` *999]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})).`4esn`,Reduce(#usn7={_usn4}[{``}..],_usn3 In {`2esn`} Ends With {12} Ends With 7|{`6esn`} Ends With 0e0 Ends With {``}).#usn7!"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Merge @usn6=((_usn4 :#usn8)<-[:#usn8|`2esn` *123456789..0X7{``:$#usn7 =~{12} =~False,`5esn`:{1000} In {123456789}}]->({`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF})<-[{``:\"d_str\"[{`8esn`}..]}]-(:#usn7{#usn7:$`8esn` In $`2esn` In {7}})) On Create Set _usn3 =1.e1[`4esn`..][$`6esn`..];"), + octest_legacy:ct_string("Cypher 7.0 Start @usn5=Node:``(#usn7=\"d_str\") Merge Shortestpath((`7esn` :`1esn`)<-[`1esn`?:`4esn`|:#usn7 *..01234567]-({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6})) On Match Set `4esn` ={`5esn`}[$`8esn`..$`1esn`][0.12..0.12],`3esn` =[`8esn` In $12[{7}..0X0123456789ABCDEF] Where 2.12 In $`8esn` In {`7esn`}|12e12 Starts With `1esn` Starts With usn2] Contains Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 9e0[#usn8]) Contains #usn7({`7esn`}[9e1..][@usn6..],{usn2}[$`4esn`]) Union With Distinct {#usn7} Contains @usn5 Contains Count ( * ),01 Starts With {999} Starts With $`2esn`,$usn1[@usn6][#usn7] As `6esn` Order By Any(`6esn` In 00 Where 0X7 Starts With {999} Starts With 12e12) Starts With (`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}) Starts With {`8esn`:{#usn7} Contains @usn5 Contains Count ( * )} Ascending,`8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]] Desc Limit None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] Where {`1esn`} Starts With `4esn` Starts With {0} Merge ((_usn4 :`8esn`:@usn5)) With Distinct 0x0[{7}..] As `7esn`,$`5esn`[@usn5..][$``..],Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF)[Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6)..Shortestpath(((_usn3 {@usn5:.e12 =~.e0})-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})-[`5esn`?:@usn5|:`7esn`]-(:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01})))][Shortestpath(((`6esn` :`7esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})))..Reduce(usn2=Null In .e0,_usn3 In {`2esn`} Ends With {12} Ends With 7|{0}[..{`7esn`}])] As usn2 Order By $_usn3[{999}] Ascending,1.e1 Ends With 0 Ends With $usn1 Descending,$0[..{usn2}][..$usn1] Desc Skip Count ( * ) Starts With 010 Starts With 0x0;"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Return *,1.e1 Starts With $`2esn` Starts With $0 Create Allshortestpaths(((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)))"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Drop Constraint On(`1esn`:_usn3)Assert Shortestpath((`1esn` {@usn5:$usn1 In 0.12 In $``}))._usn3! Is Unique;"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Unwind 1e1 Is Not Null Is Not Null As `6esn` Start #usn8=Relationship:usn1({7}) ,`2esn`=Node(123456789,01234567,01234567)Where $12 Is Not Null With Distinct Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..],`` =~`6esn` =~usn1 As `2esn` Order By $_usn4 Starts With 's_str' Starts With {7} Desc,123456789 In $`6esn` In _usn3 Ascending Where 0.12[Count(*)..][$#usn7..];"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Unwind 0xabc[9e12][0X0123456789ABCDEF] As _usn4;"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Drop Constraint On()-[`7esn`:@usn6]->()Assert Exists(Shortestpath(((#usn8 :@usn5)<-[_usn3{@usn6:{7} Contains $123456789}]->(:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1}))).`6esn`)"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Drop Constraint On()-[`4esn`:_usn4]->()Assert Exists(Extract(_usn4 In 0.0[..{999}][..0.0] Where {`7esn`} Is Not Null Is Not Null|{`1esn`} =~{_usn4}).`8esn`!)"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Detach Delete 123456789 Is Not Null Is Not Null,{@usn6} Starts With @usn5 Starts With @usn6,.e1[..\"d_str\"] Return $7 Ends With $`8esn` As `4esn` Skip {`4esn`:#usn7 =~00,@usn5:usn2[True]} =~`6esn`(Distinct #usn7 =~{`4esn`} =~123456789,1e1[1.e1..][123.654..]) =~Allshortestpaths(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))) Detach Delete {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}[Any(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3}[..$`8esn`])] Union All Match #usn8=(((#usn7 :@usn6{`8esn`:{@usn6}[True..{_usn3}],`1esn`:07 Is Null})-[ *..0{`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null}]->(:usn1:_usn4{`4esn`:01234567 In $123456789})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5))) Using Index usn2:@usn6(`2esn`) Using Index @usn6:#usn8(`8esn`) Where 12e12 Create Unique @usn5=(`6esn` :`8esn`:@usn5),usn1=((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)) Foreach(_usn4 In $`8esn` Starts With 0xabc Starts With {usn2}| Optional Match usn1=((`5esn` :_usn4)),((`4esn` :`8esn`:@usn5)-[`6esn`:usn1{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]->(:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]-(@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})) Using Index @usn5:usn2(`2esn`) Return *,{7}[$123456789..{1000}][$`3esn`..`7esn`] Limit $123456789[..$7][..$`6esn`]);"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Match @usn6=Allshortestpaths(((:#usn8{#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})-[_usn4 *0x0..]-(:#usn7{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})))"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create Constraint On(`3esn`:`4esn`)Assert Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*)).usn1? Is Unique;"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Return Distinct *,.e0 =~{`8esn`} =~$999 As #usn7,010 In $`5esn` In 0 As `6esn` Order By $usn1 In 0.12 In $`` Descending,Count ( * ) Contains 12 Descending Skip $`` In `7esn` Limit [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]][Shortestpath(((`1esn` :`7esn`)<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})))..] Foreach(@usn5 In 010 In `1esn`| Start #usn7=Relationship:usn2(_usn3='s_str') Where 0x0[{999}..][{_usn4}..]) Union Create `6esn`=Allshortestpaths(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(:`2esn`{`6esn`:@usn6[{0}..]}))),`8esn`=({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]->(usn1 :`8esn`:@usn5{`1esn`:{#usn7} Contains 0.0 Contains $0,`2esn`:.e12[010..$123456789]})<-[_usn3?:@usn6|`` *0x0..{`3esn`}]-(@usn6 {`1esn`:01234567 In $123456789,`1esn`:{`6esn`}[..{`2esn`}]}) Load Csv With Headers From `3esn` Starts With Count(*) As `3esn` With *,$`1esn`[`6esn`..][00..],$1000 =~{1000} =~`5esn` As @usn6 Order By {#usn8}[usn1][1.0] Asc,`7esn`[{usn1}][999] Descending Skip Null In .e0 Where {999} Is Null Union Optional Match Shortestpath(((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0}))),Shortestpath((`6esn` :`8esn`:@usn5)<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})) Using Scan `8esn`:#usn7;"), + octest_legacy:ct_string("Cypher 999.999 Cypher Unwind [{999} Starts With {12},9e1 Ends With Count(*) Ends With False,0X0123456789ABCDEF[`5esn`..][$#usn8..]] In Single(`6esn` In 00 Where 0X0123456789ABCDEF Is Null Is Null) As `1esn` Load Csv With Headers From 0e0 As `8esn` Fieldterminator 's_str' Union All Delete {123456789}[{_usn3}][False],0Xa[.._usn3][..$`6esn`],Allshortestpaths((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null}))) In {`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null} Foreach(usn1 In All(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3} Contains 9e0 Contains $999) Is Not Null| Detach Delete ({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01})[(`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(usn2 )],{123456789} =~usn1 =~{usn1}) Merge ((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})) On Create Set [1.e1 =~$usn2,$`5esn`[`1esn`][0X0123456789ABCDEF],$0[`7esn`]].`5esn`? =@usn5[$12..\"d_str\"],_usn3+=$`1esn`[$12][Count ( * )] Union Unwind 7[123456789..$123456789][``..00] As `6esn` Unwind {999} Is Null As `6esn` With {`3esn`}[{12}..][0.12..] As ``,$``[True..] Order By [`2esn` In {999} Is Not Null Where {@usn6}[True..{_usn3}]] =~None(#usn7 In 123.654 Starts With $`` Where {usn2}[$`4esn`]) =~Extract(`1esn` In $12 Is Not Null Where Null Is Null Is Null|$123456789 =~`4esn`) Ascending,{0}[False..@usn5] Desc Limit 12 In 999 Where Count(*)[..``][..#usn8];"), + octest_legacy:ct_string("Cypher Match `2esn`=Allshortestpaths((({`6esn`:1.e1[12e12..{`6esn`}]})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}))),usn2=Shortestpath(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))) Using Scan ``:`4esn` Using Index `7esn`:`1esn`(`2esn`) Create `4esn`=({`5esn`:0Xa[0e0..{#usn7}]})<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00}),#usn7=(:``{``:0x0 =~123.654 =~{999}})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}) Match `7esn`=(((:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})<-[`2esn`?{``:123.654 Starts With $``,``:{``} Ends With .e12 Ends With 0.e0}]-(:_usn3{0})<-[`3esn`?{`3esn`:1e1 Contains usn2}]->(:`3esn`:`6esn`))),`2esn`=Shortestpath((usn2 )-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})) Using Join On `1esn`,#usn8 Using Scan usn2:@usn5"), + octest_legacy:ct_string("Cypher 7.0 Using Periodic Commit 01 Load Csv With Headers From [.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]] Is Not Null As usn1 Fieldterminator 's_str' Create Unique (`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )});"), + octest_legacy:ct_string("Cypher 7.0 Unwind 12.e12[..1e1] As usn1 Union All Create Unique Allshortestpaths((({`7esn`:123.654 Ends With usn2 Ends With 0})<-[@usn6?:`7esn` *07{123456789}]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}))),(((_usn3 :@usn5{`2esn`:@usn5[$12..\"d_str\"]})-[{`7esn`:01234567 In $123456789}]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[`4esn`?*..]-(:`4esn`:@usn6{`3esn`:123456789 Is Not Null Is Not Null}))) Remove [`3esn` =~9e0 =~@usn6].`1esn`,Allshortestpaths((((usn2 :_usn3)<-[#usn7{#usn8:{`1esn`} Is Not Null}]->(`8esn` {`3esn`:'s_str'[..0X7]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6)))).`8esn`"), + octest_legacy:ct_string("Explain Profile With Distinct *,9e1[9e1...e0] Order By 1e1[{_usn4}..123.654] Ascending,00[..$123456789][..$`5esn`] Asc Skip 7[1e1..#usn7] Limit [`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]][..{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}][..`4esn`(123.654[$`1esn`..Null][1000..{_usn3}])] Unwind $123456789 Starts With .e12 As _usn3 Union Merge usn1=Shortestpath(((:`1esn`{usn2:{`6esn`} Ends With 0e0 Ends With {``}}))) On Create Set All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {7}[$123456789..{1000}][$`3esn`..`7esn`]).``! =All(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $@usn6[01..@usn5][0x0..`4esn`]) Is Not Null Is Not Null,@usn5+=[12e12 Starts With `1esn` Starts With usn2,Count ( * ) Is Null][(#usn8 {``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})][Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))],#usn8 =$999[07..{#usn7}][1e1..0xabc];"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Drop Constraint On()-[usn2:`1esn`]-()Assert Exists(Extract(_usn4 In 0.0[..{999}][..0.0] Where True Starts With $`4esn` Starts With 12e12|`4esn`[usn1]).`6esn`?)"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 With Distinct 12.e12[$`8esn`..{`8esn`}] As `7esn` Order By 07[$`2esn`..0x0] Ascending,$`8esn` Is Null Is Null Desc,`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}] Asc Limit .e1[..{`7esn`}][..{_usn3}] Load Csv With Headers From None(`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}])[[123.654[1e1..][{#usn8}..],$#usn7[123.654]]] As `8esn` Fieldterminator 's_str' Start `5esn`=Rel( {_usn4}) ;"), + octest_legacy:ct_string("Cypher 7.0 Remove Case When $1000[..$999] Then 0x0 Ends With {``} When 0[$`6esn`...e1][`1esn`..$`7esn`] Then $#usn7 Starts With False Starts With {`6esn`} End._usn3,Extract(`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}]).@usn6,_usn3.`5esn`! Merge ((#usn8 {`8esn`:{7} Contains $123456789})) On Match Set #usn8+=$`5esn` Is Not Null,`5esn`._usn3! =Reduce(@usn6=$7 Is Null,`6esn` In 00|`6esn`[..{999}]) =~[$12 Is Not Null,07 =~@usn5] =~Reduce(`6esn`=9e12 Ends With 123456789,`8esn` In $12[{7}..0X0123456789ABCDEF]|$#usn7[..@usn6][..$0]) Remove `5esn`:_usn4,Shortestpath((({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`))).#usn8! Union Detach Delete Case Count(*) Ends With 123.654 Ends With $12 When $@usn6[$0..usn1][0X0123456789ABCDEF..$999] Then {`6esn`}[..{`2esn`}] End In Reduce(`4esn`={@usn6} In {#usn7} In 12.e12,usn1 In 12.e12 In {0} In 9e1|\"d_str\"[..0.e0]) In [_usn4 In `2esn` Where 9e12 Ends With 123456789|$999 Is Null] Delete 01234567[..$`5esn`],{`8esn`}[True..][.e1..],(`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[?:`8esn`|:_usn4{usn1:999[12.0..][#usn7..],@usn5:123.654[$`1esn`..Null][1000..{_usn3}]}]-(`5esn` :@usn6)<-[`7esn`?:@usn5|:`7esn`{`1esn`:{`6esn`} Contains {usn2} Contains $1000}]->(_usn3 :_usn4{`7esn`:00 Starts With $`6esn`,`6esn`:{12}[999][{_usn3}]}) Ends With [_usn4 In `2esn` Where {`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]] Ends With Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $7 In 1.0 In 1e1) Union All Return *,0Xa Contains $``,1000 Starts With 123.654 Starts With $_usn4 Order By {_usn4} In {`6esn`} In `1esn` Descending,_usn4 In $usn1 Desc With Distinct *,Single(`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`)[..[$_usn4 Contains {#usn7} Contains `1esn`,{123456789} =~01234567 =~`3esn`]][..{`5esn`:{999} Starts With {_usn4} Starts With 00,usn1:$``['s_str'..][0x0..]}] As #usn8 Order By `6esn` Is Null Is Null Descending,`1esn` Is Null Is Null Asc Limit {12} In $12 In 0xabc Where False Contains $#usn8 Contains 9e1"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Match usn1=(((:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})<-[:``]-(_usn3 :`7esn`)<-[ *0xabc..7]->({#usn7:123456789[0..]}))),(usn2 :`5esn`:@usn5)-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]});"), + octest_legacy:ct_string("Cypher 999.999 Cypher Drop Constraint On(usn1:_usn4)Assert Exists(({_usn4:{usn1} =~123.654 =~\"d_str\"})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}})._usn4);"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Drop Constraint On()<-[usn1:@usn6]-()Assert Exists(Single(#usn7 In 0Xa[@usn5][{`7esn`}] Where 12[..$@usn6]).@usn5?)"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Return $7 Ends With $`8esn` As `4esn` Skip {`4esn`:#usn7 =~00,@usn5:usn2[True]} =~`6esn`(Distinct #usn7 =~{`4esn`} =~123456789,1e1[1.e1..][123.654..]) =~Allshortestpaths(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))) Create #usn8=Allshortestpaths((_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})-[`1esn`?:_usn3|`8esn` *0xabc..7]->(@usn5 :`6esn`:`8esn`)) With Distinct 0xabc[$_usn3..],[$_usn4[9e0..]][`8esn`(Distinct {7} Starts With $usn1 Starts With 1.0)..Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} Starts With 1.0 Starts With 00|$#usn7[..@usn6][..$0])][Any(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{#usn8:{`7esn`} Is Not Null Is Not Null,`4esn`:12 Starts With 0x0}] As `1esn` Order By 1.0 Ends With 1000 Descending,Shortestpath((_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]) In Shortestpath(((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}))) Asc Skip {usn2}[$`4esn`] Limit {123456789} =~{@usn6} Union All Merge `1esn`=((:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn7{usn1:1.0[{999}][$999]}]->(:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]}));"), + octest_legacy:ct_string("Cypher Create Constraint On()-[usn2:`5esn`]->()Assert Exists([{`2esn`} Starts With @usn6].`7esn`!);"), + octest_legacy:ct_string("Cypher 999.999 Cypher Drop Constraint On(_usn3:@usn5)Assert Exists(Extract(#usn7 In 123.654 Starts With $`` Where $999 In 999).`6esn`!);"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Drop Constraint On(`7esn`:`7esn`)Assert Exists(Case When $7 Is Null Then {`1esn`} =~{_usn4} End.`6esn`!);"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Merge `7esn`=Shortestpath((((`6esn` {``:`4esn`[usn1]})<-[:`6esn`{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},`6esn`:``[..$#usn7]}]->({_usn4:False[0Xa..$usn1]})-[`8esn`?{`3esn`:'s_str'[..0X7]}]-(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]})))) On Match Set `4esn`+=$`8esn`[0xabc][Null],@usn5+=0.0 In `6esn` In $@usn5 Union All Detach Delete $#usn7[`2esn`][010],`7esn` =~.e12 =~$#usn7,$`2esn` In {123456789} Remove Shortestpath((((_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )})-[?:usn2|#usn7]-(`1esn` {#usn7:Count ( * )[$12..]})<-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]->(_usn4 {_usn3:`1esn`[..00][..{7}]})))).`3esn`?,``:`6esn`:`8esn`,Case Count(*) Is Not Null When {`4esn`} Starts With $7 Starts With $`` Then {`4esn`} Starts With $7 Starts With $`` Else 0X0123456789ABCDEF[`5esn`..][$#usn8..] End.usn2 Union Merge Shortestpath(((`6esn` :_usn3{#usn7:$@usn6[01..@usn5][0x0..`4esn`],_usn4:9e12 =~123456789 =~$999})<-[usn1? *01..07]->({`1esn`:$123456789[..$7][..$`6esn`]}))) On Create Set #usn8 =(`8esn` :`5esn`:@usn5)<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5) Starts With None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]),@usn5 =$_usn4 Is Null Is Null;"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create Constraint On(usn2:`2esn`)Assert Reduce(`8esn`=`2esn` Starts With `` Starts With 1e1,usn1 In 12.e12 In {0} In 9e1|#usn7 Starts With 1000 Starts With .e1)._usn3! Is Unique"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Match Allshortestpaths(((_usn4 :@usn6)-[`5esn`?:@usn5|:`7esn`]-(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]}))),Shortestpath(((`` {``:0x0 =~123.654 =~{999}})-[{`2esn`:``[{123456789}..]}]->(#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]}))) Where Count ( * )[Count ( * )][12] Unwind [usn1 In 12.e12 In {0} In 9e1 Where {usn1} In Count ( * )][{_usn3:.e1 Ends With 0Xa Ends With .e1,`2esn`:12e12 Starts With `1esn` Starts With usn2}..] As `2esn` Detach Delete 0x0 Is Not Null Is Not Null Union Detach Delete `3esn` In {@usn6} Return {usn2:{1000}[{usn1}][Null],_usn4:0[{@usn5}..][7..]}[Shortestpath(((@usn6 {@usn5:0X0123456789ABCDEF[$999..][@usn5..]})))][All(`1esn` In `3esn`[07..] Where 12 Starts With {_usn4} Starts With $#usn8)] As @usn6,{#usn8} Is Null Is Null Limit 0x0 Is Not Null Is Not Null Remove @usn5:``,(`6esn` :_usn3)<-[`1esn`? *0X0123456789ABCDEF{`5esn`:1.e1 Starts With $`2esn` Starts With $0}]->({_usn4:{usn1} =~123.654 =~\"d_str\"}).`2esn`;"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On()<-[`3esn`:`1esn`]-()Assert Exists(Case When $`5esn`[..{`2esn`}][..{0}] Then {@usn6} Is Not Null End.@usn5!)"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Start @usn6=Rel:``(usn1={`4esn`}) ,``=Relationship( {usn1}) Union Create Shortestpath(((_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]}))) Merge `4esn`=({`1esn`:$123456789[..$7][..$`6esn`]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]}) On Match Set {usn2:00[..$123456789][..$`5esn`],``:0.12[Count(*)..][$#usn7..]}.#usn7? =(`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] Create Unique (:``) Union All Remove Allshortestpaths((_usn3 {`4esn`:`8esn` Contains 1e1,#usn7:{`2esn`}[..{@usn6}][..1.e1]})-[#usn7?:usn1 *01..07{`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}]->({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]})).`5esn`,`7esn`:@usn5 Match (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` )) Using Join On `8esn`,_usn4 Using Index `7esn`:`1esn`(`2esn`);"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Foreach(`5esn` In Null Ends With 12 Ends With usn2| Create @usn6=((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1)),``=Shortestpath(((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})))) Union All Merge usn2=Allshortestpaths((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}))) On Match Set @usn5 =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Foreach(#usn7 In {@usn5} =~_usn4 =~0.12| Match #usn7=Allshortestpaths((:`5esn`:@usn5{#usn8:123.654[$`1esn`..Null][1000..{_usn3}],`6esn`:12.0 =~$#usn7 =~9e12})-[`1esn`:usn2|#usn7{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})),usn1=((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})) Where .e12[$7..][{`6esn`}..]) Union Detach Delete 0.0 =~12.e12 =~1.0,$`2esn`[{usn1}..];"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Merge ((:#usn8{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})-[``?:usn2|#usn7 *0x0..]-(@usn5 :usn1:_usn4)-[:`5esn`]->(:@usn6{`2esn`:$999 In 999})) Unwind $`7esn` Is Null Is Null As `1esn` Delete Count(*) Ends With 0x0 Ends With 9e0,{123456789} =~usn1 =~{usn1}"), + octest_legacy:ct_string("Cypher 999.999 Cypher Merge (((#usn8 )-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))) On Create Set _usn3 =Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF)[Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6)..Shortestpath(((_usn3 {@usn5:.e12 =~.e0})-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})-[`5esn`?:@usn5|:`7esn`]-(:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01})))][Shortestpath(((`6esn` :`7esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})))..Reduce(usn2=Null In .e0,_usn3 In {`2esn`} Ends With {12} Ends With 7|{0}[..{`7esn`}])] On Create Set _usn4+={`1esn`:{123456789}[12..][$12..]} =~{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF} =~[`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`|_usn3[\"d_str\"]],`6esn`+=[usn1 In 12.e12 In {0} In 9e1 Where {usn1} In Count ( * )][{_usn3:.e1 Ends With 0Xa Ends With .e1,`2esn`:12e12 Starts With `1esn` Starts With usn2}..] Return *,`7esn` Is Not Null Is Not Null As @usn5,`1esn`[Null..] As `2esn` Order By Extract(_usn4 In `2esn` Where $999 Is Null) In Case `8esn` Contains $`3esn` Contains {`4esn`} When 9e1 Ends With $@usn5 Ends With $123456789 Then usn2[True] When 0.e0 =~`1esn` =~`6esn` Then usn2 =~0X7 =~{#usn7} Else 1.e1[..12.e12][..$usn2] End In Any(`6esn` In 00 Where `5esn`[..9e0][..01234567]) Asc Limit `6esn`[{`6esn`}..] Foreach(#usn8 In {123456789}[12..][$12..]| Remove Case When $`3esn` In 9e12 In `` Then 9e0[#usn8] When {999} Starts With {12} Then 7 Is Null Is Null End._usn4!,{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}.#usn8 Remove {@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]}.`2esn`!) Union All With Distinct 1.e1 =~9e12 =~`4esn` As `7esn`,0 Contains $usn2 Contains 12e12 Order By {@usn6} Is Not Null Asc Where $123456789 Starts With .e12 Detach Delete Single(_usn3 In True[7][$999]) Is Not Null Is Not Null,{`1esn`:{123456789}[12..][$12..]} =~{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF} =~[`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`|_usn3[\"d_str\"]] Union All Unwind @usn5[12.0][{1000}] As `8esn`;"), + octest_legacy:ct_string("Cypher 0.1000 Drop Constraint On(#usn7:`4esn`)Assert {`1esn`:{123456789}[12..][$12..]}.`5esn` Is Unique"), + octest_legacy:ct_string("Profile Merge _usn3=(@usn6 {``:.e12[\"d_str\"..][.e1..]}) Union Start usn1=Node:_usn3(_usn3='s_str') ,`3esn`=Node:``(_usn3={0}) Optional Match (:``{``:0x0 =~123.654 =~{999}})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]}),Allshortestpaths((:@usn6{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]})) Using Scan `6esn`:`` Create Unique Allshortestpaths(((_usn4 :`6esn`:`8esn`$``))),usn2=({`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Create Unique _usn3=((:@usn5{`3esn`:@usn5 =~'s_str',`1esn`:$`7esn` Contains {`1esn`} Contains 9e12})) Return Distinct $`6esn`[`8esn`][0.0] Order By {`7esn`}[0X7..][0x0..] Asc,Single(usn1 In 12.e12 In {0} In 9e1 Where `4esn` Contains #usn8 Contains 7) Ends With [123.654[$`1esn`..Null][1000..{_usn3}],#usn8[`7esn`..],$@usn6 Starts With {`1esn`} Starts With 12] Ends With {`4esn`:{usn1} In Count ( * )} Descending Skip Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $#usn7[$`4esn`])[(usn1 :`6esn`:`8esn`)<-[_usn4?:`6esn` *0xabc..7$_usn3]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})][Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))] Unwind {usn2} Starts With `` Starts With {0} As #usn7 Union With Distinct {`8esn`}[@usn5..][01..],All(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) In Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4]) In [``[00..$7],.e1 Contains $`3esn`,{``} Starts With 123456789 Starts With usn2] As `5esn` Order By [#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}][..[$`6esn`[`8esn`][0.0],$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,True[$`7esn`..{1000}]]][..None(`2esn` In {999} Is Not Null Where {``} Ends With .e12 Ends With 0.e0)] Desc,{@usn5}[Count(*)..] Asc,None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False)[Shortestpath(((({``:$7[{`1esn`}]})<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`)<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(#usn7 :@usn6))))..Extract(_usn3 In True[7][$999] Where $7 Is Null Is Null)][{`4esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:.e12 Is Null Is Null}..[`6esn` In Count(*) Ends With $`` Ends With {7} Where `1esn` =~1000 =~1000]] Descending Limit $`8esn` =~0x0 =~usn2 Where $_usn4 Ends With 0.e0 Ends With .e0 With 0xabc[$_usn3..],[$_usn4[9e0..]][`8esn`(Distinct {7} Starts With $usn1 Starts With 1.0)..Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} Starts With 1.0 Starts With 00|$#usn7[..@usn6][..$0])][Any(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{#usn8:{`7esn`} Is Not Null Is Not Null,`4esn`:12 Starts With 0x0}] As `1esn` Order By $_usn4 Is Null Is Null Asc,.e1 Contains $`3esn` Descending,$_usn3 =~{_usn4} =~$`6esn` Ascending Skip $usn2 In 123.654 In .e0;"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Remove Reduce(usn1=12e12 Ends With `4esn` Ends With 123456789,`1esn` In 0.e0 =~`1esn` =~`6esn`|1.e1[0xabc..]).`4esn`!,[$@usn6[$0..usn1][0X0123456789ABCDEF..$999],0.0 Is Not Null Is Not Null,0Xa Contains $``].`7esn`? Union Start `4esn`=Node:`1esn`(#usn7=\"d_str\") Where $_usn3 Is Null Is Null Unwind `7esn`[0..$usn2][{usn2}..0.e0] As `1esn` Create `7esn`=((:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})<-[`2esn`?:@usn6|`` *..00]->({_usn3})) Union All Create usn1=(((:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})<-[:``]-(_usn3 :`7esn`)<-[ *0xabc..7]->({#usn7:123456789[0..]}))) Start ``=Node:`6esn`('s_str') Where #usn7 Ends With $#usn7 Ends With {`8esn`};"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Detach Delete $`1esn` Ends With {12} Ends With 0xabc,7 Is Null Is Null,`4esn`[{1000}][{`5esn`}] Foreach(`3esn` In `3esn`[07..]| With *,0e0 Starts With $@usn6 Starts With $`6esn` As `7esn` Skip 0X7 Is Not Null Is Not Null Limit `` =~`6esn` =~usn1 Where 0e0[0X0123456789ABCDEF..010][$@usn6..010] Delete 1e1[..$1000][..999],Reduce(usn1=``[00..$7],`5esn` In $`2esn`[12.e12][$@usn5]|12 Starts With 0x0)[Any(#usn7 In 123.654 Starts With $`` Where 's_str'[_usn4..0x0])][Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where True[True..]|$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF)]) Load Csv With Headers From $usn1 In 01234567 In .e1 As @usn6 Fieldterminator 's_str';"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` With Distinct {`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] As `4esn`,{usn1}[$`8esn`..0.0] As `2esn`,{_usn4} In {`6esn`} In `1esn` Skip $@usn6 Starts With {`1esn`} Starts With 12 Where `4esn`[usn1] Union All Start `8esn`=Node:`4esn`(`1esn`=\"d_str\") ,#usn8=Relationship:usn1({7})Where @usn6[$12] Return Distinct Reduce(usn1=$#usn7 Ends With 0.12 Ends With {@usn6},_usn3 In {`2esn`} Ends With {12} Ends With 7|{0} Is Null) Is Not Null Is Not Null,.e1 Ends With {7} Ends With $usn1 As ``,_usn4[['s_str'[..0X7],False Contains 0.e0 Contains Count(*)]..] Union Load Csv With Headers From $`8esn` Starts With 0xabc Starts With {usn2} As `1esn` Foreach(`5esn` In 9e1['s_str'..0xabc]| Detach Delete $@usn5 In 's_str' In $12,Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]}))) Ends With Case When $``['s_str'..][0x0..] Then 9e12[..0X7] Else $1000[..$999] End,{`7esn`} Ends With `` Ends With {`8esn`} Create `5esn`=Allshortestpaths(((({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2})<-[:_usn4|:usn1 *07]-(#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})))),`8esn`=(({`1esn`:12 Starts With 0x0})<-[`5esn`{`6esn`:12 Is Not Null Is Not Null,`8esn`:`3esn` Is Not Null Is Not Null}]->(_usn3 {@usn5:.e12 =~.e0}))) Load Csv With Headers From {_usn4} Is Null As `` "), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Drop Index On:_usn4(usn2)"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On()<-[usn2:#usn7]-()Assert Exists(Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {`2esn`}[Count(*)]).@usn6?);"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher With @usn5[$12..\"d_str\"] As @usn6,usn2 In `2esn` In $`7esn`,.e1[0.12] As @usn6 Order By [1.e1 =~$usn2,1000][[_usn4 In 0.0[..{999}][..0.0] Where 12.e12[{7}..7]]..][All(_usn4 In `2esn` Where $0[`7esn`])..] Descending,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..])[..{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}][..Filter(`2esn` In {999} Is Not Null Where 010 In `1esn`)] Desc Skip {#usn8} =~{999} =~{#usn7} Union Remove {@usn6:$usn1[0X7],`3esn`:$7[$`3esn`]}.`6esn`? Detach Delete 0.12 Contains 12.0,{999}[$123456789..][12..] Load Csv From [1.e1 =~$usn2,@usn6[{0}..],@usn5[12.0][{1000}]][@usn6()..Case {@usn5}[..@usn6] When $`2esn` Starts With {`8esn`} Starts With {usn1} Then {``} Is Null Is Null Else 123456789 Ends With usn1 Ends With usn2 End] As `6esn` Fieldterminator \"d_str\" Union All Merge `8esn`=((:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *..00{#usn7:`4esn`[usn1]}]-(:@usn5{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12})) On Create Set `1esn`+=usn1[0],None(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``).@usn5! =0e0 Contains 9e12,`3esn`(Distinct 0[Count(*)][0e0],#usn8 =~{_usn3} =~``).@usn6 =Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12) Contains {`1esn`:$999 Ends With {0}} Contains (`5esn` :_usn3{`4esn`:12.e12[``..usn2][{#usn7}..@usn5]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(`4esn` :`2esn`{`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00}) With Distinct Count(*) Ends With $`` Ends With {7} As #usn7,$#usn7 =~9e1 =~$_usn4 Order By Case $1000[..12.0][..0e0] When `3esn` Is Not Null Is Not Null Then 12.e12[{7}..7] When Count(*) In {``} Then 12[..$@usn6] End[..All(#usn7 In 0Xa[@usn5][{`7esn`}] Where 1e1[1.e1..][123.654..])][..[0.0 =~12.e12 =~1.0,$`7esn` Is Null Is Null,``[..$#usn7]]] Ascending;"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Return Distinct $@usn6 Ends With 01 Ends With 999 Skip {_usn3} Contains 9e0 Contains $999 Limit Allshortestpaths(((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}))) Starts With All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Foreach(`2esn` In $`3esn`[..$`2esn`][..123.654]| Create `5esn`=Shortestpath(((_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->(`` {``:0x0 =~123.654 =~{999}})-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->(:`3esn`:`6esn`{@usn5:.e12 =~.e0}))),#usn8=Allshortestpaths((_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})-[`1esn`?:_usn3|`8esn` *0xabc..7]->(@usn5 :`6esn`:`8esn`)));"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On(`7esn`:_usn4)Assert [`2esn` In {999} Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]].@usn6 Is Unique"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` With *,#usn7[..12e12] Order By Count(*) Ends With 123.654 Ends With $12 Asc Limit {usn2}[$`4esn`] Where {`6esn`} Contains 07 Merge Shortestpath((((#usn8 :@usn6)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4})-[:`3esn`|:@usn5]-(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})))) On Create Set Reduce(#usn7=`4esn`[usn1],usn1 In 12.e12 In {0} In 9e1|2.12 =~0x0 =~_usn4).``! =False[`4esn`..Count(*)] On Match Set `4esn`+=12.e12[..1e1] Create Unique ((`5esn` :_usn3)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})),``=(_usn4 :#usn7{`8esn`:$999 Contains {7}}) Union All Remove Single(usn1 In 12.e12 In {0} In 9e1 Where `7esn` Contains {@usn5} Contains $123456789)._usn4?,(_usn4 :_usn4)-[``?:#usn7|`2esn`{`5esn`:123456789 Starts With {@usn6} Starts With $12}]->(`7esn` {@usn6:{_usn4} Is Null})<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}).`4esn`? Create `1esn`=((`4esn` {`7esn`:12.e12 In $0 In $0,@usn5:_usn4[Count(*)]})<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})),`5esn`=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]})"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Load Csv From {`3esn`}[{123456789}..][{usn1}..] As `6esn` Optional Match Shortestpath((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Using Join On usn1,_usn4,`6esn` Using Index usn1:_usn3(``) Where {_usn3}[`3esn`..$#usn8] Return _usn4 Is Null Is Null,$`5esn` Is Not Null As _usn4 Order By Shortestpath((`6esn` :`7esn`)-[:_usn3|`8esn` *12..{`8esn`:Count(*)[.e12..],`5esn`:{#usn8}[12.0][$@usn6]}]-(`1esn` {_usn4:`3esn`[_usn4..{0}][`5esn`..usn2]})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`)) Contains Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) Ascending,({`8esn`:Null In .e0})-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}) =~None(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) =~(`6esn` :`2esn`{`7esn`:#usn8 =~{999}})<-[:#usn7|`2esn`]->(:#usn7{usn2:{`8esn`}[0X7][$`3esn`]}) Ascending Skip {`4esn`}[$123456789] Limit Single(`6esn` In 00 Where 0.12 In 0X7)[..{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] Union All With Distinct {`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] As `4esn`,123.654 Ends With usn2 Ends With 0 Skip .e0[0.12] Where 9e12 Ends With 123456789"), + octest_legacy:ct_string("Explain Profile Create Constraint On(`7esn`:`6esn`)Assert {`1esn`:12 Starts With 0x0}.`8esn` Is Unique;"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Foreach(`4esn` In [00[..$123456789][..$`5esn`],{_usn3} Contains $`1esn` Contains 12.0][..[0.e0 =~`1esn` =~`6esn`,12.0[2.12..][{`5esn`}..],1.e1[0X0123456789ABCDEF..]]][..Filter(_usn3 In True[7][$999] Where 's_str'[..0X7])]| Unwind 0Xa[.._usn3][..$`6esn`] As `4esn` Load Csv With Headers From Any(`5esn` In $`2esn`[12.e12][$@usn5] Where {999} Starts With {12})[Reduce(#usn7={_usn3}[`3esn`..$#usn8],`3esn` In 123.654[1e1..][{#usn8}..]|{999} Starts With {_usn4} Starts With 00)..Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0.12[..$`6esn`][..$1000])][All(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])..[$_usn3 Is Null Is Null,`5esn` Is Null Is Null,7 Is Null Is Null]] As `2esn` ) Match Allshortestpaths(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),Allshortestpaths((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})-[`5esn`{`7esn`:@usn5[..$@usn5][..0Xa]}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})<-[#usn8? *..01234567]-($_usn3));"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Optional Match (:_usn3{`3esn`:{0} Is Null,#usn7:{0} Is Null})-[:_usn4|:usn1 *0X7..0Xa{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]}]-({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Create Shortestpath(((`3esn` :usn2:`2esn`{``:{_usn3} Contains $`1esn` Contains 12.0}))),`8esn`=((#usn8 {`8esn`:{7} Contains $123456789})) Return Distinct *,@usn5 Is Not Null Is Not Null As `` Skip Reduce(#usn8=0X7 Starts With {999} Starts With 12e12,_usn4 In `2esn`|usn2[True]) Starts With [01234567[..9e1]] Starts With Reduce(@usn5=.e1 Ends With {7} Ends With $usn1,`` In {usn1} Ends With {`6esn`} Ends With 123456789|{`2esn`} In 0Xa In {_usn3}) Union All Delete 0x0 =~123.654 =~{999} Remove Reduce(usn1=1.e1[0xabc..],#usn7 In 0Xa[@usn5][{`7esn`}]|12 Starts With $#usn7).``? Create Unique (({`7esn`:123456789[0..]})) Union Start `3esn`=Rel:`5esn`({0}) ,`6esn`=Relationship:`1esn`({@usn5})Where $7[{`1esn`}] Create usn2=(((:#usn8{`2esn`:12e12 Is Not Null,_usn3:12.e12[2.12..][0xabc..]})-[:_usn4|:usn1{``:0 Contains $usn2 Contains 12e12}]-(`4esn` :`2esn`)<-[`7esn`?:_usn3|`8esn`*..]->(`2esn` :_usn3))),`6esn`=((@usn6 :`2esn`)) Merge ((:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(:`6esn`:`8esn`{`3esn`:$`6esn`[{`3esn`}..12],_usn3:0[{@usn5}..][7..]})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`1esn`)) On Match Set `2esn`+=Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})],`3esn` =$12 Starts With $`8esn`,@usn5 =Reduce(#usn8={`8esn`}[..$`6esn`][..123.654],usn1 In 12.e12 In {0} In 9e1|\"d_str\" =~`1esn` =~{`5esn`}) On Match Set `6esn` =[`2esn` In {999} Is Not Null Where {@usn6}[True..{_usn3}]] =~None(#usn7 In 123.654 Starts With $`` Where {usn2}[$`4esn`]) =~Extract(`1esn` In $12 Is Not Null Where Null Is Null Is Null|$123456789 =~`4esn`),usn1:`8esn`:@usn5"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Return Distinct Filter(`1esn` In `3esn`[07..] Where 12 Ends With 01)[..All(`3esn` In 123.654[1e1..][{#usn8}..] Where 0Xa Contains Count ( * ))] As usn2,{usn1}[01..7][{`3esn`}..`6esn`] Order By Reduce(`4esn`=@usn6[$_usn4],`8esn` In $12[{7}..0X0123456789ABCDEF]|0.12 Starts With 9e12 Starts With $`1esn`)[Reduce(usn2={`7esn`}[0X7..][0x0..],_usn3 In {`2esn`} Ends With {12} Ends With 7|01[..{`7esn`}][..01234567])][(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})-[_usn4 *0x0..]-(:#usn7{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})] Ascending,[.e12 Ends With 1000 Ends With 010,Count(*)] Ends With {`7esn`:$_usn3 =~{_usn4} =~$`6esn`} Ends With Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]) Descending Skip [`` In {`1esn`} Starts With @usn6 Where $123456789 Starts With $123456789 Starts With Count ( * )|{#usn8}[usn1][1.0]][Shortestpath((@usn6 {usn1:$#usn7 =~{12} =~False})-[`1esn`?:_usn3|`8esn` *0xabc..7]-(`4esn` :@usn6))..] Limit $`5esn`[`4esn`] Union Create Shortestpath(((_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]}))) Merge `4esn`=({`1esn`:$123456789[..$7][..$`6esn`]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]}) On Match Set {usn2:00[..$123456789][..$`5esn`],``:0.12[Count(*)..][$#usn7..]}.#usn7? =(`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] Create Unique (:``);"), + octest_legacy:ct_string("Cypher 999.999 Cypher Foreach(`` In Extract(`6esn` In 00 Where 9e1 Ends With $@usn5 Ends With $123456789) Ends With All(usn1 In 12.e12 In {0} In 9e1 Where {usn1} In Count ( * ))| Match _usn4=Shortestpath((`6esn` :`2esn`{`7esn`:#usn8 =~{999}})),(((usn2 :``)-[@usn5?:#usn7|`2esn`{`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}]->(`2esn` :@usn6{7})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`))) Using Index ``:`1esn`(_usn4) Using Index _usn3:_usn3(`6esn`) Where 123.654[1e1..][{#usn8}..]) Union All Merge usn2=Allshortestpaths((({`1esn`:{123456789}[12..][$12..]})<-[``{_usn4:.e1[..\"d_str\"]}]-({@usn5:Count ( * ) Is Null})<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4}))) On Create Set Any(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where `2esn` Starts With `` Starts With 1e1)._usn3! =$@usn6[$0..usn1][0X0123456789ABCDEF..$999],`4esn`+={#usn7} Ends With 12e12 Ends With {123456789} Delete $`1esn` Starts With 9e1 Starts With 1.e1,$@usn6[$0..usn1][0X0123456789ABCDEF..$999],[`6esn` In Count(*) Ends With $`` Ends With {7} Where {`3esn`} Ends With `1esn` Ends With $@usn6][None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where {`4esn`}[..{`4esn`}])..] Union With Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF) Ends With Case {`2esn`}[..{@usn6}][..1.e1] When Null Is Null Is Null Then #usn7 Contains {`3esn`} Contains $`6esn` When 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Then $usn1[..'s_str'][..$#usn8] End Ends With Filter(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789}),@usn6 Contains Null As `2esn`,00 =~0.e0 =~$`8esn` Order By `5esn`(0X0123456789ABCDEF[9e12])[[`8esn` In $12[{7}..0X0123456789ABCDEF] Where $``['s_str'..][0x0..]]..None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`8esn`}[0X7][$`3esn`])][Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000})..Case 7 Is Null Is Null When usn1 Contains $7 Contains $`` Then 12e12 Is Not Null End] Ascending,#usn7[9e0] Asc,{`5esn`} Starts With 12.0 Desc Limit {@usn5}[Count(*)..] Create Unique Allshortestpaths((@usn6 :usn1:_usn4)),(:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})"), + octest_legacy:ct_string("Cypher 0.1000 Delete #usn7 =~00 Start #usn8=Node:``(`1esn`={`2esn`}) Foreach(`5esn` In Extract(_usn4 In `2esn` Where 1.0[{999}][$999]|$`8esn` In $`2esn` In {7})[[{`8esn`}[0X7][$`3esn`]]][(`5esn` :`3esn`:`6esn`)-[`8esn`?:`4esn`|:#usn7{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-({`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF})]| Create (`2esn` :@usn6{7})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]})<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`),(((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]})))) Union All Remove {#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}.#usn8;"), + octest_legacy:ct_string("Cypher Drop Constraint On(@usn5:`7esn`)Assert Single(`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12]).@usn6! Is Unique;"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Drop Constraint On(usn2:_usn3)Assert All(`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7}).`6esn`! Is Unique;"), + octest_legacy:ct_string("Cypher 999.999 Cypher Create Constraint On(`8esn`:`5esn`)Assert Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where $usn1 Starts With {_usn3}|Count ( * )[..12][..{@usn6}]).usn2? Is Unique;"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Create Constraint On(#usn8:`2esn`)Assert (@usn6 {@usn5:0X0123456789ABCDEF[$999..][@usn5..]})-[_usn3?:`8esn`|:_usn4{@usn6:{`1esn`}[`6esn`..12e12]}]-(@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})._usn3 Is Unique"), + octest_legacy:ct_string("Cypher 999.999 Cypher Load Csv With Headers From 123.654 Starts With $`` As `7esn` Create (((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}))),(((`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})-[_usn3?*..{#usn7:#usn8 =~{999},`8esn`:{_usn3}[`3esn`..$#usn8]}]->({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})-[@usn6 *07{`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}]->({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]}))) Load Csv With Headers From 0.12[999][$#usn8] As usn1 "), + octest_legacy:ct_string("Profile Drop Constraint On()<-[usn2:`1esn`]-()Assert Exists([`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]].`3esn`);"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Drop Constraint On(#usn8:#usn7)Assert Case $usn1[@usn6][#usn7] When 12.0[2.12..][{`5esn`}..] Then 0X0123456789ABCDEF[0X7..] When {`6esn`}[..{`2esn`}] Then {`5esn`} Contains 's_str' Contains 9e1 Else 00 Starts With $`6esn` End.`8esn`! Is Unique;"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(`8esn`:usn1)Assert [`` In {`1esn`} Starts With @usn6 Where {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]|0[`4esn`][12.e12]].usn1? Is Unique"), + octest_legacy:ct_string("Explain Profile Create Constraint On(`2esn`:usn1)Assert (:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6).`4esn` Is Unique"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Create Constraint On(`6esn`:usn2)Assert Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999).`5esn` Is Unique"), + octest_legacy:ct_string("Cypher With $1000[\"d_str\"..$999][$`3esn`..{`3esn`}] Order By (:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) Desc,{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}[Reduce(`1esn`={usn1} In Count ( * ),`` In {usn1} Ends With {`6esn`} Ends With 123456789|0[{usn2}..][usn1..])][[`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12]|{``} Starts With 123456789 Starts With usn2]] Ascending Where 0x0 Ends With {``} Union Create Unique usn1=Allshortestpaths((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})) Merge (`3esn` :`1esn`)-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]}) On Match Set `7esn` =$999[{_usn4}] On Match Set `5esn`+=$`3esn` Contains 0 Contains 07,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $#usn7[..@usn6][..$0]).`1esn`? =$1000[0.12..0.12]"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Start `3esn`=Relationship:`2esn`(#usn7={usn1}) ,`5esn`=Relationship:`7esn`({#usn8}) Unwind [False Starts With 010] Contains Extract(_usn3 In True[7][$999] Where 0e0[$#usn8...e12]|12 Is Not Null Is Not Null) Contains [`1esn` In $12 Is Not Null] As `` Match Shortestpath((({`2esn`:{7}[$7..],#usn7:`1esn` In 07})-[? *01..07]->({_usn4:{usn1} =~123.654 =~\"d_str\"}))),usn1=Allshortestpaths(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]}))) Where .e12 =~$_usn4 Union All Load Csv From $@usn6 Ends With 01 Ends With 999 As _usn3 Fieldterminator \"d_str\" Detach Delete usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3),[$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]][..Case {#usn8}[#usn7..{`2esn`}] When $7 Is Not Null Then $@usn6[$`8esn`..][7..] When $`4esn`[..'s_str'][..`8esn`] Then `7esn` Contains {@usn5} Contains $123456789 Else 12.e12 In $0 In $0 End] Union All Unwind Count(*)[..``][..#usn8] As #usn7"), + octest_legacy:ct_string("Explain Profile Optional Match Shortestpath(({``:.e1 Contains $`3esn`})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})),Shortestpath((:_usn3{0})-[usn2 *12..]->(:``)) Using Join On usn2,`6esn` Using Index usn1:`7esn`(_usn3) Where 1000 Load Csv With Headers From usn1[_usn4][{#usn8}] As `2esn` Fieldterminator \"d_str\" Union Detach Delete $`2esn`[{usn1}..] Foreach(_usn4 In ``(#usn8 =~{999})[Single(_usn3 In {@usn5}[..#usn7])..][Case $123456789 Is Not Null When .e1[0.12] Then {@usn5}[..{12}][..0x0] When @usn5 Is Not Null Is Not Null Then \"d_str\" Ends With False Ends With {@usn6} End..]| Create `2esn`=((#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]})-[? *07{#usn7:`5esn`[..9e0][..01234567]}]-({#usn8:0Xa Contains Count ( * ),`8esn`:Null Is Null Is Null})) Start `6esn`=Node:``(usn1={`4esn`}) ) Union Return *,$`8esn` In $`2esn` In {7} As _usn3 Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,1.e1 =~$`1esn` Ascending,12.e12[..1e1] Asc Skip [$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]][..Case {#usn8}[#usn7..{`2esn`}] When $7 Is Not Null Then $@usn6[$`8esn`..][7..] When $`4esn`[..'s_str'][..`8esn`] Then `7esn` Contains {@usn5} Contains $123456789 Else 12.e12 In $0 In $0 End] Unwind Reduce(@usn5=True =~{`1esn`},_usn4 In 0.0[..{999}][..0.0]|7[$0..][{_usn4}..]) In Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`) In All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) As usn2 Detach Delete Single(`2esn` In {999} Is Not Null Where 123.654 Ends With usn2 Ends With 0) =~{#usn8:Count(*)[010..][#usn7..]} =~Reduce(`8esn`=True Starts With $`2esn` Starts With {@usn6},`5esn` In $`2esn`[12.e12][$@usn5]|999 Ends With .e12 Ends With .e1);"), + octest_legacy:ct_string("Cypher 0.1000 Create Constraint On(`4esn`:_usn4)Assert 9e1.`3esn`! Is Unique;"), + octest_legacy:ct_string("Cypher Delete Any(@usn5 In Null =~12e12 Where 0[`4esn`][12.e12]) Is Null,Count ( * )[9e1..{@usn5}],{`3esn`} Is Not Null Is Not Null Merge Allshortestpaths((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}))) On Match Set Allshortestpaths((:`3esn`:`6esn`{999})).`6esn`! =00[07..],usn2 =usn1 Is Null Is Null,#usn8+=0e0 On Match Set `4esn` =$0[..{usn2}][..$usn1],`5esn`+=Count(*) In 0e0 In 9e1,`8esn` =$123456789[{@usn6}][{999}] Merge (((#usn7 :#usn8{_usn3:`1esn`[..00][..{7}]})<-[`2esn`?{`3esn`:$7 In 1.0 In 1e1,@usn5:{@usn6} Contains 123.654 Contains 01}]->(:`1esn`{_usn4:{`6esn`} Ends With 0e0 Ends With {``}})-[`8esn`?{@usn5:Null Is Null Is Null}]->({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null}))) On Match Set Allshortestpaths((((:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})<-[`2esn`?{``:123.654 Starts With $``,``:{``} Ends With .e12 Ends With 0.e0}]-(:_usn3{0})<-[`3esn`?{`3esn`:1e1 Contains usn2}]->(:`3esn`:`6esn`)))).@usn6! =`5esn` Contains {`7esn`} Contains $7 Union All Foreach(#usn7 In Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999)[..Reduce(``={`8esn`}[True..][.e1..],#usn7 In 123.654 Starts With $``|{usn1}[$`8esn`..0.0])][..Any(`1esn` In $12 Is Not Null Where $12 Is Not Null Is Not Null)]| With *,1.e1[`4esn`..][$`6esn`..] As @usn5,Count ( * ) =~{`5esn`} =~{_usn4} As _usn3 Where _usn3[\"d_str\"]) Union All Load Csv From `7esn` Contains {@usn5} Contains $123456789 As `6esn` Return #usn7 Starts With $999 Skip {@usn6}[0Xa..$@usn6][0..`5esn`] Limit {`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1}[Reduce(`6esn`=$12 Contains 0Xa,`6esn` In 00|$`4esn`[..'s_str'][..`8esn`])][Shortestpath(((:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})-[:usn2|#usn7 *0X7..0Xa]->(#usn7 :@usn5)-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})))];"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Match Shortestpath(({`3esn`:0.e0[{999}][{`1esn`}],`1esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[:usn2|#usn7 *0X7..0Xa]->(#usn7 :@usn5)),_usn4=Allshortestpaths((@usn6 :`6esn`:`8esn`)<-[_usn4?:`7esn`{``:{_usn3} Contains $`1esn` Contains 12.0}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})) Create @usn6=((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1)) Merge @usn6=((usn1 :`5esn`:@usn5)-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:usn2:`2esn`{usn1:$7 Is Null Is Null})-[? *01..07]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]})) Union Merge (:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}}) Create Shortestpath(({``:.e1 Contains $`3esn`})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})),Allshortestpaths((:usn1:_usn4{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[`8esn`? *999]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})) Load Csv From Filter(`1esn` In $12 Is Not Null Where {@usn5}[1e1..][9e1..]) Starts With [{@usn6} Contains 123.654 Contains 01,$`2esn` Starts With {`8esn`} Starts With {usn1}] Starts With All(`1esn` In $12 Is Not Null Where 12.e12[{@usn5}..][9e1..]) As `5esn` "), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Using Periodic Commit 00 Load Csv With Headers From {@usn6} Starts With @usn5 Starts With @usn6 As `6esn` ;"), + octest_legacy:ct_string("Profile Foreach(`2esn` In {`3esn`} Is Null| Create Unique ((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]})),(((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`}))) Unwind \"d_str\" Starts With $`8esn` Starts With {usn1} As `7esn`) Foreach(usn2 In `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]]| Start #usn8=Relationship:usn1({7}) ,`5esn`=Relationship:_usn4(usn1={_usn4})Where .e12 Ends With 1000 Ends With 010) Start _usn4=Relationship:@usn6(#usn7='s_str') Where 9e1 Ends With Count(*) Ends With False"), + octest_legacy:ct_string("Cypher 0.1000 Remove ({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6})-[`7esn`? *..0{`2esn`:07 =~$`8esn` =~9e1,``:`5esn`[0xabc..]}]->({`3esn`:{@usn5} Is Null,`5esn`:{`2esn`} Ends With {12} Ends With 7})._usn3!,Any(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null).``,None(`2esn` In {999} Is Not Null Where {1000}[1000][$usn1]).`4esn`? Return Distinct {#usn8}[12.0][$@usn6],$usn2 In 123.654 In .e0,{@usn6}[$`7esn`..][False..] Skip 1000 Is Null Limit $usn1 In 0.12 In $`` Union All Start usn1=Node:_usn4({`8esn`}) ,_usn3=Relationship:usn1('s_str') Load Csv From {_usn3}[`3esn`..$#usn8] As `4esn` Fieldterminator 's_str' Union Merge ((:`5esn`:@usn5{usn1:$#usn7[`5esn`]})-[@usn5{#usn7:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,#usn7:.e12[$#usn8..@usn6]}]->(`5esn` :@usn5)<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]-({`7esn`:123.654 Ends With usn2 Ends With 0})) On Create Set #usn8+=``(#usn8 =~{999})[Single(_usn3 In {@usn5}[..#usn7])..][Case $123456789 Is Not Null When .e1[0.12] Then {@usn5}[..{12}][..0x0] When @usn5 Is Not Null Is Not Null Then \"d_str\" Ends With False Ends With {@usn6} End..] On Match Set @usn6($@usn6 Contains `7esn`).@usn5! =$`5esn` Ends With 00 Ends With #usn7,Reduce(usn2=True[7][$999],`` In {`1esn`} Starts With @usn6|{`4esn`}[$_usn4..][9e0..]).`6esn` ={`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn` Start #usn7=Node:_usn4(``=\"d_str\") ,`4esn`=Node:_usn3({123456789}) Return *,`2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}],{#usn7} Starts With `3esn` Starts With {``} As `8esn` Order By (`4esn` :`1esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]->(#usn7 )[Single(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null)] Ascending,Reduce(@usn6=@usn5[$12..\"d_str\"],`` In {`1esn`} Starts With @usn6|Count ( * ) =~{`5esn`} =~{_usn4}) Starts With None(`1esn` In $12 Is Not Null Where `7esn` Is Not Null Is Not Null) Starts With [$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null] Descending Skip ``[$0..][`1esn`..]"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Remove [_usn3 In {@usn5}[..#usn7] Where True Is Null Is Null|Count(*) Ends With $`` Ends With {7}].`3esn`?,{@usn5:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12],@usn6:Count(*)[.e12..]}.`2esn`? Union Load Csv With Headers From $1000[{`6esn`}..] As _usn3 Fieldterminator 's_str' Detach Delete {999}[$123456789..][12..],$`6esn`[..1.e1][..1e1];"), + octest_legacy:ct_string("Explain Profile Using Periodic Commit 0xabc Load Csv With Headers From Count ( * )[$12..] As @usn5 ;"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Delete `` =~`6esn` =~usn1 Load Csv With Headers From usn2(0.0 Is Not Null Is Not Null,{123456789} Is Not Null)[None(`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12])..[_usn4 In `2esn` Where False Ends With $``|9e0[#usn8]]][(`3esn` :`3esn`:`6esn`)-[]->(`7esn` :#usn8)..[0X0123456789ABCDEF Contains $`1esn` Contains 1000,0e0[$#usn8...e12],.e12 Is Null Is Null]] As _usn3 Return True Is Null Is Null As `3esn` Order By $`8esn`[0xabc][Null] Desc,`2esn`[usn2..][$7..] Descending Limit .e1[..$`4esn`][..$`6esn`] Union Load Csv From None(`1esn` In $12 Is Not Null Where Null Is Null Is Null) Contains $`6esn` Contains exists(Distinct {`3esn`} Is Null) As `2esn` Detach Delete 0.12 Ends With {1000} Ends With `6esn`,$@usn5[usn2..][$0..] Union Create usn1=Allshortestpaths(((:`6esn`:`8esn`{`5esn`:{@usn5} Is Null,`8esn`:True[..010]}))) Unwind #usn7 Starts With $999 As #usn7"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On()<-[#usn7:`4esn`]-()Assert Exists(Case `6esn` Ends With 2.12 Ends With @usn6 When 00[..$123456789][..$`5esn`] Then True =~{`1esn`} When {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn` Then 0.0 Is Not Null End.`4esn`);"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Using Periodic Commit 0x0 Load Csv With Headers From 12.e12[`7esn`] As `1esn` Load Csv With Headers From $`7esn` Is Null Is Null As usn1 Fieldterminator 's_str' Optional Match (((`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]})-[]->(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )})<-[@usn6?]->(`8esn` :``))),`4esn`=(:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})-[`8esn`?:`4esn`|:#usn7{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`7esn` {`4esn`:#usn8 =~{999},`2esn`:9e1 =~`` =~{`7esn`}})"), + octest_legacy:ct_string("Profile Create Constraint On(`1esn`:``)Assert Exists(Case Count(*) Is Not Null When {`4esn`} Starts With $7 Starts With $`` Then {`4esn`} Starts With $7 Starts With $`` Else 0X0123456789ABCDEF[`5esn`..][$#usn8..] End.usn2);"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Start _usn4=Node:usn2(usn2='s_str') ,#usn7=Node:`5esn`(\"d_str\")Where .e1 Starts With $_usn4 Starts With {`1esn`} Union All Delete None(_usn4 In `2esn` Where 9e12 Ends With 123456789) Contains All(`2esn` In {999} Is Not Null Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF),{`2esn`:`8esn`[..`4esn`][..$usn1],@usn6:{123456789}[12..][$12..]} In [$0 Is Not Null,#usn7 Starts With $999,$`6esn`[`8esn`][0.0]] In [$999 Is Null,{``}[010]] Create _usn4=Shortestpath((`6esn` :`2esn`{`7esn`:#usn8 =~{999}})),`7esn`=(({@usn6:$`` Starts With 12 Starts With $usn2}));"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Create Unique ``=Allshortestpaths((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[?:`6esn` *01..07]->(#usn7 :#usn8{_usn3:`1esn`[..00][..{7}]})<-[:`1esn`|:`3esn` *1000]-($12)),`7esn`=({#usn7:#usn8 =~{999}}) Union Create Unique (((usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]})<-[ *0xabc..7]-(`` :`6esn`:`8esn`))),`2esn`=((`4esn` :`2esn`)) Union Foreach(usn2 In `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]]| Start #usn8=Relationship:usn1({7}) ,`5esn`=Relationship:_usn4(usn1={_usn4})Where .e12 Ends With 1000 Ends With 010) Remove (#usn7 :@usn6{`8esn`:{@usn6}[True..{_usn3}],`1esn`:07 Is Null})-[`3esn`:`6esn`{`3esn`}]-(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[`1esn`?:_usn3|`8esn` *0xabc..7]-(`4esn` :@usn6).@usn6"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Drop Constraint On(`1esn`:@usn5)Assert Extract(_usn4 In `2esn` Where #usn8[`7esn`..]).`1esn` Is Unique"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Drop Constraint On(@usn6:`6esn`)Assert Exists((:``{``:$0[..{usn2}][..$usn1]})<-[`8esn`? *999]->(_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null}).`8esn`);"), + octest_legacy:ct_string("Cypher Detach Delete Filter(`1esn` In `3esn`[07..] Where 07 =~$`8esn` =~9e1) Is Not Null,False Ends With $`` With Distinct {`8esn`}[..$`6esn`][..123.654],{@usn6} In {#usn7} In 12.e12 As usn1,0.12 Is Not Null Is Not Null Limit Reduce(`3esn`={_usn3} Is Not Null,usn1 In 12.e12 In {0} In 9e1|0[Count(*)][0e0])[`6esn`(``[..0X0123456789ABCDEF])..Single(`` In {`1esn`} Starts With @usn6 Where {_usn3}[$usn2..])] Load Csv From {`6esn`} Is Null As `8esn` Fieldterminator \"d_str\" Union All Merge `7esn`=(({@usn6:$`` Starts With 12 Starts With $usn2})) On Match Set (:_usn3$usn1)<-[`2esn`:`5esn` *0x0..{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})._usn4 =#usn7 Starts With $999 Create `3esn`=Shortestpath((`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})),Allshortestpaths(((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0}))) Start #usn8=Relationship:usn1({7}) "), + octest_legacy:ct_string("Explain Profile Merge ``=(_usn4 :#usn7{`8esn`:$999 Contains {7}}) On Match Set _usn4 =9e0 Starts With .e0 Starts With \"d_str\",`4esn` =Shortestpath((_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]) In Shortestpath(((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}))),@usn6+={999} Starts With {_usn4} Starts With 00 Optional Match @usn6=((`4esn` :usn2:`2esn`)) Using Join On @usn5,`3esn` Using Scan `8esn`:#usn8 Where 9e12 Is Not Null;"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Drop Constraint On()-[#usn7:`2esn`]->()Assert Exists(Case 9e0 Starts With .e0 Starts With \"d_str\" When $`1esn` Is Not Null Is Not Null Then `3esn`[$@usn5..@usn5][9e1..$``] End.#usn8?);"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Drop Constraint On(_usn3:``)Assert Exists(Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0.12[..$`6esn`][..$1000]).``?)"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Detach Delete usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3),Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12]) Union Create ((({usn2:`1esn` In 07})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}))) Load Csv From $`1esn` =~$`1esn` =~{`6esn`} As `7esn` Delete Single(`8esn` In $12[{7}..0X0123456789ABCDEF])[Case 9e1[123456789..] When 12 Starts With 7 Starts With $`5esn` Then {_usn3} Contains True Contains 0X7 When `1esn`[..00][..{7}] Then 1.e1[12e12..{`6esn`}] End..],123456789 Is Not Null Is Not Null,$usn2;"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Foreach(_usn3 In 1000 Is Null| Start @usn6=Rel:`2esn`(`5esn`='s_str') ,`1esn`=Node(00)Where $usn2 =~\"d_str\" =~_usn3 Create `7esn`=Shortestpath(({usn2:#usn8 =~{_usn3} =~``})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})-[?:`1esn`|:`3esn` *999]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})),_usn3=Shortestpath((`6esn` {``:`4esn`[usn1]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]-(#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]}))) Start `5esn`=Relationship:`4esn`(#usn8=\"d_str\") ,#usn8=Node:``(#usn7=\"d_str\")"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Optional Match `2esn`=Shortestpath((((`1esn` {usn2:12 Is Not Null,`4esn`:`1esn`[..01]})-[_usn3?:@usn6|``]-(usn1 :@usn5)-[``?:usn2|#usn7 *0x0..]-(@usn5 :usn1:_usn4)))),``=({#usn7:#usn8 =~{999}})-[{`7esn`:01234567 In $123456789}]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Using Index @usn6:`4esn`(`6esn`) Using Scan _usn4:#usn8 Where 1.e1[_usn4..][07..] Foreach(@usn6 In $`` Contains 1.e1| Create Unique #usn8=Allshortestpaths((`5esn` :_usn4)<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]})),Shortestpath((((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[`6esn`?]-(`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}))))) Union Return {@usn6}[True..{_usn3}] As `3esn`,Shortestpath((((`1esn` {#usn7:Count ( * )[$12..]})<-[#usn8:`7esn`]-({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})-[#usn8:#usn7|`2esn`]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)}))))[..Case {`1esn`} In 12.e12 In 9e1 When 12 Starts With {_usn4} Starts With $#usn8 Then Count(*) Is Not Null Else 12.e12 In $0 In $0 End][..#usn8],1.e1 =~$`1esn` As `8esn` Order By `1esn`[$123456789..] Desc,{#usn7:`5esn`[..9e0][..01234567]} In Case 1e1[1.e1..][123.654..] When 7[1000.._usn3][9e0..\"d_str\"] Then 12.e12[``..usn2][{#usn7}..@usn5] When 1.e1[0xabc..] Then 1.e1 Starts With $`2esn` Starts With $0 End In Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null) Desc,.e1 Ends With 0Xa Ends With 00 Ascending Skip 0xabc =~12 =~0x0 Limit 0e0[0X0123456789ABCDEF..010][$@usn6..010] Union Load Csv From $`6esn`[{`3esn`}..12] As @usn5 Fieldterminator 's_str'"), + octest_legacy:ct_string("Profile Using Periodic Commit 0X7 Load Csv With Headers From False Ends With $`` As `6esn` Foreach(`8esn` In `1esn` Is Null Is Null| Unwind Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Is Null Is Null As #usn8);"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Unique `3esn`=(`3esn` :`8esn`:@usn5{@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]}),usn2=(((:#usn8{`2esn`:12e12 Is Not Null,_usn3:12.e12[2.12..][0xabc..]})-[:_usn4|:usn1{``:0 Contains $usn2 Contains 12e12}]-(`4esn` :`2esn`)<-[`7esn`?:_usn3|`8esn`*..]->(`2esn` :_usn3))) Create usn2=((`3esn` :`1esn`)<-[? *0xabc..7]->(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})) Union Unwind 1e1[..`1esn`][..0e0] As _usn4 Remove (`2esn` :@usn6{7})-[?:`1esn`|:`3esn`{@usn5:{`6esn`} Ends With 0e0 Ends With {``},@usn5:{`1esn`} Starts With `4esn` Starts With {0}}]->(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]}).``!"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Drop Constraint On()-[`7esn`:@usn5]->()Assert Exists(Reduce(_usn4=0Xa Contains Count ( * ),`1esn` In 0.e0 =~`1esn` =~`6esn`|0x0[$`8esn`.._usn3]).usn2);"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Drop Constraint On()-[`2esn`:@usn5]->()Assert Exists([_usn4 In 0.0[..{999}][..0.0] Where $`2esn` Is Null Is Null].`6esn`!);"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Create Constraint On(usn2:@usn6)Assert Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End._usn4? Is Unique"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Drop Constraint On()<-[`5esn`:#usn7]-()Assert Exists(None(`2esn` In {999} Is Not Null Where {1000}[1000][$usn1]).`4esn`?);"), + octest_legacy:ct_string("Cypher 7.0 Create Constraint On()-[`1esn`:_usn3]->()Assert Exists(@usn5(Distinct $0 Starts With `2esn`).`3esn`);"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Return Distinct *,`5esn` Contains {`7esn`} Contains $7 Skip All(`5esn` In $`2esn`[12.e12][$@usn5] Where False[0Xa..$usn1])[Case When {usn2} Then $1000 Starts With $`8esn` Starts With {`5esn`} When {`6esn`}[..{`2esn`}] Then 12.e12[``..usn2][{#usn7}..@usn5] Else False[0Xa..$usn1] End][[`6esn` In Count(*) Ends With $`` Ends With {7} Where 0Xa[..{1000}][..$#usn7]]];"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Drop Constraint On(usn1:`3esn`)Assert Case When 9e12 Is Not Null Is Not Null Then .e12 Ends With 1000 Ends With 010 Else `1esn` Is Null Is Null End.@usn5? Is Unique"), + octest_legacy:ct_string("Cypher Create Constraint On(`3esn`:`6esn`)Assert All(`3esn` In 123.654[1e1..][{#usn8}..] Where .e1[0.12]).`1esn`! Is Unique"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Create Unique `6esn`=(_usn3 {@usn5:.e12 =~.e0})-[?:`7esn`]-(usn2 :`4esn`:@usn6)-[?:@usn6|`` *1000]-(`5esn` :`7esn`),`3esn`=(((:_usn3{`8esn`:9e1 =~999})<-[@usn6?]->(`6esn` :_usn3)<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`))) Union All Create Unique Shortestpath((`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})),(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]}) Union Merge Shortestpath((`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})) Return Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))) =~Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) As _usn4,7[..$`1esn`][..00],{12} Starts With #usn8 Starts With 0e0 Order By $0 Starts With `2esn` Desc,0.12 In 0X7 Descending,12.e12 In $0 In $0 Desc Limit `6esn` In Null Load Csv From Reduce(`7esn`={@usn5} Is Null,#usn7 In 0Xa[@usn5][{`7esn`}]|0e0[0X0123456789ABCDEF..010][$@usn6..010]) Is Not Null Is Not Null As `3esn` Fieldterminator 's_str';"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On(usn1:`3esn`)Assert Reduce(#usn7=9e1[123456789..],`5esn` In $`2esn`[12.e12][$@usn5]|{`7esn`} Is Not Null Is Not Null).`2esn`! Is Unique;"), + octest_legacy:ct_string("Cypher Drop Constraint On(`4esn`:`7esn`)Assert {`6esn`:1000,#usn8:$`5esn`[$#usn7..][0xabc..]}.@usn6! Is Unique;"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Create Constraint On()<-[`6esn`:`6esn`]-()Assert Exists([True Is Not Null,0e0 Contains 9e12,$`6esn`[{`3esn`}..12]].`4esn`!)"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Load Csv With Headers From 0e0 Contains 9e12 As _usn3 Remove Single(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn4} In {1000}).usn1 Union All Create Unique Allshortestpaths((:_usn4{`1esn`:{123456789}[12..][$12..]})) Load Csv With Headers From @usn5 Contains {0} Contains 9e12 As `` Union Start #usn8=Relationship( {`4esn`}) ,@usn6=Node:@usn6(_usn4={_usn4})Where `2esn` Merge ((`4esn` :usn2:`2esn`));"), + octest_legacy:ct_string("Cypher 7.0 Drop Constraint On(`1esn`:#usn8)Assert Reduce(usn2={`4esn`}[..07][..$`6esn`],`2esn` In {999} Is Not Null|{12} Starts With #usn8 Starts With 0e0).``! Is Unique;"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Optional Match Shortestpath((((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4})))),_usn4=Allshortestpaths(((usn1 :#usn7))) Where $1000[{`6esn`}..] Remove [`5esn` Is Null Is Null,$1000 Is Not Null Is Not Null].@usn6!,Single(_usn4 In 0.0[..{999}][..0.0] Where 1e1[1.e1..][123.654..]).`5esn`?,`4esn`:usn1:_usn4;"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Remove @usn5:``,(`6esn` :_usn3)<-[`1esn`? *0X0123456789ABCDEF{`5esn`:1.e1 Starts With $`2esn` Starts With $0}]->({_usn4:{usn1} =~123.654 =~\"d_str\"}).`2esn` Create Unique ((:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})) Union Start `8esn`=Node:#usn7(`5esn`=\"d_str\") ,`6esn`=Node:_usn4({`8esn`})Where 9e0[#usn8]"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Foreach(usn1 In {`4esn`:12 Starts With {_usn4} Starts With $#usn8} =~Reduce(@usn5=$@usn6 =~#usn8,`5esn` In $`2esn`[12.e12][$@usn5]|{`1esn`} In 12.e12 In 9e1)| Start `3esn`=Relationship:`2esn`(#usn7={usn1}) ,`5esn`=Relationship:`7esn`({#usn8})) Merge (((`2esn` :@usn5{`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]-(:usn1:_usn4{`4esn`:01234567 In $123456789})-[`8esn`?]->({@usn6:$`` Starts With 12 Starts With $usn2}))) On Match Set `6esn`($usn1 Starts With $999 Starts With {@usn5},#usn7 =~00).usn2! =Case 0Xa[.._usn3][..$`6esn`] When {`4esn`}[$123456789..] Then {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] When {usn2}[$`4esn`] Then $1000 Starts With $`8esn` Starts With {`5esn`} Else @usn6[$_usn4] End[(`8esn` :`2esn`)-[`8esn`]->(`8esn` :`8esn`:@usn5)..],`7esn`+='s_str' Starts With 12e12 Starts With $_usn4,(#usn7 {`7esn`:12e12 Ends With `4esn` Ends With 123456789})<-[``{`3esn`:{`3esn`}[{`5esn`}]}]-({@usn5:``[{123456789}..]}).`8esn`? =Reduce(`4esn`=@usn6[$_usn4],`8esn` In $12[{7}..0X0123456789ABCDEF]|0.12 Starts With 9e12 Starts With $`1esn`)[Reduce(usn2={`7esn`}[0X7..][0x0..],_usn3 In {`2esn`} Ends With {12} Ends With 7|01[..{`7esn`}][..01234567])][(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})-[_usn4 *0x0..]-(:#usn7{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})] Create @usn6=((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1)) Union All Match `3esn`=(({#usn7:$0 Is Not Null})),`2esn`=Allshortestpaths(((_usn4 :#usn8))) Using Index @usn6:#usn8(`8esn`) Using Index usn2:`8esn`(`5esn`) Union With *,0X7[0.e0][{`4esn`}],usn1 Contains $7 Contains $`` Limit usn2 In `2esn` In $`7esn` Where {#usn7}[Count ( * )..12][$`2esn`..`4esn`] Merge `4esn`=(((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 :`4esn`:@usn6)<-[:`6esn` *0xabc..7{`8esn`:0X7[0X7..][Count ( * )..]}]-(#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"}))) Remove {#usn7:`2esn` Starts With `` Starts With 1e1}.@usn5!,{`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]}.@usn6;"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Match _usn4=Allshortestpaths(((:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})-[?:#usn8|`2esn` *999{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({@usn6:#usn8[$0..False][$`1esn`..$#usn7]})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}))),#usn8=((`2esn` :@usn6)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)<-[`1esn`:`8esn`|:_usn4 *123456789..0X7$12]->(:`1esn`{`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})) Using Index usn1:usn1(`4esn`) Using Join On `3esn` Start @usn6=Relationship:`1esn`({@usn5}) Union All Load Csv From Filter(`1esn` In $12 Is Not Null Where {@usn5}[1e1..][9e1..]) Starts With [{@usn6} Contains 123.654 Contains 01,$`2esn` Starts With {`8esn`} Starts With {usn1}] Starts With All(`1esn` In $12 Is Not Null Where 12.e12[{@usn5}..][9e1..]) As `5esn` Remove {_usn4:12.e12[2.12..][0xabc..],_usn4:$_usn4[{``}..][1e1..]}.`5esn`!,[$7[{`1esn`}],$_usn4[$`4esn`..$12]].`2esn`? Union Remove Filter(`1esn` In `3esn`[07..] Where {0} =~12.0).``!,{usn2:$`5esn`[`4esn`][_usn3]}.@usn6?;"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Create Constraint On()-[``:`1esn`]-()Assert Exists(Case When 12 Starts With 7 Starts With $`5esn` Then {0} =~12.0 End.`4esn`!);"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Drop Constraint On(usn2:`6esn`)Assert Case When $999 Ends With {0} Then $`2esn` Is Null Is Null End.`3esn`? Is Unique;"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Create Constraint On()-[@usn6:`4esn`]-()Assert Exists(Filter(_usn4 In 0.0[..{999}][..0.0] Where True Starts With $`4esn` Starts With 12e12).@usn5!);"), + octest_legacy:ct_string("Cypher Return Extract(#usn7 In 123.654 Starts With $`` Where #usn8[`7esn`..]|0.0[..{999}][..0.0])[..Extract(`1esn` In `3esn`[07..] Where 00[07..]|$#usn7 Starts With 9e0 Starts With 2.12)][..None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])],All(usn1 In 12.e12 In {0} In 9e1 Where {12}[usn2])[Reduce(``=$@usn5[..usn2][..$#usn7],`6esn` In Count(*) Ends With $`` Ends With {7}|{`4esn`}[$123456789..])..][{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]}..] Skip [{999} Starts With {12},9e1 Ends With Count(*) Ends With False,0X0123456789ABCDEF[`5esn`..][$#usn8..]] In Single(`6esn` In 00 Where 0X0123456789ABCDEF Is Null Is Null) Limit (:``{`1esn`:#usn8 Is Not Null,`5esn`:$@usn6[$0..usn1][0X0123456789ABCDEF..$999]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})-[?:_usn3|`8esn` *12..{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}]-(`6esn` :`2esn`{`7esn`:#usn8 =~{999}}) Ends With `6esn`() Ends With Shortestpath(((`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})-[:#usn8|`2esn`]->(:`3esn`:`6esn`)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))) Start #usn7=Node(0,0X7) Where True Is Not Null Is Not Null Return 's_str'[_usn3..] As `5esn`,{0}[False..@usn5] As `1esn` Skip 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF Union Foreach(`4esn` In Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3]..`1esn`(Distinct $@usn5[`6esn`..],9e12[..0X7])][Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}))..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]})]| Delete Extract(_usn4 In `2esn` Where $999 Is Null) Starts With Reduce(`5esn`=00,`2esn` In {999} Is Not Null|{`4esn`}[..07][..$`6esn`]) Starts With [`8esn`[..`4esn`][..$usn1],{#usn8}[2.12]],[1.e1 =~$usn2,@usn6[{0}..],@usn5[12.0][{1000}]][@usn6()..Case {@usn5}[..@usn6] When $`2esn` Starts With {`8esn`} Starts With {usn1} Then {``} Is Null Is Null Else 123456789 Ends With usn1 Ends With usn2 End],Case {1000}[{#usn8}] When `7esn` Contains `5esn` Contains 0X7 Then True[..010] When {#usn8} =~{999} =~{#usn7} Then `1esn`[..\"d_str\"][..$`5esn`] Else `6esn`[..{999}] End In Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where `3esn`[..{_usn4}][..{@usn5}]) Detach Delete 1.0 Is Null,{`6esn`} Ends With 0e0 Ends With {``}) Union All Merge `8esn`=((`5esn` )) On Match Set (:usn1:_usn4{`4esn`:#usn7 Starts With 1000 Starts With .e1})-[`7esn`]->(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}).``? =$`2esn`[{usn1}..],None(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e12 =~$_usn4).`7esn`! =Reduce(@usn5=True[7][$999],usn1 In 12.e12 In {0} In 9e1|.e12 =~$_usn4)[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])][[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]]] On Create Set _usn4+=0.12[Count(*)..][$#usn7..],None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]).@usn6! =[$`1esn`[$12][Count ( * )],9e1 Ends With $@usn5 Ends With $123456789] Is Not Null Is Not Null Start @usn6=Node:@usn5({usn1}) ,#usn8=Node:`6esn`(#usn8={@usn5})Where {7} Starts With $usn1 Starts With 1.0"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Remove [{_usn3}[$usn2..],`5esn` Is Null Is Null,0.12 Contains 12.0].`3esn`,Shortestpath((@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})).``! Unwind {#usn8} Is Null Is Null As _usn4 Union With $`2esn`[{usn2}] Order By 07 Is Null Ascending Where {7}[{`4esn`}][`6esn`] Create Unique _usn4=Allshortestpaths(((({_usn4})<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})-[@usn6?:`2esn`]->(`7esn` )))),((:``{``:0x0 =~123.654 =~{999}})<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]}));"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On(#usn8:``)Assert {#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]}._usn3 Is Unique"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Using Periodic Commit 123456789 Load Csv From Case {7} Contains $123456789 When {0} Is Null Then 0.0 Is Not Null Is Not Null Else {usn1} =~123.654 =~\"d_str\" End Starts With `1esn`(Distinct $@usn5[`6esn`..],9e12[..0X7]) As `4esn` Foreach(`4esn` In Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3]..`1esn`(Distinct $@usn5[`6esn`..],9e12[..0X7])][Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}))..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]})]| Delete Extract(_usn4 In `2esn` Where $999 Is Null) Starts With Reduce(`5esn`=00,`2esn` In {999} Is Not Null|{`4esn`}[..07][..$`6esn`]) Starts With [`8esn`[..`4esn`][..$usn1],{#usn8}[2.12]],[1.e1 =~$usn2,@usn6[{0}..],@usn5[12.0][{1000}]][@usn6()..Case {@usn5}[..@usn6] When $`2esn` Starts With {`8esn`} Starts With {usn1} Then {``} Is Null Is Null Else 123456789 Ends With usn1 Ends With usn2 End],Case {1000}[{#usn8}] When `7esn` Contains `5esn` Contains 0X7 Then True[..010] When {#usn8} =~{999} =~{#usn7} Then `1esn`[..\"d_str\"][..$`5esn`] Else `6esn`[..{999}] End In Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where `3esn`[..{_usn4}][..{@usn5}]) Detach Delete 1.0 Is Null,{`6esn`} Ends With 0e0 Ends With {``})"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Create Unique Allshortestpaths((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(@usn5 :`8esn`:@usn5)<-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(:`6esn`:`8esn`{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})),Shortestpath((((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})<-[`5esn`?:`7esn`]->({@usn5:Count ( * ) Is Null})<-[#usn8?:``]-(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})))) Return *,$_usn4[$`4esn`..$12],{`5esn`} Starts With 12.0 Order By @usn5 =~`` Asc;"), + octest_legacy:ct_string("Explain Profile Delete (`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Is Not Null Is Not Null Unwind 0Xa[.._usn3][..$`6esn`] As `4esn`;"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Drop Constraint On()-[`1esn`:`5esn`]->()Assert Exists(Reduce(`4esn`=9e1 =~`` =~{`7esn`},`6esn` In 00|0X0123456789ABCDEF[$`2esn`..][`2esn`..]).`6esn`!)"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Start `6esn`=Relationship:`7esn`({usn1}) Load Csv With Headers From [{`3esn`} Is Null,{@usn5} =~_usn4 =~0.12] =~Extract(_usn4 In `2esn` Where 1.0[{999}][$999]) As `2esn` Fieldterminator 's_str' Union Create Unique usn1=(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(:`2esn`{`2esn`:123456789[0..]})-[`3esn`:`6esn`{`3esn`}]-(@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]}) Union Match ((:`6esn`:`8esn`)),`1esn`=(((#usn8 {#usn7:$1000 Is Not Null Is Not Null})<-[`2esn`?:@usn6|``]->(`1esn` {_usn4:{1000} Ends With {`8esn`}})<-[`3esn`:usn1 *0X7..0Xa]->(:#usn7{#usn7:$`8esn` In $`2esn` In {7}}))) Where {@usn6}[$`7esn`..][False..] Create Unique `3esn`=(((`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[usn1?:`4esn`|:#usn7 *0X7..0Xa]->({_usn4:01234567[..9e1]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}))) Foreach(`5esn` In 0Xa[0e0..{#usn7}]| Optional Match Allshortestpaths(((`5esn` :@usn6)<-[`2esn`?:@usn6|``]->(`1esn` {_usn4:{1000} Ends With {`8esn`}})<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}}))),@usn6=Allshortestpaths((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(@usn5 :`8esn`:@usn5)<-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(:`6esn`:`8esn`{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})))"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Using Periodic Commit 0X0123456789ABCDEF Load Csv With Headers From {`5esn`} =~Reduce(`5esn`=00,`2esn` In {999} Is Not Null|{`4esn`}[..07][..$`6esn`]) =~_usn4(Distinct #usn8 =~{999},``[00..$7]) As `` Fieldterminator \"d_str\";"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Drop Constraint On(`1esn`:`3esn`)Assert Single(_usn4 In 0.0[..{999}][..0.0] Where #usn8 Is Null).`7esn`! Is Unique"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Drop Constraint On(_usn3:`3esn`)Assert Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where True[True..]).usn2? Is Unique"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Remove [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $#usn7[$`4esn`]].@usn5,[`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`|$7 Is Null].@usn5!,_usn3:`2esn` Union All Detach Delete $``[01],{999} In 0.0 In {0}"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Start @usn6=Node:@usn6(_usn4={_usn4}) ,@usn5=Rel:@usn5({`3esn`})Where Count(*)[010..][#usn7..] Unwind [0X0123456789ABCDEF[$999..][@usn5..]] Contains Reduce(#usn7={12}[999][{_usn3}],`2esn` In {999} Is Not Null|$usn1 =~010 =~07) Contains None(`1esn` In `3esn`[07..]) As @usn5 Load Csv With Headers From {`7esn`:{999} Starts With {12},`3esn`:00} =~[0X0123456789ABCDEF[$`5esn`..],#usn7 Ends With $#usn7 Ends With {`8esn`}] =~[{12} =~0.e0 =~{_usn3},$#usn7 =~{12} =~False,1000 Is Null] As `6esn` Fieldterminator 's_str' Union Create Unique `5esn`=((`4esn` {`7esn`:12.e12 In $0 In $0,@usn5:_usn4[Count(*)]})<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})) Merge `5esn`=Allshortestpaths((((:#usn8{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})-[?:`` *..00{``:`3esn` =~9e0 =~@usn6}]-(:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})-[:_usn4|:usn1 *07]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})))) On Create Set _usn4+=0.12[Count(*)..][$#usn7..],None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]).@usn6! =[$`1esn`[$12][Count ( * )],9e1 Ends With $@usn5 Ends With $123456789] Is Not Null Is Not Null On Create Set {`3esn`:0X0123456789ABCDEF[$`2esn`..][`2esn`..]}.`4esn`? =`1esn`(Distinct $usn1 Starts With {_usn3},{#usn8}[$#usn7..]) Starts With [$_usn4[$`4esn`..$12]] Starts With [`6esn` In 00 Where 0.12 In 0X7|{999} Is Null],usn1:#usn7,Case When 1.e1[0xabc..] Then $@usn6 Starts With {`1esn`} Starts With 12 End.`2esn`! ={@usn5} Starts With 1.0 Starts With 00"), + octest_legacy:ct_string("Cypher 999.999 Cypher Unwind $_usn4[$`4esn`..$12] As _usn3 Foreach(`2esn` In $usn2 In 123.654 In .e0| Remove {@usn6:.e12 Is Null Is Null}.``?,Shortestpath((:_usn3{@usn5:.e1[..\"d_str\"],#usn8:{`1esn`}[`6esn`..12e12]})<-[`7esn`?*..]-(usn1 :`1esn`{#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]})).@usn5? Create `5esn`=Allshortestpaths(((:`7esn`{usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})<-[`8esn`?:`4esn`|:#usn7]->({`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]})-[usn2 *07{usn1:07 =~@usn5}]->({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True}))),((:#usn8{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})-[``?:usn2|#usn7 *0x0..]-(@usn5 :usn1:_usn4)-[:`5esn`]->(:@usn6{`2esn`:$999 In 999}))) Remove Filter(_usn4 In 0.0[..{999}][..0.0] Where True Starts With $`4esn` Starts With 12e12).@usn5!,(usn2 {_usn3:$0 In _usn4})-[_usn4? *07{1000}]-(`` )-[?:`6esn` *07]-(#usn7 :_usn3{`2esn`}).#usn7?,None(`2esn` In {999} Is Not Null Where {``} Ends With .e12 Ends With 0.e0).usn2 Union All Create ({#usn7:#usn8 =~{999}}) Start ``=Node:`6esn`(usn2={`8esn`}) Return Distinct Allshortestpaths((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})<-[`1esn`?]->(:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}}))[Case When 123.654[$`1esn`..Null][1000..{_usn3}] Then ``[$0..][`1esn`..] When 00 Ends With `8esn` Then $usn2 Is Null Is Null Else $999 Is Null End..``(999 Starts With 's_str',1e1[1.e1..][123.654..])][Single(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{usn2:{1000},`6esn`:#usn8[`7esn`..]}],$#usn8[{12}..] As `6esn`,None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False)[[9e1[$_usn4..0xabc],{@usn6}[$`7esn`..][False..],#usn8 In `8esn` In 07]..Any(_usn4 In `2esn` Where $999 Is Null)] Skip Count(*)[.e12];"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Foreach(@usn6 In (:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})-[`1esn`:`1esn`|:`3esn` *01..07{`3esn`:123456789 Is Not Null Is Not Null}]-(`1esn` {@usn5:$usn1 In 0.12 In $``})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Reduce(`5esn`=.e12[$#usn8..@usn6],usn1 In 12.e12 In {0} In 9e1|Count(*)[.e12])| Load Csv With Headers From $`3esn` In 9e12 In `` As `6esn` Fieldterminator 's_str' Detach Delete {usn2:{`1esn`} Is Not Null} Is Null,0.0 In `6esn` In $@usn5,[{usn2}[$`4esn`]] Starts With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null]) Create Unique @usn5=(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})<-[?:`6esn` *01..07]->(:usn2:`2esn`{`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})-[? *1000]->(`5esn` {usn2:$#usn7 Starts With 9e0 Starts With 2.12}) Union Optional Match `5esn`=Allshortestpaths(((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]}))) Using Index usn1:`3esn`(`3esn`) Using Scan `2esn`:`2esn` Where Count(*) Is Not Null"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Create Constraint On(`2esn`:usn1)Assert Exists((:``{`1esn`:#usn8 Is Not Null,`5esn`:$@usn6[$0..usn1][0X0123456789ABCDEF..$999]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})-[?:_usn3|`8esn` *12..{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}]-(`6esn` :`2esn`{`7esn`:#usn8 =~{999}}).#usn8?);"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Create Constraint On(`1esn`:`5esn`)Assert (#usn8 {``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000}).`7esn`? Is Unique"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Load Csv With Headers From Case 0[{@usn5}..][7..] When {`4esn`} In _usn4 Then `1esn`[Null..] When ``[{#usn8}] Then {`4esn`} Starts With $7 Starts With $`` Else `8esn` Contains $`3esn` Contains {`4esn`} End In [{_usn4} In {1000}] In Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`4esn`} Starts With $7 Starts With $``|0Xa Contains {`7esn`} Contains $999) As _usn3 Fieldterminator \"d_str\" Create #usn8=Allshortestpaths((_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})-[`1esn`?:_usn3|`8esn` *0xabc..7]->(@usn5 :`6esn`:`8esn`)) Union With Distinct @usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2) As @usn5,$`` =~{``} =~0.e0 Skip Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Starts With (usn2 :``)<-[#usn7? *0X0123456789ABCDEF{usn1:.e1[@usn5]['s_str'],`2esn`:$`7esn` Is Null Is Null}]->({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}) Where {_usn3} Contains True Contains 0X7 Create ((#usn8 :`8esn`:@usn5)-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]-(:usn1:_usn4{`4esn`:01234567 In $123456789})-[?:`8esn`|:_usn4{usn1:999[12.0..][#usn7..],@usn5:123.654[$`1esn`..Null][1000..{_usn3}]}]-(`8esn` {@usn6:12 Starts With {_usn4} Starts With $#usn8,`3esn`:.e1[@usn5]['s_str']})),@usn6=Allshortestpaths((:`2esn`{`2esn`:`5esn` Is Null Is Null})) Union Unwind None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False) Is Null As `2esn` Merge (`3esn` :`1esn`)-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]}) On Match Set `7esn` =$999[{_usn4}] On Match Set `5esn`+=$`3esn` Contains 0 Contains 07,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $#usn7[..@usn6][..$0]).`1esn`? =$1000[0.12..0.12] Detach Delete Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`])[(`3esn` :#usn7{`6esn`:{_usn4} Is Null,usn2:{`2esn`} Starts With @usn6})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`8esn`:@usn5)<-[@usn6?:`7esn`]->(:`2esn`{#usn7:#usn8 =~{999}})..Shortestpath((`8esn` {_usn4:{usn1} In Count ( * )})<-[`6esn`?]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})<-[@usn6?:`7esn`]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1}))][Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0[$#usn8...e12])..[`1esn` In $12 Is Not Null Where {usn1} In Count ( * )|$`3esn`[{``}..]]],{usn2}[`6esn`..01234567],All(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7]) Contains Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End Contains Reduce(`6esn`={_usn4} In {1000},usn1 In 12.e12 In {0} In 9e1|{`4esn`} Starts With $7 Starts With $``)"), + octest_legacy:ct_string("Explain Profile Create Constraint On()-[#usn8:``]-()Assert Exists(Extract(#usn7 In 0Xa[@usn5][{`7esn`}] Where 1e1[1.e1..][123.654..]|{999} Starts With {_usn4} Starts With 00).`5esn`!);"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Create Constraint On(`4esn`:`4esn`)Assert Reduce(usn1=\"d_str\"[..0.e0],`` In {`1esn`} Starts With @usn6|$`6esn`[{`3esn`}..12]).`8esn`! Is Unique;"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Drop Constraint On()-[@usn6:`7esn`]->()Assert Exists(Case #usn7 =~{`4esn`} =~123456789 When Count(*) Starts With $usn1 Starts With {usn2} Then $`6esn`[{`3esn`}..12] End.@usn5);"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Drop Constraint On()-[`4esn`:_usn4]-()Assert Exists(Shortestpath(((@usn6 :@usn6)-[{`7esn`:01234567 In $123456789}]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})-[{`2esn`:1000 Is Null Is Null}]->(`5esn` :`2esn`{#usn8:True[$`7esn`..{1000}]}))).`4esn`!);"), + octest_legacy:ct_string("Profile Create Constraint On(`3esn`:`2esn`)Assert Single(`1esn` In $12 Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]).`2esn`! Is Unique"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Drop Constraint On(``:`8esn`)Assert Exists(Reduce(`7esn`=7 Contains `2esn` Contains $`8esn`,_usn4 In `2esn`|12.e12[..1e1]).`8esn`)"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On()<-[``:`5esn`]-()Assert Exists(Shortestpath(({`6esn`:$``['s_str'..][0x0..]})).`8esn`);"), + octest_legacy:ct_string("Cypher Load Csv With Headers From ``(999 Starts With 's_str',1e1[1.e1..][123.654..]) =~[$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]] =~[#usn7 In 0Xa[@usn5][{`7esn`}] Where `5esn`[0xabc..]] As @usn5 Union Create Unique ({`4esn`:#usn8 Is Null}) Union All Create `5esn`=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]}) Return Distinct ``[$0..][`1esn`..] As `4esn`,Allshortestpaths((usn2 {_usn3:$0 In _usn4})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[{`2esn`:1000 Is Null Is Null}]->(:_usn4{`4esn`:`8esn` Contains $`3esn` Contains {`4esn`},_usn3:$12[{7}..0X0123456789ABCDEF]}))[..[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12 Starts With {_usn4} Starts With $#usn8]][..(:``{`1esn`:#usn8 Is Not Null,`5esn`:$@usn6[$0..usn1][0X0123456789ABCDEF..$999]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})-[?:_usn3|`8esn` *12..{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}]-(`6esn` :`2esn`{`7esn`:#usn8 =~{999}})] Order By {12} Starts With #usn8 Starts With 0e0 Descending,0.0 Is Null Asc Skip All(`5esn` In $`2esn`[12.e12][$@usn5] Where 12[..$@usn6]) =~(_usn4 :`7esn`)<-[{`2esn`:1000 Is Null Is Null}]->({`6esn`:7[010][00],#usn8:$usn1 =~010 =~07}) Limit [_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]|0[Count(*)][0e0]] Contains Extract(`` In {`1esn`} Starts With @usn6 Where .e0[..{`5esn`}][..999]|$`3esn`[..$`2esn`][..123.654]) Contains Reduce(`2esn`=$usn1[0X7],@usn5 In Null =~12e12|#usn7 =~{`4esn`} =~123456789)"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Drop Constraint On()-[_usn3:usn2]->()Assert Exists((@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]})<-[usn1?:`6esn` *12..{`6esn`:999 Starts With $123456789 Starts With {``}}]->({_usn4}).@usn6)"), + octest_legacy:ct_string("Explain Profile Create Constraint On()<-[usn2:usn2]-()Assert Exists(Filter(`` In {`1esn`} Starts With @usn6 Where {`7esn`}[9e1..][@usn6..]).#usn8!)"), + octest_legacy:ct_string("Cypher Load Csv With Headers From .e0[0.12] As usn1 Fieldterminator \"d_str\" Foreach(`1esn` In `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]]| With Distinct *,0X0123456789ABCDEF Contains {usn1} As @usn5 Order By (:usn1:_usn4)<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[usn2?:`2esn`*..]-(:`5esn`:@usn5{``:0.12[..$`6esn`][..$1000]}) Starts With Reduce(`8esn`=00[..$123456789][..$`5esn`],`` In {`1esn`} Starts With @usn6|False[999]) Starts With [`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]] Descending,`2esn`(Null In .e0)[_usn3(Distinct {@usn6}[$`7esn`..][False..])..[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]]] Asc,(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[#usn7?:@usn6|``{123456789}]->(usn1 :`8esn`:@usn5)<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})[..[12.e12 In {0} In 9e1,9e1 =~`` =~{`7esn`},0X0123456789ABCDEF[0X7..]]][..All(`1esn` In `3esn`[07..] Where `7esn`[0..$usn2][{usn2}..0.e0])] Asc Skip #usn7[00] Limit Shortestpath(((usn1 {``:.e12 =~$_usn4})))[`6esn`(_usn3 Contains .e0 Contains {usn2},`3esn`[07..])][[.e12 Ends With 1000 Ends With 010,Count(*)]]) Optional Match `6esn`=Allshortestpaths((@usn6 :usn1:_usn4)),@usn6=Shortestpath(((:#usn8{#usn8:`3esn` Is Not Null Is Not Null}))) Union Remove None(_usn4 In 0.0[..{999}][..0.0] Where {`7esn`} Is Not Null Is Not Null).`3esn`? Delete {`3esn`} Ends With `1esn` Ends With $@usn6,{12} =~0.e0 =~{_usn3},[_usn4 In 0.0[..{999}][..0.0] Where ``[..0X0123456789ABCDEF]][Reduce(``=`6esn` Is Null Is Null,`2esn` In {999} Is Not Null|{12}[999][{_usn3}])..[_usn4 In `2esn` Where 0X0123456789ABCDEF[$`5esn`..]]]"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Load Csv With Headers From $`2esn`[{usn2}] As #usn8 Create `3esn`=Shortestpath((`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})),Allshortestpaths(((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0}))) Unwind Shortestpath((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})-[`7esn`?:`6esn`]->(`1esn` :_usn4)-[#usn8:_usn3|`8esn`{`6esn`:`5esn` Is Null Is Null}]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))[Extract(`1esn` In `3esn`[07..] Where 999 Starts With 's_str')][Case `8esn` Contains $`3esn` Contains {`4esn`} When 9e1 Ends With $@usn5 Ends With $123456789 Then usn2[True] When 0.e0 =~`1esn` =~`6esn` Then usn2 =~0X7 =~{#usn7} Else 1.e1[..12.e12][..$usn2] End] As #usn7;"), + octest_legacy:ct_string("Profile Create Constraint On(`3esn`:@usn5)Assert Exists(Shortestpath((usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`))._usn3?);"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create Constraint On(_usn3:`8esn`)Assert None(`5esn` In $`2esn`[12.e12][$@usn5] Where `1esn` =~1000 =~1000).#usn7! Is Unique"), + octest_legacy:ct_string("Cypher 0.1000 Using Periodic Commit Load Csv With Headers From 0e0 Contains 9e12 As _usn3 Foreach(#usn8 In [`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7}|usn2[`7esn`..{`3esn`}][$7..{#usn7}]][..[`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]|9e12[..0X7]]][..[`2esn` Ends With $`4esn` Ends With {#usn7},'s_str'[..0X7],{#usn8} =~{999} =~{#usn7}]]| Create `6esn`=(({`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})),@usn5=((:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})<-[``:usn2|#usn7 *..0Xa]->(`1esn` {#usn8:$12 Contains 0Xa})) Remove {usn2:123.654[{`7esn`}][{7}],#usn8:$0[..{usn2}][..$usn1]}.usn2?);"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Merge Allshortestpaths(((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0}))) On Create Set `5esn`+={usn1}[$`8esn`..0.0],`2esn`+={`1esn`:{123456789}[12..][$12..]} =~{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF} =~[`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`|_usn3[\"d_str\"]] On Create Set `7esn` =[`2esn`,{`2esn`} Starts With @usn6,9e1 =~999] In Any(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3} Contains 9e0 Contains $999),Reduce(#usn7=_usn3 Contains .e0 Contains {usn2},_usn4 In `2esn`|{@usn6} In {#usn7} In 12.e12).@usn6 =Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3]..`1esn`(Distinct $@usn5[`6esn`..],9e12[..0X7])][Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}))..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]})],Extract(`1esn` In $12 Is Not Null Where 12.e12[{@usn5}..][9e1..]|`1esn`[Null..]).`4esn`? =0Xa Is Not Null Is Not Null Union All Load Csv With Headers From Shortestpath((((:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00}))))[`4esn`(999[12.0..][#usn7..],False[999])..00] As `3esn` Foreach(@usn5 In {1000}[{#usn8}]| Create Unique `7esn`=((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})),Shortestpath((usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`)) Unwind Case {1000}[{#usn8}] When `7esn` Contains `5esn` Contains 0X7 Then True[..010] When {#usn8} =~{999} =~{#usn7} Then `1esn`[..\"d_str\"][..$`5esn`] Else `6esn`[..{999}] End In Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where `3esn`[..{_usn4}][..{@usn5}]) As `8esn`) Delete {#usn7:`5esn`[..9e0][..01234567]} In Case 1e1[1.e1..][123.654..] When 7[1000.._usn3][9e0..\"d_str\"] Then 12.e12[``..usn2][{#usn7}..@usn5] When 1.e1[0xabc..] Then 1.e1 Starts With $`2esn` Starts With $0 End In Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null),$`5esn`[`1esn`..$123456789]"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Optional Match `1esn`=Allshortestpaths(((($_usn3)<-[``?:`3esn`|:@usn5{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(:@usn5{#usn7:{#usn7} In Count ( * ) In $#usn8})-[? *01..07]->(`8esn` :#usn7)))) Using Join On ``,`7esn`,#usn7 Where $`1esn`[$12][Count ( * )] Return Distinct {#usn8}[12.0][$@usn6],$usn2 In 123.654 In .e0,{@usn6}[$`7esn`..][False..] Skip 1000 Is Null Limit $usn1 In 0.12 In $``;"), + octest_legacy:ct_string("Profile Unwind {12}[999][{_usn3}] As `3esn` Foreach(`1esn` In `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]]| With Distinct *,0X0123456789ABCDEF Contains {usn1} As @usn5 Order By (:usn1:_usn4)<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[usn2?:`2esn`*..]-(:`5esn`:@usn5{``:0.12[..$`6esn`][..$1000]}) Starts With Reduce(`8esn`=00[..$123456789][..$`5esn`],`` In {`1esn`} Starts With @usn6|False[999]) Starts With [`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]] Descending,`2esn`(Null In .e0)[_usn3(Distinct {@usn6}[$`7esn`..][False..])..[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]]] Asc,(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[#usn7?:@usn6|``{123456789}]->(usn1 :`8esn`:@usn5)<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})[..[12.e12 In {0} In 9e1,9e1 =~`` =~{`7esn`},0X0123456789ABCDEF[0X7..]]][..All(`1esn` In `3esn`[07..] Where `7esn`[0..$usn2][{usn2}..0.e0])] Asc Skip #usn7[00] Limit Shortestpath(((usn1 {``:.e12 =~$_usn4})))[`6esn`(_usn3 Contains .e0 Contains {usn2},`3esn`[07..])][[.e12 Ends With 1000 Ends With 010,Count(*)]]) Union All Foreach(`1esn` In Allshortestpaths(((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}))) Starts With All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`)| Load Csv With Headers From 12[12e12] As _usn4 Fieldterminator \"d_str\") Start usn1=Node:`6esn`({`8esn`}) Where $_usn4 Ends With 0.e0 Ends With .e0 Union All With \"d_str\"[..0.e0] As #usn7,[12e12 Starts With `1esn` Starts With usn2,Count ( * ) Is Null][(#usn8 {``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})][Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))] As `1esn` Where $999 Ends With {0}"), + octest_legacy:ct_string("Cypher 7.0 Create Constraint On(`6esn`:#usn8)Assert Extract(`` In {`1esn`} Starts With @usn6 Where 12.0 =~$#usn7 =~9e12|{@usn6} Contains 123.654 Contains 01)._usn4! Is Unique;"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Drop Constraint On()-[_usn4:@usn5]-()Assert Exists((:`5esn`:@usn5{@usn6:.e1[..{`7esn`}][..{_usn3}]})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})._usn3?);"), + octest_legacy:ct_string("Cypher 999.999 Cypher Create Constraint On(_usn3:`4esn`)Assert [.e1[0.12]].`6esn`? Is Unique"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Foreach(#usn7 In {_usn3}[`3esn`..$#usn8]| With Distinct (`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] Order By `1esn`[..00][..{7}] Ascending,`6esn` In Null Descending,{`3esn`} Is Null Descending Skip Case When .e1[@usn5]['s_str'] Then 123456789 Starts With {@usn6} Starts With $12 End Contains [`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`] Contains {@usn5:12 Is Not Null,`2esn`:$999 In 999} Where @usn5 Is Not Null Is Not Null) Union All With *,0.e0 Contains #usn7 Order By $_usn4[9e0..] Asc,12 In 999 Descending Limit {`2esn`} Starts With @usn6 Foreach(`1esn` In 0x0 =~123.654 =~{999}| Create Unique @usn5=((`4esn` {`8esn`:0Xa[@usn5][{`7esn`}]})<-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(`3esn` :#usn7)<-[`1esn`?:`4esn`|:#usn7 *..01234567]-(#usn8 {#usn7:$1000 Is Not Null Is Not Null})) Match #usn8=(({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`)),usn2=(`4esn` {_usn4:12 Starts With {_usn4} Starts With $#usn8,_usn4:$@usn5[$`4esn`][$@usn6]})<-[? *0X7..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Using Index @usn6:`4esn`(`6esn`))"), + octest_legacy:ct_string("Cypher 999.999 Cypher Create Unique `7esn`=({#usn7:#usn8 =~{999}}) Optional Match ((`2esn` {_usn4:`4esn`[usn1]})<-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(:_usn4)) Where {usn1} Ends With {`6esn`} Ends With 123456789 Union Match Shortestpath(((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))),`5esn`=Allshortestpaths(((:`7esn`{usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})<-[`8esn`?:`4esn`|:#usn7]->({`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]})-[usn2 *07{usn1:07 =~@usn5}]->({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True}))) Using Scan `1esn`:`3esn` Using Index @usn5:usn1(_usn3) Where {@usn5}[..{12}][..0x0] Delete {`3esn`} Ends With `1esn` Ends With $@usn6,{12} =~0.e0 =~{_usn3},[_usn4 In 0.0[..{999}][..0.0] Where ``[..0X0123456789ABCDEF]][Reduce(``=`6esn` Is Null Is Null,`2esn` In {999} Is Not Null|{12}[999][{_usn3}])..[_usn4 In `2esn` Where 0X0123456789ABCDEF[$`5esn`..]]] Match (((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),_usn4=Allshortestpaths((usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})) Using Scan `2esn`:#usn7 Where {#usn8} =~{999} =~{#usn7} Union Create Shortestpath((usn1 :usn1:_usn4)),Shortestpath((((#usn8 :@usn6)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4})-[:`3esn`|:@usn5]-(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})))) Create (((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4})))"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Optional Match Shortestpath(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),((`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})) Where {@usn5} =~_usn4 =~0.12 Foreach(`1esn` In .e1 Contains $`3esn`| Create Unique @usn5=Allshortestpaths(({`8esn`:0[$`6esn`...e1][`1esn`..$`7esn`]})-[#usn8:#usn7|`2esn`]->(:@usn6{`2esn`:$999 In 999})),`1esn`=((`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})-[ *0xabc..7{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}]-({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})-[`2esn`:`3esn`|:@usn5 *..010{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->({`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]}))) Unwind Reduce(@usn6=@usn5[$12..\"d_str\"],`` In {`1esn`} Starts With @usn6|Count ( * ) =~{`5esn`} =~{_usn4}) Starts With None(`1esn` In $12 Is Not Null Where `7esn` Is Not Null Is Not Null) Starts With [$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null] As `2esn` Union All Create Unique `6esn`=((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[:`2esn` *07]-(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]->({``:.e1 Contains $`3esn`})) Load Csv With Headers From @usn5 Contains {0} Contains 9e12 As `` Remove [`3esn` In 123.654[1e1..][{#usn8}..] Where {@usn6} In {#usn7} In 12.e12|123.654 Contains $_usn3 Contains 0X0123456789ABCDEF].usn2?,None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12.e12[``..usn2][{#usn7}..@usn5])._usn3? Union All With {usn1}[$`8esn`..0.0] As #usn8 Skip {`2esn`} Ends With {12} Ends With 7 Limit .e1 Starts With $_usn4 Starts With {`1esn`} Where .e12 Contains $`1esn` Contains $@usn6 Match (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` )) Using Join On `8esn`,_usn4 Using Index `7esn`:`1esn`(`2esn`);"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Foreach(`` In Single(`8esn` In $12[{7}..0X0123456789ABCDEF])[Case 9e1[123456789..] When 12 Starts With 7 Starts With $`5esn` Then {_usn3} Contains True Contains 0X7 When `1esn`[..00][..{7}] Then 1.e1[12e12..{`6esn`}] End..]| With Distinct *,Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End[None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])][count(Distinct $`5esn`[$#usn7..][0xabc..])] As `2esn`,12 Is Not Null Is Not Null As #usn8 Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}])[[#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}]..{`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}][Case When 2.12 =~0x0 =~_usn4 Then .e1[@usn5]['s_str'] When $@usn5 In $usn2 In {1000} Then {0}[False..@usn5] Else {@usn6}[True..{_usn3}] End..`1esn`()] Ascending) Return 0.e0 Ends With False As `` Skip Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*))[Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12)..] Optional Match usn1=(@usn6 :`2esn`)<-[ *..0Xa]->({`8esn`:Null In .e0}) Using Scan _usn4:`2esn` Using Scan `2esn`:`1esn` Where 12.e12[`7esn`] Union All Create #usn7=(_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}) Unwind $@usn5[$`4esn`][$@usn6] As usn2"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Drop Constraint On(`5esn`:_usn3)Assert [#usn7 In 0Xa[@usn5][{`7esn`}] Where $0[_usn4..{`3esn`}][$#usn7..$#usn7]|{#usn8}[#usn7..{`2esn`}]].@usn6? Is Unique"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Detach Delete {@usn5}[..{_usn4}][..$@usn5],0Xa Is Not Null Is Not Null,{usn2}[`6esn`..01234567] Unwind #usn8['s_str'..][123.654..] As _usn4 Create _usn4=((`2esn` :@usn6)-[_usn3?:@usn6|``]-(usn2 )<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})),`5esn`=Allshortestpaths(((:_usn4)<-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]->(_usn4 {_usn3:`1esn`[..00][..{7}]})))"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Merge `1esn`=(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}) On Match Set Any(_usn4 In `2esn` Where 0X0123456789ABCDEF[9e12]).`5esn`! =(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) On Match Set `3esn`(Distinct 's_str' Starts With 12e12 Starts With $_usn4).`3esn` =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End Create `2esn`=Shortestpath((:`5esn`:@usn5{``:.e12 =~$_usn4})-[_usn3?:usn1 *12..{#usn7:0e0 Contains `3esn` Contains `7esn`}]-(`5esn` $`8esn`)<-[@usn5:_usn4|:usn1*]->(:@usn5)),`2esn`=((@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]})) Union All Load Csv With Headers From Case When 0.e0 Contains #usn7 Then $_usn4[{``}..][1e1..] When $`2esn`[12.e12][$@usn5] Then $usn1[0X7] End Ends With Extract(`1esn` In $12 Is Not Null Where {`3esn`}[{`5esn`}]) Ends With Case 0Xa[.._usn3][..$`6esn`] When {`4esn`}[$123456789..] Then {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] When {usn2}[$`4esn`] Then $1000 Starts With $`8esn` Starts With {`5esn`} Else @usn6[$_usn4] End As `8esn` Unwind Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where 1.e1[12e12..{`6esn`}]|Count ( * )[..12][..{@usn6}]) Contains All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Contains Extract(_usn4 In `2esn` Where $999 Is Null) As `2esn` Merge @usn5=Shortestpath(({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[{``:\"d_str\"[{`8esn`}..]}]-({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})) Union Load Csv With Headers From None(`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}])[[123.654[1e1..][{#usn8}..],$#usn7[123.654]]] As `8esn` Fieldterminator 's_str' Create Unique `8esn`=Allshortestpaths(((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(`1esn` :@usn6))),(:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}) Start `3esn`=Node:`2esn`(@usn6={`4esn`}) Where False[999]"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Drop Constraint On(#usn8:@usn5)Assert Reduce(`7esn`=7 Contains `2esn` Contains $`8esn`,_usn4 In `2esn`|12.e12[..1e1]).`8esn` Is Unique"), + octest_legacy:ct_string("Cypher 7.0 Create Constraint On()<-[`2esn`:`6esn`]-()Assert Exists(['s_str' Starts With 12e12 Starts With $_usn4,$7 In @usn5 In {@usn5}]._usn4);"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Using Periodic Commit 0 Load Csv With Headers From (#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..] As usn1 With `7esn` Contains `5esn` Contains 0X7 As `1esn`,#usn7(01 =~$`1esn`) =~{@usn6:12.e12[$`8esn`..{`8esn`}],#usn8:#usn7 =~00} As `5esn`,{@usn6}[$`7esn`..][False..] Order By $@usn6 =~#usn8 Descending,{1000} Ends With {`8esn`} Ascending Skip 1000[$7..$123456789] Limit 9e12[..0X7] With Distinct Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..],`` =~`6esn` =~usn1 As `2esn` Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,1.e1 =~$`1esn` Ascending,12.e12[..1e1] Asc Limit 0X0123456789ABCDEF[0X7..] Where $123456789[..$7][..$`6esn`]"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(`3esn`:#usn7)Assert [00 Starts With $`6esn`].`3esn`! Is Unique;"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Create Constraint On(`5esn`:_usn3)Assert Exists(Any(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999]).``);"), + octest_legacy:ct_string("Cypher 999.999 Cypher Drop Constraint On(@usn5:_usn3)Assert Reduce(`3esn`=123456789[0..],_usn3 In True[7][$999]|`2esn` Ends With $`4esn` Ends With {#usn7}).`8esn` Is Unique"), + octest_legacy:ct_string("Cypher 0.1000 Create Unique Allshortestpaths(((:#usn8{#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})-[`8esn`?]->(:`3esn`:`6esn`))),`3esn`=(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})-[:_usn4|:usn1{`6esn`}]->(`8esn` :`7esn`) Start #usn8=Relationship( {`4esn`}) Remove {#usn7:`2esn` Starts With `` Starts With 1e1}.@usn5!,{`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]}.@usn6 Union All Start `8esn`=Relationship:`8esn`({`1esn`}) Where $_usn4 Contains {#usn7} Contains `1esn` Merge ((`2esn` :@usn5{`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})<-[?:`6esn` *07]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[{#usn7:'s_str'[_usn4..0x0]}]-({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]})) On Match Set `6esn`+=`1esn`(Distinct $usn1 Starts With {_usn3},{#usn8}[$#usn7..]) In Shortestpath((({_usn4:0.12 Starts With 9e12 Starts With $`1esn`}))) In All(`1esn` In $12 Is Not Null Where 12.e12[{@usn5}..][9e1..]),All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $#usn7[..@usn6][..$0]).`1esn`? =$1000[0.12..0.12],`2esn`+=0.0 In `6esn` In $@usn5 On Match Set Reduce(`8esn`=7 Contains `2esn` Contains $`8esn`,_usn4 In 0.0[..{999}][..0.0]|$@usn5[`1esn`..]).`2esn` =$`5esn`[`4esn`] Foreach(`` In usn1(Distinct {@usn5}[Count(*)..])[[@usn5 In Null =~12e12 Where {`5esn`} Contains 's_str' Contains 9e1|`2esn`]..][{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}..]| Load Csv With Headers From {usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]} Is Null Is Null As usn1 Create Allshortestpaths(({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})));"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Index On:`5esn`(#usn8)"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Drop Constraint On(`2esn`:`1esn`)Assert Reduce(`3esn`=123456789[0..],_usn3 In True[7][$999]|`2esn` Ends With $`4esn` Ends With {#usn7}).`8esn` Is Unique"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Drop Constraint On(#usn8:`8esn`)Assert Case {#usn8}[usn1][1.0] When .e12 =~.e0 Then 12 Starts With 7 Starts With $`5esn` End.`3esn`! Is Unique;"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Foreach(_usn3 In 123456789[12..$`4esn`]| Detach Delete {`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}[Case When 1.e1[0X0123456789ABCDEF..] Then `6esn`[..{999}] When {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`] Then $#usn7 Ends With 0.12 Ends With {@usn6} End..Filter(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null)],Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})]) Unwind `5esn`[..9e0][..01234567] As @usn5 Create Unique @usn6=Shortestpath(((usn1 :`5esn`:@usn5)-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:usn2:`2esn`{usn1:$7 Is Null Is Null})-[? *01..07]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}))),((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]})) Union All Optional Match Allshortestpaths(({`4esn`:#usn8 Is Null})) Using Index `3esn`:#usn8(`2esn`) Using Scan `1esn`:`3esn` Unwind `7esn`[{7}..@usn5] As @usn5 Union All Merge `8esn`=((`5esn` )) On Match Set (:usn1:_usn4{`4esn`:#usn7 Starts With 1000 Starts With .e1})-[`7esn`]->(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}).``? =$`2esn`[{usn1}..],None(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e12 =~$_usn4).`7esn`! =Reduce(@usn5=True[7][$999],usn1 In 12.e12 In {0} In 9e1|.e12 =~$_usn4)[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])][[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]]] On Create Set _usn4+=0.12[Count(*)..][$#usn7..],None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]).@usn6! =[$`1esn`[$12][Count ( * )],9e1 Ends With $@usn5 Ends With $123456789] Is Not Null Is Not Null Start @usn6=Node:@usn5({usn1}) ,#usn8=Node:`6esn`(#usn8={@usn5})Where {7} Starts With $usn1 Starts With 1.0"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On()-[#usn8:`7esn`]->()Assert Exists(All(#usn7 In 123.654 Starts With $`` Where _usn3 Contains .e0 Contains {usn2}).@usn6!);"), + octest_legacy:ct_string("Explain Profile Using Periodic Commit 01234567 Load Csv From 7 Contains $`` Contains {`6esn`} As `8esn` Fieldterminator \"d_str\" Delete 12.e12[{@usn5}..][9e1..],Extract(_usn3 In True[7][$999] Where $`3esn`[{``}..]) Is Not Null Is Not Null,0.0 Contains $_usn4 Contains {`2esn`}"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Create Constraint On(#usn8:_usn4)Assert Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where Count(*) In {``}).`` Is Unique;"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Remove Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where _usn4 Is Null Is Null).``!,Case 7 Contains $`` Contains {`6esn`} When {#usn8}[2.12] Then $``['s_str'..][0x0..] When $7 Ends With $`8esn` Then {`7esn`}[``..] Else {123456789}[12..][$12..] End.`6esn`! Unwind Extract(#usn7 In 0Xa[@usn5][{`7esn`}] Where $@usn5 In $usn2 In {1000}|{`2esn`}[..{@usn6}][..1.e1]) In Reduce(`5esn`=7[$0..][{_usn4}..],`` In {usn1} Ends With {`6esn`} Ends With 123456789|#usn8[$0..False][$`1esn`..$#usn7]) In Reduce(`8esn`=True Starts With $`2esn` Starts With {@usn6},`5esn` In $`2esn`[12.e12][$@usn5]|999 Ends With .e12 Ends With .e1) As `7esn` With `7esn`[{7}..@usn5],{@usn6} Contains 0e0,[$_usn4[9e0..]][`8esn`(Distinct {7} Starts With $usn1 Starts With 1.0)..Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} Starts With 1.0 Starts With 00|$#usn7[..@usn6][..$0])][Any(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{#usn8:{`7esn`} Is Not Null Is Not Null,`4esn`:12 Starts With 0x0}] As `1esn` Limit $#usn7[.e1..{7}] Where 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Union Match `6esn`=Allshortestpaths(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(:`2esn`{`6esn`:@usn6[{0}..]}))),`8esn`=({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]->(usn1 :`8esn`:@usn5{`1esn`:{#usn7} Contains 0.0 Contains $0,`2esn`:.e12[010..$123456789]})<-[_usn3?:@usn6|`` *0x0..{`3esn`}]-(@usn6 {`1esn`:01234567 In $123456789,`1esn`:{`6esn`}[..{`2esn`}]}) Using Scan `3esn`:`3esn` Where 999[12.0..][#usn7..]"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(@usn6:`1esn`)Assert Filter(usn1 In 12.e12 In {0} In 9e1).`7esn` Is Unique;"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Drop Constraint On()-[@usn5:`2esn`]-()Assert Exists((`2esn` :`5esn`:@usn5{_usn4:{`2esn`} Is Not Null Is Not Null,usn2:{`4esn`} In _usn4})-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)-[ *0xabc..7{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}]-(usn1 )._usn4?)"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On(`7esn`:_usn4)Assert Exists(Shortestpath((:_usn3{@usn5:.e1[..\"d_str\"],#usn8:{`1esn`}[`6esn`..12e12]})<-[`7esn`?*..]-(usn1 :`1esn`{#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]})).@usn6!);"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Drop Constraint On(`8esn`:`6esn`)Assert None(_usn4 In `2esn` Where .e1[0.12]).`8esn` Is Unique"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Return 1.e1 Is Null Skip $`2esn`[{``}..{1000}][#usn8..`2esn`] Limit $123456789[..$7][..$`6esn`] Merge `5esn`=(_usn3 :`6esn`:`8esn`{`4esn`:$usn1 Starts With $999 Starts With {@usn5},`7esn`:``[..$#usn7]}) On Create Set #usn8 =$`1esn` =~$`1esn` =~{`6esn`},`2esn` =@usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2),`6esn` =`6esn` In Null On Match Set `5esn` =123456789 Is Not Null Is Not Null,`6esn` ={@usn5}[{`5esn`}][$12] Union Start `7esn`=Node:usn1({999}) Start `1esn`=Node:@usn6(\"d_str\") ,`3esn`=Rel:`5esn`({0}) Union All Load Csv From $`2esn` Starts With {`8esn`} Starts With {usn1} As #usn7 Fieldterminator \"d_str\";"), + octest_legacy:ct_string("Cypher 7.0 Merge _usn4=Allshortestpaths(((`4esn` :`1esn`)-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6}))) On Create Set #usn8+=$1000 Is Not Null Is Not Null,`3esn` =Reduce(@usn6=@usn5[$12..\"d_str\"],`` In {`1esn`} Starts With @usn6|Count ( * ) =~{`5esn`} =~{_usn4}) Starts With None(`1esn` In $12 Is Not Null Where `7esn` Is Not Null Is Not Null) Starts With [$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null]"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create Constraint On(`5esn`:`1esn`)Assert {`4esn`:{999} Is Not Null,@usn6:123.654 Ends With usn2 Ends With 0}.`8esn` Is Unique;"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(`8esn`:`1esn`)Assert Exists(Single(`1esn` In $12 Is Not Null Where Count(*)[..``][..#usn8]).`7esn`?);"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Drop Constraint On(`3esn`:`6esn`)Assert Exists(All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {@usn5} =~_usn4 =~0.12).#usn7?)"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Drop Constraint On()-[`5esn`:`2esn`]-()Assert Exists(All(#usn7 In 0Xa[@usn5][{`7esn`}] Where 1e1[1.e1..][123.654..]).`8esn`?)"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Remove (:@usn5)-[`8esn`?{`3esn`:'s_str'[..0X7]}]-(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}).`7esn`,All(#usn7 In 0Xa[@usn5][{`7esn`}] Where $@usn5 In $usn2 In {1000}).`6esn`!,{`7esn`:12e12 Ends With `4esn` Ends With 123456789}.usn2 Union All Start `3esn`=Rel:#usn8(\"d_str\") ,`3esn`=Node:`2esn`(@usn6={`4esn`}) Union All Merge Shortestpath((`6esn` {``:`4esn`[usn1]})<-[`7esn`?{_usn4:9e1 Ends With Count(*) Ends With False,#usn7:$_usn4 Ends With 0.e0 Ends With .e0}]->({`1esn`:$123456789[..$7][..$`6esn`]})-[_usn3:#usn7|`2esn`]-(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})) Remove Case 07[`8esn`] When {1000} Then {usn1} =~123.654 =~\"d_str\" Else Null Ends With 12 Ends With usn2 End._usn4?;"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Load Csv From {#usn8}[usn2][{0}] As `2esn` Fieldterminator \"d_str\" Merge ((usn1 :usn1:_usn4)-[`6esn`?:@usn5|:`7esn`]->(`2esn` :@usn5{@usn5:{`2esn`} Is Not Null Is Not Null})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(:`2esn`{`2esn`:123456789[0..]})) On Match Set `5esn`+=Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 9e0[#usn8])[{`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]}..None(`` In {`1esn`} Starts With @usn6 Where $usn1[@usn6][#usn7])][Extract(_usn4 In `2esn` Where $999 Is Null|00[07..])..Shortestpath(({`3esn`:0.e0[{999}][{`1esn`}],`1esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[:usn2|#usn7 *0X7..0Xa]->(#usn7 :@usn5))],`2esn`+=0xabc[$999..][{#usn7}..],`5esn`+=123.654 Contains $#usn8 Contains .e1 On Create Set `8esn` =usn2(0.0 Is Not Null Is Not Null,{123456789} Is Not Null)[None(`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12])..[_usn4 In `2esn` Where False Ends With $``|9e0[#usn8]]][(`3esn` :`3esn`:`6esn`)-[]->(`7esn` :#usn8)..[0X0123456789ABCDEF Contains $`1esn` Contains 1000,0e0[$#usn8...e12],.e12 Is Null Is Null]],@usn6+=$@usn5[..usn2][..$#usn7] Union Merge ((`4esn` :usn2:`2esn`)) Start `1esn`=Rel:@usn5({usn1}) Merge (({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True}));"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Create Constraint On(`8esn`:usn1)Assert Reduce(usn2=12.e12 In $0 In $0,`` In {`1esn`} Starts With @usn6|{`4esn`}[$123456789..]).`4esn` Is Unique;"), + octest_legacy:ct_string("Explain Profile Drop Constraint On(usn1:`5esn`)Assert Exists(Allshortestpaths((@usn6 :usn1:_usn4)<-[?:@usn6|`` *..01234567]->(#usn8 {usn1:$123456789 Starts With `5esn`})-[? *01..07]->(`8esn` :#usn7)).`2esn`?);"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Load Csv From [False Contains 0.e0 Contains Count(*)][Any(@usn5 In Null =~12e12 Where 0[`4esn`][12.e12])..[$_usn4 Is Not Null Is Not Null,`7esn` Is Not Null Is Not Null]] As `3esn` Fieldterminator \"d_str\" Union Create `3esn`=Shortestpath((({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))),((`2esn` :@usn5{`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})<-[?:`6esn` *07]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[{#usn7:'s_str'[_usn4..0x0]}]-({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]})) Create Allshortestpaths(((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7))) Union Unwind Shortestpath(({``:False Contains $#usn8 Contains 9e1})<-[`6esn`?:_usn3|`8esn`]->(`2esn` :#usn8{@usn6:`7esn` Ends With $_usn3 Ends With usn2,_usn4:{12} Starts With #usn8 Starts With 0e0})) Starts With Reduce(_usn4=Count(*) In {``},`` In {usn1} Ends With {`6esn`} Ends With 123456789|9e12 =~123456789 =~$999) Starts With None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where `3esn`[..{_usn4}][..{@usn5}]) As usn2 Detach Delete $_usn3[{#usn8}..`7esn`][0..$0],usn1(Distinct {@usn5}[Count(*)..])[[@usn5 In Null =~12e12 Where {`5esn`} Contains 's_str' Contains 9e1|`2esn`]..][{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}..];"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Start `4esn`=Node:``(\"d_str\") Where 9e12 Is Not Null Is Not Null Union All Start _usn4=Node:`4esn`(`2esn`={``}) Where False Starts With 010 Create Unique `6esn`=((({`1esn`:$123456789[..$7][..$`6esn`]})<-[:`2esn` *1000{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]-(#usn8 :`8esn`:@usn5)-[?:`8esn`|:_usn4 *12..]->(@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]}))),(((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[{#usn7:'s_str'[_usn4..0x0]}]-(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``}))) Union Foreach(usn2 In 2.12[..$_usn4]| Remove Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn1 Starts With {_usn3}|{123456789}[12..][$12..]).usn1?,[$``[..1.e1][..12],7 Contains $`` Contains {`6esn`}].`7esn`! Match #usn8=Allshortestpaths((({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))),Allshortestpaths((((:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})))) Using Scan `4esn`:_usn4)"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` With $`7esn` Contains {`1esn`} Contains 9e12 As usn1,Reduce(usn2=00[Count(*)...e0][$#usn7..0X0123456789ABCDEF],usn1 In 12.e12 In {0} In 9e1|{`7esn`}[0X7..][0x0..]) Starts With [_usn4 In `2esn`] Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Where {@usn5}[..{12}][..0x0]"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Drop Constraint On()<-[`3esn`:`3esn`]-()Assert Exists([9e1[9e1...e0],$999 Contains {7},\"d_str\"[..0.e0]].`7esn`!);"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Return #usn7 Starts With $999,1e1[..`1esn`][..0e0] Limit (:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})-[`1esn`:`1esn`|:`3esn` *01..07{`3esn`:123456789 Is Not Null Is Not Null}]-(`1esn` {@usn5:$usn1 In 0.12 In $``})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Reduce(`5esn`=.e12[$#usn8..@usn6],usn1 In 12.e12 In {0} In 9e1|Count(*)[.e12]) Foreach(`8esn` In Extract(#usn7 In 123.654 Starts With $`` Where #usn8[`7esn`..]|0.0[..{999}][..0.0])[..Extract(`1esn` In `3esn`[07..] Where 00[07..]|$#usn7 Starts With 9e0 Starts With 2.12)][..None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])]| Unwind `5esn`[..9e0][..01234567] As @usn5 Remove Filter(`6esn` In 00 Where 0.12[..$`6esn`][..$1000]).#usn8!,[999 Ends With .e12 Ends With .e1,{_usn3}[..$`8esn`]].@usn6?) Union All Merge _usn4=((`8esn` :@usn6)) Union All Unwind 123456789 Starts With {@usn6} Starts With $12 As `8esn` Start _usn3=Node(01,0x0,0X7,0X7) ,`2esn`=Relationship:_usn4(usn1={_usn4})Where $`8esn`[..$999][..0] Remove {usn2:123.654[{`7esn`}][{7}],#usn8:$0[..{usn2}][..$usn1]}.usn2?;"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Drop Constraint On(`2esn`:usn1)Assert [#usn7 In 123.654 Starts With $`` Where $999 In 999].@usn6! Is Unique"), + octest_legacy:ct_string("Cypher 999.999 Cypher Drop Constraint On(_usn4:usn1)Assert Exists({`5esn`:123456789 Starts With {@usn6} Starts With $12}.@usn6!);"), + octest_legacy:ct_string("Profile Create Constraint On(`1esn`:``)Assert Exists(None(`3esn` In 123.654[1e1..][{#usn8}..] Where $`2esn`[12.e12][$@usn5]).#usn7)"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Create Constraint On(`5esn`:@usn5)Assert None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where Count ( * )[Count ( * )][12]).`7esn`? Is Unique;"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Remove Shortestpath(((@usn6 :`4esn`:@usn6{#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[:#usn7|`2esn` *0x0..]-({`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}))).#usn7!,Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where _usn4 Is Null Is Null).``! Merge `4esn`=({`7esn`:{@usn5}[..#usn7],@usn6:{_usn3}[`3esn`..$#usn8]})-[@usn5{#usn7:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,#usn7:.e12[$#usn8..@usn6]}]->(`5esn` :@usn5) On Create Set [1.e1 =~$usn2,$`5esn`[`1esn`][0X0123456789ABCDEF],$0[`7esn`]].`5esn`? =@usn5[$12..\"d_str\"],_usn3+=$`1esn`[$12][Count ( * )] On Create Set {#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]}.usn1 =(#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..],Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where `7esn` Starts With 0X7 Starts With $`7esn`).`4esn` =$@usn6[..123.654],_usn4:`4esn`:@usn6 Union All With *,{_usn3}[$usn2..] As `6esn` Limit Count ( * )[{12}..{@usn5}][{#usn8}..Null] Where 0X0123456789ABCDEF[9e12] With Distinct [`1esn` In `3esn`[07..] Where @usn6[{0}..]|0.e0[12.e12]] Contains {usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF} As @usn6,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $`5esn`[$#usn7..][0xabc..]) Contains All(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}]) As #usn8 Order By {#usn8} Contains 1000 Contains $`4esn` Ascending,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Ascending Union All Create `5esn`=((#usn7 :_usn3{`2esn`})<-[@usn6?:`1esn`|:`3esn` *..0Xa{`1esn`:12 Starts With 0x0}]->(#usn7 :_usn3{`2esn`})<-[?:`1esn`|:`3esn`{#usn8:$0 Is Not Null,``:True Is Null Is Null}]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0}))"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Foreach(_usn4 In 01234567[{`7esn`}..]| Delete $0 Starts With `2esn` Delete `6esn`[{`6esn`}..],$`1esn`[`6esn`..][00..]) Foreach(@usn6 In 0[{@usn5}..][7..]| Optional Match Shortestpath(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),((`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})) Where {@usn5} =~_usn4 =~0.12) Union With 0.0 Is Not Null As `4esn` Order By $`8esn` Is Null Is Null Desc,[.e12 Ends With 1000 Ends With 010,Count(*)] Ends With {`7esn`:$_usn3 =~{_usn4} =~$`6esn`} Ends With Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]) Descending Remove {usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}.`7esn`?,Reduce(`1esn`=$`1esn`[#usn8][$@usn5],usn1 In 12.e12 In {0} In 9e1|.e12[$7..][{`6esn`}..]).`7esn`"), + octest_legacy:ct_string("Profile Remove Extract(_usn4 In `2esn` Where 123.654 Starts With $``).usn2 Unwind {`2esn`}[..{@usn6}][..1.e1] As #usn7 Return Distinct *,None(`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}])[[123.654[1e1..][{#usn8}..],$#usn7[123.654]]] As `1esn` Order By None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] Desc,Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 9e12 Is Not Null Is Not Null) Is Null Is Null Descending Skip Single(_usn3 In True[7][$999]) Is Not Null Is Not Null Limit $1000[..12.0][..0e0] Union All Match ((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]})),(((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`}))) Using Index `6esn`:`2esn`(`1esn`) Merge @usn5=Allshortestpaths(((:`2esn`)));"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Drop Constraint On()<-[`3esn`:`7esn`]-()Assert Exists((`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}})<-[_usn4{`7esn`:01234567[..9e1]}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}).@usn6?);"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Drop Constraint On(`1esn`:@usn5)Assert Extract(usn1 In 12.e12 In {0} In 9e1 Where {12}[usn2])._usn4! Is Unique;"), + octest_legacy:ct_string("Cypher 0.1000 Drop Constraint On()-[``:_usn4]->()Assert Exists([usn1 In 12.e12 In {0} In 9e1 Where $0[`7esn`]|`5esn`[0xabc..]].usn1)"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Return Distinct $1000[\"d_str\"..$999][$`3esn`..{`3esn`}] Order By (:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) Desc,{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}[Reduce(`1esn`={usn1} In Count ( * ),`` In {usn1} Ends With {`6esn`} Ends With 123456789|0[{usn2}..][usn1..])][[`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12]|{``} Starts With 123456789 Starts With usn2]] Ascending Remove {usn2:7 In 1.e1 In $usn1}.`4esn`!,All(_usn4 In 0.0[..{999}][..0.0] Where #usn8 Is Null).`8esn`? Union Start `5esn`=Node:#usn8(#usn7='s_str') ,`5esn`=Node:_usn3(_usn3='s_str')Where {#usn7}[Count ( * )..12][$`2esn`..`4esn`] Union Remove {#usn8:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]}.usn1 Detach Delete Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`])[(`3esn` :#usn7{`6esn`:{_usn4} Is Null,usn2:{`2esn`} Starts With @usn6})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`8esn`:@usn5)<-[@usn6?:`7esn`]->(:`2esn`{#usn7:#usn8 =~{999}})..Shortestpath((`8esn` {_usn4:{usn1} In Count ( * )})<-[`6esn`?]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})<-[@usn6?:`7esn`]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1}))][Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0[$#usn8...e12])..[`1esn` In $12 Is Not Null Where {usn1} In Count ( * )|$`3esn`[{``}..]]],{usn2}[`6esn`..01234567],All(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7]) Contains Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End Contains Reduce(`6esn`={_usn4} In {1000},usn1 In 12.e12 In {0} In 9e1|{`4esn`} Starts With $7 Starts With $``);"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Optional Match `7esn`=Shortestpath((((`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})-[_usn3?*..{#usn7:#usn8 =~{999},`8esn`:{_usn3}[`3esn`..$#usn8]}]->({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})-[@usn6 *07{`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}]->({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]})))),`6esn`=Shortestpath(((:#usn8{#usn8:`3esn` Is Not Null Is Not Null}))) Where $1000[{`6esn`}..] Unwind $`` Contains 1.e1 As `` With All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,1000 As `1esn`,12e12[{usn2}..][`8esn`..] Order By Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where 1.e1[12e12..{`6esn`}]|Count ( * )[..12][..{@usn6}]) Contains All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Contains Extract(_usn4 In `2esn` Where $999 Is Null) Ascending,[False Contains 0.e0 Contains Count(*)][Any(@usn5 In Null =~12e12 Where 0[`4esn`][12.e12])..[$_usn4 Is Not Null Is Not Null,`7esn` Is Not Null Is Not Null]] Descending,(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-({#usn7:#usn8 =~{999}}) In Shortestpath(((:`1esn`)<-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})-[`7esn`? *123456789..0X7{`6esn`:{0}[..{`7esn`}]}]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999}))) Desc Where `5esn`[0xabc..];"), + octest_legacy:ct_string("Cypher Drop Constraint On(`3esn`:`6esn`)Assert Reduce(@usn6=7 Contains `2esn` Contains $`8esn`,`2esn` In {999} Is Not Null|{12} Contains `7esn` Contains $_usn3).`` Is Unique"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` With Distinct *,`6esn` Contains {`1esn`} Contains 9e0,$`1esn` Is Not Null Is Not Null Order By $7 Is Not Null Descending,Single(`8esn` In $12[{7}..0X0123456789ABCDEF])[Case 9e1[123456789..] When 12 Starts With 7 Starts With $`5esn` Then {_usn3} Contains True Contains 0X7 When `1esn`[..00][..{7}] Then 1.e1[12e12..{`6esn`}] End..] Descending Limit 0x0 =~123.654 =~{999} Where 9e0 In usn1 Start @usn5=Node:_usn4(``=\"d_str\") ,@usn5=Node:`7esn`(@usn5=\"d_str\") Unwind Count(*)[..``][..#usn8] As #usn7 Union All Remove {`3esn`:#usn8 In `8esn` In 07}._usn4!,Allshortestpaths(((:`8esn`:@usn5)-[`3esn`?:`8esn`|:_usn4 *07]->(@usn5 {#usn7:$`7esn` In 12}))).`4esn`,Any(`1esn` In `3esn`[07..] Where {#usn7} In Count ( * ) In $#usn8).#usn7? Unwind {12}[$`3esn`] As `6esn` With Distinct 1.e1 =~$`1esn` As `8esn`,0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0] Union All Remove ({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[?:@usn6|`` *1000]->(:_usn4{`8esn`:12e12 Starts With `1esn` Starts With usn2})-[`2esn`:`2esn`{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})._usn3! Merge `2esn`=(:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}}) Start `8esn`=Relationship:`4esn`(``='s_str') ,`8esn`=Rel( {`7esn`})"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Merge usn2=Allshortestpaths((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}))) On Match Set @usn5 =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Foreach(#usn7 In {@usn5} =~_usn4 =~0.12| Match #usn7=Allshortestpaths((:`5esn`:@usn5{#usn8:123.654[$`1esn`..Null][1000..{_usn3}],`6esn`:12.0 =~$#usn7 =~9e12})-[`1esn`:usn2|#usn7{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})),usn1=((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})) Where .e12[$7..][{`6esn`}..]) Union Foreach(@usn6 In 1.e1[0xabc..]| Delete .e1[@usn5]['s_str'],Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..] Unwind {12}[$`3esn`] As `6esn`) Match ((()-[?:`3esn`|:@usn5 *0x0..{`3esn`:.e1[0.12],`7esn`:$123456789 Starts With .e12}]-(:`6esn`:`8esn`{@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]})-[?:usn2|#usn7]-(`1esn` {#usn7:Count ( * )[$12..]}))),((`4esn` {`1esn`:9e12 Is Not Null Is Not Null})-[?:`7esn` *999{@usn6:{``} Ends With .e12 Ends With 0.e0,`5esn`:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})) Using Scan #usn7:`3esn` With *,Case 0[{@usn5}..][7..] When {`4esn`} In _usn4 Then `1esn`[Null..] When ``[{#usn8}] Then {`4esn`} Starts With $7 Starts With $`` Else `8esn` Contains $`3esn` Contains {`4esn`} End In [{_usn4} In {1000}] In Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`4esn`} Starts With $7 Starts With $``|0Xa Contains {`7esn`} Contains $999),[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]|0[Count(*)][0e0]] Contains Extract(`` In {`1esn`} Starts With @usn6 Where .e0[..{`5esn`}][..999]|$`3esn`[..$`2esn`][..123.654]) Contains Reduce(`2esn`=$usn1[0X7],@usn5 In Null =~12e12|#usn7 =~{`4esn`} =~123456789) As usn2 Order By Single(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2])[(_usn3 {usn1:0Xa[0e0..{#usn7}],`1esn`:.e0[True..Count ( * )][#usn7..0X7]})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1})..] Descending,0.12 In 0X7 Descending Skip Count ( * )[\"d_str\"][_usn3];"), + octest_legacy:ct_string("Cypher 7.0 Unwind None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] As _usn3 Start `4esn`=Rel:`7esn`(usn2='s_str') Create Unique _usn3=(((`7esn` :#usn7{`5esn`:_usn4 Is Null Is Null})-[`2esn`:`2esn`{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})-[{``:\"d_str\"[{`8esn`}..]}]-(:`4esn`:@usn6{@usn6:Count(*)[..``][..#usn8]}))),#usn8=(((:@usn5{@usn6:{7} Contains $123456789})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})-[`3esn`:`6esn`{`3esn`}]-(#usn8 :`6esn`:`8esn`{`1esn`:9e12 Is Not Null,_usn4:0X0123456789ABCDEF[$`2esn`..][`2esn`..]})));"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Drop Constraint On(_usn4:``)Assert Exists(`4esn`(Distinct 12e12 Is Not Null,{#usn8} =~{999} =~{#usn7}).``)"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Create Constraint On(@usn6:#usn8)Assert [{1000}].#usn8? Is Unique"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Drop Constraint On(usn2:`3esn`)Assert Exists([`1esn` In 0.e0 =~`1esn` =~`6esn`].#usn7)"), + octest_legacy:ct_string("Cypher 0.1000 Create ((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})-[:`5esn`]-({`7esn`:@usn5[..$@usn5][..0Xa]})-[@usn5? *0x0..{`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}]-(_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null})) Match Shortestpath((`7esn` {`3esn`:0.0 =~12.e12 =~1.0,`1esn`:$usn1 Starts With {_usn3}})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]-({`7esn`:123.654 Ends With usn2 Ends With 0})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})) Using Scan _usn3:`4esn` Using Scan `2esn`:`1esn` Where $123456789 Starts With $123456789 Starts With Count ( * ) Load Csv With Headers From 12[12e12] As _usn4 Fieldterminator \"d_str\" Union All Foreach(`6esn` In _usn3 =~123.654| Create Unique ((`5esn` :_usn3)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})),``=(_usn4 :#usn7{`8esn`:$999 Contains {7}}) Remove (usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[`7esn`? *0X0123456789ABCDEF{@usn6:12 Starts With {_usn4} Starts With $#usn8}]-(:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}})<-[``{`3esn`:{`3esn`}[{`5esn`}]}]-({@usn5:``[{123456789}..]}).`5esn`) Merge Allshortestpaths(((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0}))) On Create Set None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]).@usn6! =0X0123456789ABCDEF[$`5esn`..],(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[_usn3?:`1esn`|:`3esn`{`3esn`:$@usn6 Contains $`7esn` Contains 1e1,@usn5:True Starts With $`4esn` Starts With 12e12}]-(`3esn` :_usn3{_usn3:{_usn3} Contains 9e0 Contains $999,`2esn`:{_usn3}[$usn2..]})<-[`3esn`?*{#usn8:$`1esn`[..{_usn3}]}]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}).`8esn`? =$12 Is Not Null Create (((_usn3 :`3esn`:`6esn`)<-[`2esn`?{``:123.654 Starts With $``,``:{``} Ends With .e12 Ends With 0.e0}]-(:_usn3{0})<-[?:#usn8|`2esn` *01..07]->(:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]}))),`4esn`=((`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}})-[_usn4?:`3esn`|:@usn5]->(`4esn` {`7esn`:12.e12 In $0 In $0,@usn5:_usn4[Count(*)]})) Union All Start @usn6=Rel:usn1(@usn6=\"d_str\") Where @usn5 Is Not Null Is Not Null Create Unique ((({usn2:$`5esn`[`4esn`][_usn3]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})-[_usn3 *..01234567$`5esn`]->({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})))"), + octest_legacy:ct_string("Cypher Create Constraint On(_usn4:#usn7)Assert Exists({`2esn`:$`7esn` In 12,`5esn`:True[..010]}.#usn8!)"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Create Unique #usn8=Shortestpath(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]}))) Union All Create ``=((`` {``:$0[..{usn2}][..$usn1]})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})) Return *,.e1 Contains $`3esn` As _usn3 Skip Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3]..`1esn`(Distinct $@usn5[`6esn`..],9e12[..0X7])][Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}))..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]})] Limit #usn7 Starts With 1000 Starts With .e1 Create Unique @usn6=(((`2esn` {_usn4:`4esn`[usn1]})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})))"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Foreach(#usn8 In $1000 =~{1000} =~`5esn`| Unwind Single(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7])[..{@usn5:_usn4[Count(*)],`6esn`:$`3esn` Contains 0 Contains 07}][..Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`])] As #usn7) Union Delete All(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $@usn6[01..@usn5][0x0..`4esn`]) Is Not Null Is Not Null,[`1esn` In $12 Is Not Null Where 07 =~@usn5][..Reduce(#usn8=``[00..$7],_usn4 In 0.0[..{999}][..0.0]|12 Starts With $#usn7)][..Filter(`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0})],0Xa In {`7esn`} Remove @usn5(Distinct 0.e0 Contains #usn7).`8esn`!,({usn2:`1esn` In 07})<-[?]-(:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01}).#usn7 Union Unwind 0.12[010..][{0}..] As #usn8 With Distinct Count ( * ) =~{`5esn`} =~{_usn4} As _usn3,Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999)[..Reduce(``={`8esn`}[True..][.e1..],#usn7 In 123.654 Starts With $``|{usn1}[$`8esn`..0.0])][..Any(`1esn` In $12 Is Not Null Where $12 Is Not Null Is Not Null)] As #usn8 Where {`3esn`} Ends With `1esn` Ends With $@usn6 Foreach(#usn8 In $usn1 =~010 =~07| Optional Match Shortestpath(({``:.e1 Contains $`3esn`})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})),Allshortestpaths((:usn1:_usn4{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[`8esn`? *999]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})) Using Scan `2esn`:@usn6)"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(_usn3:#usn7)Assert {`6esn`:_usn3 Contains .e0 Contains {usn2},_usn4:1000[$7..$123456789]}.@usn5! Is Unique"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Create Constraint On()<-[@usn6:@usn6]-()Assert Exists(Shortestpath((((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[{#usn7:'s_str'[_usn4..0x0]}]-(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})))).usn2!)"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` With Distinct *,Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF) Ends With Case {`2esn`}[..{@usn6}][..1.e1] When Null Is Null Is Null Then #usn7 Contains {`3esn`} Contains $`6esn` When 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Then $usn1[..'s_str'][..$#usn8] End Ends With Filter(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789}) As `8esn` Skip {`5esn`} Contains 's_str' Contains 9e1 Limit Shortestpath(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(:#usn8)<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})))[False..][({`1esn`:{123456789}[12..][$12..]})-[?:`1esn`|:`3esn`{@usn5:{`6esn`} Ends With 0e0 Ends With {``},@usn5:{`1esn`} Starts With `4esn` Starts With {0}}]->(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[`5esn`?:`7esn`]->({@usn5:Count ( * ) Is Null})..] Union Remove @usn5:``,Reduce(`8esn`=0.12 Contains 12.0,`8esn` In $12[{7}..0X0123456789ABCDEF]|`8esn`[..`4esn`][..$usn1]).`8esn`? With 's_str'[_usn3..] As `5esn`,{0}[False..@usn5] As `1esn` Order By {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Desc,01234567[{`7esn`}..] Descending,[{7} Contains $123456789,$``[..1.e1][..12],$`5esn`[..{`2esn`}][..{0}]] =~`3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]) =~{`6esn`:{`3esn`} Ends With `1esn` Ends With $@usn6,@usn6:$usn1 In 0.12 In $``} Descending Skip .e0[..{`5esn`}][..999] Limit {`8esn`:`2esn` Starts With `` Starts With 1e1} In [usn1 In 00 In {_usn3}] In Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) Where $123456789[..$7][..$`6esn`] Load Csv From {_usn3}[`3esn`..$#usn8] As `4esn` Fieldterminator 's_str' Union All Foreach(`` In `6esn` Starts With 123.654| Create Unique `1esn`=(({`3esn`:@usn5[12.0][{1000}]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]->(`2esn` :@usn5{`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})) Unwind Reduce(@usn6=12 Is Not Null,`` In {usn1} Ends With {`6esn`} Ends With 123456789|.e1 Ends With {7} Ends With $usn1)[Case {12} Contains `7esn` Contains $_usn3 When 0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] Then Count ( * ) Starts With 010 Starts With 0x0 When $7 Ends With 0X7 Then {#usn8}[2.12] Else $7 In 1.0 In 1e1 End..][_usn4(Distinct 0.12 Ends With {1000} Ends With `6esn`,$_usn3 =~{_usn4} =~$`6esn`)..] As _usn3) Create (`4esn` :`4esn`:@usn6)"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Optional Match Shortestpath((({``:$7[{`1esn`}]})-[`8esn`?:`5esn` *12..{#usn7:$1000 Is Not Null Is Not Null}]-(:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]}))),Allshortestpaths(()) Using Join On `1esn`,`7esn`,usn2 Using Scan `8esn`:#usn7 Where $_usn3[010..False] Union All Remove {usn2:123.654[{`7esn`}][{7}],#usn8:$0[..{usn2}][..$usn1]}.usn2? Delete {12} Contains `7esn` Contains $_usn3 Merge `1esn`=((:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn7{usn1:1.0[{999}][$999]}]->(:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})) Union Detach Delete {usn2:{`1esn`} Is Not Null} Is Null,0.0 In `6esn` In $@usn5,[{usn2}[$`4esn`]] Starts With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null]"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Remove {``:00[07..],#usn7:$`3esn` In 9e12 In ``}.usn1?,{usn2:123.654[{`7esn`}][{7}],#usn8:$0[..{usn2}][..$usn1]}.usn2? Unwind $`8esn` In 0.0 In `1esn` As `6esn` Union All Detach Delete 07 =~$`8esn` =~9e1 Return *,[#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null,{999}[9e1] As usn1 Order By {123456789} =~{@usn6} Desc,Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..] Desc,{`5esn`} Ends With \"d_str\" Desc Limit _usn4 =~0e0 Union Delete #usn7[..12e12] Foreach(`6esn` In {_usn3}[{0}]| Detach Delete 12.e12 In {0} In 9e1,$``[01],0.0 In `6esn` In $@usn5 Start @usn5=Relationship:usn2({`5esn`}) ,@usn5=Node:@usn5(\"d_str\"))"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(#usn7:`7esn`)Assert Exists([{``}[_usn4..$`1esn`],9e0[#usn8]].`7esn`!);"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Index On:`6esn`(``);"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Foreach(`` In {12} =~0.e0 =~{_usn3}| Detach Delete 12.e12 In {0} In 9e1,$``[01],0.0 In `6esn` In $@usn5 Create Unique #usn7=(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}),`6esn`=(({@usn6:Null =~12e12}))) Union All Load Csv With Headers From {`7esn`}[..9e12][..0.0] As @usn5 Fieldterminator 's_str' Remove Single(`2esn` In {999} Is Not Null Where $usn1[@usn6][#usn7]).#usn8? Return Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))) =~Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) As _usn4,7[..$`1esn`][..00],{12} Starts With #usn8 Starts With 0e0 Order By $0 Starts With `2esn` Desc,0.12 In 0X7 Descending,12.e12 In $0 In $0 Desc Limit `6esn` In Null Union Load Csv From [{`3esn`} Is Null,{@usn5} =~_usn4 =~0.12] =~Extract(_usn4 In `2esn` Where 1.0[{999}][$999]) As _usn3 Fieldterminator \"d_str\" Load Csv From {usn1} In Count ( * ) As usn1 Fieldterminator \"d_str\";"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Create Constraint On()<-[usn2:#usn7]-()Assert Exists(Single(`6esn` In 00 Where {@usn5} Starts With 1.0 Starts With 00).``)"), + octest_legacy:ct_string("Cypher 0.1000 Create (@usn5 :`8esn`:@usn5)<-[?:`1esn`|:`3esn`*]->({_usn4:{usn1} =~123.654 =~\"d_str\"}) Union With Distinct `2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] Limit `` =~`6esn` =~usn1 Where @usn5[12.0][{1000}] Optional Match (:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]}),@usn5=(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})<-[?:`6esn` *01..07]->(:usn2:`2esn`{`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})-[? *1000]->(`5esn` {usn2:$#usn7 Starts With 9e0 Starts With 2.12}) Using Index `8esn`:``(@usn5) Using Scan #usn7:_usn3 Unwind 1e1 Is Not Null Is Not Null As `6esn` Union Foreach(usn2 In {`7esn`}[..9e12][..0.0]| Load Csv From $@usn6[$0..usn1][0X0123456789ABCDEF..$999] As `1esn` Delete {@usn5}[..@usn6],0e0 Contains `3esn` Contains `7esn`,1.e1 Ends With 0 Ends With $usn1) Return *,@usn6[Count ( * )][True];"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Drop Constraint On(@usn6:@usn5)Assert Exists(Single(_usn3 In {@usn5}[..#usn7] Where `5esn`[0xabc..]).`7esn`?)"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Using Periodic Commit 7 Load Csv From .e12[..{0}][..Null] As usn1 Fieldterminator \"d_str\" Merge `1esn`=Allshortestpaths((((:`7esn`{`1esn`:{1000} In {123456789},`4esn`:010 In `1esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)))) On Create Set [`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0}|#usn8 In `8esn` In 07].`6esn`? ={#usn8} Ends With 1.0 Ends With 12.0,`4esn` =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Foreach(#usn7 In $usn1[0X7]| With 's_str'[_usn3..] As `5esn`,{0}[False..@usn5] As `1esn` Order By {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Desc,01234567[{`7esn`}..] Descending,[{7} Contains $123456789,$``[..1.e1][..12],$`5esn`[..{`2esn`}][..{0}]] =~`3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]) =~{`6esn`:{`3esn`} Ends With `1esn` Ends With $@usn6,@usn6:$usn1 In 0.12 In $``} Descending Skip .e0[..{`5esn`}][..999] Limit {`8esn`:`2esn` Starts With `` Starts With 1e1} In [usn1 In 00 In {_usn3}] In Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) Where $`6esn` Starts With 12.e12 Starts With $#usn7 With Distinct $#usn8 Is Null Is Null,Shortestpath((_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]) In Shortestpath(((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}))),{7} Is Null As `7esn` Order By [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null Asc,{@usn5} =~_usn4 =~0.12 Desc Limit #usn7 Contains {`3esn`} Contains $`6esn` Where 12e12 Ends With `6esn` Ends With {`3esn`})"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Remove Allshortestpaths((((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]})-[_usn4 *0x0..]-(:``$_usn4)))).`5esn`? Remove usn2:@usn5,Case 0.0 =~12.e12 =~1.0 When 0.e0 Ends With False Then 00[..$123456789][..$`5esn`] Else _usn3[$usn2..0] End.#usn8!,`8esn`:_usn3"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Unwind Reduce(_usn4={123456789} =~01234567 =~`3esn`,_usn3 In True[7][$999]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]) Ends With @usn5(Distinct {0} Is Null) Ends With {`6esn`:`3esn`[..{_usn4}][..{@usn5}],`2esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]} As _usn4 Remove {`8esn`:False Ends With $``}.`3esn`,Case {usn1}[$7..0x0] When {``}[010] Then True =~_usn3 =~123456789 When @usn6[$12] Then {`4esn`} Starts With $7 Starts With $`` End.`7esn`!;"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Create Constraint On()-[`6esn`:_usn4]-()Assert Exists(Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn1[0X7]|{999}[$123456789..][12..]).`4esn`?)"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Create Constraint On()-[_usn3:``]->()Assert Exists(Reduce(usn2=True[7][$999],`` In {`1esn`} Starts With @usn6|{`4esn`}[$_usn4..][9e0..]).`6esn`);"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Return Distinct `7esn` =~.e12 =~$#usn7 As `3esn`,$`8esn` Is Null Is Null As `6esn` Order By {`8esn`}[0X7][$`3esn`] Descending Skip Any(`2esn` In {999} Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e12 Is Not Null]..][$`6esn`..] Return *,{usn1} =~123.654 =~\"d_str\" Order By {`4esn`} In _usn4 Desc Limit {0}[..{`7esn`}] Union Load Csv With Headers From {7}[$_usn4..Count ( * )] As `7esn` Fieldterminator \"d_str\" Start `3esn`=Relationship:#usn8(_usn3={#usn7}) ,`3esn`=Node:``({`1esn`});"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Drop Constraint On(usn2:`2esn`)Assert Exists(None(#usn7 In 0Xa[@usn5][{`7esn`}] Where 0[`4esn`][12.e12]).`1esn`?)"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Create Shortestpath((:`2esn`{`4esn`:`3esn` Is Not Null Is Not Null})<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(usn1 {`4esn`:1.0[{999}][$999],``:9e1[9e1...e0]})),#usn7=Allshortestpaths((`6esn` {``:`4esn`[usn1]})<-[`7esn`?{_usn4:9e1 Ends With Count(*) Ends With False,#usn7:$_usn4 Ends With 0.e0 Ends With .e0}]->({`1esn`:$123456789[..$7][..$`6esn`]})-[_usn3:#usn7|`2esn`]-(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})) Union All Delete Shortestpath(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})))[[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7[`5esn`]|{_usn3}[{0}]]..],Reduce(usn1=$usn1[..'s_str'][..$#usn8],`8esn` In $12[{7}..0X0123456789ABCDEF]|.e1[0.12])[[@usn5 In Null =~12e12 Where {_usn4} In {1000}|12.e12[``..usn2][{#usn7}..@usn5]]..All(_usn3 In {@usn5}[..#usn7] Where $`2esn` Starts With {`8esn`} Starts With {usn1})],Count ( * )[\"d_str\"][_usn3] Start @usn5=Node:``(#usn7=\"d_str\") Where $`6esn` Starts With 12.e12 Starts With $#usn7 Create Unique usn2=((`4esn` :`4esn`:@usn6)<-[{``:\"d_str\"[{`8esn`}..]}]-({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})),((usn1 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}))"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create Constraint On(`8esn`:@usn5)Assert Case .e12 Ends With 1000 Ends With 010 When 's_str'[.._usn4][..``] Then Count ( * )[$12..] When {`4esn`}[{`4esn`}..999] Then 07 =~$`8esn` =~9e1 Else {`1esn`} =~{_usn4} End.`1esn`! Is Unique"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Merge Allshortestpaths(({`4esn`:#usn8 Is Null})-[:usn1{_usn4:0[{usn2}..][usn1..],`3esn`:12 Starts With 7 Starts With $`5esn`}]-(`7esn` :`3esn`:`6esn`)<-[`6esn`?:#usn8|`2esn`*..{`5esn`:@usn5 =~'s_str'}]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})) On Match Set `4esn` =Filter(_usn4 In 0.0[..{999}][..0.0] Where #usn7 =~{`4esn`} =~123456789) Is Not Null Is Not Null,_usn3 =`1esn`(Distinct $usn1 Starts With {_usn3},{#usn8}[$#usn7..]) In Shortestpath((({_usn4:0.12 Starts With 9e12 Starts With $`1esn`}))) In All(`1esn` In $12 Is Not Null Where 12.e12[{@usn5}..][9e1..]) On Create Set #usn8 =$`1esn` =~$`1esn` =~{`6esn`},`2esn` =@usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2),`6esn` =`6esn` In Null;"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Unwind `4esn`[usn1] As _usn4 Union All Foreach(`4esn` In 0.e0[12.e12]| Optional Match `5esn`=((`2esn` :`3esn`:`6esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-(:`7esn`{``:.e1 Contains $`3esn`})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`8esn`:@usn5)) Remove [`1esn` Is Null Is Null,$`3esn` Contains 0 Contains 07,0 Contains $usn2 Contains 12e12].@usn6!,(usn1 :usn2:`2esn`{`1esn`:{123456789}[12..][$12..]})<-[@usn6?:`7esn`]->(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:``{`2esn`:Null In .e0,usn1:01234567[..9e1]}).#usn8,None(#usn7 In 123.654 Starts With $`` Where .e1[@usn5]['s_str']).#usn8) Start @usn6=Rel:`2esn`(`5esn`='s_str') ,usn1=Rel(*)Where {#usn7} Contains @usn5 Contains Count ( * ) Foreach(`7esn` In $`2esn`[{usn2}]| Create Unique Allshortestpaths((_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})-[? *1000]->(`5esn` {usn2:$#usn7 Starts With 9e0 Starts With 2.12})),`1esn`=Allshortestpaths((_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}))) Union With Distinct usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3) As usn1,$999 Contains {7},\"d_str\"[..0.e0] As #usn8 Order By None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12.e12[``..usn2][{#usn7}..@usn5]) Is Null Is Null Descending Skip Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4])[Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End] Limit [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null Where $0[$1000..00][{0}..{usn1}] Merge `2esn`=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`))) On Match Set `6esn`+={`8esn`}[Null..][{`8esn`}..],_usn4+={#usn8} =~{999} =~{#usn7} On Match Set usn1 =[usn1 In 12.e12 In {0} In 9e1 Where {usn1} In Count ( * )][{_usn3:.e1 Ends With 0Xa Ends With .e1,`2esn`:12e12 Starts With `1esn` Starts With usn2}..] Remove {_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}.#usn7!,Extract(_usn3 In {@usn5}[..#usn7]).`4esn`?"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On(usn1:`7esn`)Assert Exists({``:0e0[..$@usn5][..$`8esn`],`7esn`:$#usn7 =~{12} =~False}.usn1?)"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Delete Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where 12e12 Is Not Null) Ends With Single(usn1 In 12.e12 In {0} In 9e1 Where 07 =~@usn5) Ends With [`` In {`1esn`} Starts With @usn6 Where {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]|$`` In 0 In {1000}] Union Unwind $_usn4[$`4esn`..$12] As `3esn` Load Csv With Headers From #usn8 In `8esn` In 07 As #usn7 Fieldterminator \"d_str\" Create @usn5=Allshortestpaths((@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})),(((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[{#usn7:'s_str'[_usn4..0x0]}]-(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})))"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Drop Constraint On()-[_usn4:`1esn`]->()Assert Exists(0xabc.`6esn`?);"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Unwind {#usn7}[{#usn7}..][$`4esn`..] As `6esn` Merge ((:`8esn`:@usn5{`5esn`:$`8esn`[..$999][..0],#usn7:$1000 =~{1000} =~`5esn`})) Create Shortestpath(({``:.e1 Contains $`3esn`})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})),Allshortestpaths((:usn1:_usn4{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[`8esn`? *999]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})) Union Foreach(`6esn` In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000|$@usn5 In $usn2 In {1000}) Is Not Null| Create Unique @usn6=((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})<-[``?:#usn8|`2esn`]->(:`8esn`:@usn5)<-[#usn7]-(`3esn` :#usn7)),((#usn8 :usn1:_usn4)<-[usn1:usn1{`3esn`:\"d_str\" Ends With False Ends With {@usn6},`5esn`:`4esn` Contains #usn8 Contains 7}]->(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(`2esn` :#usn8{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})) Delete Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where 1.e1[12e12..{`6esn`}]|Count ( * )[..12][..{@usn6}]) Contains All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Contains Extract(_usn4 In `2esn` Where $999 Is Null),[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]] Is Not Null,Single(_usn3 In True[7][$999]) Is Not Null Is Not Null) Merge ((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})) On Match Set Reduce(#usn8=Count ( * )[..12][..{@usn6}],`` In {`1esn`} Starts With @usn6|@usn6[{0}..]).@usn5 =$#usn7 =~{12} =~False On Match Set [`6esn` In 00 Where $`1esn`[$12][Count ( * )]].`5esn`? =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,_usn4 =Reduce(@usn5=True[7][$999],usn1 In 12.e12 In {0} In 9e1|.e12 =~$_usn4)[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])][[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]]] Union Merge @usn5=Allshortestpaths(((:`2esn`)))"), + octest_legacy:ct_string("Cypher 0.1000 Unwind 9e12 Is Not Null Is Not Null As @usn5 Create (({@usn5:``[{123456789}..]})-[`3esn`:`6esn`{`3esn`}]-({`1esn`:$123456789[..$7][..$`6esn`]})<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`)) Merge ((`5esn` :@usn6)<-[`2esn`?:@usn6|``]->(`1esn` {_usn4:{1000} Ends With {`8esn`}})<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})) On Create Set _usn4+=Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where 12e12 Is Not Null)[..Reduce(`1esn`=$`3esn` In 9e12 In ``,`2esn` In {999} Is Not Null|$@usn5[..usn2][..$#usn7])],Shortestpath(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))).`7esn`! =1e1[{_usn4}..123.654] On Match Set `1esn`+=`2esn` Starts With `` Starts With 1e1,Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End.`3esn` =$0 Ends With False Ends With $_usn4"), + octest_legacy:ct_string("Cypher Drop Constraint On(`4esn`:`7esn`)Assert Case When 0x0[{7}..] Then 1.e1 =~`2esn` Else `` Ends With $`4esn` Ends With 0X0123456789ABCDEF End.`3esn` Is Unique;"), + octest_legacy:ct_string("Cypher 999.999 Cypher Drop Constraint On(`8esn`:`6esn`)Assert Exists(None(#usn7 In 123.654 Starts With $`` Where #usn8[`7esn`..]).usn2!)"), + octest_legacy:ct_string("Cypher 7.0 Create Constraint On()-[usn2:`6esn`]->()Assert Exists([_usn3 In {`2esn`} Ends With {12} Ends With 7|Count ( * )[$12..]].`5esn`?);"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Drop Constraint On(`8esn`:`6esn`)Assert Exists(Reduce(`6esn`=`4esn`[usn1],#usn7 In 123.654 Starts With $``|$`6esn`['s_str'..][{_usn4}..]).`5esn`!);"), + octest_legacy:ct_string("Cypher Load Csv With Headers From (usn1 :`6esn`:`8esn`)<-[_usn4?:`6esn` *0xabc..7$_usn3]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}) Contains {`7esn`:{@usn5}[..#usn7],@usn6:{_usn3}[`3esn`..$#usn8]} As `8esn` Union All Remove @usn6(Distinct {@usn5}[..#usn7],0X0123456789ABCDEF[$999..][@usn5..]).`8esn`?,[usn1 Is Null Is Null].`4esn` Start ``=Relationship( {``}) ,`7esn`=Relationship(07,123456789,123456789)Where 12.e12[{@usn5}..][9e1..]"), + octest_legacy:ct_string("Cypher 0.1000 Drop Constraint On(_usn3:``)Assert Filter(_usn4 In `2esn` Where `1esn` =~1000 =~1000)._usn4! Is Unique"), + octest_legacy:ct_string("Cypher 0.1000 Create Constraint On(`4esn`:@usn5)Assert Exists(Shortestpath(((:`2esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}})<-[@usn5{`7esn`:123456789[0..]}]->(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[? *..0Xa]->(`1esn` :`4esn`:@usn6))).`5esn`);"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` With Distinct *,{`6esn`} Contains {usn2} Contains $1000 As `2esn` Order By $`5esn`[`1esn`][0X0123456789ABCDEF] Ascending,Count(*)[usn2..][$#usn8..] Asc Where 0X7 Starts With {999} Starts With 12e12 Create `7esn`=((`1esn` :#usn7)) Load Csv With Headers From {_usn3}[$usn2..] As `` Fieldterminator 's_str' Union All Unwind $0 Ends With False Ends With $_usn4 As `1esn` Merge `6esn`=Shortestpath(((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1))) Optional Match `1esn`=Allshortestpaths((((#usn7 :@usn5)<-[`4esn`?*..]-(:`4esn`:@usn6{`3esn`:123456789 Is Not Null Is Not Null})-[#usn8:`` *..0{@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})))),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` )) Where 00[..$123456789][..$`5esn`] Union All Detach Delete $1000 Is Not Null Is Not Null,$`7esn` Is Null Is Null,_usn4 Is Not Null Is Not Null;"), + octest_legacy:ct_string("Cypher 7.0 Delete `2esn` Starts With `` Starts With 1e1,$@usn6[01..@usn5][0x0..`4esn`] Create Unique #usn7=Allshortestpaths(((`5esn` :`2esn`{#usn8:True[$`7esn`..{1000}]})<-[usn1?:`6esn` *12..{`6esn`:999 Starts With $123456789 Starts With {``}}]->({_usn4}))),((:#usn7{#usn7:$`8esn` In $`2esn` In {7}}))"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Create Constraint On(@usn5:`1esn`)Assert [_usn4 In `2esn` Where {`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]].``! Is Unique;"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create Constraint On(`4esn`:usn1)Assert Exists(Case When $7 Ends With 0X7 Then Count(*)[.e12..] Else 00 Ends With `8esn` End.``?);"), + octest_legacy:ct_string("Cypher 999.999 Cypher Load Csv With Headers From None(_usn3 In {@usn5}[..#usn7] Where `2esn` Starts With `` Starts With 1e1) Contains Reduce(`1esn`={999} Ends With 123456789 Ends With {@usn5},_usn4 In 0.0[..{999}][..0.0]|$1000 =~{1000} =~`5esn`) Contains `6esn`(Distinct {1000}[{#usn8}],$#usn7[123.654]) As @usn5 Fieldterminator 's_str' Load Csv From 123456789 Starts With {999} As usn2 Union All Merge ``=(`` :``)-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(`2esn` :_usn3) Merge (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}) On Match Set `8esn` =[`` In {`1esn`} Starts With @usn6 Where 0Xa[$1000..$123456789]] Starts With (`7esn` )-[:_usn4|:usn1 *0X7..0Xa{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]}]-({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null}) Starts With Allshortestpaths((`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})),[$0[`7esn`],0.12 Contains 12.0,True Is Null Is Null].`3esn`? =`2esn` Ends With $`4esn` Ends With {#usn7}"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On()-[`8esn`:`2esn`]-()Assert Exists(Single(_usn3 In {@usn5}[..#usn7] Where 9e0 Starts With .e0 Starts With \"d_str\").#usn8!);"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Allshortestpaths((((`3esn` {`1esn`:$`6esn` Starts With 12.e12 Starts With $#usn7})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5)-[_usn4? *..010{`3esn`:$`3esn` In 9e12 In ``,@usn6:'s_str'[.._usn4][..``]}]->(:`6esn`:`8esn`{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})))) Create Shortestpath((({`2esn`:{7}[$7..],#usn7:`1esn` In 07})-[? *01..07]->({_usn4:{usn1} =~123.654 =~\"d_str\"}))),`1esn`=Allshortestpaths(((`8esn` {@usn6:12 Starts With {_usn4} Starts With $#usn8,`3esn`:.e1[@usn5]['s_str']}))) Union Delete Count(*)[.e12],All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,#usn7(01 =~$`1esn`) =~{@usn6:12.e12[$`8esn`..{`8esn`}],#usn8:#usn7 =~00} Load Csv From 9e1[$`2esn`..][`1esn`..] As `4esn` Return {1000} As `` Order By {1000}[1000][$usn1] Descending,$999[9e0..] Desc Skip Filter(`1esn` In `3esn`[07..] Where 12 Ends With 01)[..All(`3esn` In 123.654[1e1..][{#usn8}..] Where 0Xa Contains Count ( * ))]"), + octest_legacy:ct_string("Profile Unwind 9e1[9e1...e0] As #usn7 With {_usn3} Is Not Null As `` Limit $#usn7[..{`4esn`}][..9e1] Where 1e1[..01] Foreach(@usn5 In 010 In `1esn`| Start #usn7=Relationship:usn2(_usn3='s_str') Where 0x0[{999}..][{_usn4}..]) Union Start @usn5=Node:``(#usn7=\"d_str\") Where $`6esn` Starts With 12.e12 Starts With $#usn7 Detach Delete 0.e0 Ends With False"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Remove [#usn7 In 123.654 Starts With $`` Where #usn8[`7esn`..]|{_usn3}[{0}]].usn2,``(True[True..],$_usn4).`5esn`? Create Unique (`4esn` :#usn7)<-[@usn6?:usn2|#usn7]->(`1esn` )-[`6esn`?*..{`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}]->({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6}),_usn4=Allshortestpaths((_usn3 {`4esn`:`8esn` Contains 1e1,#usn7:{`2esn`}[..{@usn6}][..1.e1]})-[#usn7?:usn1 *01..07{`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}]->({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]}))"), + octest_legacy:ct_string("Cypher 7.0 Create Constraint On(`6esn`:`8esn`)Assert (`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}).`6esn`? Is Unique;"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Create Unique Allshortestpaths((@usn6 :usn1:_usn4)),(:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}) Load Csv From 0Xa In {usn1} In Null As `3esn` Fieldterminator 's_str' Union Load Csv From {1000} Ends With 0.12 As usn2 Fieldterminator \"d_str\" Union All Load Csv With Headers From Case When {1000}[{``}][999] Then `1esn` Is Null Is Null When Count(*)[.e12..] Then $#usn7[123.654] Else $1000 Starts With $`8esn` Starts With {`5esn`} End Ends With All(_usn4 In 0.0[..{999}][..0.0] Where #usn7 =~{`4esn`} =~123456789) Ends With [$#usn7 =~{12} =~False,@usn5[$12..\"d_str\"]] As `1esn` Fieldterminator \"d_str\" Create Unique ``=Allshortestpaths(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(usn1 :`8esn`:@usn5)-[? *0x0..{`6esn`:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-({`2esn`})),#usn8=Allshortestpaths((((_usn3 :`3esn`:`6esn`)<-[`2esn`?{``:123.654 Starts With $``,``:{``} Ends With .e12 Ends With 0.e0}]-(:_usn3{0})<-[?:#usn8|`2esn` *01..07]->(:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})))) Merge Shortestpath((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})<-[#usn7?:#usn8|`2esn`]-(usn2 {`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})) On Create Set Case {`2esn`} Ends With {12} Ends With 7 When `8esn` Starts With {123456789} Then {`1esn`} Is Not Null Else {usn2}[$`4esn`] End.usn2 =12[..$@usn6],`6esn`+=$7[$`3esn`],#usn7 =``[$0..][`1esn`..] On Create Set `2esn` =Count(*) Ends With 0x0 Ends With 9e0"), + octest_legacy:ct_string("Cypher 999.999 Cypher Merge ((:`5esn`:@usn5{usn1:$#usn7[`5esn`]})-[@usn5{#usn7:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,#usn7:.e12[$#usn8..@usn6]}]->(`5esn` :@usn5)<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]-({`7esn`:123.654 Ends With usn2 Ends With 0})) On Create Set #usn8+=``(#usn8 =~{999})[Single(_usn3 In {@usn5}[..#usn7])..][Case $123456789 Is Not Null When .e1[0.12] Then {@usn5}[..{12}][..0x0] When @usn5 Is Not Null Is Not Null Then \"d_str\" Ends With False Ends With {@usn6} End..] On Match Set @usn6($@usn6 Contains `7esn`).@usn5! =$`5esn` Ends With 00 Ends With #usn7,Reduce(usn2=True[7][$999],`` In {`1esn`} Starts With @usn6|{`4esn`}[$_usn4..][9e0..]).`6esn` ={`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn` Start #usn7=Node:_usn4(``=\"d_str\") ,`4esn`=Node:_usn3({123456789}) Return *,`2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}],{#usn7} Starts With `3esn` Starts With {``} As `8esn` Order By (`4esn` :`1esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]->(#usn7 )[Single(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null)] Ascending,Reduce(@usn6=@usn5[$12..\"d_str\"],`` In {`1esn`} Starts With @usn6|Count ( * ) =~{`5esn`} =~{_usn4}) Starts With None(`1esn` In $12 Is Not Null Where `7esn` Is Not Null Is Not Null) Starts With [$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null] Descending Skip ``[$0..][`1esn`..] Union All Unwind 01234567['s_str'] As usn2 Start usn1=Node:`7esn`(`5esn`={usn2}) ,_usn3=Node:`2esn`(#usn7={usn1}) Load Csv With Headers From Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Is Null Is Null As `2esn` Fieldterminator 's_str' Union All Remove `4esn`({`2esn`} Starts With @usn6,{`2esn`}[..{@usn6}][..1.e1]).`3esn`?,{`3esn`:$#usn7 =~{12} =~False,usn2:$@usn6[$`8esn`..][7..]}.@usn5? Remove Case 0x0 =~123.654 =~{999} When $7 Is Null Then {`1esn`} =~{_usn4} When {`3esn`}[{`5esn`}] Then usn1 Contains $7 Contains $`` End.usn2,None(#usn7 In 123.654 Starts With $`` Where $999 In 999).`5esn`!,({_usn4:{usn1} =~123.654 =~\"d_str\"})-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}}).`8esn`?"), + octest_legacy:ct_string("Cypher 0.1000 Using Periodic Commit 07 Load Csv With Headers From All(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[{#usn7:Count ( * )[$12..]}..][`5esn`(Distinct False Starts With 010)..] As @usn5 Fieldterminator 's_str' Remove (:`7esn`{999})<-[:`6esn`{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},`6esn`:``[..$#usn7]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]})<-[:`1esn`|:`3esn` *1000]->(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0}).`2esn`! Merge `7esn`=Allshortestpaths((#usn7 {``:0x0 =~123.654 =~{999}})) On Match Set `3esn`+=$`5esn`[$#usn7..][0xabc..],`4esn`+=$#usn7 =~9e1 =~$_usn4,`3esn`+=#usn8 =~`7esn`;"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Create Unique #usn7=Allshortestpaths(((:`6esn`:`8esn`))),usn1=Allshortestpaths(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))) Union Return *,(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As #usn7,.e1 Ends With 0Xa Ends With 00 As _usn3 Detach Delete Count(*)[010..][#usn7..],usn2[..`1esn`],1.e1 =~$usn2;"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Create Constraint On()-[@usn5:_usn3]->()Assert Exists({`1esn`:$123456789[..$7][..$`6esn`]}.`4esn`?)"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On(``:`8esn`)Assert Exists(Filter(_usn4 In 0.0[..{999}][..0.0] Where {999}[$123456789..][12..]).`2esn`!)"), + octest_legacy:ct_string("Cypher Foreach(_usn3 In {12} =~0.e0 =~{_usn3}| Optional Match (usn2 :`5esn`:@usn5)-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]}) Create Unique `5esn`=(`8esn` :`5esn`:@usn5)-[`5esn`?:usn2|#usn7]->(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )}));"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Create Unique (_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0}),`5esn`=Shortestpath(((#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null})<-[?:#usn7|`2esn`{@usn5:$0 Is Not Null}]-(`` {``:0x0 =~123.654 =~{999}}))) Merge Shortestpath((_usn4 :#usn7{`8esn`:$999 Contains {7}})) Union Create usn1=Allshortestpaths((`2esn` :#usn8{@usn6:`7esn` Ends With $_usn3 Ends With usn2,_usn4:{12} Starts With #usn8 Starts With 0e0})<-[:`6esn`{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},`6esn`:``[..$#usn7]}]->({_usn4:False[0Xa..$usn1]})),#usn7=Allshortestpaths((({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True}))) Create Unique `8esn`=(((`4esn` :usn2:`2esn`)-[`8esn`?:`4esn`|:#usn7]->({`3esn`:12 Starts With 0x0,`8esn`:0X7[0.e0][{`4esn`}]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})));"), + octest_legacy:ct_string("Profile Drop Constraint On()-[@usn6:`3esn`]->()Assert Exists({_usn3:0Xa Contains {`7esn`} Contains $999}.usn1!);"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Create Constraint On(`3esn`:`1esn`)Assert Exists(00.`2esn`)"), + octest_legacy:ct_string("Profile Drop Constraint On(`6esn`:`3esn`)Assert [{``}[_usn4..$`1esn`],9e0[#usn8]].`7esn`! Is Unique"), + octest_legacy:ct_string("Cypher 0.1000 Return Distinct Count(*) Is Not Null,{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] Skip Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123456789 Is Not Null Is Not Null)[Allshortestpaths((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}))..Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12 Starts With {_usn4} Starts With $#usn8)][Case When 01 =~$`1esn` Then {@usn5}[Count(*)..] End..count(Distinct 07 =~@usn5)] Create Unique Shortestpath((((`2esn` {@usn6:True Is Null Is Null})-[`5esn` *0x0..]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]})-[?:`7esn`]->(#usn7 :@usn6)))),`2esn`=((@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]})) Union With Distinct `2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] Limit `` =~`6esn` =~usn1 Where 123.654[{`7esn`}][{7}] Remove `8esn`(9e1 =~999,{``} Is Null Is Null).`3esn`! Merge usn2=Shortestpath(((:@usn5{`3esn`:@usn5 =~'s_str',`1esn`:$`7esn` Contains {`1esn`} Contains 9e12}))) Union All Load Csv With Headers From 00[0.12..] As `2esn` Match _usn3=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`)))"), + octest_legacy:ct_string("Cypher 999.999 Cypher Create Constraint On(_usn4:_usn3)Assert Reduce(``={999} Is Null,_usn4 In 0.0[..{999}][..0.0]|\"d_str\" Ends With False Ends With {@usn6}).`1esn` Is Unique"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Load Csv From 123456789[12..$`4esn`] As _usn3 "), + octest_legacy:ct_string("Explain Profile Load Csv With Headers From Count ( * )[$1000..] As @usn5 Remove Filter(`` In {`1esn`} Starts With @usn6 Where $`5esn`[`1esn`][0X0123456789ABCDEF]).@usn6?,Single(_usn4 In `2esn` Where ``[00..$7]).``?,Any(`5esn` In $`2esn`[12.e12][$@usn5] Where `6esn`[{`6esn`}..]).`7esn`! Union Create Allshortestpaths(((@usn6 :`2esn`))),#usn7=(($`5esn`))"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Return *,None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12.e12[``..usn2][{#usn7}..@usn5]) In usn1({`1esn`} Starts With @usn6),$`8esn`[0e0..] As @usn5 Limit 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF;"), + octest_legacy:ct_string("Cypher 999.999 Cypher Remove Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 123456789 Is Not Null Is Not Null).`2esn`!,(usn1 {usn2:#usn8 =~{_usn3} =~``})-[?{`2esn`:0X0123456789ABCDEF[9e12],`7esn`:{`4esn`}[..07][..$`6esn`]}]->(`1esn` {@usn5:$usn1 In 0.12 In $``}).`6esn`!,Shortestpath((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]})).`1esn`? Union All Create Unique (@usn5 :`8esn`:@usn5)<-[?:`1esn`|:`3esn`*]->({_usn4:{usn1} =~123.654 =~\"d_str\"}) Merge ((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`)) On Match Set @usn5 =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) With [`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]][..Reduce(`4esn`=@usn5[12.0][{1000}],_usn4 In `2esn`|0[$`6esn`...e1][`1esn`..$`7esn`])][..[7[010][00],$7[$`3esn`],#usn7 =~{`4esn`} =~123456789]],$1000[..12.0][..0e0] Where $12 Contains 0Xa Union All Detach Delete Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))) =~Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}),{7} Starts With $usn1 Starts With 1.0"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On()-[@usn6:@usn5]-()Assert Exists(Reduce(_usn3=$`1esn` Is Not Null Is Not Null,`8esn` In $12[{7}..0X0123456789ABCDEF]|$`4esn` Starts With 0e0).`4esn`?);"), + octest_legacy:ct_string("Cypher 7.0 Create Constraint On()<-[@usn5:@usn5]-()Assert Exists(Extract(#usn7 In 123.654 Starts With $`` Where 12.e12[`7esn`]).@usn5)"), + octest_legacy:ct_string("Cypher 0.1000 Remove Extract(_usn4 In `2esn` Where 1.0[{999}][$999]|`4esn`[usn1]).#usn7! Union All Foreach(`8esn` In Shortestpath(((:@usn6{usn2:{#usn8}[12.0][$@usn6]})<-[{_usn4:{1000} Ends With {`8esn`}}]-(@usn5 :`7esn`{_usn3:{``}[_usn4..$`1esn`]})<-[#usn8? *..0Xa{`4esn`:$`2esn` Ends With 0.12 Ends With .e1,`4esn`:07 =~@usn5}]-(:`3esn`:`6esn`{999})))[..Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where Count(*) Ends With 123.654 Ends With $12|0Xa[$1000..$123456789])][..{@usn6:12 Starts With {_usn4} Starts With $#usn8}]| Match _usn3=(@usn6 :@usn6),usn2=((_usn4 :#usn7{`8esn`:$999 Contains {7}})<-[`4esn`:`4esn`|:#usn7{`2esn`:{`4esn`}[$_usn4..][9e0..]}]-(`6esn` )) Using Index `3esn`:#usn7(usn2))"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Create Constraint On(_usn4:#usn7)Assert `6esn`(Distinct 12 Starts With $#usn7,12e12 Ends With `4esn` Ends With 123456789).usn2? Is Unique"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(#usn8:`7esn`)Assert Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where False Contains 0.e0 Contains Count(*)).usn1! Is Unique;"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Foreach(`6esn` In `8esn` Contains 1e1| Detach Delete usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3),Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])) Load Csv From None(`1esn` In $12 Is Not Null Where Null Is Null Is Null) Contains $`6esn` Contains exists(Distinct {`3esn`} Is Null) As `2esn` Union Foreach(@usn6 In 's_str'[$usn2][Count(*)]| With Distinct {_usn3} Is Not Null As `4esn`,Case 00 Starts With $`6esn` When $@usn5 In 's_str' In $12 Then Count(*)[010..][#usn7..] When Count ( * )[Count ( * )][12] Then True[7][$999] Else `4esn` Contains #usn8 Contains 7 End =~Allshortestpaths(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]}))) As `4esn` Limit Shortestpath((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})-[`7esn`?:`6esn`]->(`1esn` :_usn4)-[#usn8:_usn3|`8esn`{`6esn`:`5esn` Is Null Is Null}]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))[Extract(`1esn` In `3esn`[07..] Where 999 Starts With 's_str')][Case `8esn` Contains $`3esn` Contains {`4esn`} When 9e1 Ends With $@usn5 Ends With $123456789 Then usn2[True] When 0.e0 =~`1esn` =~`6esn` Then usn2 =~0X7 =~{#usn7} Else 1.e1[..12.e12][..$usn2] End] Where {123456789} =~01234567 =~`3esn` Create Unique _usn4=Allshortestpaths(((`` {`1esn`:{@usn5}[1e1..][9e1..],`2esn`:$`7esn` Contains {`1esn`} Contains 9e12})<-[`3esn`? *0x0..{_usn3:0.0[9e1..][Null..],#usn7:{`3esn`} Is Not Null Is Not Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-(`3esn` :`6esn`:`8esn`{`8esn`:{``} Is Null Is Null,`3esn`:123456789 Is Not Null Is Not Null}))),``=Shortestpath((`7esn` :`5esn`:@usn5{`2esn`:12 Starts With $#usn7})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(`4esn` :_usn4{`2esn`:#usn7 =~00}))) Foreach(@usn5 In 7[010][00]| With .e0 =~{`8esn`} =~$999 As #usn7,$12 Is Not Null As `7esn`,{``} Is Null Is Null Limit All(_usn3 In {@usn5}[..#usn7] Where $`2esn` Starts With {`8esn`} Starts With {usn1}) Starts With {usn2:{`1esn`} Is Not Null} Delete Case $1000[..12.0][..0e0] When `3esn` Is Not Null Is Not Null Then 12.e12[{7}..7] When Count(*) In {``} Then 12[..$@usn6] End[..All(#usn7 In 0Xa[@usn5][{`7esn`}] Where 1e1[1.e1..][123.654..])][..[0.0 =~12.e12 =~1.0,$`7esn` Is Null Is Null,``[..$#usn7]]],0xabc Contains {1000}) With 0x0[{999}..][{_usn4}..] As `6esn`,{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}[Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))..] As `6esn`,Case When $`6esn` Starts With 12.e12 Starts With $#usn7 Then #usn8[`7esn`..] When {`4esn`}[$123456789..] Then {_usn3} Contains 9e0 Contains $999 End As @usn6 Order By {@usn5} Ascending,Reduce(@usn5=$`8esn`[..$999][..0],`` In {`1esn`} Starts With @usn6|{@usn6} Contains 123.654 Contains 01) Contains [`1esn` In `3esn`[07..] Where {0} =~12.0] Contains (:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[`3esn`:_usn3|`8esn`]->(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null}) Descending,1000 Is Not Null Desc Skip Allshortestpaths(((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))) Starts With (`1esn` :_usn3{`5esn`:{`8esn`}[..$`6esn`][..123.654],`1esn`:1000 Starts With `7esn`})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Extract(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) Union Foreach(`6esn` In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000|$@usn5 In $usn2 In {1000}) Is Not Null| Create Unique @usn6=((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})<-[``?:#usn8|`2esn`]->(:`8esn`:@usn5)<-[#usn7]-(`3esn` :#usn7)),((#usn8 :usn1:_usn4)<-[usn1:usn1{`3esn`:\"d_str\" Ends With False Ends With {@usn6},`5esn`:`4esn` Contains #usn8 Contains 7}]->(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(`2esn` :#usn8{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})) Delete Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where 1.e1[12e12..{`6esn`}]|Count ( * )[..12][..{@usn6}]) Contains All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Contains Extract(_usn4 In `2esn` Where $999 Is Null),[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]] Is Not Null,Single(_usn3 In True[7][$999]) Is Not Null Is Not Null) Merge ((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})) On Match Set Reduce(#usn8=Count ( * )[..12][..{@usn6}],`` In {`1esn`} Starts With @usn6|@usn6[{0}..]).@usn5 =$#usn7 =~{12} =~False On Match Set [`6esn` In 00 Where $`1esn`[$12][Count ( * )]].`5esn`? =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,_usn4 =Reduce(@usn5=True[7][$999],usn1 In 12.e12 In {0} In 9e1|.e12 =~$_usn4)[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])][[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]]];"), + octest_legacy:ct_string("Cypher Drop Constraint On()-[`8esn`:`3esn`]->()Assert Exists(All(usn1 In 12.e12 In {0} In 9e1 Where {12} Contains `7esn` Contains $_usn3).`5esn`?)"), + octest_legacy:ct_string("Explain Profile With Distinct *,$`1esn` Ends With {`7esn`} Ends With $_usn3 As `7esn`,{1000} As `` Load Csv With Headers From 01234567[{`7esn`}..] As `7esn` Fieldterminator \"d_str\" Union Optional Match `5esn`=(`8esn` :`5esn`:@usn5)-[`5esn`?:usn2|#usn7]->(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )}) Using Join On `4esn` Using Join On `1esn`,`7esn`,usn2 Where 00 With `7esn`[{usn1}][999] As `7esn`,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..]) Starts With [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]|Count ( * )[..12][..{@usn6}]] Starts With Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where True Starts With $`2esn` Starts With {@usn6}) Order By @usn5 =~$`3esn` =~0X7 Descending Skip {usn1}[01..7][{`3esn`}..`6esn`] Start `2esn`=Rel:usn2(`2esn`={`7esn`}) ,`1esn`=Relationship( {@usn6})Where {`7esn`} Is Not Null Is Not Null;"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Foreach(`` In 0X7[0X7..][Count ( * )..]| Unwind [`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*)] Starts With (`5esn` :`7esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`}) Starts With `6esn`(Distinct 12.e12[``..usn2][{#usn7}..@usn5],$`7esn` In 12) As @usn5) Delete True[7][$999],Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]}))) With *,(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As #usn7 Union All Create Unique `1esn`=Allshortestpaths((((#usn7 :@usn5)<-[`4esn`?*..]-(:`4esn`:@usn6{`3esn`:123456789 Is Not Null Is Not Null})-[#usn8:`` *..0{@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})))),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` )) Create `2esn`=Allshortestpaths((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})))"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create Constraint On(#usn7:usn2)Assert [{``} Starts With 123456789 Starts With usn2].#usn7! Is Unique"), + octest_legacy:ct_string("Cypher Create Constraint On(#usn8:_usn4)Assert Any(usn1 In 12.e12 In {0} In 9e1 Where 123.654[$`1esn`..Null][1000..{_usn3}]).`6esn`! Is Unique;"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Foreach(@usn6 In {999} Ends With 123456789 Ends With {@usn5}| Return Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))) =~Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) As _usn4,7[..$`1esn`][..00],{12} Starts With #usn8 Starts With 0e0 Order By $0 Starts With `2esn` Desc,0.12 In 0X7 Descending,12.e12 In $0 In $0 Desc Limit `6esn` In Null) Remove All(`1esn` In $12 Is Not Null Where {usn1} In Count ( * )).usn1,Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where _usn3[\"d_str\"]|$_usn4 Is Not Null Is Not Null).`1esn`? Foreach(`6esn` In _usn3 =~123.654| Create Unique ((`5esn` :_usn3)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})),``=(_usn4 :#usn7{`8esn`:$999 Contains {7}}) Remove (usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[`7esn`? *0X0123456789ABCDEF{@usn6:12 Starts With {_usn4} Starts With $#usn8}]-(:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}})<-[``{`3esn`:{`3esn`}[{`5esn`}]}]-({@usn5:``[{123456789}..]}).`5esn`) Union Optional Match ((@usn6 :#usn7{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})<-[?:#usn7|`2esn` *0x0..]->({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})),`5esn`=Allshortestpaths(((`` {``:$0[..{usn2}][..$usn1]}))) Where {@usn5}[12.0..1000][{`3esn`}..{7}] Foreach(`` In Reduce(usn2={`6esn`}[..{`2esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|1e1[..01]) Is Not Null Is Not Null| Load Csv From 0.0 Is Not Null As `5esn` Remove {_usn4:{1000} Ends With {`8esn`}}.usn1) With *,9e12[{123456789}..][$`2esn`..] As `2esn` Skip 9e12 Is Null Is Null Where 00 Union All Start `7esn`=Rel:`4esn`(#usn7={@usn5}) ,_usn3=Relationship:usn1('s_str')"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Using Periodic Commit 12 Load Csv From (`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->({_usn3})[Reduce(usn1=0x0[$`8esn`.._usn3],_usn4 In `2esn`|{123456789} Is Not Null)..Reduce(usn1=12.0[2.12..][{`5esn`}..],_usn3 In {@usn5}[..#usn7]|1000[$7..$123456789])][[_usn4 In `2esn` Where 9e12 Ends With 123456789|07 =~$`8esn` =~9e1]..(:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->()] As @usn5 ;"), + octest_legacy:ct_string("Explain Profile Drop Constraint On(`1esn`:`2esn`)Assert [07 =~$`8esn` =~9e1].usn1 Is Unique;"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On()-[usn1:@usn6]-()Assert Exists(Reduce(``=1000,_usn4 In 0.0[..{999}][..0.0]|{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]).`6esn`)"), + octest_legacy:ct_string("Cypher Using Periodic Commit 07 Load Csv From {12}[999][{_usn3}] As usn2 With $999[07..{#usn7}][1e1..0xabc] As #usn8,{1000}[{#usn8}] As `2esn` Skip `3esn` Contains $`6esn` Contains `8esn` Where 0.e0 =~`1esn` =~`6esn`;"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Merge ((`8esn` :`8esn`:@usn5)<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})) On Create Set Filter(`1esn` In `3esn`[07..] Where 9e12 Is Not Null).@usn5! =07 =~$`8esn` =~9e1,`4esn` =Reduce(usn1=$#usn7 Ends With 0.12 Ends With {@usn6},_usn3 In {`2esn`} Ends With {12} Ends With 7|{0} Is Null) Is Not Null Is Not Null On Match Set Reduce(`3esn`={123456789}[12..][$12..],#usn7 In 0Xa[@usn5][{`7esn`}]|123.654[$`1esn`..Null][1000..{_usn3}]).`8esn`? =#usn8 =~{999},`5esn`+=`6esn`[$0][#usn8] Remove [{_usn3}[$usn2..],`5esn` Is Null Is Null,0.12 Contains 12.0].`3esn`,Shortestpath((@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})).``! Union All Detach Delete 123.654 Ends With usn2 Ends With 0,{usn1} In Count ( * ),0x0[{999}..`1esn`][0Xa..False] Start `5esn`=Rel( {_usn4}) Union All Start `7esn`=Node:`2esn`(#usn7={usn1}) ,usn2=Rel:`5esn`(\"d_str\")Where Null =~12e12 Load Csv From [1.e1 =~$usn2,@usn6[{0}..],@usn5[12.0][{1000}]][@usn6()..Case {@usn5}[..@usn6] When $`2esn` Starts With {`8esn`} Starts With {usn1} Then {``} Is Null Is Null Else 123456789 Ends With usn1 Ends With usn2 End] As `` "), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` With #usn8 Is Not Null As #usn8 Order By {`3esn`} Is Null Descending,[{0}[False..@usn5]] Starts With {`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]} Starts With Shortestpath((:_usn3{0})-[usn2 *12..]->(:``)) Ascending,{`2esn`}[Count(*)] Descending Where 0.12 Ends With {1000} Ends With `6esn` Start usn1=Node:_usn4({`8esn`}) ,_usn3=Relationship:usn1('s_str') Union Optional Match @usn6=(`2esn` :`3esn`:`6esn`),`8esn`=(@usn6 :`6esn`:`8esn`)<-[_usn4?:`7esn`{``:{_usn3} Contains $`1esn` Contains 12.0}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}) Using Join On _usn4,_usn4,@usn6 Where 0.12 Starts With 9e12 Starts With $`1esn` Remove (:`3esn`:`6esn`{usn1:{usn2} =~@usn6 =~{`4esn`},usn1:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})<-[_usn3?*]-(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}).`4esn`?,Reduce(usn2=.e1[..\"d_str\"],#usn7 In 123.654 Starts With $``|0Xa[$1000..$123456789]).`8esn`? Union All Remove [_usn3 In {@usn5}[..#usn7] Where True Is Null Is Null|Count(*) Ends With $`` Ends With {7}].`3esn`?,{@usn5:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12],@usn6:Count(*)[.e12..]}.`2esn`?;"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Drop Constraint On(`8esn`:`3esn`)Assert Case usn2 =~0X7 =~{#usn7} When $123456789 Is Not Null Then 1.e1[{#usn8}] When 12 Ends With 01 Then $#usn7[123.654] End.`1esn`! Is Unique"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Load Csv From {`7esn`} Ends With `` Ends With {`8esn`} As `3esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Create Constraint On(`7esn`:`2esn`)Assert Exists(#usn8(Distinct).`8esn`!)"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` With Distinct $usn2[..9e0],{12}[010..{1000}][1e1...e1] Where 12e12 Is Not Null Is Not Null Merge @usn6=Shortestpath((:``{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})-[?:`4esn`|:#usn7]->(`1esn` :@usn6)<-[`1esn`?]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})) On Match Set `5esn` =Filter(`5esn` In $`2esn`[12.e12][$@usn5] Where 's_str'[.._usn4][..``]),{usn2:{`6esn`} Ends With 0e0 Ends With {``}}.``? =`7esn`[{7}..@usn5],`3esn`+={#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null Create (`3esn` :`1esn`)-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]}),`1esn`=Allshortestpaths((usn2 :`5esn`:@usn5)) Union Create Allshortestpaths((`4esn` :usn2:`2esn`)<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})-[{#usn7:'s_str'[_usn4..0x0]}]-(`8esn` {@usn6:12 Starts With {_usn4} Starts With $#usn8,`3esn`:.e1[@usn5]['s_str']})) Optional Match Allshortestpaths(((`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999}))) Using Scan `4esn`:`` Using Join On `8esn`,#usn8 Unwind 1.e1 Ends With 0 Ends With $usn1 As `7esn` Union All Remove Reduce(usn2={`4esn`} In _usn4,usn1 In 12.e12 In {0} In 9e1|7 In 1.e1 In $usn1).@usn6? Remove {_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}.#usn7!,Extract(_usn3 In {@usn5}[..#usn7]).`4esn`?"), + octest_legacy:ct_string("Profile Create Constraint On(`1esn`:`8esn`)Assert Extract(`1esn` In `3esn`[07..] Where 12 Ends With 01|{#usn7}[Count ( * )..12][$`2esn`..`4esn`]).usn1? Is Unique"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On()<-[_usn3:#usn7]-()Assert Exists(({usn1:{123456789} =~01234567 =~`3esn`})-[_usn3:#usn7|`2esn`]-(_usn3 :#usn8).`5esn`!)"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On()<-[`4esn`:@usn5]-()Assert Exists(#usn7(``[$0..][`1esn`..],{7} Starts With $usn1 Starts With 1.0).usn1?)"), + octest_legacy:ct_string("Explain Profile Create Unique ((`7esn` {`4esn`:#usn8 =~{999},`2esn`:9e1 =~`` =~{`7esn`}})) Match #usn8=Allshortestpaths((({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))),@usn6=((usn2 :_usn3)-[`8esn`?{@usn5:Null Is Null Is Null}]->({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})-[_usn3 *..01234567$`5esn`]->({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})) Using Join On `5esn`,``,usn1 Using Join On #usn8,usn2,#usn7 Where 0X7[0X7..][Count ( * )..];"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Start `8esn`=Relationship:`7esn`({usn1}) ,@usn6=Node:`1esn`(\"d_str\")Where @usn6[$_usn4];"), + octest_legacy:ct_string("Cypher 7.0 Optional Match ((#usn8 :@usn5)<-[_usn3{@usn6:{7} Contains $123456789}]->(:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1})),`2esn`=Allshortestpaths((usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})-[`1esn`:`1esn`|:`3esn` *01..07{`3esn`:123456789 Is Not Null Is Not Null}]-(`1esn` {@usn5:$usn1 In 0.12 In $``})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]-(:usn1:_usn4{`4esn`:01234567 In $123456789})) Where #usn8[$0..False][$`1esn`..$#usn7] Start ``=Relationship:#usn7(_usn3=\"d_str\") ,@usn5=Relationship:`8esn`(usn1={1000}) Union Unwind 0e0 Starts With $@usn6 Starts With $`6esn` As _usn4 Union Create @usn6=Allshortestpaths((({#usn7:123456789[0..]}))),((`` :`6esn`:`8esn`)<-[`4esn`?{usn2:{#usn8}[$#usn7..],@usn5:{@usn5}[..@usn6]}]-(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]})<-[{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]}]-(`` :`4esn`:@usn6{``:.e12 =~$_usn4})) Foreach(#usn7 In $usn1[0X7]| With 's_str'[_usn3..] As `5esn`,{0}[False..@usn5] As `1esn` Order By {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Desc,01234567[{`7esn`}..] Descending,[{7} Contains $123456789,$``[..1.e1][..12],$`5esn`[..{`2esn`}][..{0}]] =~`3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]) =~{`6esn`:{`3esn`} Ends With `1esn` Ends With $@usn6,@usn6:$usn1 In 0.12 In $``} Descending Skip .e0[..{`5esn`}][..999] Limit {`8esn`:`2esn` Starts With `` Starts With 1e1} In [usn1 In 00 In {_usn3}] In Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) Where $`6esn` Starts With 12.e12 Starts With $#usn7 With Distinct $#usn8 Is Null Is Null,Shortestpath((_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]) In Shortestpath(((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}))),{7} Is Null As `7esn` Order By [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null Asc,{@usn5} =~_usn4 =~0.12 Desc Limit #usn7 Contains {`3esn`} Contains $`6esn` Where 12e12 Ends With `6esn` Ends With {`3esn`});"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Create Constraint On(`6esn`:_usn4)Assert Exists(Allshortestpaths(((`4esn` :`1esn`)-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6}))).`2esn`)"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Drop Constraint On()<-[usn1:``]-()Assert Exists(Reduce(`5esn`=$123456789[$`5esn`][$_usn4],`` In {`1esn`} Starts With @usn6|1e1 Contains usn2).#usn7)"), + octest_legacy:ct_string("Cypher 999.999 Cypher Create Constraint On()-[@usn6:usn2]->()Assert Exists(Reduce(#usn8=$@usn6[$0..usn1][0X0123456789ABCDEF..$999],`8esn` In $12[{7}..0X0123456789ABCDEF]|$`` Starts With 12 Starts With $usn2).usn2!)"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(_usn3:`8esn`)Assert Allshortestpaths((_usn3 :_usn3)-[?:#usn7|`2esn` *0x0..]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->(:`6esn`:`8esn`$usn2))._usn4! Is Unique;"), + octest_legacy:ct_string("Profile Create Constraint On()-[``:`1esn`]->()Assert Exists(Reduce(@usn5=$usn1 =~010 =~07,_usn4 In 0.0[..{999}][..0.0]|01234567[$7..{12}]).usn1!);"), + octest_legacy:ct_string("Explain Profile Optional Match #usn7=Allshortestpaths((:`5esn`:@usn5{#usn8:123.654[$`1esn`..Null][1000..{_usn3}],`6esn`:12.0 =~$#usn7 =~9e12})-[`1esn`:usn2|#usn7{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})),(({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]})) Using Scan _usn4:_usn3 Using Index usn1:@usn5(`7esn`);"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Merge `7esn`=Allshortestpaths(((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1))) On Create Set `8esn`+=Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where 1.e1[12e12..{`6esn`}]|Count ( * )[..12][..{@usn6}]) Contains All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Contains Extract(_usn4 In `2esn` Where $999 Is Null),`8esn` ={#usn7} Starts With `3esn` Starts With {``},Single(_usn4 In 0.0[..{999}][..0.0] Where Count(*) In {``}).`1esn`! =0X0123456789ABCDEF =~@usn6 =~{0} Return *,Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6) Starts With [$_usn3[010..False],$123456789 =~`4esn`,$usn1[$123456789..0][{`1esn`}..12.0]] As `8esn`,12 Starts With 0x0 As `2esn` Order By All(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[{#usn7:Count ( * )[$12..]}..][`5esn`(Distinct False Starts With 010)..] Asc,All(usn1 In 12.e12 In {0} In 9e1)[[`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]|12.e12[$`8esn`..{`8esn`}]]..] Asc Limit 0Xa[07..] Union Load Csv From _usn4($123456789 =~`4esn`)[None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where Count(*) In {``})..][Any(`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7})..] As `3esn` Optional Match #usn7=Allshortestpaths(((:`5esn`:@usn5))),(((`5esn` :@usn6)<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5)<-[ *123456789..0X7]-(:`7esn`{``:.e1 Contains $`3esn`}))) Using Scan usn1:`1esn` Foreach(usn2 In $@usn6[$0..usn1][0X0123456789ABCDEF..$999]| With Distinct *,{@usn6} Is Not Null As `7esn` Order By usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3) Ascending,.e1 =~$`5esn` Desc,Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000|$@usn5 In $usn2 In {1000}) Is Not Null Ascending Skip #usn7[00] Limit $`7esn` Is Null Is Null)"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Create `1esn`=Allshortestpaths((((:`7esn`{`1esn`:{1000} In {123456789},`4esn`:010 In `1esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)))),Shortestpath((`6esn` :`2esn`{`7esn`:#usn8 =~{999}})) Detach Delete {123456789}[{12}..],9e0 =~0.0 =~$`5esn` Foreach(`1esn` In Case 0Xa[.._usn3][..$`6esn`] When {`4esn`}[$123456789..] Then {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] When {usn2}[$`4esn`] Then $1000 Starts With $`8esn` Starts With {`5esn`} Else @usn6[$_usn4] End[(`8esn` :`2esn`)-[`8esn`]->(`8esn` :`8esn`:@usn5)..]| Create Unique @usn6=(_usn3 {`4esn`:`8esn` Contains 1e1,#usn7:{`2esn`}[..{@usn6}][..1.e1]})-[#usn7?:usn1 *01..07{`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}]->({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]}),`7esn`=(((`5esn` :@usn6)<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5)<-[ *123456789..0X7]-(:`7esn`{``:.e1 Contains $`3esn`})))) Union Foreach(usn2 In {_usn3} Contains 9e0 Contains $999| With Distinct *,All(usn1 In 12.e12 In {0} In 9e1 Where {12}[usn2])[Reduce(``=$@usn5[..usn2][..$#usn7],`6esn` In Count(*) Ends With $`` Ends With {7}|{`4esn`}[$123456789..])..][{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]}..],$`2esn` Is Null Is Null Where _usn4[Count(*)] Create (`2esn` {@usn6:True Is Null Is Null})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)-[_usn3?:@usn6|`` *0x0..{`3esn`}]->(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}})) Unwind [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]][Shortestpath(((`1esn` :`7esn`)<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})))..] As #usn8 Start `8esn`=Rel( {`7esn`}) ,`3esn`=Node:`2esn`(@usn6={`4esn`})Where 07 Is Null Union Remove {@usn6:.e12 Is Null Is Null}.``?,Shortestpath((:_usn3{@usn5:.e1[..\"d_str\"],#usn8:{`1esn`}[`6esn`..12e12]})<-[`7esn`?*..]-(usn1 :`1esn`{#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]})).@usn5? Create Unique `2esn`=(`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4),`5esn`=(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}});"), + octest_legacy:ct_string("Cypher 0.1000 Start usn1=Node:#usn8(#usn8={``}) Foreach(`6esn` In #usn8 Is Not Null| Load Csv From 12.e12[$`4esn`..] As usn1 );"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Using Periodic Commit 123456789 Load Csv With Headers From $usn1 =~010 =~07 As _usn4 Create usn1=(({`7esn`:123456789[0..]})),`4esn`=Shortestpath((usn2 {_usn3:$0 In _usn4})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[{`2esn`:1000 Is Null Is Null}]->(:_usn4{`4esn`:`8esn` Contains $`3esn` Contains {`4esn`},_usn3:$12[{7}..0X0123456789ABCDEF]}));"), + octest_legacy:ct_string("Cypher 999.999 Cypher Create Constraint On(`5esn`:#usn7)Assert [`5esn` In $`2esn`[12.e12][$@usn5] Where `6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]].`3esn`! Is Unique"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Create Constraint On(`6esn`:``)Assert Exists(Single(#usn7 In 0Xa[@usn5][{`7esn`}] Where 12[..$@usn6]).`3esn`?)"), + octest_legacy:ct_string("Cypher 0.1000 Unwind Filter(`1esn` In $12 Is Not Null Where Count(*)[..``][..#usn8]) Ends With Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}]) Ends With {`2esn`:usn1 Is Null Is Null,usn2:0.e0 =~`1esn` =~`6esn`} As _usn3 Load Csv With Headers From {``} Starts With 123456789 Starts With usn2 As `3esn` Union All Foreach(`3esn` In {@usn5} Starts With 1.0 Starts With 00| Detach Delete True Starts With $`2esn` Starts With {@usn6},.e12[\"d_str\"..][.e1..],$_usn3[..$`2esn`][..\"d_str\"]);"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Return {#usn7} Contains @usn5 Contains Count ( * ),01 Starts With {999} Starts With $`2esn`,$usn1[@usn6][#usn7] As `6esn`;"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Create Constraint On()<-[usn2:`3esn`]-()Assert Exists((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(#usn7 :@usn6{`8esn`:{@usn6}[True..{_usn3}],`1esn`:07 Is Null})-[?:@usn6|``{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(`2esn` :#usn8{@usn6:`7esn` Ends With $_usn3 Ends With usn2,_usn4:{12} Starts With #usn8 Starts With 0e0})._usn3!);"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Drop Constraint On(``:usn2)Assert [$@usn6 Contains `7esn`].usn2 Is Unique"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Foreach(`8esn` In {@usn5}[12.0..1000][{`3esn`}..{7}]| Optional Match @usn5=((@usn5 :`8esn`:@usn5)<-[:`1esn`|:`3esn` *07{@usn6:$#usn7 Ends With 0.12 Ends With {@usn6}}]-(`6esn` {``:`4esn`[usn1]})<-[@usn6?:`8esn`|:_usn4 *0X7..0Xa{`3esn`:9e1 =~999}]-(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]})),Allshortestpaths(({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]}))) Match Allshortestpaths(({`5esn`:0Xa[0e0..{#usn7}]})<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})),usn2=((`4esn` :`7esn`))"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Drop Constraint On(_usn3:@usn6)Assert [$`4esn` Starts With 0e0].`7esn`? Is Unique;"), + octest_legacy:ct_string("Profile Drop Constraint On(_usn4:_usn4)Assert Exists(Reduce(`2esn`=01234567 In $123456789,`1esn` In $12 Is Not Null|#usn7 =~{`4esn`} =~123456789).`7esn`)"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Start @usn6=Relationship:_usn3({`2esn`}) ,`7esn`=Node:usn2(usn2='s_str')Where 7 Contains $`` Contains {`6esn`} Remove [$7 Is Not Null,Count(*) Ends With 123.654 Ends With $12,$`1esn`[07]]._usn3,[9e12 Ends With 123456789].`1esn`!,[999 Ends With .e12 Ends With .e1,{_usn3}[..$`8esn`]].@usn6? Union Remove {usn2:_usn4 Is Null}.`7esn`,Case When ``[{123456789}..] Then `1esn` =~1000 =~1000 End._usn4?,{`4esn`}.`2esn`? Unwind $0 Is Not Null As usn2 Start usn1=Node:`6esn`({`8esn`}) Where 07[..`6esn`][..'s_str']"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Drop Constraint On(@usn5:_usn4)Assert Reduce(usn2=`8esn` Contains $`3esn` Contains {`4esn`},_usn3 In True[7][$999]|0x0 Ends With {``}).`4esn`! Is Unique;"), + octest_legacy:ct_string("Cypher 7.0 Create Unique #usn7=(`4esn` :usn2:`2esn`) Remove [@usn5 In Null =~12e12 Where _usn4 In $usn1].`6esn`?,Reduce(`4esn`=`3esn`[..{_usn4}][..{@usn5}],`2esn` In {999} Is Not Null|123456789 Starts With {@usn6} Starts With $12).usn2,Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3).`3esn` Start `7esn`=Node:usn1(@usn5={12}) ,usn1=Node:_usn3(_usn3='s_str')Where _usn4 In $usn1 Union All With 123456789 Starts With {@usn6} Starts With $12,(_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Is Null As `1esn` Order By $`2esn`[{usn2}] Descending,1.e1 In 0Xa In $#usn8 Desc,{@usn6} Starts With @usn5 Starts With @usn6 Desc Skip [_usn4 In 0.0[..{999}][..0.0] Where ``[..0X0123456789ABCDEF]][Reduce(``=`6esn` Is Null Is Null,`2esn` In {999} Is Not Null|{12}[999][{_usn3}])..[_usn4 In `2esn` Where 0X0123456789ABCDEF[$`5esn`..]]] Limit `7esn` Contains `5esn` Contains 0X7 Where 0.12 Starts With 9e12 Starts With $`1esn` Remove {`8esn`:False Ends With $``}.`3esn`,Case {usn1}[$7..0x0] When {``}[010] Then True =~_usn3 =~123456789 When @usn6[$12] Then {`4esn`} Starts With $7 Starts With $`` End.`7esn`! Return Distinct *,[False Starts With 010] Contains Extract(_usn3 In True[7][$999] Where 0e0[$#usn8...e12]|12 Is Not Null Is Not Null) Contains [`1esn` In $12 Is Not Null] As `2esn`,Filter(`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0}) =~({`1esn`:{123456789}[12..][$12..]})-[?:`1esn`|:`3esn`{@usn5:{`6esn`} Ends With 0e0 Ends With {``},@usn5:{`1esn`} Starts With `4esn` Starts With {0}}]->(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[`5esn`?:`7esn`]->({@usn5:Count ( * ) Is Null}) Order By Reduce(@usn5=$`8esn`[..$999][..0],`` In {`1esn`} Starts With @usn6|{@usn6} Contains 123.654 Contains 01) Contains [`1esn` In `3esn`[07..] Where {0} =~12.0] Contains (:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[`3esn`:_usn3|`8esn`]->(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null}) Descending,.e1[..\"d_str\"] Asc Skip $`6esn`[{`3esn`}..12]"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Remove @usn6:@usn6,Allshortestpaths(((($_usn3)<-[``?:`3esn`|:@usn5{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(:@usn5{#usn7:{#usn7} In Count ( * ) In $#usn8})-[? *01..07]->(`8esn` :#usn7)))).#usn8,All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]).#usn8? Create Allshortestpaths((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]})),((@usn6 :`7esn`)<-[``?:`6esn` *07{`5esn`:{12} Contains `7esn` Contains $_usn3,_usn4:$`3esn` In 9e12 In ``}]-({#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]})-[_usn3:#usn7|`2esn`]-(_usn3 :#usn8)) Create ((@usn6 :@usn6)-[{`7esn`:01234567 In $123456789}]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})-[{`2esn`:1000 Is Null Is Null}]->(`5esn` :`2esn`{#usn8:True[$`7esn`..{1000}]})) Union Unwind @usn6[Count ( * )][True] As usn2 Detach Delete 9e12 =~123456789 =~$999 Union Start #usn7=Node:`1esn`(\"d_str\") Where $_usn3[010..False] Foreach(#usn7 In {@usn6} Contains 123.654 Contains 01| Remove [0.0[..{999}][..0.0],12.e12[2.12..][0xabc..],True[7][$999]].@usn6 Delete Filter(#usn7 In 123.654 Starts With $`` Where Count(*)[010..][#usn7..])[None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $999 Ends With {0})..])"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Create Allshortestpaths((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]})),((@usn6 :`7esn`)<-[``?:`6esn` *07{`5esn`:{12} Contains `7esn` Contains $_usn3,_usn4:$`3esn` In 9e12 In ``}]-({#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]})-[_usn3:#usn7|`2esn`]-(_usn3 :#usn8)) Union All Create `6esn`=(((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[?:`6esn`{`1esn`:{@usn5}[..{12}][..0x0],usn2:1000}]->(:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})<-[`1esn`?:usn2|#usn7 *..0]-(:@usn6{`4esn`:1.e1[{#usn8}]}))) Delete $@usn6[1.e1..`8esn`][Null..123456789]"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Drop Constraint On()-[`4esn`:`8esn`]-()Assert Exists(Reduce(usn1=$_usn3[{999}],`2esn` In {999} Is Not Null|$``['s_str'..][0x0..]).`8esn`!);"), + octest_legacy:ct_string("Profile Merge Allshortestpaths((:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[_usn4? *07{1000}]-(`` )<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})) On Create Set ['s_str'[..0X7],False Contains 0.e0 Contains Count(*)].``? =$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`] Return *,Any(_usn4 In 0.0[..{999}][..0.0] Where Count(*) In {``})[..[$#usn7[`5esn`],.e1[@usn5]['s_str'],Count(*) Starts With $usn1 Starts With {usn2}]][..{usn2:$7 In @usn5 In {@usn5},`7esn`:{#usn7} Contains @usn5 Contains Count ( * )}] Order By $`4esn` In Null Descending,#usn8 =~{999} Asc Skip Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $#usn7[$`4esn`])[(usn1 :`6esn`:`8esn`)<-[_usn4?:`6esn` *0xabc..7$_usn3]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})][Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))] Match Allshortestpaths(((`2esn` :@usn6)<-[:#usn7|`2esn`]->(`1esn` :`6esn`:`8esn`{usn2:Count ( * )[..12][..{@usn6}]}))),#usn8=(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[?:`6esn` *01..07]->(#usn7 :#usn8{_usn3:`1esn`[..00][..{7}]})<-[:`1esn`|:`3esn` *1000]-($12) Using Join On `4esn`,`2esn` Where $@usn6 Contains `7esn` Union Delete 12e12 Ends With $999 Ends With 1e1,$`3esn`,1000 Merge usn1=(@usn6 :`2esn`)<-[ *..0Xa]->({`8esn`:Null In .e0}) On Create Set Allshortestpaths(((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]}))).`8esn`? =`6esn`[{`6esn`}..],@usn6+=Reduce(usn1=$#usn7 Ends With 0.12 Ends With {@usn6},_usn3 In {`2esn`} Ends With {12} Ends With 7|{0} Is Null) Is Not Null Is Not Null,Extract(usn1 In 12.e12 In {0} In 9e1 Where False Starts With 010|True Starts With $`4esn` Starts With 12e12).`7esn`? =0X0123456789ABCDEF Is Null Is Null;"), + octest_legacy:ct_string("Explain Profile Match `3esn`=((#usn8 :@usn5)) Using Index #usn7:`8esn`(@usn6) Where 12.e12[$`8esn`..{`8esn`}] Foreach(`2esn` In {usn2}[`6esn`..01234567]| Remove Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where _usn4 Is Null Is Null).``!,Case 7 Contains $`` Contains {`6esn`} When {#usn8}[2.12] Then $``['s_str'..][0x0..] When $7 Ends With $`8esn` Then {`7esn`}[``..] Else {123456789}[12..][$12..] End.`6esn`!) Union Load Csv From $``[.e12..] As usn1 "), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On(`2esn`:`7esn`)Assert _usn4(Distinct $``[.e12..]).`4esn`! Is Unique;"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On()-[`6esn`:@usn5]->()Assert Exists(Single(`` In {`1esn`} Starts With @usn6 Where 999 Starts With $123456789 Starts With {``})._usn3!);"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Create Constraint On(``:@usn5)Assert Exists({``:`3esn` =~9e0 =~@usn6}.`8esn`?);"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Drop Constraint On(`6esn`:``)Assert Exists([{`2esn`}[Count(*)],0.0 =~12.e12 =~1.0].`6esn`?)"), + octest_legacy:ct_string("Cypher 0.1000 Create Unique `2esn`=((_usn3 :`5esn`:@usn5)<-[`7esn`? *0xabc..7]->(:`6esn`:`8esn`{`3esn`:$`6esn`[{`3esn`}..12],_usn3:0[{@usn5}..][7..]})),@usn6=(((:_usn3{`8esn`:9e1 =~999})<-[@usn6?]->(`6esn` :_usn3)<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`))) Load Csv From {#usn7} Ends With 12e12 Ends With {123456789} As `7esn` Start `8esn`=Node:#usn7(\"d_str\") ,#usn7=Node( {usn2})Where 0x0 Ends With {``}"), + octest_legacy:ct_string("Cypher Load Csv From 12e12 Is Not Null Is Not Null As usn1 Merge `4esn`=Shortestpath((`3esn` {@usn6:12 Starts With {_usn4} Starts With $#usn8})) On Match Set `5esn`+=Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..],[`6esn` In Count(*) Ends With $`` Ends With {7} Where @usn5 =~'s_str'|{_usn3} Contains 9e0 Contains $999].usn2 =9e12 Is Null Union Unwind False Starts With 010 As #usn8 Return Distinct *,Single(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7])[..{@usn5:_usn4[Count(*)],`6esn`:$`3esn` Contains 0 Contains 07}][..Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`])],0e0[$#usn8...e12] Order By {#usn7}[{`4esn`}..][0X7..] Desc,Filter(`1esn` In $12 Is Not Null Where Count(*)[..``][..#usn8]) Ends With Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}]) Ends With {`2esn`:usn1 Is Null Is Null,usn2:0.e0 =~`1esn` =~`6esn`} Desc Skip Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000|$@usn5 In $usn2 In {1000}) Is Not Null Union All Remove Reduce(@usn6=_usn4 Is Null,`1esn` In $12 Is Not Null|`5esn`[..9e0][..01234567]).#usn7?,Case {`1esn`} In 12.e12 In 9e1 When {usn2}[$`4esn`] Then $1000 Starts With $`8esn` Starts With {`5esn`} Else {1000}[{#usn8}] End.`1esn`!,Reduce(`5esn`=12 Starts With {_usn4} Starts With $#usn8,`1esn` In 0.e0 =~`1esn` =~`6esn`|@usn5[$12..\"d_str\"]).`5esn`! Create Unique ``=(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})<-[:#usn7|`2esn` *1000]->(`5esn` :_usn4)-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`) With {_usn3}[`3esn`..$#usn8] As `1esn`,12 Starts With 7 Starts With $`5esn`,$#usn7 Contains True Contains _usn4 As `4esn` Skip $@usn6[..123.654]"), + octest_legacy:ct_string("Cypher Drop Constraint On()<-[_usn4:#usn8]-()Assert Exists(Single(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} =~_usn4 =~0.12)._usn4!);"), + octest_legacy:ct_string("Cypher 999.999 Cypher Merge Shortestpath((((usn1 :@usn5)-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[#usn7? *999{usn2:{1000}[{``}][999]}]-({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})))) On Create Set `8esn`+=Case #usn7 Ends With $#usn7 Ends With {`8esn`} When Count(*) Ends With 123.654 Ends With $12 Then $`3esn` Contains 0 Contains 07 When 0.e0 Ends With False Then {@usn6}[True..{_usn3}] Else 9e1 Ends With Count(*) Ends With False End Starts With [$usn1 In 01234567 In .e1,9e1 =~999,$0[$1000..00][{0}..{usn1}]] Starts With Allshortestpaths((`5esn` $`8esn`)<-[``:usn2|#usn7 *..0Xa]->(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]})-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})),Single(`3esn` In 123.654[1e1..][{#usn8}..] Where $7 Is Not Null).`8esn`? =$7 In @usn5 In {@usn5} Optional Match Shortestpath((@usn6 :`2esn`)<-[ *..0Xa]->({`8esn`:Null In .e0})) Using Index ``:`6esn`(usn1) Where 0e0 Contains `3esn` Contains `7esn`"), + octest_legacy:ct_string("Profile Load Csv With Headers From Shortestpath((@usn6 {``:.e12[\"d_str\"..][.e1..]}))[{`3esn`:#usn8 =~{999}}..[_usn3 In True[7][$999] Where 12e12 Is Not Null Is Not Null]] As `4esn` Unwind {``} Is Null Is Null As `3esn` Optional Match `1esn`=(usn1 :`8esn`:@usn5)<-[?:_usn4|:usn1 *..00{`1esn`:{#usn8}[2.12]}]->(:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00}) Using Index usn1:`3esn`(`3esn`) Using Join On usn1 Where $7[$`3esn`] Union Create Unique `7esn`=((`8esn` :@usn6)) Unwind {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn` As `5esn` Unwind {usn1:$`8esn` In $`2esn` In {7},`7esn`:{`2esn`} In $123456789 In True}[..(:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})-[`3esn`:`` *123456789..0X7{#usn8:12 Starts With $#usn7}]-(`3esn` :`7esn`)-[?*..{`1esn`:$`1esn`[07..][9e12..],@usn6:{7} Starts With $usn1 Starts With 1.0}]->(:`3esn`:`6esn`)][..Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6)] As `1esn`;"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Start `2esn`=Relationship:`4esn`(``='s_str') Where 7 Contains `2esn` Contains $`8esn`;"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Unwind 0X0123456789ABCDEF[7...e0][`1esn`..usn2] As `` Remove Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn1 Starts With {_usn3}|{123456789}[12..][$12..]).usn1?,[$``[..1.e1][..12],7 Contains $`` Contains {`6esn`}].`7esn`!;"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Drop Constraint On(#usn8:`2esn`)Assert Exists(usn1({usn1}[$7..0x0]).`2esn`);"), + octest_legacy:ct_string("Cypher 999.999 Cypher Create Constraint On()<-[@usn6:usn2]-()Assert Exists([{999} Is Not Null,{`7esn`}[0X7..][0x0..]].@usn5);"), + octest_legacy:ct_string("Profile Detach Delete $@usn6 Contains $`7esn` Contains 1e1 Merge _usn3=Shortestpath((((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[`6esn`?]-(`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})))) On Match Set #usn8 =$`1esn` =~$`1esn` =~{`6esn`},`2esn` =@usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2),`6esn` =`6esn` In Null On Create Set `5esn`+=$`3esn` Contains 0 Contains 07,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $#usn7[..@usn6][..$0]).`1esn`? =$1000[0.12..0.12] With 0X0123456789ABCDEF[0X7..] As `4esn`,7 Contains 9e0 As `4esn`,0x0 Ends With {``} As `7esn` Where 1.e1[0X0123456789ABCDEF..] Union Detach Delete \"d_str\" Starts With $`8esn` Starts With {usn1},12.e12[2.12..][0xabc..],(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) Merge ((`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})) On Create Set `4esn` ={999} Ends With {`5esn`} Ends With {0} Start `6esn`=Node:_usn4('s_str') ,#usn8=Node:`2esn`({_usn3}) Union All Remove Single(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn4} In {1000}).usn1 Remove Filter(`6esn` In 00 Where 0.12[..$`6esn`][..$1000]).#usn8!,[999 Ends With .e12 Ends With .e1,{_usn3}[..$`8esn`]].@usn6?"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Remove ({#usn8:0Xa Contains Count ( * ),`8esn`:Null Is Null Is Null})<-[:@usn5|:`7esn`{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})-[`5esn` *0x0..]->(usn1 :usn1:_usn4)._usn3! Start `4esn`=Node:`1esn`(#usn7=\"d_str\") Where $0[$1000..00][{0}..{usn1}] Union All With `7esn` Ends With $_usn3 Ends With usn2 As _usn4,1000 Is Null Is Null Order By \"d_str\"[Count ( * )..`6esn`] Desc Skip 9e1 Ends With $@usn5 Ends With $123456789 Limit $`8esn`[0e0..] Where {999} Starts With {_usn4} Starts With 00 Create Unique `2esn`=Shortestpath((:`5esn`:@usn5{``:0.12[..$`6esn`][..$1000]})) Foreach(`` In {`7esn`}[0X7..][0x0..]| Load Csv With Headers From 12.e12[`7esn`] As `1esn` With `7esn`[{usn1}][999] As `7esn`,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..]) Starts With [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]|Count ( * )[..12][..{@usn6}]] Starts With Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where True Starts With $`2esn` Starts With {@usn6}) Order By @usn5 =~$`3esn` =~0X7 Descending Skip {usn1}[01..7][{`3esn`}..`6esn`]) Union All Match `6esn`=(`4esn` {`2esn`:@usn5[$12..\"d_str\"]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]-({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000}),``=Shortestpath((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})-[#usn8?:#usn8|`2esn` *0X7..0Xa{usn2:{1000},`6esn`:#usn8[`7esn`..]}]->(:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})) Using Scan `1esn`:`7esn` Using Join On #usn8,#usn8 Where 's_str' Starts With 12e12 Starts With $_usn4 Foreach(#usn8 In {1000}| Create Unique _usn4=((`2esn` :@usn6)-[_usn3?:@usn6|``]-(usn2 )<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})))"), + octest_legacy:ct_string("Profile Using Periodic Commit Load Csv With Headers From {7} Starts With $usn1 Starts With 1.0 As `8esn` "), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Merge Shortestpath((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})<-[#usn7?:#usn8|`2esn`]-(usn2 {`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})) On Create Set `1esn`+=010 In $`5esn` In 0,[_usn3 In True[7][$999] Where 12e12 Is Not Null Is Not Null].@usn6? ={@usn6} Contains 123.654 Contains 01,@usn5 =$#usn7 =~{12} =~False On Create Set usn1+={usn1}[{`5esn`}..],Case {0} Is Null When $0 Is Not Null Then #usn8 Is Not Null When 12.e12[{@usn5}..][9e1..] Then `2esn`[$1000..9e12][{#usn8}..{7}] End.`6esn` =#usn8 =~{_usn3} =~``,`7esn`+=12e12 Ends With `4esn` Ends With 123456789 Delete $0 Starts With `2esn`;"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Load Csv From .e1[..{`7esn`}][..{_usn3}] As usn1 Fieldterminator \"d_str\" Merge usn1=((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]})) Union All Merge (:`5esn`:@usn5{``:0.12[..$`6esn`][..$1000]}) Union Unwind {999} Is Not Null As `6esn` Return Distinct Count(*) Is Not Null,{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] Order By [0.12[..$`6esn`][..$1000],0.12 Starts With 9e12 Starts With $`1esn`,\"d_str\" Contains @usn6 Contains 12.e12] Is Null Ascending,{1000}[{``}][999] Asc Foreach(_usn3 In .e1 Contains $`3esn`| Optional Match Allshortestpaths(((`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999}))),`1esn`=(`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4) Using Scan `4esn`:_usn4)"), + octest_legacy:ct_string("Profile Unwind $`1esn`[#usn8][$@usn5] As `1esn` Create Unique #usn8=(`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`),``=((`8esn` :@usn6)-[@usn5? *0x0..{`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}]-({`7esn`:{usn1}[$`8esn`..0.0]})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}));"), + octest_legacy:ct_string("Cypher Optional Match @usn5=Allshortestpaths((@usn6 :usn1:_usn4)<-[?:@usn6|`` *..01234567]->(#usn8 {usn1:$123456789 Starts With `5esn`})-[? *01..07]->(`8esn` :#usn7)),`8esn`=Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Using Scan usn2:`5esn` Where 123.654[{@usn5}..123.654][1.0..$12] Load Csv With Headers From 0X0123456789ABCDEF Is Null Is Null As `` ;"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Drop Constraint On(`6esn`:_usn4)Assert Exists({usn2:{1000} Ends With {`8esn`}}._usn4);"), + octest_legacy:ct_string("Explain Profile Create Unique `5esn`=((`3esn` :`6esn`:`8esn`{`8esn`:{``} Is Null Is Null,`3esn`:123456789 Is Not Null Is Not Null})<-[_usn4?:usn2|#usn7{_usn4:{`1esn`} In 12.e12 In 9e1}]-(:usn2:`2esn`)),((#usn8 :usn1:_usn4)<-[usn1:usn1{`3esn`:\"d_str\" Ends With False Ends With {@usn6},`5esn`:`4esn` Contains #usn8 Contains 7}]->(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(`2esn` :#usn8{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})) Remove {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]}.@usn6 Remove Extract(#usn7 In 0Xa[@usn5][{`7esn`}] Where 's_str'[_usn4..0x0]).`5esn`?,Reduce(`4esn`=`3esn`[..{_usn4}][..{@usn5}],`2esn` In {999} Is Not Null|123456789 Starts With {@usn6} Starts With $12).usn1? Union Foreach(#usn8 In Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null)[[{_usn3}[$usn2..],$`3esn`[..$`2esn`][..123.654],12.e12[`7esn`]]..]| Remove Filter(`1esn` In 0.e0 =~`1esn` =~`6esn` Where True[True..]).@usn6,Shortestpath(((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` ))).`2esn`,[7[010][00],$7[$`3esn`],#usn7 =~{`4esn`} =~123456789].#usn8 Create Unique `2esn`=Allshortestpaths((({`6esn`:1.e1[12e12..{`6esn`}]})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}))),usn2=Shortestpath(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`)))) Union All Remove (`1esn` :usn2:`2esn`{`1esn`:{_usn3}[$usn2..],_usn3:$@usn6 Starts With $@usn5})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})._usn3?;"), + octest_legacy:ct_string("Cypher 999.999 Cypher Create Constraint On(`7esn`:`8esn`)Assert Extract(#usn7 In 0Xa[@usn5][{`7esn`}] Where $0 In _usn4|@usn5 Is Not Null Is Not Null).`6esn`! Is Unique"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Using Periodic Commit 999 Load Csv With Headers From {`2esn`}[@usn5..][{``}..] As usn2 Unwind False Ends With $`` As _usn4"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On()<-[`3esn`:usn1]-()Assert Exists([9e1 Ends With $@usn5 Ends With $123456789].`3esn`)"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Unwind _usn4 =~0e0 As `` Detach Delete ({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01})[(`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(usn2 )],{123456789} =~usn1 =~{usn1}"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Start _usn3=Relationship:``(`1esn`={`2esn`}) Where 0[{usn2}..][usn1..] Return *,Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6) Starts With [$_usn3[010..False],$123456789 =~`4esn`,$usn1[$123456789..0][{`1esn`}..12.0]] As `8esn`,12 Starts With 0x0 As `2esn` Order By All(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[{#usn7:Count ( * )[$12..]}..][`5esn`(Distinct False Starts With 010)..] Asc,All(usn1 In 12.e12 In {0} In 9e1)[[`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]|12.e12[$`8esn`..{`8esn`}]]..] Asc Limit 0Xa[07..] Detach Delete [`8esn` In $12[{7}..0X0123456789ABCDEF] Where {`2esn`}[Count(*)]|0e0 Contains 9e12][None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12[..$@usn6])][All(@usn5 In Null =~12e12 Where 0X0123456789ABCDEF[$`5esn`..])],12.e12 In $0 In $0 Union All Load Csv From usn2 =~0X7 =~{#usn7} As `` Foreach(usn1 In {usn2}[$`4esn`]| Start `3esn`=Relationship:#usn8(_usn3={#usn7}) Where {999} Is Null Create (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` ))) Union All Match Allshortestpaths((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]})),#usn8=Shortestpath((#usn7 :usn1:_usn4{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})) Using Index @usn5:usn2(`6esn`) Where $`8esn` In $`2esn` In {7} Merge Shortestpath((((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`})))) On Create Set `6esn`+=$7 In #usn8 On Match Set `2esn`+=$999 =~0 =~{7},@usn5+=0X7[0.e0][{`4esn`}],Extract(`` In {`1esn`} Starts With @usn6 Where {`2esn`}[..{@usn6}][..1.e1]|True =~{`1esn`})._usn4! =All(usn1 In 12.e12 In {0} In 9e1)[[`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]|12.e12[$`8esn`..{`8esn`}]]..];"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On(``:`3esn`)Assert Exists(1e1.@usn6)"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Create Constraint On(`4esn`:`7esn`)Assert Exists([\"d_str\"[{`8esn`}..],{123456789} Is Not Null,123.654 Contains $_usn3 Contains 0X0123456789ABCDEF].`6esn`);"), + octest_legacy:ct_string("Cypher Create Constraint On()<-[#usn7:`4esn`]-()Assert Exists(`8esn`(Distinct 00[07..],_usn3[$usn2..0]).`7esn`);"), + octest_legacy:ct_string("Profile Create Constraint On()-[``:_usn4]->()Assert Exists(Case When 00[Count(*)...e0][$#usn7..0X0123456789ABCDEF] Then $usn1 In 01234567 In .e1 End._usn3);"), + octest_legacy:ct_string("Cypher 7.0 Create Constraint On()-[#usn8:#usn8]->()Assert Exists(Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn1 Starts With {_usn3}|{123456789}[12..][$12..]).usn1?)"), + octest_legacy:ct_string("Cypher 7.0 Match `5esn`=Shortestpath((_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null})<-[@usn5?:`8esn`|:_usn4 *0X0123456789ABCDEF{usn1:False Contains $#usn8 Contains 9e1}]->({@usn6:$usn1[0X7],`3esn`:$7[$`3esn`]})),`8esn`=((@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})) Using Index @usn5:usn2(`6esn`) With Distinct *,$`8esn` In $`2esn` In {7} As #usn8,$#usn8[{12}..] As `6esn` Skip Null In .e0 Limit 0e0[{_usn3}..] Where 9e1 =~`` =~{`7esn`} Union All Delete 0X0123456789ABCDEF[`5esn`..][$#usn8..],`3esn` Is Not Null Is Not Null,0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] Foreach(`` In $`6esn`[9e1]| Load Csv With Headers From Reduce(@usn5=0.e0 Contains #usn7,`` In {usn1} Ends With {`6esn`} Ends With 123456789|$999 In 999)[Allshortestpaths(({`4esn`:#usn8 Is Null})-[:usn1{_usn4:0[{usn2}..][usn1..],`3esn`:12 Starts With 7 Starts With $`5esn`}]-(`7esn` :`3esn`:`6esn`)<-[`6esn`?:#usn8|`2esn`*..{`5esn`:@usn5 =~'s_str'}]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}))..{@usn6:0.0 Is Not Null Is Not Null,#usn7:\"d_str\"[{`8esn`}..]}] As `3esn` Fieldterminator 's_str') Create Allshortestpaths((((:@usn5{@usn6:{7} Contains $123456789})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})-[`3esn`:`6esn`{`3esn`}]-(#usn8 :`6esn`:`8esn`{`1esn`:9e12 Is Not Null,_usn4:0X0123456789ABCDEF[$`2esn`..][`2esn`..]}))));"), + octest_legacy:ct_string("Explain Profile Load Csv With Headers From 9e12 In 1e1 In .e12 As `5esn` With Distinct *,{999} Starts With {_usn4} Starts With 00 As `6esn`,(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As #usn7 Order By $@usn6 Starts With $123456789 Starts With 0X7 Desc Skip [`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]][..Reduce(`4esn`=@usn5[12.0][{1000}],_usn4 In `2esn`|0[$`6esn`...e1][`1esn`..$`7esn`])][..[7[010][00],$7[$`3esn`],#usn7 =~{`4esn`} =~123456789]] Limit $7 In 1.0 In 1e1 With 's_str'[_usn3..] As `5esn`,{0}[False..@usn5] As `1esn` Order By {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Desc,01234567[{`7esn`}..] Descending,[{7} Contains $123456789,$``[..1.e1][..12],$`5esn`[..{`2esn`}][..{0}]] =~`3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]) =~{`6esn`:{`3esn`} Ends With `1esn` Ends With $@usn6,@usn6:$usn1 In 0.12 In $``} Descending Skip .e0[..{`5esn`}][..999] Limit {`8esn`:`2esn` Starts With `` Starts With 1e1} In [usn1 In 00 In {_usn3}] In Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) Where $123456789[..$7][..$`6esn`];"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Return Distinct @usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2) As @usn5,$`` =~{``} =~0.e0 Skip Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Starts With (usn2 :``)<-[#usn7? *0X0123456789ABCDEF{usn1:.e1[@usn5]['s_str'],`2esn`:$`7esn` Is Null Is Null}]->({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}) Merge ((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`)) On Match Set @usn5 =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Union All Delete `3esn`[..0.e0][..$usn1],$#usn7[.e1..{`7esn`}][{`6esn`}..$_usn4] Return Distinct #usn7 Starts With $999 As `6esn`,{7}[$123456789..{1000}][$`3esn`..`7esn`] Skip $123456789 Contains [True Starts With $`2esn` Starts With {@usn6}] Contains {@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]} Limit None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])]"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Load Csv From Extract(_usn3 In {@usn5}[..#usn7])[Case $1000[..12.0][..0e0] When `3esn` Is Not Null Is Not Null Then 12.e12[{7}..7] When Count(*) In {``} Then 12[..$@usn6] End..] As #usn7 Fieldterminator \"d_str\" Load Csv With Headers From $`2esn`[{`6esn`}][0.0] As `2esn` Fieldterminator \"d_str\" Optional Match Allshortestpaths((:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[:`5esn`]-({`7esn`:@usn5[..$@usn5][..0Xa]})<-[#usn8:_usn3|`8esn`{usn1:{#usn8}[usn1][1.0],@usn6:1.e1 =~$usn2}]->(#usn7 :usn1:_usn4{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})),`8esn`=Allshortestpaths((`` :``)-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})) Union All Remove Reduce(_usn3=12 Starts With 0x0,_usn4 In 0.0[..{999}][..0.0]|$usn1[..'s_str'][..$#usn8]).`6esn`! With Distinct 12 Is Not Null Is Not Null As `2esn`,Case When $`6esn` Starts With 12.e12 Starts With $#usn7 Then #usn8[`7esn`..] When {`4esn`}[$123456789..] Then {_usn3} Contains 9e0 Contains $999 End As @usn6 Order By {`2esn`} In 0Xa In {_usn3} Ascending,All(usn1 In 12.e12 In {0} In 9e1)[[`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]|12.e12[$`8esn`..{`8esn`}]]..] Ascending,{usn2}[$`4esn`] Descending Skip 1.e1 Starts With $`2esn` Starts With $0 Limit All(_usn3 In {@usn5}[..#usn7] Where $`2esn` Starts With {`8esn`} Starts With {usn1}) Starts With {usn2:{`1esn`} Is Not Null} Union All Detach Delete {#usn8}[#usn7..{`2esn`}],$usn1 Is Not Null Is Not Null,12e12 Remove usn2(Distinct 1e1[..01],$123456789 Is Not Null)._usn3?;"), + octest_legacy:ct_string("Cypher 999.999 Cypher Drop Constraint On(#usn7:@usn6)Assert Exists(Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6).``!);"), + octest_legacy:ct_string("Cypher 7.0 Drop Constraint On(#usn7:_usn4)Assert Exists(Allshortestpaths(((@usn6 :`2esn`)))._usn4?);"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On(`8esn`:_usn4)Assert None(#usn7 In 0Xa[@usn5][{`7esn`}] Where $0[_usn4..{`3esn`}][$#usn7..$#usn7]).`4esn` Is Unique;"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On(@usn5:``)Assert Shortestpath((`6esn` :`2esn`{`7esn`:#usn8 =~{999}})).#usn8! Is Unique"), + octest_legacy:ct_string("Cypher Drop Constraint On()-[`6esn`:`8esn`]-()Assert Exists({`3esn`:{_usn4}[...e12][..0xabc]}.usn2);"), + octest_legacy:ct_string("Profile Remove Case 12.e12[$`8esn`..{`8esn`}] When {``} Starts With 123456789 Starts With usn2 Then 12.e12[{7}..7] End.`7esn`,usn1:`3esn`:`6esn`,Filter(#usn7 In 0Xa[@usn5][{`7esn`}] Where #usn7 Starts With $999).usn1! Union Merge usn1=Allshortestpaths(((:`6esn`:`8esn`{`5esn`:{@usn5} Is Null,`8esn`:True[..010]}))) Merge `5esn`=({_usn4:0.e0[{999}][{`1esn`}]})-[`2esn`:`3esn`|:@usn5 *..010{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->({`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]}) Return Distinct All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,1000 As `1esn`,12e12[{usn2}..][`8esn`..] Order By Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where 1.e1[12e12..{`6esn`}]|Count ( * )[..12][..{@usn6}]) Contains All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Contains Extract(_usn4 In `2esn` Where $999 Is Null) Ascending,[False Contains 0.e0 Contains Count(*)][Any(@usn5 In Null =~12e12 Where 0[`4esn`][12.e12])..[$_usn4 Is Not Null Is Not Null,`7esn` Is Not Null Is Not Null]] Descending,(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-({#usn7:#usn8 =~{999}}) In Shortestpath(((:`1esn`)<-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})-[`7esn`? *123456789..0X7{`6esn`:{0}[..{`7esn`}]}]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999}))) Desc"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Optional Match @usn6=Allshortestpaths(({`4esn`:#usn8 Is Null})),@usn6=Allshortestpaths(({_usn4:0X0123456789ABCDEF[$`2esn`..][`2esn`..],`2esn`:$`6esn` Starts With 12.e12 Starts With $#usn7})-[:#usn8|`2esn`]->(:`3esn`:`6esn`)<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]->({_usn4})) Using Scan `5esn`:#usn8 Merge `4esn`=Shortestpath(((:#usn8{#usn8:`3esn` Is Not Null Is Not Null})<-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(`` :`7esn`))) On Create Set `1esn`:`` On Create Set usn1+=$999 Is Not Null Is Not Null,Shortestpath(((`4esn` :`2esn`)<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]}))).`3esn`! =@usn5 In 1e1;"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Drop Constraint On()-[`3esn`:``]-()Assert Exists(Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where `6esn`[..{999}]).#usn8?);"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On(_usn3:_usn3)Assert Exists({`8esn`:{`7esn`} Is Not Null Is Not Null}.#usn8!)"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(`7esn`:_usn3)Assert Exists(All(_usn4 In `2esn` Where 9e12 Ends With 123456789).usn2!)"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Merge (:`8esn`:@usn5)<-[?:`1esn`|:`3esn`{#usn8:$0 Is Not Null,``:True Is Null Is Null}]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0}) On Create Set #usn7+=All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.e12[$`8esn`..{`8esn`}]) Is Null On Match Set [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0[$#usn8...e12]].#usn8 =Allshortestpaths(((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))) Starts With (`1esn` :_usn3{`5esn`:{`8esn`}[..$`6esn`][..123.654],`1esn`:1000 Starts With `7esn`})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Extract(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]),Case When Count ( * ) Starts With 010 Starts With 0x0 Then 9e12[$`5esn`] When {999}[$123456789..][12..] Then {@usn5}[..{12}][..0x0] End.`8esn`? =$`6esn`[{`3esn`}..12],`6esn` =9e0 Contains @usn6 Contains {#usn7} Return Distinct 9e1[$`2esn`..][`1esn`..] Limit Any(`6esn` In Count(*) Ends With $`` Ends With {7} Where 1000 Is Null) Is Not Null Is Not Null Union All Create @usn5=Allshortestpaths(((#usn7 :`2esn`)-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]})-[@usn5?:#usn7|`2esn`{`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}]->({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}))) Remove [`` In {`1esn`} Starts With @usn6 Where 12.e12 In {0} In 9e1].#usn8? Return Distinct Any(`6esn` In 00 Where 0X7 Starts With {999} Starts With 12e12) Starts With (`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}) Starts With {`8esn`:{#usn7} Contains @usn5 Contains Count ( * )} As #usn7,0X0123456789ABCDEF Contains {usn1} As @usn5,{999} Starts With {_usn4} Starts With 00 As _usn4 Skip {_usn4}[{``}..]"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Start `4esn`=Node:`1esn`(#usn7=\"d_str\") Where $_usn3 Is Null Is Null Unwind `7esn`[0..$usn2][{usn2}..0.e0] As `1esn` Create `7esn`=((:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})<-[`2esn`?:@usn6|`` *..00]->({_usn3})) Union All Unwind 123.654 Contains $#usn8 Contains .e1 As usn2 Merge _usn4=(({`5esn`:0Xa[0e0..{#usn7}]})<-[?:``]-(`7esn` :`3esn`:`6esn`)) On Match Set `5esn`+=Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..],[`6esn` In Count(*) Ends With $`` Ends With {7} Where @usn5 =~'s_str'|{_usn3} Contains 9e0 Contains $999].usn2 =9e12 Is Null On Match Set `5esn` =True[..010],#usn8+=Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}),`3esn` =@usn6[$_usn4] Load Csv From Shortestpath((((`6esn` :`7esn`)-[_usn4 *0x0..]-(:``$_usn4)<-[#usn8?:``]-({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]})))) Starts With Case 0.0 =~12.e12 =~1.0 When 0.e0 Ends With False Then 00[..$123456789][..$`5esn`] Else _usn3[$usn2..0] End Starts With [True[7][$999],{`8esn`}[0X7][$`3esn`]] As `3esn` Fieldterminator \"d_str\" Union All Merge (({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})) Optional Match Shortestpath((_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})-[? *1000]->(`5esn` {usn2:$#usn7 Starts With 9e0 Starts With 2.12})),`7esn`=(((`8esn` {@usn6:12 Starts With {_usn4} Starts With $#usn8,`3esn`:.e1[@usn5]['s_str']})-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(:`2esn`{`6esn`:@usn6[{0}..]})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:``{`2esn`:Null In .e0,usn1:01234567[..9e1]}))) Using Index usn2:``(#usn8) Using Index usn1:`3esn`(`3esn`) Where Count ( * ) Starts With 010 Starts With 0x0"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Load Csv From 9e1 =~`` =~{`7esn`} As @usn6 Union Foreach(_usn4 In `3esn`[_usn4..{0}][`5esn`..usn2]| Optional Match (((`3esn` :@usn5)<-[`7esn`? *0xabc..7]->(:usn2:`2esn`{`5esn`:@usn5 =~'s_str'})-[? *0X0123456789ABCDEF]-(_usn3 :`5esn`:@usn5))) Using Join On @usn5,usn2,_usn3 Using Join On `8esn`,#usn8 Where {_usn3} Contains True Contains 0X7) Remove Single(`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}])._usn3,Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $``[.e12..]).`6esn` Start `3esn`=Relationship:#usn8(_usn3={#usn7}) Where {999} Is Null Union Merge ((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]})) Match ((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]})),(((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`}))) Using Index `6esn`:`2esn`(`1esn`) Create Unique ``=Shortestpath(((usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}))),usn1=Allshortestpaths(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]})));"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Foreach(@usn5 In {1000}[7..$usn2]| Create ``=(({`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[ *0xabc..7]->(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]}))) Start `4esn`=Node:``(\"d_str\") Where True =~_usn3 =~123456789 Foreach(`` In [$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null][(`1esn` :#usn7)<-[? *0X0123456789ABCDEF]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]})..[{_usn3}[$usn2..],$`3esn`[..$`2esn`][..123.654],12.e12[`7esn`]]]| Optional Match ``=Allshortestpaths((((:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})-[#usn8? *..0Xa{`4esn`:$`2esn` Ends With 0.12 Ends With .e1,`4esn`:07 =~@usn5}]-(usn2 :`4esn`:@usn6)-[`8esn`?:``]->(`` {`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]})))) Where `6esn`[..{999}] With 12.0[010],{@usn5} Is Null Order By `3esn`[$@usn5..@usn5][9e1..$``] Desc,Extract(_usn4 In `2esn` Where $999 Is Null) Starts With Reduce(`5esn`=00,`2esn` In {999} Is Not Null|{`4esn`}[..07][..$`6esn`]) Starts With [`8esn`[..`4esn`][..$usn1],{#usn8}[2.12]] Descending,.e1 =~$`5esn` Desc Skip Count ( * ) Contains 12 Limit Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000) Contains [0x0[$`8esn`.._usn3]] Contains count({`1esn`} Is Not Null,$`2esn` Ends With 0.12 Ends With .e1))"), + octest_legacy:ct_string("Cypher 7.0 Create Constraint On(`7esn`:_usn4)Assert Case When $`` Is Null Then 0.12 Ends With {1000} Ends With `6esn` When True[7][$999] Then 0Xa Contains Count ( * ) End._usn3 Is Unique;"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Optional Match Allshortestpaths(({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})),Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Where `1esn`[..00][..{7}] Create (:`5esn`:@usn5{usn1:$#usn7[`5esn`]})<-[?:`4esn`|:#usn7]->(_usn4 :#usn8{`5esn`})-[`4esn`?:_usn4|:usn1{@usn6:$#usn7 Ends With 0.12 Ends With {@usn6}}]->(#usn8 {usn1:$123456789 Starts With `5esn`});"), + octest_legacy:ct_string("Cypher 7.0 Drop Constraint On(`1esn`:@usn5)Assert Case When Count(*)[.e12..] Then 9e0 Starts With .e0 Starts With \"d_str\" When 0.0[..{999}][..0.0] Then {usn1} =~123.654 =~\"d_str\" Else `3esn`[..{_usn4}][..{@usn5}] End.#usn7 Is Unique;"), + octest_legacy:ct_string("Explain Profile Remove Extract(_usn4 In `2esn` Where 0X0123456789ABCDEF[$`5esn`..]|$usn2 Ends With $`5esn`).`8esn`!,@usn6:`` Union Optional Match `8esn`=(({#usn7:#usn8 =~{999}})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})),((@usn5 )<-[#usn8? *..01234567]-($_usn3)) Using Join On ``,`7esn`,#usn7 Where True[$`7esn`..{1000}];"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Create Constraint On(`1esn`:#usn7)Assert Exists(exists(Distinct #usn8 =~{999},$`2esn` Ends With 0.12 Ends With .e1).@usn5?);"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Create Constraint On(`3esn`:usn2)Assert Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End.`3esn` Is Unique"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Start `3esn`=Relationship:#usn8(_usn3={#usn7}) ,`8esn`=Rel( {`3esn`})Where $`2esn` Is Null Is Null Return *,{`4esn`:$`3esn` Contains 0 Contains 07}[Reduce(_usn4={123456789} =~01234567 =~`3esn`,_usn3 In True[7][$999]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`])][(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6)] As #usn7,_usn4 Is Null Is Null Order By {usn2} =~@usn6 =~{`4esn`} Asc,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Descending Skip `6esn` Starts With 123.654 Limit @usn6(`` Ends With $`4esn` Ends With 0X0123456789ABCDEF)[..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[:#usn8|`2esn` *0x0..{`3esn`:.e12[$7..][{`6esn`}..]}]->({usn1:1000 Is Null Is Null})] Unwind $999 Contains 12e12 Contains {usn2} As #usn7 Union All Delete {`8esn`} =~#usn8 =~$`3esn`,0Xa Contains {`7esn`} Contains $999,\"d_str\"[Count ( * )..`6esn`] Create _usn3=Shortestpath((`6esn` {``:`4esn`[usn1]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]-(#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]})),((:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]->(:`2esn`{`6esn`:@usn6[{0}..]})<-[`1esn`?:_usn4|:usn1*]->(usn2 :``)) Return {`7esn`}[0X7..][0x0..] As @usn6,@usn6[Count ( * )][True] Skip 7 Is Not Null Limit `8esn` Union Match Shortestpath((((:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})))) Using Index `4esn`:usn2(`4esn`) Match (({`8esn`:0[$`6esn`...e1][`1esn`..$`7esn`]}));"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Merge _usn3=((:_usn4{`8esn`:12e12 Starts With `1esn` Starts With usn2})<-[@usn6?]->(`3esn` :`4esn`:@usn6{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]})) On Match Set _usn4 =9e0 Starts With .e0 Starts With \"d_str\",`4esn` =Shortestpath((_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]) In Shortestpath(((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}))),@usn6+={999} Starts With {_usn4} Starts With 00 Match usn1=((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})),`8esn`=(`6esn` {``:`4esn`[usn1]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]->(#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``}) Using Scan `4esn`:#usn8 Union All Start `4esn`=Node:_usn3({123456789}) Where $@usn5[$`4esn`][$@usn6] Unwind `5esn` In 12e12 In `8esn` As #usn7;"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Start ``=Rel:_usn4({`2esn`}) ,`6esn`=Rel:`2esn`({_usn3})Where @usn5[$12..\"d_str\"] Union Unwind {@usn6} In {#usn7} In 12.e12 As `8esn`"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` With Distinct #usn7[..12e12] Limit {@usn5} Starts With 1.0 Starts With 00 Where $1000 Is Not Null Is Not Null Merge _usn4=Shortestpath(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})-[:`1esn`|:`3esn` *..01234567{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(#usn7 {``:0x0 =~123.654 =~{999}})) On Match Set usn2 =#usn7 Starts With $999,usn1+={@usn6}[True..{_usn3}] On Create Set @usn5+=$@usn6 Ends With 01 Ends With 999,`3esn` =0.e0 =~`1esn` =~`6esn` With Distinct {#usn7} Contains @usn5 Contains Count ( * ),01 Starts With {999} Starts With $`2esn`,$usn1[@usn6][#usn7] As `6esn` Order By Any(`6esn` In 00 Where 0X7 Starts With {999} Starts With 12e12) Starts With (`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}) Starts With {`8esn`:{#usn7} Contains @usn5 Contains Count ( * )} Ascending,`8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]] Desc Limit None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] Where {`1esn`} Starts With `4esn` Starts With {0} Union All Load Csv With Headers From @usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2) As @usn6 Union All Create `1esn`=((`4esn` :`2esn`{`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})-[:`1esn`|:`3esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->({`2esn`:#usn8 Is Null,`6esn`:123456789 Ends With usn1 Ends With usn2})<-[#usn8? *0X7..0Xa$`2esn`]-({`7esn`:123456789[0..]})),usn1=Allshortestpaths((`2esn` :`5esn`:@usn5)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}))"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Create Constraint On(`6esn`:_usn4)Assert Filter(`6esn` In 00 Where $`1esn`[#usn8][$@usn5]).`3esn`? Is Unique;"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Create Constraint On(`3esn`:`2esn`)Assert Case When 123.654[1e1..][{#usn8}..] Then .e12[$7..][{`6esn`}..] When _usn4 Is Null Then {`1esn`} In 12.e12 In 9e1 End.usn2? Is Unique;"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create Constraint On()-[`7esn`:`6esn`]->()Assert Exists(All(`1esn` In 0.e0 =~`1esn` =~`6esn` Where $usn1 In 0.12 In $``).`1esn`);"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Create Constraint On()<-[_usn3:`6esn`]-()Assert Exists(Case 9e1[$_usn4..0xabc] When $1000[..$999] Then $`7esn` In 12 Else @usn5 =~'s_str' End.#usn7);"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(`8esn`:usn1)Assert $0.``? Is Unique;"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Match _usn3=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`))) Union Delete 12e12 Ends With $999 Ends With 1e1,$`3esn`,1000 Merge usn1=(@usn6 :`2esn`)<-[ *..0Xa]->({`8esn`:Null In .e0}) On Create Set Allshortestpaths(((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]}))).`8esn`? =`6esn`[{`6esn`}..],@usn6+=Reduce(usn1=$#usn7 Ends With 0.12 Ends With {@usn6},_usn3 In {`2esn`} Ends With {12} Ends With 7|{0} Is Null) Is Not Null Is Not Null,Extract(usn1 In 12.e12 In {0} In 9e1 Where False Starts With 010|True Starts With $`4esn` Starts With 12e12).`7esn`? =0X0123456789ABCDEF Is Null Is Null;"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create Constraint On(``:#usn8)Assert #usn8(Distinct 9e1[$_usn4..0xabc],123.654 Ends With usn2 Ends With 0).#usn8! Is Unique"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Start `1esn`=Relationship:usn1({999}) ,`4esn`=Node(01234567,0Xa,07)Where $usn1[$123456789..0][{`1esn`}..12.0] Union With *,[`2esn`,{`2esn`} Starts With @usn6,9e1 =~999] In Any(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3} Contains 9e0 Contains $999),Count(*) Starts With $usn1 Starts With {usn2} As @usn6 Limit Reduce(`6esn`=7[$0..][{_usn4}..],_usn3 In {`2esn`} Ends With {12} Ends With 7|{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`)[[$#usn7[`5esn`],Count(*) Ends With 123.654 Ends With $12,$#usn7[..@usn6][..$0]]] Where $_usn4 Is Not Null Is Not Null With *,{#usn7} Ends With Extract(`1esn` In 0.e0 =~`1esn` =~`6esn`|.e1 Ends With 0Xa Ends With .e1) As `5esn`,123456789 Is Not Null Is Not Null As #usn7 Skip {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Where $``['s_str'..][0x0..] Create #usn8=(`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`) Union All Load Csv With Headers From {`2esn`}[Count(*)] As usn2 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Cypher Detach Delete Count ( * )[{12}..{@usn5}][{#usn8}..Null],(:_usn3{#usn7:#usn8 =~{999}})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07}) Contains None(_usn4 In 0.0[..{999}][..0.0] Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`) Contains Case When $`` Is Null Then 0.12 Ends With {1000} Ends With `6esn` When True[7][$999] Then 0Xa Contains Count ( * ) End Union All Start `1esn`=Relationship:usn1({999}) ,@usn5=Rel:usn1(@usn6=\"d_str\") Union All With *,`1esn`[Null..] As `2esn` Skip 's_str'[_usn4..0x0] Limit Allshortestpaths((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null}))) In {`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null} Where {7} Is Null Load Csv From {1000}[01234567..$_usn4][{@usn6}..$_usn3] As usn2 "), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Create Constraint On(@usn5:#usn8)Assert Exists({`6esn`:1.0[{999}][$999],`1esn`:@usn5[$12..\"d_str\"]}.`1esn`?);"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On()-[_usn4:usn1]-()Assert Exists((`4esn` {`2esn`:@usn5[$12..\"d_str\"]})<-[`2esn`:`5esn` *0x0..{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})<-[`6esn`?:#usn8|`2esn`*..{`5esn`:@usn5 =~'s_str'}]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}).#usn8!)"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Foreach(`5esn` In $usn1 Is Not Null Is Not Null| Return Distinct [`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]][..{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}][..`4esn`(123.654[$`1esn`..Null][1000..{_usn3}])] As `6esn` Order By @usn6[$usn2..#usn7] Ascending,{`3esn`} Ends With 0 Ends With 9e1 Desc) Load Csv With Headers From Filter(`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0}) =~({`1esn`:{123456789}[12..][$12..]})-[?:`1esn`|:`3esn`{@usn5:{`6esn`} Ends With 0e0 Ends With {``},@usn5:{`1esn`} Starts With `4esn` Starts With {0}}]->(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[`5esn`?:`7esn`]->({@usn5:Count ( * ) Is Null}) As `1esn` Fieldterminator \"d_str\" Delete 00[0.12..],{999} Starts With {12},1.e1 =~$usn2;"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Drop Constraint On(`1esn`:`2esn`)Assert Exists(Case {_usn3} Contains True Contains 0X7 When ``[{123456789}..] Then `1esn` =~1000 =~1000 When #usn8 =~{_usn3} =~`` Then 7 Contains `2esn` Contains $`8esn` End.`4esn`)"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Drop Constraint On(`8esn`:`8esn`)Assert Exists(All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where False Contains 0.e0 Contains Count(*)).@usn6);"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Merge Shortestpath((usn2 )-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})) Union All Remove Shortestpath(({usn2:#usn8 =~{_usn3} =~``})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})-[?:`1esn`|:`3esn` *999]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})).`4esn`,Reduce(#usn7={_usn4}[{``}..],_usn3 In {`2esn`} Ends With {12} Ends With 7|{`6esn`} Ends With 0e0 Ends With {``}).#usn7! Union All With Distinct 0Xa Contains #usn8 Contains 1000 Order By {#usn8} Contains 1000 Contains $`4esn` Ascending,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Ascending Skip ({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..`2esn`(Distinct #usn8[`7esn`..])][..[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]]] Remove None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $`5esn`[$#usn7..][0xabc..]).`2esn`,{`5esn`:usn2 =~0X7 =~{#usn7}}.`3esn`? Return *,All(`6esn` In Count(*) Ends With $`` Ends With {7}) In (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}) Skip [`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7}|usn2[`7esn`..{`3esn`}][$7..{#usn7}]][..[`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]|9e12[..0X7]]][..[`2esn` Ends With $`4esn` Ends With {#usn7},'s_str'[..0X7],{#usn8} =~{999} =~{#usn7}]];"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Foreach(`1esn` In 7 Is Not Null| Create Allshortestpaths((((@usn6 {usn1:$#usn7 =~{12} =~False})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})))),`8esn`=({`2esn`:{7}[$7..],#usn7:`1esn` In 07})-[:_usn4|:usn1 *07]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})) Union Create `8esn`=((#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null})<-[?:#usn7|`2esn`{@usn5:$0 Is Not Null}]-(`` {``:0x0 =~123.654 =~{999}})),(({`1esn`:{123456789}[12..][$12..]})) Union All Create Unique Shortestpath((`7esn` {@usn6:{_usn4} Is Null})<-[usn2? *0xabc..7{usn1:$123456789 Starts With `5esn`}]->(:`4esn`:@usn6{`1esn`:{12}[00..{@usn6}][1.e1..0],usn1:``[..0X0123456789ABCDEF]})-[`1esn`?:_usn4|:usn1*]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})),((`2esn` :usn1:_usn4)<-[ *0xabc..7]->(:`4esn`:@usn6)) With *,0X7[0.e0][{`4esn`}],usn1 Contains $7 Contains $`` Limit usn2 In `2esn` In $`7esn` Where {#usn7}[Count ( * )..12][$`2esn`..`4esn`] Unwind {`4esn`} In _usn4 As usn2;"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Create Unique Shortestpath((((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4})))),Shortestpath((usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})) Remove Reduce(`3esn`={usn1} In Count ( * ),`1esn` In `3esn`[07..]|$123456789 Starts With $123456789 Starts With Count ( * )).@usn6!,Shortestpath((:_usn3{#usn7:#usn8 =~{999}})).#usn8 Start `2esn`=Node:usn1({`7esn`}) ,@usn5=Rel( {`7esn`})Where 123.654[1e1..][{#usn8}..] Union Return $12 Is Not Null As `6esn`,(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Is Not Null Is Not Null As `2esn`,$`4esn` In Null Order By 2.12[`8esn`][1e1] Descending Skip $1000 Is Null Is Null Create Unique `2esn`=((_usn3 :`5esn`:@usn5)<-[`7esn`? *0xabc..7]->(:`6esn`:`8esn`{`3esn`:$`6esn`[{`3esn`}..12],_usn3:0[{@usn5}..][7..]})),@usn6=(((:_usn3{`8esn`:9e1 =~999})<-[@usn6?]->(`6esn` :_usn3)<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`))) Union Optional Match `8esn`=(@usn6 :`6esn`:`8esn`)<-[_usn4?:`7esn`{``:{_usn3} Contains $`1esn` Contains 12.0}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}),Shortestpath((`6esn` {``:`4esn`[usn1]})<-[`7esn`?{_usn4:9e1 Ends With Count(*) Ends With False,#usn7:$_usn4 Ends With 0.e0 Ends With .e0}]->({`1esn`:$123456789[..$7][..$`6esn`]})-[_usn3:#usn7|`2esn`]-(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})) Using Join On `7esn` Using Scan _usn4:#usn8 Where $12 Contains 0Xa Create (#usn8 :#usn8) Unwind `6esn` Contains {`1esn`} Contains 9e0 As `1esn`"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Detach Delete 9e0 Starts With .e0 Starts With \"d_str\",(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) Union All Unwind 0.0 In `6esn` In $@usn5 As `6esn` Union Load Csv From 0.0 In `6esn` In $@usn5 As `4esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Cypher 999.999 Cypher Create (((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4}))) Match `2esn`=(`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4),`5esn`=(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}) Where $`8esn` In $`2esn` In {7};"), + octest_legacy:ct_string("Explain Profile Match @usn6=Shortestpath((:``{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})-[?:`4esn`|:#usn7]->(`1esn` :@usn6)<-[`1esn`?]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})),(((`4esn` :usn2:`2esn`)-[`8esn`?:`4esn`|:#usn7]->({`3esn`:12 Starts With 0x0,`8esn`:0X7[0.e0][{`4esn`}]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]}))) Using Index usn2:`8esn`(`5esn`) Where _usn4[Count(*)]"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On()<-[`1esn`:_usn4]-()Assert Exists(@usn5(Distinct 9e1[$_usn4..0xabc],.e12 Ends With 1000 Ends With 010).usn1!)"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Match (:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}),_usn4=Allshortestpaths((((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})))) Using Scan usn1:usn2 Using Index _usn3:``(#usn7) Where 12.e12[``..usn2][{#usn7}..@usn5] Remove All(`6esn` In 00 Where `5esn`[..9e0][..01234567]).`4esn`,(_usn4 :#usn8{`5esn`})-[?*..{`1esn`:$`1esn`[07..][9e12..],@usn6:{7} Starts With $usn1 Starts With 1.0}]->(:`3esn`:`6esn`).usn2?,None(_usn4 In 0.0[..{999}][..0.0] Where {`7esn`} Is Not Null Is Not Null).`3esn`? Create `2esn`=((`4esn` :`2esn`)),Allshortestpaths(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})))"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Create Unique `3esn`=(((`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[usn1?:`4esn`|:#usn7 *0X7..0Xa]->({_usn4:01234567[..9e1]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}))) Foreach(`3esn` In {_usn4:$0[$1000..00][{0}..{usn1}]}[{`2esn`:$``['s_str'..][0x0..]}..]| Optional Match `1esn`=Allshortestpaths(((($_usn3)<-[``?:`3esn`|:@usn5{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(:@usn5{#usn7:{#usn7} In Count ( * ) In $#usn8})-[? *01..07]->(`8esn` :#usn7)))) Using Join On ``,`7esn`,#usn7 Where $`1esn`[$12][Count ( * )] Remove [`6esn` In 00 Where 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF].@usn5!,{usn1:$123456789 Starts With `5esn`}.`6esn`) Create Unique usn2=(`2esn` {@usn6:True Is Null Is Null})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)-[_usn3?:@usn6|`` *0x0..{`3esn`}]->(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}}),Shortestpath((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}))"), + octest_legacy:ct_string("Cypher 0.1000 Drop Constraint On(usn1:@usn5)Assert Exists(Allshortestpaths((({`6esn`:{`3esn`} Ends With `1esn` Ends With $@usn6,@usn6:$usn1 In 0.12 In $``}))).usn1?)"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Start `1esn`=Rel:usn2(`7esn`={7}) Unwind Reduce(`1esn`=12[..$@usn6],`` In {`1esn`} Starts With @usn6|00[..$123456789][..$`5esn`])[Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where {@usn5} Is Null)] As _usn3 Start #usn7=Node:#usn7('s_str') ,`6esn`=Node:@usn6({999});"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Drop Constraint On(@usn5:``)Assert Extract(_usn3 In {@usn5}[..#usn7] Where `2esn` Starts With `` Starts With 1e1).`2esn`? Is Unique;"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Return Distinct {usn1}[{`5esn`}..] As _usn4,[$_usn4[9e0..]][`8esn`(Distinct {7} Starts With $usn1 Starts With 1.0)..Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} Starts With 1.0 Starts With 00|$#usn7[..@usn6][..$0])][Any(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{#usn8:{`7esn`} Is Not Null Is Not Null,`4esn`:12 Starts With 0x0}] As `1esn` Skip 07[$`2esn`..0x0] Limit {_usn4}[..$#usn7] Return Distinct Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..],`` =~`6esn` =~usn1 As `2esn` Order By .e12[$#usn8..@usn6] Desc,{usn1}[$`8esn`..0.0] Desc Limit None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False) Is Null Return Distinct {`3esn`}[{12}..][0.12..] As ``,$``[True..] Order By [`2esn` In {999} Is Not Null Where {@usn6}[True..{_usn3}]] =~None(#usn7 In 123.654 Starts With $`` Where {usn2}[$`4esn`]) =~Extract(`1esn` In $12 Is Not Null Where Null Is Null Is Null|$123456789 =~`4esn`) Ascending,{0}[False..@usn5] Desc Limit 12 In 999;"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Foreach(_usn3 In Reduce(`1esn`=12[..$@usn6],`` In {`1esn`} Starts With @usn6|00[..$123456789][..$`5esn`])[Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where {@usn5} Is Null)]| Detach Delete $`2esn`,7[123456789..$123456789][``..00]) Return $1000 =~{1000} =~`5esn`,12e12 Is Not Null Is Not Null As `5esn` Order By {#usn8}[Null] Descending,{`4esn`} In _usn4 Asc Limit [Null Is Null Is Null,12e12 Ends With `4esn` Ends With 123456789,{@usn6} Is Not Null][Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[{999}..][{_usn4}..])..];"), + octest_legacy:ct_string("Explain Profile Create Constraint On()-[usn1:usn1]-()Assert Exists(Extract(usn1 In 12.e12 In {0} In 9e1 Where {12}[usn2])._usn4!)"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Using Periodic Commit 12 Load Csv With Headers From None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] As #usn8 Fieldterminator 's_str'"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create Constraint On(`1esn`:``)Assert Exists({`1esn`:12 Starts With 0x0}.`8esn`)"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Start `3esn`=Rel:`5esn`({0}) ,`6esn`=Relationship:`1esn`({@usn5})Where $7[{`1esn`}] Create usn2=(((:#usn8{`2esn`:12e12 Is Not Null,_usn3:12.e12[2.12..][0xabc..]})-[:_usn4|:usn1{``:0 Contains $usn2 Contains 12e12}]-(`4esn` :`2esn`)<-[`7esn`?:_usn3|`8esn`*..]->(`2esn` :_usn3))),`6esn`=((@usn6 :`2esn`)) Merge ((:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(:`6esn`:`8esn`{`3esn`:$`6esn`[{`3esn`}..12],_usn3:0[{@usn5}..][7..]})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`1esn`)) On Match Set `2esn`+=Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})],`3esn` =$12 Starts With $`8esn`,@usn5 =Reduce(#usn8={`8esn`}[..$`6esn`][..123.654],usn1 In 12.e12 In {0} In 9e1|\"d_str\" =~`1esn` =~{`5esn`}) On Match Set `6esn` =[`2esn` In {999} Is Not Null Where {@usn6}[True..{_usn3}]] =~None(#usn7 In 123.654 Starts With $`` Where {usn2}[$`4esn`]) =~Extract(`1esn` In $12 Is Not Null Where Null Is Null Is Null|$123456789 =~`4esn`),usn1:`8esn`:@usn5 Union All With Distinct *,01234567[..9e1] Where $7 Is Null Is Null;"), + octest_legacy:ct_string("Cypher Drop Constraint On(`2esn`:`4esn`)Assert Exists((_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`3esn` {`1esn`:$`6esn` Starts With 12.e12 Starts With $#usn7})-[_usn4 *0x0..]-(:``$_usn4).#usn8!)"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Remove (`3esn` :_usn3{_usn3:{_usn3} Contains 9e0 Contains $999,`2esn`:{_usn3}[$usn2..]})<-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(`` :`7esn`).usn2?,[0X0123456789ABCDEF[$`5esn`..],.e1 Contains $`3esn`,_usn4 In $usn1].`8esn`? Union All Load Csv From usn2 =~0X7 =~{#usn7} As `` Foreach(usn1 In {usn2}[$`4esn`]| Start `3esn`=Relationship:#usn8(_usn3={#usn7}) Where {999} Is Null Create (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` ))) Union All Unwind $`3esn`[..$`2esn`][..123.654] As `1esn` Foreach(#usn8 In 12 In 0e0| Unwind {`4esn`}[{`1esn`}][{1000}] As #usn7 Delete $`7esn` In 12) Unwind False Starts With 010 As @usn5"), + octest_legacy:ct_string("Cypher 999.999 Cypher Remove None(_usn4 In `2esn` Where 9e12 Ends With 123456789).`7esn`! Return Shortestpath(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})))[[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7[`5esn`]|{_usn3}[{0}]]..],0e0[{_usn3}..],.e1[..{`7esn`}][..{_usn3}] Skip {`2esn`}[12..][{_usn3}..] Create Unique usn2=((:#usn8{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})-[ *0X7..0Xa]->(@usn6 :`2esn`)<-[`2esn`?:@usn6|`` *..00]->({_usn3})),`8esn`=Allshortestpaths((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Union Return Distinct 0X0123456789ABCDEF[0X7..] As `4esn`,7 Contains 9e0 As `4esn`,0x0 Ends With {``} As `7esn` Skip 1.e1 Is Null Limit 0Xa[1000.._usn4] Start usn2=Relationship( {#usn7}) ;"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create Constraint On(`2esn`:``)Assert [`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]].`2esn`! Is Unique"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Drop Constraint On()-[_usn3:`6esn`]->()Assert Exists([_usn4 In `2esn` Where 12e12 Is Not Null|1000 Is Null Is Null].`2esn`?);"), + octest_legacy:ct_string("Cypher 0.1000 Drop Constraint On(`7esn`:_usn4)Assert Exists([#usn7 In 123.654 Starts With $`` Where _usn3 Contains .e0 Contains {usn2}|$usn1 In 01234567 In .e1].`8esn`!);"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Drop Constraint On(`7esn`:`7esn`)Assert Filter(`6esn` In Count(*) Ends With $`` Ends With {7} Where `7esn` Starts With 0X7 Starts With $`7esn`).`1esn` Is Unique"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 With 2.12 =~0x0 =~_usn4 Limit [123456789[0..]] Ends With Any(`1esn` In $12 Is Not Null) Ends With @usn5(Distinct 1.e1[{#usn8}],123.654 Ends With usn2 Ends With 0) Where `3esn`[..{_usn4}][..{@usn5}] Create `7esn`=Allshortestpaths(((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1))),@usn6=((`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]})<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)<-[`1esn`?:`4esn`|:#usn7 *..01234567]-(#usn8 {#usn7:$1000 Is Not Null Is Not Null})) Union Optional Match ((@usn6 :#usn7{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})-[`2esn`?:`` *999{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12}]-(usn2 {`7esn`:{usn1}[$`8esn`..0.0]})) Where `3esn`[..{_usn4}][..{@usn5}] Remove (_usn4 :#usn8{`5esn`})-[?*..{`1esn`:$`1esn`[07..][9e12..],@usn6:{7} Starts With $usn1 Starts With 1.0}]->(:`3esn`:`6esn`).usn2?,usn2($123456789[$`5esn`][$_usn4],#usn7 Starts With $999).@usn5? Create Unique `6esn`=(`4esn` {`2esn`:@usn5[$12..\"d_str\"]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]-({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Return Distinct *,{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] As `4esn` Skip `2esn`[usn2..][$7..] Union Remove Allshortestpaths(((:`8esn`:@usn5{@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2],``:{`7esn`} Is Not Null Is Not Null})-[?:#usn7|`2esn` *123456789..0X7{@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`}]->(`8esn` ))).usn1! Remove [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12].`2esn`,[usn1 Contains $7 Contains $``,$@usn5 In 's_str' In $12,$`1esn` Is Not Null Is Not Null].usn2!,All(`1esn` In `3esn`[07..] Where 999 Starts With 's_str').#usn8! Remove (`1esn` :usn2:`2esn`{`1esn`:{_usn3}[$usn2..],_usn3:$@usn6 Starts With $@usn5})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})._usn3?,(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}).usn2!,[$usn1[0X7],7[1000.._usn3][9e0..\"d_str\"],0X7 Starts With {999} Starts With 12e12].`7esn`!"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Create Constraint On()-[`6esn`:``]->()Assert Exists(({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})-[`6esn`?{#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}]-({`3esn`:9e1 =~999})<-[`1esn`? *0X0123456789ABCDEF{`5esn`:1.e1 Starts With $`2esn` Starts With $0}]->({_usn4:{usn1} =~123.654 =~\"d_str\"})._usn3?);"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Create Shortestpath((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->({_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})),Allshortestpaths((#usn7 {``:0x0 =~123.654 =~{999}})) Union Start usn2=Relationship:`5esn`(#usn7=\"d_str\") ,`8esn`=Rel( {`7esn`})Where $@usn5 In $usn2 In {1000} Create Unique #usn7=Allshortestpaths(((:`6esn`:`8esn`))),usn1=Allshortestpaths(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))) Merge Shortestpath(((({`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]})-[:#usn8|`2esn`]->(`` :usn2:`2esn`)<-[@usn5:_usn4|:usn1*]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF})))) On Create Set `6esn`({`6esn`}[..{`2esn`}]).`7esn` =`4esn` Is Not Null Is Not Null,`6esn` ={_usn3}[usn1][0],Single(`2esn` In {999} Is Not Null Where $7[{`1esn`}]).usn2? ={@usn6}[0Xa..$@usn6][0..`5esn`]"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On()<-[`7esn`:`7esn`]-()Assert Exists([_usn4 In `2esn` Where 0Xa Contains {`7esn`} Contains $999].`1esn`!)"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On(`8esn`:`1esn`)Assert Exists(({#usn7:#usn8 =~{999}})-[_usn3?:usn1 *12..{#usn7:0e0 Contains `3esn` Contains `7esn`}]-({_usn3}).`6esn`);"), + octest_legacy:ct_string("Cypher 0.1000 Load Csv With Headers From Count(*)[.e12..] As _usn4 Fieldterminator \"d_str\" Union All Create Unique `8esn`=((#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null})<-[?:#usn7|`2esn`{@usn5:$0 Is Not Null}]-(`` {``:0x0 =~123.654 =~{999}})),(({`1esn`:{123456789}[12..][$12..]})) Create Unique Allshortestpaths((`` :``)-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})) Unwind 01234567[..9e1] As usn2 Union All Match usn1=((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})),`8esn`=(`6esn` {``:`4esn`[usn1]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]->(#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``}) Using Scan `4esn`:#usn8 Unwind .e0[..{`5esn`}][..999] As `4esn`;"), + octest_legacy:ct_string("Profile Load Csv With Headers From 1.e1[1.0] As `3esn` Unwind `` Ends With {usn1} As `1esn` Union All Detach Delete ``[..$#usn7],{123456789}[..'s_str'][..$@usn6] Merge @usn6=Allshortestpaths(((`6esn` :_usn3{#usn7:$@usn6[01..@usn5][0x0..`4esn`],_usn4:9e12 =~123456789 =~$999})<-[usn1? *01..07]->({`1esn`:$123456789[..$7][..$`6esn`]}))) On Create Set None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]).@usn6! =0X0123456789ABCDEF[$`5esn`..],(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[_usn3?:`1esn`|:`3esn`{`3esn`:$@usn6 Contains $`7esn` Contains 1e1,@usn5:True Starts With $`4esn` Starts With 12e12}]-(`3esn` :_usn3{_usn3:{_usn3} Contains 9e0 Contains $999,`2esn`:{_usn3}[$usn2..]})<-[`3esn`?*{#usn8:$`1esn`[..{_usn3}]}]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}).`8esn`? =$12 Is Not Null On Match Set `7esn`+=Reduce(@usn5=True =~{`1esn`},_usn4 In 0.0[..{999}][..0.0]|7[$0..][{_usn4}..]) In Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`) In All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Merge Allshortestpaths((((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))));"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Foreach(#usn8 In 0.0 Is Not Null| Optional Match #usn7=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Where #usn7 Starts With 1000 Starts With .e1 Match `5esn`=Shortestpath((_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null})<-[@usn5?:`8esn`|:_usn4 *0X0123456789ABCDEF{usn1:False Contains $#usn8 Contains 9e1}]->({@usn6:$usn1[0X7],`3esn`:$7[$`3esn`]})),`8esn`=((@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})) Using Index @usn5:usn2(`6esn`)) Create Unique usn1=((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})),`7esn`=(`3esn` :`4esn`:@usn6{`5esn`:$`2esn`[$usn2..][{``}..]})-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]-(#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[@usn6?:`2esn`]->(_usn4 :`6esn`:`8esn`$``) Union All Unwind Null[010..][{``}..] As `3esn` Remove Case #usn8[`7esn`..] When 0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] Then {0}[False..@usn5] End.usn1,None(_usn3 In {@usn5}[..#usn7] Where {@usn6} In {#usn7} In 12.e12).`8esn`,({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[?:@usn6|`` *1000]->(:_usn4{`8esn`:12e12 Starts With `1esn` Starts With usn2})-[`2esn`:`2esn`{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})._usn3! Remove Extract(_usn4 In `2esn` Where 123.654 Starts With $``).usn2 Union Merge `2esn`=Shortestpath(((_usn3 {usn1:0Xa[0e0..{#usn7}],`1esn`:.e0[True..Count ( * )][#usn7..0X7]})-[?:#usn7|`2esn` *0x0..]->(usn1 :#usn8{``:$7[{`1esn`}]})-[#usn7? *..0Xa{usn1:$`6esn`[`8esn`][0.0],`5esn`:$`6esn`[{`3esn`}..12]}]-(#usn7 :#usn8))) On Create Set {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}.`7esn`! =$usn1[False][999] On Match Set _usn3 ={#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null,Reduce(usn2=.e1[..\"d_str\"],#usn7 In 123.654 Starts With $``|0Xa[$1000..$123456789]).@usn6 ={`2esn`}[Count(*)],`2esn`+=[{usn2}[$`4esn`]] Starts With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null] With `7esn` Ends With $_usn3 Ends With usn2 As _usn4,1000 Is Null Is Null Order By \"d_str\"[Count ( * )..`6esn`] Desc Skip 9e1 Ends With $@usn5 Ends With $123456789 Limit $`8esn`[0e0..] Where {999} Starts With {_usn4} Starts With 00;"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Drop Constraint On()-[_usn4:#usn8]->()Assert Exists(None(`6esn` In 00 Where 0.12[..$`6esn`][..$1000]).`2esn`);"), + octest_legacy:ct_string("Cypher Drop Constraint On(@usn6:`3esn`)Assert All(`6esn` In 00 Where usn1 Is Null Is Null).`7esn`! Is Unique;"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Create Constraint On()<-[_usn4:@usn5]-()Assert Exists(@usn5(Distinct 9e12 Is Not Null).``?);"), + octest_legacy:ct_string("Profile Drop Constraint On(usn2:`2esn`)Assert [00[07..],$1000 Starts With $`8esn` Starts With {`5esn`}].usn1! Is Unique;"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create Constraint On(`3esn`:_usn4)Assert Case When $`7esn`[$``..][999..] Then {_usn3} Contains 9e0 Contains $999 When 1000 Is Null Is Null Then .e1[@usn5]['s_str'] End.`6esn`! Is Unique;"), + octest_legacy:ct_string("Cypher Create Constraint On(#usn8:@usn6)Assert Exists(Reduce(#usn7=$@usn5[..usn2][..$#usn7],_usn3 In {@usn5}[..#usn7]|0.12[Count(*)..][$#usn7..]).`8esn`!);"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Start `5esn`=Relationship:`4esn`(#usn8=\"d_str\") Delete 0X0123456789ABCDEF[`5esn`..][$#usn8..],`3esn` Is Not Null Is Not Null,0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] With Distinct *,{`8esn`}[..$`6esn`][..123.654],None(@usn5 In Null =~12e12 Where #usn8[`7esn`..])[{123456789}..][All(`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0})..] Order By $0 Ends With False Ends With $_usn4 Descending,[0.12[..$`6esn`][..$1000],0.12 Starts With 9e12 Starts With $`1esn`,\"d_str\" Contains @usn6 Contains 12.e12] Is Null Desc Limit `1esn`[`3esn`..True] Where {12} Contains `7esn` Contains $_usn3"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Drop Constraint On(`8esn`:`1esn`)Assert Exists(({#usn7:#usn8 =~{999}})-[_usn3?:usn1 *12..{#usn7:0e0 Contains `3esn` Contains `7esn`}]-({_usn3}).`6esn`)"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Load Csv From 12.e12 Starts With 1000 Starts With 's_str' As usn2 Union Load Csv With Headers From {`2esn`} Ends With {#usn7} As `3esn` Union With Distinct {@usn5} Is Null,``[$0..][`1esn`..] As `4esn` Order By 0Xa[07..] Ascending Limit 's_str'[.._usn4][..``] Where $#usn7[$`4esn`] Optional Match `5esn`=Allshortestpaths(((_usn3 :`6esn`:`8esn`{`4esn`:$usn1 Starts With $999 Starts With {@usn5},`7esn`:``[..$#usn7]})-[#usn7?:`1esn`|:`3esn`]-(`7esn` :@usn5{`7esn`:{1000}[{usn1}][Null],`3esn`:7[$0..][{_usn4}..]})<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))),((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})) Using Join On `7esn` Using Join On #usn8,#usn8 Where `8esn`[..`4esn`][..$usn1]"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Start _usn3=Node( {usn2}) ,@usn5=Node:`6esn`(#usn8={`5esn`}) Union Merge _usn4=(({`5esn`:0Xa[0e0..{#usn7}]})<-[?:``]-(`7esn` :`3esn`:`6esn`)) On Match Set `5esn`+=Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..],[`6esn` In Count(*) Ends With $`` Ends With {7} Where @usn5 =~'s_str'|{_usn3} Contains 9e0 Contains $999].usn2 =9e12 Is Null On Match Set `5esn` =True[..010],#usn8+=Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}),`3esn` =@usn6[$_usn4] Unwind `7esn` Is Not Null Is Not Null As `6esn` Load Csv From (:usn1:_usn4)<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[usn2?:`2esn`*..]-(:`5esn`:@usn5{``:0.12[..$`6esn`][..$1000]}) Starts With Reduce(`8esn`=00[..$123456789][..$`5esn`],`` In {`1esn`} Starts With @usn6|False[999]) Starts With [`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]] As `4esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Remove Filter(`2esn` In {999} Is Not Null Where $usn1[$123456789..0][{`1esn`}..12.0]).`1esn`!,{usn2:_usn4 Is Null}.`7esn`,(:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})-[@usn6:@usn6|``*{#usn8:{@usn5}[12.0..1000][{`3esn`}..{7}],`8esn`:07[..`6esn`][..'s_str']}]->(`1esn` {_usn4:{1000} Ends With {`8esn`}})<-[? *0xabc..7]->(`3esn` :`3esn`:`6esn`).usn2? Unwind ({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..Case $1000 =~{1000} =~`5esn` When 9e1[9e1...e0] Then 00 Starts With $`6esn` When 123.654[1e1..][{#usn8}..] Then $`3esn`[{``}..] End] As `8esn` Remove Shortestpath((:_usn3{#usn7:#usn8 =~{999}})).#usn8,Any(#usn7 In 0Xa[@usn5][{`7esn`}]).`4esn`,Case When {1000}[{``}][999] Then `1esn` Is Null Is Null When Count(*)[.e12..] Then $#usn7[123.654] Else $1000 Starts With $`8esn` Starts With {`5esn`} End.usn1 Union All With Distinct Count ( * ) =~{`5esn`} =~{_usn4} As _usn3,Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999)[..Reduce(``={`8esn`}[True..][.e1..],#usn7 In 123.654 Starts With $``|{usn1}[$`8esn`..0.0])][..Any(`1esn` In $12 Is Not Null Where $12 Is Not Null Is Not Null)] As #usn8 Where {`3esn`} Ends With `1esn` Ends With $@usn6;"), + octest_legacy:ct_string("Explain Profile Load Csv From .e12[$#usn8..@usn6] As usn2 Fieldterminator \"d_str\" Union All Foreach(`3esn` In {`5esn`} Contains 123456789 Contains 9e12| With `7esn` =~.e12 =~$#usn7 As `3esn`,$`8esn` Is Null Is Null As `6esn` Order By False[{`8esn`}] Asc,Reduce(usn2={`6esn`}[..{`2esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|1e1[..01]) Is Not Null Is Not Null Asc,{1000}[1000][$usn1] Ascending Skip $#usn8[{12}..]) Union Merge `6esn`=((@usn5 {#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})-[{@usn5:1000 Is Null Is Null}]-(_usn3 :@usn5{`2esn`:@usn5[$12..\"d_str\"]})) On Match Set _usn3 ={#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null,Reduce(usn2=.e1[..\"d_str\"],#usn7 In 123.654 Starts With $``|0Xa[$1000..$123456789]).@usn6 ={`2esn`}[Count(*)],`2esn`+=[{usn2}[$`4esn`]] Starts With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null] On Match Set `` =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Merge ((usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[#usn7? *999{usn2:{1000}[{``}][999]}]-({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`)) On Create Set @usn6+={`3esn`} =~$7,{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}._usn3 ={`5esn`} Ends With \"d_str\" With *,$usn1 In 01234567 In .e1 Order By Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6) Starts With [$_usn3[010..False],$123456789 =~`4esn`,$usn1[$123456789..0][{`1esn`}..12.0]] Descending,{#usn7:`5esn`[..9e0][..01234567]} In Case 1e1[1.e1..][123.654..] When 7[1000.._usn3][9e0..\"d_str\"] Then 12.e12[``..usn2][{#usn7}..@usn5] When 1.e1[0xabc..] Then 1.e1 Starts With $`2esn` Starts With $0 End In Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null) Desc,{7}[$7..] Desc Skip \"d_str\"[{999}..] Limit @usn5[$12..\"d_str\"];"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Create Constraint On()-[`7esn`:`2esn`]->()Assert Exists(Reduce(`2esn`=9e0 In .e1 In 1.e1,`8esn` In $12[{7}..0X0123456789ABCDEF]|$`7esn`[$``..][999..]).`3esn`?)"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Unwind Count ( * )[00] As `3esn` Unwind 01[..{`7esn`}][..01234567] As @usn5 Start @usn6=Rel:`2esn`(`5esn`='s_str') ,_usn3=Relationship:`1esn`(#usn7=\"d_str\")Where 0.e0 Contains #usn7"), + octest_legacy:ct_string("Cypher Drop Constraint On(#usn8:`7esn`)Assert Exists(Extract(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`}|@usn6[{0}..]).usn1?);"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Drop Constraint On(_usn4:#usn7)Assert Exists(All(_usn3 In True[7][$999] Where $`3esn`[{``}..]).@usn6?)"), + octest_legacy:ct_string("Explain Profile With 0Xa[07..] Order By Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4])[Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End] Descending,Case When {@usn6} Contains 123.654 Contains 01 Then usn2 Ends With Count ( * ) Ends With $@usn6 End Is Not Null Is Not Null Desc,{_usn4}[{usn1}..$_usn3] Asc Skip .e1 Ends With {7} Ends With $usn1 Limit {`3esn`} =~$7;"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Drop Constraint On(`2esn`:`6esn`)Assert Exists(All(_usn3 In {@usn5}[..#usn7] Where {`4esn`}[{`1esn`}][{1000}]).`1esn`!)"), + octest_legacy:ct_string("Profile Using Periodic Commit 0Xa Load Csv From .e1 =~$`5esn` As _usn4 "), + octest_legacy:ct_string("Cypher 999.999 Cypher Drop Constraint On(@usn5:#usn8)Assert Exists(_usn3().#usn8?)"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Drop Constraint On()-[usn2:_usn4]-()Assert Exists({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2}.`3esn`!)"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(`5esn`:`1esn`)Assert (#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})-[?:@usn6|`` *1000]-(`5esn` :`7esn`)-[? *01..07]->(`8esn` :#usn7).`1esn`? Is Unique"), + octest_legacy:ct_string("Cypher Create Unique usn1=(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(:`2esn`{`2esn`:123456789[0..]})-[`3esn`:`6esn`{`3esn`}]-(@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]}) Union Start _usn4=Rel:_usn3('s_str') Foreach(_usn4 In `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]]| Create (((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})-[`4esn`?:``{usn2:12e12 Ends With `4esn` Ends With 123456789}]->(:`7esn`{usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))),(((#usn8 )-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))));"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Unique ((usn2 :_usn3)<-[?:_usn4|:usn1 *..00{`1esn`:{#usn8}[2.12]}]->(:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn8:#usn7|`2esn`]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})),`5esn`=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]}) Union All Match @usn5=(`4esn` :#usn7)<-[@usn6?:usn2|#usn7]->(`1esn` )-[`6esn`?*..{`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}]->({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6}),(usn2 {usn1:{`4esn`}[..07][..$`6esn`],`5esn`:'s_str'[..0X7]})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]->({_usn4})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`) Using Index @usn6:#usn8(_usn4) Using Scan ``:usn2 Where .e12[$#usn8..@usn6] Create `7esn`=Allshortestpaths(((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1))),@usn6=((`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]})<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)<-[`1esn`?:`4esn`|:#usn7 *..01234567]-(#usn8 {#usn7:$1000 Is Not Null Is Not Null}))"), + octest_legacy:ct_string("Cypher 7.0 Delete $@usn5[..usn2][..$#usn7],`3esn` In {@usn6},0[{@usn5}..][7..] Union All Remove [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12].`2esn`,[usn1 Contains $7 Contains $``,$@usn5 In 's_str' In $12,$`1esn` Is Not Null Is Not Null].usn2!,All(`1esn` In `3esn`[07..] Where 999 Starts With 's_str').#usn8! Remove Extract(`` In {`1esn`} Starts With @usn6 Where Null[{_usn4}..]|0Xa Contains {`7esn`} Contains $999).`5esn`!,All(`5esn` In $`2esn`[12.e12][$@usn5] Where {999} Starts With {12}).`2esn`,Reduce(`3esn`={7} Starts With $usn1 Starts With 1.0,_usn3 In True[7][$999]|123.654[{@usn5}..123.654][1.0..$12]).#usn8 Foreach(`` In {123456789} =~01234567 =~`3esn`| With (`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] Order By `1esn`[..00][..{7}] Ascending,`6esn` In Null Descending,{`3esn`} Is Null Descending Skip Case When .e1[@usn5]['s_str'] Then 123456789 Starts With {@usn6} Starts With $12 End Contains [`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`] Contains {@usn5:12 Is Not Null,`2esn`:$999 In 999} Where $``[..1.e1][..12] Start @usn5=Node:``(#usn7=\"d_str\") ,#usn8=Relationship:`4esn`(``='s_str')Where $``[..1.e1][..12]) Union All Unwind Filter(#usn7 In 0Xa[@usn5][{`7esn`}] Where {1000}[\"d_str\"..{@usn5}][$1000..$#usn8]) Starts With All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $`5esn`[$#usn7..][0xabc..]) Starts With [#usn7 Contains {`3esn`} Contains $`6esn`] As #usn8"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Load Csv From (#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As `` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Cypher Merge `4esn`=(((#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]})<-[`2esn`?:@usn6|`` *..00]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[`8esn`?{`6esn`:$#usn7 =~{12} =~False}]->(`3esn` :_usn3{_usn3:{_usn3} Contains 9e0 Contains $999,`2esn`:{_usn3}[$usn2..]}))) Create Shortestpath((((usn2 )<-[ *0xabc..7]->(:`4esn`:@usn6)<-[usn2?:usn2|#usn7]->(`3esn` :_usn4)))) Detach Delete None(usn1 In 12.e12 In {0} In 9e1 Where Count(*) In 0e0 In 9e1)[Case 0Xa[.._usn3][..$`6esn`] When {`4esn`}[$123456789..] Then {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] When {usn2}[$`4esn`] Then $1000 Starts With $`8esn` Starts With {`5esn`} Else @usn6[$_usn4] End..][@usn5($`7esn` Is Null Is Null)..]"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Create Constraint On()-[`6esn`:`6esn`]-()Assert Exists(Shortestpath(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))).#usn7!)"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` With Distinct (@usn5 {`2esn`:1.e1 =~9e12 =~`4esn`})<-[@usn5?:usn1 *..010{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}]->(`8esn` :`1esn`{usn2:0.0 Is Not Null,usn2:0.12[Count(*)..][$#usn7..]})-[`5esn`{`7esn`:@usn5[..$@usn5][..0Xa]}]->(#usn7 :#usn8{_usn3:`1esn`[..00][..{7}]}) In Case When .e0[True..Count ( * )][#usn7..0X7] Then $@usn5[`6esn`..] When 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF Then $`1esn`[#usn8][$@usn5] End In @usn6(`` Ends With $`4esn` Ends With 0X0123456789ABCDEF),{`1esn`:{`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`],`5esn`:0.12 Contains 12.0} Ends With [{usn2},0.12[Count(*)..][$#usn7..]] Ends With {0},$`2esn` Ends With 0.12 Ends With .e1 As `` Limit {_usn3} Contains $`1esn` Contains 12.0 Where {999} Is Null Create Unique usn2=(((:`2esn`{`4esn`:`3esn` Is Not Null Is Not Null})-[?:#usn7|`2esn` *0x0..]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5))) Merge `1esn`=(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}) On Match Set Any(_usn4 In `2esn` Where 0X0123456789ABCDEF[9e12]).`5esn`! =(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) On Match Set `3esn`(Distinct 's_str' Starts With 12e12 Starts With $_usn4).`3esn` =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End;"), + octest_legacy:ct_string("Explain Profile Create (:`8esn`:@usn5)<-[?:`1esn`|:`3esn`{#usn8:$0 Is Not Null,``:True Is Null Is Null}]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0}),(:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}) Union Unwind [`1esn` In 0.e0 =~`1esn` =~`6esn` Where `8esn` Contains $`3esn` Contains {`4esn`}|{`4esn`}[..{`4esn`}]][Reduce(usn2={0}[False..@usn5],`1esn` In `3esn`[07..]|$@usn6 =~#usn8)][Extract(`1esn` In `3esn`[07..] Where 00[07..]|$#usn7 Starts With 9e0 Starts With 2.12)] As #usn7 Start `3esn`=Relationship:@usn6({`2esn`}) ,`8esn`=Node:`6esn`('s_str')Where $@usn6 =~#usn8 Merge _usn3=(((#usn8 :#usn7)-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})))"), + octest_legacy:ct_string("Profile Drop Constraint On(``:`7esn`)Assert {@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2],``:{`7esn`} Is Not Null Is Not Null}.#usn8! Is Unique;"), + octest_legacy:ct_string("Cypher 999.999 Cypher Drop Constraint On()-[``:usn2]->()Assert Exists(`4esn`(Distinct 12e12 Is Not Null,{#usn8} =~{999} =~{#usn7}).#usn8!)"), + octest_legacy:ct_string("Cypher Drop Constraint On(`2esn`:usn2)Assert Exists(None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $`5esn`[$#usn7..][0xabc..]).`4esn`?)"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Drop Constraint On(`8esn`:`4esn`)Assert [00[..$123456789][..$`5esn`],{_usn3} Contains $`1esn` Contains 12.0].``? Is Unique"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Create Constraint On(@usn5:`4esn`)Assert [_usn4 In `2esn` Where 0Xa Contains {`7esn`} Contains $999].`1esn`! Is Unique"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Remove [`5esn` In $`2esn`[12.e12][$@usn5] Where False[0Xa..$usn1]|$usn1[$123456789..0][{`1esn`}..12.0]].@usn6! Union Merge _usn3=((_usn3 :`1esn`)) Delete 12e12 Ends With `6esn` Ends With {`3esn`} Load Csv From $@usn6[$0..usn1][0X0123456789ABCDEF..$999] As usn1 Fieldterminator \"d_str\" Union Load Csv With Headers From 1.e1[1.0] As `3esn` Unwind `` Ends With {usn1} As `1esn`"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Create Unique _usn4=((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null})<-[usn2 *..01234567{`1esn`:@usn5 =~'s_str',`8esn`:{999} Starts With {_usn4} Starts With 00}]->(usn1 {`5esn`})<-[:`8esn`|:_usn4 *1000]->(`5esn` $`8esn`))),(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})<-[?:`6esn` *07]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}) Start #usn8=Node:`2esn`(#usn7={usn1}) ,``=Node:`5esn`(#usn7=\"d_str\")Where {``}[_usn4..$`1esn`] Foreach(_usn4 In 12e12 Ends With `4esn` Ends With 123456789| Create `2esn`=(`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4),`5esn`=(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}) Return *,Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000)[[_usn4 In `2esn` Where `3esn` Is Not Null Is Not Null]..All(`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999])][(_usn4 {_usn3:9e1 =~999})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})..{`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}] As _usn3,Reduce(_usn4=.e1 Starts With $_usn4 Starts With {`1esn`},`6esn` In 00|usn2[True])[..[9e12[..0X7]]][..$`1esn`] Skip 0e0[..$@usn5][..$`8esn`] Limit Reduce(`3esn`={_usn3} Is Not Null,usn1 In 12.e12 In {0} In 9e1|0[Count(*)][0e0])[`6esn`(``[..0X0123456789ABCDEF])..Single(`` In {`1esn`} Starts With @usn6 Where {_usn3}[$usn2..])]) Union All Start `5esn`=Relationship:@usn6(_usn4={_usn4}) Delete usn1 Is Not Null Is Not Null;"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On()-[`1esn`:`4esn`]-()Assert Exists(Reduce(@usn5=12.e12[``..usn2][{#usn7}..@usn5],#usn7 In 0Xa[@usn5][{`7esn`}]|$`2esn`[$usn2..][{``}..]).`7esn`?)"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Using Periodic Commit 0xabc Load Csv From Shortestpath(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})))[[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7[`5esn`]|{_usn3}[{0}]]..] As `4esn` With (`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] Order By `1esn`[..00][..{7}] Ascending,`6esn` In Null Descending,{`3esn`} Is Null Descending Skip Case When .e1[@usn5]['s_str'] Then 123456789 Starts With {@usn6} Starts With $12 End Contains [`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`] Contains {@usn5:12 Is Not Null,`2esn`:$999 In 999} Where $``[..1.e1][..12] Load Csv From Shortestpath(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})))[[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7[`5esn`]|{_usn3}[{0}]]..] As `4esn` "), + octest_legacy:ct_string("Profile Create Constraint On(`5esn`:`3esn`)Assert All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`).@usn5? Is Unique;"), + octest_legacy:ct_string("Cypher 7.0 Create (`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})-[``:usn2|#usn7 *..0Xa]->(:`4esn`:@usn6{usn1:$7[{`1esn`}],#usn8:\"d_str\"[..0.e0]}),`3esn`=Allshortestpaths((:`3esn`:`6esn`{_usn4:{usn1} In Count ( * )})) Start `2esn`=Rel:#usn7(`6esn`=\"d_str\") ,`3esn`=Node:``(_usn3={0})Where #usn8 =~{999} Start @usn5=Relationship(999) ,``=Relationship( {``}) Union Unwind {@usn6} In {#usn7} In 12.e12 As `8esn` Union All Optional Match Allshortestpaths((`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})),Shortestpath((:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})) Using Join On _usn4,@usn6 Remove All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0.12[..$`6esn`][..$1000]).@usn6?,{usn2:$`5esn`[`4esn`][_usn3]}.@usn6?"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Detach Delete {`4esn`:`7esn` Contains `5esn` Contains 0X7} Ends With Allshortestpaths((`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4)) Merge Shortestpath((((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})<-[`5esn`?:`7esn`]->({@usn5:Count ( * ) Is Null})<-[#usn8?:``]-(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})))) Union Return Distinct $`2esn`[{usn2}],`7esn` Ends With $_usn3 Ends With usn2 Order By $_usn3[..$`2esn`][..\"d_str\"] Desc Skip `4esn`[{1000}][{`5esn`}];"), + octest_legacy:ct_string("Explain Profile Delete $123456789 Contains [True Starts With $`2esn` Starts With {@usn6}] Contains {@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]} Load Csv With Headers From 7[$0..][{_usn4}..] As usn1 Start `7esn`=Node:`4esn`(``='s_str') Where 01 =~$`1esn`;"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Merge `2esn`=((:`5esn`:@usn5)) On Create Set [12.e12[{7}..7],_usn3[\"d_str\"]]._usn4! =$``[..1.e1][..12],#usn7 =1.e1 Is Null,usn1+=Reduce(@usn5={`1esn`} In 12.e12 In 9e1,`5esn` In $`2esn`[12.e12][$@usn5]|$`6esn` Ends With {0} Ends With {`7esn`}) Is Null On Match Set Reduce(#usn8=Count ( * )[..12][..{@usn6}],`` In {`1esn`} Starts With @usn6|@usn6[{0}..]).@usn5 =$#usn7 =~{12} =~False"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Drop Constraint On(`2esn`:`3esn`)Assert Exists([{7}[$123456789..{1000}][$`3esn`..`7esn`],\"d_str\" Ends With False Ends With {@usn6},usn1 Contains $7 Contains $``].usn2)"), + octest_legacy:ct_string("Profile Start `7esn`=Node:`4esn`(``='s_str') ,@usn6=Node:`5esn`({0}) Merge (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}) Unwind All(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) In Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4]) In [``[00..$7],.e1 Contains $`3esn`,{``} Starts With 123456789 Starts With usn2] As `` Union All With Distinct *,`7esn`[{7}..@usn5],$`5esn`[`1esn`..$123456789] Order By $999 Contains {7} Desc,Shortestpath(((usn1 {``:.e12 =~$_usn4})))[`6esn`(_usn3 Contains .e0 Contains {usn2},`3esn`[07..])][[.e12 Ends With 1000 Ends With 010,Count(*)]] Asc Skip $`6esn`[..1.e1][..1e1] Limit All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Contains `4esn`(999 Starts With 's_str') Contains (`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Match Allshortestpaths((#usn8 :`7esn`)) Using Join On usn1 Using Join On `6esn`,_usn4;"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Create Constraint On(usn2:#usn8)Assert Exists(Filter(`6esn` In Count(*) Ends With $`` Ends With {7} Where `7esn` Starts With 0X7 Starts With $`7esn`).`8esn`)"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Create Constraint On(usn1:usn1)Assert {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}.`7esn` Is Unique;"), + octest_legacy:ct_string("Explain Profile Create Unique (({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]})),Allshortestpaths((((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})))) Return {`8esn`}[@usn5..][01..],All(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) In Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4]) In [``[00..$7],.e1 Contains $`3esn`,{``} Starts With 123456789 Starts With usn2] As `5esn` Order By [#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}][..[$`6esn`[`8esn`][0.0],$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,True[$`7esn`..{1000}]]][..None(`2esn` In {999} Is Not Null Where {``} Ends With .e12 Ends With 0.e0)] Desc,{@usn5}[Count(*)..] Asc,None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False)[Shortestpath(((({``:$7[{`1esn`}]})<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`)<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(#usn7 :@usn6))))..Extract(_usn3 In True[7][$999] Where $7 Is Null Is Null)][{`4esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:.e12 Is Null Is Null}..[`6esn` In Count(*) Ends With $`` Ends With {7} Where `1esn` =~1000 =~1000]] Descending Limit $`8esn` =~0x0 =~usn2 Union All With $`2esn`[{usn2}],`7esn` Ends With $_usn3 Ends With usn2 Skip .e1 Ends With 0Xa Ends With 00 Where `1esn`[..01] Create @usn5=Allshortestpaths((`2esn` :`5esn`:@usn5)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})),`2esn`=((@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]}))"), + octest_legacy:ct_string("Profile Create Constraint On()-[`2esn`:_usn4]->()Assert Exists(Case When 1.e1[..12.e12][..$usn2] Then 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF When 0xabc[$@usn5] Then $@usn6 Starts With $@usn5 End.`4esn`!);"), + octest_legacy:ct_string("Profile Create Constraint On()<-[``:`2esn`]-()Assert Exists(Case $usn1 =~010 =~07 When $`2esn`[$usn2..][{``}..] Then .e1[0.12] End._usn4);"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Merge Allshortestpaths((`` :``)-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})) On Match Set `6esn` ={_usn3}[usn1][0],Shortestpath((@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})).@usn5? =\"d_str\" Contains @usn6 Contains 12.e12,`7esn`+=`3esn`[..{_usn4}][..{@usn5}] On Create Set (@usn5 :usn1:_usn4)-[``?:#usn7|`2esn`{`5esn`:123456789 Starts With {@usn6} Starts With $12}]->(`7esn` {@usn6:{_usn4} Is Null}).`2esn`! =07[$#usn8],Case When $7 Ends With $`8esn` Then .e12 Contains $`1esn` Contains $@usn6 End.`8esn`! =$`6esn`['s_str'..][{_usn4}..],`2esn` ={usn1:$`8esn` In $`2esn` In {7},`7esn`:{`2esn`} In $123456789 In True}[..(:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})-[`3esn`:`` *123456789..0X7{#usn8:12 Starts With $#usn7}]-(`3esn` :`7esn`)-[?*..{`1esn`:$`1esn`[07..][9e12..],@usn6:{7} Starts With $usn1 Starts With 1.0}]->(:`3esn`:`6esn`)][..Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6)] Union With Distinct (@usn5 {`2esn`:1.e1 =~9e12 =~`4esn`})<-[@usn5?:usn1 *..010{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}]->(`8esn` :`1esn`{usn2:0.0 Is Not Null,usn2:0.12[Count(*)..][$#usn7..]})-[`5esn`{`7esn`:@usn5[..$@usn5][..0Xa]}]->(#usn7 :#usn8{_usn3:`1esn`[..00][..{7}]}) In Case When .e0[True..Count ( * )][#usn7..0X7] Then $@usn5[`6esn`..] When 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF Then $`1esn`[#usn8][$@usn5] End In @usn6(`` Ends With $`4esn` Ends With 0X0123456789ABCDEF),{`1esn`:{`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`],`5esn`:0.12 Contains 12.0} Ends With [{usn2},0.12[Count(*)..][$#usn7..]] Ends With {0},$`2esn` Ends With 0.12 Ends With .e1 As `` Order By Case $123456789[..$7][..$`6esn`] When 0.e0 Contains #usn7 Then {`6esn`} Contains 07 When {_usn4} In {1000} Then ``[..$#usn7] End[Shortestpath((usn1 :usn1:_usn4))..][Reduce(@usn6={`4esn`} Starts With $7 Starts With $``,`` In {usn1} Ends With {`6esn`} Ends With 123456789|$`6esn` Starts With 12.e12 Starts With $#usn7)..] Descending,'s_str'[_usn4..0x0] Descending Skip 12.e12 Starts With 1000 Starts With 's_str' Where $#usn7[`5esn`]"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Create Constraint On(`2esn`:@usn5)Assert Allshortestpaths((usn1 :usn2:`2esn`{`1esn`:{123456789}[12..][$12..]})).`3esn` Is Unique"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Unwind Count(*)[..``][..#usn8] As #usn7 Union Return Distinct *,(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As #usn7,.e1 Ends With 0Xa Ends With 00 As _usn3 Order By usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3) Ascending,.e1 =~$`5esn` Desc,Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000|$@usn5 In $usn2 In {1000}) Is Not Null Ascending Limit 12 Starts With 7 Starts With $`5esn` With *,Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*))[Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12)..] As `3esn`,123456789[12..$`4esn`] As `7esn` Skip 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF Unwind 0x0[{7}..] As #usn7 Union Start usn1=Relationship:`8esn`(`8esn`={12}) Where {@usn5}[..#usn7]"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Drop Constraint On()-[`1esn`:`7esn`]->()Assert Exists(Shortestpath((((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]})))).`2esn`);"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Return {@usn5} Is Null,``[$0..][`1esn`..] As `4esn` Order By 0Xa[07..] Ascending Limit 's_str'[.._usn4][..``];"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Create Index On:_usn4(@usn5);"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Create Unique @usn5=Allshortestpaths(((_usn3 {@usn5:.e12 =~.e0})<-[`3esn` *..010]-({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))) Detach Delete {999}[$123456789..][12..],$`6esn`[..1.e1][..1e1]"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On()-[_usn3:_usn3]-()Assert Exists(None(`1esn` In $12 Is Not Null Where `8esn`[..`4esn`][..$usn1]).`5esn`)"), + octest_legacy:ct_string("Cypher 7.0 Create Constraint On(`3esn`:``)Assert Exists(Filter(_usn3 In True[7][$999] Where 's_str'[..0X7]).#usn7!)"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Drop Constraint On()-[`7esn`:#usn7]->()Assert Exists((`1esn` :_usn4)<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})._usn3);"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create Shortestpath((:`2esn`{`4esn`:`3esn` Is Not Null Is Not Null})<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(usn1 {`4esn`:1.0[{999}][$999],``:9e1[9e1...e0]})) Create ((usn1 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})) Load Csv With Headers From Count(*)[.e12..] As _usn4 Fieldterminator \"d_str\" Union All Detach Delete $`3esn`[{``}..] Start `6esn`=Node:@usn6(`3esn`='s_str') Where True Is Not Null Union Unwind $#usn7 =~9e1 =~$_usn4 As _usn4"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On(`3esn`:#usn8)Assert Exists([_usn4 In `2esn` Where 9e12 Ends With 123456789].@usn6!)"), + octest_legacy:ct_string("Cypher 0.1000 Optional Match `6esn`=(((:#usn8{`2esn`:12e12 Is Not Null,_usn3:12.e12[2.12..][0xabc..]})-[:_usn4|:usn1{``:0 Contains $usn2 Contains 12e12}]-(`4esn` :`2esn`)<-[`7esn`?:_usn3|`8esn`*..]->(`2esn` :_usn3))),@usn5=(({`5esn`:0Xa[0e0..{#usn7}]})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]-(:#usn7)-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})) Remove [01 =~$`1esn`,1.e1[12e12..{`6esn`}],`8esn`].`1esn` Foreach(`6esn` In Filter(#usn7 In 123.654 Starts With $`` Where Count(*)[010..][#usn7..])[None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $999 Ends With {0})..]| With Distinct *,{1000}[7..$usn2] As @usn5,[12e12 Starts With `1esn` Starts With usn2,Count ( * ) Is Null][(#usn8 {``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})][Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))] As `1esn` Where {_usn4}[{``}..]);"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On(usn2:`3esn`)Assert Extract(_usn4 In `2esn` Where {_usn3}[$usn2..]|9e1[9e1...e0]).``? Is Unique;"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Optional Match (((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))) Using Scan #usn7:usn2 Using Join On `1esn`,#usn8 With `4esn`[usn1] As @usn5 Skip 1.e1 Is Null Where $@usn6 Contains $`7esn` Contains 1e1 Union All Start _usn4=Node:`7esn`(@usn5={`4esn`}) ,`7esn`=Node:usn2(usn2='s_str') Delete (`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->({_usn3})[Reduce(usn1=0x0[$`8esn`.._usn3],_usn4 In `2esn`|{123456789} Is Not Null)..Reduce(usn1=12.0[2.12..][{`5esn`}..],_usn3 In {@usn5}[..#usn7]|1000[$7..$123456789])][[_usn4 In `2esn` Where 9e12 Ends With 123456789|07 =~$`8esn` =~9e1]..(:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->()],{0}[False..@usn5],_usn4 Is Null Is Null Remove [0X0123456789ABCDEF[$`5esn`..],#usn7 Ends With $#usn7 Ends With {`8esn`}].`5esn`!,Case `6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}] When 1.e1[..12.e12][..$usn2] Then $_usn3[{999}] When $7 Is Null Then `1esn` =~1000 =~1000 Else 9e12[$`5esn`] End.`3esn`?,exists(Distinct #usn8 =~{999},$`2esn` Ends With 0.12 Ends With .e1).@usn5?;"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Unwind Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {7} Contains $123456789) Is Not Null As `5esn` Union Foreach(@usn6 In Case $123456789[..$7][..$`6esn`] When 0.e0 Contains #usn7 Then {`6esn`} Contains 07 When {_usn4} In {1000} Then ``[..$#usn7] End[Shortestpath((usn1 :usn1:_usn4))..][Reduce(@usn6={`4esn`} Starts With $7 Starts With $``,`` In {usn1} Ends With {`6esn`} Ends With 123456789|$`6esn` Starts With 12.e12 Starts With $#usn7)..]| Optional Match `5esn`=((`8esn` :@usn6)),`8esn`=Shortestpath(({`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})) Using Scan @usn6:@usn6) Create `2esn`=(`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4) Unwind usn2[999..] As `1esn`"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create ((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` )),#usn7=((`4esn` :`1esn`)-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})) Create Unique `3esn`=(((`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[usn1?:`4esn`|:#usn7 *0X7..0Xa]->({_usn4:01234567[..9e1]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}))) Create (#usn7 :#usn8)-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0}),`3esn`=Shortestpath(((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[:#usn7|`2esn`]-(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}}))) Union All Merge `5esn`=({_usn4:0.e0[{999}][{`1esn`}]})-[`2esn`:`3esn`|:@usn5 *..010{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->({`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]});"), + octest_legacy:ct_string("Cypher Create Constraint On()-[`8esn`:`3esn`]-()Assert Exists(None(`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]).`6esn`)"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Drop Constraint On(`1esn`:`3esn`)Assert Case 0.e0 =~`1esn` =~`6esn` When $`1esn`[$12][Count ( * )] Then 0Xa Contains {`7esn`} Contains $999 Else 0.12[..$`6esn`][..$1000] End.`2esn`! Is Unique;"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Create `1esn`=(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[#usn8? *..0Xa{`4esn`:$`2esn` Ends With 0.12 Ends With .e1,`4esn`:07 =~@usn5}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}),Shortestpath((({_usn4:False[0Xa..$usn1]}))) Union All Unwind {`4esn`} In _usn4 As usn2 Merge ((usn2 :_usn3)<-[?:_usn4|:usn1 *..00{`1esn`:{#usn8}[2.12]}]->(:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn8:#usn7|`2esn`]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)}))"), + octest_legacy:ct_string("Cypher 7.0 Create #usn8=Allshortestpaths((({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))),@usn6=((usn2 :_usn3)-[`8esn`?{@usn5:Null Is Null Is Null}]->({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})-[_usn3 *..01234567$`5esn`]->({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})) Start `6esn`=Relationship:usn2({`5esn`}) Where `7esn`[0..$usn2][{usn2}..0.e0] Create Unique usn1=(((usn2 )<-[ *0xabc..7]->(:`4esn`:@usn6)<-[usn2?:usn2|#usn7]->(`3esn` :_usn4))),`4esn`=(`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})-[?:@usn6|`` *..0Xa]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]});"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Drop Constraint On(usn1:`5esn`)Assert Exists({@usn6:{7} Contains $123456789}.`8esn`)"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Remove [`6esn` In 00 Where 0.12[..$`6esn`][..$1000]|Null =~12e12]._usn4?,[#usn7 In 123.654 Starts With $`` Where `1esn` In 07|0.0[..{999}][..0.0]].`7esn`!,Shortestpath(({`6esn`:$``['s_str'..][0x0..]})).`8esn` Unwind @usn6[Count ( * )][True] As usn2 Unwind 0x0[{7}..] As `3esn` Union All Optional Match @usn6=Shortestpath(((usn1 :`5esn`:@usn5)-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:usn2:`2esn`{usn1:$7 Is Null Is Null})-[? *01..07]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}))),(`2esn` :`5esn`:@usn5{_usn4:{`2esn`} Is Not Null Is Not Null,usn2:{`4esn`} In _usn4})<-[#usn7?:#usn8|`2esn`]->(#usn7 {usn1:$#usn7 =~{12} =~False,#usn7:0x0 =~123.654 =~{999}})-[`8esn`?]->(`3esn` :`6esn`:`8esn`) Using Scan `3esn`:#usn8 Using Join On `1esn`,`7esn`,usn2 Where {``} Is Null Is Null Merge `6esn`=(`3esn` :#usn7)-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}) Union All Return *,Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000)[[_usn4 In `2esn` Where `3esn` Is Not Null Is Not Null]..All(`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999])][(_usn4 {_usn3:9e1 =~999})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})..{`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}] As _usn3,Reduce(_usn4=.e1 Starts With $_usn4 Starts With {`1esn`},`6esn` In 00|usn2[True])[..[9e12[..0X7]]][..$`1esn`] Skip 0e0[..$@usn5][..$`8esn`] Limit Reduce(`3esn`={_usn3} Is Not Null,usn1 In 12.e12 In {0} In 9e1|0[Count(*)][0e0])[`6esn`(``[..0X0123456789ABCDEF])..Single(`` In {`1esn`} Starts With @usn6 Where {_usn3}[$usn2..])] Start `8esn`=Relationship:`4esn`(``='s_str') ,`8esn`=Rel( {`7esn`})"), + octest_legacy:ct_string("Profile Match #usn8=Allshortestpaths((({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))),@usn6=((usn2 :_usn3)-[`8esn`?{@usn5:Null Is Null Is Null}]->({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})-[_usn3 *..01234567$`5esn`]->({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})) Using Join On `5esn`,``,usn1 Using Join On #usn8,usn2,#usn7 Where 0X7[0X7..][Count ( * )..];"), + octest_legacy:ct_string("Cypher 0.1000 Optional Match usn1=((`5esn` :_usn4)),((`4esn` :`8esn`:@usn5)-[`6esn`:usn1{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]->(:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]-(@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})) Using Index @usn5:usn2(`2esn`) Create Unique #usn7=Allshortestpaths(((`5esn` :`2esn`{#usn8:True[$`7esn`..{1000}]})<-[usn1?:`6esn` *12..{`6esn`:999 Starts With $123456789 Starts With {``}}]->({_usn4}))),((:#usn7{#usn7:$`8esn` In $`2esn` In {7}})) Union All Unwind {#usn7}[{#usn7}..][$`4esn`..] As `5esn` Merge Shortestpath(({usn2:#usn8 =~{_usn3} =~``})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})-[?:`1esn`|:`3esn` *999]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}));"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Remove {@usn6:`7esn` Ends With $_usn3 Ends With usn2,_usn4:{12} Starts With #usn8 Starts With 0e0}.#usn7! With [`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]][..Reduce(`4esn`=@usn5[12.0][{1000}],_usn4 In `2esn`|0[$`6esn`...e1][`1esn`..$`7esn`])][..[7[010][00],$7[$`3esn`],#usn7 =~{`4esn`} =~123456789]],$1000[..12.0][..0e0] Where $12 Contains 0Xa Union Load Csv With Headers From `2esn` As `` ;"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Create Unique ((({_usn4})<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})-[@usn6?:`2esn`]->(`7esn` ))),``=(({usn1:{usn2} =~@usn6 =~{`4esn`},usn1:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[``?:`6esn` *07{`5esn`:{12} Contains `7esn` Contains $_usn3,_usn4:$`3esn` In 9e12 In ``}]-(:@usn6)-[#usn7{usn1:1.0[{999}][$999]}]->(:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]}));"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(_usn3:usn2)Assert {`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}._usn4? Is Unique"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Unwind `6esn`[{`6esn`}..] As usn2 Merge `3esn`=Allshortestpaths((`7esn` :@usn6)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]})) On Create Set usn1 =#usn8 In `8esn` In 07 On Match Set [\"d_str\"[{`8esn`}..]].#usn8? =$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create Constraint On(`4esn`:_usn4)Assert Exists(None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $`6esn`[{`3esn`}..12]).#usn8)"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher With Distinct *,$123456789[..$7][..$`6esn`],Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF) Ends With Case {`2esn`}[..{@usn6}][..1.e1] When Null Is Null Is Null Then #usn7 Contains {`3esn`} Contains $`6esn` When 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Then $usn1[..'s_str'][..$#usn8] End Ends With Filter(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789}) Skip Count(*)[..``][..#usn8] Limit 9e12[{123456789}..][$`2esn`..] Where 0X0123456789ABCDEF[$999..][@usn5..] Union All Merge `3esn`=Allshortestpaths((:@usn6{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]})) On Match Set `2esn`+=0X0123456789ABCDEF[{@usn5}..1.e1][$_usn3..{7}],`2esn` =True[7][$999],_usn3+=$usn2 Starts With $`5esn` On Match Set Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where Count(*) In 0e0 In 9e1).usn1? =[`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7}|usn2[`7esn`..{`3esn`}][$7..{#usn7}]][..[`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]|9e12[..0X7]]][..[`2esn` Ends With $`4esn` Ends With {#usn7},'s_str'[..0X7],{#usn8} =~{999} =~{#usn7}]] Optional Match #usn7=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Where #usn7 Starts With 1000 Starts With .e1 Union All Start _usn4=Node:#usn8(#usn7='s_str') ,@usn5=Node:_usn4(``=\"d_str\")"), + octest_legacy:ct_string("Cypher Create Constraint On(_usn4:#usn8)Assert [{12}[00..{@usn6}][1.e1..0],usn2[`7esn`..{`3esn`}][$7..{#usn7}]].usn2? Is Unique;"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On(`7esn`:``)Assert [usn1 In 12.e12 In {0} In 9e1 Where .e12 =~$_usn4|0.e0 Ends With False].#usn8! Is Unique"), + octest_legacy:ct_string("Cypher 7.0 Drop Constraint On(`8esn`:`8esn`)Assert Exists((`2esn` :@usn6{7})-[?:`1esn`|:`3esn`{@usn5:{`6esn`} Ends With 0e0 Ends With {``},@usn5:{`1esn`} Starts With `4esn` Starts With {0}}]->(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]}).`5esn`);"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On(``:@usn5)Assert Exists(All(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $`6esn`[{`3esn`}..12]).@usn6)"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Create Constraint On(#usn7:`3esn`)Assert None(`1esn` In `3esn`[07..] Where 07 Is Null).@usn5? Is Unique"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On()-[@usn6:`2esn`]-()Assert Exists(Filter(`1esn` In $12 Is Not Null Where {@usn5}[1e1..][9e1..]).@usn6!)"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Create usn2=(((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[{#usn7:'s_str'[_usn4..0x0]}]-(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``}))),`7esn`=Allshortestpaths(((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]->(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}))) Remove Reduce(`2esn`={1000},_usn3 In {@usn5}[..#usn7]|00).`6esn`! Create Unique #usn7=((_usn3 :`7esn`)<-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})),@usn5=(({`5esn`:0Xa[0e0..{#usn7}]})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]-(:#usn7)-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})) Union Create Unique `5esn`=Allshortestpaths((usn2 :`5esn`:@usn5)),@usn5=(({_usn4:False[0Xa..$usn1]})) Foreach(`1esn` In True[$`7esn`..{1000}]| Create (((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4}))) Unwind `3esn`[$@usn5..@usn5][9e1..$``] As #usn8) Load Csv With Headers From {`4esn`}[{`1esn`}][{1000}] As `6esn` Fieldterminator \"d_str\" Union Detach Delete 2.12 In $`8esn` In {`7esn`},12.e12[``..usn2][{#usn7}..@usn5],Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where 12e12 Is Not Null)[..Reduce(`1esn`=$`3esn` In 9e12 In ``,`2esn` In {999} Is Not Null|$@usn5[..usn2][..$#usn7])]"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Start @usn6=Node:`4esn`(``='s_str') ,`2esn`=Rel:#usn7(`6esn`=\"d_str\")Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn` Merge Allshortestpaths((@usn6 :usn1:_usn4)) On Match Set usn1 =Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))) =~Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) Create Allshortestpaths((((@usn5 :@usn5)-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(_usn4 :_usn4)<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})))),`2esn`=Allshortestpaths((((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[{#usn7:'s_str'[_usn4..0x0]}]-(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})))) Union All Create `6esn`=(_usn3 {@usn5:.e12 =~.e0})-[?:`7esn`]-(usn2 :`4esn`:@usn6)-[?:@usn6|`` *1000]-(`5esn` :`7esn`),@usn5=((({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})<-[?:``]-(`1esn` :#usn7)-[?:`4esn`|:#usn7]->(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})))"), + octest_legacy:ct_string("Cypher Delete 0.0 In `6esn` In $@usn5,9e12 In 1e1 In .e12,1.0[..`4esn`][..{0}] Merge (((`8esn` {_usn4:{usn1} In Count ( * )})<-[``?:`3esn`|:@usn5{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(:`5esn`:@usn5)<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07}))) Delete 12 Starts With {_usn4} Starts With $#usn8,.e12 Ends With 1000 Ends With 010,[#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null Union Delete 12e12 Ends With $999 Ends With 1e1,$`3esn`,1000 Merge usn1=(@usn6 :`2esn`)<-[ *..0Xa]->({`8esn`:Null In .e0}) On Create Set Allshortestpaths(((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]}))).`8esn`? =`6esn`[{`6esn`}..],@usn6+=Reduce(usn1=$#usn7 Ends With 0.12 Ends With {@usn6},_usn3 In {`2esn`} Ends With {12} Ends With 7|{0} Is Null) Is Not Null Is Not Null,Extract(usn1 In 12.e12 In {0} In 9e1 Where False Starts With 010|True Starts With $`4esn` Starts With 12e12).`7esn`? =0X0123456789ABCDEF Is Null Is Null;"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Create (@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}),_usn4=(@usn6 :@usn6{`5esn`:@usn5[$12..\"d_str\"],usn2:1.e1[0X0123456789ABCDEF..]}) Remove None(_usn4 In `2esn` Where `3esn`[..{_usn4}][..{@usn5}]).`1esn`,[999 Ends With .e12 Ends With .e1,{_usn3}[..$`8esn`]].@usn6? Merge @usn6=Allshortestpaths((@usn6 :@usn5{usn2:{`6esn`} Ends With 0e0 Ends With {``}})) On Create Set Reduce(`4esn`=1000,`5esn` In $`2esn`[12.e12][$@usn5]|True Starts With $`2esn` Starts With {@usn6}).`6esn`! =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,All(`` In {`1esn`} Starts With @usn6 Where #usn7[$`5esn`..])._usn3? ={999} In 0.0 In {0},@usn5+=[12e12 Starts With `1esn` Starts With usn2,Count ( * ) Is Null][(#usn8 {``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})][Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))];"), + octest_legacy:ct_string("Cypher 0.1000 Drop Constraint On()-[`7esn`:`6esn`]->()Assert Exists([{999} Starts With {12}].#usn7!)"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Remove [{usn1} Ends With {`6esn`} Ends With 123456789,$usn1[@usn6][#usn7]].`2esn`!,Reduce(`4esn`=$1000 Starts With $`8esn` Starts With {`5esn`},`` In {usn1} Ends With {`6esn`} Ends With 123456789|{`8esn`}[True..][.e1..]).`3esn`! Create Unique #usn8=Shortestpath(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]}))) Union All Remove None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000).`2esn`? With Distinct {#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null As `8esn`,Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4])[Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End] As `7esn`,{_usn4} In {1000} As `1esn` Order By $@usn5[`1esn`..] Desc Limit #usn8['s_str'..][123.654..] Where 's_str' Starts With 12e12 Starts With $_usn4;"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Return $7 Ends With $`8esn` As `4esn` Order By {#usn8}[usn2][{0}] Ascending,00 Contains #usn8 Desc Skip 1e1 Is Not Null Is Not Null Start #usn8=Relationship:usn1({7}) ,`2esn`=Node(123456789,01234567,01234567)Where $12 Is Not Null Foreach(`` In True Is Not Null Is Not Null| Create Unique ((`4esn` :`8esn`:@usn5)-[`6esn`:usn1{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]->(:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]-(@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})) With Distinct Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))) =~Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) As _usn4,7[..$`1esn`][..00],{12} Starts With #usn8 Starts With 0e0 Order By $0 Starts With `2esn` Desc,0.12 In 0X7 Descending,12.e12 In $0 In $0 Desc Limit `6esn` In Null Where False Contains 0.e0 Contains Count(*)) Union All Start `1esn`=Rel:`6esn`(`3esn`={12}) Where $`5esn`[$#usn7..][0xabc..] Create Unique usn2=(`2esn` {@usn6:True Is Null Is Null})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)-[_usn3?:@usn6|`` *0x0..{`3esn`}]->(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}}),(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]});"), + octest_legacy:ct_string("Cypher 0.1000 Create Constraint On()-[#usn7:_usn3]-()Assert Exists([`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 1.e1[0X0123456789ABCDEF..]|.e1 Starts With $_usn4 Starts With {`1esn`}].@usn5!);"), + octest_legacy:ct_string("Cypher 7.0 Drop Constraint On()-[`8esn`:usn1]->()Assert Exists(Filter(`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0e0).`7esn`!);"), + octest_legacy:ct_string("Cypher 0.1000 With $`2esn`[12.e12][$@usn5],12 Starts With $#usn7,(#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..] Order By @usn5 In 1e1 Asc Limit {_usn4}[...e12][..0xabc] Where True Is Null Is Null Union Return Distinct *,.e0 =~{`8esn`} =~$999 As #usn7 Skip 1000 Is Not Null Limit Count(*)[..``][..#usn8] Unwind [1.e1 =~$usn2,@usn6[{0}..],@usn5[12.0][{1000}]][@usn6()..Case {@usn5}[..@usn6] When $`2esn` Starts With {`8esn`} Starts With {usn1} Then {``} Is Null Is Null Else 123456789 Ends With usn1 Ends With usn2 End] As `3esn` Start #usn7=Relationship:usn2(_usn3='s_str') ,`4esn`=Node:`7esn`(``={usn2});"), + octest_legacy:ct_string("Explain Profile Drop Constraint On()<-[`4esn`:@usn6]-()Assert Exists({`1esn`:$usn2 Is Null Is Null}._usn4!)"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On(``:`4esn`)Assert Exists({`2esn`:\"d_str\" Is Null Is Null}.``)"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Create Constraint On(@usn5:`6esn`)Assert Exists(Allshortestpaths((usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})<-[?:`6esn` *07]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]})).usn1!)"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Delete $`1esn`[..{_usn3}],usn2[`7esn`..{`3esn`}][$7..{#usn7}],{`8esn`}[0X7][$`3esn`];"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Optional Match _usn3=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`))) Using Scan #usn7:_usn3 Unwind `5esn` In 12e12 In `8esn` As `8esn` Merge `5esn`=Shortestpath((_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null})<-[@usn5?:`8esn`|:_usn4 *0X0123456789ABCDEF{usn1:False Contains $#usn8 Contains 9e1}]->({@usn6:$usn1[0X7],`3esn`:$7[$`3esn`]}));"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Shortestpath(((`3esn` :usn2:`2esn`{``:{_usn3} Contains $`1esn` Contains 12.0}))),`8esn`=((#usn8 {`8esn`:{7} Contains $123456789})) Start _usn4=Relationship:@usn6(#usn7='s_str') Where 9e1 Ends With Count(*) Ends With False Union Optional Match usn1=Shortestpath(((:`1esn`{usn2:{`6esn`} Ends With 0e0 Ends With {``}}))) Using Scan usn2:@usn5 Start usn1=Node:#usn8(#usn8={``}) Where `4esn`[usn1] Union Merge `5esn`=Shortestpath(((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[:#usn7|`2esn`]-(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}}))) On Match Set `2esn`+=$999 =~0 =~{7},@usn5+=0X7[0.e0][{`4esn`}],Extract(`` In {`1esn`} Starts With @usn6 Where {`2esn`}[..{@usn6}][..1.e1]|True =~{`1esn`})._usn4! =All(usn1 In 12.e12 In {0} In 9e1)[[`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]|12.e12[$`8esn`..{`8esn`}]]..] Remove All(_usn4 In 0.0[..{999}][..0.0] Where 1e1[1.e1..][123.654..]).`3esn`! Merge (((`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})-[_usn3?*..{#usn7:#usn8 =~{999},`8esn`:{_usn3}[`3esn`..$#usn8]}]->({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})-[@usn6 *07{`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}]->({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]}))) On Match Set `4esn`+=$`8esn`[0xabc][Null],@usn5+=0.0 In `6esn` In $@usn5;"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(`5esn`:`2esn`)Assert Exists((:_usn3{0})-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]->({@usn5:``[{123456789}..]})<-[`4esn`:`3esn`|:@usn5 *..010]->({`4esn`:12 Starts With {_usn4} Starts With $#usn8}).#usn7?);"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Create Constraint On(usn1:`4esn`)Assert Exists([#usn7 In 123.654 Starts With $`` Where {usn2}[$`4esn`]].#usn7!);"), + octest_legacy:ct_string("Cypher 999.999 Cypher Create Constraint On()-[`1esn`:@usn6]->()Assert Exists(Single(@usn5 In Null =~12e12).@usn5!);"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Create Unique `7esn`=((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})),({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->({`7esn`:123456789[0..]}) Unwind Count(*)[.e12..] As @usn6 Merge ((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})) On Match Set Reduce(#usn8=Count ( * )[..12][..{@usn6}],`` In {`1esn`} Starts With @usn6|@usn6[{0}..]).@usn5 =$#usn7 =~{12} =~False On Match Set [`6esn` In 00 Where $`1esn`[$12][Count ( * )]].`5esn`? =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,_usn4 =Reduce(@usn5=True[7][$999],usn1 In 12.e12 In {0} In 9e1|.e12 =~$_usn4)[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])][[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]]] Union All Delete 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF,$7 Is Not Null,0X0123456789ABCDEF[$`5esn`..] Unwind [0X0123456789ABCDEF[$999..][@usn5..]] Contains Reduce(#usn7={12}[999][{_usn3}],`2esn` In {999} Is Not Null|$usn1 =~010 =~07) Contains None(`1esn` In `3esn`[07..]) As @usn5 Return Distinct #usn7 Starts With $999 As `6esn`,{7}[$123456789..{1000}][$`3esn`..`7esn`] Skip $123456789 Contains [True Starts With $`2esn` Starts With {@usn6}] Contains {@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]} Limit None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] Union All Load Csv With Headers From #usn8['s_str'..][123.654..] As `4esn` Fieldterminator \"d_str\" With Distinct usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3) As usn1,$999 Contains {7},\"d_str\"[..0.e0] As #usn8 Order By $0 Ends With False Ends With $_usn4 Descending,Case Count(*) Ends With 123.654 Ends With $12 When $@usn6[$0..usn1][0X0123456789ABCDEF..$999] Then {`6esn`}[..{`2esn`}] End In Reduce(`4esn`={@usn6} In {#usn7} In 12.e12,usn1 In 12.e12 In {0} In 9e1|\"d_str\"[..0.e0]) In [_usn4 In `2esn` Where 9e12 Ends With 123456789|$999 Is Null] Desc,Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}])[[#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}]..{`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}][Case When 2.12 =~0x0 =~_usn4 Then .e1[@usn5]['s_str'] When $@usn5 In $usn2 In {1000} Then {0}[False..@usn5] Else {@usn6}[True..{_usn3}] End..`1esn`()] Descending Limit {`2esn`} Ends With {#usn7};"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher With Distinct .e0 =~{`8esn`} =~$999 As #usn7,$12 Is Not Null As `7esn`,{``} Is Null Is Null Limit {_usn4}[..$#usn7] Where {999} Is Null Create (((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}))),(((`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})-[_usn3?*..{#usn7:#usn8 =~{999},`8esn`:{_usn3}[`3esn`..$#usn8]}]->({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})-[@usn6 *07{`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}]->({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]}))) Merge (usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On(#usn8:@usn5)Assert Exists(Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {`7esn`} Is Not Null Is Not Null).``)"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Optional Match _usn4=Allshortestpaths(((:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})-[?:#usn8|`2esn` *999{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({@usn6:#usn8[$0..False][$`1esn`..$#usn7]})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}))),`6esn`=Allshortestpaths(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})-[:`1esn`|:`3esn` *..01234567{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(#usn7 {``:0x0 =~123.654 =~{999}})) Merge ((:`5esn`:@usn5{usn1:$#usn7[`5esn`]})-[@usn5{#usn7:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,#usn7:.e12[$#usn8..@usn6]}]->(`5esn` :@usn5)<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]-({`7esn`:123.654 Ends With usn2 Ends With 0})) On Create Set #usn8+=``(#usn8 =~{999})[Single(_usn3 In {@usn5}[..#usn7])..][Case $123456789 Is Not Null When .e1[0.12] Then {@usn5}[..{12}][..0x0] When @usn5 Is Not Null Is Not Null Then \"d_str\" Ends With False Ends With {@usn6} End..] On Match Set @usn6($@usn6 Contains `7esn`).@usn5! =$`5esn` Ends With 00 Ends With #usn7,Reduce(usn2=True[7][$999],`` In {`1esn`} Starts With @usn6|{`4esn`}[$_usn4..][9e0..]).`6esn` ={`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`;"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create `6esn`=((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[:`2esn` *07]-(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]->({``:.e1 Contains $`3esn`})) Union Match `1esn`=((`4esn` :`2esn`{`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})-[:`1esn`|:`3esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->({`2esn`:#usn8 Is Null,`6esn`:123456789 Ends With usn1 Ends With usn2})<-[#usn8? *0X7..0Xa$`2esn`]-({`7esn`:123456789[0..]})),usn1=Allshortestpaths((`2esn` :`5esn`:@usn5)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})) Using Index @usn6:#usn8(_usn4) Using Join On _usn3,`` Where $`1esn`[#usn8][$@usn5] Start @usn5=Node:_usn4(``=\"d_str\") Where 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF;"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Return *,$_usn4[$`4esn`..$12],{`5esn`} Starts With 12.0 Order By @usn5 =~`` Asc"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Drop Constraint On(usn2:_usn4)Assert Exists(Allshortestpaths(({`5esn`:0Xa[0e0..{#usn7}]})<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})).`1esn`?);"), + octest_legacy:ct_string("Explain Profile Create Constraint On(``:#usn7)Assert Any(`2esn` In {999} Is Not Null Where 1e1[{_usn4}..123.654])._usn3! Is Unique"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Drop Constraint On(@usn6:@usn5)Assert Reduce(`8esn`=$@usn6[01..@usn5][0x0..`4esn`],`2esn` In {999} Is Not Null|{#usn8}[$#usn7..]).`7esn`! Is Unique;"), + octest_legacy:ct_string("Profile Start @usn6=Rel:usn1(@usn6=\"d_str\") Where @usn5 Is Not Null Is Not Null Create Unique ((({usn2:$`5esn`[`4esn`][_usn3]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})-[_usn3 *..01234567$`5esn`]->({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null}))) Union All Detach Delete $usn1 Contains {`8esn`} Contains $123456789 Union All Foreach(@usn5 In $123456789[..$7][..$`6esn`]| Detach Delete Case True[$123456789][`8esn`] When 12.e12[{@usn5}..][9e1..] Then 12.e12[`7esn`] Else {`2esn`}[Count(*)] End Ends With (`` :`7esn`)<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]}) Ends With None(`1esn` In `3esn`[07..]),[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]][[9e0 Starts With .e0 Starts With \"d_str\",`3esn`[..{_usn4}][..{@usn5}],1.e1 =~`2esn`]..Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where `6esn` Ends With 2.12 Ends With @usn6)],{`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]} Starts With Allshortestpaths((`2esn` :@usn6{7})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]})<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`)) Starts With All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {7} Contains $123456789) Delete 12.e12[{@usn5}..][9e1..],Extract(_usn3 In True[7][$999] Where $`3esn`[{``}..]) Is Not Null Is Not Null,0.0 Contains $_usn4 Contains {`2esn`})"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Create Unique (((:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})<-[:``]-(_usn3 :`7esn`)<-[ *0xabc..7]->({#usn7:123456789[0..]}))),((:#usn8{#usn8:`3esn` Is Not Null Is Not Null})) Union Match Allshortestpaths((({`5esn`:0Xa[0e0..{#usn7}]})<-[?:``]-(`7esn` :`3esn`:`6esn`))),(usn1 :usn2:`2esn`{`1esn`:{123456789}[12..][$12..]}) Using Index `1esn`:`4esn`(`1esn`) Where $_usn3[{999}]"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On()-[_usn4:_usn4]-()Assert Exists(Any(`1esn` In `3esn`[07..] Where `7esn`[0..$usn2][{usn2}..0.e0]).#usn7)"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Start `6esn`=Node:@usn6(_usn4={_usn4}) ,`8esn`=Node:`8esn`('s_str')Where 07[`8esn`] With [`1esn` In `3esn`[07..] Where @usn6[{0}..]|0.e0[12.e12]] Contains {usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF} As @usn6,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $`5esn`[$#usn7..][0xabc..]) Contains All(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}]) As #usn8 Order By {#usn8} Contains 1000 Contains $`4esn` Ascending,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Ascending Where 123456789[0..];"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Match _usn4=Allshortestpaths((@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})),((`2esn` :#usn8)<-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` :`8esn`:@usn5)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})) Using Index @usn6:#usn8(_usn4) Using Scan _usn4:`2esn` Where 1.e1[{#usn8}] Remove {`1esn`:9e12 Is Not Null Is Not Null}._usn3!,Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]).#usn8,Extract(`1esn` In `3esn`[07..] Where 999 Starts With 's_str'|{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]).@usn6 Detach Delete [$`1esn`[$12][Count ( * )],9e1 Ends With $@usn5 Ends With $123456789] Is Not Null Is Not Null,$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],$usn1 Is Not Null Is Not Null;"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Drop Constraint On(`1esn`:usn2)Assert [_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 9e12 Is Not Null].`7esn`? Is Unique;"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Create Constraint On()<-[@usn5:#usn7]-()Assert Exists(Any(`2esn` In {999} Is Not Null Where $usn1[$123456789..0][{`1esn`}..12.0]).`3esn`!);"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` With Distinct Count(*) Is Not Null,{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] Order By {`8esn`}[0X7][$`3esn`] Descending,12.e12[$`4esn`..] Descending,`3esn` In {@usn6} Ascending Skip 01234567 =~0x0 =~9e12 With True Is Not Null As @usn5 Order By {`2esn`} In $123456789 In True Ascending,Reduce(#usn7={`1esn`} Starts With `4esn` Starts With {0},`3esn` In 123.654[1e1..][{#usn8}..]|9e12[$`5esn`]) Desc Skip 0Xa In {`7esn`} Limit 9e0 =~0.0 =~$`5esn`;"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Create Constraint On(`4esn`:`7esn`)Assert Exists(Reduce(`5esn`=1.e1 =~`2esn`,`1esn` In $12 Is Not Null|{1000}[01234567..$_usn4][{@usn6}..$_usn3]).`7esn`!)"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Drop Constraint On(`1esn`:``)Assert Case #usn7 =~{`4esn`} =~123456789 When 1.e1 =~`2esn` Then 0Xa[$1000..$123456789] When $123456789 Starts With $123456789 Starts With Count ( * ) Then 07 Is Null Else $`6esn`[`8esn`][0.0] End.`8esn` Is Unique"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On()-[#usn7:`5esn`]->()Assert Exists(All(`2esn` In {999} Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]).`3esn`)"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Create Constraint On(`1esn`:`6esn`)Assert Exists([$`7esn` Contains {`1esn`} Contains 9e12,Count(*)[010..][#usn7..]].`6esn`);"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Load Csv From Reduce(@usn5=True[7][$999],usn1 In 12.e12 In {0} In 9e1|.e12 =~$_usn4)[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])][[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]]] As `2esn` Fieldterminator \"d_str\" Foreach(usn1 In #usn7[$`5esn`..]| Unwind {`7esn`} Ends With `` Ends With {`8esn`} As _usn3 Optional Match `8esn`=(@usn6 :`6esn`:`8esn`)<-[_usn4?:`7esn`{``:{_usn3} Contains $`1esn` Contains 12.0}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}),Shortestpath((`6esn` {``:`4esn`[usn1]})<-[`7esn`?{_usn4:9e1 Ends With Count(*) Ends With False,#usn7:$_usn4 Ends With 0.e0 Ends With .e0}]->({`1esn`:$123456789[..$7][..$`6esn`]})-[_usn3:#usn7|`2esn`]-(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})) Using Join On `7esn` Using Scan _usn4:#usn8 Where $12 Contains 0Xa) Foreach(`4esn` In Count ( * )[$12..]| Create Shortestpath((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))) Union Detach Delete {_usn3}[$usn2..] Union All Merge (#usn7 :_usn3{`2esn`})-[`8esn`?:`2esn`{`2esn`:{#usn8} =~{999} =~{#usn7}}]->(@usn6 :`7esn`) Optional Match `8esn`=Allshortestpaths(((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(`1esn` :@usn6))),(:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}) Using Index usn1:`3esn`(`3esn`) Using Scan usn1:`3esn` Where $`6esn`[`8esn`][0.0];"), + octest_legacy:ct_string("Cypher 7.0 Start `5esn`=Relationship(01,0x0,0X7,0X7) Where {@usn5}[1e1..][9e1..] Optional Match Shortestpath((`7esn` {@usn6:{_usn4} Is Null})<-[usn2? *0xabc..7{usn1:$123456789 Starts With `5esn`}]->(:`4esn`:@usn6{`1esn`:{12}[00..{@usn6}][1.e1..0],usn1:``[..0X0123456789ABCDEF]})-[`1esn`?:_usn4|:usn1*]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})) Using Scan `2esn`:@usn6 Return Distinct [.e12 Ends With 1000 Ends With 010,Count(*)] Ends With {`7esn`:$_usn3 =~{_usn4} =~$`6esn`} Ends With Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]) As @usn6,$123456789[$`5esn`][$_usn4] As `4esn` Order By Single(`8esn` In $12[{7}..0X0123456789ABCDEF])[Case 9e1[123456789..] When 12 Starts With 7 Starts With $`5esn` Then {_usn3} Contains True Contains 0X7 When `1esn`[..00][..{7}] Then 1.e1[12e12..{`6esn`}] End..] Descending"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Detach Delete [`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]][Reduce(_usn4=$0 Is Not Null,`2esn` In {999} Is Not Null|12.e12[2.12..][0xabc..])..][None(`6esn` In 00 Where {@usn5} Starts With 1.0 Starts With 00)..],{``}[_usn4..$`1esn`] Remove (:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}).``? With True Is Not Null As @usn5 Order By {`2esn`} In $123456789 In True Ascending,Reduce(#usn7={`1esn`} Starts With `4esn` Starts With {0},`3esn` In 123.654[1e1..][{#usn8}..]|9e12[$`5esn`]) Desc Skip 0Xa In {`7esn`} Limit 9e0 =~0.0 =~$`5esn` Union Match ``=Shortestpath(((`` {``:0x0 =~123.654 =~{999}})-[`6esn`?{#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}]-({`3esn`:9e1 =~999}))) Using Scan `8esn`:_usn3 Using Index usn2:usn1(`8esn`)"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Load Csv With Headers From usn1 In 00 In {_usn3} As usn2 Fieldterminator 's_str' With Distinct {`8esn`}[..$`6esn`][..123.654],{@usn6} In {#usn7} In 12.e12 As usn1,0.12 Is Not Null Is Not Null Limit Reduce(`3esn`={_usn3} Is Not Null,usn1 In 12.e12 In {0} In 9e1|0[Count(*)][0e0])[`6esn`(``[..0X0123456789ABCDEF])..Single(`` In {`1esn`} Starts With @usn6 Where {_usn3}[$usn2..])] Union Merge @usn5=(({`3esn`:12 Starts With 0x0,`8esn`:0X7[0.e0][{`4esn`}]})-[`5esn` *0x0..]->(`8esn` :#usn7)) On Match Set `2esn`+=0X0123456789ABCDEF[{@usn5}..1.e1][$_usn3..{7}],`2esn` =True[7][$999],_usn3+=$usn2 Starts With $`5esn` On Match Set `4esn` ={999} Ends With {`5esn`} Ends With {0} Foreach(`` In 0X7[0X7..][Count ( * )..]| Unwind [`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*)] Starts With (`5esn` :`7esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`}) Starts With `6esn`(Distinct 12.e12[``..usn2][{#usn7}..@usn5],$`7esn` In 12) As @usn5) Return Distinct $`2esn`[{usn2}],$`5esn`[$#usn7..][0xabc..] Order By [0.12[..$`6esn`][..$1000],0.12 Starts With 9e12 Starts With $`1esn`,\"d_str\" Contains @usn6 Contains 12.e12] Is Null Ascending,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..])[..{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}][..Filter(`2esn` In {999} Is Not Null Where 010 In `1esn`)] Desc,{999} Ends With 123456789 Ends With {@usn5} Descending Limit $usn1 Contains {`8esn`} Contains $123456789"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Start ``=Rel:`2esn`(`5esn`='s_str') Create `2esn`=(:_usn3{#usn7:#usn8 =~{999}}),Shortestpath(((:#usn8{``:12.e12[$`4esn`..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]}))) Detach Delete Count ( * ) =~{`5esn`} =~{_usn4},{`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}[Case When 1.e1[0X0123456789ABCDEF..] Then `6esn`[..{999}] When {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`] Then $#usn7 Ends With 0.12 Ends With {@usn6} End..Filter(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null)],None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12.e12[``..usn2][{#usn7}..@usn5]) In usn1({`1esn`} Starts With @usn6) Union Start `2esn`=Node:`8esn`(`6esn`='s_str') ,`4esn`=Node:`1esn`(#usn7=\"d_str\") Create Unique ((@usn6 {@usn5:0X0123456789ABCDEF[$999..][@usn5..]})<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})),#usn7=(`3esn` :`8esn`:@usn5{@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]}) Union All Start _usn3=Node:``({`1esn`}) ,`3esn`=Rel:`8esn`(@usn6='s_str')"), + octest_legacy:ct_string("Profile Drop Constraint On(`6esn`:#usn7)Assert [0.0[..{999}][..0.0],{usn1} =~123.654 =~\"d_str\",True Is Not Null Is Not Null].#usn8? Is Unique"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Create Constraint On()-[`5esn`:`7esn`]->()Assert Exists(Filter(#usn7 In 0Xa[@usn5][{`7esn`}] Where $0 In _usn4).`5esn`)"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On(@usn6:usn2)Assert Exists({usn1:True Is Not Null}.`7esn`!)"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Match `5esn`=Shortestpath(((#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]}))),@usn6=((usn1 :`8esn`:@usn5{`1esn`:{#usn7} Contains 0.0 Contains $0,`2esn`:.e12[010..$123456789]})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})<-[?:usn2|#usn7]->(#usn8 :#usn7)) Using Index usn2:``(#usn8) Using Join On ``,usn1,usn2 Where @usn5 In 1e1 Start `7esn`=Node:usn1({999}) Delete 1000 Is Not Null"), + octest_legacy:ct_string("Cypher 7.0 Create Constraint On()-[_usn4:usn2]->()Assert Exists(Extract(`3esn` In 123.654[1e1..][{#usn8}..]|Null[{_usn4}..]).#usn7!)"), + octest_legacy:ct_string("Cypher 999.999 Cypher Create Constraint On()-[_usn4:``]->()Assert Exists(None(`6esn` In Count(*) Ends With $`` Ends With {7} Where 1000 Is Null).`3esn`!);"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Remove Any(#usn7 In 0Xa[@usn5][{`7esn`}]).`4esn`;"), + octest_legacy:ct_string("Cypher 999.999 Cypher Drop Constraint On(@usn6:``)Assert Exists([1.e1 =~$usn2,1000].``!);"), + octest_legacy:ct_string("Explain Profile Drop Constraint On(@usn6:#usn8)Assert {#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}.#usn8 Is Unique"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Drop Constraint On(_usn3:_usn4)Assert Exists([`2esn` Ends With 12.e12 Ends With `2esn`,{`3esn`} Is Not Null Is Not Null,9e1 =~`` =~{`7esn`}].`8esn`?)"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Detach Delete Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where 12e12 Is Not Null)[..Reduce(`1esn`=$`3esn` In 9e12 In ``,`2esn` In {999} Is Not Null|$@usn5[..usn2][..$#usn7])],$#usn7[`5esn`] Union Create Shortestpath((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Union All Foreach(`4esn` In [$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null][(`1esn` :#usn7)<-[? *0X0123456789ABCDEF]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]})..[{_usn3}[$usn2..],$`3esn`[..$`2esn`][..123.654],12.e12[`7esn`]]]| Create ((:``)-[:``]->({`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}}))) Optional Match ((usn2 :_usn3)<-[?:_usn4|:usn1 *..00{`1esn`:{#usn8}[2.12]}]->(:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn8:#usn7|`2esn`]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})),((`8esn` :`8esn`:@usn5)<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})) Where {`3esn`} Is Null;"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` With Distinct *,Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 9e12 Is Not Null) =~Case When False[0Xa..$usn1] Then {123456789}[12..][$12..] Else 0e0 Contains 9e12 End As usn2 Order By $`7esn` Contains {`1esn`} Contains 9e12 Asc,usn1 Is Null Is Null Descending Limit `5esn` Is Not Null Is Not Null Union All Load Csv From .e12[010..$123456789] As _usn4 Fieldterminator \"d_str\" Optional Match (((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`}))),#usn7=(($`5esn`)) Using Scan #usn7:_usn3 Using Index `6esn`:`7esn`(#usn8);"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Create Unique `6esn`=(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]})-[`3esn`?:#usn7|`2esn`]->(usn1 :`6esn`:`8esn`)-[`7esn`? *..0{`2esn`:07 =~$`8esn` =~9e1,``:`5esn`[0xabc..]}]->({`3esn`:{@usn5} Is Null,`5esn`:{`2esn`} Ends With {12} Ends With 7}),Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Match @usn5=($`5esn`)-[?:`3esn`|:@usn5]-(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Using Scan usn2:@usn5 Where True Is Null Is Null Merge _usn4=(((@usn6 {usn1:$#usn7 =~{12} =~False})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))) On Match Set #usn8+={123456789} Is Not Null,{#usn7:'s_str'[_usn4..0x0],`6esn`:$`6esn` Ends With {0} Ends With {`7esn`}}.`` =07 Is Not Null,usn2 ={usn2} =~@usn6 =~{`4esn`};"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Drop Constraint On(`7esn`:_usn3)Assert ({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6})-[{@usn5:1000 Is Null Is Null}]-(_usn3 :@usn5{`2esn`:@usn5[$12..\"d_str\"]})-[?:`8esn`|:_usn4{usn1:999[12.0..][#usn7..],@usn5:123.654[$`1esn`..Null][1000..{_usn3}]}]-(`5esn` :@usn6).`1esn` Is Unique"), + octest_legacy:ct_string("Cypher 999.999 Cypher Load Csv From ``(999 Starts With 's_str',1e1[1.e1..][123.654..]) =~[$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]] =~[#usn7 In 0Xa[@usn5][{`7esn`}] Where `5esn`[0xabc..]] As #usn8 Create `6esn`=Shortestpath(((:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}))),Shortestpath((usn2 :`5esn`:@usn5)<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(#usn7 {`7esn`:12e12 Ends With `4esn` Ends With 123456789})-[?:`7esn`]->(#usn7 :@usn6)) Start `4esn`=Node:``(\"d_str\") Union Load Csv With Headers From $1000[..12.0][..0e0] As `` Union Load Csv With Headers From $`1esn`[07..][9e12..] As `` Fieldterminator 's_str' Create `2esn`=Allshortestpaths(((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]})<-[:@usn5|:`7esn`{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->({#usn7:123456789[0..]}))) Return *,[#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null,{999}[9e1] As usn1 Order By {123456789} =~{@usn6} Desc,Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..] Desc,{`5esn`} Ends With \"d_str\" Desc Limit _usn4 =~0e0;"), + octest_legacy:ct_string("Cypher 0.1000 With *,[`2esn`,{`2esn`} Starts With @usn6,9e1 =~999] In Any(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3} Contains 9e0 Contains $999),Count(*) Starts With $usn1 Starts With {usn2} As @usn6 Limit Reduce(`6esn`=7[$0..][{_usn4}..],_usn3 In {`2esn`} Ends With {12} Ends With 7|{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`)[[$#usn7[`5esn`],Count(*) Ends With 123.654 Ends With $12,$#usn7[..@usn6][..$0]]] Where $_usn4 Is Not Null Is Not Null With *,{#usn7} Ends With Extract(`1esn` In 0.e0 =~`1esn` =~`6esn`|.e1 Ends With 0Xa Ends With .e1) As `5esn`,123456789 Is Not Null Is Not Null As #usn7 Skip {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Where $``['s_str'..][0x0..] Create #usn8=(`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`) Union Unwind 0e0 Starts With $@usn6 Starts With $`6esn` As _usn4 Union Start @usn5=Node:``(#usn7=\"d_str\") ,`3esn`=Node:usn1('s_str')Where {`3esn`}[{`5esn`}] Create Shortestpath(((`4esn` :`2esn`)<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})));"), + octest_legacy:ct_string("Cypher 0.1000 With Distinct *,$@usn5 In 's_str' In $12 As `2esn`,Count ( * )[{12}..{@usn5}][{#usn8}..Null] As `5esn` Order By $@usn5[..usn2][..$#usn7] Descending,7[..$`1esn`][..00] Desc,{0}[{@usn6}..{123456789}] Asc Limit {`4esn`:`7esn` Contains `5esn` Contains 0X7} Ends With Allshortestpaths((`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4)) Where ``[..0X0123456789ABCDEF] Union All Unwind 9e0[#usn8] As `2esn` Union All Delete $usn2,`8esn` Is Null Is Null"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Detach Delete {`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}[Case When 1.e1[0X0123456789ABCDEF..] Then `6esn`[..{999}] When {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`] Then $#usn7 Ends With 0.12 Ends With {@usn6} End..Filter(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null)],Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})] Load Csv From Single(_usn3 In {@usn5}[..#usn7] Where {@usn6} In {#usn7} In 12.e12)[(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[*{`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]}]->(:`2esn`{#usn8:`6esn` Ends With 2.12 Ends With @usn6,`1esn`:{`8esn`}[True..][.e1..]})<-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` :`8esn`:@usn5)] As @usn6 Fieldterminator 's_str' Union All Start `3esn`=Node:`4esn`({#usn8}) ,`2esn`=Rel:`4esn`(#usn8='s_str')Where 010 In `1esn` Union Load Csv With Headers From $`8esn`[..0x0][..``] As usn2 Start ``=Relationship( {``}) ,`7esn`=Relationship(07,123456789,123456789)Where 12.e12[{@usn5}..][9e1..] Remove Reduce(@usn6=0.e0[12.e12],_usn4 In `2esn`|True Starts With $`4esn` Starts With 12e12).@usn6?"), + octest_legacy:ct_string("Cypher Using Periodic Commit 0xabc Load Csv From All(_usn3 In {@usn5}[..#usn7] Where $`2esn` Starts With {`8esn`} Starts With {usn1}) Starts With {usn2:{`1esn`} Is Not Null} As _usn4 Merge `2esn`=((({`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1})-[`3esn`:`6esn`{`3esn`}]-(#usn8 :`6esn`:`8esn`{`1esn`:9e12 Is Not Null,_usn4:0X0123456789ABCDEF[$`2esn`..][`2esn`..]})<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})));"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Unwind .e1 Starts With {`1esn`} Starts With $_usn3 As _usn4 Foreach(`` In False[1000][{`7esn`}]| With *,0x0[$`8esn`.._usn3],True[$123456789][`8esn`] As @usn5 Skip \"d_str\" Contains @usn6 Contains 12.e12 Limit 9e1 =~`` =~{`7esn`} Delete 12e12 Ends With $999 Ends With 1e1,$`3esn`,1000) Union All Create Shortestpath(((`2esn` {_usn4:`4esn`[usn1]})<-[`2esn`?{`3esn`:$7 In 1.0 In 1e1,@usn5:{@usn6} Contains 123.654 Contains 01}]->(@usn6 {usn1:$#usn7 =~{12} =~False})<-[`2esn`?:@usn6|``]->(`1esn` {_usn4:{1000} Ends With {`8esn`}}))),`5esn`=(`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})-[:`3esn`|:@usn5{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}]-($`5esn`)-[? *07{#usn7:`5esn`[..9e0][..01234567]}]-({#usn8:0Xa Contains Count ( * ),`8esn`:Null Is Null Is Null}) Unwind `2esn`(Null In .e0)[_usn3(Distinct {@usn6}[$`7esn`..][False..])..[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]]] As _usn3 Remove (`5esn` {@usn5:07 =~$`8esn` =~9e1,#usn7:{`1esn`} Starts With `4esn` Starts With {0}})<-[`2esn`?*]->({#usn7:1e1[1.e1..][123.654..],`3esn`:True Starts With $`4esn` Starts With 12e12}).`1esn` Union Create Unique Allshortestpaths((`` :``)-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}));"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Remove Allshortestpaths(((_usn3 :#usn8{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(:`2esn`{`2esn`:123456789[0..]}))).`8esn`! Remove Shortestpath((({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`))).#usn8!,({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})-[? *01..07]->({_usn4:{usn1} =~123.654 =~\"d_str\"}).`5esn`?,[{`6esn`}[..{`2esn`}],$`8esn`[..$999][..0],`3esn` Is Not Null Is Not Null].`1esn`? Return Distinct *,010 Is Not Null Is Not Null As #usn7,123456789[12..$`4esn`] As `7esn` Order By $_usn3[..$`2esn`][..\"d_str\"] Desc Limit `` Is Null Is Null;"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Remove (:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}).``? Foreach(`3esn` In 01234567[$7..{12}]| Create Shortestpath((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Return Distinct *,`` Ends With $`4esn` Ends With 0X0123456789ABCDEF As #usn7,False Contains 0.e0 Contains Count(*) Order By Reduce(usn1=12.0[2.12..][{`5esn`}..],_usn3 In {@usn5}[..#usn7]|1000[$7..$123456789]) Is Null Is Null Desc,[#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 Starts With {_usn3}|@usn6[$12]] Ends With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null] Ends With Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) Ascending Skip $@usn5[`6esn`..] Limit $`4esn`[..7][..{12}]) Delete `2esn`[Null],$7 In #usn8 Union Unwind $``['s_str'..][0x0..] As #usn7 Union All Load Csv From Case When 0X0123456789ABCDEF[7...e0][`1esn`..usn2] Then $1000 Starts With $`8esn` Starts With {`5esn`} When usn2 =~0X7 =~{#usn7} Then {`2esn`} In $123456789 In True End[Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`)] As usn1 Load Csv With Headers From 9e1 =~999 As `7esn` ;"), + octest_legacy:ct_string("Cypher Create Constraint On(`8esn`:usn2)Assert Exists(Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[$`8esn`.._usn3]).usn2?)"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Delete $`1esn` Starts With 9e1 Starts With 1.e1,$@usn6[$0..usn1][0X0123456789ABCDEF..$999],[`6esn` In Count(*) Ends With $`` Ends With {7} Where {`3esn`} Ends With `1esn` Ends With $@usn6][None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where {`4esn`}[..{`4esn`}])..] With Distinct *,{`8esn`}[..$`6esn`][..123.654],None(@usn5 In Null =~12e12 Where #usn8[`7esn`..])[{123456789}..][All(`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0})..] Order By $0 Ends With False Ends With $_usn4 Descending,[0.12[..$`6esn`][..$1000],0.12 Starts With 9e12 Starts With $`1esn`,\"d_str\" Contains @usn6 Contains 12.e12] Is Null Desc Limit `1esn`[`3esn`..True] Where {12} Contains `7esn` Contains $_usn3 Union All Optional Match `4esn`=Allshortestpaths((((@usn6 {_usn3:{`8esn`}[0X7][$`3esn`],_usn4:$_usn4[9e0..]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-({`6esn`:1000,#usn8:$`5esn`[$#usn7..][0xabc..]})-[?:`8esn`|:_usn4 *12..]->(@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})))),Allshortestpaths(((`4esn` :`1esn`)-[`6esn`?*..{`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}]->({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6}))) Using Scan _usn3:`` Using Index `8esn`:``(@usn5) Optional Match `8esn`=(({#usn7:#usn8 =~{999}})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})),((@usn5 )<-[#usn8? *..01234567]-($_usn3)) Using Join On ``,`7esn`,#usn7 Where True[$`7esn`..{1000}] Union Create #usn7=Allshortestpaths(((:`5esn`:@usn5))),@usn5=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Create _usn4=Shortestpath((`6esn` :`2esn`{`7esn`:#usn8 =~{999}})),`7esn`=(({@usn6:$`` Starts With 12 Starts With $usn2}));"), + octest_legacy:ct_string("Profile Remove Reduce(`4esn`={7} Contains $123456789,`1esn` In `3esn`[07..]|$@usn6 Contains $`7esn` Contains 1e1).usn2?,None(`1esn` In $12 Is Not Null Where .e1[@usn5]['s_str']).usn1!,Any(`` In {`1esn`} Starts With @usn6 Where \"d_str\"[{`8esn`}..])._usn4!;"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create usn1=(({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]})) Union Return Distinct *,12.0[{`5esn`}..][$@usn5..],[`6esn` In 00 Where 0.12 In 0X7|{999} Is Null][Allshortestpaths((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]}))][Case {999}[$123456789..][12..] When $@usn6 =~#usn8 Then $999 Contains {7} When False Starts With 010 Then `8esn` Starts With {123456789} Else True Is Not Null Is Not Null End] As `6esn` Order By 1e1[..01] Desc Union All Detach Delete \"d_str\" Starts With $`8esn` Starts With {usn1} With Distinct *,1.e1[`4esn`..][$`6esn`..] As @usn5,Count ( * ) =~{`5esn`} =~{_usn4} As _usn3 Create `1esn`=Shortestpath((usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]}));"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(@usn6:usn2)Assert Exists([$0[`7esn`],0.12 Contains 12.0,True Is Null Is Null].``?)"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Create Constraint On(`1esn`:`2esn`)Assert (`3esn` :#usn7)<-[usn2?:``*]-({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null}).`6esn`? Is Unique;"), + octest_legacy:ct_string("Cypher 0.1000 Create usn1=((:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})<-[`5esn`:usn2|#usn7 *999]-(:`8esn`:@usn5)<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(`1esn` :@usn6)),Allshortestpaths(((_usn4 :@usn6)-[`5esn`?:@usn5|:`7esn`]-(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})));"), + octest_legacy:ct_string("Cypher 7.0 Create Constraint On(@usn5:`6esn`)Assert Allshortestpaths(({`3esn`:9e1 =~999})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->(usn1 {`5esn`})).`6esn`? Is Unique"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On(@usn6:`2esn`)Assert Exists([`5esn` In $`2esn`[12.e12][$@usn5] Where $``[.e12..]].``);"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Create Constraint On(`2esn`:`2esn`)Assert Extract(`` In {`1esn`} Starts With @usn6 Where $`7esn`[$``..][999..]|True Is Null Is Null).`7esn`? Is Unique;"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On(@usn5:`4esn`)Assert Exists(Case When 9e1 Ends With $@usn5 Ends With $123456789 Then usn2[True] When .e12 =~$_usn4 Then $7 Is Null Is Null Else .e1 Ends With 0Xa Ends With .e1 End.usn1!);"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On(`6esn`:_usn4)Assert Exists(Allshortestpaths(((_usn3 :#usn8{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(:`2esn`{`2esn`:123456789[0..]}))).`8esn`!);"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Create Constraint On(#usn7:usn2)Assert {usn2:{`1esn`} Is Not Null}.@usn5! Is Unique"), + octest_legacy:ct_string("Cypher Foreach(@usn6 In {`5esn`}[1000..]| Remove Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999]|$_usn3[010..False]).`2esn`? Remove {`3esn`:@usn5[12.0][{1000}]}.`2esn`?,Single(`1esn` In $12 Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]).`2esn`?,``:`4esn`:@usn6) Remove {_usn4:0Xa Contains $``,@usn6:@usn6[$_usn4]}.@usn5,Filter(`1esn` In `3esn`[07..] Where 9e1[$_usn4..0xabc]).`5esn`!"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Create Constraint On(`1esn`:`5esn`)Assert Reduce(@usn6=0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12]).#usn8 Is Unique;"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create Constraint On(`7esn`:@usn6)Assert Exists([$`5esn`[$#usn7..][0xabc..],1000[$7..$123456789],$`7esn`[$``..][999..]].`5esn`!)"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Merge ((`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})) On Create Set `4esn` ={999} Ends With {`5esn`} Ends With {0} Merge ((:`3esn`:`6esn`{`1esn`:12 Starts With 0x0})) On Match Set _usn3 =$`` Starts With 12 Starts With $usn2,@usn5+=$@usn6[$`8esn`..][7..] With Distinct *,#usn8 Is Not Null,$usn2 Starts With $@usn6 Starts With 010 As _usn4 Where $`1esn` Is Not Null Is Not Null Union Load Csv From .e12[$#usn8..@usn6] As usn2 Fieldterminator \"d_str\" Union Optional Match ((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})-[:`5esn`]-({`7esn`:@usn5[..$@usn5][..0Xa]})-[@usn5? *0x0..{`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}]-(_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null})) With Distinct Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..],`` =~`6esn` =~usn1 As `2esn` Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,1.e1 =~$`1esn` Ascending,12.e12[..1e1] Asc Limit 0X0123456789ABCDEF[0X7..] Where $123456789[..$7][..$`6esn`] Foreach(`8esn` In (:`4esn`:@usn6{usn1:$7[{`1esn`}],#usn8:\"d_str\"[..0.e0]})<-[`4esn`:@usn6|``{_usn4:Count ( * ) Starts With 010 Starts With 0x0,`2esn`:1.0 In 9e1 In {`7esn`}}]->(usn2 {usn1:{`4esn`}[..07][..$`6esn`],`5esn`:'s_str'[..0X7]})-[? *0X0123456789ABCDEF]-(_usn3 :`5esn`:@usn5)[Reduce(usn2={`6esn`}[..{`2esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|1e1[..01])..]| Start @usn6=Node(0x0) ,@usn5=Rel:`8esn`(`6esn`='s_str'));"), + octest_legacy:ct_string("Cypher Create Constraint On(`1esn`:usn1)Assert Exists({`6esn`:.e0[..{`5esn`}][..999]}.usn2!)"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Using Periodic Commit 01234567 Load Csv From 0.0 Is Not Null As `5esn` Foreach(_usn4 In 12e12 Ends With `4esn` Ends With 123456789| Create `2esn`=(`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4),`5esn`=(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}) Return *,Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000)[[_usn4 In `2esn` Where `3esn` Is Not Null Is Not Null]..All(`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999])][(_usn4 {_usn3:9e1 =~999})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})..{`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}] As _usn3,Reduce(_usn4=.e1 Starts With $_usn4 Starts With {`1esn`},`6esn` In 00|usn2[True])[..[9e12[..0X7]]][..$`1esn`] Skip 0e0[..$@usn5][..$`8esn`] Limit Reduce(`3esn`={_usn3} Is Not Null,usn1 In 12.e12 In {0} In 9e1|0[Count(*)][0e0])[`6esn`(``[..0X0123456789ABCDEF])..Single(`` In {`1esn`} Starts With @usn6 Where {_usn3}[$usn2..])]) Return *,$1000[..{`7esn`}][..#usn7] Order By 7[010][00] Descending Skip {`5esn`} Starts With 12.0"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Drop Constraint On(`1esn`:usn1)Assert Exists([`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0[$#usn8...e12]].`3esn`!);"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Merge @usn6=((usn1 {`4esn`:1.0[{999}][$999],``:9e1[9e1...e0]})<-[? *0xabc..7]->(`3esn` :`3esn`:`6esn`)) On Create Set Filter(`5esn` In $`2esn`[12.e12][$@usn5] Where 12[..$@usn6]).`2esn`! =123456789 Starts With {999} Create Unique (:`2esn`$1000)-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`` {``:0x0 =~123.654 =~{999}})"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Drop Constraint On()-[_usn3:#usn7]->()Assert Exists([`3esn` In 123.654[1e1..][{#usn8}..]].@usn6!)"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Detach Delete $usn1[..{@usn5}][..'s_str'],$`7esn` Is Null Is Null,{``}[_usn4..$`1esn`] Foreach(`6esn` In .e12[\"d_str\"..][.e1..]| Start #usn7=Node( {usn2}) Return 0.e0 Ends With False As `` Skip Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*))[Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12)..]) Foreach(#usn8 In Case 9e0 In usn1 When {@usn6} Contains 123.654 Contains 01 Then $@usn5 In 's_str' In $12 End In Allshortestpaths(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))) In Case {`7esn`}[9e1..][@usn6..] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" When {7}[{`4esn`}][`6esn`] Then 0xabc[$@usn5] Else 0e0 End| Start `4esn`=Node:``(\"d_str\") Start _usn3=Relationship:``(`1esn`={`2esn`}) Where 0[{usn2}..][usn1..])"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Remove Case When 00 =~0.e0 =~$`8esn` Then `5esn`[..9e0][..01234567] When 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Then {999} Starts With {12} End.`8esn`?,Filter(`1esn` In `3esn`[07..] Where 07 Is Null).@usn5!,#usn7(Distinct `2esn`[$1000..9e12][{#usn8}..{7}]).`7esn` Union Unwind #usn7 Starts With $999 As #usn7 Optional Match Shortestpath((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Using Join On usn1,_usn4,`6esn` Using Index usn1:_usn3(``) Where {_usn3}[`3esn`..$#usn8] Union All Return Distinct [`` In {`1esn`} Starts With @usn6 Where 0Xa[$1000..$123456789]] Starts With (`7esn` )-[:_usn4|:usn1 *0X7..0Xa{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]}]-({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null}) Starts With Allshortestpaths((`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})),$`2esn` Ends With `` Ends With {12} As usn1 Order By `2esn`(Null In .e0)[_usn3(Distinct {@usn6}[$`7esn`..][False..])..[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]]] Asc,12 Is Not Null Is Not Null Desc Skip ``(#usn8 =~{999})[Single(_usn3 In {@usn5}[..#usn7])..][Case $123456789 Is Not Null When .e1[0.12] Then {@usn5}[..{12}][..0x0] When @usn5 Is Not Null Is Not Null Then \"d_str\" Ends With False Ends With {@usn6} End..] Unwind .e1[..$`4esn`][..$`6esn`] As `7esn` Create (@usn6 {usn1:$#usn7 =~{12} =~False})-[`1esn`?:_usn3|`8esn` *0xabc..7]-(`4esn` :@usn6)"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Drop Constraint On()<-[_usn3:`5esn`]-()Assert Exists({`2esn`:9e12 Is Not Null Is Not Null}._usn3);"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Create Constraint On(usn1:_usn3)Assert Exists(Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where $`2esn`[12.e12][$@usn5]|$usn2 Is Null Is Null).@usn6!);"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Foreach(`8esn` In Extract(#usn7 In 123.654 Starts With $`` Where #usn8[`7esn`..]|0.0[..{999}][..0.0])[..Extract(`1esn` In `3esn`[07..] Where 00[07..]|$#usn7 Starts With 9e0 Starts With 2.12)][..None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])]| Unwind `5esn`[..9e0][..01234567] As @usn5 Remove Filter(`6esn` In 00 Where 0.12[..$`6esn`][..$1000]).#usn8!,[999 Ends With .e12 Ends With .e1,{_usn3}[..$`8esn`]].@usn6?) Return usn1[0] As ``,9e12 Is Not Null Is Not Null Order By {`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] Desc Limit 9e0 In usn1;"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Return *,Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000)[[_usn4 In `2esn` Where `3esn` Is Not Null Is Not Null]..All(`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999])][(_usn4 {_usn3:9e1 =~999})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})..{`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}] As _usn3,Reduce(_usn4=.e1 Starts With $_usn4 Starts With {`1esn`},`6esn` In 00|usn2[True])[..[9e12[..0X7]]][..$`1esn`] Skip 0e0[..$@usn5][..$`8esn`] Limit Reduce(`3esn`={_usn3} Is Not Null,usn1 In 12.e12 In {0} In 9e1|0[Count(*)][0e0])[`6esn`(``[..0X0123456789ABCDEF])..Single(`` In {`1esn`} Starts With @usn6 Where {_usn3}[$usn2..])] Start `8esn`=Relationship:`4esn`(``='s_str') ,`8esn`=Rel( {`7esn`}) Union All Foreach(@usn5 In ({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..`2esn`(Distinct #usn8[`7esn`..])][..[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]]]| Create Unique Allshortestpaths((`` :``)-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})) Optional Match Allshortestpaths((usn2 :`5esn`:@usn5)),Allshortestpaths((((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]-({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})-[#usn8:`` *..0{@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}}))))) Return Distinct [`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]][..{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}][..`4esn`(123.654[$`1esn`..Null][1000..{_usn3}])] As `6esn` Order By @usn6[$usn2..#usn7] Ascending,{`3esn`} Ends With 0 Ends With 9e1 Desc;"), + octest_legacy:ct_string("Cypher 999.999 Cypher Create (((_usn3 :`3esn`:`6esn`)<-[`2esn`?{``:123.654 Starts With $``,``:{``} Ends With .e12 Ends With 0.e0}]-(:_usn3{0})<-[?:#usn8|`2esn` *01..07]->(:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]}))),`4esn`=((`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}})-[_usn4?:`3esn`|:@usn5]->(`4esn` {`7esn`:12.e12 In $0 In $0,@usn5:_usn4[Count(*)]})) Load Csv With Headers From {`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}] As @usn5 "), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create Constraint On()-[@usn6:_usn3]-()Assert Exists(Allshortestpaths((`6esn` :`7esn`)-[:_usn3|`8esn` *12..{`8esn`:Count(*)[.e12..],`5esn`:{#usn8}[12.0][$@usn6]}]-(`1esn` {_usn4:`3esn`[_usn4..{0}][`5esn`..usn2]})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`)).#usn8)"), + octest_legacy:ct_string("Cypher 999.999 Cypher Drop Constraint On(`6esn`:usn1)Assert Exists({@usn6:$`` Starts With 12 Starts With $usn2}.usn2!)"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Detach Delete $7 In 1.0 In 1e1 Create Unique (#usn7 :#usn8)-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0}),@usn6=Allshortestpaths(((`3esn` {`1esn`:$`6esn` Starts With 12.e12 Starts With $#usn7})-[`6esn`:`8esn`|:_usn4]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}))) Foreach(@usn5 In [_usn3 In {@usn5}[..#usn7] Where 12.e12[{7}..7]][Case $`2esn`[{``}..{1000}][#usn8..`2esn`] When {999} Ends With 123456789 Ends With {@usn5} Then Count(*)[.e12..] When {_usn4}[{``}..] Then 0Xa[.._usn3][..$`6esn`] Else #usn8 In `8esn` In 07 End..][All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $#usn7[..@usn6][..$0])..]| Remove (:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}).``?);"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Create Unique ((usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[#usn7? *999{usn2:{1000}[{``}][999]}]-({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`)) Create `5esn`=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]}) Union All Unwind 010 Ends With 01 Ends With {_usn3} As #usn7 Detach Delete $@usn5 Is Not Null Is Not Null,{`8esn`}[..$`6esn`][..123.654],Allshortestpaths(((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))) Starts With (`1esn` :_usn3{`5esn`:{`8esn`}[..$`6esn`][..123.654],`1esn`:1000 Starts With `7esn`})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Extract(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) Foreach(usn1 In {`4esn`}[{`4esn`}..999]| Create (`4esn` :`4esn`:@usn6) With Distinct 0Xa Contains #usn8 Contains 1000 Order By {#usn8} Contains 1000 Contains $`4esn` Ascending,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Ascending Skip ({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..`2esn`(Distinct #usn8[`7esn`..])][..[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]]]);"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On(#usn7:@usn5)Assert Reduce(#usn8=$`4esn` Starts With 0e0,_usn3 In True[7][$999]|1e1[1.e1..][123.654..]).`2esn` Is Unique"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Create Constraint On(`2esn`:``)Assert Exists([_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $`6esn`[`8esn`][0.0]|00[07..]].`2esn`);"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On(@usn5:@usn5)Assert Exists(Extract(_usn4 In 0.0[..{999}][..0.0] Where 12 Ends With 01|Count(*) Is Not Null)._usn3?)"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Drop Constraint On(`8esn`:`6esn`)Assert Exists(Reduce(`5esn`=`2esn` Starts With `` Starts With 1e1,usn1 In 12.e12 In {0} In 9e1|$usn2 Ends With $`5esn`)._usn3?);"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Create Constraint On(`3esn`:`7esn`)Assert Exists({`1esn`:``[{123456789}..]}._usn3)"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Unwind 01234567['s_str'] As usn2 Start usn1=Node:`7esn`(`5esn`={usn2}) ,_usn3=Node:`2esn`(#usn7={usn1}) Load Csv With Headers From Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Is Null Is Null As `2esn` Fieldterminator 's_str' Union All Detach Delete $999 In 999,`2esn`[usn2..][$7..] Union All Create _usn4=Allshortestpaths(((({_usn4})<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})-[@usn6?:`2esn`]->(`7esn` )))),((:``{``:0x0 =~123.654 =~{999}})<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]})) Return *,(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As #usn7,.e1 Ends With 0Xa Ends With 00 As _usn3;"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` With Distinct {`5esn`} Starts With 12.0,Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End[None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])][count(Distinct $`5esn`[$#usn7..][0xabc..])] As `2esn`,0.e0 Contains .e0 Contains $@usn6 Skip Reduce(#usn8=0X7 Starts With {999} Starts With 12e12,_usn4 In `2esn`|usn2[True]) Starts With [01234567[..9e1]] Starts With Reduce(@usn5=.e1 Ends With {7} Ends With $usn1,`` In {usn1} Ends With {`6esn`} Ends With 123456789|{`2esn`} In 0Xa In {_usn3}) Limit 0.e0 Ends With False Where Null[{_usn4}..] Load Csv With Headers From Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})] As @usn5 Fieldterminator \"d_str\";"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Detach Delete All(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) In Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4]) In [``[00..$7],.e1 Contains $`3esn`,{``} Starts With 123456789 Starts With usn2],[`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7}|usn2[`7esn`..{`3esn`}][$7..{#usn7}]][..[`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]|9e12[..0X7]]][..[`2esn` Ends With $`4esn` Ends With {#usn7},'s_str'[..0X7],{#usn8} =~{999} =~{#usn7}]] Optional Match (`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})-[``:usn2|#usn7 *..0Xa]->(:`4esn`:@usn6{usn1:$7[{`1esn`}],#usn8:\"d_str\"[..0.e0]}),`3esn`=Allshortestpaths((:`3esn`:`6esn`{_usn4:{usn1} In Count ( * )})) Using Index @usn6:#usn8(_usn4) Using Join On `6esn`,usn2,`5esn`"), + octest_legacy:ct_string("Profile Create Constraint On(`8esn`:``)Assert Filter(`1esn` In $12 Is Not Null Where {``}[010]).`1esn`? Is Unique"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Return Distinct $#usn7 Contains True Contains _usn4,.e1 Ends With {7} Ends With $usn1 As `` Limit {usn2}[`6esn`..01234567] Unwind `2esn`(Null In .e0)[_usn3(Distinct {@usn6}[$`7esn`..][False..])..[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]]] As `6esn` Union All Load Csv From {@usn5}[1e1..][9e1..] As `8esn` ;"), + octest_legacy:ct_string("Cypher 0.1000 Create Constraint On(``:@usn6)Assert [$usn1[0X7],010 In `1esn`]._usn3? Is Unique;"), + octest_legacy:ct_string("Profile Drop Constraint On()-[usn1:@usn6]-()Assert Exists({`2esn`:{`4esn`}[$_usn4..][9e0..]}.usn2?);"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Drop Constraint On(``:usn1)Assert {#usn8:`3esn` Is Not Null Is Not Null}.@usn5? Is Unique;"), + octest_legacy:ct_string("Cypher 7.0 Remove Shortestpath((({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`))).#usn8!,({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})-[? *01..07]->({_usn4:{usn1} =~123.654 =~\"d_str\"}).`5esn`?,[{`6esn`}[..{`2esn`}],$`8esn`[..$999][..0],`3esn` Is Not Null Is Not Null].`1esn`? Merge `8esn`=((@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})) On Match Set `8esn`+=$`4esn` In Null Start `3esn`=Relationship:#usn8(_usn3={#usn7}) ,`8esn`=Rel( {`3esn`})Where $`2esn` Is Null Is Null Union All Merge @usn6=((_usn4 :#usn8)<-[:#usn8|`2esn` *123456789..0X7{``:$#usn7 =~{12} =~False,`5esn`:{1000} In {123456789}}]->({`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF})<-[{``:\"d_str\"[{`8esn`}..]}]-(:#usn7{#usn7:$`8esn` In $`2esn` In {7}})) Detach Delete $@usn5 In 's_str' In $12,Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]}))) Ends With Case When $``['s_str'..][0x0..] Then 9e12[..0X7] Else $1000[..$999] End,{`7esn`} Ends With `` Ends With {`8esn`} Union Create Unique `8esn`=Allshortestpaths(((`8esn` :@usn6)))"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Remove Reduce(#usn8=$#usn7 =~{12} =~False,`1esn` In `3esn`[07..]|{usn2}[$`4esn`]).`4esn`,(_usn4 :#usn7{`8esn`:$999 Contains {7}})<-[#usn7{#usn8:{`1esn`} Is Not Null}]->(`8esn` {`3esn`:'s_str'[..0X7]}).``!,Extract(`6esn` In 00 Where 0Xa[0e0..{#usn7}]).@usn6! Unwind Count ( * )[\"d_str\"][_usn3] As `5esn` Union Load Csv With Headers From 's_str'[$usn2][Count(*)] As `5esn` Remove {`5esn`:01234567[..9e1]}.#usn8!,[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $`8esn`[..$999][..0]].@usn6!,None(#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}).`6esn`"), + octest_legacy:ct_string("Cypher 7.0 Create Constraint On()-[@usn6:`8esn`]->()Assert Exists([`1esn` In `3esn`[07..] Where 00[07..]|0[$`6esn`...e1][`1esn`..$`7esn`]].`6esn`?)"), + octest_legacy:ct_string("Cypher 999.999 Cypher Drop Constraint On(`2esn`:`6esn`)Assert Exists(``(True[True..],$_usn4).`5esn`?)"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Detach Delete 0.12 Ends With {1000} Ends With `6esn`,$@usn5[usn2..][$0..] Load Csv With Headers From $0 Is Not Null As #usn8 Fieldterminator \"d_str\" Union All Foreach(@usn6 In .e1 =~$`5esn`| Unwind $`2esn`[{usn1}..] As `3esn`) Return Distinct 0X0123456789ABCDEF[$999..][@usn5..] Union Create _usn3=(@usn6 :@usn6),usn2=((_usn4 :#usn7{`8esn`:$999 Contains {7}})<-[`4esn`:`4esn`|:#usn7{`2esn`:{`4esn`}[$_usn4..][9e0..]}]-(`6esn` )) Create Unique `8esn`=((:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *..00{#usn7:`4esn`[usn1]}]-(:@usn5{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12})),_usn4=(((#usn8 )-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]})))"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher With *,$usn1 In 01234567 In .e1 Order By Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6) Starts With [$_usn3[010..False],$123456789 =~`4esn`,$usn1[$123456789..0][{`1esn`}..12.0]] Descending,{#usn7:`5esn`[..9e0][..01234567]} In Case 1e1[1.e1..][123.654..] When 7[1000.._usn3][9e0..\"d_str\"] Then 12.e12[``..usn2][{#usn7}..@usn5] When 1.e1[0xabc..] Then 1.e1 Starts With $`2esn` Starts With $0 End In Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null) Desc,{7}[$7..] Desc Skip \"d_str\"[{999}..] Limit @usn5[$12..\"d_str\"] Where .e1 Contains $`3esn`"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Drop Constraint On()-[usn1:_usn4]-()Assert Exists(Shortestpath((@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})).``!)"), + octest_legacy:ct_string("Cypher 0.1000 Drop Constraint On(`2esn`:``)Assert Exists(Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5)))).@usn6!)"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Using Periodic Commit 01 Load Csv From 1e1 Starts With 9e1 Starts With {`4esn`} As `2esn` Match ``=Shortestpath((`7esn` :`5esn`:@usn5{`2esn`:12 Starts With $#usn7})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(`4esn` :_usn4{`2esn`:#usn7 =~00})) Using Scan `1esn`:`7esn` Using Join On `7esn`"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Unwind {`3esn`:'s_str'[..0X7]}[(@usn5 :@usn5)<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]->(:`5esn`:@usn5{``:.e12 =~$_usn4})] As `1esn` Start `5esn`=Rel:`4esn`('s_str') ,`6esn`=Node:_usn4(``=\"d_str\")Where $@usn5[$`4esn`][$@usn6] Union All Load Csv From `2esn` Ends With $`4esn` Ends With {#usn7} As usn2 Fieldterminator \"d_str\" Union Create Unique Allshortestpaths((({_usn3})-[`5esn` *0x0..]->(usn1 :usn1:_usn4))),`4esn`=((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7));"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Drop Constraint On(usn2:`1esn`)Assert Exists(Reduce(@usn5=$@usn6 =~#usn8,`5esn` In $`2esn`[12.e12][$@usn5]|{`1esn`} In 12.e12 In 9e1).`4esn`?);"), + octest_legacy:ct_string("Cypher 999.999 Cypher Remove {`4esn`:`3esn` Is Not Null Is Not Null}.`2esn`! Unwind False Starts With 010 As #usn8 Return Distinct $#usn7 =~9e1 =~$_usn4 Union All Match usn1=(((:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})<-[:``]-(_usn3 :`7esn`)<-[ *0xabc..7]->({#usn7:123456789[0..]}))),(usn2 :`5esn`:@usn5)-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]}) Union Unwind #usn8['s_str'..][123.654..] As _usn4 Load Csv From $usn2 Ends With $`5esn` As #usn8 Create Unique Shortestpath((`1esn` :@usn5{_usn3:Null Is Null Is Null,``:True[True..]}))"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Load Csv With Headers From [`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]][..{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}][..`4esn`(123.654[$`1esn`..Null][1000..{_usn3}])] As @usn5 Fieldterminator \"d_str\" Union Unwind Case {`1esn`} Is Not Null When 9e12 =~123456789 =~$999 Then 999[12.0..][#usn7..] When `4esn` Contains #usn8 Contains 7 Then `2esn` Starts With `` Starts With 1e1 Else Count(*) Ends With $`` Ends With {7} End In Reduce(`8esn`=00[..$123456789][..$`5esn`],`` In {`1esn`} Starts With @usn6|False[999]) In Reduce(``=12 Starts With $#usn7,`6esn` In 00|False Contains $#usn8 Contains 9e1) As `` Foreach(`2esn` In Case When 0X0123456789ABCDEF[7...e0][`1esn`..usn2] Then $1000 Starts With $`8esn` Starts With {`5esn`} When usn2 =~0X7 =~{#usn7} Then {`2esn`} In $123456789 In True End[Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`)]| Create Unique usn2=((:`7esn`{999})-[? *01..07]->({_usn4:{usn1} =~123.654 =~\"d_str\"})) With *,$@usn5 In 's_str' In $12 As `2esn`,Count ( * )[{12}..{@usn5}][{#usn8}..Null] As `5esn` Order By {12} Contains 9e0 Descending,`5esn`(0X0123456789ABCDEF[9e12])[[`8esn` In $12[{7}..0X0123456789ABCDEF] Where $``['s_str'..][0x0..]]..None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`8esn`}[0X7][$`3esn`])][Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000})..Case 7 Is Null Is Null When usn1 Contains $7 Contains $`` Then 12e12 Is Not Null End] Descending Skip [usn1 In 12.e12 In {0} In 9e1 Where {usn1} In Count ( * )][{_usn3:.e1 Ends With 0Xa Ends With .e1,`2esn`:12e12 Starts With `1esn` Starts With usn2}..] Where $#usn7[..@usn6][..$0])"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Merge #usn8=((#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]})) On Match Set Reduce(#usn8=Count ( * )[..12][..{@usn6}],`` In {`1esn`} Starts With @usn6|@usn6[{0}..]).@usn5 =$#usn7 =~{12} =~False On Match Set @usn5 =`2esn`[$1000..9e12][{#usn8}..{7}] Create Shortestpath(((_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})));"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Optional Match `6esn`=(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}),(((usn2 :_usn3)<-[#usn7{#usn8:{`1esn`} Is Not Null}]->(`8esn` {`3esn`:'s_str'[..0X7]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6))) Remove (`2esn` :`2esn`{`5esn`:{1000}[{``}][999],`3esn`:#usn7 =~{`4esn`} =~123456789})-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(`2esn` :_usn3)-[? *01..07]->(`8esn` :#usn7)._usn3!,Any(@usn5 In Null =~12e12 Where {_usn4} In {1000}).`3esn`,Reduce(_usn3=12.e12[``..usn2][{#usn7}..@usn5],`2esn` In {999} Is Not Null|@usn6[$_usn4]).`6esn` Start ``=Node:`6esn`(usn2={`8esn`}) Where {7} Starts With $usn1 Starts With 1.0 Union All Remove {`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}.`1esn`,[0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0],Count(*) Starts With $usn1 Starts With {usn2}].`2esn`?,Reduce(`5esn`=$_usn4[{``}..][1e1..],usn1 In 12.e12 In {0} In 9e1|{`1esn`} Starts With @usn6).#usn8? Optional Match (((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}))),#usn8=((`2esn` :@usn6)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)<-[`1esn`:`8esn`|:_usn4 *123456789..0X7$12]->(:`1esn`{`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})) Using Scan `3esn`:`3esn` Start `6esn`=Node:@usn5({`3esn`}) ,`4esn`=Node:#usn7({``}) Union Unwind #usn7[9e0] As ``;"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Unwind $usn2 As `5esn` Union Merge `2esn`=Allshortestpaths((((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})<-[_usn4?:usn2|#usn7{_usn4:{`1esn`} In 12.e12 In 9e1}]-(:usn2:`2esn`)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]})))) On Create Set Case $`1esn`[07] When Null =~12e12 Then $``['s_str'..][0x0..] Else Null Is Null Is Null End.usn2? =0X0123456789ABCDEF[9e12],`4esn`+=12.e12[$`4esn`..],`8esn` =$usn1[0X7] On Match Set [1.e1 =~$usn2,$`5esn`[`1esn`][0X0123456789ABCDEF],$0[`7esn`]].`5esn`? =@usn5[$12..\"d_str\"],_usn3+=$`1esn`[$12][Count ( * )];"), + octest_legacy:ct_string("Cypher 999.999 Cypher Merge @usn6=Shortestpath((:``{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})-[?:`4esn`|:#usn7]->(`1esn` :@usn6)<-[`1esn`?]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})) On Match Set `5esn` =Filter(`5esn` In $`2esn`[12.e12][$@usn5] Where 's_str'[.._usn4][..``]),{usn2:{`6esn`} Ends With 0e0 Ends With {``}}.``? =`7esn`[{7}..@usn5],`3esn`+={#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null Load Csv With Headers From {`4esn`} Contains $`1esn` Contains 01234567 As `8esn` Fieldterminator \"d_str\" Unwind {1000}[{#usn8}] As #usn8"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Create Unique (`2esn` :@usn6{7})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]})<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`),(((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}))) Create Shortestpath(({`3esn`:0.e0[{999}][{`1esn`}],`1esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[:usn2|#usn7 *0X7..0Xa]->(#usn7 :@usn5)),`3esn`=(((`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[usn1?:`4esn`|:#usn7 *0X7..0Xa]->({_usn4:01234567[..9e1]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}))) Load Csv With Headers From $`2esn`[{usn2}] As #usn8 Union All Start @usn6=Node:`4esn`(``='s_str') Where {`5esn`} Contains 's_str' Contains 9e1 Start `8esn`=Relationship(07,123456789,123456789) ,usn2=Relationship( {123456789})Where $0[$1000..00][{0}..{usn1}] Optional Match _usn3=((:@usn5{`3esn`:@usn5 =~'s_str',`1esn`:$`7esn` Contains {`1esn`} Contains 9e12})),_usn4=(((@usn6 {usn1:$#usn7 =~{12} =~False})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))) Using Index `3esn`:``(`5esn`) Using Scan usn2:_usn3 Where $12 Is Not Null Union Unwind Reduce(`6esn`=7[$0..][{_usn4}..],_usn3 In {`2esn`} Ends With {12} Ends With 7|{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`)[[$#usn7[`5esn`],Count(*) Ends With 123.654 Ends With $12,$#usn7[..@usn6][..$0]]] As `3esn`"), + octest_legacy:ct_string("Cypher 0.1000 Drop Constraint On(`8esn`:_usn4)Assert Exists(Extract(#usn7 In 123.654 Starts With $`` Where 12.e12[`7esn`]).@usn5)"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Drop Constraint On()-[usn2:usn1]-()Assert Exists(Reduce(`8esn`=999 Starts With 's_str',`2esn` In {999} Is Not Null|{12} Contains 9e0).#usn8!);"), + octest_legacy:ct_string("Profile Create Unique @usn6=Allshortestpaths(((:#usn8{#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})-[_usn4 *0x0..]-(:#usn7{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}}))),Shortestpath((`5esn` )<-[`3esn` *..010]-(:@usn5{`2esn`:True[$123456789][`8esn`]})) Union All Load Csv From `6esn` Starts With 123.654 As `8esn` Fieldterminator \"d_str\" Unwind Filter(`3esn` In 123.654[1e1..][{#usn8}..] Where $7 Is Not Null) Is Null Is Null As #usn8;"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On()-[`1esn`:_usn4]-()Assert Exists(Shortestpath((((_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )})-[?:usn2|#usn7]-(`1esn` {#usn7:Count ( * )[$12..]})<-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]->(_usn4 {_usn3:`1esn`[..00][..{7}]})))).`3esn`?);"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On()-[_usn4:`5esn`]-()Assert Exists(Shortestpath(((_usn4 :`8esn`:@usn5))).``!)"), + octest_legacy:ct_string("Profile Drop Constraint On(``:`3esn`)Assert All(#usn7 In 123.654 Starts With $`` Where {_usn4}[...e12][..0xabc]).`4esn`? Is Unique"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Create Unique Shortestpath((`5esn` )<-[`3esn` *..010]-(:@usn5{`2esn`:True[$123456789][`8esn`]})) Merge usn2=Allshortestpaths((:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[_usn4? *07{1000}]-(`` )<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})) Union Load Csv With Headers From Count ( * )[$12..] As @usn5 Remove All(`1esn` In `3esn`[07..] Where @usn6[{0}..]).``?,(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})<-[`8esn`?:`4esn`|:#usn7]->({`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]})<-[:_usn4|:usn1 *07]-(#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"}).@usn5!,Reduce(#usn7=$`7esn` Is Null Is Null,`1esn` In `3esn`[07..]|1000 Is Not Null)._usn3! Create `4esn`=Shortestpath((((`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})))),Allshortestpaths((@usn6 :`7esn`{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12})-[_usn3?:``]-(@usn5 {_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})) Union Create (((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}))),(((`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})-[_usn3?*..{#usn7:#usn8 =~{999},`8esn`:{_usn3}[`3esn`..$#usn8]}]->({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})-[@usn6 *07{`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}]->({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]}))) Foreach(`3esn` In {123456789} Is Not Null| With Distinct *,.e0 =~{`8esn`} =~$999 As #usn7,{_usn4:$0[$1000..00][{0}..{usn1}]}[{`2esn`:$``['s_str'..][0x0..]}..] As `1esn` Skip $usn1 =~010 =~07 Where {@usn5} Starts With 1.0 Starts With 00 Remove Shortestpath(((usn2 :_usn3{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000}))).@usn6?) Match Allshortestpaths((#usn8 :`7esn`)) Using Join On usn1 Using Join On `6esn`,_usn4"), + octest_legacy:ct_string("Cypher 0.1000 Drop Constraint On(`3esn`:@usn6)Assert Reduce(@usn5={@usn6}[True..{_usn3}],#usn7 In 123.654 Starts With $``|12.e12 In {0} In 9e1).`8esn` Is Unique"), + octest_legacy:ct_string("Cypher 999.999 Cypher Return @usn5[$12..\"d_str\"] As @usn6,usn2 In `2esn` In $`7esn`,.e1[0.12] As @usn6 Order By [1.e1 =~$usn2,1000][[_usn4 In 0.0[..{999}][..0.0] Where 12.e12[{7}..7]]..][All(_usn4 In `2esn` Where $0[`7esn`])..] Descending,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..])[..{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}][..Filter(`2esn` In {999} Is Not Null Where 010 In `1esn`)] Desc Skip {#usn8} =~{999} =~{#usn7}"), + octest_legacy:ct_string("Cypher 7.0 Remove (_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`3esn` {`1esn`:$`6esn` Starts With 12.e12 Starts With $#usn7})-[_usn4 *0x0..]-(:``$_usn4).#usn8!,Extract(_usn4 In 0.0[..{999}][..0.0] Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`|{`6esn`} Ends With 0e0 Ends With {``}).`1esn`! Foreach(`` In 00 Ends With `8esn`| Match _usn4=Shortestpath(((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))) Using Index `1esn`:`4esn`(`1esn`)) Unwind {`6esn`} Contains {usn2} Contains $1000 As `2esn` Union All Match (:``),`4esn`=(`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})-[?:@usn6|`` *..0Xa]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]}) Using Scan `7esn`:#usn8 Create Shortestpath((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Foreach(usn1 In `8esn`[..`4esn`][..$usn1]| Load Csv With Headers From {12}[00..{@usn6}][1.e1..0] As @usn6 ) Union All Start `8esn`=Node:`1esn`({@usn5}) Load Csv From [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null As `7esn` Fieldterminator 's_str' Foreach(`8esn` In 1.0 Ends With $`2esn` Ends With {`8esn`}| With Distinct *,Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End[None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])][count(Distinct $`5esn`[$#usn7..][0xabc..])] As `2esn`,12 Is Not Null Is Not Null As #usn8 Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}])[[#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}]..{`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}][Case When 2.12 =~0x0 =~_usn4 Then .e1[@usn5]['s_str'] When $@usn5 In $usn2 In {1000} Then {0}[False..@usn5] Else {@usn6}[True..{_usn3}] End..`1esn`()] Ascending);"), + octest_legacy:ct_string("Explain Profile Match _usn4=((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null})<-[usn2 *..01234567{`1esn`:@usn5 =~'s_str',`8esn`:{999} Starts With {_usn4} Starts With 00}]->(usn1 {`5esn`})<-[:`8esn`|:_usn4 *1000]->(`5esn` $`8esn`))),((({usn2:$`5esn`[`4esn`][_usn3]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})-[_usn3 *..01234567$`5esn`]->({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null}))) Using Index usn1:``(#usn7) Using Index `3esn`:#usn8(`2esn`) Where 7 Contains $`` Contains {`6esn`} Optional Match Allshortestpaths((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Optional Match _usn4=Allshortestpaths(((:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})-[?:#usn8|`2esn` *999{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({@usn6:#usn8[$0..False][$`1esn`..$#usn7]})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}))),`6esn`=Allshortestpaths(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})-[:`1esn`|:`3esn` *..01234567{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(#usn7 {``:0x0 =~123.654 =~{999}})) Union Remove Allshortestpaths((({#usn7:#usn8 =~{999}})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2}))).@usn6,_usn4:`8esn`:@usn5 Start #usn7=Relationship:usn2(_usn3='s_str') ,`4esn`=Node:`7esn`(``={usn2}) Match ((`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}})-[?:`1esn`|:`3esn` *999{usn1:0[{@usn5}..][7..],`7esn`:{``}[_usn4..$`1esn`]}]->(`3esn` :`8esn`:@usn5{@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})),(({`4esn`:_usn4 Is Null Is Null,@usn6:{`5esn`} Contains 's_str' Contains 9e1})-[`6esn`:`8esn`|:_usn4]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})) Using Scan `8esn`:#usn7 Using Scan `1esn`:`4esn` Union Detach Delete {@usn5}[..{_usn4}][..$@usn5],Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..] Optional Match Allshortestpaths(((({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2})<-[:_usn4|:usn1 *07]-(#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})))) Where 1000 Is Not Null Unwind $`` In `7esn` As `7esn`"), + octest_legacy:ct_string("Profile Create Constraint On(`8esn`:@usn6)Assert (:#usn8{`2esn`:{7}[$7..],#usn7:`1esn` In 07})-[?:`8esn`|:_usn4 *12..]->(@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]}).`6esn`! Is Unique;"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Unwind 9e1[$_usn4..0xabc] As `8esn` Create ``=((`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6)<-[#usn7]-(@usn6 )),`6esn`=Allshortestpaths(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})-[:`1esn`|:`3esn` *..01234567{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(#usn7 {``:0x0 =~123.654 =~{999}})) Return Distinct $@usn6 Ends With 01 Ends With 999 Skip {_usn3} Contains 9e0 Contains $999 Limit Allshortestpaths(((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}))) Starts With All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`)"), + octest_legacy:ct_string("Profile Create Constraint On(#usn7:#usn7)Assert Extract(`` In {`1esn`} Starts With @usn6 Where {_usn3}[$usn2..])._usn4? Is Unique;"), + octest_legacy:ct_string("Cypher 0.1000 Merge `8esn`=Shortestpath((:`2esn`{`4esn`:`3esn` Is Not Null Is Not Null})<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(usn1 {`4esn`:1.0[{999}][$999],``:9e1[9e1...e0]})) On Create Set `2esn`+=$#usn7[`2esn`][010] On Create Set `1esn`:`` Union Load Csv From #usn8 =~`7esn` As `` Foreach(`2esn` In None(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) Ends With Case When 0x0[{999}..][{_usn4}..] Then Count(*)[.e12] When {_usn4}[...e12][..0xabc] Then Count(*) Ends With $`` Ends With {7} Else ``[{#usn8}] End Ends With Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where 's_str' Starts With 12e12 Starts With $_usn4|True Starts With $`4esn` Starts With 12e12)| Create Unique Shortestpath(({`8esn`:0[$`6esn`...e1][`1esn`..$`7esn`]})-[#usn8:#usn7|`2esn`]->(:@usn6{`2esn`:$999 In 999})),`8esn`=((`5esn` )) Load Csv From #usn8 =~`7esn` As `` ) Foreach(`1esn` In All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Contains `4esn`(999 Starts With 's_str') Contains (`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})| Create (#usn8 :`7esn`),`3esn`=Shortestpath((:_usn4)-[`6esn`?{#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}]-({`3esn`:9e1 =~999})-[`3esn`? *01..07]->({`7esn`:@usn5[..$@usn5][..0Xa]})) Detach Delete Reduce(@usn5={`1esn`} In 12.e12 In 9e1,`5esn` In $`2esn`[12.e12][$@usn5]|$`6esn` Ends With {0} Ends With {`7esn`}) Is Null,``[..0X0123456789ABCDEF],{`1esn`}[$`4esn`..][False..]);"), + octest_legacy:ct_string("Explain Profile Detach Delete [12e12 Starts With `1esn` Starts With usn2,Count ( * ) Is Null][(#usn8 {``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})][Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))],[#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]][Shortestpath(((`1esn` :`7esn`)<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})))..],Shortestpath(((usn1 {``:.e12 =~$_usn4})))[`6esn`(_usn3 Contains .e0 Contains {usn2},`3esn`[07..])][[.e12 Ends With 1000 Ends With 010,Count(*)]] Optional Match `4esn`=(`6esn` {``:`4esn`[usn1]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]-(#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]}) Using Join On `7esn` Match _usn4=Shortestpath((`6esn` :`2esn`{`7esn`:#usn8 =~{999}})),(((usn2 :``)-[@usn5?:#usn7|`2esn`{`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}]->(`2esn` :@usn6{7})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`))) Using Index ``:`1esn`(_usn4) Using Index _usn3:_usn3(`6esn`) Where 123.654[1e1..][{#usn8}..];"), + octest_legacy:ct_string("Profile Merge ({usn1:0[{@usn5}..][7..],`7esn`:{``}[_usn4..$`1esn`]}) Unwind $``[.e12..] As `3esn`"), + octest_legacy:ct_string("Cypher Drop Constraint On(`8esn`:@usn6)Assert Reduce(#usn8=$`4esn` Starts With 0e0,_usn3 In True[7][$999]|1e1[1.e1..][123.654..]).@usn5! Is Unique"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Start #usn7=Node:#usn7('s_str') Where {12}[00..{@usn6}][1.e1..0] Union All With Distinct $@usn6 Ends With 01 Ends With 999 Skip {_usn3} Contains 9e0 Contains $999 Limit Allshortestpaths(((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}))) Starts With All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Where 12.e12[`7esn`] Remove [`1esn` In $12 Is Not Null].`6esn`? Union All Create Unique usn2=Allshortestpaths((({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]}))) Start `1esn`=Rel:@usn5({usn1}) Where 7[$0..][{_usn4}..] Foreach(usn2 In {`7esn`}[..9e12][..0.0]| Load Csv From $@usn6[$0..usn1][0X0123456789ABCDEF..$999] As `1esn` Delete {@usn5}[..@usn6],0e0 Contains `3esn` Contains `7esn`,1.e1 Ends With 0 Ends With $usn1);"), + octest_legacy:ct_string("Cypher 999.999 Cypher Create Constraint On(`5esn`:`8esn`)Assert Extract(`6esn` In 00 Where $12 Is Not Null|1000 Is Null).`7esn`! Is Unique;"), + octest_legacy:ct_string("Profile Create Constraint On()-[@usn6:`3esn`]->()Assert Exists((:usn2:`2esn`)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4)<-[``?:#usn8|`2esn`]->(:`8esn`:@usn5).#usn7);"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Drop Constraint On()-[`1esn`:`8esn`]->()Assert Exists(Extract(_usn4 In 0.0[..{999}][..0.0] Where Count(*)[.e12]|_usn4[Count(*)]).@usn5?)"), + octest_legacy:ct_string("Cypher 0.1000 Create Constraint On(`3esn`:_usn4)Assert Exists(Allshortestpaths((:`2esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})).`5esn`?)"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Merge ``=((_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[ *0xabc..7]->(:`4esn`:@usn6)-[?{`7esn`:{``} Ends With .e12 Ends With 0.e0}]-(`4esn` {`2esn`:12 Starts With 7 Starts With $`5esn`})) On Create Set [`6esn` In 00 Where $`1esn`[$12][Count ( * )]].`5esn`? =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,_usn4 =Reduce(@usn5=True[7][$999],usn1 In 12.e12 In {0} In 9e1|.e12 =~$_usn4)[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])][[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]]] Foreach(@usn6 In {1000}[{usn1}][Null]| Load Csv With Headers From $`8esn`[..0x0][..``] As usn2 Delete Case 0Xa Contains Count ( * ) When 12e12 Starts With `1esn` Starts With usn2 Then 010 In `1esn` When 123456789 Ends With usn1 Ends With usn2 Then `1esn`[..\"d_str\"][..$`5esn`] End[..{`2esn`:Count(*)[.e12]}]) Foreach(usn2 In {`4esn`}[{`4esn`}..999]| Detach Delete 9e1[9e1...e0]);"), + octest_legacy:ct_string("Cypher 7.0 Create Constraint On(`4esn`:@usn5)Assert [{usn2} =~@usn6 =~{`4esn`},Count(*) Is Not Null].`6esn`! Is Unique"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Drop Constraint On(`6esn`:`1esn`)Assert `3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]).``? Is Unique"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On()<-[@usn5:#usn7]-()Assert Exists(Allshortestpaths((({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))).`1esn`!)"), + octest_legacy:ct_string("Cypher 999.999 Cypher Create Constraint On(`6esn`:_usn3)Assert {``:0.12[..$`6esn`][..$1000]}.@usn6! Is Unique;"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Drop Constraint On()-[`5esn`:usn2]->()Assert Exists((:#usn7{usn2:{`8esn`}[0X7][$`3esn`]})<-[usn2]-(@usn6 :@usn6{`5esn`:@usn5[$12..\"d_str\"],usn2:1.e1[0X0123456789ABCDEF..]})<-[?:@usn6|``{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(_usn4 :_usn4).`1esn`);"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Foreach(`4esn` In Reduce(`7esn`={@usn5} Is Null,#usn7 In 0Xa[@usn5][{`7esn`}]|0e0[0X0123456789ABCDEF..010][$@usn6..010])[Extract(_usn4 In `2esn` Where 123.654 Starts With $``|12.e12[``..usn2][{#usn7}..@usn5])]| Delete Shortestpath((@usn6 {``:.e12[\"d_str\"..][.e1..]}))[{`3esn`:#usn8 =~{999}}..[_usn3 In True[7][$999] Where 12e12 Is Not Null Is Not Null]],{@usn5} Is Null With {`4esn`}[$_usn4..][9e0..] Skip Reduce(_usn4=.e1 Starts With $_usn4 Starts With {`1esn`},`6esn` In 00|usn2[True])[..[9e12[..0X7]]][..$`1esn`] Where {`2esn`} Is Not Null Is Not Null) Union With $12 Is Not Null As `6esn`,(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Is Not Null Is Not Null As `2esn`,$`4esn` In Null Order By 2.12[`8esn`][1e1] Descending Skip $1000 Is Null Is Null Optional Match `8esn`=Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Using Scan `4esn`:_usn4"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Foreach(`3esn` In {@usn5} Starts With 1.0 Starts With 00| Detach Delete True Starts With $`2esn` Starts With {@usn6},.e12[\"d_str\"..][.e1..],$_usn3[..$`2esn`][..\"d_str\"]) Union All Remove Reduce(`4esn`=_usn4 Is Null Is Null,_usn3 In {@usn5}[..#usn7]|$@usn6[$`8esn`..][7..])._usn4? Optional Match (usn2 :`5esn`:@usn5)-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]});"), + octest_legacy:ct_string("Cypher 999.999 Cypher Drop Constraint On(`2esn`:usn2)Assert {`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}.`3esn`! Is Unique;"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Unique (:``) Start ``=Node:_usn3('s_str') With Distinct 0e0[..1000] As #usn7,#usn8 Is Not Null As usn2 Order By 0.0[9e1..][Null..] Ascending,123.654[{@usn5}..123.654][1.0..$12] Descending,All(`5esn` In $`2esn`[12.e12][$@usn5] Where 12[..$@usn6]) =~(_usn4 :`7esn`)<-[{`2esn`:1000 Is Null Is Null}]->({`6esn`:7[010][00],#usn8:$usn1 =~010 =~07}) Desc Skip `8esn` Is Null Is Null Limit 12.0[#usn7]"), + octest_legacy:ct_string("Cypher 0.1000 Match `8esn`=Allshortestpaths((`` :``)-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})) Using Scan `3esn`:#usn8 Using Join On _usn3 Create _usn4=((`8esn` :`5esn`:@usn5)-[_usn3:#usn7|`2esn`]-(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})) Union Foreach(usn1 In $`6esn`[`8esn`][$`5esn`]| Start `6esn`=Relationship:`4esn`(\"d_str\") ,`3esn`=Relationship:`2esn`(#usn7={usn1})Where @usn5 Is Not Null Is Not Null Match (((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),_usn4=Allshortestpaths((usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})) Using Scan `2esn`:#usn7 Where {#usn8} =~{999} =~{#usn7}) Union All Detach Delete {12}[00..{@usn6}][1.e1..0],`1esn`(Distinct $usn1 Starts With {_usn3},{#usn8}[$#usn7..]) Starts With [$_usn4[$`4esn`..$12]] Starts With [`6esn` In 00 Where 0.12 In 0X7|{999} Is Null] Start ``=Node:`6esn`('s_str') Where #usn7 Ends With $#usn7 Ends With {`8esn`};"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(_usn3:#usn7)Assert Exists([_usn4 In 0.0[..{999}][..0.0] Where 12 Ends With 01].`7esn`)"), + octest_legacy:ct_string("Cypher Match ((`3esn` :`4esn`:@usn6{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]})-[`8esn`?:``]->(`` {`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]})),`3esn`=((:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})) Using Scan ``:usn2"), + octest_legacy:ct_string("Cypher Drop Constraint On(`1esn`:`6esn`)Assert `1esn`(Distinct).usn2 Is Unique"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Using Periodic Commit 0Xa Load Csv With Headers From Reduce(``={usn2} =~@usn6 =~{`4esn`},`` In {`1esn`} Starts With @usn6|0[{@usn5}..][7..]) Contains [`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]] Contains [$999 Is Null,{``}[010]] As `4esn` Fieldterminator 's_str' Detach Delete 123.654[{`7esn`}][{7}],Count ( * ) Starts With 010 Starts With 0x0;"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Create Constraint On(@usn5:_usn4)Assert Exists(None(`5esn` In $`2esn`[12.e12][$@usn5] Where $``[.e12..]).#usn7)"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Foreach(`2esn` In @usn5 Is Null| Return 9e12 Is Not Null,(`8esn` :`8esn`:@usn5)<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]->(#usn7 :`2esn`)-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Is Null Is Null Order By Count ( * )[00] Ascending Skip True[..010] Limit 0e0 Starts With $@usn6 Starts With $`6esn`) Detach Delete All(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) In Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4]) In [``[00..$7],.e1 Contains $`3esn`,{``} Starts With 123456789 Starts With usn2],[`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7}|usn2[`7esn`..{`3esn`}][$7..{#usn7}]][..[`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]|9e12[..0X7]]][..[`2esn` Ends With $`4esn` Ends With {#usn7},'s_str'[..0X7],{#usn8} =~{999} =~{#usn7}]] Create #usn8=(`8esn` :`5esn`:@usn5)-[`5esn`?:usn2|#usn7]->(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )}),`1esn`=Allshortestpaths((_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}))"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Optional Match `8esn`=Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Using Scan `4esn`:_usn4 Load Csv With Headers From 12.e12[..1e1] As `2esn` Merge Allshortestpaths((usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})<-[?:`6esn` *07]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}));"), + octest_legacy:ct_string("Cypher Drop Constraint On(usn2:`4esn`)Assert Filter(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $7[{`1esn`}]).@usn5 Is Unique"), + octest_legacy:ct_string("Cypher 7.0 Unwind .e0 =~{`8esn`} =~$999 As _usn4 Create ``=Allshortestpaths(((:usn1:_usn4)-[`1esn`:`1esn`|:`3esn` *01..07{`3esn`:123456789 Is Not Null Is Not Null}]-(`1esn` {@usn5:$usn1 In 0.12 In $``})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`))),Allshortestpaths(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(usn1 :`8esn`:@usn5)-[? *0x0..{`6esn`:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-({`2esn`})) With `7esn` Contains `5esn` Contains 0X7 As `1esn`,#usn7(01 =~$`1esn`) =~{@usn6:12.e12[$`8esn`..{`8esn`}],#usn8:#usn7 =~00} As `5esn`,{@usn6}[$`7esn`..][False..] Order By $@usn6 =~#usn8 Descending,{1000} Ends With {`8esn`} Ascending Skip 1000[$7..$123456789] Limit 9e12[..0X7]"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Remove {`8esn`:$@usn6 Starts With {`1esn`} Starts With 12,_usn3:@usn6[$_usn4]}.`2esn` Load Csv With Headers From {_usn3}[$usn2..] As `` Fieldterminator 's_str'"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Create Constraint On()<-[`6esn`:#usn8]-()Assert Exists(Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[$`8esn`.._usn3]).usn2?)"), + octest_legacy:ct_string("Cypher Remove `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null).`3esn`! Delete 0e0[..$@usn5][..$`8esn`] Union Remove Shortestpath((_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}})).#usn8?"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(usn2:`5esn`)Assert Exists([`7esn` Ends With $_usn3 Ends With usn2].@usn6?)"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Return Distinct $`2esn`[{usn2}],$`5esn`[$#usn7..][0xabc..] Order By [0.12[..$`6esn`][..$1000],0.12 Starts With 9e12 Starts With $`1esn`,\"d_str\" Contains @usn6 Contains 12.e12] Is Null Ascending,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..])[..{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}][..Filter(`2esn` In {999} Is Not Null Where 010 In `1esn`)] Desc,{999} Ends With 123456789 Ends With {@usn5} Descending Limit $usn1 Contains {`8esn`} Contains $123456789 Union Create Unique `8esn`=((@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]}));"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On()<-[usn1:`1esn`]-()Assert Exists(Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`)).@usn5)"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Drop Constraint On(`5esn`:_usn4)Assert Exists((_usn3 {_usn4:{_usn3} Is Not Null})-[`4esn`?:usn1 *0xabc..7]-(`` :_usn4).#usn7!);"), + octest_legacy:ct_string("Cypher 7.0 Create Constraint On(@usn5:`1esn`)Assert Case {usn1} In Count ( * ) When 9e12 Is Not Null Is Not Null Then $999 Ends With {0} End.`4esn` Is Unique;"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Drop Constraint On(#usn7:_usn4)Assert Case _usn3 Contains .e0 Contains {usn2} When $#usn7[$`4esn`] Then usn2 Ends With Count ( * ) Ends With $@usn6 Else 1e1[..$1000][..999] End.`6esn`! Is Unique"), + octest_legacy:ct_string("Profile Remove (`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[{_usn4:{1000} Ends With {`8esn`}}]-(@usn5 :`7esn`{_usn3:{``}[_usn4..$`1esn`]})<-[`2esn`?*]->({#usn7:1e1[1.e1..][123.654..],`3esn`:True Starts With $`4esn` Starts With 12e12})._usn4? Create Unique `7esn`=((`1esn` :#usn7))"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create Constraint On()-[`2esn`:`4esn`]->()Assert Exists(Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[$`8esn`.._usn3]).usn2!)"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Detach Delete {_usn3}[$usn2..] Union All Start `4esn`=Rel:`1esn`(@usn5={`5esn`}) ,`4esn`=Node(01234567,0Xa,07)Where @usn6[{0}..] Union All Remove [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12].`2esn`,[usn1 Contains $7 Contains $``,$@usn5 In 's_str' In $12,$`1esn` Is Not Null Is Not Null].usn2!,All(`1esn` In `3esn`[07..] Where 999 Starts With 's_str').#usn8! Remove Extract(`` In {`1esn`} Starts With @usn6 Where Null[{_usn4}..]|0Xa Contains {`7esn`} Contains $999).`5esn`!,All(`5esn` In $`2esn`[12.e12][$@usn5] Where {999} Starts With {12}).`2esn`,Reduce(`3esn`={7} Starts With $usn1 Starts With 1.0,_usn3 In True[7][$999]|123.654[{@usn5}..123.654][1.0..$12]).#usn8 Foreach(`` In {123456789} =~01234567 =~`3esn`| With (`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] Order By `1esn`[..00][..{7}] Ascending,`6esn` In Null Descending,{`3esn`} Is Null Descending Skip Case When .e1[@usn5]['s_str'] Then 123456789 Starts With {@usn6} Starts With $12 End Contains [`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`] Contains {@usn5:12 Is Not Null,`2esn`:$999 In 999} Where $``[..1.e1][..12] Start @usn5=Node:``(#usn7=\"d_str\") ,#usn8=Relationship:`4esn`(``='s_str')Where $``[..1.e1][..12])"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Start _usn3=Node( {usn2}) ,`8esn`=Rel( {`7esn`})Where {0} Is Null Detach Delete 0.12 Ends With {1000} Ends With `6esn`,$@usn5[usn2..][$0..] Return Distinct *,.e0 =~{`8esn`} =~$999 As #usn7,010 In $`5esn` In 0 As `6esn` Order By $usn1 In 0.12 In $`` Descending,Count ( * ) Contains 12 Descending Skip $`` In `7esn` Limit [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]][Shortestpath(((`1esn` :`7esn`)<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})))..];"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On()-[usn1:``]->()Assert Exists(Reduce(`3esn`=1.0 Is Null Is Null,`1esn` In `3esn`[07..]|{`4esn`} In _usn4)._usn4!)"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Create Constraint On(#usn7:`3esn`)Assert Exists((`7esn` :@usn5{`7esn`:{1000}[{usn1}][Null],`3esn`:7[$0..][{_usn4}..]})<-[_usn4?:`2esn`{`2esn`}]-(`3esn` :`2esn`{`8esn`:Null In .e0})-[`2esn`?:`` *999{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12}]-(usn2 {`7esn`:{usn1}[$`8esn`..0.0]}).`4esn`?)"), + octest_legacy:ct_string("Cypher 7.0 Create (((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})-[`4esn`?:``{usn2:12e12 Ends With `4esn` Ends With 123456789}]->(:`7esn`{usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))),(((#usn8 )-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]})));"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Create Constraint On()-[``:@usn6]->()Assert Exists(All(usn1 In 12.e12 In {0} In 9e1 Where {12} Contains `7esn` Contains $_usn3).`5esn`?)"), + octest_legacy:ct_string("Cypher 999.999 Cypher Load Csv With Headers From $`2esn` Starts With {`8esn`} Starts With {usn1} As usn2 Fieldterminator 's_str' Return Distinct *,{`8esn`:{#usn8}[$#usn7..]}[Case 12.e12[``..usn2][{#usn7}..@usn5] When `3esn` Is Not Null Is Not Null Then 7 Contains `2esn` Contains $`8esn` Else $``[..1.e1][..12] End..] As `2esn`,0e0 Starts With $@usn6 Starts With $`6esn` Detach Delete Allshortestpaths(((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8?:``]-(`1esn` :`1esn`{`7esn`:{1000}[{usn1}][Null],`3esn`:7[$0..][{_usn4}..]})<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(usn1 {`4esn`:1.0[{999}][$999],``:9e1[9e1...e0]}))) Starts With (`7esn` )-[:_usn4|:usn1 *0X7..0Xa{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]}]-({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Drop Constraint On(`5esn`:``)Assert _usn3(12.e12[2.12..][0xabc..],.e1[0.12]).`5esn`? Is Unique"), + octest_legacy:ct_string("Cypher Drop Constraint On(`8esn`:_usn3)Assert Case When {`1esn`} =~{_usn4} Then 7 Is Not Null End.`5esn`! Is Unique;"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Drop Constraint On(`8esn`:usn1)Assert Exists(Allshortestpaths((((@usn5 )<-[?:`1esn`|:`3esn`*]->(_usn4 :#usn8{`2esn`})<-[@usn6 *07{`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}]->(_usn3 :_usn4{`7esn`:00 Starts With $`6esn`,`6esn`:{12}[999][{_usn3}]})))).`6esn`?);"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Foreach(`3esn` In {usn1} In Count ( * )| With Distinct *,{`6esn`} Contains {usn2} Contains $1000 As `2esn` Order By $`5esn`[`1esn`][0X0123456789ABCDEF] Ascending,Count(*)[usn2..][$#usn8..] Asc Where 0X7 Starts With {999} Starts With 12e12 With *,$999[07..{#usn7}][1e1..0xabc] As #usn8 Order By None(@usn5 In Null =~12e12 Where #usn8[`7esn`..])[{123456789}..][All(`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0})..] Ascending Skip Single(`6esn` In 00 Where $_usn4 Ends With 0.e0 Ends With .e0) Contains Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End) Union All Match @usn6=Allshortestpaths(({`4esn`:#usn8 Is Null})),(({`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})) Using Scan `1esn`:`7esn` Match ``=Allshortestpaths((((`6esn` :@usn5)<-[`4esn`?*..]-(:`4esn`:@usn6{`3esn`:123456789 Is Not Null Is Not Null})-[_usn4?:`3esn`|:@usn5]->(:@usn5{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12})))) Using Scan usn2:@usn5 Where 0 Contains $usn2 Contains 12e12 Create Unique Shortestpath(((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))),`5esn`=Allshortestpaths(((:`7esn`{usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})<-[`8esn`?:`4esn`|:#usn7]->({`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]})-[usn2 *07{usn1:07 =~@usn5}]->({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})));"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Drop Constraint On()-[`2esn`:``]-()Assert Exists((`` :`4esn`:@usn6{``:.e12 =~$_usn4})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]}).@usn5);"), + octest_legacy:ct_string("Cypher 7.0 Create Constraint On(`4esn`:`6esn`)Assert Exists(Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[{999}..][{_usn4}..]|{12}[00..{@usn6}][1.e1..0]).@usn6?)"), + octest_legacy:ct_string("Explain Profile Unwind #usn8 =~{usn1} =~00 As _usn4 Create Unique `3esn`=(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]}),Shortestpath(((:#usn8{`2esn`:12e12 Is Not Null,_usn3:12.e12[2.12..][0xabc..]})<-[#usn8? *..0Xa{`4esn`:$`2esn` Ends With 0.12 Ends With .e1,`4esn`:07 =~@usn5}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})<-[@usn5:`3esn`|:@usn5 *01..07{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}]->(usn1 :``{_usn3:``[{#usn8}],`3esn`:{`3esn`} Is Null}))) Remove [{#usn8}[#usn7..{`2esn`}],{1000},{@usn5}[1e1..][9e1..]]._usn4!,Allshortestpaths(((`` {``:$0[..{usn2}][..$usn1]})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))).@usn5!,Reduce(#usn7=9e0[#usn8],_usn3 In True[7][$999]|{`2esn`}[Count(*)]).`8esn`?;"), + octest_legacy:ct_string("Cypher 999.999 Cypher Drop Constraint On(@usn6:`3esn`)Assert Exists(Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null).`8esn`!)"), + octest_legacy:ct_string("Profile Optional Match Allshortestpaths((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Detach Delete 0.12[Count(*)..][$#usn7..],0Xa[0e0..{#usn7}] Match ((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]})),(((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`}))) Using Join On `8esn`,_usn4 Where $`7esn` In 12"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Match Allshortestpaths(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),Allshortestpaths((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})-[`5esn`{`7esn`:@usn5[..$@usn5][..0Xa]}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})<-[#usn8? *..01234567]-($_usn3)) Remove [@usn5 In Null =~12e12 Where _usn4 In $usn1].`6esn`?,Reduce(`4esn`=`3esn`[..{_usn4}][..{@usn5}],`2esn` In {999} Is Not Null|123456789 Starts With {@usn6} Starts With $12).usn2,Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3).`3esn` Union All Merge _usn4=(`7esn` :`5esn`:@usn5{`2esn`:12 Starts With $#usn7})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(`4esn` :_usn4{`2esn`:#usn7 =~00}) Foreach(`1esn` In Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 07[..`6esn`][..'s_str']) In [$`2esn`[$usn2..][{``}..],0.e0 Ends With False] In (:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})-[`2esn`?$_usn4]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})| Detach Delete 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF,#usn8[1.0..] Delete $#usn7[`2esn`][010],{`7esn`} Is Not Null Is Not Null) Union All Foreach(`5esn` In $_usn4 Is Null Is Null| Create _usn4=((`2esn` :@usn6)-[_usn3?:@usn6|``]-(usn2 )<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})),`5esn`=Allshortestpaths(((:_usn4)<-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]->(_usn4 {_usn3:`1esn`[..00][..{7}]}))) Remove (`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]}).`1esn`?,[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000].usn1?,{`4esn`:0.12 In 0X7}._usn4!) Remove Shortestpath(((@usn6 :`4esn`:@usn6{#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[:#usn7|`2esn` *0x0..]-({`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}))).#usn7!,Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where _usn4 Is Null Is Null).``!;"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Detach Delete ``[..$#usn7],{123456789}[..'s_str'][..$@usn6] Merge @usn6=Allshortestpaths(((`6esn` :_usn3{#usn7:$@usn6[01..@usn5][0x0..`4esn`],_usn4:9e12 =~123456789 =~$999})<-[usn1? *01..07]->({`1esn`:$123456789[..$7][..$`6esn`]}))) On Create Set None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]).@usn6! =0X0123456789ABCDEF[$`5esn`..],(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[_usn3?:`1esn`|:`3esn`{`3esn`:$@usn6 Contains $`7esn` Contains 1e1,@usn5:True Starts With $`4esn` Starts With 12e12}]-(`3esn` :_usn3{_usn3:{_usn3} Contains 9e0 Contains $999,`2esn`:{_usn3}[$usn2..]})<-[`3esn`?*{#usn8:$`1esn`[..{_usn3}]}]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}).`8esn`? =$12 Is Not Null On Match Set `7esn`+=Reduce(@usn5=True =~{`1esn`},_usn4 In 0.0[..{999}][..0.0]|7[$0..][{_usn4}..]) In Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`) In All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Merge Allshortestpaths((((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})))) Union Match @usn6=((`8esn` :`5esn`:@usn5)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null})),`4esn`=(`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})-[?:@usn6|`` *..0Xa]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]}) Where .e12[$#usn8..@usn6] Start @usn5=Relationship:#usn7({`4esn`}) ,`3esn`=Rel:`8esn`(@usn6='s_str')Where 9e12[$`5esn`];"), + octest_legacy:ct_string("Cypher Using Periodic Commit 1000 Load Csv From Any(`6esn` In 00 Where 0X7 Starts With {999} Starts With 12e12) Starts With (`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}) Starts With {`8esn`:{#usn7} Contains @usn5 Contains Count ( * )} As `5esn` Start ``=Node:_usn3('s_str') Optional Match usn2=Allshortestpaths(((({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})<-[?:``]-(`1esn` :#usn7)-[?:`4esn`|:#usn7]->(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})))),@usn6=(`2esn` :#usn8)"), + octest_legacy:ct_string("Cypher Drop Constraint On(`3esn`:_usn4)Assert Exists(Single(_usn4 In 0.0[..{999}][..0.0]).`5esn`)"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Drop Constraint On()<-[`2esn`:#usn7]-()Assert Exists(Any(`5esn` In $`2esn`[12.e12][$@usn5] Where 's_str' Starts With 12e12 Starts With $_usn4)._usn3)"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Start _usn4=Node:`6esn`({`1esn`}) ,`3esn`=Rel:#usn8(\"d_str\")Where 12 Starts With 7 Starts With $`5esn` Foreach(`` In {12} =~0.e0 =~{_usn3}| Detach Delete 12.e12 In {0} In 9e1,$``[01],0.0 In `6esn` In $@usn5 Create Unique #usn7=(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}),`6esn`=(({@usn6:Null =~12e12}))) With *,2.12[`8esn`][1e1],$usn1 Starts With {_usn3} As _usn4 Limit {`2esn`} In 0Xa In {_usn3} Union Remove (#usn8 :_usn3)<-[?:usn2|#usn7]->(#usn8 :#usn7)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`).`2esn`,{@usn6:12 Starts With {_usn4} Starts With $#usn8,`2esn`:{@usn6}[$`7esn`..][False..]}.`1esn` Create Unique (((`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]})-[]->(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )})<-[@usn6?]->(`8esn` :``))),usn2=Allshortestpaths(((({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})<-[?:``]-(`1esn` :#usn7)-[?:`4esn`|:#usn7]->(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})))) Detach Delete {`5esn`} Starts With 12.0,1000 Starts With `7esn`,$usn1 In 01234567 In .e1 Union Create Unique `8esn`=Shortestpath(((_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->(`` {``:0x0 =~123.654 =~{999}})-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->(:`3esn`:`6esn`{@usn5:.e12 =~.e0}))),Allshortestpaths((:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[_usn4? *07{1000}]-(`` )<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00}));"), + octest_legacy:ct_string("Cypher 0.1000 Drop Constraint On()-[``:`2esn`]->()Assert Exists(Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $`8esn`[..$999][..0]).`3esn`?);"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Remove Case When $7 Ends With 0X7 Then Count(*)[.e12..] Else 00 Ends With `8esn` End.``?,(_usn3 {usn1:0Xa[0e0..{#usn7}],`1esn`:.e0[True..Count ( * )][#usn7..0X7]})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1}).`3esn`?,Filter(_usn4 In `2esn` Where `3esn` Is Not Null Is Not Null).`8esn`! Start `4esn`=Node(01234567,0Xa,07) Merge (:``$_usn4)<-[:`1esn`|:`3esn` *1000]->(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})-[#usn8:`` *..0{@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}}) On Match Set #usn8 =(`8esn` :`5esn`:@usn5)<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5) Starts With None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]),@usn5 =$_usn4 Is Null Is Null Union All Detach Delete 07[`8esn`],Extract(@usn5 In Null =~12e12 Where $`5esn`[`1esn`][0X0123456789ABCDEF])[Shortestpath((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})))..All(#usn7 In 123.654 Starts With $`` Where $`5esn`[..{`2esn`}][..{0}])][Shortestpath((:`5esn`:@usn5{``:.e12 =~$_usn4})-[_usn3?:usn1 *12..{#usn7:0e0 Contains `3esn` Contains `7esn`}]-(`5esn` $`8esn`)<-[@usn5:_usn4|:usn1*]->(:@usn5))..All(`1esn` In $12 Is Not Null Where {``} Is Null Is Null)];"), + octest_legacy:ct_string("Cypher 999.999 Cypher Match (#usn7 :#usn8)-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0}),@usn6=Allshortestpaths(((`3esn` {`1esn`:$`6esn` Starts With 12.e12 Starts With $#usn7})-[`6esn`:`8esn`|:_usn4]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}))) Using Index `6esn`:usn2(@usn5)"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On(``:`2esn`)Assert Shortestpath((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})<-[#usn7?:#usn8|`2esn`]-(usn2 {`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})).#usn7 Is Unique;"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(#usn7:`4esn`)Assert Exists((#usn7 :@usn6{`8esn`:{@usn6}[True..{_usn3}],`1esn`:07 Is Null})<-[:`7esn` *..01234567{`3esn`:.e12[$7..][{`6esn`}..]}]->(`` :`4esn`:@usn6{_usn4:False[0Xa..$usn1]}).`1esn`?)"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Drop Constraint On(@usn5:`3esn`)Assert Allshortestpaths(((({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})<-[?:``]-(`1esn` :#usn7)-[?:`4esn`|:#usn7]->(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})))).`5esn`! Is Unique"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Merge ((`2esn` {_usn4:`4esn`[usn1]})<-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(:_usn4)) On Match Set `6esn` ={1000},`` =All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.e12[$`8esn`..{`8esn`}]) Is Null,All(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]).`4esn`! =01234567[{`7esn`}..]"), + octest_legacy:ct_string("Cypher 7.0 Drop Constraint On()-[`7esn`:@usn6]->()Assert Exists({usn1:0e0[0X0123456789ABCDEF..010][$@usn6..010]}.`8esn`?)"), + octest_legacy:ct_string("Cypher 0.1000 Create `5esn`=((#usn7 :_usn3{`2esn`})<-[@usn6?:`1esn`|:`3esn` *..0Xa{`1esn`:12 Starts With 0x0}]->(#usn7 :_usn3{`2esn`})<-[?:`1esn`|:`3esn`{#usn8:$0 Is Not Null,``:True Is Null Is Null}]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})),Shortestpath((:`8esn`:@usn5)<-[?:`1esn`|:`3esn`{#usn8:$0 Is Not Null,``:True Is Null Is Null}]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})) Start `8esn`=Rel:`5esn`({0}) ,`8esn`=Node:`7esn`(usn1='s_str')Where {@usn5} =~_usn4 =~0.12;"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Create Unique ``=(({`4esn`:1000 Is Null Is Null})),Allshortestpaths((((@usn6 {usn1:$#usn7 =~{12} =~False})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})))) Foreach(usn1 In 999| With {@usn5},{0} Is Null As `6esn` Skip Null In .e0) Union All Create Unique ((`1esn` :_usn3{`5esn`:{`8esn`}[..$`6esn`][..123.654],`1esn`:1000 Starts With `7esn`})),`4esn`=Shortestpath((({@usn5:``[{123456789}..]})-[`3esn`:`6esn`{`3esn`}]-({`1esn`:$123456789[..$7][..$`6esn`]})<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`))) Foreach(`6esn` In {``} Starts With 123456789 Starts With usn2| Return Distinct True[..010],`1esn` =~1000 =~1000 As `8esn` Order By 0.0[9e1..][Null..] Descending,Reduce(`6esn`={@usn5} Starts With 1.0 Starts With 00,usn1 In 12.e12 In {0} In 9e1|123456789 Ends With usn1 Ends With usn2) In (_usn3 :_usn3)<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)-[`7esn`?:`` *0xabc..7]-(usn2 ) Descending Skip Reduce(#usn8=``[00..$7],_usn4 In 0.0[..{999}][..0.0]|12 Starts With $#usn7) =~usn1() =~Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where 999 Ends With .e12 Ends With .e1|0[`4esn`][12.e12]) Limit $`7esn`[$0..][{`4esn`}..]);"), + octest_legacy:ct_string("Cypher 7.0 Drop Constraint On()<-[`6esn`:`7esn`]-()Assert Exists([_usn4 In 0.0[..{999}][..0.0] Where $`2esn` Is Null Is Null].`8esn`!)"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Create Constraint On()<-[``:#usn7]-()Assert Exists(All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3).`4esn`!);"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` With *,{@usn6} Contains 123.654 Contains 01 As `4esn` Skip @usn5[12.0][{1000}] Where @usn6[$usn2..#usn7] Create Unique @usn5=(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})<-[?:`6esn` *01..07]->(:usn2:`2esn`{`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})-[? *1000]->(`5esn` {usn2:$#usn7 Starts With 9e0 Starts With 2.12}) Start #usn8=Rel:usn2(`7esn`={7}) Union Foreach(`` In {999} Ends With {`5esn`} Ends With {0}| Start @usn5=Relationship:usn2({`5esn`}) ,@usn5=Node:@usn5(\"d_str\") Unwind 1.e1 Ends With 0 Ends With $usn1 As `1esn`) Remove {``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}}.`7esn`,(:usn2:`2esn`)<-[:@usn5|:`7esn`{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]}).`7esn`!,{`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}}.`3esn`? Match Allshortestpaths((:``{``:0x0 =~123.654 =~{999}})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})),_usn4=(usn2 {_usn3:$0 In _usn4})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[{`2esn`:1000 Is Null Is Null}]->(:_usn4{`4esn`:`8esn` Contains $`3esn` Contains {`4esn`},_usn3:$12[{7}..0X0123456789ABCDEF]})"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Load Csv With Headers From {#usn7}[{#usn7}..][$`4esn`..] As `6esn` Fieldterminator \"d_str\";"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Start #usn7=Node:``(_usn3={0}) ,`8esn`=Node:`4esn`(\"d_str\")Where 9e0 In usn1 Load Csv From `3esn`[_usn4..{0}][`5esn`..usn2] As usn1 Fieldterminator 's_str' Union Load Csv With Headers From Allshortestpaths((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null}))) In {`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null} As _usn3 Fieldterminator \"d_str\" Unwind {123456789}[..'s_str'][..$@usn6] As `8esn` Detach Delete $1000 Is Not Null Is Not Null,$`7esn` Is Null Is Null,_usn4 Is Not Null Is Not Null Union All With Distinct *,9e1[9e1...e0] Order By 1e1[{_usn4}..123.654] Ascending,00[..$123456789][..$`5esn`] Asc Skip 7[1e1..#usn7] Limit [`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]][..{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}][..`4esn`(123.654[$`1esn`..Null][1000..{_usn3}])] Unwind $123456789 Starts With .e12 As _usn3;"), + octest_legacy:ct_string("Cypher 0.1000 Drop Constraint On(`5esn`:`4esn`)Assert Exists(Shortestpath(((:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})<-[`5esn`:usn2|#usn7 *999]-(:`8esn`:@usn5)<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(`1esn` :@usn6))).#usn8)"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Unwind `7esn`[0..$usn2][{usn2}..0.e0] As `1esn` Union Unwind All(usn1 In 12.e12 In {0} In 9e1)[[`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]|12.e12[$`8esn`..{`8esn`}]]..] As usn1 Create Unique ((:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})<-[`2esn`?:@usn6|`` *..00]->({_usn3})) Merge _usn3=Shortestpath((((#usn7 :@usn6{`8esn`:{@usn6}[True..{_usn3}],`1esn`:07 Is Null})-[ *..0{`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null}]->(:usn1:_usn4{`4esn`:01234567 In $123456789})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5))))"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On()<-[`2esn`:`6esn`]-()Assert Exists(Shortestpath((:`2esn`{`6esn`:@usn6[{0}..]})<-[usn2?:usn2|#usn7]->(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})).@usn6?)"), + octest_legacy:ct_string("Cypher 7.0 Drop Constraint On(`8esn`:_usn4)Assert Exists(Extract(_usn3 In True[7][$999] Where $7 Is Null Is Null).`3esn`)"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Load Csv From _usn3[$usn2..0] As #usn7 Fieldterminator \"d_str\" Foreach(`6esn` In Count(*) In 0e0 In 9e1| Match usn1=Allshortestpaths((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})-[#usn8?:#usn8|`2esn` *0X7..0Xa{usn2:{1000},`6esn`:#usn8[`7esn`..]}]->(:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})));"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Match @usn6=Allshortestpaths((:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}})),(:``) Using Index usn1:_usn3(``) Using Scan `1esn`:`3esn` Where 1e1[1.e1..][123.654..] Union Foreach(@usn6 In Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999)[..Reduce(``={`8esn`}[True..][.e1..],#usn7 In 123.654 Starts With $``|{usn1}[$`8esn`..0.0])][..Any(`1esn` In $12 Is Not Null Where $12 Is Not Null Is Not Null)]| Create usn1=Allshortestpaths(((:`6esn`:`8esn`{`5esn`:{@usn5} Is Null,`8esn`:True[..010]}))),((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null})<-[usn2 *..01234567{`1esn`:@usn5 =~'s_str',`8esn`:{999} Starts With {_usn4} Starts With 00}]->(usn1 {`5esn`})<-[:`8esn`|:_usn4 *1000]->(`5esn` $`8esn`)))) Unwind $``['s_str'..][0x0..] As #usn7 Union All Merge @usn6=Allshortestpaths((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(@usn5 :`8esn`:@usn5)<-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(:`6esn`:`8esn`{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})) On Match Set @usn6($@usn6 Contains `7esn`).@usn5! =$`5esn` Ends With 00 Ends With #usn7,Reduce(usn2=True[7][$999],`` In {`1esn`} Starts With @usn6|{`4esn`}[$_usn4..][9e0..]).`6esn` ={`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn` On Create Set usn1+={usn1}[{`5esn`}..],Case {0} Is Null When $0 Is Not Null Then #usn8 Is Not Null When 12.e12[{@usn5}..][9e1..] Then `2esn`[$1000..9e12][{#usn8}..{7}] End.`6esn` =#usn8 =~{_usn3} =~``,`7esn`+=12e12 Ends With `4esn` Ends With 123456789"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Create Constraint On(`8esn`:`5esn`)Assert Exists(None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 123456789 Is Not Null Is Not Null).`4esn`!);"), + octest_legacy:ct_string("Cypher 0.1000 Unwind $`3esn`[..$`2esn`][..123.654] As `1esn` Foreach(#usn8 In 12 In 0e0| Unwind {`4esn`}[{`1esn`}][{1000}] As #usn7 Delete $`7esn` In 12) Unwind False Starts With 010 As @usn5"), + octest_legacy:ct_string("Explain Profile Drop Constraint On(``:`3esn`)Assert Exists({`7esn`:{@usn5}[..#usn7],@usn6:{_usn3}[`3esn`..$#usn8]}.`7esn`!)"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Load Csv From 12.e12[2.12..][0xabc..] As `6esn` Merge usn2=Allshortestpaths((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}))) On Match Set @usn5 =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Merge (({`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}}))"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Return Distinct {`8esn`:{#usn8}[$#usn7..]}[Case 12.e12[``..usn2][{#usn7}..@usn5] When `3esn` Is Not Null Is Not Null Then 7 Contains `2esn` Contains $`8esn` Else $``[..1.e1][..12] End..] As `2esn` With Distinct *,(usn1 {`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]})<-[`4esn`:#usn7|`2esn` *0X7..0Xa]-(`3esn` :`8esn`:@usn5{@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]}) Is Not Null,Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End[None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])][count(Distinct $`5esn`[$#usn7..][0xabc..])] Skip @usn5[$@usn5][{0}] Limit None(_usn3 In {@usn5}[..#usn7] Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000) Is Null Is Null Unwind {@usn5}[..#usn7] As `1esn` Union All Unwind {7}[$123456789..{1000}][$`3esn`..`7esn`] As #usn7 Load Csv From Case When .e1[@usn5]['s_str'] Then 123456789 Starts With {@usn6} Starts With $12 End Contains [`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`] Contains {@usn5:12 Is Not Null,`2esn`:$999 In 999} As `1esn` Remove [#usn7 In 123.654 Starts With $`` Where #usn8[`7esn`..]|{_usn3}[{0}]].usn2,``(True[True..],$_usn4).`5esn`? Union Create Unique `5esn`=Shortestpath(((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null})<-[usn2 *..01234567{`1esn`:@usn5 =~'s_str',`8esn`:{999} Starts With {_usn4} Starts With 00}]->(usn1 {`5esn`})<-[:`8esn`|:_usn4 *1000]->(`5esn` $`8esn`))))"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` With *,_usn4($123456789 =~`4esn`)[None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where Count(*) In {``})..][Any(`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7})..] As `3esn`,{`7esn`}[..9e12][..0.0] Limit Case 0xabc[$@usn5] When 9e1[$_usn4..0xabc] Then $12[{7}..0X0123456789ABCDEF] When 01 =~$`1esn` Then {1000}[\"d_str\"..{@usn5}][$1000..$#usn8] Else 1.e1[_usn4..][07..] End Is Not Null Where 123.654[1e1..][{#usn8}..] Start ``=Relationship( {``}) Where {`1esn`} =~{_usn4} Union Match (((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),_usn4=Allshortestpaths((usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})) Using Scan `2esn`:#usn7 Where {#usn8} =~{999} =~{#usn7};"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Create _usn4=Allshortestpaths((@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})),((`2esn` :#usn8)<-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` :`8esn`:@usn5)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})) Detach Delete Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`])[(`3esn` :#usn7{`6esn`:{_usn4} Is Null,usn2:{`2esn`} Starts With @usn6})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`8esn`:@usn5)<-[@usn6?:`7esn`]->(:`2esn`{#usn7:#usn8 =~{999}})..Shortestpath((`8esn` {_usn4:{usn1} In Count ( * )})<-[`6esn`?]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})<-[@usn6?:`7esn`]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1}))][Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0[$#usn8...e12])..[`1esn` In $12 Is Not Null Where {usn1} In Count ( * )|$`3esn`[{``}..]]],{usn2}[`6esn`..01234567],All(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7]) Contains Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End Contains Reduce(`6esn`={_usn4} In {1000},usn1 In 12.e12 In {0} In 9e1|{`4esn`} Starts With $7 Starts With $``) Create Unique Allshortestpaths((:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})),#usn8=Allshortestpaths((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null}))) Union Detach Delete `` Is Null Is Null,{`4esn`}[{`1esn`}][{1000}] Optional Match #usn7=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Where #usn7 Starts With 1000 Starts With .e1 Create Unique `5esn`=((`3esn` :`6esn`:`8esn`{`8esn`:{``} Is Null Is Null,`3esn`:123456789 Is Not Null Is Not Null})<-[_usn4?:usn2|#usn7{_usn4:{`1esn`} In 12.e12 In 9e1}]-(:usn2:`2esn`)),((#usn8 :usn1:_usn4)<-[usn1:usn1{`3esn`:\"d_str\" Ends With False Ends With {@usn6},`5esn`:`4esn` Contains #usn8 Contains 7}]->(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(`2esn` :#usn8{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}}))"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Start `8esn`=Rel( {`7esn`}) ,`3esn`=Node:`2esn`(@usn6={`4esn`})Where 07 Is Null Load Csv With Headers From $`4esn` Starts With 0e0 As #usn8 Foreach(`3esn` In {_usn4:$0[$1000..00][{0}..{usn1}]}[{`2esn`:$``['s_str'..][0x0..]}..]| Optional Match `1esn`=Allshortestpaths(((($_usn3)<-[``?:`3esn`|:@usn5{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(:@usn5{#usn7:{#usn7} In Count ( * ) In $#usn8})-[? *01..07]->(`8esn` :#usn7)))) Using Join On ``,`7esn`,#usn7 Where $`1esn`[$12][Count ( * )] Remove [`6esn` In 00 Where 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF].@usn5!,{usn1:$123456789 Starts With `5esn`}.`6esn`) Union All Remove {`3esn`:0.0 =~12.e12 =~1.0,`1esn`:$usn1 Starts With {_usn3}}.`3esn` With Distinct 0x0[{999}..][{_usn4}..] As `6esn`,{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}[Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))..] As `6esn`,Case When $`6esn` Starts With 12.e12 Starts With $#usn7 Then #usn8[`7esn`..] When {`4esn`}[$123456789..] Then {_usn3} Contains 9e0 Contains $999 End As @usn6 Order By {@usn5} Ascending,Reduce(@usn5=$`8esn`[..$999][..0],`` In {`1esn`} Starts With @usn6|{@usn6} Contains 123.654 Contains 01) Contains [`1esn` In `3esn`[07..] Where {0} =~12.0] Contains (:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[`3esn`:_usn3|`8esn`]->(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null}) Descending,1000 Is Not Null Desc Skip Allshortestpaths(((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))) Starts With (`1esn` :_usn3{`5esn`:{`8esn`}[..$`6esn`][..123.654],`1esn`:1000 Starts With `7esn`})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Extract(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) Remove (:@usn5)-[`8esn`?{`3esn`:'s_str'[..0X7]}]-(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}).`4esn`!,Extract(`6esn` In 00 Where 12e12 Is Not Null Is Not Null|`1esn`[Null..]).usn1"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` With Distinct 1e1[{_usn4}..123.654] Order By Case When 0X0123456789ABCDEF[7...e0][`1esn`..usn2] Then $1000 Starts With $`8esn` Starts With {`5esn`} When usn2 =~0X7 =~{#usn7} Then {`2esn`} In $123456789 In True End[Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`)] Ascending,Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..] Asc,usn1 Is Null Is Null Descending Start usn2=Node:usn1(`5esn`={_usn4}) ,_usn3=Relationship:``(_usn3={0})Where 1.0[{999}][$999];"), + octest_legacy:ct_string("Explain Profile Drop Constraint On(_usn3:@usn6)Assert Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]).#usn8 Is Unique"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create Unique Allshortestpaths((:usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null})),_usn3=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]}) Remove Allshortestpaths(((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7))).@usn6?,Reduce(`6esn`={usn2} =~@usn6 =~{`4esn`},_usn3 In {`2esn`} Ends With {12} Ends With 7|{_usn3} Contains True Contains 0X7)._usn3?,All(`6esn` In 00 Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12]).`5esn` Remove [$7 Is Not Null,Count(*) Ends With 123.654 Ends With $12,$`1esn`[07]]._usn3,[9e12 Ends With 123456789].`1esn`!,[999 Ends With .e12 Ends With .e1,{_usn3}[..$`8esn`]].@usn6? Union With Distinct 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0],_usn4(Distinct 9e12[$`5esn`],$_usn4[$`4esn`..$12]) Starts With [`` In {`1esn`} Starts With @usn6 Where {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]|$`` In 0 In {1000}] Starts With [_usn4 In 0.0[..{999}][..0.0] Where Count(*) In {``}] As `4esn` Order By @usn6[{0}..] Ascending Limit 9e12[$`5esn`] Where `1esn`[..\"d_str\"][..$`5esn`] Foreach(`` In $`2esn` Ends With `` Ends With {12}| Remove Case 1.0[{999}][$999] When 12 Starts With {_usn4} Starts With $#usn8 Then Count(*) Is Not Null Else 1000 Starts With `7esn` End.`1esn`,{`1esn`:$@usn6 Starts With {`1esn`} Starts With 12,usn2:$`5esn`[..{`2esn`}][..{0}]}.``!,{`5esn`:{#usn7} In Count ( * ) In $#usn8}.`7esn`! Match usn1=((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})),`8esn`=(`6esn` {``:`4esn`[usn1]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]->(#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``}) Using Scan `4esn`:#usn8) Union Start usn1=Node:`6esn`(#usn8={@usn5}) ,`3esn`=Node:`4esn`({#usn8})Where $`2esn`[12.e12][$@usn5];"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` With *,$7 In 1.0 In 1e1,0X7 Starts With {999} Starts With 12e12 As @usn5 Skip {usn1}[$7..0x0] Return *,.e1 Contains $`3esn` As _usn3 Skip Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3]..`1esn`(Distinct $@usn5[`6esn`..],9e12[..0X7])][Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}))..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]})] Limit #usn7 Starts With 1000 Starts With .e1 Union Remove Single(`1esn` In $12 Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]).#usn7,Single(_usn4 In `2esn` Where False Ends With $``).`1esn`! Union All Merge ``=(usn2 :`4esn`:@usn6)<-[_usn3?:@usn6|``]->(usn1 :`5esn`:@usn5) On Match Set `6esn` ={_usn3}[usn1][0],Shortestpath((@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})).@usn5? =\"d_str\" Contains @usn6 Contains 12.e12,`7esn`+=`3esn`[..{_usn4}][..{@usn5}] On Match Set ``+=$@usn6 Contains `7esn`,_usn4:`5esn`:@usn5"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Using Periodic Commit 00 Load Csv With Headers From 010 Ends With 01 Ends With {_usn3} As #usn8 Fieldterminator 's_str' Remove Extract(`2esn` In {999} Is Not Null Where {#usn7} In Count ( * ) In $#usn8|{usn1} =~123.654 =~\"d_str\").@usn5?,Case .e12[$#usn8..@usn6] When {12} =~0.e0 =~{_usn3} Then $7 In 1.0 In 1e1 End.`4esn`? Create Allshortestpaths((:usn1:_usn4{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[`8esn`? *999]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}));"), + octest_legacy:ct_string("Cypher 0.1000 Drop Constraint On(usn1:`2esn`)Assert {#usn8:{999} Ends With 123456789 Ends With {@usn5},`8esn`:$`8esn`[..$999][..0]}.`1esn`? Is Unique"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Drop Constraint On()<-[usn1:`8esn`]-()Assert Exists([0Xa[..{1000}][..$#usn7],$`6esn` Ends With {0} Ends With {`7esn`},0Xa[..{1000}][..$#usn7]].`6esn`!)"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Unwind 010 Ends With 01 Ends With {_usn3} As #usn7 Detach Delete $@usn5 Is Not Null Is Not Null,{`8esn`}[..$`6esn`][..123.654],Allshortestpaths(((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))) Starts With (`1esn` :_usn3{`5esn`:{`8esn`}[..$`6esn`][..123.654],`1esn`:1000 Starts With `7esn`})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Extract(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) Foreach(usn1 In {`4esn`}[{`4esn`}..999]| Create (`4esn` :`4esn`:@usn6) With Distinct 0Xa Contains #usn8 Contains 1000 Order By {#usn8} Contains 1000 Contains $`4esn` Ascending,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Ascending Skip ({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..`2esn`(Distinct #usn8[`7esn`..])][..[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]]]);"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Foreach(`6esn` In Reduce(`3esn`=#usn8 In `8esn` In 07,#usn7 In 123.654 Starts With $``|_usn3[$usn2..0])[..Any(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`])][..[$`1esn`[#usn8][$@usn5],\"d_str\" Ends With False Ends With {@usn6}]]| Create `5esn`=Shortestpath(((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))) Unwind {`1esn`:{123456789}[12..][$12..]} =~{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF} =~[`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`|_usn3[\"d_str\"]] As @usn6) Create Unique @usn5=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Union Match (`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}) Using Join On `6esn`,`1esn`,`` Load Csv From None(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) Ends With Case When 0x0[{999}..][{_usn4}..] Then Count(*)[.e12] When {_usn4}[...e12][..0xabc] Then Count(*) Ends With $`` Ends With {7} Else ``[{#usn8}] End Ends With Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where 's_str' Starts With 12e12 Starts With $_usn4|True Starts With $`4esn` Starts With 12e12) As usn1 Create ``=(:_usn3{`8esn`:9e1 =~999});"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Drop Constraint On()-[`3esn`:`2esn`]-()Assert Exists([0xabc[$@usn5]].``!);"), + octest_legacy:ct_string("Cypher 7.0 Drop Constraint On(`8esn`:`5esn`)Assert Exists(Any(_usn4 In 0.0[..{999}][..0.0]).`4esn`);"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Start usn2=Node:#usn8(_usn3={#usn7}) Where 's_str'[_usn4..0x0] Foreach(_usn3 In `1esn`(Distinct $usn1 Starts With {_usn3},{#usn8}[$#usn7..]) Starts With [$_usn4[$`4esn`..$12]] Starts With [`6esn` In 00 Where 0.12 In 0X7|{999} Is Null]| Match `1esn`=Allshortestpaths((`6esn` :@usn5{`4esn`:{#usn8}[$#usn7..],`4esn`:0[{@usn5}..][7..]})),`1esn`=Allshortestpaths((((:`7esn`{`1esn`:{1000} In {123456789},`4esn`:010 In `1esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)))) Using Scan `2esn`:`2esn` Return Distinct Filter(`1esn` In `3esn`[07..] Where 12 Ends With 01)[..All(`3esn` In 123.654[1e1..][{#usn8}..] Where 0Xa Contains Count ( * ))] As usn2,{usn1}[01..7][{`3esn`}..`6esn`] Order By Reduce(`4esn`=@usn6[$_usn4],`8esn` In $12[{7}..0X0123456789ABCDEF]|0.12 Starts With 9e12 Starts With $`1esn`)[Reduce(usn2={`7esn`}[0X7..][0x0..],_usn3 In {`2esn`} Ends With {12} Ends With 7|01[..{`7esn`}][..01234567])][(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})-[_usn4 *0x0..]-(:#usn7{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})] Ascending,[.e12 Ends With 1000 Ends With 010,Count(*)] Ends With {`7esn`:$_usn3 =~{_usn4} =~$`6esn`} Ends With Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]) Descending Skip [`` In {`1esn`} Starts With @usn6 Where $123456789 Starts With $123456789 Starts With Count ( * )|{#usn8}[usn1][1.0]][Shortestpath((@usn6 {usn1:$#usn7 =~{12} =~False})-[`1esn`?:_usn3|`8esn` *0xabc..7]-(`4esn` :@usn6))..] Limit $`5esn`[`4esn`]) Union All Load Csv With Headers From Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Is Null Is Null As `2esn` Fieldterminator 's_str' Union All Start @usn6=Node:@usn5({usn1}) ,#usn8=Node:`6esn`(#usn8={@usn5})Where {7} Starts With $usn1 Starts With 1.0 Merge @usn6=((_usn4 :#usn8)<-[:#usn8|`2esn` *123456789..0X7{``:$#usn7 =~{12} =~False,`5esn`:{1000} In {123456789}}]->({`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF})<-[{``:\"d_str\"[{`8esn`}..]}]-(:#usn7{#usn7:$`8esn` In $`2esn` In {7}})) On Create Set _usn3 =1.e1[`4esn`..][$`6esn`..] Detach Delete \"d_str\"[..0.e0],{7}[$_usn4..Count ( * )],{#usn7} Contains 0.0 Contains $0"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Unwind $999 Contains 12e12 Contains {usn2} As #usn7 Remove Allshortestpaths((({#usn7:#usn8 =~{999}})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2}))).@usn6,_usn4:`8esn`:@usn5 Merge `7esn`=((:`2esn`))"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On()-[@usn6:``]->()Assert Exists([{@usn6}[True..{_usn3}],$_usn4,$999 Is Null].`3esn`)"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Load Csv With Headers From {@usn5}[{`5esn`}][$12] As usn1 Union Optional Match #usn7=Allshortestpaths((:`5esn`:@usn5{#usn8:123.654[$`1esn`..Null][1000..{_usn3}],`6esn`:12.0 =~$#usn7 =~9e12})-[`1esn`:usn2|#usn7{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})),(({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]})) Using Scan _usn4:_usn3 Using Index usn1:@usn5(`7esn`)"), + octest_legacy:ct_string("Explain Profile Create Constraint On(`2esn`:`7esn`)Assert Allshortestpaths(({`7esn`:123456789[0..]})-[`6esn`?:_usn3|`8esn`]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})).#usn8 Is Unique"), + octest_legacy:ct_string("Cypher 0.1000 Remove (`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]}).`1esn`?,[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000].usn1?,{`4esn`:0.12 In 0X7}._usn4! Start `4esn`=Node:`1esn`(#usn7=\"d_str\") Where $_usn3 Is Null Is Null Start _usn3=Relationship:`1esn`(\"d_str\") ,`8esn`=Node:`4esn`(\"d_str\") Union With Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF) Ends With Case {`2esn`}[..{@usn6}][..1.e1] When Null Is Null Is Null Then #usn7 Contains {`3esn`} Contains $`6esn` When 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Then $usn1[..'s_str'][..$#usn8] End Ends With Filter(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789}),@usn6 Contains Null As `2esn`,00 =~0.e0 =~$`8esn` Order By `5esn`(0X0123456789ABCDEF[9e12])[[`8esn` In $12[{7}..0X0123456789ABCDEF] Where $``['s_str'..][0x0..]]..None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`8esn`}[0X7][$`3esn`])][Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000})..Case 7 Is Null Is Null When usn1 Contains $7 Contains $`` Then 12e12 Is Not Null End] Ascending,#usn7[9e0] Asc,{`5esn`} Starts With 12.0 Desc Limit {@usn5}[Count(*)..] Create Unique Allshortestpaths((@usn6 :usn1:_usn4)),(:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}) Union All Optional Match #usn8=((`7esn` :@usn6)<-[#usn8? *0X7..0Xa$`2esn`]-(:`5esn`:@usn5{usn2:{#usn8}[12.0][$@usn6]})-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(`2esn` :_usn3)),usn2=(((:`2esn`{`4esn`:`3esn` Is Not Null Is Not Null})-[?:#usn7|`2esn` *0x0..]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5))) Using Index @usn6:#usn8(`8esn`) Merge (`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]}) Start _usn3=Node( {usn2}) ,@usn5=Node:`6esn`(#usn8={`5esn`});"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Merge `3esn`=Allshortestpaths((usn1 :usn1:_usn4)) On Match Set _usn3 ={#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null,Reduce(usn2=.e1[..\"d_str\"],#usn7 In 123.654 Starts With $``|0Xa[$1000..$123456789]).@usn6 ={`2esn`}[Count(*)],`2esn`+=[{usn2}[$`4esn`]] Starts With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null] On Match Set `6esn` =Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000) Contains [0x0[$`8esn`.._usn3]] Contains count({`1esn`} Is Not Null,$`2esn` Ends With 0.12 Ends With .e1),`3esn` =0.0 Contains $_usn4 Contains {`2esn`},(`4esn` {_usn4:12 Starts With {_usn4} Starts With $#usn8,_usn4:$@usn5[$`4esn`][$@usn6]})-[{`1esn`:@usn6[$usn2..#usn7]}]->({`3esn`:$usn1 In 01234567 In .e1,``:False[999]}).``? =\"d_str\" Ends With 1.0 Ends With 0e0 Union Remove Case When $1000[..12.0][..0e0] Then $_usn3 Is Null Is Null When `3esn` Is Not Null Is Not Null Then 7 Contains `2esn` Contains $`8esn` Else {`4esn`}[..{`4esn`}] End.usn2!,`7esn`:`4esn`:@usn6,Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[{999}..][{_usn4}..]|$`1esn`[$12][Count ( * )]).`5esn`! Return *,(usn1 :@usn5)<-[_usn4?:usn2|#usn7{_usn4:{`1esn`} In 12.e12 In 9e1}]-(:usn2:`2esn`)[Extract(`1esn` In $12 Is Not Null Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`|12.0 =~$#usn7 =~9e12)],[00[..$123456789][..$`5esn`],{_usn3} Contains $`1esn` Contains 12.0][..[0.e0 =~`1esn` =~`6esn`,12.0[2.12..][{`5esn`}..],1.e1[0X0123456789ABCDEF..]]][..Filter(_usn3 In True[7][$999] Where 's_str'[..0X7])] As #usn7 Order By Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..])[..{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}][..Filter(`2esn` In {999} Is Not Null Where 010 In `1esn`)] Desc,\"d_str\"[..0.e0] Ascending,$7[{`1esn`}] Descending Limit $`5esn`[`1esn`..$123456789];"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create Constraint On(usn1:`8esn`)Assert ``(Distinct `1esn` Is Null Is Null,0.0 Contains $_usn4 Contains {`2esn`})._usn3! Is Unique;"), + octest_legacy:ct_string("Explain Profile Create Constraint On()-[@usn5:#usn7]-()Assert Exists(All(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} Starts With 1.0 Starts With 00).`1esn`!);"), + octest_legacy:ct_string("Cypher 0.1000 Create Constraint On()-[`4esn`:_usn4]-()Assert Exists((@usn6 {usn1:$#usn7 =~{12} =~False})-[`1esn`?:_usn4|:usn1*]-({`3esn`:{0} Is Null,#usn7:{0} Is Null}).`7esn`!);"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Drop Constraint On(#usn8:`4esn`)Assert usn1(12.e12[$`4esn`..]).#usn8! Is Unique;"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Load Csv With Headers From `3esn` Starts With Count(*) As `3esn` Load Csv From $@usn6[$0..usn1][0X0123456789ABCDEF..$999] As `1esn` Remove usn2(Distinct 1e1[..01],$123456789 Is Not Null).@usn6;"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Drop Constraint On(usn2:`8esn`)Assert Exists({@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}.usn2?);"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Merge (({`6esn`:{`3esn`} Ends With `1esn` Ends With $@usn6,@usn6:$usn1 In 0.12 In $``})) Create Unique ((usn2 :_usn3)<-[?:_usn4|:usn1 *..00{`1esn`:{#usn8}[2.12]}]->(:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn8:#usn7|`2esn`]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})),`5esn`=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]}) Load Csv With Headers From (#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..] As usn1 Union All Optional Match usn2=Allshortestpaths((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}))),((usn1 :@usn5)<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]})<-[`1esn`?:`3esn`|:@usn5{usn2:Count ( * )[..12][..{@usn6}]}]-(@usn5 {``:`3esn` =~9e0 =~@usn6})) Create Unique `2esn`=Allshortestpaths((:`3esn`:`6esn`{999})),`8esn`=((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)) With *,`3esn` Ends With .e0 Ends With $`7esn` As @usn5,(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) Order By 0.12 In 0X7 Descending Skip @usn6[$12] Limit $999 Ends With $`2esn` Where {#usn8}[12.0][$@usn6];"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Drop Constraint On(`5esn`:`8esn`)Assert Exists((#usn8 {`2esn`:{#usn8} =~{999} =~{#usn7}})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})._usn3)"), + octest_legacy:ct_string("Cypher Drop Constraint On(@usn6:_usn3)Assert Exists(`8esn`(Distinct $123456789[..$7][..$`6esn`],0e0 Contains `3esn` Contains `7esn`).`1esn`?)"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Detach Delete @usn5 In 1e1,[$@usn6 Contains `7esn`,$_usn4[{``}..][1e1..]][..{usn1:0e0[0X0123456789ABCDEF..010][$@usn6..010]}][..usn2(Distinct 1e1[..01],$123456789 Is Not Null)] Union Create Unique #usn7=Allshortestpaths(((#usn8 :@usn5)<-[_usn3{@usn6:{7} Contains $123456789}]->(:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1}))),usn1=Shortestpath((`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})) Create #usn8=(:`5esn`:@usn5{usn1:$#usn7[`5esn`]})<-[?:`4esn`|:#usn7]->(_usn4 :#usn8{`5esn`})-[`4esn`?:_usn4|:usn1{@usn6:$#usn7 Ends With 0.12 Ends With {@usn6}}]->(#usn8 {usn1:$123456789 Starts With `5esn`}),Shortestpath((:`2esn`{`6esn`:@usn6[{0}..]})<-[usn2?:usn2|#usn7]->(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})) Union Create Unique (((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),_usn4=Allshortestpaths((usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})) Merge `3esn`=(`3esn` :`8esn`:@usn5{@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]}) On Match Set `7esn`+=False[..[`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]|\"d_str\" Contains @usn6 Contains 12.e12]][..Case 7 Is Null Is Null When usn1 Contains $7 Contains $`` Then 12e12 Is Not Null End],#usn8 =.e12[\"d_str\"..][.e1..]"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create `5esn`=Shortestpath(((:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}}))),`2esn`=(`` :`7esn`) Start `4esn`=Relationship:`1esn`({@usn5}) Create (`4esn` :#usn7)<-[@usn6?:usn2|#usn7]->(`1esn` )-[`6esn`?*..{`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}]->({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6}),_usn4=Allshortestpaths((_usn3 {`4esn`:`8esn` Contains 1e1,#usn7:{`2esn`}[..{@usn6}][..1.e1]})-[#usn7?:usn1 *01..07{`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}]->({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]})) Union With Distinct .e1 Contains $`3esn` As #usn7 Order By Extract(_usn3 In True[7][$999] Where $`3esn`[{``}..]) Is Not Null Is Not Null Desc,`6esn`[{`6esn`}..] Descending,123456789 Starts With {@usn6} Starts With $12 Asc Where Count ( * )[$12..];"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On()<-[`3esn`:usn1]-()Assert Exists(#usn7(``[$0..][`1esn`..],{7} Starts With $usn1 Starts With 1.0).usn1?)"), + octest_legacy:ct_string("Cypher 7.0 Unwind {usn2}[`6esn`..01234567] As _usn3 Optional Match `6esn`=(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}),(((usn2 :_usn3)<-[#usn7{#usn8:{`1esn`} Is Not Null}]->(`8esn` {`3esn`:'s_str'[..0X7]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6)))"), + octest_legacy:ct_string("Cypher 999.999 Cypher With 0.0 Is Not Null As `4esn` Order By $`8esn` Is Null Is Null Desc,[.e12 Ends With 1000 Ends With 010,Count(*)] Ends With {`7esn`:$_usn3 =~{_usn4} =~$`6esn`} Ends With Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]) Descending Remove {usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}.`7esn`?,Reduce(`1esn`=$`1esn`[#usn8][$@usn5],usn1 In 12.e12 In {0} In 9e1|.e12[$7..][{`6esn`}..]).`7esn`"), + octest_legacy:ct_string("Profile Drop Constraint On(`3esn`:`8esn`)Assert [_usn4 In 0.0[..{999}][..0.0] Where `5esn`[..9e0][..01234567]].`1esn`? Is Unique;"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Remove All(`1esn` In $12 Is Not Null Where {usn1} In Count ( * )).usn1,Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where _usn3[\"d_str\"]|$_usn4 Is Not Null Is Not Null).`1esn`? Start `7esn`=Node:usn1(@usn5={12}) ,usn1=Node:_usn3(_usn3='s_str')Where _usn4 In $usn1 Union Foreach(`6esn` In .e12[$7..][{`6esn`}..]| Create (`2esn` {@usn6:True Is Null Is Null})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)-[_usn3?:@usn6|`` *0x0..{`3esn`}]->(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}})) Remove Filter(`1esn` In `3esn`[07..] Where 9e12 Is Not Null).@usn5! Union All Unwind 9e0[#usn8] As `2esn`;"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create ``=({#usn7:#usn8 =~{999}})-[{`7esn`:01234567 In $123456789}]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]});"), + octest_legacy:ct_string("Cypher Merge Allshortestpaths((((usn2 :_usn3)<-[#usn7{#usn8:{`1esn`} Is Not Null}]->(`8esn` {`3esn`:'s_str'[..0X7]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6)))) On Match Set usn1 =1.0 Is Null Is Null On Match Set `6esn`+={`8esn`}[Null..][{`8esn`}..],_usn4+={#usn8} =~{999} =~{#usn7} Match `6esn`=Allshortestpaths(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(:`2esn`{`6esn`:@usn6[{0}..]}))),`8esn`=({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]->(usn1 :`8esn`:@usn5{`1esn`:{#usn7} Contains 0.0 Contains $0,`2esn`:.e12[010..$123456789]})<-[_usn3?:@usn6|`` *0x0..{`3esn`}]-(@usn6 {`1esn`:01234567 In $123456789,`1esn`:{`6esn`}[..{`2esn`}]}) Using Index usn2:``(#usn8) Using Scan @usn6:`5esn`"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Optional Match @usn6=Shortestpath(((_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]}))) Using Join On @usn5,usn2,_usn3 Foreach(usn1 In {`3esn`} Starts With $`8esn` Starts With 1e1| Start `7esn`=Node:`2esn`(#usn7={usn1}) Where $#usn7 Ends With 0.12 Ends With {@usn6});"), + octest_legacy:ct_string("Cypher Remove $`6esn`.`8esn`,Extract(@usn5 In Null =~12e12 Where 7 Is Not Null|True =~_usn3 =~123456789).usn1?,{`8esn`:1e1[{_usn4}..123.654],`2esn`:0X0123456789ABCDEF[$999..][@usn5..]}.`8esn`"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Using Periodic Commit 12 Load Csv With Headers From usn2(0.0 Is Not Null Is Not Null,{123456789} Is Not Null)[None(`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12])..[_usn4 In `2esn` Where False Ends With $``|9e0[#usn8]]][(`3esn` :`3esn`:`6esn`)-[]->(`7esn` :#usn8)..[0X0123456789ABCDEF Contains $`1esn` Contains 1000,0e0[$#usn8...e12],.e12 Is Null Is Null]] As _usn3 Create `7esn`=((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0}));"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Create Constraint On()-[`8esn`:usn2]->()Assert Exists(Any(`3esn` In 123.654[1e1..][{#usn8}..]).usn2!)"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Create Constraint On(`2esn`:usn2)Assert Exists(Filter(`` In {`1esn`} Starts With @usn6 Where $`5esn`[`1esn`][0X0123456789ABCDEF])._usn3)"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On(``:`4esn`)Assert Exists({@usn5:@usn5[$12..\"d_str\"]}.@usn6!);"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On(#usn8:`5esn`)Assert Case {@usn5}[..#usn7] When $@usn6 Starts With {`1esn`} Starts With 12 Then {usn1} Ends With {`6esn`} Ends With 123456789 End.`4esn` Is Unique"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Remove None(`5esn` In $`2esn`[12.e12][$@usn5] Where 's_str' Starts With 12e12 Starts With $_usn4).@usn5!,[usn1 In 12.e12 In {0} In 9e1 Where {1000} Ends With {`8esn`}|$_usn3 =~{_usn4} =~$`6esn`]._usn3 Merge `6esn`=(((:#usn8{`2esn`:12e12 Is Not Null,_usn3:12.e12[2.12..][0xabc..]})-[:_usn4|:usn1{``:0 Contains $usn2 Contains 12e12}]-(`4esn` :`2esn`)<-[`7esn`?:_usn3|`8esn`*..]->(`2esn` :_usn3))) On Match Set `4esn`+=Any(`6esn` In Count(*) Ends With $`` Ends With {7} Where 1000 Is Null) Is Not Null Is Not Null,{`6esn`:7 Is Not Null}.`5esn` =$`6esn`[`8esn`][$`5esn`],`2esn`+=Reduce(`3esn`=#usn8 In `8esn` In 07,#usn7 In 123.654 Starts With $``|_usn3[$usn2..0])[..Any(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`])][..[$`1esn`[#usn8][$@usn5],\"d_str\" Ends With False Ends With {@usn6}]] On Match Set `7esn` =$1000[0.12..0.12] Union Start @usn6=Node( {`8esn`}) ,`3esn`=Relationship:@usn6({`2esn`}) Remove {usn2:7 In 1.e1 In $usn1}.`4esn`!,All(_usn4 In 0.0[..{999}][..0.0] Where #usn8 Is Null).`8esn`? Create #usn7=(`4esn` :usn2:`2esn`);"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On()<-[`7esn`:`4esn`]-()Assert Exists(Allshortestpaths((`4esn` {_usn4:12 Starts With {_usn4} Starts With $#usn8,_usn4:$@usn5[$`4esn`][$@usn6]})<-[? *0X7..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})).usn1)"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Delete 0Xa In {`7esn`}"), + octest_legacy:ct_string("Cypher 999.999 Cypher Drop Constraint On(_usn3:`7esn`)Assert Exists([_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 9e12 Is Not Null].`7esn`?);"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Drop Constraint On(``:_usn3)Assert [#usn7 In 0Xa[@usn5][{`7esn`}] Where #usn7 Starts With $999|$@usn5[$`4esn`][$@usn6]].`4esn`? Is Unique"), + octest_legacy:ct_string("Cypher With 7[1e1..#usn7] As _usn3 Where 999[12.0..][#usn7..] Union All Create Unique ((@usn5 :`7esn`{#usn8:`8esn` Starts With {123456789},`1esn`:{12} Contains 9e0})<-[`3esn`?{`3esn`:1e1 Contains usn2}]->(:`3esn`:`6esn`)) Optional Match `3esn`=Allshortestpaths((`7esn` :@usn6)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]})),usn1=(({`3esn`:12 Starts With 0x0,`8esn`:0X7[0.e0][{`4esn`}]})-[`5esn` *0x0..]->(`8esn` :#usn7)) Using Index `3esn`:#usn8(`2esn`) Where $`2esn` In {123456789}"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Detach Delete False Ends With $``,{_usn4}[..$#usn7] Start _usn3=Relationship:#usn7({`4esn`}) Where ``[..0X0123456789ABCDEF];"), + octest_legacy:ct_string("Explain Profile Create Constraint On(`7esn`:#usn8)Assert Exists(Filter(`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]).usn2)"), + octest_legacy:ct_string("Cypher 7.0 Create Constraint On(_usn3:#usn8)Assert Exists([`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Contains 123.654 Contains 01].`5esn`!);"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Create ``=(`` :``)-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(`2esn` :_usn3),Allshortestpaths((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(@usn5 :`8esn`:@usn5)<-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(:`6esn`:`8esn`{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})) Union With Distinct *,$`8esn` In $`2esn` In {7} As _usn3 Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,1.e1 =~$`1esn` Ascending,12.e12[..1e1] Asc Skip [$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]][..Case {#usn8}[#usn7..{`2esn`}] When $7 Is Not Null Then $@usn6[$`8esn`..][7..] When $`4esn`[..'s_str'][..`8esn`] Then `7esn` Contains {@usn5} Contains $123456789 Else 12.e12 In $0 In $0 End] Where {`5esn`} Contains 's_str' Contains 9e1 Detach Delete #usn8 Is Null,1e1 Starts With 9e1 Starts With {`4esn`} Return Distinct *,$_usn4[$`4esn`..$12],{`5esn`} Starts With 12.0 Order By @usn5 =~`` Asc;"), + octest_legacy:ct_string("Cypher 999.999 Cypher Foreach(#usn7 In 9e12 Is Not Null Is Not Null| Remove [{#usn8}[#usn7..{`2esn`}],{1000},{@usn5}[1e1..][9e1..]].@usn6,[`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]].`6esn`?) Create _usn3=Shortestpath((:_usn3{`3esn`:{0} Is Null,#usn7:{0} Is Null})-[:_usn4|:usn1 *0X7..0Xa{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]}]-({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5)),Shortestpath(((`6esn` :@usn5)<-[`7esn`?:`2esn` *..0Xa{usn1:.e1 Ends With {7} Ends With $usn1}]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}))) Union Start #usn7=Node:`1esn`(\"d_str\") Where $_usn3[010..False] Foreach(#usn7 In {@usn6} Contains 123.654 Contains 01| Remove [0.0[..{999}][..0.0],12.e12[2.12..][0xabc..],True[7][$999]].@usn6 Delete Filter(#usn7 In 123.654 Starts With $`` Where Count(*)[010..][#usn7..])[None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $999 Ends With {0})..])"), + octest_legacy:ct_string("Explain Profile Create Constraint On()-[@usn6:`3esn`]-()Assert Exists(#usn8(Distinct False Contains $#usn8 Contains 9e1).#usn7?);"), + octest_legacy:ct_string("Cypher 7.0 Drop Constraint On(@usn5:#usn7)Assert Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where Count ( * )[Count ( * )][12]|$`6esn`[`8esn`][0.0]).`4esn`? Is Unique"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Create Constraint On()<-[@usn6:#usn7]-()Assert Exists({usn1:999[12.0..][#usn7..],@usn5:123.654[$`1esn`..Null][1000..{_usn3}]}.`6esn`!);"), + octest_legacy:ct_string("Cypher Create Constraint On(`2esn`:_usn4)Assert [`1esn` In $12 Is Not Null Where {`3esn`}[{`5esn`}]|{`2esn`}[..{@usn6}][..1.e1]].`4esn` Is Unique;"), + octest_legacy:ct_string("Explain Profile Create Constraint On(@usn6:`2esn`)Assert Exists([12.e12[{7}..7]]._usn3)"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Start `3esn`=Rel:#usn8(\"d_str\") Load Csv With Headers From $`4esn` Starts With 0e0 As `6esn` Fieldterminator 's_str' Optional Match #usn8=Allshortestpaths((`5esn` :_usn4)<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]})),Shortestpath((((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[`6esn`?]-(`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})))) Where #usn8 =~{_usn3} =~``;"), + octest_legacy:ct_string("Cypher 999.999 Cypher Create #usn8=Allshortestpaths((_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})-[`1esn`?:_usn3|`8esn` *0xabc..7]->(@usn5 :`6esn`:`8esn`)) Load Csv With Headers From 9e12 In 1e1 In .e12 As `5esn` Union All Optional Match ((:`5esn`:@usn5)-[?:`1esn`|:`3esn` *999]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]})) Using Scan usn1:`3esn` Using Index usn2:#usn7(usn2) Where 123456789[0..] Match `2esn`=(@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]}),Shortestpath((({_usn4:False[0Xa..$usn1]})));"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Drop Constraint On(usn1:@usn6)Assert Exists([`6esn` In Count(*) Ends With $`` Ends With {7} Where `7esn` Starts With 0X7 Starts With $`7esn`].#usn7!);"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Unwind #usn7[9e0] As usn2 Union With Distinct {@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}[Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))..] As `6esn`,Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123456789 Is Not Null Is Not Null) Starts With Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999) Starts With Reduce(usn2=1.e1 =~`2esn`,@usn5 In Null =~12e12|Count(*)[..``][..#usn8]) As `1esn` Order By 0x0[{999}..`1esn`][0Xa..False] Descending,{_usn4}[..$#usn7] Ascending Skip @usn6 Contains Null Merge `7esn`=Shortestpath((((`6esn` {``:`4esn`[usn1]})<-[:`6esn`{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},`6esn`:``[..$#usn7]}]->({_usn4:False[0Xa..$usn1]})-[`8esn`?{`3esn`:'s_str'[..0X7]}]-(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]})))) On Match Set `4esn`+=$`8esn`[0xabc][Null],@usn5+=0.0 In `6esn` In $@usn5 Union Remove #usn8:#usn8,Single(_usn4 In `2esn` Where 0X0123456789ABCDEF[9e12]).`1esn`! Foreach(`1esn` In All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Contains `4esn`(999 Starts With 's_str') Contains (`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})| Create (#usn8 :`7esn`),`3esn`=Shortestpath((:_usn4)-[`6esn`?{#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}]-({`3esn`:9e1 =~999})-[`3esn`? *01..07]->({`7esn`:@usn5[..$@usn5][..0Xa]})) Detach Delete Reduce(@usn5={`1esn`} In 12.e12 In 9e1,`5esn` In $`2esn`[12.e12][$@usn5]|$`6esn` Ends With {0} Ends With {`7esn`}) Is Null,``[..0X0123456789ABCDEF],{`1esn`}[$`4esn`..][False..]);"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` With Distinct *,Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 07[..`6esn`][..'s_str']) In [$`2esn`[$usn2..][{``}..],0.e0 Ends With False] In (:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})-[`2esn`?$_usn4]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)}) Order By {#usn7}[{#usn7}..][$`4esn`..] Ascending,_usn4(Distinct 9e12[$`5esn`],$_usn4[$`4esn`..$12]) Starts With [`` In {`1esn`} Starts With @usn6 Where {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]|$`` In 0 In {1000}] Starts With [_usn4 In 0.0[..{999}][..0.0] Where Count(*) In {``}] Desc,1000 Starts With 123.654 Starts With $_usn4 Asc Where Count(*) Starts With $usn1 Starts With {usn2} Union With .e0 =~{`8esn`} =~$999 As #usn7,$12 Is Not Null As `7esn`,{``} Is Null Is Null Limit All(_usn3 In {@usn5}[..#usn7] Where $`2esn` Starts With {`8esn`} Starts With {usn1}) Starts With {usn2:{`1esn`} Is Not Null};"), + octest_legacy:ct_string("Profile Drop Constraint On(@usn6:@usn5)Assert Exists(({`2esn`:$_usn4[$`4esn`..$12]})<-[`3esn`?:usn2|#usn7 *0X0123456789ABCDEF]->(`4esn` :@usn6).#usn7!)"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Create Constraint On()-[`3esn`:@usn5]-()Assert Exists(#usn7(Distinct `5esn` Is Null Is Null).usn1?);"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Load Csv From 010 Ends With 01 Ends With {_usn3} As `7esn` Fieldterminator \"d_str\";"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Drop Constraint On()<-[_usn4:`3esn`]-()Assert Exists(Filter(`2esn` In {999} Is Not Null Where #usn8 =~{_usn3} =~``).`6esn`!);"), + octest_legacy:ct_string("Cypher 1000.12 `5esn`=`1esn` @usn5=`` Drop Constraint On(_usn3:@usn6)Assert Exists(Filter(#usn7 In 0Xa[@usn5][{`7esn`}] Where 12[..$@usn6]).`2esn`)"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Create `4esn`=Shortestpath(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))),((#usn8 {`8esn`:{7} Contains $123456789})) Merge `4esn`=Shortestpath((`3esn` {@usn6:12 Starts With {_usn4} Starts With $#usn8})) On Match Set `5esn`+=Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..],[`6esn` In Count(*) Ends With $`` Ends With {7} Where @usn5 =~'s_str'|{_usn3} Contains 9e0 Contains $999].usn2 =9e12 Is Null Remove usn1:`4esn`:@usn6,`3esn`:`1esn`,({usn2:`1esn` In 07})<-[usn2? *0xabc..7{usn1:$123456789 Starts With `5esn`}]->(:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})-[`6esn`?:_usn3|`8esn`]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]}).@usn6 Union Unwind #usn7[9e0] As `` Union Return Distinct *,0 Contains $usn2 Contains 12e12 Order By $_usn4 Contains {#usn7} Contains `1esn` Descending,$`1esn`[#usn8][$@usn5] Asc,0e0 Contains `3esn` Contains `7esn` Descending Skip ``(#usn8 =~{999})[Single(_usn3 In {@usn5}[..#usn7])..][Case $123456789 Is Not Null When .e1[0.12] Then {@usn5}[..{12}][..0x0] When @usn5 Is Not Null Is Not Null Then \"d_str\" Ends With False Ends With {@usn6} End..] Create Unique @usn5=(`6esn` :`8esn`:@usn5),usn1=((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)) Create _usn3=(`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})<-[usn2 *07{usn1:07 =~@usn5}]->(_usn4 {`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}),@usn5=({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1});"), + octest_legacy:ct_string("Profile Drop Constraint On(#usn7:_usn4)Assert Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where `7esn` Starts With 0X7 Starts With $`7esn`|9e1 Ends With $@usn5 Ends With $123456789).@usn5? Is Unique;"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Drop Constraint On(`4esn`:usn1)Assert Exists([$12 Is Not Null,True[True..]]._usn4);"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Drop Constraint On(``:usn1)Assert Filter(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`]).#usn8! Is Unique;"), + octest_legacy:ct_string("Explain Profile Create Constraint On()<-[@usn6:`7esn`]-()Assert Exists(`6esn`(Distinct #usn7 =~{`4esn`} =~123456789,1e1[1.e1..][123.654..]).usn1)"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Drop Constraint On()<-[usn2:@usn6]-()Assert Exists([12.e12[{7}..7],_usn3[\"d_str\"]].`2esn`);"), + octest_legacy:ct_string("Cypher With Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..]) Starts With [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]|Count ( * )[..12][..{@usn6}]] Starts With Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where True Starts With $`2esn` Starts With {@usn6}),'s_str' Starts With 12e12 Starts With $_usn4 As `4esn` Return *,0.e0 Contains #usn7 Order By {@usn5}[Count(*)..] Asc,9e0[Count ( * )] Descending Skip Case When #usn8 In `8esn` In 07 Then 00[Count(*)...e0][$#usn7..0X0123456789ABCDEF] Else 12.e12[{7}..7] End In Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]})) In Reduce(`3esn`=00 Ends With `8esn`,usn1 In 12.e12 In {0} In 9e1|True Starts With $`4esn` Starts With 12e12) Limit $12 Is Not Null Is Not Null Union Return *,1.e1 =~$`1esn` As `8esn` Order By {usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}[Reduce(`1esn`={usn1} In Count ( * ),`` In {usn1} Ends With {`6esn`} Ends With 123456789|0[{usn2}..][usn1..])][[`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12]|{``} Starts With 123456789 Starts With usn2]] Ascending,Reduce(usn1=1e1 Contains usn2,`8esn` In $12[{7}..0X0123456789ABCDEF]|#usn7 =~{`4esn`} =~123456789) Contains `3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]) Asc,[False Starts With 010] Contains Extract(_usn3 In True[7][$999] Where 0e0[$#usn8...e12]|12 Is Not Null Is Not Null) Contains [`1esn` In $12 Is Not Null] Asc Load Csv From (#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As `` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Detach Delete $@usn5 In 's_str' In $12,Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]}))) Ends With Case When $``['s_str'..][0x0..] Then 9e12[..0X7] Else $1000[..$999] End,{`7esn`} Ends With `` Ends With {`8esn`}"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` With Distinct Null Ends With 12 Ends With usn2,010 In `1esn`,07 =~$`8esn` =~9e1 As _usn4 Skip Reduce(@usn6=#usn8 Is Not Null,#usn7 In 0Xa[@usn5][{`7esn`}]|{7}[{`4esn`}][`6esn`])[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])] Limit #usn8 In `8esn` In 07 Union All Unwind {#usn7}[{#usn7}..][$`4esn`..] As `5esn` Merge Shortestpath(({usn2:#usn8 =~{_usn3} =~``})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})-[?:`1esn`|:`3esn` *999]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})) Union All Delete Shortestpath(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})))[[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7[`5esn`]|{_usn3}[{0}]]..],{`3esn`}[{`5esn`}] Create Unique #usn8=((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})),Shortestpath(((`1esn` :`4esn`:@usn6)));"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Drop Constraint On()<-[@usn6:`7esn`]-()Assert Exists(Allshortestpaths(((({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2})<-[:_usn4|:usn1 *07]-(#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})))).``!);"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Unwind Single(`6esn` In 00 Where 0.12 In 0X7)[..{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] As `4esn` Create Unique _usn3=(usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}),@usn6=({_usn4:False[0Xa..$usn1]})<-[:_usn3|`8esn` *0x0..{`5esn`:0.e0[12.e12]}]-(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]}) Start _usn3=Relationship:usn1('s_str') Where {_usn4} In {1000} Union Match ((:#usn8{#usn8:`3esn` Is Not Null Is Not Null})),Allshortestpaths((#usn8 :`7esn`)) Using Index @usn5:usn2(`7esn`) Using Join On @usn5,usn2,_usn3 Unwind 01[..{`7esn`}][..01234567] As @usn5;"), + octest_legacy:ct_string("Cypher Create Constraint On()-[_usn3:#usn7]-()Assert Exists([`7esn` Ends With $_usn3 Ends With usn2].@usn5!)"), + octest_legacy:ct_string("Profile Drop Constraint On(``:``)Assert Exists(All(`2esn` In {999} Is Not Null Where {1000}[1000][$usn1]).@usn5);"), + octest_legacy:ct_string("Cypher 1000.12 `6esn`=`` Cypher 999.999 Create Constraint On()-[`4esn`:`6esn`]->()Assert Exists(Case 9e1[$_usn4..0xabc] When $1000[..$999] Then $`7esn` In 12 Else @usn5 =~'s_str' End.@usn6!);"), + octest_legacy:ct_string("Profile Load Csv From usn1(``[..$#usn7]) Ends With Reduce(#usn8=`1esn`[..01],_usn4 In 0.0[..{999}][..0.0]|``[00..$7]) Ends With Extract(_usn3 In True[7][$999] Where {`2esn`}[Count(*)]|{`7esn`}[``..]) As `3esn` Fieldterminator 's_str' Optional Match _usn3=Allshortestpaths(((`` {`1esn`:{@usn5}[1e1..][9e1..],`2esn`:$`7esn` Contains {`1esn`} Contains 9e12})<-[`3esn`? *0x0..{_usn3:0.0[9e1..][Null..],#usn7:{`3esn`} Is Not Null Is Not Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-(`3esn` :`6esn`:`8esn`{`8esn`:{``} Is Null Is Null,`3esn`:123456789 Is Not Null Is Not Null}))) Using Index `3esn`:#usn8(`2esn`) Using Scan usn1:usn2 Where $@usn6[01..@usn5][0x0..`4esn`]"), + octest_legacy:ct_string("Cypher 7.0 With Distinct Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*))[Shortestpath(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(:#usn8)<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})))..],_usn4($123456789 =~`4esn`)[None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where Count(*) In {``})..][Any(`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7})..] As #usn8 Order By $123456789 Is Not Null Asc Limit 0Xa Is Not Null Is Not Null Where {`3esn`}[{`5esn`}] Remove Any(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`]).`2esn`? Unwind 9e12 Is Not Null Is Not Null As @usn5;"), + octest_legacy:ct_string("Cypher 999.999 Cypher Create Constraint On(usn2:`3esn`)Assert Exists((:_usn3$usn1)<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5)-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}).#usn7)"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Drop Constraint On(`8esn`:``)Assert Exists([`1esn` In $12 Is Not Null Where 1e1[..$1000][..999]|{@usn6}[True..{_usn3}]]._usn4)"), + octest_legacy:ct_string("Cypher 999.999 Cypher Detach Delete $usn2 Is Null Is Null,`3esn` =~9e0 =~@usn6,None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False) Is Null Union Remove Allshortestpaths(((_usn3 :#usn8{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(:`2esn`{`2esn`:123456789[0..]}))).`8esn`! Remove Shortestpath((({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`))).#usn8!,({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})-[? *01..07]->({_usn4:{usn1} =~123.654 =~\"d_str\"}).`5esn`?,[{`6esn`}[..{`2esn`}],$`8esn`[..$999][..0],`3esn` Is Not Null Is Not Null].`1esn`? Return Distinct *,010 Is Not Null Is Not Null As #usn7,123456789[12..$`4esn`] As `7esn` Order By $_usn3[..$`2esn`][..\"d_str\"] Desc Limit `` Is Null Is Null Union Load Csv With Headers From Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000) Contains [0x0[$`8esn`.._usn3]] Contains count({`1esn`} Is Not Null,$`2esn` Ends With 0.12 Ends With .e1) As `2esn` Fieldterminator \"d_str\" Remove (:@usn5)-[`8esn`?{`3esn`:'s_str'[..0X7]}]-(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}).`4esn`!,Extract(`6esn` In 00 Where 12e12 Is Not Null Is Not Null|`1esn`[Null..]).usn1;"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Drop Constraint On(`2esn`:`8esn`)Assert ({usn2:`1esn` In 07})<-[usn2? *0xabc..7{usn1:$123456789 Starts With `5esn`}]->(:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})-[`6esn`?:_usn3|`8esn`]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]}).@usn5! Is Unique;"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Drop Constraint On()<-[`3esn`:#usn7]-()Assert Exists(({@usn5:Count ( * ) Is Null})-[:#usn8|`2esn`]->(`` :usn2:`2esn`)<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}).`5esn`)"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Unwind $123456789 Contains [True Starts With $`2esn` Starts With {@usn6}] Contains {@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]} As `2esn` Union All Unwind None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] As _usn3 Start `4esn`=Rel:`7esn`(usn2='s_str') Create Unique _usn3=(((`7esn` :#usn7{`5esn`:_usn4 Is Null Is Null})-[`2esn`:`2esn`{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})-[{``:\"d_str\"[{`8esn`}..]}]-(:`4esn`:@usn6{@usn6:Count(*)[..``][..#usn8]}))),#usn8=(((:@usn5{@usn6:{7} Contains $123456789})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})-[`3esn`:`6esn`{`3esn`}]-(#usn8 :`6esn`:`8esn`{`1esn`:9e12 Is Not Null,_usn4:0X0123456789ABCDEF[$`2esn`..][`2esn`..]}))) Union All Create (usn1 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`) Merge Allshortestpaths((`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})-[``:usn2|#usn7 *..0Xa]->(:`4esn`:@usn6{usn1:$7[{`1esn`}],#usn8:\"d_str\"[..0.e0]})) On Create Set Extract(`1esn` In $12 Is Not Null Where 1e1[..$1000][..999]|True Starts With $`2esn` Starts With {@usn6}).``? =[$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null][(`1esn` :#usn7)<-[? *0X0123456789ABCDEF]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]})..[{_usn3}[$usn2..],$`3esn`[..$`2esn`][..123.654],12.e12[`7esn`]]],usn1 ={usn2} =~`7esn` =~07,usn1+=usn2[999..] On Match Set [#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}]].@usn5 =Reduce(#usn8=$7[{`1esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|$12 Contains 0Xa) Is Null Is Null,Reduce(`7esn`=$0[`7esn`],`6esn` In Count(*) Ends With $`` Ends With {7}|$7 Ends With 0X7).`5esn` =$0 Is Not Null,`1esn`+=`2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}];"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Optional Match (`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})-[``:usn2|#usn7 *..0Xa]->(:`4esn`:@usn6{usn1:$7[{`1esn`}],#usn8:\"d_str\"[..0.e0]}),`3esn`=Allshortestpaths((:`3esn`:`6esn`{_usn4:{usn1} In Count ( * )})) Using Index @usn6:#usn8(_usn4) Using Join On `6esn`,usn2,`5esn` Create Unique `5esn`=Shortestpath(((#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]}))),`8esn`=Allshortestpaths(((#usn8 {`8esn`:{7} Contains $123456789})))"), + octest_legacy:ct_string("Profile With *,7[1000.._usn3][9e0..\"d_str\"],(`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})-[`4esn`?:_usn4|:usn1 *999{_usn4:{7} Starts With $usn1 Starts With 1.0,#usn7:$1000[..12.0][..0e0]}]-(#usn7 :`2esn`)-[?:`8esn`|:_usn4 *12..]->(@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]}) In {`3esn`:1e1 Contains usn2} Order By Count ( * )[00] Asc,$#usn7 Contains True Contains _usn4 Descending Skip 9e0[#usn8] Limit 123456789 Is Null Is Null Where #usn7 =~{`4esn`} =~123456789 Start _usn4=Node:`4esn`(_usn4={``}) Where {`2esn`} In 0Xa In {_usn3} Union All Remove Case @usn5[..$@usn5][..0Xa] When $@usn6 Starts With {`1esn`} Starts With 12 Then $1000[..12.0][..0e0] Else 's_str'[..0X7] End.`8esn` Foreach(`4esn` In Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Starts With (usn2 :``)<-[#usn7? *0X0123456789ABCDEF{usn1:.e1[@usn5]['s_str'],`2esn`:$`7esn` Is Null Is Null}]->({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]})| Create @usn5=(`4esn` :#usn7)<-[@usn6?:usn2|#usn7]->(`1esn` )-[`6esn`?*..{`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}]->({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6}),(usn2 {usn1:{`4esn`}[..07][..$`6esn`],`5esn`:'s_str'[..0X7]})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]->({_usn4})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`) Remove [`6esn` In Count(*) Ends With $`` Ends With {7} Where `1esn` =~1000 =~1000|0xabc[$@usn5]].usn1,Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000|\"d_str\"[{`8esn`}..])._usn3) Union Unwind 12 Starts With {_usn4} Starts With $#usn8 As usn1 With [`1esn` In `3esn`[07..] Where @usn6[{0}..]|0.e0[12.e12]] Contains {usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF} As @usn6,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $`5esn`[$#usn7..][0xabc..]) Contains All(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}]) As #usn8 Merge Allshortestpaths((:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[_usn4? *07{1000}]-(`` )<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})) On Create Set ['s_str'[..0X7],False Contains 0.e0 Contains Count(*)].``? =$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`];"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` Create Unique usn2=Allshortestpaths((:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[_usn4? *07{1000}]-(`` )<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})),`7esn`=Shortestpath((@usn5 {#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(`2esn` :#usn8{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})) Union Merge #usn8=Allshortestpaths(({`3esn`:0.e0[{999}][{`1esn`}],`1esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[:usn2|#usn7 *0X7..0Xa]->(#usn7 :@usn5)) On Create Set `6esn`+=$7 In #usn8 Union Merge ((`8esn` :`2esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[@usn6?]-({`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})) On Match Set `3esn`(\"d_str\"[..0.e0]).`8esn` =[1e1[{_usn4}..123.654]] In Reduce(`5esn`=9e1 Ends With Count(*) Ends With False,`1esn` In $12 Is Not Null|123.654[{`7esn`}][{7}]) In [usn2[True],{`3esn`}[{`5esn`}]] On Match Set `1esn`+=`2esn` Starts With `` Starts With 1e1,Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End.`3esn` =$0 Ends With False Ends With $_usn4 Match Allshortestpaths((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]})),#usn8=Shortestpath((#usn7 :usn1:_usn4{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})) Using Index @usn5:usn2(`6esn`) Where $`8esn` In $`2esn` In {7} Create Unique `6esn`=((`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[`5esn`:`5esn`]-(:usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07}));"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Using Periodic Commit 0X7 Load Csv With Headers From All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.e12[$`8esn`..{`8esn`}]) Is Null As usn2 Foreach(_usn3 In {`3esn`} =~$7| Delete {1000}[{``}][999],`4esn`[{1000}][{`5esn`}]) With Distinct `7esn` Ends With $_usn3 Ends With usn2 As _usn4,1000 Is Null Is Null Order By @usn6[$usn2..#usn7] Ascending,{`3esn`} Ends With 0 Ends With 9e1 Desc Limit {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}[..({``:.e1 Contains $`3esn`})<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})];"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Load Csv With Headers From {`7esn`:{999} Starts With {12},`3esn`:00} =~[0X0123456789ABCDEF[$`5esn`..],#usn7 Ends With $#usn7 Ends With {`8esn`}] =~[{12} =~0.e0 =~{_usn3},$#usn7 =~{12} =~False,1000 Is Null] As `6esn` Fieldterminator 's_str' With Distinct Reduce(#usn7={`1esn`} Starts With `4esn` Starts With {0},`3esn` In 123.654[1e1..][{#usn8}..]|9e12[$`5esn`]) As `3esn` Skip \"d_str\"[..0.e0] Limit ({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..`2esn`(Distinct #usn8[`7esn`..])][..[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]]] Create Unique Allshortestpaths((#usn8 :`7esn`));"), + octest_legacy:ct_string("Cypher 0.1000 usn1=`7esn` Load Csv With Headers From 's_str'[$usn2][Count(*)] As `5esn` Remove {`5esn`:01234567[..9e1]}.#usn8!,[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $`8esn`[..$999][..0]].@usn6!,None(#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}).`6esn` Union All Load Csv With Headers From ``(999 Starts With 's_str',1e1[1.e1..][123.654..]) =~[$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]] =~[#usn7 In 0Xa[@usn5][{`7esn`}] Where `5esn`[0xabc..]] As @usn5 Union All Return Distinct *,1.e1 Ends With 0 Ends With $usn1 As `` Order By $`1esn` =~$usn1 =~01234567 Asc,$`2esn` Ends With `` Ends With {12} Descending,$#usn7 =~9e1 =~$_usn4 Asc Skip Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))[All(`2esn` In {999} Is Not Null Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF)][Shortestpath((:_usn3{_usn3:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF,`5esn`:1.0 Is Null Is Null})<-[`3esn`:`6esn`{`3esn`}]-(_usn4 :#usn7{_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})<-[ *123456789..0X7]-(`2esn` :`2esn`{`3esn`:#usn8 =~{999}}))] Foreach(`` In 0X7[0X7..][Count ( * )..]| Unwind [`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*)] Starts With (`5esn` :`7esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`}) Starts With `6esn`(Distinct 12.e12[``..usn2][{#usn7}..@usn5],$`7esn` In 12) As @usn5)"), + octest_legacy:ct_string("Explain Profile Drop Constraint On()-[`7esn`:`8esn`]-()Assert Exists((:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[:`3esn`|:@usn5*..]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})._usn3)"), + octest_legacy:ct_string("Cypher 1000.12 Cypher `3esn`=`7esn` Return *,Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where `7esn` Starts With 0X7 Starts With $`7esn`) Is Not Null As `2esn` Order By Null[010..][{``}..] Desc,`3esn`[_usn4..{0}][`5esn`..usn2] Desc,{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}[Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))..] Ascending Skip Null =~12e12 Union All Delete Shortestpath(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})))[[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7[`5esn`]|{_usn3}[{0}]]..],{`3esn`}[{`5esn`}] Create Unique #usn8=((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})),Shortestpath(((`1esn` :`4esn`:@usn6))) Union All Foreach(`3esn` In 's_str'[_usn4..0x0]| Optional Match Shortestpath((usn1 :usn1:_usn4)),`8esn`=Allshortestpaths(((`8esn` :@usn6))) Using Index #usn7:usn1(``) Using Scan #usn7:_usn3 Where $`` In 0 In {1000});"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Drop Constraint On(usn2:@usn6)Assert Exists($`6esn`.`5esn`)"), + octest_legacy:ct_string("Cypher 7.0 Foreach(`2esn` In 07 =~$`8esn` =~9e1| Optional Match @usn5=((`1esn` :`4esn`:@usn6)),(#usn8 :#usn8) Where 9e1 Ends With Count(*) Ends With False) Foreach(`2esn` In #usn7[00]| Unwind $_usn4 As `8esn`) Union Load Csv With Headers From All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.e12[$`8esn`..{`8esn`}]) Is Null As usn2 Start `3esn`=Rel:``(usn1={`4esn`}) Match ``=((_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[ *0xabc..7]->(:`4esn`:@usn6)-[?{`7esn`:{``} Ends With .e12 Ends With 0.e0}]-(`4esn` {`2esn`:12 Starts With 7 Starts With $`5esn`})) Using Index `6esn`:usn2(@usn5) Using Join On ``,`2esn`,`8esn` Union All Create ``=((:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn7{usn1:1.0[{999}][$999]}]->(:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})),((`2esn` :@usn5{`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})<-[?:`6esn` *07]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[{#usn7:'s_str'[_usn4..0x0]}]-({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}));"), + octest_legacy:ct_string("Cypher Detach Delete {`2esn`} Ends With {12} Ends With 7,1e1[7..][.e1..],#usn7(Distinct)[usn2(Distinct)..{#usn7:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:#usn8[$0..False][$`1esn`..$#usn7]}][Case When {`4esn`}[..{`4esn`}] Then {`7esn`}[0X7..][0x0..] When {@usn6} Contains 123.654 Contains 01 Then #usn8 Is Not Null End..[9e12 Ends With 123456789]] Return None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12.e12[``..usn2][{#usn7}..@usn5]) Is Null Is Null As @usn5,Reduce(#usn8={`8esn`}[..$`6esn`][..123.654],usn1 In 12.e12 In {0} In 9e1|\"d_str\" =~`1esn` =~{`5esn`}) As ``,None(`3esn` In 123.654[1e1..][{#usn8}..] Where 7[$0..][{_usn4}..])[All(`` In {`1esn`} Starts With @usn6 Where Null[{_usn4}..])..(:_usn3{0})-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]->({@usn5:``[{123456789}..]})<-[`4esn`:`3esn`|:@usn5 *..010]->({`4esn`:12 Starts With {_usn4} Starts With $#usn8})] Skip {``}[_usn4..$`1esn`] Foreach(`3esn` In {`5esn`} Contains 123456789 Contains 9e12| With `7esn` =~.e12 =~$#usn7 As `3esn`,$`8esn` Is Null Is Null As `6esn` Order By False[{`8esn`}] Asc,Reduce(usn2={`6esn`}[..{`2esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|1e1[..01]) Is Not Null Is Not Null Asc,{1000}[1000][$usn1] Ascending Skip $#usn8[{12}..]) Union Merge ((`5esn` :@usn6)<-[`2esn`?:@usn6|``]->(`1esn` {_usn4:{1000} Ends With {`8esn`}})<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})) On Create Set _usn4+=Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where 12e12 Is Not Null)[..Reduce(`1esn`=$`3esn` In 9e12 In ``,`2esn` In {999} Is Not Null|$@usn5[..usn2][..$#usn7])],Shortestpath(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))).`7esn`! =1e1[{_usn4}..123.654] On Match Set `1esn`+=`2esn` Starts With `` Starts With 1e1,Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End.`3esn` =$0 Ends With False Ends With $_usn4 Load Csv With Headers From Any(`5esn` In $`2esn`[12.e12][$@usn5] Where {999} Starts With {12})[Reduce(#usn7={_usn3}[`3esn`..$#usn8],`3esn` In 123.654[1e1..][{#usn8}..]|{999} Starts With {_usn4} Starts With 00)..Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0.12[..$`6esn`][..$1000])][All(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])..[$_usn3 Is Null Is Null,`5esn` Is Null Is Null,7 Is Null Is Null]] As `2esn` "), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Foreach(#usn8 In Case 9e0 In usn1 When {@usn6} Contains 123.654 Contains 01 Then $@usn5 In 's_str' In $12 End In Allshortestpaths(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))) In Case {`7esn`}[9e1..][@usn6..] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" When {7}[{`4esn`}][`6esn`] Then 0xabc[$@usn5] Else 0e0 End| Start `4esn`=Node:``(\"d_str\") Start _usn3=Relationship:``(`1esn`={`2esn`}) Where 0[{usn2}..][usn1..]) Create Unique ``=((`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6)<-[#usn7]-(@usn6 )),`6esn`=Allshortestpaths(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})-[:`1esn`|:`3esn` *..01234567{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(#usn7 {``:0x0 =~123.654 =~{999}}))"), + octest_legacy:ct_string("Cypher 999.999 Cypher Drop Constraint On()-[#usn7:`2esn`]->()Assert Exists(Single(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} =~_usn4 =~0.12)._usn4!)"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Merge Allshortestpaths((((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})))) Union Create Unique Shortestpath((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->({_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})),Shortestpath(((usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}))) Detach Delete Reduce(@usn5=0.e0 Contains #usn7,`` In {usn1} Ends With {`6esn`} Ends With 123456789|$999 In 999)[Allshortestpaths(({`4esn`:#usn8 Is Null})-[:usn1{_usn4:0[{usn2}..][usn1..],`3esn`:12 Starts With 7 Starts With $`5esn`}]-(`7esn` :`3esn`:`6esn`)<-[`6esn`?:#usn8|`2esn`*..{`5esn`:@usn5 =~'s_str'}]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}))..{@usn6:0.0 Is Not Null Is Not Null,#usn7:\"d_str\"[{`8esn`}..]}],Single(_usn3 In True[7][$999]) Is Not Null Is Not Null Union All Load Csv With Headers From Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})] As @usn5 Fieldterminator \"d_str\" Return Distinct *,(#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..],[`1esn` In $12 Is Not Null Where {`3esn`}[{`5esn`}]|True Is Not Null Is Not Null] Ends With Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End Ends With `3esn`(Distinct 1.e1 =~$usn2,0X0123456789ABCDEF Is Null Is Null) As `5esn` Limit `2esn`(Null In .e0)[_usn3(Distinct {@usn6}[$`7esn`..][False..])..[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]]]"), + octest_legacy:ct_string("Cypher 123456789.1000 Cypher `8esn`=@usn6 `4esn`=`5esn` With Distinct *,1000 As `5esn` Limit {`1esn`} In 12.e12 In 9e1 Where `8esn` Contains $`3esn` Contains {`4esn`} Union All Unwind `4esn`[usn1] As _usn4 Union All Unwind $`7esn` Is Null Is Null As `8esn` Remove Case @usn5[..$@usn5][..0Xa] When $@usn6 Starts With {`1esn`} Starts With 12 Then $1000[..12.0][..0e0] Else 's_str'[..0X7] End.`8esn` Create Unique Shortestpath((`1esn` :@usn5{_usn3:Null Is Null Is Null,``:True[True..]}));"), + octest_legacy:ct_string("Cypher 7.0 Create Constraint On(@usn6:`3esn`)Assert None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Contains 123.654 Contains 01).`5esn`? Is Unique"), + octest_legacy:ct_string("Profile Create Constraint On()-[`2esn`:`2esn`]->()Assert Exists(Reduce(`2esn`=`7esn` Contains {@usn5} Contains $123456789,`6esn` In 00|$@usn6[01..@usn5][0x0..`4esn`]).`6esn`?);"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Create Constraint On(#usn7:`4esn`)Assert Exists(Reduce(`2esn`=$#usn7[123.654],`` In {usn1} Ends With {`6esn`} Ends With 123456789|False Contains 0.e0 Contains Count(*)).`3esn`?)"), + octest_legacy:ct_string("Cypher 7.0 Merge (@usn6 :@usn5{usn2:{`6esn`} Ends With 0e0 Ends With {``}})<-[{`2esn`:``[{123456789}..]}]->(:_usn4) On Create Set `2esn`+=Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})],`3esn` =$12 Starts With $`8esn`,@usn5 =Reduce(#usn8={`8esn`}[..$`6esn`][..123.654],usn1 In 12.e12 In {0} In 9e1|\"d_str\" =~`1esn` =~{`5esn`}) Match @usn6=Allshortestpaths((:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}})),(:``) Using Index usn1:_usn3(``) Using Scan `1esn`:`3esn` Where 1e1[1.e1..][123.654..] Union All Create `8esn`=Shortestpath(({`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})),`4esn`=Allshortestpaths(((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))) Union Foreach(@usn6 In 9e12 In 1e1 In .e12| Remove {`1esn`:7 Is Null Is Null,@usn6:9e1 =~`` =~{`7esn`}}.`2esn`,(:@usn5{#usn7:{#usn7} In Count ( * ) In $#usn8})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(`4esn` :_usn4{`2esn`:#usn7 =~00}).#usn7!,`4esn`:_usn4 Remove Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 9e12 Is Not Null Is Not Null|_usn4[Count(*)]).`7esn`!,[#usn7 In 0Xa[@usn5][{`7esn`}] Where #usn7 Starts With $999|$@usn5[$`4esn`][$@usn6]].`2esn`!,Reduce(`2esn`=9e12 Ends With 123456789,`1esn` In 0.e0 =~`1esn` =~`6esn`|$`3esn` Contains 0 Contains 07).`7esn`?) Match @usn6=((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1))"), + octest_legacy:ct_string("Cypher 7.0 Create Constraint On()<-[`2esn`:@usn5]-()Assert Exists({_usn3:$1000 Is Not Null Is Not Null,_usn3:`5esn`[0xabc..]}.`5esn`!);"), + octest_legacy:ct_string("Cypher 12.999 @usn6=#usn7 Cypher `8esn`=@usn6 `4esn`=`5esn` Remove Single(@usn5 In Null =~12e12 Where `7esn`[0..$usn2][{usn2}..0.e0]).`5esn`? Union Foreach(usn2 In Any(`5esn` In $`2esn`[12.e12][$@usn5] Where {999} Starts With {12})[Reduce(#usn7={_usn3}[`3esn`..$#usn8],`3esn` In 123.654[1e1..][{#usn8}..]|{999} Starts With {_usn4} Starts With 00)..Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0.12[..$`6esn`][..$1000])][All(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])..[$_usn3 Is Null Is Null,`5esn` Is Null Is Null,7 Is Null Is Null]]| With Distinct {usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}[..None(`1esn` In `3esn`[07..] Where 0X0123456789ABCDEF[`5esn`..][$#usn8..])] Skip 0xabc[$999..][{#usn7}..]) Optional Match @usn6=(`2esn` :`3esn`:`6esn`),`8esn`=(@usn6 :`6esn`:`8esn`)<-[_usn4?:`7esn`{``:{_usn3} Contains $`1esn` Contains 12.0}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}) Using Join On _usn4,_usn4,@usn6 Where 0.12 Starts With 9e12 Starts With $`1esn`;"), + octest_legacy:ct_string("Explain Profile Load Csv From Reduce(usn1=1e1 Contains usn2,`8esn` In $12[{7}..0X0123456789ABCDEF]|#usn7 =~{`4esn`} =~123456789) Contains `3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]) As @usn6 Fieldterminator 's_str' Union Unwind All(usn1 In 12.e12 In {0} In 9e1 Where {12}[usn2])[Reduce(``=$@usn5[..usn2][..$#usn7],`6esn` In Count(*) Ends With $`` Ends With {7}|{`4esn`}[$123456789..])..][{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]}..] As @usn6"), + octest_legacy:ct_string("Cypher Drop Constraint On()<-[usn2:`3esn`]-()Assert Exists(Reduce(`8esn`=`7esn`[0..$usn2][{usn2}..0.e0],`6esn` In Count(*) Ends With $`` Ends With {7}|12.e12 In {0} In 9e1).@usn5);"), + octest_legacy:ct_string("Explain Profile Create `2esn`=(:_usn3{#usn7:#usn8 =~{999}}),Shortestpath(((:#usn8{``:12.e12[$`4esn`..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]}))) Return $`2esn`[12.e12][$@usn5],12 Starts With $#usn7,(#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..] Order By @usn5 In 1e1 Asc Limit {_usn4}[...e12][..0xabc] Union All Detach Delete 123.654[{`7esn`}][{7}],Count ( * ) Starts With 010 Starts With 0x0 Match `2esn`=(_usn3 :@usn5),(@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]}) Using Scan `3esn`:_usn3 Where $`` Starts With 12 Starts With $usn2 Foreach(`3esn` In 0X0123456789ABCDEF[$`5esn`..]| With Distinct $`2esn`[12.e12][$@usn5],12 Starts With $#usn7,(#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..] Where 0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] Create `8esn`=((:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *..00{#usn7:`4esn`[usn1]}]-(:@usn5{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12})),_usn4=(((#usn8 )-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))))"), + octest_legacy:ct_string("Cypher `4esn`=`5esn` `3esn`=`7esn` Cypher Create Constraint On()-[usn1:#usn7]-()Assert Exists({`4esn`:`8esn` Contains 1e1,#usn7:{`2esn`}[..{@usn6}][..1.e1]}.@usn6!);"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Merge Shortestpath(({`8esn`:0[$`6esn`...e1][`1esn`..$`7esn`]})-[#usn8:#usn7|`2esn`]->(:@usn6{`2esn`:$999 In 999})) On Match Set `7esn`+=Reduce(@usn5=True =~{`1esn`},_usn4 In 0.0[..{999}][..0.0]|7[$0..][{_usn4}..]) In Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`) In All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) On Match Set `6esn` ={_usn3}[usn1][0],Shortestpath((@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})).@usn5? =\"d_str\" Contains @usn6 Contains 12.e12,`7esn`+=`3esn`[..{_usn4}][..{@usn5}] Union All Load Csv With Headers From .e0[0.12] As _usn4 Start `4esn`=Node:@usn6(`5esn`={1000}) Where {@usn5}[1e1..][9e1..] Union All Remove `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null).`3esn`! Delete 0e0[..$@usn5][..$`8esn`];"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Drop Constraint On(@usn5:@usn6)Assert Reduce(`4esn`=`3esn`[..{_usn4}][..{@usn5}],`2esn` In {999} Is Not Null|123456789 Starts With {@usn6} Starts With $12).usn2 Is Unique"), + octest_legacy:ct_string("Cypher 12.999 Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` With *,#usn8 Is Not Null,$usn2 Starts With $@usn6 Starts With 010 As _usn4 Order By 12.e12[$`4esn`..] Descending Skip 00 Limit 0X0123456789ABCDEF[.e1..] Where \"d_str\" Ends With False Ends With {@usn6} Merge `8esn`=(`6esn` {``:`4esn`[usn1]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]->(#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``}) On Create Set @usn6+={7}[$123456789..{1000}][$`3esn`..`7esn`],Extract(#usn7 In 0Xa[@usn5][{`7esn`}] Where $@usn5 In $usn2 In {1000}|{`2esn`}[..{@usn6}][..1.e1]).`3esn`! =$@usn6[$0..usn1][0X0123456789ABCDEF..$999] On Create Set Extract(usn1 In 12.e12 In {0} In 9e1 Where False Starts With 010|True Starts With $`4esn` Starts With 12e12).`7esn`? =0X0123456789ABCDEF Is Null Is Null,`4esn` =`3esn` In {@usn6} Union All Merge `2esn`=(@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]}) On Create Set #usn8 =(`8esn` :`5esn`:@usn5)<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5) Starts With None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]),@usn5 =$_usn4 Is Null Is Null On Create Set #usn8+=1e1 =~#usn8 =~2.12,#usn7:`2esn`,`1esn` =Count ( * )[..12][..{@usn6}] Unwind 01 Starts With {999} Starts With $`2esn` As #usn8"), + octest_legacy:ct_string("Cypher 999.999 Cypher Drop Constraint On(`4esn`:_usn3)Assert Exists(None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where True[True..]).usn2?);"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Using Periodic Commit 0X0123456789ABCDEF Load Csv With Headers From ``[{123456789}..] As `3esn` "), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Drop Constraint On(`6esn`:usn2)Assert {_usn4:0Xa Contains $``,@usn6:@usn6[$_usn4]}.usn1 Is Unique"), + octest_legacy:ct_string("Cypher 999.999 #usn7=#usn8 `4esn`=`5esn` Cypher `3esn`=`7esn` Remove @usn6(Distinct {@usn5}[..#usn7],0X0123456789ABCDEF[$999..][@usn5..]).`8esn`?,[usn1 Is Null Is Null].`4esn` Start ``=Relationship( {``}) ,`7esn`=Relationship(07,123456789,123456789)Where 12.e12[{@usn5}..][9e1..] Union With $999[07..{#usn7}][1e1..0xabc] As #usn8,{1000}[{#usn8}] As `2esn` Skip `3esn` Contains $`6esn` Contains `8esn` Where 0.e0 =~`1esn` =~`6esn` Remove (:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}).``? Union All Foreach(#usn7 In Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12) Contains {`1esn`:$999 Ends With {0}} Contains (`5esn` :_usn3{`4esn`:12.e12[``..usn2][{#usn7}..@usn5]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(`4esn` :`2esn`{`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})| Delete 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF,$7 Is Not Null,0X0123456789ABCDEF[$`5esn`..]) Detach Delete $`2esn`,_usn4 Is Null Is Null,12.e12[{7}..7]"), + octest_legacy:ct_string("Cypher 7.0 Drop Constraint On()-[usn2:``]->()Assert Exists(None(_usn3 In {@usn5}[..#usn7] Where {`4esn`}[{`1esn`}][{1000}]).``!)"), + octest_legacy:ct_string("Cypher 0.1000 Create Constraint On(`2esn`:@usn6)Assert Reduce(``=`6esn`[{`6esn`}..],_usn4 In 0.0[..{999}][..0.0]|0.e0[{999}][{`1esn`}]).`5esn`? Is Unique;"), + octest_legacy:ct_string("Profile Using Periodic Commit 0X0123456789ABCDEF Load Csv With Headers From 12.e12 In {0} In 9e1 As `4esn` Fieldterminator 's_str';"), + octest_legacy:ct_string("Explain Profile Drop Constraint On()-[usn2:``]->()Assert Exists([True Is Not Null,12.e12[{@usn5}..][9e1..],$`3esn`[{``}..]].`5esn`);"), + octest_legacy:ct_string("Cypher 7.0 Create Constraint On()-[`5esn`:_usn3]-()Assert Exists(Extract(`` In {`1esn`} Starts With @usn6 Where 12 Starts With 7 Starts With $`5esn`|$`5esn` Is Not Null).`1esn`);"), + octest_legacy:ct_string("Cypher ``=usn1 Cypher 1000.12 `5esn`=`1esn` @usn5=`` Merge @usn6=(((`2esn` {_usn4:`4esn`[usn1]})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00}))) On Match Set {#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]}.usn1 =(#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..],Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where `7esn` Starts With 0X7 Starts With $`7esn`).`4esn` =$@usn6[..123.654],_usn4:`4esn`:@usn6 On Match Set @usn5 =`2esn`[$1000..9e12][{#usn8}..{7}] With Distinct {@usn5},{0} Is Null As `6esn` Skip Null In .e0 Where True[..010];"), + octest_legacy:ct_string("Cypher 999.999 Cypher Foreach(usn2 In usn2(Distinct 0Xa[..{1000}][..$#usn7])[Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000|\"d_str\"[{`8esn`}..])][(`4esn` :`1esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]->(#usn7 )]| With Distinct *,`7esn` Contains `5esn` Contains 0X7 As `1esn` Order By usn2 Ends With Count ( * ) Ends With $@usn6 Asc,.e1 Ends With 0Xa Ends With 00 Ascending Where 123.654 Starts With $``) Foreach(`4esn` In `6esn`[$0][#usn8]| Detach Delete $`` In `7esn`) Match #usn8=Allshortestpaths((({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))),Allshortestpaths((((:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})))) Using Scan `4esn`:_usn4 Union All Foreach(usn1 In {`2esn`}[@usn5..][{``}..]| Load Csv From {_usn3}[`3esn`..$#usn8] As `4esn` Fieldterminator 's_str') Union Remove `3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]).@usn6,Reduce(`4esn`=$`7esn` Contains {`1esn`} Contains 9e12,`` In {usn1} Ends With {`6esn`} Ends With 123456789|.e12[$7..][{`6esn`}..]).usn1?;"), + octest_legacy:ct_string("Cypher `8esn`=@usn6 `4esn`=`5esn` Using Periodic Commit 1000 Load Csv From usn2 =~0X7 =~{#usn7} As `` Unwind {`1esn`} In 12.e12 In 9e1 As `4esn` Create Unique _usn3=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]})"), + octest_legacy:ct_string("Cypher Drop Index On:`3esn`(`8esn`);"), + octest_legacy:ct_string("Cypher `3esn`=`7esn` Cypher 1000.12 Unwind [@usn5[..$@usn5][..0Xa],{`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`]] In Filter(_usn4 In 0.0[..{999}][..0.0] Where True Starts With $`4esn` Starts With 12e12) As `6esn` Unwind 0X7 Is Null As `2esn` Unwind {`7esn`}[..9e12][..0.0] As #usn7 Union With *,{999}[9e1] As usn1,{`6esn`} Is Null As `2esn` Skip Allshortestpaths(((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}))) Starts With All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Limit $`3esn` Ends With $999 Ends With 0X0123456789ABCDEF Create (@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}),_usn4=(@usn6 :@usn6{`5esn`:@usn5[$12..\"d_str\"],usn2:1.e1[0X0123456789ABCDEF..]}) Union Merge Allshortestpaths(((`4esn` :`1esn`)-[`6esn`?*..{`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}]->({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6})));"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Drop Constraint On(usn2:`1esn`)Assert Exists([$@usn6[$0..usn1][0X0123456789ABCDEF..$999]].`1esn`?)"), + octest_legacy:ct_string("Cypher usn2=`5esn` Cypher 0.1000 usn1=`7esn` Drop Constraint On(usn1:_usn3)Assert Exists((:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[:`3esn`|:@usn5*..]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]}).@usn5?)"), + octest_legacy:ct_string("Cypher 7.0 Drop Constraint On()-[usn1:`4esn`]->()Assert Exists((:usn1:_usn4{@usn5:1000 Is Null Is Null})<-[`1esn`:`8esn`|:_usn4 *123456789..0X7$12]->(:`1esn`{`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[? *0X0123456789ABCDEF]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}).usn2!);"). diff --git a/test/performance_query_SUITE.erl b/test/performance_query_SUITE.erl index a5dbf94..813dba0 100644 --- a/test/performance_query_SUITE.erl +++ b/test/performance_query_SUITE.erl @@ -2,7 +2,7 @@ %%% File : performance_query_SUITE.erl %%% Description : Test Suite for rule: query. %%% -%%% Created : 03.10.2016 +%%% Created : 15.12.2016 %%%------------------------------------------------------------------- -module(performance_query_SUITE). @@ -38,1003 +38,1003 @@ all() -> %%-------------------------------------------------------------------- test_query(_Config) -> - octest:ct_string("Create ((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[?:usn1|`3esn`{#usn8:1000[..$`6esn`][..0xabc]}]->(:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[``?:usn1|`3esn`]->(:@usn5{#usn7:1e1[@usn5..]})),((`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})-[`3esn`? *999..]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]-(`1esn` :`4esn`:#usn8{_usn4:$_usn4[#usn8..]})) Return Distinct *,$123456789 =~$#usn8 =~$#usn8 Order By $@usn6 Contains 07 Contains 0.e0 Asc Skip 0e0[12][$_usn4] Limit 123.654[12.e12..1e1]"), - octest:ct_string("Delete $_usn4[$`1esn`],[01234567 =~usn1,9e0 =~$`5esn`,usn2[$`1esn`...0]][..[.12 In $999 In `5esn`,010 =~`6esn`,#usn7 Contains .0 Contains .e1]] Unwind $@usn5 Contains $`7esn` Contains #usn8 As `` Union All With *,#usn7 Starts With .e12 Starts With $`7esn` As usn2,{`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) As @usn5 Limit Extract(`4esn` In 's_str'[12..'s_str'] Where 00 Starts With _usn3|$`1esn` Is Null Is Null) Is Null Is Null Remove [@usn5 In .12[#usn7][$`8esn`] Where Count ( * )].`8esn`? Union Merge @usn5=(((_usn3 :_usn3{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[#usn8:`3esn`|:`4esn` *0..010]-(:usn1{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]}))) On Match Set `3esn`(False In `3esn`).`5esn`! =Count ( * )[Count ( * )..12e12][usn1..1000],#usn7 =(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])],#usn7+=00[01234567][False] On Match Set @usn5 =1e1[..#usn8][..'s_str'],`8esn` =usn2[`3esn`][_usn3] Optional Match ((:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]})),((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Where $`4esn`[12.e12..][0.0..]"), - octest:ct_string("Match _usn4=(@usn6 {#usn7:False[`2esn`..#usn8]})<-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]-(`4esn` {@usn6:True[..'s_str'][..01]}),`6esn`=(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]}) Where usn2[$`1esn`...0] With *,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn` Skip 1e1[..False] Limit 12e12[$`5esn`][07] Optional Match #usn7=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))),(((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]-({usn1:0x0[0X7..][usn1..]}))) Union With *,12e12 Is Not Null As usn1 Order By [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]) Asc Skip $`6esn` =~1e1 Limit .12 Is Not Null Is Not Null Where @usn5 Contains $`1esn` Contains 999 Unwind $1000 Starts With .0 Starts With 0.0 As `4esn` Return @usn5[..True][..0X7] As #usn8,[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..] Order By 0 Ends With $7 Ends With _usn3 Ascending Skip \"d_str\"[$`7esn`][$1000] Limit False[0Xa..$@usn5][$`6esn`..12e12] Union Merge `5esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)) Delete 01234567 Ends With 0x0,{@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7),None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`)[`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)..] Remove [Count ( * )[Count ( * )..12e12][usn1..1000],12e12[$`5esn`][07],$_usn3[9e1][$_usn4]]._usn4,_usn4($123456789[..0.12][..#usn7]).`6esn`!"), - octest:ct_string("Unwind {`5esn`:0Xa In .e1 In Count(*)}[$`8esn`][[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7]] As `5esn` Merge `2esn`=(:_usn4:usn1) On Match Set `6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`7esn` =9e1[0.e0..][#usn8..],#usn7+=({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Ends With @usn6(123456789 =~$123456789) Ends With [`1esn` Contains Count ( * ),$@usn6 Contains Count ( * ),False In 123456789 In $0] On Create Set `` =(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[usn1?:`8esn`|:usn1]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Is Null Is Null,`7esn`+=(`7esn` :_usn4:usn1)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`) Starts With ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2) Starts With Extract(usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]|07[`6esn`..][`5esn`..]),`2esn`:`1esn` Merge (((`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`6esn`? *0Xa{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}]-(:`6esn`:`7esn`{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[`1esn`?:`1esn` *01234567..12]-({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}))) On Match Set [usn1 In 00 Starts With _usn3 Where `6esn`[1e1..]].`5esn`! =Count ( * )[Count ( * )..12e12][usn1..1000],@usn5+=usn1 Contains $`` On Match Set `6esn`+=9e0 Is Not Null,``+=`4esn` Ends With 123456789 Ends With @usn5 Union Delete `8esn`[$``] Delete 7[..`1esn`],`6esn` In 1000 In 01234567 Union All Merge `1esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) On Create Set usn1+=Extract(#usn7 In 01234567[$`3esn`..] Where 0X7 In $999 In $``)[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..],Any(_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]).#usn8! =#usn7 Starts With 0x0 Starts With Null Create (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0),((:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]}))"), - octest:ct_string("With Distinct 0x0 In `8esn` In 999,``[$`3esn`][$`2esn`],01234567 Ends With 12.0 Ends With 0X7 Order By Count ( * )[..usn1][..12.e12] Asc,$usn2 Is Not Null Is Not Null Descending Skip `3esn`(Distinct $_usn3[Null],12[..True][..$`4esn`]) Is Null Is Null Detach Delete _usn3 Ends With 12e12 Ends With .e0,({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}) =~None(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Unwind $123456789 In Count(*) In .e1 As usn1 Union With 123.654 Is Not Null Is Not Null As `3esn`,01[Null..][`1esn`..] Where 0X7[0e0..] Union All Return Distinct *,`4esn` Is Null Order By `5esn` In $999 Descending Limit `3esn` =~$`5esn` =~12"), - octest:ct_string("Return *,Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null As `6esn` Union All Merge `2esn`=(:_usn4:usn1) On Match Set `6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`7esn` =9e1[0.e0..][#usn8..],#usn7+=({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Ends With @usn6(123456789 =~$123456789) Ends With [`1esn` Contains Count ( * ),$@usn6 Contains Count ( * ),False In 123456789 In $0] On Create Set `` =(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[usn1?:`8esn`|:usn1]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Is Null Is Null,`7esn`+=(`7esn` :_usn4:usn1)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`) Starts With ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2) Starts With Extract(usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]|07[`6esn`..][`5esn`..]),`2esn`:`1esn` Unwind 12[usn1][True] As @usn6"), - octest:ct_string("Create `1esn`=(((`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}))),(@usn5 {_usn4:_usn3 Ends With 0x0 Ends With 01234567}) Create #usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})),usn1=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) Union With Distinct *,`7esn`[$@usn6..$usn2]['s_str'..1e1] As `3esn`,Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) Skip {@usn5:0.e0[@usn6][0x0]} Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7) Limit \"d_str\" =~12.e12 =~07"), - octest:ct_string("Return Distinct *,`` =~12 =~$#usn7 As _usn4,[$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Skip `3esn`[..7][..12e12] Limit (:`1esn`{`8esn`:Count ( * ) =~Count(*)})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(`1esn` {_usn4:12.e12 Ends With 01 Ends With .e1})[Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8])] Unwind {@usn5:$`3esn`} Starts With .12 As `8esn`"), - octest:ct_string("Optional Match usn2=(:`8esn`{usn2:7 Contains 9e1})<-[_usn3?:`7esn`|`2esn` *010]-(#usn8 :`4esn`:#usn8)-[`8esn` *..0x0{#usn7:Count ( * )[Count ( * )..12e12][usn1..1000],`4esn`:010 Is Null Is Null}]->(@usn6 ) Where .e1 Starts With 0.0 Starts With `6esn` Detach Delete $999[12.0..] Union Optional Match #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))),_usn4=(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) Union All Optional Match `5esn`=(({`2esn`:123456789 Starts With `2esn` Starts With .0,@usn6:$123456789[$`2esn`][True]})-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})-[`4esn`?:`8esn`|:usn1 *..0x0]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}))"), - octest:ct_string("Unwind 0X0123456789ABCDEF Contains $usn1 As ``"), - octest:ct_string("Match `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Where 's_str'[12..'s_str'] Match _usn4=(@usn6 {#usn7:False[`2esn`..#usn8]})<-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]-(`4esn` {@usn6:True[..'s_str'][..01]}),`6esn`=(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]}) Where usn2[$`1esn`...0] Unwind $`1esn`[$usn2..][$1000..] As `3esn`"), - octest:ct_string("Merge @usn6=({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})-[#usn7:`1esn` *07..]->(:`7esn`{``:$`1esn` Starts With @usn6})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) On Match Set `7esn`+=9e0[``][123.654] Union With Filter(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[[1e1[0.0],0 Contains 12e12,$123456789[..0x0][..`4esn`]]] As `3esn`,False[`2esn`..#usn8],00 Is Null Is Null Order By {`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,0.12 In $7 In 0 Desc Skip 9e12[0.0..12.e12] Limit $usn1[.e12..`8esn`][True..$@usn5] Return Distinct *,None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`) Is Null As @usn6,123456789 =~_usn4 =~$0 As usn1 Delete All(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True])[..[`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|_usn3 In .e1 In $12]][..{`2esn`:$usn1[1e1.._usn3][$@usn6..$#usn7]}],0.0[12...12]"), - octest:ct_string("Detach Delete 0x0[$`3esn`],07 In $7 In 12 Union All Remove Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]|@usn6 Contains .e1 Contains $`4esn`).`4esn`!,@usn6:usn2:@usn6,None(`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]).`2esn`! Match usn2=(_usn3 :_usn3),usn1=((:_usn4:usn1{#usn8:$`7esn` Ends With `1esn` Ends With True})-[`7esn`?:usn1|`3esn` *123456789..999{`5esn`:.e1 In $@usn6 In 999}]-(usn2 :#usn8{`3esn`:123.654[@usn5]})) Where 0 Is Not Null Is Not Null Union Create ``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}),(`` :usn1)"), - octest:ct_string("Optional Match ((usn1 :`6esn`:`7esn`)),((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)) Where 07[..010][..12.0]"), - octest:ct_string("Unwind Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) In None(`6esn` In 0X7 =~`` Where 12.e12['s_str']) As `5esn` Union All Return Distinct *,$`3esn` =~Null As usn2 Skip Filter(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null) Ends With [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1] Ends With _usn3(Distinct $123456789 Ends With $`6esn`) Limit `3esn`(Distinct _usn4 Ends With 01 Ends With $`1esn`) Starts With [Count(*) In 01 In .0,`` Starts With 12,$_usn4[$`8esn`..][07..]] Starts With Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12 In $0 In Count(*)) Merge (_usn4 :#usn8)-[`1esn`?:`1esn` *01234567..12]-({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999})"), - octest:ct_string("Unwind 999 Contains `7esn` As `7esn` Union All Unwind usn2[..$`3esn`] As `6esn` Union All Delete [$1000 =~$`7esn`,.12 Starts With @usn5 Starts With $#usn8,0x0[...e12][..@usn5]] Ends With Single(@usn5 In .12[#usn7][$`8esn`]) Create @usn6=(`` :#usn7)<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})<-[`5esn`?:`6esn`]->(`6esn` :`6esn`:`7esn`{_usn4:\"d_str\"}),`6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)})"), - octest:ct_string("Unwind 1e1 In 9e0 In 9e0 As _usn4 Create ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})-[@usn6?:#usn7|:_usn4 *00..]->(`` :@usn5{#usn7:0X7[12]})) Merge `4esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}) On Create Set `3esn`+=(:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]),{`6esn`:$`8esn`[``..][123.654..],``:999[$`6esn`]}.`5esn`? =$_usn4[$`8esn`..][07..] On Create Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8]"), - octest:ct_string("Remove Single(usn1 In 00 Starts With _usn3 Where 07 Contains #usn8 Contains $_usn3).`6esn`,Extract(`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF])._usn3? With Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null As `5esn`,`7esn` Contains .0 Contains 9e12 As usn2 Skip .12 Is Null Limit Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Where True =~@usn5 =~$`1esn` Create (usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}) Union All Remove Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`).@usn6! Return Distinct *,01234567[$@usn6..0X7][$`1esn`..123.654],_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) As #usn8 Skip .e0[..0X0123456789ABCDEF][...e12] Detach Delete 12.e12 Contains $`5esn`,$usn1 In 1000 In $#usn7,12.0"), - octest:ct_string("Match `4esn`=(((`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[?{`4esn`:0.e0 Ends With 12 Ends With $7,@usn6:$``[_usn4..][`7esn`..]}]->(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]}))),((:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Remove Filter(usn1 In 00 Starts With _usn3 Where 12e12[Null]).`7esn`!,Filter(`4esn` In `6esn`['s_str'..][010..] Where 12e12[Count ( * )..][usn2..]).`2esn`! Union All Remove _usn3(Distinct $1000 Contains $`3esn`,7 Contains $`5esn` Contains $usn1).usn2?,{@usn5:0.e0[@usn6][0x0]}._usn4,_usn3:`4esn`:#usn8 Merge `8esn`=(({@usn6:$123456789 Is Null Is Null,@usn6:`6esn`[1.e1..$#usn7][.e0..True]})<-[`5esn`:usn1|`3esn` *010{`2esn`:`6esn` =~01234567 =~0Xa}]->(_usn4 :``)) Union All Remove (:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`2esn`]-(`6esn` :#usn7)-[_usn4?:`6esn`]-(@usn5 :`8esn`).`7esn`,`7esn`(usn2 Is Null Is Null,`6esn` =~$_usn3).`1esn`!"), - octest:ct_string("With Count(*) In 01 In .0,1000 Contains $#usn7 Contains `6esn` Skip (`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`})<-[ *0xabc{`1esn`:123.654 In \"d_str\" In $_usn3}]-({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0}) =~{#usn8:$@usn5[#usn8..][$`1esn`..]} =~{#usn8:0X0123456789ABCDEF[..usn1]} Limit $_usn3[..Count ( * )][..@usn5] Where $123456789 =~$`5esn` =~07 Optional Match `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) With `5esn` In $999 As `6esn` Order By [_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]][[.0 Starts With `2esn` Starts With `6esn`,9e1[0.e0..][#usn8..]]..][[07[$999],9e0 In 01234567,@usn5 In 0X0123456789ABCDEF]..] Asc,False Ends With $`8esn` Asc Where @usn5 Ends With $`3esn` Ends With 12e12 Union Unwind $`1esn` Is Null Is Null As `8esn` Remove `3esn`:#usn8,(`1esn` {@usn6:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,#usn8:\"d_str\" =~`3esn` =~0Xa})<-[#usn7]-({`5esn`:9e1 Starts With _usn3 Starts With `4esn`})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}).`5esn`!,[$`` Ends With 12e12,.12 Starts With .12 Starts With `3esn`,12.e12[0e0..7]].`5esn`? Unwind .e12 Starts With True As `8esn` Union All Return $`4esn`[12.e12..][0.0..],12[`7esn`...0][0.12..``] As @usn6,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Skip $`1esn` Ends With $`1esn`"), - octest:ct_string("Create `6esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Return Distinct .12[#usn7][$`8esn`],12 Ends With 07 Ends With @usn6 As usn1 Order By $999[..`1esn`] Ascending,Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending,[$`8esn` =~$usn2][Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..] Asc Remove ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`5esn`? *010]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null}).`7esn`! Union All Remove ``:#usn7 Union All Remove ({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}).@usn6?"), - octest:ct_string("Delete 01234567 Ends With 0x0,{@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7),None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`)[`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)..] Union All With Distinct 00 Ends With $_usn4 Ends With $`2esn` As `5esn` Order By $`8esn` In \"d_str\" In 9e12 Desc,`3esn`(.e0 =~`5esn`)[Single(`6esn` In 0X7 =~`` Where $`3esn` =~Null)][[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $_usn3[$`4esn`..Null]|False[`2esn`..#usn8]]] Asc,1e1 In 9e0 In 9e0 Ascending Unwind 00 Is Not Null Is Not Null As `` Optional Match ``=((_usn4 )-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})) Where 123456789 =~_usn4 =~$0 Union Create ((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` )),(({_usn3:$0 Ends With $#usn7 Ends With .12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[?:``|:_usn4 *..0X7]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}))"), - octest:ct_string("Return Distinct $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Limit 9e0 Starts With `6esn` Remove (usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})<-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null}).`4esn`!,{#usn8:9e1[0.e0..][#usn8..]}.``,Any(@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]).#usn8 Create _usn3=((:``{`5esn`:.e1 In $@usn6 In 999}))"), - octest:ct_string("Delete $123456789 =~$#usn8 =~$#usn8,Count(*)['s_str'..`1esn`],[@usn5 In 0X7 =~.0 =~\"d_str\"|#usn7 Starts With `1esn`][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn`[...e1][..\"d_str\"])..][`2esn`(Distinct 12e12[Null],0xabc[12.e12..`1esn`])..] Delete {`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[{`4esn`:$7 Ends With 12.0 Ends With 0xabc,_usn4:0X0123456789ABCDEF[.e0..$`4esn`]}..][Extract(`4esn` In `6esn`['s_str'..][010..] Where $999 Ends With $`3esn` Ends With `8esn`)..],`3esn`(Distinct 123456789 =~$123456789)[..(usn1 :`6esn`:`7esn`)-[`2esn`? *0..010]->(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]})][..(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})],Extract(`4esn` In `6esn`['s_str'..][010..] Where 07 In $7 In 12|$#usn8)[{`6esn`:12[usn1][True],`3esn`:$@usn6[..$usn1]}..][{`8esn`:00}..]"), - octest:ct_string("Unwind $12[`3esn`..0e0][`2esn`..$7] As usn2 Merge @usn5=({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)<-[?:usn2|#usn8{#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7}]-({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) On Create Set _usn3+=$@usn5 =~$`` =~$usn2,`6esn`+=`6esn`[1.e1..$#usn7][.e0..True],(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[`` *0xabc]->(`7esn` :#usn7{`6esn`:$`3esn` Contains 0X0123456789ABCDEF Contains 00,`1esn`:1000[123.654..9e12][1000.._usn3]}).``! =[@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Union All Merge `2esn`=(:`1esn`)<-[`2esn`?:usn2|#usn8{`6esn`:0X7[.e12..01234567],@usn6:`7esn`[...e1][..\"d_str\"]}]->(`5esn` :`8esn`{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}) On Match Set _usn3+=07 In Count ( * ) In \"d_str\" Match (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0) Remove (usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})._usn4?,usn1:`3esn`:`1esn`,{`2esn`:9e1 In 01 In 999,`5esn`:$@usn6[..$usn1]}.@usn5! Union All Merge (((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})<-[?:`7esn`|`2esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}]->(usn1 :#usn8)))"), - octest:ct_string("Optional Match (`8esn` :@usn5)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->(`6esn` :_usn4:usn1{`6esn`:00 In 12.e12}),(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})) Where `4esn` In $12 In `8esn` Union All Merge `1esn`=((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})) Remove Single(_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`).`6esn`?,(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})._usn4!,@usn5:`4esn`:#usn8 Merge (({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})<-[_usn3?:`2esn`|usn2{`3esn`:0[0.12..]}]->(:``{`1esn`:`6esn` =~$_usn3})) Union All With usn2 Is Not Null Is Not Null As `2esn`,False[`6esn`][07],0Xa[0xabc..] As usn2 Order By 9e1[0.e0..][#usn8..] Asc Skip #usn7 Is Not Null Is Not Null"), - octest:ct_string("Unwind 12[..0.0][..#usn7] As `8esn` Return Distinct *,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] As @usn6 Order By 010 Starts With `7esn` Starts With 9e1 Ascending,123456789 Is Null Descending,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] Desc Skip {#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null With Distinct \"d_str\",0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',$@usn5[01] Order By 01234567 Starts With $_usn4 Desc,0.12 Contains .e1 Ascending,0x0 =~_usn4 Descending Skip [usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]] Contains None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]) Contains Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) Union All Merge (:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) With `6esn`['s_str'..][010..],$`4esn` Contains 0Xa Where 0X0123456789ABCDEF In $1000 In $`3esn` Detach Delete Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1),$@usn5 =~07 =~True"), - octest:ct_string("Create (_usn4 :#usn8)-[`1esn`?:`1esn` *01234567..12]-({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}) Remove Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|Count(*)[.e0.._usn4]).`8esn`?,Single(#usn8 In $`5esn` Is Null Is Null Where .12[`1esn`..][$`3esn`..]).``!,count(Distinct `6esn` =~01234567 =~0Xa).`8esn`! Create (@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]}),(({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:``|:_usn4 *0Xa]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) Union All Create ``=(({`5esn`:0e0 =~_usn4})),((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})))"), - octest:ct_string("Match (((`7esn` :``)<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:usn1|`3esn`*]->(:_usn3{`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`}))) Remove (:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)}).usn1!,None(usn1 In 00 Starts With _usn3 Where 999 Contains `7esn`).`3esn`?,_usn3:usn1 Merge ((:`2esn`:`3esn`{`7esn`:$_usn4[#usn8..]})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)) Union All Merge usn1=((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})) On Create Set `8esn` =0.e0[9e0][0e0],_usn3 =0Xa[0xabc..$#usn8] Return 123456789 =~$123456789 Limit 07 =~`8esn` =~0 Union Unwind 's_str' In \"d_str\" In 123456789 As usn1 Remove {`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}.@usn5?"), - octest:ct_string("Detach Delete .e1[$_usn4][1e1],$usn1[_usn4..][usn2..],{@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null} Is Not Null Is Not Null Delete .12[`1esn`..],usn2 Starts With @usn6 Return Distinct *,usn2 =~0x0 As `8esn` Union All Detach Delete $`1esn` Ends With $`1esn` Merge ((`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})) Remove Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12).`6esn`! Union All Remove {`5esn`:`6esn` =~01234567 =~0Xa}.#usn7,(usn1 :#usn7)<-[@usn6?{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(:`2esn`:`3esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})._usn4,(#usn7 :`2esn`:`3esn`)-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})-[_usn3? *00..]-(`1esn` :`1esn`).`4esn`"), - octest:ct_string("With Distinct 9e12 Ends With 0X0123456789ABCDEF Ends With #usn7 As `8esn`,1000[123.654..9e12][1000.._usn3] As `6esn`,Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0} As `4esn` Where 7[..12e12][..$`6esn`] Optional Match `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Where `7esn` In 999 In @usn6"), - octest:ct_string("With 01234567[.12..7][1000..1.e1] As `5esn`,{`7esn`:Count(*) In 01 In .0}[..{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}][..#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..])] As `5esn` Skip [@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] Delete {#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null,Extract(`4esn` In $`8esn` Starts With 1000 Where False In `3esn`|$`3esn` =~Null) Create (({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) Union Unwind [usn1 In 1000 In $`5esn`][Extract(#usn8 In $`5esn` Is Null Is Null Where $usn2 Is Not Null|$_usn3 =~`7esn` =~$_usn4)] As `6esn` Detach Delete 01 In _usn3 In 12,`1esn`[`3esn`..][$@usn6..]"), - octest:ct_string("Detach Delete Count(*)[_usn3..Count ( * )],0X7 In $@usn5 In 9e0,01234567 Is Null Is Null Detach Delete 010 Starts With `7esn` Starts With 9e1 Union All Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..]"), - octest:ct_string("Return `7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As usn1 Order By #usn7 Contains 07 Descending,Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0]) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where Count(*)[True]) In Extract(`4esn` In 's_str'[12..'s_str'] Where 0xabc Ends With $#usn7 Ends With #usn8|.e1 Starts With 0.0 Starts With `6esn`) Asc,[$12 Is Null Is Null,999 Contains Count ( * ) Contains 123.654][Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`)..Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0)][[Null Contains _usn4,$`7esn` Is Null Is Null]..({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3})] Desc With *,$`1esn` Ends With _usn4 Ends With `3esn` As `7esn`,({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] As @usn6 Order By $999 Ends With $`3esn` Ends With `8esn` Asc Skip $0[..07] Where $@usn5 In 12e12 In Count(*) Union Create @usn6=(({_usn3:$0 Ends With $#usn7 Ends With .12})-[@usn6?:#usn7|:_usn4 *00..]->(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})),(usn1 :_usn3{@usn6:True[..'s_str'][..01]})<-[`7esn` *..0x0]->(:`8esn`{usn2:7 Contains 9e1}) Detach Delete $`7esn` In 0.e0 In `4esn` With @usn6 =~01,12.0 In 1000 In _usn4 As _usn3,0 =~12.e12 =~$`` As #usn7 Order By All(@usn5 In $#usn8 Is Null Is Null Where 's_str'[..0.0][..$`4esn`]) Is Null Is Null Descending Skip None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]) Ends With None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With @usn6($123456789[0.0..]) Union Return $`6esn`[..0X0123456789ABCDEF],`1esn`[9e12..$`8esn`][usn2..$``] As #usn8,[#usn8 In $`5esn` Is Null Is Null][Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where #usn7[..$1000][..01])..][[@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]]..] As #usn7 Limit 9e12[0.0..12.e12] Create @usn6=({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567}),`7esn`=((:@usn6:`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[`6esn`:@usn5|`8esn` *12..0xabc]-(`` :@usn5)-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}))"), - octest:ct_string("Remove _usn3(Distinct 010[@usn5..]).`4esn` Union All Unwind @usn6 =~01 As `8esn` Unwind 999 In 12 In \"d_str\" As #usn8"), - octest:ct_string("Detach Delete Count ( * ) In 010,$123456789 Is Null Is Null,$1000 Starts With .0 Starts With 0.0 With 's_str'[..0.0][..$`4esn`] As `2esn`,#usn7 Contains .0 Contains .e1,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Skip `6esn` Starts With $usn2 Starts With 0.0 Limit 9e1 Contains $`3esn` Contains 01234567 Where True Starts With $`8esn` Starts With \"d_str\" Union Remove Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`).`5esn`? Union All Return $usn2[12..$`7esn`][$0..$`7esn`],0x0 Contains _usn4 Contains 123456789 As `7esn`,9e12 Ends With 0X0123456789ABCDEF Ends With #usn7 As `5esn` Order By 01234567 Ends With 12.0 Ends With 0X7 Ascending,12e12 Ends With 010 Ends With .0 Asc Limit count(Distinct 's_str' Starts With 1000 Starts With #usn8,12e12 Starts With $123456789 Starts With 12.0)[[_usn4 In usn1 Contains False Contains `` Where $#usn8]][[$`1esn` Is Null,\"d_str\" =~`6esn` =~0Xa,$usn2[0e0..]]] With 7[$`4esn`..123456789] As `2esn` Limit 1000 Ends With 1000 Ends With $`4esn` Where $usn2[..12.0] Detach Delete $123456789 =~$0 =~$`3esn`,$0 Contains `7esn` Contains $`8esn`,9e0[False]"), - octest:ct_string("Return Distinct Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1),9e1[010..] As `6esn` Order By $1000 Contains $`3esn` Desc,(`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Ascending,[$`3esn` Starts With 01234567 Starts With $1000] Starts With `4esn` Starts With [$`2esn`[..7][..$usn1]] Desc Skip $`7esn` =~.e1 Create (_usn4 :@usn6:`7esn`)<-[#usn8?:_usn4|:@usn5 *..0x0]-(`6esn` :#usn7{`5esn`:#usn7 Is Not Null Is Not Null})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) Return Distinct *,None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`) Is Null As @usn6,123456789 =~_usn4 =~$0 As usn1 Union With Distinct `` Is Not Null Is Not Null As @usn6,`5esn`[`1esn`..`1esn`],[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4 Order By Count(*) Is Null Descending,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0] Ends With [`4esn` In 's_str'[12..'s_str'] Where 0.12 In 01 In $`3esn`|9e0 =~$`5esn`] Ascending,[0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] Asc Skip 1000 Contains 123456789 Contains 1e1 Limit $`6esn`[`3esn`..0e0] With Distinct .e0[`4esn`..`4esn`][0.0..$0] As `7esn` Order By None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) Descending,01234567[.12..7][1000..1.e1] Ascending Where #usn7[..$1000][..01] Delete [$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)})"), - octest:ct_string("Merge `4esn`=({`8esn`:0X7 In 's_str' In $`1esn`}) On Match Set usn2+=.e1 Ends With _usn4 Ends With @usn5,@usn5+=_usn3 In .e1 In $12,Extract(`4esn` In `6esn`[1e1..] Where $`7esn` Ends With `1esn` Ends With True).`` =010 In @usn6 On Match Set usn1 =Count ( * ) =~All(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7) With Distinct {#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Order By usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Ascending,`` Asc,$999 In $`8esn` In `5esn` Descending Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit `4esn` Is Null Optional Match @usn5=((:#usn8$usn1)-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})),((#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})) Union Match `5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Where $`2esn` Contains usn1 Contains `2esn` Unwind 12e12[0.e0][9e1] As usn2 Union All With Distinct *,usn2 Is Not Null Is Not Null As `2esn` Skip $1000 Ends With 1e1 Ends With 123.654 Limit {#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Where $0 Remove Extract(`4esn` In 's_str'[12..'s_str'] Where 12.0[0Xa][00]).@usn5,{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]}.`3esn`!"), - octest:ct_string("With usn1 Is Null Is Null As ``,.12 Is Null Where False[0Xa..$@usn5][$`6esn`..12e12] Merge (((:_usn4:usn1)-[@usn5?:@usn6*..]-(`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:@usn6]-(_usn3 :`4esn`:#usn8{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]}))) On Match Set `5esn` =999[.e12][01],Extract(usn1 In 0x0[..`4esn`] Where @usn6[$`3esn`]).#usn8? =`1esn` In 999 In $#usn7,usn1 =12.e12[0e0..7] Union All Optional Match ((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})),((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})) Union With $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Order By $12[01..][1.e1..] Descending Skip .12[.e12..0.e0][0.e0..$`2esn`] Where $_usn4[12e12][`4esn`] Merge `1esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[? *999..]-(`` :`1esn`) On Create Set usn2 =0.0[..12e12][..$0] Merge `2esn`=(_usn4 {`8esn`:9e1 In 01 In 999})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`) On Match Set @usn5+=`1esn`[9e12..$`8esn`][usn2..$``],usn1 =[12.e12 Ends With 01 Ends With .e1,$@usn5[0.12..][@usn5..],$usn1 In 1000 In $#usn7] Is Not Null On Match Set _usn4 =0 Contains 12e12,`1esn`:#usn8,`7esn` =0 Is Not Null"), - octest:ct_string("Create ({`2esn`:123456789 Starts With `2esn` Starts With .0,@usn6:$123456789[$`2esn`][True]}) Unwind [_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]] Ends With [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]] As `1esn` Create `1esn`=(`3esn` {``:.e0[7..$`3esn`]})"), - octest:ct_string("With Distinct *,count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null As `6esn`,{#usn8:$`5esn` In False,usn2:$`7esn` In $7} Starts With Filter(usn2 In 1000 Contains 0.e0 Where `2esn`[$`3esn`..]) Starts With All(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`) As `` Skip 01234567[$`7esn`][_usn3] Unwind `4esn` =~$`3esn` =~$123456789 As #usn7 Unwind $1000 In $`7esn` In $7 As usn1 Union All Delete 0e0[12][$_usn4]"), - octest:ct_string("Merge #usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) On Create Set `4esn` =.12 Is Not Null Is Not Null,{@usn6:True[..'s_str'][..01]}.`2esn` =12.e12[...0][..0x0],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Remove [_usn4 Starts With $@usn6 Starts With #usn7].`4esn`,usn2(Distinct usn2[`3esn`][_usn3]).@usn5? Union Delete `6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),$@usn6[..$#usn7][..12.e12],.e0[`4esn`..`4esn`][0.0..$0] Delete 12.e12 In $1000,{_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]},$999 Ends With $`3esn` Ends With `8esn` Union All Return {`8esn`:$123456789 Is Null Is Null,_usn3:$`4esn` Starts With 1e1}[(#usn7 :`2esn`:`3esn`)<-[`8esn`?]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})..All(_usn4 In usn1 Contains False Contains `` Where $`8esn`[$``..$7][$1000..$`7esn`])] As `5esn`,`6esn`(00 In 1e1) Starts With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Starts With Extract(#usn8 In $`5esn` Is Null Is Null Where $usn2 Is Not Null)"), - octest:ct_string("Detach Delete False[0Xa..$@usn5][$`6esn`..12e12] With Distinct `2esn` Contains $999 As #usn7,$123456789[False.._usn3] As `1esn` Order By [@usn6 In @usn5 In $`6esn` Where $999[$1000]|$7[.12]] In {`1esn`:$@usn6 Contains 07 Contains 0.e0} In (`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) Ascending,00[.e1..] Desc Skip 9e1[.12..] Match ((`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`)<-[ *0X0123456789ABCDEF..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]->(_usn3 :_usn3)),``=((`6esn` :`7esn`)) Where $`1esn` Starts With @usn6"), - octest:ct_string("Return Distinct $_usn3[9e1][$_usn4],None(usn2 In 1000 Contains 0.e0 Where $`6esn`[Count(*)..0.e0][0.0..Count ( * )])[(:usn2:@usn6{@usn6:$`4esn`[$`2esn`..]})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})][Any(@usn6 In @usn5 In $`6esn` Where 12.0[0Xa][00])] As `5esn`,0X0123456789ABCDEF Contains 12.e12 Contains 999 Limit $@usn6 In $`5esn` In $usn2 With \"d_str\" =~`6esn` =~0Xa,.e1[usn1..] As `6esn` Union All Create `6esn`=((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})) With Distinct *,`7esn` In 999 In @usn6,00 Is Null Is Null Order By None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`)[`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)..] Desc,$`3esn` In $12 In 's_str' Asc Skip $123456789 Is Null Is Null Limit .e0 =~`5esn` Unwind $usn2[False..`7esn`][`7esn`.._usn3] As _usn4"), - octest:ct_string("Merge #usn8=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) On Create Set `5esn`+=0 Starts With `6esn` Starts With 0X0123456789ABCDEF,`4esn`+=$`7esn` Ends With $usn2,[usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null].@usn5! =$1000 Ends With 1e1 Ends With 123.654 On Match Set [`6esn` In 0X7 =~`` Where $`3esn` =~Null|1.e1[0X0123456789ABCDEF..][$`5esn`..]]._usn3? =Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null)[count(Distinct 0.12 Contains $12 Contains `8esn`)..[$`1esn` Is Null Is Null,9e1 In 01 In 999]],`1esn`+=None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]) Ends With None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With @usn6($123456789[0.0..]),(_usn4 {#usn7:False[`2esn`..#usn8],#usn8:`5esn`[`1esn`..`1esn`]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]}).`3esn` =01234567[$@usn6..0X7][$`1esn`..123.654] Remove [`6esn`[1e1..]].@usn6!,[$_usn3[..Count ( * )][..@usn5]].@usn6! Union All Remove {`4esn`:.12 Starts With 0Xa}.usn1!,[`6esn` In 0X7 =~`` Where 123456789 =~_usn4 =~$0|$#usn8 Ends With 1000 Ends With .0].`7esn`? Remove (:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[?:`1esn`]-(_usn4 :@usn6:`7esn`{@usn5:$_usn3[$`4esn`..Null]})._usn3! Union All Optional Match ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})) Merge (`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) On Match Set [@usn5 In 0X7 =~.0 =~\"d_str\" Where 12.e12 Ends With 01 Ends With .e1|00 Starts With _usn3].`2esn`? =None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`)[`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)..]"), - octest:ct_string("Merge `5esn`=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))) On Match Set _usn3+=07 In Count ( * ) In \"d_str\" Union All Unwind 010 In @usn6 As usn2 Union Merge `5esn`=(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}) Merge (#usn7 :`6esn`:`7esn`)<-[`3esn`?:_usn3|:`4esn`]->(:`1esn`{_usn4:$_usn3[Null]})-[ *..0X7]->(`5esn` :_usn4:usn1) On Match Set `1esn`+=Single(`4esn` In `6esn`['s_str'..][010..] Where 12.0 Contains 0.e0)[..Any(`4esn` In 's_str'[12..'s_str'] Where Count(*)[`7esn`..$12])][..Extract(@usn5 In .12[#usn7][$`8esn`] Where 01234567 =~usn1)],({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})<-[`7esn` *..0x0]->(`5esn` {`5esn`:$`5esn`[False]})-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->(`4esn` {`7esn`:.e0[..999][..0X7]}).usn2 =`8esn`[$#usn7],`1esn`+=$1000[01234567]"), - octest:ct_string("Remove None(usn1 In 0x0[..`4esn`] Where $usn1[0.12..]['s_str'..]).@usn6?,Any(usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null).``?,[`6esn` In 0X7 =~`` Where 123456789 =~_usn4 =~$0]._usn3! Union Optional Match _usn3=((:`7esn`{`2esn`:0Xa In .e1 In Count(*),`8esn`:.12[`1esn`..][$`3esn`..]})<-[@usn5?:_usn3|:`4esn` *..0x0]->(#usn8 {usn2:7 Contains 9e1})) Create ({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[ *..0x0]->(#usn8 {usn2:7 Contains 9e1}) Union All Return *,1.e1[Null][12.e12] As ``,Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) As _usn3 Order By 0.e0[`6esn`...e0][9e12...e12] Descending,_usn3 In .e1 In $12 Asc Skip [$`4esn`[9e1..][0..]][Any(`4esn` In $`8esn` Starts With 1000 Where 0.e0[9e1..][0.0..])..Single(#usn8 In $`5esn` Is Null Is Null Where 1000 Ends With 1000 Ends With $`4esn`)] Limit 123456789 =~_usn4 =~$0 With Distinct *,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Limit Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]})"), - octest:ct_string("Detach Delete usn1 Is Not Null Is Not Null,[$`4esn`[9e1..][0..]][Any(`4esn` In $`8esn` Starts With 1000 Where 0.e0[9e1..][0.0..])..Single(#usn8 In $`5esn` Is Null Is Null Where 1000 Ends With 1000 Ends With $`4esn`)],#usn8 Ends With `4esn` Ends With $`4esn` Optional Match ``=((`6esn` :`7esn`)) Union All Merge `5esn`=((`2esn` :usn2:@usn6)-[usn1?{`7esn`:$`2esn` Starts With .e0 Starts With 12.0}]-(`5esn` {`5esn`:$`5esn`[False]})) Optional Match ((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})),(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union All Unwind $`5esn`[False] As `6esn` Return *,$0[7..][Null..] As `7esn`,`3esn`()[Filter(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`)..{@usn6:`6esn`[_usn4..][$`6esn`..]}] Order By (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Asc,.e1[..$``][..0X0123456789ABCDEF] Ascending Skip 01[..$``][..$`7esn`] Merge `3esn`=(({`5esn`:0.12 Contains .e1})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0})-[:@usn5|`8esn` *123456789..999{usn1:9e12 Is Not Null Is Not Null}]-(#usn7 :`5esn`)) On Match Set @usn5+=`` In `6esn`,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`` Is Null Is Null).`` =12.e12 Is Not Null On Match Set `` =None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..],#usn7($`8esn`[$``..$7][$1000..$`7esn`],`2esn` In 7 In usn2).`6esn`? =$_usn4['s_str'..],`4esn`+=$`7esn` Ends With $usn2"), - octest:ct_string("Return *,usn1[Count ( * )..$usn1] As usn1,$`2esn` =~'s_str' As @usn5 Union All Create (((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))),(@usn6 {`4esn`:$`2esn`[..`2esn`]})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})"), - octest:ct_string("Remove Extract(usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01).#usn8 Delete usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`]) Is Null,$999[..`1esn`],$_usn4[$`4esn`..$#usn7][`6esn`..7]"), - octest:ct_string("Create (((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0)))"), - octest:ct_string("Delete 's_str' Ends With .e0 Remove Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|@usn6[..0xabc][..$#usn7])._usn3,Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null).``!"), - octest:ct_string("Unwind Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As usn2 With Distinct $999[$1000] As `4esn`,[`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Limit {`8esn`:@usn5[..True][..0X7],`1esn`:`1esn` Contains Count ( * )}[{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)] Where $_usn4[12e12][`4esn`] Union All Unwind $_usn4[`3esn`][0] As _usn4 Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) Create (((`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})<-[?:`7esn`|`2esn`]-(:`6esn`:`7esn`{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})))"), - octest:ct_string("Delete {_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]} Ends With Extract(`4esn` In $`8esn` Starts With 1000 Where `6esn`['s_str'..][010..]|12.e12[@usn5..123.654]) Ends With [$`5esn` Is Not Null,0e0 Is Null Is Null] Create _usn4=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),(((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})-[?*..{`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}]-(`` :`3esn`:`1esn`{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-({usn1:010[@usn5..],`7esn`:`2esn` Is Not Null Is Not Null}))) Match ({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})-[#usn7:`1esn` *07..]->(:`7esn`{``:$`1esn` Starts With @usn6})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) Where 9e12 =~01 =~$`7esn`"), - octest:ct_string("Return [0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] As `5esn`,(#usn7 :#usn8)-[`6esn`:`4esn`|:`7esn` *..0x0]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})[Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])][Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])],#usn8 Is Not Null Is Not Null Limit None(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`) Contains `3esn`($usn2 Contains 12.e12 Contains 00) Union Return *,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7,@usn6 Starts With `7esn` Starts With Null Merge `1esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) On Create Set Extract(`4esn` In `6esn`['s_str'..][010..] Where 01 Ends With .e0|00[7..$123456789]).usn1? =usn2[`3esn`][_usn3],usn2+=[usn1[..@usn5][...e0]] In Extract(`6esn` In 0X7 =~`` Where $1000 Contains $`3esn`|12 Ends With 01234567) In {`3esn`:$`5esn` In `2esn` In .0,``:0e0 Is Null Is Null} On Create Set usn1+=`4esn` Ends With 123456789 Ends With @usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`! =\"d_str\" =~`3esn` =~0Xa,Any(_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0)._usn3 =`` =~12 =~$#usn7 With *,$usn2[..12.0],$`2esn`[``..] As `3esn` Skip _usn3[.0] Where 0.0[999..] Union All Unwind usn2 Is Not Null Is Not Null As `4esn`"), - octest:ct_string("Match (((:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]})<-[? *..0x0]->(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})-[? *..0X7{`3esn`:`8esn`[$``]}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}))) Where True[`4esn`][$`6esn`] Unwind 9e12 =~01 =~$`7esn` As usn1 Union Create #usn7=(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))),`5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})"), - octest:ct_string("Remove Single(usn1 In $123456789 Contains usn2 Where 9e12[0.0..12.e12]).`4esn`!,(_usn4 )<-[#usn7? *00..]->(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`).``! With *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `3esn`,07[$999] As `` Where 9e0[$_usn3..0X7][7..$#usn8] Remove (:``{#usn8:$`2esn`[..`2esn`]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]}).`5esn`,(@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}).`4esn`"), - octest:ct_string("Optional Match `2esn`=(`` :usn2:@usn6)<-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`7esn` :`4esn`:#usn8{`2esn`:Count(*)[..`3esn`]}),(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})-[`4esn`:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]-(_usn3 :``)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->({`1esn`:0.0[1000..][.e1..]}) Where $`7esn` Ends With $`2esn` Ends With $usn1 Unwind @usn6 =~01 As `8esn` Return *,0.12[Count(*)..],$@usn5 =~$`` =~$usn2 As #usn8 Order By Single(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`) Is Null Desc Skip Single(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7])[None(`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789])..@usn6(Distinct True =~@usn5 =~$`1esn`,.12 Starts With $usn2)]"), - octest:ct_string("Remove [$123456789 Is Null Is Null,usn1 Contains $``,$123456789 Ends With .e1]._usn4! With Distinct `` Is Not Null Is Not Null As @usn6,`5esn`[`1esn`..`1esn`],[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4 Order By Count(*) Is Null Descending,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0] Ends With [`4esn` In 's_str'[12..'s_str'] Where 0.12 In 01 In $`3esn`|9e0 =~$`5esn`] Ascending,[0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] Asc Skip 1000 Contains 123456789 Contains 1e1 Limit $`6esn`[`3esn`..0e0]"), - octest:ct_string("Remove [12e12 Starts With $123456789 Starts With 12.0].usn1 Delete `8esn`[$``]"), - octest:ct_string("Create `5esn`=(({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})),(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]}) Match `5esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)),#usn8=({_usn3:12.e12 In $0 In Count(*)})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}) Where `` Starts With @usn5"), - octest:ct_string("With 1000[123.654..9e12][1000.._usn3],count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null,$123456789 =~$#usn8 =~$#usn8 Order By $usn2 Is Not Null Is Not Null Ascending,Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Ascending Where $_usn3[Null] Return 00 Ends With $_usn4 Ends With $`2esn` As `5esn` Order By $`8esn` In \"d_str\" In 9e12 Desc,`3esn`(.e0 =~`5esn`)[Single(`6esn` In 0X7 =~`` Where $`3esn` =~Null)][[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $_usn3[$`4esn`..Null]|False[`2esn`..#usn8]]] Asc,1e1 In 9e0 In 9e0 Ascending Union Merge `5esn`=(({_usn3:12.e12 In $0 In Count(*)})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(`2esn` :``)-[:_usn4|:@usn5 *0xabc]-({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})) On Match Set `7esn` ={`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)],@usn6 =`5esn` In $999 On Create Set (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 =123.654 Contains `2esn`,`3esn` =Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`),{`6esn`:$_usn4[$`8esn`..][07..]}.@usn6! =`5esn`[.e1][0Xa] Union With Distinct `5esn` In $999 As `6esn` Order By [_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]][[.0 Starts With `2esn` Starts With `6esn`,9e1[0.e0..][#usn8..]]..][[07[$999],9e0 In 01234567,@usn5 In 0X0123456789ABCDEF]..] Asc,False Ends With $`8esn` Asc Where _usn4[$`4esn`..]"), - octest:ct_string("Return *,`4esn` Is Null Order By `5esn` In $999 Descending Limit `3esn` =~$`5esn` =~12 Merge #usn8=(({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({_usn3:$`1esn` Starts With @usn6})) On Match Set (usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`],`2esn` ={@usn5:$`3esn`} Starts With .12 Unwind $`4esn` Starts With 1e1 As usn2 Union All Match `5esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Where 0 Ends With $7 Ends With _usn3 Union All Create (usn2 :#usn7),#usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})))"), - octest:ct_string("Remove {@usn6:True[..'s_str'][..01]}.#usn7!,(_usn4 {#usn7:False[`2esn`..#usn8],#usn8:`5esn`[`1esn`..`1esn`]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]}).`3esn` Unwind `1esn`(Distinct 0.0[999..],9e0 Ends With $`7esn`) Ends With (`7esn` {`8esn`:Count ( * ) =~Count(*)})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}) Ends With (#usn7 :`2esn`:`3esn`)<-[`2esn`?*..]->(:#usn8{`5esn`:0 Contains 12e12}) As usn1 With 1000 Contains $#usn7 Contains `6esn`,All(@usn5 In $#usn8 Is Null Is Null Where 's_str'[..0.0][..$`4esn`]) Is Null Is Null Order By $123456789 Ends With .e1 Ascending Skip $`3esn` Contains 0X0123456789ABCDEF Contains 00 Limit $_usn3 =~$`3esn` =~0x0 Where $usn2[..12.0]"), - octest:ct_string("Merge `6esn`=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) On Match Set `8esn` =All(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..]) Is Null Is Null,Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)._usn3? =\"d_str\"[Count ( * )] Remove [.12 Starts With .12 Starts With `3esn`,Count ( * )[Count ( * )..12e12][usn1..1000],False In `3esn`].#usn7,{usn1:$1000 Contains $`3esn`}.#usn8!,None(`4esn` In $`8esn` Starts With 1000 Where True Starts With $`8esn` Starts With \"d_str\").`4esn`! Union All Remove _usn3(Distinct $1000 Contains $`3esn`,7 Contains $`5esn` Contains $usn1).usn2?,{@usn5:0.e0[@usn6][0x0]}._usn4,_usn3:`4esn`:#usn8 Merge `8esn`=(({@usn6:$123456789 Is Null Is Null,@usn6:`6esn`[1.e1..$#usn7][.e0..True]})<-[`5esn`:usn1|`3esn` *010{`2esn`:`6esn` =~01234567 =~0Xa}]->(_usn4 :``)) Union All Match (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0) With *,12.0[``] As @usn6 Order By \"d_str\" =~`3esn` =~0Xa Desc,_usn3[0] Desc,`5esn` Ends With .e1 Ends With $_usn4 Asc Unwind @usn6 Contains _usn4 Contains $`4esn` As `4esn`"), - octest:ct_string("Return *,Single(_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0) Starts With Any(@usn6 In @usn5 In $`6esn` Where $`5esn` Contains Count(*) Contains #usn7) Starts With Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where .12 Ends With `1esn` Ends With $`1esn`) As `5esn`,Count ( * )[..999] As `6esn` Limit 12.0 =~#usn7 =~$usn2"), - octest:ct_string("Detach Delete $999[..`1esn`],$usn2[$123456789..123.654][$`5esn`..'s_str'] Return 00 Ends With $_usn4 Ends With $`2esn` As `5esn` Order By $`8esn` In \"d_str\" In 9e12 Desc,`3esn`(.e0 =~`5esn`)[Single(`6esn` In 0X7 =~`` Where $`3esn` =~Null)][[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $_usn3[$`4esn`..Null]|False[`2esn`..#usn8]]] Asc,1e1 In 9e0 In 9e0 Ascending Union All Merge `4esn`=((#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) On Match Set {`8esn`:`8esn` In $@usn5}.`3esn`! =$@usn5[#usn8..][$`1esn`..],All(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $@usn6 Is Null Is Null).`1esn`! =$12[..``][..$7] On Create Set usn2 =_usn3 Is Not Null Is Not Null,`4esn` =.e1 Starts With $`8esn` Union Match _usn4=(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(@usn6 ) Detach Delete 0x0 Is Not Null Is Not Null"), - octest:ct_string("Merge (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Merge ((`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) Remove Single(`4esn` In $`8esn` Starts With 1000 Where `6esn`['s_str'..][010..]).@usn5,(usn2 :`3esn`:`1esn`)-[ *..7]-(usn1 :`4esn`:#usn8)-[?:`3esn`|:`4esn`]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`3esn`,(:`1esn`{_usn4:$_usn3[Null]})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]-(`2esn` :#usn7)-[:usn2|#usn8 *01234567..12]-(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})._usn3 Union Unwind Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] As `2esn` Merge `4esn`=(:`5esn`{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(_usn4 )"), - octest:ct_string("Optional Match usn2=((`1esn` :usn2:@usn6)-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})) With Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1),9e1[010..] As `6esn` Order By [`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) Desc,`1esn`[`3esn`..][$@usn6..] Desc,123456789[1000] Desc Where 0X7 In 's_str' In $`1esn` Return Distinct $`1esn` Starts With $999 As #usn8,Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)[{#usn8:`5esn` =~0Xa,@usn5:0X7[999][$1000]}..[`` Starts With 12,$`1esn` Starts With $999]][`7esn`(Distinct $usn2[..12.0])..`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])] Order By 9e1 Is Not Null Is Not Null Asc,$usn2[$123456789..123.654][$`5esn`..'s_str'] Desc Union Match `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Remove All(#usn8 In $`5esn` Is Null Is Null Where 01234567 Ends With 12.0 Ends With 0X7).`8esn`! Optional Match `8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`}) Where 123456789 Starts With `2esn` Starts With .0 Union All With [$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] Order By .e12 =~0.0 =~9e0 Desc,010 =~$usn2 =~1e1 Desc,#usn8(0X7 In 's_str' In $`1esn`,$0 Is Not Null)[usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])] Descending Where .0 Is Null Is Null Detach Delete 0xabc Contains Null Contains 9e12,.12 Starts With 0Xa,`6esn` In 1000 In 01234567"), - octest:ct_string("With 010[@usn5..],0x0 =~_usn4 As `8esn` Limit `8esn` Ends With 0X0123456789ABCDEF Ends With `1esn` Where 010[$@usn6] Merge `1esn`=(((`2esn` :_usn3{`5esn`:12.e12[$1000..],`4esn`:'s_str'[..0.0][..$`4esn`]})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})-[usn1?:`1esn` *0X0123456789ABCDEF..{usn2:$`4esn`[12.e12..][0.0..]}]-(:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]}))) On Match Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..] Optional Match ((@usn6 :#usn7{@usn5:Null Is Null Is Null})),_usn4=(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Where 0x0 Starts With $`7esn` Starts With `2esn` Union All Detach Delete usn2 Ends With $`5esn` Ends With `2esn`,$123456789 Is Null Is Null,Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Unwind 0x0[$`3esn`] As _usn4 Union All Merge (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0)"), - octest:ct_string("Remove Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``]).`4esn`!,count(Distinct $#usn8,False Is Not Null Is Not Null)._usn3?,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn` Starts With $`` Starts With $#usn7).`3esn`? Union Merge `1esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) On Create Set Extract(`4esn` In `6esn`['s_str'..][010..] Where 01 Ends With .e0|00[7..$123456789]).usn1? =usn2[`3esn`][_usn3],usn2+=[usn1[..@usn5][...e0]] In Extract(`6esn` In 0X7 =~`` Where $1000 Contains $`3esn`|12 Ends With 01234567) In {`3esn`:$`5esn` In `2esn` In .0,``:0e0 Is Null Is Null} On Create Set usn1+=`4esn` Ends With 123456789 Ends With @usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`! =\"d_str\" =~`3esn` =~0Xa,Any(_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0)._usn3 =`` =~12 =~$#usn7 Detach Delete $_usn3 =~`7esn` =~$_usn4,`7esn` Starts With $`` Starts With $#usn7,$0 =~`3esn` Return Distinct $_usn3[$`4esn`..Null] Skip 123456789 Starts With `2esn` Starts With .0"), - octest:ct_string("Optional Match ``=((`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(usn1 :_usn3)),(((`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`5esn`)<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 ))) Unwind 12[0X7..@usn6] As `` With Distinct *,9e12[_usn3] As `8esn`,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn` Order By `6esn` Starts With $`5esn` Desc,$`7esn` Ends With 07 Ends With 07 Desc Where 's_str'['s_str'..$usn2][_usn3.._usn3] Union All Remove All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null).@usn5,`8esn`:_usn3,#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..]).`7esn`! Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..] Union All Remove [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0].`3esn`,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``! Merge `1esn`=(((`2esn` :_usn3{`5esn`:12.e12[$1000..],`4esn`:'s_str'[..0.0][..$`4esn`]})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})-[usn1?:`1esn` *0X0123456789ABCDEF..{usn2:$`4esn`[12.e12..][0.0..]}]-(:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]}))) On Match Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..] With 's_str'[12..'s_str'] Limit #usn7 Starts With 0x0 Starts With Null Where 1e1[`6esn`..]"), - octest:ct_string("Unwind Extract(`6esn` In 0X7 =~`` Where $_usn3[9e1][$_usn4]|@usn6[..0xabc][..$#usn7])[[@usn6 In @usn5 In $`6esn` Where $@usn5 In 12e12 In Count(*)|999[$`6esn`]]..Any(_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`)][{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`],usn2:@usn6[`3esn`..][$7..]}..`7esn`($123456789 Ends With $`6esn`)] As _usn4 Merge `8esn`=(({_usn3:$0 Ends With $#usn7 Ends With .12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[?:``|:_usn4 *..0X7]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})) Union Remove (`3esn` :#usn8{#usn8:$_usn4[$`8esn`..][07..]})<-[`2esn` *12..0xabc{`6esn`:$123456789[0.0..],@usn5:999[$`6esn`]}]-({@usn6:9e1 Contains $`3esn` Contains 01234567,@usn6:.e12[.12..][_usn4..]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}).`6esn`,#usn7:#usn8,{#usn7:0Xa[..$``],`1esn`:usn2 Is Not Null}.usn1? Union Delete usn1 Contains \"d_str\" Contains 9e12"), - octest:ct_string("Unwind `1esn`[12.e12][01] As _usn3 Create (@usn5 {@usn6:$123456789[0X7..12.e12]})"), - octest:ct_string("Create usn1=((:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[#usn8? *0xabc]-(#usn8 :`4esn`:#usn8)),#usn7=(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))) Union With 0.12[Count(*)..] Order By .0 Is Null Is Null Ascending,`1esn`(Distinct $@usn5[#usn8..][$`1esn`..],#usn7 Ends With `4esn` Ends With @usn5)[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|usn1[Count ( * )..$usn1]]][{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}] Asc Skip 0 Contains 12e12"), - octest:ct_string("Delete 0.12 =~9e0,12.0[0Xa][00] With {_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] As `1esn` Order By 0 Is Not Null Descending Skip 0x0 Where 123456789 Starts With #usn7 Starts With `6esn` Optional Match `8esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Union All Create `1esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) Return Distinct 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Order By [@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0] Is Null Descending Skip #usn8 Is Not Null Create ((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6)) Union Remove Any(usn1 In 00 Starts With _usn3 Where `6esn`[1e1..]).`3esn`!,Any(usn2 In 1000 Contains 0.e0 Where _usn4[0xabc..]).@usn5?"), - octest:ct_string("Remove {`8esn`:Count ( * ) =~Count(*)}.`6esn`,({@usn6:0X0123456789ABCDEF[..usn1]})<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)._usn4?,(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`4esn` Union All Detach Delete .e1 Starts With $`8esn`,`6esn` Is Not Null"), - octest:ct_string("Optional Match ((#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)-[`6esn`:``|:_usn4 *..01]->(`5esn` :#usn7)) Return .e12[.12..][_usn4..] As _usn4 Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Merge (@usn6 )<-[? *12..0xabc]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})<-[``? *12..0xabc]-(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1}) Union All With Distinct *,$@usn6 =~usn1 As `1esn` Skip $_usn4[$`1esn`] Limit $1000 In $`7esn` In $7 Where 9e0 In 01234567"), - octest:ct_string("Remove @usn5:_usn4:usn1,(:_usn4:usn1)-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]-(`1esn` :`1esn`).`1esn`!"), - octest:ct_string("Match ((`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`)<-[ *0X0123456789ABCDEF..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]->(_usn3 :_usn3)),``=((`6esn` :`7esn`)) Where $`1esn` Starts With @usn6 Union Remove All(@usn5 In $#usn8 Is Null Is Null Where 7 In 0xabc).#usn7?,({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[`2esn`? *0..010]->(usn2 {usn1:0 Is Null Is Null,`8esn`:12.0[..$7][..999]})<-[#usn8:`3esn`|:`4esn` *0..010]->(`3esn` :usn2:@usn6).`4esn`! Merge `4esn`=(_usn4 :#usn8)-[`1esn`?:`1esn` *01234567..12]-({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}) On Create Set ``+={usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null,@usn5+=usn1[..@usn5][...e0],`2esn`+=All(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True])[..[`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|_usn3 In .e1 In $12]][..{`2esn`:$usn1[1e1.._usn3][$@usn6..$#usn7]}] On Create Set _usn4 =All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)[[usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1]],#usn7 =_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) Return Distinct All(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`)[[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]]..][({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})..] As #usn8,'s_str' In \"d_str\" In 123456789,None(`4esn` In 's_str'[12..'s_str'] Where 12.0[0Xa][00]) Is Not Null"), - octest:ct_string("Merge ``=(`7esn` :`7esn`)-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0}) Match (`` :`7esn`)<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]}) Where $`4esn`[12.0..`5esn`] Union All Delete Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`) Union All Unwind $7[.12] As @usn6 Detach Delete ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] Match usn1=(`4esn` :#usn7)-[_usn4?:`6esn`]-(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) Where $`5esn` In `2esn` In .0"), - octest:ct_string("Merge (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}))) Return Distinct *,@usn6[`5esn`..$`3esn`] As ``,`7esn` In 's_str' In 0.12 As _usn3 Skip True Is Not Null Is Not Null Union All Optional Match @usn6=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Match (`8esn` :@usn5)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->(`6esn` :_usn4:usn1{`6esn`:00 In 12.e12}),(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]}))"), - octest:ct_string("Unwind $`4esn`[9e1..][0..] As usn1"), - octest:ct_string("Remove All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]).`7esn`? Union All Return Distinct *,(_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)[Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] As `8esn`,[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `8esn` Order By @usn5 Starts With 12e12 Starts With @usn5 Desc Skip _usn4(usn1[Count ( * )..$usn1],_usn3 Ends With 12e12 Ends With .e0)[All(usn1 In 0x0[..`4esn`] Where $`2esn`[123456789..][00..])..Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``])][[@usn6 In @usn5 In $`6esn` Where $``[_usn4..][`7esn`..]|12.e12 In $0 In Count(*)]..(:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)]"), - octest:ct_string("Merge `3esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) On Create Set _usn3+=True In All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12),#usn7+=`` Is Not Null,`5esn` =0.0[Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|_usn3 Ends With 12e12 Ends With .e0)][None(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5)..{@usn6:.12 Starts With 0Xa}] Unwind 9e0[$_usn3..0X7][7..$#usn8] As @usn6 Create (({_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})) Union All Match usn2=(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}))) Match `5esn`=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Union All Unwind [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0])] As `3esn` Optional Match `6esn`=((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})),((@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})) Where 's_str' Ends With .e0"), - octest:ct_string("Unwind 12[usn1][True] As @usn6 Union Detach Delete $usn2 =~$_usn4 =~`5esn` Merge usn1=(`4esn` :#usn7)-[_usn4?:`6esn`]-(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) Return 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Order By [usn1 In 00 Starts With _usn3 Where 00][#usn8(Distinct $`2esn`[$123456789..$`1esn`][0Xa..$``],@usn6[`5esn`..$`3esn`])..['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`]] Asc,999 Contains `7esn` Desc,Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`] Ascending Skip 0e0 Is Null Is Null Union Unwind $`1esn` Is Null As `6esn`"), - octest:ct_string("Remove `7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``]).@usn5,{#usn7:0Xa Is Not Null Is Not Null,#usn7:.0[$`6esn`..False]}.`4esn`?,[usn1[..@usn5][...e0],$`8esn`[``..][123.654..]].`` Delete ({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3}),$123456789[$``][010] Return All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null Skip [0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',0X0123456789ABCDEF In $1000 In $`3esn`,$0[..`8esn`]] In `4esn`(Distinct 12.e12 In $0 In Count(*),00 In 1e1) In [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]|.e0 =~`5esn`]"), - octest:ct_string("With Distinct *,Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) As _usn3 Order By False[..12.e12] Descending,{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc Limit 12.e12[@usn5..123.654] Union All Unwind 0Xa[0xabc..] As @usn5 Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)],$`4esn` Ends With 0Xa,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null With Distinct *,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn`,@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn` Skip {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]} Where .12 =~.12 =~1e1 Union Unwind 0Xa[0xabc..] As @usn6"), - octest:ct_string("Merge (_usn3 :@usn5)<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}) On Create Set `5esn` =Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])[All(#usn7 In 01234567[$`3esn`..] Where Count(*)[.e0.._usn4])..][None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..])..],@usn6 =Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4) Is Null On Create Set Extract(#usn7 In 01234567[$`3esn`..] Where 0X7 In $999 In $``|9e1[...e0]).`7esn`! =0X7 In 's_str' In $`1esn`,{`3esn`:#usn7 Ends With `4esn` Ends With @usn5}.#usn8 =[usn1[..$_usn4][..``],0X7[.e12..01234567]] In `3esn`(@usn5[..True][..0X7],$`3esn` =~$`7esn` =~False) Detach Delete $`6esn` =~Null =~9e12 Delete Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null"), - octest:ct_string("Remove [@usn5 In 0X7 =~.0 =~\"d_str\" Where $`8esn` Starts With 1000|@usn6 Contains .e1 Contains $`4esn`].`8esn`! Merge (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}))) Create (`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :`4esn`:#usn8) Union All Remove {usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}.`4esn`,Single(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`).`8esn`? Unwind `6esn` =~$_usn3 As usn2"), - octest:ct_string("Remove Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 0.12 Ends With $usn1 Ends With $@usn5|0X0123456789ABCDEF[.e0..$`4esn`]).`7esn`? Delete `8esn`[_usn3..$#usn7],$`6esn` Is Not Null Is Not Null,Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) Merge `3esn`=(({`5esn`:0.12 Contains .e1})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0})-[:@usn5|`8esn` *123456789..999{usn1:9e12 Is Not Null Is Not Null}]-(#usn7 :`5esn`)) Union All With Distinct *,({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]}) =~`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0),\"d_str\" =~`6esn` =~0Xa As `4esn` Create `4esn`=((:`7esn`{``:$`1esn` Starts With @usn6})),`1esn`=((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6}))"), - octest:ct_string("Unwind 00 In 12.0 In 's_str' As `3esn` Union All Return 's_str'[..0.0][..$`4esn`] As `2esn`,#usn7 Contains .0 Contains .e1,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Skip `6esn` Starts With $usn2 Starts With 0.0 Limit 9e1 Contains $`3esn` Contains 01234567 With Distinct Count ( * )[@usn6..0x0],.e0 Is Not Null Is Not Null As `2esn`,usn2 Is Not Null Is Not Null As `2esn` Skip $@usn5 =~$`` =~$usn2 Where `` Starts With 12 Remove (:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`2esn`]-(`6esn` :#usn7)-[_usn4?:`6esn`]-(@usn5 :`8esn`).`7esn`,`7esn`(usn2 Is Null Is Null,`6esn` =~$_usn3).`1esn`!"), - octest:ct_string("Return Distinct *,$7[12.e12..] As #usn7,`4esn`[$#usn7] As `1esn` Skip #usn7[..$1000][..01] Limit {`8esn`:@usn5[..True][..0X7],`1esn`:`1esn` Contains Count ( * )}[{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)] Union All Unwind (`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:usn1|`3esn`*]->(:_usn3{`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`})-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(usn1 :#usn8) Is Not Null As `8esn`"), - octest:ct_string("Return *,0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str' Order By [`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) Descending,$123456789 Ends With .e0 Ascending,({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) Desc Skip 0X0123456789ABCDEF[.e0..$`4esn`] Remove {usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}.`4esn`,Single(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`).`8esn`? Create (:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}),((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ))"), - octest:ct_string("Detach Delete $#usn7 In .e1 In 01,False Starts With Count ( * ) Unwind usn1[1e1][$_usn4] As _usn4"), - octest:ct_string("Merge (({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:usn1{`8esn`:usn1 Contains $``})) On Create Set usn2:usn1,None(_usn4 In usn1 Contains False Contains `` Where .12 In $999 In `5esn`).usn2 =9e0 In 01234567,`8esn` =$@usn5 Ends With 0X0123456789ABCDEF Remove None(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567).`8esn` Remove [$`2esn` =~'s_str',12 Ends With 01234567,$1000 Is Null Is Null].`3esn`?,[12.e12[...0][..0x0]]._usn4,(`1esn` :`8esn`)<-[#usn7:`3esn`|:`4esn` *00..]->(`4esn` :`8esn`)-[`4esn`? *0Xa]-(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}).`3esn`? Union All Return Distinct .e12[.12..][_usn4..] As _usn4 Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Delete usn1 Contains False Contains ``,12e12[0.e0][9e1] Return *,[`4esn` In 's_str'[12..'s_str'] Where 9e1 Contains $`3esn` Contains 01234567][[7[..12e12][..$`6esn`]]..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}],$999 Ends With $`3esn` Ends With `8esn` Order By .12[..$`6esn`] Descending,@usn6(Distinct Null[0e0][12])[..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]]][..`8esn`(010 =~`6esn`)] Descending Skip Count(*)[True] Limit 0xabc Ends With $7 Ends With $`2esn` Union All Merge (((`1esn` :`8esn`)-[_usn4:`7esn`|`2esn`]-(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3}))) On Match Set Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`` Is Null Is Null)._usn4! =$@usn6[..$#usn7][..12.e12],{`4esn`:00 In 12.e12,@usn6:12e12[Null]}.`` =$`8esn` In \"d_str\" In 9e12 On Match Set @usn5+=`1esn`[9e12..$`8esn`][usn2..$``],usn1 =[12.e12 Ends With 01 Ends With .e1,$@usn5[0.12..][@usn5..],$usn1 In 1000 In $#usn7] Is Not Null Merge (((usn2 :#usn7)<-[`7esn`?:@usn5|`8esn`]-(`1esn` :``)-[`6esn`:`4esn`|:`7esn` *1000..{`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}))) Remove Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`5esn`"), - octest:ct_string("Merge #usn7=((_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]})) On Create Set usn2+=[usn1[..@usn5][...e0]] In Extract(`6esn` In 0X7 =~`` Where $1000 Contains $`3esn`|12 Ends With 01234567) In {`3esn`:$`5esn` In `2esn` In .0,``:0e0 Is Null Is Null} On Create Set `5esn`+=0 Starts With `6esn` Starts With 0X0123456789ABCDEF,`4esn`+=$`7esn` Ends With $usn2,[usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null].@usn5! =$1000 Ends With 1e1 Ends With 123.654 Union All Merge usn1=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(usn1 :`4esn`:#usn8{``:0 Is Not Null Is Not Null,`3esn`:usn1 Starts With $#usn7 Starts With `5esn`})) On Match Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$`` On Match Set _usn4+=`1esn`[`3esn`..][$@usn6..],Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.e12 Ends With 01 Ends With .e1|@usn6[$`7esn`]).`2esn`! =[usn1 In $123456789 Contains usn2 Where $1000 =~$`7esn`|False In $`7esn` In .0] Union All Unwind [$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] As @usn6"), - octest:ct_string("Merge ((#usn8 {usn2:7 Contains 9e1})-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]->(:_usn3{@usn6:$`7esn` Is Null Is Null})) Merge `2esn`=(_usn4 {`8esn`:9e1 In 01 In 999})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`) On Match Set @usn5+=`1esn`[9e12..$`8esn`][usn2..$``],usn1 =[12.e12 Ends With 01 Ends With .e1,$@usn5[0.12..][@usn5..],$usn1 In 1000 In $#usn7] Is Not Null On Match Set _usn4 =0 Contains 12e12,`1esn`:#usn8,`7esn` =0 Is Not Null Unwind $@usn6 Starts With usn2 Starts With usn2 As _usn4 Union Unwind #usn8 Is Not Null As usn2 Match #usn8=(usn1 :`4esn`:#usn8) Where 00[``..][$`4esn`..] Create `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Union All With Distinct *,07[0..`4esn`] Order By Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`)[Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01)..][{`1esn`:@usn6[`5esn`..$`3esn`],_usn3:$999 Ends With $`3esn` Ends With `8esn`}..] Asc,$999[12.0..] Asc,All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])] Asc Skip $1000 In $`7esn` In $7 Remove Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]).`1esn`,#usn7:_usn4:usn1,(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})<-[`2esn`:usn1|`3esn` *0Xa]->(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})._usn3! Delete usn1[1e1][$_usn4],$123456789[..0.12][..#usn7]"), - octest:ct_string("Return Distinct 123456789 =~$123456789 Order By 00 Is Null Is Null Descending Skip [\"d_str\" Starts With $usn1,.12 Contains $`4esn` Contains $`6esn`,01234567 =~usn1] Is Null Is Null Match `5esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)),`1esn`=(((:_usn3{@usn6:$`7esn` Is Null Is Null})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)<-[`3esn`? *999..{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`}]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) With Distinct $999[$1000] As `4esn`,[`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Order By #usn8 Ends With $@usn6 Ends With _usn4 Ascending,9e0 =~$`5esn` Descending,[\"d_str\" Starts With $usn1,.12 Contains $`4esn` Contains $`6esn`,01234567 =~usn1] Is Null Is Null Descending Limit .12[`1esn`..][$`3esn`..] Where `1esn` In 999 In $#usn7 Union All Return `2esn` Contains $999 As #usn7,$123456789[False.._usn3] As `1esn` Order By [@usn6 In @usn5 In $`6esn` Where $999[$1000]|$7[.12]] In {`1esn`:$@usn6 Contains 07 Contains 0.e0} In (`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) Ascending,00[.e1..] Desc Skip 9e1[.12..] Create (`7esn` {_usn3:usn1 Contains $``})<-[usn1]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12}),`8esn`=((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Merge ((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) On Match Set `7esn`+=.e1[..$`4esn`][.._usn4],`4esn`+=@usn6[$`8esn`][12.e12],@usn5+=1000 Contains $#usn7 Contains `6esn`"), - octest:ct_string("Unwind `4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}] As _usn4 Union With Distinct ``(Distinct `1esn`[0e0..]) =~(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[@usn6?:`1esn`]-(:`5esn`)-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}),07[07] Order By Count(*)[..`3esn`] Desc Limit [#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|@usn6 Starts With `7esn` Starts With Null] Is Not Null Is Not Null Union All Remove [usn1 In $123456789 Contains usn2 Where $1000 =~$`7esn`|False In $`7esn` In .0].`5esn`!"), - octest:ct_string("Create (({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})),(({@usn6:0X0123456789ABCDEF[..usn1]})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn3{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})-[usn1*]->(:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7}))"), - octest:ct_string("Unwind $0[..07] As usn1 Create (:usn1) Remove (_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`).usn2,Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 123456789[$#usn7..]|.e12 Contains $12 Contains 12.e12).usn1?,{_usn3:'s_str' =~0.e0}.usn2? Union All Optional Match #usn8=((:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[`2esn`? *0..010]->(usn2 :_usn3)-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]})) Return Distinct 12.e12 In $0 In Count(*) As `` Return Distinct $`1esn` Starts With $999 As #usn8,Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)[{#usn8:`5esn` =~0Xa,@usn5:0X7[999][$1000]}..[`` Starts With 12,$`1esn` Starts With $999]][`7esn`(Distinct $usn2[..12.0])..`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])] Order By 9e1 Is Not Null Is Not Null Asc,$usn2[$123456789..123.654][$`5esn`..'s_str'] Desc"), - octest:ct_string("Detach Delete 0Xa Starts With 0.12 Starts With .0,1000 In 0X0123456789ABCDEF In 01,`1esn`[0e0..] Create ((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 )) Union All With Distinct $_usn4[$`1esn`] As `5esn`,None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..] Order By 010[$`8esn`..][0..] Desc,010[@usn5..] Descending,12.e12 In $1000 Ascending Limit 0x0[..$`6esn`][..$#usn8] Where 12.e12['s_str'] Union All Match `8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Create `1esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) Optional Match usn2=((#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`6esn`?:usn1|`3esn`{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})),((usn1 :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)) Where `3esn`[..7][..12e12]"), - octest:ct_string("With 01234567[$@usn6..0X7][$`1esn`..123.654],00 Ends With $_usn4 Ends With $`2esn` As `5esn` Order By 01[0.0] Ascending,`6esn` Starts With $usn2 Starts With 0.0 Ascending Skip {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']} Ends With [True Contains @usn6,`3esn`[$`1esn`..]] Limit usn1 Is Not Null Is Not Null With Distinct $12 Contains 123.654 Contains `8esn` As _usn4 Limit Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) Return Distinct (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Order By [$12[01..][1.e1..]][[usn1 In 00 Starts With _usn3 Where 00]..@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12)] Desc,[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|#usn7 Starts With `1esn`][[@usn5 In .12[#usn7][$`8esn`] Where 0.12 In $`4esn` In `6esn`|$`1esn` Starts With @usn6]..][$`1esn`..] Ascending,{#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null Asc Skip Null[0.e0..0x0]"), - octest:ct_string("With Distinct Count ( * ) Ends With 1000 Ends With 12 As _usn4,False[..12.e12] Skip {usn2:123456789 Starts With `2esn` Starts With 9e12} Ends With All(usn2 In 1000 Contains 0.e0 Where 01234567[Null..0.e0][Count(*)..$#usn8]) Where 0 Is Null Is Null Merge ((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})) On Create Set _usn4+=@usn6(Distinct 12.e12[0e0..7],usn1[Count ( * )..$usn1]) Is Null Is Null,(_usn4 :``)-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6}).`5esn` =\"d_str\" Contains `3esn` Contains 00,`4esn` =``[True..] On Create Set #usn7+=Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]),Extract(@usn5 In $#usn8 Is Null Is Null Where $@usn5 =~$`` =~$usn2|`5esn`[.e1][0Xa]).`6esn`? =$`1esn` Is Null Is Null Delete usn1[1e1][$_usn4],$123456789[..0.12][..#usn7] Union All Optional Match (({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) With Distinct $`2esn`[``..] As `3esn`,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn`,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] As @usn6 Order By `7esn`[1000..][$123456789..] Desc,$#usn8 In .e12 In 9e1 Descending,$@usn5 Contains $`7esn` Contains #usn8 Desc Detach Delete $`3esn` Is Not Null Is Not Null,$1000 Ends With 1e1 Ends With 123.654 Union All With Distinct *,`3esn` =~`3esn` =~$`6esn` As `7esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 123456789[$#usn7..]) Contains [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1] Skip .12[..`6esn`][..\"d_str\"] Limit [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] Where @usn6[$`7esn`]"), - octest:ct_string("Return Distinct $`4esn`[$`2esn`..] As #usn8,#usn8 In $0,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Limit Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`6esn`[$@usn6..]) In {`7esn`:12e12 Ends With 010 Ends With .0} In None(#usn8 In $`5esn` Is Null Is Null Where 123456789 In $usn2 In `6esn`)"), - octest:ct_string("Create (`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) Union Return [@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] As `3esn`,`` =~12 =~$#usn7,False Is Not Null Is Not Null As `2esn` Skip 999[$usn2..] Limit 00 In 0.12 In `5esn`"), - octest:ct_string("Optional Match ((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` )),(({_usn3:$0 Ends With $#usn7 Ends With .12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[?:``|:_usn4 *..0X7]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})) Where $`7esn` Ends With 07 Ends With 07 Return *,$`4esn`[12.0..`5esn`] Order By 0.e0 Ends With 12 Ends With $7 Descending,$`6esn` Is Not Null Is Not Null Desc Skip 0.0[1000..][.e1..] Limit `2esn` Is Not Null Is Not Null Merge `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) On Match Set usn2+=$`4esn`[9e1..][0..],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null},(usn1 :#usn7)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->(`4esn` {`7esn`:.e0[..999][..0X7]}).usn2 =$`3esn`[`2esn`...e0] Union Detach Delete @usn6[..0xabc][..$#usn7],None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]) Ends With None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With @usn6($123456789[0.0..]) Union Remove Extract(`4esn` In `6esn`['s_str'..][010..] Where 12.0 Contains 0.e0)._usn4?,{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}.`1esn`!,`5esn`:`8esn`"), - octest:ct_string("Delete (`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1),`` Contains 12 Contains True,07[12][$`6esn`] Union All With Distinct $@usn6 Contains 0 Contains $`2esn`,(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) Is Not Null Is Not Null As #usn7,True[Count(*)..][1e1..] Unwind All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] As `` Unwind [0 Is Null Is Null][..[_usn3 =~00,9e1 Is Null Is Null]] As usn2"), - octest:ct_string("Unwind $@usn5[Count ( * )] As #usn7 Detach Delete 999 In 12 In \"d_str\",$`5esn` Contains Count(*) Contains #usn7"), - octest:ct_string("Merge usn2=((`3esn` :`4esn`:#usn8)<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})) On Match Set #usn7 =Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]} On Create Set `1esn` =Null[0.e0..0x0] Optional Match ({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}),(usn2 :`2esn`:`3esn`)-[`7esn`?]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) Where 0Xa Is Null Is Null Delete 1000 Contains 123456789 Contains 1e1,(`6esn` :`3esn`:`1esn`{_usn3:1e1[.e1..],`1esn`:$#usn8})-[`4esn`:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]-(`5esn` :#usn7)-[ *..0X7]->(`5esn` :_usn4:usn1) Starts With None(@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2) Starts With [.0 =~$#usn8 =~.0,0e0 Is Not Null Is Not Null,_usn3[.0]],0e0"), - octest:ct_string("Merge ((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Delete $usn2 Starts With $`6esn` Starts With 0xabc"), - octest:ct_string("Remove ({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}).`5esn`!,`8esn`:_usn4:usn1 Merge ((({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)<-[#usn7 *123456789..999]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}))) On Create Set `8esn` =``"), - octest:ct_string("Create _usn3=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)),(((`3esn` :`8esn`)-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(_usn3 :usn2:@usn6)-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}))) Merge ((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})) On Create Set [$`6esn` Is Null Is Null,Count ( * )[@usn6..0x0],0.0[1000..][.e1..]]._usn3! =.0 Starts With `2esn` Starts With `6esn`,({``:\"d_str\",`1esn`:$1000 =~$`7esn`})-[usn1?:_usn3|:`4esn` *123456789..999{`6esn`:01 Ends With .e0,`4esn`:$`7esn` Is Not Null}]->(_usn3 ).`4esn` =usn2 Is Not Null Match (#usn7 :@usn5)-[`4esn`:_usn3|:`4esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:usn1{`8esn`:usn1 Contains $``}),``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}) Union All Unwind $`1esn`[$usn2..][$1000..] As `1esn` Merge `5esn`=(({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})) On Match Set {`6esn`:$`3esn` Contains 0X0123456789ABCDEF Contains 00,`1esn`:1000[123.654..9e12][1000.._usn3]}.`1esn`! =[$`1esn` Is Null Is Null,$12 Contains 123.654 Contains `8esn`] Starts With {`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]} Starts With Filter(usn1 In $123456789 Contains usn2 Where 01234567[.12..7][1000..1.e1]) On Match Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$`` Remove @usn5:_usn4:usn1,(:_usn4:usn1)-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]-(`1esn` :`1esn`).`1esn`!"), - octest:ct_string("Detach Delete $`3esn`[@usn5..$123456789] Unwind Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) In None(`6esn` In 0X7 =~`` Where 12.e12['s_str']) As `5esn` Remove _usn3(1.e1[0X0123456789ABCDEF..][$`5esn`..]).#usn8? Union All Optional Match `5esn`=(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}),`7esn`=(({#usn7:False[`2esn`..#usn8]})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})) With Distinct 0xabc[$@usn5] As usn2,(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] Order By $12[01..][1.e1..] Ascending,0x0 =~_usn4 Desc Match `1esn`=(((`` :@usn5)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn5:`8esn`|:usn1]-(#usn7 :`5esn`))),usn1=(_usn4 :`8esn`{`3esn`:False[.e1..Null],`3esn`:9e0 =~$`5esn`})"), - octest:ct_string("Return Distinct *,1.e1 Contains @usn6 As usn2 Order By (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Ascending,Single(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`) =~Extract(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) =~Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]) Asc,0.0[999..] Asc"), - octest:ct_string("Optional Match ((:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})),`1esn`=((@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) Where 0 Ends With $7 Ends With _usn3 Unwind `6esn`[..`5esn`] As #usn8"), - octest:ct_string("Optional Match `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Where `7esn` In 999 In @usn6 Union Unwind usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`]) Is Null As `3esn`"), - octest:ct_string("Merge @usn5=(`3esn` :`8esn`{usn1:`2esn`[$`3esn`..],`6esn`:$12[..``][..$7]})-[@usn5?:``|:_usn4]-(`8esn` :#usn8)<-[?:``|:_usn4]-({`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12}) On Create Set _usn3 ={`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]] Merge ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})-[@usn6?:#usn7|:_usn4 *00..]->(`` :@usn5{#usn7:0X7[12]})) On Match Set (@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`6esn`:`4esn`|:`7esn` *1000..{`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}]->(:#usn7)<-[`5esn`:`8esn`|:usn1]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}).#usn7? =1000 Contains 123456789 Contains 1e1 On Match Set usn1+=`4esn` Is Null Union Remove Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|1e1 Is Null).`7esn`!,Filter(usn1 In 0x0[..`4esn`] Where $0[$#usn8..01234567]).`6esn`! Union All Unwind \"d_str\" =~`3esn` =~0Xa As `1esn`"), - octest:ct_string("Optional Match ((`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})<-[?{`8esn`:_usn3 Ends With 0x0 Ends With 01234567,#usn8:$`7esn` Is Null Is Null}]->(:``{#usn8:$`2esn`[..`2esn`]})<-[@usn5:#usn7|:_usn4]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})),_usn3=(`6esn` :`7esn`)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]}) Where @usn6[`3esn`..][$7..] Union All Delete Extract(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null) =~Any(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null) =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Merge `6esn`=(({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})) Match (_usn4 :#usn8)<-[`6esn`? *..7{`3esn`:123456789[$#usn7..]}]-(:`2esn`:`3esn`{`7esn`:$_usn4[#usn8..]})-[usn1?:_usn3|:`4esn` *123456789..999{`6esn`:01 Ends With .e0,`4esn`:$`7esn` Is Not Null}]->(_usn3 ) Union All Merge ((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)) On Create Set All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 9e12[usn2..7][.e1..$`7esn`])._usn3? =$`1esn` =~$`1esn` =~#usn7,`2esn`+={`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] On Create Set None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7).`2esn`! =.e1[..$`4esn`][.._usn4]"), - octest:ct_string("Return Distinct *,.e0[..0X0123456789ABCDEF][...e12] As `6esn` Order By $123456789[$``][010] Desc,`4esn` =~$`3esn` =~$123456789 Ascending,@usn5 Starts With 12e12 Starts With @usn5 Desc Skip [$12 Is Null Is Null,999 Contains Count ( * ) Contains 123.654][Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`)..Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0)][[Null Contains _usn4,$`7esn` Is Null Is Null]..({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3})] Limit 7[..12e12][..$`6esn`] Union Remove ({@usn6:9e0 Contains `8esn`})-[usn2 *0X0123456789ABCDEF..{usn2:`` Starts With 12}]-(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})-[`7esn`:@usn5|`8esn`{usn1:9e12 Is Not Null Is Not Null}]->(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]}).``!"), - octest:ct_string("Optional Match (((`2esn` :``)-[?:`3esn`|:`4esn`]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`2esn`?]-(:usn2:@usn6{_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]}))),usn2=((#usn8 :`4esn`:#usn8)-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)) Where 01234567[$`3esn`..] Union With *,$@usn6 =~usn1 As `1esn` Limit .0[$`6esn`..False] Where 0.12[0.e0..][`4esn`..] Union Merge usn1=((:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[#usn8? *0xabc]-(#usn8 :`4esn`:#usn8)) On Match Set #usn7($123456789 Contains 01 Contains 0.12).usn2! =.e12 =~0.0 =~9e0,All(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1).`4esn` =$999[12.0..],`8esn`+=Filter(_usn4 In usn1 Contains False Contains `` Where 9e0 =~$`5esn`) =~``($`4esn`[usn1..$#usn8][12.0..`3esn`]) =~Single(usn2 In 1000 Contains 0.e0)"), - octest:ct_string("Create (`2esn` :``)<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(_usn3 :_usn4:usn1),`8esn`=(`4esn` {@usn5:1e1 In $#usn8 In 12e12})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`7esn` {`8esn`:$123456789 Contains 01 Contains 0.12})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8) Remove (_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`).usn2,[`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]|12 Is Null Is Null].#usn8? Detach Delete 0X0123456789ABCDEF Contains 12.e12 Contains 999,0X0123456789ABCDEF In $1000 In $`3esn`,'s_str' Is Not Null Is Not Null"), - octest:ct_string("With Distinct 0 =~12.e12 =~$``,0.12 Contains .e1 As `6esn`,01 Contains $`7esn` Contains 9e0 Skip [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|.e12 Contains $12 Contains 12.e12][(_usn3 :`6esn`:`7esn`{usn1:$_usn3[9e1][$_usn4],`8esn`:123456789 =~_usn4 =~$0})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-({`1esn`:@usn6})..Any(#usn8 In $`5esn` Is Null Is Null Where 123456789 In $usn2 In `6esn`)][[010[$`8esn`..][0..],False In `3esn`,12e12 Ends With 010 Ends With .0]..{@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}] Limit .12[..`6esn`][..\"d_str\"] Where 0.e0 Ends With 12 Ends With $7 Merge (`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(usn1 :#usn8)<-[ *..0x0{`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) On Create Set `6esn` =$@usn5[Count ( * )] On Create Set Single(usn1 In 00 Starts With _usn3 Where $`7esn` Ends With 07 Ends With 07).`6esn`? =Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789},@usn5 =[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0])],[usn1 In 00 Starts With _usn3 Where 12 Ends With .e12 Ends With $7|_usn3 =~00].#usn7! =Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null"), - octest:ct_string("Remove `3esn`:_usn3,{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}._usn3? Union Merge ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})) On Create Set usn1+=$@usn6 In $`5esn` In $usn2 On Match Set @usn6+=(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}]"), - octest:ct_string("Merge ((:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})) Create (`6esn` :`5esn`)<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6),_usn3=(($999)) Union Create #usn8=((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(#usn7 :`3esn`:`1esn`)<-[?{`4esn`:12e12[$`5esn`][07]}]-(:`1esn`{_usn4:$_usn3[Null]})) Remove {`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}.#usn8? Create (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Union All Unwind 07[12e12] As `4esn` Remove Extract(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`).`5esn`?,(`2esn` {`3esn`:$999[12.0..]})-[:usn2|#usn8 *01234567..12{usn2:$`3esn` In $12 In 's_str'}]-(usn1 :_usn3).`5esn`"), - octest:ct_string("Unwind 12e12[0.e0][9e1] As usn2 Return Distinct *,12 Is Null Is Null As #usn7,$`7esn` Ends With $0 Ends With .e12 As `` Order By $0[01234567..00][$`2esn`..$@usn6] Desc,12.e12['s_str'] Desc,123456789 Starts With #usn7 Starts With `6esn` Asc Limit 999 In 9e1 In 7 Union All Unwind `6esn` Is Not Null As `4esn` Remove [usn1 In 0x0[..`4esn`]|`` Starts With @usn5].`6esn`?,(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})._usn4? Return `8esn`[_usn3..$#usn7],({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn` Skip `7esn` Starts With $usn2 Starts With .e0 Limit 00 Is Not Null Is Not Null"), - octest:ct_string("Remove (:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)}).usn1!,None(usn1 In 00 Starts With _usn3 Where 999 Contains `7esn`).`3esn`?,_usn3:usn1 With Distinct $`4esn`[$`2esn`..] As #usn8,#usn8 In $0,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Skip $@usn5 =~$`` =~$usn2 Limit `8esn` Ends With 999 Ends With 9e0 Union Remove [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]|9e0 Starts With `6esn`].#usn8?"), - octest:ct_string("Detach Delete 010 Starts With `7esn` Starts With 9e1 With `` Contains 12 Contains True Order By #usn7 Starts With 0 Starts With 12 Asc Skip True =~@usn5 =~$`1esn` Union All With Distinct $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Order By $12[01..][1.e1..] Descending Skip .12[.e12..0.e0][0.e0..$`2esn`]"), - octest:ct_string("Merge `6esn`=((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})) Create ({`2esn`:123456789 Starts With `2esn` Starts With .0,@usn6:$123456789[$`2esn`][True]}) With $`2esn`[``..] As `3esn`,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As `3esn`,`7esn`[...e1][..\"d_str\"] Order By [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]) Asc Limit $#usn8 Is Null Where $123456789 In Count(*) In .e1 Union All Merge #usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) On Create Set `4esn` =.12 Is Not Null Is Not Null,{@usn6:True[..'s_str'][..01]}.`2esn` =12.e12[...0][..0x0],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Remove [_usn4 Starts With $@usn6 Starts With #usn7].`4esn`,usn2(Distinct usn2[`3esn`][_usn3]).@usn5? Union All Return *,Count ( * ) In 010 As `1esn` Limit $@usn5 =~07 =~True Merge _usn3=(@usn5 {@usn6:$123456789[0X7..12.e12]}) On Match Set @usn5 =12.e12['s_str'],@usn6 =$usn2[False..`7esn`][`7esn`.._usn3],({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})<-[usn2?:`4esn`|:`7esn` *0X0123456789ABCDEF..]-({usn1:$1000 Contains $`3esn`})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0}).@usn5? =07[07] Return Distinct *,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})"), - octest:ct_string("Delete 0.0[..12e12][..$0],1.e1[.e0..0] Union All Create usn2=(`4esn` {``:07,`3esn`:12e12[_usn3..][$@usn5..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)-[@usn5? *..7{usn2:12e12[$`5esn`][07],usn2:$0[..`8esn`]}]-(_usn4 :#usn8)"), - octest:ct_string("Merge (({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})) With Distinct *,#usn8 Is Not Null As _usn4 Skip {@usn5:$@usn6[..$usn1],`1esn`:usn2[`3esn`][_usn3]}[..Any(`4esn` In 's_str'[12..'s_str'] Where Null Contains _usn4)][..{`7esn`:True[..'s_str'][..01]}]"), - octest:ct_string("Merge usn1=((`3esn` :``)<-[`4esn`]->(`7esn` :#usn8)<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(_usn4 )) Remove ({#usn8:12.0[..$7][..999],@usn5:$`1esn` Is Null})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`})<-[_usn3:usn2|#usn8]-({`3esn`:`3esn` =~0.0 =~$``,`3esn`:@usn6 Contains .e1 Contains $`4esn`}).usn2?,Extract(`6esn` In 0X7 =~`` Where 0X7[..12e12]|00).@usn6! Delete $`5esn` Is Null Is Null,True[`4esn`][$`6esn`] Union All Unwind usn2[..$`3esn`] As `6esn` Union All Return Distinct 07[07] Skip $`4esn` Contains 0Xa Limit 00[.e0..9e1] Merge (:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]})"), - octest:ct_string("Return Distinct *,[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As `7esn` Skip _usn4(Distinct `7esn` Starts With $usn2 Starts With .e0) =~`3esn`() =~#usn8(9e0 Ends With $`7esn`) Match (`` :`7esn`)<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]}) Where $`4esn`[12.0..`5esn`] Create `1esn`=(((usn1 :`4esn`:#usn8)-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}))),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`)<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)) Union Optional Match (`` :#usn7) With $`2esn`[``..] As `3esn`,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As `3esn`,`7esn`[...e1][..\"d_str\"] Order By [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]) Asc Limit $#usn8 Is Null Where $123456789 In Count(*) In .e1 Unwind 123456789 =~_usn4 =~$0 As @usn5 Union All Detach Delete {@usn6:0Xa Is Null Is Null,`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]} =~_usn4(usn2[`3esn`][_usn3]),`6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Merge @usn6=({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567}) On Match Set (:usn1{`1esn`:`6esn` Starts With $usn2 Starts With 0.0})<-[@usn6?:@usn5|`8esn` *..01{_usn4:07 Ends With 07,`8esn`:`6esn`[1.e1..$#usn7][.e0..True]}]-(usn2 :`3esn`:`1esn`).`8esn` =.0,_usn4+=`3esn`[$999..],#usn7($0[$#usn8..01234567],#usn8[$#usn8..]).#usn8! ={#usn8:$`5esn` In False,usn2:$`7esn` In $7} Starts With Filter(usn2 In 1000 Contains 0.e0 Where `2esn`[$`3esn`..]) Starts With All(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`) On Create Set `6esn`+={`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])],#usn8:`1esn`,[usn1 In 0x0[..`4esn`] Where True =~@usn5 =~$`1esn`|0.0[999..]].`4esn`! =$123456789 Contains 01 Contains 0.12 Detach Delete $999[12.0..]"), - octest:ct_string("Return {_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] As `1esn` Skip Extract(`4esn` In `6esn`[1e1..] Where 123456789 =~_usn4 =~$0) Contains (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6) Contains ({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[`7esn`?:#usn8]->(@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0}) Return Distinct {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null As #usn8,010[$`8esn`..][0..] Order By .e12[.12..][_usn4..] Ascending,Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] Asc Skip {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']}[(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)] Limit 9e12[usn2..7][.e1..$`7esn`] Remove `1esn`(Distinct `2esn`[$`1esn`..][$_usn3..])._usn4!,Null.`6esn`?,`3esn`(Distinct 01234567 Ends With 0x0).``! Union All Unwind usn2[`3esn`][_usn3] As @usn5"), - octest:ct_string("Merge `6esn`=((`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})) On Create Set [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]].`1esn` =9e12 =~01 =~$`7esn` On Match Set Single(`6esn` In 0X7 =~`` Where 9e1[0.e0..][#usn8..])._usn3! =0X7 =~`4esn` =~`8esn`,`4esn` =0.12 =~9e0"), - octest:ct_string("Create ``=((`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(usn1 :_usn3))"), - octest:ct_string("Remove [.0 Is Null Is Null,Null Starts With _usn4 Starts With `6esn`].#usn7?,[#usn7 In 01234567[$`3esn`..] Where $999[12.0..]].@usn5!,[12e12[.12..],`2esn`[$`1esn`..][$_usn3..]].usn2? Detach Delete All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],`1esn` Contains Count ( * ) Match usn1=((:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[#usn8? *0xabc]-(#usn8 :`4esn`:#usn8)),#usn7=(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})))"), - octest:ct_string("Detach Delete .e12[$_usn4..][False..],12.e12 Ends With 01 Ends With .e1,[\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Union Remove Extract(`4esn` In `6esn`['s_str'..][010..] Where 12 =~usn1 =~.e12|$`2esn`[..`2esn`]).`8esn`!,_usn3:`` Union Match ((`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`)<-[ *0X0123456789ABCDEF..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]->(_usn3 :_usn3)),(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Create ((:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})<-[@usn6:`3esn`|:`4esn`*]->(`6esn` :`5esn`)),(({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(:_usn4:usn1))"), - octest:ct_string("Return $0 Contains `7esn` Contains $`8esn`,usn1 Contains \"d_str\" Contains 9e12 As _usn4,0Xa[0xabc..] As usn2 Skip \"d_str\" Limit $`7esn` Ends With $`2esn` Ends With $usn1 Delete 0.0 =~0X7 =~#usn7,12e12[True..][07..],Extract(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null) Ends With `2esn`(`7esn`[Null..][@usn5..],123.654[12.e12..1e1]) Ends With Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]) Union All Unwind usn2 Is Not Null Is Not Null As `4esn` Union All Create (usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})"), - octest:ct_string("Match usn2=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}),(`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Where $#usn8 Is Null With Distinct $`5esn` Is Null As _usn3,[usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]] Starts With (`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` ) Starts With (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8) As @usn5 Order By (`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Descending,$`2esn` Ends With `3esn` Ends With $7 Desc Where $usn1[_usn4..][usn2..] Optional Match `8esn`=(($12)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)),(:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) Where 1e1[..#usn8][..'s_str']"), - octest:ct_string("Return Distinct *,$@usn6[..$usn1] As @usn6 Order By `3esn` =~0.0 =~$`` Ascending Skip (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]) Limit 0.e0[@usn6][0x0] Union Create `1esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})),((#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)-[`6esn`:``|:_usn4 *..01]->(`5esn` :#usn7)) Create (#usn7 :@usn5)<-[@usn5*]->({``:$1000 Is Null Is Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(`7esn` :`2esn`:`3esn`) Return *,$@usn6[..12e12],`8esn` Ends With 0X0123456789ABCDEF Ends With `1esn` As usn2 Skip 1000[..$`6esn`][..0xabc] Limit $`8esn`[..$``] Union Optional Match `4esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}),(((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Where $_usn3[..Count ( * )][..@usn5] Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..]"), - octest:ct_string("Match `8esn`=((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})) With Distinct [@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2] Is Null,00[7..$123456789] Order By $`1esn`[`2esn`..0.12][$usn1..Count ( * )] Desc,#usn8 Contains .e0 Contains $`8esn` Ascending,@usn5 In $`6esn` Descending Skip [$_usn3[$`4esn`..Null],0x0 Contains $`8esn` Contains `6esn`,\"d_str\" =~`6esn` =~0Xa] Contains [@usn6 Starts With `7esn` Starts With Null] Contains `6esn`(Distinct $`4esn`[usn1..$#usn8][12.0..`3esn`],12.e12['s_str']) Return Distinct #usn7 Starts With 0x0 Starts With Null,{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}[Extract(_usn4 In usn1 Contains False Contains `` Where `5esn`[.e1][0Xa])..],[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As @usn5 Limit All(@usn5 In .12[#usn7][$`8esn`] Where $`5esn` Contains $@usn6) Is Null Is Null Union Delete `6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),$@usn6[..$#usn7][..12.e12],.e0[`4esn`..`4esn`][0.0..$0] Delete 12.e12 In $1000,{_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]},$999 Ends With $`3esn` Ends With `8esn`"), - octest:ct_string("Optional Match `6esn`=((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})),((@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})) Where 's_str' Ends With .e0 Union Delete `4esn` Is Null,$``[False..123.654] Merge ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[ *010{@usn5:Null Is Null Is Null}]-({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]}))"), - octest:ct_string("Create ((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null})-[#usn7:`1esn` *07..]->(#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})),_usn4=(`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) Return Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As `5esn` Merge (`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Create Set [`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null|9e12 =~01 =~$`7esn`].#usn7! =`2esn`[$`3esn`..],`1esn`(Distinct 07[0..`4esn`]).`4esn`? =Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`]) Contains All(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 01234567[.12..7][1000..1.e1])"), - octest:ct_string("Match (`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Where 0xabc Ends With $7 Ends With $`2esn` Optional Match ({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``),(@usn6 :`5esn`{_usn3:010[$`8esn`..][0..],_usn3:`2esn` Is Not Null Is Not Null}) Merge usn1=((:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[#usn8? *0xabc]-(#usn8 :`4esn`:#usn8)) On Match Set #usn7($123456789 Contains 01 Contains 0.12).usn2! =.e12 =~0.0 =~9e0,All(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1).`4esn` =$999[12.0..],`8esn`+=Filter(_usn4 In usn1 Contains False Contains `` Where 9e0 =~$`5esn`) =~``($`4esn`[usn1..$#usn8][12.0..`3esn`]) =~Single(usn2 In 1000 Contains 0.e0)"), - octest:ct_string("Match _usn3=((:``{`5esn`:.e1 In $@usn6 In 999})) Where .e0[7..$`3esn`] Delete (`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1),`` Contains 12 Contains True,07[12][$`6esn`] Merge (#usn7 :`6esn`:`7esn`)<-[`3esn`?:_usn3|:`4esn`]->(:`1esn`{_usn4:$_usn3[Null]})-[ *..0X7]->(`5esn` :_usn4:usn1) On Match Set _usn4:_usn3,[0xabc Contains $1000].`6esn` =(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})[Filter(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 0.12 Ends With $usn1 Ends With $@usn5)][`3esn`(Distinct 9e12[_usn3])],{@usn6:0.12[0.e0..][`4esn`..]}.`4esn` =0x0 Contains $`8esn` Contains `6esn` On Create Set `5esn`+=0 Starts With `6esn` Starts With 0X0123456789ABCDEF,`4esn`+=$`7esn` Ends With $usn2,[usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null].@usn5! =$1000 Ends With 1e1 Ends With 123.654 Union All Create (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``?:@usn6]-(#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]}) Create (({#usn8:12.0[..$7][..999],@usn5:$`1esn` Is Null})<-[``?:`1esn` *0xabc{`5esn`:$``[_usn4..][`7esn`..]}]->(#usn7 :@usn6:`7esn`{_usn3:\"d_str\" =~`3esn` =~0Xa}))"), - octest:ct_string("With *,$usn1 In 1000 In $#usn7 As `8esn`,$@usn6 =~$#usn8 =~$#usn7 As `2esn` Order By 0Xa[0xabc..$#usn8] Desc Skip `1esn`[`3esn`..][$@usn6..] Delete `6esn` Starts With $`5esn`,$`8esn`[..123456789],`` =~12 =~$#usn7 Merge usn1=((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})) On Create Set `2esn`+=123.654 In \"d_str\" In $_usn3 Union Remove ({`3esn`:1e1 Is Null})-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->(`4esn` {`7esn`:.e0[..999][..0X7]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}).`4esn`?,None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`6esn`[$@usn6..]).`` Remove [1e1 In $#usn8 In 12e12,7 In @usn5 In $`4esn`].`5esn`!,`7esn`:`1esn`,usn2:usn1 Optional Match #usn8=((({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null})<-[`7esn`?:`8esn`|:usn1]-(`7esn` :#usn8)-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`)))"), - octest:ct_string("Remove (@usn5 :`3esn`:`1esn`{_usn3:#usn7 Starts With `1esn`})<-[@usn5?:``|:_usn4]-(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})-[usn2 *0X0123456789ABCDEF..{usn2:`` Starts With 12}]-(`4esn` {`7esn`:.e0[..999][..0X7]})._usn4,[@usn5 In $#usn8 Is Null Is Null Where $#usn8 Is Null|123.654[@usn5]].`6esn`! Unwind [`4esn` In $`8esn` Starts With 1000 Where `5esn` In 12][..Single(`6esn` In 0X7 =~`` Where .0 Starts With `2esn` Starts With `6esn`)][..[@usn5 In $#usn8 Is Null Is Null]] As `1esn` With 's_str'[12..'s_str'] Limit #usn7 Starts With 0x0 Starts With Null Where 1e1[`6esn`..] Union All Remove None(`4esn` In `6esn`[1e1..] Where 12.0[``]).@usn5?"), - octest:ct_string("Unwind Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `3esn` Detach Delete `3esn` Contains 0Xa,9e1[0.e0..][#usn8..] Union Return None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) As _usn3"), - octest:ct_string("Remove (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})<-[usn2?:usn1|`3esn`{`7esn`:0xabc Ends With $#usn7 Ends With #usn8,@usn5:$#usn8}]->(`3esn` :#usn8).usn2 Union All Detach Delete 07[0..`4esn`] Unwind `8esn`[$``] As `3esn` With Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])[All(#usn7 In 01234567[$`3esn`..] Where Count(*)[.e0.._usn4])..][None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..])..] As @usn6,0X0123456789ABCDEF Contains 12.e12 Contains 999 Order By 9e1[0.e0..][#usn8..] Asc,$0 =~`3esn` Asc Limit False Is Null Where 0Xa Is Null Is Null"), - octest:ct_string("Return 07 Ends With 07 As #usn8,00[``..][$`4esn`..],$usn2 Is Not Null Is Not Null Limit {`4esn`:0X7 =~.0 =~\"d_str\",_usn4:00 Ends With $_usn4 Ends With $`2esn`} Ends With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Ends With [$`3esn`[@usn5..$123456789],00,'s_str'[.12..$#usn7][$999..`2esn`]] Detach Delete 07[0..`4esn`] Unwind [@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] As `7esn` Union All Create ((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 )) Union Unwind _usn3[.0] As _usn3 Create `1esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[? *999..]-(`` :`1esn`),((`5esn` :#usn7)<-[?:usn2|#usn8 *1000..]->(@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]}))"), - octest:ct_string("Match (({``:12 Is Null Is Null})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)})),#usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})) Where 07[12][$`6esn`] Delete `6esn`[False..0.0][12e12..$usn2] Remove [.0 Is Null Is Null,Null Starts With _usn4 Starts With `6esn`].#usn7?,[#usn7 In 01234567[$`3esn`..] Where $999[12.0..]].@usn5!,[12e12[.12..],`2esn`[$`1esn`..][$_usn3..]].usn2? Union All Merge `8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`}) Optional Match _usn4=(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Optional Match usn2=({_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[@usn5?:``|:_usn4]-($12),((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)) Where 07 Ends With 07 Union All Optional Match ((:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[`2esn`:@usn5|`8esn`]->(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7})),((({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)<-[#usn7 *123456789..999]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}))) Unwind `7esn` Ends With $usn2 Ends With 999 As usn1 Create `4esn`=((:`7esn`{``:$`1esn` Starts With @usn6})),`1esn`=((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6}))"), - octest:ct_string("Detach Delete Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Detach Delete 0x0[$`3esn`],07 In $7 In 12 Union All Remove Extract(usn1 In 0x0[..`4esn`] Where $`2esn`[123456789..][00..]).#usn7? Union With @usn5 Starts With 12e12 Starts With @usn5,$1000 =~$`7esn`,\"d_str\" Starts With $usn1 As `7esn` Order By $0[..`8esn`] Desc,Count(*) Starts With 1e1 Starts With $123456789 Ascending,12e12[$`5esn`][07] Desc Limit Single(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8)[{_usn3:$0 Ends With $#usn7 Ends With .12}][[12.0[0Xa][00],.0[01][$12]]] Unwind `2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As `4esn`"), - octest:ct_string("With Distinct *,$@usn6 =~usn1 As `1esn` Skip $_usn4[$`1esn`] Limit $1000 In $`7esn` In $7 Where 9e0 In 01234567 Union All With $`5esn`[$123456789][`1esn`] As `8esn`,[@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] As #usn7 Order By None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] Ascending,Count(*) In 01 In .0 Asc,Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`6esn`[$@usn6..]) In {`7esn`:12e12 Ends With 010 Ends With .0} In None(#usn8 In $`5esn` Is Null Is Null Where 123456789 In $usn2 In `6esn`) Asc Where 0.e0[9e0][0e0] Optional Match _usn3=(($999)),``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)) Where 9e0[True..`1esn`] Unwind $_usn4[`3esn`][0] As _usn4"), - octest:ct_string("Unwind ({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) As @usn6 Match `5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Where $``[False] Create usn2=((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn2 *0X0123456789ABCDEF..{usn2:`` Starts With 12}]-(`4esn` {`7esn`:.e0[..999][..0X7]})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})),usn2=({_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[@usn5?:``|:_usn4]-($12)"), - octest:ct_string("Merge (`4esn` {`2esn`:@usn6[`5esn`..$`3esn`],`7esn`:$`1esn` Is Null})<-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]-(`2esn` {`3esn`:$999[12.0..]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}) On Match Set (`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[? *0..010]-(#usn8 :`4esn`:#usn8).usn1! =`7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4},@usn6+=$usn2[12..$`7esn`][$0..$`7esn`],Any(_usn4 In usn1 Contains False Contains `` Where _usn4[$`4esn`..]).#usn7 ={@usn6:12.0[``],_usn4:$`3esn` Contains 0X0123456789ABCDEF Contains 00} Ends With Single(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Ends With Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999|12.0[``]) Union All Match ((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[? *0..010]-(#usn8 :`4esn`:#usn8)),`1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}) Match `3esn`=((:#usn8{_usn4:\"d_str\"[Count ( * )],`2esn`:9e0 Ends With $`7esn`})) Union All Delete ({`2esn`:$usn2 Is Not Null})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})[{_usn4:.12 =~.12 =~1e1,#usn7:.e1 Starts With 0.0 Starts With `6esn`}],1000[123.654..9e12][1000.._usn3]"), - octest:ct_string("With Distinct [@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2] Is Null,00[7..$123456789] Order By $usn2 Is Not Null Is Not Null Desc Limit `8esn` Ends With 999 Ends With 9e0 Remove {_usn3:$_usn4[$`1esn`]}.@usn6!,`8esn`($_usn4[#usn8..],123456789 Starts With `2esn` Starts With .0).usn1?,Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|1e1 Is Null).#usn7? Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Union All Remove {`1esn`:12 Ends With .e12 Ends With $7,`6esn`:$@usn5 Contains 01}._usn4,None(usn1 In 0x0[..`4esn`] Where 0.12 Contains $12 Contains `8esn`).`8esn`?,Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where #usn7[..$1000][..01]|'s_str' Ends With .e0).`8esn`? Return Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])],123456789 Starts With _usn4 Starts With @usn6 Skip _usn3 Ends With 12e12 Ends With .e0 Return Distinct 123.654 Starts With usn1 Starts With @usn5,`7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As `8esn`,$`7esn` Ends With `1esn` Ends With True As `5esn` Order By {`3esn`:$999[12.0..]} =~[$#usn8 In .e12 In 9e1] Desc,\"d_str\" =~`6esn` =~0Xa Asc,(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Descending"), - octest:ct_string("Remove [$0[01234567..00][$`2esn`..$@usn6],@usn6 =~01,`4esn` In $12 In `8esn`].usn1,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[9e1..][0..]|9e12 Is Not Null Is Not Null].#usn8?,None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `7esn` Ends With $usn2 Ends With 999)._usn4! Union All Delete 0X0123456789ABCDEF Contains $usn1 Merge (({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8)) On Match Set `8esn`:`4esn`:#usn8,Extract(`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]|_usn3 Is Not Null Is Not Null).`6esn`? =#usn8 Is Not Null,usn1 =Extract(#usn8 In $`5esn` Is Null Is Null Where @usn6 Contains .e1 Contains $`4esn`) In Filter(`4esn` In `6esn`['s_str'..][010..] Where 12e12[Count ( * )..][usn2..]) In [123456789 In $usn2 In `6esn`,Count(*) Ends With 010]"), - octest:ct_string("Merge `1esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[? *999..]-(`` :`1esn`) On Create Set `4esn`+=01234567[.12..7][1000..1.e1],``(`` In `6esn`).@usn6 =`1esn` In 999 In $#usn7,`7esn` =9e12 On Match Set `2esn` =$usn2[False..`7esn`][`7esn`.._usn3],``+=_usn4 Ends With 01 Ends With $`1esn`,``+=01 Ends With .e0 Remove [usn1 In 00 Starts With _usn3].#usn8?,Extract(`4esn` In `6esn`['s_str'..][010..] Where $999 Ends With $`3esn` Ends With `8esn`|0x0 =~$`7esn` =~@usn6).@usn5?,[usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`|$`8esn`[$``..$7][$1000..$`7esn`]].`3esn`! Remove {`2esn`:usn2[`3esn`][_usn3]}.`5esn`?,Extract(`4esn` In `6esn`[1e1..] Where 12[`7esn`...0][0.12..``]|@usn6 Starts With `7esn` Starts With Null).@usn5,Extract(`4esn` In $`8esn` Starts With 1000 Where `5esn` In 12|010 Contains 0X0123456789ABCDEF).`2esn` Union Optional Match `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Where `7esn` In 999 In @usn6"), - octest:ct_string("Merge `2esn`=(:usn1{`8esn`:usn1 Contains $``})-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1})-[ *010{@usn5:Null Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] Unwind Extract(usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`) Contains [0 Contains 12e12,0xabc Ends With $7 Ends With $`2esn`,0x0 =~_usn4] As `7esn` Union Unwind Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) As usn2 Optional Match `1esn`=((usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) Where _usn4 Starts With 0X7 Merge usn1=(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(usn1 :#usn8)<-[ *..0x0{`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) On Match Set `2esn`+=123.654 In \"d_str\" In $_usn3 Union Match ((:_usn3{usn2:$`5esn`[$123456789][`1esn`]})),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})) Where $0[$#usn8..01234567]"), - octest:ct_string("With Distinct $#usn8 In .e12 In 9e1 Order By All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..] Asc,0Xa[0xabc..] Ascending,@usn6[$`3esn`] Ascending Skip 1e1 In $#usn8 In 12e12"), - octest:ct_string("Remove [`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`]|#usn8 Ends With `4esn` Ends With $`4esn`]._usn4!,[12 =~usn1 =~.e12,7[12e12..$_usn4][9e1..True],_usn3 Ends With 12e12 Ends With .e0].`6esn`?,[@usn6 In @usn5 In $`6esn` Where 00[``..][$`4esn`..]|`2esn` Contains $999].#usn7 With [#usn8 In $`5esn` Is Null Is Null Where 0.0[..12e12][..$0]][{`2esn`:.e1 In $@usn6 In 999,usn2:@usn5 Ends With $`3esn` Ends With 12e12}..] As @usn5,usn2[`3esn`][_usn3] Order By None(usn2 In 1000 Contains 0.e0 Where $`6esn`[Count(*)..0.e0][0.0..Count ( * )])[(:usn2:@usn6{@usn6:$`4esn`[$`2esn`..]})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})][Any(@usn6 In @usn5 In $`6esn` Where 12.0[0Xa][00])] Descending Merge ((@usn6 :#usn7{@usn5:Null Is Null Is Null})) On Create Set `8esn` =Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`],`8esn`+=Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[usn2($#usn8 Is Null Is Null)..Extract(usn1 In 0x0[..`4esn`] Where 123456789 In $usn2 In `6esn`|@usn5[..True][..0X7])][(`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` )..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]] Union Return Distinct *,9e1 Starts With 9e1 Starts With 010 Delete Null[1.e1..],999[$`6esn`],None(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1])[`8esn`(00[``..][$`4esn`..],123.654[@usn5])] Union All Match `1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) Remove (@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`6esn`,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]).usn2!,(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn`]->(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`1esn`!"), - octest:ct_string("Detach Delete All(_usn4 In usn1 Contains False Contains `` Where $`4esn`[$`2esn`..])[..Single(usn1 In $123456789 Contains usn2 Where $usn1[0.12..]['s_str'..])][..``(Distinct `1esn`[0e0..])]"), - octest:ct_string("Remove Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0)._usn3!,[`4esn` In 's_str'[12..'s_str'] Where 0.12 In 01 In $`3esn`|9e0 =~$`5esn`].`3esn`! Union All Optional Match `1esn`=((:`8esn`)-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`{#usn8:Null[0e0][12],`2esn`:`8esn` In $@usn5}]-({_usn3:999 In $_usn4 In 0X7,`1esn`:1e1 In $#usn8 In 12e12})) Optional Match `3esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}),`5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Where 0e0 Remove {`7esn`:True[..'s_str'][..01]}.`1esn`!,`2esn`:@usn5,({`1esn`:@usn6})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1}).@usn5?"), - octest:ct_string("Return Distinct 07[07] Skip $`4esn` Contains 0Xa Limit 00[.e0..9e1] Merge (:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]})"), - octest:ct_string("Delete #usn8 Ends With $@usn6 Ends With _usn4,Count(*)[12.e12..],{`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Create (#usn7 :`6esn`:`7esn`)<-[`3esn`?:_usn3|:`4esn`]->(:`1esn`{_usn4:$_usn3[Null]})-[ *..0X7]->(`5esn` :_usn4:usn1),usn2=(`8esn` :#usn8)-[usn2?]-(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]}) With $_usn4[$`1esn`] As `5esn`,(:`5esn`{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[usn1 *..0x0]->(usn1 :`6esn`:`7esn`)-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})[..[07[$999],@usn6[$`7esn`]]][.._usn4(0X7 In $@usn5 In 9e0)] As `6esn`,All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..] As `5esn` Order By True[0x0][@usn6] Ascending,$`5esn` Contains $@usn6 Desc Skip Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null Limit _usn3 In $#usn8 In usn1 Where 's_str'[..0.e0][..`1esn`] Union All With Distinct $999[$1000] As `4esn`,[`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Limit {`8esn`:@usn5[..True][..0X7],`1esn`:`1esn` Contains Count ( * )}[{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)] Where $_usn4[12e12][`4esn`] Delete [True[..'s_str'][..01]] In Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999]) In All(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`]),$`5esn` Starts With _usn3 Starts With @usn5 Return None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) As _usn3"), - octest:ct_string("Delete .12[`1esn`..],usn2 Starts With @usn6 Union All Create `4esn`=((`` :`1esn`{@usn5:@usn5 Starts With 12e12 Starts With @usn5})-[`6esn`:`8esn`|:usn1$_usn3]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})) With Distinct *,{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)] Order By .e1 Starts With $`8esn` Asc Limit $#usn7 In .e1 In 01 Where `5esn`[`1esn`..`1esn`] Union All Remove All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.e12 Contains `5esn`).`6esn`? Match (@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Remove Any(#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7).`3esn`?,{`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`}.`4esn`!"), - octest:ct_string("Unwind #usn8[$#usn8..] As #usn8 Merge (((`1esn` :`8esn`)-[_usn4:`7esn`|`2esn`]-(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3}))) Create ((_usn4 {`8esn`:9e1 In 01 In 999})) Union All Merge ((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) On Match Set [`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|`` Contains 12 Contains True].`2esn`? =$@usn6[..$#usn7][..12.e12],None(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12).`8esn`! =12[..9e0][..999] With [$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}),[@usn5 In $#usn8 Is Null Is Null Where 7 In 0xabc][[Null[01234567][01234567],07[1e1],Count(*)[12.e12..]]..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)] Skip `1esn`[@usn6..$123456789] With *,{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)] Order By .e1 Starts With $`8esn` Asc Limit $#usn7 In .e1 In 01"), - octest:ct_string("Return Distinct 1e1[..#usn7][..#usn7],0[0.12..] As @usn5 Order By (_usn3 :`6esn`:`7esn`{usn1:$_usn3[9e1][$_usn4],`8esn`:123456789 =~_usn4 =~$0})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-({`1esn`:@usn6}) In _usn3(0x0[0X7..][usn1..]) In None(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str') Descending,[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Desc Skip Single(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) In [$123456789 Contains usn2,010 Is Null Is Null,`7esn` Starts With $usn2 Starts With .e0] In `2esn`($`5esn` Is Not Null,7 In $`3esn` In #usn7) Union Merge `3esn`=(usn1 :`7esn`)<-[? *00..{`6esn`:$@usn6[_usn3..0.e0]}]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}) On Create Set `1esn` =0X0123456789ABCDEF[.e0..$`4esn`] On Match Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] Return *,{`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])] As `3esn` Limit All(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..]) Is Null Is Null Union Merge `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) On Create Set `4esn` =010 In `7esn`,usn2+=0.e0[@usn6][0x0] Optional Match ((`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})<-[?{`8esn`:_usn3 Ends With 0x0 Ends With 01234567,#usn8:$`7esn` Is Null Is Null}]->(:``{#usn8:$`2esn`[..`2esn`]})<-[@usn5:#usn7|:_usn4]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})),_usn3=(`6esn` :`7esn`)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]}) Where @usn6[`3esn`..][$7..] Optional Match `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) Where usn1 In 1000 In $`5esn`"), - octest:ct_string("Unwind Any(@usn6 In @usn5 In $`6esn` Where $@usn5 In 12e12 In Count(*)) Contains [_usn4 In usn1 Contains False Contains `` Where 0.12 In $7 In 0] Contains Any(`4esn` In `6esn`['s_str'..][010..] Where 12.e12 Ends With 01 Ends With .e1) As #usn8"), - octest:ct_string("Detach Delete 1000 Ends With 1000 Ends With $`4esn`,Filter(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null) Ends With [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1] Ends With _usn3(Distinct $123456789 Ends With $`6esn`) Merge `4esn`=((#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) On Match Set {`8esn`:`8esn` In $@usn5}.`3esn`! =$@usn5[#usn8..][$`1esn`..],All(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $@usn6 Is Null Is Null).`1esn`! =$12[..``][..$7] On Create Set usn2 =_usn3 Is Not Null Is Not Null,`4esn` =.e1 Starts With $`8esn` Union All Create (#usn7 :@usn5)-[`4esn`:_usn3|:`4esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:usn1{`8esn`:usn1 Contains $``}),``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}) Return Distinct $`4esn`[$`2esn`..] As #usn8,#usn8 In $0,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Limit Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`6esn`[$@usn6..]) In {`7esn`:12e12 Ends With 010 Ends With .0} In None(#usn8 In $`5esn` Is Null Is Null Where 123456789 In $usn2 In `6esn`)"), - octest:ct_string("Match `8esn`=((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Where $usn2[0e0..]"), - octest:ct_string("Detach Delete `2esn` In Count(*) In 9e0,$usn2[False..`7esn`][`7esn`.._usn3],999[``..][Null..] Create ((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})),(`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[? *..0X7{`3esn`:`8esn`[$``]}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})-[?:usn1|`3esn`{#usn8:1000[..$`6esn`][..0xabc]}]->(usn1 :_usn3{@usn6:True[..'s_str'][..01]}) Remove ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`5esn`? *010]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null}).`7esn`! Union All Optional Match #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`1esn`=(((`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}))) Where 010 Contains Count(*) Return Distinct *,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] As @usn6 Order By 010 Starts With `7esn` Starts With 9e1 Ascending,123456789 Is Null Descending,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] Desc Skip {#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null Match #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`) Where $`2esn`[..`2esn`] Union All Match ((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})),((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)) Where 123456789[1000] Return Distinct *,010 =~`6esn` As `4esn` With 1000 Contains $#usn7 Contains `6esn`,12.0 Contains 0.e0 As `6esn`,$12[..7][..07] As #usn8 Order By Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending Skip All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)[[usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1]] Limit 0xabc Starts With _usn3"), - octest:ct_string("Create `1esn`=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(usn1 :`4esn`:#usn8{``:0 Is Not Null Is Not Null,`3esn`:usn1 Starts With $#usn7 Starts With `5esn`})) Match @usn6=(((`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}))) Where `7esn`[1e1..07][0x0..Count ( * )] Merge `5esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) On Create Set `1esn`+=_usn4(Distinct `7esn` Starts With $usn2 Starts With .e0) =~`3esn`() =~#usn8(9e0 Ends With $`7esn`) Union Match (((:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]})<-[? *..0x0]->(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})-[? *..0X7{`3esn`:`8esn`[$``]}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}))) Where True[`4esn`][$`6esn`] Unwind 9e12 =~01 =~$`7esn` As usn1 Union All Detach Delete `7esn`[$999][7] Return Distinct 12.0 Contains 0.e0 As `6esn`,Count ( * ) In 010 Order By @usn5 Contains 01 Contains 12 Ascending Skip `2esn`($`4esn` Starts With 1e1) Ends With None(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) Ends With Filter(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Limit 0.12 Ends With $usn1 Ends With $@usn5 Unwind 12.e12 Contains $`5esn` As #usn7"), - octest:ct_string("Merge ((:`2esn`:`3esn`{`7esn`:$_usn4[#usn8..]})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)) Remove [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`6esn`[$@usn6..]|010 =~$usn2 =~1e1].@usn6? With Distinct 01234567 Ends With 0x0,[`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As #usn8,$1000 Is Not Null Is Not Null Where True[Count(*)..][1e1..]"), - octest:ct_string("Return *,[`4esn` In 's_str'[12..'s_str'] Where 9e1 Contains $`3esn` Contains 01234567][[7[..12e12][..$`6esn`]]..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}],$999 Ends With $`3esn` Ends With `8esn` Order By .12[..$`6esn`] Descending,@usn6(Distinct Null[0e0][12])[..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]]][..`8esn`(010 =~`6esn`)] Descending Skip Count(*)[True] Limit 0xabc Ends With $7 Ends With $`2esn`"), - octest:ct_string("Return 123.654 =~$#usn8 =~`8esn` As `6esn`,@usn6[`5esn`..$`3esn`] As ``,Null[1.e1..] As _usn4 Limit #usn8 Is Not Null Union All Merge `2esn`=(:`1esn`)<-[`2esn`?:usn2|#usn8{`6esn`:0X7[.e12..01234567],@usn6:`7esn`[...e1][..\"d_str\"]}]->(`5esn` :`8esn`{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}) On Match Set _usn3+=07 In Count ( * ) In \"d_str\" Match (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0) Remove (usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})._usn4?,usn1:`3esn`:`1esn`,{`2esn`:9e1 In 01 In 999,`5esn`:$@usn6[..$usn1]}.@usn5!"), - octest:ct_string("Return Distinct Single(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`) Is Null As `8esn` Order By @usn5 Is Not Null Is Not Null Ascending,00[``..][$`4esn`..] Desc,usn2 Ends With $`5esn` Ends With `2esn` Asc Skip [usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..] Union Optional Match (`5esn` {_usn4:0X7 =~``}),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null}))"), - octest:ct_string("Return Distinct $#usn8[1e1][9e1] As @usn5,$`3esn`[`2esn`...e0] As _usn3,.e1 Starts With $`8esn` Skip 0x0 =~$`7esn` =~@usn6 Limit [$_usn3[$`4esn`..Null],0x0 Contains $`8esn` Contains `6esn`,\"d_str\" =~`6esn` =~0Xa] Contains [@usn6 Starts With `7esn` Starts With Null] Contains `6esn`(Distinct $`4esn`[usn1..$#usn8][12.0..`3esn`],12.e12['s_str']) Union Create `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Optional Match ((:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})),_usn4=(({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})<-[#usn7]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn4:usn1)) Where _usn4 Ends With 01 Ends With $`1esn`"), - octest:ct_string("With *,({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]}) =~`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0),\"d_str\" =~`6esn` =~0Xa As `4esn` Detach Delete 0.0[.e12][7],usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null,#usn8[$_usn3..7][``..$`5esn`]"), - octest:ct_string("Unwind True Is Not Null As `` Remove Extract(`4esn` In $`8esn` Starts With 1000 Where `5esn` In 12|010 Contains 0X0123456789ABCDEF).`2esn`,{#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}.`2esn`! Create (_usn3 :_usn4:usn1)<-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(:@usn6:`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}),#usn8=(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[usn1?:`8esn`|:usn1]->(`2esn` {usn2:$999[12.0..]})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Union All Unwind _usn4 Is Not Null Is Not Null As `2esn` Union Create _usn4=(usn1 :_usn4:usn1)<-[`5esn` *0..010]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) With Distinct *,$_usn4[#usn8..] As `3esn` Order By $usn2[0e0..] Ascending,$0 =~`3esn` Descending Skip [\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Where _usn3 =~00 Detach Delete Any(#usn7 In 01234567[$`3esn`..] Where 00 In 1e1)[[usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0|0xabc[12.e12..`1esn`]]..][[@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2]..],12.e12 Ends With 01 Ends With .e1,07[12e12]"), - octest:ct_string("Merge `3esn`=(({`5esn`:0.12 Contains .e1})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0})-[:@usn5|`8esn` *123456789..999{usn1:9e12 Is Not Null Is Not Null}]-(#usn7 :`5esn`)) Union All Detach Delete $`7esn` In 0.e0 In `4esn` Delete Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)[..(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})][..Any(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)],123.654 Starts With usn1 Starts With @usn5"), - octest:ct_string("Unwind All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])] As #usn8 Merge ((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) On Match Set usn1+=_usn4[$`4esn`][0X7] On Create Set `4esn` =010 In `7esn`,usn2+=0.e0[@usn6][0x0] Unwind 0X7[..12e12] As _usn3"), - octest:ct_string("Remove @usn6(Distinct $123456789[..0x0][..`4esn`],07[$999]).@usn6 Create ((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)),_usn3=({usn1:$1000 Contains $`3esn`})<-[?:`1esn`{`1esn`:123456789[1000]}]->(:usn1{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})-[@usn6?:#usn7|:_usn4 *00..]->(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Detach Delete Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1)[00..],({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) In None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 9e0[$_usn3..0X7][7..$#usn8]) In _usn3(Distinct 010[@usn5..]),Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)]"), - octest:ct_string("Remove {_usn4:00 In 0.12 In `5esn`,@usn5:0X7 =~.0 =~\"d_str\"}.`6esn`? Return Distinct @usn5[..True][..0X7] As #usn8,[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..] Order By 0 Ends With $7 Ends With _usn3 Ascending Skip \"d_str\"[$`7esn`][$1000] Limit False[0Xa..$@usn5][$`6esn`..12e12] Remove `4esn`:``,{#usn7:0[0.12..]}.usn2! Union All Create (({``:12 Is Null Is Null})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)})),#usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})) Remove (`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(`4esn` :#usn7).@usn5?,All(`4esn` In `6esn`['s_str'..][010..] Where \"d_str\" =~`6esn` =~0Xa).``!,(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}).usn1! With Distinct `2esn` Contains $999 As #usn7,$123456789[False.._usn3] As `1esn` Order By (usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Ends With [$`8esn` =~$usn2,0X0123456789ABCDEF[..usn1],`` In `6esn`] Descending Skip 0X7[..12e12] Union Optional Match ``=(((:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(:`7esn`{@usn6:0.0[999..],#usn8:Null Is Null Is Null})-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]}))) Where 1000 Ends With 1000 Ends With $`4esn` Remove [_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4].@usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`!,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`)._usn4 Unwind @usn6(Distinct `` Starts With @usn5) =~Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]) =~#usn7(Distinct $0 =~$0 =~.e0) As `2esn`"), - octest:ct_string("With (_usn3 :`6esn`:`7esn`{usn1:$_usn3[9e1][$_usn4],`8esn`:123456789 =~_usn4 =~$0})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-({`1esn`:@usn6}) In _usn3(0x0[0X7..][usn1..]) In None(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str') As _usn4 Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending Skip 07[12][$`6esn`] Where $1000 Contains $`3esn` Remove [12e12 Starts With $123456789 Starts With 12.0].usn1 Merge (((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) On Create Set @usn6 =`3esn`[..7][..12e12]"), - octest:ct_string("Return *,$_usn3 =~`7esn` =~$_usn4 As `` Skip Count ( * ) Ends With 1000 Ends With 12 Limit .e1[..$`4esn`][.._usn4] Remove ({`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[ *..0x0{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}]-(`5esn` {`8esn`:0.0[12...12]})._usn3,All(`4esn` In `6esn`[1e1..] Where 07[12e12]).`3esn`!,[0Xa[$``..][01234567..]].@usn5 Delete 00[01234567][False] Union All Unwind {#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `5esn` Detach Delete `7esn` Starts With $`` Starts With $#usn7 Create `4esn`=((`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})),_usn3=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]}))"), - octest:ct_string("Unwind Count(*)[`7esn`..$12] As `1esn` Union Optional Match `7esn`=(@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Union With Distinct *,$usn2[..12.0],$`2esn`[``..] As `3esn` Skip _usn3[.0] Match (`1esn` :`1esn`) Unwind $@usn5 Contains $`7esn` Contains #usn8 As ``"), - octest:ct_string("With Distinct .12[#usn7][$`8esn`],12 Ends With 07 Ends With @usn6 As usn1 Order By $999[..`1esn`] Ascending,Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending,[$`8esn` =~$usn2][Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..] Asc Create #usn8=((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Match (({#usn7:Count ( * )[@usn6..0x0]})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})) Where 0X7[0e0..] Union Create #usn8=((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Remove `8esn`(Distinct 00 In 1e1).usn2!,Single(`4esn` In `6esn`['s_str'..][010..] Where 0e0 Is Not Null Is Not Null).`7esn`! Union Return Distinct Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0]) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where Count(*)[True]) In Extract(`4esn` In 's_str'[12..'s_str'] Where 0xabc Ends With $#usn7 Ends With #usn8|.e1 Starts With 0.0 Starts With `6esn`) As #usn7,@usn5 Starts With \"d_str\" As `` Match ((`7esn` :`2esn`:`3esn`{@usn6:9e0 Ends With $`7esn`})),`6esn`=((`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]}))"), - octest:ct_string("Merge ((:#usn8)<-[`2esn`?]-(:usn2:@usn6{_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})<-[`5esn`? *999..{#usn7:0X7[12]}]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})) On Create Set `4esn` =.e12[.12..][_usn4..] On Create Set #usn7+=$123456789[0.0..] Detach Delete {`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)],({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) In None(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn8 Ends With `4esn` Ends With $`4esn`) In Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`]) Union Merge usn2=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) On Create Set None(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0).`4esn`! =0[usn2..],[@usn6[$`3esn`]].`4esn` =01 In _usn3 In 12,`1esn`+=123456789 =~usn1"), - octest:ct_string("Match @usn5=(((:`1esn`{#usn7:1e1[`6esn`..]})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where $0[01234567..00][$`2esn`..$@usn6] With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null,0xabc[$@usn5] As `7esn`,.e0[usn2..] As _usn3 Skip 0x0 In `8esn` In 999 Where 07[0..`4esn`]"), - octest:ct_string("Remove (@usn5 :`3esn`:`1esn`{_usn3:#usn7 Starts With `1esn`})-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`)<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2}).#usn7,None(@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2).`5esn`? Union Create #usn7=(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))),`5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Union All Merge `1esn`=(((:_usn3{@usn6:$`7esn` Is Null Is Null})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)<-[`3esn`? *999..{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`}]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) On Match Set _usn3+=01 In 01 In 12,#usn7 =$@usn5,`1esn`:`5esn` Detach Delete $@usn6[_usn3..0.e0] With [#usn8 In $`5esn` Is Null Is Null][Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where #usn7[..$1000][..01])..][[@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]]..],(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[usn1?:`8esn`|:usn1]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Is Null Is Null As #usn7,1e1[..#usn8][..'s_str'] As #usn8 Order By `3esn`[$123456789][$#usn7] Ascending,{@usn6:12.0[``],_usn4:$`3esn` Contains 0X0123456789ABCDEF Contains 00} Ends With Single(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Ends With Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999|12.0[``]) Asc Skip (:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0}) Starts With Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) Starts With [12.0 In 1000 In _usn4] Limit 00[01234567][False]"), - octest:ct_string("Remove All(#usn8 In $`5esn` Is Null Is Null Where 01234567 Ends With 12.0 Ends With 0X7).`8esn`! Detach Delete [.0[01][$12]][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`3esn` =~$`7esn` =~False|7[..12e12][..$`6esn`]]],07[07]"), - octest:ct_string("Create (((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]-({usn1:0x0[0X7..][usn1..]}))),(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(`7esn` :`8esn`{`4esn`:00 Ends With .12 Ends With `4esn`})-[ *07..]->(usn2 :@usn6:`7esn`) Remove [_usn3 Ends With 0x0 Ends With 01234567,9e0[$_usn3..0X7][7..$#usn8]].`6esn` Create @usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})) Union All Unwind All(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`)[[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]]..][({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})..] As _usn3 Union All Remove Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]|7[..`1esn`]).``,Extract(#usn8 In $`5esn` Is Null Is Null Where `3esn`[..7][..12e12]).@usn6,(:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[?:`1esn`]-(_usn4 :@usn6:`7esn`{@usn5:$_usn3[$`4esn`..Null]})._usn3!"), - octest:ct_string("Delete #usn8 Ends With 1e1 Remove ({_usn4:010 =~$usn2 =~1e1,`2esn`:0X0123456789ABCDEF Is Not Null})<-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]-(`8esn` :`1esn`)<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(#usn7 :@usn5)._usn4?,None(#usn8 In $`5esn` Is Null Is Null Where 01234567 Ends With 12.0 Ends With 0X7).@usn5! With Distinct *,9e12[_usn3] As `8esn`,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn` Order By `6esn` Starts With $`5esn` Desc,$`7esn` Ends With 07 Ends With 07 Desc Where 's_str'['s_str'..$usn2][_usn3.._usn3] Union Unwind Extract(`6esn` In 0X7 =~`` Where $_usn3[9e1][$_usn4]|@usn6[..0xabc][..$#usn7])[[@usn6 In @usn5 In $`6esn` Where $@usn5 In 12e12 In Count(*)|999[$`6esn`]]..Any(_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`)][{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`],usn2:@usn6[`3esn`..][$7..]}..`7esn`($123456789 Ends With $`6esn`)] As _usn4 Merge `8esn`=(({_usn3:$0 Ends With $#usn7 Ends With .12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[?:``|:_usn4 *..0X7]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}))"), - octest:ct_string("Remove {``:7[..`1esn`],_usn4:.e1 Ends With _usn4 Ends With @usn5}.usn2? Detach Delete (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[`4esn`{#usn8:Null[0e0][12],`2esn`:`8esn` In $@usn5}]-({_usn3:999 In $_usn4 In 0X7,`1esn`:1e1 In $#usn8 In 12e12}) Contains 0X0123456789ABCDEF Contains Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1]) Union All Unwind `1esn`(Distinct 0.0[999..],9e0 Ends With $`7esn`) Ends With (`7esn` {`8esn`:Count ( * ) =~Count(*)})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}) Ends With (#usn7 :`2esn`:`3esn`)<-[`2esn`?*..]->(:#usn8{`5esn`:0 Contains 12e12}) As usn1 Remove Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]|@usn6 Contains .e1 Contains $`4esn`).`4esn`!,@usn6:usn2:@usn6,None(`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]).`2esn`! Union All Create ((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(@usn5 {_usn4:010[$@usn6],`6esn`:123456789[1e1..0.0]})<-[`6esn`?:`2esn`|usn2 *01234567..12]->(:`7esn`{#usn7:True =~@usn5 =~$`1esn`})),`6esn`=({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Remove None(usn1 In 00 Starts With _usn3 Where 123456789[`4esn`..][Count ( * )..]).#usn8!,All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..])._usn4"), - octest:ct_string("Unwind [`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) As #usn8 Union All Optional Match usn2=((`5esn` :usn2:@usn6{`5esn`:0Xa In .e1 In Count(*)})),_usn4=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]}))"), - octest:ct_string("Remove None(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567).`8esn` Union Merge usn2=(:`8esn`{usn2:7 Contains 9e1})<-[_usn3?:`7esn`|`2esn` *010]-(#usn8 :`4esn`:#usn8)-[`8esn` *..0x0{#usn7:Count ( * )[Count ( * )..12e12][usn1..1000],`4esn`:010 Is Null Is Null}]->(@usn6 ) Unwind 0x0 =~_usn4 As `5esn`"), - octest:ct_string("Return $_usn3[Null] As usn1,.e1 Starts With 0.0 Starts With `6esn` Order By All(@usn5 In $#usn8 Is Null Is Null Where 's_str'[..0.0][..$`4esn`]) Is Null Is Null Asc,`3esn`(.e0 =~`5esn`)[Single(`6esn` In 0X7 =~`` Where $`3esn` =~Null)][[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $_usn3[$`4esn`..Null]|False[`2esn`..#usn8]]] Asc,00 In 12.e12 Descending Limit $1000[01234567] Merge usn2=(:`8esn`{usn2:7 Contains 9e1})<-[_usn3?:`7esn`|`2esn` *010]-(#usn8 :`4esn`:#usn8)-[`8esn` *..0x0{#usn7:Count ( * )[Count ( * )..12e12][usn1..1000],`4esn`:010 Is Null Is Null}]->(@usn6 ) On Match Set usn1+=Extract(#usn7 In 01234567[$`3esn`..] Where 0X7 In $999 In $``)[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..],Any(_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]).#usn8! =#usn7 Starts With 0x0 Starts With Null On Match Set @usn6+=0X7 In 123456789 In $`5esn`,({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[`4esn`?{`1esn`:$`8esn`[..123456789]}]-(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12}).`3esn` =0e0 Is Not Null Is Not Null Merge _usn4=((@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) On Match Set Extract(usn2 In 1000 Contains 0.e0 Where $1000[01234567]|$`6esn`[Count(*)..0.e0][0.0..Count ( * )]).`8esn`! =$123456789[False.._usn3],`3esn`(Distinct 0X7 In $999 In $``,$0 Is Not Null).`7esn`? =0.e0[123.654],`1esn`+=True Starts With 12.0 Starts With $@usn5 Union All Return $`2esn`[``..] As `3esn`,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As `3esn`,`7esn`[...e1][..\"d_str\"] Unwind _usn4 Starts With 0X7 As `4esn` Merge `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) On Create Set `5esn` =999[.e12][01],Extract(usn1 In 0x0[..`4esn`] Where @usn6[$`3esn`]).#usn8? =`1esn` In 999 In $#usn7,usn1 =12.e12[0e0..7] On Match Set `1esn`+=Null[0e0][12],Filter(usn1 In 0x0[..`4esn`] Where $`` Ends With 12e12).usn1! =Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] Union All Unwind _usn4 Starts With 0X7 As `4esn` Return Distinct *,\"d_str\"[Count ( * )] As `7esn`,0x0[123456789] As @usn6 Skip `1esn`[@usn6..$123456789]"), - octest:ct_string("With Distinct $#usn8[1e1][9e1] As @usn5,$`3esn`[`2esn`...e0] As _usn3,.e1 Starts With $`8esn` Skip 0x0 =~$`7esn` =~@usn6 Limit [$_usn3[$`4esn`..Null],0x0 Contains $`8esn` Contains `6esn`,\"d_str\" =~`6esn` =~0Xa] Contains [@usn6 Starts With `7esn` Starts With Null] Contains `6esn`(Distinct $`4esn`[usn1..$#usn8][12.0..`3esn`],12.e12['s_str'])"), - octest:ct_string("Remove `8esn`:`4esn`:#usn8,{`3esn`:12[usn1][True],`2esn`:9e1 Is Null Is Null}.`7esn`? Unwind 0Xa Is Null Is Null As @usn5 Union With Distinct *,`3esn` =~`3esn` =~$`6esn` As `7esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 123456789[$#usn7..]) Contains [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1] Skip .12[..`6esn`][..\"d_str\"] Limit [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] Where `5esn`[`1esn`] Delete 7[..0X7][..'s_str'],9e0 Ends With $`7esn`,$0 Ends With $#usn7 Ends With .12"), - octest:ct_string("Merge (@usn6 {`4esn`:$`2esn`[..`2esn`]})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null}) On Create Set [$usn1 In 1000 In $#usn7,$#usn7 In 12.0 In 0X0123456789ABCDEF,9e0 Is Not Null]._usn3 =All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`! =0xabc Starts With _usn3 On Match Set `2esn` =$usn2[False..`7esn`][`7esn`.._usn3],``+=_usn4 Ends With 01 Ends With $`1esn`,``+=01 Ends With .e0 Delete `2esn`[$`1esn`..][$_usn3..],7 =~9e0 =~'s_str' Merge ((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)) On Create Set All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 9e12[usn2..7][.e1..$`7esn`])._usn3? =$`1esn` =~$`1esn` =~#usn7,`2esn`+={`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] On Create Set None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7).`2esn`! =.e1[..$`4esn`][.._usn4]"), - octest:ct_string("Delete Count ( * )[1000],usn2 =~0x0,@usn6 Starts With `3esn`"), - octest:ct_string("Create ((@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`)),usn2=((`1esn` :usn2:@usn6)-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}))"), - octest:ct_string("Delete usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`]) Is Null,.12 Is Not Null Is Not Null,1e1 Starts With #usn8 Starts With 1.e1 Match ((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})),(_usn3 :_usn3) Union Return Distinct *,[#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|@usn6 Starts With `7esn` Starts With Null] Is Not Null Is Not Null,`8esn`[_usn3..$#usn7] Order By 's_str' Starts With 1000 Starts With #usn8 Descending Remove {`1esn`:0xabc[12.e12..`1esn`]}.`1esn`! Union All Return *,$@usn6 =~$#usn8 =~$#usn7 As `7esn`,#usn7 Ends With `4esn` Ends With @usn5 As `` Order By (`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Ascending,{@usn6:0X0123456789ABCDEF[..usn1]}[..`7esn`($`3esn` =~$`6esn` =~`8esn`)][..(`4esn` {`6esn`:$12[..``][..$7]})<-[#usn7]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})] Ascending Skip Count ( * )[..usn1][..12.e12]"), - octest:ct_string("Match (`4esn` :@usn5{``:$`2esn`[$`2esn`..],@usn6:010 =~`6esn`}) Remove `2esn`:`2esn`:`3esn` Union All Return $_usn4[12e12][`4esn`] As `5esn`,@usn6[`5esn`..$`3esn`] As ``,0.0[..12e12][..$0] Skip `4esn`($`8esn`[..$usn1][..'s_str'],010[@usn5..]) Ends With [123.654 Contains .e1 Contains `1esn`] Ends With {`8esn`:0X7[..12e12]} Limit 0.e0[9e1..][0.0..] Merge (({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8)) On Match Set `8esn`:`4esn`:#usn8,Extract(`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]|_usn3 Is Not Null Is Not Null).`6esn`? =#usn8 Is Not Null,usn1 =Extract(#usn8 In $`5esn` Is Null Is Null Where @usn6 Contains .e1 Contains $`4esn`) In Filter(`4esn` In `6esn`['s_str'..][010..] Where 12e12[Count ( * )..][usn2..]) In [123456789 In $usn2 In `6esn`,Count(*) Ends With 010]"), - octest:ct_string("Remove {_usn3:$_usn4[$`1esn`]}.@usn6!,`8esn`($_usn4[#usn8..],123456789 Starts With `2esn` Starts With .0).usn1?,Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|1e1 Is Null).#usn7? Create usn1=((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)),(:usn1) Union All Delete `8esn`[_usn3..$#usn7],$`6esn` Is Not Null Is Not Null,Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) Union All Create (usn2 :#usn7),#usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})))"), - octest:ct_string("Merge `8esn`=()<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Return *,$@usn6[..12e12],`8esn` Ends With 0X0123456789ABCDEF Ends With `1esn` As usn2 Skip 1000[..$`6esn`][..0xabc] Limit $`8esn`[..$``] With Distinct *,`3esn` =~`3esn` =~$`6esn` As `7esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 123456789[$#usn7..]) Contains [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1] Skip .12[..`6esn`][..\"d_str\"] Limit [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] Where @usn6[$`7esn`]"), - octest:ct_string("Detach Delete [Count ( * )[Count ( * )..12e12][usn1..1000]][None(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..])..][(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})<-[`2esn`:usn1|`3esn` *0Xa]->(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})..],0Xa[..$``],_usn3 Contains @usn6 Contains 1.e1"), - octest:ct_string("Merge (({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})) On Create Set #usn7:``,({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})<-[?:@usn5|`8esn` *..0X7]-(:usn1).`4esn` =`6esn` Starts With $`5esn`,[`6esn` In 0X7 =~`` Where 0.12[Null..]]._usn4 =Count ( * )[`3esn`..][`2esn`..] On Match Set `3esn` =010 In @usn5 In `5esn` With 01234567 Ends With 0x0,[`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As #usn8,$1000 Is Not Null Is Not Null Order By 's_str'['s_str'..$usn2][_usn3.._usn3] Asc Skip Extract(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]|1000[..$`6esn`][..0xabc]) Ends With [07[$999],12e12[Count ( * )..][usn2..]] Limit Null[01234567][01234567] Where 0X7[..12e12] With *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `3esn`,07[$999] As `` Where 9e0[$_usn3..0X7][7..$#usn8] Union Optional Match _usn4=(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}),`6esn`=((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})) Union Detach Delete Extract(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null) =~Any(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null) =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1],$7 Contains 0x0 Contains ``,[\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Remove [01234567[Null..0.e0][Count(*)..$#usn8],#usn8 Contains .e0 Contains $`8esn`,123456789[1e1..0.0]].`1esn`? Create (:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa}),(`3esn` :usn2:@usn6)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]})-[_usn3]-(`` {`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'})"), - octest:ct_string("Unwind .e1 Starts With $`8esn` As `2esn` Union All Unwind All(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) =~None(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0) =~None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `7esn` Starts With $usn2 Starts With .e0) As `` Unwind `7esn` Starts With $`` Starts With $#usn7 As _usn3 Union Create `1esn`=(`3esn` {``:.e0[7..$`3esn`]})"), - octest:ct_string("Optional Match @usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})),_usn3=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Where $`5esn` Contains Count(*) Contains #usn7 Union All Remove Extract(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`).`3esn`?,{@usn5:0.e0[@usn6][0x0]}._usn4 Optional Match (((`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})<-[?:`7esn`|`2esn`]-(:`6esn`:`7esn`{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}))) Where 12.0[``]"), - octest:ct_string("Optional Match (({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) With Distinct $`2esn`[``..] As `3esn`,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn`,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] As @usn6 Order By `7esn`[1000..][$123456789..] Desc,$#usn8 In .e12 In 9e1 Descending,$@usn5 Contains $`7esn` Contains #usn8 Desc Detach Delete $`3esn` Is Not Null Is Not Null,$1000 Ends With 1e1 Ends With 123.654"), - octest:ct_string("Remove Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $@usn6 Is Null Is Null).`4esn`,All(@usn5 In $#usn8 Is Null Is Null).usn1! Union Merge (`7esn` :_usn4:usn1)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})-[`1esn`{`2esn`:.12 Starts With @usn5 Starts With $#usn8}]->(:usn1{`6esn`:1000 Contains 0.e0,`7esn`:$@usn6[..$#usn7][..12.e12]}) Unwind `7esn`[1000..][$123456789..] As #usn7 Remove @usn6(_usn4[0xabc..],$usn1[_usn4..][usn2..]).`4esn`?"), - octest:ct_string("Create ``=(`4esn` :`8esn`{_usn4:0 Is Null Is Null}),(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})-[`5esn`?:`2esn`|usn2 *999..]->(@usn6 :``{@usn5:@usn5 Starts With 12e12 Starts With @usn5})-[_usn4?:`5esn`|`1esn`]-(`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12}) With Distinct [@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7|$999 Ends With $`3esn` Ends With `8esn`] Starts With [$`6esn` Is Null Is Null,0Xa Is Not Null Is Not Null,0X7 In 123.654 In $`2esn`] Starts With [01234567[Null..0.e0][Count(*)..$#usn8]] As ``,Count ( * )[@usn6..0x0] Limit $`8esn`[..$usn1][..'s_str'] Union All Create (:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}) Merge `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) On Match Set usn2+=$`4esn`[9e1..][0..],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null},(usn1 :#usn7)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->(`4esn` {`7esn`:.e0[..999][..0X7]}).usn2 =$`3esn`[`2esn`...e0] Unwind [@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] As `3esn` Union All Create (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}))),`4esn`=((`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})) Return $`6esn` =~$#usn8 As #usn8 Order By (#usn7 :#usn8)-[`6esn`:`4esn`|:`7esn` *..0x0]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})[Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])][Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])] Descending Limit Null Contains 9e1"), - octest:ct_string("Return Distinct *,$999[$1000] Order By usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Ascending,.e12 Contains 9e0 Ascending Remove @usn6(@usn5[..True][..0X7]).`3esn`?,[7 In 0xabc,9e0[True..`1esn`]].`1esn`?,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]|$`6esn`[$`1esn`][1000]].`4esn`! Union All Detach Delete (`7esn` :_usn4:usn1)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`) Starts With ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2) Starts With Extract(usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]|07[`6esn`..][`5esn`..]) Return Distinct All(`6esn` In 0X7 =~`` Where 0.12[Null..]) Is Null Is Null As ``,$0 Contains `7esn` Contains $`8esn` As `3esn`,$#usn7[True..][$0..] As usn1 Order By {`1esn`:9e1[0.e0..][#usn8..]} Starts With Single(`4esn` In 's_str'[12..'s_str'] Where @usn5 In 0X0123456789ABCDEF) Starts With All(#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) Ascending,#usn8 Ends With $@usn6 Ends With _usn4 Desc Skip [@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Delete [True[..'s_str'][..01]] In Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999]) In All(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`]),$`5esn` Starts With _usn3 Starts With @usn5"), - octest:ct_string("Delete 0x0[...e12][..@usn5],$``,@usn6[$`7esn`] Return *,.e1[$_usn4][1e1] As `7esn` Order By 9e0 Ends With $`7esn` Asc Skip 's_str'[12..'s_str']"), - octest:ct_string("With Distinct *,#usn8 Starts With 0x0 Starts With $@usn5,`1esn` In 07 In 0e0 As `1esn` Skip $7[$`8esn`..7][$1000..$`5esn`] Merge ((_usn4 {`8esn`:9e1 In 01 In 999}))"), - octest:ct_string("Return Distinct $`5esn` In `2esn` In $12 As `3esn` Order By [@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0] Is Null Descending,.e1 Starts With $`8esn` Descending,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] Asc Skip $@usn5 Unwind 9e0 Ends With $`7esn` As `7esn`"), - octest:ct_string("Remove Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $_usn3[$`4esn`..Null]).usn2,Filter(@usn5 In $#usn8 Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8).#usn8? Remove ``(Distinct 0.12 In $`4esn` In `6esn`,12e12[_usn3..][$@usn5..])._usn3!,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]|12e12[Null]].@usn6 Union All Return *,.e1[$_usn4][1e1] As `7esn` Order By 9e0 Ends With $`7esn` Asc Skip 's_str'[12..'s_str']"), - octest:ct_string("Unwind Extract(@usn6 In @usn5 In $`6esn` Where $`5esn` Contains $@usn6|$0[7..][Null..])[[`6esn` In 0X7 =~`` Where 9e1[0.e0..][#usn8..]]] As @usn6 Unwind 999 Contains `7esn` As `7esn` Union All Remove usn2:#usn8,Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null).`7esn`? Remove None(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null).`5esn`,(#usn7 :#usn8)-[`6esn`:`4esn`|:`7esn` *..0x0]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1}).@usn6"), - octest:ct_string("Unwind 07[12e12] As `4esn` Remove Extract(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`).`5esn`?,(`2esn` {`3esn`:$999[12.0..]})-[:usn2|#usn8 *01234567..12{usn2:$`3esn` In $12 In 's_str'}]-(usn1 :_usn3).`5esn` Union All Match (_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[`7esn`?:`4esn`|:`7esn` *..0X7]-(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) Create (((`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})<-[?:`7esn`|`2esn`]-(:`6esn`:`7esn`{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})))"), - octest:ct_string("Return count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null As `6esn`,All(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) =~None(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0) =~None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `7esn` Starts With $usn2 Starts With .e0) As ``,`6esn`['s_str'..][010..] Order By `4esn`[$#usn7] Ascending Skip `7esn` Ends With $usn2 Ends With 999 With *,0.12 In 01 In $`3esn` As @usn5 Order By Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}) Desc,$12[01..][1.e1..] Descending,`7esn`[Null..][@usn5..] Asc Limit Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null)[count(Distinct 0.12 Contains $12 Contains `8esn`)..[$`1esn` Is Null Is Null,9e1 In 01 In 999]] Where $@usn6 =~usn1 Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where True Contains @usn6|123456789 Starts With `2esn` Starts With 9e12).usn2?"), - octest:ct_string("Detach Delete $@usn5[0.12..][@usn5..],07[07] Union All Optional Match _usn3=(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),#usn8=(((`3esn` )-[?:#usn7|:_usn4]-(usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]}))) Where 010 Contains 0X0123456789ABCDEF Union Unwind $`4esn` Contains `6esn` Contains #usn7 As @usn6 With *,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Skip $`2esn`[..7][..$usn1] Limit None(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`) Contains `3esn`($usn2 Contains 12.e12 Contains 00) Where $`2esn`[$`2esn`..] With Distinct $`2esn` Starts With .e0 Starts With 12.0 Order By ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] Ascending,0e0 =~Count(*) =~0Xa Descending,{`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])] Asc"), - octest:ct_string("Match #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) Where 12e12 Is Not Null With 0Xa[0xabc..] As usn1,`5esn` In 12 As usn2,[#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`][Any(`4esn` In $`8esn` Starts With 1000 Where 123.654 Starts With usn1 Starts With @usn5)..] As `8esn` Skip #usn7 Contains 07 Limit $999[$1000] Union Merge @usn5=(((_usn3 :_usn3{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[#usn8:`3esn`|:`4esn` *0..010]-(:usn1{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]}))) On Match Set `3esn`(False In `3esn`).`5esn`! =Count ( * )[Count ( * )..12e12][usn1..1000],#usn7 =(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])],#usn7+=00[01234567][False] On Match Set @usn5 =1e1[..#usn8][..'s_str'],`8esn` =usn2[`3esn`][_usn3] Optional Match ((:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]})),((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Where $`4esn`[12.e12..][0.0..]"), - octest:ct_string("Detach Delete 0X7 In 's_str' In $`1esn` Unwind {@usn5:$`3esn`} Starts With .12 As `8esn` Union All Match `3esn`=(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}),usn2=((#usn8 :`4esn`:#usn8)-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)) Where $`8esn` =~$usn2 Merge _usn3=(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})) On Create Set `4esn`(Distinct .0 Starts With `2esn` Starts With `6esn`).`7esn`! =Filter(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[[1e1[0.0],0 Contains 12e12,$123456789[..0x0][..`4esn`]]],`8esn` =[@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] Merge ((`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}))"), - octest:ct_string("Merge #usn8=(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})<-[``]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[ *00..{`2esn`:$0 Is Not Null}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) On Match Set `1esn`+=Null[0e0][12],Filter(usn1 In 0x0[..`4esn`] Where $`` Ends With 12e12).usn1! =Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] With Distinct 's_str'[..0.0][..$`4esn`] As `2esn`,#usn7 Contains .0 Contains .e1,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Skip `6esn` Starts With $usn2 Starts With 0.0 Limit 9e1 Contains $`3esn` Contains 01234567 Union Detach Delete _usn3[...12][..01234567],010 In `7esn`,{`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00} Starts With Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)"), - octest:ct_string("With *,$@usn6 =~$#usn8 =~$#usn7 As `7esn`,#usn7 Ends With `4esn` Ends With @usn5 As `` Order By (`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Ascending,{@usn6:0X0123456789ABCDEF[..usn1]}[..`7esn`($`3esn` =~$`6esn` =~`8esn`)][..(`4esn` {`6esn`:$12[..``][..$7]})<-[#usn7]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})] Ascending Skip Count ( * )[..usn1][..12.e12] Where `6esn` =~$_usn3 Merge ((({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)<-[#usn7 *123456789..999]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}))) On Create Set `8esn` =`` Return Distinct False Ends With $`8esn`,$`7esn`[$usn1..][0.0..] Order By {`8esn`:$123456789 Is Null Is Null,_usn3:$`4esn` Starts With 1e1}[(#usn7 :`2esn`:`3esn`)<-[`8esn`?]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})..All(_usn4 In usn1 Contains False Contains `` Where $`8esn`[$``..$7][$1000..$`7esn`])] Descending,$`7esn` In $7 Ascending Limit [@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]|$`6esn`[$`1esn`][1000]][All(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`)] Union All Merge ((#usn8 :`4esn`:#usn8)<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] On Create Set `4esn` =.12 Is Not Null Is Not Null,{@usn6:True[..'s_str'][..01]}.`2esn` =12.e12[...0][..0x0],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Return $_usn4[12e12][`4esn`] As `5esn`,@usn6[`5esn`..$`3esn`] As ``,0.0[..12e12][..$0] Order By usn2[$`1esn`...0] Descending,123.654 Is Not Null Is Not Null Desc Limit 0X7 =~`4esn` =~`8esn` Return Distinct {@usn6:`7esn` In 999 In @usn6} Starts With Extract(usn1 In 0x0[..`4esn`] Where 0x0|07 Ends With 07) Starts With Filter(usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12),False Ends With $`8esn`,``[$`3esn`][$`2esn`] As usn1 Order By $`6esn` Is Null Is Null Desc Limit 999 In $_usn4 In 0X7"), - octest:ct_string("With *,None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`) Is Null As @usn6,123456789 =~_usn4 =~$0 As usn1 Unwind ({`8esn`:$123456789 Contains 01 Contains 0.12})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(usn1 :#usn8)-[`3esn`? *999..]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})[Single(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)..$#usn7] As `7esn` Union Remove [@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1|00].`3esn`!,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]|$`6esn`[$`1esn`][1000]].`4esn`! Unwind Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] As `8esn`"), - octest:ct_string("Merge `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Return $`4esn` Contains 0Xa,010 In `7esn` Limit False Contains `3esn` Union All Return Distinct `3esn` =~`3esn` =~$`6esn` As `7esn` Limit $`7esn` Is Null Is Null"), - octest:ct_string("With Distinct $`1esn` Starts With $999 As #usn8,False In $`7esn` In .0 Order By .e12[usn2][01] Desc,0 Ends With $7 Ends With _usn3 Ascending,Extract(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|Null Starts With $`7esn` Starts With `2esn`) =~{`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0} Descending Skip [1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Limit \"d_str\" Where Count(*) In 01 In .0 Remove `3esn`:_usn3,{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}._usn3? Union All With Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1) Skip @usn5 Starts With 12e12 Starts With @usn5 Where 07[Count ( * )...e1][0X0123456789ABCDEF..$7] Detach Delete 999[$`8esn`],Single(#usn7 In 01234567[$`3esn`..])[(`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']})][[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0]],$#usn7 In .e1 In 01 With $`2esn`[``..] As `3esn`,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As `3esn`,`7esn`[...e1][..\"d_str\"] Order By [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]) Asc Limit $#usn8 Is Null Where $123456789 In Count(*) In .e1"), - octest:ct_string("Remove [Null Contains _usn4].`8esn`!,Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn2[`3esn`][_usn3]).`7esn`?,{#usn7:False[.e1..Null],`1esn`:9e0 Is Null Is Null}.@usn5!"), - octest:ct_string("Create _usn3=((({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']})-[:usn2|#usn8*..]-(`5esn` :`7esn`))) Optional Match `8esn`=(($12)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)),(:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) Where 1e1[..#usn8][..'s_str']"), - octest:ct_string("Merge `3esn`=(({`5esn`:0.12 Contains .e1})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0})-[:@usn5|`8esn` *123456789..999{usn1:9e12 Is Not Null Is Not Null}]-(#usn7 :`5esn`)) On Match Set @usn5+=`` In `6esn`,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`` Is Null Is Null).`` =12.e12 Is Not Null On Match Set `` =None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..],#usn7($`8esn`[$``..$7][$1000..$`7esn`],`2esn` In 7 In usn2).`6esn`? =$_usn4['s_str'..],`4esn`+=$`7esn` Ends With $usn2 Remove {#usn8:123456789[$#usn7..],#usn7:07[12e12]}.usn2,(#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(_usn4 {`1esn`:010[@usn5..]})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(usn1 :_usn3{@usn6:True[..'s_str'][..01]}).`8esn`! Union Optional Match (({#usn7:Count ( * )[@usn6..0x0]})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})) Where @usn6[`5esn`..$`3esn`] Match `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Match ((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})),(_usn3 :_usn3)"), - octest:ct_string("Create (_usn4 {`8esn`:9e1 In 01 In 999})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`4esn` {`2esn`:@usn6[`5esn`..$`3esn`],`7esn`:$`1esn` Is Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`),`8esn`=(`` {`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}) Return 01 In 01 In 12 As #usn8,$`6esn`[$`1esn`][1000],[#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|@usn6 Starts With `7esn` Starts With Null] Is Not Null Is Not Null Order By 12.e12 Contains `5esn` Ascending,{#usn8:#usn7 Ends With 9e1} Is Not Null Is Not Null Ascending Limit 0.12 Contains $12 Contains `8esn`"), - octest:ct_string("Return Distinct *,0['s_str'][Null] As #usn7,{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null As #usn8 Order By `4esn` =~$`3esn` =~$123456789 Ascending,{`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])] Asc,$`4esn`[..usn1] Ascending Skip [@usn5 In 0X7 =~.0 =~\"d_str\"|#usn7 Starts With `1esn`][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn`[...e1][..\"d_str\"])..][`2esn`(Distinct 12e12[Null],0xabc[12.e12..`1esn`])..] Limit $usn2[..12.0] With Distinct *,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Order By .e0 Contains 01234567 Descending,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Desc,'s_str' Starts With 1000 Starts With #usn8 Descending Where 123456789 =~_usn4 =~$0 Unwind 12 =~usn1 =~.e12 As `7esn`"), - octest:ct_string("Merge `2esn`=(:_usn4:usn1) On Match Set `6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`7esn` =9e1[0.e0..][#usn8..],#usn7+=({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Ends With @usn6(123456789 =~$123456789) Ends With [`1esn` Contains Count ( * ),$@usn6 Contains Count ( * ),False In 123456789 In $0] On Create Set `` =(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[usn1?:`8esn`|:usn1]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Is Null Is Null,`7esn`+=(`7esn` :_usn4:usn1)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`) Starts With ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2) Starts With Extract(usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]|07[`6esn`..][`5esn`..]),`2esn`:`1esn` Unwind 12[usn1][True] As @usn6 Union All Remove Any(#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7).`3esn`?,{`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`}.`4esn`!"), - octest:ct_string("Unwind `3esn` =~$`5esn` =~12 As `7esn` Remove [.12 Starts With 0Xa].`4esn`! Union All Detach Delete $7 Ends With 12.0 Ends With 0xabc,`` Is Not Null Create #usn7=((#usn7 {`2esn`:$@usn6[..$usn1],usn2:12 Ends With 01 Ends With 1e1})),`2esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}) With {@usn5:0.e0[@usn6][0x0]} Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7) As #usn7,$`3esn`[`2esn`...e0],0.12[Count(*)..] Order By _usn3[0] Ascending Limit `1esn`(Distinct Count(*)[..`3esn`]) Starts With $0"), - octest:ct_string("Match `2esn`=(:_usn4:usn1) Delete 0e0[7],(`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})[[`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5]..{usn2:$`4esn`[12.e12..][0.0..]}] Unwind 0 Starts With `6esn` Starts With 0X0123456789ABCDEF As @usn6 Union All Detach Delete None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} Merge @usn5=((({`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}))) On Create Set `8esn` =0.e0[9e0][0e0],_usn3 =0Xa[0xabc..$#usn8] On Match Set `6esn` =[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] Create ((:`5esn`)<-[#usn7{#usn7:False[`2esn`..#usn8]}]->(usn2 :`3esn`:`1esn`)-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]}))"), - octest:ct_string("Optional Match `7esn`=(`2esn` )<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}),`1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Where Null[01234567][01234567] Union All Unwind 123.654[`5esn`] As @usn5 Create usn2=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}),(`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Union All Remove `8esn`(Distinct 0X0123456789ABCDEF[..usn1]).`3esn`?,Extract(`4esn` In `6esn`['s_str'..][010..] Where #usn8[$#usn8..]).`8esn`! With Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4) Is Null As usn2,$`7esn` Ends With $@usn5,9e1 Contains $`3esn` Contains 01234567 As @usn5 Order By Filter(_usn4 In usn1 Contains False Contains `` Where 123456789 Is Null) Contains (:``{#usn8:$`2esn`[..`2esn`]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]}) Contains _usn4(@usn6[`5esn`..$`3esn`],9e1 Starts With _usn3 Starts With `4esn`) Ascending,[@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Desc Skip [usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..] Remove None(#usn8 In $`5esn` Is Null Is Null Where 01234567 Ends With 12.0 Ends With 0X7).`2esn`?,[9e0 =~$`5esn`]._usn3!,(_usn4 )<-[#usn7? *00..]->(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`).`1esn`"), - octest:ct_string("Unwind 0e0[#usn8][$_usn3] As #usn8 Optional Match ((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),((_usn4 {`8esn`:9e1 In 01 In 999})) Union All Return Distinct *,Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] With Distinct *,[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..] As @usn6,0x0[123456789] As _usn3 Order By Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]|$0 =~$usn1 =~9e1)[{``:\"d_str\",`1esn`:$1000 =~$`7esn`}] Descending Skip $`5esn` In `2esn` In .0 Where 9e12[0.0..12.e12] Return *,False[`2esn`..#usn8] Skip 123456789[1e1..0.0] Limit `` Starts With @usn5 Union Unwind $usn2 Contains 12.e12 Contains 00 As #usn7 Merge _usn4=((@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) On Match Set Extract(usn2 In 1000 Contains 0.e0 Where $1000[01234567]|$`6esn`[Count(*)..0.e0][0.0..Count ( * )]).`8esn`! =$123456789[False.._usn3],`3esn`(Distinct 0X7 In $999 In $``,$0 Is Not Null).`7esn`? =0.e0[123.654],`1esn`+=True Starts With 12.0 Starts With $@usn5"), - octest:ct_string("Delete $`6esn`[Count(*)..0.e0][0.0..Count ( * )] Unwind 999 Contains `7esn` As `7esn` Match @usn5=(:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})-[`1esn`:usn2|#usn8 *1000..]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}) Union Create `5esn`=((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 )) Match ({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})-[#usn7:`1esn` *07..]->(:`7esn`{``:$`1esn` Starts With @usn6})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) Where 9e12 =~01 =~$`7esn` Union All With Distinct 0X7 In 123456789 In $`5esn` As @usn6,[$1000 =~$`7esn`,.12 Starts With @usn5 Starts With $#usn8,0x0[...e12][..@usn5]] Ends With Single(@usn5 In .12[#usn7][$`8esn`]) As `7esn`,`1esn` Contains Count ( * ) As _usn3 Order By 0X0123456789ABCDEF In 01234567 Descending,$#usn8 In .e12 In 9e1 Descending,{usn1:Count ( * )[..usn1][..12.e12],@usn5:07[$`5esn`..]['s_str'..]} Is Not Null Ascending Where $@usn5 Contains 01 Remove [@usn6 In @usn5 In $`6esn` Where 12.0[0Xa][00]].`2esn`?,Single(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1).@usn6?,Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn8 Contains .e0 Contains $`8esn`).`8esn` Detach Delete .e12 Contains 9e0,$`2esn`[``..],Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*))"), - octest:ct_string("Unwind @usn6(Distinct `` Starts With @usn5) =~Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]) =~#usn7(Distinct $0 =~$0 =~.e0) As `2esn` Union Unwind Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)[..(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})][..Any(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)] As `7esn` Remove #usn7:_usn3,[`6esn` Starts With $usn2 Starts With 0.0,.e0[7..$`3esn`]].#usn8!,All(usn2 In 1000 Contains 0.e0 Where #usn7 Starts With .e12 Starts With $`7esn`).`4esn` Remove {@usn6:True[..'s_str'][..01]}.#usn7!,(_usn4 {#usn7:False[`2esn`..#usn8],#usn8:`5esn`[`1esn`..`1esn`]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]}).`3esn`"), - octest:ct_string("Detach Delete 00[7..$123456789],`` Starts With 12,{`4esn`:.12 Starts With 0Xa} Starts With All(usn1 In 00 Starts With _usn3 Where `6esn`[False..0.0][12e12..$usn2]) Remove Extract(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`).usn1!,_usn4(Distinct `7esn` Starts With $usn2 Starts With .e0).`5esn`,``:#usn7 Return $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Limit 9e0 Starts With `6esn` Union Return Distinct $`5esn`[$123456789][`1esn`],(`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})-[`4esn`?:`8esn`|:usn1 *..0x0]->(:`7esn`{``:$`1esn` Starts With @usn6}) Ends With `6esn`(Distinct $`4esn`[usn1..$#usn8][12.0..`3esn`],12.e12['s_str']) Ends With (`7esn` {`8esn`:Count ( * ) =~Count(*)})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}) As `7esn`,01234567 As `6esn` Detach Delete $@usn5 In 12e12 In Count(*),`` =~12 =~$#usn7,Null Contains _usn4 Union All Match `1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}),`1esn`=(((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))) Create ((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})),#usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) Match `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Where 's_str'[12..'s_str']"), - octest:ct_string("Optional Match `6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Where 0.e0[@usn6][0x0] Merge (((:_usn4:usn1)-[@usn5?:@usn6*..]-(`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:@usn6]-(_usn3 :`4esn`:#usn8{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]}))) On Match Set `5esn` =999[.e12][01],Extract(usn1 In 0x0[..`4esn`] Where @usn6[$`3esn`]).#usn8? =`1esn` In 999 In $#usn7,usn1 =12.e12[0e0..7]"), - octest:ct_string("Return .e12[.12..][_usn4..] As _usn4 Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Delete 07 Ends With 07 Union Merge (@usn5 {`2esn`:01234567 Ends With 12.0 Ends With 0X7})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]}) On Create Set `5esn` =999[.e12][01],Extract(usn1 In 0x0[..`4esn`] Where @usn6[$`3esn`]).#usn8? =`1esn` In 999 In $#usn7,usn1 =12.e12[0e0..7] On Create Set usn1+=Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Remove None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 9e12[usn2..7][.e1..$`7esn`]).`6esn`?,All(usn1 In 00 Starts With _usn3 Where 1e1[..False]).`4esn`?,Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]|@usn6 Contains .e1 Contains $`4esn`)._usn3! Merge @usn6=((:``{`5esn`:.e1 In $@usn6 In 999})) On Match Set usn1 =0x0[$`3esn`..010][$#usn7..00] Union With *,usn1[Count ( * )..$usn1] As usn1,$`2esn` =~'s_str' As @usn5 Where 9e0[$_usn3..0X7][7..$#usn8] Create #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`)"), - octest:ct_string("Delete [_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]] Ends With [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]],Single(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8)[{_usn3:$0 Ends With $#usn7 Ends With .12}][[12.0[0Xa][00],.0[01][$12]]] Unwind `2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As `4esn` Union Match _usn3=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}),``=(({`5esn`:0e0 =~_usn4})) With *,.e12 Starts With True As _usn4,$1000 In $`7esn` In $7 Skip [$1000 =~$`7esn`,.12 Starts With @usn5 Starts With $#usn8,0x0[...e12][..@usn5]] Ends With Single(@usn5 In .12[#usn7][$`8esn`]) Limit Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]|$0 =~$usn1 =~9e1)[{``:\"d_str\",`1esn`:$1000 =~$`7esn`}] Detach Delete 0X7 In 123456789 In $`5esn`"), - octest:ct_string("Detach Delete 12[`7esn`...0][0.12..``] Optional Match `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Where `7esn` In 999 In @usn6 Union All Detach Delete Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0},12 Ends With .e12 Ends With $7 Optional Match `6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Where 0.e0[@usn6][0x0] Match (((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))) Where $usn2 In 9e0 In $7"), - octest:ct_string("Create usn2=((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn2 *0X0123456789ABCDEF..{usn2:`` Starts With 12}]-(`4esn` {`7esn`:.e0[..999][..0X7]})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})),usn2=({_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[@usn5?:``|:_usn4]-($12) Remove (`6esn` :`4esn`:#usn8{@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]})<-[:@usn5|`8esn`*..]-(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}).usn2 With *,$usn2[..12.0],$`2esn`[``..] As `3esn` Skip _usn3[.0] Where 0.0[999..] Union Merge ((({_usn4:010 =~$usn2 =~1e1,`2esn`:0X0123456789ABCDEF Is Not Null})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[:usn1|`3esn`]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]}))) On Match Set `5esn`()._usn4! =[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00],``:usn1,`6esn`+=Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) Ends With [1e1[@usn5..],$#usn8 Is Null,$0[$#usn8..01234567]] Ends With Extract(`6esn` In 0X7 =~`` Where 010 =~`6esn`) On Create Set #usn8+=Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)],`2esn` =$_usn4[$`1esn`..][$0..] Optional Match (({usn1:`4esn` In $12 In `8esn`})<-[@usn5:#usn8{`4esn`:$0[0X0123456789ABCDEF..$#usn7]}]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})) Where 0X0123456789ABCDEF[..usn1] Detach Delete 1e1 In $#usn8 In 12e12,_usn3 =~00"), - octest:ct_string("With Distinct *,010 Contains Count(*) As `5esn`,'s_str' Ends With .e0 As `1esn` Skip [_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]] Ends With [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]] Limit Count ( * )[`3esn`..][`2esn`..] Where 's_str'['s_str'..$usn2][_usn3.._usn3]"), - octest:ct_string("Merge `4esn`=(((#usn8 :_usn3)<-[ *..0X7]-(#usn7 )<-[`5esn`?:usn1|`3esn` *1000..]-(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}))) On Match Set @usn5 =$usn2 =~$_usn4 =~`5esn`,[`4esn` In `6esn`[1e1..] Where _usn3 Is Null|$`8esn`[..$usn1][..'s_str']].usn1? =$usn2[..12.0],{_usn4:$_usn4[`3esn`][0],`6esn`:False[`2esn`..#usn8]}.`8esn`? =Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] Union All Return *,All(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..]) Is Null Is Null As `6esn`,[#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`][Any(`4esn` In $`8esn` Starts With 1000 Where 123.654 Starts With usn1 Starts With @usn5)..] As `8esn` Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) Contains Extract(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`) Merge @usn6=((`6esn` :`7esn`)-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)<-[@usn5:`6esn` *0X0123456789ABCDEF..]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null})) With Distinct *,Single(#usn7 In 01234567[$`3esn`..]) Is Null Limit 123456789 Starts With `2esn` Starts With .0 Where $#usn7 In 12.0 In 0X0123456789ABCDEF Union All Unwind Any(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) Is Not Null Is Not Null As `2esn` Create #usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})),`5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Merge usn2=((({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(usn1 :_usn3{@usn6:True[..'s_str'][..01]})<-[`2esn`?]-(usn2 :`3esn`:`1esn`))) On Match Set All(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]).`1esn`! =0.12 Contains $12 Contains `8esn`,#usn8+=0x0[$12..],{``:`6esn`[0X7..][0x0..]}.`8esn`? =`6esn` =~$_usn3 On Create Set `8esn` =``"), - octest:ct_string("Unwind $@usn6 Starts With usn2 Starts With usn2 As _usn4 Unwind $`4esn`[..usn1] As #usn7 Union All Return Distinct *,\"d_str\"[Count ( * )] As `7esn` Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) Contains Extract(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`) Limit {`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]] Remove Filter(#usn7 In 01234567[$`3esn`..] Where 0Xa[0xabc..$#usn8]).#usn8? Create ((`3esn` {`8esn`:$``[_usn4..][`7esn`..]}))"), - octest:ct_string("Create `2esn`=(_usn4 {`8esn`:9e1 In 01 In 999})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Union Merge `5esn`=(({_usn3:12.e12 In $0 In Count(*)})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(`2esn` :``)-[:_usn4|:@usn5 *0xabc]-({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})) On Match Set `7esn` ={`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)],@usn6 =`5esn` In $999 On Create Set (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 =123.654 Contains `2esn`,`3esn` =Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`),{`6esn`:$_usn4[$`8esn`..][07..]}.@usn6! =`5esn`[.e1][0Xa] Union All With Distinct [@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7|$999 Ends With $`3esn` Ends With `8esn`] Starts With [$`6esn` Is Null Is Null,0Xa Is Not Null Is Not Null,0X7 In 123.654 In $`2esn`] Starts With [01234567[Null..0.e0][Count(*)..$#usn8]],All(`6esn` In 0X7 =~`` Where 0.12[Null..]) Is Null Is Null As `` Order By $`3esn` In $12 In 's_str' Asc,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null Asc Skip (:`5esn`{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[usn1 *..0x0]->(usn1 :`6esn`:`7esn`)-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})[..[07[$999],@usn6[$`7esn`]]][.._usn4(0X7 In $@usn5 In 9e0)] Limit Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0} Merge @usn5=(({`8esn`:$usn1[0.12..]['s_str'..],`8esn`:`1esn`[0e0..]})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})) On Create Set `6esn`+=Extract(`4esn` In $`8esn` Starts With 1000 Where False In `3esn`|$`3esn` =~Null),`8esn`+=12 Ends With .e12 Ends With $7,(:``{`1esn`:`6esn` =~$_usn3})-[`5esn`?:_usn4|:@usn5]-(usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]}).usn2 =usn1(Distinct) Ends With {`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654} Ends With ({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) On Match Set `7esn`+=9e0[``][123.654]"), - octest:ct_string("Unwind $123456789 In Count(*) In .e1 As usn1 Union All Delete [@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12]][{@usn6:.12 Starts With 0Xa}..(`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})],usn1[1e1][$_usn4] Remove {_usn4:00 In 0.12 In `5esn`,@usn5:0X7 =~.0 =~\"d_str\"}.`6esn`? Optional Match `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) Union Return *,usn1[Count ( * )..$usn1] As usn1,$`2esn` =~'s_str' As @usn5"), - octest:ct_string("Remove [usn1 In 0x0[..`4esn`]|`` Starts With @usn5].`6esn`?,(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})._usn4? Unwind [010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]][(:@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})..][Extract(#usn8 In $`5esn` Is Null Is Null Where 1000[0.0][Null])..] As `5esn` Unwind .e12 Starts With True As `7esn`"), - octest:ct_string("Create ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) Union All With *,$0[..`8esn`] As _usn4 Order By 0 Starts With `6esn` Starts With 0X0123456789ABCDEF Descending,12.e12 In .e0 In `7esn` Descending Limit `8esn` Ends With 0X0123456789ABCDEF Ends With `1esn` Unwind $_usn4[$`5esn`..`1esn`][@usn6..01] As _usn3 Union All Unwind 123456789 =~Filter(usn2 In 1000 Contains 0.e0 Where 0X7[0e0..]) =~{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999} As `7esn` Merge `4esn`=((#usn8 {usn2:7 Contains 9e1})-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]->(:_usn3{@usn6:$`7esn` Is Null Is Null})) On Create Set usn2:usn1,None(_usn4 In usn1 Contains False Contains `` Where .12 In $999 In `5esn`).usn2 =9e0 In 01234567,`8esn` =$@usn5 Ends With 0X0123456789ABCDEF"), - octest:ct_string("With Any(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null)[Extract(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1)..] As `3esn` Order By 010 Contains Count(*) Desc,1e1 In $999 In $usn2 Ascending,@usn6(Distinct 12.e12[0e0..7],usn1[Count ( * )..$usn1]) Is Null Is Null Descending Skip True Is Not Null Is Not Null Limit None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} Union Remove {``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}.`2esn`! Union Delete 0.12 =~9e0,12.0[0Xa][00] With {_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] As `1esn` Order By 0 Is Not Null Descending Skip 0x0 Where 123456789 Starts With #usn7 Starts With `6esn` Optional Match `8esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}))"), - octest:ct_string("Merge (`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`7esn` :`4esn`:#usn8{`2esn`:Count(*)[..`3esn`]})-[? *07..{@usn6:12[..True][..$`4esn`],`4esn`:.0[$`6esn`..False]}]-({`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`}) On Create Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..] On Create Set `` =$`6esn` =~Null =~9e12 Union Merge `2esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) On Create Set [@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where .e0[..999][..0X7]]._usn4 =(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) On Match Set Single(usn1 In 00 Starts With _usn3 Where $`7esn` Ends With 07 Ends With 07).`6esn`? =Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789},@usn5 =[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0])],[usn1 In 00 Starts With _usn3 Where 12 Ends With .e12 Ends With $7|_usn3 =~00].#usn7! =Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null Unwind 12e12[_usn3..][$@usn5..] As usn2"), - octest:ct_string("Match ((:`3esn`:`1esn`{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->()),(((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))) Where 0xabc[$@usn5] Remove #usn7(Distinct $@usn6[..$usn1],9e12 Is Not Null Is Not Null).usn1 Union All Create ((:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}))"), - octest:ct_string("Delete 1.e1[0X0123456789ABCDEF..][$`5esn`..],$0[0X0123456789ABCDEF..$#usn7] With 07 Ends With 07 As #usn8,00[``..][$`4esn`..],$usn2 Is Not Null Is Not Null Limit {`4esn`:0X7 =~.0 =~\"d_str\",_usn4:00 Ends With $_usn4 Ends With $`2esn`} Ends With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Ends With [$`3esn`[@usn5..$123456789],00,'s_str'[.12..$#usn7][$999..`2esn`]] Union Return Distinct 1000 Contains $#usn7 Contains `6esn` Order By (`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})[Single(`4esn` In 's_str'[12..'s_str'])..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)] Desc,usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Desc,Count ( * ) Contains 999 Contains $`8esn` Asc Merge `7esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})) On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Merge `6esn`=((`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})) On Match Set Any(_usn4 In usn1 Contains False Contains `` Where $`4esn`[$`2esn`..]).usn2 =010 In @usn5 In `5esn` Union With Distinct {`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) As `2esn`,Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null As `5esn` Order By .e0 Contains 01234567 Descending Limit All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])] Create ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7)))"), - octest:ct_string("With Distinct *,0.12 In $`4esn` In `6esn`,`4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}] As `2esn` Order By Null[@usn6..][9e1..] Ascending Skip 07 Ends With 07 Limit All(_usn4 In usn1 Contains False Contains `` Where $`4esn`[$`2esn`..])[..Single(usn1 In $123456789 Contains usn2 Where $usn1[0.12..]['s_str'..])][..``(Distinct `1esn`[0e0..])] Where 's_str'[..0.e0][..`1esn`] Detach Delete $999[12.0..] Remove (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`).`2esn`,[.12 Contains $`4esn` Contains $`6esn`].@usn6"), - octest:ct_string("Merge (_usn4 {@usn5:$_usn3[$`4esn`..Null]}) On Create Set @usn5(Distinct 12e12[_usn3..][$@usn5..],7 Contains 9e1).`6esn` =$@usn5 In 12e12 In Count(*) On Match Set _usn3:@usn5,Any(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null).#usn7 =All(`6esn` In 0X7 =~`` Where $1000[01234567]) In usn1(),`` =None(@usn5 In 0X7 =~.0 =~\"d_str\" Where _usn3[...e1])[[_usn4 In usn1 Contains False Contains `` Where 0.12 In $7 In 0]..][[7[..12e12][..$`6esn`]]..] Delete count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null"), - octest:ct_string("Merge `4esn`=(:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) On Create Set _usn4 =[`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]][{`3esn`:$123456789 Contains usn2}..[$_usn4[`3esn`][0],$usn2 Is Not Null,0.0 =~0X7 =~#usn7]][Any(`4esn` In `6esn`['s_str'..][010..] Where 01 Ends With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0)],[usn1 In 0x0[..`4esn`] Where 12.0[0Xa][00]|$`6esn` Is Null Is Null].usn1 =Count(*)[True],`6esn`+=7[$`4esn`..123456789] On Create Set `6esn`+=[@usn6 In @usn5 In $`6esn` Where False In $`7esn` In .0|.12 Starts With $usn2] Ends With Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) Ends With Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Match `2esn`=((_usn4 {``:$usn2[..12.0]})),`1esn`=(((`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}))) Where @usn5[..True][..0X7] Unwind [.0[01][$12]][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`3esn` =~$`7esn` =~False|7[..12e12][..$`6esn`]]] As `1esn` Union Merge `8esn`=((`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) On Match Set [usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01|`1esn`[@usn6..$123456789]].`8esn`? =Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]),@usn5 =Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null,_usn3+=$@usn5 =~$`` =~$usn2 On Match Set `2esn`+=.e12 Starts With True Optional Match @usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})),_usn3=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Where $`5esn` Contains Count(*) Contains #usn7 Remove [usn2[$`7esn`..010][00..``],07[12][$`6esn`],Null[01234567][01234567]].`1esn`,`3esn`(Distinct 123456789 =~$123456789).`` Union Create (_usn3 :_usn4:usn1)<-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(:@usn6:`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}),#usn8=(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[usn1?:`8esn`|:usn1]->(`2esn` {usn2:$999[12.0..]})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})"), - octest:ct_string("Unwind 12e12[Count ( * )..][usn2..] As `3esn` Remove Single(usn1 In 0x0[..`4esn`] Where $`2esn`[123456789..][00..]).`4esn`! Union All Merge usn1=(((`7esn` :``)<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:usn1|`3esn`*]->(:_usn3{`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`}))) On Match Set [@usn5 In .12[#usn7][$`8esn`] Where Count ( * )|#usn7 Starts With 0 Starts With 12].`4esn` =[$1000 Is Null Is Null] Is Null,#usn7+=Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999),`5esn` =Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`]) Contains All(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 01234567[.12..7][1000..1.e1]) On Create Set `6esn` =Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`),{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}.`2esn`? =.12[`1esn`..],`5esn`+=0 Starts With `6esn` Starts With 0X0123456789ABCDEF Detach Delete usn2[`3esn`][_usn3] Create ((`1esn` :usn2:@usn6)),`3esn`=(usn1 :`6esn`:`7esn`) Union All Merge `8esn`=(({@usn6:$123456789 Is Null Is Null,@usn6:`6esn`[1.e1..$#usn7][.e0..True]})<-[`5esn`:usn1|`3esn` *010{`2esn`:`6esn` =~01234567 =~0Xa}]->(_usn4 :``))"), - octest:ct_string("Detach Delete usn1 Is Not Null Is Not Null,`2esn` Contains $999 Union All Optional Match @usn6=((:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})-[?:`4esn`|:`7esn`]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})),`8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`}) Where @usn6[`3esn`..][$7..] Create ((`6esn` :_usn4:usn1{`6esn`:00 In 12.e12})<-[`7esn`?:`5esn`|`1esn`]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`})),(usn1 :`3esn`:`1esn`)-[?:`4esn`|:`7esn` *..0x0]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Match ((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})),(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))) Where $`8esn` =~$usn2"), - octest:ct_string("Create usn2=((`5esn` :`7esn`)),_usn4=(((:`3esn`:`1esn`{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999})<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}))) Union Remove [#usn7 Starts With .e12 Starts With $`7esn`].``! Merge `7esn`=(@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) On Create Set usn2:@usn6:`7esn` On Create Set @usn5+=123456789 In $usn2 In `6esn` Remove [@usn5 In 0X7 =~.0 =~\"d_str\" Where .e0 In $@usn5 In $0|0 Is Not Null Is Not Null].@usn5?,{usn1:_usn3 Contains @usn6 Contains 1.e1}.#usn7!,usn1:@usn5 Union Delete 12e12[.12..],`1esn` In 999 In $#usn7 Create (((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})-[_usn4?:`5esn`|`1esn`]-(@usn5 {``:12[usn1][True],``:$`5esn` In `2esn` In $12})<-[`` *0xabc]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}))),`6esn`=(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Remove [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0].`3esn`,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``!"), - octest:ct_string("Return Distinct None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..] Create `2esn`=(:`1esn`)<-[`2esn`?:usn2|#usn8{`6esn`:0X7[.e12..01234567],@usn6:`7esn`[...e1][..\"d_str\"]}]->(`5esn` :`8esn`{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}) Union All Return $`6esn` =~$#usn8 As #usn8 Order By (#usn7 :#usn8)-[`6esn`:`4esn`|:`7esn` *..0x0]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})[Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])][Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])] Descending Limit Null Contains 9e1 Union All Return Distinct *,\"d_str\"[Count ( * )] As `7esn` Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) Contains Extract(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`) Limit {`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]] Remove Filter(#usn7 In 01234567[$`3esn`..] Where 0Xa[0xabc..$#usn8]).#usn8? Create ((`3esn` {`8esn`:$``[_usn4..][`7esn`..]}))"), - octest:ct_string("Remove Extract(@usn5 In $#usn8 Is Null Is Null Where $#usn8 Is Null).``? Union All Remove [usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`|$`8esn`[$``..$7][$1000..$`7esn`]].`3esn`!,@usn6:#usn8,(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 Remove [@usn5 In 0X7 =~.0 =~\"d_str\" Where $`8esn` Starts With 1000|@usn6 Contains .e1 Contains $`4esn`].`8esn`!"), - octest:ct_string("Optional Match (_usn4 :`4esn`:#usn8{@usn5:$_usn4[12e12][`4esn`],`4esn`:False In `3esn`})-[`6esn`:``|:_usn4 *..01]->(`5esn` :#usn7) Where $1000[01234567] Unwind Count(*) Is Null As `2esn`"), - octest:ct_string("Match `1esn`=(((`` :@usn5)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn5:`8esn`|:usn1]-(#usn7 :`5esn`))),usn1=(_usn4 :`8esn`{`3esn`:False[.e1..Null],`3esn`:9e0 =~$`5esn`}) With Distinct Extract(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null) Ends With `2esn`(`7esn`[Null..][@usn5..],123.654[12.e12..1e1]) Ends With Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]) As `7esn`,$usn2 In 9e0 In $7 Order By @usn5 Starts With 12e12 Starts With @usn5 Desc Skip $``[_usn4..][`7esn`..]"), - octest:ct_string("Optional Match (({usn1:`4esn` In $12 In `8esn`})<-[@usn5:#usn8{`4esn`:$0[0X0123456789ABCDEF..$#usn7]}]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})) Where 0X0123456789ABCDEF[..usn1] Detach Delete 0x0[0X7..][usn1..] Union All Remove `5esn`:_usn4:usn1,_usn4($`6esn`[$@usn6..],_usn3[.0]).#usn8,[07[$999],@usn6[$`7esn`]].@usn5! Create ((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` )) Merge (({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})) On Create Set #usn7:``,({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})<-[?:@usn5|`8esn` *..0X7]-(:usn1).`4esn` =`6esn` Starts With $`5esn`,[`6esn` In 0X7 =~`` Where 0.12[Null..]]._usn4 =Count ( * )[`3esn`..][`2esn`..] On Match Set `3esn` =010 In @usn5 In `5esn`"), - octest:ct_string("Remove Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`).@usn6! Return Distinct *,01234567[$@usn6..0X7][$`1esn`..123.654],_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) As #usn8 Skip .e0[..0X0123456789ABCDEF][...e12] Detach Delete 12.e12 Contains $`5esn`,$usn1 In 1000 In $#usn7,12.0 Union All Return Distinct *,`1esn` Contains Count ( * ) As _usn3 Skip $`3esn` =~$999 =~$`3esn` With Distinct [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}),$_usn4[`3esn`][0] As `1esn`,`6esn` Starts With $`5esn` As @usn5 Order By .0 Is Null Is Null Ascending,`1esn`(Distinct $@usn5[#usn8..][$`1esn`..],#usn7 Ends With `4esn` Ends With @usn5)[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|usn1[Count ( * )..$usn1]]][{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}] Asc Limit True Is Not Null Where 0.0 =~0X7 =~#usn7 Union All Return Distinct *,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}) Skip ({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}) =~None(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Return Distinct *,{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}[Extract(_usn4 In usn1 Contains False Contains `` Where `5esn`[.e1][0Xa])..] Order By [@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|#usn7 Starts With `1esn`][[@usn5 In .12[#usn7][$`8esn`] Where 0.12 In $`4esn` In `6esn`|$`1esn` Starts With @usn6]..][$`1esn`..] Ascending"), - octest:ct_string("Merge `1esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[? *999..]-(`` :`1esn`) On Create Set usn2 =0.0[..12e12][..$0] Unwind 123.654[@usn5] As _usn3 Optional Match `7esn`=((({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null})<-[`7esn`?:`8esn`|:usn1]-(`7esn` :#usn8)-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`))),`5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) Where $`8esn`[..$usn1][..'s_str'] Union Return Distinct None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..] Create `2esn`=(:`1esn`)<-[`2esn`?:usn2|#usn8{`6esn`:0X7[.e12..01234567],@usn6:`7esn`[...e1][..\"d_str\"]}]->(`5esn` :`8esn`{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})"), - octest:ct_string("With Distinct *,@usn6[`5esn`..$`3esn`] As ``,`7esn` In 's_str' In 0.12 As _usn3 Skip True Is Not Null Is Not Null Union All Merge ((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Merge `3esn`=((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) On Match Set `6esn` =$@usn5[Count ( * )] Union All Unwind 1.e1 Contains @usn6 As _usn3"), - octest:ct_string("Delete Extract(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|Null Starts With $`7esn` Starts With `2esn`) =~{`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0},$`1esn` Is Null,9e0 Starts With `6esn` Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null})-[#usn7:`1esn` *07..]->(#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})) Union Return Distinct *,$999[$1000] Skip 1e1[@usn5..] Create `1esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[? *999..]-(`` :`1esn`) Optional Match (({_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})),#usn8=({_usn3:12.e12 In $0 In Count(*)})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}) Where _usn3 Is Not Null Is Not Null"), - octest:ct_string("With *,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Skip $`2esn`[..7][..$usn1] Limit None(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`) Contains `3esn`($usn2 Contains 12.e12 Contains 00) Optional Match #usn7=(@usn5 {usn2:$999[12.0..]})<-[usn1]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[_usn3?:``|:_usn4]->(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}) Where $`1esn` Ends With _usn4 Ends With `3esn`"), - octest:ct_string("Unwind 0X7[..12e12] As _usn3 Create ``=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3})))"), - octest:ct_string("With Distinct *,{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)] Order By .e1 Starts With $`8esn` Asc Limit $#usn7 In .e1 In 01 Where `5esn`[`1esn`..`1esn`] Union All Detach Delete _usn3 Ends With 12e12 Ends With .e0,#usn7(Distinct $_usn4[$`8esn`..][07..])[..(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[`6esn`? *..7{`3esn`:123456789[$#usn7..]}]-(#usn8 {@usn5:.e1[..$``][..0X0123456789ABCDEF],_usn3:$usn2 =~$#usn8})-[#usn7:_usn3|:`4esn`]-(:`6esn`:`7esn`{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12})][..All(`4esn` In `6esn`[1e1..] Where $`1esn` Is Null)],`4esn` =~123456789 Create `2esn`=(((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))),`6esn`=({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})"), - octest:ct_string("Optional Match ``=(((:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(:`7esn`{@usn6:0.0[999..],#usn8:Null Is Null Is Null})-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]}))) Where 1000 Ends With 1000 Ends With $`4esn` Remove [_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4].@usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`!,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`)._usn4 Unwind @usn6(Distinct `` Starts With @usn5) =~Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]) =~#usn7(Distinct $0 =~$0 =~.e0) As `2esn`"), - octest:ct_string("Remove {``:9e1 Starts With _usn3 Starts With `4esn`}.`8esn`? Unwind False[.e1..Null] As `5esn` Create (:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0})"), - octest:ct_string("Unwind `6esn`[..`5esn`] As #usn8 With *,$`1esn` Ends With _usn4 Ends With `3esn` As `7esn`,({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] As @usn6 Order By $999 Ends With $`3esn` Ends With `8esn` Asc Skip $0[..07] Where $@usn5 In 12e12 In Count(*) Union Unwind $@usn5[Count ( * )] As #usn7 Detach Delete 999 In 12 In \"d_str\",$`5esn` Contains Count(*) Contains #usn7 Union All Create (`8esn` :`1esn`)"), - octest:ct_string("With Distinct [@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7|$999 Ends With $`3esn` Ends With `8esn`] Starts With [$`6esn` Is Null Is Null,0Xa Is Not Null Is Not Null,0X7 In 123.654 In $`2esn`] Starts With [01234567[Null..0.e0][Count(*)..$#usn8]] As `6esn`,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} Order By {_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]} Ends With Extract(`4esn` In $`8esn` Starts With 1000 Where `6esn`['s_str'..][010..]|12.e12[@usn5..123.654]) Ends With [$`5esn` Is Not Null,0e0 Is Null Is Null] Ascending,(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Ascending,0X0123456789ABCDEF[..usn1] Asc Where Count(*)[..`3esn`] Detach Delete {`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}[[`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]]][Count ( * )] Optional Match `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),usn2=({_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[@usn5?:``|:_usn4]-($12) Where $1000 In $`7esn` In $7 Union All Merge `3esn`=(((:_usn4:usn1{usn2:$`5esn` In False})<-[?:@usn5|`8esn` *..0X7]->(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}))) On Create Set [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]].`1esn` =9e12 =~01 =~$`7esn` On Create Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$`` Remove [@usn5 In $#usn8 Is Null Is Null Where $#usn8 Is Null|123.654[@usn5]].`6esn`! Remove Filter(@usn5 In $#usn8 Is Null Is Null Where $@usn5 =~$`` =~$usn2).`7esn`,Filter(_usn4 In usn1 Contains False Contains `` Where _usn4[$`4esn`..]).#usn8?,[\"d_str\" =~`3esn` =~0Xa,$123456789[..0.12][..#usn7]].usn2! Union All With Distinct 0x0 Contains _usn4 Contains 123456789 As `7esn`,$_usn3[Null] As `1esn` Order By .e12 Contains 9e0 Ascending,{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]} Ends With (usn1 :_usn3)<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})-[ *..0x0]->(:`7esn`{@usn6:0.0[999..],#usn8:Null Is Null Is Null}) Asc,usn1 Contains False Contains `` Descending Where `2esn` Contains $999"), - octest:ct_string("Unwind $@usn5[.e1] As #usn8"), - octest:ct_string("Merge usn1=(:`5esn`{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[`5esn`:`8esn`|:usn1]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}) On Create Set _usn3+=$@usn5 =~$`` =~$usn2,`6esn`+=`6esn`[1.e1..$#usn7][.e0..True],(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[`` *0xabc]->(`7esn` :#usn7{`6esn`:$`3esn` Contains 0X0123456789ABCDEF Contains 00,`1esn`:1000[123.654..9e12][1000.._usn3]}).``! =[@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Match `2esn`=(`` :usn2:@usn6)<-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`7esn` :`4esn`:#usn8{`2esn`:Count(*)[..`3esn`]}),(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})-[`4esn`:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]-(_usn3 :``)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->({`1esn`:0.0[1000..][.e1..]})"), - octest:ct_string("Merge (_usn4 :@usn6:`7esn`)<-[#usn8?:_usn4|:@usn5 *..0x0]-(`6esn` :#usn7{`5esn`:#usn7 Is Not Null Is Not Null})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) Union Remove None(usn1 In 00 Starts With _usn3 Where 123456789[`4esn`..][Count ( * )..]).#usn8!,All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..])._usn4 Return Distinct *,(_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)[Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] As `8esn`,[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `8esn` Order By @usn5 Starts With 12e12 Starts With @usn5 Desc Skip _usn4(usn1[Count ( * )..$usn1],_usn3 Ends With 12e12 Ends With .e0)[All(usn1 In 0x0[..`4esn`] Where $`2esn`[123456789..][00..])..Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``])][[@usn6 In @usn5 In $`6esn` Where $``[_usn4..][`7esn`..]|12.e12 In $0 In Count(*)]..(:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)] Merge `4esn`=({`8esn`:0X7 In 's_str' In $`1esn`}) On Match Set usn2+=.e1 Ends With _usn4 Ends With @usn5,@usn5+=_usn3 In .e1 In $12,Extract(`4esn` In `6esn`[1e1..] Where $`7esn` Ends With `1esn` Ends With True).`` =010 In @usn6 On Match Set usn1 =Count ( * ) =~All(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7) Union Merge (`4esn` :#usn7)-[_usn4?:`6esn`]-(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) On Create Set `5esn`+=0 Starts With `6esn` Starts With 0X0123456789ABCDEF,`4esn`+=$`7esn` Ends With $usn2,[usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null].@usn5! =$1000 Ends With 1e1 Ends With 123.654"), - octest:ct_string("Delete 's_str'[.12..$#usn7][$999..`2esn`],All(usn1 In 00 Starts With _usn3 Where 12e12[Null]) Ends With (:`7esn`)<-[@usn5:#usn7|:_usn4]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})<-[?:usn2|#usn8{#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7}]-({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) Ends With Extract(`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]|usn2[$`1esn`...0]),0.12 =~9e0"), - octest:ct_string("Return *,07[0..`4esn`],Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) Order By `4esn` =~$`3esn` =~$123456789 Ascending,{`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])] Asc,$`4esn`[..usn1] Ascending Skip $`3esn` Limit [@usn5 In 0X7 =~.0 =~\"d_str\"|#usn7 Starts With `1esn`][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn`[...e1][..\"d_str\"])..][`2esn`(Distinct 12e12[Null],0xabc[12.e12..`1esn`])..] Create usn2=(((#usn8 :@usn6:`7esn`)<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[_usn3? *00..]-(`1esn` :`1esn`))) Unwind 01 In _usn3 In 12 As `3esn`"), - octest:ct_string("Optional Match _usn3=(($999)),``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)) Where 9e0[True..`1esn`] Union Remove [#usn7 In 01234567[$`3esn`..] Where .12 Starts With @usn5 Starts With $#usn8|$`6esn`[$`1esn`][1000]].@usn6?,usn2($#usn8 Is Null Is Null)._usn4"), - octest:ct_string("Unwind 00 Is Not Null Is Not Null As `` With Distinct *,`7esn`[Null..][@usn5..],0X0123456789ABCDEF Contains $usn1 Skip Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] Limit False Ends With $`8esn` Where 0 Starts With 12e12 Starts With `4esn` Optional Match (`` :#usn7)<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})<-[`5esn`?:`6esn`]->(`6esn` :`6esn`:`7esn`{_usn4:\"d_str\"}),`4esn`=(((`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[?{`4esn`:0.e0 Ends With 12 Ends With $7,@usn6:$``[_usn4..][`7esn`..]}]->(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]}))) Where 123.654 In \"d_str\" In $_usn3 Union Match usn2=((:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})),((`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})<-[?{`8esn`:_usn3 Ends With 0x0 Ends With 01234567,#usn8:$`7esn` Is Null Is Null}]->(:``{#usn8:$`2esn`[..`2esn`]})<-[@usn5:#usn7|:_usn4]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})) Remove {`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}.@usn5?"), - octest:ct_string("Detach Delete $@usn6[..$usn1],`` =~12 =~$#usn7,`3esn` Is Not Null Is Not Null Match #usn8=(usn2 :#usn7)-[#usn8 *07..{@usn5:.e1[..$``][..0X0123456789ABCDEF],_usn3:$usn2 =~$#usn8}]-(`4esn` :`1esn`),(@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})<-[ *1000..]->(@usn5 :``{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]})<-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(@usn6 :#usn7{@usn5:Null Is Null Is Null}) Unwind True[0] As _usn3 Union All Return $`4esn`[$`2esn`..] As #usn8,#usn8 In $0,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Skip $@usn5 =~$`` =~$usn2 Limit `8esn` Ends With 999 Ends With 9e0"), - octest:ct_string("With 123.654 Is Not Null Is Not Null As `3esn`,$usn1 In 1000 In $#usn7 As `8esn` Order By .12 Starts With $usn2 Asc,[usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..] Asc,{`8esn`:$123456789 Is Null Is Null,_usn3:$`4esn` Starts With 1e1}[(#usn7 :`2esn`:`3esn`)<-[`8esn`?]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})..All(_usn4 In usn1 Contains False Contains `` Where $`8esn`[$``..$7][$1000..$`7esn`])] Descending Skip $@usn5[$#usn8..][9e1..] Limit $123456789[0X7..12.e12] Where 0.12[0.e0..][`4esn`..] Union All Remove {``:7[..`1esn`],_usn4:.e1 Ends With _usn4 Ends With @usn5}.usn2? Detach Delete (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[`4esn`{#usn8:Null[0e0][12],`2esn`:`8esn` In $@usn5}]-({_usn3:999 In $_usn4 In 0X7,`1esn`:1e1 In $#usn8 In 12e12}) Contains 0X0123456789ABCDEF Contains Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])"), - octest:ct_string("Match ``=((@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`)) Where 's_str'[12..'s_str'] Unwind Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) As `4esn` Union Match `8esn`=(`4esn` {`3esn`:0X7[..12e12],`8esn`:False In 123456789 In $0})-[`4esn`?:`1esn`]->(:`2esn`:`3esn`{usn2:$`5esn` In False})<-[#usn7? *00..]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]}),`8esn`=(({_usn3:$0 Ends With $#usn7 Ends With .12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[?:``|:_usn4 *..0X7]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})) Where $1000 Contains $`3esn` Create ((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(@usn5 {_usn4:010[$@usn6],`6esn`:123456789[1e1..0.0]})<-[`6esn`?:`2esn`|usn2 *01234567..12]->(:`7esn`{#usn7:True =~@usn5 =~$`1esn`})),`6esn`=({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Remove Filter(usn2 In 1000 Contains 0.e0 Where 12e12[$`5esn`][07])._usn4? Union Delete 0e0[`2esn`..010],@usn6[`5esn`..$`3esn`],Count ( * )[..usn1][..12.e12] Remove [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1].usn1,None(@usn5 In .12[#usn7][$`8esn`] Where 123456789 Is Null).`1esn`?"), - octest:ct_string("Remove None(#usn8 In $`5esn` Is Null Is Null Where 01234567 Ends With 12.0 Ends With 0X7).`2esn`?,[9e0 =~$`5esn`]._usn3!,(_usn4 )<-[#usn7? *00..]->(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`).`1esn` Merge (({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:usn1{`8esn`:usn1 Contains $``})) On Create Set usn2:usn1,None(_usn4 In usn1 Contains False Contains `` Where .12 In $999 In `5esn`).usn2 =9e0 In 01234567,`8esn` =$@usn5 Ends With 0X0123456789ABCDEF With Distinct 999[``..][Null..] As `1esn` Order By 00 In 0.12 In `5esn` Ascending Skip 0.e0[9e1..][0.0..] Limit Count ( * )[..1e1] Union All With Distinct All(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`)[[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]]..][({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})..] As #usn8,07[0..`4esn`] As `` Order By 0 Ends With $7 Ends With _usn3 Ascending Limit 07 =~`8esn` =~0 Where $999[12.0..] Optional Match ((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12}))"), - octest:ct_string("Remove [0x0[$`3esn`..010][$#usn7..00],$_usn4[#usn8..],#usn7 Starts With `1esn`]._usn4?,count(Distinct 0.e0[9e1..][0.0..],$usn2 =~$#usn8).`5esn`?,`2esn`:`` Union All Return Distinct {`5esn`:123.654[@usn5]} Is Not Null Is Not Null,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] Skip (#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})[Filter(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 0.12 Ends With $usn1 Ends With $@usn5)][`3esn`(Distinct 9e12[_usn3])] Limit Extract(`4esn` In `6esn`[1e1..] Where 123456789 =~_usn4 =~$0) Contains (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6) Contains ({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[`7esn`?:#usn8]->(@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0}) Delete $_usn4[$`1esn`],[01234567 =~usn1,9e0 =~$`5esn`,usn2[$`1esn`...0]][..[.12 In $999 In `5esn`,010 =~`6esn`,#usn7 Contains .0 Contains .e1]]"), - octest:ct_string("Optional Match usn2=((#usn8 :`4esn`:#usn8)-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)) Unwind $`1esn` Is Null Is Null As `8esn` Union All Merge `5esn`=((({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(_usn4 {`1esn`:010[@usn5..]})<-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(:``{_usn3:0X0123456789ABCDEF In 01234567}))) On Create Set `4esn`+=01234567[.12..7][1000..1.e1],``(`` In `6esn`).@usn6 =`1esn` In 999 In $#usn7,`7esn` =9e12 On Create Set {usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]}.usn2? =9e12 Contains .e0 Contains .e0,_usn3 =`7esn`($123456789 In Count(*) In .e1) Ends With Extract(@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|Count ( * )) Ends With Any(usn1 In 0x0[..`4esn`] Where False[.e1..Null]),@usn6+=Any(`4esn` In $`8esn` Starts With 1000 Where 0.12 Is Null Is Null) Is Not Null Is Not Null With Distinct All(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`)[[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]]..][({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})..] As #usn8,07[0..`4esn`] As `` Order By 0 Ends With $7 Ends With _usn3 Ascending Limit 07 =~`8esn` =~0 Where $999[12.0..] Merge @usn5=(((:`1esn`{#usn7:1e1[`6esn`..]})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) On Create Set _usn4 =All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)[[usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1]],#usn7 =_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) On Create Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$`` Union All Return `3esn` =~`3esn` =~$`6esn` As `7esn` Limit $`7esn` Is Null Is Null Return *,00[``..][$`4esn`..] As `6esn`,$`6esn`[$`1esn`][1000] Order By `1esn`[@usn6..$123456789] Asc,`1esn`[9e12..$`8esn`][usn2..$``] Ascending,`7esn`[..0X0123456789ABCDEF][..$0] Desc Skip $usn2[0e0..] Limit (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``])"), - octest:ct_string("Match `6esn`=(`6esn` :`5esn`),(@usn6 :`5esn`{_usn3:010[$`8esn`..][0..],_usn3:`2esn` Is Not Null Is Not Null}) Where 0x0 Union All With [$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] Order By .e12 =~0.0 =~9e0 Desc,010 =~$usn2 =~1e1 Desc,#usn8(0X7 In 's_str' In $`1esn`,$0 Is Not Null)[usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])] Descending Where .0 Is Null Is Null Detach Delete 0xabc Contains Null Contains 9e12,.12 Starts With 0Xa,`6esn` In 1000 In 01234567"), - octest:ct_string("With Distinct [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending,9e12 Asc Skip 0X7[.e12..01234567] Limit $_usn4[0.12..$`6esn`][00..$@usn6] With `2esn` In 7 In usn2,$0 =~$usn1 =~9e1 As `5esn`,@usn5[_usn4..][.e0..] As usn1 Skip Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] Union All Merge `8esn`=((#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})<-[ *00..{`3esn`:12 Ends With 01234567,`4esn`:00[``..][$`4esn`..]}]->(`2esn` :``))"), - octest:ct_string("Return *,{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)] Skip $12 Is Null Is Null Limit usn1[$`3esn`..$999][True..False] Match _usn4=(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(@usn6 ) Unwind 0xabc[$@usn5] As usn2"), - octest:ct_string("Delete $`1esn` Is Null Is Null,_usn4 Starts With 0X7 Union Delete 00[.e1..],.12 Ends With `1esn` Ends With $`1esn`,1000 Contains $#usn7 Contains `6esn`"), - octest:ct_string("Unwind 999 In 12 In \"d_str\" As #usn8 With Distinct *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `2esn` Unwind $0[..07] As usn1 Union Detach Delete Extract(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null) =~Any(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null) =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1],$7 Contains 0x0 Contains ``,[\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Remove [01234567[Null..0.e0][Count(*)..$#usn8],#usn8 Contains .e0 Contains $`8esn`,123456789[1e1..0.0]].`1esn`? Create (:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa}),(`3esn` :usn2:@usn6)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]})-[_usn3]-(`` {`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}) Union Create ((usn1 :`4esn`:#usn8)<-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null})),`6esn`=(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}) Unwind 9e12[@usn6..$``][#usn8..Count ( * )] As _usn4"), - octest:ct_string("Optional Match ``=((({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[usn2?]-(`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))),(:usn2:@usn6)-[ *07..]->(`5esn` :`2esn`:`3esn`{_usn3:$`2esn`[$123456789..$`1esn`][0Xa..$``],`5esn`:12.e12[@usn5..123.654]}) Where 0.12 In $7 In 0 Remove `3esn`:`7esn`,(:_usn4:usn1)-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]-(`1esn` :`1esn`).``?,usn2:#usn8"), - octest:ct_string("Delete 0.12 Is Null Is Null Return [@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Order By 123456789 Starts With #usn7 Starts With `6esn` Descending,7[..0X7][..'s_str'] Ascending,None(`4esn` In 's_str'[12..'s_str'] Where 12.0[0Xa][00]) Is Not Null Desc Skip 0x0 Limit (:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[@usn6?:`1esn`]-(:`5esn`)-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`) Starts With Single(_usn4 In usn1 Contains False Contains `` Where $`6esn` Is Null Is Null) Merge `7esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)) On Create Set `3esn`+=00 Ends With $_usn4 Ends With $`2esn` On Match Set `6esn`:usn1,`7esn`+=07[`6esn`..][`5esn`..] Union Detach Delete `1esn`(Distinct 0.0[999..],9e0 Ends With $`7esn`) Ends With (`7esn` {`8esn`:Count ( * ) =~Count(*)})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}) Ends With (#usn7 :`2esn`:`3esn`)<-[`2esn`?*..]->(:#usn8{`5esn`:0 Contains 12e12}),$`8esn` Starts With 1000,({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null Detach Delete _usn3 Is Null,01 Contains 123456789"), - octest:ct_string("Remove (usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})._usn4?,usn1:`3esn`:`1esn`,{`2esn`:9e1 In 01 In 999,`5esn`:$@usn6[..$usn1]}.@usn5! Unwind .e12 =~0.0 =~9e0 As `8esn` Union Detach Delete 07 In Count ( * ) In \"d_str\",Null Is Not Null"), - octest:ct_string("Detach Delete False[..12.e12] Create ({``:.e12[..0.e0][..$`1esn`]})-[_usn3:#usn8]-(usn1 :#usn7) Unwind $123456789 Is Null Is Null As _usn3"), - octest:ct_string("Detach Delete $`7esn` Is Not Null Detach Delete 0Xa In .e1 In Count(*) Remove #usn7(Distinct $@usn6[..$usn1],9e12 Is Not Null Is Not Null).usn1 Union Delete .e1[usn1..] Remove Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]).`1esn`,#usn7:_usn4:usn1,(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})<-[`2esn`:usn1|`3esn` *0Xa]->(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})._usn3!"), - octest:ct_string("With *,0.12 In 01 In $`3esn` As @usn5 Order By Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}) Desc,$12[01..][1.e1..] Descending,`7esn`[Null..][@usn5..] Asc Limit Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null)[count(Distinct 0.12 Contains $12 Contains `8esn`)..[$`1esn` Is Null Is Null,9e1 In 01 In 999]] Where $@usn6 =~usn1 Merge `1esn`=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(usn1 :`4esn`:#usn8{``:0 Is Not Null Is Not Null,`3esn`:usn1 Starts With $#usn7 Starts With `5esn`})) On Match Set #usn8($`2esn` Contains usn1 Contains `2esn`).`3esn`? =0xabc[..$`1esn`][..01] On Create Set @usn6+=[usn1[..$_usn4][..``],0X7[.e12..01234567]] In `3esn`(@usn5[..True][..0X7],$`3esn` =~$`7esn` =~False) Merge @usn5=({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)<-[?:usn2|#usn8{#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7}]-({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) Union Optional Match usn1=((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6)) Delete 0.12 Is Null Is Null Create ((`` :`1esn`)-[`1esn`:usn2|#usn8 *1000..]-(`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[`4esn`]->({`8esn`:0X7 In 's_str' In $`1esn`})) Union Return Distinct `4esn` In $12 In `8esn` As `8esn` Order By $_usn3[..$_usn3][.._usn4] Descending,Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Desc,\"d_str\" =~`6esn` =~0Xa Ascending Skip Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] Delete 12.e12 Contains $`5esn`"), - octest:ct_string("Detach Delete Any(#usn7 In 01234567[$`3esn`..] Where 00 In 1e1)[[usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0|0xabc[12.e12..`1esn`]]..][[@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2]..],12.e12 Ends With 01 Ends With .e1,07[12e12] Detach Delete .e1 Starts With 0.0 Starts With `6esn`,(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')],`1esn` Contains Count ( * ) Remove usn1:`1esn` Union Remove [@usn5 In 0X7 =~.0 =~\"d_str\" Where $123456789 Ends With .e1]._usn4?,Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`]).@usn5?,{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}._usn3 Detach Delete $`3esn` Contains 0X0123456789ABCDEF Contains 00,Extract(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]|1000[..$`6esn`][..0xabc]) Ends With [07[$999],12e12[Count ( * )..][usn2..]]"), - octest:ct_string("Merge (`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) On Match Set `2esn`(Distinct $`2esn`[..7][..$usn1]).`1esn`? ={`4esn`:.12 Starts With 0Xa} Starts With All(usn1 In 00 Starts With _usn3 Where `6esn`[False..0.0][12e12..$usn2]),`5esn` =$usn1[0.12..]['s_str'..],({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})-[#usn8?]-(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7}).`6esn`? =[999[.e12][01],999 In 9e1 In 7,0xabc Contains Null Contains 9e12][All(`6esn` In 0X7 =~`` Where 0.12[Null..])..[`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]]][count(010 Contains Count(*))..(:`4esn`:#usn8)-[:#usn8 *..0X7]->({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6)]"), - octest:ct_string("Merge #usn7=((_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]})) On Match Set @usn6+=(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}] On Match Set (usn1 :#usn7)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->(`4esn` {`7esn`:.e0[..999][..0X7]}).usn2 =$`3esn`[`2esn`...e0] Create ``=((`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(usn1 :_usn3)) With $`8esn` In \"d_str\" In 9e12 Order By 0X0123456789ABCDEF Is Null Is Null Descending Skip Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`])"), - octest:ct_string("Return Distinct $`1esn` Starts With $999 As #usn8,Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)[{#usn8:`5esn` =~0Xa,@usn5:0X7[999][$1000]}..[`` Starts With 12,$`1esn` Starts With $999]][`7esn`(Distinct $usn2[..12.0])..`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])] Order By 9e1 Is Not Null Is Not Null Asc,$usn2[$123456789..123.654][$`5esn`..'s_str'] Desc Union Remove (`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(`4esn` :#usn7).@usn5?,All(`4esn` In `6esn`['s_str'..][010..] Where \"d_str\" =~`6esn` =~0Xa).``!,(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}).usn1!"), - octest:ct_string("Return Distinct *,All(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..]) Is Null Is Null As `6esn`,[#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`][Any(`4esn` In $`8esn` Starts With 1000 Where 123.654 Starts With usn1 Starts With @usn5)..] As `8esn` Order By 0X0123456789ABCDEF[.e0..$`4esn`] Descending,Extract(usn2 In 1000 Contains 0.e0) Ends With All(`4esn` In `6esn`['s_str'..][010..] Where $0[01234567..00][$`2esn`..$@usn6]) Ends With Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]) Descending,9e1 Starts With _usn3 Starts With `4esn` Descending Skip {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7) Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `7esn` Ends With $usn2 Ends With 999).@usn5! Union Return *,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7,@usn6 Starts With `7esn` Starts With Null Skip Count ( * )[..usn1][..12.e12] Limit (`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Union Unwind $#usn7 As `5esn`"), - octest:ct_string("Detach Delete [$`8esn` =~$usn2][Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..],\"d_str\" =~`3esn` =~0x0,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)]"), - octest:ct_string("Detach Delete .e1 Starts With 0.0 Starts With `6esn`,(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')],`1esn` Contains Count ( * ) Unwind 0Xa[0xabc..] As @usn6 Create `4esn`=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})),(`7esn` :_usn4:usn1)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})-[`1esn`{`2esn`:.12 Starts With @usn5 Starts With $#usn8}]->(:usn1{`6esn`:1000 Contains 0.e0,`7esn`:$@usn6[..$#usn7][..12.e12]}) Union Remove Single(_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0).#usn8?,[`2esn` Is Not Null Is Not Null].`7esn` With Distinct [$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] Order By {#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} Desc Skip 00 Starts With _usn3 Limit True =~@usn5 =~$`1esn` Union All Optional Match #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`1esn`=(((`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}))) Where 010 Contains Count(*) Return Distinct *,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] As @usn6 Order By 010 Starts With `7esn` Starts With 9e1 Ascending,123456789 Is Null Descending,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] Desc Skip {#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null Match #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`) Where $`2esn`[..`2esn`]"), - octest:ct_string("Delete $#usn8[0xabc][`3esn`],(:`1esn`{`8esn`:Count ( * ) =~Count(*)})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(`1esn` {_usn4:12.e12 Ends With 01 Ends With .e1})[Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8])],$usn2[False..`7esn`][`7esn`.._usn3] Remove [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7].@usn5,Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])._usn3?"), - octest:ct_string("Unwind 12.e12[0e0..7] As @usn5 Match (((`3esn` :`8esn`)-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(_usn3 :usn2:@usn6)-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}))),`6esn`=((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})) Where 12.e12['s_str'] Union All With 01234567 Ends With 0x0,[`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As #usn8,$1000 Is Not Null Is Not Null Order By 's_str'['s_str'..$usn2][_usn3.._usn3] Asc Skip Extract(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]|1000[..$`6esn`][..0xabc]) Ends With [07[$999],12e12[Count ( * )..][usn2..]] Limit Null[01234567][01234567] Where 0X7[..12e12] With Distinct $12 Contains 123.654 Contains `8esn` As _usn4 Limit Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) Union All Merge _usn4=(usn1 :_usn4:usn1)<-[`5esn` *0..010]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) On Create Set `4esn` =$@usn6 Contains 07 Contains 0.e0 On Match Set [0X7 =~.0 =~\"d_str\",9e1[...e0]].@usn5 =Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}),{@usn6:usn1 In 1000 In $`5esn`,@usn6:9e0[``][123.654]}.`3esn`! =$999 In $`8esn` In `5esn` Merge ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) On Match Set (`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})<-[?{#usn7:`6esn`[False..0.0][12e12..$usn2]}]-(`4esn` {`4esn`:#usn7[..$1000][..01]})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}).`4esn`! =0 Is Not Null,`6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`1esn` =$_usn3[$`4esn`..Null] On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})]"), - octest:ct_string("Create _usn4=(((@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})-[`2esn`:@usn5|`8esn`]-(usn2 :`5esn`)-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4}))) Unwind $`5esn` Contains $@usn6 As @usn6 Return Distinct 1000 Contains $#usn7 Contains `6esn`,12.0 Contains 0.e0 As `6esn`,$12[..7][..07] As #usn8 Order By Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending Skip All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)[[usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1]] Limit 0xabc Starts With _usn3 Union Optional Match `4esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}),(((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Where $_usn3[..Count ( * )][..@usn5] Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..] Union All Remove [Null Contains _usn4].`8esn`!,Single(#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4).@usn6 With Distinct 0 =~12.e12 =~$``,0.12 Contains .e1 As `6esn`,01 Contains $`7esn` Contains 9e0 Order By Count ( * )[..1e1] Asc,_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) Asc,[0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] Ascending Skip Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] Limit _usn3(0x0[0X7..][usn1..])[..Any(#usn8 In $`5esn` Is Null Is Null Where 999[$`8esn`])][..{#usn7:False[`2esn`..#usn8]}] Detach Delete $`7esn` In 0.e0 In `4esn`"), - octest:ct_string("Match `3esn`=(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}),usn2=((#usn8 :`4esn`:#usn8)-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)) Where $`8esn` =~$usn2 Merge _usn3=(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})) On Create Set `4esn`(Distinct .0 Starts With `2esn` Starts With `6esn`).`7esn`! =Filter(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[[1e1[0.0],0 Contains 12e12,$123456789[..0x0][..`4esn`]]],`8esn` =[@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] Merge ((`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}))"), - octest:ct_string("Create (#usn7 $usn2)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ) Union All Unwind [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] As #usn7 Match ((`` :`1esn`)-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`4esn` {`2esn`:@usn6[`5esn`..$`3esn`],`7esn`:$`1esn` Is Null})) Where $`8esn`[$``..$7][$1000..$`7esn`]"), - octest:ct_string("Unwind {@usn6:`7esn` In 999 In @usn6} Starts With Extract(usn1 In 0x0[..`4esn`] Where 0x0|07 Ends With 07) Starts With Filter(usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12) As _usn3 Return Distinct .12[#usn7][$`8esn`],12 Ends With 07 Ends With @usn6 As usn1 Order By $999[..`1esn`] Ascending,Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending,[$`8esn` =~$usn2][Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..] Asc"), - octest:ct_string("With ({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn`,$@usn5 Contains 01 As ``,$usn1[#usn8..][``..] As `2esn` Order By 0e0[`2esn`..010] Ascending,Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)[{#usn8:`5esn` =~0Xa,@usn5:0X7[999][$1000]}..[`` Starts With 12,$`1esn` Starts With $999]][`7esn`(Distinct $usn2[..12.0])..`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])] Descending Limit `4esn` =~123456789 Union All Create `7esn`=((({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null})<-[`7esn`?:`8esn`|:usn1]-(`7esn` :#usn8)-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`))),`5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) Union All Detach Delete 1000 Ends With 1000 Ends With $`4esn`,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)],{_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]} Optional Match #usn7=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))),(((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]-({usn1:0x0[0X7..][usn1..]}))) Detach Delete .e12 Contains 9e0,$`2esn`[``..],Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*))"), - octest:ct_string("Return Distinct (_usn3 :`6esn`:`7esn`{usn1:$_usn3[9e1][$_usn4],`8esn`:123456789 =~_usn4 =~$0})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-({`1esn`:@usn6}) In _usn3(0x0[0X7..][usn1..]) In None(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str') As _usn4 Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending Skip 07[12][$`6esn`] Remove ({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})-[#usn8?]-(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7}).@usn6?,{`3esn`:`4esn`[7..][1000..],usn2:123456789 Starts With `2esn` Starts With 9e12}.`8esn`!,@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12).`5esn`! Create ((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})),#usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) Union All Match ``=((@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`)) Merge #usn8=(({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({_usn3:$`1esn` Starts With @usn6})) Detach Delete 12 Ends With 01 Ends With 1e1,010 =~$usn2 =~1e1,`1esn` In 999 In $#usn7"), - octest:ct_string("Unwind 1e1[@usn5..] As _usn4 Union Optional Match @usn5=((:#usn8$usn1)-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})),((#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})) Unwind Count(*) Is Null As `2esn` Create (@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Union Return 's_str'[.12..$#usn7][$999..`2esn`] As `5esn` Order By Count ( * ) In 010 Descending,12e12[_usn3..][$@usn5..] Ascending,usn2 Starts With `6esn` Starts With 12e12 Desc Limit Count ( * )[..usn1][..12.e12] Return Distinct *,[#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|@usn6 Starts With `7esn` Starts With Null] Is Not Null Is Not Null,`8esn`[_usn3..$#usn7] Order By 's_str' Starts With 1000 Starts With #usn8 Descending"), - octest:ct_string("Create (((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Match (usn2 :#usn8{`3esn`:123.654[@usn5]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`}),((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[usn1?:`1esn` *0X0123456789ABCDEF..{usn2:$`4esn`[12.e12..][0.0..]}]-(#usn7 :`5esn`)) Where 1e1[..False] Union Merge `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})) On Match Set `` =None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..],#usn7($`8esn`[$``..$7][$1000..$`7esn`],`2esn` In 7 In usn2).`6esn`? =$_usn4['s_str'..],`4esn`+=$`7esn` Ends With $usn2 On Match Set `` =Count(*) Ends With 010,None(usn1 In 0x0[..`4esn`] Where $999[12.0..]).@usn6 =0 Is Not Null Is Not Null,`7esn`+=`4esn`(Distinct .0 Starts With `2esn` Starts With `6esn`) Contains Extract(@usn6 In @usn5 In $`6esn` Where $@usn6[..12e12]|$@usn6 =~usn1) Contains (@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[`4esn`?:`8esn`|:usn1 *..0x0]->(:`7esn`{``:$`1esn` Starts With @usn6}) Detach Delete {usn2:123456789 Starts With `2esn` Starts With 9e12} Ends With All(usn2 In 1000 Contains 0.e0 Where 01234567[Null..0.e0][Count(*)..$#usn8]),9e0[``][123.654] Unwind 1000 Contains 0.e0 As #usn8"), - octest:ct_string("Delete (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]),[usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..],{_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] Create #usn8=(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}) Return Distinct *,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}) Skip ({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}) =~None(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Union All Remove usn1:`1esn` Delete {@usn5:$`3esn`} Starts With .12,.12[..`6esn`][..\"d_str\"],$#usn7[True..][$0..] Unwind 9e1 Starts With `1esn` Starts With 0Xa As `2esn`"), - octest:ct_string("Unwind 1e1[.e1..] As #usn7 Unwind `3esn`(`7esn` Starts With $usn2 Starts With .e0,$_usn3 =~`7esn` =~$_usn4)[[$`2esn`[123456789..][00..],Count ( * )[@usn6..0x0]]..][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0)..] As usn1 Merge ((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[? *0..010]-(#usn8 :`4esn`:#usn8)) On Create Set `4esn` =.e12[.12..][_usn4..] On Match Set {`2esn`:12 =~usn1 =~.e12}.usn2 =False Is Not Null Is Not Null,`3esn` =010 In @usn5 In `5esn`,[usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null].@usn5! =$1000 Ends With 1e1 Ends With 123.654 Union Delete 12e12[.12..],`1esn` In 999 In $#usn7 Create (((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})-[_usn4?:`5esn`|`1esn`]-(@usn5 {``:12[usn1][True],``:$`5esn` In `2esn` In $12})<-[`` *0xabc]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}))),`6esn`=(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Remove [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0].`3esn`,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``!"), - octest:ct_string("Merge `8esn`=(:`8esn`) On Match Set [999[``..][Null..],`5esn` =~0Xa].@usn6? =[`6esn` In 0X7 =~`` Where `` Contains 12 Contains True|@usn5[..True][..0X7]][(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})..{`4esn`:9e0 Starts With `6esn`}][Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `5esn`[`1esn`..`1esn`])..(`3esn` :usn2:@usn6)<-[`7esn`?:@usn5|`8esn`]-(`1esn` :``)],#usn8+={`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}],`3esn` =7[..0X7][..'s_str'] Match ``=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))) Where $`6esn` Is Null Is Null Union With $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Order By $12[01..][1.e1..] Descending Skip .12[.e12..0.e0][0.e0..$`2esn`] Where $_usn4[12e12][`4esn`] Merge `1esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[? *999..]-(`` :`1esn`) On Create Set usn2 =0.0[..12e12][..$0] Merge `2esn`=(_usn4 {`8esn`:9e1 In 01 In 999})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`) On Match Set @usn5+=`1esn`[9e12..$`8esn`][usn2..$``],usn1 =[12.e12 Ends With 01 Ends With .e1,$@usn5[0.12..][@usn5..],$usn1 In 1000 In $#usn7] Is Not Null On Match Set _usn4 =0 Contains 12e12,`1esn`:#usn8,`7esn` =0 Is Not Null"), - octest:ct_string("With Distinct *,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Limit Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}) Return Distinct *,.e1[usn1..],$1000[.e0..] As `3esn` Skip `5esn`[Count ( * )..][\"d_str\"..] Merge (`7esn` {_usn3:usn1 Contains $``})<-[usn1]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12}) On Create Set `4esn` =.e12[.12..][_usn4..] On Match Set @usn5+=`` In `6esn`,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`` Is Null Is Null).`` =12.e12 Is Not Null"), - octest:ct_string("Optional Match `6esn`=({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}),_usn4=((#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) Return *,False In `3esn`,12.e12[$`7esn`] Order By $`1esn` Ends With _usn4 Ends With `3esn` Descending Merge #usn8=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) On Match Set `2esn`+=123.654 In \"d_str\" In $_usn3 Union Delete `6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),$@usn6[..$#usn7][..12.e12],.e0[`4esn`..`4esn`][0.0..$0] Delete 12.e12 In $1000,{_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]},$999 Ends With $`3esn` Ends With `8esn`"), - octest:ct_string("Unwind [`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As @usn5 Return *,[010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]][(:@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})..][Extract(#usn8 In $`5esn` Is Null Is Null Where 1000[0.0][Null])..] As `8esn`,`5esn` =~0Xa As usn1 Order By 0X0123456789ABCDEF Is Null Is Null Descending,Count ( * ) In 010 Descending,`5esn` In $999 Descending Limit .e0 Contains #usn7 Contains $#usn8"), - octest:ct_string("Unwind $usn1[1e1.._usn3][$@usn6..$#usn7] As usn1 With Distinct Count ( * ) Ends With 1000 Ends With 12 As _usn4,False[..12.e12] Skip {usn2:123456789 Starts With `2esn` Starts With 9e12} Ends With All(usn2 In 1000 Contains 0.e0 Where 01234567[Null..0.e0][Count(*)..$#usn8]) Where 0 Is Null Is Null Delete `2esn`[_usn3..$``],#usn8 Starts With 0x0 Starts With $@usn5"), - octest:ct_string("Remove {`1esn`:`7esn`[Null..][@usn5..]}.`7esn`! Create (({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) Remove `4esn`:`3esn`:`1esn`"), - octest:ct_string("Create ``=(:``{#usn8:$`2esn`[..`2esn`]}),`6esn`=((`3esn` :#usn8)) Remove {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`}.`6esn`!,Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where True Contains @usn6|123456789 Starts With `2esn` Starts With 9e12).usn2?,Extract(usn1 In 0x0[..`4esn`] Where 12.e12 Contains `5esn`|$123456789 Contains 01 Contains 0.12).``! Union All Optional Match #usn8=((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(#usn7 :`3esn`:`1esn`)<-[?{`4esn`:12e12[$`5esn`][07]}]-(:`1esn`{_usn4:$_usn3[Null]})) Where 12 =~usn1 =~.e12 Union All Merge ((:#usn8)<-[`2esn`?]-(:usn2:@usn6{_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})<-[`5esn`? *999..{#usn7:0X7[12]}]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})) On Create Set `4esn` =.e12[.12..][_usn4..] On Create Set #usn7+=$123456789[0.0..] Detach Delete {`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)],({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) In None(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn8 Ends With `4esn` Ends With $`4esn`) In Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])"), - octest:ct_string("Return *,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7,@usn6 Starts With `7esn` Starts With Null Skip Count ( * )[..usn1][..12.e12] Limit (`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Union Merge (((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) On Match Set (`4esn` :`6esn`:`7esn`)-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(`5esn` {@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}).#usn8 =False In 123456789 In $0,Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])._usn4! =9e1[010..] Unwind 01 In _usn3 In 12 As `3esn` Detach Delete [0.12 Contains $`2esn` Contains $_usn4,01 Ends With .e0] Starts With [usn1 In $123456789 Contains usn2 Where usn1[..@usn5][...e0]] Starts With All(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`) Union All With Distinct 0[usn2..],0Xa[#usn7] As `4esn`,9e1 Starts With `1esn` Starts With 0Xa As usn2 Order By [#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|@usn6 Starts With `7esn` Starts With Null] Is Not Null Is Not Null Descending,0.12 =~9e0 Desc,7 =~9e0 =~'s_str' Descending Where 12.e12[$1000..] Match `1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]}))"), - octest:ct_string("Merge `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) On Create Set `4esn` =010 In `7esn`,usn2+=0.e0[@usn6][0x0] Optional Match ((`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})<-[?{`8esn`:_usn3 Ends With 0x0 Ends With 01234567,#usn8:$`7esn` Is Null Is Null}]->(:``{#usn8:$`2esn`[..`2esn`]})<-[@usn5:#usn7|:_usn4]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})),_usn3=(`6esn` :`7esn`)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]}) Where @usn6[`3esn`..][$7..] Optional Match `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) Where usn1 In 1000 In $`5esn`"), - octest:ct_string("With Distinct *,01234567 Is Null Is Null Order By `3esn`(Distinct 0.0[999..])[Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..[010 =~$usn2 =~1e1,`1esn`[@usn6..$123456789]]] Asc,All(_usn4 In usn1 Contains False Contains `` Where $`4esn`[$`2esn`..])[..Single(usn1 In $123456789 Contains usn2 Where $usn1[0.12..]['s_str'..])][..``(Distinct `1esn`[0e0..])] Ascending,0X7[.e12..01234567] Descending Skip [999[.e12][01],999 In 9e1 In 7,0xabc Contains Null Contains 9e12][All(`6esn` In 0X7 =~`` Where 0.12[Null..])..[`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]]][count(010 Contains Count(*))..(:`4esn`:#usn8)-[:#usn8 *..0X7]->({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6)] Optional Match `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})),((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`1esn`{`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654}]->(`7esn` :`7esn`)) Detach Delete 999 In 12 In \"d_str\",$`5esn` Contains Count(*) Contains #usn7"), - octest:ct_string("Remove None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12).#usn8 Union All Optional Match `5esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``),`4esn`=(:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8) Where 07[12][$`6esn`] Unwind ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]}) =~`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0) As `3esn`"), - octest:ct_string("Unwind None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] As `8esn` Union Return 0 =~12.e12 =~$``,@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn` Order By $`7esn` Starts With 07 Ascending Merge (usn1 {`4esn`:$123456789[0.0..],`2esn`:12 Ends With 01234567})<-[usn1? *..0X7]-(usn1 :`4esn`:#usn8)-[ *010{@usn5:Null Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Match Set [0X7 =~.0 =~\"d_str\",9e1[...e0]].@usn5 =Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}),{@usn6:usn1 In 1000 In $`5esn`,@usn6:9e0[``][123.654]}.`3esn`! =$999 In $`8esn` In `5esn` On Match Set `6esn` =7[..0X7][..'s_str'],[$`5esn` Contains $@usn6].`1esn` =1e1[@usn5..],Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 07 In 0 In 's_str').@usn5? =True Is Not Null Union All Unwind 123456789 =~Filter(usn2 In 1000 Contains 0.e0 Where 0X7[0e0..]) =~{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999} As `4esn` Return *,{_usn4:$123456789 Is Not Null Is Not Null} As `5esn`,None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] As _usn3 Order By $_usn4[$`1esn`] Asc,$7 Ends With `5esn` Descending Limit .e1 Ends With _usn4 Ends With @usn5 Merge (`7esn` {_usn3:usn1 Contains $``})<-[usn1]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12}) On Create Set `4esn` =.e12[.12..][_usn4..] On Match Set @usn5+=`` In `6esn`,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`` Is Null Is Null).`` =12.e12 Is Not Null"), - octest:ct_string("Create (({#usn8:12.0[..$7][..999],@usn5:$`1esn` Is Null})<-[``?:`1esn` *0xabc{`5esn`:$``[_usn4..][`7esn`..]}]->(#usn7 :@usn6:`7esn`{_usn3:\"d_str\" =~`3esn` =~0Xa})) Unwind [@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] As `3esn` Union All Create `8esn`=(`4esn` {`3esn`:0X7[..12e12],`8esn`:False In 123456789 In $0})-[`4esn`?:`1esn`]->(:`2esn`:`3esn`{usn2:$`5esn` In False})<-[#usn7? *00..]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]}),`7esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})) Return Distinct *,1.e1[Null][12.e12] As ``,Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) As _usn3 Order By 0.e0[`6esn`...e0][9e12...e12] Descending,_usn3 In .e1 In $12 Asc Skip [$`4esn`[9e1..][0..]][Any(`4esn` In $`8esn` Starts With 1000 Where 0.e0[9e1..][0.0..])..Single(#usn8 In $`5esn` Is Null Is Null Where 1000 Ends With 1000 Ends With $`4esn`)] Limit 123456789 =~_usn4 =~$0 Return Distinct $@usn5 =~$`` =~$usn2 As @usn6,usn1 Is Not Null Is Not Null,01 In 01 In 12 Order By Extract(usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`) Contains [0 Contains 12e12,0xabc Ends With $7 Ends With $`2esn`,0x0 =~_usn4] Ascending,07[1e1] Ascending Limit $`8esn` Starts With 1000"), - octest:ct_string("Unwind $usn2[$123456789..123.654][$`5esn`..'s_str'] As #usn8 Union With Distinct 's_str'[.12..$#usn7][$999..`2esn`] As `5esn` Limit $_usn3[..Count ( * )][..@usn5] Where @usn5 Ends With $`3esn` Ends With 12e12 With *,.e12 Starts With True As _usn4,$1000 In $`7esn` In $7 Skip [$1000 =~$`7esn`,.12 Starts With @usn5 Starts With $#usn8,0x0[...e12][..@usn5]] Ends With Single(@usn5 In .12[#usn7][$`8esn`]) Limit Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]|$0 =~$usn1 =~9e1)[{``:\"d_str\",`1esn`:$1000 =~$`7esn`}] Union Merge `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) On Create Set `5esn` =999[.e12][01],Extract(usn1 In 0x0[..`4esn`] Where @usn6[$`3esn`]).#usn8? =`1esn` In 999 In $#usn7,usn1 =12.e12[0e0..7] On Match Set `1esn`+=Null[0e0][12],Filter(usn1 In 0x0[..`4esn`] Where $`` Ends With 12e12).usn1! =Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] Merge ({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})-[#usn7:`1esn` *07..]->(:`7esn`{``:$`1esn` Starts With @usn6})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) On Match Set [`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|`` Contains 12 Contains True].`2esn`? =$@usn6[..$#usn7][..12.e12],None(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12).`8esn`! =12[..9e0][..999] Match `1esn`=(_usn3 :`4esn`:#usn8{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})"), - octest:ct_string("Create #usn7=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),@usn5=(((_usn3 :_usn3{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[#usn8:`3esn`|:`4esn` *0..010]-(:usn1{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]})))"), - octest:ct_string("Unwind ``[Count(*)..][@usn5..] As usn1 Detach Delete {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}[..[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]]] Union All Remove (`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[? *0..010]-(#usn8 :`4esn`:#usn8).`6esn`!,[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null].`5esn`? Remove Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where .e12[..0.e0][..$`1esn`]).`5esn`!,Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`).`5esn`? Remove {`6esn`:9e1 Contains $`3esn` Contains 01234567}.`2esn`"), - octest:ct_string("Unwind $`` Is Null Is Null As #usn8 Union Detach Delete Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`)[Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01)..][{`1esn`:@usn6[`5esn`..$`3esn`],_usn3:$999 Ends With $`3esn` Ends With `8esn`}..],All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..] Match (`6esn` :`5esn`)<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6),_usn3=(($999)) Where 0X7 =~`` Return 0X7 In $@usn5 In 9e0,$`1esn`[9e1.._usn4][$999..$`2esn`] Skip $`5esn` In `2esn` In .0 Limit .0 Is Null Is Null Union All With Distinct *,`7esn` In 999 In @usn6,00 Is Null Is Null Order By None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`)[`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)..] Desc,$`3esn` In $12 In 's_str' Asc Skip $123456789 Is Null Is Null Limit .e0 =~`5esn`"), - octest:ct_string("Create usn1=((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)),(:usn1) Detach Delete $`6esn` =~Null =~9e12 Delete Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]},0.12 Is Null Is Null Union Merge `8esn`=((`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) On Match Set Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0Xa Is Not Null Is Not Null)._usn3? =Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}),#usn7+=$`7esn` =~.e1,Filter(`4esn` In 's_str'[12..'s_str'] Where $123456789 Contains 01 Contains 0.12).#usn8! =.12[`1esn`..] On Create Set #usn8+=12[0X7..@usn6],{``:12e12[$`5esn`][07],_usn3:$`6esn` Is Null Is Null}.usn1 =$`6esn` Is Not Null Is Not Null Optional Match `1esn`=(((`` :@usn5)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn5:`8esn`|:usn1]-(#usn7 :`5esn`))),usn1=(_usn4 :`8esn`{`3esn`:False[.e1..Null],`3esn`:9e0 =~$`5esn`}) Where 9e1 Is Null Is Null Merge ((({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[usn2?]-(`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))) On Match Set `2esn` =$usn2[False..`7esn`][`7esn`.._usn3],``+=_usn4 Ends With 01 Ends With $`1esn`,``+=01 Ends With .e0 On Match Set `7esn` ={`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)],@usn6 =`5esn` In $999 Union All With [@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] As `3esn`,`` =~12 =~$#usn7,False Is Not Null Is Not Null As `2esn` Skip 999[$usn2..] Limit 00 In 0.12 In `5esn` Where $7[.12] Merge #usn8=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})))"), - octest:ct_string("Create (({``:12 Is Null Is Null})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)})),#usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})) Remove (`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(`4esn` :#usn7).@usn5?,All(`4esn` In `6esn`['s_str'..][010..] Where \"d_str\" =~`6esn` =~0Xa).``!,(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}).usn1! With Distinct `2esn` Contains $999 As #usn7,$123456789[False.._usn3] As `1esn` Order By (usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Ends With [$`8esn` =~$usn2,0X0123456789ABCDEF[..usn1],`` In `6esn`] Descending Skip 0X7[..12e12] Union All With Distinct 010 Starts With `7esn` Starts With 9e1,False[.e1..Null] As `2esn` Order By {`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]} Ends With (usn1 :_usn3)<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})-[ *..0x0]->(:`7esn`{@usn6:0.0[999..],#usn8:Null Is Null Is Null}) Asc Skip [@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Where .e12[..0.e0][..$`1esn`] Union Unwind 07[..010][..12.0] As `3esn` Return Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] As usn1,@usn5[_usn4..][.e0..] As usn1 Limit $`1esn` Is Null"), - octest:ct_string("Unwind $`3esn`[@usn5..$123456789] As `2esn` Unwind $`` Is Null Is Null As `7esn` Return *,0.12[Count(*)..],$@usn5 =~$`` =~$usn2 As #usn8 Union Merge _usn3=((_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})) On Match Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] On Create Set None(`4esn` In 's_str'[12..'s_str'] Where @usn5 In 0X0123456789ABCDEF).`2esn`! =$`1esn` Is Null,`5esn`()._usn4! =[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00],`8esn` =`7esn` Contains .0 Contains 9e12 Union All Unwind 0 Starts With `6esn` Starts With 0X0123456789ABCDEF As @usn6 Return *,01234567 Is Null Is Null Order By {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}[..[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]]] Ascending Skip 010 =~$usn2 =~1e1"), - octest:ct_string("Unwind $`1esn` =~$`1esn` =~#usn7 As `4esn` Unwind 010 In @usn5 In `5esn` As #usn7 Merge _usn3=(((:@usn5{#usn7:1e1[@usn5..]})-[:#usn8 *..0X7]->($12)-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})))"), - octest:ct_string("Create @usn6=((:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})-[?:`4esn`|:`7esn`]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})),#usn7=(@usn5 {usn2:$999[12.0..]})<-[usn1]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[_usn3?:``|:_usn4]->(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})"), - octest:ct_string("Unwind `2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As `4esn` Return Distinct *,01234567 Is Null Is Null Order By 0e0 =~Count(*) =~0Xa Descending Skip [$1000 Is Null Is Null] Is Null Limit Extract(@usn6 In @usn5 In $`6esn` Where $`5esn` Contains $@usn6|$0[7..][Null..])[[`6esn` In 0X7 =~`` Where 9e1[0.e0..][#usn8..]]]"), - octest:ct_string("Create (@usn5 {_usn4:_usn3 Ends With 0x0 Ends With 01234567}) Union All With Distinct 0['s_str'][Null] As #usn7,{`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])] As `3esn`,Null Starts With _usn4 Starts With `6esn` As _usn3 Order By $`1esn`[$_usn3..][9e1..] Asc,$`2esn` Starts With .e0 Starts With 12.0 Descending,999 Contains `7esn` Ascending Limit 9e1 =~.0 =~$`1esn` Union Remove [$`5esn`[False],9e1 Contains $`3esn` Contains 01234567,`5esn`[Count ( * )..][\"d_str\"..]].@usn5!,`3esn`:_usn4:usn1,[usn1 In 00 Starts With _usn3].#usn8? Return Distinct *,$@usn6[..$usn1] As _usn3 Order By {``:12e12[$`5esn`][07],_usn3:$`6esn` Is Null Is Null} Ends With [0 Is Not Null Is Not Null] Descending,Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Desc,.12 Ends With `1esn` Ends With $`1esn` Asc Limit `7esn` Starts With $`` Starts With $#usn7 Merge ((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8))"), - octest:ct_string("Create `8esn`=((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`).``? Remove All(@usn6 In @usn5 In $`6esn` Where $@usn5 In 12e12 In Count(*)).#usn8?,[`4esn` In 's_str'[12..'s_str']].#usn7!"), - octest:ct_string("Create (((_usn3 {usn1:_usn3 Contains @usn6 Contains 1.e1})-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 {#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7})<-[_usn3:``|:_usn4 *999..]->(`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`}))) Optional Match @usn5=((:#usn8$usn1)-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})),((#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})) Union All With Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As `1esn`,0.e0[..#usn8][..Null] Order By 07 Ends With 07 Asc,12.e12[$`7esn`] Desc Limit {usn1:'s_str'[12..'s_str'],#usn7:07[`6esn`..][`5esn`..]} Return $`5esn` In `2esn` In $12 As `3esn` Order By [@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0] Is Null Descending,.e1 Starts With $`8esn` Descending,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] Asc Skip $@usn5 Unwind Extract(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0|$_usn4[`3esn`][0]) Is Null Is Null As `` Union All With $`7esn` Is Null Is Null,0Xa[#usn7] As `4esn` Order By $`5esn` Is Null Is Null Ascending,`` Asc,usn2 Starts With `6esn` Starts With 12e12 Desc Limit 9e1[$@usn6..] Optional Match ((:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]})),`6esn`=((#usn7 {`2esn`:$@usn6[..$usn1],usn2:12 Ends With 01 Ends With 1e1})) Remove `3esn`:#usn7,None(`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]).#usn8?"), - octest:ct_string("Create (`1esn` :`1esn`) Return Distinct Null Is Null Is Null As `6esn`,$#usn8[1e1][9e1] As @usn5,[@usn5 In .12[#usn7][$`8esn`] Where $_usn4[12e12][`4esn`]][`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])..``(False In `3esn`)][[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]]..Filter(@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12])] Order By `2esn` Contains $999 Asc Skip $@usn6 =~$#usn8 =~$#usn7 Limit 12.0[({#usn8:12.0[..$7][..999],@usn5:$`1esn` Is Null})-[#usn7:`1esn` *07..]->(#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})..`4esn`(Distinct $`` Ends With 12e12)] Unwind $usn1[1e1.._usn3][$@usn6..$#usn7] As usn1 Union All Create @usn6=(`` :#usn7)<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})<-[`5esn`?:`6esn`]->(`6esn` :`6esn`:`7esn`{_usn4:\"d_str\"}),`6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union All Unwind All(usn1 In 0x0[..`4esn`] Where 07 In $7 In 12) =~Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 999[$`6esn`]|$`8esn` In \"d_str\" In 9e12) As #usn7 Unwind Single(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`) Is Null As `2esn` Optional Match `4esn`=(:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) Where $usn2[..12.0]"), - octest:ct_string("Remove {`5esn`:0e0 =~_usn4}.usn1?,[usn1 In 00 Starts With _usn3 Where False[.e1..Null]].`4esn`? With *,0 Is Not Null Order By 07[`6esn`..][`5esn`..] Desc,_usn3[`3esn`][False] Ascending,Extract(usn2 In 1000 Contains 0.e0) Ends With Single(usn1 In 0x0[..`4esn`] Where 12.e12 Contains `5esn`) Ends With Single(usn1 In 00 Starts With _usn3 Where $0[01234567..00][$`2esn`..$@usn6]) Desc Where $#usn7 In .e1 In 01 Union All Create (`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})-[`1esn`:usn2|#usn8 *1000..]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`),`4esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Delete (`6esn` {@usn6:9e0 Contains `8esn`})<-[`5esn`:usn1|`3esn` *010{`2esn`:`6esn` =~01234567 =~0Xa}]-(usn2 {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789})<-[ *00..{`3esn`:12 Ends With 01234567,`4esn`:00[``..][$`4esn`..]}]->(`2esn` :``)[[999[``..][Null..],usn1 In 1000 In $`5esn`,`5esn`[.e1][0Xa]]] Create ((_usn4 {`8esn`:9e1 In 01 In 999}))"), - octest:ct_string("Match `7esn`=(@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}),@usn6=({_usn3:12.e12 In $0 In Count(*)})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}) Where 1e1 In 9e0 In 9e0 Create (({#usn8:12.0[..$7][..999],@usn5:$`1esn` Is Null})<-[``?:`1esn` *0xabc{`5esn`:$``[_usn4..][`7esn`..]}]->(#usn7 :@usn6:`7esn`{_usn3:\"d_str\" =~`3esn` =~0Xa})) Union Delete (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]),[usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..],{_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] Create #usn8=(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}) Return Distinct *,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}) Skip ({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}) =~None(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Union Create `6esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Return Distinct .12[#usn7][$`8esn`],12 Ends With 07 Ends With @usn6 As usn1 Order By $999[..`1esn`] Ascending,Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending,[$`8esn` =~$usn2][Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..] Asc Remove ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`5esn`? *010]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null}).`7esn`!"), - octest:ct_string("Delete {`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}[[`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]]][Count ( * )],[$1000 Is Null Is Null] Is Null Merge ((_usn4 {`8esn`:9e1 In 01 In 999})) Union Merge ((:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})) On Match Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..] Optional Match #usn8=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),((#usn7 :_usn3)<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]})-[#usn7:_usn3|:`4esn`]-(:#usn7{usn1:$123456789[..0.12][..#usn7]})) Optional Match (`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}),(:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}) Where Null[01234567][01234567] Union All Merge `1esn`=((({`6esn`:$`8esn`[..$``]})-[`2esn`]-(@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12}))) On Match Set #usn7 =(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`) Is Not Null Is Not Null,`1esn` =`` =~12 =~$#usn7,[123456789[$#usn7..],_usn4[0xabc..],$`3esn` Starts With 01234567 Starts With $1000].`1esn`! =0X0123456789ABCDEF Starts With `2esn` Starts With $999 Remove Any(#usn7 In 01234567[$`3esn`..] Where 0Xa[0xabc..$#usn8])._usn4! Optional Match (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5)))"), - octest:ct_string("Create `1esn`=(((usn1 :`4esn`:#usn8)-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}))),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`)<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)) Remove ({`5esn`:9e1 Starts With _usn3 Starts With `4esn`})<-[@usn5?:``|:_usn4]-({`5esn`:123456789 Starts With `2esn` Starts With .0}).#usn7 Delete $`1esn` Is Null Is Null,_usn4 Starts With 0X7"), - octest:ct_string("Optional Match ((:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})),_usn4=(({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})<-[#usn7]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn4:usn1)) Where _usn4 Ends With 01 Ends With $`1esn` Union All Merge usn2=((`3esn` :`4esn`:#usn8)<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})) On Match Set #usn7 =Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]} On Create Set `1esn` =Null[0.e0..0x0] Optional Match ({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}),(usn2 :`2esn`:`3esn`)-[`7esn`?]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) Where 0Xa Is Null Is Null Delete 1000 Contains 123456789 Contains 1e1,(`6esn` :`3esn`:`1esn`{_usn3:1e1[.e1..],`1esn`:$#usn8})-[`4esn`:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]-(`5esn` :#usn7)-[ *..0X7]->(`5esn` :_usn4:usn1) Starts With None(@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2) Starts With [.0 =~$#usn8 =~.0,0e0 Is Not Null Is Not Null,_usn3[.0]],0e0 Union Merge _usn3=((#usn7 :``)<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]})<-[? *12..0xabc]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})) On Create Set `6esn` =7[..0X7][..'s_str'],[$`5esn` Contains $@usn6].`1esn` =1e1[@usn5..],Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 07 In 0 In 's_str').@usn5? =True Is Not Null On Create Set usn2 =_usn3 Is Not Null Is Not Null,`4esn` =.e1 Starts With $`8esn`"), - octest:ct_string("With Distinct *,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] As `8esn`,123456789 Starts With `2esn` Starts With 9e12 As `3esn` Skip Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) Limit `6esn` Starts With $@usn6 Where 12[0X7..@usn6]"), - octest:ct_string("With Distinct 0X7 In $@usn5 In 9e0,$`1esn`[9e1.._usn4][$999..$`2esn`] Skip $`5esn` In `2esn` In .0 Limit .0 Is Null Is Null Return Distinct 01234567[$@usn6..0X7][$`1esn`..123.654] As `6esn`,Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789},{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[{`4esn`:$7 Ends With 12.0 Ends With 0xabc,_usn4:0X0123456789ABCDEF[.e0..$`4esn`]}..][Extract(`4esn` In `6esn`['s_str'..][010..] Where $999 Ends With $`3esn` Ends With `8esn`)..] Skip {#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null Limit 12.0 Contains 9e0 Contains $`7esn` Return *,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] Order By 0.0 Is Null Is Null Ascending,$usn2[0e0..] Descending,'s_str'[..0.0][..$`4esn`] Ascending Skip $`2esn`[``..] Limit `3esn` =~`3esn` =~$`6esn` Union All Remove Filter(`4esn` In `6esn`[1e1..] Where 12.0[``]).#usn8!,{`8esn`:usn2 Is Null Is Null,#usn8:True =~@usn5 =~$`1esn`}.usn2!"), - octest:ct_string("Merge @usn6=({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567}) On Match Set #usn7 =Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]} Union Remove [$`2esn` =~'s_str',12 Ends With 01234567,$1000 Is Null Is Null].`3esn`?,[12.e12[...0][..0x0]]._usn4,(`1esn` :`8esn`)<-[#usn7:`3esn`|:`4esn` *00..]->(`4esn` :`8esn`)-[`4esn`? *0Xa]-(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}).`3esn`? With Distinct [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending,9e12 Asc Skip 0X7[.e12..01234567] Limit $_usn4[0.12..$`6esn`][00..$@usn6] Match `4esn`=(({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})) Union Create ((`7esn` :`2esn`:`3esn`{@usn6:9e0 Ends With $`7esn`})),``=((`3esn` ))"), - octest:ct_string("Delete `7esn`($123456789 In Count(*) In .e1) Ends With Extract(@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|Count ( * )) Ends With Any(usn1 In 0x0[..`4esn`] Where False[.e1..Null]),usn2 Starts With `6esn` Starts With 12e12 Merge `1esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) On Create Set Extract(`4esn` In `6esn`['s_str'..][010..] Where 01 Ends With .e0|00[7..$123456789]).usn1? =usn2[`3esn`][_usn3],usn2+=[usn1[..@usn5][...e0]] In Extract(`6esn` In 0X7 =~`` Where $1000 Contains $`3esn`|12 Ends With 01234567) In {`3esn`:$`5esn` In `2esn` In .0,``:0e0 Is Null Is Null} On Create Set usn1+=`4esn` Ends With 123456789 Ends With @usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`! =\"d_str\" =~`3esn` =~0Xa,Any(_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0)._usn3 =`` =~12 =~$#usn7 Merge usn1=(({``:12 Is Null Is Null})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)}))"), - octest:ct_string("Create `6esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})),(((`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`5esn`)<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 ))) Return *,123456789 Starts With #usn7 Starts With `6esn` Order By 's_str' Is Not Null Is Not Null Asc,_usn3 Ends With 0x0 Ends With 01234567 Ascending Skip Filter(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null) Ends With [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1] Ends With _usn3(Distinct $123456789 Ends With $`6esn`) Remove {@usn5:7[..12e12][..$`6esn`]}.usn1,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]|9e0 Starts With `6esn`].#usn8?,9e12.usn1"), - octest:ct_string("Remove (`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[? *0..010]-(#usn8 :`4esn`:#usn8).`6esn`!,[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null].`5esn`? Remove Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where .e12[..0.e0][..$`1esn`]).`5esn`!,Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`).`5esn`? Remove {`6esn`:9e1 Contains $`3esn` Contains 01234567}.`2esn` Union Unwind 9e12 As `7esn` Unwind 12.e12 Contains $`5esn` As #usn7 Remove {`6esn`:$`8esn`[``..][123.654..],``:999[$`6esn`]}.``,[0X7[..12e12],$`6esn`[$`1esn`][1000]].usn2?"), - octest:ct_string("Return $usn2[12..$`7esn`][$0..$`7esn`],0x0 Contains _usn4 Contains 123456789 As `7esn`,9e12 Ends With 0X0123456789ABCDEF Ends With #usn7 As `5esn` Order By 01234567 Ends With 12.0 Ends With 0X7 Ascending,12e12 Ends With 010 Ends With .0 Asc Limit count(Distinct 's_str' Starts With 1000 Starts With #usn8,12e12 Starts With $123456789 Starts With 12.0)[[_usn4 In usn1 Contains False Contains `` Where $#usn8]][[$`1esn` Is Null,\"d_str\" =~`6esn` =~0Xa,$usn2[0e0..]]] With 7[$`4esn`..123456789] As `2esn` Limit 1000 Ends With 1000 Ends With $`4esn` Where $usn2[..12.0] Detach Delete $123456789 =~$0 =~$`3esn`,$0 Contains `7esn` Contains $`8esn`,9e0[False] Union All Merge (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Merge ((`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) Remove Single(`4esn` In $`8esn` Starts With 1000 Where `6esn`['s_str'..][010..]).@usn5,(usn2 :`3esn`:`1esn`)-[ *..7]-(usn1 :`4esn`:#usn8)-[?:`3esn`|:`4esn`]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`3esn`,(:`1esn`{_usn4:$_usn3[Null]})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]-(`2esn` :#usn7)-[:usn2|#usn8 *01234567..12]-(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})._usn3 Union All Create #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`)"), - octest:ct_string("Optional Match ((`5esn` :#usn7)<-[?:usn2|#usn8 *1000..]->(@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})),`2esn`=((:@usn5{#usn7:1e1[@usn5..]})<-[? *0..010]-({@usn6:$123456789 Is Null Is Null,@usn6:`6esn`[1.e1..$#usn7][.e0..True]})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]})) Where False In 123456789 In $0 Merge usn1=(`3esn` :``) On Match Set All(`6esn` In 0X7 =~`` Where 0X7[..12e12])._usn4 =Null Starts With $`7esn` Starts With `2esn`,`5esn`+=999 Contains Count ( * ) Contains 123.654,usn1+=usn1[$`3esn`..$999][True..False] Union With Distinct 12.e12 In $0 In Count(*) As `` Optional Match @usn6=((:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})-[?:`4esn`|:`7esn`]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})),#usn7=(@usn5 {usn2:$999[12.0..]})<-[usn1]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[_usn3?:``|:_usn4]->(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}) With Distinct `5esn` In $999 As `6esn` Order By [_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]][[.0 Starts With `2esn` Starts With `6esn`,9e1[0.e0..][#usn8..]]..][[07[$999],9e0 In 01234567,@usn5 In 0X0123456789ABCDEF]..] Asc,False Ends With $`8esn` Asc Where _usn4[$`4esn`..]"), - octest:ct_string("With Distinct $`7esn` Is Null Is Null,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])],`7esn` Contains .0 Contains 9e12 As #usn8 Order By count(Distinct 's_str' Starts With 1000 Starts With #usn8,12e12 Starts With $123456789 Starts With 12.0)[[_usn4 In usn1 Contains False Contains `` Where $#usn8]][[$`1esn` Is Null,\"d_str\" =~`6esn` =~0Xa,$usn2[0e0..]]] Desc Skip 123.654 Starts With usn1 Starts With @usn5 Limit $123456789[$``][010] Union Optional Match `7esn`=(`2esn` )<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}),`1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Where Null[01234567][01234567]"), - octest:ct_string("Create `3esn`=((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})),(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}) Optional Match `5esn`=(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})<-[?:`7esn`|`2esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}]->(usn1 :#usn8))),#usn8=(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Where 0 Contains 12e12 Union Unwind usn1 Starts With $#usn7 Starts With `5esn` As `3esn` Detach Delete 0x0[0X7..][usn1..] Union With Distinct *,$_usn3 =~`7esn` =~$_usn4 As `` Skip Count ( * ) Ends With 1000 Ends With 12 Limit .e1[..$`4esn`][.._usn4] Where $`3esn` =~$`7esn` =~False Unwind .0 Starts With `2esn` Starts With `6esn` As `2esn`"), - octest:ct_string("Delete $`5esn` Contains $@usn6,123456789 Starts With #usn7 Starts With `6esn`,0.12 With $@usn5[#usn8..][$`1esn`..] As `7esn`,usn1 Contains False Contains `` As #usn8 Order By 0 =~$`8esn` =~0X7 Desc,False[..12.e12] Descending,07 Ascending Skip Count ( * ) =~Count(*) Unwind True Is Not Null Is Not Null As `8esn`"), - octest:ct_string("Remove Single(#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4).@usn6,[@usn6 In @usn5 In $`6esn` Where 12.0[0Xa][00]|0Xa Is Not Null Is Not Null].`4esn`! Union All Return Distinct *,01234567 Starts With $_usn4 As `1esn`,Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789} Order By [@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Ascending,0.0[Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|_usn3 Ends With 12e12 Ends With .e0)][None(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5)..{@usn6:.12 Starts With 0Xa}] Asc Limit 0x0 Is Not Null Is Not Null Create (`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0}) Return Distinct *,[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As `7esn` Order By 00 Is Null Is Null Descending,$usn2 Starts With $`6esn` Starts With 0xabc Ascending,123456789 Starts With #usn7 Starts With `6esn` Asc Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`) Limit 0x0 Contains _usn4 Contains 123456789"), - octest:ct_string("Remove [`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999]].`5esn`!,[$123456789[$`2esn`][True]].@usn6?,(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]})<-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]-(`1esn` :`4esn`:#usn8{_usn4:$_usn4[#usn8..]}).`3esn` Union Unwind 0.12 In $`4esn` In `6esn` As `5esn`"), - octest:ct_string("Remove ({@usn6:0X0123456789ABCDEF[..usn1]})<-[`4esn`:#usn8]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(#usn8 :`7esn`).`6esn`? Match `3esn`=(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}),usn2=((#usn8 :`4esn`:#usn8)-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)) Unwind 123.654[`5esn`] As @usn5 Union All Merge `6esn`=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) On Match Set `8esn` =All(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..]) Is Null Is Null,Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)._usn3? =\"d_str\"[Count ( * )] Remove [.12 Starts With .12 Starts With `3esn`,Count ( * )[Count ( * )..12e12][usn1..1000],False In `3esn`].#usn7,{usn1:$1000 Contains $`3esn`}.#usn8!,None(`4esn` In $`8esn` Starts With 1000 Where True Starts With $`8esn` Starts With \"d_str\").`4esn`! Union All Match ((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})),((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})) Where @usn6 Contains .e1 Contains $`4esn`"), - octest:ct_string("Remove [.12 Starts With .12 Starts With `3esn`,Count ( * )[Count ( * )..12e12][usn1..1000],False In `3esn`].#usn7,{usn1:$1000 Contains $`3esn`}.#usn8!,None(`4esn` In $`8esn` Starts With 1000 Where True Starts With $`8esn` Starts With \"d_str\").`4esn`! Return Distinct 01234567 As usn2 Order By Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`] Ascending Limit 12e12 Starts With $123456789 Starts With 12.0 Match ((`6esn` :`7esn`)),`4esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Where 9e0 =~$`5esn` Union All Remove {usn1:0e0 Is Not Null Is Not Null,@usn6:0X7[12]}.usn2,`8esn`(Distinct 0X0123456789ABCDEF[..usn1]).usn1!,{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}.#usn8 Return Distinct 0Xa Is Not Null Is Not Null As `1esn`,(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})[..Filter(#usn8 In $`5esn` Is Null Is Null Where 0Xa Is Null Is Null)][..(`7esn` {@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})] As usn1 Skip False[`6esn`][07] Limit [usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]] Starts With (`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` ) Starts With (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8)"), - octest:ct_string("Create ((:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})),({`5esn`:123456789 Starts With `2esn` Starts With .0})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})<-[`` *12..0xabc]->(`3esn` :_usn4:usn1) Create #usn7=((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 )),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) Union Merge (#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}) On Create Set `2esn` ={`4esn`:0X7 =~.0 =~\"d_str\",_usn4:00 Ends With $_usn4 Ends With $`2esn`} Ends With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Ends With [$`3esn`[@usn5..$123456789],00,'s_str'[.12..$#usn7][$999..`2esn`]],#usn8 =`3esn`[$123456789][$#usn7]"), - octest:ct_string("Unwind [_usn4 Ends With 01 Ends With $`1esn`,0e0 =~_usn4,$7[.12]][Any(`4esn` In 's_str'[12..'s_str'] Where $1000 In $`7esn` In $7)..Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0x0[..`4esn`])] As `3esn` Optional Match (`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}),(:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}) Where Null[01234567][01234567] Optional Match ``=((`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(usn1 :_usn3)),(((`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`5esn`)<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 ))) Union All Delete {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7),None(usn2 In 1000 Contains 0.e0 Where $usn1[..$`6esn`][..Null]) Starts With Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]|$`1esn` Starts With $999),123456789[$#usn7..] With Distinct {usn1:'s_str'[12..'s_str'],#usn7:07[`6esn`..][`5esn`..]} As `1esn` Limit {`7esn`:.e0 Contains #usn7 Contains $#usn8}[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..None(`6esn` In 0X7 =~`` Where 12.e12['s_str'])][(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})..({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})]"), - octest:ct_string("Return Distinct 1000 Contains $#usn7 Contains `6esn` Order By (`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})[Single(`4esn` In 's_str'[12..'s_str'])..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)] Desc,usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Desc,Count ( * ) Contains 999 Contains $`8esn` Asc Merge `7esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})) On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Merge `6esn`=((`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})) On Match Set Any(_usn4 In usn1 Contains False Contains `` Where $`4esn`[$`2esn`..]).usn2 =010 In @usn5 In `5esn` Union All Match `1esn`=(({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})),(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Where 12[..9e0][..999] Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.e12 Contains `5esn`|$_usn4[$`8esn`..][07..]).`2esn`!,Single(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0).@usn6,({`2esn`:usn1[..@usn5][...e0],`8esn`:\"d_str\"[Count ( * )]})<-[?*$999]-(`7esn` :``)-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`).`5esn`"), - octest:ct_string("Unwind @usn6 Contains _usn4 Contains $`4esn` As `4esn` Remove None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12).#usn8"), - octest:ct_string("Unwind Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) Ends With [1e1[@usn5..],$#usn8 Is Null,$0[$#usn8..01234567]] Ends With Extract(`6esn` In 0X7 =~`` Where 010 =~`6esn`) As usn2 With $`3esn` As usn1 Order By All(@usn5 In .12[#usn7][$`8esn`] Where $`5esn` Contains $@usn6) Is Null Is Null Ascending,\"d_str\" Contains `3esn` Contains 00 Desc Skip $_usn4[$`1esn`..][$0..] Limit True[0] Union All Merge ((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Merge `3esn`=((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) On Match Set `6esn` =$@usn5[Count ( * )] Union With Distinct 12.e12[$1000..],[_usn4 Ends With 01 Ends With $`1esn`,0e0 =~_usn4,$7[.12]][Any(`4esn` In 's_str'[12..'s_str'] Where $1000 In $`7esn` In $7)..Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0x0[..`4esn`])] As `2esn`,01 In 01 In 12 As #usn8 Order By `3esn` =~$`5esn` =~12 Ascending,`3esn` =~`3esn` =~$`6esn` Asc Limit {@usn6:`7esn` In 999 In @usn6} Starts With Extract(usn1 In 0x0[..`4esn`] Where 0x0|07 Ends With 07) Starts With Filter(usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12) Where True[0x0][@usn6] Unwind [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] As _usn3 Return Distinct *,0.12 In $`4esn` In `6esn`,`4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}] As `2esn` Skip 0X7[..12e12]"), - octest:ct_string("Detach Delete 1000 Ends With 1000 Ends With $`4esn`,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)],{_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]} Optional Match #usn7=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))),(((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]-({usn1:0x0[0X7..][usn1..]}))) Detach Delete .e12 Contains 9e0,$`2esn`[``..],Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) Union All Return Distinct *,All(usn1 In 0x0[..`4esn`] Where $0[$#usn8..01234567]) In [_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0|$`7esn` Is Not Null] In [.12 Ends With `1esn` Ends With $`1esn`,$usn2[False..`7esn`][`7esn`.._usn3],\"d_str\" Contains `3esn` Contains 00] Skip $`6esn`[$@usn6..] Limit 00 Starts With _usn3 Union Optional Match ((:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})),`1esn`=((@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) Where 0 Ends With $7 Ends With _usn3 Unwind `6esn`[..`5esn`] As #usn8"), - octest:ct_string("With Distinct $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Order By $12[01..][1.e1..] Descending Skip .12[.e12..0.e0][0.e0..$`2esn`] Union All Delete [`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..],$`2esn` =~'s_str' Union Detach Delete `` In `6esn`,@usn6 Contains .e1 Contains $`4esn`"), - octest:ct_string("Create (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Union Create `2esn`=((:#usn7{usn2:$`5esn`[$123456789][`1esn`]})) Return Distinct [`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As @usn6,usn1[$`3esn`..$999][True..False] As `3esn` Order By Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) Ends With [1e1[@usn5..],$#usn8 Is Null,$0[$#usn8..01234567]] Ends With Extract(`6esn` In 0X7 =~`` Where 010 =~`6esn`) Descending,12.0 Contains 0.e0 Desc Limit Count ( * )[`1esn`..$0][$1000..$`5esn`] Unwind `5esn`[`1esn`..`1esn`] As usn2 Union Merge (((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) On Create Set @usn6 =`3esn`[..7][..12e12] With *,Filter(usn1 In 00 Starts With _usn3 Where $_usn4[`3esn`][0])[..Extract(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12|0x0 =~_usn4)][..{_usn4:.12 =~.12 =~1e1,#usn7:.e1 Starts With 0.0 Starts With `6esn`}],12[12e12..@usn6] As `5esn` Order By {_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]} Ends With Extract(`4esn` In $`8esn` Starts With 1000 Where `6esn`['s_str'..][010..]|12.e12[@usn5..123.654]) Ends With [$`5esn` Is Not Null,0e0 Is Null Is Null] Ascending Skip $`1esn`[$_usn3..][9e1..] Limit (:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] Unwind _usn3 Contains @usn6 Contains 1.e1 As `2esn`"), - octest:ct_string("Merge `8esn`=(:`8esn`) On Match Set usn2+=.e1 Ends With _usn4 Ends With @usn5,@usn5+=_usn3 In .e1 In $12,Extract(`4esn` In `6esn`[1e1..] Where $`7esn` Ends With `1esn` Ends With True).`` =010 In @usn6 Return Distinct Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1),9e1[010..] As `6esn` Order By $1000 Contains $`3esn` Desc,(`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Ascending,[$`3esn` Starts With 01234567 Starts With $1000] Starts With `4esn` Starts With [$`2esn`[..7][..$usn1]] Desc Skip $`7esn` =~.e1 Union All Detach Delete 1e1[..#usn7][..#usn7]"), - octest:ct_string("Return Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])],123456789 Starts With _usn4 Starts With @usn6 Skip _usn3 Ends With 12e12 Ends With .e0 Remove Filter(`6esn` In 0X7 =~`` Where $0[$#usn8..01234567]).`5esn`?,{#usn7:False[`2esn`..#usn8]}.#usn7?,usn1($`1esn` =~$`1esn` =~#usn7).`1esn`? Optional Match (((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))) Union All Return 01 In 01 In 12 As #usn8,$`6esn`[$`1esn`][1000],[#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|@usn6 Starts With `7esn` Starts With Null] Is Not Null Is Not Null Order By 12.e12 Contains `5esn` Ascending,{#usn8:#usn7 Ends With 9e1} Is Not Null Is Not Null Ascending Limit 0.12 Contains $12 Contains `8esn` Detach Delete 123.654[12.e12..1e1],`6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null) With Distinct *,\"d_str\" Order By $`3esn` Descending,[0[usn2..],7[12e12..$_usn4][9e1..True],`1esn` Contains Count ( * )][Extract(@usn5 In .12[#usn7][$`8esn`] Where Count ( * ))..][Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])..] Desc,1e1[..#usn8][..'s_str'] Descending Skip @usn5 Is Not Null Is Not Null Union All Match (_usn4 :#usn8)<-[`6esn`? *..7{`3esn`:123456789[$#usn7..]}]-(:`2esn`:`3esn`{`7esn`:$_usn4[#usn8..]})-[usn1?:_usn3|:`4esn` *123456789..999{`6esn`:01 Ends With .e0,`4esn`:$`7esn` Is Not Null}]->(_usn3 ) Where _usn4 Starts With 0X7"), - octest:ct_string("Remove [07 In `5esn` In 12e12]._usn3? Create ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7}))"), - octest:ct_string("Merge #usn7=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) On Create Set usn2 =0.0[..12e12][..$0] Merge (_usn4 {@usn5:$_usn3[$`4esn`..Null]}) On Create Set @usn5(Distinct 12e12[_usn3..][$@usn5..],7 Contains 9e1).`6esn` =$@usn5 In 12e12 In Count(*) On Match Set _usn3:@usn5,Any(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null).#usn7 =All(`6esn` In 0X7 =~`` Where $1000[01234567]) In usn1(),`` =None(@usn5 In 0X7 =~.0 =~\"d_str\" Where _usn3[...e1])[[_usn4 In usn1 Contains False Contains `` Where 0.12 In $7 In 0]..][[7[..12e12][..$`6esn`]]..] Detach Delete $`1esn` Ends With $`1esn` Union Optional Match (_usn4 :`4esn`:#usn8{@usn5:$_usn4[12e12][`4esn`],`4esn`:False In `3esn`})-[`6esn`:``|:_usn4 *..01]->(`5esn` :#usn7) Where $1000[01234567] Unwind Count(*) Is Null As `2esn`"), - octest:ct_string("Return *,0.12[Count(*)..],$@usn5 =~$`` =~$usn2 As #usn8 Return *,01234567 Starts With $_usn4 As `1esn` Union Create ((`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})),_usn4=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})) With Distinct $`2esn` Starts With .e0 Starts With 12.0 Order By ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] Ascending,0e0 =~Count(*) =~0Xa Descending,{`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])] Asc With Distinct *,$usn1 In 1000 In $#usn7 As `8esn`,$@usn6 =~$#usn8 =~$#usn7 As `2esn` Order By 0Xa[0xabc..$#usn8] Desc Skip `1esn`[`3esn`..][$@usn6..] Where usn2[$`7esn`..010][00..``] Union All Create ``=(:``{#usn8:$`2esn`[..`2esn`]}),@usn5=((:@usn6:`7esn`{@usn6:12.0[``],_usn4:$`3esn` Contains 0X0123456789ABCDEF Contains 00})) Create @usn5=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) Delete [$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..],123456789 Starts With `2esn` Starts With 9e12,[Count(*)['s_str'..`1esn`],$_usn3[`2esn`][01234567]] Ends With All(@usn5 In .12[#usn7][$`8esn`] Where 0X7[.e12..01234567]) Ends With Filter(_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01])"), - octest:ct_string("With Distinct 0x0 In `8esn` In 999,``[$`3esn`][$`2esn`],01234567 Ends With 12.0 Ends With 0X7 Order By Count ( * )[..usn1][..12.e12] Asc,$usn2 Is Not Null Is Not Null Descending Skip `3esn`(Distinct $_usn3[Null],12[..True][..$`4esn`]) Is Null Is Null Where 1000 Contains 0.e0 Merge usn1=((:_usn4:usn1{#usn8:$`7esn` Ends With `1esn` Ends With True})-[`7esn`?:usn1|`3esn` *123456789..999{`5esn`:.e1 In $@usn6 In 999}]-(usn2 :#usn8{`3esn`:123.654[@usn5]}))"), - octest:ct_string("Detach Delete {`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}[[`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]]][Count ( * )] Unwind $@usn6 Is Null As `` Merge `3esn`=(((:_usn4:usn1{usn2:$`5esn` In False})<-[?:@usn5|`8esn` *..0X7]->(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}))) On Create Set [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]].`1esn` =9e12 =~01 =~$`7esn` On Create Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$`` Union All Create `4esn`=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})),(`7esn` :_usn4:usn1)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})-[`1esn`{`2esn`:.12 Starts With @usn5 Starts With $#usn8}]->(:usn1{`6esn`:1000 Contains 0.e0,`7esn`:$@usn6[..$#usn7][..12.e12]}) Create @usn5=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) Remove ``(9e0 Contains `8esn`).`1esn`,[$`1esn` Is Null Is Null,010 Contains 0X0123456789ABCDEF,9e1[0.e0..][#usn8..]].`` Union All Merge `4esn`=((#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) On Match Set {`8esn`:`8esn` In $@usn5}.`3esn`! =$@usn5[#usn8..][$`1esn`..],All(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $@usn6 Is Null Is Null).`1esn`! =$12[..``][..$7] On Create Set usn2 =_usn3 Is Not Null Is Not Null,`4esn` =.e1 Starts With $`8esn`"), - octest:ct_string("Merge #usn8=((:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[`2esn`? *0..010]->(usn2 :_usn3)-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]})) On Match Set [usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01|`1esn`[@usn6..$123456789]].`8esn`? =Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]),@usn5 =Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null,_usn3+=$@usn5 =~$`` =~$usn2 On Match Set #usn8 =({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null,`2esn`+=Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}),#usn8 =$`7esn` Ends With `1esn` Ends With True Merge _usn3=((_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})) On Match Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] On Create Set None(`4esn` In 's_str'[12..'s_str'] Where @usn5 In 0X0123456789ABCDEF).`2esn`! =$`1esn` Is Null,`5esn`()._usn4! =[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00],`8esn` =`7esn` Contains .0 Contains 9e12 With `` Starts With 12,[@usn5 In .12[#usn7][$`8esn`] Where $_usn4[12e12][`4esn`]][`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])..``(False In `3esn`)][[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]]..Filter(@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12])] As `4esn`,Count(*)[`7esn`..$12] As `` Skip 0X7[..12e12] Where 9e12[..$``][..`6esn`]"), - octest:ct_string("With Distinct *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `3esn`,Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])[All(#usn7 In 01234567[$`3esn`..] Where Count(*)[.e0.._usn4])..][None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..])..] Order By ({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Desc,0x0 Desc,0.e0 Starts With 12.e12 Starts With .e12 Desc Skip [\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Limit usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Where 123456789 Is Null Optional Match usn1=((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})) Where 1000 Contains 0.e0 Merge `5esn`=(usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[ *0xabc{`1esn`:123.654 In \"d_str\" In $_usn3}]-({`2esn`:$usn2 Is Not Null})"), - octest:ct_string("Match (:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}),((:``{`1esn`:`6esn` =~$_usn3})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})) Where _usn4[0xabc..]"), - octest:ct_string("Return Distinct 9e1[010..],Extract(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]|1000[..$`6esn`][..0xabc]) Ends With [07[$999],12e12[Count ( * )..][usn2..]] Merge #usn7=((_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]})) On Match Set @usn6+=(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}] On Match Set (usn1 :#usn7)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->(`4esn` {`7esn`:.e0[..999][..0X7]}).usn2 =$`3esn`[`2esn`...e0] Union All With Distinct All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null,0xabc[$@usn5] As `7esn`,.e0[usn2..] As _usn3 Order By False[..12.e12] Descending Skip [\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Limit 7 In @usn5 In $`4esn` Where 12e12 Starts With $123456789 Starts With 12.0 Detach Delete 010 Starts With `7esn` Starts With 9e1 With Distinct *,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Order By .e0 Contains 01234567 Descending,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Desc,'s_str' Starts With 1000 Starts With #usn8 Descending Where 123456789 =~_usn4 =~$0"), - octest:ct_string("Create #usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})),`5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Remove Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]|`3esn` Contains 0Xa).usn1?,[12.0[0Xa][00],0 Is Not Null].@usn5?,{`1esn`:@usn6[`5esn`..$`3esn`]}.usn1? Match usn2=((`5esn` :usn2:@usn6{`5esn`:0Xa In .e1 In Count(*)})) Union All Return *,[\"d_str\" Starts With $usn1,.12 Contains $`4esn` Contains $`6esn`,01234567 =~usn1] Is Null Is Null As `7esn`,$123456789 Contains usn2 As `8esn` Limit 1000 Ends With 1000 Ends With $`4esn` Remove Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $@usn6 Is Null Is Null).`4esn`,All(@usn5 In $#usn8 Is Null Is Null).usn1! Union With *,$0[..`8esn`] As _usn4 Order By $`6esn` Is Not Null Is Not Null Desc Skip 0x0 Contains $`8esn` Contains `6esn` Limit 1e1[@usn5..] Where 1000 Contains 0.e0 Merge (#usn7 :@usn5)-[`4esn`:_usn3|:`4esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:usn1{`8esn`:usn1 Contains $``}) On Match Set ``+=`6esn`[0X7..][0x0..],#usn8 =1.e1 =~$_usn4,{`8esn`:1000 Contains 0.e0,usn1:`6esn`[1e1..]}.`4esn`? =$#usn8[1e1][9e1] On Match Set `1esn`+=`` Is Not Null,{@usn6:9e0 Ends With $`7esn`}.`2esn`? =Count ( * ) =~All(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7) Create (`1esn` :`1esn`)"), - octest:ct_string("Delete 0x0[0.0][$_usn4] Unwind 0xabc[$@usn5] As usn2 Union Return Distinct *,$@usn6[..$usn1] As _usn3 Order By {``:12e12[$`5esn`][07],_usn3:$`6esn` Is Null Is Null} Ends With [0 Is Not Null Is Not Null] Descending,Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Desc,.12 Ends With `1esn` Ends With $`1esn` Asc Limit `7esn` Starts With $`` Starts With $#usn7 Create (`8esn` :`1esn`) Merge `7esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}) On Match Set #usn7+=$@usn5[01],usn1 =Extract(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With [01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] Starts With (`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})<-[:`6esn`]->(@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})<-[@usn6?:@usn5|`8esn` *..01{_usn4:07 Ends With 07,`8esn`:`6esn`[1.e1..$#usn7][.e0..True]}]-(usn2 :`3esn`:`1esn`),#usn7+=0X0123456789ABCDEF[.e0..$`4esn`] On Match Set [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|`6esn` Starts With $usn2 Starts With 0.0].#usn8? =`2esn` Starts With $_usn3 Starts With `2esn`,`8esn`+=$`7esn` =~.e1"), - octest:ct_string("With Distinct #usn7 Starts With 0x0 Starts With Null,{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}[Extract(_usn4 In usn1 Contains False Contains `` Where `5esn`[.e1][0Xa])..],[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As @usn5 Limit All(@usn5 In .12[#usn7][$`8esn`] Where $`5esn` Contains $@usn6) Is Null Is Null Unwind Count(*)[`7esn`..$12] As `6esn` Unwind Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] As `8esn` Union All With 010 In @usn6 Order By (:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0}) Starts With Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) Starts With [12.0 In 1000 In _usn4] Ascending Limit `7esn`[1e1..07][0x0..Count ( * )] Union Optional Match `8esn`=()<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Optional Match ((`2esn` :usn2:@usn6)-[usn1?{`7esn`:$`2esn` Starts With .e0 Starts With 12.0}]-(`5esn` {`5esn`:$`5esn`[False]})) Where _usn3 Is Null"), - octest:ct_string("Match _usn4=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),(((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})-[?*..{`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}]-(`` :`3esn`:`1esn`{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-({usn1:010[@usn5..],`7esn`:`2esn` Is Not Null Is Not Null}))) Where 07 In `5esn` In 12e12"), - octest:ct_string("Merge @usn5=((({`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}))) On Create Set `8esn` =0.e0[9e0][0e0],_usn3 =0Xa[0xabc..$#usn8] On Match Set `6esn` =[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] Unwind 123456789[`4esn`..][Count ( * )..] As _usn3 Delete 999 Contains `7esn`"), - octest:ct_string("Delete [07,$_usn3[..Count ( * )][..@usn5]][All(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0)..{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}][[010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]]..Filter(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12)],`6esn` Starts With $usn2 Starts With 0.0 Union Delete 's_str'[12..'s_str'],.e12[usn2][01],[@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Merge `6esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}) On Match Set Filter(usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01).`8esn`! =`6esn`[..`5esn`] Union All With Distinct *,0.12 In $`4esn` In `6esn`,`4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}] As `2esn` Skip 0X7[..12e12] With Distinct *,{`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] Order By 9e1 Starts With _usn3 Starts With `4esn` Descending,usn2(Distinct _usn3 Contains @usn6 Contains 1.e1)[Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where _usn3 Is Null)..[12e12[0.e0][9e1]]][Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``])..Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)] Descending Limit 0 Starts With 12e12 Starts With `4esn` Unwind 12.e12 In $1000 As `6esn`"), - octest:ct_string("Create #usn8=((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(#usn7 :`3esn`:`1esn`)<-[?{`4esn`:12e12[$`5esn`][07]}]-(:`1esn`{_usn4:$_usn3[Null]})) Remove {`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}.#usn8? Create (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Union All Create ``=((`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(usn1 :_usn3))"), - octest:ct_string("Unwind Count(*) Is Null As `2esn` Remove (usn1 :_usn3{@usn6:True[..'s_str'][..01]})-[? *999..]-(`` :`1esn`).usn2?,Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 123456789[$#usn7..]|123456789 In $usn2 In `6esn`)._usn4?,Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $`6esn` Is Null Is Null)._usn3 Union Return 123456789 =~_usn4 =~$0 Order By 0xabc Starts With _usn3 Desc,(`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Ascending,Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) Contains Extract(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`) Desc Skip Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] Limit [@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2] Is Null Return Distinct *,.e1[usn1..],$1000[.e0..] As `3esn` Skip `5esn`[Count ( * )..][\"d_str\"..]"), - octest:ct_string("Return *,.12[`1esn`..][$`3esn`..] As usn2 Limit usn2 Starts With @usn6 Union Unwind #usn8 In $0 As usn2"), - octest:ct_string("Unwind 12 Ends With 07 Ends With @usn6 As `1esn` Union Merge @usn5=(`3esn` :`8esn`{usn1:`2esn`[$`3esn`..],`6esn`:$12[..``][..$7]})-[@usn5?:``|:_usn4]-(`8esn` :#usn8)<-[?:``|:_usn4]-({`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12}) On Create Set _usn3 ={`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]] Merge ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})-[@usn6?:#usn7|:_usn4 *00..]->(`` :@usn5{#usn7:0X7[12]})) On Match Set (@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`6esn`:`4esn`|:`7esn` *1000..{`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}]->(:#usn7)<-[`5esn`:`8esn`|:usn1]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}).#usn7? =1000 Contains 123456789 Contains 1e1 On Match Set usn1+=`4esn` Is Null"), - octest:ct_string("Merge ((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})) On Create Set _usn4+=@usn6(Distinct 12.e12[0e0..7],usn1[Count ( * )..$usn1]) Is Null Is Null,(_usn4 :``)-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6}).`5esn` =\"d_str\" Contains `3esn` Contains 00,`4esn` =``[True..] On Create Set #usn7+=Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]),Extract(@usn5 In $#usn8 Is Null Is Null Where $@usn5 =~$`` =~$usn2|`5esn`[.e1][0Xa]).`6esn`? =$`1esn` Is Null Is Null Remove (:#usn7{usn1:$123456789[..0.12][..#usn7]})-[:_usn4|:@usn5 *0xabc]-({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`}).``?,(:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8}).#usn8? With Distinct {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null As #usn8,010[$`8esn`..][0..] Order By .e12[.12..][_usn4..] Ascending,Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] Asc Skip {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']}[(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)] Limit 9e12[usn2..7][.e1..$`7esn`] Where .0[01][$12] Union All Detach Delete ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] Return $usn1[0.12..]['s_str'..] As `1esn`,(`4esn` :`8esn`{_usn4:0 Is Null Is Null})-[`6esn`:`8esn`|:usn1$_usn3]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Ends With Filter(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999) Ends With [`4esn` In `6esn`[1e1..] Where 07[12e12]] Order By Count ( * )[..999] Asc Skip (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})<-[`6esn`?:@usn6 *999..]->(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})[Filter(_usn4 In usn1 Contains False Contains `` Where 123456789 Is Null)..]"), - octest:ct_string("Remove usn2:_usn4:usn1,None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.e0[9e1..][0.0..]).#usn7 Remove Extract(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`).`6esn`?,Extract(@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null|@usn5 Starts With 12e12 Starts With @usn5).`2esn`?,[Count ( * )[Count ( * )..12e12][usn1..1000],12e12[$`5esn`][07],$_usn3[9e1][$_usn4]]._usn4 Union Return Distinct *,`7esn`[Null..][@usn5..],0X0123456789ABCDEF Contains $usn1 Skip Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] Limit False Ends With $`8esn` Merge (:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa})-[:usn1|`3esn`]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]}) Return *,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn`,@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn` Skip {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]}"), - octest:ct_string("Optional Match `2esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}),(#usn7 :@usn5)<-[@usn5*]->({``:$1000 Is Null Is Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(`7esn` :`2esn`:`3esn`) Remove All(`2esn` In `7esn` Starts With $`` Starts With $#usn7).#usn8!,[_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0].@usn6,(`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})-[?{`5esn`:0Xa In .e1 In Count(*)}]-({`1esn`:@usn6}).#usn7!"), - octest:ct_string("With Distinct $999[$1000] As `4esn`,[`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Limit {`8esn`:@usn5[..True][..0X7],`1esn`:`1esn` Contains Count ( * )}[{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)] Where $_usn4[12e12][`4esn`] Delete [True[..'s_str'][..01]] In Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999]) In All(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`]),$`5esn` Starts With _usn3 Starts With @usn5 Return None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) As _usn3"), - octest:ct_string("Remove {#usn8:123456789[$#usn7..],#usn7:07[12e12]}.usn2,(#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(_usn4 {`1esn`:010[@usn5..]})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(usn1 :_usn3{@usn6:True[..'s_str'][..01]}).`8esn`! With Distinct 0Xa Starts With 0.12 Starts With .0 As usn2 Order By [0Xa In .e1 In Count(*)][..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}][..Extract(`4esn` In `6esn`['s_str'..][010..] Where #usn8[$#usn8..])] Desc Limit Extract(_usn4 In usn1 Contains False Contains `` Where $`4esn` Starts With 1e1|Count(*)['s_str'..`1esn`]) =~Extract(`4esn` In $`8esn` Starts With 1000|`7esn`[Null..][@usn5..]) =~(:`4esn`:#usn8)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ) Union Return Distinct $`1esn` Starts With $999 As #usn8,Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)[{#usn8:`5esn` =~0Xa,@usn5:0X7[999][$1000]}..[`` Starts With 12,$`1esn` Starts With $999]][`7esn`(Distinct $usn2[..12.0])..`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])] Order By 9e1 Is Not Null Is Not Null Asc,$usn2[$123456789..123.654][$`5esn`..'s_str'] Desc Union Return {usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]} =~Single(usn2 In 1000 Contains 0.e0) =~Any(@usn6 In @usn5 In $`6esn` Where $`7esn` Is Not Null) As `3esn`,Filter(usn1 In 00 Starts With _usn3 Where $_usn4[`3esn`][0])[..Extract(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12|0x0 =~_usn4)][..{_usn4:.12 =~.12 =~1e1,#usn7:.e1 Starts With 0.0 Starts With `6esn`}] Order By @usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Ascending,$`3esn` =~Null Desc Skip Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789} Create #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))),_usn4=(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) With Distinct 's_str'[.12..$#usn7][$999..`2esn`] As `5esn` Limit $_usn3[..Count ( * )][..@usn5] Where @usn5 Ends With $`3esn` Ends With 12e12"), - octest:ct_string("Unwind 0.12 Contains $`2esn` Contains $_usn4 As @usn6 Merge `2esn`=(:usn1{`8esn`:usn1 Contains $``})-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1})-[ *010{@usn5:Null Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] Union All Optional Match ((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})),(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union Return Distinct 999[``..][Null..] As `1esn` Skip usn2(Distinct _usn3 Contains @usn6 Contains 1.e1)[Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where _usn3 Is Null)..[12e12[0.e0][9e1]]][Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``])..Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)] Limit Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)[..(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})][..Any(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)]"), - octest:ct_string("Merge ((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[? *0..010]-(#usn8 :`4esn`:#usn8)) On Create Set `4esn` =.e12[.12..][_usn4..] On Match Set {`2esn`:12 =~usn1 =~.e12}.usn2 =False Is Not Null Is Not Null,`3esn` =010 In @usn5 In `5esn`,[usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null].@usn5! =$1000 Ends With 1e1 Ends With 123.654"), - octest:ct_string("Create (_usn4 :@usn6:`7esn`)<-[#usn8?:_usn4|:@usn5 *..0x0]-(`6esn` :#usn7{`5esn`:#usn7 Is Not Null Is Not Null})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) Union All Return Distinct 1e1[..#usn7][..#usn7],0[0.12..] As @usn5 Order By (_usn3 :`6esn`:`7esn`{usn1:$_usn3[9e1][$_usn4],`8esn`:123456789 =~_usn4 =~$0})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-({`1esn`:@usn6}) In _usn3(0x0[0X7..][usn1..]) In None(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str') Descending,[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Desc Skip Single(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) In [$123456789 Contains usn2,010 Is Null Is Null,`7esn` Starts With $usn2 Starts With .e0] In `2esn`($`5esn` Is Not Null,7 In $`3esn` In #usn7)"), - octest:ct_string("Optional Match `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Return Distinct *,0.0 Is Null Is Null As `8esn` Order By $1000 Is Null Is Null Descending,1000 In 0X0123456789ABCDEF In 01 Asc With Distinct *,7 Is Null Order By $12[01..][1.e1..] Ascending,0x0 =~_usn4 Desc Limit 12[`7esn`...0][0.12..``] Where $123456789 Ends With .e0 Union Merge (:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}) Merge (`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) On Create Set [$`6esn` Is Null Is Null,Count ( * )[@usn6..0x0],0.0[1000..][.e1..]]._usn3! =.0 Starts With `2esn` Starts With `6esn`,({``:\"d_str\",`1esn`:$1000 =~$`7esn`})-[usn1?:_usn3|:`4esn` *123456789..999{`6esn`:01 Ends With .e0,`4esn`:$`7esn` Is Not Null}]->(_usn3 ).`4esn` =usn2 Is Not Null On Match Set `5esn` =$123456789 =~$`5esn` =~07,`4esn`+=010 Starts With `7esn` Starts With 9e1,@usn5:`6esn`:`7esn`"), - octest:ct_string("Optional Match _usn3=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))) Where $`4esn`[$`2esn`..] With *,$`3esn`[`2esn`...e0] As _usn3 Limit Count ( * )[Count ( * )..12e12][usn1..1000] Where 12[0X7..@usn6] Create `2esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Union Delete `4esn` Is Null,$``[False..123.654] Merge ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[ *010{@usn5:Null Is Null Is Null}]-({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]})) Union All Create `1esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) Return Distinct 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Order By [@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0] Is Null Descending Skip #usn8 Is Not Null Create ((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6))"), - octest:ct_string("Return `2esn` Contains $999 As #usn7,$123456789[False.._usn3] As `1esn` Order By [@usn6 In @usn5 In $`6esn` Where $999[$1000]|$7[.12]] In {`1esn`:$@usn6 Contains 07 Contains 0.e0} In (`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) Ascending,00[.e1..] Desc Skip 9e1[.12..] Create (`7esn` {_usn3:usn1 Contains $``})<-[usn1]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12}),`8esn`=((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Merge ((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) On Match Set `7esn`+=.e1[..$`4esn`][.._usn4],`4esn`+=@usn6[$`8esn`][12.e12],@usn5+=1000 Contains $#usn7 Contains `6esn` Union All Return Distinct 07 Ends With 07,{_usn3:12.e12[$1000..],`7esn`:$`2esn` Contains usn1 Contains `2esn`}[..(`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)][..010] Unwind 0Xa[#usn7] As @usn5"), - octest:ct_string("Delete [$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] Union All Match (({_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})),#usn8=({_usn3:12.e12 In $0 In Count(*)})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}) Where `8esn`[1000..$7][$`7esn`..`2esn`] Optional Match `1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) Unwind {#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `5esn`"), - octest:ct_string("Unwind 12.e12 Contains $`5esn` As #usn7 Delete True In 0x0,0X7[12]"), - octest:ct_string("With Distinct (`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) As #usn8 Order By _usn4 Starts With $@usn6 Starts With #usn7 Asc,$#usn7 Desc Where $@usn6 Is Null Is Null"), - octest:ct_string("Merge ({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] On Create Set (:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[@usn6?:`1esn`]-(:`5esn`)-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`).#usn7! =0x0 Contains $`8esn` Contains `6esn`,`8esn` =None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]) Ends With None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With @usn6($123456789[0.0..]) Remove `7esn`(usn2 Is Null Is Null,`6esn` =~$_usn3).`1esn`!,None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]).`8esn`! Union Match #usn7=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),@usn5=(((_usn3 :_usn3{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[#usn8:`3esn`|:`4esn` *0..010]-(:usn1{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]}))) Unwind Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `4esn` Union With Distinct *,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] As `8esn`,123456789 Starts With `2esn` Starts With 9e12 As `3esn` Skip Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) Limit `6esn` Starts With $@usn6 Where 12[0X7..@usn6]"), - octest:ct_string("Create usn1=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[`7esn`?]-(@usn6 :_usn3{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]})),#usn7=(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[@usn5?:_usn3|:`4esn` *..0x0]->(#usn8 {usn2:7 Contains 9e1}) Union Return Distinct *,0.0 Is Null Is Null As `8esn` Order By $1000 Is Null Is Null Descending,1000 In 0X0123456789ABCDEF In 01 Asc Return *,({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) Order By [0 Is Null Is Null][..[_usn3 =~00,9e1 Is Null Is Null]] Descending,Single(`4esn` In `6esn`['s_str'..][010..] Where 12.0 Contains 0.e0)[..Any(`4esn` In 's_str'[12..'s_str'] Where Count(*)[`7esn`..$12])][..Extract(@usn5 In .12[#usn7][$`8esn`] Where 01234567 =~usn1)] Ascending,`8esn` In $@usn5 Asc Limit $#usn8 Is Null Union Merge `7esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)) On Create Set `3esn`+=00 Ends With $_usn4 Ends With $`2esn` On Match Set `6esn`:usn1,`7esn`+=07[`6esn`..][`5esn`..] With Distinct *,.e1 Starts With $`8esn` Where 12.e12[$1000..] Remove [usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]]._usn3,{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12}.@usn6,[usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]].usn2?"), - octest:ct_string("With *,0xabc Starts With _usn3 As `3esn`,Null[..12e12][..usn1] As `3esn` Order By 0x0[$`3esn`..010][$#usn7..00] Ascending,010 =~$usn2 =~1e1 Desc,(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Asc Limit 0x0 Contains $`8esn` Contains `6esn` Where 0xabc Contains Null Contains 9e12 Remove {`1esn`:0xabc[12.e12..`1esn`]}.`1esn`! Merge #usn7=(:#usn7{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[:@usn5|`8esn`*..]-(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)})"), - octest:ct_string("With .e12[.12..][_usn4..] As _usn4,{`7esn`:.e0 Contains #usn7 Contains $#usn8}[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..None(`6esn` In 0X7 =~`` Where 12.e12['s_str'])][(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})..({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})],$999[$_usn4..][$`5esn`..] Skip 010 In @usn5 In `5esn` Where $@usn6 Is Null Is Null Merge ((:#usn8)<-[`2esn`?]-(:usn2:@usn6{_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})<-[`5esn`? *999..{#usn7:0X7[12]}]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})) On Match Set usn2+=[usn1[..@usn5][...e0]] In Extract(`6esn` In 0X7 =~`` Where $1000 Contains $`3esn`|12 Ends With 01234567) In {`3esn`:$`5esn` In `2esn` In .0,``:0e0 Is Null Is Null},`7esn` =Filter(#usn7 In 01234567[$`3esn`..] Where 0Xa[0xabc..$#usn8])[(:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})<-[usn2 *..0X7{`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`}]->(`8esn` {`6esn`:00 In 12.e12})][{_usn3:#usn7 Starts With `1esn`}],`4esn`+={`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] On Match Set #usn7($123456789 Contains 01 Contains 0.12).usn2! =.e12 =~0.0 =~9e0,All(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1).`4esn` =$999[12.0..],`8esn`+=Filter(_usn4 In usn1 Contains False Contains `` Where 9e0 =~$`5esn`) =~``($`4esn`[usn1..$#usn8][12.0..`3esn`]) =~Single(usn2 In 1000 Contains 0.e0) Union Delete 0.0[..12e12][..$0],1.e1[.e0..0]"), - octest:ct_string("With Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) As _usn4 Where $usn1[0.12..]['s_str'..] Unwind [1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As @usn6 Union All Create ((:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})<-[@usn6:`3esn`|:`4esn`*]->(`6esn` :`5esn`)),@usn6=((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})) Match #usn8=({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]}),(((`3esn` :`8esn`)-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(_usn3 :usn2:@usn6)-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}))) Where 9e0 Starts With `6esn`"), - octest:ct_string("Return Distinct *,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Order By .e0 Contains 01234567 Descending,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Desc,'s_str' Starts With 1000 Starts With #usn8 Descending Optional Match ((usn1 :`6esn`:`7esn`)),((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)) Where 07[..010][..12.0]"), - octest:ct_string("Unwind 123.654 Contains #usn8 As `5esn` Return Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As `5esn`"), - octest:ct_string("With Distinct None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} Order By 123.654[`5esn`] Descending,$`2esn`[..7][..$usn1] Descending,123456789 Starts With _usn4 Starts With @usn6 Descending Where $`4esn`[$`2esn`..] Create `2esn`=((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Merge ((`1esn` :usn2:@usn6)-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})) On Match Set [$usn1 In 1000 In $#usn7,$#usn7 In 12.0 In 0X0123456789ABCDEF,9e0 Is Not Null]._usn3 =All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`! =0xabc Starts With _usn3 Union Delete None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} Union All Detach Delete {usn2:123456789 Starts With `2esn` Starts With 9e12} Ends With All(usn2 In 1000 Contains 0.e0 Where 01234567[Null..0.e0][Count(*)..$#usn8]),9e0[``][123.654]"), - octest:ct_string("Merge `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) On Create Set `1esn` =0X0123456789ABCDEF[.e0..$`4esn`] Return *,0.12[Count(*)..],$@usn5 =~$`` =~$usn2 As #usn8 Union All With Distinct `` Contains 12 Contains True,(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) Is Not Null Is Not Null As @usn5,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Skip Count(*)['s_str'..`1esn`] Limit Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] Where $`5esn` In `2esn` In $12 Detach Delete `3esn`(Distinct 123456789 =~$123456789)[..(usn1 :`6esn`:`7esn`)-[`2esn`? *0..010]->(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]})][..(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})],`6esn`[0X7..][0x0..],Null Contains 9e1 Union Create (_usn3 :_usn4:usn1),((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(@usn5 {_usn4:010[$@usn6],`6esn`:123456789[1e1..0.0]})<-[`6esn`?:`2esn`|usn2 *01234567..12]->(:`7esn`{#usn7:True =~@usn5 =~$`1esn`})) With @usn6 =~01,12.0 In 1000 In _usn4 As _usn3,0 =~12.e12 =~$`` As #usn7 Order By [usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]] In [0xabc[12.e12..`1esn`]] In {@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} Asc,[0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]) Descending,Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1) Asc Skip 07 In $7 In 12 Where Count ( * ) Create ((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 ))"), - octest:ct_string("Detach Delete 1e1 In $#usn8 In 12e12,_usn3 =~00 Create ({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}),(usn2 :`2esn`:`3esn`)-[`7esn`?]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) Merge _usn4=((@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) On Match Set Extract(usn2 In 1000 Contains 0.e0 Where $1000[01234567]|$`6esn`[Count(*)..0.e0][0.0..Count ( * )]).`8esn`! =$123456789[False.._usn3],`3esn`(Distinct 0X7 In $999 In $``,$0 Is Not Null).`7esn`? =0.e0[123.654],`1esn`+=True Starts With 12.0 Starts With $@usn5 Union Return 's_str'[.12..$#usn7][$999..`2esn`] As `5esn` Order By Count ( * ) In 010 Descending,12e12[_usn3..][$@usn5..] Ascending,usn2 Starts With `6esn` Starts With 12e12 Desc Limit Count ( * )[..usn1][..12.e12] Return Distinct *,[#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|@usn6 Starts With `7esn` Starts With Null] Is Not Null Is Not Null,`8esn`[_usn3..$#usn7] Order By 's_str' Starts With 1000 Starts With #usn8 Descending Union Create (`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0}) Merge (`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(`7esn` :`8esn`{`4esn`:00 Ends With .12 Ends With `4esn`})-[ *07..]->(usn2 :@usn6:`7esn`) On Create Set #usn8:_usn4:usn1,[0 Is Not Null Is Not Null].usn2! =(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')]"), - octest:ct_string("Remove usn2:@usn5,`7esn`(0.12 =~01 =~12,#usn7 Is Not Null Is Not Null).#usn7! Delete .e1 Starts With 0.0 Starts With `6esn` Create ((:`5esn`)<-[#usn7{#usn7:False[`2esn`..#usn8]}]->(usn2 :`3esn`:`1esn`)-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})),((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) Union Optional Match usn1=(usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}) With Distinct *,`7esn`[Null..][@usn5..],0X0123456789ABCDEF Contains $usn1 Skip Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] Limit False Ends With $`8esn` Where 0 Starts With 12e12 Starts With `4esn` Union Optional Match #usn8=(((`3esn` )-[?:#usn7|:_usn4]-(usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]})))"), - octest:ct_string("Create @usn5=((:#usn8$usn1)-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})),`1esn`=(`3esn` {``:.e0[7..$`3esn`]}) Create ((_usn4 {`8esn`:9e1 In 01 In 999})),`1esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}) Match usn2=(((:`1esn`)-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}))),(`5esn` {`5esn`:$`5esn`[False]}) Union Merge `7esn`=(`2esn` )<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) Detach Delete usn1 Is Not Null Is Not Null,[$`4esn`[9e1..][0..]][Any(`4esn` In $`8esn` Starts With 1000 Where 0.e0[9e1..][0.0..])..Single(#usn8 In $`5esn` Is Null Is Null Where 1000 Ends With 1000 Ends With $`4esn`)],#usn8 Ends With `4esn` Ends With $`4esn` Create usn2=(({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)-[@usn5{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8}]->(usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})"), - octest:ct_string("Unwind 1.e1 Is Not Null Is Not Null As `4esn` Delete Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}),07,`2esn`[$`3esn`..] With 123.654 Is Not Null Is Not Null As `3esn`,$usn1 In 1000 In $#usn7 As `8esn` Order By .12 Starts With $usn2 Asc,[usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..] Asc,{`8esn`:$123456789 Is Null Is Null,_usn3:$`4esn` Starts With 1e1}[(#usn7 :`2esn`:`3esn`)<-[`8esn`?]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})..All(_usn4 In usn1 Contains False Contains `` Where $`8esn`[$``..$7][$1000..$`7esn`])] Descending Skip $@usn5[$#usn8..][9e1..] Limit $123456789[0X7..12.e12] Where 0.12[0.e0..][`4esn`..] Union Optional Match ((_usn4 {`8esn`:9e1 In 01 In 999})),`1esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}) Where @usn5 Contains $`1esn` Contains 999 Union All With Distinct 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Order By [usn1 In 00 Starts With _usn3 Where 00][#usn8(Distinct $`2esn`[$123456789..$`1esn`][0Xa..$``],@usn6[`5esn`..$`3esn`])..['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`]] Asc,999 Contains `7esn` Desc,Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`] Ascending Skip 0e0 Is Null Is Null"), - octest:ct_string("With Distinct 1.e1 =~$_usn4 As usn2,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,{_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] Order By $12 Starts With #usn7 Asc,$0[$0..] Descending Where _usn3 Ends With 0x0 Ends With 01234567 With *,0xabc Starts With _usn3 As `3esn`,Null[..12e12][..usn1] As `3esn` Order By 0x0[$`3esn`..010][$#usn7..00] Ascending,010 =~$usn2 =~1e1 Desc,(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Asc Limit 0x0 Contains $`8esn` Contains `6esn` Where 0xabc Contains Null Contains 9e12 With `5esn` In 12 As usn2,Count(*) Starts With 1e1 Starts With $123456789 As #usn7,[`4esn` In 's_str'[12..'s_str'] Where 9e1 Contains $`3esn` Contains 01234567][[7[..12e12][..$`6esn`]]..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}] As #usn8 Order By 00 In 12.e12 Descending,9e0 Ends With $`7esn` Asc Skip 01234567 Is Null Is Null Limit $123456789 In Count(*) In .e1 Where $123456789 Ends With $`6esn` Union Merge (({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})) With Distinct *,#usn8 Is Not Null As _usn4 Skip {@usn5:$@usn6[..$usn1],`1esn`:usn2[`3esn`][_usn3]}[..Any(`4esn` In 's_str'[12..'s_str'] Where Null Contains _usn4)][..{`7esn`:True[..'s_str'][..01]}] Union All Create usn2=(`` :#usn7)<-[:@usn6 *0X0123456789ABCDEF..{_usn3:`7esn` Ends With $usn2 Ends With 999}]-(`2esn` :_usn3) With Distinct [$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] Order By {#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} Desc Skip 00 Starts With _usn3 Limit True =~@usn5 =~$`1esn` Remove [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``?,None(@usn5 In .12[#usn7][$`8esn`] Where 0X7[.e12..01234567]).`5esn`!,`8esn`:`6esn`:`7esn`"), - octest:ct_string("Remove Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`|.12 Ends With `1esn` Ends With $`1esn`).`5esn`! Optional Match usn2=((usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(usn2 :`5esn`)),((`3esn` :`8esn`)-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})-[ *..0X7]->(`5esn` :_usn4:usn1)) Unwind [@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] As usn1"), - octest:ct_string("Unwind $1000 Is Not Null Is Not Null As `3esn` Merge (usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)})-[usn2{`6esn`:$@usn6[_usn3..0.e0]}]->({usn1:`4esn` In $12 In `8esn`})<-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`6esn` {`8esn`:`8esn` In $@usn5}) On Match Set Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..]).`8esn` =All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])],@usn6:#usn8 Create ((_usn4 :`7esn`)<-[`6esn`:usn1|`3esn`]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})<-[``?:_usn3|:`4esn`]-(:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})) Union All Merge `6esn`=(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) On Create Set usn1 =00 In 0.12 In `5esn`,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where .e0[..999][..0X7]]._usn4 =(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) On Match Set [usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01|`1esn`[@usn6..$123456789]].`8esn`? =Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]),@usn5 =Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null,_usn3+=$@usn5 =~$`` =~$usn2 Remove `6esn`:@usn5,Extract(@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..])._usn3!,Extract(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7|@usn6[`5esn`..$`3esn`])._usn4! Union All Optional Match ((`5esn` :#usn7)<-[?:usn2|#usn8 *1000..]->(@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})),`2esn`=((:@usn5{#usn7:1e1[@usn5..]})<-[? *0..010]-({@usn6:$123456789 Is Null Is Null,@usn6:`6esn`[1.e1..$#usn7][.e0..True]})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]})) Where False In 123456789 In $0 Merge usn1=(`3esn` :``) On Match Set All(`6esn` In 0X7 =~`` Where 0X7[..12e12])._usn4 =Null Starts With $`7esn` Starts With `2esn`,`5esn`+=999 Contains Count ( * ) Contains 123.654,usn1+=usn1[$`3esn`..$999][True..False]"), - octest:ct_string("With *,00 In 1e1 As `7esn`,0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Skip 7 In @usn5 In $`4esn` Limit {`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]] Return Count ( * ) In 010 Limit Count(*)[True] Create (`4esn` :@usn5{``:$`2esn`[$`2esn`..],@usn6:010 =~`6esn`})"), - octest:ct_string("Unwind 0xabc[$@usn5] As usn2 Optional Match ((:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]})),((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Where $`4esn`[12.e12..][0.0..] Union Merge usn1=((:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[#usn8? *0xabc]-(#usn8 :`4esn`:#usn8)) On Match Set #usn7($123456789 Contains 01 Contains 0.12).usn2! =.e12 =~0.0 =~9e0,All(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1).`4esn` =$999[12.0..],`8esn`+=Filter(_usn4 In usn1 Contains False Contains `` Where 9e0 =~$`5esn`) =~``($`4esn`[usn1..$#usn8][12.0..`3esn`]) =~Single(usn2 In 1000 Contains 0.e0)"), - octest:ct_string("With *,{`7esn`:Count(*) In 01 In .0}[..{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}][..#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..])] As `5esn`,#usn7 Ends With `4esn` Ends With @usn5 As `` Where $`7esn` Is Null Is Null Union All Match #usn7=(:#usn7{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[:@usn5|`8esn`*..]-(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) Union Unwind 07[$`5esn`..]['s_str'..] As _usn3 Unwind Null Is Null Is Null As usn1 Unwind 123456789 =~Filter(usn2 In 1000 Contains 0.e0 Where 0X7[0e0..]) =~{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999} As `7esn`"), - octest:ct_string("Merge ((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null})) On Match Set _usn4:_usn3,[0xabc Contains $1000].`6esn` =(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})[Filter(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 0.12 Ends With $usn1 Ends With $@usn5)][`3esn`(Distinct 9e12[_usn3])],{@usn6:0.12[0.e0..][`4esn`..]}.`4esn` =0x0 Contains $`8esn` Contains `6esn` On Create Set Extract(#usn7 In 01234567[$`3esn`..] Where 0X7 In $999 In $``|9e1[...e0]).`7esn`! =0X7 In 's_str' In $`1esn`,{`3esn`:#usn7 Ends With `4esn` Ends With @usn5}.#usn8 =[usn1[..$_usn4][..``],0X7[.e12..01234567]] In `3esn`(@usn5[..True][..0X7],$`3esn` =~$`7esn` =~False) Remove Single(#usn8 In $`5esn` Is Null Is Null Where $123456789[0.0..]).#usn7?,Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]).@usn6! Union With Distinct *,010 Contains Count(*) As `5esn`,'s_str' Ends With .e0 As `1esn` Skip [_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]] Ends With [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]] Limit Count ( * )[`3esn`..][`2esn`..] Where 's_str'['s_str'..$usn2][_usn3.._usn3] Union Detach Delete 01 In _usn3 In 12,`1esn`[`3esn`..][$@usn6..]"), - octest:ct_string("Merge (({_usn3:$`1esn` Starts With @usn6})-[usn1?:`7esn`|`2esn`{`1esn`:0[usn2..]}]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})) On Match Set usn1+=9e0 Contains `1esn` Contains $usn1 On Match Set Single(@usn5 In $#usn8 Is Null Is Null Where 12.e12 In $0 In Count(*)).#usn7! =$#usn7 =~0xabc,#usn7:_usn4:usn1,`5esn`+={`7esn`:Count(*) In 01 In .0}[..{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}][..#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..])] Match _usn4=(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(@usn6 ) Return *,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn` Skip 1e1[..False] Limit 12e12[$`5esn`][07] Union All Create (({``:12 Is Null Is Null})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)})),#usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})) Remove (`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(`4esn` :#usn7).@usn5?,All(`4esn` In `6esn`['s_str'..][010..] Where \"d_str\" =~`6esn` =~0Xa).``!,(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}).usn1! With Distinct `2esn` Contains $999 As #usn7,$123456789[False.._usn3] As `1esn` Order By (usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Ends With [$`8esn` =~$usn2,0X0123456789ABCDEF[..usn1],`` In `6esn`] Descending Skip 0X7[..12e12] Union All Delete 01234567 Ends With 0x0,{@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7),None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`)[`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)..]"), - octest:ct_string("Return *,9e12 Ends With 0X0123456789ABCDEF Ends With #usn7 As `8esn` Order By Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) Ends With [1e1[@usn5..],$#usn8 Is Null,$0[$#usn8..01234567]] Ends With Extract(`6esn` In 0X7 =~`` Where 010 =~`6esn`) Descending,12.0 Contains 0.e0 Desc Skip .12[.e12..0.e0][0.e0..$`2esn`] Create ((`` :`1esn`)-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`4esn` {`2esn`:@usn6[`5esn`..$`3esn`],`7esn`:$`1esn` Is Null})),`1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) Merge ((`1esn` {_usn4:12.e12 Ends With 01 Ends With .e1})-[_usn4?:`6esn`]->(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]})-[_usn3?:#usn7|:_usn4 *010]->({`1esn`:@usn6})) Union All Optional Match usn2=((`5esn` :usn2:@usn6{`5esn`:0Xa In .e1 In Count(*)})),_usn4=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]}))"), - octest:ct_string("With Distinct `8esn`(Distinct False Contains `3esn`,9e12 =~01 =~$`7esn`)[[@usn6[`5esn`..$`3esn`],0e0 Is Not Null Is Not Null]..],True[0] As @usn6 Skip .12 Ends With $`4esn` Ends With Count(*) Where $`4esn`[12.0..`5esn`] Delete $`6esn`[$@usn6..],Count ( * ) Contains 999 Contains $`8esn`,usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Merge `3esn`=(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Union Match `5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Where $`2esn` Contains usn1 Contains `2esn` Unwind 12e12[0.e0][9e1] As usn2 Union Delete (usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Is Null Is Null,[@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})]"), - octest:ct_string("Unwind 9e1[$@usn6..] As usn2 With (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Order By [$12[01..][1.e1..]][[usn1 In 00 Starts With _usn3 Where 00]..@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12)] Desc,[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|#usn7 Starts With `1esn`][[@usn5 In .12[#usn7][$`8esn`] Where 0.12 In $`4esn` In `6esn`|$`1esn` Starts With @usn6]..][$`1esn`..] Ascending,{#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null Asc Skip Null[0.e0..0x0]"), - octest:ct_string("Optional Match #usn8=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),((#usn7 :_usn3)<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]})-[#usn7:_usn3|:`4esn`]-(:#usn7{usn1:$123456789[..0.12][..#usn7]})) Create `8esn`=((:`6esn`:`7esn`{_usn4:12[0X7..@usn6],_usn3:123456789 In $usn2 In `6esn`})<-[#usn7?:_usn3|:`4esn` *00..]->(:`6esn`:`7esn`{_usn3:\"d_str\" Is Null Is Null})<-[@usn6]->(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})),(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})))"), - octest:ct_string("Unwind `8esn`[$``] As `3esn` Remove (:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`2esn`]-(`6esn` :#usn7)-[_usn4?:`6esn`]-(@usn5 :`8esn`).`7esn`,`7esn`(usn2 Is Null Is Null,`6esn` =~$_usn3).`1esn`! Merge (((`1esn` :`8esn`)-[_usn4:`7esn`|`2esn`]-(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3}))) On Create Set _usn4 =00 In 12.0 In 's_str',Any(usn2 In 1000 Contains 0.e0 Where _usn4[0xabc..]).``? =All(usn1 In 00 Starts With _usn3 Where 12e12[Null]) Ends With (:`7esn`)<-[@usn5:#usn7|:_usn4]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})<-[?:usn2|#usn8{#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7}]-({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) Ends With Extract(`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]|usn2[$`1esn`...0]),#usn7+=9e0[False] On Match Set [$usn1 In 1000 In $#usn7,$#usn7 In 12.0 In 0X0123456789ABCDEF,9e0 Is Not Null]._usn3 =All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`! =0xabc Starts With _usn3 Union With Distinct $`4esn`[12.e12..][0.0..],12[`7esn`...0][0.12..``] As @usn6,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Skip $`1esn` Ends With $`1esn` Where `3esn` Contains 0Xa Create _usn3=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))) With Distinct *,$`7esn` Ends With $@usn5 As usn2,$@usn6 Starts With usn2 Starts With usn2 As #usn8 Skip 0.e0[..#usn8][..Null] Limit 00 Starts With _usn3 Where $@usn6 Contains 07 Contains 0.e0 Union All Merge ((`4esn` {`6esn`:$12[..``][..$7]})-[usn1?{usn2:7[$`4esn`..123456789]}]->(`3esn` )<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` )) On Match Set `6esn`+=7[$`4esn`..123456789],`1esn` =(:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]),{_usn3:'s_str' =~0.e0}.usn2? =Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0]|999[``..][Null..]] Ends With Any(`4esn` In `6esn`[1e1..] Where False[`2esn`..#usn8]) On Create Set ({@usn6:9e0 Contains `8esn`})-[usn2 *0X0123456789ABCDEF..{usn2:`` Starts With 12}]-(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})-[`7esn`:@usn5|`8esn`{usn1:9e12 Is Not Null Is Not Null}]->(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]}).``! =Single(#usn7 In 01234567[$`3esn`..])[(`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']})][[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0]] Optional Match `1esn`=((:`8esn`)-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`{#usn8:Null[0e0][12],`2esn`:`8esn` In $@usn5}]-({_usn3:999 In $_usn4 In 0X7,`1esn`:1e1 In $#usn8 In 12e12})) Where $_usn3 =~`7esn` =~$_usn4"), - octest:ct_string("Remove [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1|9e1 Starts With `1esn` Starts With 0Xa].usn2?,Count ( * ).@usn5? Union All Delete $123456789[$`2esn`][True],_usn4 Ends With 01 Ends With $`1esn` Unwind usn2[$`7esn`..010][00..``] As `5esn` Unwind $`6esn` =~1e1 As @usn6"), - octest:ct_string("Create (`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})-[`1esn`:usn2|#usn8 *1000..]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`),`4esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Delete (`6esn` {@usn6:9e0 Contains `8esn`})<-[`5esn`:usn1|`3esn` *010{`2esn`:`6esn` =~01234567 =~0Xa}]-(usn2 {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789})<-[ *00..{`3esn`:12 Ends With 01234567,`4esn`:00[``..][$`4esn`..]}]->(`2esn` :``)[[999[``..][Null..],usn1 In 1000 In $`5esn`,`5esn`[.e1][0Xa]]] Create ((_usn4 {`8esn`:9e1 In 01 In 999})) Union With Distinct *,@usn5 Starts With \"d_str\" As ``,`5esn` In 12 Order By Count(*)[.e0.._usn4] Asc,$123456789[False.._usn3] Desc,`1esn`[`3esn`..][$@usn6..] Descending Skip 999 In 9e1 In 7 Limit [@usn5 In 0X0123456789ABCDEF,False[0Xa..$@usn5][$`6esn`..12e12]] =~({@usn6:0X0123456789ABCDEF[..usn1]})<-[`4esn`:#usn8]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(#usn8 :`7esn`) =~123456789 Where $#usn8 Is Null Is Null"), - octest:ct_string("Merge `3esn`=((`3esn` :`4esn`:#usn8)<-[#usn8? *0xabc]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})<-[?:`8esn`|:usn1 *123456789..999]-(`3esn` :#usn7)) Unwind \"d_str\" =~`3esn` =~0Xa As `1esn` Union All Optional Match `1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) Where $`3esn` =~$`7esn` =~False With Distinct {`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) As `2esn`,Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null As `5esn` Order By .e0 Contains 01234567 Descending Limit All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])] Remove count(Distinct 0.e0[9e1..][0.0..],$usn2 =~$#usn8).`5esn`?,{`4esn`:9e12 Is Not Null Is Not Null,`8esn`:$0[..`8esn`]}._usn3,@usn5:usn2:@usn6 Union Remove (`` {`5esn`:0X0123456789ABCDEF[.e0..$`4esn`]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :`4esn`:#usn8).@usn5,({@usn6:0X7 In $999 In $``})-[`7esn`{usn1:0 Is Not Null}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`}).@usn6 With *,{`7esn`:Count(*) In 01 In .0}[..{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}][..#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..])] As `5esn`,#usn7 Ends With `4esn` Ends With @usn5 As `` Where $`7esn` Is Null Is Null"), - octest:ct_string("Unwind 07[`6esn`..][`5esn`..] As usn1 Union Match (#usn7 :`6esn`:`7esn`)<-[`3esn`?:_usn3|:`4esn`]->(:`1esn`{_usn4:$_usn3[Null]})-[ *..0X7]->(`5esn` :_usn4:usn1) Detach Delete 9e0 Is Not Null,Count(*)[.e0.._usn4],'s_str'['s_str'..$usn2][_usn3.._usn3]"), - octest:ct_string("Match _usn3=((@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]})) Union Optional Match `1esn`=((usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) Where _usn4 Starts With 0X7 Union Create #usn7=(`3esn` :`8esn`{usn1:`2esn`[$`3esn`..],`6esn`:$12[..``][..$7]})-[@usn5?:``|:_usn4]-(`8esn` :#usn8)<-[?:``|:_usn4]-({`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})"), - octest:ct_string("Match @usn5=({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)<-[?:usn2|#usn8{#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7}]-({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) Merge `6esn`=(:_usn3{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Optional Match `8esn`=(:`8esn`),`5esn`=(((usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1)<-[@usn5:#usn8{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(#usn8 :_usn3))) Where 0.0[..12e12][..$0]"), - octest:ct_string("Return Distinct `3esn` =~`3esn` =~$`6esn` As `7esn` Limit $`7esn` Is Null Is Null Union All With Distinct *,`2esn` Starts With $_usn3 Starts With `2esn` Order By 0X7 In 123.654 In $`2esn` Asc,0 =~12.e12 =~$`` Asc,12.e12 Is Not Null Descending Skip 0.e0[123.654] Create #usn8=(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0})"), - octest:ct_string("With Distinct $`5esn`[$123456789][`1esn`] As `8esn`,[@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] As #usn7 Order By None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] Ascending,Count(*) In 01 In .0 Asc,Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`6esn`[$@usn6..]) In {`7esn`:12e12 Ends With 010 Ends With .0} In None(#usn8 In $`5esn` Is Null Is Null Where 123456789 In $usn2 In `6esn`) Asc Remove None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 9e12[usn2..7][.e1..$`7esn`]).`6esn`?,All(usn1 In 00 Starts With _usn3 Where 1e1[..False]).`4esn`?,Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]|@usn6 Contains .e1 Contains $`4esn`)._usn3! Remove [@usn5 In 0X7 =~.0 =~\"d_str\" Where $`8esn` Starts With 1000|@usn6 Contains .e1 Contains $`4esn`].`8esn`! Union Return Distinct {@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null} Is Not Null Is Not Null,$0 =~$0 =~.e0 As `7esn` Order By Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]) Asc,{@usn5:$`3esn`} Starts With .12 Asc Skip Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Union All Unwind 1000 Contains 123456789 Contains 1e1 As `` Return Distinct $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Limit 9e0 Starts With `6esn` Delete [$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)})"), - octest:ct_string("Remove {#usn7:False[`2esn`..#usn8]}.#usn7?,@usn6(Distinct 0.12 In 01 In $`3esn`,'s_str' Starts With 1000 Starts With #usn8).#usn8,(:`1esn`{`8esn`:Count ( * ) =~Count(*)})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(`1esn` {_usn4:12.e12 Ends With 01 Ends With .e1})._usn4 Union All Detach Delete {`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) Create ``=((@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`))"), - octest:ct_string("With Distinct *,Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) As _usn3 Skip 010 Starts With `7esn` Starts With 9e1 Limit 07[12][$`6esn`] Where $_usn4[$`8esn`..][07..] Unwind 9e0[False] As #usn8 Detach Delete .e0 Is Not Null Is Not Null,{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]} =~Single(usn2 In 1000 Contains 0.e0) =~Any(@usn6 In @usn5 In $`6esn` Where $`7esn` Is Not Null)"), - octest:ct_string("Merge `3esn`=(((:_usn4:usn1{usn2:$`5esn` In False})<-[?:@usn5|`8esn` *..0X7]->(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}))) On Create Set [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]].`1esn` =9e12 =~01 =~$`7esn` On Create Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$`` Remove [@usn5 In $#usn8 Is Null Is Null Where $#usn8 Is Null|123.654[@usn5]].`6esn`! Remove Filter(@usn5 In $#usn8 Is Null Is Null Where $@usn5 =~$`` =~$usn2).`7esn`,Filter(_usn4 In usn1 Contains False Contains `` Where _usn4[$`4esn`..]).#usn8?,[\"d_str\" =~`3esn` =~0Xa,$123456789[..0.12][..#usn7]].usn2! Union All Optional Match (`` :#usn7)<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})<-[`5esn`?:`6esn`]->(`6esn` :`6esn`:`7esn`{_usn4:\"d_str\"}),`4esn`=(((`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[?{`4esn`:0.e0 Ends With 12 Ends With $7,@usn6:$``[_usn4..][`7esn`..]}]->(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]}))) Remove Any(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0).usn1?,({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}).`5esn`! Optional Match (((usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1)<-[@usn5:#usn8{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(#usn8 :_usn3))),((:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[`2esn`:@usn5|`8esn`]->(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7})) Where .e1 Starts With 0.0 Starts With `6esn` Union With Distinct 07[07] Skip 123.654 Contains `2esn` Limit `8esn` In $@usn5 Where 07[$`5esn`..]['s_str'..] Create ((`5esn` {_usn4:0X7 =~``})<-[`2esn`?:usn2|#usn8{`6esn`:0X7[.e12..01234567],@usn6:`7esn`[...e1][..\"d_str\"]}]->(`5esn` :`8esn`{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})),`8esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) Unwind 0.0[999..] As usn1"), - octest:ct_string("Detach Delete All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],`1esn` Contains Count ( * ) Optional Match `3esn`=(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)})-[usn2{`6esn`:$@usn6[_usn3..0.e0]}]->({usn1:`4esn` In $12 In `8esn`})<-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`6esn` {`8esn`:`8esn` In $@usn5}) Where 0x0[...e12][..@usn5] Union Unwind 123456789 Starts With `2esn` Starts With .0 As `3esn` Union All Create @usn6=(:#usn8)<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[_usn3?:@usn5|`8esn`{`3esn`:`4esn`[7..][1000..],usn2:123456789 Starts With `2esn` Starts With 9e12}]-(`7esn` {`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`}),`2esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) Optional Match #usn8=({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]}),(((`3esn` :`8esn`)-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(_usn3 :usn2:@usn6)-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}))) Where 7[..12e12][..$`6esn`] Create ((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]}))"), - octest:ct_string("With Single(#usn7 In 01234567[$`3esn`..]) Is Null As `3esn` Order By .e12[usn2][01] Desc,$`7esn` Ends With 07 Ends With 07 Descending Skip 7[..0X7][..'s_str'] Limit {`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) Unwind [`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) As #usn8 Remove Extract(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null).@usn5?,{`5esn`:#usn7[..$1000][..01],`8esn`:True[Count(*)..][1e1..]}.@usn5?,count(Distinct $#usn8,False Is Not Null Is Not Null)._usn3? Union All Detach Delete 123.654[@usn5] Merge usn2=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) On Create Set None(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0).`4esn`! =0[usn2..],[@usn6[$`3esn`]].`4esn` =01 In _usn3 In 12,`1esn`+=123456789 =~usn1 Unwind `7esn`(0.0[1000..][.e1..],$@usn5 Contains 01)[Any(usn1 In 0x0[..`4esn`] Where 0X7[.e12..01234567])][[$@usn6 Contains 07 Contains 0.e0,`5esn` In 12]] As `8esn` Union All Create #usn7=({`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]->(`3esn` {_usn3:@usn6 Contains _usn4 Contains $`4esn`})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->({_usn3:12.e12 In $0 In Count(*)}) Match `7esn`=(@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}),@usn6=({_usn3:12.e12 In $0 In Count(*)})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}) Where 1e1 In 9e0 In 9e0 With Distinct `7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As `6esn` Skip 01234567[$`7esn`][_usn3] Limit usn1 Is Not Null Is Not Null"), - octest:ct_string("Remove {usn1:0e0 Is Not Null Is Not Null,@usn6:0X7[12]}.usn2,`8esn`(Distinct 0X0123456789ABCDEF[..usn1]).usn1!,{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}.#usn8 Return Distinct 0Xa Is Not Null Is Not Null As `1esn`,(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})[..Filter(#usn8 In $`5esn` Is Null Is Null Where 0Xa Is Null Is Null)][..(`7esn` {@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})] As usn1 Skip False[`6esn`][07] Limit [usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]] Starts With (`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` ) Starts With (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8) Union All Unwind .e12 Starts With True As `7esn` Unwind $_usn3 =~`7esn` =~$_usn4 As `5esn` With Distinct *,{`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] Order By 9e1 Starts With _usn3 Starts With `4esn` Descending,usn2(Distinct _usn3 Contains @usn6 Contains 1.e1)[Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where _usn3 Is Null)..[12e12[0.e0][9e1]]][Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``])..Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)] Descending Limit 0 Starts With 12e12 Starts With `4esn` Union Unwind $`8esn` Starts With 1000 As `7esn`"), - octest:ct_string("Detach Delete $999[12.0..] Remove ``:#usn7 Union Delete #usn8 Ends With `4esn` Ends With $`4esn`,$_usn3[..Count ( * )][..@usn5],$usn2 In 9e0 In $7 Detach Delete Extract(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null) =~Any(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null) =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1],$7 Contains 0x0 Contains ``,[\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Merge (`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :`4esn`:#usn8) On Create Set `2esn` =1e1[0.0],`4esn`+=All(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) =~None(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0) =~None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `7esn` Starts With $usn2 Starts With .e0) On Match Set #usn7 =.12 Is Not Null Is Not Null,Filter(usn2 In 1000 Contains 0.e0 Where 123456789 Starts With `2esn` Starts With .0).`1esn`? =[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][``($`4esn`[usn1..$#usn8][12.0..`3esn`])..[`6esn` In 0X7 =~``|$#usn7[...e12][..$7]]][(:``{@usn5:$@usn6 Contains Count ( * ),`2esn`:$0 Is Not Null})-[_usn3?:`5esn`|`1esn` *0X0123456789ABCDEF..]->(`1esn` :#usn7{_usn3:999[.e12][01],`6esn`:9e12 Is Not Null Is Not Null})<-[`5esn`?:usn1|`3esn` *1000..]-(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})..Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])]"), - octest:ct_string("Merge `5esn`=(({`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})-[#usn8?]-(:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})) Union Remove None(#usn7 In 01234567[$`3esn`..] Where 0X7 In $999 In $``).usn1?"), - octest:ct_string("Remove @usn6:`8esn` Create (`2esn` :``)<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(_usn3 :_usn4:usn1),`8esn`=(`4esn` {@usn5:1e1 In $#usn8 In 12e12})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`7esn` {`8esn`:$123456789 Contains 01 Contains 0.12})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8) Unwind 0x0[0.0][$_usn4] As #usn8 Union Detach Delete 0e0 Is Null Is Null,010 Contains 0X0123456789ABCDEF Remove {#usn8:0X0123456789ABCDEF[..usn1]}.`5esn`! With *,00 In 1e1 As `7esn`,0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Skip 7 In @usn5 In $`4esn` Limit {`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]]"), - octest:ct_string("Return Distinct #usn8 In $0 As `1esn`,'s_str' In \"d_str\" In 123456789,[0Xa[$``..][01234567..]] Contains `3esn`(Distinct _usn3 In .e1 In $12) Contains (`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']}) As @usn6 Order By Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Ascending,0xabc[$@usn5] Asc,usn1[..$_usn4][..``] Ascending"), - octest:ct_string("Match `5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Where $`2esn` Contains usn1 Contains `2esn` Unwind 12e12[0.e0][9e1] As usn2 Union Remove None(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7]).usn2!,(:`6esn`:`7esn`{_usn4:12[0X7..@usn6],_usn3:123456789 In $usn2 In `6esn`})-[@usn6?:#usn7|:_usn4 *00..]->(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})<-[? *12..0xabc{@usn5:0xabc[$@usn5]}]-(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})._usn4! Merge @usn5=((:#usn8$usn1)-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})) On Create Set `1esn`+=Null[0e0][12],Filter(usn1 In 0x0[..`4esn`] Where $`` Ends With 12e12).usn1! =Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] On Create Set `6esn`+=$123456789 Ends With .e1 Create (($999))"), - octest:ct_string("Match (usn1 :`3esn`:`1esn`)-[?:`4esn`|:`7esn` *..0x0]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Where #usn8 Ends With `4esn` Ends With $`4esn` Return Distinct *,$7[12.e12..] As #usn7,`4esn`[$#usn7] As `1esn` Skip #usn7[..$1000][..01] Limit {`8esn`:@usn5[..True][..0X7],`1esn`:`1esn` Contains Count ( * )}[{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)] With Distinct 12.e12 Contains $`5esn` As `` Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Limit All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Where False In $`7esn` In .0 Union Remove [usn1 In 0x0[..`4esn`]|`` Starts With @usn5].`6esn`?,(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})._usn4? Unwind [010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]][(:@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})..][Extract(#usn8 In $`5esn` Is Null Is Null Where 1000[0.0][Null])..] As `5esn` Unwind .e12 Starts With True As `7esn` Union All With Distinct *,Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null As `6esn` Where $@usn6 Contains 0 Contains $`2esn` Remove ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`5esn`? *010]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null}).`7esn`! Delete 0X0123456789ABCDEF Contains $usn1"), - octest:ct_string("Return *,Count ( * ) In 010 As `1esn` Limit $@usn5 =~07 =~True Merge _usn3=(@usn5 {@usn6:$123456789[0X7..12.e12]}) On Match Set @usn5 =12.e12['s_str'],@usn6 =$usn2[False..`7esn`][`7esn`.._usn3],({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})<-[usn2?:`4esn`|:`7esn` *0X0123456789ABCDEF..]-({usn1:$1000 Contains $`3esn`})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0}).@usn5? =07[07] Return Distinct *,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}) Union All Merge usn1=(`4esn` :#usn7)-[_usn4?:`6esn`]-(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) Delete [07,$_usn3[..Count ( * )][..@usn5]][All(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0)..{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}][[010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]]..Filter(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12)],`6esn` Starts With $usn2 Starts With 0.0 Remove (:`5esn`{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12})-[`5esn`?:`2esn`|usn2 *999..]->(`5esn` {`5esn`:$`5esn`[False]}).`8esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]).`7esn` Union All Merge @usn5=((({`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}))) On Match Set usn2 =$`4esn`[$`6esn`] On Create Set `6esn` =Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`),{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}.`2esn`? =.12[`1esn`..],`5esn`+=0 Starts With `6esn` Starts With 0X0123456789ABCDEF Merge (usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)})-[usn2{`6esn`:$@usn6[_usn3..0.e0]}]->({usn1:`4esn` In $12 In `8esn`})<-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`6esn` {`8esn`:`8esn` In $@usn5}) On Match Set Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..]).`8esn` =All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])],@usn6:#usn8"), - octest:ct_string("Unwind .e12 Starts With True As `7esn` Unwind $_usn3 =~`7esn` =~$_usn4 As `5esn` With Distinct *,{`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] Order By 9e1 Starts With _usn3 Starts With `4esn` Descending,usn2(Distinct _usn3 Contains @usn6 Contains 1.e1)[Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where _usn3 Is Null)..[12e12[0.e0][9e1]]][Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``])..Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)] Descending Limit 0 Starts With 12e12 Starts With `4esn` Union All Delete 00 Starts With _usn3,(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})[Single(`4esn` In 's_str'[12..'s_str'])..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)],count(Distinct 's_str' Starts With 1000 Starts With #usn8,12e12 Starts With $123456789 Starts With 12.0)[[_usn4 In usn1 Contains False Contains `` Where $#usn8]][[$`1esn` Is Null,\"d_str\" =~`6esn` =~0Xa,$usn2[0e0..]]]"), - octest:ct_string("Optional Match `3esn`=(usn1 :`6esn`:`7esn`),`1esn`=(({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})) Unwind [\"d_str\" Starts With $usn1,.12 Contains $`4esn` Contains $`6esn`,01234567 =~usn1] Is Null Is Null As _usn3 Remove [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`7esn` Ends With $`2esn` Ends With $usn1|0[0.12..]].@usn5?,{`2esn`:00[01234567][False]}.`1esn`,[_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567|_usn4[$`4esn`..]].`2esn`! Union Return Distinct $`5esn`[$123456789][`1esn`],(`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})-[`4esn`?:`8esn`|:usn1 *..0x0]->(:`7esn`{``:$`1esn` Starts With @usn6}) Ends With `6esn`(Distinct $`4esn`[usn1..$#usn8][12.0..`3esn`],12.e12['s_str']) Ends With (`7esn` {`8esn`:Count ( * ) =~Count(*)})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}) As `7esn`,01234567 As `6esn` Detach Delete $@usn5 In 12e12 In Count(*),`` =~12 =~$#usn7,Null Contains _usn4 Union Unwind .e12[usn2][01] As _usn3 Match usn2=((#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`6esn`?:usn1|`3esn`{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})),((usn1 :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)) Where $0[01234567..00][$`2esn`..$@usn6] Merge (((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) On Create Set @usn6 =`3esn`[..7][..12e12]"), - octest:ct_string("Delete Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}),$@usn6 In $`5esn` In $usn2 With Distinct `` Is Not Null Is Not Null As @usn6,True[Count(*)..][1e1..] Union All Detach Delete Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0},12 Ends With .e12 Ends With $7 Optional Match `6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Where 0.e0[@usn6][0x0] Match (((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))) Where $usn2 In 9e0 In $7"), - octest:ct_string("Remove Filter(usn1 In 00 Starts With _usn3 Where 123456789[`4esn`..][Count ( * )..])._usn3,`8esn`:`3esn`:`1esn`,[usn1 In 00 Starts With _usn3 Where False[.e1..Null]].`4esn`? Return $_usn4[12e12][`4esn`] As `5esn`,@usn6[`5esn`..$`3esn`] As ``,0.0[..12e12][..$0] Order By usn2[$`1esn`...0] Descending,123.654 Is Not Null Is Not Null Desc Limit 0X7 =~`4esn` =~`8esn` Delete 9e0 =~$`5esn`,@usn5 =~.0 =~$`1esn`,Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0}"), - octest:ct_string("Merge `7esn`=((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)) Merge (((`3esn` )-[?:#usn7|:_usn4]-(usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]}))) On Match Set `5esn` =01234567 Starts With $_usn4,#usn7 =\"d_str\" =~`6esn` =~0Xa,{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]}.usn2? =9e12 Contains .e0 Contains .e0 Union All Return Distinct *,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}) Skip ({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}) =~None(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Return Distinct *,{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}[Extract(_usn4 In usn1 Contains False Contains `` Where `5esn`[.e1][0Xa])..] Order By [@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|#usn7 Starts With `1esn`][[@usn5 In .12[#usn7][$`8esn`] Where 0.12 In $`4esn` In `6esn`|$`1esn` Starts With @usn6]..][$`1esn`..] Ascending"), - octest:ct_string("Create #usn7=(((`` :usn1)<-[#usn8:`3esn`|:`4esn` *0..010]->(`3esn` :usn2:@usn6)-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}))) Delete Extract(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|Null Starts With $`7esn` Starts With `2esn`) =~{`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0},0x0 Starts With $`7esn` Starts With `2esn` Unwind [01234567 =~usn1,9e0 =~$`5esn`,usn2[$`1esn`...0]][..[.12 In $999 In `5esn`,010 =~`6esn`,#usn7 Contains .0 Contains .e1]] As `8esn` Union All Optional Match ((_usn3 :_usn4:usn1)<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})),(:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa})-[:usn1|`3esn`]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]}) Where 00[01234567][False] Return Distinct *,Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]]"), - octest:ct_string("Create ({``:.e12[..0.e0][..$`1esn`]})-[_usn3:#usn8]-(usn1 :#usn7) Merge `3esn`=((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) On Create Set ``+={usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null,@usn5+=usn1[..@usn5][...e0],`2esn`+=All(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True])[..[`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|_usn3 In .e1 In $12]][..{`2esn`:$usn1[1e1.._usn3][$@usn6..$#usn7]}] On Create Set usn1 =(`6esn` :_usn4:usn1{`6esn`:00 In 12.e12})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``)[Extract(@usn5 In .12[#usn7][$`8esn`] Where #usn8 Contains .e0 Contains $`8esn`|.e0[..999][..0X7])..Any(#usn7 In 01234567[$`3esn`..] Where Null[01234567][01234567])],_usn4 =Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`)[@usn6..][usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`])..] Match (`7esn` {_usn3:usn1 Contains $``})<-[usn1]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12}),(({`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})-[#usn8?]-(:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1}))"), - octest:ct_string("With Distinct 01234567[.12..7][1000..1.e1],123456789 Starts With `2esn` Starts With 9e12 As `3esn`,$12[01..][1.e1..] Order By $`1esn` Starts With `8esn` Starts With $0 Descending,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] Desc Unwind $`8esn`[``..][123.654..] As `7esn` Union Match #usn7=((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 )),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) Merge `8esn`=(((:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[:#usn7|:_usn4{``:$1000 Is Null Is Null}]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`}))) Merge _usn4=((@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) On Match Set Extract(usn2 In 1000 Contains 0.e0 Where $1000[01234567]|$`6esn`[Count(*)..0.e0][0.0..Count ( * )]).`8esn`! =$123456789[False.._usn3],`3esn`(Distinct 0X7 In $999 In $``,$0 Is Not Null).`7esn`? =0.e0[123.654],`1esn`+=True Starts With 12.0 Starts With $@usn5 Union All Return Distinct *,All(usn1 In 0x0[..`4esn`] Where $0[$#usn8..01234567]) In [_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0|$`7esn` Is Not Null] In [.12 Ends With `1esn` Ends With $`1esn`,$usn2[False..`7esn`][`7esn`.._usn3],\"d_str\" Contains `3esn` Contains 00] Skip $`6esn`[$@usn6..] Limit 00 Starts With _usn3"), - octest:ct_string("Remove Any(`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]).`3esn`,[$`2esn`[..7][..$usn1]]._usn4!,[0X0123456789ABCDEF Is Not Null,\"d_str\"].`4esn`! Return Distinct 1.e1 =~$_usn4 As usn2,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,{_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] Order By $12 Starts With #usn7 Asc,$0[$0..] Descending Merge `8esn`=(:`8esn`) On Match Set usn2+=.e1 Ends With _usn4 Ends With @usn5,@usn5+=_usn3 In .e1 In $12,Extract(`4esn` In `6esn`[1e1..] Where $`7esn` Ends With `1esn` Ends With True).`` =010 In @usn6"), - octest:ct_string("Return *,9e1['s_str'..1e1] As #usn7,01234567 As `6esn` Skip `2esn` In Count(*) In 9e0 Limit usn2 Is Not Null Union Unwind usn2 Starts With @usn6 As #usn7 With $`2esn`[..`2esn`] As `5esn` Order By _usn3 =~00 Asc Where #usn7 Ends With `4esn` Ends With @usn5"), - octest:ct_string("Unwind `2esn` Is Not Null Is Not Null As _usn4 With \"d_str\" =~`6esn` =~0Xa,.e1[usn1..] As `6esn` Union All With Distinct *,9e12[_usn3] As `8esn` Skip 7 Contains 9e1 Limit `5esn`[`1esn`..`1esn`] Where @usn5 In $`6esn` Optional Match ((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})),((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})) Where 123456789 In $usn2 In `6esn`"), - octest:ct_string("Remove Extract(`6esn` In 0X7 =~`` Where $0[$#usn8..01234567]|0x0 =~$`7esn` =~@usn6).`8esn`!,{`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`}.`1esn` Return *,False[`6esn`][07] Order By 01234567[Null..0.e0][Count(*)..$#usn8] Descending,\"d_str\" =~`6esn` =~0Xa Ascending Skip 0X7 Ends With `3esn` Return $12[`3esn`..0e0][`2esn`..$7] As #usn8,0.12 =~01 =~12 Order By Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Descending,{@usn6:12.0[``],_usn4:$`3esn` Contains 0X0123456789ABCDEF Contains 00} Ends With Single(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Ends With Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999|12.0[``]) Descending Limit (`4esn` :`8esn`{_usn4:0 Is Null Is Null})-[`6esn`:`8esn`|:usn1$_usn3]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Ends With Filter(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999) Ends With [`4esn` In `6esn`[1e1..] Where 07[12e12]] Union Merge ((:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})<-[@usn6:`3esn`|:`4esn`*]->(`6esn` :`5esn`)) On Create Set Single(@usn5 In $#usn8 Is Null Is Null Where 12.e12 In $0 In Count(*)).#usn7! =$#usn7 =~0xabc,#usn7:_usn4:usn1,`5esn`+={`7esn`:Count(*) In 01 In .0}[..{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}][..#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..])] On Match Set (_usn4 {#usn7:False[`2esn`..#usn8],#usn8:`5esn`[`1esn`..`1esn`]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]}).`3esn` =01234567[$@usn6..0X7][$`1esn`..123.654] Detach Delete Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1),$@usn5 =~07 =~True"), - octest:ct_string("Merge ((#usn8 :`4esn`:#usn8)<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] On Create Set `4esn` =.12 Is Not Null Is Not Null,{@usn6:True[..'s_str'][..01]}.`2esn` =12.e12[...0][..0x0],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Return $_usn4[12e12][`4esn`] As `5esn`,@usn6[`5esn`..$`3esn`] As ``,0.0[..12e12][..$0] Order By usn2[$`1esn`...0] Descending,123.654 Is Not Null Is Not Null Desc Limit 0X7 =~`4esn` =~`8esn` Return Distinct {@usn6:`7esn` In 999 In @usn6} Starts With Extract(usn1 In 0x0[..`4esn`] Where 0x0|07 Ends With 07) Starts With Filter(usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12),False Ends With $`8esn`,``[$`3esn`][$`2esn`] As usn1 Order By $`6esn` Is Null Is Null Desc Limit 999 In $_usn4 In 0X7 Union Return $`5esn` In `2esn` In .0 As `7esn`,None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]) As `` Order By 00 Is Null Is Null Descending Skip $`7esn` Ends With $@usn5 Limit 0X0123456789ABCDEF Contains 12.e12 Contains 999 Optional Match ((_usn4 {`8esn`:9e1 In 01 In 999})),`1esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}) Where @usn5 Contains $`1esn` Contains 999"), - octest:ct_string("Create ((:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]})),((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Unwind `4esn` =~$`3esn` =~$123456789 As #usn7 With Distinct [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending,9e12 Asc Skip 0X7[.e12..01234567] Limit $_usn4[0.12..$`6esn`][00..$@usn6]"), - octest:ct_string("Create `2esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}),(#usn7 :@usn5)<-[@usn5*]->({``:$1000 Is Null Is Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(`7esn` :`2esn`:`3esn`) Merge `4esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Union All Remove [Null Contains _usn4].`8esn`!,Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn2[`3esn`][_usn3]).`7esn`?,{#usn7:False[.e1..Null],`1esn`:9e0 Is Null Is Null}.@usn5!"), - octest:ct_string("Delete Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null Union All Return Distinct *,`4esn` Is Null Order By `5esn` In $999 Descending Limit `3esn` =~$`5esn` =~12 Union Return Distinct *,usn2 =~0x0,07 In `5esn` In 12e12 Skip Null Contains 9e1 Limit [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..]"), - octest:ct_string("Unwind _usn4[0xabc..] As #usn8"), - octest:ct_string("Remove (_usn4 {#usn7:False[`2esn`..#usn8],#usn8:`5esn`[`1esn`..`1esn`]})<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0).#usn8,[Count(*)[12.e12..]].#usn7,`8esn`:#usn7 With *,`2esn` Starts With $_usn3 Starts With `2esn` Order By Null[@usn6..][9e1..] Ascending Skip [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] With Distinct 12.e12 Contains $`5esn` As `` Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Limit All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Where False In $`7esn` In .0 Union Optional Match (`5esn` {_usn4:0X7 =~``}),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null})) Union All Delete 0X7[12],0x0 In `8esn` In 999,$usn2[..12.0]"), - octest:ct_string("Unwind 00 Starts With _usn3 As #usn7 Union All Create `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})),((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`1esn`{`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654}]->(`7esn` :`7esn`)) Return $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Limit 9e0 Starts With `6esn` Merge ((({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)<-[#usn7 *123456789..999]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}))) On Create Set `8esn` =``"), - octest:ct_string("Merge usn2=(_usn4 :``{`2esn`:9e1 In 01 In 999,`5esn`:$@usn6[..$usn1]})-[`5esn`?:``|:_usn4]->(:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[@usn6?:`1esn`]-(:`5esn`) On Match Set [usn1 In 00 Starts With _usn3 Where `6esn`[1e1..]].`5esn`! =Count ( * )[Count ( * )..12e12][usn1..1000],@usn5+=usn1 Contains $`` On Create Set `1esn` =0X0123456789ABCDEF[.e0..$`4esn`] Match #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) Where 12e12 Is Not Null With Distinct {usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]} =~Single(usn2 In 1000 Contains 0.e0) =~Any(@usn6 In @usn5 In $`6esn` Where $`7esn` Is Not Null) As `3esn`,Filter(usn1 In 00 Starts With _usn3 Where $_usn4[`3esn`][0])[..Extract(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12|0x0 =~_usn4)][..{_usn4:.12 =~.12 =~1e1,#usn7:.e1 Starts With 0.0 Starts With `6esn`}] Order By @usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Ascending,$`3esn` =~Null Desc Skip Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789} Where `3esn`[$`1esn`..]"), - octest:ct_string("Match `4esn`=((:`7esn`{``:$`1esn` Starts With @usn6})),@usn5=((@usn6 :#usn7{@usn5:Null Is Null Is Null})<-[``?:@usn5|`8esn`]->(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})) Create ((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) Remove All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null).@usn5,`8esn`:_usn3,#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..]).`7esn`! Union All Remove [.12 Contains $`4esn` Contains $`6esn`].@usn6,[07 In `5esn` In 12e12]._usn3? Remove [Null Contains _usn4].`8esn`!,Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn2[`3esn`][_usn3]).`7esn`?,{#usn7:False[.e1..Null],`1esn`:9e0 Is Null Is Null}.@usn5! Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Union All Match `8esn`=((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Where $usn2[0e0..]"), - octest:ct_string("Unwind 7 In $`3esn` In #usn7 As `5esn` Create _usn3=(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})) With Distinct None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} Order By 123.654[`5esn`] Descending,$`2esn`[..7][..$usn1] Descending,123456789 Starts With _usn4 Starts With @usn6 Descending Where $`4esn`[$`2esn`..] Union Return Distinct #usn8 In $0 As `1esn`,'s_str' In \"d_str\" In 123456789,[0Xa[$``..][01234567..]] Contains `3esn`(Distinct _usn3 In .e1 In $12) Contains (`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']}) As @usn6 Order By Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Ascending,0xabc[$@usn5] Asc,usn1[..$_usn4][..``] Ascending Union All Unwind 0X7 =~`4esn` =~`8esn` As `7esn` Remove {`8esn`:Count ( * ) =~Count(*)}.`6esn`,({@usn6:0X0123456789ABCDEF[..usn1]})<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)._usn4?,(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`4esn` Optional Match `4esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}),(((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Where $_usn3[..Count ( * )][..@usn5]"), - octest:ct_string("Detach Delete ({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]),#usn8 Is Not Null Union Merge usn1=(usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}) On Create Set {`6esn`:$`3esn` Contains 0X0123456789ABCDEF Contains 00,`1esn`:1000[123.654..9e12][1000.._usn3]}.`1esn`! =[$`1esn` Is Null Is Null,$12 Contains 123.654 Contains `8esn`] Starts With {`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]} Starts With Filter(usn1 In $123456789 Contains usn2 Where 01234567[.12..7][1000..1.e1]) On Create Set `2esn` =$usn2[False..`7esn`][`7esn`.._usn3],``+=_usn4 Ends With 01 Ends With $`1esn`,``+=01 Ends With .e0 Unwind [1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As @usn6 Merge @usn5=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) On Match Set usn1 =_usn3[0],[`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]].`1esn`! =Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[usn2($#usn8 Is Null Is Null)..Extract(usn1 In 0x0[..`4esn`] Where 123456789 In $usn2 In `6esn`|@usn5[..True][..0X7])][(`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` )..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]]"), - octest:ct_string("Remove `3esn`:#usn7,None(`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]).#usn8? Union All Unwind #usn8[$#usn8..] As `4esn` Union All Remove All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.e12 Contains `5esn`).`6esn`? Match (@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Remove Any(#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7).`3esn`?,{`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`}.`4esn`!"), - octest:ct_string("With Distinct *,.e1 Starts With $`8esn` Where 12.e12[$1000..]"), - octest:ct_string("Match usn2=(((`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[?:`5esn`|`1esn` *999..]->(:``)<-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))),`2esn`=(({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(:_usn4:usn1)) Where `4esn` =~123456789 Union All Create _usn4=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))),@usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})) Remove {@usn6:123456789 =~$123456789,`4esn`:usn1 Contains False Contains ``}.`3esn`! Optional Match `6esn`=(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}),@usn5=(`3esn` :`8esn`{usn1:`2esn`[$`3esn`..],`6esn`:$12[..``][..$7]})-[@usn5?:``|:_usn4]-(`8esn` :#usn8)<-[?:``|:_usn4]-({`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12}) Where $@usn6 Contains 07 Contains 0.e0 Union All With 123.654 Is Not Null Is Not Null As `3esn`,$usn1 In 1000 In $#usn7 As `8esn` Order By .12 Starts With $usn2 Asc,[usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..] Asc,{`8esn`:$123456789 Is Null Is Null,_usn3:$`4esn` Starts With 1e1}[(#usn7 :`2esn`:`3esn`)<-[`8esn`?]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})..All(_usn4 In usn1 Contains False Contains `` Where $`8esn`[$``..$7][$1000..$`7esn`])] Descending Skip $@usn5[$#usn8..][9e1..] Limit $123456789[0X7..12.e12] Where 0.12[0.e0..][`4esn`..]"), - octest:ct_string("Optional Match `1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) Where $`3esn` =~$`7esn` =~False With Distinct {`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) As `2esn`,Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null As `5esn` Order By .e0 Contains 01234567 Descending Limit All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])] Remove count(Distinct 0.e0[9e1..][0.0..],$usn2 =~$#usn8).`5esn`?,{`4esn`:9e12 Is Not Null Is Not Null,`8esn`:$0[..`8esn`]}._usn3,@usn5:usn2:@usn6 Union Return 1.e1 =~$_usn4,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn` Order By $`8esn` In \"d_str\" In 9e12 Desc,`3esn`(.e0 =~`5esn`)[Single(`6esn` In 0X7 =~`` Where $`3esn` =~Null)][[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $_usn3[$`4esn`..Null]|False[`2esn`..#usn8]]] Asc,1e1 In 9e0 In 9e0 Ascending"), - octest:ct_string("With Distinct *,{`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] Limit [@usn5 In 0X0123456789ABCDEF,False[0Xa..$@usn5][$`6esn`..12e12]] =~({@usn6:0X0123456789ABCDEF[..usn1]})<-[`4esn`:#usn8]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(#usn8 :`7esn`) =~123456789 Remove `7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``]).@usn5,{#usn7:0Xa Is Not Null Is Not Null,#usn7:.0[$`6esn`..False]}.`4esn`?,[usn1[..@usn5][...e0],$`8esn`[``..][123.654..]].`` Match `2esn`=({``:.e12[..0.e0][..$`1esn`]})-[_usn3:#usn8]-(usn1 :#usn7) Union All Return Distinct *,({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) Order By [0 Is Null Is Null][..[_usn3 =~00,9e1 Is Null Is Null]] Descending,Single(`4esn` In `6esn`['s_str'..][010..] Where 12.0 Contains 0.e0)[..Any(`4esn` In 's_str'[12..'s_str'] Where Count(*)[`7esn`..$12])][..Extract(@usn5 In .12[#usn7][$`8esn`] Where 01234567 =~usn1)] Ascending,`8esn` In $@usn5 Asc Limit $#usn8 Is Null Match #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) Union Return Distinct (_usn3 :`6esn`:`7esn`{usn1:$_usn3[9e1][$_usn4],`8esn`:123456789 =~_usn4 =~$0})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-({`1esn`:@usn6}) In _usn3(0x0[0X7..][usn1..]) In None(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str') As _usn4 Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending Skip 07[12][$`6esn`] Remove ({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})-[#usn8?]-(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7}).@usn6?,{`3esn`:`4esn`[7..][1000..],usn2:123456789 Starts With `2esn` Starts With 9e12}.`8esn`!,@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12).`5esn`! Create ((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})),#usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}))"), - octest:ct_string("Optional Match #usn8=((({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null})<-[`7esn`?:`8esn`|:usn1]-(`7esn` :#usn8)-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`))) Detach Delete $`6esn`[$@usn6..],`6esn`[0X7..][0x0..],Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null Remove Filter(usn2 In 1000 Contains 0.e0 Where 12e12[$`5esn`][07])._usn4? Union Return 01234567 Is Null Is Null As `3esn`,0.12 Contains $12 Contains `8esn` As `5esn`,9e0 Starts With `6esn` Skip `3esn` Ends With 010 Limit Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]} Merge (`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`7esn` :`4esn`:#usn8{`2esn`:Count(*)[..`3esn`]})-[? *07..{@usn6:12[..True][..$`4esn`],`4esn`:.0[$`6esn`..False]}]-({`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`}) On Create Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..] On Create Set `` =$`6esn` =~Null =~9e12 Create (((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))) Union With Distinct Extract(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null) Ends With `2esn`(`7esn`[Null..][@usn5..],123.654[12.e12..1e1]) Ends With Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]) As `7esn` Skip .e0[..0X0123456789ABCDEF][...e12] Limit $`4esn`[9e1..][0..] Where `1esn` In 999 In $#usn7 Remove [`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789]|0.12[Null..]].`8esn`?,All(`4esn` In 's_str'[12..'s_str'] Where $`8esn`[..$``]).`7esn`!,Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`!"), - octest:ct_string("Unwind Extract(usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`) Contains [0 Contains 12e12,0xabc Ends With $7 Ends With $`2esn`,0x0 =~_usn4] As `7esn` Merge ((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ))"), - octest:ct_string("With `2esn` In 7 In usn2,$0 =~$usn1 =~9e1 As `5esn`,@usn5[_usn4..][.e0..] As usn1 Skip Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] Optional Match ((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})),(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union Remove [`5esn`[`1esn`..`1esn`],.12[#usn7][$`8esn`]]._usn3,None(usn1 In 0x0[..`4esn`] Where \"d_str\" Contains `3esn` Contains 00).`6esn` Union All Unwind 01234567[.12..7][1000..1.e1] As `` Remove [.12 Starts With .12 Starts With `3esn`,Count ( * )[Count ( * )..12e12][usn1..1000],False In `3esn`].#usn7,{usn1:$1000 Contains $`3esn`}.#usn8!,None(`4esn` In $`8esn` Starts With 1000 Where True Starts With $`8esn` Starts With \"d_str\").`4esn`!"), - octest:ct_string("Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`).``? Unwind $_usn4[`3esn`][0] As `7esn` Optional Match ((`5esn` :#usn7)<-[?:usn2|#usn8 *1000..]->(@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})),`2esn`=((:@usn5{#usn7:1e1[@usn5..]})<-[? *0..010]-({@usn6:$123456789 Is Null Is Null,@usn6:`6esn`[1.e1..$#usn7][.e0..True]})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]})) Where False In 123456789 In $0"), - octest:ct_string("Create (_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[`7esn`?:`4esn`|:`7esn` *..0X7]-(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) With Count(*) In 01 In .0,1000 Contains $#usn7 Contains `6esn` Skip (`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`})<-[ *0xabc{`1esn`:123.654 In \"d_str\" In $_usn3}]-({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0}) =~{#usn8:$@usn5[#usn8..][$`1esn`..]} =~{#usn8:0X0123456789ABCDEF[..usn1]} Limit $_usn3[..Count ( * )][..@usn5] Where $123456789 =~$`5esn` =~07 Match `1esn`=(((`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})-[ *010{@usn5:Null Is Null Is Null}]-(:`5esn`)<-[`7esn`{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}]-(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})))"), - octest:ct_string("Create (:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}) Unwind [@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] As usn1 Merge (`7esn` {_usn3:usn1 Contains $``})<-[usn1]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12}) Union All Remove (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`).`2esn`,[.12 Contains $`4esn` Contains $`6esn`].@usn6 Unwind $123456789 =~12.e12 =~@usn5 As `1esn` Merge ((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})) On Create Set `2esn`(Distinct $`2esn`[..7][..$usn1]).`1esn`? ={`4esn`:.12 Starts With 0Xa} Starts With All(usn1 In 00 Starts With _usn3 Where `6esn`[False..0.0][12e12..$usn2]),`5esn` =$usn1[0.12..]['s_str'..],({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})-[#usn8?]-(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7}).`6esn`? =[999[.e12][01],999 In 9e1 In 7,0xabc Contains Null Contains 9e12][All(`6esn` In 0X7 =~`` Where 0.12[Null..])..[`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]]][count(010 Contains Count(*))..(:`4esn`:#usn8)-[:#usn8 *..0X7]->({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6)]"), - octest:ct_string("Delete 0.0[1000..][.e1..] Remove [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0].`3esn`,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``! Merge (((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))) On Match Set usn1 =0x0[$`3esn`..010][$#usn7..00] Union All Unwind 0.0[1000..][.e1..] As usn1"), - octest:ct_string("With Distinct *,Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null As `6esn` Where $@usn6 Contains 0 Contains $`2esn` Remove ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`5esn`? *010]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null}).`7esn`! Delete 0X0123456789ABCDEF Contains $usn1 Union Delete {#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] Return Distinct *,9e12 Ends With 0X0123456789ABCDEF Ends With #usn7 As `5esn`,$12[`3esn`..0e0][`2esn`..$7] As #usn8 Order By $`2esn` Starts With .e0 Starts With 12.0 Descending,{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,999 Is Null Is Null Desc Limit $7 Ends With `5esn`"), - octest:ct_string("Merge (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0) On Match Set usn2:#usn7,usn2 =[usn1[..@usn5][...e0]] In Extract(`6esn` In 0X7 =~`` Where $1000 Contains $`3esn`|12 Ends With 01234567) In {`3esn`:$`5esn` In `2esn` In .0,``:0e0 Is Null Is Null},Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|@usn6[..0xabc][..$#usn7])._usn3 =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..] Detach Delete @usn5 Contains 01 Contains 12,#usn7 Starts With .e12 Starts With $`7esn`,{_usn3:0 Contains 12e12}[Extract(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`)][Extract(@usn6 In @usn5 In $`6esn` Where usn1 Contains $``)] With Distinct *,`7esn`(0.0[1000..][.e1..],$@usn5 Contains 01)[Any(usn1 In 0x0[..`4esn`] Where 0X7[.e12..01234567])][[$@usn6 Contains 07 Contains 0.e0,`5esn` In 12]] Limit [$#usn8 In .e12 In 9e1][(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[ *00..{`2esn`:$0 Is Not Null}]-(`` :#usn7$0)][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn`[1e1..07][0x0..Count ( * )])] Where 12 Ends With .e12 Ends With $7"), - octest:ct_string("Remove Extract(usn1 In 0x0[..`4esn`] Where $`2esn`[123456789..][00..]).#usn7? Union Create usn1=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})),`4esn`=((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})) Optional Match #usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})),@usn5=(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})<-[`2esn` *12..0xabc{`6esn`:$123456789[0.0..],@usn5:999[$`6esn`]}]-(`7esn` {`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) Where @usn5[..True][..0X7] With Distinct Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] As @usn5,12 Is Null Is Null As #usn7 Limit 0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Where 12[..9e0][..999] Union All Return Distinct *,`4esn` Is Null Order By `5esn` In $999 Descending Limit `3esn` =~$`5esn` =~12"), - octest:ct_string("Return Distinct `7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As usn1 Order By 12.e12 In .e0 In `7esn` Asc,9e1[.12..] Asc Skip (_usn3 )<-[usn1]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})-[_usn4?:`6esn`]->(`8esn` :`1esn`) =~Single(#usn7 In 01234567[$`3esn`..] Where 0.12 In $`4esn` In `6esn`) =~Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|$`8esn`[..123456789]) Limit 0.12 In $`4esn` In `6esn` Unwind [0Xa Is Null Is Null] Is Null As `1esn` Detach Delete {`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6)"), - octest:ct_string("Merge `1esn`=((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})) Remove Single(_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`).`6esn`?,(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})._usn4!,@usn5:`4esn`:#usn8 Merge (({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})<-[_usn3?:`2esn`|usn2{`3esn`:0[0.12..]}]->(:``{`1esn`:`6esn` =~$_usn3})) Union Unwind 123456789 Starts With #usn7 Starts With `6esn` As `7esn` Return Distinct Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0]) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where Count(*)[True]) In Extract(`4esn` In 's_str'[12..'s_str'] Where 0xabc Ends With $#usn7 Ends With #usn8|.e1 Starts With 0.0 Starts With `6esn`) As #usn7,@usn5 Starts With \"d_str\" As ``"), - octest:ct_string("Optional Match ((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),((_usn4 {`8esn`:9e1 In 01 In 999})) Return .e12[.12..][_usn4..] As _usn4 Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Remove Single(`6esn` In 0X7 =~`` Where 010 =~`6esn`).`2esn`?,@usn6:`6esn`:`7esn`,(:``)-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}).`6esn`?"), - octest:ct_string("Create @usn6=(((@usn6 :`5esn`{``:.e1 In $@usn6 In 999,`8esn`:_usn3 Is Null Is Null})<-[$#usn8]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})-[`6esn`? *0Xa{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}]-(:`6esn`:`7esn`{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1}))) Remove [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0].`3esn`,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``! Union Unwind `4esn` =~$`3esn` =~$123456789 As #usn7 Create ((`` :`1esn`)-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`4esn` {`2esn`:@usn6[`5esn`..$`3esn`],`7esn`:$`1esn` Is Null})),`1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]})"), - octest:ct_string("With `6esn`['s_str'..][010..],$`4esn` Contains 0Xa Where 0X0123456789ABCDEF In $1000 In $`3esn` Merge `3esn`=((:#usn8{_usn4:\"d_str\"[Count ( * )],`2esn`:9e0 Ends With $`7esn`})) Union All Delete [_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]] Ends With [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]],Single(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8)[{_usn3:$0 Ends With $#usn7 Ends With .12}][[12.0[0Xa][00],.0[01][$12]]] Unwind `2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As `4esn`"), - octest:ct_string("Optional Match _usn4=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))),@usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})) Remove Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1).usn1!,[$123456789 Is Null Is Null,9e12[@usn6..$``][#usn8..Count ( * )]].`1esn`!,{#usn8:$#usn7[True..][$0..],`8esn`:123456789 Starts With `2esn` Starts With .0}.#usn8! Return *,1.e1[Null][12.e12] As ``,Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) As _usn3 Order By 0.e0[`6esn`...e0][9e12...e12] Descending,_usn3 In .e1 In $12 Asc Skip [$`4esn`[9e1..][0..]][Any(`4esn` In $`8esn` Starts With 1000 Where 0.e0[9e1..][0.0..])..Single(#usn8 In $`5esn` Is Null Is Null Where 1000 Ends With 1000 Ends With $`4esn`)] Limit 123456789 =~_usn4 =~$0 Union Create ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})-[@usn6?:#usn7|:_usn4 *00..]->(`` :@usn5{#usn7:0X7[12]})) Return Distinct $@usn6 =~$#usn8 =~$#usn7 As `7esn`,12e12[0.e0..True][0.12..0.0] As #usn8 Order By @usn5 =~.0 =~$`1esn` Ascending With *,[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As `7esn` Order By 00 Is Null Is Null Descending,$usn2 Starts With $`6esn` Starts With 0xabc Ascending,123456789 Starts With #usn7 Starts With `6esn` Asc Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`) Limit 0x0 Contains _usn4 Contains 123456789 Union All Unwind Single(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`) Is Null As `2esn` Return *,`4esn` Is Null Order By `5esn` In $999 Descending Limit `3esn` =~$`5esn` =~12"), - octest:ct_string("Return `1esn`[0e0..] As @usn6,[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4,.e0 Is Not Null Is Not Null As `2esn` Order By 12.e12 In .e0 In `7esn` Asc,9e1[.12..] Asc Merge usn2=((`5esn` :usn2:@usn6{`5esn`:0Xa In .e1 In Count(*)})) On Create Set `3esn`+=[_usn4[0xabc..]][..Extract(_usn4 In usn1 Contains False Contains `` Where 12[usn1][True])][..(_usn3 {`7esn`:usn1 Contains False Contains ``})<-[? *0..010]-(#usn8 :`4esn`:#usn8)] Delete $12 Contains 123.654 Contains `8esn`,$`3esn` Is Not Null Is Not Null Union All Optional Match usn2=(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}))) Where 0X0123456789ABCDEF In 01234567 Optional Match `3esn`=((:#usn8{_usn4:\"d_str\"[Count ( * )],`2esn`:9e0 Ends With $`7esn`})) Union Unwind Extract(usn2 In 1000 Contains 0.e0 Where `7esn` Contains .0 Contains 9e12|_usn3 Is Null)[Single(_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01])] As `` With Distinct 999 In $_usn4 In 0X7 As usn2,.e1 Starts With 0.0 Starts With `6esn`,.e1 Starts With $`8esn` Where 's_str'[.12..$#usn7][$999..`2esn`]"), - octest:ct_string("Create #usn8=(((`2esn` :_usn3{`5esn`:12.e12[$1000..],`4esn`:'s_str'[..0.0][..$`4esn`]})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})-[usn1?:`1esn` *0X0123456789ABCDEF..{usn2:$`4esn`[12.e12..][0.0..]}]-(:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]}))),usn1=((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6)) Union Merge `3esn`=((:#usn8{_usn4:\"d_str\"[Count ( * )],`2esn`:9e0 Ends With $`7esn`})) Merge `7esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}) On Create Set ``+={usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null,@usn5+=usn1[..@usn5][...e0],`2esn`+=All(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True])[..[`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|_usn3 In .e1 In $12]][..{`2esn`:$usn1[1e1.._usn3][$@usn6..$#usn7]}] Union All Optional Match `3esn`=(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)})-[usn2{`6esn`:$@usn6[_usn3..0.e0]}]->({usn1:`4esn` In $12 In `8esn`})<-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`6esn` {`8esn`:`8esn` In $@usn5}) Where 0x0[...e12][..@usn5] Detach Delete usn1[1e1][$_usn4],999[$usn2..] Remove (`3esn` :#usn8{#usn8:$_usn4[$`8esn`..][07..]})<-[`2esn` *12..0xabc{`6esn`:$123456789[0.0..],@usn5:999[$`6esn`]}]-({@usn6:9e1 Contains $`3esn` Contains 01234567,@usn6:.e12[.12..][_usn4..]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}).`6esn`,#usn7:#usn8,{#usn7:0Xa[..$``],`1esn`:usn2 Is Not Null}.usn1?"), - octest:ct_string("Create (_usn3 :_usn4:usn1)<-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(:@usn6:`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}) Unwind Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] As @usn6 Unwind (@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`) Is Not Null Is Not Null As `7esn` Union All With Distinct 01234567 Ends With 0x0,[`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As #usn8,$1000 Is Not Null Is Not Null Order By None(@usn5 In 0X7 =~.0 =~\"d_str\" Where _usn3[...e1])[[_usn4 In usn1 Contains False Contains `` Where 0.12 In $7 In 0]..][[7[..12e12][..$`6esn`]]..] Asc,12[usn1][True] Desc Limit 010 Contains Count(*) Where 0.12 Ends With $usn1 Ends With $@usn5 Return *,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn`,$_usn3 In $#usn8 As #usn7"), - octest:ct_string("Detach Delete 07[0..`4esn`],``(Distinct `1esn`[0e0..]) =~(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[@usn6?:`1esn`]-(:`5esn`)-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}),[$1000 Is Null Is Null] Is Null Union All Unwind 12e12 Starts With $123456789 Starts With 12.0 As usn1 Optional Match `3esn`=(({``:$1000 Is Null Is Null})) Where `1esn`[...e1] Union With Distinct *,7[..12e12][..$`6esn`],01234567[$@usn6..0X7][$`1esn`..123.654] As `6esn` Order By Count(*)[12.e12..] Ascending,$usn1 In 1000 In $#usn7 Descending"), - octest:ct_string("Detach Delete Any(#usn7 In 01234567[$`3esn`..] Where 00 In 1e1)[[usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0|0xabc[12.e12..`1esn`]]..][[@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2]..],_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) With Distinct *,$0 =~$0 =~.e0 As `7esn`,$@usn5[#usn8..][$`1esn`..] As `7esn` Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip [@usn6 In @usn5 In $`6esn` Where $999[$1000]|$7[.12]] In {`1esn`:$@usn6 Contains 07 Contains 0.e0} In (`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) Where 9e12[usn2..7][.e1..$`7esn`] Union All Delete Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null)[count(Distinct 0.12 Contains $12 Contains `8esn`)..[$`1esn` Is Null Is Null,9e1 In 01 In 999]],(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}],usn2(Distinct `7esn` Ends With $usn2 Ends With 999) =~Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0) =~Any(`4esn` In `6esn`['s_str'..][010..] Where 01 Ends With .e0)"), - octest:ct_string("Remove ``:`5esn`"), - octest:ct_string("Remove (usn1 :_usn3{@usn6:True[..'s_str'][..01]})-[? *999..]-(`` :`1esn`).usn2?,Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 123456789[$#usn7..]|123456789 In $usn2 In `6esn`)._usn4?,Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $`6esn` Is Null Is Null)._usn3 Union All Remove {`1esn`:`7esn`[Null..][@usn5..]}.`7esn`! Create (({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) Remove `4esn`:`3esn`:`1esn`"), - octest:ct_string("With Distinct 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Limit $12[..``][..$7] Detach Delete Count ( * )[..1e1] Union Delete Count ( * ) In 010,False[..12.e12] Unwind `7esn`[$999][7] As `5esn` Create (({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})),(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :`4esn`:#usn8)"), - octest:ct_string("Unwind 0.0[1000..][.e1..] As usn1"), - octest:ct_string("Delete Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]),None(`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789])[(`` {`8esn`:0X7 In $@usn5 In 9e0,_usn3:@usn6[$`3esn`]})-[usn1{#usn7:7 Contains 9e1,`5esn`:$`` Ends With 12e12}]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})..0e0][{`1esn`:$@usn6 Contains 07 Contains 0.e0}..{`3esn`:0.12 In $7 In 0,_usn3:07[$999]}] Detach Delete $@usn5[#usn8..][$`1esn`..],Count ( * ) =~All(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7),#usn8 In $0"), - octest:ct_string("Unwind [$12[01..][1.e1..]][[usn1 In 00 Starts With _usn3 Where 00]..@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12)] As `8esn` With 0x0[0X7..][usn1..] As _usn4 Order By `6esn` Starts With $usn2 Starts With 0.0 Ascending,0X7 In $@usn5 In 9e0 Descending Where 00 In 12.0 In 's_str' Union Delete 0.12 =~9e0,12.0[0Xa][00] With {_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] As `1esn` Order By 0 Is Not Null Descending Skip 0x0 Where 123456789 Starts With #usn7 Starts With `6esn` Optional Match `8esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}))"), - octest:ct_string("Create `1esn`=(((`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})-[ *010{@usn5:Null Is Null Is Null}]-(:`5esn`)<-[`7esn`{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}]-(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}))) Remove Extract(`4esn` In $`8esn` Starts With 1000 Where `5esn` In 12|010 Contains 0X0123456789ABCDEF).`2esn`,{#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}.`2esn`! Return Distinct *,9e12 Ends With 0X0123456789ABCDEF Ends With #usn7 As `5esn`,$12[`3esn`..0e0][`2esn`..$7] As #usn8 Order By $`2esn` Starts With .e0 Starts With 12.0 Descending,{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,999 Is Null Is Null Desc Limit $7 Ends With `5esn`"), - octest:ct_string("Unwind .e12 =~0.0 =~9e0 As `8esn` With Distinct 01[Null..][`1esn`..] As `2esn`,$usn1 Contains Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where .e0[..999][..0X7]) Contains [@usn6[`3esn`..][$7..]] Order By 0X7 =~.0 =~\"d_str\" Desc,.12 =~.12 =~1e1 Asc,$#usn8 In .e12 In 9e1 Desc Skip $`3esn` =~$999 =~$`3esn` Limit {`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Where Count ( * )[Count ( * )..12e12][usn1..1000] Detach Delete [@usn5 In $#usn8 Is Null Is Null Where 7 In 0xabc][[Null[01234567][01234567],07[1e1],Count(*)[12.e12..]]..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)],0.12,Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 01234567[.12..7][1000..1.e1]|$`5esn` In False) Contains {@usn5:Null[0e0][12],_usn4:0 Contains 12e12} Contains [usn1 In 0x0[..`4esn`] Where \"d_str\" Contains `3esn` Contains 00|@usn6[`3esn`..][$7..]] Union All With *,Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])[All(#usn7 In 01234567[$`3esn`..] Where Count(*)[.e0.._usn4])..][None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..])..] As @usn6 Order By {`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,0.12 In $7 In 0 Desc Limit 123.654 Contains #usn8 With Distinct *,12 Is Null Is Null As #usn7,$`7esn` Ends With $0 Ends With .e12 As `` Order By $0[01234567..00][$`2esn`..$@usn6] Desc,12.e12['s_str'] Desc,123456789 Starts With #usn7 Starts With `6esn` Asc Limit 999 In 9e1 In 7"), - octest:ct_string("Remove All(@usn5 In $#usn8 Is Null Is Null Where 7 In 0xabc).#usn7?,({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[`2esn`? *0..010]->(usn2 {usn1:0 Is Null Is Null,`8esn`:12.0[..$7][..999]})<-[#usn8:`3esn`|:`4esn` *0..010]->(`3esn` :usn2:@usn6).`4esn`! Merge `4esn`=(_usn4 :#usn8)-[`1esn`?:`1esn` *01234567..12]-({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}) On Create Set ``+={usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null,@usn5+=usn1[..@usn5][...e0],`2esn`+=All(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True])[..[`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|_usn3 In .e1 In $12]][..{`2esn`:$usn1[1e1.._usn3][$@usn6..$#usn7]}] On Create Set _usn4 =All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)[[usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1]],#usn7 =_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) Return Distinct All(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`)[[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]]..][({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})..] As #usn8,'s_str' In \"d_str\" In 123456789,None(`4esn` In 's_str'[12..'s_str'] Where 12.0[0Xa][00]) Is Not Null Union All With *,07[0..`4esn`] Order By 12.e12[$`7esn`] Desc,Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}) Descending Where @usn6 Starts With `7esn` Starts With Null Remove [$`2esn` =~'s_str',12 Ends With 01234567,$1000 Is Null Is Null].`3esn`?,[12.e12[...0][..0x0]]._usn4,(`1esn` :`8esn`)<-[#usn7:`3esn`|:`4esn` *00..]->(`4esn` :`8esn`)-[`4esn`? *0Xa]-(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}).`3esn`? With Distinct $@usn6 Starts With usn2 Starts With usn2,@usn6[$`7esn`],$`4esn`[9e1..][0..] Limit [$`1esn` Is Null Is Null,$12 Contains 123.654 Contains `8esn`] Starts With {`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]} Starts With Filter(usn1 In $123456789 Contains usn2 Where 01234567[.12..7][1000..1.e1]) Where `` Starts With @usn5 Union All Delete Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`)"), - octest:ct_string("Match (((:`7esn`{#usn8:07 In 0 In 's_str',`6esn`:_usn3 =~00})-[`5esn`?:``|:_usn4]->(:#usn8{#usn7:12e12 Ends With 010 Ends With .0})<-[`3esn`{`7esn`:010 =~`6esn`,``:$usn2 =~$_usn4 =~`5esn`}]->({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}))) Where .0 Starts With `2esn` Starts With `6esn`"), - octest:ct_string("With Distinct $`4esn`[12.e12..][0.0..] As `2esn`,$0[..`8esn`] As _usn4,$`1esn` Starts With $999 Skip $#usn8[1e1][9e1] Limit Count(*) Ends With 010 Remove [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1|9e1 Starts With `1esn` Starts With 0Xa].usn2?,Count ( * ).@usn5? Remove `5esn`:usn1,(`3esn` :_usn4:usn1)-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[`` *0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`1esn`! Union All Unwind 07[`6esn`..][`5esn`..] As usn1"), - octest:ct_string("Create @usn6=((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]->(:_usn3{@usn6:$`7esn` Is Null Is Null})),((({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999})<-[@usn6?:`6esn`*..]-(_usn3 :usn2:@usn6)-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6))) Unwind $@usn5[.e1] As #usn8 Union Delete {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']}[(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)],010 Is Null Is Null"), - octest:ct_string("Create `8esn`=((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})),`4esn`=(#usn7 :@usn5)-[`4esn`:_usn3|:`4esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:usn1{`8esn`:usn1 Contains $``}) Union All With Distinct 12e12 Starts With $123456789 Starts With 12.0,$@usn5 In 12e12 In Count(*) As #usn7,[0Xa In .e1 In Count(*)][..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}][..Extract(`4esn` In `6esn`['s_str'..][010..] Where #usn8[$#usn8..])] As `6esn` Limit @usn6[..0xabc][..$#usn7] Where $`5esn` Contains Count(*) Contains #usn7 Remove (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})<-[usn2?:usn1|`3esn`{`7esn`:0xabc Ends With $#usn7 Ends With #usn8,@usn5:$#usn8}]->(`3esn` :#usn8).usn2 Match (`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Where 9e1 Is Null Is Null"), - octest:ct_string("Return Distinct 0.12 Contains .e1,Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[usn2($#usn8 Is Null Is Null)..Extract(usn1 In 0x0[..`4esn`] Where 123456789 In $usn2 In `6esn`|@usn5[..True][..0X7])][(`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` )..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]] As `3esn`,`` Order By 01234567[.12..7][1000..1.e1] Ascending Union All Delete `2esn`[$`1esn`..][$_usn3..],7 =~9e0 =~'s_str' Merge (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[? *..0X7{`3esn`:`8esn`[$``]}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})-[?:usn1|`3esn`{#usn8:1000[..$`6esn`][..0xabc]}]->(usn1 :_usn3{@usn6:True[..'s_str'][..01]}) Union With *,$`3esn`[`2esn`...e0] As _usn3 Limit Count ( * )[Count ( * )..12e12][usn1..1000] Where 12[0X7..@usn6] Remove Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0).`2esn`?,(`4esn` {@usn5:1e1 In $#usn8 In 12e12})-[_usn4?:`5esn`|`1esn`]-(@usn5 {``:12[usn1][True],``:$`5esn` In `2esn` In $12}).`7esn`!,[999[.e12][01]].`2esn`!"), - octest:ct_string("Match `1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}),`1esn`=(((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))) Where 7 Contains $`5esn` Contains $usn1 Create (`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :`4esn`:#usn8) Union Create (:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}) Unwind [@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] As usn1 Merge (`7esn` {_usn3:usn1 Contains $``})<-[usn1]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})"), - octest:ct_string("Detach Delete [@usn5 In $#usn8 Is Null Is Null Where 7 In 0xabc|$_usn4[$`1esn`]] Is Null Is Null,9e1 Is Null Is Null,@usn6[`5esn`..$`3esn`] Create #usn7=({`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]->(`3esn` {_usn3:@usn6 Contains _usn4 Contains $`4esn`})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->({_usn3:12.e12 In $0 In Count(*)}) Union All Create ((`3esn` :`8esn`)-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})-[ *..0X7]->(`5esn` :_usn4:usn1)),(((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}))) Detach Delete $@usn5 Ends With 0X0123456789ABCDEF,$123456789[0.0..]"), - octest:ct_string("Return Count ( * )[Count ( * )..12e12][usn1..1000] Order By $`1esn`[$usn2..][$1000..] Descending Skip Filter(`6esn` In 0X7 =~`` Where $0[$#usn8..01234567])[{`7esn`:Null[0e0][12],#usn8:$12[..``][..$7]}..][Filter(usn1 In 0x0[..`4esn`] Where $usn1[0.12..]['s_str'..])..] Union All Merge _usn3=(@usn5 {@usn6:$123456789[0X7..12.e12]}) On Match Set @usn5 =12.e12['s_str'],@usn6 =$usn2[False..`7esn`][`7esn`.._usn3],({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})<-[usn2?:`4esn`|:`7esn` *0X0123456789ABCDEF..]-({usn1:$1000 Contains $`3esn`})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0}).@usn5? =07[07]"), - octest:ct_string("Delete 0e0[12][$_usn4]"), - octest:ct_string("Return *,9e12 Contains $_usn3 As `2esn` Order By 0x0[$`3esn`..010][$#usn7..00] Descending,9e12 Asc,`5esn` In $999 Descending Limit `3esn` =~$`5esn` =~12 Unwind 00 As `8esn` Return Distinct *,Count ( * ) Contains 999 Contains $`8esn` Order By $`7esn` =~.e1 Descending,0e0 Starts With .e12 Ascending Skip 0.e0 Ends With 12 Ends With $7 Union With Distinct 1.e1 =~$_usn4 As usn2,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,{_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] Order By $12 Starts With #usn7 Asc,$0[$0..] Descending Where _usn3 Ends With 0x0 Ends With 01234567 With *,0xabc Starts With _usn3 As `3esn`,Null[..12e12][..usn1] As `3esn` Order By 0x0[$`3esn`..010][$#usn7..00] Ascending,010 =~$usn2 =~1e1 Desc,(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Asc Limit 0x0 Contains $`8esn` Contains `6esn` Where 0xabc Contains Null Contains 9e12 With `5esn` In 12 As usn2,Count(*) Starts With 1e1 Starts With $123456789 As #usn7,[`4esn` In 's_str'[12..'s_str'] Where 9e1 Contains $`3esn` Contains 01234567][[7[..12e12][..$`6esn`]]..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}] As #usn8 Order By 00 In 12.e12 Descending,9e0 Ends With $`7esn` Asc Skip 01234567 Is Null Is Null Limit $123456789 In Count(*) In .e1 Where $123456789 Ends With $`6esn`"), - octest:ct_string("Optional Match (`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Where $`8esn` =~$usn2"), - octest:ct_string("Remove `7esn`:`6esn`:`7esn` Return Distinct *,1.e1 Contains @usn6 As usn2 Order By (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Ascending,Single(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`) =~Extract(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) =~Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]) Asc,0.0[999..] Asc"), - octest:ct_string("With Distinct *,Count ( * ) In 010 As `1esn` Limit $@usn5 =~07 =~True Match `4esn`=((#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) Where `` Starts With @usn5 Optional Match _usn4=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))),@usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]}))"), - octest:ct_string("Create `4esn`=((:`7esn`{``:$`1esn` Starts With @usn6})),`1esn`=((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})) Unwind 01234567 Ends With 0x0 As _usn3 Unwind $_usn4[`3esn`][0] As _usn4 Union All With Distinct *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `3esn`,Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])[All(#usn7 In 01234567[$`3esn`..] Where Count(*)[.e0.._usn4])..][None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..])..] Order By ({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Desc,0x0 Desc,0.e0 Starts With 12.e12 Starts With .e12 Desc Skip [\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Limit usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Where 123456789 Is Null Optional Match usn1=((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})) Where 1000 Contains 0.e0 Merge `5esn`=(usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[ *0xabc{`1esn`:123.654 In \"d_str\" In $_usn3}]-({`2esn`:$usn2 Is Not Null})"), - octest:ct_string("Merge ((`6esn` :`7esn`)-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)<-[@usn5:`6esn` *0X0123456789ABCDEF..]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null})) On Create Set [$usn1 In 1000 In $#usn7,$#usn7 In 12.0 In 0X0123456789ABCDEF,9e0 Is Not Null]._usn3 =All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`! =0xabc Starts With _usn3 On Match Set #usn8 =07[07],@usn5+={`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[{`4esn`:$7 Ends With 12.0 Ends With 0xabc,_usn4:0X0123456789ABCDEF[.e0..$`4esn`]}..][Extract(`4esn` In `6esn`['s_str'..][010..] Where $999 Ends With $`3esn` Ends With `8esn`)..] Delete Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}),07,`2esn`[$`3esn`..]"), - octest:ct_string("Delete `6esn`[False..0.0][12e12..$usn2]"), - octest:ct_string("Detach Delete True Starts With 12.0 Starts With $@usn5,@usn5 =~.0 =~$`1esn` Merge (_usn4 :#usn8)<-[`6esn`? *..7{`3esn`:123456789[$#usn7..]}]-(:`2esn`:`3esn`{`7esn`:$_usn4[#usn8..]})-[usn1?:_usn3|:`4esn` *123456789..999{`6esn`:01 Ends With .e0,`4esn`:$`7esn` Is Not Null}]->(_usn3 ) Union With Distinct *,`3esn` =~`3esn` =~$`6esn` As `7esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 123456789[$#usn7..]) Contains [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1] Skip .12[..`6esn`][..\"d_str\"] Limit [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] Where `5esn`[`1esn`] Delete 7[..0X7][..'s_str'],9e0 Ends With $`7esn`,$0 Ends With $#usn7 Ends With .12 Union With Distinct *,`3esn` =~`3esn` =~$`6esn` As `7esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 123456789[$#usn7..]) Contains [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1] Skip .12[..`6esn`][..\"d_str\"] Limit [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] Where `5esn`[`1esn`] Delete 7[..0X7][..'s_str'],9e0 Ends With $`7esn`,$0 Ends With $#usn7 Ends With .12"), - octest:ct_string("Remove ({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})-[#usn8?]-(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7}).@usn6?,{`3esn`:`4esn`[7..][1000..],usn2:123456789 Starts With `2esn` Starts With 9e12}.`8esn`!,@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12).`5esn`! Union Delete Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null)[..[.e0 Contains #usn7 Contains $#usn8]] Unwind #usn7 Contains .0 Contains .e1 As usn1"), - octest:ct_string("Delete $12 Contains 123.654 Contains `8esn`,$`3esn` Is Not Null Is Not Null Detach Delete 12.0[123456789..Null]['s_str'..$usn1],9e1[.12..],{`5esn`:0Xa In .e1 In Count(*)}[$`8esn`][[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7]] Detach Delete Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..])"), - octest:ct_string("Delete _usn4[$`4esn`..] Remove [1e1 In $#usn8 In 12e12,7 In @usn5 In $`4esn`].`5esn`!,`7esn`:`1esn`,usn2:usn1 Merge (({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) On Match Set #usn7($123456789 Contains 01 Contains 0.12).usn2! =.e12 =~0.0 =~9e0,All(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1).`4esn` =$999[12.0..],`8esn`+=Filter(_usn4 In usn1 Contains False Contains `` Where 9e0 =~$`5esn`) =~``($`4esn`[usn1..$#usn8][12.0..`3esn`]) =~Single(usn2 In 1000 Contains 0.e0) On Match Set `` =None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..],#usn7($`8esn`[$``..$7][$1000..$`7esn`],`2esn` In 7 In usn2).`6esn`? =$_usn4['s_str'..],`4esn`+=$`7esn` Ends With $usn2 Union All Remove [usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]]._usn3,{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12}.@usn6,[usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]].usn2? Match (((`7esn` :``)<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:usn1|`3esn`*]->(:_usn3{`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`}))) With `3esn` Contains 0Xa As `6esn`,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,[usn1[..@usn5][...e0]][(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)]"), - octest:ct_string("Remove {#usn8:0X0123456789ABCDEF[..usn1]}.`5esn`! Detach Delete Any(#usn7 In 01234567[$`3esn`..] Where 00 In 1e1)[[usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0|0xabc[12.e12..`1esn`]]..][[@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2]..],12.e12 Ends With 01 Ends With .e1,07[12e12] Union With Distinct $0 Is Null Is Null Skip [0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',0X0123456789ABCDEF In $1000 In $`3esn`,$0[..`8esn`]] In `4esn`(Distinct 12.e12 In $0 In Count(*),00 In 1e1) In [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]|.e0 =~`5esn`] Where 010 Contains Count(*)"), - octest:ct_string("Return Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1),9e1[010..] As `6esn` Order By $`2esn`[$usn2..][123456789..] Ascending,{@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7) Asc Limit 9e1 Starts With `1esn` Starts With 0Xa Match usn2=(_usn3 :_usn3),usn1=((:_usn4:usn1{#usn8:$`7esn` Ends With `1esn` Ends With True})-[`7esn`?:usn1|`3esn` *123456789..999{`5esn`:.e1 In $@usn6 In 999}]-(usn2 :#usn8{`3esn`:123.654[@usn5]})) Where 0 Is Not Null Is Not Null Create #usn8=((#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})<-[ *00..{`3esn`:12 Ends With 01234567,`4esn`:00[``..][$`4esn`..]}]->(`2esn` :``)) Union With Distinct 12.e12 Contains $`5esn` As `` Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Limit All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Where .e0 =~`5esn` Delete `4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}]"), - octest:ct_string("Create _usn4=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),(((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})-[?*..{`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}]-(`` :`3esn`:`1esn`{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-({usn1:010[@usn5..],`7esn`:`2esn` Is Not Null Is Not Null}))) Match (`5esn` {_usn4:0X7 =~``}),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null}))"), - octest:ct_string("Remove (#usn8 {@usn5:.e1[..$``][..0X0123456789ABCDEF],_usn3:$usn2 =~$#usn8})<-[ *..0x0{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}]-(`5esn` {`8esn`:0.0[12...12]}).@usn6 Return Distinct *,$123456789 =~$#usn8 =~$#usn8 Order By $@usn6 Contains 07 Contains 0.e0 Asc Skip 0e0[12][$_usn4] Limit 123.654[12.e12..1e1] Union With Distinct `` Is Not Null Is Not Null As @usn6,`5esn`[`1esn`..`1esn`],[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4 Order By Count(*) Is Null Descending,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0] Ends With [`4esn` In 's_str'[12..'s_str'] Where 0.12 In 01 In $`3esn`|9e0 =~$`5esn`] Ascending,[0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] Asc Skip 1000 Contains 123456789 Contains 1e1 Limit $`6esn`[`3esn`..0e0] With Distinct .e0[`4esn`..`4esn`][0.0..$0] As `7esn` Order By None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) Descending,01234567[.12..7][1000..1.e1] Ascending Where #usn7[..$1000][..01] Delete [$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union Create (`` :#usn7) Unwind .e1 Starts With 0.0 Starts With `6esn` As `2esn` Detach Delete Null[1.e1..]"), - octest:ct_string("Match `7esn`=(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]}) Return 9e1[010..] As `6esn` Order By $7 Ends With `5esn` Descending,1e1[\"d_str\"] Ascending Limit $`7esn` Is Null Is Null Return *,01234567 Is Null Is Null Order By {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}[..[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]]] Ascending Skip 010 =~$usn2 =~1e1 Union Return *,({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn` Match ((usn1 :`6esn`:`7esn`)) Unwind $@usn5[.e1] As #usn8"), - octest:ct_string("Optional Match `8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`}) Where 123456789 Starts With `2esn` Starts With .0"), - octest:ct_string("Detach Delete `6esn` =~01234567 =~0Xa,0.0 Is Null Is Null,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} Optional Match _usn4=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),(((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})-[?*..{`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}]-(`` :`3esn`:`1esn`{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-({usn1:010[@usn5..],`7esn`:`2esn` Is Not Null Is Not Null}))) Where $`` Ends With 12e12 Unwind Count(*)[`7esn`..$12] As `1esn` Union All Create (((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))),(@usn6 {`4esn`:$`2esn`[..`2esn`]})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})"), - octest:ct_string("With Distinct *,Single(#usn7 In 01234567[$`3esn`..]) Is Null Limit 123456789 Starts With `2esn` Starts With .0 Where $#usn7 In 12.0 In 0X0123456789ABCDEF Union All Unwind 12e12 Starts With $123456789 Starts With 12.0 As usn1 Optional Match `3esn`=(({``:$1000 Is Null Is Null})) Where `1esn`[...e1]"), - octest:ct_string("Unwind `7esn` Starts With $usn2 Starts With .e0 As usn2"), - octest:ct_string("With Distinct *,None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`) Is Null As @usn6,123456789 =~_usn4 =~$0 As usn1 Where Count(*)[..`3esn`] Union All Remove [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7].@usn5,Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])._usn3? Return Distinct *,$@usn6[..$usn1] As _usn3 Order By {``:12e12[$`5esn`][07],_usn3:$`6esn` Is Null Is Null} Ends With [0 Is Not Null Is Not Null] Descending,Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Desc,.12 Ends With `1esn` Ends With $`1esn` Asc Limit `7esn` Starts With $`` Starts With $#usn7 Unwind $@usn6 Starts With usn2 Starts With usn2 As _usn4"), - octest:ct_string("With Distinct 010 Starts With `7esn` Starts With 9e1,False[.e1..Null] As `2esn` Order By {`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]} Ends With (usn1 :_usn3)<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})-[ *..0x0]->(:`7esn`{@usn6:0.0[999..],#usn8:Null Is Null Is Null}) Asc Skip [@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Where $`6esn` Is Null Is Null"), - octest:ct_string("Return Distinct 7 Is Null As #usn7 Limit 9e12[usn2..7][.e1..$`7esn`] Remove Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0).`2esn`?,(`4esn` {@usn5:1e1 In $#usn8 In 12e12})-[_usn4?:`5esn`|`1esn`]-(@usn5 {``:12[usn1][True],``:$`5esn` In `2esn` In $12}).`7esn`!,[999[.e12][01]].`2esn`! Remove [$`2esn` =~'s_str',12 Ends With 01234567,$1000 Is Null Is Null].`3esn`?,[12.e12[...0][..0x0]]._usn4,(`1esn` :`8esn`)<-[#usn7:`3esn`|:`4esn` *00..]->(`4esn` :`8esn`)-[`4esn`? *0Xa]-(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}).`3esn`? Union Detach Delete 0x0[$`3esn`],07 In $7 In 12 Union All Create `5esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Detach Delete $usn2 =~$_usn4 =~`5esn` Detach Delete Extract(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null) =~Any(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null) =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1],$7 Contains 0x0 Contains ``,[\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..])"), - octest:ct_string("Merge ()<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) With *,#usn7 Starts With .e12 Starts With $`7esn` As usn2,{`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) As @usn5 Limit Extract(`4esn` In 's_str'[12..'s_str'] Where 00 Starts With _usn3|$`1esn` Is Null Is Null) Is Null Is Null Unwind 0x0 =~_usn4 As `4esn` Union Create `7esn`=(((@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0})-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[?:usn2|#usn8 *1000..]->(@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]}))) Remove All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.e12 Contains `5esn`).`6esn`?,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 12.e12 Ends With 01 Ends With .e1).`4esn`! Union All Unwind 07[12e12] As `4esn` Remove Extract(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`).`5esn`?,(`2esn` {`3esn`:$999[12.0..]})-[:usn2|#usn8 *01234567..12{usn2:$`3esn` In $12 In 's_str'}]-(usn1 :_usn3).`5esn`"), - octest:ct_string("Optional Match ``=(`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[_usn3?:`7esn`|`2esn` *010]->(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})-[?:`4esn`|:`7esn`]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}) Merge `5esn`=(({`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})-[#usn8?]-(:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1}))"), - octest:ct_string("Merge (`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(`7esn` :`8esn`{`4esn`:00 Ends With .12 Ends With `4esn`})-[ *07..]->(usn2 :@usn6:`7esn`) On Create Set #usn8:_usn4:usn1,[0 Is Not Null Is Not Null].usn2! =(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] Union With Distinct @usn6 Starts With `7esn` Starts With Null,$usn1[#usn8..][``..] As `2esn`,`3esn`[$`1esn`..] As usn2 Order By _usn3[0] Asc,``[$`3esn`][$`2esn`] Ascending,{@usn5:0.e0[@usn6][0x0]} Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7) Ascending Skip (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) Is Not Null Is Not Null Limit [@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Where `1esn` Contains Count ( * ) Return Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As `5esn` Return Distinct *,.e1 Starts With $`8esn` Skip 0xabc[12.e12..`1esn`] Limit 0.e0[@usn6][0x0]"), - octest:ct_string("Return Distinct *,[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As `7esn` Order By 00 Is Null Is Null Descending,$usn2 Starts With $`6esn` Starts With 0xabc Ascending,123456789 Starts With #usn7 Starts With `6esn` Asc Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`) Limit 0x0 Contains _usn4 Contains 123456789 Unwind Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4)[..`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)][..{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}] As #usn7 Remove ({`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[ *..0x0{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}]-(`5esn` {`8esn`:0.0[12...12]}).``!,Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null).``!,usn1:`8esn` Union Detach Delete (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)[Filter(@usn6 In @usn5 In $`6esn` Where $999[$1000])..][#usn7($`8esn`[``..][123.654..],12.e12 Contains `5esn`)..],{`8esn`:@usn5[..True][..0X7],`1esn`:`1esn` Contains Count ( * )}[{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)] Unwind 999 Contains `7esn` As @usn5 Return Distinct Single(#usn7 In 01234567[$`3esn`..]) Is Null As `3esn`,$`1esn`[9e1.._usn4][$999..$`2esn`],Single(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7])[None(`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789])..@usn6(Distinct True =~@usn5 =~$`1esn`,.12 Starts With $usn2)] As `4esn` Skip Count(*)['s_str'..`1esn`] Limit Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])[..[True =~@usn5 =~$`1esn`]][..Any(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`)] Union All Delete Extract(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|Null Starts With $`7esn` Starts With `2esn`) =~{`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0},0x0 Starts With $`7esn` Starts With `2esn` Detach Delete 12e12[$`5esn`][07],0.e0[9e0][0e0]"), - octest:ct_string("Return *,$@usn6[..$usn1] As _usn3 Skip $@usn6 Is Null Limit `3esn` =~$`5esn` =~12 Return Distinct 1.e1 =~$_usn4 As usn2,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,{_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] Order By $12 Starts With #usn7 Asc,$0[$0..] Descending Union Match `3esn`=((:#usn8{_usn4:\"d_str\"[Count ( * )],`2esn`:9e0 Ends With $`7esn`})) Remove All(`4esn` In 's_str'[12..'s_str'] Where $`8esn`[..$``]).`7esn`!,usn2(07[$999]).`4esn` Merge (({@usn6:0X0123456789ABCDEF[..usn1]})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn3{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})-[usn1*]->(:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})) On Match Set `4esn` =.e12[.12..][_usn4..] On Match Set All(`6esn` In 0X7 =~`` Where `7esn`[...e1][..\"d_str\"]).`5esn` =None(usn2 In 1000 Contains 0.e0 Where $usn1[..$`6esn`][..Null]) Starts With Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]|$`1esn` Starts With $999) Union Create @usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})) Optional Match _usn4=(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Where @usn6[..0xabc][..$#usn7]"), - octest:ct_string("Optional Match `4esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}),(((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Where $_usn3[..Count ( * )][..@usn5] Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..]"), - octest:ct_string("Detach Delete ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] Return $usn1[0.12..]['s_str'..] As `1esn`,(`4esn` :`8esn`{_usn4:0 Is Null Is Null})-[`6esn`:`8esn`|:usn1$_usn3]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Ends With Filter(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999) Ends With [`4esn` In `6esn`[1e1..] Where 07[12e12]] Order By Count ( * )[..999] Asc Skip (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})<-[`6esn`?:@usn6 *999..]->(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})[Filter(_usn4 In usn1 Contains False Contains `` Where 123456789 Is Null)..] Union All Detach Delete 12e12[0.e0..True][0.12..0.0]"), - octest:ct_string("Return *,(@usn6 {_usn4:$_usn4[#usn8..]})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)[Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null)..] Skip $`7esn` Ends With 07 Ends With 07 Optional Match _usn3=(($999)),``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)) Where 9e0[True..`1esn`] Create ((`7esn` :`2esn`:`3esn`{@usn6:9e0 Ends With $`7esn`})),`6esn`=((`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})) Union Unwind 0X0123456789ABCDEF Contains 12.e12 Contains 999 As _usn4 With *,#usn7 Starts With .e12 Starts With $`7esn` As usn2,{`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) As @usn5 Limit Extract(`4esn` In 's_str'[12..'s_str'] Where 00 Starts With _usn3|$`1esn` Is Null Is Null) Is Null Is Null Union Return *,0.12[Count(*)..],$@usn5 =~$`` =~$usn2 As #usn8 Order By Single(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`) Is Null Desc Skip Single(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7])[None(`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789])..@usn6(Distinct True =~@usn5 =~$`1esn`,.12 Starts With $usn2)]"), - octest:ct_string("Unwind `3esn`(`7esn` Starts With $usn2 Starts With .e0,$_usn3 =~`7esn` =~$_usn4)[[$`2esn`[123456789..][00..],Count ( * )[@usn6..0x0]]..][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0)..] As usn1 Union All Delete `6esn`[False..0.0][12e12..$usn2] Union All Detach Delete $`3esn` Is Not Null Is Not Null,$1000 Ends With 1e1 Ends With 123.654"), - octest:ct_string("With Distinct *,$7[12.e12..] As #usn7,`4esn`[$#usn7] As `1esn` Skip #usn7[..$1000][..01] Limit {`8esn`:@usn5[..True][..0X7],`1esn`:`1esn` Contains Count ( * )}[{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)] Where `7esn`[...e1][..\"d_str\"] Union All Merge (({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) On Match Set #usn7($123456789 Contains 01 Contains 0.12).usn2! =.e12 =~0.0 =~9e0,All(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1).`4esn` =$999[12.0..],`8esn`+=Filter(_usn4 In usn1 Contains False Contains `` Where 9e0 =~$`5esn`) =~``($`4esn`[usn1..$#usn8][12.0..`3esn`]) =~Single(usn2 In 1000 Contains 0.e0) On Match Set `` =None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..],#usn7($`8esn`[$``..$7][$1000..$`7esn`],`2esn` In 7 In usn2).`6esn`? =$_usn4['s_str'..],`4esn`+=$`7esn` Ends With $usn2 Remove [`6esn`[1e1..]].@usn6!,[$_usn3[..Count ( * )][..@usn5]].@usn6! With Distinct None(usn2 In 1000 Contains 0.e0 Where $usn1[..$`6esn`][..Null]) Starts With Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]|$`1esn` Starts With $999) As #usn7,$12[..7][..07] As #usn8,$`2esn`[``..] As `3esn` Order By 9e1 Is Not Null Is Not Null Asc,[@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0] Is Null Descending Union All Delete Extract(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|Null Starts With $`7esn` Starts With `2esn`) =~{`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0},$`1esn` Is Null,9e0 Starts With `6esn` Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null})-[#usn7:`1esn` *07..]->(#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`}))"), - octest:ct_string("Unwind 7 In @usn5 In $`4esn` As `5esn` Union With Distinct *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `2esn` Union All Return All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null,0xabc[$@usn5] As `7esn`,.e0[usn2..] As _usn3 Skip 0x0 In `8esn` In 999"), - octest:ct_string("With *,({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) Order By [0 Is Null Is Null][..[_usn3 =~00,9e1 Is Null Is Null]] Descending,Single(`4esn` In `6esn`['s_str'..][010..] Where 12.0 Contains 0.e0)[..Any(`4esn` In 's_str'[12..'s_str'] Where Count(*)[`7esn`..$12])][..Extract(@usn5 In .12[#usn7][$`8esn`] Where 01234567 =~usn1)] Ascending,`8esn` In $@usn5 Asc Limit $#usn8 Is Null Create @usn6=((:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})-[?:`4esn`|:`7esn`]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})),#usn7=(@usn5 {usn2:$999[12.0..]})<-[usn1]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[_usn3?:``|:_usn4]->(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}) Remove (_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`).usn2,[`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]|12 Is Null Is Null].#usn8? Union All Remove ({@usn6:0X7 In $999 In $``})-[`7esn`{usn1:0 Is Not Null}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`}).@usn6,{`5esn`:$`5esn`[$123456789][`1esn`],#usn7:@usn5 In 0X0123456789ABCDEF}.@usn6! Unwind 0.0 Is Null Is Null As usn1 Union All Remove (_usn3 {usn1:_usn3 Contains @usn6 Contains 1.e1})<-[`` *0xabc]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1})<-[_usn3?:`7esn`|`2esn` *010]-(#usn8 :`4esn`:#usn8).@usn5?,{usn1:$123456789[..0.12][..#usn7]}.`4esn`?,Any(`4esn` In 's_str'[12..'s_str'] Where 9e1 Contains $`3esn` Contains 01234567).`8esn`! Unwind usn2[$`7esn`..010][00..``] As _usn3"), - octest:ct_string("Delete 12 Is Null Is Null,Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}),0e0[`2esn`..010] Return Count ( * ) Ends With 1000 Ends With 12 As _usn4,False[..12.e12] Order By $@usn6 Contains 07 Contains 0.e0 Asc,$1000 Is Not Null Is Not Null Asc,[$`3esn` Starts With 01234567 Starts With $1000] Starts With `4esn` Starts With [$`2esn`[..7][..$usn1]] Desc Skip usn1 Is Not Null Limit Count ( * ) Contains 999 Contains $`8esn` Unwind `2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As `4esn` Union Remove ({`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[ *..0x0{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}]-(`5esn` {`8esn`:0.0[12...12]}).``!,Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null).``!,usn1:`8esn` Create ((:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})) Match `6esn`=(`6esn` :`5esn`),(@usn6 :`5esn`{_usn3:010[$`8esn`..][0..],_usn3:`2esn` Is Not Null Is Not Null}) Where 0x0"), - octest:ct_string("Merge ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[ *010{@usn5:Null Is Null Is Null}]-({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]})) Match (@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0}) Union All Return $`5esn` Starts With _usn3 Starts With @usn5,9e0 Is Null Is Null,$999[..`1esn`] As `8esn` Order By usn2[$`1esn`...0] Descending,None(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00)[[@usn6 Starts With `7esn` Starts With Null]][{`1esn`:07[`6esn`..][`5esn`..],usn1:$usn2[False..`7esn`][`7esn`.._usn3]}] Ascending,01234567 Ends With 12.0 Ends With 0X7 Ascending Remove (:`7esn`)<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})._usn4!,(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[`2esn` *..7]-(_usn3 {usn1:_usn3 Contains @usn6 Contains 1.e1}).`1esn`?,($1000)<-[`4esn`:#usn8]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}).@usn5? Unwind All(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[..(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[`` *0xabc]->(`7esn` :#usn7{`6esn`:$`3esn` Contains 0X0123456789ABCDEF Contains 00,`1esn`:1000[123.654..9e12][1000.._usn3]})][..{`3esn`:$1000[.e0..]}] As `2esn`"), - octest:ct_string("Create (`5esn` {_usn4:0X7 =~``}),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null}))"), - octest:ct_string("Unwind #usn8 Is Not Null As usn2 Match #usn8=(usn1 :`4esn`:#usn8) Where 00[``..][$`4esn`..] Create `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Union Remove None(`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]).`2esn`!,{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}.`6esn`?,usn2:#usn8 Union Return Distinct (_usn3 :`6esn`:`7esn`{usn1:$_usn3[9e1][$_usn4],`8esn`:123456789 =~_usn4 =~$0})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-({`1esn`:@usn6}) In _usn3(0x0[0X7..][usn1..]) In None(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str') As _usn4 Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending Skip 07[12][$`6esn`] Remove ({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})-[#usn8?]-(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7}).@usn6?,{`3esn`:`4esn`[7..][1000..],usn2:123456789 Starts With `2esn` Starts With 9e12}.`8esn`!,@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12).`5esn`! Create ((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})),#usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}))"), - octest:ct_string("Create `4esn`=((:`7esn`{``:$`1esn` Starts With @usn6})),@usn5=((@usn6 :#usn7{@usn5:Null Is Null Is Null})<-[``?:@usn5|`8esn`]->(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})) Merge `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Remove Extract(_usn4 In usn1 Contains False Contains `` Where $12 Contains 123.654 Contains `8esn`|`5esn` In 12).#usn8?,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`7esn` Ends With $`2esn` Ends With $usn1|0[0.12..]].@usn5? Union All Return 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Order By [usn1 In 00 Starts With _usn3 Where 00][#usn8(Distinct $`2esn`[$123456789..$`1esn`][0Xa..$``],@usn6[`5esn`..$`3esn`])..['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`]] Asc,999 Contains `7esn` Desc,Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`] Ascending Skip 0e0 Is Null Is Null Remove [`2esn`[$`1esn`..][$_usn3..]].`4esn`?,(@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``}).`8esn`,[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]].`3esn` Union All Remove [@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999|01234567 Ends With 0x0]._usn4?,[0Xa Is Not Null Is Not Null,`3esn` =~0.0 =~$``,123456789 Starts With 12.0 Starts With .e12]._usn4! Create (`6esn` :`5esn`)<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6),_usn3=(($999))"), - octest:ct_string("Unwind $usn2 Is Not Null Is Not Null As `8esn` Delete [_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]] Ends With [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]],Single(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8)[{_usn3:$0 Ends With $#usn7 Ends With .12}][[12.0[0Xa][00],.0[01][$12]]] Union All Create (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}))),`4esn`=((`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})) Return $`6esn` =~$#usn8 As #usn8 Order By (#usn7 :#usn8)-[`6esn`:`4esn`|:`7esn` *..0x0]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})[Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])][Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])] Descending Limit Null Contains 9e1 Union Optional Match @usn6=((:``{`5esn`:.e1 In $@usn6 In 999})),`4esn`=((`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) With `6esn`['s_str'..][010..],$`4esn` Contains 0Xa Where 0X0123456789ABCDEF In $1000 In $`3esn` With `` Starts With 12,[@usn5 In .12[#usn7][$`8esn`] Where $_usn4[12e12][`4esn`]][`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])..``(False In `3esn`)][[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]]..Filter(@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12])] As `4esn`,Count(*)[`7esn`..$12] As `` Skip 0X7[..12e12] Where 9e12[..$``][..`6esn`]"), - octest:ct_string("Unwind _usn3 In $#usn8 In usn1 As _usn4 With Distinct 0 =~12.e12 =~$``,0.12 Contains .e1 As `6esn`,01 Contains $`7esn` Contains 9e0 Order By Count ( * )[..1e1] Asc,_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) Asc,[0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] Ascending Skip Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] Limit _usn3(0x0[0X7..][usn1..])[..Any(#usn8 In $`5esn` Is Null Is Null Where 999[$`8esn`])][..{#usn7:False[`2esn`..#usn8]}] Return Distinct *,Count ( * ) In 010 As `1esn` Limit $@usn5 =~07 =~True Union All Remove Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|Count(*)[.e0.._usn4]).`8esn`?,Single(#usn8 In $`5esn` Is Null Is Null Where .12[`1esn`..][$`3esn`..]).``!,count(Distinct `6esn` =~01234567 =~0Xa).`8esn`! Unwind `8esn`[$``] As `3esn` With Distinct [`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As `8esn`,$`4esn`[9e1..][0..],$`2esn`[``..] Order By $@usn6 Contains 0 Contains $`2esn` Descending,_usn3[9e1..$`4esn`] Descending Limit 00 In 0.12 In `5esn` Where $`7esn`[$usn1..][0.0..] Union All Create (((`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})<-[?:`7esn`|`2esn`]-(:`6esn`:`7esn`{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}))) Remove {`7esn`:`5esn`[`1esn`]}.#usn7?,{#usn7:$usn2 In 9e0 In $7}.@usn6,(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)}).usn1!"), - octest:ct_string("Merge ((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[?:usn1|`3esn`{#usn8:1000[..$`6esn`][..0xabc]}]->(:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[``?:usn1|`3esn`]->(:@usn5{#usn7:1e1[@usn5..]})) Detach Delete 07 In Count ( * ) In \"d_str\",Null Is Not Null Return 's_str'[..0.0][..$`4esn`] As `2esn`,#usn7 Contains .0 Contains .e1,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Skip `6esn` Starts With $usn2 Starts With 0.0 Limit 9e1 Contains $`3esn` Contains 01234567"), - octest:ct_string("Match @usn5=(:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})-[`1esn`:usn2|#usn8 *1000..]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}) Remove [`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null].`8esn`? Remove Single(#usn8 In $`5esn` Is Null Is Null Where $123456789[0.0..]).#usn7?,Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]).@usn6! Union All Detach Delete 123.654[12.e12..1e1],`6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null) Unwind `3esn`(`7esn` Starts With $usn2 Starts With .e0,$_usn3 =~`7esn` =~$_usn4)[[$`2esn`[123456789..][00..],Count ( * )[@usn6..0x0]]..][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0)..] As usn1 Remove Extract(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`).`6esn`?,Extract(@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null|@usn5 Starts With 12e12 Starts With @usn5).`2esn`?,[Count ( * )[Count ( * )..12e12][usn1..1000],12e12[$`5esn`][07],$_usn3[9e1][$_usn4]]._usn4 Union All Remove `3esn`(Distinct 0X7 In $999 In $``,$0 Is Not Null).`7esn`?,[@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999|010 Is Null Is Null]._usn3! With *,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn` Skip 1e1[..False] Limit 12e12[$`5esn`][07] Remove [01234567[Null..0.e0][Count(*)..$#usn8],Count(*)['s_str'..`1esn`]].`7esn`?,Any(usn1 In 0x0[..`4esn`] Where 0.12 Contains $12 Contains `8esn`).#usn7!"), - octest:ct_string("With .e0[usn2..][12..] As `1esn`,12.e12[...0][..0x0],`` Contains 12 Contains True As `6esn` Skip `6esn`[0X7..][0x0..] Limit 9e1 Starts With `1esn` Starts With 0Xa Where $999[$1000] Optional Match `5esn`=(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})<-[?:`7esn`|`2esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}]->(usn1 :#usn8))),#usn8=(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Where 0 Contains 12e12 Union Delete (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]),[usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..],{_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] Create #usn8=(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}) Return Distinct *,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}) Skip ({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}) =~None(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Union All Unwind 00[.e1..] As `6esn` Unwind #usn7[$123456789] As `8esn` Merge `2esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7}))"), - octest:ct_string("Optional Match ((`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(usn1 :_usn3)) Union Return None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..] Remove Extract(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`).usn1!,_usn4(Distinct `7esn` Starts With $usn2 Starts With .e0).`5esn`,``:#usn7"), - octest:ct_string("Return *,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn`,@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn` Skip {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]}"), - octest:ct_string("Remove None(usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null).`6esn`,Extract(_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`|9e1 Starts With `1esn` Starts With 0Xa)._usn4?,(usn2 :`3esn`:`1esn`)-[ *..7]-(usn1 :`4esn`:#usn8)-[?:`3esn`|:`4esn`]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).@usn5? Optional Match usn2=(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}))) Where 0X0123456789ABCDEF In 01234567"), - octest:ct_string("Return Distinct *,`1esn` Contains Count ( * ) As _usn3 Skip $`3esn` =~$999 =~$`3esn` With Distinct [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}),$_usn4[`3esn`][0] As `1esn`,`6esn` Starts With $`5esn` As @usn5 Order By .0 Is Null Is Null Ascending,`1esn`(Distinct $@usn5[#usn8..][$`1esn`..],#usn7 Ends With `4esn` Ends With @usn5)[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|usn1[Count ( * )..$usn1]]][{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}] Asc Limit True Is Not Null Where 0.0 =~0X7 =~#usn7"), - octest:ct_string("With [#usn8 In $`5esn` Is Null Is Null][Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where #usn7[..$1000][..01])..][[@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]]..],(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[usn1?:`8esn`|:usn1]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Is Null Is Null As #usn7,1e1[..#usn8][..'s_str'] As #usn8 Order By `3esn`[$123456789][$#usn7] Ascending,{@usn6:12.0[``],_usn4:$`3esn` Contains 0X0123456789ABCDEF Contains 00} Ends With Single(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Ends With Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999|12.0[``]) Asc Skip (:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0}) Starts With Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) Starts With [12.0 In 1000 In _usn4] Limit 00[01234567][False] Return 7[$`4esn`..123456789] As `2esn` Limit 1000 Ends With 1000 Ends With $`4esn` Union With Distinct \"d_str\",0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',$@usn5[01] Order By 01234567 Starts With $_usn4 Desc,0.12 Contains .e1 Ascending,0x0 =~_usn4 Descending Skip [usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]] Contains None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]) Contains Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) Detach Delete 12[..0.0][..#usn7] Detach Delete 999[$`8esn`] Union Create ``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)),`2esn`=(((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) Create `4esn`=((:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})),((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) Return Distinct *,12 Is Null Is Null As #usn7,$1000 Is Not Null Is Not Null Skip (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)[Filter(@usn6 In @usn5 In $`6esn` Where $999[$1000])..][#usn7($`8esn`[``..][123.654..],12.e12 Contains `5esn`)..]"), - octest:ct_string("With Distinct $@usn6 Starts With usn2 Starts With usn2,None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]],$`7esn` Ends With $usn2 As `5esn` Order By $12[01..][1.e1..] Descending,0e0 Starts With .e12 Ascending Where 12 Ends With .e12 Ends With $7 Create @usn6=(((@usn6 :`5esn`{``:.e1 In $@usn6 In 999,`8esn`:_usn3 Is Null Is Null})<-[$#usn8]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})-[`6esn`? *0Xa{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}]-(:`6esn`:`7esn`{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1}))) With Distinct 1000[123.654..9e12][1000.._usn3],Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) As _usn4,``[$`3esn`][01234567] Order By {`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00} Starts With Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12) Desc,9e0 Ends With $`7esn` Ascending,`1esn`(Distinct Count(*)[..`3esn`]) Starts With $0 Ascending Limit .12[`1esn`..][$`3esn`..] Where $0[01234567..00][$`2esn`..$@usn6] Union Optional Match (((usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1)<-[@usn5:#usn8{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(#usn8 :_usn3))),((:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[`2esn`:@usn5|`8esn`]->(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7})) Where .e1 Starts With 0.0 Starts With `6esn` Union Detach Delete $`7esn` In $7 Unwind 0x0[$`3esn`] As _usn4"), - octest:ct_string("Return *,0 Is Not Null Is Not Null,[@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12]][{@usn6:.12 Starts With 0Xa}..(`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})] Order By (`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) Desc Limit .e12[..0.e0][..$`1esn`] Union Create `3esn`=((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})),(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}) Optional Match `5esn`=(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})<-[?:`7esn`|`2esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}]->(usn1 :#usn8))),#usn8=(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Where 0 Contains 12e12"), - octest:ct_string("Unwind \"d_str\"[$`7esn`][$1000] As `5esn` Optional Match `5esn`=(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}),`7esn`=(({#usn7:False[`2esn`..#usn8]})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})) Create ((:`6esn`:`7esn`{_usn4:12[0X7..@usn6],_usn3:123456789 In $usn2 In `6esn`})<-[#usn7?:_usn3|:`4esn` *00..]->(:`6esn`:`7esn`{_usn3:\"d_str\" Is Null Is Null})<-[@usn6]->(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`}))"), - octest:ct_string("With *,All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12) Starts With Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Contains .0 Contains .e1) As usn2 Order By All(_usn4 In usn1 Contains False Contains `` Where $`4esn`[$`2esn`..])[..Single(usn1 In $123456789 Contains usn2 Where $usn1[0.12..]['s_str'..])][..``(Distinct `1esn`[0e0..])] Asc,`4esn` =~$`3esn` =~$123456789 Ascending,$123456789[False.._usn3] Desc Skip 7[..0X7][..'s_str'] Where $123456789 Contains 01 Contains 0.12 Unwind 999 Contains `7esn` As `7esn` With Distinct Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As `5esn` Where _usn3 In .e1 In $12 Union All Match #usn8=((`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[:@usn6 *0X0123456789ABCDEF..{_usn3:`7esn` Ends With $usn2 Ends With 999}]-(`2esn` :_usn3)),(({``:12 Is Null Is Null})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)})) Remove [$`5esn`[False],9e1 Contains $`3esn` Contains 01234567,`5esn`[Count ( * )..][\"d_str\"..]].@usn5!,`3esn`:_usn4:usn1,[usn1 In 00 Starts With _usn3].#usn8? Union All Detach Delete 123.654[@usn5] Merge usn2=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) On Create Set None(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0).`4esn`! =0[usn2..],[@usn6[$`3esn`]].`4esn` =01 In _usn3 In 12,`1esn`+=123456789 =~usn1 Unwind `7esn`(0.0[1000..][.e1..],$@usn5 Contains 01)[Any(usn1 In 0x0[..`4esn`] Where 0X7[.e12..01234567])][[$@usn6 Contains 07 Contains 0.e0,`5esn` In 12]] As `8esn`"), - octest:ct_string("Merge @usn5=(`3esn` :`8esn`{usn1:`2esn`[$`3esn`..],`6esn`:$12[..``][..$7]})-[@usn5?:``|:_usn4]-(`8esn` :#usn8)<-[?:``|:_usn4]-({`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12}) On Create Set usn2:usn1,None(_usn4 In usn1 Contains False Contains `` Where .12 In $999 In `5esn`).usn2 =9e0 In 01234567,`8esn` =$@usn5 Ends With 0X0123456789ABCDEF On Create Set #usn8:_usn4:usn1,[0 Is Not Null Is Not Null].usn2! =(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] With Distinct 12.e12 Contains $`5esn` As `` Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Limit All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Where False In $`7esn` In .0 Union All Remove All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null).@usn5,`8esn`:_usn3,#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..]).`7esn`! Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..]"), - octest:ct_string("Match `2esn`=((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Where 9e12[@usn6..$``][#usn8..Count ( * )] Union Create `2esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}),(#usn7 :@usn5)<-[@usn5*]->({``:$1000 Is Null Is Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(`7esn` :`2esn`:`3esn`) Merge `4esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Union All Detach Delete 123.654[@usn5] Merge usn2=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) On Create Set None(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0).`4esn`! =0[usn2..],[@usn6[$`3esn`]].`4esn` =01 In _usn3 In 12,`1esn`+=123456789 =~usn1 Unwind `7esn`(0.0[1000..][.e1..],$@usn5 Contains 01)[Any(usn1 In 0x0[..`4esn`] Where 0X7[.e12..01234567])][[$@usn6 Contains 07 Contains 0.e0,`5esn` In 12]] As `8esn`"), - octest:ct_string("Optional Match (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Where $123456789 In Count(*) In .e1 With Distinct *,00 In 1e1 As `7esn`,0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Skip 7 In @usn5 In $`4esn` Limit {`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]] Where `3esn` =~0.0 =~$`` Merge usn1=(`3esn` :``) On Match Set All(`6esn` In 0X7 =~`` Where 0X7[..12e12])._usn4 =Null Starts With $`7esn` Starts With `2esn`,`5esn`+=999 Contains Count ( * ) Contains 123.654,usn1+=usn1[$`3esn`..$999][True..False]"), - octest:ct_string("Merge `4esn`=({`8esn`:0X7 In 's_str' In $`1esn`}) Match @usn6=(((@usn6 :`5esn`{``:.e1 In $@usn6 In 999,`8esn`:_usn3 Is Null Is Null})<-[$#usn8]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})-[`6esn`? *0Xa{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}]-(:`6esn`:`7esn`{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1}))) Remove {`3esn`:$`5esn` In `2esn` In .0,``:0e0 Is Null Is Null}.`1esn`"), - octest:ct_string("With Distinct `2esn` Contains $999 As #usn7,$123456789[False.._usn3] As `1esn` Order By (usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Ends With [$`8esn` =~$usn2,0X0123456789ABCDEF[..usn1],`` In `6esn`] Descending Skip 0X7[..12e12] Merge (:#usn7) Union All Match `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Where $@usn6[..$usn1] Match `4esn`=((#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) Where `` Starts With @usn5"), - octest:ct_string("Remove Extract(`4esn` In $`8esn` Starts With 1000 Where `5esn` In 12|010 Contains 0X0123456789ABCDEF).`2esn`,{#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}.`2esn`! Return *,({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn`"), - octest:ct_string("With [$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] Order By .e12 =~0.0 =~9e0 Desc,010 =~$usn2 =~1e1 Desc,#usn8(0X7 In 's_str' In $`1esn`,$0 Is Not Null)[usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])] Descending Where .0 Is Null Is Null Detach Delete 0xabc Contains Null Contains 9e12,.12 Starts With 0Xa,`6esn` In 1000 In 01234567 Union Remove None(usn1 In 00 Starts With _usn3).@usn6?,#usn7:_usn3 With 07[07] Skip $`4esn` Contains 0Xa Limit 00[.e0..9e1] Create ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) Union All Create `7esn`=(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}),(((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Unwind 00[.e1..] As `6esn`"), - octest:ct_string("Unwind 0[0.12..] As _usn4 Union Remove None(_usn4 In usn1 Contains False Contains `` Where $`8esn`[$``..$7][$1000..$`7esn`])._usn3?,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`).`3esn`? Create #usn8=((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Union Unwind Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) As usn2 Optional Match `1esn`=((usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) Where _usn4 Starts With 0X7 Merge usn1=(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(usn1 :#usn8)<-[ *..0x0{`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) On Match Set `2esn`+=123.654 In \"d_str\" In $_usn3"), - octest:ct_string("Return Distinct .12[#usn7][$`8esn`],12 Ends With 07 Ends With @usn6 As usn1 Order By $999[..`1esn`] Ascending,Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending,[$`8esn` =~$usn2][Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..] Asc With Distinct `8esn`[_usn3..$#usn7],({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn` Where $`1esn` Is Null Return Distinct $`1esn` Starts With `8esn` Starts With $0,`` Is Not Null Is Not Null As @usn6,$123456789[$`2esn`][True] As `7esn` Skip {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7) Limit False Ends With $`8esn` Union All With Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] As @usn5,12 Is Null Is Null As #usn7 Limit 0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Create `6esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Union All Delete `6esn`[False..0.0][12e12..$usn2]"), - octest:ct_string("Unwind 0 Starts With `6esn` Starts With 0X0123456789ABCDEF As @usn6 Return *,01234567 Is Null Is Null Order By {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}[..[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]]] Ascending Skip 010 =~$usn2 =~1e1 Union All With Distinct 0x0 In `8esn` In 999,``[$`3esn`][$`2esn`],01234567 Ends With 12.0 Ends With 0X7 Order By Count ( * )[..usn1][..12.e12] Asc,$usn2 Is Not Null Is Not Null Descending Skip `3esn`(Distinct $_usn3[Null],12[..True][..$`4esn`]) Is Null Is Null Detach Delete _usn3 Ends With 12e12 Ends With .e0,({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}) =~None(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Unwind $123456789 In Count(*) In .e1 As usn1"), - octest:ct_string("Unwind $`1esn` Ends With _usn4 Ends With `3esn` As `8esn` Merge (`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(usn1 :#usn8)<-[ *..0x0{`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) On Create Set `6esn` =$@usn5[Count ( * )] On Create Set Single(usn1 In 00 Starts With _usn3 Where $`7esn` Ends With 07 Ends With 07).`6esn`? =Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789},@usn5 =[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0])],[usn1 In 00 Starts With _usn3 Where 12 Ends With .e12 Ends With $7|_usn3 =~00].#usn7! =Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null Union All Return Distinct 9e0 Starts With `6esn`,9e1['s_str'..1e1] As #usn7 Limit `1esn` Contains Count ( * ) Unwind $`1esn` =~$`1esn` =~#usn7 As `4esn` Merge `4esn`=(`3esn` {_usn3:@usn6 Contains _usn4 Contains $`4esn`})<-[`7esn` *..0x0]-(@usn5 :usn1)<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) Union All Match ((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})),((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})) Where @usn6 Contains .e1 Contains $`4esn`"), - octest:ct_string("Merge `4esn`=(`6esn` :#usn8)-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]})-[:`4esn`|:`7esn`{`1esn`:123.654 In \"d_str\" In $_usn3}]-(`1esn` :`4esn`:#usn8{_usn4:$_usn4[#usn8..]}) Union Optional Match usn2=(((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),#usn7=(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))) Where $_usn4[`3esn`][0] Create (((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]})))"), - octest:ct_string("With Distinct All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null,0xabc[$@usn5] As `7esn`,.e0[usn2..] As _usn3 Order By False[..12.e12] Descending Skip [\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Limit 7 In @usn5 In $`4esn` Where 12e12 Starts With $123456789 Starts With 12.0 Detach Delete 010 Starts With `7esn` Starts With 9e1 With Distinct *,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Order By .e0 Contains 01234567 Descending,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Desc,'s_str' Starts With 1000 Starts With #usn8 Descending Where 123456789 =~_usn4 =~$0 Union All Detach Delete usn1 Contains $`` Union Remove Extract(usn1 In 00 Starts With _usn3 Where $`3esn` =~Null|12.e12[...0][..0x0]).`2esn`?,[`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn` Starts With $`` Starts With $#usn7|$`3esn` Contains 0X0123456789ABCDEF Contains 00].usn1! Merge (((@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]-(usn1 :`3esn`:`1esn`))) On Create Set `7esn` =$`6esn` Is Not Null Is Not Null"), - octest:ct_string("Detach Delete Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] Remove @usn5:@usn5,Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`]).@usn5,usn2:@usn6:`7esn` Return @usn5[..True][..0X7] As `7esn`,{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7} Contains {`5esn`:$7[.12]} Contains Extract(usn1 In 00 Starts With _usn3 Where 07 Contains #usn8 Contains $_usn3|`2esn`[$`1esn`..][$_usn3..]) Order By 0X0123456789ABCDEF[..usn1] Descending Skip `3esn`[$123456789][$#usn7] Union Create ((`7esn` :`2esn`:`3esn`{@usn6:9e0 Ends With $`7esn`})),``=((`3esn` ))"), - octest:ct_string("Match ((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})),(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))) Unwind 07[1e1] As `1esn`"), - octest:ct_string("Match ``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}),(`` :usn1) Where 0.12 =~01 =~12 Merge (({@usn6:0X0123456789ABCDEF[..usn1]})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn3{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})-[usn1*]->(:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})) On Match Set `4esn` =.e12[.12..][_usn4..] On Match Set All(`6esn` In 0X7 =~`` Where `7esn`[...e1][..\"d_str\"]).`5esn` =None(usn2 In 1000 Contains 0.e0 Where $usn1[..$`6esn`][..Null]) Starts With Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]|$`1esn` Starts With $999) Remove (@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`6esn`,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]).usn2!,(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn`]->(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`1esn`! Union All Detach Delete _usn3[...e1]"), - octest:ct_string("Optional Match `8esn`=((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Where 0X0123456789ABCDEF[..usn1] Remove {usn1:0e0 Is Not Null Is Not Null}.@usn5,None(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True]).#usn7? Detach Delete Count(*)[_usn3..Count ( * )],0X7 In $@usn5 In 9e0,01234567 Is Null Is Null"), - octest:ct_string("Merge @usn6=((`6esn` :`7esn`)-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)<-[@usn5:`6esn` *0X0123456789ABCDEF..]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null})) On Match Set `4esn` =0x0[0.0][$_usn4] On Match Set #usn8+={`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}],(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0}).`3esn`! =07 In $7 In 12,[\"d_str\" =~`6esn` =~0Xa].`4esn`! =0.0 =~0X7 =~#usn7 Match `1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) Match (usn2 :#usn8{`3esn`:123.654[@usn5]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`}),((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[usn1?:`1esn` *0X0123456789ABCDEF..{usn2:$`4esn`[12.e12..][0.0..]}]-(#usn7 :`5esn`)) Where 1e1[..False] Union All Return 1000 Contains $#usn7 Contains `6esn`,All(@usn5 In $#usn8 Is Null Is Null Where 's_str'[..0.0][..$`4esn`]) Is Null Is Null Order By $123456789 Ends With .e1 Ascending Skip $`3esn` Contains 0X0123456789ABCDEF Contains 00 Limit $_usn3 =~$`3esn` =~0x0 Delete $usn2 In 9e0 In $7,[usn1 In 00 Starts With _usn3 Where 00][#usn8(Distinct $`2esn`[$123456789..$`1esn`][0Xa..$``],@usn6[`5esn`..$`3esn`])..['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`]],0xabc[12.e12..`1esn`] Delete 0e0[`2esn`..010],@usn6[`5esn`..$`3esn`],Count ( * )[..usn1][..12.e12]"), - octest:ct_string("Create #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) Unwind 07[..$_usn3] As #usn7 Unwind `3esn`(Distinct _usn4 Ends With 01 Ends With $`1esn`) Starts With [Count(*) In 01 In .0,`` Starts With 12,$_usn4[$`8esn`..][07..]] Starts With Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12 In $0 In Count(*)) As _usn3 Union Return *,0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str' Order By [`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) Descending,$123456789 Ends With .e0 Ascending,({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) Desc Skip 0X0123456789ABCDEF[.e0..$`4esn`] Remove {usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}.`4esn`,Single(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`).`8esn`? Create (:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}),((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ))"), - octest:ct_string("Create `4esn`=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})),(`7esn` :_usn4:usn1)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})-[`1esn`{`2esn`:.12 Starts With @usn5 Starts With $#usn8}]->(:usn1{`6esn`:1000 Contains 0.e0,`7esn`:$@usn6[..$#usn7][..12.e12]}) Create @usn5=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) Remove ``(9e0 Contains `8esn`).`1esn`,[$`1esn` Is Null Is Null,010 Contains 0X0123456789ABCDEF,9e1[0.e0..][#usn8..]].`` Union Create ((@usn6 :#usn7{@usn5:Null Is Null Is Null})) Remove None(usn1 In 0x0[..`4esn`] Where False[.e1..Null]).``,[.e0[..999][..0X7]].`5esn`? With Distinct 12e12[.12..] As #usn8,`4esn` Is Null,Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[{@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null}..] Skip $0[..07] Limit 999 Contains `7esn` Where $`2esn` Starts With .e0 Starts With 12.0 Union Delete `6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]),Extract(_usn4 In usn1 Contains False Contains `` Where $`4esn` Starts With 1e1|Count(*)['s_str'..`1esn`]) =~Extract(`4esn` In $`8esn` Starts With 1000|`7esn`[Null..][@usn5..]) =~(:`4esn`:#usn8)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ) Create @usn5=((#usn7 {#usn7:01234567[.12..7][1000..1.e1],``:@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})) Delete 12e12[1000..][0x0..]"), - octest:ct_string("Create usn1=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})),`4esn`=((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})) Optional Match #usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})),@usn5=(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})<-[`2esn` *12..0xabc{`6esn`:$123456789[0.0..],@usn5:999[$`6esn`]}]-(`7esn` {`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) Where @usn5[..True][..0X7] With Distinct Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] As @usn5,12 Is Null Is Null As #usn7 Limit 0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Where 12[..9e0][..999]"), - octest:ct_string("Detach Delete [#usn8 In $`5esn` Is Null Is Null Where 0.0[..12e12][..$0]][{`2esn`:.e1 In $@usn6 In 999,usn2:@usn5 Ends With $`3esn` Ends With 12e12}..] Optional Match ((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 )) Where `7esn`[1e1..07][0x0..Count ( * )] Union Delete 0e0[`2esn`..010],@usn6[`5esn`..$`3esn`],Count ( * )[..usn1][..12.e12] Remove [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1].usn1,None(@usn5 In .12[#usn7][$`8esn`] Where 123456789 Is Null).`1esn`?"), - octest:ct_string("Merge ({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[ *..0x0]->(#usn8 {usn2:7 Contains 9e1}) On Match Set usn1+=`4esn` Is Null Union All Return Distinct _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0),$`7esn` In 0.e0 In `4esn` As `2esn` Limit Any(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) Is Not Null Is Not Null Create `2esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}),`3esn`=(`4esn` {usn2:7 In 0xabc})<-[$#usn8]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}) With *,`7esn`[...e1][..\"d_str\"],12e12[0.e0..True][0.12..0.0] As #usn7 Order By 0xabc[12.e12..`1esn`] Ascending,12.e12 In $1000 Ascending,[`6esn` In 0X7 =~`` Where 0.12[Null..]] Is Null Is Null Ascending Limit Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1)[00..] Where 0.e0[..#usn8][..Null] Union Optional Match `5esn`=(({`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})-[#usn8?]-(:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1}))"), - octest:ct_string("With Distinct {@usn6:`7esn` In 999 In @usn6} Starts With Extract(usn1 In 0x0[..`4esn`] Where 0x0|07 Ends With 07) Starts With Filter(usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12),False Ends With $`8esn`,``[$`3esn`][$`2esn`] As usn1 Order By $`6esn` Is Null Is Null Desc Limit 999 In $_usn4 In 0X7 With *,[0Xa In .e1 In Count(*)][..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}][..Extract(`4esn` In `6esn`['s_str'..][010..] Where #usn8[$#usn8..])] As @usn6,_usn3 Ends With 0x0 Ends With 01234567 Order By Single(`4esn` In `6esn`['s_str'..][010..] Where 12.0 Contains 0.e0)[..Any(`4esn` In 's_str'[12..'s_str'] Where Count(*)[`7esn`..$12])][..Extract(@usn5 In .12[#usn7][$`8esn`] Where 01234567 =~usn1)] Ascending Skip `7esn` Ends With $usn2 Ends With 999 Unwind All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`3esn` =~$`7esn` =~False)[..[0xabc[..$`1esn`][..01],12 Ends With 01234567,$@usn6 Is Null Is Null]][..#usn7(Distinct $0[$#usn8..01234567],$7)] As _usn4"), - octest:ct_string("Match _usn4=(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(@usn6 ) Detach Delete 0x0 Is Not Null Is Not Null Union Create @usn5=(`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0}) Unwind 01234567[.12..7][1000..1.e1] As usn2"), - octest:ct_string("Create ``=(_usn4 :`4esn`:#usn8{@usn5:$_usn4[12e12][`4esn`],`4esn`:False In `3esn`})-[`6esn`:``|:_usn4 *..01]->(`5esn` :#usn7),((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Unwind Extract(usn2 In 1000 Contains 0.e0) Ends With Single(usn1 In 0x0[..`4esn`] Where 12.e12 Contains `5esn`) Ends With Single(usn1 In 00 Starts With _usn3 Where $0[01234567..00][$`2esn`..$@usn6]) As `1esn` Union Unwind 0.12 Contains $`2esn` Contains $_usn4 As @usn6 Merge `2esn`=(:usn1{`8esn`:usn1 Contains $``})-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1})-[ *010{@usn5:Null Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] Union All Create _usn3=((({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']})-[:usn2|#usn8*..]-(`5esn` :`7esn`))) Optional Match `8esn`=(($12)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)),(:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) Where 1e1[..#usn8][..'s_str']"), - octest:ct_string("With Distinct *,[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..] As @usn6,0x0[123456789] As _usn3 Order By Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]|$0 =~$usn1 =~9e1)[{``:\"d_str\",`1esn`:$1000 =~$`7esn`}] Descending Skip $`5esn` In `2esn` In .0 Where 9e12[0.0..12.e12] Unwind Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `4esn` With Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As `5esn` Where 010 Is Null Is Null Union All Merge `5esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) On Create Set `1esn`+=_usn4(Distinct `7esn` Starts With $usn2 Starts With .e0) =~`3esn`() =~#usn8(9e0 Ends With $`7esn`) Remove Filter(usn2 In 1000 Contains 0.e0 Where 12e12[$`5esn`][07])._usn4? Union Merge `2esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) On Create Set [@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where .e0[..999][..0X7]]._usn4 =(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) On Match Set Single(usn1 In 00 Starts With _usn3 Where $`7esn` Ends With 07 Ends With 07).`6esn`? =Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789},@usn5 =[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0])],[usn1 In 00 Starts With _usn3 Where 12 Ends With .e12 Ends With $7|_usn3 =~00].#usn7! =Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null Unwind 12e12[_usn3..][$@usn5..] As usn2"), - octest:ct_string("Unwind .12 =~.12 =~1e1 As `8esn` Union All Create `5esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Detach Delete $usn2 =~$_usn4 =~`5esn` Detach Delete Extract(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null) =~Any(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null) =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1],$7 Contains 0x0 Contains ``,[\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Union All Return $`2esn`[``..] As `3esn`,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As `3esn`,`7esn`[...e1][..\"d_str\"] Unwind _usn4 Starts With 0X7 As `4esn` Merge `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) On Create Set `5esn` =999[.e12][01],Extract(usn1 In 0x0[..`4esn`] Where @usn6[$`3esn`]).#usn8? =`1esn` In 999 In $#usn7,usn1 =12.e12[0e0..7] On Match Set `1esn`+=Null[0e0][12],Filter(usn1 In 0x0[..`4esn`] Where $`` Ends With 12e12).usn1! =Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)]"), - octest:ct_string("With Filter(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[[1e1[0.0],0 Contains 12e12,$123456789[..0x0][..`4esn`]]] As `3esn`,False[`2esn`..#usn8],00 Is Null Is Null Order By {`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,0.12 In $7 In 0 Desc Skip 9e12[0.0..12.e12] Limit $usn1[.e12..`8esn`][True..$@usn5] Return Distinct *,None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`) Is Null As @usn6,123456789 =~_usn4 =~$0 As usn1 Delete All(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True])[..[`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|_usn3 In .e1 In $12]][..{`2esn`:$usn1[1e1.._usn3][$@usn6..$#usn7]}],0.0[12...12]"), - octest:ct_string("Return Distinct *,01234567 Is Null Is Null Order By 0e0 =~Count(*) =~0Xa Descending Skip [$1000 Is Null Is Null] Is Null Limit Extract(@usn6 In @usn5 In $`6esn` Where $`5esn` Contains $@usn6|$0[7..][Null..])[[`6esn` In 0X7 =~`` Where 9e1[0.e0..][#usn8..]]] Optional Match `1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) Where $`3esn` =~$`7esn` =~False With *,`7esn`[...e1][..\"d_str\"],12e12[0.e0..True][0.12..0.0] As #usn7 Order By 0xabc[12.e12..`1esn`] Ascending,12.e12 In $1000 Ascending,[`6esn` In 0X7 =~`` Where 0.12[Null..]] Is Null Is Null Ascending Limit Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1)[00..] Where 0.e0[..#usn8][..Null] Union All Unwind (#usn7 :#usn8)-[`6esn`:`4esn`|:`7esn` *..0x0]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})[Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])][Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])] As `4esn` Union Merge ((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) On Create Set usn1+=Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Detach Delete $#usn7[...e12][..$7],({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]}) =~`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0) Create `8esn`=(:`8esn`)"), - octest:ct_string("Unwind 0Xa[0xabc..] As @usn5 Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)],$`4esn` Ends With 0Xa,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null With Distinct *,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn`,@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn` Skip {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]} Where .12 =~.12 =~1e1 Union With 12e12[.12..] As #usn8,`4esn` Is Null,Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[{@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null}..] Skip $0[..07] Limit 999 Contains `7esn` Where 12e12[0.e0][9e1] Detach Delete `1esn`(Distinct 0.0[999..],9e0 Ends With $`7esn`) Ends With (`7esn` {`8esn`:Count ( * ) =~Count(*)})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}) Ends With (#usn7 :`2esn`:`3esn`)<-[`2esn`?*..]->(:#usn8{`5esn`:0 Contains 12e12}),$`8esn` Starts With 1000,({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null Union Optional Match usn1=(((:_usn4:usn1)-[@usn5?:@usn6*..]-(`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:@usn6]-(_usn3 :`4esn`:#usn8{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]}))),(((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))) Where $usn1 In 1000 In $#usn7 Optional Match (@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0}) Where `7esn` Contains .0 Contains 9e12 Match `4esn`=(((`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[?{`4esn`:0.e0 Ends With 12 Ends With $7,@usn6:$``[_usn4..][`7esn`..]}]->(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]}))),((:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8}))"), - octest:ct_string("Return .0 Starts With `2esn` Starts With `6esn` As _usn4,_usn4[$`4esn`..] As `7esn`,\"d_str\"[Count ( * )] As `7esn` Limit 0.e0[123.654] Union Merge ``=((({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[usn2?]-(`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))) On Match Set `7esn`+=0.e0[`6esn`...e0][9e12...e12],`5esn` =0x0 Contains _usn4 Contains 123456789,`8esn` =0xabc Starts With _usn3 On Match Set #usn7:``,({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})<-[?:@usn5|`8esn` *..0X7]-(:usn1).`4esn` =`6esn` Starts With $`5esn`,[`6esn` In 0X7 =~`` Where 0.12[Null..]]._usn4 =Count ( * )[`3esn`..][`2esn`..] Remove [_usn3 Ends With 0x0 Ends With 01234567,9e0[$_usn3..0X7][7..$#usn8]].`6esn` With Distinct *,`3esn` =~`3esn` =~$`6esn` As `7esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 123456789[$#usn7..]) Contains [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1] Skip .12[..`6esn`][..\"d_str\"] Limit [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] Where @usn6[$`7esn`] Union All Return Distinct *,01234567 Starts With $_usn4 As `1esn`,Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789} Order By [@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Ascending,0.0[Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|_usn3 Ends With 12e12 Ends With .e0)][None(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5)..{@usn6:.12 Starts With 0Xa}] Asc Limit 0x0 Is Not Null Is Not Null Create (`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0}) Return Distinct *,[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As `7esn` Order By 00 Is Null Is Null Descending,$usn2 Starts With $`6esn` Starts With 0xabc Ascending,123456789 Starts With #usn7 Starts With `6esn` Asc Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`) Limit 0x0 Contains _usn4 Contains 123456789"), - octest:ct_string("Merge ((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)) On Create Set All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 9e12[usn2..7][.e1..$`7esn`])._usn3? =$`1esn` =~$`1esn` =~#usn7,`2esn`+={`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] On Create Set None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7).`2esn`! =.e1[..$`4esn`][.._usn4] Union All Delete 9e0[$_usn3..0X7][7..$#usn8],Extract(`4esn` In 's_str'[12..'s_str'] Where 00 Starts With _usn3|$`1esn` Is Null Is Null) Is Null Is Null,0.12 Is Null Is Null Detach Delete 010 Starts With `7esn` Starts With 9e1 Union All Delete $``[_usn4..][`7esn`..],{`1esn`:9e1[0.e0..][#usn8..]} Starts With Single(`4esn` In 's_str'[12..'s_str'] Where @usn5 In 0X0123456789ABCDEF) Starts With All(#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7),All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null Unwind All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12) Starts With Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Contains .0 Contains .e1) As ``"), - octest:ct_string("Optional Match usn2=(({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)-[@usn5{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8}]->(usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})),((`1esn` {_usn4:12.e12 Ends With 01 Ends With .e1})-[_usn4?:`6esn`]->(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]})-[_usn3?:#usn7|:_usn4 *010]->({`1esn`:@usn6})) Where `` In `6esn` Union Optional Match `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})),((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`1esn`{`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654}]->(`7esn` :`7esn`)) Delete `6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]),Extract(_usn4 In usn1 Contains False Contains `` Where $`4esn` Starts With 1e1|Count(*)['s_str'..`1esn`]) =~Extract(`4esn` In $`8esn` Starts With 1000|`7esn`[Null..][@usn5..]) =~(:`4esn`:#usn8)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ) Remove ({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}).`5esn`!,`8esn`:_usn4:usn1"), - octest:ct_string("Delete Count ( * )[.0..][$999..],_usn3[...e1],Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}) Return Distinct 0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str' Limit usn2[$`7esn`..010][00..``] With @usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Limit .12 Is Not Null Is Not Null"), - octest:ct_string("Delete $`2esn` Contains usn1 Contains `2esn`,`4esn`[7..][1000..] Unwind `` As `6esn` Union Create `8esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Merge usn2=((`5esn` :usn2:@usn6{`5esn`:0Xa In .e1 In Count(*)})) On Create Set `3esn`+=[_usn4[0xabc..]][..Extract(_usn4 In usn1 Contains False Contains `` Where 12[usn1][True])][..(_usn3 {`7esn`:usn1 Contains False Contains ``})<-[? *0..010]-(#usn8 :`4esn`:#usn8)]"), - octest:ct_string("Remove Single(usn1 In 00 Starts With _usn3 Where 999 Contains `7esn`).`6esn`? Detach Delete $_usn4[$`1esn`] Unwind `3esn` =~$`5esn` =~12 As `7esn`"), - octest:ct_string("Optional Match `1esn`=(((`` :@usn5)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn5:`8esn`|:usn1]-(#usn7 :`5esn`))),usn1=(_usn4 :`8esn`{`3esn`:False[.e1..Null],`3esn`:9e0 =~$`5esn`}) Union With Distinct `` Is Not Null Is Not Null As @usn6,True[Count(*)..][1e1..] Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `7esn` Starts With $usn2 Starts With .e0).`6esn`! Match `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Where 's_str'[12..'s_str'] Union Merge ((@usn6 :#usn7{@usn5:Null Is Null Is Null})) On Create Set `8esn` =Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`],`8esn`+=Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[usn2($#usn8 Is Null Is Null)..Extract(usn1 In 0x0[..`4esn`] Where 123456789 In $usn2 In `6esn`|@usn5[..True][..0X7])][(`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` )..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]] Return Distinct *,9e12[_usn3] As `8esn`,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn` Order By `6esn` Starts With $`5esn` Desc,$`7esn` Ends With 07 Ends With 07 Desc"), - octest:ct_string("Detach Delete Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null)[count(Distinct 0.12 Contains $12 Contains `8esn`)..[$`1esn` Is Null Is Null,9e1 In 01 In 999]],[True =~@usn5 =~$`1esn`] Contains Extract(`4esn` In `6esn`['s_str'..][010..] Where 123456789[$#usn7..]|12[`7esn`...0][0.12..``]) Contains Single(`4esn` In 's_str'[12..'s_str']) Unwind Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`] As `5esn` Merge `8esn`=(`4esn` {`3esn`:0X7[..12e12],`8esn`:False In 123456789 In $0})-[`4esn`?:`1esn`]->(:`2esn`:`3esn`{usn2:$`5esn` In False})<-[#usn7? *00..]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]}) On Match Set `2esn`+=0.0[999..] Union Merge ((({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999})<-[@usn6?:`6esn`*..]-(_usn3 :usn2:@usn6)-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6))) On Match Set `6esn` =(`4esn` :`8esn`{_usn4:0 Is Null Is Null})-[`6esn`:`8esn`|:usn1$_usn3]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Ends With Filter(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999) Ends With [`4esn` In `6esn`[1e1..] Where 07[12e12]],{_usn3:usn1 Contains $``}.`1esn`! =_usn3 Is Not Null Is Not Null"), - octest:ct_string("Merge usn2=((`3esn` :`4esn`:#usn8)<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})) On Match Set (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 =123.654 Contains `2esn`,`3esn` =Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`),{`6esn`:$_usn4[$`8esn`..][07..]}.@usn6! =`5esn`[.e1][0Xa] Union Create _usn3=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))),(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) With *,`3esn`[$`1esn`..] As usn2 Limit @usn6(Distinct Null[0e0][12])[..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]]][..`8esn`(010 =~`6esn`)] Where usn2[`3esn`][_usn3] Union All Unwind usn2[..$`3esn`] As `6esn`"), - octest:ct_string("Create ((`6esn` :`7esn`)),`4esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Order By 12e12[Count ( * )..][usn2..] Ascending,(`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Descending Detach Delete Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0},12 Ends With .e12 Ends With $7 Union With `3esn` Contains 0Xa As `6esn`,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,[usn1[..@usn5][...e0]][(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)] Union All Detach Delete [$1000 Is Null Is Null] Is Null,Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]|$`1esn` Starts With $999) =~[`` Starts With 12,$usn2 Is Not Null,123456789[`4esn`..][Count ( * )..]],[@usn6 In @usn5 In $`6esn` Where $999[$1000]|$7[.12]] In {`1esn`:$@usn6 Contains 07 Contains 0.e0} In (`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})"), - octest:ct_string("Unwind 12[0X7..@usn6] As `` Unwind Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[{@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null}..] As @usn6 Union Return *,(@usn6 {_usn4:$_usn4[#usn8..]})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)[Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null)..] Skip $`7esn` Ends With 07 Ends With 07 Optional Match _usn3=(($999)),``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)) Where 9e0[True..`1esn`] Create ((`7esn` :`2esn`:`3esn`{@usn6:9e0 Ends With $`7esn`})),`6esn`=((`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})) Union Detach Delete .e0[usn2..][12..]"), - octest:ct_string("Delete 999 Contains `7esn`"), - octest:ct_string("Unwind usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`]) Is Null As `3esn`"), - octest:ct_string("Optional Match `1esn`=((:`8esn`)-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`{#usn8:Null[0e0][12],`2esn`:`8esn` In $@usn5}]-({_usn3:999 In $_usn4 In 0X7,`1esn`:1e1 In $#usn8 In 12e12})) Where $_usn3 =~`7esn` =~$_usn4 Delete `7esn`($123456789 In Count(*) In .e1) Ends With Extract(@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|Count ( * )) Ends With Any(usn1 In 0x0[..`4esn`] Where False[.e1..Null]),usn2 Starts With `6esn` Starts With 12e12"), - octest:ct_string("Optional Match `1esn`=((:`8esn`)-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`{#usn8:Null[0e0][12],`2esn`:`8esn` In $@usn5}]-({_usn3:999 In $_usn4 In 0X7,`1esn`:1e1 In $#usn8 In 12e12})) Optional Match `3esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}),`5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Where 0e0 Remove {`7esn`:True[..'s_str'][..01]}.`1esn`!,`2esn`:@usn5,({`1esn`:@usn6})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1}).@usn5?"), - octest:ct_string("With Distinct *,7 Is Null Order By $12[01..][1.e1..] Ascending,0x0 =~_usn4 Desc Limit 12[`7esn`...0][0.12..``] Where $123456789 Ends With .e0 Union All Merge (:#usn7) On Match Set `8esn`+=123456789[1000],`1esn` =(@usn6 {_usn4:$_usn4[#usn8..]})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)[Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null)..],#usn8+=@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF On Create Set usn1+=$@usn6 In $`5esn` In $usn2 Union All Merge (`5esn` {_usn4:0X7 =~``})"), - octest:ct_string("Remove [#usn7 In 01234567[$`3esn`..] Where .12 Starts With @usn5 Starts With $#usn8|$`6esn`[$`1esn`][1000]].@usn6?,usn2($#usn8 Is Null Is Null)._usn4 Union All With *,123.654 Is Not Null Is Not Null Order By $123456789[$``][010] Desc,#usn8 Is Not Null Asc,$@usn5 Ends With 0X0123456789ABCDEF Desc Skip @usn6 Contains _usn4 Contains $`4esn` Where usn1[..@usn5][...e0]"), - octest:ct_string("Merge `4esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}) On Create Set `3esn`+=(:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]),{`6esn`:$`8esn`[``..][123.654..],``:999[$`6esn`]}.`5esn`? =$_usn4[$`8esn`..][07..] On Create Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] Union All Merge ((:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})) On Match Set [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]].`1esn` =9e12 =~01 =~$`7esn` On Match Set `8esn` =12 Ends With 01 Ends With 1e1 Return Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])[All(#usn7 In 01234567[$`3esn`..] Where Count(*)[.e0.._usn4])..][None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..])..],9e12 Contains $_usn3 As `2esn`,All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12) Starts With Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Contains .0 Contains .e1) As usn2 Order By 9e1[.12..] Asc,Extract(_usn4 In usn1 Contains False Contains `` Where $`4esn` Starts With 1e1|Count(*)['s_str'..`1esn`]) =~Extract(`4esn` In $`8esn` Starts With 1000|`7esn`[Null..][@usn5..]) =~(:`4esn`:#usn8)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ) Asc,Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[{@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null}..] Descending Skip 9e1[.12..] Detach Delete @usn5[..True][..0X7],Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]),`5esn` Ends With .e1 Ends With $_usn4 Union Remove `1esn`:`5esn`,{`5esn`:0X7[12]}.#usn8,Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])._usn3? Unwind 999 Contains `7esn` As @usn5 Create ((:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})<-[@usn6:`3esn`|:`4esn`*]->(`6esn` :`5esn`)),(({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(:_usn4:usn1))"), - octest:ct_string("Unwind 0x0 =~_usn4 As `4esn` Unwind `` Is Not Null As `` Union With Distinct *,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Order By .e0 Contains 01234567 Descending,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Desc,'s_str' Starts With 1000 Starts With #usn8 Descending Where 123456789 =~_usn4 =~$0 Union All With Distinct *,.e1 Starts With $`8esn`"), - octest:ct_string("Create `4esn`=((({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[usn2?]-(`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))) With Distinct *,\"d_str\" Order By $`3esn` Descending,[0[usn2..],7[12e12..$_usn4][9e1..True],`1esn` Contains Count ( * )][Extract(@usn5 In .12[#usn7][$`8esn`] Where Count ( * ))..][Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])..] Desc,1e1[..#usn8][..'s_str'] Descending Skip @usn5 Is Not Null Is Not Null Union All Merge #usn8=((:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[`2esn`? *0..010]->(usn2 :_usn3)-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]})) With 07[07] Skip $`4esn` Contains 0Xa Limit 00[.e0..9e1] Union All Unwind 07[`6esn`..][`5esn`..] As _usn3"), - octest:ct_string("With Distinct {usn1:'s_str'[12..'s_str'],#usn7:07[`6esn`..][`5esn`..]} As `1esn` Limit {`7esn`:.e0 Contains #usn7 Contains $#usn8}[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..None(`6esn` In 0X7 =~`` Where 12.e12['s_str'])][(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})..({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})] Merge #usn8=(({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({_usn3:$`1esn` Starts With @usn6})) Create usn2=(`4esn` {``:07,`3esn`:12e12[_usn3..][$@usn5..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)-[@usn5? *..7{usn2:12e12[$`5esn`][07],usn2:$0[..`8esn`]}]-(_usn4 :#usn8) Union All Optional Match (((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]-({usn1:0x0[0X7..][usn1..]}))),`1esn`=(((usn1 :`4esn`:#usn8)-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}))) Where _usn3 Is Null Is Null Delete \"d_str\" =~12.e12 =~07,Null[0.e0..0x0] Return *,.e0[..0X0123456789ABCDEF][...e12] As `6esn`,1000 In 0X0123456789ABCDEF In 01 Limit [usn1 In 00 Starts With _usn3 Where 00][#usn8(Distinct $`2esn`[$123456789..$`1esn`][0Xa..$``],@usn6[`5esn`..$`3esn`])..['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`]] Union All Return (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Order By 7 =~9e0 =~'s_str' Descending,0e0 Starts With .e12 Ascending Limit 9e1 In $@usn5 In \"d_str\" With Distinct 1000[123.654..9e12][1000.._usn3],count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null,$123456789 =~$#usn8 =~$#usn8 Order By $usn2 Is Not Null Is Not Null Ascending,Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Ascending Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7}))"), - octest:ct_string("Return Distinct 0Xa Is Not Null Is Not Null As `1esn`,(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})[..Filter(#usn8 In $`5esn` Is Null Is Null Where 0Xa Is Null Is Null)][..(`7esn` {@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})] As usn1 Skip False[`6esn`][07] Limit [usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]] Starts With (`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` ) Starts With (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8) Remove {`1esn`:`7esn`[Null..][@usn5..]}.`7esn`!"), - octest:ct_string("Create _usn3=(($999)),``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`))"), - octest:ct_string("Remove {`4esn`:.12 Starts With 0Xa}.usn1!,[`6esn` In 0X7 =~`` Where 123456789 =~_usn4 =~$0|$#usn8 Ends With 1000 Ends With .0].`7esn`? Remove (:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[?:`1esn`]-(_usn4 :@usn6:`7esn`{@usn5:$_usn3[$`4esn`..Null]})._usn3! Union All With Distinct @usn5 Ends With $`3esn` Ends With 12e12 Order By $`3esn` =~$`7esn` =~False Ascending Skip 0X0123456789ABCDEF[.e0..$`4esn`]"), - octest:ct_string("Optional Match `1esn`=(((`` :@usn5)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn5:`8esn`|:usn1]-(#usn7 :`5esn`))),usn1=(_usn4 :`8esn`{`3esn`:False[.e1..Null],`3esn`:9e0 =~$`5esn`}) Where 9e1 Is Null Is Null Union All Unwind _usn4(@usn6[`5esn`..$`3esn`],9e1 Starts With _usn3 Starts With `4esn`)[None(usn2 In 1000 Contains 0.e0 Where #usn7 Starts With .e12 Starts With $`7esn`)..Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $123456789 Ends With .e1)][(`6esn` :`5esn`)-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})..{#usn7:1e1[`6esn`..]}] As _usn3"), - octest:ct_string("Optional Match ((({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)<-[#usn7 *123456789..999]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}))) Where $#usn7 In .e1 In 01 Union Create ((`5esn` {_usn4:0X7 =~``})<-[`2esn`?:usn2|#usn8{`6esn`:0X7[.e12..01234567],@usn6:`7esn`[...e1][..\"d_str\"]}]->(`5esn` :`8esn`{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})),`8esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) Union All Optional Match ((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})),(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))) Where 00 In 1e1 Create `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Unwind [@usn5 In .12[#usn7][$`8esn`] Where $_usn4[12e12][`4esn`]][`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])..``(False In `3esn`)][[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]]..Filter(@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12])] As @usn6"), - octest:ct_string("Match `1esn`=(((`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})-[ *010{@usn5:Null Is Null Is Null}]-(:`5esn`)<-[`7esn`{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}]-(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}))) Create ((`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})),_usn4=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})) Remove {`6esn`:9e1 Contains $`3esn` Contains 01234567}.`2esn` Union Remove `1esn`(Distinct `2esn`[$`1esn`..][$_usn3..])._usn4!,Null.`6esn`?,`3esn`(Distinct 01234567 Ends With 0x0).``! Optional Match @usn6=((:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})-[?:`4esn`|:`7esn`]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})),#usn7=(@usn5 {usn2:$999[12.0..]})<-[usn1]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[_usn3?:``|:_usn4]->(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}) Remove Any(usn2 In 1000 Contains 0.e0 Where .e12 Contains $12 Contains 12.e12).`2esn`,[$`6esn`[$`1esn`][1000],$``[False],07[12][$`6esn`]].`5esn`!,`7esn`(`3esn`[..7][..12e12],$999 Ends With $`3esn` Ends With `8esn`).usn2? Union Detach Delete _usn3 Ends With 12e12 Ends With .e0,01[0.0],None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]) Detach Delete $_usn4['s_str'..] Detach Delete .e0 Is Not Null Is Not Null,{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]} =~Single(usn2 In 1000 Contains 0.e0) =~Any(@usn6 In @usn5 In $`6esn` Where $`7esn` Is Not Null)"), - octest:ct_string("Optional Match _usn4=(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Unwind $_usn3 =~$`3esn` =~0x0 As usn2 Unwind None(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`) Contains `3esn`($usn2 Contains 12.e12 Contains 00) As @usn6"), - octest:ct_string("Create (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}))),`4esn`=((`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})) Return $`6esn` =~$#usn8 As #usn8 Order By (#usn7 :#usn8)-[`6esn`:`4esn`|:`7esn` *..0x0]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})[Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])][Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])] Descending Limit Null Contains 9e1 Union All Return Count ( * )[Count ( * )..12e12][usn1..1000] Order By $`1esn`[$usn2..][$1000..] Descending Skip Filter(`6esn` In 0X7 =~`` Where $0[$#usn8..01234567])[{`7esn`:Null[0e0][12],#usn8:$12[..``][..$7]}..][Filter(usn1 In 0x0[..`4esn`] Where $usn1[0.12..]['s_str'..])..] Union With $`6esn` Is Null Is Null As `4esn` Order By [_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]][[.0 Starts With `2esn` Starts With `6esn`,9e1[0.e0..][#usn8..]]..][[07[$999],9e0 In 01234567,@usn5 In 0X0123456789ABCDEF]..] Asc,0 Is Not Null Descending,1e1[..#usn8][..'s_str'] Descending Where 9e12 Is Not Null Is Not Null"), - octest:ct_string("Return Distinct *,Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null As `6esn` Remove Any(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0).usn1?,({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}).`5esn`! With *,{`7esn`:Count(*) In 01 In .0}[..{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}][..#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..])] As `5esn`,#usn7 Ends With `4esn` Ends With @usn5 As `` Where $`1esn` =~$`1esn` =~#usn7 Union All Return Distinct *,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] As @usn6 Order By 010 Starts With `7esn` Starts With 9e1 Ascending,123456789 Is Null Descending,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] Desc Skip {#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null Remove None(`4esn` In `6esn`[1e1..] Where 12.0[``]).@usn5? With Distinct 's_str'[..0.0][..$`4esn`] As `2esn`,#usn7 Contains .0 Contains .e1,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Skip `6esn` Starts With $usn2 Starts With 0.0 Limit 9e1 Contains $`3esn` Contains 01234567"), - octest:ct_string("Detach Delete [.0[01][$12]][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`3esn` =~$`7esn` =~False|7[..12e12][..$`6esn`]]],07[07] Union Return *,07[0..`4esn`] Skip $_usn3[9e1][$_usn4] Optional Match ((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),((_usn4 {`8esn`:9e1 In 01 In 999}))"), - octest:ct_string("Remove Any(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`]).`6esn`?,[$0 Ends With $#usn7 Ends With .12,$7,@usn5 Ends With $`3esn` Ends With 12e12].`1esn`? Union Return Distinct *,None(usn2 In 1000 Contains 0.e0 Where $`6esn`[Count(*)..0.e0][0.0..Count ( * )])[(:usn2:@usn6{@usn6:$`4esn`[$`2esn`..]})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})][Any(@usn6 In @usn5 In $`6esn` Where 12.0[0Xa][00])] As @usn5,$usn1[1e1.._usn3][$@usn6..$#usn7] As `5esn` Skip Count(*)[12.e12..] Unwind Any(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) Is Not Null Is Not Null As `2esn` Union All Match `8esn`=(((:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[:#usn7|:_usn4{``:$1000 Is Null Is Null}]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`}))) Where 0Xa[..$``]"), - octest:ct_string("Merge ``=((@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`)) Union All Optional Match `4esn`=(({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})) Union Unwind 0.12 Contains $`2esn` Contains $_usn4 As @usn6 Merge `2esn`=(:usn1{`8esn`:usn1 Contains $``})-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1})-[ *010{@usn5:Null Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`]"), - octest:ct_string("With `5esn` In 12 As usn2,Count(*) Starts With 1e1 Starts With $123456789 As #usn7,[`4esn` In 's_str'[12..'s_str'] Where 9e1 Contains $`3esn` Contains 01234567][[7[..12e12][..$`6esn`]]..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}] As #usn8 Order By 00 In 12.e12 Descending,9e0 Ends With $`7esn` Asc Skip 01234567 Is Null Is Null Limit $123456789 In Count(*) In .e1 Where $123456789 Ends With $`6esn` Merge usn2=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) Union All Unwind Any(`4esn` In `6esn`['s_str'..][010..] Where \"d_str\" =~`6esn` =~0Xa)[[$`6esn` Is Null Is Null,0Xa Is Not Null Is Not Null,0X7 In 123.654 In $`2esn`]][[usn2 In 1000 Contains 0.e0 Where $_usn3[Null]|$0 =~$usn1 =~9e1]] As #usn8 Return *,usn2 =~0x0,07 In `5esn` In 12e12 Skip Null Contains 9e1 Limit [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] Unwind None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] As @usn5 Union With $`` Ends With 12e12 As `6esn`,(`4esn` :`8esn`{_usn4:0 Is Null Is Null})-[`6esn`:`8esn`|:usn1$_usn3]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Ends With Filter(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999) Ends With [`4esn` In `6esn`[1e1..] Where 07[12e12]],$999[$1000] Where .12 =~.12 =~1e1"), - octest:ct_string("Unwind 9e12 As `7esn` Unwind 12.e12 Contains $`5esn` As #usn7 Remove {`6esn`:$`8esn`[``..][123.654..],``:999[$`6esn`]}.``,[0X7[..12e12],$`6esn`[$`1esn`][1000]].usn2?"), - octest:ct_string("With 0Xa Starts With 0.12 Starts With .0 As usn2,[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4,$@usn6 Contains 0 Contains $`2esn` As `` Limit 1e1 In $999 In $usn2 Union Unwind usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`]) Is Null As `3esn` Union All Unwind 0.0 =~0X7 =~#usn7 As `6esn` Optional Match usn2=((usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(usn2 :`5esn`)),((`3esn` :`8esn`)-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})-[ *..0X7]->(`5esn` :_usn4:usn1)) Create `4esn`=((:`7esn`{``:$`1esn` Starts With @usn6})),@usn5=((@usn6 :#usn7{@usn5:Null Is Null Is Null})<-[``?:@usn5|`8esn`]->(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]}))"), - octest:ct_string("Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..] Union Delete $`2esn`[123456789..][00..],$`4esn`[9e1..][0..],$`2esn` Ends With `3esn` Ends With $7 Unwind [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] As _usn3 Union Match `5esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Optional Match @usn5=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) Where 07[12e12]"), - octest:ct_string("Remove Any(#usn7 In 01234567[$`3esn`..] Where 0Xa[0xabc..$#usn8])._usn4! Remove (usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})._usn4?,usn1:`3esn`:`1esn`,{`2esn`:9e1 In 01 In 999,`5esn`:$@usn6[..$usn1]}.@usn5! Union Detach Delete $usn1[0.12..]['s_str'..],usn2 Starts With `6esn` Starts With 12e12,True[Count(*)..][1e1..]"), - octest:ct_string("With *,7 Is Null As #usn7 Order By $`7esn` =~.e1 Descending,0e0 Starts With .e12 Ascending Where $`2esn`[$`2esn`..] Union All Create ((:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]})<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]})<-[`5esn`?:`6esn`]->(`1esn` :#usn7{`4esn`:9e12 Is Not Null Is Not Null,`8esn`:$0[..`8esn`]})) Match (({#usn7:Count ( * )[@usn6..0x0]})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})) Where 0X7[0e0..] Union Match (@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]}),(({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:``|:_usn4 *0Xa]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) Where 0x0 =~_usn4"), - octest:ct_string("Return *,\"d_str\" =~`6esn` =~0Xa As `4esn` Skip $@usn5 =~07 =~True Create _usn3=(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}),`1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) Create ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})-[@usn6?:#usn7|:_usn4 *00..]->(`` :@usn5{#usn7:0X7[12]})) Union Remove `3esn`:#usn7,None(`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]).#usn8?"), - octest:ct_string("With Distinct $`4esn`[$`2esn`..] As #usn8,#usn8 In $0,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Skip $@usn5 =~$`` =~$usn2 Limit `8esn` Ends With 999 Ends With 9e0 Unwind _usn3[.0] As _usn3 Return Distinct 999[``..][Null..] As `1esn` Skip usn2(Distinct _usn3 Contains @usn6 Contains 1.e1)[Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where _usn3 Is Null)..[12e12[0.e0][9e1]]][Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``])..Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)] Limit Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)[..(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})][..Any(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)] Union All Return Distinct _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0),$`7esn` In 0.e0 In `4esn` As `2esn` Limit Any(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) Is Not Null Is Not Null Create `2esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}),`3esn`=(`4esn` {usn2:7 In 0xabc})<-[$#usn8]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}) With *,`7esn`[...e1][..\"d_str\"],12e12[0.e0..True][0.12..0.0] As #usn7 Order By 0xabc[12.e12..`1esn`] Ascending,12.e12 In $1000 Ascending,[`6esn` In 0X7 =~`` Where 0.12[Null..]] Is Null Is Null Ascending Limit Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1)[00..] Where 0.e0[..#usn8][..Null] Union All Detach Delete {`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}[[`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]]][Count ( * )] Unwind $@usn6 Is Null As `` Merge `3esn`=(((:_usn4:usn1{usn2:$`5esn` In False})<-[?:@usn5|`8esn` *..0X7]->(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}))) On Create Set [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]].`1esn` =9e12 =~01 =~$`7esn` On Create Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$``"), - octest:ct_string("Optional Match (`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}),(:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}) Where Null[01234567][01234567] Create usn1=((#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`6esn`?:usn1|`3esn`{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})) Remove usn1:`1esn` Union All Merge ((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) On Match Set [`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|`` Contains 12 Contains True].`2esn`? =$@usn6[..$#usn7][..12.e12],None(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12).`8esn`! =12[..9e0][..999] With [$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}),[@usn5 In $#usn8 Is Null Is Null Where 7 In 0xabc][[Null[01234567][01234567],07[1e1],Count(*)[12.e12..]]..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)] Skip `1esn`[@usn6..$123456789] With *,{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)] Order By .e1 Starts With $`8esn` Asc Limit $#usn7 In .e1 In 01 Union All Return Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Order By 12e12[Count ( * )..][usn2..] Ascending,(`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Descending Detach Delete $999[12.0..] Match usn2=(((`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[?:`5esn`|`1esn` *999..]->(:``)<-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))),`2esn`=(({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(:_usn4:usn1)) Where `4esn` =~123456789"), - octest:ct_string("Remove None(usn1 In 0x0[..`4esn`] Where False[.e1..Null]).``,[.e0[..999][..0X7]].`5esn`? Unwind Extract(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..]) Contains Extract(#usn8 In $`5esn` Is Null Is Null Where @usn6 Contains .e1 Contains $`4esn`) Contains Any(`4esn` In `6esn`['s_str'..][010..] Where 12.e12 Ends With 01 Ends With .e1) As usn2 Union All Unwind (@usn6 :``{@usn5:@usn5 Starts With 12e12 Starts With @usn5})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn4:usn1)-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) In Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) In (usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]}) As `1esn` Match `1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}),`1esn`=(((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))) Remove None(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True]).#usn7?,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]].@usn5?,[00[01234567][False]].`1esn`?"), - octest:ct_string("Merge `8esn`=((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})) Union Optional Match ((:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]})),((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Where $`4esn`[12.e12..][0.0..] Union Merge (((`3esn` )-[?:#usn7|:_usn4]-(usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]}))) On Match Set `5esn` =01234567 Starts With $_usn4,#usn7 =\"d_str\" =~`6esn` =~0Xa,{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]}.usn2? =9e12 Contains .e0 Contains .e0"), - octest:ct_string("Detach Delete All(usn1 In 0x0[..`4esn`] Where $0[$#usn8..01234567]) In [_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0|$`7esn` Is Not Null] In [.12 Ends With `1esn` Ends With $`1esn`,$usn2[False..`7esn`][`7esn`.._usn3],\"d_str\" Contains `3esn` Contains 00],[0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]),07 Contains #usn8 Contains $_usn3 Merge usn2=((({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1)-[``? *..01]->(`6esn` :_usn4:usn1{`6esn`:00 In 12.e12}))) On Match Set `6esn`(Distinct 0Xa[$``..][01234567..],12.0 In 1000 In _usn4).`2esn` =Extract(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0|$_usn4[`3esn`][0]) Is Null Is Null Remove (:``{`1esn`:`6esn` =~$_usn3})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`7esn` :`6esn`:`7esn`)-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6).@usn5?,({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(:``)<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]}).`5esn`?,(:`6esn`:`7esn`{_usn4:12[0X7..@usn6],_usn3:123456789 In $usn2 In `6esn`})<-[usn1]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}).`1esn` Union All Merge `2esn`=(:usn1{`8esn`:usn1 Contains $``})-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1})-[ *010{@usn5:Null Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] Unwind Extract(usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`) Contains [0 Contains 12e12,0xabc Ends With $7 Ends With $`2esn`,0x0 =~_usn4] As `7esn`"), - octest:ct_string("Merge (`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) Merge `1esn`=((({`6esn`:$`8esn`[..$``]})-[`2esn`]-(@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12}))) On Match Set #usn7 =(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`) Is Not Null Is Not Null,`1esn` =`` =~12 =~$#usn7,[123456789[$#usn7..],_usn4[0xabc..],$`3esn` Starts With 01234567 Starts With $1000].`1esn`! =0X0123456789ABCDEF Starts With `2esn` Starts With $999 Match `8esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) Union Unwind {@usn6:0X0123456789ABCDEF[..usn1]}[..`7esn`($`3esn` =~$`6esn` =~`8esn`)][..(`4esn` {`6esn`:$12[..``][..$7]})<-[#usn7]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})] As `` Unwind $`6esn` =~1e1 As @usn6 Unwind All(usn1 In 0x0[..`4esn`] Where 07 In $7 In 12) =~Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 999[$`6esn`]|$`8esn` In \"d_str\" In 9e12) As #usn7 Union All Create _usn4=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),(((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})-[?*..{`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}]-(`` :`3esn`:`1esn`{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-({usn1:010[@usn5..],`7esn`:`2esn` Is Not Null Is Not Null}))) Match (`5esn` {_usn4:0X7 =~``}),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null}))"), - octest:ct_string("Delete 7[..`1esn`],`6esn` In 1000 In 01234567 With *,$0[..`8esn`] As _usn4 Order By $`6esn` Is Not Null Is Not Null Desc Skip 0x0 Contains $`8esn` Contains `6esn` Limit 1e1[@usn5..] Where 1000 Contains 0.e0 Union Remove [@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1|00].`3esn`!,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]|$`6esn`[$`1esn`][1000]].`4esn`! Unwind Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] As `8esn` Union Create `8esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Merge usn2=((`5esn` :usn2:@usn6{`5esn`:0Xa In .e1 In Count(*)})) On Create Set `3esn`+=[_usn4[0xabc..]][..Extract(_usn4 In usn1 Contains False Contains `` Where 12[usn1][True])][..(_usn3 {`7esn`:usn1 Contains False Contains ``})<-[? *0..010]-(#usn8 :`4esn`:#usn8)]"), - octest:ct_string("Merge `7esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}) On Match Set `7esn` =$`6esn` Is Not Null Is Not Null On Match Set ``+=`6esn`[0X7..][0x0..],#usn8 =1.e1 =~$_usn4,{`8esn`:1000 Contains 0.e0,usn1:`6esn`[1e1..]}.`4esn`? =$#usn8[1e1][9e1] Union All Delete True Is Not Null Is Not Null,[@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] With Distinct `2esn` In 7 In usn2,$0 =~$usn1 =~9e1 As `5esn`,@usn5[_usn4..][.e0..] As usn1 Where $0[0X0123456789ABCDEF..$#usn7] Unwind Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) Ends With [1e1[@usn5..],$#usn8 Is Null,$0[$#usn8..01234567]] Ends With Extract(`6esn` In 0X7 =~`` Where 010 =~`6esn`) As usn2 Union Create ((:`5esn`)<-[#usn7{#usn7:False[`2esn`..#usn8]}]->(usn2 :`3esn`:`1esn`)-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]}))"), - octest:ct_string("Match (`` :`7esn`)<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]}) Where $`4esn`[12.0..`5esn`] Unwind 1000[123.654..9e12][1000.._usn3] As _usn3 Union All Remove @usn5:@usn5,Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`]).@usn5,usn2:@usn6:`7esn` Create `2esn`=((:#usn7{usn2:$`5esn`[$123456789][`1esn`]})) Optional Match usn2=(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})))"), - octest:ct_string("Match (#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[#usn7{#usn7:False[`2esn`..#usn8]}]->(`5esn` :`2esn`:`3esn`{_usn3:$`2esn`[$123456789..$`1esn`][0Xa..$``],`5esn`:12.e12[@usn5..123.654]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}),`5esn`=((#usn8 :`4esn`:#usn8)<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})) Union With Distinct 010 In @usn6 Order By (:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0}) Starts With Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) Starts With [12.0 In 1000 In _usn4] Ascending Limit `7esn`[1e1..07][0x0..Count ( * )] Union All Delete 's_str' Ends With .e0 Remove Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|@usn6[..0xabc][..$#usn7])._usn3,Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null).``!"), - octest:ct_string("Optional Match ``=((_usn4 )-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})) Where 123456789 =~_usn4 =~$0 Union Unwind 1000 Contains 0.e0 As #usn8"), - octest:ct_string("Merge (((`` :@usn5{`5esn`:0X7 =~.0 =~\"d_str\"})<-[? *..01{`1esn`:`4esn` In $12 In `8esn`}]->(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[`6esn`? *..7{`3esn`:123456789[$#usn7..]}]-(`3esn` {_usn3:@usn6 Contains _usn4 Contains $`4esn`}))) On Create Set _usn3 =$`5esn`[False],[07[$999],@usn6[$`7esn`]].@usn6 =010 Starts With `7esn` Starts With 9e1,`4esn` =usn2[..$`3esn`] On Create Set usn2 =_usn3 Is Not Null Is Not Null,`4esn` =.e1 Starts With $`8esn` Match `1esn`=(((usn1 :`4esn`:#usn8)-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}))),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`)<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)) Where #usn8 Contains .e0 Contains $`8esn` Unwind 07[1e1] As `1esn` Union All Return *,$`5esn` Ends With .e12,[`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As @usn6 Order By $`7esn` Ends With $@usn5 Descending,0xabc[12.e12..`1esn`] Ascending Skip All(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn`[...e1][..\"d_str\"]) Contains (`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[ *..0x0{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}]-(`5esn` {`8esn`:0.0[12...12]})-[@usn6?:#usn7|:_usn4 *00..]->(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Contains Any(usn1 In 00 Starts With _usn3 Where `8esn`[1000..$7][$`7esn`..`2esn`]) Limit 0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str' With {_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] As `1esn` Order By 0 Is Not Null Descending Skip 0x0 Where 123456789 Starts With #usn7 Starts With `6esn` Union Create (({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) Return `8esn`[_usn3..$#usn7],({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn` Skip `7esn` Starts With $usn2 Starts With .e0 Limit 00 Is Not Null Is Not Null"), - octest:ct_string("Remove Single(#usn8 In $`5esn` Is Null Is Null Where $123456789[0.0..]).#usn7?,Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]).@usn6! Remove Any(@usn5 In .12[#usn7][$`8esn`] Where 12[..9e0][..999]).`5esn`?,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $123456789 Ends With .e1).`3esn`?,[010[$@usn6],9e0 Is Not Null].`2esn` Union Merge @usn5=(({`8esn`:$usn1[0.12..]['s_str'..],`8esn`:`1esn`[0e0..]})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})) On Create Set `6esn`+=Extract(`4esn` In $`8esn` Starts With 1000 Where False In `3esn`|$`3esn` =~Null),`8esn`+=12 Ends With .e12 Ends With $7,(:``{`1esn`:`6esn` =~$_usn3})-[`5esn`?:_usn4|:@usn5]-(usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]}).usn2 =usn1(Distinct) Ends With {`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654} Ends With ({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) On Match Set `7esn`+=9e0[``][123.654] Delete [True[..'s_str'][..01]] In Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999]) In All(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`]),$`3esn` Starts With $usn1"), - octest:ct_string("Create `8esn`=(`4esn` {`3esn`:0X7[..12e12],`8esn`:False In 123456789 In $0})-[`4esn`?:`1esn`]->(:`2esn`:`3esn`{usn2:$`5esn` In False})<-[#usn7? *00..]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]}),`7esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})) Return Distinct *,1.e1[Null][12.e12] As ``,Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) As _usn3 Order By 0.e0[`6esn`...e0][9e12...e12] Descending,_usn3 In .e1 In $12 Asc Skip [$`4esn`[9e1..][0..]][Any(`4esn` In $`8esn` Starts With 1000 Where 0.e0[9e1..][0.0..])..Single(#usn8 In $`5esn` Is Null Is Null Where 1000 Ends With 1000 Ends With $`4esn`)] Limit 123456789 =~_usn4 =~$0 Return Distinct $@usn5 =~$`` =~$usn2 As @usn6,usn1 Is Not Null Is Not Null,01 In 01 In 12 Order By Extract(usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`) Contains [0 Contains 12e12,0xabc Ends With $7 Ends With $`2esn`,0x0 =~_usn4] Ascending,07[1e1] Ascending Limit $`8esn` Starts With 1000 Union Detach Delete `2esn` In Count(*) In 9e0,$usn2[False..`7esn`][`7esn`.._usn3],999[``..][Null..] Create ((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})),(`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[? *..0X7{`3esn`:`8esn`[$``]}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})-[?:usn1|`3esn`{#usn8:1000[..$`6esn`][..0xabc]}]->(usn1 :_usn3{@usn6:True[..'s_str'][..01]}) Remove ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`5esn`? *010]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null}).`7esn`! Union Unwind None(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1])[`8esn`(00[``..][$`4esn`..],123.654[@usn5])] As _usn4 Merge (((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) On Match Set (`4esn` :`6esn`:`7esn`)-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(`5esn` {@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}).#usn8 =False In 123456789 In $0,Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])._usn4! =9e1[010..]"), - octest:ct_string("Delete $`4esn` Contains 0Xa,00 In 0.12 In `5esn` Union Optional Match ((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6)) Union With Distinct *,9e1['s_str'..1e1] As #usn7,01234567 As `6esn` Skip `2esn` In Count(*) In 9e0 Limit usn2 Is Not Null Where $12 Is Null Is Null With Distinct Null[0.e0..0x0] As `2esn`,$`1esn` Starts With $999 As #usn8 Where Count(*)[`7esn`..$12] Optional Match ``=(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12}) Where 123456789[$#usn7..]"), - octest:ct_string("Return Distinct *,{`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] Optional Match #usn8=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),((#usn7 :_usn3)<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]})-[#usn7:_usn3|:`4esn`]-(:#usn7{usn1:$123456789[..0.12][..#usn7]})) Remove `5esn`:_usn4:usn1,_usn4($`6esn`[$@usn6..],_usn3[.0]).#usn8,[07[$999],@usn6[$`7esn`]].@usn5! Union All Detach Delete 12[12e12..@usn6]"), - octest:ct_string("Match (`6esn` $`8esn`)<-[@usn6?:`6esn`*..]-(_usn3 :usn2:@usn6),(`3esn` :`8esn`)"), - octest:ct_string("Delete $`2esn` Ends With `3esn` Ends With $7,0e0[12][$_usn4],`7esn`[Null..][@usn5..] With @usn5[..True][..0X7] As #usn8,[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..] Skip ({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})[None(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])..] Create (#usn7 $usn2)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` )"), - octest:ct_string("Detach Delete 999[$`8esn`],Single(#usn7 In 01234567[$`3esn`..])[(`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']})][[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0]],$#usn7 In .e1 In 01 Delete 01 In 01 In 12,`6esn`[0X7..][0x0..]"), - octest:ct_string("Detach Delete .e1[$_usn4][1e1] Union Create `5esn`=(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}),`6esn`=((@usn6 :`8esn`{`2esn`:0X7 =~.0 =~\"d_str\"})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})) Optional Match ((_usn3 :_usn4:usn1)<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})),(:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa})-[:usn1|`3esn`]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]}) Where 00[01234567][False]"), - octest:ct_string("With *,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn` Skip 1e1[..False] Limit 12e12[$`5esn`][07] Optional Match @usn5=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Union All Create ((`6esn` :_usn4:usn1{`6esn`:00 In 12.e12})<-[`7esn`?:`5esn`|`1esn`]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`})),(usn1 :`3esn`:`1esn`)-[?:`4esn`|:`7esn` *..0x0]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Union Remove [@usn5 In .12[#usn7][$`8esn`] Where Count ( * )].`8esn`? With Distinct $12[`3esn`..0e0][`2esn`..$7] As #usn8,0.12 =~01 =~12 Order By $123456789 =~$#usn8 =~$#usn8 Ascending,0X7 In 123456789 In $`5esn` Ascending"), - octest:ct_string("Merge ((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6)) On Create Set None(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]).`3esn` =Single(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) In [$123456789 Contains usn2,010 Is Null Is Null,`7esn` Starts With $usn2 Starts With .e0] In `2esn`($`5esn` Is Not Null,7 In $`3esn` In #usn7),None(`4esn` In $`8esn` Starts With 1000 Where 0.12 Is Null Is Null).`2esn`! =[010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]][(:@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})..][Extract(#usn8 In $`5esn` Is Null Is Null Where 1000[0.0][Null])..] On Match Set `7esn`+=`5esn`[`1esn`..`1esn`],{_usn4:usn2 Ends With $`5esn` Ends With `2esn`,#usn7:0.12 In $7 In 0}.@usn5! =_usn3 Contains @usn6 Contains 1.e1,`8esn`+=Filter(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null) Ends With [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1] Ends With _usn3(Distinct $123456789 Ends With $`6esn`) Unwind Extract(`6esn` In 0X7 =~`` Where $_usn3[9e1][$_usn4]|@usn6[..0xabc][..$#usn7])[[@usn6 In @usn5 In $`6esn` Where $@usn5 In 12e12 In Count(*)|999[$`6esn`]]..Any(_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`)][{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`],usn2:@usn6[`3esn`..][$7..]}..`7esn`($123456789 Ends With $`6esn`)] As _usn4 Union All Create (({_usn3:12.e12 In $0 In Count(*)})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(`2esn` :``)-[:_usn4|:@usn5 *0xabc]-({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})) Union Unwind 00 In 12.0 In 's_str' As `3esn`"), - octest:ct_string("Create `5esn`=(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}),`6esn`=((@usn6 :`8esn`{`2esn`:0X7 =~.0 =~\"d_str\"})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})) Optional Match ((_usn3 :_usn4:usn1)<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})),(:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa})-[:usn1|`3esn`]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]}) Where 00[01234567][False] Union All Remove None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`1esn` Starts With $999).usn1!"), - octest:ct_string("Remove Any(usn2 In 1000 Contains 0.e0 Where .e12 Contains $12 Contains 12.e12).`2esn`,[$`6esn`[$`1esn`][1000],$``[False],07[12][$`6esn`]].`5esn`!,`7esn`(`3esn`[..7][..12e12],$999 Ends With $`3esn` Ends With `8esn`).usn2? With *,All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12) Starts With Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Contains .0 Contains .e1) As usn2 Order By All(_usn4 In usn1 Contains False Contains `` Where $`4esn`[$`2esn`..])[..Single(usn1 In $123456789 Contains usn2 Where $usn1[0.12..]['s_str'..])][..``(Distinct `1esn`[0e0..])] Asc,`4esn` =~$`3esn` =~$123456789 Ascending,$123456789[False.._usn3] Desc Skip 7[..0X7][..'s_str'] Where $123456789 Contains 01 Contains 0.12 Create ((:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})<-[@usn6:`3esn`|:`4esn`*]->(`6esn` :`5esn`)),@usn6=((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})) Union Create ((`3esn` {`8esn`:$``[_usn4..][`7esn`..]})) Merge usn2=(((`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[?:`5esn`|`1esn` *999..]->(:``)<-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))) On Match Set #usn7:``,({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})<-[?:@usn5|`8esn` *..0X7]-(:usn1).`4esn` =`6esn` Starts With $`5esn`,[`6esn` In 0X7 =~`` Where 0.12[Null..]]._usn4 =Count ( * )[`3esn`..][`2esn`..]"), - octest:ct_string("Detach Delete $usn2[..12.0],$999 In $`8esn` In `5esn` Unwind $1000 Starts With .0 Starts With 0.0 As `6esn` Merge (@usn6 )<-[? *12..0xabc]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})<-[``? *12..0xabc]-(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1}) Union All Unwind `7esn`[1000..][$123456789..] As `1esn` Union All With Distinct $@usn6 Contains 07 Contains 0.e0,0X7 In $@usn5 In 9e0"), - octest:ct_string("Return *,00[``..][$`4esn`..] As `6esn`,$`6esn`[$`1esn`][1000] Order By `1esn`[@usn6..$123456789] Asc,`1esn`[9e12..$`8esn`][usn2..$``] Ascending,`7esn`[..0X0123456789ABCDEF][..$0] Desc Skip $usn2[0e0..] Limit (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``])"), - octest:ct_string("Return *,$@usn6[..12e12],`8esn` Ends With 0X0123456789ABCDEF Ends With `1esn` As usn2 Skip 1000[..$`6esn`][..0xabc] Limit $`8esn`[..$``]"), - octest:ct_string("Optional Match `2esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}),(#usn7 :`6esn`:`7esn`)<-[`3esn`?:_usn3|:`4esn`]->(:`1esn`{_usn4:$_usn3[Null]})-[ *..0X7]->(`5esn` :_usn4:usn1) Where 0.0[999..] Merge `6esn`=(:@usn6:`7esn`{`2esn`:$`3esn` Contains 0X0123456789ABCDEF Contains 00,`5esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-(#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]}) Merge ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8}))"), - octest:ct_string("With Distinct 1000[123.654..9e12][1000.._usn3],count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null,$123456789 =~$#usn8 =~$#usn8 Order By 0xabc[12.e12..`1esn`] Ascending Skip 9e1 =~.0 =~$`1esn` Limit None(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00)[[@usn6 Starts With `7esn` Starts With Null]][{`1esn`:07[`6esn`..][`5esn`..],usn1:$usn2[False..`7esn`][`7esn`.._usn3]}] Union Match #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`) Where $`2esn`[..`2esn`] With Distinct 7 Contains 9e1 As `` Order By $`1esn` Starts With `8esn` Starts With $0 Descending,[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Desc,#usn8 Is Not Null Asc Skip 12.e12 Contains `5esn` Where 12e12[0.e0][9e1]"), - octest:ct_string("With ({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn`,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn` Skip 010 Starts With `7esn` Starts With 9e1 Limit 0Xa Starts With $`4esn` Starts With 1e1 Optional Match (((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))) With Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] As @usn5,12 Is Null Is Null As #usn7 Limit 0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Union All Unwind 123.654[`5esn`] As @usn5 Create usn2=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}),(`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Union All Unwind 0Xa[#usn7] As usn1 Remove `3esn`:``,({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[`2esn`? *0..010]->(usn2 {usn1:0 Is Null Is Null,`8esn`:12.0[..$7][..999]})<-[#usn8:`3esn`|:`4esn` *0..010]->(`3esn` :usn2:@usn6).`4esn`! Merge `3esn`=(:`7esn`) On Match Set _usn4:_usn3,[0xabc Contains $1000].`6esn` =(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})[Filter(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 0.12 Ends With $usn1 Ends With $@usn5)][`3esn`(Distinct 9e12[_usn3])],{@usn6:0.12[0.e0..][`4esn`..]}.`4esn` =0x0 Contains $`8esn` Contains `6esn`"), - octest:ct_string("Return Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Order By 12e12[Count ( * )..][usn2..] Ascending,(`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Descending Detach Delete $999[12.0..] Match usn2=(((`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[?:`5esn`|`1esn` *999..]->(:``)<-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))),`2esn`=(({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(:_usn4:usn1)) Where `4esn` =~123456789 Union Optional Match ((:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})),`1esn`=((@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) Where 0 Ends With $7 Ends With _usn3 Unwind `6esn`[..`5esn`] As #usn8 Union Detach Delete 01234567[$`7esn`][_usn3],0.12 =~9e0,$`8esn` =~1000 =~12e12"), - octest:ct_string("Delete `4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}] Merge `3esn`=((#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)-[`6esn`:``|:_usn4 *..01]->(`5esn` :#usn7)) On Create Set `8esn` =Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`],`8esn`+=Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[usn2($#usn8 Is Null Is Null)..Extract(usn1 In 0x0[..`4esn`] Where 123456789 In $usn2 In `6esn`|@usn5[..True][..0X7])][(`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` )..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]] On Create Set `3esn`(Distinct).`` =$`1esn` Is Null Is Null,`3esn` =[$`4esn`[9e1..][0..]][Any(`4esn` In $`8esn` Starts With 1000 Where 0.e0[9e1..][0.0..])..Single(#usn8 In $`5esn` Is Null Is Null Where 1000 Ends With 1000 Ends With $`4esn`)],usn2+={usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null Unwind $`1esn` =~$`1esn` =~#usn7 As `4esn` Union Match #usn7=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),@usn5=(((_usn3 :_usn3{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[#usn8:`3esn`|:`4esn` *0..010]-(:usn1{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]}))) Unwind Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `4esn` Union All Remove Single(usn1 In $123456789 Contains usn2 Where 9e12[0.0..12.e12]).`4esn`!,(_usn4 )<-[#usn7? *00..]->(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`).``! With *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `3esn`,07[$999] As `` Where 9e0[$_usn3..0X7][7..$#usn8] Remove (:``{#usn8:$`2esn`[..`2esn`]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]}).`5esn`,(@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}).`4esn`"), - octest:ct_string("With Distinct 1000[123.654..9e12][1000.._usn3],count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null,$123456789 =~$#usn8 =~$#usn8 Order By $usn2 Is Not Null Is Not Null Ascending,Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Ascending Remove (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})<-[usn2?:usn1|`3esn`{`7esn`:0xabc Ends With $#usn7 Ends With #usn8,@usn5:$#usn8}]->(`3esn` :#usn8).usn2 Unwind Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]) As usn2 Union All Create `7esn`=(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}),(((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Unwind 00[.e1..] As `6esn` Union All Create ((`` :`1esn`)-[`1esn`:usn2|#usn8 *1000..]-(`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[`4esn`]->({`8esn`:0X7 In 's_str' In $`1esn`})),`4esn`=(((:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[ *010$123456789]-(`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})<-[? *..0x0]->(`` :usn1)))"), - octest:ct_string("Unwind 01234567 Ends With 12.0 Ends With 0X7 As _usn3 Union All Unwind 12.e12[$1000..] As `4esn`"), - octest:ct_string("Match `1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}),`1esn`=(((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))) Create ((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})),#usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) Match `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Where 's_str'[12..'s_str'] Union Return $`5esn` In `2esn` In $12 As @usn6,usn1[Count ( * )..$usn1] As usn1,[0Xa[$``..][01234567..]] Contains `3esn`(Distinct _usn3 In .e1 In $12) Contains (`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']}) As @usn6 Skip @usn6 Starts With `7esn` Starts With Null Limit $`2esn`[$123456789..$`1esn`][0Xa..$``] Union All Create (((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Match (usn2 :#usn8{`3esn`:123.654[@usn5]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`}),((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[usn1?:`1esn` *0X0123456789ABCDEF..{usn2:$`4esn`[12.e12..][0.0..]}]-(#usn7 :`5esn`)) Where 1e1[..False]"), - octest:ct_string("Create @usn6=(:#usn8)<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[_usn3?:@usn5|`8esn`{`3esn`:`4esn`[7..][1000..],usn2:123456789 Starts With `2esn` Starts With 9e12}]-(`7esn` {`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`}) Detach Delete $999[12.0..] Return Distinct *,$@usn6[..$usn1] As @usn6 Order By `3esn` =~0.0 =~$`` Ascending Skip (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]) Limit 0.e0[@usn6][0x0]"), - octest:ct_string("Create (({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) Return `8esn`[_usn3..$#usn7],({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn` Skip `7esn` Starts With $usn2 Starts With .e0 Limit 00 Is Not Null Is Not Null Union Merge (((usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1)<-[@usn5:#usn8{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(#usn8 :_usn3))) With Distinct None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) As _usn3 Skip `2esn` Is Not Null Is Not Null Limit None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] Union All Optional Match (#usn7 :`6esn`:`7esn`)<-[`3esn`?:_usn3|:`4esn`]->(:`1esn`{_usn4:$_usn3[Null]})-[ *..0X7]->(`5esn` :_usn4:usn1) Where 0.12 In $7 In 0"), - octest:ct_string("Remove [usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`|$`8esn`[$``..$7][$1000..$`7esn`]].`3esn`!,@usn6:#usn8,(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 Remove [@usn5 In 0X7 =~.0 =~\"d_str\" Where $`8esn` Starts With 1000|@usn6 Contains .e1 Contains $`4esn`].`8esn`! Union Match ((`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`)<-[ *0X0123456789ABCDEF..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]->(_usn3 :_usn3)),(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Create ((:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})<-[@usn6:`3esn`|:`4esn`*]->(`6esn` :`5esn`)),(({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(:_usn4:usn1)) Union With All(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`)[[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]]..][({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})..] As #usn8,'s_str' In \"d_str\" In 123456789,None(`4esn` In 's_str'[12..'s_str'] Where 12.0[0Xa][00]) Is Not Null Order By 07[1e1] Ascending Limit .e0[usn2..][12..] Where 12 Ends With 01 Ends With 1e1"), - octest:ct_string("Unwind 010 =~$usn2 =~1e1 As `1esn` Merge (({`2esn`:.e0 =~`5esn`})-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) Return *,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7,@usn6 Starts With `7esn` Starts With Null Skip Count ( * )[..usn1][..12.e12] Limit (`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0])"), - octest:ct_string("Return Distinct `3esn` Contains 0Xa As `6esn`,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,[usn1[..@usn5][...e0]][(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)] Return None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} Order By usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`]) Is Null Ascending,9e1 Starts With 9e1 Starts With 010 Asc Create #usn8=((:`8esn`)-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`{#usn8:Null[0e0][12],`2esn`:`8esn` In $@usn5}]-({_usn3:999 In $_usn4 In 0X7,`1esn`:1e1 In $#usn8 In 12e12})) Union Remove [usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`|`3esn` =~0.0 =~$``].#usn7?,(:usn1{`1esn`:`6esn` Starts With $usn2 Starts With 0.0})<-[#usn7:`3esn`|:`4esn` *00..]->({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})-[`6esn`:`4esn`|:`7esn` *..0x0]->(:usn1{`6esn`:1000 Contains 0.e0,`7esn`:$@usn6[..$#usn7][..12.e12]}).usn2 Remove Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0).`8esn`?,All(`4esn` In `6esn`[1e1..] Where 07[12e12]).`3esn`!"), - octest:ct_string("Delete Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]},0.12 Is Null Is Null Merge ((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) On Create Set usn1+=Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Merge `4esn`=({`8esn`:0X7 In 's_str' In $`1esn`}) On Match Set usn2+=.e1 Ends With _usn4 Ends With @usn5,@usn5+=_usn3 In .e1 In $12,Extract(`4esn` In `6esn`[1e1..] Where $`7esn` Ends With `1esn` Ends With True).`` =010 In @usn6 On Match Set usn1 =Count ( * ) =~All(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7) Union All With *,usn2 =~0x0,07 In `5esn` In 12e12 Skip `` Is Not Null Is Not Null Where usn1 Contains $`` Remove None(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True]).#usn7?,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]].@usn5?,[00[01234567][False]].`1esn`? Union Match ({`5esn`:123456789 Starts With `2esn` Starts With .0})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})<-[`` *12..0xabc]->(`3esn` :_usn4:usn1) Return $`4esn` Contains 0Xa,010 In `7esn` Order By 0x0 In `8esn` In 999 Descending Detach Delete 0X0123456789ABCDEF Contains 12.e12 Contains 999,0X0123456789ABCDEF In $1000 In $`3esn`,'s_str' Is Not Null Is Not Null"), - octest:ct_string("Return {#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] As #usn7,[@usn5 In $#usn8 Is Null Is Null Where 7 In 0xabc][[Null[01234567][01234567],07[1e1],Count(*)[12.e12..]]..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)],False In `3esn` Order By 0x0[$`3esn`..010][$#usn7..00] Ascending,$@usn6 Contains 0 Contains $`2esn` Asc,0xabc Contains Null Contains 9e12 Asc Skip $`7esn` =~.e1 Limit (:`2esn`:`3esn`)-[{``:9e0 Is Not Null}]->({`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`}) Merge (@usn6 )<-[? *12..0xabc]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})<-[``? *12..0xabc]-(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1}) On Create Set `6esn`+={`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])],#usn8:`1esn`,[usn1 In 0x0[..`4esn`] Where True =~@usn5 =~$`1esn`|0.0[999..]].`4esn`! =$123456789 Contains 01 Contains 0.12 On Match Set #usn8+={`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}],(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0}).`3esn`! =07 In $7 In 12,[\"d_str\" =~`6esn` =~0Xa].`4esn`! =0.0 =~0X7 =~#usn7 Union With Distinct Extract(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null) Ends With `2esn`(`7esn`[Null..][@usn5..],123.654[12.e12..1e1]) Ends With Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]) As `7esn` Skip .e0[..0X0123456789ABCDEF][...e12] Limit $`4esn`[9e1..][0..] Where `1esn` In 999 In $#usn7 Remove [`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789]|0.12[Null..]].`8esn`?,All(`4esn` In 's_str'[12..'s_str'] Where $`8esn`[..$``]).`7esn`!,Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`!"), - octest:ct_string("With Distinct *,07[0..`4esn`],Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) Limit Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Where @usn5[..True][..0X7] Union All Remove (:`5esn`{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12})-[`5esn`?:`2esn`|usn2 *999..]->(`5esn` {`5esn`:$`5esn`[False]}).`8esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]).`7esn` Remove {`8esn`:0X7 In 's_str' In $`1esn`}.usn1!"), - octest:ct_string("Unwind [$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][{`7esn`:$7[.12]}..[_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`]] As _usn3 Detach Delete $`5esn` In False,$@usn5[$#usn8..][9e1..],`7esn`[...e1][..\"d_str\"] Unwind usn2 Starts With @usn6 As #usn7 Union Detach Delete _usn3 Ends With 12e12 Ends With .e0,01[0.0],None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]) Detach Delete $_usn4['s_str'..] Detach Delete .e0 Is Not Null Is Not Null,{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]} =~Single(usn2 In 1000 Contains 0.e0) =~Any(@usn6 In @usn5 In $`6esn` Where $`7esn` Is Not Null) Union All Delete 7 =~9e0 =~'s_str'"), - octest:ct_string("Merge (({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({_usn3:$`1esn` Starts With @usn6})) Optional Match usn2=(((#usn8 :@usn6:`7esn`)<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[_usn3? *00..]-(`1esn` :`1esn`))) Where $0[7..][Null..] Optional Match _usn4=(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Union Detach Delete None(`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`])[Extract(@usn5 In .12[#usn7][$`8esn`] Where #usn8 Contains .e0 Contains $`8esn`|.e0[..999][..0X7])..@usn5(Distinct `` Starts With 12,.12 Starts With 0Xa)],$`6esn` Ends With True Ends With True Match `3esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}),``=(((:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]})<-[? *..0x0]->(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})-[? *..0X7{`3esn`:`8esn`[$``]}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}))) Create `1esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}),`6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union All With Distinct *,9e1['s_str'..1e1] As #usn7,01234567 As `6esn` Skip `2esn` In Count(*) In 9e0 Limit usn2 Is Not Null Delete 's_str'[12..'s_str'],.e12[usn2][01],[@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Remove Single(`4esn` In $`8esn` Starts With 1000 Where `6esn`['s_str'..][010..]).@usn5,(usn2 :`3esn`:`1esn`)-[ *..7]-(usn1 :`4esn`:#usn8)-[?:`3esn`|:`4esn`]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`3esn`,(:`1esn`{_usn4:$_usn3[Null]})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]-(`2esn` :#usn7)-[:usn2|#usn8 *01234567..12]-(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})._usn3"), - octest:ct_string("Merge `2esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}) On Match Set @usn5 =$`5esn` In False Remove #usn7(Distinct $@usn6[..$usn1],9e12 Is Not Null Is Not Null).usn1 Detach Delete [0.12 Contains $`2esn` Contains $_usn4,01 Ends With .e0] Starts With [usn1 In $123456789 Contains usn2 Where usn1[..@usn5][...e0]] Starts With All(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`) Union All Remove {`1esn`:0xabc[12.e12..`1esn`]}.`1esn`!"), - octest:ct_string("Optional Match ((_usn3 :_usn4:usn1)<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})),(:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa})-[:usn1|`3esn`]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]}) Where 123456789 =~$123456789 Create usn1=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[`7esn`?]-(@usn6 :_usn3{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]})),#usn7=(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[@usn5?:_usn3|:`4esn` *..0x0]->(#usn8 {usn2:7 Contains 9e1}) Detach Delete 0Xa Starts With $`4esn` Starts With 1e1 Union Delete `7esn`($123456789 In Count(*) In .e1) Ends With Extract(@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|Count ( * )) Ends With Any(usn1 In 0x0[..`4esn`] Where False[.e1..Null]),`7esn`(0.0[1000..][.e1..],$@usn5 Contains 01)[Any(usn1 In 0x0[..`4esn`] Where 0X7[.e12..01234567])][[$@usn6 Contains 07 Contains 0.e0,`5esn` In 12]],$usn1[0.12..]['s_str'..] Unwind 999 Contains `7esn` As `7esn` Merge @usn5=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) On Create Set usn1+=$@usn6 In $`5esn` In $usn2 Union All Create `5esn`=((#usn8 :`4esn`:#usn8)<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})),usn2=((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn2 *0X0123456789ABCDEF..{usn2:`` Starts With 12}]-(`4esn` {`7esn`:.e0[..999][..0X7]})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})) Remove {`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}.#usn8?,[0X7[..12e12],$`6esn`[$`1esn`][1000]].usn2?"), - octest:ct_string("Unwind 0X7[..12e12] As `6esn` Create ((:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[`2esn`:@usn5|`8esn`]->(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7}))"), - octest:ct_string("Create ``=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3})))"), - octest:ct_string("Optional Match `8esn`=((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})),`4esn`=(#usn7 :@usn5)-[`4esn`:_usn3|:`4esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:usn1{`8esn`:usn1 Contains $``}) Where \"d_str\" Starts With $usn1 Union Create usn2=((`5esn` :usn2:@usn6{`5esn`:0Xa In .e1 In Count(*)})),_usn4=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})) Return Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])[All(#usn7 In 01234567[$`3esn`..] Where Count(*)[.e0.._usn4])..][None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..])..] As @usn6,0X0123456789ABCDEF Contains 12.e12 Contains 999 Order By 9e1[0.e0..][#usn8..] Asc,$0 =~`3esn` Asc Limit False Is Null Union Remove (:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)}).usn1!,None(usn1 In 00 Starts With _usn3 Where 999 Contains `7esn`).`3esn`?,_usn3:usn1 With Distinct $`4esn`[$`2esn`..] As #usn8,#usn8 In $0,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Skip $@usn5 =~$`` =~$usn2 Limit `8esn` Ends With 999 Ends With 9e0"), - octest:ct_string("Merge _usn3=((#usn7 :``)<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]})<-[? *12..0xabc]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})) On Create Set `6esn` =7[..0X7][..'s_str'],[$`5esn` Contains $@usn6].`1esn` =1e1[@usn5..],Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 07 In 0 In 's_str').@usn5? =True Is Not Null On Create Set usn2 =_usn3 Is Not Null Is Not Null,`4esn` =.e1 Starts With $`8esn`"), - octest:ct_string("Remove Extract(@usn6 In @usn5 In $`6esn` Where 07[$`5esn`..]['s_str'..]|$123456789 Contains 01 Contains 0.12).#usn7 Remove Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``]).`4esn`!,count(Distinct $#usn8,False Is Not Null Is Not Null)._usn3?,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn` Starts With $`` Starts With $#usn7).`3esn`?"), - octest:ct_string("Return *,$`3esn` =~Null As usn2 Skip Filter(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null) Ends With [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1] Ends With _usn3(Distinct $123456789 Ends With $`6esn`) Limit `3esn`(Distinct _usn4 Ends With 01 Ends With $`1esn`) Starts With [Count(*) In 01 In .0,`` Starts With 12,$_usn4[$`8esn`..][07..]] Starts With Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12 In $0 In Count(*)) Optional Match ((_usn4 {`8esn`:9e1 In 01 In 999})),`1esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}) Where @usn5 Contains $`1esn` Contains 999 Union Optional Match _usn3=(($999)),``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)) Where 9e0[True..`1esn`]"), - octest:ct_string("Create ((:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})<-[@usn6:`3esn`|:`4esn`*]->(`6esn` :`5esn`)),@usn6=((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})) Match #usn8=({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]}),(((`3esn` :`8esn`)-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(_usn3 :usn2:@usn6)-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}))) Where 9e0 Starts With `6esn` Union All Unwind `7esn`[$999][7] As `5esn` Merge `6esn`=(($12)<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1})-[?:`8esn`|:usn1{`6esn`:1e1[`6esn`..],`2esn`:7 =~9e0 =~'s_str'}]->({`3esn`:1e1 Is Null})) Union Remove {@usn5:7[..12e12][..$`6esn`]}.usn1,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]|9e0 Starts With `6esn`].#usn8?,9e12.usn1 Create ``=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),(`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[usn2?:usn1|`3esn`{`7esn`:0xabc Ends With $#usn7 Ends With #usn8,@usn5:$#usn8}]->(`3esn` :#usn8)<-[?:`1esn`{`1esn`:123456789[1000]}]->(:usn1{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})"), - octest:ct_string("Return `8esn`[1000..$7][$`7esn`..`2esn`],0X7 =~``,123456789 =~_usn4 =~$0 As usn1 Detach Delete 0Xa Starts With $`4esn` Starts With 1e1 With Distinct .e0[`4esn`..`4esn`][0.0..$0] As `7esn` Order By None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) Descending,01234567[.12..7][1000..1.e1] Ascending Where #usn7[..$1000][..01]"), - octest:ct_string("Create ``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)),`2esn`=(((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) Create `4esn`=((:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})),((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) Return Distinct *,12 Is Null Is Null As #usn7,$1000 Is Not Null Is Not Null Skip (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)[Filter(@usn6 In @usn5 In $`6esn` Where $999[$1000])..][#usn7($`8esn`[``..][123.654..],12.e12 Contains `5esn`)..] Union All Return `7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As usn1 Order By #usn7 Contains 07 Descending,Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0]) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where Count(*)[True]) In Extract(`4esn` In 's_str'[12..'s_str'] Where 0xabc Ends With $#usn7 Ends With #usn8|.e1 Starts With 0.0 Starts With `6esn`) Asc,[$12 Is Null Is Null,999 Contains Count ( * ) Contains 123.654][Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`)..Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0)][[Null Contains _usn4,$`7esn` Is Null Is Null]..({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3})] Desc With *,$`1esn` Ends With _usn4 Ends With `3esn` As `7esn`,({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] As @usn6 Order By $999 Ends With $`3esn` Ends With `8esn` Asc Skip $0[..07] Where $@usn5 In 12e12 In Count(*)"), - octest:ct_string("Return $`5esn` Starts With _usn3 Starts With @usn5,9e0 Is Null Is Null,$999[..`1esn`] As `8esn` Order By usn2[$`1esn`...0] Descending,None(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00)[[@usn6 Starts With `7esn` Starts With Null]][{`1esn`:07[`6esn`..][`5esn`..],usn1:$usn2[False..`7esn`][`7esn`.._usn3]}] Ascending,01234567 Ends With 12.0 Ends With 0X7 Ascending Remove (:`7esn`)<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})._usn4!,(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[`2esn` *..7]-(_usn3 {usn1:_usn3 Contains @usn6 Contains 1.e1}).`1esn`?,($1000)<-[`4esn`:#usn8]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}).@usn5? Unwind All(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[..(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[`` *0xabc]->(`7esn` :#usn7{`6esn`:$`3esn` Contains 0X0123456789ABCDEF Contains 00,`1esn`:1000[123.654..9e12][1000.._usn3]})][..{`3esn`:$1000[.e0..]}] As `2esn`"), - octest:ct_string("Create @usn6=({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567}),`7esn`=((:@usn6:`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[`6esn`:@usn5|`8esn` *12..0xabc]-(`` :@usn5)-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})) Union All Match `1esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) Where $123456789 Is Not Null Is Not Null Merge _usn4=(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) On Create Set _usn3 =(usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Is Null Is Null,`1esn` =7 Contains $`5esn` Contains $usn1,usn2 =\"d_str\" =~`3esn` =~0x0 On Match Set @usn6+=(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}]"), - octest:ct_string("Merge `6esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}) On Match Set Filter(usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01).`8esn`! =`6esn`[..`5esn`] Unwind `1esn`[12.e12][01] As _usn3 Optional Match `1esn`=(((`` :@usn5)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn5:`8esn`|:usn1]-(#usn7 :`5esn`))),usn1=(_usn4 :`8esn`{`3esn`:False[.e1..Null],`3esn`:9e0 =~$`5esn`}) Union All Remove [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7].@usn5,Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])._usn3? Return Distinct *,$@usn6[..$usn1] As _usn3 Order By {``:12e12[$`5esn`][07],_usn3:$`6esn` Is Null Is Null} Ends With [0 Is Not Null Is Not Null] Descending,Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Desc,.12 Ends With `1esn` Ends With $`1esn` Asc Limit `7esn` Starts With $`` Starts With $#usn7 Unwind $@usn6 Starts With usn2 Starts With usn2 As _usn4"), - octest:ct_string("With Distinct 7 Contains 9e1 As `` Order By $`1esn` Starts With `8esn` Starts With $0 Descending,[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Desc,#usn8 Is Not Null Asc Skip 12.e12 Contains `5esn` Where 12e12[0.e0][9e1] Create #usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})),usn1=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) Union Return 9e1 Starts With `1esn` Starts With 0Xa,07[$`5esn`..]['s_str'..] As `5esn`,010 =~$usn2 =~1e1 Skip $`8esn`[..$``] Limit 0.0[999..] Unwind 0X7 In $999 In $`` As ``"), - octest:ct_string("Remove Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`).#usn7!,`7esn`(Distinct $usn2 =~$_usn4 =~`5esn`).#usn7?,(`1esn` :usn2:@usn6)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}).usn1? Union Create (({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8)) Merge usn1=((`3esn` :``)<-[`4esn`]->(`7esn` :#usn8)<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(_usn4 )) On Match Set (`3esn` :usn2:@usn6)<-[`7esn`?:@usn5|`8esn`]-(`1esn` :``).#usn7! =Count ( * )[`3esn`..][`2esn`..],[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where .e0 In $@usn5 In $0|0.12 Contains .e1].`3esn` =`1esn`[0e0..],_usn3+=(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})[[#usn7 In 01234567[$`3esn`..] Where usn1 Contains False Contains ``]..] On Match Set usn1 =$`6esn`[..0X0123456789ABCDEF],Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]).@usn6 =$123456789 Contains usn2,`` =#usn8[$_usn3..7][``..$`5esn`] Merge _usn4=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Union Merge (({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})<-[_usn3?:`2esn`|usn2{`3esn`:0[0.12..]}]->(:``{`1esn`:`6esn` =~$_usn3})) On Match Set #usn7 =`5esn` In $999,@usn6+=`2esn`[$`3esn`..],Any(`6esn` In 0X7 =~`` Where 12.e12['s_str']).`5esn` =usn1[..@usn5][...e0] On Match Set `3esn` =$_usn4[0.12..$`6esn`][00..$@usn6] Create ((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})) Unwind 0X0123456789ABCDEF Contains 12.e12 Contains 999 As _usn4"), - octest:ct_string("Merge `8esn`=(((:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[:#usn7|:_usn4{``:$1000 Is Null Is Null}]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`}))) Match _usn3=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}),``=(({`5esn`:0e0 =~_usn4})) With Distinct *,$`7esn` Is Null Is Null,[0[usn2..],7[12e12..$_usn4][9e1..True],`1esn` Contains Count ( * )][Extract(@usn5 In .12[#usn7][$`8esn`] Where Count ( * ))..][Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])..] As #usn7 Where 0xabc Ends With $#usn7 Ends With #usn8 Union All Remove [`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where #usn7[..$1000][..01]|999 Contains `7esn`]._usn3!,[$usn1[1e1.._usn3][$@usn6..$#usn7],00[7..$123456789],$`5esn` In `2esn` In $12].`4esn`?"), - octest:ct_string("Return *,7 Is Null As #usn7 Order By .e0 Contains 01234567 Descending,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Desc,'s_str' Starts With 1000 Starts With #usn8 Descending Delete `6esn`[_usn4..][$`6esn`..] Unwind `1esn`[@usn6..$123456789] As `2esn`"), - octest:ct_string("Merge _usn4=(:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]}) On Match Set All(`6esn` In 0X7 =~`` Where `7esn`[...e1][..\"d_str\"]).`5esn` =None(usn2 In 1000 Contains 0.e0 Where $usn1[..$`6esn`][..Null]) Starts With Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]|$`1esn` Starts With $999) On Match Set ``:`2esn`:`3esn`,@usn6 =None(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1])[`8esn`(00[``..][$`4esn`..],123.654[@usn5])],usn2 =$`3esn`[`2esn`...e0] Return usn2 =~0x0 As `8esn`,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn`,_usn3[`3esn`][False] Skip {@usn5:$@usn6[..$usn1],`1esn`:usn2[`3esn`][_usn3]}[..Any(`4esn` In 's_str'[12..'s_str'] Where Null Contains _usn4)][..{`7esn`:True[..'s_str'][..01]}] Limit [$12 Is Null Is Null,999 Contains Count ( * ) Contains 123.654][Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`)..Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0)][[Null Contains _usn4,$`7esn` Is Null Is Null]..({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3})] Create ((:`6esn`:`7esn`{_usn4:12[0X7..@usn6],_usn3:123456789 In $usn2 In `6esn`})<-[#usn7?:_usn3|:`4esn` *00..]->(:`6esn`:`7esn`{_usn3:\"d_str\" Is Null Is Null})<-[@usn6]->(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})),((#usn7 {#usn7:01234567[.12..7][1000..1.e1],``:@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]}))"), - octest:ct_string("Unwind usn1 Starts With $#usn7 Starts With `5esn` As `3esn` Detach Delete 0x0[0X7..][usn1..] Union All Optional Match ``=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))) Union Create ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})),((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) Detach Delete 1000 In 0X0123456789ABCDEF In 01,`3esn`()[Filter(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`)..{@usn6:`6esn`[_usn4..][$`6esn`..]}],Extract(usn1 In 0x0[..`4esn`] Where \"d_str\" Contains `3esn` Contains 00|Count(*) Ends With 010)[All(usn2 In 1000 Contains 0.e0 Where #usn8 Ends With `4esn` Ends With $`4esn`)..@usn6(Distinct _usn3 In .e1 In $12,123.654 Starts With usn1 Starts With @usn5)][All(usn2 In 1000 Contains 0.e0 Where 0.0[1000..][.e1..])..{`7esn`:`2esn`[$`1esn`..][$_usn3..]}] Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7}))"), - octest:ct_string("Unwind [`4esn` In $`8esn` Starts With 1000 Where `5esn` In 12][..Single(`6esn` In 0X7 =~`` Where .0 Starts With `2esn` Starts With `6esn`)][..[@usn5 In $#usn8 Is Null Is Null]] As `1esn` Optional Match ((:_usn3{usn2:$`5esn`[$123456789][`1esn`]})),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})) Where 01234567[Null..0.e0][Count(*)..$#usn8] Union With Distinct usn2 Is Not Null Is Not Null As `2esn`,False[`6esn`][07],0Xa[0xabc..] As usn2 Order By 9e1[0.e0..][#usn8..] Asc Skip #usn7 Is Not Null Is Not Null Detach Delete 1000[0.0][Null],$_usn4 Contains $_usn4 Contains 1.e1,Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Merge #usn8=((`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[:@usn6 *0X0123456789ABCDEF..{_usn3:`7esn` Ends With $usn2 Ends With 999}]-(`2esn` :_usn3)) Union All Merge ((#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})<-[ *00..{`3esn`:12 Ends With 01234567,`4esn`:00[``..][$`4esn`..]}]->(`2esn` :``)) On Match Set #usn7+=[#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`][Any(`4esn` In $`8esn` Starts With 1000 Where 123.654 Starts With usn1 Starts With @usn5)..],_usn3 =None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} On Match Set `1esn`+=.e0[..0X0123456789ABCDEF][...e12] Delete _usn3 Ends With #usn7,`3esn` Ends With 010 Unwind 12.e12[...0][..0x0] As usn2"), - octest:ct_string("Remove Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|1e1 Is Null).`7esn`!,Filter(usn1 In 0x0[..`4esn`] Where $0[$#usn8..01234567]).`6esn`!"), - octest:ct_string("Remove usn2(Distinct).@usn6"), - octest:ct_string("With Distinct ({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn`,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn` Skip 010 Starts With `7esn` Starts With 9e1 Limit 0Xa Starts With $`4esn` Starts With 1e1 Unwind 1e1 In 9e0 In 9e0 As _usn4 Union Remove (@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`6esn`,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]).usn2!,(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn`]->(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`1esn`! Unwind Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `4esn` Unwind {`4esn`:0X7 =~.0 =~\"d_str\",_usn4:00 Ends With $_usn4 Ends With $`2esn`} Ends With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Ends With [$`3esn`[@usn5..$123456789],00,'s_str'[.12..$#usn7][$999..`2esn`]] As usn1"), - octest:ct_string("With 07 Ends With 07 As #usn8,00[``..][$`4esn`..],$usn2 Is Not Null Is Not Null Limit {`4esn`:0X7 =~.0 =~\"d_str\",_usn4:00 Ends With $_usn4 Ends With $`2esn`} Ends With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Ends With [$`3esn`[@usn5..$123456789],00,'s_str'[.12..$#usn7][$999..`2esn`]] Remove [`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null|9e12 =~01 =~$`7esn`].#usn7! Optional Match usn2=(((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),#usn7=(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))) Where $_usn4[`3esn`][0] Union All With Distinct All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null,0xabc[$@usn5] As `7esn`,.e0[usn2..] As _usn3 Order By False[..12.e12] Descending Skip [\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Limit 7 In @usn5 In $`4esn` Where 12e12 Starts With $123456789 Starts With 12.0 Detach Delete 010 Starts With `7esn` Starts With 9e1 With Distinct *,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Order By .e0 Contains 01234567 Descending,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Desc,'s_str' Starts With 1000 Starts With #usn8 Descending Where 123456789 =~_usn4 =~$0 Union Create `4esn`=(:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) Remove {`5esn`:`6esn` =~01234567 =~0Xa}.#usn7,(usn1 :#usn7)<-[@usn6?{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(:`2esn`:`3esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})._usn4,(#usn7 :`2esn`:`3esn`)-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})-[_usn3? *00..]-(`1esn` :`1esn`).`4esn` Match ((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})),((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})<-[#usn8:`8esn`|:usn1 *123456789..999]-(`7esn` {usn2:`6esn`['s_str'..][010..]})<-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null}))"), - octest:ct_string("Create @usn5=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) Remove [_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4].@usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`!,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`)._usn4 With Distinct 9e12 Ends With 0X0123456789ABCDEF Ends With #usn7 As `8esn`,1000[123.654..9e12][1000.._usn3] As `6esn`,Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0} As `4esn` Where 7[..12e12][..$`6esn`] Union All Remove Single(#usn8 In $`5esn` Is Null Is Null Where .12[`1esn`..][$`3esn`..]).``!,Extract(usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01).#usn8?,Single(#usn8 In $`5esn` Is Null Is Null Where `3esn`[..7][..12e12]).`5esn`?"), - octest:ct_string("Remove All(`2esn` In `7esn` Starts With $`` Starts With $#usn7).#usn8!,[_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0].@usn6,(`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})-[?{`5esn`:0Xa In .e1 In Count(*)}]-({`1esn`:@usn6}).#usn7! Return *,(@usn6 {_usn4:$_usn4[#usn8..]})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)[Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null)..] Skip $`7esn` Ends With 07 Ends With 07 Union With [usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]] Starts With (`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` ) Starts With (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8) As `1esn`,`5esn` In $999 As `6esn`,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Order By #usn7 Starts With 0 Starts With 12 Asc Skip `` Starts With @usn5 Limit All(@usn5 In .12[#usn7][$`8esn`] Where $`5esn` Contains $@usn6) Is Null Is Null Where 12[..True][..$`4esn`]"), - octest:ct_string("Return Distinct *,Extract(`4esn` In `6esn`['s_str'..][010..] Where 07 In $7 In 12|$#usn8)[{`6esn`:12[usn1][True],`3esn`:$@usn6[..$usn1]}..][{`8esn`:00}..] As @usn5,$`2esn`[``..] As @usn6 Skip [usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]] Starts With (`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` ) Starts With (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8) Optional Match #usn8=((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(#usn7 :`3esn`:`1esn`)<-[?{`4esn`:12e12[$`5esn`][07]}]-(:`1esn`{_usn4:$_usn3[Null]})) Where 12 =~usn1 =~.e12"), - octest:ct_string("Remove True.`5esn`?,Filter(`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]).`7esn`,{`5esn`:#usn7 Is Not Null Is Not Null}.#usn8! Merge usn1=((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)) On Create Set Extract(#usn7 In 01234567[$`3esn`..] Where 0X7 In $999 In $``|9e1[...e0]).`7esn`! =0X7 In 's_str' In $`1esn`,{`3esn`:#usn7 Ends With `4esn` Ends With @usn5}.#usn8 =[usn1[..$_usn4][..``],0X7[.e12..01234567]] In `3esn`(@usn5[..True][..0X7],$`3esn` =~$`7esn` =~False) On Create Set `7esn`+=$7,Extract(#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7).`7esn`? =$999 =~False Optional Match `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}))"), - octest:ct_string("Unwind $`3esn` In $12 In 's_str' As `` Unwind .e12[usn2][01] As _usn3 Union All Unwind 1.e1[Null][12.e12] As `7esn` Unwind Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) As `4esn` Create `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Union All Create (`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})"), - octest:ct_string("Delete `6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),$@usn6[..$#usn7][..12.e12],.e0[`4esn`..`4esn`][0.0..$0] Delete 12.e12 In $1000,{_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]},$999 Ends With $`3esn` Ends With `8esn` Union Return Distinct *,Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null As `6esn` Remove Any(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0).usn1?,({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}).`5esn`! With *,{`7esn`:Count(*) In 01 In .0}[..{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}][..#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..])] As `5esn`,#usn7 Ends With `4esn` Ends With @usn5 As `` Where $`1esn` =~$`1esn` =~#usn7 Union All Return .e12[.12..][_usn4..] As _usn4 Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Delete 07 Ends With 07"), - octest:ct_string("Merge ((usn1 :`6esn`:`7esn`)) Merge _usn4=(((:`3esn`:`1esn`{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999})<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}))) Unwind 999 Contains `7esn` As `7esn` Union All Optional Match ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[ *010{@usn5:Null Is Null Is Null}]-({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]})),_usn4=(((:`3esn`:`1esn`{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999})<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}))) Where 00 Union Return $`4esn` Contains 0Xa,010 In `7esn` Order By 0x0 In `8esn` In 999 Descending"), - octest:ct_string("Optional Match (_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[`7esn`?:`4esn`|:`7esn` *..0X7]-(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}),usn1=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})) Where _usn3 =~00 Optional Match (((`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})<-[?:`7esn`|`2esn`]-(:`6esn`:`7esn`{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}))) Where 12.0[``] Delete Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null)[..[.e0 Contains #usn7 Contains $#usn8]] Union Merge usn1=(`3esn` :``) On Match Set All(`6esn` In 0X7 =~`` Where 0X7[..12e12])._usn4 =Null Starts With $`7esn` Starts With `2esn`,`5esn`+=999 Contains Count ( * ) Contains 123.654,usn1+=usn1[$`3esn`..$999][True..False] Unwind `5esn`[`1esn`..`1esn`] As _usn4"), - octest:ct_string("Merge @usn6=((:``{`5esn`:.e1 In $@usn6 In 999})) On Match Set None(`4esn` In 's_str'[12..'s_str'] Where @usn5 In 0X0123456789ABCDEF).`2esn`! =$`1esn` Is Null,`5esn`()._usn4! =[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00],`8esn` =`7esn` Contains .0 Contains 9e12 On Create Set _usn3+=True In All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12),#usn7+=`` Is Not Null,`5esn` =0.0[Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|_usn3 Ends With 12e12 Ends With .e0)][None(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5)..{@usn6:.12 Starts With 0Xa}] Union All Unwind 1.e1[Null][12.e12] As `7esn` Unwind Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) As `4esn` Create `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Union All With Distinct *,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7,@usn6 Starts With `7esn` Starts With Null Order By Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]|$0 =~$usn1 =~9e1)[{``:\"d_str\",`1esn`:$1000 =~$`7esn`}] Descending"), - octest:ct_string("Unwind Null Is Null Is Null As `4esn` Detach Delete 0X7[..12e12],$`5esn` Is Not Null,00 Ends With .12 Ends With `4esn` Union All Match ((({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(usn1 :_usn3{@usn6:True[..'s_str'][..01]})<-[`2esn`?]-(usn2 :`3esn`:`1esn`))) Where 12.0[..$7][..999] Union All Remove {#usn7:False[`2esn`..#usn8]}.#usn7?,@usn6(Distinct 0.12 In 01 In $`3esn`,'s_str' Starts With 1000 Starts With #usn8).#usn8,(:`1esn`{`8esn`:Count ( * ) =~Count(*)})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(`1esn` {_usn4:12.e12 Ends With 01 Ends With .e1})._usn4"), - octest:ct_string("With 0.12 In $7 In 0,#usn8 In $0 As `3esn` Order By None(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`) Contains `3esn`($usn2 Contains 12.e12 Contains 00) Ascending Unwind Count(*) Is Not Null Is Not Null As _usn4"), - octest:ct_string("Detach Delete usn1[1e1][$_usn4],999[$usn2..] Delete 's_str' In \"d_str\" In 123456789,9e12[..$``][..`6esn`],9e0[``][123.654] With @usn5 Starts With 12e12 Starts With @usn5,$1000 =~$`7esn`,\"d_str\" Starts With $usn1 As `7esn` Order By $0[..`8esn`] Desc,Count(*) Starts With 1e1 Starts With $123456789 Ascending,12e12[$`5esn`][07] Desc Limit Single(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8)[{_usn3:$0 Ends With $#usn7 Ends With .12}][[12.0[0Xa][00],.0[01][$12]]] Union Remove ({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`).#usn7!"), - octest:ct_string("Match _usn3=(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}),_usn3=(`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0}) Where .e12[$_usn4..][False..] Union All With Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] As @usn5,12 Is Null Is Null As #usn7 Limit 0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Create `6esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Union Create ({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[ *..0x0]->(#usn8 {usn2:7 Contains 9e1}) Create `7esn`=(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}),(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}))) Remove [`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999]].`5esn`!,usn1(0X7[.e12..01234567])._usn3"), - octest:ct_string("Create _usn3=(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})) With @usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Limit .12 Is Not Null Is Not Null Union All Create usn2=(({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)-[@usn5{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8}]->(usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) Unwind 0Xa Is Null Is Null As @usn5 Match `1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]}))"), - octest:ct_string("Merge (:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) With `6esn`['s_str'..][010..],$`4esn` Contains 0Xa Where 0X0123456789ABCDEF In $1000 In $`3esn` Detach Delete Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1),$@usn5 =~07 =~True Union All Remove {`4esn`:.12 Starts With 0Xa}.usn1!,[`6esn` In 0X7 =~`` Where 123456789 =~_usn4 =~$0|$#usn8 Ends With 1000 Ends With .0].`7esn`? Remove (:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[?:`1esn`]-(_usn4 :@usn6:`7esn`{@usn5:$_usn3[$`4esn`..Null]})._usn3!"), - octest:ct_string("Delete {usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7} Contains {`5esn`:$7[.12]} Contains Extract(usn1 In 00 Starts With _usn3 Where 07 Contains #usn8 Contains $_usn3|`2esn`[$`1esn`..][$_usn3..]) Union Return Distinct #usn8 In $0 As `1esn`,'s_str' In \"d_str\" In 123456789,[0Xa[$``..][01234567..]] Contains `3esn`(Distinct _usn3 In .e1 In $12) Contains (`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']}) As @usn6 Order By Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Ascending,0xabc[$@usn5] Asc,usn1[..$_usn4][..``] Ascending Union All Merge `1esn`=((({`6esn`:$`8esn`[..$``]})-[`2esn`]-(@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12}))) On Match Set #usn7 =(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`) Is Not Null Is Not Null,`1esn` =`` =~12 =~$#usn7,[123456789[$#usn7..],_usn4[0xabc..],$`3esn` Starts With 01234567 Starts With $1000].`1esn`! =0X0123456789ABCDEF Starts With `2esn` Starts With $999 Remove Any(#usn7 In 01234567[$`3esn`..] Where 0Xa[0xabc..$#usn8])._usn4! Optional Match (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5)))"), - octest:ct_string("Merge `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) On Match Set usn2+=$`4esn`[9e1..][0..],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null},(usn1 :#usn7)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->(`4esn` {`7esn`:.e0[..999][..0X7]}).usn2 =$`3esn`[`2esn`...e0] Unwind $_usn4[`3esn`][0] As `7esn` Optional Match _usn3=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))),usn2=((`5esn` :`7esn`)) Where $@usn6[..$#usn7][..12.e12] Union Detach Delete Null Contains _usn4,12.e12[0e0..7]"), - octest:ct_string("Match (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0) With *,12.0[``] As @usn6 Order By \"d_str\" =~`3esn` =~0Xa Desc,_usn3[0] Desc,`5esn` Ends With .e1 Ends With $_usn4 Asc Unwind @usn6 Contains _usn4 Contains $`4esn` As `4esn`"), - octest:ct_string("With $`1esn` Starts With $999 As #usn8,False In $`7esn` In .0 Skip 123456789 Starts With #usn7 Starts With `6esn` Limit 12e12 Is Not Null Where $999[$1000] Merge `6esn`=((@usn6 :`8esn`{`2esn`:0X7 =~.0 =~\"d_str\"})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})) On Create Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$`` On Create Set #usn8+=Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)],`2esn` =$_usn4[$`1esn`..][$0..] Union Create #usn8=(usn1 :`4esn`:#usn8) With [#usn8 In $`5esn` Is Null Is Null Where 0.0[..12e12][..$0]][{`2esn`:.e1 In $@usn6 In 999,usn2:@usn5 Ends With $`3esn` Ends With 12e12}..] As @usn5,usn2[`3esn`][_usn3] Order By None(usn2 In 1000 Contains 0.e0 Where $`6esn`[Count(*)..0.e0][0.0..Count ( * )])[(:usn2:@usn6{@usn6:$`4esn`[$`2esn`..]})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})][Any(@usn6 In @usn5 In $`6esn` Where 12.0[0Xa][00])] Descending Merge ((@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})) On Match Set [@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where .e0[..999][..0X7]]._usn4 =(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) On Match Set usn2 =$`4esn`[$`6esn`]"), - octest:ct_string("Remove [_usn3 Ends With 0x0 Ends With 01234567,9e0[$_usn3..0X7][7..$#usn8]].`6esn` Delete 999 Contains `7esn` Return Distinct *,12 Is Null Is Null As #usn7,$`7esn` Ends With $0 Ends With .e12 As `` Order By $0[01234567..00][$`2esn`..$@usn6] Desc,12.e12['s_str'] Desc,123456789 Starts With #usn7 Starts With `6esn` Asc Limit 999 In 9e1 In 7"), - octest:ct_string("Return Distinct 0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str' Limit usn2[$`7esn`..010][00..``] With `5esn` In $999 As `6esn` Order By [_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]][[.0 Starts With `2esn` Starts With `6esn`,9e1[0.e0..][#usn8..]]..][[07[$999],9e0 In 01234567,@usn5 In 0X0123456789ABCDEF]..] Asc,False Ends With $`8esn` Asc Where @usn5 Ends With $`3esn` Ends With 12e12"), - octest:ct_string("Unwind $_usn4[`3esn`][0] As _usn4 Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) Create (((`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})<-[?:`7esn`|`2esn`]-(:`6esn`:`7esn`{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}))) Union All Remove {`8esn`:Count ( * ) =~Count(*)}.`6esn`,({@usn6:0X0123456789ABCDEF[..usn1]})<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)._usn4?,(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`4esn` Union Optional Match _usn3=(#usn8 {usn2:7 Contains 9e1})-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}) Where \"d_str\""), - octest:ct_string("Remove [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]|9e0 Starts With `6esn`].#usn8? Union All Unwind @usn5 =~.0 =~$`1esn` As `` Merge usn2=(({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)-[@usn5{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8}]->(usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})) On Create Set _usn4+=(`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})[[`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5]..{usn2:$`4esn`[12.e12..][0.0..]}],`6esn`+=$`2esn` Contains usn1 Contains `2esn`"), - octest:ct_string("With Distinct `` Is Not Null Is Not Null As @usn6,`5esn`[`1esn`..`1esn`],[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4 Order By Count(*) Is Null Descending,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0] Ends With [`4esn` In 's_str'[12..'s_str'] Where 0.12 In 01 In $`3esn`|9e0 =~$`5esn`] Ascending,[0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] Asc Skip 1000 Contains 123456789 Contains 1e1 Limit $`6esn`[`3esn`..0e0] With Distinct .e0[`4esn`..`4esn`][0.0..$0] As `7esn` Order By None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) Descending,01234567[.12..7][1000..1.e1] Ascending Where #usn7[..$1000][..01] Delete [$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union Delete $`4esn`[12.0..`5esn`],$`6esn` Ends With True Ends With True"), - octest:ct_string("Create (`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(`7esn` :`8esn`{`4esn`:00 Ends With .12 Ends With `4esn`})-[ *07..]->(usn2 :@usn6:`7esn`)"), - octest:ct_string("Match `5esn`=(((`` :usn1)<-[#usn8:`3esn`|:`4esn` *0..010]->(`3esn` :usn2:@usn6)-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}))),((_usn3 :_usn4:usn1)<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})) Where $_usn3[Null] Union Optional Match (`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Where $`8esn` =~$usn2"), - octest:ct_string("Unwind 07[$`5esn`..]['s_str'..] As _usn3 Unwind Null Is Null Is Null As usn1 Unwind 123456789 =~Filter(usn2 In 1000 Contains 0.e0 Where 0X7[0e0..]) =~{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999} As `7esn`"), - octest:ct_string("Merge @usn5=((#usn7 {#usn7:01234567[.12..7][1000..1.e1],``:@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})) On Create Set @usn5(Distinct 12e12[_usn3..][$@usn5..],7 Contains 9e1).`6esn` =$@usn5 In 12e12 In Count(*) Match `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Remove ({@usn6:0X0123456789ABCDEF[..usn1]})<-[`4esn`:#usn8]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(#usn8 :`7esn`).`6esn`? Union Detach Delete 1000 In 0X0123456789ABCDEF In 01,@usn6(Distinct Null[0e0][12])[..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]]][..`8esn`(010 =~`6esn`)],1e1 Starts With #usn8 Starts With 1.e1 Detach Delete Null Starts With $`7esn` Starts With `2esn` Delete $7 Ends With 12.0 Ends With 0xabc,usn1 =~Null =~`5esn` Union Optional Match ((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null})-[#usn7:`1esn` *07..]->(#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})),_usn4=(`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) Where Count(*)[12.e12..] Optional Match `6esn`=((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})),((@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})) Where 's_str' Ends With .e0"), - octest:ct_string("Unwind 12.e12[$1000..] As `4esn` Union Match (usn2 :#usn8{`3esn`:123.654[@usn5]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`}) Where 0.12[Null..] Optional Match #usn8=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),((#usn7 :_usn3)<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]})-[#usn7:_usn3|:`4esn`]-(:#usn7{usn1:$123456789[..0.12][..#usn7]})) Merge ((_usn4 {`8esn`:9e1 In 01 In 999})) Union All With 12e12[Null] As usn2,$`4esn`[0][0e0] As _usn3,12e12 Starts With $123456789 Starts With 12.0 Order By Count(*)[.e0.._usn4] Asc Skip (`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Where $`7esn` Ends With `1esn` Ends With True Merge `4esn`=({`8esn`:0X7 In 's_str' In $`1esn`})"), - octest:ct_string("Unwind Count(*)[`7esn`..$12] As `6esn` Detach Delete All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.e12 Contains `5esn`) Starts With None(@usn5 In $#usn8 Is Null Is Null) Starts With `3esn` Unwind #usn7 Contains .0 Contains .e1 As usn1 Union All Unwind Count(*)[`7esn`..$12] As `6esn` Detach Delete All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.e12 Contains `5esn`) Starts With None(@usn5 In $#usn8 Is Null Is Null) Starts With `3esn` Unwind #usn7 Contains .0 Contains .e1 As usn1"), - octest:ct_string("Detach Delete 0 Is Not Null,#usn7 Contains 07 Union All Return $`4esn`[12.e12..][0.0..],12[`7esn`...0][0.12..``] As @usn6,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Skip $`1esn` Ends With $`1esn` Union Detach Delete 010 Starts With `7esn` Starts With 9e1 With `` Contains 12 Contains True Order By #usn7 Starts With 0 Starts With 12 Asc Skip True =~@usn5 =~$`1esn`"), - octest:ct_string("Merge ((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Merge `3esn`=((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) On Match Set `6esn` =$@usn5[Count ( * )] Union All Create ((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1}))"), - octest:ct_string("Return Distinct Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) As _usn4 Merge `3esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) On Create Set _usn3+=True In All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12),#usn7+=`` Is Not Null,`5esn` =0.0[Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|_usn3 Ends With 12e12 Ends With .e0)][None(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5)..{@usn6:.12 Starts With 0Xa}] Optional Match (@usn5 {usn2:$999[12.0..]})<-[usn1]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[_usn3?:``|:_usn4]->(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}) Union Create _usn3=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))) Merge usn1=((`3esn` :``)<-[`4esn`]->(`7esn` :#usn8)<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(_usn4 )) On Match Set (`3esn` :usn2:@usn6)<-[`7esn`?:@usn5|`8esn`]-(`1esn` :``).#usn7! =Count ( * )[`3esn`..][`2esn`..],[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where .e0 In $@usn5 In $0|0.12 Contains .e1].`3esn` =`1esn`[0e0..],_usn3+=(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})[[#usn7 In 01234567[$`3esn`..] Where usn1 Contains False Contains ``]..] On Match Set usn1 =$`6esn`[..0X0123456789ABCDEF],Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]).@usn6 =$123456789 Contains usn2,`` =#usn8[$_usn3..7][``..$`5esn`] Union Create `4esn`=(((`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[?{`4esn`:0.e0 Ends With 12 Ends With $7,@usn6:$``[_usn4..][`7esn`..]}]->(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]}))),((:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Unwind Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As usn2 Delete `2esn` Starts With $_usn3 Starts With `2esn`,9e1 =~.0 =~$`1esn`"), - octest:ct_string("Create ((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`1esn`{`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654}]->(`7esn` :`7esn`)),#usn8=((`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[:@usn6 *0X0123456789ABCDEF..{_usn3:`7esn` Ends With $usn2 Ends With 999}]-(`2esn` :_usn3)) Unwind 0X0123456789ABCDEF[..usn1] As _usn3"), - octest:ct_string("Match usn1=(`4esn` :#usn7)-[_usn4?:`6esn`]-(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) Where $`5esn` In `2esn` In .0 With Distinct 07 Contains 1000 As @usn5,$123456789 =~$#usn8 =~$#usn8 Order By None(`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789])[(`` {`8esn`:0X7 In $@usn5 In 9e0,_usn3:@usn6[$`3esn`]})-[usn1{#usn7:7 Contains 9e1,`5esn`:$`` Ends With 12e12}]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})..0e0][{`1esn`:$@usn6 Contains 07 Contains 0.e0}..{`3esn`:0.12 In $7 In 0,_usn3:07[$999]}] Asc,12e12[.12..] Descending Where 9e12[usn2..7][.e1..$`7esn`]"), - octest:ct_string("Detach Delete $usn2[False..`7esn`][`7esn`.._usn3],$12[..7][..07],Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null With Distinct $`1esn` Starts With $999 As #usn8,False In $`7esn` In .0 Order By .e12[usn2][01] Desc,0 Ends With $7 Ends With _usn3 Ascending,Extract(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|Null Starts With $`7esn` Starts With `2esn`) =~{`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0} Descending Skip [1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Limit \"d_str\" Where Count(*) In 01 In .0 Union Merge _usn4=(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) On Create Set _usn3 =(usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Is Null Is Null,`1esn` =7 Contains $`5esn` Contains $usn1,usn2 =\"d_str\" =~`3esn` =~0x0 On Match Set @usn6+=(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}] Match `8esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]}))"), - octest:ct_string("Detach Delete 0X0123456789ABCDEF Contains 12.e12 Contains 999,0X0123456789ABCDEF In $1000 In $`3esn`,'s_str' Is Not Null Is Not Null Return Distinct *,$usn1[#usn8..][``..] As `2esn`,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As @usn5 Order By $1000 Is Null Is Null Descending,1000 In 0X0123456789ABCDEF In 01 Asc Union All Unwind 1.e1 Is Not Null Is Not Null As @usn6 With Distinct 0x0[0X7..][usn1..] As _usn4 Order By `6esn` Starts With $usn2 Starts With 0.0 Ascending,0X7 In $@usn5 In 9e0 Descending Union All Unwind $`5esn`[False] As `6esn` Return *,$0[7..][Null..] As `7esn`,`3esn`()[Filter(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`)..{@usn6:`6esn`[_usn4..][$`6esn`..]}] Order By (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Asc,.e1[..$``][..0X0123456789ABCDEF] Ascending Skip 01[..$``][..$`7esn`] Merge `3esn`=(({`5esn`:0.12 Contains .e1})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0})-[:@usn5|`8esn` *123456789..999{usn1:9e12 Is Not Null Is Not Null}]-(#usn7 :`5esn`)) On Match Set @usn5+=`` In `6esn`,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`` Is Null Is Null).`` =12.e12 Is Not Null On Match Set `` =None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..],#usn7($`8esn`[$``..$7][$1000..$`7esn`],`2esn` In 7 In usn2).`6esn`? =$_usn4['s_str'..],`4esn`+=$`7esn` Ends With $usn2"), - octest:ct_string("Unwind usn1 Contains $`` As `7esn` Unwind $`6esn` =~1e1 As _usn4"), - octest:ct_string("Match (@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0}) Optional Match ((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`)<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)) Where 0.12 Contains $`2esn` Contains $_usn4 Union All Detach Delete $12[..``][..$7] Delete 01234567[$`3esn`..],(:`5esn`{@usn6:0Xa Is Not Null Is Not Null,usn2:@usn6 =~01})<-[`2esn`?*..]->(:#usn8{`5esn`:0 Contains 12e12})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}) Is Null Union With *,#usn8 Starts With 0x0 Starts With $@usn5,`1esn` In 07 In 0e0 As `1esn` Skip $7[$`8esn`..7][$1000..$`5esn`] Where `7esn` Starts With $`` Starts With $#usn7"), - octest:ct_string("Remove [0e0].`7esn`! Detach Delete 0Xa[..$``],9e0 In 01234567 Remove {`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}.@usn5?"), - octest:ct_string("Unwind 9e0[False] As #usn8 With Distinct *,0.12 In $`4esn` In `6esn`,`4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}] As `2esn` Skip 0X7[..12e12] Unwind `2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As _usn3 Union All With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null,0xabc[$@usn5] As `7esn`,.e0[usn2..] As _usn3 Skip 0x0 In `8esn` In 999 Where 07[0..`4esn`] Merge ((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Detach Delete .e0[`4esn`..`4esn`][0.0..$0] Union Unwind $`7esn` Ends With 07 Ends With 07 As `3esn` Create ((:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})),({`5esn`:123456789 Starts With `2esn` Starts With .0})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})<-[`` *12..0xabc]->(`3esn` :_usn4:usn1) Match _usn3=((@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]}))"), - octest:ct_string("Create ({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[ *..0x0]->(#usn8 {usn2:7 Contains 9e1}) Create `7esn`=(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}),(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}))) Remove [`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999]].`5esn`!,usn1(0X7[.e12..01234567])._usn3 Union Create `4esn`=((:`7esn`{``:$`1esn` Starts With @usn6})),@usn5=((@usn6 :#usn7{@usn5:Null Is Null Is Null})<-[``?:@usn5|`8esn`]->(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})) Merge `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Remove Extract(_usn4 In usn1 Contains False Contains `` Where $12 Contains 123.654 Contains `8esn`|`5esn` In 12).#usn8?,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`7esn` Ends With $`2esn` Ends With $usn1|0[0.12..]].@usn5?"), - octest:ct_string("Merge @usn5=(((:`1esn`{#usn7:1e1[`6esn`..]})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) On Create Set _usn4 =All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)[[usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1]],#usn7 =_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) On Create Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$``"), - octest:ct_string("Match ((:_usn3{usn2:$`5esn`[$123456789][`1esn`]})),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})) Where $0[$#usn8..01234567]"), - octest:ct_string("Create (`8esn` :`1esn`),`2esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})) Optional Match `7esn`=(@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Unwind 12.e12[$1000..] As `4esn` Union Remove [#usn7 In 01234567[$`3esn`..] Where .12 Starts With @usn5 Starts With $#usn8|$`6esn`[$`1esn`][1000]].@usn6?,usn2($#usn8 Is Null Is Null)._usn4 Union Unwind .e12[usn2][01] As _usn3 Match usn2=((#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`6esn`?:usn1|`3esn`{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})),((usn1 :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)) Where $0[01234567..00][$`2esn`..$@usn6] Merge (((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) On Create Set @usn6 =`3esn`[..7][..12e12]"), - octest:ct_string("Merge `1esn`=(((:_usn3{@usn6:$`7esn` Is Null Is Null})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)<-[`3esn`? *999..{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`}]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) On Match Set _usn3+=01 In 01 In 12,#usn7 =$@usn5,`1esn`:`5esn` Detach Delete $@usn6[_usn3..0.e0] With [#usn8 In $`5esn` Is Null Is Null][Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where #usn7[..$1000][..01])..][[@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]]..],(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[usn1?:`8esn`|:usn1]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Is Null Is Null As #usn7,1e1[..#usn8][..'s_str'] As #usn8 Order By `3esn`[$123456789][$#usn7] Ascending,{@usn6:12.0[``],_usn4:$`3esn` Contains 0X0123456789ABCDEF Contains 00} Ends With Single(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Ends With Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999|12.0[``]) Asc Skip (:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0}) Starts With Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) Starts With [12.0 In 1000 In _usn4] Limit 00[01234567][False] Union Detach Delete 01 In _usn3 In 12,`1esn`[`3esn`..][$@usn6..]"), - octest:ct_string("Detach Delete $#usn7[...e12][..$7],({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]}) =~`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0) Union All Merge usn2=(({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)-[@usn5{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8}]->(usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})) On Create Set Any(@usn6 In @usn5 In $`6esn` Where $`5esn` Contains $@usn6).`6esn`? =010[$`8esn`..][0..],`5esn`+=`5esn` In 12,`2esn` =Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])[..[True =~@usn5 =~$`1esn`]][..Any(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`)] On Create Set (#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})<-[@usn5 *0X0123456789ABCDEF..]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(:usn1{`6esn`:1000 Contains 0.e0,`7esn`:$@usn6[..$#usn7][..12.e12]}).`7esn`? =$usn2 =~$_usn4 =~`5esn`,#usn8+=Null[1.e1..],`4esn` =(`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)[Filter(@usn6 In @usn5 In $`6esn` Where $999[$1000])..][#usn7($`8esn`[``..][123.654..],12.e12 Contains `5esn`)..] Create ((`3esn` {`8esn`:$``[_usn4..][`7esn`..]})) Union Unwind `1esn`(Distinct Count(*)[..`3esn`]) Starts With $0 As `3esn`"), - octest:ct_string("Optional Match ((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})),(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))) Where 00 In 1e1 Create `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Unwind [@usn5 In .12[#usn7][$`8esn`] Where $_usn4[12e12][`4esn`]][`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])..``(False In `3esn`)][[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]]..Filter(@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12])] As @usn6 Union All Delete 7[..0X7][..'s_str'],9e0 Ends With $`7esn`,$0 Ends With $#usn7 Ends With .12 Create (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0),((:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})) Union With 's_str'[..0.0][..$`4esn`] As `2esn`,#usn7 Contains .0 Contains .e1,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Skip `6esn` Starts With $usn2 Starts With 0.0 Limit 9e1 Contains $`3esn` Contains 01234567 Where True Starts With $`8esn` Starts With \"d_str\" Merge `2esn`=(:_usn4:usn1) On Match Set `6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`7esn` =9e1[0.e0..][#usn8..],#usn7+=({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Ends With @usn6(123456789 =~$123456789) Ends With [`1esn` Contains Count ( * ),$@usn6 Contains Count ( * ),False In 123456789 In $0] On Create Set `` =(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[usn1?:`8esn`|:usn1]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Is Null Is Null,`7esn`+=(`7esn` :_usn4:usn1)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`) Starts With ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2) Starts With Extract(usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]|07[`6esn`..][`5esn`..]),`2esn`:`1esn` With Distinct $0 Is Null Is Null Skip [0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',0X0123456789ABCDEF In $1000 In $`3esn`,$0[..`8esn`]] In `4esn`(Distinct 12.e12 In $0 In Count(*),00 In 1e1) In [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]|.e0 =~`5esn`] Where 010 Contains Count(*)"), - octest:ct_string("Return Distinct *,\"d_str\"[Count ( * )] As `7esn`,0x0[123456789] As @usn6 Skip `1esn`[@usn6..$123456789] Remove Any(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`]).`6esn`?,[$0 Ends With $#usn7 Ends With .12,$7,@usn5 Ends With $`3esn` Ends With 12e12].`1esn`? Union Optional Match _usn3=(#usn8 {usn2:7 Contains 9e1})-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}) Where \"d_str\""), - octest:ct_string("Remove All(`4esn` In 's_str'[12..'s_str'] Where $`8esn`[..$``]).`7esn`!,usn2(07[$999]).`4esn` Remove [_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4].@usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`!,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`)._usn4 Create #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`) Union All With Distinct 01234567 Ends With 0x0,[`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As #usn8,$1000 Is Not Null Is Not Null Order By None(@usn5 In 0X7 =~.0 =~\"d_str\" Where _usn3[...e1])[[_usn4 In usn1 Contains False Contains `` Where 0.12 In $7 In 0]..][[7[..12e12][..$`6esn`]]..] Asc,12[usn1][True] Desc Limit 010 Contains Count(*) Where 0.12 Ends With $usn1 Ends With $@usn5 Return *,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn`,$_usn3 In $#usn8 As #usn7"), - octest:ct_string("Match @usn6=((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]->(:_usn3{@usn6:$`7esn` Is Null Is Null})),((({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999})<-[@usn6?:`6esn`*..]-(_usn3 :usn2:@usn6)-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6))) Where #usn7 Ends With 9e1 Optional Match #usn7=(:#usn7{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[:@usn5|`8esn`*..]-(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) Match (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Where Count ( * ) =~Count(*)"), - octest:ct_string("Detach Delete Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1)[00..],({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) In None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 9e0[$_usn3..0X7][7..$#usn8]) In _usn3(Distinct 010[@usn5..]),Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)]"), - octest:ct_string("Create @usn5=(({`8esn`:$usn1[0.12..]['s_str'..],`8esn`:`1esn`[0e0..]})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})),_usn4=(@usn6 {#usn7:False[`2esn`..#usn8]})<-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]-(`4esn` {@usn6:True[..'s_str'][..01]}) Match ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})) Where $`1esn` Starts With $999 Union All Merge #usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) Delete ``[$`3esn`][$`2esn`],12 Ends With 01 Ends With 1e1,.12 Starts With 0Xa Union Create (_usn3 :_usn4:usn1),((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(@usn5 {_usn4:010[$@usn6],`6esn`:123456789[1e1..0.0]})<-[`6esn`?:`2esn`|usn2 *01234567..12]->(:`7esn`{#usn7:True =~@usn5 =~$`1esn`})) With @usn6 =~01,12.0 In 1000 In _usn4 As _usn3,0 =~12.e12 =~$`` As #usn7 Order By [usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]] In [0xabc[12.e12..`1esn`]] In {@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} Asc,[0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]) Descending,Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1) Asc Skip 07 In $7 In 12 Where Count ( * ) Create ((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 ))"), - octest:ct_string("Merge @usn5=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) On Match Set [@usn5 In 0X7 =~.0 =~\"d_str\" Where 12.e12 Ends With 01 Ends With .e1|00 Starts With _usn3].`2esn`? =None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`)[`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)..] On Match Set _usn4:#usn8 Merge `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) On Create Set `4esn` =010 In `7esn`,usn2+=0.e0[@usn6][0x0]"), - octest:ct_string("Delete False[`2esn`..#usn8],#usn8 Contains .e0 Contains $`8esn`,Null Starts With _usn4 Starts With `6esn` Remove Single(_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0).#usn8?,[`2esn` Is Not Null Is Not Null].`7esn`"), - octest:ct_string("With Distinct 12.0 Contains 9e0 Contains $`7esn` As `6esn`,$`4esn` Contains `6esn` Contains #usn7 Order By `5esn`[`1esn`..`1esn`] Ascending,$1000[01234567] Ascending Skip Null Contains 9e1 Where 7 =~9e0 =~'s_str' Optional Match usn2=((`1esn` :usn2:@usn6)-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})) Optional Match `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Union Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Optional Match ((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)),((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]}))"), - octest:ct_string("Merge `2esn`=((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})) On Match Set `4esn`+=999 In 9e1 In 7,{`6esn`:$_usn4[$`8esn`..][07..]}.@usn6! =`3esn`[$`1esn`..],Filter(usn2 In 1000 Contains 0.e0 Where 010 =~$usn2 =~1e1)._usn3! =$0 =~$usn1 =~9e1 With Any(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null)[Extract(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1)..] As `3esn` Order By 010 Contains Count(*) Desc,1e1 In $999 In $usn2 Ascending,@usn6(Distinct 12.e12[0e0..7],usn1[Count ( * )..$usn1]) Is Null Is Null Descending Skip True Is Not Null Is Not Null Limit None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} Unwind 12 =~usn1 =~.e12 As `7esn` Union All Merge _usn3=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)) Union All Unwind \"d_str\" =~`3esn` =~0Xa As `1esn`"), - octest:ct_string("With Distinct 0xabc[$@usn5] As usn2,(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] Order By $12[01..][1.e1..] Ascending,0x0 =~_usn4 Desc Detach Delete $@usn5 In 12e12 In Count(*),`` =~12 =~$#usn7,Null Contains _usn4 Merge `5esn`=(({_usn3:$0 Ends With $#usn7 Ends With .12})) Union Unwind usn1 Contains False Contains `` As #usn8 Return Distinct _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0),$`7esn` In 0.e0 In `4esn` As `2esn` Limit Any(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) Is Not Null Is Not Null Remove Extract(`4esn` In `6esn`['s_str'..][010..] Where 12 =~usn1 =~.e12|$`2esn`[..`2esn`]).`8esn`!"), - octest:ct_string("Unwind [usn1 In 1000 In $`5esn`][Extract(#usn8 In $`5esn` Is Null Is Null Where $usn2 Is Not Null|$_usn3 =~`7esn` =~$_usn4)] As @usn5"), - octest:ct_string("Create (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0),((:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})) Unwind [@usn6 In @usn5 In $`6esn` Where $999[$1000]|$7[.12]] In {`1esn`:$@usn6 Contains 07 Contains 0.e0} In (`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) As `2esn` Union All Unwind $`5esn`[False] As `6esn` Return *,$0[7..][Null..] As `7esn`,`3esn`()[Filter(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`)..{@usn6:`6esn`[_usn4..][$`6esn`..]}] Order By (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Asc,.e1[..$``][..0X0123456789ABCDEF] Ascending Skip 01[..$``][..$`7esn`] Merge `3esn`=(({`5esn`:0.12 Contains .e1})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0})-[:@usn5|`8esn` *123456789..999{usn1:9e12 Is Not Null Is Not Null}]-(#usn7 :`5esn`)) On Match Set @usn5+=`` In `6esn`,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`` Is Null Is Null).`` =12.e12 Is Not Null On Match Set `` =None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..],#usn7($`8esn`[$``..$7][$1000..$`7esn`],`2esn` In 7 In usn2).`6esn`? =$_usn4['s_str'..],`4esn`+=$`7esn` Ends With $usn2 Union Detach Delete $999[..`1esn`],$usn2[$123456789..123.654][$`5esn`..'s_str'] Return 00 Ends With $_usn4 Ends With $`2esn` As `5esn` Order By $`8esn` In \"d_str\" In 9e12 Desc,`3esn`(.e0 =~`5esn`)[Single(`6esn` In 0X7 =~`` Where $`3esn` =~Null)][[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $_usn3[$`4esn`..Null]|False[`2esn`..#usn8]]] Asc,1e1 In 9e0 In 9e0 Ascending"), - octest:ct_string("Unwind [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] As `2esn` Merge `8esn`=(:`8esn`) On Match Set [999[``..][Null..],`5esn` =~0Xa].@usn6? =[`6esn` In 0X7 =~`` Where `` Contains 12 Contains True|@usn5[..True][..0X7]][(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})..{`4esn`:9e0 Starts With `6esn`}][Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `5esn`[`1esn`..`1esn`])..(`3esn` :usn2:@usn6)<-[`7esn`?:@usn5|`8esn`]-(`1esn` :``)],#usn8+={`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}],`3esn` =7[..0X7][..'s_str'] Merge (#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[#usn7{#usn7:False[`2esn`..#usn8]}]->(`5esn` :`2esn`:`3esn`{_usn3:$`2esn`[$123456789..$`1esn`][0Xa..$``],`5esn`:12.e12[@usn5..123.654]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}) On Match Set {`6esn`:$_usn4[$`8esn`..][07..]}.@usn6! =`3esn`[$`1esn`..],Any(usn1 In 0x0[..`4esn`] Where \"d_str\" Contains `3esn` Contains 00)._usn4! =`3esn`[..7][..12e12] On Match Set @usn5 =$usn2 =~$_usn4 =~`5esn`,[`4esn` In `6esn`[1e1..] Where _usn3 Is Null|$`8esn`[..$usn1][..'s_str']].usn1? =$usn2[..12.0],{_usn4:$_usn4[`3esn`][0],`6esn`:False[`2esn`..#usn8]}.`8esn`? =Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..]"), - octest:ct_string("Detach Delete `7esn` In 's_str' In 0.12,9e0[False] Merge `1esn`=((({`6esn`:$`8esn`[..$``]})-[`2esn`]-(@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12}))) On Match Set @usn5+=Extract(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With [01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] Starts With (`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})<-[:`6esn`]->(@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})<-[@usn6?:@usn5|`8esn` *..01{_usn4:07 Ends With 07,`8esn`:`6esn`[1.e1..$#usn7][.e0..True]}]-(usn2 :`3esn`:`1esn`) On Match Set Single(`6esn` In 0X7 =~`` Where 9e1[0.e0..][#usn8..])._usn3! =0X7 =~`4esn` =~`8esn`,`4esn` =0.12 =~9e0 Union All Optional Match `5esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``),`4esn`=(:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8) Where 07[12][$`6esn`] Unwind ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]}) =~`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0) As `3esn` Union With Distinct *,`6esn`[@usn6..01][.0...e12],12.e12[$1000..] Order By None(`4esn` In 's_str'[12..'s_str'] Where 12.0[0Xa][00]) Is Not Null Desc,[$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] Desc Limit `7esn` Starts With $usn2 Starts With .e0"), - octest:ct_string("Return Distinct @usn5[_usn4..][.e0..] As usn1,$@usn6[..$#usn7][..12.e12] Order By $_usn4[`3esn`][0] Descending,.12 Starts With 0Xa Asc Union All Create _usn3=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)),(((`3esn` :`8esn`)-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(_usn3 :usn2:@usn6)-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}))) Merge ((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})) On Create Set [$`6esn` Is Null Is Null,Count ( * )[@usn6..0x0],0.0[1000..][.e1..]]._usn3! =.0 Starts With `2esn` Starts With `6esn`,({``:\"d_str\",`1esn`:$1000 =~$`7esn`})-[usn1?:_usn3|:`4esn` *123456789..999{`6esn`:01 Ends With .e0,`4esn`:$`7esn` Is Not Null}]->(_usn3 ).`4esn` =usn2 Is Not Null Match (#usn7 :@usn5)-[`4esn`:_usn3|:`4esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:usn1{`8esn`:usn1 Contains $``}),``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]})"), - octest:ct_string("Return $`1esn` Starts With `8esn` Starts With $0,`` Is Not Null Is Not Null As @usn6,$123456789[$`2esn`][True] As `7esn` Skip {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7) Limit False Ends With $`8esn` Return *,{@usn6:0Xa Is Null Is Null,`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]} =~_usn4(usn2[`3esn`][_usn3]) As `7esn`,0[usn2..] Order By Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) Is Null Descending,#usn8 In $0 Descending,_usn3 Ends With 0x0 Ends With 01234567 Ascending Skip 1e1[..False]"), - octest:ct_string("Remove _usn4:@usn5 Union Create `4esn`=((({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[usn2?]-(`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))),((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` )) Create @usn5=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}))"), - octest:ct_string("Create @usn5=((:#usn8$usn1)-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})),((#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})) Unwind .e12 =~0.0 =~9e0 As `8esn` Delete \"d_str\" =~12.e12 =~07,Null[0.e0..0x0] Union Return 010 In @usn6 Order By False Starts With Count ( * ) Ascending,Count ( * )[..1e1] Asc Skip Extract(usn2 In 1000 Contains 0.e0 Where `7esn` Contains .0 Contains 9e12|_usn3 Is Null)[Single(_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01])] Union Unwind usn2 Starts With @usn6 As #usn7 With $`2esn`[..`2esn`] As `5esn` Order By _usn3 =~00 Asc Where #usn7 Ends With `4esn` Ends With @usn5"), - octest:ct_string("With @usn6 Starts With `7esn` Starts With Null,$usn1[#usn8..][``..] As `2esn`,`3esn`[$`1esn`..] As usn2 Skip ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]]"), - octest:ct_string("Detach Delete 9e1 Starts With 9e1 Starts With 010,010 Contains 0X0123456789ABCDEF,(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})[Single(`4esn` In 's_str'[12..'s_str'])..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)] Delete [12.e12 Ends With 01 Ends With .e1,$@usn5[0.12..][@usn5..],$usn1 In 1000 In $#usn7] Is Not Null,9e1[...e0],`6esn` Starts With $`5esn` Unwind All(`4esn` In $`8esn` Starts With 1000) Is Not Null As _usn4 Union Merge _usn3=((_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})) Optional Match #usn7=(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})<-[`2esn` *12..0xabc{`6esn`:$123456789[0.0..],@usn5:999[$`6esn`]}]-(`7esn` {`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) Match `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}))"), - octest:ct_string("Optional Match @usn6=(`` :#usn7)<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})<-[`5esn`?:`6esn`]->(`6esn` :`6esn`:`7esn`{_usn4:\"d_str\"}),`6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Where 0.e0 Ends With 12 Ends With $7 Unwind 0X7 =~`4esn` =~`8esn` As `7esn` Match ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})) Where $`1esn` Starts With $999"), - octest:ct_string("Return usn2 =~0x0 As `8esn`,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn`,_usn3[`3esn`][False] Skip {@usn5:$@usn6[..$usn1],`1esn`:usn2[`3esn`][_usn3]}[..Any(`4esn` In 's_str'[12..'s_str'] Where Null Contains _usn4)][..{`7esn`:True[..'s_str'][..01]}] Limit [$12 Is Null Is Null,999 Contains Count ( * ) Contains 123.654][Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`)..Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0)][[Null Contains _usn4,$`7esn` Is Null Is Null]..({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3})] Union All With Distinct *,0.12 In $`4esn` In `6esn`,`4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}] As `2esn` Skip 0X7[..12e12] With Distinct *,{`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] Order By 9e1 Starts With _usn3 Starts With `4esn` Descending,usn2(Distinct _usn3 Contains @usn6 Contains 1.e1)[Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where _usn3 Is Null)..[12e12[0.e0][9e1]]][Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``])..Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)] Descending Limit 0 Starts With 12e12 Starts With `4esn` Unwind 12.e12 In $1000 As `6esn`"), - octest:ct_string("Remove `7esn`:`4esn`:#usn8,@usn6:usn2:@usn6 Create `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})),((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`1esn`{`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654}]->(`7esn` :`7esn`))"), - octest:ct_string("Optional Match ((:_usn3{usn2:$`5esn`[$123456789][`1esn`]})),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})) Where 01234567[Null..0.e0][Count(*)..$#usn8]"), - octest:ct_string("Return Distinct .e0 Contains 01234567 Order By $#usn8[0xabc][`3esn`] Desc,[0 Is Null Is Null][..[_usn3 =~00,9e1 Is Null Is Null]] Descending Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) Contains Extract(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`) Union All Match ((:`3esn`:`1esn`{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->()),(((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))) Where 0xabc[$@usn5] Remove #usn7(Distinct $@usn6[..$usn1],9e12 Is Not Null Is Not Null).usn1 Union Remove `7esn`:`4esn`:#usn8,@usn6:usn2:@usn6 Create `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})),((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`1esn`{`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654}]->(`7esn` :`7esn`))"), - octest:ct_string("Detach Delete 0.0[.e12][7],usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null,#usn8[$_usn3..7][``..$`5esn`]"), - octest:ct_string("Unwind .e0[7..$`3esn`] As usn2 Optional Match #usn7=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),`4esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}) Where .e0 =~`5esn` Detach Delete $usn1[0.12..]['s_str'..],usn2 Starts With `6esn` Starts With 12e12,True[Count(*)..][1e1..]"), - octest:ct_string("Match ((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))),usn1=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})) Where 1000 Ends With 1000 Ends With $`4esn` Remove None(usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null).`6esn`,Extract(_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`|9e1 Starts With `1esn` Starts With 0Xa)._usn4?,(usn2 :`3esn`:`1esn`)-[ *..7]-(usn1 :`4esn`:#usn8)-[?:`3esn`|:`4esn`]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).@usn5? Create ((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})),(`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[? *..0X7{`3esn`:`8esn`[$``]}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})-[?:usn1|`3esn`{#usn8:1000[..$`6esn`][..0xabc]}]->(usn1 :_usn3{@usn6:True[..'s_str'][..01]}) Union Create ((:`6esn`:`7esn`{_usn4:12[0X7..@usn6],_usn3:123456789 In $usn2 In `6esn`})<-[#usn7?:_usn3|:`4esn` *00..]->(:`6esn`:`7esn`{_usn3:\"d_str\" Is Null Is Null})<-[@usn6]->(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})),((#usn7 {#usn7:01234567[.12..7][1000..1.e1],``:@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})) With `` In `5esn` In $usn2 As ``,`3esn` =~`3esn` =~$`6esn` As `7esn`,$`6esn` Is Null Is Null Order By #usn8 Starts With 0x0 Starts With $@usn5 Descending,$`7esn` Ends With $usn2 Asc,9e12[0.0..12.e12] Ascending Limit 0x0[..$`6esn`][..$#usn8] Return Null Is Null Is Null,`2esn` In 12.e12 In `3esn` As `1esn`,Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null As `5esn` Limit $_usn4[0.12..$`6esn`][00..$@usn6] Union Remove #usn7:#usn7 Detach Delete $usn1[0.12..]['s_str'..],usn2 Starts With `6esn` Starts With 12e12,True[Count(*)..][1e1..] Delete Count ( * )[1000],usn2 =~0x0,@usn6 Starts With `3esn`"), - octest:ct_string("Unwind 01 In _usn3 In 12 As `4esn` Create @usn5=(`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0}) Unwind #usn8[$#usn8..] As `4esn`"), - octest:ct_string("With Distinct `2esn` Starts With $_usn3 Starts With `2esn` Skip [@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12]][{@usn6:.12 Starts With 0Xa}..(`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})] Limit {`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]} Is Null Is Null Match @usn5=(:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})-[`1esn`:usn2|#usn8 *1000..]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}) Remove Any(usn1 In 0x0[..`4esn`] Where $0[$#usn8..01234567])._usn3!,Filter(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]).`3esn`!,#usn7(Distinct).`1esn` Union Return Distinct *,9e1 Starts With 9e1 Starts With 010 Delete Null[1.e1..],999[$`6esn`],None(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1])[`8esn`(00[``..][$`4esn`..],123.654[@usn5])] Union All Create usn1=((:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[#usn8? *0xabc]-(#usn8 :`4esn`:#usn8)),#usn7=(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})))"), - octest:ct_string("Match `8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Create `1esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) Optional Match usn2=((#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`6esn`?:usn1|`3esn`{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})),((usn1 :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)) Where `3esn`[..7][..12e12]"), - octest:ct_string("With Distinct *,$`7esn` Ends With $@usn5 As usn2,$@usn6 Starts With usn2 Starts With usn2 As #usn8 Skip 0.e0[..#usn8][..Null] Limit 00 Starts With _usn3 Where $@usn6 Contains 07 Contains 0.e0 With $usn2[$123456789..123.654][$`5esn`..'s_str'],@usn6[$`8esn`][12.e12] As @usn5,$7[.12] As _usn3 Order By @usn5 Contains 01 Contains 12 Ascending Limit $7[.12] Where $usn1[_usn4..][usn2..] Merge (`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})"), - octest:ct_string("With $`8esn` In \"d_str\" In 9e12 Order By 0X0123456789ABCDEF Is Null Is Null Descending Skip Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) Return Distinct *,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn` Order By None(`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789])[(`` {`8esn`:0X7 In $@usn5 In 9e0,_usn3:@usn6[$`3esn`]})-[usn1{#usn7:7 Contains 9e1,`5esn`:$`` Ends With 12e12}]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})..0e0][{`1esn`:$@usn6 Contains 07 Contains 0.e0}..{`3esn`:0.12 In $7 In 0,_usn3:07[$999]}] Asc,12e12[.12..] Descending Skip [\"d_str\" Starts With $usn1,.12 Contains $`4esn` Contains $`6esn`,01234567 =~usn1] Is Null Is Null Union Optional Match usn2=((#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`6esn`?:usn1|`3esn`{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})),((usn1 :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)) Union Return Distinct *,\"d_str\" =~`6esn` =~0Xa As `4esn` Order By (`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Descending,$`2esn` Ends With `3esn` Ends With $7 Desc Skip `` Is Not Null Is Not Null Remove [usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`|`3esn` =~0.0 =~$``].#usn7?,(:usn1{`1esn`:`6esn` Starts With $usn2 Starts With 0.0})<-[#usn7:`3esn`|:`4esn` *00..]->({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})-[`6esn`:`4esn`|:`7esn` *..0x0]->(:usn1{`6esn`:1000 Contains 0.e0,`7esn`:$@usn6[..$#usn7][..12.e12]}).usn2 Remove Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 0.12 Ends With $usn1 Ends With $@usn5|0X0123456789ABCDEF[.e0..$`4esn`]).`7esn`?"), - octest:ct_string("Create `3esn`=((#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)-[`6esn`:``|:_usn4 *..01]->(`5esn` :#usn7)) Optional Match usn1=(usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}) Match ((:`5esn`{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(usn1 :_usn3{@usn6:True[..'s_str'][..01]})) Union All Unwind 12.e12[$1000..] As `4esn`"), - octest:ct_string("With Distinct *,$usn2[12..$`7esn`][$0..$`7esn`],[0Xa[$``..][01234567..]] Contains `3esn`(Distinct _usn3 In .e1 In $12) Contains (`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']}) As @usn6 Skip 9e1 Starts With 9e1 Starts With 010 Limit `3esn`(Distinct 0.0[999..])[Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..[010 =~$usn2 =~1e1,`1esn`[@usn6..$123456789]]] Merge ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) On Match Set (`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})<-[?{#usn7:`6esn`[False..0.0][12e12..$usn2]}]-(`4esn` {`4esn`:#usn7[..$1000][..01]})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}).`4esn`! =0 Is Not Null,`6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`1esn` =$_usn3[$`4esn`..Null] On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Merge (`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(`7esn` :`8esn`{`4esn`:00 Ends With .12 Ends With `4esn`})-[ *07..]->(usn2 :@usn6:`7esn`) On Create Set #usn8:_usn4:usn1,[0 Is Not Null Is Not Null].usn2! =(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] Union All Match @usn6=(((`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}))) Where `7esn`[1e1..07][0x0..Count ( * )] Create _usn3=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))),(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) With Distinct (`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) As #usn8 Order By _usn4 Starts With $@usn6 Starts With #usn7 Asc,$#usn7 Desc Where $@usn6 Is Null Is Null"), - octest:ct_string("Return Distinct ({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}),@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn`,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7 Order By $@usn6[usn2(`3esn`[$`1esn`..])] Asc,12 Ends With 01 Ends With 1e1 Ascending Skip 07[07] Limit 123.654[@usn5] With Distinct Count ( * )[@usn6..0x0],.e0 Is Not Null Is Not Null As `2esn`,usn2 Is Not Null Is Not Null As `2esn` Skip $@usn5 =~$`` =~$usn2 Where `` Starts With 12 Merge ((:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})) On Match Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..]"), - octest:ct_string("Optional Match `3esn`=((:#usn8{_usn4:\"d_str\"[Count ( * )],`2esn`:9e0 Ends With $`7esn`})) Union Unwind $`1esn`[$usn2..][$1000..] As `3esn` Delete $`2esn` Contains usn1 Contains `2esn`,12e12[Count ( * )..][usn2..],Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`) Remove [@usn5 In 0X0123456789ABCDEF,False[0Xa..$@usn5][$`6esn`..12e12]].`3esn`!,`7esn`(`3esn`[..7][..12e12],$999 Ends With $`3esn` Ends With `8esn`).usn2? Union All Merge `2esn`=(`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}) Unwind `2esn` Is Not Null Is Not Null As _usn4"), - octest:ct_string("Unwind [usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..] As `5esn` Remove {`8esn`:Count ( * ) =~Count(*)}.`6esn`,({@usn6:0X0123456789ABCDEF[..usn1]})<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)._usn4?,(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`4esn` Union All Remove `7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``]).@usn5,{#usn7:0Xa Is Not Null Is Not Null,#usn7:.0[$`6esn`..False]}.`4esn`?,[usn1[..@usn5][...e0],$`8esn`[``..][123.654..]].`` Delete ({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3}),$123456789[$``][010] Return All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null Skip [0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',0X0123456789ABCDEF In $1000 In $`3esn`,$0[..`8esn`]] In `4esn`(Distinct 12.e12 In $0 In Count(*),00 In 1e1) In [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]|.e0 =~`5esn`] Union All Create @usn6=(({_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]})<-[ *0xabc]-(`6esn` :`3esn`:`1esn`{_usn3:1e1[.e1..],`1esn`:$#usn8})<-[usn1? *..0X7]-(usn1 :`4esn`:#usn8)),#usn8=((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Return Distinct 0['s_str'][Null] As #usn8,`2esn` In 12.e12 In `3esn` As _usn3 Order By $0 =~`3esn` Descending,0Xa[0xabc..$#usn8] Desc Skip usn1[Count ( * )..$usn1]"), - octest:ct_string("With Distinct Extract(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null) Ends With `2esn`(`7esn`[Null..][@usn5..],123.654[12.e12..1e1]) Ends With Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]) As `7esn`,$usn2 In 9e0 In $7 Order By @usn5 Starts With 12e12 Starts With @usn5 Desc Skip $``[_usn4..][`7esn`..] Optional Match ``=((_usn4 )-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})) Union Unwind 9e12 As `7esn` Unwind 12.e12 Contains $`5esn` As #usn7 Remove {`6esn`:$`8esn`[``..][123.654..],``:999[$`6esn`]}.``,[0X7[..12e12],$`6esn`[$`1esn`][1000]].usn2?"), - octest:ct_string("Optional Match `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) Merge usn2=((`3esn` :`4esn`:#usn8)<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})) On Match Set (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 =123.654 Contains `2esn`,`3esn` =Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`),{`6esn`:$_usn4[$`8esn`..][07..]}.@usn6! =`5esn`[.e1][0Xa] Union Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) With Distinct 0xabc[$@usn5] As usn2,(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] Order By $12[01..][1.e1..] Ascending,0x0 =~_usn4 Desc Create ((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(@usn5 {_usn4:010[$@usn6],`6esn`:123456789[1e1..0.0]})<-[`6esn`?:`2esn`|usn2 *01234567..12]->(:`7esn`{#usn7:True =~@usn5 =~$`1esn`})),`6esn`=({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Union Detach Delete Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`)[Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01)..][{`1esn`:@usn6[`5esn`..$`3esn`],_usn3:$999 Ends With $`3esn` Ends With `8esn`}..],All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..] Match (`6esn` :`5esn`)<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6),_usn3=(($999)) Where 0X7 =~`` Return 0X7 In $@usn5 In 9e0,$`1esn`[9e1.._usn4][$999..$`2esn`] Skip $`5esn` In `2esn` In .0 Limit .0 Is Null Is Null"), - octest:ct_string("Delete [$1000 =~$`7esn`,.12 Starts With @usn5 Starts With $#usn8,0x0[...e12][..@usn5]] Ends With Single(@usn5 In .12[#usn7][$`8esn`]) Create @usn6=(`` :#usn7)<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})<-[`5esn`?:`6esn`]->(`6esn` :`6esn`:`7esn`{_usn4:\"d_str\"}),`6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union All Match (`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Where 9e1 Is Null Is Null Return @usn5[..True][..0X7] As `7esn`,{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7} Contains {`5esn`:$7[.12]} Contains Extract(usn1 In 00 Starts With _usn3 Where 07 Contains #usn8 Contains $_usn3|`2esn`[$`1esn`..][$_usn3..]) Order By 0X0123456789ABCDEF[..usn1] Descending Skip `3esn`[$123456789][$#usn7] Union Return Distinct $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Limit 9e0 Starts With `6esn` Remove (usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})<-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null}).`4esn`!,{#usn8:9e1[0.e0..][#usn8..]}.``,Any(@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]).#usn8 Create _usn3=((:``{`5esn`:.e1 In $@usn6 In 999}))"), - octest:ct_string("Unwind Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) As usn2 Optional Match `1esn`=((usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) Where _usn4 Starts With 0X7 Merge usn1=(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(usn1 :#usn8)<-[ *..0x0{`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) On Match Set `2esn`+=123.654 In \"d_str\" In $_usn3 Union All Unwind {#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] As _usn3 Return 0.12[Count(*)..] Order By [@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0] Is Null Ascending,`2esn` Is Not Null Is Not Null Ascending,12.0 In 1000 In _usn4 Desc Skip 9e12[$1000][$@usn6] Limit $@usn6 Contains Count ( * ) Unwind 010 In @usn6 As usn2"), - octest:ct_string("Match `4esn`=(({``:$1000 Is Null Is Null})-[ *00..{`2esn`:$0 Is Not Null}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})),`6esn`=({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Detach Delete [#usn8 In $`5esn` Is Null Is Null Where 0.0[..12e12][..$0]][{`2esn`:.e1 In $@usn6 In 999,usn2:@usn5 Ends With $`3esn` Ends With 12e12}..]"), - octest:ct_string("With Distinct *,`4esn`($123456789 =~$0 =~$`3esn`) =~[07[12][$`6esn`],$`2esn` =~'s_str',$12[01..][1.e1..]] =~usn1(#usn7 Starts With `1esn`) As `3esn` Order By Extract(usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`) Contains [0 Contains 12e12,0xabc Ends With $7 Ends With $`2esn`,0x0 =~_usn4] Ascending,07[1e1] Ascending Skip 0e0[$12..`5esn`][Count(*)..`6esn`] Limit $123456789 Is Not Null Is Not Null Where 7 =~9e0 =~'s_str' With *,07[0..`4esn`] Order By 12.e12[$`7esn`] Desc,Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}) Descending Where @usn6 Starts With `7esn` Starts With Null Union Create ``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)),`2esn`=(((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) Create `4esn`=((:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})),((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) Return Distinct *,12 Is Null Is Null As #usn7,$1000 Is Not Null Is Not Null Skip (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)[Filter(@usn6 In @usn5 In $`6esn` Where $999[$1000])..][#usn7($`8esn`[``..][123.654..],12.e12 Contains `5esn`)..]"), - octest:ct_string("Merge ((:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})) On Create Set `3esn`+=$_usn3 =~$`3esn` =~0x0,Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|999[``..][Null..]).`8esn`? =Extract(usn2 In 1000 Contains 0.e0 Where `7esn` Contains .0 Contains 9e12|_usn3 Is Null)[Single(_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01])],`1esn`+=0.12 Contains .e1 Merge ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) On Match Set (`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})<-[?{#usn7:`6esn`[False..0.0][12e12..$usn2]}]-(`4esn` {`4esn`:#usn7[..$1000][..01]})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}).`4esn`! =0 Is Not Null,`6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`1esn` =$_usn3[$`4esn`..Null] On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Delete 's_str' In \"d_str\" In 123456789,9e12[..$``][..`6esn`],9e0[``][123.654] Union All Unwind (`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:usn1|`3esn`*]->(:_usn3{`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`})-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(usn1 :#usn8) Is Not Null As `8esn` Union All Optional Match _usn3=(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),#usn8=(((`3esn` )-[?:#usn7|:_usn4]-(usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]})))"), - octest:ct_string("Delete 0e0,7[..12e12][..$`6esn`] Detach Delete Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0},12 Ends With .e12 Ends With $7"), - octest:ct_string("Return $`4esn` Contains 0Xa,010 In `7esn` Order By _usn4 Starts With $@usn6 Starts With #usn7 Ascending,[`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) Desc,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) Descending Create ((:`5esn`)<-[#usn7{#usn7:False[`2esn`..#usn8]}]->(usn2 :`3esn`:`1esn`)-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})),((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) Remove [12e12 Starts With $123456789 Starts With 12.0].usn1 Union All Match ``=((@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`)) Merge #usn8=(({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({_usn3:$`1esn` Starts With @usn6})) Detach Delete 12 Ends With 01 Ends With 1e1,010 =~$usn2 =~1e1,`1esn` In 999 In $#usn7"), - octest:ct_string("Merge (((usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1)<-[@usn5:#usn8{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(#usn8 :_usn3))) With Distinct None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) As _usn3 Skip `2esn` Is Not Null Is Not Null Limit None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] Union All Unwind $usn1[1e1.._usn3][$@usn6..$#usn7] As usn1 With Distinct Count ( * ) Ends With 1000 Ends With 12 As _usn4,False[..12.e12] Skip {usn2:123456789 Starts With `2esn` Starts With 9e12} Ends With All(usn2 In 1000 Contains 0.e0 Where 01234567[Null..0.e0][Count(*)..$#usn8]) Where 0 Is Null Is Null Delete `2esn`[_usn3..$``],#usn8 Starts With 0x0 Starts With $@usn5"), - octest:ct_string("Unwind $usn2[False..`7esn`][`7esn`.._usn3] As _usn4 Union All Unwind 9e12 As `5esn`"), - octest:ct_string("Merge `2esn`=(((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) On Match Set `8esn`+=$`7esn` =~.e1,`1esn` =`6esn`[_usn4..][$`6esn`..],``+=0xabc Contains $1000 Union All With Distinct 1000[123.654..9e12][1000.._usn3],Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) As _usn4,``[$`3esn`][01234567] Order By {`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00} Starts With Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12) Desc,9e0 Ends With $`7esn` Ascending,`1esn`(Distinct Count(*)[..`3esn`]) Starts With $0 Ascending Limit .12[`1esn`..][$`3esn`..] Where $0[01234567..00][$`2esn`..$@usn6] Delete $123456789[$`2esn`][True],_usn4 Ends With 01 Ends With $`1esn` With Distinct `8esn`(Distinct False Contains `3esn`,9e12 =~01 =~$`7esn`)[[@usn6[`5esn`..$`3esn`],0e0 Is Not Null Is Not Null]..] Order By usn2[$`1esn`...0] Descending,None(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00)[[@usn6 Starts With `7esn` Starts With Null]][{`1esn`:07[`6esn`..][`5esn`..],usn1:$usn2[False..`7esn`][`7esn`.._usn3]}] Ascending,01234567 Ends With 12.0 Ends With 0X7 Ascending Skip 12e12[1000..][0x0..]"), - octest:ct_string("Match usn2=((:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})),((`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})<-[?{`8esn`:_usn3 Ends With 0x0 Ends With 01234567,#usn8:$`7esn` Is Null Is Null}]->(:``{#usn8:$`2esn`[..`2esn`]})<-[@usn5:#usn7|:_usn4]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})) Remove {`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}.@usn5? Union All Remove Single(usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1).`7esn`?,Extract(`4esn` In 's_str'[12..'s_str'] Where Null Contains _usn4).`4esn`! Create `4esn`=(:`5esn`{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(_usn4 ),(:#usn7) With Distinct *,07[0..`4esn`] Order By Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`)[Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01)..][{`1esn`:@usn6[`5esn`..$`3esn`],_usn3:$999 Ends With $`3esn` Ends With `8esn`}..] Asc,$999[12.0..] Asc,All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])] Asc Skip $1000 In $`7esn` In $7 Union Detach Delete $`7esn` In $7 Unwind 0x0[$`3esn`] As _usn4"), - octest:ct_string("Match @usn6=(((@usn6 :`5esn`{``:.e1 In $@usn6 In 999,`8esn`:_usn3 Is Null Is Null})<-[$#usn8]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})-[`6esn`? *0Xa{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}]-(:`6esn`:`7esn`{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1}))) Union All Merge (({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8)) On Match Set `8esn`:`4esn`:#usn8,Extract(`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]|_usn3 Is Not Null Is Not Null).`6esn`? =#usn8 Is Not Null,usn1 =Extract(#usn8 In $`5esn` Is Null Is Null Where @usn6 Contains .e1 Contains $`4esn`) In Filter(`4esn` In `6esn`['s_str'..][010..] Where 12e12[Count ( * )..][usn2..]) In [123456789 In $usn2 In `6esn`,Count(*) Ends With 010] Detach Delete `7esn` Starts With $`` Starts With $#usn7"), - octest:ct_string("With Distinct Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] As @usn5,12 Is Null Is Null As #usn7 Limit 0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Where 12[..9e0][..999]"), - octest:ct_string("Create ((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[?:usn1|`3esn`{#usn8:1000[..$`6esn`][..0xabc]}]->(:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[``?:usn1|`3esn`]->(:@usn5{#usn7:1e1[@usn5..]})) Unwind Null Is Null Is Null As usn1 Union With Distinct [@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2] Is Null,00[7..$123456789] Order By $usn2 Is Not Null Is Not Null Desc Limit `8esn` Ends With 999 Ends With 9e0 Remove {_usn3:$_usn4[$`1esn`]}.@usn6!,`8esn`($_usn4[#usn8..],123456789 Starts With `2esn` Starts With .0).usn1?,Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|1e1 Is Null).#usn7? Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Union Unwind [usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..] As `5esn` Remove {`8esn`:Count ( * ) =~Count(*)}.`6esn`,({@usn6:0X0123456789ABCDEF[..usn1]})<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)._usn4?,(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`4esn`"), - octest:ct_string("Remove #usn7(Distinct 0 Starts With 12e12 Starts With `4esn`,.0 Starts With `2esn` Starts With `6esn`).``!,[0x0[..`4esn`],$7].#usn7! Unwind .e12[usn2][01] As _usn3"), - octest:ct_string("Create usn1=((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})),(({#usn8:12.0[..$7][..999],@usn5:$`1esn` Is Null})<-[``?:`1esn` *0xabc{`5esn`:$``[_usn4..][`7esn`..]}]->(#usn7 :@usn6:`7esn`{_usn3:\"d_str\" =~`3esn` =~0Xa})) Return Distinct 1e1[..#usn8][..'s_str'] As #usn8,7 Is Null Skip {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null Merge `6esn`=(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) On Create Set usn1 =00 In 0.12 In `5esn`,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where .e0[..999][..0X7]]._usn4 =(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) On Match Set [usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01|`1esn`[@usn6..$123456789]].`8esn`? =Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]),@usn5 =Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null,_usn3+=$@usn5 =~$`` =~$usn2 Union All Unwind $`4esn`[9e1..][0..] As _usn3 Remove All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `5esn`[`1esn`..`1esn`]).`5esn` Remove (`` {`5esn`:0X0123456789ABCDEF[.e0..$`4esn`]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :`4esn`:#usn8).@usn5,({@usn6:0X7 In $999 In $``})-[`7esn`{usn1:0 Is Not Null}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`}).@usn6 Union Return $_usn4[12e12][`4esn`] As `5esn`,@usn6[`5esn`..$`3esn`] As ``,0.0[..12e12][..$0] Order By usn2[$`1esn`...0] Descending,123.654 Is Not Null Is Not Null Desc Limit 0X7 =~`4esn` =~`8esn` Match (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0) Create `4esn`=(:`5esn`{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(_usn4 ),(:#usn7)"), - octest:ct_string("Unwind 0x0 Is Not Null Is Not Null As `7esn` Remove ``(Distinct 0.12 In $`4esn` In `6esn`,12e12[_usn3..][$@usn5..])._usn3!,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]|12e12[Null]].@usn6 Delete 0X0123456789ABCDEF Is Not Null,`5esn`[`1esn`],7[..0X7][..'s_str'] Union Remove [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]|9e0 Starts With `6esn`].#usn8? Union With Distinct *,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] As `8esn`,123456789 Starts With `2esn` Starts With 9e12 As `3esn` Skip Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) Limit `6esn` Starts With $@usn6 Where 12[0X7..@usn6]"), - octest:ct_string("Merge ((_usn4 {`8esn`:9e1 In 01 In 999})) With Distinct .e12[.12..][_usn4..] As _usn4,{`7esn`:.e0 Contains #usn7 Contains $#usn8}[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..None(`6esn` In 0X7 =~`` Where 12.e12['s_str'])][(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})..({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})],$999[$_usn4..][$`5esn`..] Union Merge `1esn`=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(usn1 :`4esn`:#usn8{``:0 Is Not Null Is Not Null,`3esn`:usn1 Starts With $#usn7 Starts With `5esn`})) On Match Set #usn8($`2esn` Contains usn1 Contains `2esn`).`3esn`? =0xabc[..$`1esn`][..01] On Create Set @usn6+=[usn1[..$_usn4][..``],0X7[.e12..01234567]] In `3esn`(@usn5[..True][..0X7],$`3esn` =~$`7esn` =~False) Return Distinct `7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As usn1 Order By 12.e12 In .e0 In `7esn` Asc,9e1[.12..] Asc Skip (_usn3 )<-[usn1]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})-[_usn4?:`6esn`]->(`8esn` :`1esn`) =~Single(#usn7 In 01234567[$`3esn`..] Where 0.12 In $`4esn` In `6esn`) =~Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|$`8esn`[..123456789]) Limit 0.12 In $`4esn` In `6esn`"), - octest:ct_string("Merge usn1=(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}) On Create Set `8esn`+=$12[..7][..07],@usn5+=#usn7 Starts With .e12 Starts With $`7esn` Union Unwind $`2esn`[$123456789..$`1esn`][0Xa..$``] As `7esn`"), - octest:ct_string("Create @usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})),_usn3=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Create (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Union All Detach Delete Extract(`4esn` In `6esn`['s_str'..][010..] Where 07 In $7 In 12|$#usn8)[{`6esn`:12[usn1][True],`3esn`:$@usn6[..$usn1]}..][{`8esn`:00}..],$`6esn` Is Null Is Null"), - octest:ct_string("With *,`` =~12 =~$#usn7 Order By 0X7 In 's_str' In $`1esn` Descending,@usn5 In 0X0123456789ABCDEF Asc,$`4esn` In $12 In _usn3 Ascending Skip [usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]] In [0xabc[12.e12..`1esn`]] In {@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} Where 0.12 In $`4esn` In `6esn` With ({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn` Skip count(Distinct 's_str' Starts With 1000 Starts With #usn8,12e12 Starts With $123456789 Starts With 12.0)[[_usn4 In usn1 Contains False Contains `` Where $#usn8]][[$`1esn` Is Null,\"d_str\" =~`6esn` =~0Xa,$usn2[0e0..]]]"), - octest:ct_string("With Distinct $`4esn`[12.e12..][0.0..],12[`7esn`...0][0.12..``] As @usn6,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Skip $`1esn` Ends With $`1esn` Where `3esn` Contains 0Xa Create _usn3=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))) With Distinct *,$`7esn` Ends With $@usn5 As usn2,$@usn6 Starts With usn2 Starts With usn2 As #usn8 Skip 0.e0[..#usn8][..Null] Limit 00 Starts With _usn3 Where $@usn6 Contains 07 Contains 0.e0 Union Detach Delete 0Xa[0xabc..$#usn8] Union Detach Delete `` In `6esn`,@usn6 Contains .e1 Contains $`4esn`"), - octest:ct_string("Match ``=(((:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(:`7esn`{@usn6:0.0[999..],#usn8:Null Is Null Is Null})-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]}))) Union All Merge _usn4=(:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]}) On Match Set All(`6esn` In 0X7 =~`` Where `7esn`[...e1][..\"d_str\"]).`5esn` =None(usn2 In 1000 Contains 0.e0 Where $usn1[..$`6esn`][..Null]) Starts With Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]|$`1esn` Starts With $999) On Match Set ``:`2esn`:`3esn`,@usn6 =None(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1])[`8esn`(00[``..][$`4esn`..],123.654[@usn5])],usn2 =$`3esn`[`2esn`...e0] Return usn2 =~0x0 As `8esn`,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn`,_usn3[`3esn`][False] Skip {@usn5:$@usn6[..$usn1],`1esn`:usn2[`3esn`][_usn3]}[..Any(`4esn` In 's_str'[12..'s_str'] Where Null Contains _usn4)][..{`7esn`:True[..'s_str'][..01]}] Limit [$12 Is Null Is Null,999 Contains Count ( * ) Contains 123.654][Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`)..Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0)][[Null Contains _usn4,$`7esn` Is Null Is Null]..({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3})] Create ((:`6esn`:`7esn`{_usn4:12[0X7..@usn6],_usn3:123456789 In $usn2 In `6esn`})<-[#usn7?:_usn3|:`4esn` *00..]->(:`6esn`:`7esn`{_usn3:\"d_str\" Is Null Is Null})<-[@usn6]->(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})),((#usn7 {#usn7:01234567[.12..7][1000..1.e1],``:@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]}))"), - octest:ct_string("Delete count(0.12 Ends With $usn1 Ends With $@usn5,@usn5 In $`6esn`) Is Not Null,$`8esn`[$``..$7][$1000..$`7esn`] Remove Filter(`6esn` In 0X7 =~`` Where $0[$#usn8..01234567]).`5esn`?,{#usn7:False[`2esn`..#usn8]}.#usn7?,usn1($`1esn` =~$`1esn` =~#usn7).`1esn`?"), - octest:ct_string("With Distinct `8esn`(Distinct False Contains `3esn`,9e12 =~01 =~$`7esn`)[[@usn6[`5esn`..$`3esn`],0e0 Is Not Null Is Not Null]..] Order By usn2[$`1esn`...0] Descending,None(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00)[[@usn6 Starts With `7esn` Starts With Null]][{`1esn`:07[`6esn`..][`5esn`..],usn1:$usn2[False..`7esn`][`7esn`.._usn3]}] Ascending,01234567 Ends With 12.0 Ends With 0X7 Ascending Skip 12e12[1000..][0x0..] Create (((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Union All Create (:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}) Merge `5esn`=(({_usn3:12.e12 In $0 In Count(*)})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(`2esn` :``)-[:_usn4|:@usn5 *0xabc]-({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})) On Match Set `7esn` ={`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)],@usn6 =`5esn` In $999 On Create Set (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 =123.654 Contains `2esn`,`3esn` =Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`),{`6esn`:$_usn4[$`8esn`..][07..]}.@usn6! =`5esn`[.e1][0Xa]"), - octest:ct_string("Create ((`1esn` :usn2:@usn6)),`3esn`=(usn1 :`6esn`:`7esn`) Merge _usn3=(((:@usn5{#usn7:1e1[@usn5..]})-[:#usn8 *..0X7]->($12)-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]}))) Delete 7 =~9e0 =~'s_str' Union Merge (({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})) On Create Set `1esn` =0X0123456789ABCDEF[.e0..$`4esn`] On Create Set @usn5(Distinct 12e12[_usn3..][$@usn5..],7 Contains 9e1).`6esn` =$@usn5 In 12e12 In Count(*) Unwind `8esn`[$``] As `3esn` Union All Remove {_usn4:\"d_str\"}._usn3,`8esn`(Distinct 00 In 1e1).usn2! Return Distinct *,`5esn` =~0Xa,[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4 Skip $`4esn` Contains 0Xa Limit $_usn3 =~`7esn` =~$_usn4 Unwind 123456789 =~_usn4 =~$0 As usn1"), - octest:ct_string("Match #usn8=((`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[:@usn6 *0X0123456789ABCDEF..{_usn3:`7esn` Ends With $usn2 Ends With 999}]-(`2esn` :_usn3)),(({``:12 Is Null Is Null})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)})) Remove [$`5esn`[False],9e1 Contains $`3esn` Contains 01234567,`5esn`[Count ( * )..][\"d_str\"..]].@usn5!,`3esn`:_usn4:usn1,[usn1 In 00 Starts With _usn3].#usn8?"), - octest:ct_string("Unwind `` As _usn4 Detach Delete .e1 Starts With $`8esn`,`6esn` Is Not Null Merge `3esn`=((:#usn8{_usn4:\"d_str\"[Count ( * )],`2esn`:9e0 Ends With $`7esn`}))"), - octest:ct_string("Create `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) Match ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})),((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]}))"), - octest:ct_string("Remove ({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}).@usn6?,Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`1esn` Starts With $999).``?,All(`4esn` In 's_str'[12..'s_str']).`3esn`? With Distinct *,9e1['s_str'..1e1] As #usn7,01234567 As `6esn` Skip `2esn` In Count(*) In 9e0 Limit usn2 Is Not Null Where $12 Is Null Is Null"), - octest:ct_string("Detach Delete #usn7 Contains 07"), - octest:ct_string("Unwind 0x0[0.0][$_usn4] As #usn8 Unwind 123.654[`5esn`] As @usn5 Union Remove [010 =~$usn2 =~1e1,`1esn`[@usn6..$123456789]].`8esn`!,Filter(`6esn` In 0X7 =~`` Where $#usn7[...e12][..$7])._usn3,Filter(@usn5 In .12[#usn7][$`8esn`]).`3esn` Match (#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}),((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})) Where $`6esn`[`1esn`..][.e0..]"), - octest:ct_string("Match #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`1esn`=(((`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}))) Create `4esn`=(({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})) Union Match `5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Where $`2esn` Contains usn1 Contains `2esn` Unwind 12e12[0.e0][9e1] As usn2"), - octest:ct_string("Create (#usn7 :`6esn`:`7esn`)<-[`3esn`?:_usn3|:`4esn`]->(:`1esn`{_usn4:$_usn3[Null]})-[ *..0X7]->(`5esn` :_usn4:usn1),usn2=(`8esn` :#usn8)-[usn2?]-(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]}) Union All Match `1esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) Where $123456789 Is Not Null Is Not Null Merge _usn4=(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) On Create Set _usn3 =(usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Is Null Is Null,`1esn` =7 Contains $`5esn` Contains $usn1,usn2 =\"d_str\" =~`3esn` =~0x0 On Match Set @usn6+=(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}]"), - octest:ct_string("Merge `8esn`=(({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})) Merge (((`3esn` :`8esn`)-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(_usn3 :usn2:@usn6)-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}))) On Create Set #usn8:_usn4:usn1,[0 Is Not Null Is Not Null].usn2! =(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] On Create Set #usn8+=12[0X7..@usn6],{``:12e12[$`5esn`][07],_usn3:$`6esn` Is Null Is Null}.usn1 =$`6esn` Is Not Null Is Not Null"), - octest:ct_string("Merge `2esn`=(_usn4 {`8esn`:9e1 In 01 In 999})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`) On Match Set @usn5+=`1esn`[9e12..$`8esn`][usn2..$``],usn1 =[12.e12 Ends With 01 Ends With .e1,$@usn5[0.12..][@usn5..],$usn1 In 1000 In $#usn7] Is Not Null On Match Set _usn4 =0 Contains 12e12,`1esn`:#usn8,`7esn` =0 Is Not Null Unwind .12 Contains $`4esn` Contains $`6esn` As _usn4 Optional Match `2esn`=(`` :usn2:@usn6)<-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`7esn` :`4esn`:#usn8{`2esn`:Count(*)[..`3esn`]}),(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})-[`4esn`:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]-(_usn3 :``)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->({`1esn`:0.0[1000..][.e1..]}) Where $`7esn` Ends With $`2esn` Ends With $usn1"), - octest:ct_string("Create #usn7=((#usn7 {`2esn`:$@usn6[..$usn1],usn2:12 Ends With 01 Ends With 1e1})),`2esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}) Merge `7esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)) On Create Set `3esn`+=00 Ends With $_usn4 Ends With $`2esn` On Match Set `6esn`:usn1,`7esn`+=07[`6esn`..][`5esn`..] Remove Extract(usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01).#usn8 Union All With Distinct Extract(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null) Ends With `2esn`(`7esn`[Null..][@usn5..],123.654[12.e12..1e1]) Ends With Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]) As `7esn`,$usn2 In 9e0 In $7 Order By @usn5 Starts With 12e12 Starts With @usn5 Desc Skip $``[_usn4..][`7esn`..] Optional Match ``=((_usn4 )-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})) Union Merge _usn4=(usn1 :_usn4:usn1)<-[`5esn` *0..010]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})"), - octest:ct_string("Merge (({`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})-[#usn8?]-(:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})) On Match Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] On Create Set ``(999[``..][Null..]).`8esn` =0.0[999..],`4esn`+=$`5esn` Starts With _usn3 Starts With @usn5,@usn6+=False Is Null Match `5esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Union Create `3esn`=(_usn4 :``{`2esn`:9e1 In 01 In 999,`5esn`:$@usn6[..$usn1]})-[`5esn`?:``|:_usn4]->(:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[@usn6?:`1esn`]-(:`5esn`),``=(({`5esn`:0e0 =~_usn4})) Union Return $@usn6[07..`7esn`][_usn4..$`4esn`] Create @usn5=({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)<-[?:usn2|#usn8{#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7}]-({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})"), - octest:ct_string("Remove (#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}).`8esn`?"), - octest:ct_string("Optional Match (_usn3 :_usn4:usn1)<-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(:@usn6:`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}),#usn8=(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[usn1?:`8esn`|:usn1]->(`2esn` {usn2:$999[12.0..]})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Where $`5esn` Contains $@usn6 Unwind $123456789[$`2esn`][True] As usn2 With Distinct *,`7esn`[Null..][@usn5..],0X0123456789ABCDEF Contains $usn1 Skip Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] Limit False Ends With $`8esn` Where 0 Starts With 12e12 Starts With `4esn` Union All Unwind $_usn4[0.12..$`6esn`][00..$@usn6] As `` Merge `2esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})) Union All Unwind 9e12 As `5esn`"), - octest:ct_string("Merge ((@usn6 :#usn7{@usn5:Null Is Null Is Null})) On Create Set `8esn` =Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`],`8esn`+=Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[usn2($#usn8 Is Null Is Null)..Extract(usn1 In 0x0[..`4esn`] Where 123456789 In $usn2 In `6esn`|@usn5[..True][..0X7])][(`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` )..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]] Return Distinct *,9e12[_usn3] As `8esn`,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn` Order By `6esn` Starts With $`5esn` Desc,$`7esn` Ends With 07 Ends With 07 Desc"), - octest:ct_string("Return 0 =~12.e12 =~$``,@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn` Order By $`7esn` Starts With 07 Ascending Merge (usn1 {`4esn`:$123456789[0.0..],`2esn`:12 Ends With 01234567})<-[usn1? *..0X7]-(usn1 :`4esn`:#usn8)-[ *010{@usn5:Null Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Match Set [0X7 =~.0 =~\"d_str\",9e1[...e0]].@usn5 =Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}),{@usn6:usn1 In 1000 In $`5esn`,@usn6:9e0[``][123.654]}.`3esn`! =$999 In $`8esn` In `5esn` On Match Set `6esn` =7[..0X7][..'s_str'],[$`5esn` Contains $@usn6].`1esn` =1e1[@usn5..],Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 07 In 0 In 's_str').@usn5? =True Is Not Null Union Delete .12 Starts With 0Xa,.12[#usn7][$`8esn`] Unwind $_usn4[$`1esn`] As `2esn` Delete [07,$_usn3[..Count ( * )][..@usn5]][All(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0)..{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}][[010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]]..Filter(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12)],`6esn` Starts With $usn2 Starts With 0.0"), - octest:ct_string("With .e0[usn2..][12..] As `1esn`,12.e12[...0][..0x0],`` Contains 12 Contains True As `6esn` Skip `6esn`[0X7..][0x0..] Limit 9e1 Starts With `1esn` Starts With 0Xa Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.0[0Xa][00]|$`1esn` Starts With $999).`6esn`,Any(`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]).`3esn` Union Delete 01234567[$`3esn`..],(:`5esn`{@usn6:0Xa Is Not Null Is Not Null,usn2:@usn6 =~01})<-[`2esn`?*..]->(:#usn8{`5esn`:0 Contains 12e12})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}) Is Null With Distinct Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`] As #usn7,\"d_str\" =~`6esn` =~0Xa As `4esn` Order By 00 In 12.e12 Descending,9e0 Ends With $`7esn` Asc Limit $7[.12] Where 01234567[$`3esn`..]"), - octest:ct_string("Optional Match _usn4=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),(((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})-[?*..{`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}]-(`` :`3esn`:`1esn`{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-({usn1:010[@usn5..],`7esn`:`2esn` Is Not Null Is Not Null}))) Where $`` Ends With 12e12 With Distinct *,0X7 In 123456789 In $`5esn` Skip 0xabc Contains 0e0 Contains \"d_str\" Limit $@usn6 Is Null Is Null With *,0.0 Is Null Is Null As `8esn` Order By $1000 Is Null Is Null Descending,1000 In 0X0123456789ABCDEF In 01 Asc Union All Merge `8esn`=(({@usn6:$123456789 Is Null Is Null,@usn6:`6esn`[1.e1..$#usn7][.e0..True]})<-[`5esn`:usn1|`3esn` *010{`2esn`:`6esn` =~01234567 =~0Xa}]->(_usn4 :``)) Union With Distinct $12[`3esn`..0e0][`2esn`..$7] As #usn8,0.12 =~01 =~12 Order By $123456789 =~$#usn8 =~$#usn8 Ascending,0X7 In 123456789 In $`5esn` Ascending"), - octest:ct_string("Create ((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(@usn5 {_usn4:010[$@usn6],`6esn`:123456789[1e1..0.0]})<-[`6esn`?:`2esn`|usn2 *01234567..12]->(:`7esn`{#usn7:True =~@usn5 =~$`1esn`})),`6esn`=({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Remove None(usn1 In 00 Starts With _usn3 Where 123456789[`4esn`..][Count ( * )..]).#usn8!,All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..])._usn4 Union All With 12e12[Null] As usn2,$`4esn`[0][0e0] As _usn3,12e12 Starts With $123456789 Starts With 12.0 Order By Count(*)[.e0.._usn4] Asc Skip (`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Where $`7esn` Ends With `1esn` Ends With True Merge `4esn`=({`8esn`:0X7 In 's_str' In $`1esn`}) Union Create (`` :usn1)"), - octest:ct_string("Match `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) Where `6esn` =~$_usn3 Union Return Distinct $#usn8[1e1][9e1] As @usn5,$`3esn`[`2esn`...e0] As _usn3,.e1 Starts With $`8esn` Skip 0x0 =~$`7esn` =~@usn6 Limit [$_usn3[$`4esn`..Null],0x0 Contains $`8esn` Contains `6esn`,\"d_str\" =~`6esn` =~0Xa] Contains [@usn6 Starts With `7esn` Starts With Null] Contains `6esn`(Distinct $`4esn`[usn1..$#usn8][12.0..`3esn`],12.e12['s_str']) Union Detach Delete usn2[$`7esn`..010][00..``],$123456789 Ends With $`6esn`,0.12 Contains $`2esn` Contains $_usn4"), - octest:ct_string("Match (usn2 :#usn7),#usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) Unwind `1esn`(Distinct Count(*)[..`3esn`]) Starts With $0 As `3esn` Union Unwind 123456789 Starts With #usn7 Starts With `6esn` As `7esn` Return Distinct Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0]) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where Count(*)[True]) In Extract(`4esn` In 's_str'[12..'s_str'] Where 0xabc Ends With $#usn7 Ends With #usn8|.e1 Starts With 0.0 Starts With `6esn`) As #usn7,@usn5 Starts With \"d_str\" As `` Union All Delete \"d_str\" =~12.e12 =~07,Null[0.e0..0x0] With Distinct 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Limit $12[..``][..$7] Match _usn4=(@usn6 {#usn7:False[`2esn`..#usn8]})<-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]-(`4esn` {@usn6:True[..'s_str'][..01]}),`6esn`=(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]}) Where usn2[$`1esn`...0]"), - octest:ct_string("Merge _usn3=((_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})) On Match Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] On Create Set None(`4esn` In 's_str'[12..'s_str'] Where @usn5 In 0X0123456789ABCDEF).`2esn`! =$`1esn` Is Null,`5esn`()._usn4! =[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00],`8esn` =`7esn` Contains .0 Contains 9e12 Union With 07 Ends With 07,{_usn3:12.e12[$1000..],`7esn`:$`2esn` Contains usn1 Contains `2esn`}[..(`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)][..010] Union All Return Distinct *,0['s_str'][Null] As #usn8,0.0[..12e12][..$0] Order By 010[@usn5..] Descending,{usn2:123456789 Starts With `2esn` Starts With 9e12} Ends With All(usn2 In 1000 Contains 0.e0 Where 01234567[Null..0.e0][Count(*)..$#usn8]) Descending Create ({`5esn`:123456789 Starts With `2esn` Starts With .0})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})<-[`` *12..0xabc]->(`3esn` :_usn4:usn1)"), - octest:ct_string("Delete 1.e1 Is Not Null Is Not Null,$1000 In $`7esn` In $7"), - octest:ct_string("Return Distinct *,Count ( * ) In 010 As `1esn` Limit $@usn5 =~07 =~True Union All Unwind 1000 Contains 123456789 Contains 1e1 As `` Return Distinct $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Limit 9e0 Starts With `6esn` Delete [$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union With Distinct *,$0 =~$0 =~.e0 As `7esn`,$@usn5[#usn8..][$`1esn`..] As `7esn` Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip [@usn6 In @usn5 In $`6esn` Where $999[$1000]|$7[.12]] In {`1esn`:$@usn6 Contains 07 Contains 0.e0} In (`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) Where 9e12[usn2..7][.e1..$`7esn`] Return 12e12[Null] As usn2,$`4esn`[0][0e0] As _usn3,12e12 Starts With $123456789 Starts With 12.0 Order By Count(*)[.e0.._usn4] Asc Skip (`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Remove {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]}.`3esn`?,[07[12e12],`1esn`[...e1]].#usn7!"), - octest:ct_string("Return Distinct {@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null} Is Not Null Is Not Null,$0 =~$0 =~.e0 As `7esn` Order By Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]) Asc,{@usn5:$`3esn`} Starts With .12 Asc Skip Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Union Unwind $usn2[False..`7esn`][`7esn`.._usn3] As _usn4"), - octest:ct_string("Detach Delete {@usn6:0Xa Is Null Is Null,`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]} =~_usn4(usn2[`3esn`][_usn3]),`6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Merge @usn6=({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567}) On Match Set (:usn1{`1esn`:`6esn` Starts With $usn2 Starts With 0.0})<-[@usn6?:@usn5|`8esn` *..01{_usn4:07 Ends With 07,`8esn`:`6esn`[1.e1..$#usn7][.e0..True]}]-(usn2 :`3esn`:`1esn`).`8esn` =.0,_usn4+=`3esn`[$999..],#usn7($0[$#usn8..01234567],#usn8[$#usn8..]).#usn8! ={#usn8:$`5esn` In False,usn2:$`7esn` In $7} Starts With Filter(usn2 In 1000 Contains 0.e0 Where `2esn`[$`3esn`..]) Starts With All(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`) On Create Set `6esn`+={`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])],#usn8:`1esn`,[usn1 In 0x0[..`4esn`] Where True =~@usn5 =~$`1esn`|0.0[999..]].`4esn`! =$123456789 Contains 01 Contains 0.12 Detach Delete $999[12.0..]"), - octest:ct_string("Unwind $`1esn` Is Null As `6esn` Union Optional Match `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Where `7esn` In 999 In @usn6 Union All With 01234567[$@usn6..0X7][$`1esn`..123.654],00 Ends With $_usn4 Ends With $`2esn` As `5esn` Skip `8esn` Ends With 0X0123456789ABCDEF Ends With `1esn`"), - octest:ct_string("Merge `1esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) Merge `7esn`=(((#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})<-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(`` :@usn5)-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`7esn` {`8esn`:$123456789 Contains 01 Contains 0.12}))) Return [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}),$_usn4[`3esn`][0] As `1esn`,`6esn` Starts With $`5esn` As @usn5 Order By .0 Is Null Is Null Ascending,`1esn`(Distinct $@usn5[#usn8..][$`1esn`..],#usn7 Ends With `4esn` Ends With @usn5)[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|usn1[Count ( * )..$usn1]]][{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}] Asc Limit True Is Not Null Union Return *,$999[$1000] Skip 1e1[@usn5..] Merge (({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})) Remove {@usn6:True[..'s_str'][..01]}.#usn7!,(_usn4 {#usn7:False[`2esn`..#usn8],#usn8:`5esn`[`1esn`..`1esn`]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]}).`3esn`"), - octest:ct_string("Remove usn2($`8esn`[..$``],.12 Starts With .12 Starts With `3esn`).`8esn`!,[`4esn` In `6esn`['s_str'..][010..] Where Null[0e0][12]].`2esn`,#usn8:`7esn` Remove None(usn1 In 0x0[..`4esn`] Where False[.e1..Null]).``,[.e0[..999][..0X7]].`5esn`?"), - octest:ct_string("Remove [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0].`3esn`,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``! Merge `1esn`=(((`2esn` :_usn3{`5esn`:12.e12[$1000..],`4esn`:'s_str'[..0.0][..$`4esn`]})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})-[usn1?:`1esn` *0X0123456789ABCDEF..{usn2:$`4esn`[12.e12..][0.0..]}]-(:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]}))) On Match Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..] With 's_str'[12..'s_str'] Limit #usn7 Starts With 0x0 Starts With Null Where 1e1[`6esn`..] Union All Unwind 00 Starts With _usn3 As #usn7 Union Remove (usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})._usn4?,usn1:`3esn`:`1esn`,{`2esn`:9e1 In 01 In 999,`5esn`:$@usn6[..$usn1]}.@usn5! Unwind .e12 =~0.0 =~9e0 As `8esn`"), - octest:ct_string("Merge ((@usn5 :`3esn`:`1esn`{_usn3:#usn7 Starts With `1esn`})<-[?{`8esn`:`8esn`[1000..$7][$`7esn`..`2esn`],@usn5:$`2esn`[..`2esn`]}]->(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})) On Match Set ``+=$@usn6 =~usn1,#usn8+=$#usn8 Is Null Create (`8esn` :@usn5)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->(`6esn` :_usn4:usn1{`6esn`:00 In 12.e12}) Union All Unwind $@usn6 Is Null As `` Union With Distinct $123456789 Ends With $`6esn` As `6esn`,Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Order By $usn2[0e0..] Desc,.0[$`6esn`..False] Ascending,[$`3esn` Starts With 01234567 Starts With $1000] Starts With `4esn` Starts With [$`2esn`[..7][..$usn1]] Asc Skip Extract(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null) Ends With `2esn`(`7esn`[Null..][@usn5..],123.654[12.e12..1e1]) Ends With Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]) Limit $`2esn` Contains usn1 Contains `2esn`"), - octest:ct_string("Delete `7esn`($123456789 In Count(*) In .e1) Ends With Extract(@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|Count ( * )) Ends With Any(usn1 In 0x0[..`4esn`] Where False[.e1..Null]),`7esn`(0.0[1000..][.e1..],$@usn5 Contains 01)[Any(usn1 In 0x0[..`4esn`] Where 0X7[.e12..01234567])][[$@usn6 Contains 07 Contains 0.e0,`5esn` In 12]],$usn1[0.12..]['s_str'..] Unwind 999 Contains `7esn` As `7esn` Merge @usn5=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) On Create Set usn1+=$@usn6 In $`5esn` In $usn2 Union All Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)],010 In @usn5 In `5esn`,1e1 In $999 In $usn2 Return 01234567 Is Null Is Null As `3esn`,0.12 Contains $12 Contains `8esn` As `5esn`,9e0 Starts With `6esn` Skip `3esn` Ends With 010 Limit Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]} Union All With *,`` =~12 =~$#usn7 Order By 0X7 In 's_str' In $`1esn` Descending,@usn5 In 0X0123456789ABCDEF Asc,$`4esn` In $12 In _usn3 Ascending Skip [usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]] In [0xabc[12.e12..`1esn`]] In {@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} Where 0.12 In $`4esn` In `6esn` With ({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn` Skip count(Distinct 's_str' Starts With 1000 Starts With #usn8,12e12 Starts With $123456789 Starts With 12.0)[[_usn4 In usn1 Contains False Contains `` Where $#usn8]][[$`1esn` Is Null,\"d_str\" =~`6esn` =~0Xa,$usn2[0e0..]]]"), - octest:ct_string("With Distinct @usn6 Starts With `7esn` Starts With Null,$usn1[#usn8..][``..] As `2esn`,`3esn`[$`1esn`..] As usn2 Order By _usn3[0] Asc,``[$`3esn`][$`2esn`] Ascending,{@usn5:0.e0[@usn6][0x0]} Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7) Ascending Skip (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) Is Not Null Is Not Null Limit [@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Where `1esn` Contains Count ( * ) Return Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As `5esn` Return Distinct *,.e1 Starts With $`8esn` Skip 0xabc[12.e12..`1esn`] Limit 0.e0[@usn6][0x0]"), - octest:ct_string("With Distinct *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `2esn`"), - octest:ct_string("Remove [`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789]|0.12[Null..]].`8esn`?,All(`4esn` In 's_str'[12..'s_str'] Where $`8esn`[..$``]).`7esn`!,Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`! Detach Delete 00[7..$123456789],`` Starts With 12,{`4esn`:.12 Starts With 0Xa} Starts With All(usn1 In 00 Starts With _usn3 Where `6esn`[False..0.0][12e12..$usn2]) Union All Merge `1esn`=(#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})-[`1esn`?:`1esn` *01234567..12]-(usn1 :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) On Match Set _usn3 =$`5esn`[False],[07[$999],@usn6[$`7esn`]].@usn6 =010 Starts With `7esn` Starts With 9e1,`4esn` =usn2[..$`3esn`] On Create Set `7esn`+=9e0[``][123.654],`8esn`(#usn7 Contains $7,$_usn3 =~`7esn` =~$_usn4).#usn8 =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..] Match (((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))),(@usn6 {`4esn`:$`2esn`[..`2esn`]})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null}) Where `7esn` Starts With $`` Starts With $#usn7 With ({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn`,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn` Skip 010 Starts With `7esn` Starts With 9e1 Limit 0Xa Starts With $`4esn` Starts With 1e1"), - octest:ct_string("With .12[#usn7][$`8esn`],12 Ends With 07 Ends With @usn6 As usn1 Order By $999[..`1esn`] Ascending,Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending,[$`8esn` =~$usn2][Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..] Asc Where 12e12[Null] Match ((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})) Where $123456789[..0.12][..#usn7] Union All Merge ((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Merge `3esn`=((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) On Match Set `6esn` =$@usn5[Count ( * )]"), - octest:ct_string("Delete [1e1[0.0],0.12 Contains $`2esn` Contains $_usn4],All(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`) Ends With `4esn`(`4esn`[7..][1000..]) Ends With Filter(_usn4 In usn1 Contains False Contains `` Where $`4esn` Starts With 1e1)"), - octest:ct_string("Remove `6esn`:@usn5,Extract(@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..])._usn3!,Extract(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7|@usn6[`5esn`..$`3esn`])._usn4! Return *,00 Ends With .12 Ends With `4esn`,9e0[``][123.654] Order By `2esn` Contains $999 Asc Skip $_usn4[$`1esn`] Limit 0xabc Contains 0e0 Contains \"d_str\" Union Return Distinct 123.654 Starts With usn1 Starts With @usn5,`7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As `8esn`,$`7esn` Ends With `1esn` Ends With True As `5esn` Order By {`3esn`:$999[12.0..]} =~[$#usn8 In .e12 In 9e1] Desc,\"d_str\" =~`6esn` =~0Xa Asc,(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Descending Return *,9e12[_usn3] As `8esn`,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn` Order By `6esn` Starts With $`5esn` Desc,$`7esn` Ends With 07 Ends With 07 Desc With Distinct $#usn8 In .e12 In 9e1 Order By All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..] Asc,0Xa[0xabc..] Ascending,@usn6[$`3esn`] Ascending Skip 1e1 In $#usn8 In 12e12"), - octest:ct_string("Create (`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}) Unwind 0 Is Null Is Null As @usn5"), - octest:ct_string("Unwind $`7esn` Ends With 07 Ends With 07 As `3esn` Create ((:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})),({`5esn`:123456789 Starts With `2esn` Starts With .0})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})<-[`` *12..0xabc]->(`3esn` :_usn4:usn1) Match _usn3=((@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]}))"), - octest:ct_string("Optional Match ``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}),#usn7=(:#usn7{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[:@usn5|`8esn`*..]-(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) Detach Delete $@usn6[..$usn1],`` =~12 =~$#usn7,`3esn` Is Not Null Is Not Null Union Unwind $@usn6 In usn2 In 123456789 As @usn6 Remove [.12 Starts With 0Xa].`4esn`! Unwind 9e0[$_usn3..0X7][7..$#usn8] As @usn6 Union Return *,1.e1[Null][12.e12] As ``,Extract(usn1 In 0x0[..`4esn`] Where \"d_str\" Contains `3esn` Contains 00|Count(*) Ends With 010)[All(usn2 In 1000 Contains 0.e0 Where #usn8 Ends With `4esn` Ends With $`4esn`)..@usn6(Distinct _usn3 In .e1 In $12,123.654 Starts With usn1 Starts With @usn5)][All(usn2 In 1000 Contains 0.e0 Where 0.0[1000..][.e1..])..{`7esn`:`2esn`[$`1esn`..][$_usn3..]}] Limit 7[..12e12][..$`6esn`] Unwind 07[..010][..12.0] As `2esn`"), - octest:ct_string("Remove ({`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[ *..0x0{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}]-(`5esn` {`8esn`:0.0[12...12]})._usn3,All(`4esn` In `6esn`[1e1..] Where 07[12e12]).`3esn`!,[0Xa[$``..][01234567..]].@usn5 Unwind $_usn4[$`1esn`] As `2esn` Unwind 7 In @usn5 In $`4esn` As `5esn` Union Unwind #usn8[$#usn8..] As #usn8 Merge (((`1esn` :`8esn`)-[_usn4:`7esn`|`2esn`]-(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3}))) Create ((_usn4 {`8esn`:9e1 In 01 In 999})) Union All Unwind $7[.12] As @usn6 Detach Delete ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] Match usn1=(`4esn` :#usn7)-[_usn4?:`6esn`]-(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) Where $`5esn` In `2esn` In .0"), - octest:ct_string("Remove None(`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]).`2esn`!,{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}.`6esn`?,usn2:#usn8 Union All Unwind $_usn4[0.12..$`6esn`][00..$@usn6] As `` Merge `2esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})) Union All Return Distinct *,[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As `7esn` Skip _usn4(Distinct `7esn` Starts With $usn2 Starts With .e0) =~`3esn`() =~#usn8(9e0 Ends With $`7esn`) Match (`` :`7esn`)<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]}) Where $`4esn`[12.0..`5esn`] Create `1esn`=(((usn1 :`4esn`:#usn8)-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}))),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`)<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6))"), - octest:ct_string("Unwind 999 Is Not Null Is Not Null As `8esn` Merge (((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) On Match Set (`4esn` :`6esn`:`7esn`)-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(`5esn` {@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}).#usn8 =False In 123456789 In $0,Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])._usn4! =9e1[010..] Optional Match ``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}),#usn7=(:#usn7{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[:@usn5|`8esn`*..]-(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) Union Unwind [`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As @usn5 Return *,[010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]][(:@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})..][Extract(#usn8 In $`5esn` Is Null Is Null Where 1000[0.0][Null])..] As `8esn`,`5esn` =~0Xa As usn1 Order By 0X0123456789ABCDEF Is Null Is Null Descending,Count ( * ) In 010 Descending,`5esn` In $999 Descending Limit .e0 Contains #usn7 Contains $#usn8"), - octest:ct_string("Create _usn3=((@usn6 :_usn3{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(`4esn` :`4esn`:#usn8{`1esn`:$@usn5 In 12e12 In Count(*)})) Return None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..] Union Remove Extract(@usn5 In .12[#usn7][$`8esn`] Where `7esn` Ends With $usn2 Ends With 999|12 =~usn1 =~.e12).`6esn`! Union Create _usn3=(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})) With @usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Limit .12 Is Not Null Is Not Null"), - octest:ct_string("With Distinct *,0Xa[0xabc..] As usn2,`6esn`(00 In 1e1) Starts With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Starts With Extract(#usn8 In $`5esn` Is Null Is Null Where $usn2 Is Not Null) Limit $`7esn` Ends With $`2esn` Ends With $usn1 Create (({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})),(({@usn6:0X0123456789ABCDEF[..usn1]})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn3{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})-[usn1*]->(:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7}))"), - octest:ct_string("Return *,`4esn`[$#usn7] As `1esn`,@usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Order By Count ( * )[`3esn`..][`2esn`..] Ascending,$`7esn` Ends With `1esn` Ends With True Desc With *,12e12 Is Not Null As usn1 Order By [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]) Asc Skip $`6esn` =~1e1 Limit .12 Is Not Null Is Not Null Where @usn5 Contains $`1esn` Contains 999 With $1000 Starts With .0 Starts With 0.0 As `5esn`,`5esn`[`1esn`..`1esn`] As `4esn`,#usn8 In $0 As `4esn` Order By `1esn`(Distinct $@usn5[#usn8..][$`1esn`..],#usn7 Ends With `4esn` Ends With @usn5)[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|usn1[Count ( * )..$usn1]]][{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}] Descending,(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})[Single(`4esn` In 's_str'[12..'s_str'])..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)] Desc Skip 00 In 0.12 In `5esn` Where 's_str' In \"d_str\" In 123456789"), - octest:ct_string("Return Distinct 0x0 Contains _usn4 Contains 123456789 As `7esn`,07 Is Null Is Null As #usn8,``[$`3esn`][$`2esn`] As `5esn` Skip All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12) Starts With Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Contains .0 Contains .e1) Limit 01234567[$@usn6..0X7][$`1esn`..123.654] Union Remove (`1esn` )<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})<-[@usn5?:`1esn`]-(_usn3 :`4esn`:#usn8{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})._usn4?,Any(@usn5 In $#usn8 Is Null Is Null Where False Contains `3esn`).`5esn`?,Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0).`2esn`? Remove (#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}).`8esn`?"), - octest:ct_string("Delete 00 Ends With $_usn4 Ends With $`2esn`,.12[`1esn`..][$`3esn`..] Merge ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[ *010{@usn5:Null Is Null Is Null}]-({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]})) Merge ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})-[@usn6?:#usn7|:_usn4 *00..]->(`` :@usn5{#usn7:0X7[12]})) On Match Set (@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`6esn`:`4esn`|:`7esn` *1000..{`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}]->(:#usn7)<-[`5esn`:`8esn`|:usn1]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}).#usn7? =1000 Contains 123456789 Contains 1e1 On Match Set usn1+=`4esn` Is Null Union Match `1esn`=(((`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})-[ *010{@usn5:Null Is Null Is Null}]-(:`5esn`)<-[`7esn`{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}]-(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}))) Create ((`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})),_usn4=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})) Remove {`6esn`:9e1 Contains $`3esn` Contains 01234567}.`2esn` Union Merge (_usn4 :@usn6:`7esn`)<-[#usn8?:_usn4|:@usn5 *..0x0]-(`6esn` :#usn7{`5esn`:#usn7 Is Not Null Is Not Null})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})"), - octest:ct_string("Merge `4esn`=(((:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[ *010$123456789]-(`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})<-[? *..0x0]->(`` :usn1))) On Create Set [@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]].`1esn`! =999[$usn2..],#usn7+=0X7 In 123456789 In $`5esn` On Create Set #usn7 =$123456789 Is Not Null Is Not Null,[12 =~usn1 =~.e12].usn2? =$_usn3[..$_usn3][.._usn4],`6esn`+=usn1[$`3esn`..$999][True..False]"), - octest:ct_string("Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)],010 In @usn5 In `5esn`,1e1 In $999 In $usn2 Return 01234567 Is Null Is Null As `3esn`,0.12 Contains $12 Contains `8esn` As `5esn`,9e0 Starts With `6esn` Skip `3esn` Ends With 010 Limit Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]} Union Detach Delete 00[7..$123456789],`` Starts With 12,{`4esn`:.12 Starts With 0Xa} Starts With All(usn1 In 00 Starts With _usn3 Where `6esn`[False..0.0][12e12..$usn2]) Remove Extract(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`).usn1!,_usn4(Distinct `7esn` Starts With $usn2 Starts With .e0).`5esn`,``:#usn7 Return $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Limit 9e0 Starts With `6esn` Union All With *,`` =~12 =~$#usn7 As _usn4,[$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Skip `3esn`[..7][..12e12] Limit (:`1esn`{`8esn`:Count ( * ) =~Count(*)})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(`1esn` {_usn4:12.e12 Ends With 01 Ends With .e1})[Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8])] With *,`3esn`[$`1esn`..] As usn2 Limit @usn6(Distinct Null[0e0][12])[..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]]][..`8esn`(010 =~`6esn`)] Where usn2[`3esn`][_usn3] Return $`4esn`[12.e12..][0.0..],12[`7esn`...0][0.12..``] As @usn6,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Skip $`1esn` Ends With $`1esn`"), - octest:ct_string("Merge @usn5=(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})<-[?:`7esn`|`2esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}]->(usn1 :#usn8))) On Match Set `5esn` =[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][``($`4esn`[usn1..$#usn8][12.0..`3esn`])..[`6esn` In 0X7 =~``|$#usn7[...e12][..$7]]][(:``{@usn5:$@usn6 Contains Count ( * ),`2esn`:$0 Is Not Null})-[_usn3?:`5esn`|`1esn` *0X0123456789ABCDEF..]->(`1esn` :#usn7{_usn3:999[.e12][01],`6esn`:9e12 Is Not Null Is Not Null})<-[`5esn`?:usn1|`3esn` *1000..]-(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})..Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])],[`6esn` In 0X7 =~`` Where `7esn`[...e1][..\"d_str\"]|0X0123456789ABCDEF In $1000 In $`3esn`].`5esn`? =12 Ends With 01 Ends With 1e1,[#usn7 Starts With .e12 Starts With $`7esn`].`3esn` =0X0123456789ABCDEF Contains $usn1 On Create Set #usn7 =`5esn` In $999,@usn6+=`2esn`[$`3esn`..],Any(`6esn` In 0X7 =~`` Where 12.e12['s_str']).`5esn` =usn1[..@usn5][...e0] Union All With Distinct $`4esn`[12.e12..][0.0..] As `2esn`,$0[..`8esn`] As _usn4,$`1esn` Starts With $999 Skip $#usn8[1e1][9e1] Limit Count(*) Ends With 010 Remove [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1|9e1 Starts With `1esn` Starts With 0Xa].usn2?,Count ( * ).@usn5? Remove `5esn`:usn1,(`3esn` :_usn4:usn1)-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[`` *0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`1esn`! Union Unwind 0e0[#usn8][$_usn3] As #usn8 Optional Match ((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),((_usn4 {`8esn`:9e1 In 01 In 999}))"), - octest:ct_string("Create ((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})),(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))) Create ((({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)<-[#usn7 *123456789..999]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4})))"), - octest:ct_string("Merge (:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa})-[:usn1|`3esn`]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]}) Detach Delete 0 Is Not Null,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}),{`8esn`:$_usn3[$`4esn`..Null],@usn6:$`2esn` Starts With .e0 Starts With 12.0} Starts With {usn1:`4esn` In $12 In `8esn`} Starts With [usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`|9e0 Starts With `6esn`] Union Merge (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) On Create Set ``(999[``..][Null..]).`8esn` =0.0[999..],`4esn`+=$`5esn` Starts With _usn3 Starts With @usn5,@usn6+=False Is Null"), - octest:ct_string("Return 9e1[010..] As `6esn` Order By $7 Ends With `5esn` Descending,1e1[\"d_str\"] Ascending Limit $`7esn` Is Null Is Null Unwind #usn7 Starts With 0x0 Starts With Null As `6esn` Union All Detach Delete _usn3 Ends With 12e12 Ends With .e0 Union All Match (@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) With Distinct $#usn8 In .e12 In 9e1 Order By All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..] Asc,0Xa[0xabc..] Ascending,@usn6[$`3esn`] Ascending Skip 1e1 In $#usn8 In 12e12 Unwind 0X7 In $999 In $`` As ``"), - octest:ct_string("Optional Match usn1=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})),@usn5=(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})<-[?:`7esn`|`2esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}]->(usn1 :#usn8))) Where 7 Contains $`5esn` Contains $usn1 Unwind Extract(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0|$_usn4[`3esn`][0]) Is Null Is Null As ``"), - octest:ct_string("Merge `1esn`=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(usn1 :`4esn`:#usn8{``:0 Is Not Null Is Not Null,`3esn`:usn1 Starts With $#usn7 Starts With `5esn`})) On Match Set #usn8($`2esn` Contains usn1 Contains `2esn`).`3esn`? =0xabc[..$`1esn`][..01] On Create Set @usn6+=[usn1[..$_usn4][..``],0X7[.e12..01234567]] In `3esn`(@usn5[..True][..0X7],$`3esn` =~$`7esn` =~False) Return Distinct `7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As usn1 Order By 12.e12 In .e0 In `7esn` Asc,9e1[.12..] Asc Skip (_usn3 )<-[usn1]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})-[_usn4?:`6esn`]->(`8esn` :`1esn`) =~Single(#usn7 In 01234567[$`3esn`..] Where 0.12 In $`4esn` In `6esn`) =~Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|$`8esn`[..123456789]) Limit 0.12 In $`4esn` In `6esn`"), - octest:ct_string("Remove Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0).`2esn`?,(`4esn` {@usn5:1e1 In $#usn8 In 12e12})-[_usn4?:`5esn`|`1esn`]-(@usn5 {``:12[usn1][True],``:$`5esn` In `2esn` In $12}).`7esn`!,[999[.e12][01]].`2esn`! Match `5esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``)"), - octest:ct_string("Unwind True[0] As _usn3 Remove `4esn`:``,{#usn7:0[0.12..]}.usn2! Union All Delete Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null)[count(Distinct 0.12 Contains $12 Contains `8esn`)..[$`1esn` Is Null Is Null,9e1 In 01 In 999]],(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}],usn2(Distinct `7esn` Ends With $usn2 Ends With 999) =~Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0) =~Any(`4esn` In `6esn`['s_str'..][010..] Where 01 Ends With .e0)"), - octest:ct_string("Merge ((({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(usn1 :_usn3{@usn6:True[..'s_str'][..01]})<-[`2esn`?]-(usn2 :`3esn`:`1esn`))) On Match Set `4esn` =.12 Is Not Null Is Not Null,{@usn6:True[..'s_str'][..01]}.`2esn` =12.e12[...0][..0x0],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}"), - octest:ct_string("Create #usn8=((`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})),_usn4=(:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]}) Remove _usn3(Distinct $123456789 Is Null Is Null).@usn5?,Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).#usn7! Unwind [`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As @usn5 Union All Remove _usn3:#usn8 Union Detach Delete Extract(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null) =~Any(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null) =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1],$7 Contains 0x0 Contains ``,[\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Remove [01234567[Null..0.e0][Count(*)..$#usn8],#usn8 Contains .e0 Contains $`8esn`,123456789[1e1..0.0]].`1esn`? Create (:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa}),(`3esn` :usn2:@usn6)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]})-[_usn3]-(`` {`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'})"), - octest:ct_string("Remove None(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 01234567[$`3esn`..]).#usn7,[@usn5 In $#usn8 Is Null Is Null Where $`3esn` Contains 0X0123456789ABCDEF Contains 00].`8esn`!,[`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn`[1e1..07][0x0..Count ( * )]|$`7esn` Is Null Is Null].`6esn` Union All With *,@usn5 Starts With 12e12 Starts With @usn5 Limit `2esn` In 12.e12 In `3esn`"), - octest:ct_string("Remove {@usn6:123456789 =~$123456789,`4esn`:usn1 Contains False Contains ``}.`3esn`! Detach Delete usn1 Ends With 010 Delete usn1[1e1][$_usn4],$123456789[..0.12][..#usn7] Union All Remove `8esn`(Distinct 00 In 1e1).usn2!,Single(`4esn` In `6esn`['s_str'..][010..] Where 0e0 Is Not Null Is Not Null).`7esn`! Union All With Distinct 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Order By [usn1 In 00 Starts With _usn3 Where 00][#usn8(Distinct $`2esn`[$123456789..$`1esn`][0Xa..$``],@usn6[`5esn`..$`3esn`])..['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`]] Asc,999 Contains `7esn` Desc,Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`] Ascending Skip 0e0 Is Null Is Null"), - octest:ct_string("Create @usn5=({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)<-[?:usn2|#usn8{#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7}]-({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}),((:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1})) With Distinct {usn1:'s_str'[12..'s_str'],#usn7:07[`6esn`..][`5esn`..]} As `1esn` Limit {`7esn`:.e0 Contains #usn7 Contains $#usn8}[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..None(`6esn` In 0X7 =~`` Where 12.e12['s_str'])][(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})..({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})]"), - octest:ct_string("Create ((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6)) Unwind `5esn` In 12 As `2esn` Match `1esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) Where $123456789 Is Not Null Is Not Null Union With Distinct 1.e1 Contains @usn6 As usn2 Order By [@usn6 In @usn5 In $`6esn` Where False In $`7esn` In .0|.12 Starts With $usn2] Ends With Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) Ends With Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Desc,Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}) Desc Limit [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7] Starts With [@usn6 In @usn5 In $`6esn` Where $``[_usn4..][`7esn`..]|12.e12 In $0 In Count(*)] Starts With Extract(`4esn` In $`8esn` Starts With 1000 Where `6esn`['s_str'..][010..]|12.e12[@usn5..123.654]) Where $`5esn` In `2esn` In .0"), - octest:ct_string("Merge _usn4=(usn1 :_usn4:usn1)<-[`5esn` *0..010]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) Union Merge usn2=(:`8esn`{usn2:7 Contains 9e1})<-[_usn3?:`7esn`|`2esn` *010]-(#usn8 :`4esn`:#usn8)-[`8esn` *..0x0{#usn7:Count ( * )[Count ( * )..12e12][usn1..1000],`4esn`:010 Is Null Is Null}]->(@usn6 ) Unwind 0x0 =~_usn4 As `5esn` Union Return 123456789 =~_usn4 =~$0 Order By 0xabc Starts With _usn3 Desc,(`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Ascending,Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) Contains Extract(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`) Desc Skip Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] Limit [@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2] Is Null Return Distinct *,.e1[usn1..],$1000[.e0..] As `3esn` Skip `5esn`[Count ( * )..][\"d_str\"..]"), - octest:ct_string("Unwind [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] As #usn7 Match ((`` :`1esn`)-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`4esn` {`2esn`:@usn6[`5esn`..$`3esn`],`7esn`:$`1esn` Is Null})) Where $`8esn`[$``..$7][$1000..$`7esn`]"), - octest:ct_string("Unwind 12e12 Starts With $123456789 Starts With 12.0 As usn1 Optional Match `3esn`=(({``:$1000 Is Null Is Null})) Where `1esn`[...e1] Union All Unwind 1e1[@usn5..] As _usn4"), - octest:ct_string("Unwind {@usn5:$`3esn`} Starts With .12 As @usn5"), - octest:ct_string("Detach Delete $`3esn` Contains 0X0123456789ABCDEF Contains 00,Extract(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]|1000[..$`6esn`][..0xabc]) Ends With [07[$999],12e12[Count ( * )..][usn2..]] Unwind 0X7[0e0..] As `5esn` Union Create ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})),((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) Detach Delete 1000 In 0X0123456789ABCDEF In 01,`3esn`()[Filter(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`)..{@usn6:`6esn`[_usn4..][$`6esn`..]}],Extract(usn1 In 0x0[..`4esn`] Where \"d_str\" Contains `3esn` Contains 00|Count(*) Ends With 010)[All(usn2 In 1000 Contains 0.e0 Where #usn8 Ends With `4esn` Ends With $`4esn`)..@usn6(Distinct _usn3 In .e1 In $12,123.654 Starts With usn1 Starts With @usn5)][All(usn2 In 1000 Contains 0.e0 Where 0.0[1000..][.e1..])..{`7esn`:`2esn`[$`1esn`..][$_usn3..]}] Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7}))"), - octest:ct_string("Match (@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0}),(((`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`5esn`)<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 ))) Union All Return Distinct All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null,0xabc[$@usn5] As `7esn`,.e0[usn2..] As _usn3 Skip 0x0 In `8esn` In 999 Merge #usn8=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) On Match Set `2esn`+=123.654 In \"d_str\" In $_usn3"), - octest:ct_string("Unwind 1.e1[Null][12.e12] As `7esn` Unwind Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) As `4esn` Create `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8}))"), - octest:ct_string("Unwind $999 =~False As usn1 Merge `5esn`=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))) On Match Set _usn3+=07 In Count ( * ) In \"d_str\" Unwind $`` Is Null Is Null As #usn8 Union All Merge ((`1esn` :usn2:@usn6)-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})) On Match Set [$usn1 In 1000 In $#usn7,$#usn7 In 12.0 In 0X0123456789ABCDEF,9e0 Is Not Null]._usn3 =All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`! =0xabc Starts With _usn3 Create _usn4=(@usn6 {#usn7:False[`2esn`..#usn8]})<-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]-(`4esn` {@usn6:True[..'s_str'][..01]}) Match ({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})-[#usn7:`1esn` *07..]->(:`7esn`{``:$`1esn` Starts With @usn6})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) Where 9e12 =~01 =~$`7esn`"), - octest:ct_string("Match #usn7=({`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]->(`3esn` {_usn3:@usn6 Contains _usn4 Contains $`4esn`})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->({_usn3:12.e12 In $0 In Count(*)}) Union Unwind 1000[123.654..9e12][1000.._usn3] As _usn3"), - octest:ct_string("Match ({`5esn`:123456789 Starts With `2esn` Starts With .0})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})<-[`` *12..0xabc]->(`3esn` :_usn4:usn1) Return $`4esn` Contains 0Xa,010 In `7esn` Order By 0x0 In `8esn` In 999 Descending Detach Delete 0X0123456789ABCDEF Contains 12.e12 Contains 999,0X0123456789ABCDEF In $1000 In $`3esn`,'s_str' Is Not Null Is Not Null Union Remove All(`4esn` In 's_str'[12..'s_str'] Where $`8esn`[..$``]).`7esn`!,usn2(07[$999]).`4esn` Remove [_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4].@usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`!,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`)._usn4 Create #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`)"), - octest:ct_string("Return Distinct $12 Contains 123.654 Contains `8esn` As _usn4 Remove None(usn1 In 0x0[..`4esn`] Where False[.e1..Null]).``,[.e0[..999][..0X7]].`5esn`?"), - octest:ct_string("Remove Extract(_usn4 In usn1 Contains False Contains `` Where _usn4[$`4esn`..]|999 Contains `7esn`).usn1? With Distinct *,`4esn`($123456789 =~$0 =~$`3esn`) =~[07[12][$`6esn`],$`2esn` =~'s_str',$12[01..][1.e1..]] =~usn1(#usn7 Starts With `1esn`) As `3esn` Order By Extract(usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`) Contains [0 Contains 12e12,0xabc Ends With $7 Ends With $`2esn`,0x0 =~_usn4] Ascending,07[1e1] Ascending Skip 0e0[$12..`5esn`][Count(*)..`6esn`] Limit $123456789 Is Not Null Is Not Null Where 7 =~9e0 =~'s_str' Return None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) As _usn3 Skip `2esn` Is Not Null Is Not Null Limit None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]]"), - octest:ct_string("Merge ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) On Match Set (`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})<-[?{#usn7:`6esn`[False..0.0][12e12..$usn2]}]-(`4esn` {`4esn`:#usn7[..$1000][..01]})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}).`4esn`! =0 Is Not Null,`6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`1esn` =$_usn3[$`4esn`..Null] On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Delete $`2esn` Ends With `3esn` Ends With $7,0e0[12][$_usn4],`7esn`[Null..][@usn5..] Merge (((usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1)<-[@usn5:#usn8{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(#usn8 :_usn3))) Union Detach Delete 999[$`8esn`],Single(#usn7 In 01234567[$`3esn`..])[(`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']})][[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0]],$#usn7 In .e1 In 01 Delete 01 In 01 In 12,`6esn`[0X7..][0x0..] Union All Merge _usn3=((@usn6 :_usn3{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(`4esn` :`4esn`:#usn8{`1esn`:$@usn5 In 12e12 In Count(*)})) Create (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Detach Delete {@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null} Is Not Null Is Not Null,00 In 0.12 In `5esn`,Single(#usn8 In $`5esn` Is Null Is Null Where 1000[0.0][Null]) =~[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] =~None(#usn8 In $`5esn` Is Null Is Null Where 0.0[..12e12][..$0])"), - octest:ct_string("Remove [usn2 In 1000 Contains 0.e0 Where $_usn3[Null]|1000[..$`6esn`][..0xabc]].`` Merge (((:_usn4:usn1)-[@usn5?:@usn6*..]-(`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:@usn6]-(_usn3 :`4esn`:#usn8{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]}))) On Match Set `5esn` =999[.e12][01],Extract(usn1 In 0x0[..`4esn`] Where @usn6[$`3esn`]).#usn8? =`1esn` In 999 In $#usn7,usn1 =12.e12[0e0..7] Merge `8esn`=((`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) On Match Set Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0Xa Is Not Null Is Not Null)._usn3? =Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}),#usn7+=$`7esn` =~.e1,Filter(`4esn` In 's_str'[12..'s_str'] Where $123456789 Contains 01 Contains 0.12).#usn8! =.12[`1esn`..] On Create Set #usn8+=12[0X7..@usn6],{``:12e12[$`5esn`][07],_usn3:$`6esn` Is Null Is Null}.usn1 =$`6esn` Is Not Null Is Not Null Union Delete usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`]) Is Null,.12 Is Not Null Is Not Null,1e1 Starts With #usn8 Starts With 1.e1 Match ((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})),(_usn3 :_usn3)"), - octest:ct_string("Unwind 07[..$_usn3] As #usn7 Union All Create #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`)"), - octest:ct_string("Unwind 0X0123456789ABCDEF[..usn1] As _usn3 Optional Match usn2=(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})))"), - octest:ct_string("Create (((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})-[_usn4?:`5esn`|`1esn`]-(@usn5 {``:12[usn1][True],``:$`5esn` In `2esn` In $12})<-[`` *0xabc]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}))),`6esn`=(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Remove [`3esn`[..7][..12e12]].`2esn`?,(`7esn` :#usn8)-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?{`3esn`:`6esn` =~01234567 =~0Xa,@usn5:0.e0[9e1..][0.0..]}]->(`2esn` {#usn8:12.e12[0e0..7]})._usn4? Union All Match @usn6=((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]->(:_usn3{@usn6:$`7esn` Is Null Is Null})),((({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999})<-[@usn6?:`6esn`*..]-(_usn3 :usn2:@usn6)-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6))) Where #usn7 Ends With 9e1 Optional Match #usn7=(:#usn7{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[:@usn5|`8esn`*..]-(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) Match (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Where Count ( * ) =~Count(*)"), - octest:ct_string("Unwind {#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] As _usn3 Return 0.12[Count(*)..] Order By [@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0] Is Null Ascending,`2esn` Is Not Null Is Not Null Ascending,12.0 In 1000 In _usn4 Desc Skip 9e12[$1000][$@usn6] Limit $@usn6 Contains Count ( * ) Unwind 010 In @usn6 As usn2 Union Detach Delete [1e1[0.0],0.12 Contains $`2esn` Contains $_usn4],Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4)[..`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)][..{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}],{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[{`4esn`:$7 Ends With 12.0 Ends With 0xabc,_usn4:0X0123456789ABCDEF[.e0..$`4esn`]}..][Extract(`4esn` In `6esn`['s_str'..][010..] Where $999 Ends With $`3esn` Ends With `8esn`)..] Return Distinct *,\"d_str\"[Count ( * )] As `7esn`,0x0[123456789] As @usn6 Skip `1esn`[@usn6..$123456789]"), - octest:ct_string("Return Distinct *,None(@usn5 In 0X7 =~.0 =~\"d_str\" Where _usn3[...e1])[[_usn4 In usn1 Contains False Contains `` Where 0.12 In $7 In 0]..][[7[..12e12][..$`6esn`]]..],[usn1[..@usn5][...e0]][(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)] Skip `8esn`[$#usn7] Create (({#usn7:Count ( * )[@usn6..0x0]})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})) Remove All(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`).@usn6 Union All Detach Delete 0x0 Contains $`8esn` Contains `6esn` Merge _usn4=(usn1 :_usn4:usn1)<-[`5esn` *0..010]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) On Create Set `4esn` =$@usn6 Contains 07 Contains 0.e0 On Match Set [0X7 =~.0 =~\"d_str\",9e1[...e0]].@usn5 =Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}),{@usn6:usn1 In 1000 In $`5esn`,@usn6:9e0[``][123.654]}.`3esn`! =$999 In $`8esn` In `5esn` Union All Return [@usn5 In 0X7 =~.0 =~\"d_str\"|#usn7 Starts With `1esn`][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn`[...e1][..\"d_str\"])..][`2esn`(Distinct 12e12[Null],0xabc[12.e12..`1esn`])..],`2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As `6esn` Order By None(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00)[[@usn6 Starts With `7esn` Starts With Null]][{`1esn`:07[`6esn`..][`5esn`..],usn1:$usn2[False..`7esn`][`7esn`.._usn3]}] Ascending,[010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]][(:@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})..][Extract(#usn8 In $`5esn` Is Null Is Null Where 1000[0.0][Null])..] Ascending Unwind #usn8 Is Not Null As usn2"), - octest:ct_string("Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where True Contains @usn6|123456789 Starts With `2esn` Starts With 9e12).usn2? Create ((({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)<-[#usn7 *123456789..999]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}))) Merge ``=(`7esn` :`7esn`)-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0}) Union All Unwind Any(`4esn` In `6esn`['s_str'..][010..] Where \"d_str\" =~`6esn` =~0Xa)[[$`6esn` Is Null Is Null,0Xa Is Not Null Is Not Null,0X7 In 123.654 In $`2esn`]][[usn2 In 1000 Contains 0.e0 Where $_usn3[Null]|$0 =~$usn1 =~9e1]] As #usn8 Return *,usn2 =~0x0,07 In `5esn` In 12e12 Skip Null Contains 9e1 Limit [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] Unwind None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] As @usn5"), - octest:ct_string("Delete Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]),7 Is Null Create ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})),((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) With Distinct Null[0.e0..0x0] As `2esn`,$`1esn` Starts With $999 As #usn8 Where Count(*)[`7esn`..$12] Union All Merge @usn6=(({_usn3:$0 Ends With $#usn7 Ends With .12})-[@usn6?:#usn7|:_usn4 *00..]->(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})) On Match Set [`6esn` In 0X7 =~`` Where $`3esn` =~Null|1.e1[0X0123456789ABCDEF..][$`5esn`..]]._usn3? =Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null)[count(Distinct 0.12 Contains $12 Contains `8esn`)..[$`1esn` Is Null Is Null,9e1 In 01 In 999]],`1esn`+=None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]) Ends With None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With @usn6($123456789[0.0..]),(_usn4 {#usn7:False[`2esn`..#usn8],#usn8:`5esn`[`1esn`..`1esn`]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]}).`3esn` =01234567[$@usn6..0X7][$`1esn`..123.654] Union All Remove `1esn`:`6esn`:`7esn`,`4esn`(@usn6[..0xabc][..$#usn7],0X7[12]).`5esn`!"), - octest:ct_string("Unwind False Ends With $`8esn` As `3esn` Create `1esn`=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(usn1 :`4esn`:#usn8{``:0 Is Not Null Is Not Null,`3esn`:usn1 Starts With $#usn7 Starts With `5esn`})) Union Unwind `2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As `4esn` Return Distinct *,01234567 Is Null Is Null Order By 0e0 =~Count(*) =~0Xa Descending Skip [$1000 Is Null Is Null] Is Null Limit Extract(@usn6 In @usn5 In $`6esn` Where $`5esn` Contains $@usn6|$0[7..][Null..])[[`6esn` In 0X7 =~`` Where 9e1[0.e0..][#usn8..]]]"), - octest:ct_string("With *,usn2 =~0x0,07 In `5esn` In 12e12 Skip `` Is Not Null Is Not Null Where usn1 Contains $`` Remove None(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True]).#usn7?,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]].@usn5?,[00[01234567][False]].`1esn`? Union Create (`2esn` :``)<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(_usn3 :_usn4:usn1),`8esn`=(`4esn` {@usn5:1e1 In $#usn8 In 12e12})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`7esn` {`8esn`:$123456789 Contains 01 Contains 0.12})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8) Remove (_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`).usn2,[`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]|12 Is Null Is Null].#usn8? Detach Delete 0X0123456789ABCDEF Contains 12.e12 Contains 999,0X0123456789ABCDEF In $1000 In $`3esn`,'s_str' Is Not Null Is Not Null Union All Create `8esn`=(((:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[:#usn7|:_usn4{``:$1000 Is Null Is Null}]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`}))) Remove [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`6esn`[$@usn6..]|010 =~$usn2 =~1e1].@usn6?"), - octest:ct_string("Detach Delete usn2(Distinct `7esn` Ends With $usn2 Ends With 999) =~Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0) =~Any(`4esn` In `6esn`['s_str'..][010..] Where 01 Ends With .e0),#usn7 Contains .0 Contains .e1,0.12[Count(*)..]"), - octest:ct_string("Remove (_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`).usn2,[`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]|12 Is Null Is Null].#usn8? Union All Create (:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa}),(`3esn` :usn2:@usn6)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]})-[_usn3]-(`` {`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}) Delete True In 0x0,0X7[12] Union Create `4esn`=(:`5esn`{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(_usn4 ),(:#usn7) With Distinct {#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Order By usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Ascending,`` Asc,$999 In $`8esn` In `5esn` Descending Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit `4esn` Is Null Create (:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa}),(`3esn` :usn2:@usn6)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]})-[_usn3]-(`` {`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'})"), - octest:ct_string("With Distinct *,$@usn6[..$usn1] As _usn3 Order By [`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) Desc Where 0.12 Contains $12 Contains `8esn` Create @usn5=(({`8esn`:$usn1[0.12..]['s_str'..],`8esn`:`1esn`[0e0..]})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})),_usn4=(@usn6 {#usn7:False[`2esn`..#usn8]})<-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]-(`4esn` {@usn6:True[..'s_str'][..01]}) Remove (:`6esn`:`7esn`{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12})-[ *00..{`2esn`:$0 Is Not Null}]-(`` :#usn7$0).``,[#usn7 In 01234567[$`3esn`..] Where 0Xa[0xabc..$#usn8]]._usn4!,[.12 Contains $`4esn` Contains $`6esn`].`6esn`? Union All Create (((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))),(@usn6 {`4esn`:$`2esn`[..`2esn`]})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})"), - octest:ct_string("Remove [$`2esn` =~'s_str',12 Ends With 01234567,$1000 Is Null Is Null].`3esn`?,[12.e12[...0][..0x0]]._usn4,(`1esn` :`8esn`)<-[#usn7:`3esn`|:`4esn` *00..]->(`4esn` :`8esn`)-[`4esn`? *0Xa]-(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}).`3esn`? With Distinct [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending,9e12 Asc Skip 0X7[.e12..01234567] Limit $_usn4[0.12..$`6esn`][00..$@usn6] Match `4esn`=(({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})) Union Merge (((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))) On Match Set `7esn`+=.e1[..$`4esn`][.._usn4],`4esn`+=@usn6[$`8esn`][12.e12],@usn5+=1000 Contains $#usn7 Contains `6esn` Match (({#usn7:`7esn` In 999 In @usn6,usn2:.12 Ends With $`4esn` Ends With Count(*)})-[`5esn`:@usn6]->(:``)),`6esn`=((:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Where `2esn` Contains $999"), - octest:ct_string("Match `3esn`=(((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})-[?*..{`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}]-(`` :`3esn`:`1esn`{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-({usn1:010[@usn5..],`7esn`:`2esn` Is Not Null Is Not Null}))) Unwind 12e12[Count ( * )..][usn2..] As `3esn`"), - octest:ct_string("Remove (`` )<-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn4:usn1).`8esn`?,{usn2:0 Contains 12e12,#usn8:$`1esn` Starts With $999}.#usn8? Union All Remove All(`4esn` In 's_str'[12..'s_str'] Where $`8esn`[..$``]).`7esn`! Create `2esn`=(_usn4 {`8esn`:9e1 In 01 In 999})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Merge `8esn`=(({_usn3:$0 Ends With $#usn7 Ends With .12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[?:``|:_usn4 *..0X7]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})) Union All Remove [usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`|$`8esn`[$``..$7][$1000..$`7esn`]].`3esn`!,@usn6:#usn8,(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 Remove [@usn5 In 0X7 =~.0 =~\"d_str\" Where $`8esn` Starts With 1000|@usn6 Contains .e1 Contains $`4esn`].`8esn`!"), - octest:ct_string("Return Distinct 12e12[0.e0..True][0.12..0.0] As #usn7,07[..010][..12.0] As `2esn` Order By `3esn`(Distinct $_usn3[Null],12[..True][..$`4esn`]) Is Null Is Null Descending,Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) Ascending Skip Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 01234567[.12..7][1000..1.e1]|$`5esn` In False) Contains {@usn5:Null[0e0][12],_usn4:0 Contains 12e12} Contains [usn1 In 0x0[..`4esn`] Where \"d_str\" Contains `3esn` Contains 00|@usn6[`3esn`..][$7..]] Remove Single(`4esn` In `6esn`['s_str'..][010..] Where 12 =~usn1 =~.e12).`4esn`,`3esn`:`` Union All Detach Delete Extract(`4esn` In $`8esn` Starts With 1000 Where False In `3esn`|$`3esn` =~Null),12 Is Null Is Null With $`5esn`[$123456789][`1esn`] As `8esn`,[@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] As #usn7 Order By None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] Ascending,Count(*) In 01 In .0 Asc,Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`6esn`[$@usn6..]) In {`7esn`:12e12 Ends With 010 Ends With .0} In None(#usn8 In $`5esn` Is Null Is Null Where 123456789 In $usn2 In `6esn`) Asc Where 0.e0[9e0][0e0]"), - octest:ct_string("Remove All(_usn4 In usn1 Contains False Contains `` Where 0.12 In $7 In 0).@usn5 Union All Unwind [\"d_str\" Starts With $usn1,.12 Contains $`4esn` Contains $`6esn`,01234567 =~usn1] Is Null Is Null As _usn3 Remove Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]|`3esn` Contains 0Xa).usn1? Delete .12[..`6esn`][..\"d_str\"],$`6esn`[`3esn`..0e0],$_usn4[12e12][`4esn`] Union All Unwind [`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] As #usn8"), - octest:ct_string("Optional Match (((usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(`4esn` :`4esn`:#usn8{`1esn`:$@usn5 In 12e12 In Count(*)})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3}))),usn2=(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}))) Create (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Union Detach Delete 1000 In 0X0123456789ABCDEF In 01,@usn6(Distinct Null[0e0][12])[..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]]][..`8esn`(010 =~`6esn`)],1e1 Starts With #usn8 Starts With 1.e1 Detach Delete Null Starts With $`7esn` Starts With `2esn` Delete $7 Ends With 12.0 Ends With 0xabc,usn1 =~Null =~`5esn` Union Merge ((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)) Match _usn3=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}),``=(({`5esn`:0e0 =~_usn4}))"), - octest:ct_string("Optional Match #usn8=((:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[`2esn`? *0..010]->(usn2 :_usn3)-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]})) Return Distinct 12.e12 In $0 In Count(*) As `` Return Distinct $`1esn` Starts With $999 As #usn8,Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)[{#usn8:`5esn` =~0Xa,@usn5:0X7[999][$1000]}..[`` Starts With 12,$`1esn` Starts With $999]][`7esn`(Distinct $usn2[..12.0])..`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])] Order By 9e1 Is Not Null Is Not Null Asc,$usn2[$123456789..123.654][$`5esn`..'s_str'] Desc Union All Unwind 123456789 =~$123456789 As `4esn` Unwind $`7esn` Is Null Is Null As @usn5"), - octest:ct_string("Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.0[0Xa][00]|$`1esn` Starts With $999).`6esn`,Any(`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]).`3esn` Remove count(Distinct 0.e0[9e1..][0.0..],$usn2 =~$#usn8).`5esn`?,{`4esn`:9e12 Is Not Null Is Not Null,`8esn`:$0[..`8esn`]}._usn3,@usn5:usn2:@usn6 Unwind `7esn`[1000..][$123456789..] As #usn7"), - octest:ct_string("Create ((`` :`1esn`)-[`1esn`:usn2|#usn8 *1000..]-(`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[`4esn`]->({`8esn`:0X7 In 's_str' In $`1esn`})) Detach Delete {`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Union All Return Distinct *,[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As `7esn` Order By 00 Is Null Is Null Descending,$usn2 Starts With $`6esn` Starts With 0xabc Ascending,123456789 Starts With #usn7 Starts With `6esn` Asc Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`) Limit 0x0 Contains _usn4 Contains 123456789 Unwind Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4)[..`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)][..{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}] As #usn7 Remove ({`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[ *..0x0{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}]-(`5esn` {`8esn`:0.0[12...12]}).``!,Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null).``!,usn1:`8esn` Union Remove [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1|9e1 Starts With `1esn` Starts With 0Xa].usn2?,Count ( * ).@usn5?"), - octest:ct_string("Optional Match @usn6=((:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})-[?:`4esn`|:`7esn`]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})),`8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`}) Where @usn6[`3esn`..][$7..] Create ((`6esn` :_usn4:usn1{`6esn`:00 In 12.e12})<-[`7esn`?:`5esn`|`1esn`]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`})),(usn1 :`3esn`:`1esn`)-[?:`4esn`|:`7esn` *..0x0]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Match ((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})),(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))) Where $`8esn` =~$usn2 Union All Remove _usn4:`3esn`:`1esn`,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`! Return Distinct $`4esn` Contains `6esn` Contains #usn7,0.e0[..#usn8][..Null],$1000 Is Not Null Is Not Null Skip 's_str' =~0.e0 Limit `2esn` In 12.e12 In `3esn` Union Return Distinct [@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Order By 123456789 Starts With #usn7 Starts With `6esn` Descending,7[..0X7][..'s_str'] Ascending,None(`4esn` In 's_str'[12..'s_str'] Where 12.0[0Xa][00]) Is Not Null Desc Skip 0x0 Limit (:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[@usn6?:`1esn`]-(:`5esn`)-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`) Starts With Single(_usn4 In usn1 Contains False Contains `` Where $`6esn` Is Null Is Null) Match ((`7esn` :`2esn`:`3esn`{@usn6:9e0 Ends With $`7esn`})),``=((`3esn` )) Where $`1esn` Is Null Is Null"), - octest:ct_string("Unwind [0Xa Is Null Is Null] Is Null As `1esn` With Distinct $`2esn`[``..] As `3esn`,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn`,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] As @usn6 Order By `7esn`[1000..][$123456789..] Desc,$#usn8 In .e12 In 9e1 Descending,$@usn5 Contains $`7esn` Contains #usn8 Desc"), - octest:ct_string("Detach Delete Null Is Null Is Null,$`2esn` =~'s_str',`3esn` =~$`5esn` =~12 Union With 0x0[...e12][..@usn5] As @usn5 Limit `1esn`(Distinct Count(*)[..`3esn`]) Starts With $0 Where $12 Contains 123.654 Contains `8esn` Union All Remove Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]|`3esn` Contains 0Xa).usn1?"), - octest:ct_string("With *,[#usn8 In $`5esn` Is Null Is Null Where 0.0[..12e12][..$0]][{`2esn`:.e1 In $@usn6 In 999,usn2:@usn5 Ends With $`3esn` Ends With 12e12}..] As @usn5 Order By #usn7 Contains $7 Descending,$`8esn`[$``..$7][$1000..$`7esn`] Ascending,`1esn`(Distinct $@usn5[#usn8..][$`1esn`..],#usn7 Ends With `4esn` Ends With @usn5)[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|usn1[Count ( * )..$usn1]]][{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}] Descending Skip $#usn7 =~0xabc Limit ({`2esn`:$usn2 Is Not Null})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})[{_usn4:.12 =~.12 =~1e1,#usn7:.e1 Starts With 0.0 Starts With `6esn`}] Merge (((@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]-(usn1 :`3esn`:`1esn`))) On Create Set `7esn` =$`6esn` Is Not Null Is Not Null Union All Unwind Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4)[..`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)][..{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}] As `1esn` Detach Delete _usn3 Is Null,01 Contains 123456789"), - octest:ct_string("Return Distinct *,Extract(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12) Starts With (@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]}),$`1esn` Ends With _usn4 Ends With `3esn` Skip [$1000 Is Null Is Null] Is Null Limit $1000 In $`7esn` In $7 Return *,9e1['s_str'..1e1] As #usn7,01234567 As `6esn` Skip `2esn` In Count(*) In 9e0 Limit usn2 Is Not Null Unwind Count ( * )[..usn1][..12.e12] As #usn8 Union Return Distinct #usn8 In $0 As `1esn`,'s_str' In \"d_str\" In 123456789,[0Xa[$``..][01234567..]] Contains `3esn`(Distinct _usn3 In .e1 In $12) Contains (`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']}) As @usn6 Order By Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Ascending,0xabc[$@usn5] Asc,usn1[..$_usn4][..``] Ascending"), - octest:ct_string("Merge (((`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`6esn`? *0Xa{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}]-(:`6esn`:`7esn`{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[`1esn`?:`1esn` *01234567..12]-({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}))) On Match Set [usn1 In 00 Starts With _usn3 Where `6esn`[1e1..]].`5esn`! =Count ( * )[Count ( * )..12e12][usn1..1000],@usn5+=usn1 Contains $`` On Match Set `6esn`+=9e0 Is Not Null,``+=`4esn` Ends With 123456789 Ends With @usn5"), - octest:ct_string("Optional Match `7esn`=(@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Union All Optional Match ``=((({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[usn2?]-(`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))),(:usn2:@usn6)-[ *07..]->(`5esn` :`2esn`:`3esn`{_usn3:$`2esn`[$123456789..$`1esn`][0Xa..$``],`5esn`:12.e12[@usn5..123.654]}) Where 0.12 In $7 In 0 Remove `3esn`:`7esn`,(:_usn4:usn1)-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]-(`1esn` :`1esn`).``?,usn2:#usn8"), - octest:ct_string("Remove [1e1 In $#usn8 In 12e12,7 In @usn5 In $`4esn`].`5esn`!,Single(usn1 In 00 Starts With _usn3).@usn5 Union All Remove [usn1 In $123456789 Contains usn2 Where $1000 =~$`7esn`|False In $`7esn` In .0].`5esn`! Union Detach Delete 1000 In 0X0123456789ABCDEF In 01,@usn6(Distinct Null[0e0][12])[..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]]][..`8esn`(010 =~`6esn`)],1e1 Starts With #usn8 Starts With 1.e1 Detach Delete Null Starts With $`7esn` Starts With `2esn` Delete $7 Ends With 12.0 Ends With 0xabc,usn1 =~Null =~`5esn`"), - octest:ct_string("Merge `3esn`=(usn1 :`7esn`)<-[? *00..{`6esn`:$@usn6[_usn3..0.e0]}]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}) On Create Set `1esn` =0X0123456789ABCDEF[.e0..$`4esn`] On Match Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] Return *,{`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])] As `3esn` Limit All(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..]) Is Null Is Null Union All With Distinct *,07[0..`4esn`],Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) Limit Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Where @usn5[..True][..0X7]"), - octest:ct_string("With Distinct ``(Distinct `1esn`[0e0..]) =~(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[@usn6?:`1esn`]-(:`5esn`)-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}),All(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`)[[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]]..][({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})..] As #usn8,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Skip None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Ends With $999 Ends With usn2(0X7[0e0..],$#usn8 Is Null Is Null) Limit usn1[$`3esn`..$999][True..False] Return 123456789 =~_usn4 =~$0 Order By 1000[..$`6esn`][..0xabc] Ascending,count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null Desc Skip 12.e12['s_str'] Union All Merge _usn4=(usn1 :_usn4:usn1)<-[`5esn` *0..010]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) On Create Set `4esn` =$@usn6 Contains 07 Contains 0.e0 On Match Set [0X7 =~.0 =~\"d_str\",9e1[...e0]].@usn5 =Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}),{@usn6:usn1 In 1000 In $`5esn`,@usn6:9e0[``][123.654]}.`3esn`! =$999 In $`8esn` In `5esn` Merge ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) On Match Set (`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})<-[?{#usn7:`6esn`[False..0.0][12e12..$usn2]}]-(`4esn` {`4esn`:#usn7[..$1000][..01]})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}).`4esn`! =0 Is Not Null,`6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`1esn` =$_usn3[$`4esn`..Null] On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Union All With Distinct *,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7,@usn6 Starts With `7esn` Starts With Null Order By Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]|$0 =~$usn1 =~9e1)[{``:\"d_str\",`1esn`:$1000 =~$`7esn`}] Descending"), - octest:ct_string("Remove (`1esn` )<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})<-[@usn5?:`1esn`]-(_usn3 :`4esn`:#usn8{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})._usn4?,Any(@usn5 In $#usn8 Is Null Is Null Where False Contains `3esn`).`5esn`?,Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0).`2esn`? Remove (#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}).`8esn`? Union Detach Delete $_usn4['s_str'..] Unwind 1.e1 Is Not Null Is Not Null As `4esn` Union All Return *,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn`,@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn` Skip {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]}"), - octest:ct_string("Unwind `3esn`(Distinct _usn4 Ends With 01 Ends With $`1esn`) Starts With [Count(*) In 01 In .0,`` Starts With 12,$_usn4[$`8esn`..][07..]] Starts With Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12 In $0 In Count(*)) As _usn3 Create `2esn`=(_usn4 {`8esn`:9e1 In 01 In 999})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})))"), - octest:ct_string("Return Distinct Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1),9e1[010..] As `6esn` Order By $`2esn`[$usn2..][123456789..] Ascending,{@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7) Asc Limit 9e1 Starts With `1esn` Starts With 0Xa Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null})-[#usn7:`1esn` *07..]->(#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})) Union All Merge `8esn`=(:`8esn`) On Match Set usn2+=.e1 Ends With _usn4 Ends With @usn5,@usn5+=_usn3 In .e1 In $12,Extract(`4esn` In `6esn`[1e1..] Where $`7esn` Ends With `1esn` Ends With True).`` =010 In @usn6 Return Distinct Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1),9e1[010..] As `6esn` Order By $1000 Contains $`3esn` Desc,(`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Ascending,[$`3esn` Starts With 01234567 Starts With $1000] Starts With `4esn` Starts With [$`2esn`[..7][..$usn1]] Desc Skip $`7esn` =~.e1"), - octest:ct_string("Unwind ``(Distinct `1esn`[0e0..]) =~(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[@usn6?:`1esn`]-(:`5esn`)-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) As _usn4 Union Match `4esn`=(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}),`7esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}) Where $`4esn`[9e1..][0..] Remove ``(Distinct 1e1 Is Null,$`6esn`[Count(*)..0.e0][0.0..Count ( * )]).`7esn`!,Extract(`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]|_usn3 Is Not Null Is Not Null).@usn6,[1e1 In $#usn8 In 12e12,9e1 Contains $`3esn` Contains 01234567].@usn6! Detach Delete 07[0..`4esn`],``(Distinct `1esn`[0e0..]) =~(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[@usn6?:`1esn`]-(:`5esn`)-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}),[$1000 Is Null Is Null] Is Null"), - octest:ct_string("Unwind `4esn`[7..][1000..] As usn2 Create ((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` )) Unwind $`2esn`[$123456789..$`1esn`][0Xa..$``] As `7esn` Union All Create `8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`})"), - octest:ct_string("Detach Delete $@usn5 In 12e12 In Count(*),`` =~12 =~$#usn7,Null Contains _usn4 Union Create ((usn2 {usn1:123.654 Contains #usn8,`8esn`:0x0 Starts With $`7esn` Starts With `2esn`})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})) With *,0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str' Order By [`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) Descending,$123456789 Ends With .e0 Ascending,({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) Desc Skip 0X0123456789ABCDEF[.e0..$`4esn`] Where 9e12[0.0..12.e12] Create ((usn1 :`6esn`:`7esn`)),((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)) Union Unwind $`1esn` Ends With _usn4 Ends With `3esn` As `8esn` Merge (`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(usn1 :#usn8)<-[ *..0x0{`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) On Create Set `6esn` =$@usn5[Count ( * )] On Create Set Single(usn1 In 00 Starts With _usn3 Where $`7esn` Ends With 07 Ends With 07).`6esn`? =Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789},@usn5 =[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0])],[usn1 In 00 Starts With _usn3 Where 12 Ends With .e12 Ends With $7|_usn3 =~00].#usn7! =Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null"), - octest:ct_string("With *,.e12 Starts With True As _usn4,$1000 In $`7esn` In $7 Skip [$1000 =~$`7esn`,.12 Starts With @usn5 Starts With $#usn8,0x0[...e12][..@usn5]] Ends With Single(@usn5 In .12[#usn7][$`8esn`]) Limit Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]|$0 =~$usn1 =~9e1)[{``:\"d_str\",`1esn`:$1000 =~$`7esn`}] Union All With *,00 In 1e1 As `7esn`,0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Skip 7 In @usn5 In $`4esn` Limit {`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]] Return Count ( * ) In 010 Limit Count(*)[True] Create (`4esn` :@usn5{``:$`2esn`[$`2esn`..],@usn6:010 =~`6esn`})"), - octest:ct_string("Return $`3esn`[@usn5..$123456789] As _usn4,`5esn`[`1esn`..`1esn`] As #usn7,$0 =~$0 =~.e0 As `7esn` Skip 0e0 Starts With .e12 Delete ``[$`3esn`][$`2esn`],12 Ends With 01 Ends With 1e1,.12 Starts With 0Xa Union Return *,$@usn6[..12e12],`8esn` Ends With 0X0123456789ABCDEF Ends With `1esn` As usn2 Skip 1000[..$`6esn`][..0xabc] Limit $`8esn`[..$``] Union Create (_usn4 :@usn6:`7esn`)<-[#usn8?:_usn4|:@usn5 *..0x0]-(`6esn` :#usn7{`5esn`:#usn7 Is Not Null Is Not Null})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})"), - octest:ct_string("Delete $`2esn`[123456789..][00..],$`4esn`[9e1..][0..],$`2esn` Ends With `3esn` Ends With $7 Unwind [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] As _usn3 Union All With Distinct $12 Contains 123.654 Contains `8esn` As _usn4 Limit Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) Unwind $@usn5[Count ( * )] As _usn3 Unwind 999 Contains `7esn` As @usn5"), - octest:ct_string("Match `4esn`=((:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})),`8esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Where 0X7[999][$1000] Remove (_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`).usn2,[`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]|12 Is Null Is Null].#usn8? Union Optional Match (`5esn` {_usn4:0X7 =~``}),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null}))"), - octest:ct_string("Remove #usn7:_usn3,[`6esn` Starts With $usn2 Starts With 0.0,.e0[7..$`3esn`]].#usn8!,All(usn2 In 1000 Contains 0.e0 Where #usn7 Starts With .e12 Starts With $`7esn`).`4esn` Create _usn3=(($999)),``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)) Detach Delete {`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)],({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) In None(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn8 Ends With `4esn` Ends With $`4esn`) In Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])"), - octest:ct_string("Remove None(usn1 In 00 Starts With _usn3 Where 123456789[`4esn`..][Count ( * )..]).#usn8!,All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..])._usn4 Return Distinct *,(_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)[Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] As `8esn`,[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `8esn` Order By @usn5 Starts With 12e12 Starts With @usn5 Desc Skip _usn4(usn1[Count ( * )..$usn1],_usn3 Ends With 12e12 Ends With .e0)[All(usn1 In 0x0[..`4esn`] Where $`2esn`[123456789..][00..])..Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``])][[@usn6 In @usn5 In $`6esn` Where $``[_usn4..][`7esn`..]|12.e12 In $0 In Count(*)]..(:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)] Merge `4esn`=({`8esn`:0X7 In 's_str' In $`1esn`}) On Match Set usn2+=.e1 Ends With _usn4 Ends With @usn5,@usn5+=_usn3 In .e1 In $12,Extract(`4esn` In `6esn`[1e1..] Where $`7esn` Ends With `1esn` Ends With True).`` =010 In @usn6 On Match Set usn1 =Count ( * ) =~All(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)"), - octest:ct_string("With *,`7esn`[...e1][..\"d_str\"],12e12[0.e0..True][0.12..0.0] As #usn7 Order By 0xabc[12.e12..`1esn`] Ascending,12.e12 In $1000 Ascending,[`6esn` In 0X7 =~`` Where 0.12[Null..]] Is Null Is Null Ascending Limit Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1)[00..] Where 0.e0[..#usn8][..Null] Remove #usn8(Distinct $999 Ends With $`3esn` Ends With `8esn`,@usn5[_usn4..][.e0..]).`8esn`?,@usn5:#usn8 Unwind _usn4[$`4esn`][0X7] As #usn7"), - octest:ct_string("Merge `6esn`=(:_usn3{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) With Distinct $`4esn`[$`2esn`..] As #usn8,#usn8 In $0,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Skip $@usn5 =~$`` =~$usn2 Limit `8esn` Ends With 999 Ends With 9e0 Merge `5esn`=(usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[ *0xabc{`1esn`:123.654 In \"d_str\" In $_usn3}]-({`2esn`:$usn2 Is Not Null})"), - octest:ct_string("Remove [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``?,None(@usn5 In .12[#usn7][$`8esn`] Where 0X7[.e12..01234567]).`5esn`!,`8esn`:`6esn`:`7esn` With 0Xa Starts With 0.12 Starts With .0 As usn2,[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4,$@usn6 Contains 0 Contains $`2esn` As `` Limit 1e1 In $999 In $usn2 Detach Delete Any(#usn7 In 01234567[$`3esn`..] Where 00 In 1e1)[[usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0|0xabc[12.e12..`1esn`]]..][[@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2]..],0.0[.e12][7],{`4esn`:0X7 =~.0 =~\"d_str\",_usn4:00 Ends With $_usn4 Ends With $`2esn`} Ends With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Ends With [$`3esn`[@usn5..$123456789],00,'s_str'[.12..$#usn7][$999..`2esn`]] Union All Delete Count ( * )[.0..][$999..],_usn3[...e1],Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}) Return Distinct 0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str' Limit usn2[$`7esn`..010][00..``] With @usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Limit .12 Is Not Null Is Not Null Union All Match (#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}),((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})) Where $`6esn`[`1esn`..][.e0..]"), - octest:ct_string("Return *,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn`,$_usn3 In $#usn8 As #usn7"), - octest:ct_string("Remove [$`5esn` Is Null].`5esn`!,`3esn`:`6esn`:`7esn` Union All Merge #usn8=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) On Match Set @usn5 =1e1[..#usn8][..'s_str'],`` =`4esn` Is Null,usn2+='s_str'[.12..$#usn7][$999..`2esn`] On Match Set `4esn` =010 In `7esn`,usn2+=0.e0[@usn6][0x0] Unwind 0e0[12][$_usn4] As usn2 Create (`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0}) Union All Return .e12[.12..][_usn4..] As _usn4 Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Delete 07 Ends With 07"), - octest:ct_string("Remove Extract(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`).`5esn`?,(`2esn` {`3esn`:$999[12.0..]})-[:usn2|#usn8 *01234567..12{usn2:$`3esn` In $12 In 's_str'}]-(usn1 :_usn3).`5esn` Unwind $#usn8 As _usn3 Unwind usn1 In 1000 In $`5esn` As #usn8"), - octest:ct_string("Return Distinct @usn5 Starts With 12e12 Starts With @usn5,$1000 =~$`7esn`,\"d_str\" Starts With $usn1 As `7esn` Order By $0[..`8esn`] Desc,Count(*) Starts With 1e1 Starts With $123456789 Ascending,12e12[$`5esn`][07] Desc Limit Single(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8)[{_usn3:$0 Ends With $#usn7 Ends With .12}][[12.0[0Xa][00],.0[01][$12]]]"), - octest:ct_string("Return *,{`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) As `2esn` Order By (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Asc,.e1[..$``][..0X0123456789ABCDEF] Ascending Limit Extract(`4esn` In `6esn`[1e1..] Where 123456789 =~_usn4 =~$0) Contains (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6) Contains ({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[`7esn`?:#usn8]->(@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0}) Return *,.e1[$_usn4][1e1] As `7esn` Order By 9e0 Ends With $`7esn` Asc Skip 's_str'[12..'s_str']"), - octest:ct_string("Return $`4esn` Contains 0Xa,010 In `7esn` Limit False Contains `3esn` With Filter(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[[1e1[0.0],0 Contains 12e12,$123456789[..0x0][..`4esn`]]] As `3esn`,False[`2esn`..#usn8],00 Is Null Is Null Order By {`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,0.12 In $7 In 0 Desc Skip 9e12[0.0..12.e12] Limit $usn1[.e12..`8esn`][True..$@usn5] Create (usn2 :#usn8{`3esn`:123.654[@usn5]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`}) Union All Optional Match ``=(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12}) Where 123456789[$#usn7..] Remove (:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`2esn`]-(`6esn` :#usn7)-[_usn4?:`6esn`]-(@usn5 :`8esn`).`7esn`,`7esn`(usn2 Is Null Is Null,`6esn` =~$_usn3).`1esn`! Union All Unwind 999 Contains `7esn` As `7esn`"), - octest:ct_string("With Distinct `` Is Not Null Is Not Null As @usn6,True[Count(*)..][1e1..] Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `7esn` Starts With $usn2 Starts With .e0).`6esn`! Match `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Where 's_str'[12..'s_str']"), - octest:ct_string("Remove [usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]]._usn3,{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12}.@usn6,[usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]].usn2? Match (((`7esn` :``)<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:usn1|`3esn`*]->(:_usn3{`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`}))) With `3esn` Contains 0Xa As `6esn`,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,[usn1[..@usn5][...e0]][(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)]"), - octest:ct_string("Create ``=((_usn4 )-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})) Unwind `3esn` =~$`5esn` =~12 As `7esn` Union All Detach Delete 12.e12[0e0..7],{_usn3:0X7 =~`4esn` =~`8esn`,`2esn`:$`3esn` Starts With $usn1} Is Not Null,`3esn`(`7esn` Starts With $usn2 Starts With .e0,$_usn3 =~`7esn` =~$_usn4)[[$`2esn`[123456789..][00..],Count ( * )[@usn6..0x0]]..][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0)..] Union All Remove All(`4esn` In `6esn`[1e1..] Where _usn3 Is Null).@usn5!,usn2($`` Is Null Is Null).`6esn` Remove _usn4($`6esn`[$@usn6..],_usn3[.0]).#usn8,{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}._usn4,(`6esn` $`8esn`)-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]}).`4esn`! Return Distinct {`5esn`:123.654[@usn5]} Is Not Null Is Not Null,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] Skip (#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})[Filter(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 0.12 Ends With $usn1 Ends With $@usn5)][`3esn`(Distinct 9e12[_usn3])] Limit Extract(`4esn` In `6esn`[1e1..] Where 123456789 =~_usn4 =~$0) Contains (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6) Contains ({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[`7esn`?:#usn8]->(@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0})"), - octest:ct_string("Unwind [$12[01..][1.e1..]][[usn1 In 00 Starts With _usn3 Where 00]..@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12)] As `3esn` Union All Create #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) Unwind 07[..$_usn3] As #usn7 Unwind `3esn`(Distinct _usn4 Ends With 01 Ends With $`1esn`) Starts With [Count(*) In 01 In .0,`` Starts With 12,$_usn4[$`8esn`..][07..]] Starts With Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12 In $0 In Count(*)) As _usn3"), - octest:ct_string("Unwind 123.654[@usn5] As _usn3 Detach Delete 1000 Ends With 1000 Ends With $`4esn`,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)],{_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]} Union With Distinct `2esn` Starts With $_usn3 Starts With `2esn` Skip [@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12]][{@usn6:.12 Starts With 0Xa}..(`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})] Limit {`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]} Is Null Is Null Match @usn5=(:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})-[`1esn`:usn2|#usn8 *1000..]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}) Remove Any(usn1 In 0x0[..`4esn`] Where $0[$#usn8..01234567])._usn3!,Filter(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]).`3esn`!,#usn7(Distinct).`1esn` Union With Distinct @usn6 Starts With `7esn` Starts With Null,$usn1[#usn8..][``..] As `2esn`,`3esn`[$`1esn`..] As usn2 Order By _usn3[0] Asc,``[$`3esn`][$`2esn`] Ascending,{@usn5:0.e0[@usn6][0x0]} Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7) Ascending Skip (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) Is Not Null Is Not Null Limit [@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Where `1esn` Contains Count ( * ) Return Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As `5esn` Return Distinct *,.e1 Starts With $`8esn` Skip 0xabc[12.e12..`1esn`] Limit 0.e0[@usn6][0x0]"), - octest:ct_string("With $_usn4[$`1esn`] As `5esn`,(:`5esn`{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[usn1 *..0x0]->(usn1 :`6esn`:`7esn`)-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})[..[07[$999],@usn6[$`7esn`]]][.._usn4(0X7 In $@usn5 In 9e0)] As `6esn`,All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..] As `5esn` Order By True[0x0][@usn6] Ascending,$`5esn` Contains $@usn6 Desc Skip Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null Limit _usn3 In $#usn8 In usn1 Where 's_str'[..0.e0][..`1esn`] With *,.e0[..0X0123456789ABCDEF][...e12] As `6esn` Order By usn2[`3esn`][_usn3] Asc Skip 7[$`4esn`..123456789] Union Return Distinct \"d_str\",0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',$@usn5[01] Order By 01234567 Starts With $_usn4 Desc,0.12 Contains .e1 Ascending,0x0 =~_usn4 Descending Skip [usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]] Contains None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]) Contains Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`])"), - octest:ct_string("Unwind (_usn3 )<-[usn1]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})-[_usn4?:`6esn`]->(`8esn` :`1esn`) =~Single(#usn7 In 01234567[$`3esn`..] Where 0.12 In $`4esn` In `6esn`) =~Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|$`8esn`[..123456789]) As `2esn` Union Create @usn6=((:``{`5esn`:.e1 In $@usn6 In 999})),`4esn`=((`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) Detach Delete 0X0123456789ABCDEF Contains 12.e12 Contains 999,0X0123456789ABCDEF In $1000 In $`3esn`,'s_str' Is Not Null Is Not Null Union Merge ((_usn4 {`8esn`:9e1 In 01 In 999})) With Distinct .e12[.12..][_usn4..] As _usn4,{`7esn`:.e0 Contains #usn7 Contains $#usn8}[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..None(`6esn` In 0X7 =~`` Where 12.e12['s_str'])][(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})..({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})],$999[$_usn4..][$`5esn`..]"), - octest:ct_string("Create ((_usn4 :`7esn`)<-[`6esn`:usn1|`3esn`]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})<-[``?:_usn3|:`4esn`]-(:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})) Union Optional Match (`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}),(:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}) Where Null[01234567][01234567] Create usn1=((#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`6esn`?:usn1|`3esn`{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})) Remove usn1:`1esn` Union With Distinct *,$usn2[12..$`7esn`][$0..$`7esn`],[0Xa[$``..][01234567..]] Contains `3esn`(Distinct _usn3 In .e1 In $12) Contains (`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']}) As @usn6 Skip 9e1 Starts With 9e1 Starts With 010 Limit `3esn`(Distinct 0.0[999..])[Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..[010 =~$usn2 =~1e1,`1esn`[@usn6..$123456789]]] Merge ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) On Match Set (`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})<-[?{#usn7:`6esn`[False..0.0][12e12..$usn2]}]-(`4esn` {`4esn`:#usn7[..$1000][..01]})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}).`4esn`! =0 Is Not Null,`6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`1esn` =$_usn3[$`4esn`..Null] On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Merge (`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(`7esn` :`8esn`{`4esn`:00 Ends With .12 Ends With `4esn`})-[ *07..]->(usn2 :@usn6:`7esn`) On Create Set #usn8:_usn4:usn1,[0 Is Not Null Is Not Null].usn2! =(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')]"), - octest:ct_string("Remove #usn8:_usn3,None(usn1 In 0x0[..`4esn`] Where False[.e1..Null]).``,@usn5:#usn7 Remove Extract(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`).`6esn`?,Extract(@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null|@usn5 Starts With 12e12 Starts With @usn5).`2esn`?,[Count ( * )[Count ( * )..12e12][usn1..1000],12e12[$`5esn`][07],$_usn3[9e1][$_usn4]]._usn4 Union All Merge `1esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) On Match Set #usn7:``,({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})<-[?:@usn5|`8esn` *..0X7]-(:usn1).`4esn` =`6esn` Starts With $`5esn`,[`6esn` In 0X7 =~`` Where 0.12[Null..]]._usn4 =Count ( * )[`3esn`..][`2esn`..] On Match Set `6esn`+=0X7 =~``,{usn1:$usn2 Is Not Null,`4esn`:0xabc[$@usn5]}.`8esn` =`3esn`[..7][..12e12] Create #usn7=(`3esn` :`8esn`{usn1:`2esn`[$`3esn`..],`6esn`:$12[..``][..$7]})-[@usn5?:``|:_usn4]-(`8esn` :#usn8)<-[?:``|:_usn4]-({`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12}) Unwind 123456789 Starts With #usn7 Starts With `6esn` As `7esn` Union Optional Match `8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`}) With (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Order By [$12[01..][1.e1..]][[usn1 In 00 Starts With _usn3 Where 00]..@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12)] Desc,[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|#usn7 Starts With `1esn`][[@usn5 In .12[#usn7][$`8esn`] Where 0.12 In $`4esn` In `6esn`|$`1esn` Starts With @usn6]..][$`1esn`..] Ascending,{#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null Asc Skip Null[0.e0..0x0]"), - octest:ct_string("Create _usn3=((({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']})-[:usn2|#usn8*..]-(`5esn` :`7esn`))),(_usn4 :`7esn`)<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}) Return *,.12[`1esn`..][$`3esn`..] As usn2 Limit usn2 Starts With @usn6 With 0.12[Count(*)..] Order By .0 Is Null Is Null Ascending,`1esn`(Distinct $@usn5[#usn8..][$`1esn`..],#usn7 Ends With `4esn` Ends With @usn5)[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|usn1[Count ( * )..$usn1]]][{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}] Asc Skip 0 Contains 12e12"), - octest:ct_string("Remove Extract(`4esn` In $`8esn` Starts With 1000).`2esn` Optional Match #usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})),@usn5=(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})<-[`2esn` *12..0xabc{`6esn`:$123456789[0.0..],@usn5:999[$`6esn`]}]-(`7esn` {`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) Where @usn5[..True][..0X7] Optional Match `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Union All Merge ({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})-[#usn7:`1esn` *07..]->(:`7esn`{``:$`1esn` Starts With @usn6})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) On Match Set [`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|`` Contains 12 Contains True].`2esn`? =$@usn6[..$#usn7][..12.e12],None(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12).`8esn`! =12[..9e0][..999] Union All With Distinct {usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]} =~Single(usn2 In 1000 Contains 0.e0) =~Any(@usn6 In @usn5 In $`6esn` Where $`7esn` Is Not Null) As `3esn`,Filter(usn1 In 00 Starts With _usn3 Where $_usn4[`3esn`][0])[..Extract(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12|0x0 =~_usn4)][..{_usn4:.12 =~.12 =~1e1,#usn7:.e1 Starts With 0.0 Starts With `6esn`}] Order By @usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Ascending,$`3esn` =~Null Desc Skip Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789} Where `3esn`[$`1esn`..]"), - octest:ct_string("Remove [usn1 In 0x0[..`4esn`] Where 0.12 Contains $12 Contains `8esn`|$@usn6[_usn3..0.e0]]._usn4?,Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null).`1esn` Merge `4esn`=((({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[usn2?]-(`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))) On Match Set Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where Null[..12e12][..usn1]|\"d_str\" Contains `3esn` Contains 00).#usn7? =12 Is Null Is Null On Create Set [$usn1 In 1000 In $#usn7,$#usn7 In 12.0 In 0X0123456789ABCDEF,9e0 Is Not Null]._usn3 =All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`! =0xabc Starts With _usn3 Union All Return Distinct 9e0 Starts With `6esn`,9e1['s_str'..1e1] As #usn7 Limit `1esn` Contains Count ( * ) Unwind $`1esn` =~$`1esn` =~#usn7 As `4esn` Merge `4esn`=(`3esn` {_usn3:@usn6 Contains _usn4 Contains $`4esn`})<-[`7esn` *..0x0]-(@usn5 :usn1)<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) Union All Optional Match (:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}) Remove {`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}.`3esn`!"), - octest:ct_string("Remove (_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`).usn2,Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 123456789[$#usn7..]|.e12 Contains $12 Contains 12.e12).usn1?,{_usn3:'s_str' =~0.e0}.usn2? Delete [usn1[..$_usn4][..``],0X7[.e12..01234567]] In `3esn`(@usn5[..True][..0X7],$`3esn` =~$`7esn` =~False) Union All Return *,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn` Skip 1e1[..False] Limit 12e12[$`5esn`][07] Detach Delete .e1[$_usn4][1e1] Union All With Distinct 0 =~12.e12 =~$``,0.12 Contains .e1 As `6esn`,01 Contains $`7esn` Contains 9e0 Order By Count ( * )[..1e1] Asc,_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) Asc,[0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] Ascending Skip Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] Limit _usn3(0x0[0X7..][usn1..])[..Any(#usn8 In $`5esn` Is Null Is Null Where 999[$`8esn`])][..{#usn7:False[`2esn`..#usn8]}] Create `8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))"), - octest:ct_string("With *,123.654[`5esn`] Skip `2esn`(`2esn`[$`3esn`..],$`4esn`[12.0..`5esn`])[..Extract(usn1 In 00 Starts With _usn3 Where `6esn`[1e1..]|_usn3 In .e1 In $12)][..Extract(#usn7 In 01234567[$`3esn`..]|0.0[999..])] Limit $_usn3[..$_usn3][.._usn4] Where False Is Not Null Is Not Null"), - octest:ct_string("With {_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] As `1esn` Order By 0 Is Not Null Descending Skip 0x0 Where 123456789 Starts With #usn7 Starts With `6esn` Remove `7esn`:`4esn`:#usn8,@usn6:usn2:@usn6 Create (#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[#usn7{#usn7:False[`2esn`..#usn8]}]->(`5esn` :`2esn`:`3esn`{_usn3:$`2esn`[$123456789..$`1esn`][0Xa..$``],`5esn`:12.e12[@usn5..123.654]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}),`5esn`=((#usn8 :`4esn`:#usn8)<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})) Union All Create ``=(({`5esn`:0e0 =~_usn4})),((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})))"), - octest:ct_string("With `3esn`(Distinct 123456789 =~$123456789)[..(usn1 :`6esn`:`7esn`)-[`2esn`? *0..010]->(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]})][..(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})] As `8esn` Order By [@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Descending,$123456789 Contains 01 Contains 0.12 Ascending Limit 999 In 9e1 In 7 Remove [@usn5 In .12[#usn7][$`8esn`] Where $_usn4[12e12][`4esn`]]._usn4?,Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0)._usn3!,[#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`|$`8esn` =~$usn2].``! Union Remove Single(`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``).`4esn`?,`1esn`:`4esn`:#usn8 Delete ({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3}),$123456789[$``][010]"), - octest:ct_string("Create ((`6esn` :_usn4:usn1{`6esn`:00 In 12.e12})<-[`7esn`?:`5esn`|`1esn`]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`})),(usn1 :`3esn`:`1esn`)-[?:`4esn`|:`7esn` *..0x0]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Union All Delete `2esn`[$`3esn`..],{@usn5:$@usn6[..$usn1],`1esn`:usn2[`3esn`][_usn3]}[..Any(`4esn` In 's_str'[12..'s_str'] Where Null Contains _usn4)][..{`7esn`:True[..'s_str'][..01]}],0.0[Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|_usn3 Ends With 12e12 Ends With .e0)][None(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5)..{@usn6:.12 Starts With 0Xa}] Unwind `3esn` =~$`5esn` =~12 As `7esn` Union Return $`4esn` Contains 0Xa,010 In `7esn` Limit False Contains `3esn` With Filter(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[[1e1[0.0],0 Contains 12e12,$123456789[..0x0][..`4esn`]]] As `3esn`,False[`2esn`..#usn8],00 Is Null Is Null Order By {`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,0.12 In $7 In 0 Desc Skip 9e12[0.0..12.e12] Limit $usn1[.e12..`8esn`][True..$@usn5] Create (usn2 :#usn8{`3esn`:123.654[@usn5]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})"), - octest:ct_string("Create (((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))),#usn7=(`1esn` :_usn4:usn1) Union Return Distinct ({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}),@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn`,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7 Order By $@usn6[usn2(`3esn`[$`1esn`..])] Asc,12 Ends With 01 Ends With 1e1 Ascending Skip 07[07] Limit 123.654[@usn5] With Distinct Count ( * )[@usn6..0x0],.e0 Is Not Null Is Not Null As `2esn`,usn2 Is Not Null Is Not Null As `2esn` Skip $@usn5 =~$`` =~$usn2 Where `` Starts With 12 Merge ((:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})) On Match Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..]"), - octest:ct_string("Create `4esn`=((#usn8 {usn2:7 Contains 9e1})-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]->(:_usn3{@usn6:$`7esn` Is Null Is Null}))"), - octest:ct_string("Merge usn1=((`6esn` :`3esn`:`1esn`{_usn3:1e1[.e1..],`1esn`:$#usn8})<-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})<-[:`1esn` *01234567..12]-(`7esn` )) With Distinct 0Xa Starts With 0.12 Starts With .0 As usn2 Order By [0Xa In .e1 In Count(*)][..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}][..Extract(`4esn` In `6esn`['s_str'..][010..] Where #usn8[$#usn8..])] Desc Limit Extract(_usn4 In usn1 Contains False Contains `` Where $`4esn` Starts With 1e1|Count(*)['s_str'..`1esn`]) =~Extract(`4esn` In $`8esn` Starts With 1000|`7esn`[Null..][@usn5..]) =~(:`4esn`:#usn8)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ) Return .0 Starts With `2esn` Starts With `6esn` As _usn4,_usn4[$`4esn`..] As `7esn`,\"d_str\"[Count ( * )] As `7esn` Limit 0.e0[123.654] Union All Delete {_usn3:0X7 =~`4esn` =~`8esn`,`2esn`:$`3esn` Starts With $usn1} Is Not Null,.e0[7..$`3esn`] With *,$@usn6 =~$#usn8 =~$#usn7 As `7esn`,#usn7 Ends With `4esn` Ends With @usn5 As `` Order By (`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Ascending,{@usn6:0X0123456789ABCDEF[..usn1]}[..`7esn`($`3esn` =~$`6esn` =~`8esn`)][..(`4esn` {`6esn`:$12[..``][..$7]})<-[#usn7]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})] Ascending Skip Count ( * )[..usn1][..12.e12] Where `6esn` =~$_usn3 Remove {`8esn`:Count ( * ) =~Count(*)}.`6esn`,({@usn6:0X0123456789ABCDEF[..usn1]})<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)._usn4?,(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`4esn` Union Match `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Remove All(#usn8 In $`5esn` Is Null Is Null Where 01234567 Ends With 12.0 Ends With 0X7).`8esn`! Optional Match `8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`}) Where 123456789 Starts With `2esn` Starts With .0"), - octest:ct_string("Merge _usn3=((_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})) Optional Match #usn7=(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})<-[`2esn` *12..0xabc{`6esn`:$123456789[0.0..],@usn5:999[$`6esn`]}]-(`7esn` {`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) Match `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Union Merge ((@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})) On Match Set `6esn`+=7[$`4esn`..123456789],`1esn` =(:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]),{_usn3:'s_str' =~0.e0}.usn2? =Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0]|999[``..][Null..]] Ends With Any(`4esn` In `6esn`[1e1..] Where False[`2esn`..#usn8])"), - octest:ct_string("Detach Delete False Ends With $`8esn`,0x0[123456789] Return usn1[..$_usn4][..``] Order By .e1 Starts With $`8esn` Asc Skip (`6esn` :`6esn`:`7esn`{_usn4:\"d_str\"})<-[_usn4?:#usn8 *..0X7{@usn5:07}]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})[(_usn4 :_usn4:usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)..{#usn7:$@usn6 Is Null Is Null}][@usn6(Distinct _usn3 In .e1 In $12,123.654 Starts With usn1 Starts With @usn5)..[usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1]] Detach Delete 0.e0[`6esn`...e0][9e12...e12]"), - octest:ct_string("Return Distinct *,Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4) Is Null As #usn8,`8esn`(Distinct False Contains `3esn`,9e12 =~01 =~$`7esn`)[[@usn6[`5esn`..$`3esn`],0e0 Is Not Null Is Not Null]..] Order By {`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,0.12 In $7 In 0 Desc Skip 0Xa In .e1 In Count(*) Limit $`4esn`[$`6esn`] Optional Match _usn4=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))),@usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})) Union Unwind 07[..010][..12.0] As `3esn` Return Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] As usn1,@usn5[_usn4..][.e0..] As usn1 Limit $`1esn` Is Null"), - octest:ct_string("Return Distinct 7[$`4esn`..123456789] As `2esn` Limit 1000 Ends With 1000 Ends With $`4esn` Union All Create #usn8=(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}) Union Remove None(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True]).#usn7?,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]].@usn5?,[00[01234567][False]].`1esn`?"), - octest:ct_string("Delete Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)[..(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})][..Any(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)],123.654 Starts With usn1 Starts With @usn5 With Distinct *,`7esn`[Null..][@usn5..],0X0123456789ABCDEF Contains $usn1 Skip Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] Limit False Ends With $`8esn` Where 0 Starts With 12e12 Starts With `4esn` With Distinct 0x0[...e12][..@usn5] As @usn5 Limit `1esn`(Distinct Count(*)[..`3esn`]) Starts With $0 Union All Return Distinct *,({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) Order By [0 Is Null Is Null][..[_usn3 =~00,9e1 Is Null Is Null]] Descending,Single(`4esn` In `6esn`['s_str'..][010..] Where 12.0 Contains 0.e0)[..Any(`4esn` In 's_str'[12..'s_str'] Where Count(*)[`7esn`..$12])][..Extract(@usn5 In .12[#usn7][$`8esn`] Where 01234567 =~usn1)] Ascending,`8esn` In $@usn5 Asc Limit $#usn8 Is Null Match #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})))"), - octest:ct_string("Merge (`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) On Create Set Filter(usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01).`8esn`! =`6esn`[..`5esn`] On Create Set `1esn`+=`2esn`[$`3esn`..],`2esn` =$usn2[..12.0],usn1+=usn1[$`3esn`..$999][True..False] Unwind Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] As _usn3 Union All Create ((`5esn` {_usn4:0X7 =~``})<-[`2esn`?:usn2|#usn8{`6esn`:0X7[.e12..01234567],@usn6:`7esn`[...e1][..\"d_str\"]}]->(`5esn` :`8esn`{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False}))"), - octest:ct_string("Unwind $@usn5[0.12..][@usn5..] As `2esn` Remove [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1].usn1,None(@usn5 In .12[#usn7][$`8esn`] Where 123456789 Is Null).`1esn`? Union All Return Distinct *,.e1 Starts With $`8esn` Skip 0xabc[12.e12..`1esn`] Limit 0.e0[@usn6][0x0] Union All With Distinct *,Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) As _usn3 Skip 010 Starts With `7esn` Starts With 9e1 Limit 07[12][$`6esn`] Where $_usn4[$`8esn`..][07..] Unwind 9e0[False] As #usn8 Detach Delete .e0 Is Not Null Is Not Null,{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]} =~Single(usn2 In 1000 Contains 0.e0) =~Any(@usn6 In @usn5 In $`6esn` Where $`7esn` Is Not Null)"), - octest:ct_string("Match `2esn`=(`` :usn2:@usn6)<-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`7esn` :`4esn`:#usn8{`2esn`:Count(*)[..`3esn`]}),(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})-[`4esn`:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]-(_usn3 :``)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->({`1esn`:0.0[1000..][.e1..]}) Union Detach Delete $`1esn` Ends With $`1esn`,12e12[$`5esn`][07] Return *,.e0[..0X0123456789ABCDEF][...e12] As `6esn` Order By $123456789[$``][010] Desc,`4esn` =~$`3esn` =~$123456789 Ascending,@usn5 Starts With 12e12 Starts With @usn5 Desc Skip [$12 Is Null Is Null,999 Contains Count ( * ) Contains 123.654][Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`)..Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0)][[Null Contains _usn4,$`7esn` Is Null Is Null]..({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3})] Limit 7[..12e12][..$`6esn`] Optional Match ((:usn1)-[:@usn5|`8esn` *123456789..999{usn1:9e12 Is Not Null Is Not Null}]-(#usn7 :`5esn`)),`3esn`=(({``:$1000 Is Null Is Null})) Where 010 Is Null Is Null Union All Unwind $7[.12] As @usn6 Detach Delete ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] Match usn1=(`4esn` :#usn7)-[_usn4?:`6esn`]-(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) Where $`5esn` In `2esn` In .0"), - octest:ct_string("With 123.654 Is Not Null Is Not Null As `3esn`,01[Null..][`1esn`..] Where Null[..12e12][..usn1] Optional Match `3esn`=(usn1 :`6esn`:`7esn`),`1esn`=(({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})) Union With Distinct *,\"d_str\"[Count ( * )] As `7esn`,0x0[123456789] As @usn6 Order By 0.0 Is Null Is Null Ascending,$usn2[0e0..] Descending,'s_str'[..0.0][..$`4esn`] Ascending Union All With *,0 Is Not Null Order By 07[`6esn`..][`5esn`..] Desc,_usn3[`3esn`][False] Ascending,Extract(usn2 In 1000 Contains 0.e0) Ends With Single(usn1 In 0x0[..`4esn`] Where 12.e12 Contains `5esn`) Ends With Single(usn1 In 00 Starts With _usn3 Where $0[01234567..00][$`2esn`..$@usn6]) Desc Where $#usn7 In .e1 In 01 Remove [0x0 =~$`7esn` =~@usn6,$#usn8 Is Null Is Null,0 Is Not Null Is Not Null].#usn8?,(`5esn` {@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]})<-[_usn3 *0Xa$_usn3]-(`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}).usn2?,[$`5esn` Starts With _usn3 Starts With @usn5,$@usn6 =~usn1,0.0[12...12]].#usn7!"), - octest:ct_string("Create (`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :`4esn`:#usn8) Unwind Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] As _usn3 Create ``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}),(`` :usn1) Union Remove None(_usn4 In usn1 Contains False Contains `` Where $`8esn`[$``..$7][$1000..$`7esn`])._usn3?,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`).`3esn`? Create #usn8=((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}))"). + octest:ct_string("With `5esn`[..123.654][...e12] As @usn6,(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) As `2esn`,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As `1esn` Skip $`3esn`[..0X0123456789ABCDEF][..7] Limit 12.0 Starts With .12 Starts With `6esn` Where ``[$`3esn`] Merge ((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})) On Match Set [usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]].`1esn`? =999 Contains 0 Contains $`5esn`"), + octest:ct_string("With .e12 Starts With $7 Starts With .0 As _usn4,[010[`5esn`],usn1[$@usn5]] Starts With All(#usn7 In 9e0[$1000] Where .e1 In 123456789) Starts With (`4esn` :usn2{@usn5:True Contains .e12})<-[:`2esn`|`4esn` *1000..0X0123456789ABCDEF]-(usn2 :``:usn2) As _usn3,.e0 As _usn3 Order By @usn5(Distinct) =~[_usn3[`5esn`..][usn2..],$#usn7 =~`2esn`] =~1.e1 Ascending Skip `2esn`[$@usn6..][Null..] Merge ((:`8esn`{@usn5:usn2 Ends With .e1 Ends With $`5esn`})-[usn2?:`3esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})) On Create Set [#usn7 In 9e1[$`1esn`..] Where 00 Ends With $`1esn` Ends With `7esn`].`2esn` =All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null),``:@usn5,@usn5+=12.e12[_usn4..$1000][$7..$999] Union With [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`) Union Delete 0e0 =~0Xa =~$999 Unwind 9e0 =~Count(*) =~$0 As _usn3"), + octest:ct_string("Remove Extract(`6esn` In $`6esn`[``..][Count(*)..] Where 9e0[Count(*)..0.12][$`1esn`..12.0]|07 In `6esn`).usn1,(@usn5 :`4esn`:`6esn`)-[@usn6*..{`1esn`:$`2esn` Contains Count(*)}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}).`8esn`,{`1esn`:0xabc =~$@usn5}.#usn8 Union All Match `5esn`=(`3esn` :_usn4) Remove [$123456789 Starts With 0.12 Starts With Null].`4esn`!,(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`}).#usn8"), + octest:ct_string("Optional Match `4esn`=((@usn5 {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})) Where 00[False..0e0] Delete None(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1)[..{@usn5:$@usn6 Is Not Null Is Not Null}][..{`3esn`:1e1 In 0.0 In 0X0123456789ABCDEF}] Match (((`4esn` :``:usn2)<-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]-({`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[:_usn4{`8esn`:12.e12 Is Not Null Is Not Null,#usn7:@usn6[Null...0][\"d_str\"..Count(*)]}]-(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False}))),((@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12}))"), + octest:ct_string("With *,{@usn6:$`3esn`[.e1][_usn4]}[`8esn`(Distinct $``[True])..] As #usn8,999[12e12..$_usn4] As usn2 Where 01 Ends With 0Xa Ends With 0X7 Merge ((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[?:`4esn`|@usn5 *0Xa]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})<-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]-(:_usn4{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]})) Match _usn4=(@usn6 :`4esn`:`6esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`2esn`?:`6esn`|:#usn8{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`}]-(_usn3 {_usn3:0.12 Starts With $`8esn` Starts With @usn5}),#usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Union All Optional Match (((usn1 :`8esn`)<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[? *0xabc]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})))"), + octest:ct_string("Delete 0.0 Is Not Null,#usn8 Is Null Optional Match #usn8=(`5esn` :`7esn`)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1)<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}),usn2=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) Where 12.e12[0..0.12][123.654..9e12] Unwind .0[$``..0X7] As usn1"), + octest:ct_string("Create #usn8=((usn1 :@usn6)),`7esn`=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}) Detach Delete usn2 In _usn3,True In (#usn8 :`6esn`:_usn3)<-[`2esn`?:_usn4{#usn8:$12[9e0..$999]}]->({``:.e1 Starts With 12.e12 Starts With `2esn`}),`1esn` Starts With 0X7 Starts With \"d_str\" Return Distinct `1esn`(.0 Starts With `1esn`,01[`3esn`..][Count(*)..]) In [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] As `4esn`,`7esn`[$usn1..]['s_str'..] Union Detach Delete [$`1esn`[``][07],$`4esn`[`6esn`..$12],False[$usn1][0x0]] =~[.e12 Is Null Is Null],`1esn`[0.0..1e1][0x0..7] Unwind Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`2esn` =~9e12) Is Null Is Null As `4esn`"), + octest:ct_string("Merge ((:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})<-[*..{`7esn`:$``[..\"d_str\"][..$#usn8],`7esn`:$`` Contains $`2esn` Contains $usn2}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) With Distinct *,1e1 Is Not Null Is Not Null Where `7esn` Ends With $7 Ends With $@usn5 Remove None(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*)).@usn5,_usn3:_usn3 Union Remove Extract(usn2 In 7[12] Where $_usn3 Is Null|`3esn`[..0X0123456789ABCDEF][..0x0]).#usn8!,Single(`6esn` In $`6esn`[``..][Count(*)..] Where 1.e1 Ends With $_usn4 Ends With #usn7).`3esn`! Detach Delete `4esn`($_usn4 Starts With $1000 Starts With 12)[{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}],$`3esn`[.e1][_usn4],$7[$12..12e12][1.e1..9e1] With $999 In 12 In 1.e1 Order By (`5esn` :`1esn`:_usn4)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})[[.e0 Is Null Is Null,9e1 Contains 12,'s_str' Ends With `7esn` Ends With 010]..] Descending,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} Desc Limit 00 In @usn6 In 0 Where $@usn6 In @usn6 In 1e1"), + octest:ct_string("With Distinct _usn3[`2esn`..0X7][0.e0..$`3esn`] As `7esn` Order By [usn2[12e12..]['s_str'..]] =~Single(`8esn` In 123456789 =~@usn6 Where $`4esn`[`4esn`][Count(*)]) Ascending,`4esn`[\"d_str\"]['s_str'] Ascending,.12 In `8esn` In $#usn8 Asc Skip None(@usn6 In 010[`5esn`] Where 123.654 In $`7esn`)[(`` {`7esn`:$#usn7[..0Xa]})<-[`1esn`?:usn1|`4esn` *00..0Xa]-(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[usn1? *01234567..{@usn5:01[`3esn`..][Count(*)..]}]->(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})..[False Contains 0 Contains $`6esn`,`1esn` Is Not Null Is Not Null]] Limit [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Contains Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|@usn5 Contains #usn8 Contains 12.0) Union All With *,{@usn5:$@usn6 Is Not Null Is Not Null} Starts With [`3esn` In `2esn`[..01][..True] Where 0x0[usn1..usn1]] Starts With Extract(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..]|0X7['s_str'..][01..]) As @usn6,None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] As `4esn` Order By 0x0[..9e0] Asc Skip Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]) =~Extract(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..]) =~Single(_usn4 In 12e12 In 123456789 Where False Is Null) Where _usn3[12.e12..][`5esn`..]"), + octest:ct_string("Match (((@usn6 )<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null}))) Remove {`4esn`:$_usn4 Starts With $1000 Starts With 12,`5esn`:0 Ends With 12.e12 Ends With usn2}.``?,Single(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)._usn4? Union Remove [#usn7 In $999 In 1e1 Where .e12 Starts With $12 Starts With .e12|$usn2[`4esn`..9e12]].`6esn`,`5esn`:``:usn2,(`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})._usn3 Merge #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))) On Create Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] On Match Set Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa).@usn6! =0.e0 Is Not Null Is Not Null,`1esn` =07 In `6esn`"), + octest:ct_string("Return Distinct *,{`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}[[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]]..][(_usn4 {`6esn`:$_usn4 =~$`1esn` =~`2esn`,_usn3:#usn8 Is Null})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[_usn4?{_usn3:.e1[.e1..`1esn`],@usn6:.12 In `8esn` In $#usn8}]->(usn2 :@usn5)..] Union All Return *,01[`8esn`..9e12][.12..0] As @usn6,$`1esn` =~1e1 As `4esn` Order By 9e1 =~$_usn4 =~1.e1 Desc,$@usn5[$12...e12][0X0123456789ABCDEF..$999] Asc,(:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Ascending Skip $1000 Is Not Null With $_usn3[$12] Match usn1=((`6esn` :`5esn`)),#usn8=((:@usn5{`5esn`:`4esn` Starts With 0e0})) Where $usn2[`4esn`..9e12] Union With Distinct 0Xa In #usn7 In 's_str',`4esn` Starts With 0e0 As `7esn` Skip (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`) Where .e0 Optional Match `7esn`=((`4esn` )-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`` :_usn3)-[`4esn`?:`5esn`|:usn2]->(:`4esn`:`6esn`{usn2:$`8esn` Is Not Null Is Not Null})) Where 010 Starts With 0 Starts With 0.0"), + octest:ct_string("Unwind {#usn7:$usn2[0.e0],`6esn`:.e1[..\"d_str\"][..$123456789]}[..Extract(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999|Count ( * ) In 0.12)][..[@usn6 In 010[`5esn`] Where 's_str' Starts With 9e0 Starts With usn2|$`5esn` =~$0 =~``]] As usn1 Unwind {@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0} Contains [`1esn`[usn1][0xabc],`5esn` Contains `7esn`,$``[True]] As usn1 Union All Return .e12[$@usn6..00][01234567.._usn3] Skip @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])] Limit 07 Is Not Null Is Not Null"), + octest:ct_string("Merge @usn5=(({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})) Union All Unwind `7esn` In 010 In usn1 As usn1 Merge `3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) On Match Set @usn6 =999[..`1esn`][..07],`3esn`+=$@usn5[0.0][0X0123456789ABCDEF],`6esn`+=$usn1[1000][.12] On Match Set #usn8+=Count(*)[$@usn5],@usn6 =0 =~1e1,`2esn`+=Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})"), + octest:ct_string("Return Distinct .0[$``..0X7],'s_str' Ends With `7esn` Ends With 010 Limit $_usn3 Is Not Null Merge ({`1esn`:1.e1[`8esn`]})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`) On Create Set All(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True]).`1esn`? =$usn2[`2esn`..$`1esn`],{usn1:#usn8 =~.e0,_usn3:$_usn4 Is Null Is Null}.`1esn` =$`7esn`[.e1][12.0] Delete 12.e12 Ends With $``,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null,{#usn7:usn1 In ``}[None(`3esn` In `2esn`[..01][..True])..Extract(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..])] Union Create #usn8=((usn1 {@usn5:_usn4[$usn1..01234567][123.654..`5esn`],`5esn`:1.e1 =~$_usn4})-[?:_usn4]->(`2esn` :usn2)<-[usn1 *999..{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']}]->({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})) Union All Merge (`2esn` :`1esn`:_usn4)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}) On Match Set `5esn`+=010[..7][..`4esn`],(`2esn` :@usn5)-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}).`4esn`! =$@usn6 Ends With `1esn`,`6esn` =.0[$``..0X7]"), + octest:ct_string("Optional Match `5esn`=(({#usn8:1e1 Is Not Null Is Not Null})<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(usn2 )<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)) Merge ((@usn6 {_usn4:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})) On Match Set `8esn` =Count(*)[9e12..12.0],@usn5+=9e0[Count(*)..0.12][$`1esn`..12.0] Union With 9e1[usn1..0x0][12.e12..12.0] Order By $@usn6[$0..9e12][.e12..Null] Desc,.e0 Is Not Null Is Not Null Desc,usn2[..$usn1][..$#usn8] Asc Skip $7 Ends With Count ( * ) Where 's_str' Starts With 9e0 Starts With usn2 Unwind `` Is Not Null Is Not Null As _usn4 Optional Match (usn2 :``:usn2) Where @usn6 Is Not Null Is Not Null"), + octest:ct_string("Merge #usn7=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))) On Match Set @usn6+=[00[..$`8esn`][..7],`7esn`[$usn1..]['s_str'..]] Is Not Null Is Not Null On Match Set None(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`).`7esn`! =07[..07][..0X7],`4esn`:`1esn`:_usn4 Remove [`5esn` In 0X7 In $#usn7 Where @usn6 Is Not Null Is Not Null|9e1[..123456789]].``?,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7).usn1 Union All With Distinct `4esn` Is Not Null Is Not Null,$`5esn` In `2esn` In `2esn` As usn2,$999[0Xa..][9e1..] As `4esn` Order By 123456789 =~True =~#usn7 Asc,True[..#usn8] Ascending Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Detach Delete [`4esn`[.12][$@usn6],.0[..'s_str'][..01234567],1.e1 =~.12][Any(usn2 In False[$usn1][0x0] Where False Is Null)..],{#usn7:$usn2[0.e0],`6esn`:.e1[..\"d_str\"][..$123456789]}[..Extract(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999|Count ( * ) In 0.12)][..[@usn6 In 010[`5esn`] Where 's_str' Starts With 9e0 Starts With usn2|$`5esn` =~$0 =~``]],Count(*) In #usn8 In \"d_str\" Detach Delete [0.0 Is Not Null,$`4esn`[`8esn`],$123456789[12e12..9e0]] =~.e12,None(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]) Contains [$`2esn` Ends With `6esn`,9e1[..123456789]] Contains [12.0 In 123.654 In _usn4],`1esn`(#usn7[..07])[..[#usn8 In `7esn` Where 9e1 Starts With Count ( * )|`3esn` Starts With 9e0 Starts With usn1]]"), + octest:ct_string("Create _usn4=({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}),`7esn`=((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )) Unwind #usn7 In 0.e0 As usn1 Detach Delete True Contains 's_str' Contains $usn1,$`5esn`[..00] Union Optional Match usn2=((usn1 {_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})),`2esn`=(((_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})-[`4esn`?*..{``:`` =~.12,usn1:123.654 Is Not Null}]-(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->({usn2:@usn6 In .12 In `3esn`,`1esn`:usn2[12e12..]['s_str'..]}))) Where 00 Ends With `` Ends With 12.e12 Remove `5esn`:_usn4"), + octest:ct_string("Match ((({`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[`3esn` *..07{usn2:True Contains 0x0 Contains $_usn3}]-({``:``[$`3esn`],#usn8:$@usn6[00]}))) Where #usn7 =~9e12 With Distinct *,1e1 Is Not Null Is Not Null Where `7esn` Ends With $7 Ends With $@usn5 Union All Merge _usn4=(`1esn` {@usn5:`2esn` Starts With $`4esn`}) On Match Set @usn5+=$0[123.654..0.e0],Any(`8esn` In 123456789 =~@usn6 Where .e1 =~_usn4 =~_usn4)._usn3? =01[..$`8esn`][..9e0],usn1 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) Match _usn4=(((:#usn7:`5esn`{`4esn`:$``[..\"d_str\"][..$#usn8]})<-[`6esn`? *00..0Xa]->(:#usn8:`1esn`$`7esn`)-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]}))) Remove Filter(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null).`7esn`,@usn6:``:usn2,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 07 Is Not Null Is Not Null).`6esn`? Union Merge `3esn`=(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}) On Match Set _usn3+=#usn7[..07],(:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(usn1 :`7esn`).`4esn` =1.e1[$`3esn`][0Xa],All(@usn5 In 's_str'[0..] Where `2esn`[..01][..True]).`2esn`! =`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] On Create Set Filter(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7]).``! =12 Contains 01234567"), + octest:ct_string("Match `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((:#usn7:`5esn`{`3esn`:Null[..0]})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->(`6esn` :#usn7:`5esn`{_usn3:_usn4 Is Null Is Null})) Where $`5esn` =~usn1 Union All With Distinct *,@usn5 Contains #usn8 Contains 12.0 As `6esn`,{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] Skip 0.0 Is Null Is Null Where 07 Ends With 9e12 Ends With `2esn` With 12.e12[..$`6esn`] As `7esn`,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] As ``,1.e1 Contains `6esn` Contains 0.e0 Skip Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])] Where 999 Contains $1000"), + octest:ct_string("With *,None(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With Filter(`5esn` In 0X7 In $#usn7 Where 0x0[0X7]) Ends With Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) As #usn7,@usn5 Contains #usn8 Contains 12.0 Order By 12[..0e0][...e1] Descending Where 0X0123456789ABCDEF Contains 12e12 Contains 12.e12 Unwind usn2[..$usn1][..$#usn8] As `` Return *,'s_str' Ends With `7esn` Ends With 010 Order By #usn7[``] Desc,`7esn` Starts With @usn5 Ascending Skip @usn6 =~999 =~@usn5 Union Remove Filter(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`).#usn7,[usn2 In 7[12] Where 12e12 Contains `2esn`].@usn5! Union All Merge @usn5=((:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})) Detach Delete 12.e12 =~.0 =~usn1"), + octest:ct_string("Detach Delete #usn7 In 0.e0,07,[.e0 Is Not Null Is Not Null,$#usn7 Contains $`7esn` Contains .e12,123.654 Is Not Null] In {`6esn`:0X7['s_str'..][01..],#usn7:12.e12 Is Not Null Is Not Null} In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where `2esn` =~.e12 =~0X0123456789ABCDEF) Unwind Extract(#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null)[All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])..] As `7esn` Return 1e1 Contains 's_str' Contains `3esn` Order By [9e12[9e1]][[_usn3[`2esn`..0X7][0.e0..$`3esn`]]..] Ascending,Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])[[00[12..$`6esn`],$`4esn`['s_str'..]]..] Ascending,9e1[$1000][7] Descending Skip 9e12[_usn4..$`5esn`][_usn4...e1] Limit $0 =~9e1 =~$`2esn` Union Unwind @usn6[123.654..][0x0..] As `2esn` Delete [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null),0x0 In `8esn`"), + octest:ct_string("With Distinct 0.e0['s_str'..][01234567..] As `7esn`,Single(_usn4 In 12e12 In 123456789 Where 0e0 =~7 =~12.0) Starts With Extract(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]|9e12 =~@usn6),[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Skip $`6esn`[1.e1][$_usn3] Limit usn1 Is Not Null"), + octest:ct_string("With {#usn8:1.e1 Is Null Is Null,_usn4:0xabc In 123456789 In 0x0}[All(@usn6 In 010[`5esn`] Where 00[1.e1..])..],`5esn`(0[1e1][$usn1],Null =~`6esn`)[usn2(Distinct)..][Single(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7)..] As `1esn`,12.0 Starts With $`2esn` Starts With .e1 Order By [#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Ascending Skip `1esn`(#usn7[..07])[..[#usn8 In `7esn` Where 9e1 Starts With Count ( * )|`3esn` Starts With 9e0 Starts With usn1]] Limit _usn3 =~`2esn` =~0 Where #usn7[0.e0..]['s_str'..] Merge ((@usn6 :@usn6{_usn4:#usn8 Is Not Null})-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-(`5esn` :#usn8:`1esn`)<-[`1esn`:`8esn` *00..0Xa{#usn8:0X7['s_str'..][01..],``:$usn2 =~1.e1 =~usn1}]->(:_usn3{_usn4:.e1[7..][9e0..]})) On Match Set (:``:usn2{`4esn`:#usn7 Contains $0 Contains $usn2})<-[:`8esn` *0X7..]->(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2})<-[`2esn`? *01..123456789]-(`2esn` :@usn6).`8esn` =`7esn`[1e1] On Create Set `7esn` ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]} Remove Filter(usn2 In 7[12] Where $#usn8[12.e12..`8esn`][12.0..0.0]).``,[`8esn` In 123456789 =~@usn6 Where ``[9e12][$999]].@usn5?,`4esn`:`7esn` Union All Match (:#usn8:`1esn`{usn2:$`7esn`[.e1][12.0],``:$`1esn` Contains 1e1 Contains @usn6}) Unwind usn1[...e12][..1.e1] As #usn8 Union All Merge ((:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})) On Create Set usn1 =[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]][Any(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..])..Single(usn2 In False[$usn1][0x0] Where 9e1 Is Not Null Is Not Null)],`6esn` =12.e12 =~0X0123456789ABCDEF =~1.e1 Detach Delete 9e1[_usn3] Return Distinct $#usn7[..9e0][..123.654] As @usn6 Order By Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null] Desc,None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])[..[_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4]] Desc,None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] Desc Limit `6esn`"), + octest:ct_string("Optional Match ((#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})),usn2=((_usn3 :_usn4)-[`3esn`:`2esn`|`4esn`]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[:@usn6|:`7esn` *01..123456789]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07})) Where Null =~`6esn` With Distinct *,`5esn` Contains `5esn` Contains $_usn3 Limit False Starts With 0X7 Starts With 01234567 Where 9e1[_usn3] With Distinct .0[..'s_str'][..01234567] Order By {_usn4:01234567[Null..$_usn3],usn1:$123456789[12e12..9e0]} Desc,`1esn` Starts With 0X7 Starts With \"d_str\" Descending,9e1[$#usn8][$1000] Asc Skip Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`)[Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``)][Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 1e1 Contains 's_str' Contains `3esn`|$`2esn` Ends With `6esn`)] Limit _usn3 =~9e1 =~12e12 Union Match ({@usn6:0x0[Count(*)..@usn6][Count(*)..0Xa],`7esn`:0.0 =~9e0 =~$0})-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(:_usn3{_usn3:$`3esn`[.e1][_usn4]})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`) Where 9e12 =~@usn6 Create (:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}),`7esn`=((_usn3 :`7esn`)) With Distinct *,`4esn` Ends With 12 Ends With .12 As usn2,`3esn`(`7esn`,0x0 Contains $`6esn` Contains `4esn`) Is Null Is Null As usn1 Order By usn1[..$@usn6][..00] Desc Skip 9e1[$`1esn`..] Where usn1[$@usn5]"), + octest:ct_string("With Distinct 01234567[$`2esn`][0Xa],`4esn`[.12][$@usn6] Order By 0[01234567..][0X0123456789ABCDEF..] Desc Where _usn4 Is Null Is Null With *,(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null As `3esn` Union All Optional Match `5esn`=(((usn1 :`8esn`)<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[? *0xabc]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]}))),`2esn`=(((`7esn` )<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2))) Create @usn5=(:@usn5{#usn7:12e12 In $`5esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})-[?*]-({`8esn`:`5esn` Contains #usn7 Contains 9e12}) Union All Unwind usn2[..$usn1][..$#usn8] As ``"), + octest:ct_string("Merge @usn6=(:usn2{`6esn`:#usn7[$`3esn`..$1000][0.0..`2esn`],``:010 Starts With 0 Starts With 0.0}) On Create Set usn2+=$#usn7 Starts With $`2esn`,`4esn`+={#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Is Not Null,`8esn`+=12.e12 Ends With `` Ends With 0 Unwind $@usn5[0.0][0X0123456789ABCDEF] As usn1 Union All Match `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),`8esn`=((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[``:`5esn`|:usn2{`5esn`:_usn4[0]}]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})) Where 1000[12e12][`5esn`] Union Match ((#usn7 {`6esn`:$`2esn` Contains Count(*)})-[?:_usn4]->(`2esn` :usn2)) Detach Delete (`2esn` :usn1:`3esn`)-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})<-[?:`3esn`]-(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})[({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})],0X7 In $#usn7,Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 999 Contains $1000)[(`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8})][#usn8($1000 Is Not Null,$`5esn`[0X7..010][`7esn`..'s_str'])]"), + octest:ct_string("Return $123456789 Starts With 0.12 Starts With Null As _usn3 Order By #usn7[``] Desc,{`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Ascending,`` Is Null Descending Skip 0X0123456789ABCDEF In $7 Limit All(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0)[(:#usn7:`5esn`)<-[#usn8? *0Xa]-(`5esn` :`5esn`{#usn7:``[$`3esn`]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc})..] With Distinct Count(*) In #usn8 In \"d_str\" As ``,$`4esn` Starts With 0 Starts With `7esn` As usn2 Order By $7 Starts With 12.e12 Starts With $@usn6 Desc,1.e1 Is Null Is Null Descending Skip $`1esn`[``][07] Limit `5esn` Contains 1.e1 Contains .e12 Where 9e1 Contains $999 Detach Delete All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`],usn2 Ends With $`4esn`"), + octest:ct_string("Detach Delete 12.e12 =~.0 =~usn1 Merge ({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) On Match Set _usn3 =Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] Union All Remove [@usn5 Is Not Null]._usn4!,[@usn6 In 010[`5esn`] Where 9e1 Ends With Count(*) Ends With $7|`1esn` Is Not Null Is Not Null].`` Create _usn3=((:``:usn2{`5esn`:1.e1[`8esn`],`1esn`:.e0})-[`3esn`:`2esn`|`4esn`]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`6esn`?:_usn3|:`7esn` *..010]->(:_usn3{_usn4:.e1[7..][9e0..]})),@usn6=(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`}) Union Match (`1esn` {#usn7:$`1esn` Ends With 0X0123456789ABCDEF,`3esn`:.12 Starts With _usn3 Starts With $``}) Where True Starts With Null Return *,True In (#usn8 :`6esn`:_usn3)<-[`2esn`?:_usn4{#usn8:$12[9e0..$999]}]->({``:.e1 Starts With 12.e12 Starts With `2esn`}) As `5esn`,Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null] Skip 12.0 Ends With usn2 Ends With 0 Limit usn2 Ends With .e1 Ends With $`5esn`"), + octest:ct_string("Remove `8esn`:`2esn` With Distinct Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])] As @usn6,$`1esn`[Null][True] As usn2,0X7 In $#usn7 Order By 01 Ends With 0Xa Ends With 0X7 Desc,$12 =~0X7 =~0x0 Ascending Skip `7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] Where 00[01234567][False] With Distinct *,`2esn`[..$_usn3] As _usn4,1e1 Is Null Is Null As `2esn` Order By 0.e0[$`4esn`..`2esn`] Descending,$123456789[12e12..9e0] Asc,$_usn3[_usn4..] Asc Limit @usn5(Distinct 1e1 Is Not Null Is Not Null,`1esn` Starts With 0xabc Starts With $usn2)[..Extract(`3esn` In 9e1 Contains $999 Where usn2[12.e12..]|.12[01][@usn5])] Where 12e12 Is Not Null"), + octest:ct_string("With $usn1,`1esn` Contains $999 Contains 0.0 As @usn6,$`6esn`[0e0..][010..] With *,9e12[9e1] As @usn6 Merge #usn7=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))) On Match Set @usn6+=[00[..$`8esn`][..7],`7esn`[$usn1..]['s_str'..]] Is Not Null Is Not Null On Match Set None(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`).`7esn`! =07[..07][..0X7],`4esn`:`1esn`:_usn4"), + octest:ct_string("Detach Delete 01234567[\"d_str\"..`4esn`],9e0 Ends With $#usn8 Union Unwind @usn5[$`6esn`..][$999..] As @usn5 Unwind 0x0[..9e0] As #usn8 Union Remove [#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]|00 In @usn6 In 0].`8esn`,All(@usn5 In 9e0 Ends With $#usn8 Where _usn4[`7esn`]).`8esn`"), + octest:ct_string("Detach Delete usn2 =~usn1 =~Count ( * ),010 Is Null Is Null Match #usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Where 00 Contains Count ( * ) Contains 0x0 Union Unwind (:`2esn`)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})-[@usn6? *0X0123456789ABCDEF..{``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6}]-(`5esn` :@usn5) Is Null Is Null As `4esn` Union All Detach Delete (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)]"), + octest:ct_string("Create #usn8=((`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})) Remove [_usn3 In $`8esn` In @usn6,.e12 Ends With 0Xa Ends With 0xabc,.e1[12.0..]].#usn8,{_usn4:`5esn` Contains #usn7 Contains 9e12}.`1esn`! Union All Match ((:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) Remove Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5,{`3esn`:9e1 Ends With Count(*) Ends With $7}._usn4! Detach Delete {usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}[[@usn5 In 9e0 Ends With $#usn8 Where 00 Contains Count ( * ) Contains 0x0]] Union Create #usn7=((`7esn` :`1esn`:_usn4{@usn5:0x0[usn1..usn1],`6esn`:`4esn`[$_usn3..$`7esn`]})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->({`3esn`:`5esn` Contains $`5esn` Contains 0X7})-[`6esn` *00..0Xa{usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}]->(:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})) Create _usn4=({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}) Unwind None(@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn2..][$123456789..]) =~{`2esn`:7[12],usn1:.12[0X7..][12e12..]} =~Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)|True[0xabc..01234567][$`8esn`..$@usn6]) As `6esn`"), + octest:ct_string("Match `3esn`=((({`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]})<-[ *00..0Xa]->(#usn7 :usn1:`3esn`)<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]}))),`6esn`=(((:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({#usn8:False Starts With 0X7 Starts With 01234567})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5))) Union Return Distinct Count ( * ) In True In @usn5 Skip 01234567[\"d_str\"..`4esn`] Limit 123.654 In $`6esn` Union All Optional Match _usn4=({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}) Where 0x0[@usn6..][01..]"), + octest:ct_string("Match (#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[?:`7esn`|:`2esn`]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]}) Where _usn4[@usn6..][$0..] Remove [$`4esn`[`4esn`][Count(*)],010[..7][..`4esn`],12.0 Starts With $`2esn` Starts With .e1].`6esn`!,[$@usn6[.0..][0e0..]].`8esn`? Merge (((`3esn` :`1esn`:_usn4)-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[`8esn`:#usn7|@usn5 *00..0Xa]-(_usn3 {usn1:0x0 Starts With $`6esn`}))) On Match Set All(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True]).`1esn`? =$usn2[`2esn`..$`1esn`],{usn1:#usn8 =~.e0,_usn3:$_usn4 Is Null Is Null}.`1esn` =$`7esn`[.e1][12.0] On Create Set ``+=$``[7],[@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1|$`4esn` Contains .e0 Contains 0Xa].`` =$`7esn`[123456789..$1000][Count ( * )..$7] Union All Unwind $#usn8[@usn6..] As usn2 Merge ((`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})) On Match Set `1esn` =All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null With 0Xa In #usn7 In 's_str',`4esn` Starts With 0e0 As `7esn` Skip $1000 Is Not Null Limit 0X7['s_str'..][01..] Union All Create `1esn`=(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2}),usn1=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) Optional Match `6esn`=((`6esn` :#usn8:`1esn`{`6esn`:usn1[..$@usn6][..00]})-[@usn5:_usn4 *0x0..]-(_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']}))"), + octest:ct_string("With *,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null Where $`5esn`[0X7..010][`7esn`..'s_str'] Return Distinct `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] As `3esn`,usn1 Ends With 0.0 Limit 7 Ends With .12"), + octest:ct_string("Return 0.0 Contains @usn5 As #usn8,{`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`}[Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..])] Skip Extract(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1|``[$`3esn`])[(:`6esn`:_usn3$usn2)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)..All(_usn3 In _usn3 Contains _usn4 Contains $@usn5)] Limit $_usn3 Is Null Create (:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]}) Match ``=(:_usn3{`7esn`:$999 Ends With .e0})<-[`8esn`?:`2esn`|`4esn`{usn2:#usn8[`6esn`..][$``..]}]-(@usn6 {`6esn`:$`5esn` =~usn1,`5esn`:$`` Starts With $1000 Starts With @usn6})-[?{_usn3:010[`5esn`],_usn4:#usn8 =~.e0}]-(#usn8 :`3esn`{`5esn`:$@usn6 Ends With `1esn`}),`3esn`=((`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`}))"), + octest:ct_string("With 's_str' Order By $12[9e0..$999] Asc,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip #usn8[`8esn`..] Limit .12 In `8esn` In $#usn8 Where 12.e12 Contains #usn7 Contains $_usn4 Detach Delete 9e0[Count(*)..0.12][$`1esn`..12.0] Return *,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Is Not Null As `3esn`,$12 Starts With $0 Starts With $`8esn` As `3esn` Limit {_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null Union All Delete $`1esn` Contains 1e1 Contains @usn6,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null,`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] Union All Detach Delete $#usn8 Ends With `3esn` Ends With $`` Create (_usn3 :`5esn`{#usn8:0xabc In 010 In #usn7}),((`2esn` :_usn3)-[? *0xabc{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0}))"), + octest:ct_string("Delete $0[0Xa..$123456789],[usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Union With Distinct Count ( * ) In True In @usn5 As `2esn`,$_usn3[$12] Order By $`4esn` Contains .e0 Contains 0Xa Asc,123.654[$0..0X7][Null..#usn8] Desc,07[..07][..0X7] Descending Skip $1000 Ends With `8esn` Ends With `2esn` Limit All(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]) Is Not Null Is Not Null Where $123456789[...12][..@usn6] Unwind #usn8(@usn6[999..$_usn3][0.12..$@usn5])[..`1esn`(Distinct `5esn`[..123.654][...e12],01 Contains usn2 Contains 0X0123456789ABCDEF)] As _usn3 Create (((@usn6 )<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})))"), + octest:ct_string("Merge (`2esn` :usn2)<-[:`2esn`|`4esn` *0X0123456789ABCDEF..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(:``:usn2{`4esn`:#usn7 Contains $0 Contains $usn2}) Union Unwind 0.12[$0..$usn2] As `4esn`"), + octest:ct_string("Create ((({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:#usn7|@usn5*..]-(`3esn` :usn2{`6esn`:#usn8 Is Null})<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))),`8esn`=(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`)-[?:usn2{#usn7:0 =~1.e1 =~$#usn7}]->(`8esn` $12)"), + octest:ct_string("Return `1esn` Contains $999 Contains 0.0 As @usn6 Return $7 Ends With Count ( * ),`6esn` =~Null As `4esn` Skip 1e1[_usn3] Limit [`2esn` Is Null] Is Null Is Null"), + octest:ct_string("With (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Order By usn1 Ends With 9e0 Ends With 9e0 Descending,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Descending Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Remove [0.e0[1000.._usn4][.e1..usn1],$`1esn` =~999,07[_usn3..][`6esn`..]].usn1!,usn2:`4esn`:`6esn`,Extract(usn2 In False[$usn1][0x0] Where $`7esn`|07 Is Null).#usn7! Delete $`6esn` Is Not Null Is Not Null,$`8esn` Is Not Null Is Not Null Union With (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Order By usn1 Ends With 9e0 Ends With 9e0 Descending,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Descending Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Remove [0.e0[1000.._usn4][.e1..usn1],$`1esn` =~999,07[_usn3..][`6esn`..]].usn1!,usn2:`4esn`:`6esn`,Extract(usn2 In False[$usn1][0x0] Where $`7esn`|07 Is Null).#usn7! Delete $`6esn` Is Not Null Is Not Null,$`8esn` Is Not Null Is Not Null Union All Return Distinct $usn2 =~0.e0 =~@usn6,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As _usn3,0X7[`2esn`..] As `5esn` Skip `1esn` Contains $999 Contains 0.0 Limit ``[..False][..`3esn`] With *,`` =~.12 As #usn7 Skip usn2 =~7 Limit 0x0 In 0.e0 In #usn8 Where `2esn`[..01][..True] With Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Order By @usn5[0..] Ascending,$@usn5 In $`6esn` In 12e12 Desc,#usn7 In 0.e0 Desc Skip {`8esn`:$_usn4 Starts With 12.e12} Is Null Is Null Limit 999 Contains $1000 Where 999 In #usn8 In $``"), + octest:ct_string("Remove Any(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0).`5esn`"), + octest:ct_string("Return 1e1 Contains 's_str' Contains `3esn` Order By [9e12[9e1]][[_usn3[`2esn`..0X7][0.e0..$`3esn`]]..] Ascending,Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])[[00[12..$`6esn`],$`4esn`['s_str'..]]..] Ascending,9e1[$1000][7] Descending Skip 9e12[_usn4..$`5esn`][_usn4...e1] Limit $0 =~9e1 =~$`2esn` Union Unwind #usn8 Is Null Is Null As `6esn` Union All Merge ((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})) On Match Set [usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]].`1esn`? =999 Contains 0 Contains $`5esn`"), + octest:ct_string("Remove `2esn`(Distinct)._usn3? Union With 0x0[..9e0],Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By 1.e1[12..][$`4esn`..] Asc,Null[..010][..1000] Descending,Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] Descending Limit 1.e1[12..][$`4esn`..] Where 07[$`2esn`..9e12][$`4esn`..9e12]"), + octest:ct_string("Create (`3esn` {usn2:$usn2[`4esn`..9e12]}),`4esn`=(usn1 :`7esn`) Detach Delete $usn2[0.e0] Create (:usn2)<-[? *01..123456789{`8esn`:usn2 =~7,@usn5:`6esn` Ends With _usn4 Ends With False}]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`4esn`:usn2]->(`3esn` :_usn4),`8esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Union All Create ((#usn7 {`1esn`:$`4esn` Is Null Is Null})<-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(`6esn` :`8esn`)) Delete Count(*) Starts With usn2 Starts With `7esn`,$1000 Starts With $`7esn`"), + octest:ct_string("Remove [.e0 Starts With $@usn6 Starts With $7,12.0 In 123.654 In _usn4,$`5esn` In _usn3 In 0.0].`5esn`?,All(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1).`5esn`!,@usn5:_usn4 Union Optional Match #usn8=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}),`2esn`=(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Detach Delete `2esn` Starts With $`7esn` Match `8esn`=({`6esn`:usn1[..$@usn6][..00]}) Where 0Xa[..Count ( * )][..$123456789]"), + octest:ct_string("Return *,'s_str' Ends With `7esn` Ends With 010 Order By #usn7[``] Desc,`7esn` Starts With @usn5 Ascending Skip @usn6 =~999 =~@usn5 With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Where 12.e12 Ends With $`` Unwind $`5esn`[$`3esn`..] As #usn8 Union Merge `6esn`=(((_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})-[``?:_usn4]-(_usn4 :_usn4))) On Match Set Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]|$``[..\"d_str\"][..$#usn8]).@usn6 =[$usn1[`2esn`..][$`2esn`..]][(`3esn` :usn2)-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})..`2esn`(Distinct $@usn6 Is Not Null Is Not Null,Count ( * ) Ends With $123456789)],None(#usn8 In `7esn` Where ``[7.._usn3]).@usn6? =`6esn`,Any(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])._usn4! =`` Is Null On Match Set `4esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1 =(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Create (((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))),#usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Create _usn3=((:``:usn2{`5esn`:1.e1[`8esn`],`1esn`:.e0})-[`3esn`:`2esn`|`4esn`]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`6esn`?:_usn3|:`7esn` *..010]->(:_usn3{_usn4:.e1[7..][9e0..]})),@usn6=(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`}) Union Remove Extract(_usn4 In 12e12 In 123456789 Where .e1 Starts With 12.e12 Starts With `2esn`|$@usn5 Is Null Is Null).@usn5!,Extract(@usn6 In 010[`5esn`] Where $0[0Xa..$123456789]|#usn7[0.e0..]['s_str'..]).`8esn`?,(:#usn8:`1esn`$`7esn`)-[?:@usn6|:`7esn` *0X0123456789ABCDEF..{_usn4:0x0[12e12..$`7esn`]}]->({@usn5:Count(*) Is Not Null Is Not Null}).`5esn`?"), + octest:ct_string("Match `3esn`=(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0}),usn1=(({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) Where \"d_str\"[True..]"), + octest:ct_string("Return $`4esn`[`4esn`][Count(*)] As `8esn` Skip usn1 Starts With $_usn3 Return 123456789 =~$999 Order By $7[01..$123456789][#usn7..12.0] Descending,.12[..usn2][..12e12] Descending Unwind (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]} As `5esn`"), + octest:ct_string("Delete [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] In [12e12 In 123456789,`1esn`] In All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),$999 Is Null Is Null Union Detach Delete $usn2[`2esn`..],`8esn`(Distinct #usn8 Is Not Null Is Not Null,`2esn` In 9e0 In 7) Starts With None(usn2 In 7[12] Where 123456789 =~12 =~'s_str') Match #usn7=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2),(((:_usn4{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})<-[`2esn`? *01..123456789]-(`2esn` :@usn6))) Where 999[123.654..$usn2][Count ( * )..0x0] Merge (((@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`})<-[`3esn` *7..]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[? *01..123456789]-(usn1 :_usn4{`4esn`:`7esn` Is Null}))) On Match Set usn1(True Contains 's_str' Contains $usn1,.e0 Is Not Null Is Not Null).@usn5! ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]}"), + octest:ct_string("Create (:@usn5{@usn5:$12[9e0..$999]})-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]->(:@usn5{#usn7:12e12 In $`5esn`})<-[:`8esn` *0X7..]->(:`3esn`{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]}) With Distinct $usn2,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Order By 's_str' Contains 12.e12 Contains $`4esn` Descending,.e12 Ends With 0Xa Ends With 0xabc Descending Skip #usn7 =~9e12"), + octest:ct_string("Return `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By $1000[$@usn6][$_usn4] Desc"), + octest:ct_string("Return *,$`8esn`[999] As @usn5,00 Ends With `` Ends With 12.e12 Skip All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] Merge `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] On Match Set (`3esn` {usn2:$usn2[`4esn`..9e12]})<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1).#usn7! =_usn4 Starts With `` Starts With 1000,Extract(`3esn` In `2esn`[..01][..True] Where 0X7[..$`8esn`]|$#usn7 Starts With 01234567 Starts With $0).`5esn`! =@usn6(Count ( * ) In True In @usn5)[None(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)]"), + octest:ct_string("Return *,`2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Order By $`2esn` Starts With 0.12 Starts With $12 Ascending,07 In `6esn` Desc,12[..0e0][...e1] Desc Skip #usn8[`6esn`..][$``..] Limit `3esn`[..0X0123456789ABCDEF][..0x0] Merge (((:`7esn`{_usn3:@usn5[0.0..0X7]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]}))) On Match Set @usn5+=$0[123.654..0.e0],Any(`8esn` In 123456789 =~@usn6 Where .e1 =~_usn4 =~_usn4)._usn3? =01[..$`8esn`][..9e0],usn1 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) On Create Set [#usn7 In 9e1[$`1esn`..] Where 00 Ends With $`1esn` Ends With `7esn`].`2esn` =All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null),``:@usn5,@usn5+=12.e12[_usn4..$1000][$7..$999] Remove `3esn`(Distinct 123.654 Starts With 0X7 Starts With $`4esn`).``!,Any(_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1).`2esn`,Filter(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]).@usn5? Union Remove {#usn8:`1esn`[usn1][0xabc],_usn3:$`6esn`[1.e1][$_usn3]}.#usn7?,[123456789 Contains 0.0 Contains $@usn6,_usn3 Contains _usn4 Contains $@usn5].`8esn`? Return _usn4(Distinct usn2[07..][.0..]) Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]|$`2esn` Starts With `4esn` Starts With $usn1) Ends With Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2),usn1[..$@usn6][..00] As #usn7,(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})[..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})] As `7esn` Order By 0X7[..$`8esn`] Desc,$123456789[12e12..9e0] Descending Remove [@usn6 In False Contains 0 Contains $`6esn` Where 0.0 =~9e0 =~$0|.e0[01234567..$`8esn`]].@usn6?,({`4esn`:.e1[..$`3esn`][..01]})<-[`1esn`?:`8esn` *7..]-(:``:usn2{``:True[$_usn3..]}).`6esn`,All(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7).`6esn`?"), + octest:ct_string("Return Distinct 0[$#usn8..][0x0..]"), + octest:ct_string("Create (((`4esn` :``:usn2)<-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]-({`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[:_usn4{`8esn`:12.e12 Is Not Null Is Not Null,#usn7:@usn6[Null...0][\"d_str\"..Count(*)]}]-(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False}))),((@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})) Union All Remove {`5esn`:1.e1[`8esn`],`1esn`:.e0}.`1esn`,{`6esn`:12.e12 Is Not Null Is Not Null,`1esn`:#usn7[0.12..]}.`3esn`?,`6esn`(`1esn`[`3esn`..],01[..01234567][..$_usn3]).`1esn`? Unwind None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]) Ends With [_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4|0x0[0X7]] As usn1 Remove [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`8esn`[123456789..][$@usn5..]|#usn8 Is Not Null Is Not Null].#usn7 Union Detach Delete #usn7[0.e0..]['s_str'..],$0 Starts With @usn5 Create ((:`5esn`{`8esn`:$`1esn` Starts With Count(*),_usn3:usn1[...e12][..1.e1]}))"), + octest:ct_string("Merge ((:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[`2esn`{``:Null[..010][..1000]}]-(`` :usn1:`3esn`)-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})) On Match Set `1esn` =Filter(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12])[..Extract(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])][..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]],#usn8(Distinct 12.0[$1000..][#usn7..],0xabc In Null).`2esn` =0.e0 Starts With usn1 On Match Set `2esn` =[$#usn7 Ends With 's_str' Ends With 0X7] Starts With (usn1 :@usn6)<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}) Starts With [`5esn` In `7esn`[$usn2..][$123456789..] Where $`1esn` Starts With Count(*)]"), + octest:ct_string("With *,9e0[..123456789][..$`3esn`] As #usn7 Unwind [$`4esn`[0..][999..],$usn2 Is Not Null Is Not Null,$`5esn` In _usn3 In 0.0] Ends With [#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|.e1 In 0] Ends With None(#usn7 In $999 In 1e1 Where $`4esn`[`4esn`][Count(*)]) As #usn8 Union All Create ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`))"), + octest:ct_string("With @usn5[0..] As `6esn`,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `6esn`,_usn4[.12..$usn2][$_usn3..123.654] As `` Skip Single(#usn7 In $999 In 1e1 Where $`4esn`[`4esn`][Count(*)]) Contains None(#usn8 In `7esn` Where 12.0 Starts With $`2esn` Starts With .e1) Contains [.0 Ends With Count ( * ),0e0 Starts With 999 Starts With `2esn`,$@usn6 =~#usn7 =~True] Limit Filter(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) =~{#usn7:1000[12e12][`5esn`]} Where 9e12[..`3esn`][..0X0123456789ABCDEF] Union Optional Match ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)) Where 010 Starts With 0 Starts With 0.0 With _usn4 Contains $_usn3 Contains .e1,$`4esn`['s_str'..] As `` Limit .e12[..999][..@usn5] Where .12 In `8esn` In $#usn8 Return 0x0[12e12..$`7esn`] As #usn7 Order By .e12[`2esn`..010] Desc,0xabc In 010 In #usn7 Ascending Skip $999 In 1e1 Union Create _usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Remove {#usn8:`1esn`[usn1][0xabc],_usn3:$`6esn`[1.e1][$_usn3]}.`3esn`,{usn1:@usn6[9e12]}.`4esn`! Return 12[$`5esn`..][False..] As `4esn`,0e0 Ends With 07 Ends With $`8esn` As `1esn` Limit All(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`)[Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null)..][Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..])..]"), + octest:ct_string("Unwind Count ( * ) Ends With `6esn` Ends With 's_str' As _usn3 Create #usn8=(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`6esn` :`1esn`:_usn4{@usn5:07 Ends With 9e12 Ends With `2esn`}) With 0.e0['s_str'..][01234567..] As `1esn`,.e12 Starts With $7 Starts With .0 As _usn4,None(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With Filter(`5esn` In 0X7 In $#usn7 Where 0x0[0X7]) Ends With Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) As #usn7 Skip Single(#usn8 In `7esn` Where 12.0 Starts With $`2esn` Starts With .e1) Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]] Ends With {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01} Union Merge ((`2esn` :@usn5)-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})) Unwind None(@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn2..][$123456789..]) =~{`2esn`:7[12],usn1:.12[0X7..][12e12..]} =~Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)|True[0xabc..01234567][$`8esn`..$@usn6]) As `6esn`"), + octest:ct_string("Create `6esn`=(((`7esn` :`2esn`{@usn6:$0[123.654..0.e0]})-[_usn3 *..07{@usn6:$`2esn`[..$`3esn`][..12e12]}]->(`1esn` {#usn7:$`1esn` Ends With 0X0123456789ABCDEF,`3esn`:.12 Starts With _usn3 Starts With $``})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`}))),``=(_usn3 :`4esn`:`6esn`)-[?:@usn6|:`7esn`]-(:#usn8:`1esn`)-[_usn3?]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Optional Match @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) Where Count ( * )[@usn6] Create ((:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[`2esn`{``:Null[..010][..1000]}]-(`` :usn1:`3esn`)-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})),((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null}))"), + octest:ct_string("Remove {`6esn`:$@usn5 Contains 's_str' Contains \"d_str\",`4esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}.`1esn`! Remove `2esn`(.12[123.654..]).`4esn` Merge `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2))"), + octest:ct_string("Create _usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Remove {#usn8:`1esn`[usn1][0xabc],_usn3:$`6esn`[1.e1][$_usn3]}.`3esn`,{usn1:@usn6[9e12]}.`4esn`! Return 12[$`5esn`..][False..] As `4esn`,0e0 Ends With 07 Ends With $`8esn` As `1esn` Limit All(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`)[Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null)..][Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..])..] Union All Remove Extract(`3esn` In 9e1 Contains $999 Where usn1[False..`5esn`][$1000..$12]|True Starts With Null).`4esn`! Union With `5esn`[..123.654][...e12] As @usn6,(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) As `2esn`,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As `1esn` Skip $`3esn`[..0X0123456789ABCDEF][..7] Limit 12.0 Starts With .12 Starts With `6esn` Where ``[$`3esn`] Merge ((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})) On Match Set [usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]].`1esn`? =999 Contains 0 Contains $`5esn`"), + octest:ct_string("Create (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}),`6esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) With Distinct $#usn8 Ends With `` Ends With 999 As `5esn`,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]) Is Not Null Is Not Null As _usn3 Order By _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..] Desc,{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Is Not Null Desc,9e0 Ends With $#usn8 Desc Limit 12.0 Starts With $`2esn` Starts With .e1 Where 9e1 Ends With Count(*) Ends With $7"), + octest:ct_string("Remove None(@usn5 In 's_str'[0..] Where usn2 Ends With .e1 Ends With $`5esn`).`7esn`?,count(Distinct 00[$usn1..],$`2esn` Ends With `6esn`).`4esn`? Remove All(#usn8 In `7esn`).`1esn` Union Delete $#usn7[..0Xa],01 In $@usn6 With `5esn`[..123.654][...e12] As @usn6,(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) As `2esn`,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As `1esn` Order By None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0) Descending,@usn5[$`7esn`..`5esn`] Ascending,.0 Contains .e12 Contains 0 Asc Skip usn1 Limit `6esn`[$`8esn`][9e1] Where False Starts With 0X7 Starts With 01234567 Union All Optional Match `1esn`=(_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`}),`5esn`=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']}) Where 07 In `6esn` Merge `7esn`=(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})"), + octest:ct_string("With *,All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],12 In $usn1 In 7 As `8esn` Skip None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1) Limit $@usn5 Starts With .e1 Where usn1 Is Null Is Null Unwind [$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) As #usn8 Union All Return Distinct .e12 Starts With $7 Starts With .0,[$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) As #usn7,01 Contains usn2 Contains 0X0123456789ABCDEF As `8esn` Order By 0Xa =~False =~@usn5 Descending,12.0 In 010 Ascending,`4esn`[123456789] Ascending Return (#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null} Order By Extract(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With [#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4] Ends With [False[$`4esn`..],$#usn7[..0Xa]] Asc,@usn6[..$@usn5] Ascending Skip 999 Starts With `2esn` Starts With .e1 Limit 0.e0[..$999][..0Xa] Union All Delete Count ( * ) Ends With `6esn` Ends With 's_str',Count(*)[$@usn5] Optional Match @usn6=(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})-[:@usn5|_usn3 *00..0Xa]-(:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(_usn4 :@usn5) Merge (#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[?:`7esn`|:`2esn`]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]}) On Match Set `2esn` =`3esn`[..0X0123456789ABCDEF][..0x0] On Create Set `2esn` =$@usn5[0.0][0X0123456789ABCDEF],@usn6+=[`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})]"), + octest:ct_string("Merge (((`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})<-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Merge ((`4esn` :_usn3{usn2:01[..0Xa][..12],`1esn`:999[..`1esn`][..07]})-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})) Return Distinct .e0 Starts With $@usn6 Starts With $7 As `1esn`,1.e1 Contains `6esn` Contains 0.e0 Order By `3esn`[$123456789..][$usn2..] Ascending Union All Unwind #usn8 Is Null Is Null As `8esn`"), + octest:ct_string("Remove Extract(usn2 In 7[12] Where $_usn3 Is Null|`3esn`[..0X0123456789ABCDEF][..0x0]).#usn8!,Single(`6esn` In $`6esn`[``..][Count(*)..] Where 1.e1 Ends With $_usn4 Ends With #usn7).`3esn`! Detach Delete `4esn`($_usn4 Starts With $1000 Starts With 12)[{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}],$`3esn`[.e1][_usn4],$7[$12..12e12][1.e1..9e1] With $999 In 12 In 1.e1 Order By (`5esn` :`1esn`:_usn4)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})[[.e0 Is Null Is Null,9e1 Contains 12,'s_str' Ends With `7esn` Ends With 010]..] Descending,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} Desc Limit 00 In @usn6 In 0 Where $@usn6 In @usn6 In 1e1 Union Detach Delete `4esn` Contains 9e0,`5esn` Contains `7esn` Merge #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}))"), + octest:ct_string("Unwind usn2[12e12..]['s_str'..] As @usn6 Union Create `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),({_usn3:@usn6 Contains .12 Contains $usn1}) Return Distinct *,12[None(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)..`5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12])][`5esn`(`2esn`[..01][..True])..(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})<-[? *7..]-(#usn7 :``:usn2)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})] As usn1,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) As `7esn`"), + octest:ct_string("Create _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),(((`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})<-[:`2esn`|`4esn` *0X0123456789ABCDEF..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(@usn6 :`2esn`{`4esn`:$999[0Xa..][9e1..]}))) Merge #usn8=({#usn7:12e12 In $`5esn`}) On Create Set @usn6+=None(`3esn` In `2esn`[..01][..True] Where usn1 In ``)[None(usn2 In 7[12] Where 12e12 =~$`7esn`)..],Single(#usn7 In 9e1[$`1esn`..] Where Count ( * ) In 0.12).@usn6? =7[0e0..] On Create Set ``+=$``[7],[@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1|$`4esn` Contains .e0 Contains 0Xa].`` =$`7esn`[123456789..$1000][Count ( * )..$7] Union All Return *,12 Ends With True Ends With @usn6,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By $123456789[12e12..9e0] Asc,1e1 Contains 0.e0 Contains 9e1 Ascending,.e12[@usn6..][010..] Desc Limit $`7esn` In False In $`1esn`"), + octest:ct_string("Unwind $7[999][usn1] As `` Match (((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Where .e1[..\"d_str\"][..$123456789] Unwind 9e0 Is Not Null Is Not Null As `4esn`"), + octest:ct_string("With $@usn6[..12] As #usn8,`6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] As #usn8,[`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})] Order By 12.e12[..9e1][..$_usn3] Descending,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] Desc Skip @usn6(Count ( * ) In True In @usn5)[None(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)] Limit Extract(usn2 In 7[12] Where usn1 Starts With 00|`8esn` Contains Count(*) Contains $#usn7) Contains None(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[0.e0]) Contains Extract(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]|$`4esn`['s_str'..]) Where `1esn` Is Not Null Is Not Null Union Unwind 1.e1 Starts With 9e12 As `8esn` Unwind `5esn`[Count ( * )] As @usn6"), + octest:ct_string("With *,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As `8esn` Where $`7esn`[.e1][12.0] Union Unwind $1000 Ends With `8esn` Ends With `2esn` As `3esn`"), + octest:ct_string("Unwind Count(*)[.e12..][01234567..] As `6esn` Union All Merge `7esn`=(((`` :`5esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`8esn`{`8esn`:usn1 Contains 010,_usn4:`5esn` Contains $`5esn` Contains 0X7}]-({#usn8:0xabc In 010 In #usn7}))) On Create Set `3esn` =12[.0],All(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])._usn4? =12 Starts With True Starts With 12e12 Merge usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})) With `8esn` Is Null As `2esn`,[#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) Starts With [12 In $usn1 In 7,`6esn` Ends With Count ( * ) Ends With Count ( * ),`2esn` Starts With $`7esn`] Starts With usn2(Distinct .0[..'s_str'][..01234567],Count(*) In 12 In `6esn`) Ascending,_usn4[.12..$usn2][$_usn3..123.654] Desc,`4esn`[\"d_str\"]['s_str'] Ascending Skip Filter(@usn5 In 9e0 Ends With $#usn8) Contains {@usn6:#usn7[`8esn`..usn1][$999..`7esn`]} Contains (:#usn7:`5esn`)-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}) Where $@usn6[$`8esn`..][123456789..]"), + octest:ct_string("Detach Delete 12e12[12e12][$#usn7] Delete [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null),0x0 In `8esn`"), + octest:ct_string("Return *,`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] As usn1,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] Merge `1esn`=(`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) On Create Set [#usn8 In `7esn` Where 01 Ends With 0Xa Ends With 0X7|`8esn` Contains Count(*) Contains $#usn7].``? ={`5esn`:$`1esn` In .e0,``:`6esn` Ends With Count ( * ) Ends With Count ( * )} Is Null Is Null,`8esn`+=$7 Is Null,`7esn` =_usn4 In #usn7 Unwind $12 Starts With $0 Starts With $`8esn` As usn2 Union Return Distinct *,1.e1 Ends With $#usn7 As usn2,@usn5[01][@usn5] Skip $`5esn` Limit (`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Is Not Null Union Return Distinct *,9e12 =~@usn6,`4esn` Contains 9e0 Order By 1000[..$1000] Descending Skip Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Limit {``:123.654 In $`7esn`}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..None(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6 =~#usn7 =~True)] Detach Delete Null Ends With _usn4 Ends With 0.0 Optional Match ((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})),#usn8=({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})"), + octest:ct_string("Return Distinct $usn2 =~0.e0 =~@usn6,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As _usn3,0X7[`2esn`..] As `5esn` Skip `1esn` Contains $999 Contains 0.0 Limit ``[..False][..`3esn`] With *,`` =~.12 As #usn7 Skip usn2 =~7 Limit 0x0 In 0.e0 In #usn8 Where `2esn`[..01][..True] With Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Order By @usn5[0..] Ascending,$@usn5 In $`6esn` In 12e12 Desc,#usn7 In 0.e0 Desc Skip {`8esn`:$_usn4 Starts With 12.e12} Is Null Is Null Limit 999 Contains $1000 Where 999 In #usn8 In $`` Union All With 123456789 Contains 0Xa As usn1,True Contains 's_str' Contains $usn1 As `8esn`,`2esn` Is Null As `8esn` Order By .e12[0Xa..] Descending,`5esn`[$`7esn`..$@usn5] Ascending,`5esn`[..True][..0.e0] Descending Where $@usn5[..$#usn7] Unwind 1000[7..$12] As @usn6 Union Unwind @usn6[..$@usn5] As #usn7 Unwind Count(*)[``..#usn8][`3esn`..0xabc] As @usn5"), + octest:ct_string("With *,`3esn`[...e1] Order By $_usn4[01..][$_usn4..] Ascending,Single(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)[[07[_usn3..][`6esn`..],999[123.654..$usn2][Count ( * )..0x0]]..][Single(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])..] Descending,.e12[0Xa..] Descending Skip [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 999 Is Not Null Is Not Null|$`8esn`[123456789..][$@usn5..]] Contains (`1esn` {@usn5:`2esn` Starts With $`4esn`})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->(`2esn` {`1esn`:$`4esn` Is Null Is Null})<-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-({#usn8:0xabc In 010 In #usn7}) Contains Extract(#usn7 In $999 In 1e1 Where .e0 Is Not Null Is Not Null|$`5esn` Is Not Null Is Not Null) Limit usn1[_usn3..] Where #usn7 Contains $0 Contains $usn2 Delete 123456789 Is Null Is Null,{#usn8:12.0 Ends With `2esn`,@usn5:usn1 Starts With 00}[Any(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Union All Optional Match usn1=((:@usn5{@usn5:$12[9e0..$999]})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})) Return @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1|$@usn5 In $`6esn` In 12e12) Ends With (:`7esn`{#usn7:0 =~1.e1 =~$#usn7})<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}),`1esn`($`4esn`[`4esn`][Count(*)],`2esn` Starts With $`7esn`) =~Extract(@usn5 In 9e0 Ends With $#usn8 Where .e0 Starts With $@usn6 Starts With $7) =~{`3esn`:_usn3[`2esn`..0X7][0.e0..$`3esn`]} Union All Delete _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..],``(Distinct 00 Ends With `` Ends With 12.e12,`6esn`[..Count ( * )][..$_usn4]) In (usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[`7esn`?:#usn8|:`3esn`{`6esn`:'s_str'[0..]}]->(#usn8 :`8esn`$#usn8) In Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1]) Return Distinct @usn5[01][@usn5],9e0 Contains $12 Contains `3esn` As #usn8,{`4esn`:0.0[usn1..],`7esn`:12.0[$1000..][#usn7..]}[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7)..[usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]]][[12.e12[..$`6esn`],999 In #usn8 In $``]..Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1)] Skip {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}[[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]]..][(_usn4 {`6esn`:$_usn4 =~$`1esn` =~`2esn`,_usn3:#usn8 Is Null})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[_usn4?{_usn3:.e1[.e1..`1esn`],@usn6:.12 In `8esn` In $#usn8}]->(usn2 :@usn5)..]"), + octest:ct_string("Detach Delete 9e0[Count(*)..0.12][$`1esn`..12.0] Union All Unwind .e0[9e12..] As usn2 Union Remove Any(`6esn` In $`6esn`[``..][Count(*)..] Where False Contains 0 Contains $`6esn`).usn1!,{`1esn`:`1esn`[$@usn6][07]}.`1esn` Unwind #usn7[..07] As usn1"), + octest:ct_string("Optional Match (((:`1esn`:_usn4{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]})<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}))),_usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Where _usn4[`7esn`]"), + octest:ct_string("Merge _usn3=(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`}) On Match Set {_usn3:0Xa[$`8esn`..][$_usn4..],usn1:True Starts With Null}.usn1 ={`4esn`:12e12 =~$`7esn`} Is Not Null Is Not Null Union All Remove (#usn8 :`8esn`$#usn8)-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]})-[`7esn`:`4esn`|@usn5 *12..]-(@usn6 :usn1:`3esn`).@usn5?"), + octest:ct_string("Optional Match ((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(:`8esn`{``:$`1esn` =~999})) Where @usn6[9e12] Union All Unwind #usn7[..07] As usn1"), + octest:ct_string("Merge (`5esn` :``:usn2)<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2) On Match Set (:_usn3)<-[`2esn`? *01..123456789]-(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}).#usn8! =Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``),{`1esn`:`8esn` Is Not Null Is Not Null}.`4esn`? =$@usn5 Starts With `5esn` Starts With 01234567,{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}.``? =12 In $usn1 In 7 On Create Set #usn7+=Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] Union Match _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Where 010 Is Null Is Null Union All With Distinct *,@usn6[9e12],$`3esn`[..0xabc][..$7] Skip All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) Limit Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null Where 1000[12e12][`5esn`] Optional Match `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((`6esn` :`5esn`)<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`5esn` :`4esn`:`6esn`)) Where 07 Is Not Null Is Not Null"), + octest:ct_string("Merge #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))) On Create Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] On Match Set Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa).@usn6! =0.e0 Is Not Null Is Not Null,`1esn` =07 In `6esn`"), + octest:ct_string("Unwind [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null) As `7esn` Unwind Extract(@usn6 In 010[`5esn`] Where 00[$usn1..]|_usn3[$usn2..][$``..])[Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])] As _usn3 Remove All(@usn6 In 010[`5esn`] Where 1.e1[$usn1]).`6esn`!,Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5 Union All Remove None(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Is Not Null Is Not Null).`8esn`,[@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc|12.0 Starts With $`2esn` Starts With .e1].`3esn`?,7._usn4 Remove None(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]).`1esn`?,Extract(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null|0 =~1.e1 =~$#usn7).@usn5!,(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}).@usn5"), + octest:ct_string("Detach Delete $7 In $usn1 In 999,00[1.e1..],`8esn` =~@usn6 =~$`2esn` Match _usn3=(`1esn` )<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7}) Where @usn5 Starts With 9e0 Starts With 010 With Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By [Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] Ascending,None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) Descending Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]) Where @usn6 Is Not Null Is Not Null Union Delete $`1esn` Contains 1e1 Contains @usn6,None(#usn7 In 9e0[$1000] Where $_usn3 Is Null)[[0 =~1e1,$#usn8[12.e12..`8esn`][12.0..0.0],$1000 Is Not Null]..],(usn2 :_usn4)-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-({`8esn`:usn2 Starts With .0,@usn5:Count(*) In 12 In `6esn`}) Starts With [`3esn` In `2esn`[..01][..True] Where _usn4 Is Null Is Null|_usn3 In $`8esn` In @usn6] Starts With [@usn5 In 's_str'[0..] Where `6esn`[..Count ( * )][..$_usn4]] Return Distinct *,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] As `1esn` Merge usn1=((`2esn` :@usn5)) On Match Set Any(#usn8 In `7esn` Where $`3esn` Contains $`1esn`).`8esn`? =0x0 Contains $`6esn` Contains `4esn`,Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where False[$usn1][0x0]|@usn5[0.0..0X7]).usn2! =Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1),`3esn` =12.e12[..$999][..07] On Match Set usn1 =`5esn` Contains `5esn` Contains $_usn3,#usn8 =True Contains 0x0 Contains $_usn3"), + octest:ct_string("Create `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}),(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}) With *,#usn7[``] As usn1,None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6) =~Single(`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8) =~(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]}) Order By $@usn6 In @usn6 In 1e1 Desc,.e1[..$`3esn`][..01] Desc Limit _usn3 Is Null Is Null Unwind 9e0[Count(*)..0.12][$`1esn`..12.0] As @usn6 Union All Unwind $999 Starts With 12 Starts With 1e1 As `1esn` Merge `1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}))"), + octest:ct_string("Unwind $`5esn`[`7esn`] As @usn5 With None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,9e1[@usn5][$usn1] As `5esn`,`4esn` Starts With 0e0 As `7esn` Order By 1.e1 Contains `6esn` Contains 0.e0 Descending,07[..07][..0X7] Descending Limit Single(_usn4 In 12e12 In 123456789 Where 0e0 =~7 =~12.0) Starts With Extract(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]|9e12 =~@usn6) Return Distinct *,$#usn8[12.e12..`8esn`][12.0..0.0] As #usn8 Order By $#usn7[..9e0][..123.654] Descending,usn1[False..`5esn`][$1000..$12] Ascending,$usn2 =~1.e1 =~usn1 Desc Skip True Contains 0x0 Contains $_usn3 Limit `4esn` In 010 Union All Unwind @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])] As usn2 Return Distinct *,False Is Null Order By 0X7[..$`8esn`] Desc,[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null Ascending,12.e12 Ends With `` Ends With 0 Desc Skip Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0)[..{`5esn`:0Xa[$`8esn`..][$_usn4..],_usn3:00[$usn1..]}][..Any(@usn6 In 010[`5esn`] Where 1.e1[$usn1])]"), + octest:ct_string("Create (usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}),({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5)<-[_usn4?:@usn6|:`7esn`]->({`6esn`:'s_str' Contains 12.e12 Contains $`4esn`}) Create ((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})) Remove (:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})-[? *0Xa]-(`8esn` {``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]}).`2esn`! Union Create (@usn6 {`4esn`:9e1 Contains 12}) Return *,0X7[`2esn`..] As `6esn`,$`1esn` Contains 1e1 Contains @usn6 As `3esn` Order By $_usn3[_usn4..] Descending,9e1 Contains $999 Ascending Unwind 07[999] As @usn6"), + octest:ct_string("With Distinct $@usn5 Contains 's_str' Contains \"d_str\" As @usn5 With Distinct *,[1000[0e0][1e1],12.0 Is Null Is Null] Is Not Null Is Not Null Order By $`5esn`[$`6esn`][`2esn`] Descending,`6esn`[..$`4esn`] Descending,12 Starts With $123456789 Starts With .e12 Ascending Limit [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Union All Create `2esn`=()-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]-(:`4esn`:`6esn`{usn1:0 =~1e1,`7esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})-[_usn3:`5esn`|:usn2 *999..{`3esn`:`5esn` Contains $`5esn` Contains 0X7}]-(`8esn` {`1esn`:$`4esn` Is Null Is Null})"), + octest:ct_string("Merge (((usn1 :`8esn`)<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[? *0xabc]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})))"), + octest:ct_string("Remove Extract(_usn4 In 12e12 In 123456789 Where .e1 Starts With 12.e12 Starts With `2esn`|$@usn5 Is Null Is Null).@usn5!,Extract(@usn6 In 010[`5esn`] Where $0[0Xa..$123456789]|#usn7[0.e0..]['s_str'..]).`8esn`?,(:#usn8:`1esn`$`7esn`)-[?:@usn6|:`7esn` *0X0123456789ABCDEF..{_usn4:0x0[12e12..$`7esn`]}]->({@usn5:Count(*) Is Not Null Is Not Null}).`5esn`?"), + octest:ct_string("Create (usn2 :`7esn`)<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[? *7..{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null}) Return Distinct Count ( * ) In True In @usn5 Order By 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Asc,`6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] Desc Optional Match `5esn`=(`2esn` :`1esn`:_usn4)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}) Union All Create `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}) Detach Delete 12 Starts With $123456789 Starts With .e12"), + octest:ct_string("Unwind #usn7[..07] As usn1 Union All Match #usn7=((`7esn` :`1esn`:_usn4{@usn5:0x0[usn1..usn1],`6esn`:`4esn`[$_usn3..$`7esn`]})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->({`3esn`:`5esn` Contains $`5esn` Contains 0X7})-[`6esn` *00..0Xa{usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}]->(:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})) Where 0.0 Contains #usn7 With $@usn6 Ends With 12.e12 Ends With @usn5 As usn2 Where 12.0 Is Null Delete 12.e12 Contains `6esn`,$1000 Is Not Null,`1esn`[$@usn6][07] Union Remove Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where _usn4[`7esn`]|0xabc[..$1000][..`5esn`]).`4esn`?,[`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null].#usn8? Remove (usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0})._usn3"), + octest:ct_string("Create (((`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789})<-[`8esn`:#usn7|@usn5 *00..0Xa]->({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6}))),((:`4esn`:`6esn`{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})-[`5esn`?:`6esn`|:#usn8{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]-({`5esn`:#usn8 =~.e0})<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null})) Remove {``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}.`1esn`!,Filter(#usn8 In `7esn` Where 9e1 Starts With Count ( * )).@usn5!,(usn2 {`5esn`:$@usn5 In 12e12 In 01})<-[`7esn`{`4esn`:$_usn4[$`6esn`..],`4esn`:Count(*) In #usn8 In \"d_str\"}]->(`3esn` :usn2)-[`4esn`?*..{``:`` =~.12,usn1:123.654 Is Not Null}]-(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]}).`8esn`? Union Unwind {`8esn`:9e12 =~@usn6,`1esn`:999 Contains 0 Contains $`5esn`}[`4esn`()] As #usn8 Delete {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}[..`2esn`(Distinct 0 Ends With 12.e12 Ends With usn2)][..Filter(_usn4 In 12e12 In 123456789 Where .e1 In 123456789)],Extract(@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1) Is Not Null Merge ((:_usn4{`1esn`:0e0 =~0Xa =~$999})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(`` :`5esn`{@usn5:123456789 =~@usn6})<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null})) On Match Set {usn2:$@usn6 =~#usn7 =~True,_usn3:07 In `6esn`}.`3esn` =$`5esn`[$`6esn`][`2esn`] Union Detach Delete $123456789[12e12..9e0] Remove [12.0 Starts With .12 Starts With `6esn`,usn2 Contains $0 Contains .0,$#usn7 In $@usn5 In $`1esn`].`7esn`!,Single(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]).`3esn`?"), + octest:ct_string("Create (@usn5 :`1esn`:_usn4),`3esn`=(`` {`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']})<-[`6esn`? *00..0Xa]->(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}) Match @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) Merge (((:#usn7:`5esn`{_usn4:$usn2 =~9e1})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`)<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]}))) Union Merge ((:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) On Create Set [12 =~usn1,7 =~`4esn`,``[9e12][$999]].`1esn` =Extract(#usn7 In $999 In 1e1 Where `5esn`[..True][..0.e0]|$`5esn` =~$0 =~``) In (:`7esn`{#usn8:0Xa Ends With $`3esn` Ends With $1000})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]}) In Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|999 Contains 0 Contains $`5esn`) On Create Set {usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}.#usn8 =[@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1] Is Null,`4esn`:#usn7:`5esn`,({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})<-[`8esn` *0xabc]-(:_usn3{_usn4:.e1[7..][9e0..]})-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}).usn2 =123.654[..0.e0][..'s_str'] Create (:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789})"), + octest:ct_string("Unwind {`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`} Contains Filter(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5) Contains Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) As `5esn` Union Delete $#usn7[..$`4esn`][..01]"), + octest:ct_string("Unwind [Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] As `5esn` Merge #usn7=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`})) Remove Extract(`6esn` In $`6esn`[``..][Count(*)..] Where False Contains 0 Contains $`6esn`|0X7['s_str'..][01..]).#usn8,{#usn7:.e0 Is Null Is Null,#usn7:0.0 Is Null Is Null}.#usn8!,[$@usn5 Ends With @usn5 Ends With 0xabc,12.0 In 123.654 In _usn4].`3esn`? Union All Merge `4esn`=((@usn6 {usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[ *..07{`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}]-({#usn7:$`3esn` Ends With 01234567,_usn3:usn1 =~$`7esn`})) Return Distinct $0[010..] As `` Order By `5esn`(Distinct .e0[01234567..$`8esn`]) =~All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) =~[999 In #usn8 In $``,.e0 Is Null Is Null] Ascending Skip count(Distinct 0X0123456789ABCDEF Contains 12e12 Contains 12.e12)[..{usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]}][..(:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null})] With *,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As `8esn` Where $`7esn`[.e1][12.0] Union All Delete 0xabc =~@usn5 =~$usn1,[$usn1 Ends With _usn4 Ends With `2esn`][@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)..[#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1]][Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..])..Extract(#usn7 In 9e1[$`1esn`..] Where $999[``])],1000[$7..][_usn4..] With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Order By 1.e1 In 1000 In _usn3 Desc,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Descending,123.654 Is Null Is Null Asc Where _usn4[`7esn`]"), + octest:ct_string("Detach Delete [0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]][{usn2:$@usn6 Ends With `1esn`,_usn3:`7esn`}..][{@usn6:1e1 Is Not Null Is Not Null,`8esn`:$`1esn` Starts With $`4esn` Starts With $_usn3}..],`6esn`[$1000][`3esn`] Remove Extract(@usn6 In 010[`5esn`] Where $0[0Xa..$123456789]|_usn3[12.e12..][`5esn`..])._usn3,(usn1 :`5esn`{@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`:usn2]->(:`8esn`{``:$`1esn` =~999}).`5esn`? Optional Match (((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}))),`8esn`=(:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}) Union Merge `2esn`=(((`7esn` )<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2))) On Match Set #usn8 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) With Distinct 0Xa In $`6esn` As `2esn`,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null,12[0e0] As `5esn` Skip (`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}) =~[12 In $usn1 In 7] =~Filter(@usn5 In 's_str'[0..] Where 0.e0) Limit .e0[$`8esn`..][1000..]"), + octest:ct_string("Return Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],.12[..usn2][..12e12],$usn2[`5esn`..][01234567..] As #usn8 Limit $`2esn` Is Null With Distinct *,0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Order By #usn7[0.12..] Asc Skip Count(*)[9e12..12.0] Where `3esn`[..0X0123456789ABCDEF][..0x0] Union All Merge (((`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})<-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Merge ((`4esn` :_usn3{usn2:01[..0Xa][..12],`1esn`:999[..`1esn`][..07]})-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})) Return Distinct .e0 Starts With $@usn6 Starts With $7 As `1esn`,1.e1 Contains `6esn` Contains 0.e0 Order By `3esn`[$123456789..][$usn2..] Ascending Union All Return Distinct *,`3esn`[12..1000][\"d_str\"..1000],@usn6[123.654..][0x0..] As _usn3 Order By $999 In 1e1 Descending,True[..#usn8] Ascending,#usn8 Starts With $1000 Starts With $@usn5 Ascending Skip ``[..#usn8] Create `4esn`=((({#usn7:$`3esn` Ends With 01234567,_usn3:usn1 =~$`7esn`})-[`7esn`?:usn1|`4esn` *00..0Xa{`3esn`:usn1 In ``}]-(usn1 {usn1:$#usn7 Starts With 01234567 Starts With $0})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]}))),#usn8=(({usn2:`2esn`[..$_usn3]})) Merge ((@usn6 :`4esn`:`6esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->({usn1:$123456789 In 0.12})) On Match Set All(usn2 In 7[12] Where `2esn`[$12..]).#usn8? =[#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3],Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3|01 In $@usn6).`7esn`? ={`3esn`:.e1[..\"d_str\"][..$123456789]},[$`5esn` =~usn1,@usn6 Contains .12 Contains $usn1,999 In #usn8 In $``]._usn3 =[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )] On Match Set `2esn`+=`3esn`(Null[..010][..1000],$0 =~9e1 =~$`2esn`)[1.e1..][None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`])..],@usn5 =usn2 Ends With .e1 Ends With $`5esn`"), + octest:ct_string("With *,.0 Starts With `1esn` As #usn7,#usn8 =~.e0 Limit .0[.e12..]"), + octest:ct_string("Delete _usn3[12.e12..][`5esn`..] Remove [`7esn` Contains 9e0,010[`5esn`],0.e0 Starts With .0 Starts With 123456789].`8esn`?,All(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]).`7esn`!"), + octest:ct_string("Create ((`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})),(((@usn6 )<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null}))) With Distinct $12 Starts With $0 Starts With $`8esn`,9e1[usn1..0x0][12.e12..12.0] As usn1,$``[..\"d_str\"][..$#usn8] As `6esn` Where `4esn`[.12][$@usn6] Union All Merge @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) With *,``(Distinct 00 Ends With `` Ends With 12.e12,`6esn`[..Count ( * )][..$_usn4]) In (usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[`7esn`?:#usn8|:`3esn`{`6esn`:'s_str'[0..]}]->(#usn8 :`8esn`$#usn8) In Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1]) As `3esn` Order By $usn2[`5esn`..][01234567..] Asc,$`7esn`[.e1][12.0] Asc,$`5esn` =~usn1 Ascending Skip @usn6(0X7 In $#usn7,_usn4 Contains `` Contains 1.e1)[Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)..Any(#usn7 In 9e1[$`1esn`..] Where $`2esn` Ends With `6esn`)]"), + octest:ct_string("Remove {@usn5:123.654 Is Not Null}.`3esn`!,Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc).`1esn`! Unwind [@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Is Not Null As `1esn` Unwind [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Contains Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|@usn5 Contains #usn8 Contains 12.0) As usn1 Union Match `3esn`=(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0}),((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[_usn3?:`8esn` *1000..0X0123456789ABCDEF{@usn5:07 Is Not Null Is Not Null}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Union All Optional Match (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Where $`7esn`[.e1][12.0]"), + octest:ct_string("Optional Match usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})),((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Where $123456789[...12][..@usn6] Detach Delete `2esn`[$@usn6..][Null..],$1000 Starts With $`7esn` Union All Match `5esn`=(`3esn` :_usn4) Remove [$123456789 Starts With 0.12 Starts With Null].`4esn`!,(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`}).#usn8"), + octest:ct_string("With *,`2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Limit $1000[$@usn6][$_usn4] Delete $usn1 Contains 0,'s_str' Contains 12.e12 Contains $`4esn`,0xabc[$999..][$usn1..] Unwind `8esn`(Distinct #usn8 Is Not Null Is Not Null,`2esn` In 9e0 In 7) Starts With None(usn2 In 7[12] Where 123456789 =~12 =~'s_str') As @usn6 Union Remove Single(@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]).`7esn`,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|12.e12 Is Not Null Is Not Null).`2esn` Union All Remove [usn2 In 7[12] Where 12e12 =~$`7esn`|.e1[12.0..]].@usn5!"), + octest:ct_string("Return Distinct #usn8[`6esn`..][$``..] As `2esn` Merge `6esn`=(((_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})-[``?:_usn4]-(_usn4 :_usn4))) On Match Set Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]|$``[..\"d_str\"][..$#usn8]).@usn6 =[$usn1[`2esn`..][$`2esn`..]][(`3esn` :usn2)-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})..`2esn`(Distinct $@usn6 Is Not Null Is Not Null,Count ( * ) Ends With $123456789)],None(#usn8 In `7esn` Where ``[7.._usn3]).@usn6? =`6esn`,Any(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])._usn4! =`` Is Null On Match Set `4esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1 =(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Create ``=((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)),``=(@usn5 :`6esn`:_usn3{`7esn`:`8esn`[..$#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Union Delete 12.e12 Ends With $``,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null,{#usn7:usn1 In ``}[None(`3esn` In `2esn`[..01][..True])..Extract(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..])] Union All Delete 's_str' Starts With 1e1 Starts With $0 Return 010 Starts With $`` Starts With 0e0 As @usn5 Order By 123456789 =~True =~#usn7 Asc,True[..#usn8] Ascending Skip Extract(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0) Ends With `2esn`(Distinct 123.654[`4esn`..12],_usn3[`2esn`..0X7][0.e0..$`3esn`]) Ends With [`5esn` In 0X7 In $#usn7 Where 12e12 =~1e1|0e0 =~0Xa =~$999] Limit #usn7 =~9e12"), + octest:ct_string("Remove [_usn4 In 12e12 In 123456789 Where 00 In @usn6 In 0].#usn8! Merge `4esn`=(`4esn` :`7esn`)"), + octest:ct_string("Remove @usn5:`7esn` Merge `1esn`=((`2esn` {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})) On Match Set (:``:usn2{`4esn`:#usn7 Contains $0 Contains $usn2})<-[:`8esn` *0X7..]->(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2})<-[`2esn`? *01..123456789]-(`2esn` :@usn6).`8esn` =`7esn`[1e1] Union Optional Match @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) Where 0Xa[$`8esn`..][$_usn4..] Remove Extract(`3esn` In 9e1 Contains $999 Where `2esn`[_usn3]|123.654 In $`7esn`).usn2?,@usn5:_usn3 Remove `5esn`($`4esn` In 1.e1 In #usn7,0Xa[Count(*)..]).`5esn`,(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`).`3esn`,None(#usn8 In `7esn` Where 9e12[..1e1][..'s_str'])._usn4? Union All Return Distinct 9e0 =~Count(*) =~$0,123.654 In $`6esn`,0 Ends With Count(*) Ends With False Order By #usn7 Contains $0 Contains $usn2 Asc,.12[01][@usn5] Desc Limit 12 Ends With Count ( * )"), + octest:ct_string("Detach Delete 9e1 =~123456789 =~999 Create `1esn`=((@usn6 {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})-[:``{``:.0[$``..0X7]}]->(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})-[ *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})),`6esn`=((#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})) With Distinct *,@usn5 Contains #usn8 Contains 12.0 As `6esn`,{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] Skip 0.0 Is Null Is Null Where 07 Ends With 9e12 Ends With `2esn` Union All Return *,9e0[..123456789][..$`3esn`] As #usn7 Order By 999 In 0e0 Ascending Delete $7[01..$123456789][#usn7..12.0] Delete 0.0[usn1..]"), + octest:ct_string("With Distinct .e1[.e1..`1esn`] As @usn5,$`4esn`['s_str'..] As ``,{``:00 In @usn6 In 0}[(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})] As `5esn` Order By 0X0123456789ABCDEF Is Not Null Is Not Null Asc Skip 123.654 In $`7esn` Where 999 Starts With `2esn` Starts With .e1 Union Return *,'s_str' Starts With 9e0 Starts With usn2 As `8esn` Optional Match `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),(`2esn` $`6esn`) Where 7 =~`4esn` Optional Match `6esn`=(((_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})-[``?:_usn4]-(_usn4 :_usn4))) Union Remove All(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01).usn2! Create (((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})))"), + octest:ct_string("Return Distinct 12.e12[..$`6esn`] As `7esn`,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] As ``,1.e1 Contains `6esn` Contains 0.e0 Skip Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])] Merge usn2=((`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5)) On Create Set [$``[True]].#usn8! =[0.0 Is Not Null,$`4esn`[`8esn`],$123456789[12e12..9e0]] =~.e12 On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] Union Remove `8esn`:@usn5,Single(#usn7 In 9e0[$1000] Where $1000 Is Not Null).`5esn` Merge `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] On Match Set (`3esn` {usn2:$usn2[`4esn`..9e12]})<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1).#usn7! =_usn4 Starts With `` Starts With 1000,Extract(`3esn` In `2esn`[..01][..True] Where 0X7[..$`8esn`]|$#usn7 Starts With 01234567 Starts With $0).`5esn`! =@usn6(Count ( * ) In True In @usn5)[None(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)] Merge ((@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]->(_usn4 )-[#usn7?:`7esn`|:`2esn` *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})) On Create Set #usn7 =[$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1],@usn6+=0.12[$0..$usn2] On Create Set `4esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1 =(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..])"), + octest:ct_string("Unwind {`8esn`:usn2 =~7,@usn5:`6esn` Ends With _usn4 Ends With False} Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]] Ends With (_usn4 :_usn4)<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[ *..07{`6esn`:Count(*)[9e12..12.0]}]->(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) As _usn4 Optional Match (:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]}) Where 12e12 In $`5esn` Merge ((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})) On Create Set `2esn`+=0X0123456789ABCDEF In .12,`1esn` =$`7esn` In False In $`1esn` Union All Merge #usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Union All Return Distinct 9e0 =~Count(*) =~$0,123.654 In $`6esn`,0 Ends With Count(*) Ends With False Order By #usn7 Contains $0 Contains $usn2 Asc,.12[01][@usn5] Desc Limit 12 Ends With Count ( * )"), + octest:ct_string("Create (:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(`3esn` :_usn4{`3esn`:12[..0e0][...e1],`4esn`:.0 Is Null Is Null}) Match (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}))) Optional Match _usn4=(((`2esn` )-[?{_usn3:01[`8esn`..9e12][.12..0]}]->(`8esn` {@usn5:#usn7[..07],usn2:999 Contains 0 Contains $`5esn`})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]->(_usn3 :`5esn`))),((:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->({@usn6:12.e12 Contains #usn7 Contains $_usn4,usn2:$`5esn` =~$0 =~``})-[#usn7 *01..123456789]->(:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})) Union Merge ((:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[`2esn`?:usn1|`4esn` *00..0Xa]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[:`2esn`|`4esn` *1000..0X0123456789ABCDEF]-(usn2 :`6esn`:_usn3{@usn5:$0[0Xa..$123456789]})) On Match Set `1esn`:@usn5,All(@usn5 In 's_str'[0..] Where `2esn`[..01][..True]).`2esn`! =`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]],`2esn`+=$_usn4[01..][$_usn4..] On Match Set #usn7+=.e0[..9e12][..07],`4esn`(True[$_usn3..],$999[``]).usn2 =123456789 Is Null Is Null,@usn5 =01[07..][1.e1..] Remove Filter(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1).`5esn`! With Distinct $`1esn`[Null][True] As usn2,Count ( * )[9e12] Skip [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] Limit 0X7[0.12..] Where 0e0[01][$`7esn`] Union Unwind None(@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn2..][$123456789..]) =~{`2esn`:7[12],usn1:.12[0X7..][12e12..]} =~Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)|True[0xabc..01234567][$`8esn`..$@usn6]) As `6esn`"), + octest:ct_string("Remove [$@usn5 In 12e12 In 01,$_usn4[..$_usn4][..`7esn`]].`3esn`?,[$_usn4 =~$`1esn` =~`2esn`,#usn7[`8esn`..usn1][$999..`7esn`],$@usn5[..0xabc][..$`3esn`]].`8esn`! Union All Optional Match ((usn2 {`5esn`:$@usn5 In 12e12 In 01})-[`8esn`:#usn7|@usn5 *00..0Xa]-(_usn3 {usn1:0x0 Starts With $`6esn`})),((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[_usn3?:`8esn` *1000..0X0123456789ABCDEF{@usn5:07 Is Not Null Is Not Null}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Remove [12e12 =~1e1].`2esn`!"), + octest:ct_string("Detach Delete `8esn` Is Not Null Is Not Null,Filter(@usn5 In 9e0 Ends With $#usn8 Where 7 Ends With 01234567 Ends With 0Xa) Starts With {usn2:`2esn` =~.e12 =~0X0123456789ABCDEF,@usn6:`2esn` Is Null} Starts With [usn2[12e12..]['s_str'..]] Return *,[`8esn`[..$#usn8],1.e1 Starts With 9e12] Ends With [`6esn` In $`6esn`[``..][Count(*)..]|.e1[12.0..]] Ends With Any(usn2 In 7[12]),$`6esn` Starts With .e12 Starts With $`1esn` As @usn6 Skip $`5esn`[$`3esn`..] Limit Single(@usn6 In 010[`5esn`] Where Count(*)[9e12..12.0])[(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)][`7esn`]"), + octest:ct_string("Delete 9e0 Contains $12 Contains `3esn` Remove Filter(@usn6 In 010[`5esn`] Where 00[$usn1..]).usn2? Return @usn5[01][@usn5],9e0 Contains $12 Contains `3esn` As #usn8,{`4esn`:0.0[usn1..],`7esn`:12.0[$1000..][#usn7..]}[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7)..[usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]]][[12.e12[..$`6esn`],999 In #usn8 In $``]..Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1)] Order By Null Ends With _usn4 Ends With 0.0 Asc Skip (`1esn` $`4esn`)-[@usn6?:`7esn`|:`2esn`]-({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]}) =~Filter(`3esn` In 9e1 Contains $999 Where 12.0 Is Null Is Null) =~[0xabc In Null] Union Remove Any(#usn7 In 9e1[$`1esn`..] Where 999 In #usn8 In $``).`7esn` Merge (:`4esn`:`6esn`{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]-(:`6esn`:_usn3)<-[@usn5? *999..{usn1:.e12[$@usn6..00][01234567.._usn3],`1esn`:`7esn` Contains 9e0}]-({@usn6:999 Contains 0 Contains $`5esn`,#usn7:999[..`1esn`][..07]}) Delete Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null],9e1 =~123456789 =~999,.e12[$@usn6..00][01234567.._usn3] Union All Merge `2esn`=((#usn7 {#usn7:1.e1 Starts With 9e12})<-[ *..07{`5esn`:999 In 0e0}]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})) Merge usn1=(((`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]-(#usn8 :`6esn`:_usn3)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1))) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..]"), + octest:ct_string("Merge #usn7=(((:`7esn`{`2esn`:$`3esn` Ends With 01234567})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(`` :`3esn`{`8esn`:.e1[12.0..],`6esn`:0e0[999..$``]})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null}))) With Distinct .e1 In 0,Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])[[00[12..$`6esn`],$`4esn`['s_str'..]]..] Skip `3esn`[$123456789..][$usn2..] Where $@usn5[..$#usn7] Union All Detach Delete Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)[..`4esn`][..(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)] Return Distinct usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Skip $@usn6 Ends With `1esn` Limit 9e1 Ends With Count(*) Ends With $7"), + octest:ct_string("Detach Delete $`5esn`[\"d_str\"..],0.0 Is Not Null,$@usn6[$0..9e12][.e12..Null]"), + octest:ct_string("With *,$`7esn`[$_usn4][.e0],`5esn` Contains `1esn` Contains usn1 As `2esn` Order By `4esn` Contains 9e0 Desc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Is Not Null Asc Skip [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] Limit $@usn6 =~#usn7 =~True Where 12.0 Is Null Remove Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 7[0e0..]).`8esn`!,(_usn4 :`1esn`:_usn4)<-[?:`6esn`|:#usn8 *00..0Xa]-(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]}).@usn5! Match `4esn`=((@usn5 {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})),_usn3=(`8esn` :`2esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`6esn`]->({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})"), + octest:ct_string("Delete `2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Union All Detach Delete `4esn`[..$@usn6][..@usn6] Detach Delete @usn6[999..$_usn3][0.12..$@usn5] Union Create (`6esn` :@usn6)-[usn2?:`3esn`]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}),usn1=(#usn8 :``:usn2) Remove {``:.e12 Ends With 0Xa Ends With 0xabc}.usn2? Create (:`6esn`:_usn3{`8esn`:`4esn`[\"d_str\"]['s_str']})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0}),`4esn`=((({#usn7:$`3esn` Ends With 01234567,_usn3:usn1 =~$`7esn`})-[`7esn`?:usn1|`4esn` *00..0Xa{`3esn`:usn1 In ``}]-(usn1 {usn1:$#usn7 Starts With 01234567 Starts With $0})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})))"), + octest:ct_string("Detach Delete $999 In 12 In 1.e1,usn2 Is Not Null Union All Create (((usn2 {`5esn`:$@usn6 Ends With `1esn`})<-[`2esn`? *01..123456789]-(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]})<-[? *7..{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]-(#usn7 :``:usn2))) Union All Delete $@usn6 Ends With 12.e12 Ends With @usn5 Delete 0e0 =~0Xa =~$999"), + octest:ct_string("Create (`6esn` :`5esn`)-[_usn4?:`6esn`|:#usn8]->(#usn7 :`3esn`{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null}),`6esn`=((:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]})) Match ({_usn3:$12[9e0..$999],#usn7:0.0 Contains `3esn` Contains @usn5})-[#usn7?:`7esn`|:`2esn` *..07]-(#usn7 {#usn7:1.e1 Starts With 9e12}) Union Return Distinct *,$999[0Xa..][9e1..] As `4esn` Skip $usn2 Ends With $123456789 Limit @usn6 Contains .12 Contains $usn1 Create ((`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})),`5esn`=(((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Union All Remove None(_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1).``?,[@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2].`1esn` Return Distinct `1esn`[0Xa] As usn1,$`` Contains $`2esn` Contains $usn2 Order By $usn1 Ends With _usn4 Ends With `2esn` Descending,$``[..$#usn7][..`6esn`] Asc Skip 07[999]"), + octest:ct_string("Optional Match ((:`6esn`:_usn3{usn1:`3esn`[0x0..]})<-[? *1000..0X0123456789ABCDEF{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]->({`4esn`:.e1[..$`3esn`][..01]})<-[usn2?{``:$`1esn`[``][07]}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7})),(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) Where $`3esn` In $usn2 Union With $`3esn`[.e1][_usn4] As _usn4,usn2 =~$`` =~$`8esn`,9e12[9e1] Order By `1esn` Starts With 9e1 Desc"), + octest:ct_string("With [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) As usn2,$`3esn`[.e1][_usn4],All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As `4esn` Order By $`3esn` Ends With 01234567 Asc Skip @usn6 =~999 =~@usn5 Return {``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}[..Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)][..Any(#usn7 In $999 In 1e1 Where 07 In `6esn`)] As usn1,`8esn` Is Not Null Is Not Null As `4esn` Order By Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $#usn7[..$`4esn`][..01])[Extract(usn2 In 7[12] Where $`2esn` Ends With `6esn`)][`7esn`(@usn5 Contains #usn8 Contains 12.0)] Ascending Skip 01[..9e12] Merge (#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) On Match Set Extract(@usn5 In 's_str'[0..] Where @usn6 In .12 In `3esn`|$@usn6[00]).`8esn`? =9e0 Contains $12 Contains `3esn`,_usn4+=0x0[@usn5][$#usn8],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null On Match Set `1esn` =[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8])"), + octest:ct_string("Return Distinct .e0 Ends With $123456789 Ends With 0xabc Limit 's_str' Starts With 1e1 Starts With $0"), + octest:ct_string("Remove Filter(usn2 In 7[12] Where $#usn8[12.e12..`8esn`][12.0..0.0]).``,[`8esn` In 123456789 =~@usn6 Where ``[9e12][$999]].@usn5?,`4esn`:`7esn` Return Distinct 12.e12[..$`6esn`] As `7esn`,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] As ``,1.e1 Contains `6esn` Contains 0.e0 Skip Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])]"), + octest:ct_string("Unwind \"d_str\"[#usn8] As @usn5"), + octest:ct_string("Merge #usn7=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2) On Match Set `2esn` =`3esn`[..0X0123456789ABCDEF][..0x0] On Match Set _usn4(Distinct $#usn7 In $@usn5 In $`1esn`,usn2 =~usn1 =~Count ( * )).`8esn`! =.12 Starts With _usn3 Starts With $``,usn1 =[0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]][{usn2:$@usn6 Ends With `1esn`,_usn3:`7esn`}..][{@usn6:1e1 Is Not Null Is Not Null,`8esn`:$`1esn` Starts With $`4esn` Starts With $_usn3}..] Create `4esn`=((`` {#usn7:#usn8 Is Not Null Is Not Null})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})) Delete Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] Union All Create (`3esn` {usn2:$usn2[`4esn`..9e12]}),`4esn`=(usn1 :`7esn`) Detach Delete $usn2[0.e0] Create (:usn2)<-[? *01..123456789{`8esn`:usn2 =~7,@usn5:`6esn` Ends With _usn4 Ends With False}]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`4esn`:usn2]->(`3esn` :_usn4),`8esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Union All Merge ((_usn3 :usn2)) On Match Set Any(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0).`5esn`! =.e12 Ends With 0Xa Ends With 0xabc On Match Set `5esn`(Distinct .12[123.654..]).`3esn` =01234567 In 123456789 In 12,`6esn` =[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null"), + octest:ct_string("Return Distinct *,[1000[0e0][1e1],12.0 Is Null Is Null] Is Not Null Is Not Null Order By Extract(usn2 In 7[12] Where usn1 Starts With 00|`8esn` Contains Count(*) Contains $#usn7) Contains None(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[0.e0]) Contains Extract(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]|$`4esn`['s_str'..]) Asc,1.e1[$`3esn`][0Xa] Descending,`2esn` Starts With $`7esn` Ascending Skip $usn2[`2esn`..$`1esn`] Merge ((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})) On Create Set usn1 =`3esn`[123456789],`3esn` =9e1[.12][`7esn`] On Match Set All(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).`3esn`! =12.0[$12..$_usn4] Union Create ({@usn6:999 Contains 0 Contains $`5esn`,#usn7:999[..`1esn`][..07]}) Delete [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null),0x0 In `8esn` Unwind [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e1[usn1..0x0][12.e12..12.0]][..{usn2:0x0[0X7]}][..[12.e12 Is Not Null Is Not Null,$@usn6[.0..][0e0..]]] As _usn4 Union Unwind $`1esn`[``][07] As @usn5"), + octest:ct_string("Unwind #usn8(@usn6[999..$_usn3][0.12..$@usn5])[..`1esn`(Distinct `5esn`[..123.654][...e12],01 Contains usn2 Contains 0X0123456789ABCDEF)] As _usn3 Detach Delete $`1esn`[``][07],`2esn` Starts With .e1 Starts With 9e12,$`4esn` In 1.e1 In #usn7 Union All Create `8esn`=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2) Remove All(usn2 In False[$usn1][0x0] Where False Is Null).usn2 Unwind None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]) Is Null As `8esn` Union Detach Delete $@usn5 Ends With @usn5 Ends With 0xabc,_usn3 Ends With 7 Ends With $`1esn`,'s_str' Ends With `7esn` Ends With 010 With 0X7[`2esn`..] As `6esn`,Single(usn2 In False[$usn1][0x0])[All(@usn6 In 010[`5esn`] Where 00[1.e1..])][(:`2esn`{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`})-[?{`5esn`:$`2esn`[.0..][0.0..]}]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})-[`` *1000..0X0123456789ABCDEF]->(:_usn4{`8esn`:01234567[Null..$_usn3]})] Order By ``[$`3esn`] Asc,[1000[0e0][1e1],12.0 Is Null Is Null] Is Not Null Is Not Null Asc,.e0 =~$`7esn` =~0X0123456789ABCDEF Descending Skip [#usn8 In `7esn` Where .e0 Is Null Is Null] Ends With {usn1:$`4esn`[`6esn`..$12],`4esn`:usn1 Contains 010} Ends With (:``:usn2{``:True[$_usn3..]})<-[`2esn`? *01..123456789]-(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(`1esn` $`4esn`) Limit `5esn`[..123.654][...e12]"), + octest:ct_string("Create ({_usn3:$12[9e0..$999],#usn7:0.0 Contains `3esn` Contains @usn5})-[#usn7?:`7esn`|:`2esn` *..07]-(#usn7 {#usn7:1.e1 Starts With 9e12}) Return *,00[12..$`6esn`] As _usn4,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] As `3esn` Skip `8esn` Contains `2esn` Contains .0 Limit Null[.12..12e12] Union All Create (:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Remove `2esn`(.12[123.654..]).`4esn` Union All Remove {usn1:#usn8 =~.e0,_usn3:$_usn4 Is Null Is Null}.`1esn`,Single(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`).`3esn`?"), + octest:ct_string("With Distinct #usn8 Is Not Null,.e0[..9e12][..07] Skip usn1 Limit 1000 Contains [True Contains 0x0 Contains $_usn3,_usn3 Contains 9e12 Contains `8esn`] Contains [12.0 In 123.654 In _usn4] Where $``[..\"d_str\"][..$#usn8] Create ((usn1 :`5esn`{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF}))"), + octest:ct_string("Remove `5esn`:#usn8:`1esn`,[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|.e0 Contains $#usn8].@usn6!,[123.654 Starts With 0X7 Starts With $`4esn`,`6esn` Is Null Is Null].@usn5 Optional Match `6esn`=(((:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({#usn8:False Starts With 0X7 Starts With 01234567})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5))) With Distinct 0Xa Ends With $`3esn` Ends With $1000,Extract(@usn5 In 's_str'[0..] Where 12e12 Is Not Null) =~[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]],$#usn8[@usn6..] As `7esn` Order By (`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Desc,$usn1[Null][`8esn`] Desc,$`5esn` In `2esn` In `2esn` Asc Limit [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Ends With `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Ends With [$`1esn`[``][07],`7esn`] Where _usn3[$`1esn`..] Union Remove Filter(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1).usn2,Extract(#usn8 In `7esn` Where 9e1 Starts With Count ( * )|$@usn6[$`8esn`..][123456789..]).`6esn`!,_usn4:`7esn` Remove All(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7).`2esn`!,(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[ *01234567..]->(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`}).usn2,@usn6:_usn4"), + octest:ct_string("Remove #usn7(@usn6 Contains .12 Contains $usn1).usn1!,_usn3._usn4? Create usn2=(`6esn` {`2esn`:$`3esn` Ends With 01234567}) Union Create ((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})),@usn5=(({@usn5:$`5esn` Is Not Null Is Not Null})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})) Union All Delete 9e1[1.e1][$`8esn`],0X7[0.12..] Remove ({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->(_usn4 :@usn5).`8esn`?,All(`3esn` In `2esn`[..01][..True] Where #usn7 In 0.e0).`4esn`!,Extract(@usn5 In 9e0 Ends With $#usn8 Where `1esn` Is Not Null Is Not Null|Null[..0]).``?"), + octest:ct_string("Delete Extract(#usn7 In 9e0[$1000] Where 00[12..$`6esn`]|$@usn6 Ends With `1esn`) =~[7 =~`4esn`,7 =~`4esn`],@usn5[$`6esn`..][$999..],1e1 Ends With $`2esn` Merge `5esn`=(`2esn` :_usn3) On Create Set usn1 =`3esn`[123456789],`3esn` =9e1[.12][`7esn`]"), + octest:ct_string("Optional Match @usn5=(`5esn` :``:usn2)<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2) Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] On Create Set `6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn1+=`4esn`[$_usn3..$`7esn`] Union Unwind $1000[$@usn6][$_usn4] As `6esn`"), + octest:ct_string("Return *,$@usn6 Ends With `1esn` Order By $999 Is Null Is Null Descending,0e0 =~7 =~12.0 Asc Skip `` =~.12 Union All Remove Any(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null).@usn6!,[$0 In `3esn` In 07,123456789 Contains 0.0 Contains $@usn6].#usn8!"), + octest:ct_string("Optional Match (((:`6esn`:_usn3{@usn5:0.e0[..$7],@usn6:.12 In `8esn` In $#usn8})-[?*..]-(usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->(#usn8 :`8esn`))) Where True[..#usn8] Merge ({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) On Match Set `3esn`+=`2esn` =~.e12 =~0X0123456789ABCDEF,#usn8:usn1:`3esn`,``+=`2esn` Create (@usn5 :`1esn`:_usn4)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})-[? *01..123456789]-(_usn3 :`6esn`:_usn3) Union Merge #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})) On Match Set `5esn`(Distinct .12[123.654..]).`3esn` =01234567 In 123456789 In 12,`6esn` =[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null On Match Set usn2+=`6esn`[$`8esn`][9e1] Union All Unwind 12e12 In 123456789 As `7esn`"), + octest:ct_string("Create #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),((:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Delete Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa) In Extract(`3esn` In 9e1 Contains $999 Where 0e0 Starts With 999 Starts With `2esn`|9e1 Ends With Count(*) Ends With $7),Any(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) =~[#usn7 In 9e1[$`1esn`..] Where 0Xa Ends With $`3esn` Ends With $1000|$@usn5 Contains 's_str' Contains \"d_str\"] =~Extract(@usn6 In False Contains 0 Contains $`6esn` Where $`6esn` Starts With .e12 Starts With $`1esn`|12e12 In 123456789) Remove [12.0 Starts With .12 Starts With `6esn`,usn2 Contains $0 Contains .0,$#usn7 In $@usn5 In $`1esn`].`7esn`!,Single(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]).`3esn`? Union All Unwind $_usn4 =~$`1esn` =~`2esn` As #usn8 Create (((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),usn1=(`7esn` :`3esn`{`2esn`:999[123.654..$usn2][Count ( * )..0x0]})-[`2esn`?:usn1|`4esn` *00..0Xa]-(`4esn` :`4esn`:`6esn`) Merge ((`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})) On Match Set `1esn` =All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null"), + octest:ct_string("Delete 9e1[.12][`7esn`],$12[$usn1..][Count(*)..] Merge (((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}))) On Match Set _usn3:`7esn` Detach Delete 7 Is Not Null,$`1esn`[Count ( * )],`6esn`[`5esn`..00] Union All Detach Delete $123456789[.0..],All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] Union All Remove Filter(@usn6 In 010[`5esn`] Where 00[$usn1..]).usn2?"), + octest:ct_string("Merge ((#usn7 :_usn3)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]}))"), + octest:ct_string("Remove _usn4(Distinct 0X0123456789ABCDEF Ends With 01 Ends With ``,$`3esn`[..0xabc][..$7]).`2esn`,`7esn`(`3esn`[0X0123456789ABCDEF..][07..],usn1 =~$`7esn`).usn1!,Filter(#usn8 In `7esn` Where $`3esn`[..0X0123456789ABCDEF][..7]).@usn5? Unwind $@usn5[`1esn`..][$999..] As `8esn` Union Match _usn3=((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7 *01..123456789]->(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})),``=((:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[`5esn`:#usn7|@usn5]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) Where 0x0[Count(*)..@usn6][Count(*)..0Xa] Remove Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12).`5esn`?,_usn3(0[$`5esn`],`2esn`[..$_usn4][...12]).`2esn`?,(usn1 :@usn6)<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})<-[?{`5esn`:123.654[$0..0X7][Null..#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]}]-(usn2 :`7esn`).#usn8 Create _usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Union Unwind usn2[12e12..]['s_str'..] As @usn6"), + octest:ct_string("Create (`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}),(`8esn` {usn1:0e0 =~7 =~12.0,`7esn`:usn2 Starts With .0})<-[:_usn4]->(_usn4 {usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Union Return *,[`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] As `4esn`,$1000[0X0123456789ABCDEF][12] Skip $999[.e12][.0] Limit `` Starts With $123456789 With Distinct {usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}[[@usn5 In 9e0 Ends With $#usn8 Where 00 Contains Count ( * ) Contains 0x0]],(`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Order By `3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] Desc,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1) Asc,$@usn5[..$#usn7] Descending Skip #usn8 Is Not Null Is Not Null"), + octest:ct_string("With Distinct *,0x0[``..] As `2esn` Order By 12.e12 Ends With $`` Descending Skip 's_str' Starts With 9e0 Starts With usn2 Limit None(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])[Any(`3esn` In `2esn`[..01][..True] Where $`3esn`[..0xabc][..$7])][$#usn7] Where `1esn` Starts With 0xabc Starts With $usn2 Create ((#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})),usn2=((_usn3 :_usn4)-[`3esn`:`2esn`|`4esn`]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[:@usn6|:`7esn` *01..123456789]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07})) Remove Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null).`7esn`?,(_usn4 :_usn4)<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[ *..07{`6esn`:Count(*)[9e12..12.0]}]->(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}).``?"), + octest:ct_string("Return Distinct Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],010 Is Null Is Null As #usn8,All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] As `8esn` Order By $_usn3[_usn4..] Asc,0.12 Is Null Is Null Desc,`6esn` Ends With _usn4 Ends With False Ascending Skip 1.e1 =~.12 Limit `1esn`[$@usn6][07] Return $_usn4 Is Null Is Null,usn2 Starts With .0 Order By 9e1[$#usn8][$1000] Descending Limit #usn7 =~9e12"), + octest:ct_string("Return Distinct [#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]][Any(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..])..Single(usn2 In False[$usn1][0x0] Where 9e1 Is Not Null Is Not Null)],Extract(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|.e1[usn2..$_usn3][.0..$#usn7]) Skip 1.e1 Is Null Is Null Union All Merge ((usn1 {_usn4:#usn8 Is Not Null})<-[:`8esn` *0X7..]->(:`8esn`{@usn5:usn2 Ends With .e1 Ends With $`5esn`})<-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]->({`8esn`:usn2 Starts With .0,@usn5:Count(*) In 12 In `6esn`})) On Match Set @usn5 =$`2esn` Is Null,usn2+=`4esn` Starts With 0e0,``+={_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}[[$`2esn` =~9e12,`6esn` Is Null Is Null,usn2 Is Not Null]..[$`1esn` Starts With $`4esn` Starts With $_usn3]] Optional Match _usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Where 0.e0 Starts With .0 Starts With 123456789 Delete 999[..`1esn`][..07],0x0[@usn5][$#usn8] Union All Merge ((:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})) On Create Set usn1 =[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]][Any(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..])..Single(usn2 In False[$usn1][0x0] Where 9e1 Is Not Null Is Not Null)],`6esn` =12.e12 =~0X0123456789ABCDEF =~1.e1 Detach Delete 9e1[_usn3] Return Distinct $#usn7[..9e0][..123.654] As @usn6 Order By Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null] Desc,None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])[..[_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4]] Desc,None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] Desc Limit `6esn`"), + octest:ct_string("Delete 123.654 In $`7esn` Return Distinct *,12.e12 Contains `6esn`,12[``...e12] As `6esn` Order By 's_str' Is Not Null Descending,123.654[`4esn`..12] Asc,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) Ascending"), + octest:ct_string("Return Distinct `1esn`[0Xa] As usn1,$`` Contains $`2esn` Contains $usn2 Order By $usn1 Ends With _usn4 Ends With `2esn` Descending,$``[..$#usn7][..`6esn`] Asc Skip 07[999] Union Match ((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4))"), + octest:ct_string("Remove All(usn2 In 7[12] Where #usn8 Is Null Is Null).`5esn` Optional Match ``=(((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),((({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:#usn7|@usn5*..]-(`3esn` :usn2{`6esn`:#usn8 Is Null})<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Where $1000 Starts With $`3esn` Starts With 0.e0 Union All Remove (:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})-[`5esn`?:`6esn`|:#usn8{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]-(usn1 :`5esn`{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})<-[:`1esn`|`3esn`{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(@usn5 :`2esn`{`8esn`:0Xa[$`8esn`..][$_usn4..]}).``!,Any(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]).`2esn`!,`1esn`:`6esn`:_usn3 With Distinct [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) As usn2,#usn8 =~0.e0,$usn1 Limit 00 In @usn6 In 0 Where #usn8 =~.e0 Union Detach Delete 9e1[_usn3] Delete [usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null,$`2esn` Starts With .0 Starts With `1esn`,0x0[0.0] Optional Match _usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Where 0.e0 Starts With .0 Starts With 123456789"), + octest:ct_string("Return Distinct *,All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],12 In $usn1 In 7 As `8esn` Skip None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1) Limit $@usn5 Starts With .e1 Optional Match ((@usn5 {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})) Union All Unwind [#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null) As `3esn`"), + octest:ct_string("Merge ((#usn8 :`8esn`$#usn8)) Optional Match ((`1esn` {_usn4:`8esn` Is Null})),`2esn`=(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Union Return *,$`2esn` Ends With `6esn` As usn1,`2esn` Is Null As `` Order By `6esn` =~$_usn4 =~7 Asc Skip `5esn`[..True][..0.e0] With Distinct 0e0[01][$`7esn`],'s_str'[0..] As `4esn`,Filter(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) =~{#usn7:1000[12e12][`5esn`]} As _usn4 Skip 0x0[$0][7] Limit None(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])[Any(`3esn` In `2esn`[..01][..True] Where $`3esn`[..0xabc][..$7])][$#usn7] Where $`7esn`[$_usn4][.e0] Optional Match ((:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})),(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Where _usn3 Starts With 12e12 Starts With `5esn` Union All Return Distinct *,123.654[`4esn`..12] Order By 0.0[$usn2..] Asc,$7 Starts With 12.e12 Starts With $@usn6 Asc Limit $``[..\"d_str\"][..$#usn8] Merge `8esn`=(((@usn6 :`4esn`:`6esn`)<-[?{``:'s_str' Is Not Null,`8esn`:$`2esn` Is Null}]->(`1esn` :`2esn`)-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}))) On Match Set `8esn` ={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},None(@usn5 In 's_str'[0..] Where 1000[..`2esn`][..$@usn6]).`2esn`? =0X0123456789ABCDEF Is Not Null Is Not Null"), + octest:ct_string("Detach Delete #usn8[`8esn`..],$`5esn` =~usn1 Merge (`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) Create @usn5=(({`8esn`:`5esn` Contains #usn7 Contains 9e12})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`1esn` :`3esn`{#usn8:$usn2[0.e0],`8esn`:$`4esn`['s_str'..]})) Union All Merge _usn4=(`1esn` {@usn5:`2esn` Starts With $`4esn`}) On Match Set @usn5+=$0[123.654..0.e0],Any(`8esn` In 123456789 =~@usn6 Where .e1 =~_usn4 =~_usn4)._usn3? =01[..$`8esn`][..9e0],usn1 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) Match _usn4=(((:#usn7:`5esn`{`4esn`:$``[..\"d_str\"][..$#usn8]})<-[`6esn`? *00..0Xa]->(:#usn8:`1esn`$`7esn`)-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]}))) Remove Filter(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null).`7esn`,@usn6:``:usn2,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 07 Is Not Null Is Not Null).`6esn`?"), + octest:ct_string("Create ((`4esn` :`4esn`:`6esn`)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Optional Match (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Return *,$`5esn` Is Not Null,usn2 Contains $0 Contains .0 Order By 0.e0[$`4esn`..`2esn`] Descending,$123456789[12e12..9e0] Asc,$_usn3[_usn4..] Asc Skip $`7esn`[$_usn4][.e0] Limit Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..] Union All Match #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) Remove Extract(`6esn` In $`6esn`[``..][Count(*)..] Where False Contains 0 Contains $`6esn`|0X7['s_str'..][01..]).#usn8,{#usn7:.e0 Is Null Is Null,#usn7:0.0 Is Null Is Null}.#usn8!,[$@usn5 Ends With @usn5 Ends With 0xabc,12.0 In 123.654 In _usn4].`3esn`? Create ((`4esn` :_usn3{usn2:01[..0Xa][..12],`1esn`:999[..`1esn`][..07]})-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})),((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Union Detach Delete $usn2[0.e0]"), + octest:ct_string("Match ((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}))"), + octest:ct_string("Merge @usn5=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}) On Match Set `4esn` =$#usn8 Ends With `3esn` Ends With $`` On Create Set Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null).`` =01 In $@usn6,@usn5+=$@usn5 Ends With @usn5 Ends With 0xabc,Extract(`3esn` In 9e1 Contains $999 Where usn1[False..`5esn`][$1000..$12]).`7esn` =.e0[9e12..] Remove Single(#usn7 In 9e1[$`1esn`..] Where `3esn`[7..0.e0][0.0..123456789]).`7esn`?"), + octest:ct_string("Detach Delete $@usn6[_usn3..][$999..],$usn2 =~0.e0 =~@usn6 Unwind None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null As `4esn` Union Create `8esn`=(:#usn8:`1esn`{usn2:$`7esn`[.e1][12.0],``:$`1esn` Contains 1e1 Contains @usn6})-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(_usn3 :usn1:`3esn`)"), + octest:ct_string("Create ((:@usn5{`5esn`:`4esn` Starts With 0e0})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]})) Create (#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}),`8esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`))"), + octest:ct_string("Unwind $usn1 As `5esn` Union All Remove All(#usn7 In 9e0[$1000] Where 12e12 Starts With $0 Starts With $`2esn`).`8esn`?,``:@usn5,Single(`8esn` In 123456789 =~@usn6 Where ``[9e12][$999])._usn4! With Distinct *,0.e0 Is Not Null Is Not Null As _usn4 Order By $_usn3 Is Not Null Desc,[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)] Desc,Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Ascending Limit 1.e1[..123456789][..999] Where _usn4 Is Not Null Union Create `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),`8esn`=((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[``:`5esn`|:usn2{`5esn`:_usn4[0]}]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})) Optional Match (`8esn` {usn1:0e0 =~7 =~12.0,`7esn`:usn2 Starts With .0})<-[:_usn4]->(_usn4 {usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}),(@usn5 :`1esn`:_usn4)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})-[? *01..123456789]-(_usn3 :`6esn`:_usn3) Where 12.0 In 123.654 In _usn4 With $usn1,`1esn` Contains $999 Contains 0.0 As @usn6,$`6esn`[0e0..][010..] Order By 0.0 Ends With $`7esn` Descending,`3esn`[7..0.e0][0.0..123456789] Asc Where ``[9e12][$999]"), + octest:ct_string("Remove None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where `2esn` Starts With .e1 Starts With 9e12).usn1?"), + octest:ct_string("Delete 7 Is Not Null Match `5esn`=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']}),`7esn`=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}) Return Distinct .e1[.e1..`1esn`] As @usn5,$`4esn`['s_str'..] As ``,{``:00 In @usn6 In 0}[(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})] As `5esn` Skip .e1[..$`3esn`][..01] Union All Delete [$#usn7 Ends With 's_str' Ends With 0X7] Starts With (usn1 :@usn6)<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}) Starts With [`5esn` In `7esn`[$usn2..][$123456789..] Where $`1esn` Starts With Count(*)] Union All With Distinct .e1 In 0,Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])[[00[12..$`6esn`],$`4esn`['s_str'..]]..] Skip `3esn`[$123456789..][$usn2..] Where $@usn5[..$#usn7] Return *,Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) Contains [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where .0 Is Null Is Null|`3esn`[0x0..]] Contains [999[12.e12],#usn8 Is Null Is Null,1.e1 =~$_usn4] As `1esn`,12e12[12.0][False] Skip $`4esn`[`4esn`][Count(*)]"), + octest:ct_string("Remove {`1esn`:0.e0}.usn1,`7esn`(`7esn` Contains 9e0,0.12[$0..$usn2]).`4esn`? With 0x0[0.0] As ``,Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) Contains [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where .0 Is Null Is Null|`3esn`[0x0..]] Contains [999[12.e12],#usn8 Is Null Is Null,1.e1 =~$_usn4] As `1esn` Order By [#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Asc,usn2[12.e12..] Ascending,$@usn6 Is Not Null Is Not Null Desc Skip `5esn` Contains 1.e1 Contains .e12 Limit `7esn`[0x0][$`4esn`] Where `5esn` Contains #usn7 Contains 9e12 Union All Remove [0X0123456789ABCDEF Ends With 01 Ends With ``,$`4esn` Contains .e0 Contains 0Xa].`6esn` With Distinct $usn2 =~0.e0 =~@usn6 As _usn4,9e12[..1e1][..'s_str'] As @usn5 Order By 0X0123456789ABCDEF Is Not Null Is Not Null Asc,0X0123456789ABCDEF Is Not Null Is Not Null Asc Limit $7 In $usn1 In 999 Where 12.e12 Is Not Null Is Not Null Union All With Distinct *,.0 Contains .e12 Contains 0,1e1 Is Null Is Null As usn2 Detach Delete 01[..0Xa][..12],$`4esn`[..$`8esn`][..Null] Unwind 07[False] As @usn5"), + octest:ct_string("Delete $`1esn` =~999,`5esn` Contains `5esn` Contains $_usn3,$1000 Is Not Null Return Distinct *,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] As `1esn` Union All Create @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Unwind 010 Starts With 0 Starts With 0.0 As `5esn` Unwind 999[..`1esn`][..07] As `8esn` Union Create `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})),usn2=(#usn7 {_usn4:1.e1[`8esn`]})<-[usn2{`2esn`:$12 Starts With $usn1}]->(:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]})"), + octest:ct_string("With `3esn`[7..0.e0][0.0..123456789] As _usn4,$usn2[0.e0] As _usn3 Limit 9e1 Contains $999 Where @usn5 Is Not Null Unwind [@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] As #usn8"), + octest:ct_string("Create `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),({`1esn`:1.e1[`8esn`]})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`) Union Unwind 1.e1 Starts With 9e12 As `8esn` Unwind `5esn`[Count ( * )] As @usn6"), + octest:ct_string("Return 01[$`7esn`..$@usn6] As `2esn`,(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]} Order By `4esn` Contains 9e0 Desc,$12 =~0X7 =~0x0 Ascending,Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 1.e1 Ends With $_usn4 Ends With #usn7|$7 Starts With 12.e12 Starts With $@usn6) Starts With (:``:usn2)<-[`2esn`:`8esn`{`7esn`:$`4esn` Is Null Is Null}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]}) Starts With [01234567[Null..$_usn3],0[1e1][$usn1],False[..$`5esn`][..1e1]] Descending Limit None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]) Is Null Merge `7esn`=(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]}) On Match Set @usn6 =.e0 Is Null Is Null,_usn4(#usn7 Starts With $123456789 Starts With 12e12).`7esn`! =Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 1.e1 Ends With $_usn4 Ends With #usn7|$7 Starts With 12.e12 Starts With $@usn6) Starts With (:``:usn2)<-[`2esn`:`8esn`{`7esn`:$`4esn` Is Null Is Null}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]}) Starts With [01234567[Null..$_usn3],0[1e1][$usn1],False[..$`5esn`][..1e1]] On Match Set `2esn`+=Any(`6esn` In $`6esn`[``..][Count(*)..] Where 1e1 Ends With $`7esn` Ends With .0) Is Not Null Merge `2esn`=(:#usn8:`1esn`$`7esn`) On Match Set `8esn`+=`2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..] Union All Return Distinct *,[usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null As #usn8 Order By @usn5(Distinct) =~[_usn3[`5esn`..][usn2..],$#usn7 =~`2esn`] =~1.e1 Ascending Skip (:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] Limit 0Xa[010..$0][$`2esn`..999]"), + octest:ct_string("Merge (`6esn` :@usn6)-[usn2?:`3esn`]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) On Create Set #usn8 =$_usn4[$`6esn`..] Match #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) Union With 's_str' Order By $12[9e0..$999] Asc,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip #usn8[`8esn`..] Limit .12 In `8esn` In $#usn8 Where 12.e12 Contains #usn7 Contains $_usn4 Detach Delete 9e0[Count(*)..0.12][$`1esn`..12.0] Return *,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Is Not Null As `3esn`,$12 Starts With $0 Starts With $`8esn` As `3esn` Limit {_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null"), + octest:ct_string("Delete 's_str' In $_usn4,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null,12.0 Is Null Union Detach Delete All(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`])[None(`5esn` In 0X7 In $#usn7 Where 's_str' Starts With 1e1 Starts With $0)..(_usn3 :`7esn`)<-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]-(:`6esn`:_usn3)],0Xa[..Count ( * )][..$123456789],`2esn` Starts With .e1 Starts With 9e12 Unwind All(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7) Contains `2esn`(Distinct 0x0[0.0],0Xa =~False =~@usn5) Contains Single(#usn7 In $999 In 1e1 Where $@usn6 =~#usn7 =~True) As `8esn` Merge ``=(((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[`2esn`? *01234567..]->(:`2esn`)-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->({`7esn`:999 In 0e0}))) Union Merge (@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`}) On Create Set All(usn2 In 7[12] Where `2esn`[$12..]).#usn8? =[#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3],Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3|01 In $@usn6).`7esn`? ={`3esn`:.e1[..\"d_str\"][..$123456789]},[$`5esn` =~usn1,@usn6 Contains .12 Contains $usn1,999 In #usn8 In $``]._usn3 =[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )] On Match Set `5esn` =0.e0[0X0123456789ABCDEF..] Optional Match @usn6=(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})-[:@usn5|_usn3 *00..0Xa]-(:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(_usn4 :@usn5)"), + octest:ct_string("Create (_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1}) Union All Create (`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]}),usn1=(((`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]-(#usn8 :`6esn`:_usn3)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1))) Merge #usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) On Create Set @usn6+=$`1esn` =~1e1 On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Union Return 9e1 Ends With Count(*) Ends With $7 As `6esn` Limit _usn3 Contains 9e12 Contains `8esn` Remove [999 Is Not Null Is Not Null,123.654 In $`7esn`].`6esn`,[#usn7 In 9e1[$`1esn`..] Where $`7esn`[$_usn4][.e0]|.0[..'s_str'][..01234567]].usn1?,[`6esn` In $`6esn`[``..][Count(*)..]|.e12 Starts With $12 Starts With .e12].`7esn`! Optional Match _usn3=(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`}),`5esn`=((`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})) Where $`7esn`"), + octest:ct_string("Return Distinct *,$`3esn`[.e1][_usn4] Order By 12[None(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)..`5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12])][`5esn`(`2esn`[..01][..True])..(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})<-[? *7..]-(#usn7 :``:usn2)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})] Descending With Distinct usn2 =~$`` =~$`8esn` As `2esn`,'s_str'[0x0..1.e1] As `6esn`,$`5esn`[\"d_str\"..] As `5esn` Limit 01[07..][1.e1..] Union All Remove None(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null).`3esn`? Unwind \"d_str\"[#usn8] As @usn5 Union All Create _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),(((`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})<-[:`2esn`|`4esn` *0X0123456789ABCDEF..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(@usn6 :`2esn`{`4esn`:$999[0Xa..][9e1..]}))) Merge #usn8=({#usn7:12e12 In $`5esn`}) On Create Set @usn6+=None(`3esn` In `2esn`[..01][..True] Where usn1 In ``)[None(usn2 In 7[12] Where 12e12 =~$`7esn`)..],Single(#usn7 In 9e1[$`1esn`..] Where Count ( * ) In 0.12).@usn6? =7[0e0..] On Create Set ``+=$``[7],[@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1|$`4esn` Contains .e0 Contains 0Xa].`` =$`7esn`[123456789..$1000][Count ( * )..$7]"), + octest:ct_string("Remove `2esn`(.12[123.654..]).`4esn` Remove Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`).`8esn` Merge `2esn`=(((`7esn` )<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2))) On Match Set #usn8 =[`5esn` Contains `1esn` Contains usn1,$@usn5 Ends With @usn5 Ends With 0xabc] Is Null Is Null,`8esn` =[$@usn6 =~#usn7 =~True,$`1esn` Contains 1e1 Contains @usn6,9e1[..123456789]] Is Null On Create Set @usn6+=$#usn7 Ends With 's_str' Ends With 0X7,`6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn2 =$@usn5 Ends With @usn5 Ends With 0xabc"), + octest:ct_string("Merge `8esn`=((#usn8 :_usn3)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)) Remove `6esn`(Distinct 0x0 Starts With $`6esn`,.e12[@usn6..][010..]).`8esn`!,[@usn6 In 010[`5esn`] Where 1.e1[$usn1]|_usn3[0x0]].usn2? Union Create `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),({_usn3:@usn6 Contains .12 Contains $usn1}) Return Distinct *,12[None(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)..`5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12])][`5esn`(`2esn`[..01][..True])..(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})<-[? *7..]-(#usn7 :``:usn2)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})] As usn1,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) As `7esn`"), + octest:ct_string("Remove `6esn`(Distinct 9e1 Contains $999,_usn4 Is Not Null Is Not Null).`4esn`?,None(`8esn` In 123456789 =~@usn6 Where $usn1)._usn3! With Distinct $usn2 =~0.e0 =~@usn6 As _usn4,9e12[..1e1][..'s_str'] As @usn5 Order By 0X0123456789ABCDEF Is Not Null Is Not Null Asc,0X0123456789ABCDEF Is Not Null Is Not Null Asc Limit $7 In $usn1 In 999 Where 12.e12 Is Not Null Is Not Null"), + octest:ct_string("Unwind 0x0[12e12..$`7esn`] As `7esn` Union All Remove (usn1 :@usn6)<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}).@usn5! Union All Create @usn5=((({usn2:`2esn`[..$_usn3]})-[``?:_usn4]-(_usn4 :_usn4)<-[`6esn`? *..010{usn2:Null[..0]}]-(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0})))"), + octest:ct_string("Merge ((#usn7 :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) On Match Set All(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True]).`1esn`? =$usn2[`2esn`..$`1esn`],{usn1:#usn8 =~.e0,_usn3:$_usn4 Is Null Is Null}.`1esn` =$`7esn`[.e1][12.0] Remove usn2(Distinct _usn3 Starts With 12e12 Starts With `5esn`)._usn3!,{`6esn`:$`2esn` Starts With .0 Starts With `1esn`}.#usn7!,{`6esn`:Null =~`6esn`}._usn3! Union Delete [`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``|\"d_str\" Is Not Null] =~All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) =~[01 Ends With 0Xa Ends With 0X7],[#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Remove Any(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]).@usn6?,@usn5(Distinct Count ( * ) Ends With $123456789).`6esn`? Union All With 12.e12[..$`6esn`] As `7esn`,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] As ``,1.e1 Contains `6esn` Contains 0.e0 Skip Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])] Where 999 Contains $1000 Detach Delete Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null) Is Not Null Is Not Null,010 Starts With $`` Starts With 0e0"), + octest:ct_string("Match ((#usn7 :_usn3$usn1)-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(`3esn` :usn2{`6esn`:#usn8 Is Null})),`4esn`=({`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}) Where .e0 Match (((`6esn` :#usn7:`5esn`)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(_usn4 :#usn7:`5esn`))),`1esn`=(`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) Detach Delete False[..$`5esn`][..1e1],`4esn` Contains 9e0,12[$`5esn`..][False..] Union All Delete 0xabc =~@usn5 =~$usn1,[$usn1 Ends With _usn4 Ends With `2esn`][@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)..[#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1]][Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..])..Extract(#usn7 In 9e1[$`1esn`..] Where $999[``])],1000[$7..][_usn4..] With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Order By 1.e1 In 1000 In _usn3 Desc,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Descending,123.654 Is Null Is Null Asc Where _usn4[`7esn`] Union All Optional Match ((`` {#usn7:#usn8 Is Not Null Is Not Null})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`2esn` :@usn5)<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Remove {`6esn`:Null =~`6esn`}._usn3!,[usn2 In False[$usn1][0x0] Where `4esn` Starts With 0e0].`6esn`!,[010[`5esn`],0Xa[..Count ( * )][..$123456789]]._usn3"), + octest:ct_string("Detach Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),{@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Delete 9e1[.12][`7esn`],$12[$usn1..][Count(*)..] Union Merge ((:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Detach Delete All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[usn2(Distinct #usn7 Contains $0 Contains $usn2,0.e0)..]"), + octest:ct_string("Unwind _usn3[`5esn`..][usn2..] As #usn7 Unwind $1000 Starts With $`3esn` Starts With 0.e0 As usn1 Union Remove All(#usn7 In 9e1[$`1esn`..] Where Count ( * ) In 0.12).#usn7?,All(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`).#usn8,{`4esn`:$999[0Xa..][9e1..]}.`3esn` Detach Delete $123456789[.0..],All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] Union Match (((@usn6 )<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null}))) Remove {`4esn`:$_usn4 Starts With $1000 Starts With 12,`5esn`:0 Ends With 12.e12 Ends With usn2}.``?,Single(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)._usn4?"), + octest:ct_string("Create ((#usn7 {`6esn`:$`2esn` Contains Count(*)})-[?:_usn4]->(`2esn` :usn2)) Detach Delete @usn6[..$@usn5] Create usn1=((#usn8 :_usn3)<-[? *12..{#usn7:`6esn` Ends With _usn4 Ends With False,usn1:1000[12e12][`5esn`]}]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07})),`1esn`=((`6esn` {`3esn`:$`2esn`[0..123456789][``..`1esn`],`7esn`:$0[0Xa..$123456789]})<-[? *00..0Xa]->(usn2 :@usn5)-[?:`2esn`|`4esn` *0Xa{#usn7:1.e1 Starts With 9e12}]-(:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) Union All With Distinct `2esn`[$usn2][12.0],Single(#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6])[Filter(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])..] As _usn4 Limit `4esn` In 010"), + octest:ct_string("Delete $123456789[0X0123456789ABCDEF],'s_str'[0..] Union Create usn2=((#usn7 {`8esn`:`7esn` In 010 In usn1})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})),@usn5=(:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']})"), + octest:ct_string("Optional Match #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Match #usn8=((`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5))"), + octest:ct_string("Unwind $12 Starts With $usn1 As `4esn` Return Distinct *,@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])],[#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) As usn2 Order By $7 Starts With 12.e12 Starts With $@usn6 Asc,12e12 In 123456789 Asc Skip [0.0 Is Not Null,$`4esn`[`8esn`],$123456789[12e12..9e0]] =~.e12 Limit _usn4 Ends With _usn4 Ends With 9e0 Merge ``=((`4esn` :`4esn`:`6esn`)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})) Union Detach Delete $123456789[12e12..9e0] Remove [12.0 Starts With .12 Starts With `6esn`,usn2 Contains $0 Contains .0,$#usn7 In $@usn5 In $`1esn`].`7esn`!,Single(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]).`3esn`? Union Unwind .0[.e12..] As usn1 Remove `5esn`($`4esn` In 1.e1 In #usn7,0Xa[Count(*)..]).`2esn`,[$0[123.654..0.e0],01234567[Null..$_usn3]]._usn4!,{usn1:#usn8 =~.e0,_usn3:$_usn4 Is Null Is Null}.`1esn`"), + octest:ct_string("Detach Delete (`4esn` :#usn7:`5esn`{_usn4:0Xa Ends With $`3esn` Ends With $1000})-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})[[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]|`1esn`[0.12..][@usn6..]]..][{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}..],07 Contains `3esn` Contains `7esn`,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)"), + octest:ct_string("With `2esn`[$usn2][12.0],Single(#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6])[Filter(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])..] As _usn4 Order By $`7esn`[..@usn6] Ascending Limit [`2esn` Is Null] Is Null Is Null Where usn1[...e12][..1.e1] Union All Unwind 0.12[$0..$usn2] As `8esn` Remove {_usn3:usn2 Ends With .e1 Ends With $`5esn`}.#usn8,(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})<-[@usn5:_usn4 *0x0..]->(:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)._usn3 Return 0X7[`2esn`..] Order By 0[@usn5..$#usn7] Ascending"), + octest:ct_string("Merge (`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) Return *,`6esn` =~Null As `4esn`,.e0 Starts With $@usn6 Starts With $7 As `5esn` Order By [`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]] In (`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(:#usn7:`5esn`)-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:#usn8:`1esn`$`7esn`) In {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]} Asc,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] Desc Skip $`3esn`[$_usn4..0Xa] Union All Optional Match #usn8=(`5esn` :`7esn`)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1)<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}),usn2=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) Remove Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|@usn5 Contains 9e0)._usn4? With Distinct *,`3esn`[...e1] Where 9e0 Contains $12 Contains `3esn` Union All With Distinct 0.e0['s_str'..][01234567..] As `1esn`,None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,.0[$``..0X7] Skip usn2 =~$`` =~$`8esn` With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Where 12.e12 Ends With $`` Unwind (@usn6 :`8esn`)<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`}) Ends With #usn8(Distinct 12.e12 Contains #usn7 Contains $_usn4,01[`3esn`..][Count(*)..]) Ends With [`5esn`[..True][..0.e0],12 In $usn1 In 7,$`8esn`[123456789..][$@usn5..]] As `6esn`"), + octest:ct_string("With Distinct 1.e1[$`3esn`][0Xa] As @usn5 Order By (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Ascending,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null Descending,9e12 =~@usn6 Asc Skip usn1[$@usn5] Where $@usn6[00] Union Delete All(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0)[(:#usn7:`5esn`)<-[#usn8? *0Xa]-(`5esn` :`5esn`{#usn7:``[$`3esn`]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc})..],9e1[`1esn`..0][999..1e1],Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5) Contains [`8esn` In 123456789 =~@usn6 Where .e12[@usn6..][010..]|Count(*) Is Not Null Is Not Null] Contains ({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})"), + octest:ct_string("Unwind Count(*) In #usn8 In \"d_str\" As `6esn` Match (`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Where $@usn6 Ends With 12.e12 Ends With @usn5 Union All Remove [`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa].`1esn`? Create (((:_usn4{`8esn`:01234567[Null..$_usn3]})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->(`5esn` :`3esn`{``:`` Is Null,`8esn`:$@usn6[$0..9e12][.e12..Null]})<-[`7esn`:`4esn`|@usn5 *12..]->({`4esn`:.e1[..$`3esn`][..01]}))) Union All Create `8esn`=((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[``:`5esn`|:usn2{`5esn`:_usn4[0]}]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})),`2esn`=(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[`4esn`:usn2]->(`3esn` :_usn4) Detach Delete Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])],123.654 Contains @usn5 Contains $`5esn`"), + octest:ct_string("With 9e12[..`3esn`][..0X0123456789ABCDEF] As `5esn`,`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] As usn1 Order By .e1[..$`3esn`][..01] Ascending,'s_str' Is Not Null Descending Where $#usn7[..$`4esn`][..01] Optional Match (((`6esn` :#usn7:`5esn`)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(_usn4 :#usn7:`5esn`))),`1esn`=(`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) Merge `8esn`=(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) On Match Set `3esn`+=[_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1|999 Contains $1000] Starts With Single(`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``),`2esn`+=\"d_str\" In @usn5 In $@usn5 On Create Set `7esn` ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]} Union All Remove Single(#usn7 In 9e0[$1000] Where Count ( * ) In True In @usn5).`3esn`,{`3esn`:9e1 Ends With Count(*) Ends With $7}._usn4!,(`` :`7esn`)-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(usn2 :`5esn`).`2esn`! Unwind True Contains 's_str' Contains $usn1 As _usn4 Merge `4esn`=({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) Union All Create _usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4)))"), + octest:ct_string("Merge (:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]})<-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(`2esn` :`1esn`:_usn4) On Match Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null On Create Set Any(#usn7 In True Contains 's_str' Contains $usn1 Where $12[9e0..$999]).`5esn`! =1.e1[12..][$`4esn`..],Any(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null).`2esn` =All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]) =~All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where .e12[..999][..@usn5]) =~Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4),`2esn` =1e1 Ends With $`2esn` Remove Filter(#usn8 In `7esn` Where $`3esn`[..0X0123456789ABCDEF][..7]).@usn5?,Extract(@usn6 In False Contains 0 Contains $`6esn`|$7 In 0.e0 In 999).`2esn`!,Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null).usn1 Union Detach Delete `2esn`[$@usn6..][Null..],$1000 Starts With $`7esn`"), + octest:ct_string("Return Count ( * ) In True In @usn5 As `2esn`,$_usn3[$12] Order By $@usn6 =~0xabc =~$999 Descending,Null Ends With _usn4 Ends With 0.0 Asc,`3esn`(Distinct $123456789[...12][..@usn6])[{usn2:$`2esn` Is Null,#usn8:.0 Is Null Is Null}][#usn7(Distinct $@usn6 Is Not Null Is Not Null,``[7.._usn3])] Asc Skip usn2 =~7 Limit 0[@usn5..$#usn7] With *,Extract(`6esn` In $`6esn`[``..][Count(*)..] Where $@usn5 Starts With `5esn` Starts With 01234567|0.e0[..$7]) Is Null Is Null Skip 0xabc In 123456789 In 0x0 Limit _usn4 Starts With 1000 Starts With $usn2 Where 123.654[$0..0X7][Null..#usn8] With Distinct 0e0[01][$`7esn`],'s_str'[0..] As `4esn`,Filter(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) =~{#usn7:1000[12e12][`5esn`]} As _usn4 Skip 0x0[$0][7] Limit None(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])[Any(`3esn` In `2esn`[..01][..True] Where $`3esn`[..0xabc][..$7])][$#usn7] Where $`7esn`[$_usn4][.e0] Union With Distinct [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`) Merge (_usn3 :`7esn`) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] On Create Set #usn7+=Null[.12..12e12],Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]).`1esn`! =[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)],@usn6 =usn2[1.e1]"), + octest:ct_string("Optional Match `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),(`2esn` $`6esn`) Delete `5esn`(Distinct .12[123.654..]),.e1[..$`3esn`][..01],9e12[..1e1][..'s_str'] With $usn1,`1esn` Contains $999 Contains 0.0 As @usn6,$`6esn`[0e0..][010..]"), + octest:ct_string("With Distinct *,0.0[$@usn5.._usn4] As `1esn`,07 Is Null As #usn7 Order By 12.e12 Contains `6esn` Ascending,[$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1] Asc,Extract(`3esn` In `2esn`[..01][..True] Where 00[01234567][False]|$`3esn` Ends With 01234567) Starts With (_usn4 :_usn4)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}) Starts With Extract(@usn6 In 010[`5esn`] Where $`2esn` Starts With `4esn` Starts With $usn1) Asc Limit 9e1"), + octest:ct_string("Unwind 123.654[$@usn5..] As @usn5"), + octest:ct_string("Match (`3esn` {_usn4:123.654 In 12})-[`4esn`?:_usn4 *7..]-(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})<-[ *00..0Xa]->(#usn7 :usn1:`3esn`),(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]}) With 's_str' Where 's_str'[0..] Return *,[00[12..$`6esn`],$`4esn`['s_str'..]] Is Null,9e1[$#usn8][$1000] Limit $`3esn`[..$1000][..$123456789] Union Match (((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))),({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}) Where 1000[0e0][1e1] Merge (:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]})<-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(`2esn` :`1esn`:_usn4) On Match Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null On Create Set Any(#usn7 In True Contains 's_str' Contains $usn1 Where $12[9e0..$999]).`5esn`! =1.e1[12..][$`4esn`..],Any(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null).`2esn` =All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]) =~All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where .e12[..999][..@usn5]) =~Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4),`2esn` =1e1 Ends With $`2esn` Union With 0Xa[$`8esn`..][$_usn4..],0e0[``]"), + octest:ct_string("Return Distinct $0[010..] As `` Skip All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) Is Not Null Is Not Null Union Remove All(`8esn` In 123456789 =~@usn6 Where $`5esn` =~$`8esn` =~usn2).@usn6?,Filter(@usn6 In 010[`5esn`] Where @usn6[9e12]).`2esn` Remove Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`5esn` In _usn3 In 0.0).`8esn` Remove Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]).`3esn`!"), + octest:ct_string("Merge #usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})))"), + octest:ct_string("Unwind 0xabc =~@usn5 =~$usn1 As `8esn`"), + octest:ct_string("With Distinct 9e1[usn1..0x0][12.e12..12.0] Limit 0.e0[..$999][..0Xa] Delete Extract(#usn7 In 9e0[$1000] Where 00[12..$`6esn`]|$@usn6 Ends With `1esn`) =~[7 =~`4esn`,7 =~`4esn`],@usn5[$`6esn`..][$999..],1e1 Ends With $`2esn` Optional Match `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),(`2esn` $`6esn`) Where 7 =~`4esn` Union All Unwind Count(*)[``..#usn8][`3esn`..0xabc] As @usn5"), + octest:ct_string("Return [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Any(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`),usn2[usn2..0X7] As `1esn` Order By 's_str'[0x0..1.e1] Asc Limit 0xabc[..$1000][..`5esn`] Union All Optional Match ((usn2 {`5esn`:$@usn5 In 12e12 In 01})-[`8esn`:#usn7|@usn5 *00..0Xa]-(_usn3 {usn1:0x0 Starts With $`6esn`})),((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[_usn3?:`8esn` *1000..0X0123456789ABCDEF{@usn5:07 Is Not Null Is Not Null}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Remove [12e12 =~1e1].`2esn`!"), + octest:ct_string("Return Distinct 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] As #usn8,(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null},$#usn7 =~`2esn` As `4esn` Limit Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Remove #usn7:usn2,[07[_usn3..][`6esn`..],$usn1 Ends With _usn4 Ends With `2esn`,False[$`4esn`..]].`3esn`?,[`6esn` Ends With _usn4 Ends With False].`4esn`!"), + octest:ct_string("Unwind (`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Is Not Null As `4esn`"), + octest:ct_string("Remove (:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}).`6esn`!,[01 Is Null,9e1[..123456789],010 Starts With $`` Starts With 0e0].`6esn`?,(:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[usn2 *0X0123456789ABCDEF..]->(usn2 :`7esn`)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}).`5esn`? Return *,[`8esn`[..$#usn8],1.e1 Starts With 9e12] Ends With [`6esn` In $`6esn`[``..][Count(*)..]|.e1[12.0..]] Ends With Any(usn2 In 7[12]),$`6esn` Starts With .e12 Starts With $`1esn` As @usn6 Skip $`5esn`[$`3esn`..] Limit Single(@usn6 In 010[`5esn`] Where Count(*)[9e12..12.0])[(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)][`7esn`] Union All With Distinct Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],usn2[12.e12..] Skip @usn5[0.0..0X7] Limit 07 Where 12[123.654..] Unwind 12e12 In 123456789 As `7esn`"), + octest:ct_string("Delete All(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0)[(:#usn7:`5esn`)<-[#usn8? *0Xa]-(`5esn` :`5esn`{#usn7:``[$`3esn`]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc})..],9e1[`1esn`..0][999..1e1],Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5) Contains [`8esn` In 123456789 =~@usn6 Where .e12[@usn6..][010..]|Count(*) Is Not Null Is Not Null] Contains ({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]}) Union With *,00[False..0e0] As _usn3 Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc Skip (`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}) =~[12 In $usn1 In 7] =~Filter(@usn5 In 's_str'[0..] Where 0.e0) Limit [_usn3 Ends With 7 Ends With $`1esn`,True Contains .e12,usn2 Is Not Null] Contains [$`2esn`[.0..][0.0..]] Contains (`6esn` :`8esn`)<-[_usn3 *0X0123456789ABCDEF..]-(#usn8 :`2esn`)-[`7esn`:#usn8|:`3esn` *0..01{`3esn`:07[_usn3..][`6esn`..],@usn6:``[usn1][`5esn`]}]->(:_usn3{_usn4:.e1[7..][9e0..]}) Where `2esn` Starts With $`7esn` With Distinct 999[@usn5..][Null..] Limit None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Where @usn5 Contains 9e0 Union All Optional Match `1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}))"), + octest:ct_string("Optional Match `8esn`=(:_usn3{usn1:#usn7[..07]})-[?:`7esn`|:`2esn`{@usn5:usn2[1.e1],@usn6:$#usn8 Starts With .e12 Starts With 1.e1}]->({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7}) Remove (:#usn8:`1esn`{usn2:$`7esn`[.e1][12.0],``:$`1esn` Contains 1e1 Contains @usn6})-[`` *1000..0X0123456789ABCDEF]-(`` :`7esn`)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:usn2{`6esn`:#usn7[$`3esn`..$1000][0.0..`2esn`],``:010 Starts With 0 Starts With 0.0}).`4esn`!,Extract(`5esn` In 0X7 In $#usn7 Where @usn6 Is Not Null Is Not Null).@usn5?,Any(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).#usn7! Return 0.e0[..$7] As _usn3,0xabc =~@usn5 =~$usn1 Skip $@usn6[00] Limit `2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..]"), + octest:ct_string("Merge ((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) On Create Set `5esn` =$1000[$`4esn`..False],`6esn` =[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`],`2esn` =12.0 Is Null Create (`6esn` {`2esn`:$`3esn` Ends With 01234567}),usn2=({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2)<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(_usn4 :@usn5) Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3) Union All Unwind [#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]][Any(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..])..Single(usn2 In False[$usn1][0x0] Where 9e1 Is Not Null Is Not Null)] As @usn6 Union All Unwind True[$_usn3..] As usn2"), + octest:ct_string("Match ((#usn7 {`6esn`:$`2esn` Contains Count(*)})-[?:_usn4]->(`2esn` :usn2)) Detach Delete (`2esn` :usn1:`3esn`)-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})<-[?:`3esn`]-(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})[({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})],0X7 In $#usn7,Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 999 Contains $1000)[(`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8})][#usn8($1000 Is Not Null,$`5esn`[0X7..010][`7esn`..'s_str'])] Union Unwind 07[999] As @usn6 Merge ``=(:_usn3{`7esn`:$999 Ends With .e0})<-[`8esn`?:`2esn`|`4esn`{usn2:#usn8[`6esn`..][$``..]}]-(@usn6 {`6esn`:$`5esn` =~usn1,`5esn`:$`` Starts With $1000 Starts With @usn6})-[?{_usn3:010[`5esn`],_usn4:#usn8 =~.e0}]-(#usn8 :`3esn`{`5esn`:$@usn6 Ends With `1esn`}) On Create Set Filter(usn2 In 7[12] Where $`6esn`[1.e1][$_usn3]).``? =0Xa[$`8esn`..][$_usn4..],_usn4+=0X0123456789ABCDEF In $7 On Create Set Single(@usn6 In 010[`5esn`] Where 123.654).`6esn`? =#usn7 Starts With $123456789 Starts With 12e12,`2esn` =Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[..[#usn7 In True Contains 's_str' Contains $usn1 Where Count(*) Ends With usn1]][..Filter(usn2 In 7[12] Where #usn7[0.e0..]['s_str'..])] Return Distinct .e1 =~_usn4 =~_usn4,`6esn`[..$`4esn`] As `5esn`,True[0xabc..01234567][$`8esn`..$@usn6] As #usn7 Order By @usn5[0..] Descending,Count(*) Is Null Ascending,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] Descending Union With Distinct `2esn` Starts With 12.e12 Starts With 12.0 As _usn4,$``[..\"d_str\"][..$#usn8] As `6esn` Order By $`3esn` Ends With 01234567 Ascending,`3esn`[0X0123456789ABCDEF..][07..] Asc Skip #usn8[`8esn`..] Limit $_usn4 Starts With $1000 Starts With 12 Where .e12[@usn6..][010..] Create @usn5=(({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(usn1 :_usn3{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})),(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})"), + octest:ct_string("Remove {`4esn`:0.0 Contains #usn7,`1esn`:$999[``]}.`5esn`? Remove All(`8esn` In 123456789 =~@usn6 Where $`5esn` =~$`8esn` =~usn2).@usn6?,Filter(@usn6 In 010[`5esn`] Where @usn6[9e12]).`2esn` Detach Delete $@usn6[_usn3..][$999..],$usn2 =~0.e0 =~@usn6"), + octest:ct_string("Merge (#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) On Match Set Extract(@usn5 In 's_str'[0..] Where @usn6 In .12 In `3esn`|$@usn6[00]).`8esn`? =9e0 Contains $12 Contains `3esn`,_usn4+=0x0[@usn5][$#usn8],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null On Match Set `1esn` =[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]) Match `8esn`=(((#usn7 {`6esn`:$`2esn` Contains Count(*)})<-[#usn8{`5esn`:$@usn5 In 12e12 In 01}]->(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}))) Where $#usn7 In $@usn5 In $`1esn` Union All With Distinct usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Order By $`7esn`[..@usn6] Ascending Skip 12.0 =~@usn6 =~$`2esn` Where 0e0[``..$1000][$7..12.e12] Union Detach Delete $`5esn`[..00] Unwind `8esn`(Distinct #usn8 Is Not Null Is Not Null,`2esn` In 9e0 In 7) Starts With None(usn2 In 7[12] Where 123456789 =~12 =~'s_str') As @usn6 Unwind [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] As usn2"), + octest:ct_string("Merge ({`1esn`:1.e1[`8esn`]})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`) On Create Set @usn6+=7 Ends With 01234567 Ends With 0Xa,`2esn` =0Xa =~False =~@usn5 On Match Set `5esn` =$1000[$`4esn`..False],`6esn` =[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`],`2esn` =12.0 Is Null Union Remove Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|@usn5 Contains 9e0)._usn4? Create ((#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[`7esn`? *0Xa{@usn5:123.654 Is Not Null}]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`})) Union Return Distinct *,12[``...e12] As `6esn` Limit 0x0[Count(*)..@usn6][Count(*)..0Xa] Delete 0X0123456789ABCDEF[..0xabc],All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where False[$usn1][0x0]) In [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null|9e12[9e1]] In [12.0 Is Null,$_usn4[..$_usn4][..`7esn`]],$`4esn` Starts With 0 Starts With `7esn` Merge _usn3=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']}) On Match Set Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]|$``[..\"d_str\"][..$#usn8]).@usn6 =[$usn1[`2esn`..][$`2esn`..]][(`3esn` :usn2)-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})..`2esn`(Distinct $@usn6 Is Not Null Is Not Null,Count ( * ) Ends With $123456789)],None(#usn8 In `7esn` Where ``[7.._usn3]).@usn6? =`6esn`,Any(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])._usn4! =`` Is Null"), + octest:ct_string("Return *,`3esn`[...e1] Detach Delete [0x0 Ends With 12.0 Ends With `5esn`,12e12 Ends With 0.0 Ends With usn1,00[1.e1..]] Ends With All(#usn8 In `7esn` Where $`3esn`[..0xabc][..$7]) Ends With Any(@usn6 In False Contains 0 Contains $`6esn` Where `6esn`[$1000][`3esn`]),@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])] Union All Create @usn5=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),#usn7=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))) Union Detach Delete Extract(`6esn` In $`6esn`[``..][Count(*)..] Where $@usn5 Starts With `5esn` Starts With 01234567|0.e0[..$7]) Is Null Is Null Optional Match `1esn`=(`5esn` :`5esn`{#usn7:``[$`3esn`]}) Where $`8esn`[..True][.._usn4]"), + octest:ct_string("Unwind (#usn7 {`3esn`:1.e1 In 1000 In _usn3,#usn7:`2esn` Starts With .e1 Starts With 9e12})-[? *..010{#usn8:False Is Null}]-(:`5esn`)[Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..])] As _usn3 With *,`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] As @usn5 Where 07 Contains `3esn` Contains `7esn` Detach Delete 999[12.e12] Union Remove Any(#usn7 In 9e1[$`1esn`..] Where 999 In #usn8 In $``).`7esn` Merge (:`4esn`:`6esn`{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]-(:`6esn`:_usn3)<-[@usn5? *999..{usn1:.e12[$@usn6..00][01234567.._usn3],`1esn`:`7esn` Contains 9e0}]-({@usn6:999 Contains 0 Contains $`5esn`,#usn7:999[..`1esn`][..07]}) Delete Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null],9e1 =~123456789 =~999,.e12[$@usn6..00][01234567.._usn3]"), + octest:ct_string("With Distinct $usn2 =~0.e0 =~@usn6 As _usn4,9e12[..1e1][..'s_str'] As @usn5 Order By 0X0123456789ABCDEF Is Not Null Is Not Null Asc,0X0123456789ABCDEF Is Not Null Is Not Null Asc Limit $7 In $usn1 In 999 Where 12.e12 Is Not Null Is Not Null"), + octest:ct_string("Merge `4esn`=({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) Match ((`2esn` :_usn3)-[? *0xabc{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})),({@usn5:$`5esn` Is Not Null Is Not Null})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Unwind 01[`3esn`..][Count(*)..] As _usn4"), + octest:ct_string("Delete 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2],$`3esn` Ends With 1000,[$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..] Remove All(@usn6 In False Contains 0 Contains $`6esn` Where usn1[False..])._usn3! Remove `8esn`:``:usn2 Union All Create (#usn7 {`6esn`:$`2esn` Contains Count(*)})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`}) Return Distinct *,1e1 Contains 0.e0 Contains 9e1 Limit None(#usn7 In 9e0[$1000] Where $1000 Is Not Null) Is Null Is Null Create ((#usn7 {`1esn`:$`4esn` Is Null Is Null})<-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(`6esn` :`8esn`)) Union Remove @usn6:`2esn` Detach Delete {`2esn`:12.e12 Is Not Null Is Not Null,``:Count ( * ) In True In @usn5} Ends With {`7esn`:$1000 Starts With $`3esn` Starts With 0.e0,``:$`2esn` Is Null} Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]],$`5esn`[0X7..010][`7esn`..'s_str']"), + octest:ct_string("Unwind 00[False..0e0] As `6esn` Union Create `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Union Unwind _usn4(Distinct 0X0123456789ABCDEF Ends With 01 Ends With ``,$`3esn`[..0xabc][..$7]) In Single(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0) In Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7]) As `1esn` Return Distinct *,`` =~.12 As #usn7 Order By Extract(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With [#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4] Ends With [False[$`4esn`..],$#usn7[..0Xa]] Asc,@usn6[..$@usn5] Ascending Skip \"d_str\" Is Null Is Null Limit `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Is Null Match `6esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Where `` Is Null"), + octest:ct_string("Create `3esn`=(`` {`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']})<-[`6esn`? *00..0Xa]->(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}),usn1=((`1esn` {``:0.0 Is Not Null,`1esn`:``[$`3esn`]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})) Unwind $123456789 Starts With 0.12 Starts With Null As #usn7 Union All Delete 12[..$999][..$`2esn`],Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])] Create `2esn`=(((:`6esn`:_usn3)<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})-[#usn7?:`7esn`|:`2esn` *..07]-(#usn7 {#usn7:1.e1 Starts With 9e12}))),((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(_usn3 :usn1:`3esn`)<-[`7esn`? *..010{usn2:12 Ends With Count ( * ),#usn8:`8esn` Contains `2esn` Contains .0}]->({`6esn`:'s_str' Contains 12.e12 Contains $`4esn`})) Remove Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 7[0e0..]).`8esn`!,(_usn4 :`1esn`:_usn4)<-[?:`6esn`|:#usn8 *00..0Xa]-(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]}).@usn5! Union Merge usn1=(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[usn1:_usn4]-(:`4esn`:`6esn`) On Match Set _usn3 =$``[01234567..][.0..]"), + octest:ct_string("With Distinct `2esn` Starts With 12.e12 Starts With 12.0 As _usn4,$``[..\"d_str\"][..$#usn8] As `6esn` Order By $`3esn` Ends With 01234567 Ascending,`3esn`[0X0123456789ABCDEF..][07..] Asc Skip #usn8[`8esn`..] Limit $_usn4 Starts With $1000 Starts With 12 Where .e12[@usn6..][010..] Create @usn5=(({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(usn1 :_usn3{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})),(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]}) Union Merge ``=(:_usn3{`7esn`:$999 Ends With .e0})<-[`8esn`?:`2esn`|`4esn`{usn2:#usn8[`6esn`..][$``..]}]-(@usn6 {`6esn`:$`5esn` =~usn1,`5esn`:$`` Starts With $1000 Starts With @usn6})-[?{_usn3:010[`5esn`],_usn4:#usn8 =~.e0}]-(#usn8 :`3esn`{`5esn`:$@usn6 Ends With `1esn`}) On Match Set `7esn`+=$`5esn` Is Not Null,Any(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7])._usn3 =.e12[`2esn`..010],`8esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null Merge `8esn`=(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) Merge _usn3=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) On Match Set @usn6+=(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1+=999 Is Not Null Is Not Null"), + octest:ct_string("Detach Delete {#usn7:usn1 In ``}[None(`3esn` In `2esn`[..01][..True])..Extract(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..])] With 9e0[..123456789][..$`3esn`] Order By 01 Contains usn2 Contains 0X0123456789ABCDEF Desc Limit 00 =~Count ( * ) Return 123456789 =~$999 Order By $7[01..$123456789][#usn7..12.0] Descending,.12[..usn2][..12e12] Descending"), + octest:ct_string("Unwind 01[`3esn`..][Count(*)..] As _usn4 Union All Optional Match `3esn`=(`` {`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']})<-[`6esn`? *00..0Xa]->(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}),usn1=((`1esn` {``:0.0 Is Not Null,`1esn`:``[$`3esn`]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})) Where 01234567[\"d_str\"..`4esn`]"), + octest:ct_string("Remove `5esn`:@usn5,{#usn8:$0[123.654..0.e0]}.@usn6!,{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF}.#usn8! Union All Match usn1=(((:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[@usn6:`7esn`|:`2esn` *..07{`6esn`:$_usn4 Is Null Is Null,``:1e1 Ends With $`7esn` Ends With .0}]-(`5esn` :`3esn`{``:`` Is Null,`8esn`:$@usn6[$0..9e12][.e12..Null]}))),(`2esn` :`1esn`:_usn4)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}) Create @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) Merge ((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})) On Create Set `2esn`+=0X0123456789ABCDEF In .12,`1esn` =$`7esn` In False In $`1esn`"), + octest:ct_string("Merge ((_usn3 :_usn4)) On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Return Distinct *,9e12 =~@usn6,`4esn` Contains 9e0 Order By 1000[..$1000] Descending Skip Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Limit {``:123.654 In $`7esn`}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..None(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6 =~#usn7 =~True)]"), + octest:ct_string("Unwind $_usn4[9e0..][$1000..] As `5esn` Merge usn2=(@usn5 :@usn6{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[`8esn` *0xabc]-(:_usn3{_usn4:.e1[7..][9e0..]}) On Match Set None(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`).`7esn`! =07[..07][..0X7],`4esn`:`1esn`:_usn4 Remove [@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|$`3esn` In $usn2].usn1,[#usn8 In `7esn` Where $`5esn` Is Not Null Is Not Null].#usn8"), + octest:ct_string("Delete .e1[7..][9e0..],$`5esn` In _usn3 In 0.0 With 0x0[0.0] As ``,Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) Contains [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where .0 Is Null Is Null|`3esn`[0x0..]] Contains [999[12.e12],#usn8 Is Null Is Null,1.e1 =~$_usn4] As `1esn` Order By [#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Asc,usn2[12.e12..] Ascending,$@usn6 Is Not Null Is Not Null Desc Skip `5esn` Contains 1.e1 Contains .e12 Limit `7esn`[0x0][$`4esn`] Where `5esn` Contains #usn7 Contains 9e12 Union Unwind 07[999] As _usn3 Return Distinct 9e12[..`3esn`][..0X0123456789ABCDEF] As `5esn`,`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] As usn1 Order By $@usn5[`1esn`..][$999..] Asc,12 Starts With $123456789 Starts With .e12 Ascending,1.e1[$`3esn`][0Xa] Desc"), + octest:ct_string("Remove [usn2 In False[$usn1][0x0] Where `4esn` Starts With 0e0].`6esn`!,(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[ *01234567..]->(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`}).usn2,(:``:usn2{`3esn`:12.0 Starts With .12 Starts With `6esn`,``:$`4esn`[0..][999..]})-[@usn6?{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null}]->(:`7esn`{`2esn`:$`3esn` Ends With 01234567}).`6esn` Unwind 9e12[..1e1][..'s_str'] As @usn6 Union All Merge `4esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) Detach Delete 0[$`5esn`] Union Unwind False[$usn1][0x0] As usn2 Delete $_usn4 Starts With $1000 Starts With 12,@usn5[$`7esn`..`5esn`],usn1 Unwind 12['s_str'][01] As `6esn`"), + octest:ct_string("Unwind 123.654 In 12 As `7esn`"), + octest:ct_string("Unwind $_usn4 =~$`1esn` =~`2esn` As #usn8 Create (((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),usn1=(`7esn` :`3esn`{`2esn`:999[123.654..$usn2][Count ( * )..0x0]})-[`2esn`?:usn1|`4esn` *00..0Xa]-(`4esn` :`4esn`:`6esn`) Merge ((`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})) On Match Set `1esn` =All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null"), + octest:ct_string("Optional Match ((`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})),`5esn`=(((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Union All With *,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Where .e1[12.0..] Create @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Return Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By 1000[$`2esn`..] Asc"), + octest:ct_string("Optional Match #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}),((:#usn7:`5esn`{_usn4:$usn2 =~9e1})<-[@usn5?:usn2 *0..01]->(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})) Where 9e1 Starts With Count ( * ) Merge (`2esn` :`1esn`:_usn4)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}) On Match Set `5esn`+=010[..7][..`4esn`],(`2esn` :@usn5)-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}).`4esn`! =$@usn6 Ends With `1esn`,`6esn` =.0[$``..0X7] Detach Delete 01[`3esn`..][Count(*)..],usn2[07..][.0..] Union All Create @usn5=(:@usn5{#usn7:12e12 In $`5esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})-[?*]-({`8esn`:`5esn` Contains #usn7 Contains 9e12}),`3esn`=(:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Return *,`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] As usn1,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] With .e1 =~_usn4 =~_usn4,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `5esn`,$`4esn` Starts With 0 Starts With `7esn` As usn2 Limit {@usn5:01[`3esn`..][Count(*)..]} Starts With Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str']) Where _usn3[`2esn`..0X7][0.e0..$`3esn`] Union Return Distinct `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,0xabc In .12 In 0Xa Descending,.0 Contains .e12 Contains 0 Desc Delete _usn3[12.e12..][`5esn`..]"), + octest:ct_string("Match (`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]-(#usn8 :`6esn`:_usn3)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]}) Where Count ( * ) In 0.12 Unwind 07 =~`4esn` =~$`1esn` As _usn3 Union Match ((`2esn` :_usn3)-[? *0xabc{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})),({@usn5:$`5esn` Is Not Null Is Not Null})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})"), + octest:ct_string("Return `1esn` Starts With 0X7 Starts With \"d_str\",$`4esn`[..$`8esn`][..Null] As #usn7,None(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With Filter(`5esn` In 0X7 In $#usn7 Where 0x0[0X7]) Ends With Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) As `4esn` Order By [123456789 =~12 =~'s_str',`2esn` Starts With 12.e12 Starts With 12.0,$`8esn`[..True][.._usn4]] Contains Filter(#usn7 In 9e0[$1000] Where `7esn`) Asc,None(#usn8 In `7esn` Where $`3esn` Contains $`1esn`) Starts With #usn8(0x0[Count(*)..@usn6][Count(*)..0Xa]) Ascending,_usn4 Contains $_usn3 Contains .e1 Asc Union All With Distinct *,`2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Order By $`2esn` Starts With 0.12 Starts With $12 Ascending,07 In `6esn` Desc,12[..0e0][...e1] Desc Skip #usn8[`6esn`..][$``..] Limit `3esn`[..0X0123456789ABCDEF][..0x0]"), + octest:ct_string("Optional Match usn2=((`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Where $@usn5 Is Null Is Null Detach Delete $#usn8[True][9e0],None(_usn4 In 12e12 In 123456789 Where 1.e1 =~.12)[[$`4esn`[0..][999..],0x0[Count(*)..@usn6][Count(*)..0Xa],12e12 In $`5esn`]..],0.0 Contains #usn7 Union Merge `1esn`=(((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[?:`8esn`*]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}))) On Match Set _usn4 =0Xa In #usn7 In 's_str',`5esn`+=$#usn8 Starts With .e12 Starts With 1.e1,`1esn`+=usn2 In _usn3 On Match Set _usn3+=`6esn`[$``..$_usn3][1000...0],[usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5|0 Ends With 12.e12 Ends With usn2].`1esn` =123.654 Is Null Is Null Remove Any(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7])._usn3,`7esn`:@usn5 With *,$`2esn` Contains Count(*) As `3esn`,(`2esn` :usn1:`3esn`)-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})<-[?:`3esn`]-(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})[({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})] Order By 010 Contains .e1 Asc,(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})<-[#usn7 *01..123456789]->(`6esn` :usn1:`3esn`) Ends With Extract(#usn8 In `7esn` Where 9e12[..1e1][..'s_str']) Ends With [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123.654 Is Not Null|$`2esn`[.0..][0.0..]] Descending Skip $@usn5[`1esn`..][$999..] Limit Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] Union All Merge #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}))"), + octest:ct_string("With `4esn` Is Not Null Is Not Null As `1esn`,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..]) Contains None(@usn5 In 's_str'[0..] Where 010 Is Null) Contains `2esn`(Distinct $`3esn`[$_usn4..0Xa],$`8esn`[123456789..][$@usn5..]),9e12[..`3esn`][..0X0123456789ABCDEF] As `5esn` Limit 0xabc[$999..][$usn1..]"), + octest:ct_string("Return *,$`5esn`[0X7..010][`7esn`..'s_str'] As `4esn`,999 In 0e0 As #usn7 Order By 0xabc In Null Descending Skip count($`4esn`[`8esn`],`4esn` Is Not Null Is Not Null) =~Filter(@usn5 In 's_str'[0..] Where _usn3[0x0]) Return *,12 Ends With True Ends With @usn6,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By $123456789[12e12..9e0] Asc,1e1 Contains 0.e0 Contains 9e1 Ascending,.e12[@usn6..][010..] Desc Limit $`7esn` In False In $`1esn` Union Unwind 7[0e0..] As `6esn` Optional Match ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`))"), + octest:ct_string("Merge ((#usn7 {#usn7:1.e1 Starts With 9e12})<-[ *..07{`5esn`:999 In 0e0}]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})) On Create Set `4esn`:usn2,`2esn`+=`2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..] On Match Set [#usn8 In `7esn` Where 00 In @usn6 In 0].`1esn`? =Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) Is Not Null Is Not Null,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]).@usn6! =[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]),_usn4+=$_usn3[$12] Unwind usn1[..$@usn6][..00] As `4esn` Union All Detach Delete [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]],$999 Ends With .e0,$`5esn` =~usn1 Optional Match ((:`4esn`:`6esn`{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})-[`5esn`?:`6esn`|:#usn8{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]-({`5esn`:#usn8 =~.e0})<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null})),((:#usn7:`5esn`{_usn4:$usn2 =~9e1})<-[@usn5?:usn2 *0..01]->(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})) Where `6esn`[..Count ( * )][..$_usn4] With *,All(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Is Not Null Is Not Null As `3esn` Limit `5esn`[$`7esn`..$@usn5] Where .e0 =~Null Union Remove Single(usn2 In 7[12] Where .e12[0Xa..]).usn1!,(`` $`6esn`)-[`4esn`:`1esn`|`3esn` *12..]->({`7esn`:9e12 =~@usn6})-[#usn7? *0X7..{`1esn`:#usn7[0]}]->(`5esn` :`6esn`:_usn3).``,`3esn`(Distinct $@usn5 In $`6esn` In 12e12).`8esn`! Remove Any(_usn4 In 12e12 In 123456789 Where 9e1 Is Not Null Is Not Null).#usn7? Remove None(#usn8 In `7esn` Where $`5esn` Is Not Null Is Not Null).`1esn`!"), + octest:ct_string("Create (_usn3 :`4esn`:`6esn`)-[?:@usn6|:`7esn`]-(:#usn8:`1esn`)-[_usn3?]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Remove (_usn4 {`7esn`:#usn7[0.e0..]['s_str'..]})-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]}).`2esn` Union Unwind Count ( * ) =~0e0 =~`8esn` As `8esn` Merge _usn4=(({usn2:`2esn`[..$_usn3]})) On Match Set usn1 =7 =~`4esn` On Create Set [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where False[$usn1][0x0]|$_usn4[..$_usn4][..`7esn`]].`1esn` =12 Starts With \"d_str\" Starts With 00,#usn8+=0 =~1e1,#usn8 =12 Contains 1.e1 Merge _usn3=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})"), + octest:ct_string("Return Distinct `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By $1000[$@usn6][$_usn4] Desc Union All Match ((@usn5 )),(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-({`1esn`:#usn7[0]})"), + octest:ct_string("Merge `8esn`=(((`4esn` :`4esn`:`6esn`)<-[ *..07{`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn3{@usn5:$1000 Starts With $`7esn`})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]}))) On Match Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] On Match Set usn1 =$usn1 Starts With usn1 Starts With True Detach Delete True Contains 's_str' Contains $usn1,$`5esn`[..00] Union With Distinct *,`4esn` Ends With 12 Ends With .12 As usn2,`3esn`(`7esn`,0x0 Contains $`6esn` Contains `4esn`) Is Null Is Null As usn1 Order By usn1[..$@usn6][..00] Desc Skip 9e1[$`1esn`..] Where usn1[$@usn5]"), + octest:ct_string("Merge `1esn`=(`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) On Create Set [#usn8 In `7esn` Where 01 Ends With 0Xa Ends With 0X7|`8esn` Contains Count(*) Contains $#usn7].``? ={`5esn`:$`1esn` In .e0,``:`6esn` Ends With Count ( * ) Ends With Count ( * )} Is Null Is Null,`8esn`+=$7 Is Null,`7esn` =_usn4 In #usn7 Union All Remove Extract(@usn6 In 010[`5esn`] Where 0e0[``..$1000][$7..12.e12]|1000[0e0][1e1]).`6esn`?"), + octest:ct_string("Remove Extract(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1|9e12 Contains $_usn3 Contains \"d_str\").usn1! Optional Match `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Where _usn3 Contains 9e12 Contains `8esn` Merge (((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) On Create Set _usn3+={@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Union Create ((:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[`2esn`{``:Null[..010][..1000]}]-(`` :usn1:`3esn`)-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})),((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})) With Distinct {`8esn`:9e12 =~@usn6,`1esn`:999 Contains 0 Contains $`5esn`}[`4esn`()],(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null} Order By [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Desc Limit $7 Starts With $`4esn`"), + octest:ct_string("Return 00[$`1esn`..][@usn6..] As _usn4 Limit $@usn5[`1esn`..][$999..] Union With Distinct $@usn5,0.12[0Xa][$`7esn`] As `4esn`,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As _usn3 Order By 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Asc,`6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] Desc Skip 01[$`7esn`..$@usn6] Union All With (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By 0Xa[..Count ( * )][..$123456789] Desc,`5esn`[$`7esn`..$@usn5] Ascending Skip usn2[..$usn1][..$#usn8] Limit 12.0 Ends With usn2 Ends With 0 Remove [@usn6 In False Contains 0 Contains $`6esn` Where 0.0 =~9e0 =~$0|.e0[01234567..$`8esn`]].@usn6?,({`4esn`:.e1[..$`3esn`][..01]})<-[`1esn`?:`8esn` *7..]-(:``:usn2{``:True[$_usn3..]}).`6esn`,All(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7).`6esn`? Return *,0.e0 =~00 As `3esn` Order By 's_str'[0x0..1.e1] Asc,usn1[False..`5esn`][$1000..$12] Ascending"), + octest:ct_string("Detach Delete 1e1 Is Null Is Null,01234567[$`2esn`][0Xa]"), + octest:ct_string("Merge `7esn`=(((`` :`5esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`8esn`{`8esn`:usn1 Contains 010,_usn4:`5esn` Contains $`5esn` Contains 0X7}]-({#usn8:0xabc In 010 In #usn7}))) On Create Set `3esn` =12[.0],All(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])._usn4? =12 Starts With True Starts With 12e12 Merge usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})) With `8esn` Is Null As `2esn`,[#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) Starts With [12 In $usn1 In 7,`6esn` Ends With Count ( * ) Ends With Count ( * ),`2esn` Starts With $`7esn`] Starts With usn2(Distinct .0[..'s_str'][..01234567],Count(*) In 12 In `6esn`) Ascending,_usn4[.12..$usn2][$_usn3..123.654] Desc,`4esn`[\"d_str\"]['s_str'] Ascending Skip Filter(@usn5 In 9e0 Ends With $#usn8) Contains {@usn6:#usn7[`8esn`..usn1][$999..`7esn`]} Contains (:#usn7:`5esn`)-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}) Where $@usn6[$`8esn`..][123456789..]"), + octest:ct_string("Return _usn4 Contains $_usn3 Contains .e1,$`4esn`['s_str'..] As `` Limit {`7esn`:False[$`4esn`..]}[{#usn8:.e1 Starts With 12.e12 Starts With `2esn`,`8esn`:0 =~1.e1 =~$#usn7}] Unwind [#usn8 In `7esn` Where .e0 Starts With $@usn6 Starts With $7|1000[12e12][`5esn`]] Ends With [`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8] Ends With [$``[..\"d_str\"][..$#usn8],$_usn4 Starts With $1000 Starts With 12,#usn7[.e0]] As `8esn` Remove Extract(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12|0x0[Count(*)..@usn6][Count(*)..0Xa])._usn3!,({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})<-[usn2?:`3esn` *00..0Xa]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})<-[`8esn`? *0Xa{#usn8:$``[True]}]->(_usn3 :`7esn`).`5esn`,Extract(`3esn` In 9e1 Contains $999 Where usn1[False..`5esn`][$1000..$12]).`7esn` Union All Unwind Extract(@usn5 In 9e0 Ends With $#usn8 Where $`8esn`[123456789..][$@usn5..]) =~None(#usn7 In True Contains 's_str' Contains $usn1 Where 's_str' Starts With 9e0 Starts With usn2) As `2esn`"), + octest:ct_string("With usn2 Starts With .0 Skip \"d_str\" In @usn5 In $@usn5 Limit _usn4 Starts With 1000 Starts With $usn2 Where _usn4 Is Not Null Is Not Null Merge (#usn7 {#usn7:1.e1 Starts With 9e12})<-[`5esn`?:@usn5|_usn3{``:0.0 =~9e0 =~$0}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]})-[@usn5?{#usn7:12e12 In $`5esn`}]->(`8esn` :`8esn`) On Match Set #usn7 =[$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1],@usn6+=0.12[$0..$usn2] Union Delete $#usn7[..$`4esn`][..01],Filter(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) =~{#usn7:1000[12e12][`5esn`]} Union All Return Distinct _usn4 Contains $_usn3 Contains .e1,$`4esn`['s_str'..] As `` Order By $usn2 =~9e1 Descending,(:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc,1.e1 =~$_usn4 Desc Skip 12[0e0] Unwind $#usn8[@usn6..] As usn2"), + octest:ct_string("Optional Match (`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]->(_usn4 {_usn4:Null[..010][..1000],_usn3:.0 Is Null Is Null}) Where 00 Ends With `` Ends With 12.e12 Union All Remove Filter(`8esn` In 123456789 =~@usn6 Where True[`3esn`]).`8esn`?,Single(`8esn` In 123456789 =~@usn6 Where @usn6 Is Not Null Is Not Null).`1esn`?,Single(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]).`6esn`! Optional Match (({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn4?:@usn6|:`7esn`]-({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn3?:_usn3|:`7esn`]->(`3esn` {`8esn`:`7esn` In 010 In usn1})) Where _usn3 Ends With 7 Ends With $`1esn` Merge (@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`}) On Create Set All(usn2 In 7[12] Where `2esn`[$12..]).#usn8? =[#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3],Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3|01 In $@usn6).`7esn`? ={`3esn`:.e1[..\"d_str\"][..$123456789]},[$`5esn` =~usn1,@usn6 Contains .12 Contains $usn1,999 In #usn8 In $``]._usn3 =[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )] On Match Set `5esn` =0.e0[0X0123456789ABCDEF..]"), + octest:ct_string("With Distinct *,$`3esn`[.e1][_usn4] Order By 12[None(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)..`5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12])][`5esn`(`2esn`[..01][..True])..(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})<-[? *7..]-(#usn7 :``:usn2)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})] Descending Match `8esn`=((_usn3 :_usn4)) Where 0.0 Is Null Is Null Unwind 0[01234567..][0X0123456789ABCDEF..] As `4esn` Union All Remove `5esn`($`4esn` In 1.e1 In #usn7,0Xa[Count(*)..]).`2esn`,[$0[123.654..0.e0],01234567[Null..$_usn3]]._usn4!,{usn1:#usn8 =~.e0,_usn3:$_usn4 Is Null Is Null}.`1esn` Remove [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]|12[..$999][..$`2esn`]].`1esn`?,#usn7:`4esn`:`6esn`,Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12).`5esn`?"), + octest:ct_string("Return Distinct *,$`5esn` Is Not Null,usn2 Contains $0 Contains .0 Order By 0.e0[$`4esn`..`2esn`] Descending,$123456789[12e12..9e0] Asc,$_usn3[_usn4..] Asc Skip $`7esn`[$_usn4][.e0] Limit Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..] Union With Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By [Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] Ascending,None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) Descending Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]) Where @usn6 Is Not Null Is Not Null Create (`3esn` )-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]}) Remove Any(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0).usn1,All(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])._usn4!,7._usn4 Union All Remove All(@usn6 In 010[`5esn`] Where `7esn`[$usn1..]['s_str'..]).usn1!,All(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).`8esn` Unwind `4esn` Starts With 0e0 As `1esn` Return Distinct `` Starts With $123456789,$`4esn` Starts With $`4esn` Starts With $_usn3,9e1[$#usn8][$1000] Order By .e12[.12..] Desc,{@usn5:01[`3esn`..][Count(*)..]} Starts With Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str']) Desc,``[$`3esn`] Descending Skip {@usn5:\"d_str\"[True..]} In _usn4(0 =~1e1,$123456789 Contains $#usn8 Contains ``) In [999 Contains $1000,`2esn` =~.e12 =~0X0123456789ABCDEF,_usn4[@usn6..][$0..]]"), + octest:ct_string("Merge @usn5=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}) Return False[$`1esn`..],``[$`1esn`] As _usn3,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`2esn` =~9e12) Is Null Is Null Order By usn1[..$@usn6][..00] Desc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Descending,`4esn` =~$`3esn` =~@usn5 Descending Limit 0x0 Contains $`6esn` Contains `4esn` With Distinct `2esn` Starts With 12.e12 Starts With 12.0 As #usn8,$_usn3 Is Not Null Is Not Null Order By All(#usn7 In 9e0[$1000] Where 0x0[12e12..$`7esn`])[(:`5esn`{_usn4:12 Starts With #usn7 Starts With 0Xa,#usn7:999 Is Null Is Null})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})][{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}] Desc Where `7esn` In 010 In usn1 Union Remove [True Contains 0x0 Contains $_usn3,_usn3 Contains 9e12 Contains `8esn`].#usn7!,Filter(@usn5 In 's_str'[0..] Where `7esn` In 010 In usn1).`3esn`"), + octest:ct_string("Unwind `3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] As `8esn` Merge ((:@usn6)) On Create Set {`3esn`:07[_usn3..][`6esn`..],@usn6:``[usn1][`5esn`]}.@usn6 =Count(*)[``..#usn8][`3esn`..0xabc] On Create Set #usn7+=`6esn`[$`8esn`][9e1] Create ((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})),(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Union All Create (`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]}),usn1=(((`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]-(#usn8 :`6esn`:_usn3)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1))) Merge #usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) On Create Set @usn6+=$`1esn` =~1e1 On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Union All Return `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Skip 0e0[``] Limit .e0 =~Null Optional Match ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`))"), + octest:ct_string("Unwind @usn5[$`6esn`..][$999..] As @usn5 Unwind 0x0[..9e0] As #usn8 Union All Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] On Create Set `6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn1+=`4esn`[$_usn3..$`7esn`] Union All Detach Delete 0X7[.0]"), + octest:ct_string("With $@usn5 Contains 's_str' Contains \"d_str\" As @usn5 Union Merge ((`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})<-[`6esn`?:_usn3|:`7esn` *..010]->(:_usn3{_usn4:.e1[7..][9e0..]})<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->({`8esn`:`5esn` Contains #usn7 Contains 9e12})) On Match Set #usn8+=`8esn` In $1000 On Create Set `4esn` =123456789[..0e0][..$#usn7] Return *,False Is Null Order By 0X7[..$`8esn`] Desc,[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null Ascending,12.e12 Ends With `` Ends With 0 Desc Skip Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0)[..{`5esn`:0Xa[$`8esn`..][$_usn4..],_usn3:00[$usn1..]}][..Any(@usn6 In 010[`5esn`] Where 1.e1[$usn1])] Union Optional Match #usn7=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))) With Distinct *,999 Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains {_usn3:123.654 In $`7esn`} As `6esn`,.e0 Is Not Null Is Not Null As `7esn` Order By _usn3 In $`8esn` In @usn6 Desc Where `8esn` Contains Count(*) Contains $#usn7 Delete Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..]) Contains None(@usn5 In 's_str'[0..] Where 010 Is Null) Contains `2esn`(Distinct $`3esn`[$_usn4..0Xa],$`8esn`[123456789..][$@usn5..])"), + octest:ct_string("Optional Match usn1=(`3esn` {_usn3:$123456789[0.12..]})<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(usn2 ) Remove All(@usn6 In False Contains 0 Contains $`6esn` Where usn1[False..])._usn3! Union With Distinct 00[12e12][$`7esn`],[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `6esn`,0X7[..$`8esn`] As #usn7 Merge #usn8=((`3esn` :usn2)<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})<-[`5esn`?:usn1|`4esn`{`3esn`:_usn3[0x0],`3esn`:00[False..0e0]}]->(`3esn` )) On Match Set `8esn`+=0x0[``..],usn1+=0e0 Ends With 07 Ends With $`8esn`,_usn4 =$@usn6[12.0][12.0] On Match Set usn1(True Contains 's_str' Contains $usn1,.e0 Is Not Null Is Not Null).@usn5! ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]}"), + octest:ct_string("With Distinct *,None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`5esn` In _usn3 In 0.0) Is Not Null Is Not Null As @usn5 Order By 1000[12e12][`5esn`] Descending Limit All(@usn5 In 9e0 Ends With $#usn8 Where _usn4[`7esn`]) In {`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6} In (:`6esn`:_usn3$usn2)-[:`3esn` *0Xa{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->(usn1 {usn1:$#usn7 Starts With 01234567 Starts With $0})-[?:#usn8|:`3esn` *0x0..]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) Where $999[``] Return Distinct (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] As #usn7,1e1 Is Null Is Null As usn2,{`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}[..`2esn`(Distinct 0 Ends With 12.e12 Ends With usn2)][..Filter(_usn4 In 12e12 In 123456789 Where .e1 In 123456789)] As usn1 Unwind {`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`} Contains Filter(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5) Contains Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) As `5esn` Union All Optional Match ((:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]})-[@usn6?*{_usn3:$usn1,_usn3:`2esn`[$12..]}]-(:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[? *0Xa]-(#usn8 ))"), + octest:ct_string("Merge #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})) On Match Set `5esn`(Distinct .12[123.654..]).`3esn` =01234567 In 123456789 In 12,`6esn` =[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null On Match Set usn2+=`6esn`[$`8esn`][9e1]"), + octest:ct_string("Detach Delete Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)[..`4esn`][..(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)] Return Distinct usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Skip $@usn6 Ends With `1esn` Limit 9e1 Ends With Count(*) Ends With $7 Union Delete `1esn` Contains $999 Contains 0.0,[#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) Return 12e12[0x0..12.e12] As `1esn`,.e1[7..][9e0..] As `4esn`,$#usn8 Starts With .e12 Starts With 1.e1 As `8esn` Order By $`5esn` In `2esn` In `2esn` Asc,0.0[..Count ( * )][..`1esn`] Ascending,[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )] Ascending Create (:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})"), + octest:ct_string("Create (({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})),`6esn`=(({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Delete $`5esn`,[Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1],.12[123.654..] Union Create (((`6esn` {`3esn`:$`2esn`[0..123456789][``..`1esn`],`7esn`:$0[0Xa..$123456789]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}))),_usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) With Distinct $`1esn`[Null][True] As usn2,{`6esn`:$#usn7 =~`2esn`,`4esn`:True[$_usn3..]}[(:`1esn`:_usn4{#usn8:00[12..$`6esn`],@usn6:usn1[..$@usn6][..00]})-[`2esn`:`4esn`|@usn5 *01234567..]-(:`5esn`{_usn4:12 Starts With #usn7 Starts With 0Xa,#usn7:999 Is Null Is Null})-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})..Filter(@usn6 In 010[`5esn`] Where `7esn`[1e1])][Any(@usn6 In 010[`5esn`] Where False[$`4esn`..])..Extract(@usn5 In 's_str'[0..] Where `7esn` In 010 In usn1)] Limit {`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..] Unwind 1.e1 Ends With $#usn7 As `5esn`"), + octest:ct_string("With Distinct *,`2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Order By $`2esn` Starts With 0.12 Starts With $12 Ascending,07 In `6esn` Desc,12[..0e0][...e1] Desc Skip #usn8[`6esn`..][$``..] Limit `3esn`[..0X0123456789ABCDEF][..0x0] Union With {``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}[..Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)][..Any(#usn7 In $999 In 1e1 Where 07 In `6esn`)] As usn1,`8esn` Is Not Null Is Not Null As `4esn` Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Limit Any(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]) =~[9e12 =~@usn6,01 Ends With 0Xa Ends With 0X7,$@usn6[$0..9e12][.e12..Null]]"), + octest:ct_string("With Distinct $@usn5,0.12[0Xa][$`7esn`] As `4esn`,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As _usn3 Order By 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Asc,`6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] Desc Skip 01[$`7esn`..$@usn6]"), + octest:ct_string("Delete [$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4),1.e1[$usn1] Union All Detach Delete [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] Merge usn1=(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) On Create Set `6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn1+=`4esn`[$_usn3..$`7esn`] On Match Set _usn3+=`6esn`[$``..$_usn3][1000...0],[usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5|0 Ends With 12.e12 Ends With usn2].`1esn` =123.654 Is Null Is Null Detach Delete 00[False..0e0]"), + octest:ct_string("Unwind None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]) Is Null As `8esn` Union With 0.e0 Is Not Null Is Not Null As _usn4 Limit \"d_str\" Is Not Null Is Not Null Unwind Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] As @usn6 Merge usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]})"), + octest:ct_string("Merge (@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) On Match Set usn1 =$usn1 Starts With usn1 Starts With True With None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,9e1[@usn5][$usn1] As `5esn`,`4esn` Starts With 0e0 As `7esn` Order By 1.e1 Contains `6esn` Contains 0.e0 Descending,07[..07][..0X7] Descending Limit Single(_usn4 In 12e12 In 123456789 Where 0e0 =~7 =~12.0) Starts With Extract(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]|9e12 =~@usn6) With *,All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] As `3esn`,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[usn2(Distinct #usn7 Contains $0 Contains $usn2,0.e0)..] As @usn6 Order By $`1esn` Ends With 0X0123456789ABCDEF Ascending Limit `4esn` Contains 9e0"), + octest:ct_string("Merge (((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}))) On Match Set _usn3:`7esn` Detach Delete #usn7[`8esn`..usn1][$999..`7esn`],{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`} Contains Filter(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5) Contains Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``),.0 Ends With 999 Ends With $`5esn`"), + octest:ct_string("Return Distinct *,`4esn` Contains 9e0 Order By Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Asc,12.e12[..9e1][..$_usn3] Descending,True In (#usn8 :`6esn`:_usn3)<-[`2esn`?:_usn4{#usn8:$12[9e0..$999]}]->({``:.e1 Starts With 12.e12 Starts With `2esn`}) Descending Unwind {_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]} Contains ({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}) Contains None(#usn8 In `7esn`) As `4esn` Union Optional Match (({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})),`6esn`=(({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Detach Delete 12[0e0],$``[01234567..][.0..] With *,None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0) Skip @usn6[..$@usn5] Where 12.e12 =~.0 =~usn1 Union All Return Distinct *,$`2esn` Starts With $@usn5 Starts With #usn7 As `6esn` Order By .e12 Starts With $#usn8 Starts With False Desc"), + octest:ct_string("Match `8esn`=((_usn3 :_usn4)) Union Merge ((({usn2:_usn3[`2esn`..0X7][0.e0..$`3esn`]})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]-(_usn3 )<-[? *..010{usn1:9e1[_usn3]}]->(`5esn` {`4esn`:0x0[usn1..usn1],usn1:$`5esn`[0X7..010][`7esn`..'s_str']}))) Detach Delete $0[123.654..0.e0],123.654"), + octest:ct_string("Return *,`6esn` =~Null As `4esn`,.e0 Starts With $@usn6 Starts With $7 As `5esn` Order By [`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]] In (`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(:#usn7:`5esn`)-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:#usn8:`1esn`$`7esn`) In {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]} Asc,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] Desc Skip $`3esn`[$_usn4..0Xa] Create (:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"}) Union Return *,`3esn`[12.0][$_usn3],.e1 =~_usn4 =~_usn4 As `3esn` Limit Count ( * ) In 0.12 With Distinct 010[12.0..`4esn`][``..Count(*)],$`7esn`[123456789..$1000][Count ( * )..$7],$`2esn` Contains Count(*) As `3esn` Skip `1esn` Where Null[..0]"), + octest:ct_string("Delete [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12] Starts With usn2(01 Is Null) Starts With Filter(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),All(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null) Contains [@usn5 In 's_str'[0..] Where `6esn`[..Count ( * )][..$_usn4]] Contains ({usn1:$123456789 In 0.12})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(usn2 ) Create _usn3=((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})-[#usn8:#usn7|@usn5 *123456789..{@usn5:usn2[12.e12..]}]->(`` )<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})),usn2=((`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})) Merge `1esn`=(((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[?:`8esn`*]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}))) On Match Set _usn4 =0Xa In #usn7 In 's_str',`5esn`+=$#usn8 Starts With .e12 Starts With 1.e1,`1esn`+=usn2 In _usn3 On Match Set _usn3+=`6esn`[$``..$_usn3][1000...0],[usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5|0 Ends With 12.e12 Ends With usn2].`1esn` =123.654 Is Null Is Null Union With *,$`5esn` Is Not Null,usn2 Contains $0 Contains .0 Skip Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)[(`` :`5esn`{@usn5:123456789 =~@usn6})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`7esn` {``:9e1 Contains $999,``:$usn2[True..0X0123456789ABCDEF]}).._usn3(Distinct 0x0 Contains $`6esn` Contains `4esn`,usn2[1.e1])][(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})..[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|9e1 Is Null]] Limit $`4esn`[`6esn`..$12] Where 0Xa[Count(*)..] Union With Distinct Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],010 Is Null Is Null As #usn8,All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] As `8esn` Order By $_usn3[_usn4..] Asc,0.12 Is Null Is Null Desc,`6esn` Ends With _usn4 Ends With False Ascending Skip 1.e1 =~.12 Limit `1esn`[$@usn6][07] Create ``=(`3esn` :_usn4),((_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`})-[?:`2esn`|`4esn`{@usn5:0.e0}]-(`1esn` $`4esn`))"), + octest:ct_string("Merge `4esn`=(`4esn` :`7esn`)"), + octest:ct_string("Merge (_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1}) Delete [9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )]"), + octest:ct_string("Merge (({@usn6:010 Starts With 0 Starts With 0.0,_usn4:07[$`2esn`..9e12][$`4esn`..9e12]})<-[:@usn6|:`7esn` *0..01{``:`1esn`[0.0..1e1][0x0..7],usn2:01[`3esn`..][Count(*)..]}]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})) With Distinct *,$`1esn`[07..] As ``,`` Is Null As `7esn` Skip $1000 Is Not Null Delete $usn1[Null][`8esn`],Single(#usn8 In `7esn` Where 12.0 Starts With $`2esn` Starts With .e1) Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]] Ends With {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01} Union Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3) With `5esn`[..123.654][...e12] As @usn6,(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) As `2esn`,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As `1esn` Order By None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0) Descending,@usn5[$`7esn`..`5esn`] Ascending,.0 Contains .e12 Contains 0 Asc Skip usn1 Limit `6esn`[$`8esn`][9e1] Where False Starts With 0X7 Starts With 01234567"), + octest:ct_string("Detach Delete (`3esn` :usn2)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null}) Is Null,$0[0Xa..$123456789],[$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][None(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..])..] Create ((_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`})<-[? *..010{`2esn`:'s_str'[0..]}]->(_usn3 :`5esn`)),(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Match (:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]}),usn2=((#usn7 {`6esn`:$`2esn` Contains Count(*)})-[?:_usn4]->(`2esn` :usn2))"), + octest:ct_string("Match `8esn`=((_usn3 :_usn4)) Where 0.0 Is Null Is Null Detach Delete `4esn`[..$@usn6][..@usn6],$_usn4 Is Null Is Null Detach Delete True Contains 's_str' Contains $usn1,$`5esn`[..00] Union Remove [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`].@usn6?,[usn2 In False[$usn1][0x0] Where 999[@usn5..][Null..]|0.e0['s_str'..][01234567..]].``!,(:`1esn`:_usn4{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]})<-[@usn5:`3esn` *0Xa{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`}]->(:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})._usn4? Unwind [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null] Is Not Null As `3esn` Remove [#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3]|1.e1 Starts With 9e12].#usn8?,usn1:usn2,Single(#usn8 In `7esn` Where 07 Contains `3esn` Contains `7esn`).@usn5!"), + octest:ct_string("Unwind $12 Starts With $usn1 As `3esn` Union Return [#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]) As usn2,(`5esn` :@usn6{usn1:'s_str'[0..]})<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})[All(#usn7 In 9e1[$`1esn`..] Where ``[$`3esn`])] As `3esn` Order By @usn6 =~999 =~@usn5 Ascending,$@usn5[..$#usn7] Descending,{`4esn`:12e12 =~$`7esn`} Is Not Null Is Not Null Desc Skip Count(*)[9e12..12.0] Return Distinct *,[`3esn` In `2esn`[..01][..True] Where 0.e0[1000.._usn4][.e1..usn1]|`5esn`[..123.654][...e12]] As `6esn`,$#usn8 Starts With .e12 Starts With 1.e1 As `8esn` Union All With Distinct .e12 Starts With $7 Starts With .0 Where $usn2[`4esn`..9e12] Merge `1esn`=((`2esn` {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})) On Match Set (:``:usn2{`4esn`:#usn7 Contains $0 Contains $usn2})<-[:`8esn` *0X7..]->(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2})<-[`2esn`? *01..123456789]-(`2esn` :@usn6).`8esn` =`7esn`[1e1] Match #usn8=(({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})<-[?:`3esn`*..]-(usn2 :``:usn2)-[`5esn`? *01234567..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})) Where .0[..'s_str'][..01234567]"), + octest:ct_string("Unwind Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[{`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}] As `5esn` Union All Create (((usn2 {`5esn`:$@usn6 Ends With `1esn`})<-[`2esn`? *01..123456789]-(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]})<-[? *7..{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]-(#usn7 :``:usn2))) Union Return 9e1[$`1esn`..] As `` Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,{@usn6:$`3esn`[.e1][_usn4]}[`8esn`(Distinct $``[True])..] Desc Skip 010[`5esn`]"), + octest:ct_string("Remove (_usn4 {`7esn`:#usn7[0.e0..]['s_str'..]})-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]}).`2esn` Union Return Distinct 0e0 Ends With 07 Ends With $`8esn` As `1esn`,0[01234567..][0X0123456789ABCDEF..] Order By (`1esn` :`3esn`{#usn7:12[..0e0][...e1]})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})[(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null)][{`2esn`:$999 Ends With .e0}..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]] Ascending,1.e1[..`4esn`] Ascending,0xabc Is Not Null Is Not Null Descending Limit _usn4[.12..$usn2][$_usn3..123.654]"), + octest:ct_string("Return $_usn4 Is Null Is Null,usn2 Starts With .0 Order By 9e1[$#usn8][$1000] Descending Limit #usn7 =~9e12 Detach Delete True Contains .e12,[#usn8 In `7esn` Where 9e12[$`5esn`..$123456789]] =~_usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6),True Contains 0x0 Contains $_usn3"), + octest:ct_string("With Distinct *,999 Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains {_usn3:123.654 In $`7esn`} As `6esn`,.e0 Is Not Null Is Not Null As `7esn` Order By _usn3 In $`8esn` In @usn6 Desc Where `8esn` Contains Count(*) Contains $#usn7 Detach Delete None(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``)[[`5esn` In 0X7 In $#usn7 Where $@usn5 Starts With `5esn` Starts With 01234567|$``[..$#usn7][..`6esn`]]..Single(@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn1..]['s_str'..])] Remove `4esn`:`4esn`:`6esn`,(usn2 :_usn4)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]}).usn2!,`5esn`(0.12 Contains False Contains 1.e1).`3esn`? Union With Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Order By @usn5[0..] Ascending,$@usn5 In $`6esn` In 12e12 Desc,#usn7 In 0.e0 Desc Skip {`8esn`:$_usn4 Starts With 12.e12} Is Null Is Null Limit 999 Contains $1000 Where 999 In #usn8 In $`` Union All Match #usn7=(((:@usn5{@usn5:$12[9e0..$999]})<-[ *01234567..]-(`2esn` {`1esn`:$`4esn` Is Null Is Null})<-[@usn6?:`8esn` *0..01]->(`5esn` :`4esn`:`6esn`))),((usn2 :#usn8:`1esn`)<-[`4esn`? *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})<-[`4esn`:`1esn`|`3esn` *12..]-(@usn6 {`4esn`:9e1 Contains 12})) Where `2esn` In 7"), + octest:ct_string("Remove Extract(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]|9e12 =~@usn6).#usn7,[@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01].`` Remove {`3esn`:$`5esn` Is Not Null Is Not Null}.`2esn`!,{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1}.`1esn`? Union All Merge #usn8=(({usn2:`2esn`[..$_usn3]})) On Create Set #usn8+=$123456789[.0..],`` =All(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0)[(:#usn7:`5esn`)<-[#usn8? *0Xa]-(`5esn` :`5esn`{#usn7:``[$`3esn`]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc})..] On Match Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] Merge (_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]}) On Create Set `7esn` ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]} On Match Set [_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789|9e1 Ends With Count(*) Ends With $7]._usn4 =$`5esn`[0X7..010][`7esn`..'s_str'],@usn5+=(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},usn2+=999[12e12..$_usn4]"), + octest:ct_string("With $0[010..] As `` Order By `5esn`(Distinct .e0[01234567..$`8esn`]) =~All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) =~[999 In #usn8 In $``,.e0 Is Null Is Null] Ascending Skip count(Distinct 0X0123456789ABCDEF Contains 12e12 Contains 12.e12)[..{usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]}][..(:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null})] Where usn2[12.e12..] Match #usn8=((`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)) Detach Delete Filter(@usn5 In 's_str'[0..] Where $@usn6 =~#usn7 =~True)[Extract(@usn5 In 's_str'[0..] Where _usn3[0x0])..All(_usn4 In 12e12 In 123456789 Where $usn2 Is Not Null Is Not Null)][(`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]})<-[:`8esn`]-(:@usn6)-[? *0X0123456789ABCDEF..]-(usn2 :_usn3)..(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})],$`4esn` In 1.e1 In #usn7 Union All Return `6esn` Starts With `6esn`,usn2(0X7[.0])[{#usn8:0Xa Ends With $`3esn` Ends With $1000}..][[Null =~`6esn`]..] As `6esn` Remove 12.e12.`7esn`!,(`4esn` :@usn6)-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4).`4esn`"), + octest:ct_string("Return Distinct $`6esn` Starts With .e12 Starts With $`1esn` As @usn6,$`4esn` Starts With $`4esn` Starts With $_usn3 Order By Extract(@usn6 In 010[`5esn`] Where 00[$usn1..]|_usn3[$usn2..][$``..])[Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])] Asc,True Ends With $_usn3 Ends With 12 Desc Skip 9e1[1.e1][$`8esn`] Limit (`3esn` :usn2)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null}) Is Null Union All Remove {`8esn`:usn2 =~7,`5esn`:.e0[01234567..$`8esn`]}.#usn8 Remove #usn7:`1esn`:_usn4,[`4esn` Ends With 12 Ends With .12,`5esn` Contains `1esn` Contains usn1,$`2esn` =~9e12].@usn5!"), + octest:ct_string("Remove Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2).`2esn`! With 0.e0 Is Not Null Is Not Null As _usn4,0X0123456789ABCDEF In $usn2 In `4esn`,$usn1 Is Not Null Is Not Null Order By 01234567[$@usn6..$#usn7][123456789..12e12] Desc,Single(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1)[Filter(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])..][Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.0 In 123.654 In _usn4)..] Ascending Skip Null[..0] Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]) Where 9e12 Starts With 1e1 Match (:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}),`7esn`=((_usn3 :`7esn`)) Where .e12[@usn6..][010..]"), + octest:ct_string("Return Distinct *,.0 Contains .e12 Contains 0,1e1 Is Null Is Null As usn2 Optional Match (`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}),`7esn`=(((`` :`5esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`8esn`{`8esn`:usn1 Contains 010,_usn4:`5esn` Contains $`5esn` Contains 0X7}]-({#usn8:0xabc In 010 In #usn7}))) Match #usn8=(({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})<-[?:`3esn`*..]-(usn2 :``:usn2)-[`5esn`? *01234567..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})) Where .0[..'s_str'][..01234567] Union Detach Delete $usn2[0.e0]"), + octest:ct_string("Match (((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))),({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}) Where 1000[0e0][1e1] Merge (:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]})<-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(`2esn` :`1esn`:_usn4) On Match Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null On Create Set Any(#usn7 In True Contains 's_str' Contains $usn1 Where $12[9e0..$999]).`5esn`! =1.e1[12..][$`4esn`..],Any(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null).`2esn` =All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]) =~All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where .e12[..999][..@usn5]) =~Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4),`2esn` =1e1 Ends With $`2esn` Union All Return Distinct Filter(@usn5 In 9e0 Ends With $#usn8) Contains {@usn6:#usn7[`8esn`..usn1][$999..`7esn`]} Contains (:#usn7:`5esn`)-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}) Skip $usn2 Ends With $123456789 Limit [@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00|`5esn`[$`7esn`..$@usn5]] Is Not Null Is Not Null Delete `2esn`[$usn2][12.0],{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}[Single(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7)..],(:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] Delete 1000[12e12][`5esn`],0Xa Contains `8esn` Contains 0xabc"), + octest:ct_string("With Distinct Extract(`6esn` In $`6esn`[``..][Count(*)..] Where 1.e1 Ends With $_usn4 Ends With #usn7|0xabc =~$@usn5) Contains {`5esn`:1.e1[`8esn`],`1esn`:.e0} Contains {usn1:$123456789 In 0.12} As #usn7,``[7.._usn3] As usn2 Skip [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Ends With `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Ends With [$`1esn`[``][07],`7esn`] Create `5esn`=(((:`1esn`:_usn4{#usn8:00[12..$`6esn`],@usn6:usn1[..$@usn6][..00]})-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1))) With Distinct $usn2[`5esn`..][01234567..] As #usn8 Order By .0 Ends With 999 Ends With $`5esn` Ascending,01234567 In $@usn6 In $#usn7 Desc Where .e0[01234567..$`8esn`] Union Match @usn6=(usn2 :_usn4) Where `4esn`[$_usn3..$`7esn`] Delete None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6) =~Single(`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8) =~(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]}),[_usn3 In _usn3 Contains _usn4 Contains $@usn5] In Single(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) In [9e12[9e1],999 Starts With `2esn` Starts With .e1] Union With Distinct *,[$usn1[`2esn`..][$`2esn`..]] Contains Extract(usn2 In 7[12] Where $_usn3 Is Null|.e12 Is Null Is Null),$#usn7 Contains $`7esn` Contains .e12 As @usn5 Order By 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Asc,`8esn` Is Null Desc Remove {``:.e12 Ends With 0Xa Ends With 0xabc}.usn2?"), + octest:ct_string("Detach Delete All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]) =~All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where .e12[..999][..@usn5]) =~Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4),`4esn`[.12][$@usn6] Unwind $`5esn` =~$`8esn` =~usn2 As `1esn` Create (:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"}) Union All With 9e0[..123456789][..$`3esn`] Order By 01 Contains usn2 Contains 0X0123456789ABCDEF Desc Limit 00 =~Count ( * ) Union All With *,All(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Is Not Null Is Not Null As `3esn` Limit `5esn`[$`7esn`..$@usn5] Where .e0 =~Null With $999 =~.0 As usn2 Limit 's_str' Ends With _usn4 Ends With 0e0 Where 0Xa[$`8esn`..][$_usn4..]"), + octest:ct_string("Unwind Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null] As `3esn` Unwind Extract(@usn5 In 's_str'[0..] Where 12 In $usn1 In 7) =~All(`3esn` In `2esn`[..01][..True] Where $`7esn`[.e1][12.0]) As @usn5 Union Merge ((_usn3 :_usn4)) On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Return Distinct *,9e12 =~@usn6,`4esn` Contains 9e0 Order By 1000[..$1000] Descending Skip Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Limit {``:123.654 In $`7esn`}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..None(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6 =~#usn7 =~True)] Union Match (({#usn7:$@usn6[$0..9e12][.e12..Null]})) Match `6esn`=(((:`6esn`:_usn3)<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(`3esn` :_usn4{`3esn`:12[..0e0][...e1],`4esn`:.0 Is Null Is Null})-[usn2 *..07]->(`` {_usn3:`5esn` Contains `7esn`}))) Where $_usn4[$`5esn`][`7esn`]"), + octest:ct_string("Optional Match `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Where _usn3 Contains 9e12 Contains `8esn` Delete 12 Starts With \"d_str\" Starts With 00,1e1 In 0.0 In 0X0123456789ABCDEF Optional Match ((`4esn` :@usn6)-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})) Where 0Xa Ends With $`3esn` Ends With $1000"), + octest:ct_string("Return 999[12e12..$_usn4] Order By Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,0X7[.0] Asc,$`3esn`[..0X0123456789ABCDEF][..7] Descending Limit #usn7 =~9e12 Union Detach Delete _usn3 Ends With 7 Ends With $`1esn`,(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})[..Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|Count ( * )[$`5esn`..][$7..])][..$usn2] Return Distinct ``[$`1esn`] Order By 123456789[12] Ascending,{usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}[[@usn5 In 9e0 Ends With $#usn8 Where 00 Contains Count ( * ) Contains 0x0]] Asc,Count ( * )[$`5esn`..][$7..] Desc Union With 01234567 In 123456789 In 12 As usn1,Count ( * ) In 123456789 In $@usn5 As _usn3 Order By #usn7 In 0.e0 Desc Skip [$#usn7 Ends With 's_str' Ends With 0X7,12e12 Ends With 0.0 Ends With usn1][Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $`6esn`[``..][Count(*)..])..Extract(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1|``[$`3esn`])][(#usn8 :`5esn`)<-[usn2?:`3esn` *00..0Xa]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})..{_usn3:_usn4 Is Null Is Null}] Where 0Xa[Count(*)..]"), + octest:ct_string("With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Where 12.e12 Ends With $`` Delete count($`4esn`[`8esn`],`4esn` Is Not Null Is Not Null) =~Filter(@usn5 In 's_str'[0..] Where _usn3[0x0]),9e1[$`1esn`..],$usn2[`2esn`..] Union All Delete #usn8 =~.e0,True[`1esn`...e1][00..7],(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}) Union All Create (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}))) Detach Delete Extract(@usn6 In 010[`5esn`] Where 00[$usn1..]|_usn3[$usn2..][$``..])[Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])],_usn4[$usn1..01234567][123.654..`5esn`],None(#usn7 In 9e0[$1000] Where $_usn3 Is Null) In [@usn5 In 's_str'[0..] Where $#usn8[12.e12..`8esn`][12.0..0.0]|`4esn` Ends With 12 Ends With .12] In [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12]"), + octest:ct_string("Merge usn2=(`8esn` :`6esn`:_usn3) On Match Set @usn5+=0Xa[010..$0][$`2esn`..999],``+=9e12[..`3esn`][..0X0123456789ABCDEF],({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(_usn4 {_usn4:123.654 In 12})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->(`6esn` :#usn7:`5esn`{_usn3:_usn4 Is Null Is Null}).usn2 ={#usn8:.0 Is Null Is Null}[..(_usn3 :@usn6{usn2:0Xa =~False =~@usn5,`3esn`:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})][..{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}] On Create Set `6esn`+=$usn1,`1esn`+={_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] Union Merge `7esn`=(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]}) Detach Delete None(@usn6 In 010[`5esn`] Where $`3esn` Ends With 01234567) Is Not Null Is Not Null,$`2esn` =~9e12,12 Starts With \"d_str\" Starts With 00"), + octest:ct_string("Remove [999 Is Not Null Is Not Null,123.654 In $`7esn`].`6esn`,[#usn7 In 9e1[$`1esn`..] Where $`7esn`[$_usn4][.e0]|.0[..'s_str'][..01234567]].usn1?,[`6esn` In $`6esn`[``..][Count(*)..]|.e12 Starts With $12 Starts With .e12].`7esn`!"), + octest:ct_string("Create `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Create (((usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[#usn8 *0x0..]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[_usn4 *00..0Xa{`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]}]-(usn2 :`5esn`{_usn4:`2esn` In 9e0 In 7,@usn5:9e1[`1esn`..0][999..1e1]}))) Union All With Distinct $#usn7[..9e0][..123.654] Order By 0.0[..Count ( * )][..`1esn`] Desc Limit 0x0 In 0.e0 In #usn8"), + octest:ct_string("Unwind $123456789 In 0.12 As `7esn` With Distinct *,1e1 Is Not Null Is Not Null Where `7esn` Ends With $7 Ends With $@usn5 Unwind {usn2:$@usn6[00]}[..[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1]][..[12e12 Starts With $0 Starts With $`2esn`,$_usn3 Is Null]] As `5esn` Union Unwind _usn3 Is Null Is Null As `7esn` Detach Delete 0Xa In #usn7 In 's_str',0.e0[1000.._usn4][.e1..usn1] With *,_usn3[12.e12..][`5esn`..] As @usn6,999[..`1esn`][..07] Order By 7 Is Null Is Null Ascending,Count ( * ) =~0e0 =~`8esn` Descending,#usn7[0.e0..][$#usn8..] Descending Where $999 Ends With .e0 Union All Merge (usn2 :`1esn`:_usn4{usn2:999 Contains $1000})<-[@usn6? *0..01{_usn4:0Xa Ends With $`3esn` Ends With $1000}]-(`3esn` :`1esn`:_usn4) On Match Set 0.12.`8esn`? =.0 Contains .e12 Contains 0"), + octest:ct_string("Remove (`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[ *0..01]-(@usn6 :_usn3{@usn6:07 Is Not Null Is Not Null,`5esn`:0e0 =~7 =~12.0}).`2esn`?,Extract(@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00).@usn5! Merge (@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) On Match Set usn1 =$usn1 Starts With usn1 Starts With True Create ((:`3esn`{`1esn`:`7esn`,`8esn`:12e12 =~$`7esn`})-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})),((`8esn` {`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]})<-[_usn3?:_usn3|:`7esn`]->(#usn7 )-[?:#usn8|:`3esn` *0x0..]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}))"), + octest:ct_string("Return Distinct *,$`7esn`[0.12] Limit 12[..0e0][...e1] Return *,`2esn`[..$_usn4][...12] As `6esn`,`1esn` Starts With 9e1 As `6esn` Order By 01 Ends With 123456789 Desc,1.e1[12.e12..] Desc,\"d_str\" Is Not Null Ascending Skip [#usn7 In 9e0[$1000] Where `6esn`[$1000][`3esn`]][Extract(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1|010 Starts With $`` Starts With 0e0)..] Limit @usn6 =~999 =~@usn5 Unwind 01 Ends With 123456789 As usn1"), + octest:ct_string("Optional Match `8esn`=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2) Where $0[0Xa..$123456789] Union Optional Match (`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Where #usn7[0.e0..]['s_str'..] Merge ((@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})) On Match Set #usn7+=`1esn` Remove None(_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`).`2esn`,(`5esn` :``:usn2)<-[?:`4esn`|@usn5{usn2:$@usn6[$`8esn`..][123456789..]}]->(:_usn4{`8esn`:01234567[Null..$_usn3]}).``?,Extract(usn2 In 7[12] Where .12[0X7..][12e12..]|0.0 Contains #usn7).`1esn`"), + octest:ct_string("Match (((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2)))"), + octest:ct_string("Unwind 12e12[12e12][$#usn7] As usn2 Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) On Create Set #usn7+=.e0[..9e12][..07],`4esn`(True[$_usn3..],$999[``]).usn2 =123456789 Is Null Is Null,@usn5 =01[07..][1.e1..] On Create Set `5esn`+={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},usn2 =True Contains 0x0 Contains $_usn3 Delete $_usn4[9e0..][$1000..] Union Unwind (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] As `5esn` Return *,0.e0 =~00 As `3esn` Order By 's_str'[0x0..1.e1] Asc,usn1[False..`5esn`][$1000..$12] Ascending"), + octest:ct_string("Delete $_usn4[..123456789],.e1 In 123456789 Union Optional Match `8esn`=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2) Where $0[0Xa..$123456789] Union Remove All(#usn7 In 9e1[$`1esn`..] Where Count ( * ) In 0.12).#usn7?,All(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`).#usn8,{`4esn`:$999[0Xa..][9e1..]}.`3esn` Detach Delete $123456789[.0..],All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})]"), + octest:ct_string("With *,`3esn`[...e1] Where 12.e12[`8esn`..][1000..]"), + octest:ct_string("Unwind Any(usn2 In 7[12] Where $_usn3 Is Null) Is Not Null Is Not Null As `2esn` With Distinct Any(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]) =~[9e12 =~@usn6,01 Ends With 0Xa Ends With 0X7,$@usn6[$0..9e12][.e12..Null]] As `7esn` Where .0 Starts With `1esn` Optional Match `7esn`=((`4esn` )-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`` :_usn3)-[`4esn`?:`5esn`|:usn2]->(:`4esn`:`6esn`{usn2:$`8esn` Is Not Null Is Not Null}))"), + octest:ct_string("Create _usn4=((#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[`5esn`? *01234567..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(usn1 {``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})),(_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Create _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),(((`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})<-[:`2esn`|`4esn` *0X0123456789ABCDEF..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(@usn6 :`2esn`{`4esn`:$999[0Xa..][9e1..]})))"), + octest:ct_string("Match `7esn`=(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]}) Where $#usn7 Ends With 's_str' Ends With 0X7 Optional Match (((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}))),`8esn`=(:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}) Union All Match _usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))),usn1=(_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})"), + octest:ct_string("Merge ((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)) Remove (@usn5 :`6esn`:_usn3{`7esn`:`8esn`[..$#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]})-[`3esn`:`2esn`|`4esn`]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[usn1:_usn4]-(#usn7 :@usn6).#usn8 Union Remove [$`4esn`[`6esn`..$12],00[12..$`6esn`]].``! Delete $`1esn` Contains 1e1 Contains @usn6,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null,`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] Detach Delete `` =~.12,[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])],123456789[12]"), + octest:ct_string("Remove Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|_usn3[`2esn`..0X7][0.e0..$`3esn`]).`7esn`? Return Distinct *,#usn8 =~0.e0 Order By $`5esn`[\"d_str\"..] Ascending,Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5) Contains [`8esn` In 123456789 =~@usn6 Where .e12[@usn6..][010..]|Count(*) Is Not Null Is Not Null] Contains ({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]}) Desc,$1000 Is Null Is Null Ascending Limit $0 =~9e1 =~$`2esn` Union Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3) With `5esn`[..123.654][...e12] As @usn6,(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) As `2esn`,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As `1esn` Order By None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0) Descending,@usn5[$`7esn`..`5esn`] Ascending,.0 Contains .e12 Contains 0 Asc Skip usn1 Limit `6esn`[$`8esn`][9e1] Where False Starts With 0X7 Starts With 01234567"), + octest:ct_string("Remove Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null).`7esn`?,(_usn4 :_usn4)<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[ *..07{`6esn`:Count(*)[9e12..12.0]}]->(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}).``? With *,$@usn5 In 12e12 In 01 Order By 0.12 Starts With $`8esn` Starts With @usn5 Ascending Limit $7 Starts With $`4esn` Merge `1esn`=(((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[?:`8esn`*]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}))) On Match Set _usn4 =0Xa In #usn7 In 's_str',`5esn`+=$#usn8 Starts With .e12 Starts With 1.e1,`1esn`+=usn2 In _usn3 On Match Set _usn3+=`6esn`[$``..$_usn3][1000...0],[usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5|0 Ends With 12.e12 Ends With usn2].`1esn` =123.654 Is Null Is Null Union All Merge `1esn`=(usn2 :`5esn`)<-[? *7..]-(#usn7 :``:usn2) On Match Set `8esn` ={`3esn`:.e1[..\"d_str\"][..$123456789]},`1esn` =$7 Starts With 12.e12 Starts With $@usn6,None(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]).`3esn`? =#usn8[..`8esn`] Unwind $_usn3 Is Not Null Is Not Null As `1esn` Match (((`4esn` :``:usn2)<-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]-({`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[:_usn4{`8esn`:12.e12 Is Not Null Is Not Null,#usn7:@usn6[Null...0][\"d_str\"..Count(*)]}]-(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False}))),((@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})) Union All Return Distinct 12.e12 =~0X0123456789ABCDEF =~1.e1 As `6esn`,0.e0[..$7] As _usn3,usn1 Ends With 0.0 Skip usn2 =~$`` =~$`8esn` Limit (usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null Delete 07[_usn3..][`6esn`..] Unwind 9e12 =~@usn6 As usn1"), + octest:ct_string("Detach Delete $_usn3,[Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] Union All Optional Match ((`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Delete [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] In [12e12 In 123456789,`1esn`] In All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),True[..#usn8],0.12[0Xa][$`7esn`]"), + octest:ct_string("Detach Delete .12[..usn2][..12e12] Return Distinct *,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) As `7esn` Skip $`5esn` =~$0 =~`` Limit Count(*) In 12 In `6esn`"), + octest:ct_string("Delete _usn3 =~9e1 =~12e12,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null Union Merge @usn6=(#usn7 {_usn4:1.e1[`8esn`]})<-[usn2{`2esn`:$12 Starts With $usn1}]->(:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]}) On Create Set `3esn`+=`2esn` =~.e12 =~0X0123456789ABCDEF,#usn8:usn1:`3esn`,``+=`2esn` On Create Set `3esn` =12[.0],All(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])._usn4? =12 Starts With True Starts With 12e12 Unwind Count ( * ) In True In @usn5 As `3esn`"), + octest:ct_string("With 0X7[`2esn`..] As `6esn`,Single(usn2 In False[$usn1][0x0])[All(@usn6 In 010[`5esn`] Where 00[1.e1..])][(:`2esn`{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`})-[?{`5esn`:$`2esn`[.0..][0.0..]}]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})-[`` *1000..0X0123456789ABCDEF]->(:_usn4{`8esn`:01234567[Null..$_usn3]})] Order By ``[$`3esn`] Asc,[1000[0e0][1e1],12.0 Is Null Is Null] Is Not Null Is Not Null Asc,.e0 =~$`7esn` =~0X0123456789ABCDEF Descending Skip [#usn8 In `7esn` Where .e0 Is Null Is Null] Ends With {usn1:$`4esn`[`6esn`..$12],`4esn`:usn1 Contains 010} Ends With (:``:usn2{``:True[$_usn3..]})<-[`2esn`? *01..123456789]-(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(`1esn` $`4esn`) Limit `5esn`[..123.654][...e12] Unwind $_usn3 Is Not Null As _usn3 Match ((`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})),`5esn`=(((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Where `3esn`"), + octest:ct_string("With Distinct $@usn5,0.12[0Xa][$`7esn`] As `4esn`,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As _usn3 Order By 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Asc,`6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] Desc Skip 01[$`7esn`..$@usn6] Where 12 In $usn1 In 7 Union Create _usn3=((:``:usn2{`5esn`:1.e1[`8esn`],`1esn`:.e0})-[`3esn`:`2esn`|`4esn`]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`6esn`?:_usn3|:`7esn` *..010]->(:_usn3{_usn4:.e1[7..][9e0..]})),@usn6=(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`}) Optional Match @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) Where Count ( * )[@usn6]"), + octest:ct_string("Delete Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null],_usn3[`2esn`..0X7][0.e0..$`3esn`],'s_str' Ends With _usn4 Ends With 0e0"), + octest:ct_string("Unwind 12.0 In 010 As @usn5 Merge (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}) On Match Set #usn7+=[#usn8 In `7esn` Where usn2[07..][.0..]|$usn1 Ends With _usn4 Ends With `2esn`] Contains (_usn3 {#usn7:1000[12e12][`5esn`]})-[`3esn`?:`3esn`]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0}) Contains Extract(`3esn` In `2esn`[..01][..True] Where usn1 In ``),@usn6:`8esn`,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.0 Starts With $`2esn` Starts With .e1).`8esn`? =$`3esn`[$_usn4..0Xa] Union Remove All(`8esn` In 123456789 =~@usn6 Where ``[9e12][$999]).``? Detach Delete #usn7[`8esn`..usn1][$999..`7esn`],{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`} Contains Filter(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5) Contains Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``),.0 Ends With 999 Ends With $`5esn` Union All Return .e1 =~_usn4 =~_usn4,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `5esn`,$`4esn` Starts With 0 Starts With `7esn` As usn2 Order By 0.0[$usn2..] Asc Limit @usn5(Distinct) =~[_usn3[`5esn`..][usn2..],$#usn7 =~`2esn`] =~1.e1"), + octest:ct_string("Merge ({@usn6:0x0[Count(*)..@usn6][Count(*)..0Xa],`7esn`:0.0 =~9e0 =~$0})-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(:_usn3{_usn3:$`3esn`[.e1][_usn4]})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`) On Match Set {#usn8:$`5esn` =~$`8esn` =~usn2}.`4esn`! =999[@usn5..][Null..],`4esn`:`1esn`:_usn4 On Create Set [usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]].`1esn`? =999 Contains 0 Contains $`5esn` Match #usn7=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2),`2esn`=({@usn5:$`5esn` Is Not Null Is Not Null})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Where $_usn4[$`5esn`][`7esn`] With `2esn` Starts With $`4esn` As `8esn` Skip @usn6[12.0..0.12] Limit None(#usn7 In 9e0[$1000] Where $_usn3 Is Null)[[0 =~1e1,$#usn8[12.e12..`8esn`][12.0..0.0],$1000 Is Not Null]..] Where $7 Starts With 12.e12 Starts With $@usn6 Union All Create ((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )),@usn5=((_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})<-[#usn8?:@usn6|:`7esn` *0X0123456789ABCDEF..{_usn4:12.e12 =~.0 =~usn1,usn1:12e12 Contains `2esn`}]->(usn2 :@usn6)-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]-(`1esn` {@usn5:`2esn` Starts With $`4esn`})) With $@usn6[..12] As #usn8,`6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] As #usn8,[`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})] Order By 12.e12[..9e1][..$_usn3] Descending,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] Desc Skip @usn6(Count ( * ) In True In @usn5)[None(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)] Limit Extract(usn2 In 7[12] Where usn1 Starts With 00|`8esn` Contains Count(*) Contains $#usn7) Contains None(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[0.e0]) Contains Extract(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]|$`4esn`['s_str'..]) Where `1esn` Is Not Null Is Not Null Optional Match #usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))),@usn5=(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0})"), + octest:ct_string("Merge @usn5=(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Remove (@usn5 :`6esn`:_usn3{`7esn`:`8esn`[..$#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(_usn3 {`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}).@usn5?,Any(`5esn` In `7esn`[$usn2..][$123456789..] Where 999[12.e12])._usn3?"), + octest:ct_string("Delete 01 Ends With 123456789 Union With Distinct *,.0 Contains .e12 Contains 0 Skip .e1[..$`3esn`][..01] Where 9e12[_usn4..$`5esn`][_usn4...e1] Merge `5esn`=({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})<-[_usn4?:@usn6|:`7esn`]->(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})<-[`8esn`:usn1|`4esn` *0Xa{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]->(:`8esn`) On Create Set {usn1:$_usn4 Starts With $1000 Starts With 12}.@usn6! =[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])] On Create Set `5esn`+=All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],`2esn` =False Starts With 0X7 Starts With 01234567 With Distinct *,0X7[`2esn`..] As `6esn`,$`1esn` Contains 1e1 Contains @usn6 As `3esn` Order By 0xabc In .12 In 0Xa Descending Limit [#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Union All Return Distinct *,$#usn7[..0Xa] As #usn8,0X7[`2esn`..] As `5esn` Order By $7[999][usn1] Asc Create ((usn1 :_usn4{`4esn`:`7esn` Is Null})<-[`8esn`?:`2esn`|`4esn` *01..123456789{`8esn`:$`4esn` Is Null Is Null,usn1:$1000 Starts With $`3esn` Starts With 0.e0}]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})) Merge ((`1esn` {_usn4:`8esn` Is Null})) On Create Set All(usn2 In False[$usn1][0x0] Where 0.0[usn1..]).`8esn`? =_usn4 Starts With 1000 Starts With $usn2,`7esn`+=12 In $usn1 In 7,Any(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1).`2esn`! ={_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] On Match Set @usn6+=0.0[..Count ( * )][..`1esn`],usn2 =1.e1 Starts With 9e12,Single(usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5).@usn5! =0xabc[$999..][$usn1..]"), + octest:ct_string("Unwind None(@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn2..][$123456789..]) =~{`2esn`:7[12],usn1:.12[0X7..][12e12..]} =~Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)|True[0xabc..01234567][$`8esn`..$@usn6]) As `6esn`"), + octest:ct_string("Create `2esn`=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`})) Merge ``=(((`7esn` :`2esn`{@usn6:$0[123.654..0.e0]})-[_usn3 *..07{@usn6:$`2esn`[..$`3esn`][..12e12]}]->(`1esn` {#usn7:$`1esn` Ends With 0X0123456789ABCDEF,`3esn`:.12 Starts With _usn3 Starts With $``})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`}))) On Create Set `6esn`+=0x0[0X7] On Create Set `5esn` =`2esn` Starts With $`4esn`,`5esn`+={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},Extract(_usn4 In 12e12 In 123456789 Where .e1 Starts With 12.e12 Starts With `2esn`|$@usn5 Is Null Is Null).@usn5! =Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) Contains [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where .0 Is Null Is Null|`3esn`[0x0..]] Contains [999[12.e12],#usn8 Is Null Is Null,1.e1 =~$_usn4] Remove Any(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`).`1esn`,Single(`3esn` In `2esn`[..01][..True]).``,{usn1:'s_str'[0..]}._usn3? Union All Unwind .0 Contains .e12 Contains 0 As _usn4 With *,$`5esn` Is Not Null,usn2 Contains $0 Contains .0 Skip Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)[(`` :`5esn`{@usn5:123456789 =~@usn6})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`7esn` {``:9e1 Contains $999,``:$usn2[True..0X0123456789ABCDEF]}).._usn3(Distinct 0x0 Contains $`6esn` Contains `4esn`,usn2[1.e1])][(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})..[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|9e1 Is Null]] Limit $`4esn`[`6esn`..$12] Where 0Xa[Count(*)..] Union Merge @usn5=(:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']}) Remove [#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..]].@usn6!"), + octest:ct_string("Optional Match usn2=((usn1 {_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})),({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) Where .e1[usn2..$_usn3][.0..$#usn7] Return Distinct .e12 Starts With $7 Starts With .0,[$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) As #usn7,01 Contains usn2 Contains 0X0123456789ABCDEF As `8esn` Order By 0Xa =~False =~@usn5 Descending,12.0 In 010 Ascending,`4esn`[123456789] Ascending Union All Detach Delete 07[999],Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) Optional Match (:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})<-[`7esn`:`4esn`|@usn5 *12..]->({`4esn`:.e1[..$`3esn`][..01]}),_usn4=((#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[`5esn`? *01234567..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(usn1 {``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})) Where True[..#usn8] With Distinct 0.e0['s_str'..][01234567..] As `1esn`,None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,.0[$``..0X7] Skip 0x0[``..] Where $@usn5 Is Null Is Null"), + octest:ct_string("Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Create ``=(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Union Detach Delete $usn2[`2esn`..],`8esn`(Distinct #usn8 Is Not Null Is Not Null,`2esn` In 9e0 In 7) Starts With None(usn2 In 7[12] Where 123456789 =~12 =~'s_str') Match #usn7=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2),(((:_usn4{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})<-[`2esn`? *01..123456789]-(`2esn` :@usn6))) Where 999[123.654..$usn2][Count ( * )..0x0] Merge (((@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`})<-[`3esn` *7..]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[? *01..123456789]-(usn1 :_usn4{`4esn`:`7esn` Is Null}))) On Match Set usn1(True Contains 's_str' Contains $usn1,.e0 Is Not Null Is Not Null).@usn5! ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]}"), + octest:ct_string("With Distinct 0X0123456789ABCDEF In $usn2 In `4esn` Order By $0 Ends With $usn1 Ends With $_usn3 Desc Limit $123456789[12e12..9e0] Remove (_usn4 {_usn4:Null[..010][..1000],_usn3:.0 Is Null Is Null})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}).usn2 Delete None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6) =~Single(`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8) =~(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]}),{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]}[#usn7(Distinct $`1esn`[``][07])..None(@usn6 In 010[`5esn`] Where $`3esn` Ends With 01234567)] Union All Unwind $``[..\"d_str\"][..$#usn8] As @usn6 Union Create `3esn`=(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}) Unwind $_usn3 Is Not Null As _usn3"), + octest:ct_string("Match `3esn`=((:_usn3{_usn3:$`3esn`[.e1][_usn4]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:`5esn`)<-[ *01234567..]->(#usn8 :`8esn`)) Where 9e1 Starts With Count ( * ) Match (:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}),`7esn`=((_usn3 :`7esn`)) Where .e12[@usn6..][010..] Optional Match ``=((usn1 {_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})),`1esn`=((usn1 :_usn4{`4esn`:`7esn` Is Null})) Union All Merge usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]})"), + octest:ct_string("Unwind (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]} As `5esn` Merge (({@usn6:010 Starts With 0 Starts With 0.0,_usn4:07[$`2esn`..9e12][$`4esn`..9e12]})<-[:@usn6|:`7esn` *0..01{``:`1esn`[0.0..1e1][0x0..7],usn2:01[`3esn`..][Count(*)..]}]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})) Detach Delete {#usn7:usn1 In ``}[None(`3esn` In `2esn`[..01][..True])..Extract(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..])] Union Optional Match (({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn4?:@usn6|:`7esn`]-({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn3?:_usn3|:`7esn`]->(`3esn` {`8esn`:`7esn` In 010 In usn1})) Where _usn3 Ends With 7 Ends With $`1esn`"), + octest:ct_string("Merge ((:`6esn`:_usn3)) On Match Set `` =Extract(@usn5 In 's_str'[0..] Where 12e12 Is Not Null) =~[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]] With Distinct @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1|$@usn5 In $`6esn` In 12e12) Ends With (:`7esn`{#usn7:0 =~1.e1 =~$#usn7})<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}),`1esn`($`4esn`[`4esn`][Count(*)],`2esn` Starts With $`7esn`) =~Extract(@usn5 In 9e0 Ends With $#usn8 Where .e0 Starts With $@usn6 Starts With $7) =~{`3esn`:_usn3[`2esn`..0X7][0.e0..$`3esn`]} Where False Is Null Union Merge `3esn`=(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}) On Match Set _usn3+=#usn7[..07],(:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(usn1 :`7esn`).`4esn` =1.e1[$`3esn`][0Xa],All(@usn5 In 's_str'[0..] Where `2esn`[..01][..True]).`2esn`! =`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] On Create Set Filter(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7]).``! =12 Contains 01234567 Union Remove Single(`6esn` In $`6esn`[``..][Count(*)..] Where 0x0 Starts With $`6esn`).`4esn`,(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`).`5esn`,({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}).`5esn` Return Distinct 999[12e12..$_usn4] Order By Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,0X7[.0] Asc,$`3esn`[..0X0123456789ABCDEF][..7] Descending Limit #usn7 =~9e12 Merge ((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) On Create Set #usn8 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``|.12 In `8esn` In $#usn8]._usn4? =7 =~0.12,`6esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null,Any(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]).`3esn`! =(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null"), + octest:ct_string("Remove [Null[..010][..1000]]._usn4!"), + octest:ct_string("Unwind True Contains 's_str' Contains $usn1 As _usn4 Merge @usn5=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}) With Distinct $_usn4 Is Null Is Null,usn2 Starts With .0 Order By 9e1[$#usn8][$1000] Descending Limit #usn7 =~9e12"), + octest:ct_string("Detach Delete $usn2[`2esn`..$`1esn`],12 Ends With True Ends With @usn6 With Distinct `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] As `3esn`,usn1 Ends With 0.0 Order By $`3esn`[$_usn4..0Xa] Desc,$`1esn` Ends With 0X0123456789ABCDEF Ascending,$@usn5 Ends With @usn5 Ends With 0xabc Descending Where #usn8 =~0.e0 Merge #usn7=({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})"), + octest:ct_string("Create `7esn`=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}),_usn3=((:``:usn2{`5esn`:1.e1[`8esn`],`1esn`:.e0})-[`3esn`:`2esn`|`4esn`]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`6esn`?:_usn3|:`7esn` *..010]->(:_usn3{_usn4:.e1[7..][9e0..]})) Union Remove #usn8(Distinct 0X0123456789ABCDEF Contains 12e12 Contains 12.e12,Count(*) Starts With usn2 Starts With `7esn`).usn1,Single(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..]).#usn7?,Any(_usn4 In 12e12 In 123456789 Where `3esn`[7..0.e0][0.0..123456789]).`8esn`! Return $`4esn`[`4esn`][Count(*)] As `8esn`,$usn1[`2esn`..][$`2esn`..] As _usn3,_usn4[`7esn`] As usn2 Skip 01[..$`8esn`][..9e0] Limit 0X7[.0] Union With *,1.e1 Ends With $#usn7 As usn2,@usn5[01][@usn5] Skip $`5esn` Limit (`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Is Not Null"), + octest:ct_string("Match usn2=(:#usn8:`1esn`$`7esn`),`4esn`=(({#usn7:$@usn6[$0..9e12][.e12..Null]})) Where $``[..$#usn7][..`6esn`] Match (:`7esn`{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]}) Union Optional Match ((_usn4 :#usn7:`5esn`)-[`4esn`:`1esn`|`3esn` *12..]->({`7esn`:9e12 =~@usn6})),((:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[`1esn`:`8esn` *7..]-(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Where Count ( * )[$`5esn`..][$7..] Merge #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))) On Create Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] On Match Set Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa).@usn6! =0.e0 Is Not Null Is Not Null,`1esn` =07 In `6esn`"), + octest:ct_string("Merge `1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}))"), + octest:ct_string("Remove Any(`3esn` In `2esn`[..01][..True] Where $0 =~9e1 =~$`2esn`).usn1 With Distinct Filter(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3]) In ({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) In Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0) As `2esn`,1e1 Contains 12.0 As `1esn` Order By $999 Is Null Is Null Descending,Single(#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6])[Filter(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])..] Descending,.e12[0Xa..] Descending Where 9e1[`1esn`..0][999..1e1] Union Return Distinct *,0e0 Ends With 07 Ends With $`8esn` As `6esn` Order By {`4esn`:999 In 0e0,`6esn`:0.e0['s_str'..][01234567..]} Contains Single(`8esn` In 123456789 =~@usn6 Where 12.e12 Ends With `` Ends With 0) Ascending,$`4esn` In 1.e1 In #usn7 Desc Skip 0X0123456789ABCDEF In $usn2 In `4esn` Limit Extract(`3esn` In `2esn`[..01][..True] Where 0.0 Is Null Is Null|$usn2[0.e0])[{usn2:@usn5 Is Null,`8esn`:$@usn6 Ends With 123456789 Ends With 12.0}..] Remove [12.0 Is Null,.e1[..\"d_str\"][..$123456789]].`2esn`?,None(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True])._usn4!,None(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null).``! Remove `4esn`:`8esn`,[`1esn`].#usn8?,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where `1esn`[0.12..][@usn6..]).usn2!"), + octest:ct_string("Match ((#usn8 :_usn3)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)),((:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->({@usn6:12.e12 Contains #usn7 Contains $_usn4,usn2:$`5esn` =~$0 =~``})-[#usn7 *01..123456789]->(:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})) Where Count ( * )[@usn6] Union All Unwind $999[0Xa..][9e1..] As _usn4 Union Remove (:@usn5{usn2:$`3esn` Contains $`1esn`})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(`2esn` :@usn5)-[`2esn`? *12..{_usn3:$`2esn` Is Null}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}).`2esn`?,_usn4(Distinct True Contains 0x0 Contains $_usn3).`3esn`,None(#usn7 In 9e0[$1000] Where 00[12..$`6esn`]).`7esn`? Detach Delete All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`],usn2 Ends With $`4esn` Return 0.e0[..$7] As _usn3,0xabc =~@usn5 =~$usn1 Skip $@usn6[00] Limit `2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..]"), + octest:ct_string("Remove (@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`})-[@usn6?{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null}]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}).@usn5?,None(`8esn` In 123456789 =~@usn6 Where $usn1)._usn3! Unwind $123456789 Starts With 0.12 Starts With Null As #usn7 Unwind `1esn`($`4esn`[`4esn`][Count(*)],`2esn` Starts With $`7esn`) =~Extract(@usn5 In 9e0 Ends With $#usn8 Where .e0 Starts With $@usn6 Starts With $7) =~{`3esn`:_usn3[`2esn`..0X7][0.e0..$`3esn`]} As _usn3"), + octest:ct_string("Unwind $12 Starts With $0 Starts With $`8esn` As @usn5 Return *,1e1 Contains 0.e0 Contains 9e1,`1esn` Starts With 9e1 As `6esn` Order By 010 Contains .e1 Asc,(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})<-[#usn7 *01..123456789]->(`6esn` :usn1:`3esn`) Ends With Extract(#usn8 In `7esn` Where 9e12[..1e1][..'s_str']) Ends With [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123.654 Is Not Null|$`2esn`[.0..][0.0..]] Descending Union All Remove (@usn5 :`6esn`:_usn3{`7esn`:`8esn`[..$#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(_usn3 {`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}).@usn5?,Any(`5esn` In `7esn`[$usn2..][$123456789..] Where 999[12.e12])._usn3? Union All Create ((:_usn4{`4esn`:.e1 In 123456789})<-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})) With Distinct (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1"), + octest:ct_string("Optional Match `8esn`=(((`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})<-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Merge ((:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})) On Create Set @usn6+=7 Ends With 01234567 Ends With 0Xa,`2esn` =0Xa =~False =~@usn5"), + octest:ct_string("Create (`6esn` {`3esn`:$`2esn`[0..123456789][``..`1esn`],`7esn`:$0[0Xa..$123456789]}),`7esn`=((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )) With *,0.0[$@usn5.._usn4] As `1esn`,07 Is Null As #usn7 Order By 12.e12 Contains `6esn` Ascending,[$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1] Asc,Extract(`3esn` In `2esn`[..01][..True] Where 00[01234567][False]|$`3esn` Ends With 01234567) Starts With (_usn4 :_usn4)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}) Starts With Extract(@usn6 In 010[`5esn`] Where $`2esn` Starts With `4esn` Starts With $usn1) Asc Limit 9e1 With *,1.e1 =~$_usn4,9e12 Contains $_usn3 Contains \"d_str\" As @usn5 Order By `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] Desc,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,$@usn5 Descending Where `6esn`[$1000][`3esn`] Union All Return 999 In #usn8 In $``,$1000 Starts With $`3esn` Starts With 0.e0 As @usn6,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `5esn` Order By [@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null Ascending Skip [`8esn`[..$#usn8],1.e1 Starts With 9e12] Ends With [`6esn` In $`6esn`[``..][Count(*)..]|.e1[12.0..]] Ends With Any(usn2 In 7[12]) Limit Count(*)[9e12..12.0]"), + octest:ct_string("Delete `8esn` In $1000 Delete `1esn` Contains $999 Contains 0.0,[#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) Union With Distinct _usn3[0x0],$@usn6 Is Null Is Null As `5esn` Where $`8esn` Is Not Null Is Not Null"), + octest:ct_string("Unwind $`5esn`[$`6esn`][`2esn`] As _usn4 Merge `3esn`=((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})) With *,0.e0 =~00 As `3esn` Order By 's_str'[0x0..1.e1] Asc,usn1[False..`5esn`][$1000..$12] Ascending Where 9e1[$#usn8][$1000] Union Return Count ( * ) In True In @usn5 As `2esn`,$_usn3[$12] Limit `8esn`[0.e0..] Return Distinct *,0e0 Ends With 07 Ends With $`8esn` As `6esn` Order By {`4esn`:999 In 0e0,`6esn`:0.e0['s_str'..][01234567..]} Contains Single(`8esn` In 123456789 =~@usn6 Where 12.e12 Ends With `` Ends With 0) Ascending,$`4esn` In 1.e1 In #usn7 Desc Skip 0X0123456789ABCDEF In $usn2 In `4esn` Limit Extract(`3esn` In `2esn`[..01][..True] Where 0.0 Is Null Is Null|$usn2[0.e0])[{usn2:@usn5 Is Null,`8esn`:$@usn6 Ends With 123456789 Ends With 12.0}..] Create `1esn`=((@usn6 {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})-[:``{``:.0[$``..0X7]}]->(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})-[ *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})),`6esn`=((#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]}))"), + octest:ct_string("Detach Delete Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])],123.654 Contains @usn5 Contains $`5esn` Union With Distinct *,`5esn`[..123.654][...e12],12e12 =~$`7esn` Skip 0 =~1.e1 =~$#usn7 Remove {`4esn`:0.0 Contains #usn7,`1esn`:$999[``]}.`5esn`? Merge (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}) On Match Set _usn3+=.e0 Ends With $#usn7 Ends With False On Match Set `2esn` =9e1 Ends With Count(*) Ends With $7 Union All Create `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}) Detach Delete 12 Starts With $123456789 Starts With .e12"), + octest:ct_string("Merge ((:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[`2esn`?:usn1|`4esn` *00..0Xa]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[:`2esn`|`4esn` *1000..0X0123456789ABCDEF]-(usn2 :`6esn`:_usn3{@usn5:$0[0Xa..$123456789]})) On Match Set `1esn`:@usn5,All(@usn5 In 's_str'[0..] Where `2esn`[..01][..True]).`2esn`! =`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]],`2esn`+=$_usn4[01..][$_usn4..] On Match Set #usn7+=.e0[..9e12][..07],`4esn`(True[$_usn3..],$999[``]).usn2 =123456789 Is Null Is Null,@usn5 =01[07..][1.e1..] Remove Filter(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1).`5esn`! With Distinct $`1esn`[Null][True] As usn2,Count ( * )[9e12] Skip [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] Limit 0X7[0.12..] Where 0e0[01][$`7esn`] Union All Unwind #usn8(1000[12e12][`5esn`],9e1 Contains 12)[Extract(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0)..`1esn`(Distinct `3esn`[7..0.e0][0.0..123456789],`1esn` Starts With 0xabc Starts With $usn2)][Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 9e0[Count(*)..0.12][$`1esn`..12.0])..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12)] As @usn6 Remove None(`5esn` In 0X7 In $#usn7 Where usn1 =~$`7esn`).`3esn`!,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $123456789 In 0.12)._usn3?,(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]}).`6esn`? With *,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null Order By .e0 Starts With $@usn6 Starts With $7 Descending Skip [$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa) Union Unwind Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) Is Not Null Is Not Null As usn2 With Distinct *,0xabc Is Null Is Null Skip $7 Ends With Count ( * ) With Distinct 0.e0['s_str'..][01234567..] As `7esn`,Single(_usn4 In 12e12 In 123456789 Where 0e0 =~7 =~12.0) Starts With Extract(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]|9e12 =~@usn6),[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Skip $`6esn`[1.e1][$_usn3] Limit usn1 Is Not Null"), + octest:ct_string("Delete [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] In [12e12 In 123456789,`1esn`] In All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),True[..#usn8],0.12[0Xa][$`7esn`] Union With Distinct [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Any(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`) Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc Skip {`4esn`:999 In 0e0,`6esn`:0.e0['s_str'..][01234567..]} Contains Single(`8esn` In 123456789 =~@usn6 Where 12.e12 Ends With `` Ends With 0) Limit `6esn` Is Null Is Null Merge (`2esn` :`1esn`:_usn4)-[?*..]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) On Create Set @usn6+=$#usn7 Ends With 's_str' Ends With 0X7,`6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn2 =$@usn5 Ends With @usn5 Ends With 0xabc With Distinct $12 Starts With $0 Starts With $`8esn`,9e1[usn1..0x0][12.e12..12.0] As usn1,$``[..\"d_str\"][..$#usn8] As `6esn` Union Remove (:#usn8:`1esn`{usn2:$`7esn`[.e1][12.0],``:$`1esn` Contains 1e1 Contains @usn6})-[`` *1000..0X0123456789ABCDEF]-(`` :`7esn`)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:usn2{`6esn`:#usn7[$`3esn`..$1000][0.0..`2esn`],``:010 Starts With 0 Starts With 0.0}).`4esn`!,Extract(`5esn` In 0X7 In $#usn7 Where @usn6 Is Not Null Is Not Null).@usn5?,Any(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).#usn7!"), + octest:ct_string("Unwind 0x0[..9e0] As @usn6 Create (_usn4 :`6esn`:_usn3)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}),#usn8=(:@usn6{@usn6:010 Starts With 0 Starts With 0.0,_usn4:07[$`2esn`..9e12][$`4esn`..9e12]}) Union All With Distinct Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Order By Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Asc,12.e12[..9e1][..$_usn3] Descending,True In (#usn8 :`6esn`:_usn3)<-[`2esn`?:_usn4{#usn8:$12[9e0..$999]}]->({``:.e1 Starts With 12.e12 Starts With `2esn`}) Descending Where $#usn7[..$`4esn`][..01] Match `3esn`=(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0}),((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[_usn3?:`8esn` *1000..0X0123456789ABCDEF{@usn5:07 Is Not Null Is Not Null}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Where `5esn`[$`7esn`..$@usn5] Union All Delete `4esn`($_usn4 Starts With $1000 Starts With 12)[{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}],00[$`1esn`..][@usn6..],0.12 Starts With $`8esn` Starts With @usn5"), + octest:ct_string("Return *,@usn5 Contains #usn8 Contains 12.0 As `6esn`,{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] Skip 0.0 Is Null Is Null Return _usn3[`2esn`..0X7][0.e0..$`3esn`] As `7esn` Order By [usn2[12e12..]['s_str'..]] =~Single(`8esn` In 123456789 =~@usn6 Where $`4esn`[`4esn`][Count(*)]) Ascending,`4esn`[\"d_str\"]['s_str'] Ascending,.12 In `8esn` In $#usn8 Asc Skip None(@usn6 In 010[`5esn`] Where 123.654 In $`7esn`)[(`` {`7esn`:$#usn7[..0Xa]})<-[`1esn`?:usn1|`4esn` *00..0Xa]-(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[usn1? *01234567..{@usn5:01[`3esn`..][Count(*)..]}]->(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})..[False Contains 0 Contains $`6esn`,`1esn` Is Not Null Is Not Null]] Limit [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Contains Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|@usn5 Contains #usn8 Contains 12.0) Return Distinct $`3esn`[$_usn4..0Xa] As #usn7,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa) As `3esn`,$`5esn`[$`3esn`..] As `4esn` Limit $`` Is Not Null Is Not Null Union All Merge `7esn`=((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})-[#usn8:#usn7|@usn5 *123456789..{@usn5:usn2[12.e12..]}]->(`` )<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})) On Match Set `7esn`+=$`5esn` Is Not Null,Any(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7])._usn3 =.e12[`2esn`..010],`8esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null On Match Set @usn6 =999[..`1esn`][..07],`3esn`+=$@usn5[0.0][0X0123456789ABCDEF],`6esn`+=$usn1[1000][.12] Optional Match _usn4=({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}) Where 0x0[@usn6..][01..] Match ((#usn8 :_usn3)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)),((:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->({@usn6:12.e12 Contains #usn7 Contains $_usn4,usn2:$`5esn` =~$0 =~``})-[#usn7 *01..123456789]->(:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})) Where Count ( * )[@usn6]"), + octest:ct_string("Unwind Extract(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|.e1[usn2..$_usn3][.0..$#usn7]) As _usn4 Union All Detach Delete 0.e0 =~``,None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Unwind 0.0 Is Null Is Null As #usn8 Union All Return Count ( * ) In True In @usn5 As `2esn`,$_usn3[$12] Order By $@usn6 =~0xabc =~$999 Descending,Null Ends With _usn4 Ends With 0.0 Asc,`3esn`(Distinct $123456789[...12][..@usn6])[{usn2:$`2esn` Is Null,#usn8:.0 Is Null Is Null}][#usn7(Distinct $@usn6 Is Not Null Is Not Null,``[7.._usn3])] Asc Skip usn2 =~7 Limit 0[@usn5..$#usn7] With *,Extract(`6esn` In $`6esn`[``..][Count(*)..] Where $@usn5 Starts With `5esn` Starts With 01234567|0.e0[..$7]) Is Null Is Null Skip 0xabc In 123456789 In 0x0 Limit _usn4 Starts With 1000 Starts With $usn2 Where 123.654[$0..0X7][Null..#usn8] With Distinct 0e0[01][$`7esn`],'s_str'[0..] As `4esn`,Filter(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) =~{#usn7:1000[12e12][`5esn`]} As _usn4 Skip 0x0[$0][7] Limit None(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])[Any(`3esn` In `2esn`[..01][..True] Where $`3esn`[..0xabc][..$7])][$#usn7] Where $`7esn`[$_usn4][.e0]"), + octest:ct_string("Unwind (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]} As `4esn` Union Delete 12.e12 Ends With $``,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null,{#usn7:usn1 In ``}[None(`3esn` In `2esn`[..01][..True])..Extract(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..])]"), + octest:ct_string("Merge #usn7=((@usn5 {`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]})<-[`2esn`:`8esn`{`7esn`:$`4esn` Is Null Is Null}]->(usn1 :@usn6)-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(`8esn` :`8esn`)) On Match Set `1esn` =All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null On Match Set `5esn`+=[`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})] Match `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Optional Match `2esn`=(:#usn8:`1esn`$`7esn`) Where _usn4 Is Not Null"), + octest:ct_string("Return (:`2esn`)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})-[@usn6? *0X0123456789ABCDEF..{``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6}]-(`5esn` :@usn5) Is Null Is Null,`7esn` Ends With $7 Ends With $@usn5 As `7esn`,Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] As `6esn` Order By 1000[12e12][`5esn`] Descending Skip {``:0.0 =~9e0 =~$0} Contains [@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn2..][$123456789..]|0Xa[Count(*)..]] Limit .0[.e12..]"), + octest:ct_string("Merge (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}) On Match Set #usn7+=[#usn8 In `7esn` Where usn2[07..][.0..]|$usn1 Ends With _usn4 Ends With `2esn`] Contains (_usn3 {#usn7:1000[12e12][`5esn`]})-[`3esn`?:`3esn`]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0}) Contains Extract(`3esn` In `2esn`[..01][..True] Where usn1 In ``),@usn6:`8esn`,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.0 Starts With $`2esn` Starts With .e1).`8esn`? =$`3esn`[$_usn4..0Xa] Unwind 0X7[..$`8esn`] As `1esn` With Distinct $@usn6[.0..][0e0..] Order By $`8esn` Is Not Null Is Not Null Descending,Null Ends With _usn4 Ends With 0.0 Ascending Limit .e0 Where 0.12[..$_usn3][..0Xa] Union With Distinct *,[$usn1[`2esn`..][$`2esn`..]] Contains Extract(usn2 In 7[12] Where $_usn3 Is Null|.e12 Is Null Is Null),$#usn7 Contains $`7esn` Contains .e12 As @usn5 Order By 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Asc,`8esn` Is Null Desc Remove {``:.e12 Ends With 0Xa Ends With 0xabc}.usn2? Union All Remove `4esn`:`8esn`,[`1esn`].#usn8?,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where `1esn`[0.12..][@usn6..]).usn2! Match `3esn`=(`` :`6esn`:_usn3{_usn3:$`6esn`[1.e1][$_usn3]})-[_usn4?:`6esn`|:#usn8]->(#usn7 :`3esn`{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}),#usn7=(({@usn6:0x0[Count(*)..@usn6][Count(*)..0Xa],`7esn`:0.0 =~9e0 =~$0})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF}))"), + octest:ct_string("Delete $@usn5 Contains 7 Contains 7,12 Starts With \"d_str\" Starts With 00,$_usn3[_usn4..] Optional Match (usn2 :_usn4),`1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Where 0e0[01][$`7esn`] Union All Remove [False[$`4esn`..],$#usn7[..0Xa]].usn1?,({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}).`5esn` Merge @usn6=((({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}))) On Match Set `1esn` =Filter(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12])[..Extract(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])][..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]],#usn8(Distinct 12.0[$1000..][#usn7..],0xabc In Null).`2esn` =0.e0 Starts With usn1 With *,0.e0 =~00 As `3esn` Order By 's_str'[0x0..1.e1] Asc,usn1[False..`5esn`][$1000..$12] Ascending Where 9e1[$#usn8][$1000]"), + octest:ct_string("Remove {#usn8:`1esn`[usn1][0xabc],_usn3:$`6esn`[1.e1][$_usn3]}.`3esn`,{usn1:@usn6[9e12]}.`4esn`! Union All Optional Match (`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}) Return Distinct _usn3 Is Not Null Is Not Null As `` Skip 0X7[..$`8esn`] Limit {@usn5:$@usn6 Is Not Null Is Not Null} Starts With [`3esn` In `2esn`[..01][..True] Where 0x0[usn1..usn1]] Starts With Extract(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..]|0X7['s_str'..][01..]) Union Merge @usn5=(:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']}) Remove [#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..]].@usn6!"), + octest:ct_string("Delete `7esn`[$usn2..][$123456789..] Return $@usn6 Ends With 12.e12 Ends With @usn5 As usn2,``[usn1][`5esn`],`7esn`[..$`6esn`] Order By [#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Asc,(`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc Skip None(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])[Any(`3esn` In `2esn`[..01][..True] Where $`3esn`[..0xabc][..$7])][$#usn7] Limit 0e0 Is Null Is Null Return Distinct *,count($`4esn`[`8esn`],`4esn` Is Not Null Is Not Null) =~Filter(@usn5 In 's_str'[0..] Where _usn3[0x0]),@usn6 Contains .12 Contains $usn1 As `6esn` Order By 12.0 =~@usn6 =~$`2esn` Ascending Skip 0.0 Is Not Null Limit Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null Union Match ({`1esn`:1.e1[`8esn`]})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->({usn1:$123456789 In 0.12}) Union All Delete [Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] With Distinct (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3) Order By `1esn` Contains $999 Contains 0.0 Ascending Limit 0.e0[1000.._usn4][.e1..usn1]"), + octest:ct_string("Remove Any(@usn5 In 's_str'[0..] Where #usn7[0.12..])._usn3,[`6esn` In $`6esn`[``..][Count(*)..] Where @usn5[0.0..0X7]].``! Return Distinct *,Null[..010][..1000] As #usn7,9e12 Ends With 12e12 Ends With 12 As `` Order By 1000[$7..][_usn4..] Desc Skip $`3esn` Ends With 01234567 Limit 7 Ends With .12"), + octest:ct_string("Merge `4esn`=({`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}) On Create Set #usn7+=Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] On Match Set `2esn` =9e1 Ends With Count(*) Ends With $7"), + octest:ct_string("With (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),[$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) As #usn7,`7esn` In 010 In usn1 Order By .e12[0Xa..] Descending,`5esn`[$`7esn`..$@usn5] Ascending,`5esn`[..True][..0.e0] Descending Union Remove (:#usn8:`1esn`{usn2:$`7esn`[.e1][12.0],``:$`1esn` Contains 1e1 Contains @usn6})-[`` *1000..0X0123456789ABCDEF]-(`` :`7esn`)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:usn2{`6esn`:#usn7[$`3esn`..$1000][0.0..`2esn`],``:010 Starts With 0 Starts With 0.0}).`4esn`!,Extract(`5esn` In 0X7 In $#usn7 Where @usn6 Is Not Null Is Not Null).@usn5?,Any(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).#usn7!"), + octest:ct_string("Detach Delete 12.e12[_usn4..$1000][$7..$999],$0[010..] Return Distinct `7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..],$`6esn`[0e0..][010..] Skip Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3) Limit 1.e1 Starts With 9e12 Detach Delete Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1)"), + octest:ct_string("Optional Match (usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}),({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5)<-[_usn4?:@usn6|:`7esn`]->({`6esn`:'s_str' Contains 12.e12 Contains $`4esn`}) Where True Contains 0x0 Contains $_usn3 Create usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})),((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Remove Single(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]).`8esn`!,Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7]|#usn8 =~.e0).`2esn`?,{_usn3:$`1esn` In .e0,`5esn`:False Starts With 0X7 Starts With 01234567}.`3esn` Union All Create ((#usn7 {`1esn`:$`4esn` Is Null Is Null})<-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(`6esn` :`8esn`)) Delete Count(*) Starts With usn2 Starts With `7esn`,$1000 Starts With $`7esn`"), + octest:ct_string("Merge `7esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)) On Create Set All(usn2 In False[$usn1][0x0] Where 0.0[usn1..]).`8esn`? =_usn4 Starts With 1000 Starts With $usn2,`7esn`+=12 In $usn1 In 7,Any(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1).`2esn`! ={_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] Merge (#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[?:`7esn`|:`2esn`]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]}) On Match Set `2esn` =`3esn`[..0X0123456789ABCDEF][..0x0] On Create Set `2esn` =$@usn5[0.0][0X0123456789ABCDEF],@usn6+=[`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})] Remove Any(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]).@usn6?,@usn5(Distinct Count ( * ) Ends With $123456789).`6esn`? Union Return 00[$`1esn`..][@usn6..] As _usn4 Limit @usn5[$`6esn`..][$999..] Merge `6esn`=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})))"), + octest:ct_string("With *,1.e1 =~$_usn4,9e12 Contains $_usn3 Contains \"d_str\" As @usn5 Order By `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] Desc,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,$@usn5 Descending Where `6esn`[$1000][`3esn`] Union All Remove ({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})-[usn2?:`3esn`]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}).`7esn` Remove All(#usn7 In 9e0[$1000] Where 12e12 Starts With $0 Starts With $`2esn`).`8esn`?,``:@usn5,Single(`8esn` In 123456789 =~@usn6 Where ``[9e12][$999])._usn4! Merge ((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[?:`4esn`|@usn5 *0Xa]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})<-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]-(:_usn4{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]})) Union Optional Match (((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((`6esn` :`5esn`)<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`5esn` :`4esn`:`6esn`)) Detach Delete Extract(@usn6 In 010[`5esn`] Where 00[$usn1..]|_usn3[$usn2..][$``..])[Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])],_usn4[$usn1..01234567][123.654..`5esn`],None(#usn7 In 9e0[$1000] Where $_usn3 Is Null) In [@usn5 In 's_str'[0..] Where $#usn8[12.e12..`8esn`][12.0..0.0]|`4esn` Ends With 12 Ends With .12] In [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12]"), + octest:ct_string("Unwind $12 Starts With $0 Starts With $`8esn` As usn2 Union Create _usn4=(:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}),((:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})) Return Distinct [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) As usn2,#usn8 =~0.e0,$usn1 Limit 00 In @usn6 In 0 Merge `8esn`=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`}))"), + octest:ct_string("Unwind Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])] As usn2 Remove Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 7[0e0..]).`8esn`!,`4esn`:usn2,(:`8esn`{@usn5:usn2 Ends With .e1 Ends With $`5esn`})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`).`8esn`? Remove #usn7:`3esn`,Single(`6esn` In $`6esn`[``..][Count(*)..] Where 's_str' Starts With 1e1 Starts With $0).`4esn`?"), + octest:ct_string("Create @usn5=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),#usn7=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))) Union All With 0X7[`2esn`..] As `6esn`,Single(usn2 In False[$usn1][0x0])[All(@usn6 In 010[`5esn`] Where 00[1.e1..])][(:`2esn`{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`})-[?{`5esn`:$`2esn`[.0..][0.0..]}]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})-[`` *1000..0X0123456789ABCDEF]->(:_usn4{`8esn`:01234567[Null..$_usn3]})] Order By ``[$`3esn`] Asc,[1000[0e0][1e1],12.0 Is Null Is Null] Is Not Null Is Not Null Asc,.e0 =~$`7esn` =~0X0123456789ABCDEF Descending Skip [#usn8 In `7esn` Where .e0 Is Null Is Null] Ends With {usn1:$`4esn`[`6esn`..$12],`4esn`:usn1 Contains 010} Ends With (:``:usn2{``:True[$_usn3..]})<-[`2esn`? *01..123456789]-(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(`1esn` $`4esn`) Limit `5esn`[..123.654][...e12] Unwind $_usn3 Is Not Null As _usn3 Match ((`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})),`5esn`=(((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Where `3esn` Union All Merge (_usn3 :`7esn`) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] On Create Set #usn7+=Null[.12..12e12],Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]).`1esn`! =[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)],@usn6 =usn2[1.e1] Merge `2esn`=(:#usn8:`1esn`$`7esn`) On Match Set `8esn`+=`2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..]"), + octest:ct_string("Delete Count ( * ) In 999 With *,@usn5 Contains #usn8 Contains 12.0 As `6esn`,{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] Skip 0.0 Is Null Is Null Remove All(@usn6 In 010[`5esn`] Where 1.e1[$usn1]).`6esn`!,Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5"), + octest:ct_string("Match ((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[?:`4esn`|@usn5 *0Xa]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})<-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]-(:_usn4{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]})),(:`3esn`{``:`` Is Null,`8esn`:$@usn6[$0..9e12][.e12..Null]}) Match #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Where `6esn` Starts With `6esn` Detach Delete [#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Union All Return *,0.e0 =~00 As `3esn` Order By 's_str'[0x0..1.e1] Asc,usn1[False..`5esn`][$1000..$12] Ascending Unwind @usn6[123.654..][0x0..] As `2esn`"), + octest:ct_string("Merge ``=(((`7esn` :`2esn`{@usn6:$0[123.654..0.e0]})-[_usn3 *..07{@usn6:$`2esn`[..$`3esn`][..12e12]}]->(`1esn` {#usn7:$`1esn` Ends With 0X0123456789ABCDEF,`3esn`:.12 Starts With _usn3 Starts With $``})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`}))) On Match Set `1esn`:@usn5,All(@usn5 In 's_str'[0..] Where `2esn`[..01][..True]).`2esn`! =`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]],`2esn`+=$_usn4[01..][$_usn4..] On Match Set Single(`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5).usn1? =`6esn`[9e12..],`7esn`+=$0[0.e0] Optional Match (`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}) Union Return Distinct *,All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) As `8esn` Order By 12.0 Ends With `2esn` Descending,$`4esn`[`4esn`][Count(*)] Descending,$`1esn`[07..] Desc Skip 9e12[..123.654][..999] Union All Return *,#usn7[0.12..],$`3esn`[.e1][_usn4] As _usn4 Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Limit \"d_str\" Is Not Null Is Not Null"), + octest:ct_string("Remove `1esn`:_usn3 Return `1esn` Contains $999 Contains 0.0 As @usn6 Detach Delete [$usn1[`2esn`..][$`2esn`..]] Contains Extract(usn2 In 7[12] Where $_usn3 Is Null|.e12 Is Null Is Null),12e12 Ends With 0.0 Ends With usn1 Union All Create (`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]}),usn1=(((`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]-(#usn8 :`6esn`:_usn3)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1))) Merge #usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) On Create Set @usn6+=$`1esn` =~1e1 On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Union Return Distinct 1.e1[..123456789][..999],_usn3[12.e12..][`5esn`..] As @usn6,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `5esn` Order By 123456789 Contains 0Xa Descending,[@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00|`5esn`[$`7esn`..$@usn5]] Is Not Null Is Not Null Desc,00[False..0e0] Ascending Unwind usn1[...e12][..1.e1] As #usn7 Delete usn1 Is Not Null,0X0123456789ABCDEF Ends With 01 Ends With ``"), + octest:ct_string("Return Distinct *,$`7esn`[0.12] Skip _usn4 Starts With 1000 Starts With $usn2 Union All Unwind (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]} As `4esn` Union Create _usn4=({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})"), + octest:ct_string("Create #usn8=((`3esn` :usn2{`6esn`:#usn8 Is Null})-[`4esn`?:_usn4 *7..{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(usn2 :`6esn`:_usn3{@usn5:$0[0Xa..$123456789]})<-[`2esn`{``:Null[..010][..1000]}]-(`` :usn1:`3esn`)),(`2esn` :`1esn`:_usn4) Union Optional Match _usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))),usn1=(_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})"), + octest:ct_string("Return 9e1[$`1esn`..] As `` Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,{@usn6:$`3esn`[.e1][_usn4]}[`8esn`(Distinct $``[True])..] Desc Skip 010[`5esn`] Union With *,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3])[..{`8esn`:usn2 =~7,`5esn`:.e0[01234567..$`8esn`]}][..Any(@usn6 In 010[`5esn`] Where False[$`4esn`..])] As #usn8,$#usn7 Contains $`7esn` Contains .e12 As @usn5 Limit (:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}) Where 01[`3esn`..][Count(*)..] With Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Order By @usn5[0..] Ascending,$@usn5 In $`6esn` In 12e12 Desc,#usn7 In 0.e0 Desc Skip {`8esn`:$_usn4 Starts With 12.e12} Is Null Is Null Limit 999 Contains $1000 Optional Match `2esn`=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}),`8esn`=((:#usn8:`1esn`)-[ *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})) Where .e1 In 123456789"), + octest:ct_string("Return 0.e0 =~00 As `3esn`,(`2esn` {`7esn`:999 In 0e0})<-[`8esn`?:`2esn`|`4esn` *01..123456789{`8esn`:$`4esn` Is Null Is Null,usn1:$1000 Starts With $`3esn` Starts With 0.e0}]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[ *0X7..{#usn8:.e0 Contains $#usn8}]->(`2esn` :`6esn`:_usn3) In (`8esn` :`6esn`:_usn3)-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(_usn4 {_usn4:123.654 In 12})-[?:#usn8|:`3esn` *0x0..]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) In {_usn4:.e0 Contains $#usn8,@usn6:1000[12e12][`5esn`]} As ``,#usn8[`6esn`..][$``..] As `2esn` Remove Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]|$``[..\"d_str\"][..$#usn8]).`6esn`! Remove `4esn`:`4esn`:`6esn`,(usn2 :_usn4)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]}).usn2!,`5esn`(0.12 Contains False Contains 1.e1).`3esn`? Union All Unwind {`4esn`:12e12 =~$`7esn`} Is Not Null Is Not Null As _usn3 Unwind 0x0[``..] As usn1 Return Distinct *,Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7,[$#usn7 Ends With 's_str' Ends With 0X7,12e12 Ends With 0.0 Ends With usn1][Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $`6esn`[``..][Count(*)..])..Extract(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1|``[$`3esn`])][(#usn8 :`5esn`)<-[usn2?:`3esn` *00..0Xa]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})..{_usn3:_usn4 Is Null Is Null}] Order By 0e0 Is Null Is Null Ascending,$@usn6[..12] Descending Union Create (usn2 :_usn4),`1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Remove [999 Is Not Null Is Not Null,123.654 In $`7esn`].`6esn` Delete 9e0[Count(*)..0.12][$`1esn`..12.0],`7esn` Is Null"), + octest:ct_string("Optional Match ((`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Delete [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] In [12e12 In 123456789,`1esn`] In All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),True[..#usn8],0.12[0Xa][$`7esn`] Union All Delete `1esn` Starts With 9e1,{`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..],999 Is Null Is Null"), + octest:ct_string("Remove None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]).`4esn`,[@usn6 In 010[`5esn`] Where 9e1 Ends With Count(*) Ends With $7|`1esn` Is Not Null Is Not Null].`` Match `6esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Where `` Is Null Create (_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]}),`2esn`=(:#usn8:`1esn`$`7esn`)"), + octest:ct_string("Unwind #usn8[`8esn`..] As `7esn` Union All Merge (({@usn6:010 Starts With 0 Starts With 0.0,_usn4:07[$`2esn`..9e12][$`4esn`..9e12]})<-[:@usn6|:`7esn` *0..01{``:`1esn`[0.0..1e1][0x0..7],usn2:01[`3esn`..][Count(*)..]}]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})) With Distinct *,$`1esn`[07..] As ``,`` Is Null As `7esn` Skip $1000 Is Not Null Delete $usn1[Null][`8esn`],Single(#usn8 In `7esn` Where 12.0 Starts With $`2esn` Starts With .e1) Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]] Ends With {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01}"), + octest:ct_string("Match usn2=((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)) Where 1e1 Contains 's_str' Contains `3esn` Merge #usn7=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`}))"), + octest:ct_string("Create ((_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`})<-[? *..010{`2esn`:'s_str'[0..]}]->(_usn3 :`5esn`)),(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Optional Match ((_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`})-[?:`2esn`|`4esn`{@usn5:0.e0}]-(`1esn` $`4esn`)),(_usn3 :`7esn`)-[*..{``:.e1 Starts With 12.e12 Starts With `2esn`}]-(#usn7 :_usn3) Return Distinct *,All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] As `3esn`,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[usn2(Distinct #usn7 Contains $0 Contains $usn2,0.e0)..] As @usn6 Order By $`1esn` Ends With 0X0123456789ABCDEF Ascending Limit `4esn` Contains 9e0"), + octest:ct_string("Optional Match `4esn`=((({#usn7:$`3esn` Ends With 01234567,_usn3:usn1 =~$`7esn`})-[`7esn`?:usn1|`4esn` *00..0Xa{`3esn`:usn1 In ``}]-(usn1 {usn1:$#usn7 Starts With 01234567 Starts With $0})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]}))),#usn8=(({usn2:`2esn`[..$_usn3]})) Where `2esn`[..$_usn3] Return `6esn`[`5esn`..00],$1000 Is Null Is Null,0.0[usn1..] As `3esn` Limit All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`]"), + octest:ct_string("Create `2esn`=(`5esn` :``:usn2)<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2) Match `6esn`=(((:#usn7:`5esn`{`4esn`:$``[..\"d_str\"][..$#usn8]})<-[`6esn`? *00..0Xa]->(:#usn8:`1esn`$`7esn`)-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]}))),`8esn`=(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) Where 0e0[``..$1000][$7..12.e12] Union All Match ((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )),@usn5=((_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})<-[#usn8?:@usn6|:`7esn` *0X0123456789ABCDEF..{_usn4:12.e12 =~.0 =~usn1,usn1:12e12 Contains `2esn`}]->(usn2 :@usn6)-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]-(`1esn` {@usn5:`2esn` Starts With $`4esn`})) Where 12.0 Is Null Is Null"), + octest:ct_string("Unwind Count(*)[..`8esn`] As _usn3"), + octest:ct_string("Unwind 12.e12 Is Not Null Is Not Null As `2esn` Remove {`6esn`:$@usn5 Contains 's_str' Contains \"d_str\",`4esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}.`1esn`!,{`8esn`:12.0 Ends With `2esn`,`3esn`:123.654[$0..0X7][Null..#usn8]}.`1esn`! Return Distinct Count ( * ) In True In @usn5 Skip 01234567[\"d_str\"..`4esn`] Limit 123.654 In $`6esn` Union All Unwind {`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`} Contains Filter(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5) Contains Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) As #usn7 Return Distinct *,False Is Null Order By 0X7[..$`8esn`] Desc,[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null Ascending,12.e12 Ends With `` Ends With 0 Desc Skip Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0)[..{`5esn`:0Xa[$`8esn`..][$_usn4..],_usn3:00[$usn1..]}][..Any(@usn6 In 010[`5esn`] Where 1.e1[$usn1])] Union Delete 1000[7..$12],@usn5 Is Not Null,usn2 Is Not Null Detach Delete None(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1) Contains `3esn`(Distinct $123456789[...12][..@usn6]) Contains {``:`1esn` Starts With 0xabc Starts With $usn2} Return *,00[$usn1..] Limit `4esn`(Distinct 0.0 Contains #usn7)[(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})..][None(@usn5 In 's_str'[0..] Where #usn7[0.12..])..]"), + octest:ct_string("Merge (_usn3 :`5esn`{#usn8:0xabc In 010 In #usn7}) On Create Set `5esn`+={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},usn2 =True Contains 0x0 Contains $_usn3 Delete .0 Starts With `1esn`,$7[$12..12e12][1.e1..9e1] Union All Optional Match #usn8=(`5esn` :`7esn`)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1)<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}),usn2=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) Where 12.e12[0..0.12][123.654..9e12]"), + octest:ct_string("Remove Any(#usn8 In `7esn` Where 12.0 Starts With $`2esn` Starts With .e1).`7esn`!,[12e12 Is Not Null].usn1?,(_usn3 :usn2)-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}).#usn7! Union Create `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)) Unwind 07[False] As @usn6"), + octest:ct_string("Return Distinct *,Null[..010][..1000] As #usn7,9e12 Ends With 12e12 Ends With 12 As `` Order By 1000[$7..][_usn4..] Desc Skip $`3esn` Ends With 01234567 Limit 7 Ends With .12 Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Unwind usn1[..$@usn6][..00] As `4esn` Union All Return 0x0[0.0] As ``,Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) Contains [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where .0 Is Null Is Null|`3esn`[0x0..]] Contains [999[12.e12],#usn8 Is Null Is Null,1.e1 =~$_usn4] As `1esn` Order By [#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Asc,usn2[12.e12..] Ascending,$@usn6 Is Not Null Is Not Null Desc Skip `5esn` Contains 1.e1 Contains .e12 Limit `7esn`[0x0][$`4esn`] Merge #usn7=(_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`}) Optional Match @usn6=(usn2 :_usn4) Where _usn3[`2esn`..0X7][0.e0..$`3esn`]"), + octest:ct_string("Unwind 0 Is Not Null As `6esn` Optional Match `2esn`=((#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]-(usn2 :_usn4)),(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))) Detach Delete `8esn` Is Not Null Is Not Null,Filter(@usn5 In 9e0 Ends With $#usn8 Where 7 Ends With 01234567 Ends With 0Xa) Starts With {usn2:`2esn` =~.e12 =~0X0123456789ABCDEF,@usn6:`2esn` Is Null} Starts With [usn2[12e12..]['s_str'..]]"), + octest:ct_string("Remove [`5esn` In 0X7 In $#usn7 Where @usn6 Is Not Null Is Not Null|9e1[..123456789]].``?,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7).usn1 Unwind `7esn`[1e1] As `6esn` Union All Remove Any(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null).`4esn`,(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(_usn4 :`8esn`)<-[ *0X7..{#usn8:.e0 Contains $#usn8}]->(`2esn` :`6esn`:_usn3).@usn5!"), + octest:ct_string("Unwind 0X0123456789ABCDEF[..0xabc] As `8esn` Delete $7[$12..12e12][1.e1..9e1],Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..]) =~[_usn4 In 12e12 In 123456789 Where .0 Ends With Count ( * )|$`1esn` In .e0]"), + octest:ct_string("Remove Extract(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]|0x0[0.0]).`3esn`! Return Distinct 9e1 Ends With Count(*) Ends With $7 As `6esn` Limit _usn3 Contains 9e12 Contains `8esn` Union All Unwind $_usn4 Starts With 12.e12 As `2esn` Return Distinct ``[$`1esn`] Order By 123456789[12] Ascending,{usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}[[@usn5 In 9e0 Ends With $#usn8 Where 00 Contains Count ( * ) Contains 0x0]] Asc,Count ( * )[$`5esn`..][$7..] Desc Union With Distinct 123.654[$0..0X7][Null..#usn8] As `3esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc,Count ( * )[$`5esn`..][$7..] Desc Skip Extract(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999)[..Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1])] Limit None(#usn7 In 9e0[$1000] Where $_usn3 Is Null)[[0 =~1e1,$#usn8[12.e12..`8esn`][12.0..0.0],$1000 Is Not Null]..] Where $123456789 Contains $#usn8 Contains `` Merge _usn3=({`4esn`:.e1[..$`3esn`][..01]})-[`5esn`:#usn7|@usn5]-(`5esn` :`4esn`:`6esn`) On Create Set usn1 =`3esn`[123456789],`3esn` =9e1[.12][`7esn`]"), + octest:ct_string("Remove None(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]).`1esn`?,Extract(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null|0 =~1.e1 =~$#usn7).@usn5!,(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}).@usn5 Delete `2esn`[$usn2][12.0],{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}[Single(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7)..],(:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] Return Distinct *,1.e1 Ends With $#usn7 As usn2,@usn5[01][@usn5] Order By $`4esn`[..$`8esn`][..Null] Descending Skip `6esn` Is Null Is Null Union Create (((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),usn1=(`7esn` :`3esn`{`2esn`:999[123.654..$usn2][Count ( * )..0x0]})-[`2esn`?:usn1|`4esn` *00..0Xa]-(`4esn` :`4esn`:`6esn`) Unwind False[$usn1][0x0] As usn2"), + octest:ct_string("Unwind usn1[...e12][..1.e1] As #usn8"), + octest:ct_string("Delete `2esn` Starts With 12.e12 Starts With 12.0 Delete \"d_str\" Is Not Null,$usn1 Unwind {_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] As `6esn` Union All Delete .e0[...0][..$`2esn`] With Distinct *,@usn5 Contains #usn8 Contains 12.0,Any(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]) =~[9e12 =~@usn6,01 Ends With 0Xa Ends With 0X7,$@usn6[$0..9e12][.e12..Null]] Order By False[$usn1][0x0] Asc,Count ( * ) Ends With `6esn` Ends With 's_str' Asc,@usn6[12.0..0.12] Ascending Skip $usn1[`2esn`..][$`2esn`..] Limit 00[01234567][False] Detach Delete [9e12[9e1]][[_usn3[`2esn`..0X7][0.e0..$`3esn`]]..]"), + octest:ct_string("Create (:usn1:`3esn`{@usn6:.0 Ends With Count ( * )}),usn2=(@usn5 :@usn6{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[`8esn` *0xabc]-(:_usn3{_usn4:.e1[7..][9e0..]})"), + octest:ct_string("Merge _usn4=(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-(:#usn8:`1esn`{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}) On Match Set `8esn`+=0x0[``..],usn1+=0e0 Ends With 07 Ends With $`8esn`,_usn4 =$@usn6[12.0][12.0] On Create Set Filter(usn2 In 7[12] Where $`6esn`[1.e1][$_usn3]).``? =0Xa[$`8esn`..][$_usn4..],_usn4+=0X0123456789ABCDEF In $7 Remove None(_usn4 In 12e12 In 123456789 Where $usn2 Is Not Null Is Not Null).@usn5 Optional Match ((_usn4 :#usn7:`5esn`)-[`4esn`:`1esn`|`3esn` *12..]->({`7esn`:9e12 =~@usn6})),((:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[`1esn`:`8esn` *7..]-(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Where Count ( * )[$`5esn`..][$7..]"), + octest:ct_string("With *,All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] As `3esn`,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[usn2(Distinct #usn7 Contains $0 Contains $usn2,0.e0)..] As @usn6 Order By $`1esn` Ends With 0X0123456789ABCDEF Ascending Limit `4esn` Contains 9e0 Remove [#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|Count(*) Is Null].#usn7,{``:0Xa =~False =~@usn5,`8esn`:.12[123.654..]}.`6esn`!,Any(#usn7 In $999 In 1e1 Where usn1 =~$`7esn`).`1esn`!"), + octest:ct_string("Unwind `7esn` Is Null As @usn5 Return Distinct $#usn7 =~`2esn` As #usn7,usn1 Ends With 9e0 Ends With 9e0 As @usn5,{`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`}[Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..])] Skip Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])] Merge ((:`3esn`{@usn5:$`5esn` In _usn3 In 0.0})-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]->(:@usn5{#usn7:12e12 In $`5esn`})-[@usn5 *0X7..]->(`` $`6esn`)) On Match Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] Union With 123.654[$0..0X7][Null..#usn8] As `3esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc,Count ( * )[$`5esn`..][$7..] Desc Skip Extract(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999)[..Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1])] Limit None(#usn7 In 9e0[$1000] Where $_usn3 Is Null)[[0 =~1e1,$#usn8[12.e12..`8esn`][12.0..0.0],$1000 Is Not Null]..] Merge (`6esn` :@usn6)-[usn2?:`3esn`]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) On Create Set #usn8 =$_usn4[$`6esn`..] Merge ((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) On Create Set #usn8 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``|.12 In `8esn` In $#usn8]._usn4? =7 =~0.12,`6esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null,Any(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]).`3esn`! =(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null Union All Detach Delete 0[$`5esn`]"), + octest:ct_string("Delete 0X7 In $#usn7 Unwind {#usn8:1.e1 Is Null Is Null,_usn4:0xabc In 123456789 In 0x0}[All(@usn6 In 010[`5esn`] Where 00[1.e1..])..] As _usn4 Detach Delete [`6esn` In $`6esn`[``..][Count(*)..] Where $0[123.654..0.e0]][{`8esn`:$`4esn`[..$`8esn`][..Null]}..({usn2:_usn3[`2esn`..0X7][0.e0..$`3esn`]})<-[_usn4?:@usn6|:`7esn`]-(usn1 :`2esn`{@usn6:True Contains 's_str' Contains $usn1,``:$`4esn` Starts With 0 Starts With `7esn`})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})][None(`3esn` In `2esn`[..01][..True])..[0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF]] Union All Return Distinct *,{`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Skip (`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}) =~[12 In $usn1 In 7] =~Filter(@usn5 In 's_str'[0..] Where 0.e0) Limit `2esn` =~.e12 =~0X0123456789ABCDEF"), + octest:ct_string("Create ((usn1 :`5esn`{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})) With Distinct *,$`7esn`[$_usn4][.e0],`5esn` Contains `1esn` Contains usn1 As `2esn` Order By `4esn` Contains 9e0 Desc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Is Not Null Asc Skip [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] Limit $@usn6 =~#usn7 =~True Where $@usn5 In $`6esn` In 12e12 Union Create `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})),usn2=(#usn7 {_usn4:1.e1[`8esn`]})<-[usn2{`2esn`:$12 Starts With $usn1}]->(:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]}) Union With Distinct *,`5esn` Contains `5esn` Contains $_usn3 Order By 0xabc In Null Descending,12[.0] Ascending Skip None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Where .0 Ends With Count ( * ) Merge ``=(((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))) On Create Set usn1 =`3esn`[123456789],`3esn` =9e1[.12][`7esn`] Unwind 12.e12 Starts With 1000 As @usn5"), + octest:ct_string("Merge (usn1 :_usn3{`4esn`:$`6esn`[1.e1][$_usn3]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[?:`7esn`|:`2esn`{@usn5:usn2[1.e1],@usn6:$#usn8 Starts With .e12 Starts With 1.e1}]->({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]}) Remove _usn3(Distinct _usn3[`2esn`..0X7][0.e0..$`3esn`]).`8esn`"), + octest:ct_string("Merge (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) On Match Set [$0[123.654..0.e0],01234567[Null..$_usn3]]._usn4! ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,None(#usn7 In 9e0[$1000] Where 00[12..$`6esn`]).`7esn`? =`4esn`(Distinct)[`2esn`($`2esn`[..$`3esn`][..12e12])][Extract(@usn6 In 010[`5esn`] Where 1.e1[$usn1]|.e12[..999][..@usn5])],`5esn`+={`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}[Extract(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]|.e1[..$`3esn`][..01])..] Merge ((`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})) On Match Set `1esn` =All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null Union All Unwind $@usn6 In @usn6 In 1e1 As #usn7 With usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Skip $@usn6 Ends With `1esn` Limit 9e1 Ends With Count(*) Ends With $7 Delete $0[12.0...e1],_usn4[.12..$usn2][$_usn3..123.654],07[..07][..0X7]"), + octest:ct_string("Return Distinct *,(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] As `1esn` Skip 01[07..][1.e1..] Limit All(usn2 In 7[12] Where #usn8 Is Null Is Null)[[usn2 In 7[12] Where #usn7[.e0]]..] Detach Delete `` Is Null,12 Starts With $123456789 Starts With .e12,#usn7[$`3esn`..$1000][0.0..`2esn`] Union Remove {``:.0[..'s_str'][..01234567]}.@usn5!,[#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6]].`3esn` Return Distinct *,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``) Is Null Is Null Order By Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Ascending,$@usn5[..$#usn7] Descending,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip 9e1 Starts With Count ( * ) Limit {`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..] Union Unwind #usn8(@usn6[999..$_usn3][0.12..$@usn5])[..`1esn`(Distinct `5esn`[..123.654][...e12],01 Contains usn2 Contains 0X0123456789ABCDEF)] As _usn3 Detach Delete $`1esn`[``][07],`2esn` Starts With .e1 Starts With 9e12,$`4esn` In 1.e1 In #usn7"), + octest:ct_string("Remove usn1:#usn7:`5esn`,[@usn5 In 9e0 Ends With $#usn8 Where `1esn` Is Not Null Is Not Null|usn1 Is Null Is Null].usn2? With Distinct 0.e0['s_str'..][01234567..] As `7esn`,Single(_usn4 In 12e12 In 123456789 Where 0e0 =~7 =~12.0) Starts With Extract(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]|9e12 =~@usn6),[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Skip $`6esn`[1.e1][$_usn3] Limit usn1 Is Not Null Union Match (({#usn7:$@usn6[$0..9e12][.e12..Null]})) Match `6esn`=(((:`6esn`:_usn3)<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(`3esn` :_usn4{`3esn`:12[..0e0][...e1],`4esn`:.0 Is Null Is Null})-[usn2 *..07]->(`` {_usn3:`5esn` Contains `7esn`}))) Where $_usn4[$`5esn`][`7esn`]"), + octest:ct_string("Unwind {@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0} Contains [`1esn`[usn1][0xabc],`5esn` Contains `7esn`,$``[True]] As usn1 Return Distinct *,All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] As `3esn`,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[usn2(Distinct #usn7 Contains $0 Contains $usn2,0.e0)..] As @usn6 Order By $`1esn` Ends With 0X0123456789ABCDEF Ascending Limit `4esn` Contains 9e0 Match ``=((usn1 {_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})),`1esn`=((usn1 :_usn4{`4esn`:`7esn` Is Null})) Union With *,@usn5 Starts With $`3esn`,00[False..0e0] As `7esn` Order By 0.0[..Count ( * )][..`1esn`] Ascending,`1esn`[0.12..][@usn6..] Desc Skip True Contains .e12 Limit $0 =~9e1 =~$`2esn` Where 123.654[$0..0X7][Null..#usn8] Merge ((:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Optional Match @usn5=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Union Return Distinct 0x0[..9e0],Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By 1.e1[12..][$`4esn`..] Asc,Null[..010][..1000] Descending,Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] Descending Limit 1.e1[12..][$`4esn`..]"), + octest:ct_string("Unwind $_usn4 =~_usn3 As _usn3 Merge usn2=(({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`)) Unwind $#usn7 Ends With \"d_str\" As `7esn` Union All Merge `5esn`=(((usn1 :`8esn`)<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[? *0xabc]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]}))) On Create Set Any(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]).`4esn`? =12.0[0X0123456789ABCDEF..],Extract(@usn5 In 's_str'[0..] Where $#usn8[12.e12..`8esn`][12.0..0.0]|123.654[$0..0X7][Null..#usn8]).#usn8! =12 Starts With \"d_str\" Starts With 00,`2esn` =12.0[$12..$_usn4] Unwind 0x0[..9e0] As #usn8 With Distinct 0e0[``],0X7 In $#usn7 Limit 12e12[12e12][$#usn7]"), + octest:ct_string("Merge _usn3=((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(_usn3 :usn1:`3esn`)<-[`7esn`? *..010{usn2:12 Ends With Count ( * ),#usn8:`8esn` Contains `2esn` Contains .0}]->({`6esn`:'s_str' Contains 12.e12 Contains $`4esn`})) On Match Set #usn8+=Count(*)[$@usn5],@usn6 =0 =~1e1,`2esn`+=Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) On Match Set `8esn`+=#usn8[..`8esn`],_usn4 =0e0 Ends With 07 Ends With $`8esn` Unwind .12[0X7..][12e12..] As `4esn` Return *,`2esn`[..$_usn4][...12] As `6esn`,`1esn` Starts With 9e1 As `6esn` Order By 01 Ends With 123456789 Desc,1.e1[12.e12..] Desc,\"d_str\" Is Not Null Ascending Skip [#usn7 In 9e0[$1000] Where `6esn`[$1000][`3esn`]][Extract(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1|010 Starts With $`` Starts With 0e0)..] Limit @usn6 =~999 =~@usn5 Union All Remove `5esn`:@usn5,{#usn8:$0[123.654..0.e0]}.@usn6!,{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF}.#usn8!"), + octest:ct_string("Merge `1esn`=(`5esn` :`5esn`{#usn7:``[$`3esn`]}) On Create Set @usn6+=$`1esn` =~1e1 On Match Set Any(`3esn` In 9e1 Contains $999 Where usn2[12.e12..]).usn1? =usn1[False..`5esn`][$1000..$12],#usn7 =Single(#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6])[Filter(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])..],Any(#usn8 In `7esn` Where .e12 Starts With $#usn8 Starts With False)._usn3? =1.e1 Ends With $#usn7 With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Order By 1.e1 In 1000 In _usn3 Desc,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Descending,123.654 Is Null Is Null Asc Where _usn4[`7esn`] Union All Remove (:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`8esn`{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})-[``?:`3esn` *12..]-(#usn7 {`1esn`:$`4esn` Is Null Is Null}).usn2?,Single(`3esn` In 9e1 Contains $999 Where $`8esn` Is Null Is Null).`6esn`? Delete $0[0Xa..$123456789],[usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Union All Create (((`4esn` :``:usn2)<-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]-({`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[:_usn4{`8esn`:12.e12 Is Not Null Is Not Null,#usn7:@usn6[Null...0][\"d_str\"..Count(*)]}]-(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False}))),#usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) Unwind Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null] As `3esn` Merge ``=(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]->(_usn4 {_usn4:Null[..010][..1000],_usn3:.0 Is Null Is Null}) On Match Set [$`7esn`[.e1][12.0]]._usn3! =123.654[..0.e0][..'s_str'],`2esn`+=.e0 =~Null,``:#usn7:`5esn` On Create Set None(`8esn` In 123456789 =~@usn6 Where Count(*) Ends With usn1).`7esn`! =All(usn2 In 7[12] Where #usn8 Is Null Is Null)[[usn2 In 7[12] Where #usn7[.e0]]..]"), + octest:ct_string("Match #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Where `6esn` Starts With `6esn` Match #usn8=(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Optional Match (:`3esn`{@usn6:$`5esn` =~$`8esn` =~usn2,`8esn`:12[..0e0][...e1]}),@usn5=(:@usn5{#usn7:12e12 In $`5esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})-[?*]-({`8esn`:`5esn` Contains #usn7 Contains 9e12}) Union All Unwind .e0[9e12..] As usn2 Union All Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}))"), + octest:ct_string("Create ((`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})),`5esn`=(((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Union All Unwind [#usn8 In `7esn` Where usn2[07..][.0..]|$usn1 Ends With _usn4 Ends With `2esn`] Contains (_usn3 {#usn7:1000[12e12][`5esn`]})-[`3esn`?:`3esn`]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0}) Contains Extract(`3esn` In `2esn`[..01][..True] Where usn1 In ``) As usn1 Return *,9e0[..123456789][..$`3esn`] As #usn7 Order By 999 In 0e0 Ascending Merge ((({usn2:_usn3[`2esn`..0X7][0.e0..$`3esn`]})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]-(_usn3 )<-[? *..010{usn1:9e1[_usn3]}]->(`5esn` {`4esn`:0x0[usn1..usn1],usn1:$`5esn`[0X7..010][`7esn`..'s_str']}))) Union All Detach Delete $#usn8[True][9e0],None(_usn4 In 12e12 In 123456789 Where 1.e1 =~.12)[[$`4esn`[0..][999..],0x0[Count(*)..@usn6][Count(*)..0Xa],12e12 In $`5esn`]..],0.0 Contains #usn7 Match (((`` $`6esn`)<-[usn2*{_usn3:0.e0[0X0123456789ABCDEF..],`8esn`:$`5esn` In 07 In 00}]-(`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}))),(((`` $`6esn`)<-[usn2*{_usn3:0.e0[0X0123456789ABCDEF..],`8esn`:$`5esn` In 07 In 00}]-(`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}))) Where $@usn6 In @usn6 In 1e1"), + octest:ct_string("Unwind [#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)][All(#usn7 In True Contains 's_str' Contains $usn1 Where 0[1e1][$usn1])..][(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[ *0x0..]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..] As usn2"), + octest:ct_string("Remove Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..]).#usn8!,({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[:_usn3|:`7esn` *..07]->(`4esn` :_usn4).`7esn`!,None(#usn7 In True Contains 's_str' Contains $usn1 Where .e12[$@usn6..00][01234567.._usn3])._usn3! Detach Delete $@usn5 Contains 's_str' Contains \"d_str\",010 Is Null,Count(*)[..@usn6][..`7esn`]"), + octest:ct_string("Remove [@usn5 Starts With $`3esn`].`2esn`?,_usn3(Distinct .0[..'s_str'][..01234567],$#usn7 Contains $`7esn` Contains .e12).usn1 Delete 010 Is Not Null Is Not Null Remove (:`1esn`:_usn4{`8esn`:#usn8 Is Null Is Null})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]})-[`2esn`?:@usn6|:`7esn`]->(#usn8 :@usn5{_usn4:$#usn7 Contains $`7esn` Contains .e12}).`7esn`?"), + octest:ct_string("Create `8esn`=(((`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})<-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))),`4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}) Union Return Distinct *,`6esn`,01234567[$`2esn`][0Xa] Limit None(#usn7 In 9e0[$1000] Where $_usn3 Is Null) In [@usn5 In 's_str'[0..] Where $#usn8[12.e12..`8esn`][12.0..0.0]|`4esn` Ends With 12 Ends With .12] In [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12] Return `6esn`[`5esn`..00],$1000 Is Null Is Null,0.0[usn1..] As `3esn` Limit All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] With (`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})<-[`8esn`? *0Xa{#usn8:$``[True]}]->(:`7esn`{usn2:@usn5 Is Not Null}) Is Null Is Null,$#usn8 Ends With `3esn` Ends With $`` As #usn7,{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]}[#usn7(Distinct $`1esn`[``][07])..None(@usn6 In 010[`5esn`] Where $`3esn` Ends With 01234567)] As _usn3 Order By @usn6 =~999 =~@usn5 Ascending,``[7.._usn3] Descending,All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) Is Not Null Is Not Null Ascending Skip #usn8 Ends With $@usn5 Ends With $7 Limit #usn8[`8esn`..] Union All Return *,0X7[`2esn`..] As `6esn`,$`1esn` Contains 1e1 Contains @usn6 As `3esn` Order By $_usn3[_usn4..] Descending,9e1 Contains $999 Ascending With _usn4(Distinct usn2[07..][.0..]) Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]|$`2esn` Starts With `4esn` Starts With $usn1) Ends With Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2),None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]) Is Null As `5esn` Remove _usn4(.12[0X7..][12e12..],9e1).#usn7!,All(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).`8esn`"), + octest:ct_string("Detach Delete `7esn` Ends With $7 Ends With $@usn5,0X0123456789ABCDEF Is Not Null Is Not Null,All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1)[None(@usn6 In 010[`5esn`] Where 00[1.e1..])..[$12[$usn1..][Count(*)..],$@usn5 Contains 's_str' Contains \"d_str\"]][Extract(`3esn` In 9e1 Contains $999 Where 0e0 Starts With 999 Starts With `2esn`|9e1 Ends With Count(*) Ends With $7).._usn4(`1esn`[0.12..][@usn6..],#usn8 =~0.e0)] Union All Return *,All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],12 In $usn1 In 7 As `8esn` Skip None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1) Limit $@usn5 Starts With .e1 Match `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((:#usn7:`5esn`{`3esn`:Null[..0]})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->(`6esn` :#usn7:`5esn`{_usn3:_usn4 Is Null Is Null})) Where $`5esn` =~usn1 Unwind #usn8 Is Null Is Null As `8esn` Union All Remove Single(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).#usn7,usn2(.12 Starts With _usn3 Starts With $``)._usn3,`4esn`:`3esn` Unwind {`3esn`:.e1[..\"d_str\"][..$123456789]} As `3esn`"), + octest:ct_string("Return Distinct *,None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0) Order By 0X0123456789ABCDEF In $usn2 In `4esn` Descending,0xabc In .12 In 0Xa Desc,01[$`7esn`..$@usn6] Ascending Skip 123.654[`4esn`..12] Create ((#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[`7esn`? *0Xa{@usn5:123.654 Is Not Null}]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`})) Union All Return Distinct 0Xa In #usn7 In 's_str' Limit 9e1[$1000][7] Return Distinct $usn2 =~1.e1 =~usn1 As `8esn`,``[$`3esn`] Order By 00[$`6esn`.._usn3][12e12..``] Desc Union Detach Delete {`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null,12[None(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)..`5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12])][`5esn`(`2esn`[..01][..True])..(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})<-[? *7..]-(#usn7 :``:usn2)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})],12.0 =~@usn6 =~$`2esn`"), + octest:ct_string("With Distinct 12[$`5esn`..][False..] As `4esn`,0e0 Ends With 07 Ends With $`8esn` As `1esn` Limit All(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`)[Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null)..][Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..])..] Union Unwind Extract(@usn6 In 010[`5esn`] Where 00[$usn1..]|_usn3[$usn2..][$``..])[Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])] As _usn3"), + octest:ct_string("Merge ((`4esn` :`4esn`:`6esn`)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})) Create ((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})),@usn5=(({@usn5:$`5esn` Is Not Null Is Not Null})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1}))"), + octest:ct_string("Unwind All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]) =~All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where .e12[..999][..@usn5]) =~Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) As _usn4 Detach Delete $@usn6 Ends With `1esn` Union Merge (((:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]-({`7esn`:9e12 =~@usn6})<-[ *0x0..]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})))"), + octest:ct_string("Unwind [@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00|`5esn`[$`7esn`..$@usn5]] Is Not Null Is Not Null As @usn5 Create (((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),usn1=(`7esn` :`3esn`{`2esn`:999[123.654..$usn2][Count ( * )..0x0]})-[`2esn`?:usn1|`4esn` *00..0Xa]-(`4esn` :`4esn`:`6esn`)"), + octest:ct_string("Match `1esn`=(`3esn` )-[`7esn`:`4esn`|@usn5 *12..]-({`1esn`:#usn7[0]}),(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}) Where .0[$``..0X7] Union All Create ((`1esn` :usn2)),`2esn`=(`5esn` :``:usn2)<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)"), + octest:ct_string("Return 12e12[0x0..12.e12] As `1esn`,.e1[7..][9e0..] As `4esn`,$#usn8 Starts With .e12 Starts With 1.e1 As `8esn` Order By $`5esn` In `2esn` In `2esn` Asc,0.0[..Count ( * )][..`1esn`] Ascending,[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )] Ascending Optional Match (((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Where usn1[..$@usn6][..00] Unwind 0e0[999..$``] As usn1"), + octest:ct_string("With *,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3])[..{`8esn`:usn2 =~7,`5esn`:.e0[01234567..$`8esn`]}][..Any(@usn6 In 010[`5esn`] Where False[$`4esn`..])] As #usn8,$#usn7 Contains $`7esn` Contains .e12 As @usn5 Limit (:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}) Where 01[`3esn`..][Count(*)..] With Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Order By @usn5[0..] Ascending,$@usn5 In $`6esn` In 12e12 Desc,#usn7 In 0.e0 Desc Skip {`8esn`:$_usn4 Starts With 12.e12} Is Null Is Null Limit 999 Contains $1000 Optional Match `2esn`=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}),`8esn`=((:#usn8:`1esn`)-[ *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})) Where .e1 In 123456789"), + octest:ct_string("Unwind .e1[7..][9e0..] As `4esn` Delete [$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][None(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..])..],$@usn5 In 12e12 In 01,All(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0)[(:#usn7:`5esn`)<-[#usn8? *0Xa]-(`5esn` :`5esn`{#usn7:``[$`3esn`]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc})..] Remove Extract(`3esn` In `2esn`[..01][..True] Where $@usn6[$`8esn`..][123456789..]|_usn4 Is Null Is Null)._usn4?"), + octest:ct_string("Return _usn4[@usn6..][$0..],[$usn2 =~1.e1 =~usn1,$usn1 Starts With usn1 Starts With True,$1000 Starts With $`3esn` Starts With 0.e0] In (`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]-(`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]}) In None(`3esn` In 9e1 Contains $999 Where 12.0 Starts With .12 Starts With `6esn`),@usn5 Contains #usn8 Contains 12.0 As `4esn` Limit Any(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null) Is Null Union All Remove `5esn`($`4esn` In 1.e1 In #usn7,0Xa[Count(*)..]).`5esn`,(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`).`3esn`,None(#usn8 In `7esn` Where 9e12[..1e1][..'s_str'])._usn4? Union All Create `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}),(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}) With *,#usn7[``] As usn1,None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6) =~Single(`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8) =~(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]}) Order By $@usn6 In @usn6 In 1e1 Desc,.e1[..$`3esn`][..01] Desc Limit _usn3 Is Null Is Null Unwind 9e0[Count(*)..0.12][$`1esn`..12.0] As @usn6"), + octest:ct_string("Create `1esn`=(`3esn` )-[`7esn`:`4esn`|@usn5 *12..]-({`1esn`:#usn7[0]}),usn1=((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})) Return Distinct #usn7[`8esn`..usn1][$999..`7esn`] As #usn8,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] As `8esn`,999 In #usn8 In $`` Order By 999[12.e12] Desc,07 Ascending,[`6esn` In $`6esn`[``..][Count(*)..] Where $`6esn`[1.e1][$_usn3]|$`5esn` Is Not Null Is Not Null][{`6esn`:usn2 =~usn1 =~Count ( * ),@usn5:999 Is Not Null Is Not Null}..] Desc Merge #usn8=((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})) On Match Set [12e12 =~1e1,0X7[..$`8esn`]].`7esn` =1e1 Ends With $`2esn`,`8esn`+=01[$`7esn`..$@usn6] On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``|.12 In `8esn` In $#usn8]._usn4? =7 =~0.12,`6esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null,Any(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]).`3esn`! =(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null Union Unwind {#usn7:$usn2[0.e0],`6esn`:.e1[..\"d_str\"][..$123456789]}[..Extract(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999|Count ( * ) In 0.12)][..[@usn6 In 010[`5esn`] Where 's_str' Starts With 9e0 Starts With usn2|$`5esn` =~$0 =~``]] As usn1 Unwind {@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0} Contains [`1esn`[usn1][0xabc],`5esn` Contains `7esn`,$``[True]] As usn1 Union Remove (`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})<-[usn1:_usn4]-(#usn7 :@usn6).@usn5?,[@usn5 In 's_str'[0..] Where #usn7[0.12..]|.e12 Ends With 0Xa Ends With 0xabc].`1esn`? Remove [$usn2[0.e0],#usn8 Is Not Null Is Not Null,.12[01][@usn5]].`7esn`!,[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789|123.654[`4esn`..12]]._usn3? Remove Any(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF]).usn1!,[Count(*) Starts With usn2 Starts With `7esn`,07[$`2esn`..9e12][$`4esn`..9e12],9e1 Is Not Null Is Not Null].`2esn`?"), + octest:ct_string("Unwind (:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Is Not Null As usn1"), + octest:ct_string("Remove [@usn6 In 010[`5esn`] Where 1.e1[$usn1]|_usn3[0x0]].usn2?,usn1().usn1?,Extract(@usn5 In 's_str'[0..] Where #usn7[0.12..]).@usn6! Optional Match (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3),(@usn6 :`4esn`:`6esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`2esn`?:`6esn`|:#usn8{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`}]-(_usn3 {_usn3:0.12 Starts With $`8esn` Starts With @usn5}) Return Distinct *,`3esn`[12..1000][\"d_str\"..1000],@usn6[123.654..][0x0..] As _usn3 Order By $999 In 1e1 Descending,True[..#usn8] Ascending,#usn8 Starts With $1000 Starts With $@usn5 Ascending Skip ``[..#usn8]"), + octest:ct_string("Remove Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 7[0e0..]).`8esn`!,(_usn4 :`1esn`:_usn4)<-[?:`6esn`|:#usn8 *00..0Xa]-(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]}).@usn5! Unwind @usn5[0..] As usn2"), + octest:ct_string("Return 0.0 Contains #usn7 As #usn8,Extract(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|.e1[usn2..$_usn3][.0..$#usn7]) Order By Any(`6esn` In $`6esn`[``..][Count(*)..] Where 1e1 Ends With $`7esn` Ends With .0) Is Not Null Descending,#usn8 Ends With $@usn5 Ends With $7 Desc,usn2[12.e12..] Asc Skip 12.0[$1000..][#usn7..] Limit $`2esn`[0..123456789][``..`1esn`] Delete Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`2esn` =~9e12) Is Null Is Null,0Xa Contains `8esn` Contains 0xabc,Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1) Union Detach Delete 12.e12 =~0X0123456789ABCDEF =~1.e1,$`8esn` Ends With 0x0 Ends With 0e0 Remove (@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`})-[@usn6?{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null}]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}).@usn5?,(`8esn` :@usn6{`7esn`:0e0[999..$``]})-[`6esn`? *01234567..]->(`8esn` {`5esn`:$@usn5 In $`6esn` In 12e12})-[?:`` *7..]-(#usn8 {usn2:12.e12[..$`6esn`],`4esn`:1e1 Contains 's_str' Contains `3esn`}).#usn8 With 0.12 Starts With $`8esn` Starts With @usn5 As @usn5,#usn7 Is Null Is Null As `1esn`,[@usn5[$`6esn`..][$999..],`` Starts With $123456789] Is Null Order By Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) Ascending,'s_str' Starts With 1e1 Starts With $0 Desc Where .e1[7..][9e0..] Union All Delete 0.0[..Count ( * )][..`1esn`] With 0Xa In #usn7 In 's_str',`4esn` Starts With 0e0 As `7esn` Skip $1000 Is Not Null Limit 0X7['s_str'..][01..] Unwind 123.654 In $999 In _usn3 As usn2"), + octest:ct_string("Detach Delete `3esn` Starts With 9e0 Starts With usn1 Remove All(`6esn` In $`6esn`[``..][Count(*)..] Where 0X7['s_str'..][01..]).`2esn`!,(`3esn` {usn2:$usn2[`4esn`..9e12]})<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[_usn4?:@usn6|:`7esn`]->(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}).`4esn` Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] On Create Set `6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn1+=`4esn`[$_usn3..$`7esn`]"), + octest:ct_string("Match ((`2esn` :_usn3)-[? *0xabc{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})),({@usn5:$`5esn` Is Not Null Is Not Null})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Union All Delete $@usn5[..0xabc][..$`3esn`] Create ((`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})),(((@usn6 )<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null}))) Return 0X7[`2esn`..] Order By 0[@usn5..$#usn7] Ascending"), + octest:ct_string("Return Distinct Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..],@usn5 Contains #usn8 Contains 12.0 As `6esn` Order By @usn5 Is Not Null Asc,All(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]) Is Not Null Is Not Null Ascending Skip #usn8 Is Not Null Is Not Null Merge ((`3esn` :usn2{`6esn`:#usn8 Is Null})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->(`7esn` {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01})) On Match Set `5esn`+=[`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})] Union All Unwind @usn6[123.654..][0x0..] As usn1 Remove Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0 =~1e1).`8esn`!,[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]|_usn3 Contains _usn4 Contains $@usn5].usn2!,{`4esn`:_usn4[@usn6..][$0..],@usn5:$@usn6 In @usn6 In 1e1}.`3esn`! Match usn1=((`3esn` {usn2:$usn2[`4esn`..9e12]})<-[?{@usn5:_usn3 Ends With 7 Ends With $`1esn`}]->(_usn3 :_usn4)<-[_usn4?:`3esn`]-(:_usn3{_usn4:.e1[7..][9e0..]})),usn1=(({#usn7:12e12 In $`5esn`})<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}))"), + octest:ct_string("Delete $`8esn`[12.e12][_usn4] Optional Match (({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn4?:@usn6|:`7esn`]-({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn3?:_usn3|:`7esn`]->(`3esn` {`8esn`:`7esn` In 010 In usn1})) Union All Detach Delete Single(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) Contains Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0[1e1][$usn1]) Contains {`4esn`:9e1 Contains 12},@usn6 In .12 In `3esn`,@usn6 In .12 In `3esn` Return 0.e0[$`4esn`..`2esn`],12.e12 Starts With \"d_str\" Starts With 9e1,{``:00 In @usn6 In 0}[(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})] As `5esn` Skip Extract(#usn7 In $999 In 1e1 Where `5esn`[..True][..0.e0]|$`5esn` =~$0 =~``) In (:`7esn`{#usn8:0Xa Ends With $`3esn` Ends With $1000})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]}) In Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|999 Contains 0 Contains $`5esn`) Create (((usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[#usn8 *0x0..]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[_usn4 *00..0Xa{`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]}]-(usn2 :`5esn`{_usn4:`2esn` In 9e0 In 7,@usn5:9e1[`1esn`..0][999..1e1]})))"), + octest:ct_string("Unwind Any(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) =~[#usn7 In 9e1[$`1esn`..] Where 0Xa Ends With $`3esn` Ends With $1000|$@usn5 Contains 's_str' Contains \"d_str\"] =~Extract(@usn6 In False Contains 0 Contains $`6esn` Where $`6esn` Starts With .e12 Starts With $`1esn`|12e12 In 123456789) As #usn7 Remove Extract(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1|010 Starts With $`` Starts With 0e0)._usn3!,1000.`2esn`? Remove None(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`).@usn6?,[Count ( * ) In True In @usn5,#usn7[0.12..],1000[0e0][1e1]].`3esn`?"), + octest:ct_string("Match `6esn`=((:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]})),`3esn`=(:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Where 999 Is Null Is Null"), + octest:ct_string("Remove Extract(#usn8 In `7esn` Where 9e12[$`5esn`..$123456789]|`1esn` Starts With 0xabc Starts With $usn2).`5esn`,{@usn6:0e0 =~7 =~12.0}._usn3!"), + octest:ct_string("Detach Delete None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0),0e0 Starts With 999 Starts With `2esn` Merge (:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Remove Extract(@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00|01[..01234567][..$_usn3]).`6esn`?,None(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null).`5esn`"), + octest:ct_string("Merge (((:`7esn`{_usn3:@usn5[0.0..0X7]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]}))) On Match Set @usn5+=$0[123.654..0.e0],Any(`8esn` In 123456789 =~@usn6 Where .e1 =~_usn4 =~_usn4)._usn3? =01[..$`8esn`][..9e0],usn1 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) On Create Set [#usn7 In 9e1[$`1esn`..] Where 00 Ends With $`1esn` Ends With `7esn`].`2esn` =All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null),``:@usn5,@usn5+=12.e12[_usn4..$1000][$7..$999] Delete {#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]} Return {#usn8:1.e1 Is Null Is Null,_usn4:0xabc In 123456789 In 0x0}[All(@usn6 In 010[`5esn`] Where 00[1.e1..])..],`5esn`(0[1e1][$usn1],Null =~`6esn`)[usn2(Distinct)..][Single(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7)..] As `1esn`,12.0 Starts With $`2esn` Starts With .e1 Order By [#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Ascending Skip `1esn`(#usn7[..07])[..[#usn8 In `7esn` Where 9e1 Starts With Count ( * )|`3esn` Starts With 9e0 Starts With usn1]] Limit _usn3 =~`2esn` =~0 Union Remove All(_usn4 In 12e12 In 123456789 Where .e1 Starts With 12.e12 Starts With `2esn`).`3esn`!,Extract(#usn7 In 9e0[$1000]|9e12[$`5esn`..$123456789]).@usn5! Remove {_usn3:_usn4 Is Null Is Null}.``,``(@usn6[`1esn`..]).`7esn`! Remove All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]).`2esn`,[1000[..`2esn`][..$@usn6],Count(*) Is Null].`4esn`!,`8esn`:`5esn`"), + octest:ct_string("Create (((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))) Match @usn6=((usn1 :_usn3{`4esn`:$`6esn`[1.e1][$_usn3]})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})) Where 1e1 In 0.0 In 0X0123456789ABCDEF With (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Order By usn1 Ends With 9e0 Ends With 9e0 Descending,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Descending Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Union All Create (`5esn` :``:usn2)-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}) Return _usn3[`2esn`..0X7][0.e0..$`3esn`] As `7esn` Order By [usn2[12e12..]['s_str'..]] =~Single(`8esn` In 123456789 =~@usn6 Where $`4esn`[`4esn`][Count(*)]) Ascending,`4esn`[\"d_str\"]['s_str'] Ascending,.12 In `8esn` In $#usn8 Asc Skip None(@usn6 In 010[`5esn`] Where 123.654 In $`7esn`)[(`` {`7esn`:$#usn7[..0Xa]})<-[`1esn`?:usn1|`4esn` *00..0Xa]-(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[usn1? *01234567..{@usn5:01[`3esn`..][Count(*)..]}]->(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})..[False Contains 0 Contains $`6esn`,`1esn` Is Not Null Is Not Null]] Limit [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Contains Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|@usn5 Contains #usn8 Contains 12.0) Detach Delete {`2esn`:12.e12 Is Not Null Is Not Null,``:Count ( * ) In True In @usn5} Ends With {`7esn`:$1000 Starts With $`3esn` Starts With 0.e0,``:$`2esn` Is Null} Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]],$`5esn`[0X7..010][`7esn`..'s_str'] Union Unwind None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])[..[_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4]] As `4esn`"), + octest:ct_string("Delete _usn4[$usn1..01234567][123.654..`5esn`] With *,1.e1 Ends With $#usn7 As usn2,@usn5[01][@usn5] Skip $`5esn` Limit (`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Is Not Null Union Delete {#usn8:0e0 =~0Xa =~$999,`7esn`:`3esn`} In [#usn7 In True Contains 's_str' Contains $usn1 Where Count(*) Ends With usn1] In None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Is Not Null Is Not Null) Merge (_usn3 :`4esn`:`6esn`)-[?:@usn6|:`7esn`]-(:#usn8:`1esn`)-[_usn3?]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Detach Delete $_usn3,[Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1]"), + octest:ct_string("Detach Delete (`5esn` :`6esn`:_usn3)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({#usn8:False Starts With 0X7 Starts With 01234567})<-[usn2?{``:$`1esn`[``][07]}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7}) Is Null Is Null,[`5esn` Contains `1esn` Contains usn1,$@usn5 Ends With @usn5 Ends With 0xabc] Is Null Is Null Return Distinct `1esn`(.0 Starts With `1esn`,01[`3esn`..][Count(*)..]) In [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] As `4esn`,`7esn`[$usn1..]['s_str'..] Detach Delete 01[`3esn`..][Count(*)..],usn2[07..][.0..] Union Remove (:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(_usn4 :#usn7:`5esn`)<-[_usn4]->(`1esn` {#usn7:$`1esn` Ends With 0X0123456789ABCDEF,`3esn`:.12 Starts With _usn3 Starts With $``}).`6esn` Remove Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|$@usn5 Ends With @usn5 Ends With 0xabc).#usn7"), + octest:ct_string("Remove {``:.e12 Ends With 0Xa Ends With 0xabc}.usn2? Union Merge `2esn`=(((:`6esn`:_usn3)<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})-[#usn7?:`7esn`|:`2esn` *..07]-(#usn7 {#usn7:1.e1 Starts With 9e12}))) On Create Set usn2+=$12 Starts With $0 Starts With $`8esn`,`1esn`+=12.0 Starts With .12 Starts With `6esn`"), + octest:ct_string("Remove [`3esn` In `2esn`[..01][..True] Where 00[01234567][False]].`7esn`!,Any(usn2 In False[$usn1][0x0] Where 12.e12 =~0X0123456789ABCDEF =~1.e1)._usn3,Extract(#usn7 In 9e1[$`1esn`..] Where $`7esn`[$_usn4][.e0]|$`3esn`[..$1000][..$123456789]).`1esn`? Union All Return Distinct *,$_usn4[9e0..][$1000..] As `2esn` Order By $12 =~0X7 =~0x0 Ascending,1e1[_usn3] Asc"), + octest:ct_string("Create `4esn`=((@usn5 {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})),_usn3=(`8esn` :`2esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`6esn`]->({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) Match ((#usn7 {`6esn`:$`2esn` Contains Count(*)})-[?:_usn4]->(`2esn` :usn2)) Remove `1esn`:@usn5 Union With 12[..0e0][...e1] Order By `4esn` =~$`3esn` =~@usn5 Descending,1000[7..$12] Ascending,True Ends With $_usn3 Ends With 12 Desc Delete `1esn`[`3esn`..],9e12[$`5esn`..$123456789]"), + octest:ct_string("Remove {`1esn`:0xabc =~$@usn5}.#usn8 With Distinct *,None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] As #usn7,12 Is Not Null As `6esn` Order By Null[.12..12e12] Descending Detach Delete $`5esn` In 07 In 00 Union With Distinct 999[12e12..$_usn4] Order By Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,0X7[.0] Asc,$`3esn`[..0X0123456789ABCDEF][..7] Descending Limit #usn7 =~9e12 Where _usn4 Contains `` Contains 1.e1"), + octest:ct_string("Return Distinct *,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``) Is Null Is Null Order By Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Ascending,$@usn5[..$#usn7] Descending,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip 9e1 Starts With Count ( * ) Limit {`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..]"), + octest:ct_string("Create `8esn`=(usn2 :`7esn`)-[? *7..{#usn7:`4esn`[123456789]}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )}),_usn4=((`2esn` {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]-(`1esn` :``:usn2{@usn5:`4esn`[\"d_str\"]['s_str']})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})) Union With Distinct *,1e1 Is Not Null Is Not Null Where `7esn` Ends With $7 Ends With $@usn5 Union All With *,$`7esn`[$_usn4][.e0],`5esn` Contains `1esn` Contains usn1 As `2esn` Order By `4esn` Contains 9e0 Desc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Is Not Null Asc Skip [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] Limit $@usn6 =~#usn7 =~True Where 12.0 Is Null Remove Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 7[0e0..]).`8esn`!,(_usn4 :`1esn`:_usn4)<-[?:`6esn`|:#usn8 *00..0Xa]-(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]}).@usn5! Match `4esn`=((@usn5 {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})),_usn3=(`8esn` :`2esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`6esn`]->({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})"), + octest:ct_string("Merge `3esn`=((`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) Remove Filter(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7).#usn8?,[$#usn7 Ends With 's_str' Ends With 0X7,12e12 Ends With 0.0 Ends With usn1].@usn6?,usn2(usn1 Ends With 9e0 Ends With 9e0).`4esn`? Union All Match usn2=((#usn7 {`8esn`:`7esn` In 010 In usn1})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})),@usn5=(:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']}) With *,1.e1 =~$_usn4,9e12 Contains $_usn3 Contains \"d_str\" As @usn5 Order By `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] Desc,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,$@usn5 Descending Where `6esn`[$1000][`3esn`]"), + octest:ct_string("Detach Delete @usn6 Is Not Null Is Not Null,01 Contains usn2 Contains 0X0123456789ABCDEF,None(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])[Any(`3esn` In `2esn`[..01][..True] Where $`3esn`[..0xabc][..$7])][$#usn7] Union With (`2esn` {`7esn`:999 In 0e0})<-[`8esn`?:`2esn`|`4esn` *01..123456789{`8esn`:$`4esn` Is Null Is Null,usn1:$1000 Starts With $`3esn` Starts With 0.e0}]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[ *0X7..{#usn8:.e0 Contains $#usn8}]->(`2esn` :`6esn`:_usn3) In (`8esn` :`6esn`:_usn3)-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(_usn4 {_usn4:123.654 In 12})-[?:#usn8|:`3esn` *0x0..]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) In {_usn4:.e0 Contains $#usn8,@usn6:1000[12e12][`5esn`]},`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] As @usn5 Order By Count(*) Is Null Ascending,#usn8[..`8esn`] Ascending,None(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1) Contains `3esn`(Distinct $123456789[...12][..@usn6]) Contains {``:`1esn` Starts With 0xabc Starts With $usn2} Descending Skip (`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[``? *0x0..{`6esn`:$`2esn` Contains Count(*)}]->(`6esn` :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`3esn` {``:9e1 Is Null,usn1:9e0[Count(*)..0.12][$`1esn`..12.0]})[..{`6esn`:.e12 Is Null Is Null}]"), + octest:ct_string("Merge `3esn`=(usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})-[@usn5?{#usn7:12e12 In $`5esn`}]->(`8esn` :`8esn`) Unwind 0.12[$0..$usn2] As `7esn` Union All Remove Any(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null).@usn6!,[$0 In `3esn` In 07,123456789 Contains 0.0 Contains $@usn6].#usn8! Union Optional Match #usn8=(({`8esn`:usn2 Starts With .0,@usn5:Count(*) In 12 In `6esn`})<-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]->({`8esn`:usn2 Starts With .0,@usn5:Count(*) In 12 In `6esn`})-[`7esn`?]->(:#usn7:`5esn`)),@usn5=((:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})) Match @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) With Distinct *,999 Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains {_usn3:123.654 In $`7esn`} As `6esn`,.e0 Is Not Null Is Not Null As `7esn` Order By _usn3 In $`8esn` In @usn6 Desc"), + octest:ct_string("Delete Count ( * )[9e12],12.0 Is Null,$@usn5[0.0][0X0123456789ABCDEF] Optional Match ((_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`})-[?:`2esn`|`4esn`{@usn5:0.e0}]-(`1esn` $`4esn`)),(_usn3 :`7esn`)-[*..{``:.e1 Starts With 12.e12 Starts With `2esn`}]-(#usn7 :_usn3) Remove [999 Is Not Null Is Not Null,123.654 In $`7esn`].`6esn` Union All Remove {usn1:0 =~1e1,`7esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}.usn1!,None(`5esn` In `7esn`[$usn2..][$123456789..] Where $123456789[...12][..@usn6]).usn2? Unwind $#usn8[..$999] As #usn7 Optional Match _usn4=((:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})),(`2esn` :`1esn`:_usn4)-[?*..]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})"), + octest:ct_string("Remove Extract(`6esn` In $`6esn`[``..][Count(*)..] Where 9e0[Count(*)..0.12][$`1esn`..12.0]|`2esn`[..01][..True]).#usn8!,[.0[$``..0X7],'s_str'[0..],0.0[usn1..]].`1esn`? Return Distinct usn2[12.e12..] As `2esn` Order By $@usn5 In $`6esn` In 12e12 Desc,07[_usn3..][`6esn`..] Descending,$`4esn` Contains _usn3 Contains `8esn` Asc Limit 0x0[0X7]"), + octest:ct_string("Detach Delete Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3),$#usn8 Ends With `3esn` Ends With $``,01 Ends With .12 Ends With 07 Optional Match #usn8=(((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Where .12[123.654..]"), + octest:ct_string("With Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By [Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] Ascending,None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) Descending Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]) Where @usn6 Is Not Null Is Not Null Create (`3esn` )-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]}) Remove Any(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0).usn1,All(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])._usn4!,7._usn4 Union Merge #usn8=(((#usn8 :``:usn2)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[@usn5? *0xabc{`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}]->(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}))) On Match Set #usn8 =[`5esn` Contains `1esn` Contains usn1,$@usn5 Ends With @usn5 Ends With 0xabc] Is Null Is Null,`8esn` =[$@usn6 =~#usn7 =~True,$`1esn` Contains 1e1 Contains @usn6,9e1[..123456789]] Is Null On Match Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null Remove {usn1:12[$`5esn`..][False..]}.`1esn` Union Remove [`3esn` In `2esn`[..01][..True] Where 00[01234567][False]].`7esn`!,Any(usn2 In False[$usn1][0x0] Where 12.e12 =~0X0123456789ABCDEF =~1.e1)._usn3,Extract(#usn7 In 9e1[$`1esn`..] Where $`7esn`[$_usn4][.e0]|$`3esn`[..$1000][..$123456789]).`1esn`?"), + octest:ct_string("Unwind 00[$usn1..] As `3esn`"), + octest:ct_string("Merge (`2esn` :`1esn`:_usn4)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}) On Match Set `5esn`+=010[..7][..`4esn`],(`2esn` :@usn5)-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}).`4esn`! =$@usn6 Ends With `1esn`,`6esn` =.0[$``..0X7] Union All Remove All(#usn7 In True Contains 's_str' Contains $usn1 Where .e12[$@usn6..00][01234567.._usn3]).usn2,[@usn6 In False Contains 0 Contains $`6esn` Where $`5esn`[..00]|_usn3 Contains 9e12 Contains `8esn`].`3esn`?,{`4esn`:.e1[7..][9e0..],`8esn`:00 In @usn6 In 0}.`4esn`? Unwind All(#usn7 In 9e0[$1000] Where 0x0[12e12..$`7esn`])[(:`5esn`{_usn4:12 Starts With #usn7 Starts With 0Xa,#usn7:999 Is Null Is Null})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})][{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}] As #usn8 Union Merge `3esn`=(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}) On Match Set _usn3+=#usn7[..07],(:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(usn1 :`7esn`).`4esn` =1.e1[$`3esn`][0Xa],All(@usn5 In 's_str'[0..] Where `2esn`[..01][..True]).`2esn`! =`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] On Create Set Filter(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7]).``! =12 Contains 01234567"), + octest:ct_string("Match ((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})),(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Where 123.654 With Distinct 0.e0['s_str'..][01234567..] As `1esn`,None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,.0[$``..0X7] With Distinct $@usn6[.0..][0e0..] Order By $`8esn` Is Not Null Is Not Null Descending,Null Ends With _usn4 Ends With 0.0 Ascending Limit .e0 Where 0.12[..$_usn3][..0Xa] Union All Unwind 123.654 In $999 In _usn3 As usn2 Match #usn8=(({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})<-[?:`3esn`*..]-(usn2 :``:usn2)-[`5esn`? *01234567..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})) Where .0[..'s_str'][..01234567] Unwind 0x0[@usn5][$#usn8] As `1esn` Union All Merge ((`4esn` :_usn3{usn2:01[..0Xa][..12],`1esn`:999[..`1esn`][..07]})-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})) Detach Delete (`1esn` $`4esn`)-[@usn6?:`7esn`|:`2esn`]-({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]}) =~Filter(`3esn` In 9e1 Contains $999 Where 12.0 Is Null Is Null) =~[0xabc In Null],[$`1esn`[``][07],$`4esn`[`6esn`..$12],False[$usn1][0x0]] =~[.e12 Is Null Is Null],$`3esn`"), + octest:ct_string("Merge `7esn`=(:_usn3{@usn5:$1000 Starts With $`7esn`})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]->(#usn8 :``:usn2) On Create Set #usn8+=`8esn` In $1000 Merge #usn7=(({@usn6:0x0[Count(*)..@usn6][Count(*)..0Xa],`7esn`:0.0 =~9e0 =~$0})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})) On Match Set [$usn2 =~9e1,$`6esn` Is Null].`8esn`? =(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),usn2 =$@usn5 Ends With @usn5 Ends With 0xabc,#usn8+=$`1esn` Starts With Count(*) Union Merge ((usn1 :_usn4{`4esn`:`7esn` Is Null})<-[`8esn`?:`2esn`|`4esn` *01..123456789{`8esn`:$`4esn` Is Null Is Null,usn1:$1000 Starts With $`3esn` Starts With 0.e0}]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})) Match ((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Delete (`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Is Not Null"), + octest:ct_string("Detach Delete `` =~.12,[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])],123456789[12] With Distinct $#usn8 Ends With `` Ends With 999 As `5esn`,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]) Is Not Null Is Not Null As _usn3 Order By _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..] Desc,{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Is Not Null Desc,9e0 Ends With $#usn8 Desc Limit 12.0 Starts With $`2esn` Starts With .e1 Where 9e1 Ends With Count(*) Ends With $7 Merge `1esn`=(`6esn` {``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]})-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(`3esn` :usn2{`6esn`:#usn8 Is Null}) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] Union With Distinct usn2 =~$`` =~$`8esn` As `2esn`,'s_str'[0x0..1.e1] As `6esn`,$`5esn`[\"d_str\"..] As `5esn` Limit 01[07..][1.e1..] Return *,1e1[..#usn7][..$`5esn`] Order By [`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8|12.e12[..$`6esn`]][Filter(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])..(:`2esn`{`8esn`:1e1 Contains 's_str' Contains `3esn`})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]-(:`5esn`{@usn6:1000[0e0][1e1]})<-[_usn4]->(:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]})] Ascending Match (`3esn` {_usn4:123.654 In 12})-[`4esn`?:_usn4 *7..]-(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})<-[ *00..0Xa]->(#usn7 :usn1:`3esn`),(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]}) Union Optional Match (_usn4 :#usn7:`5esn`)-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-(`5esn` :#usn8:`1esn`) Where 9e1[`1esn`..0][999..1e1]"), + octest:ct_string("Optional Match usn2=(`8esn` :`6esn`:_usn3),#usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) With *,Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],True In (#usn8 :`6esn`:_usn3)<-[`2esn`?:_usn4{#usn8:$12[9e0..$999]}]->({``:.e1 Starts With 12.e12 Starts With `2esn`}) As `5esn` Order By Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} Desc,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) Ascending,$`7esn`[$_usn4][.e0] Descending"), + octest:ct_string("Merge ((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) On Create Set #usn8+=[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null),@usn5+=.e0 =~$`7esn` =~0X0123456789ABCDEF,``+=(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) On Match Set `6esn`(Distinct 0Xa[$`8esn`..][$_usn4..],0xabc In Null).`2esn`! =(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[? *..010{#usn8:False Is Null}]->(#usn7 {#usn7:1.e1 Starts With 9e12})<-[:_usn3|:`7esn` *00..0Xa]-(`1esn` $`4esn`)[..[0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]]][..(:`2esn`{_usn3:@usn5[0.0..0X7]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null).`7esn`? =Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])],Extract(`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]).@usn5 =$@usn6 Ends With 123456789 Ends With 12.0 Return *,Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null As usn1,00 Contains Count ( * ) Contains 0x0 As `5esn` Limit .e0 Union All Return Distinct *,1e1 Contains 0.e0 Contains 9e1 Limit None(#usn7 In 9e0[$1000] Where $1000 Is Not Null) Is Null Is Null Merge ((`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})) With 's_str' Order By $12[9e0..$999] Asc,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip #usn8[`8esn`..] Limit .12 In `8esn` In $#usn8 Where 12.e12 Contains #usn7 Contains $_usn4"), + octest:ct_string("Unwind `6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] As @usn5 Return Distinct $@usn6 Ends With 12.e12 Ends With @usn5 As usn2,``[usn1][`5esn`],`7esn`[..$`6esn`] Order By $@usn6 In @usn6 In 1e1 Desc,.e1[..$`3esn`][..01] Desc Limit Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Unwind $`5esn` Starts With 0.0 Starts With .e0 As `2esn`"), + octest:ct_string("With Distinct $123456789 Starts With 0.12 Starts With Null As _usn3 Skip {`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Limit [@usn5 In 's_str'[0..] Where @usn6 In .12 In `3esn`] Ends With Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $`5esn` Is Not Null) Unwind #usn8[`8esn`..] As `7esn` Union All Merge _usn3=(((`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})<-[:`2esn`|`4esn` *0X0123456789ABCDEF..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(@usn6 :`2esn`{`4esn`:$999[0Xa..][9e1..]}))) On Match Set ``+=`2esn`[_usn3],[_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]].`2esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`) Is Null,`1esn`+=`4esn`($_usn4 Starts With $1000 Starts With 12)[{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}] On Create Set [usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]].`1esn`? =999 Contains 0 Contains $`5esn` Remove Any(_usn4 In 12e12 In 123456789 Where 9e1 Is Not Null Is Not Null).#usn7? Merge @usn6=(#usn7 {_usn4:1.e1[`8esn`]})<-[usn2{`2esn`:$12 Starts With $usn1}]->(:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]}) On Create Set All(usn2 In 7[12] Where `2esn`[$12..]).#usn8? =[#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3],Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3|01 In $@usn6).`7esn`? ={`3esn`:.e1[..\"d_str\"][..$123456789]},[$`5esn` =~usn1,@usn6 Contains .12 Contains $usn1,999 In #usn8 In $``]._usn3 =[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )]"), + octest:ct_string("Unwind 0e0 Is Not Null As `6esn` Union Merge ``=(:_usn3{`7esn`:$999 Ends With .e0})<-[`8esn`?:`2esn`|`4esn`{usn2:#usn8[`6esn`..][$``..]}]-(@usn6 {`6esn`:$`5esn` =~usn1,`5esn`:$`` Starts With $1000 Starts With @usn6})-[?{_usn3:010[`5esn`],_usn4:#usn8 =~.e0}]-(#usn8 :`3esn`{`5esn`:$@usn6 Ends With `1esn`}) On Match Set `7esn`+=$`5esn` Is Not Null,Any(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7])._usn3 =.e12[`2esn`..010],`8esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null Merge `8esn`=(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) Merge _usn3=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) On Match Set @usn6+=(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1+=999 Is Not Null Is Not Null"), + octest:ct_string("Create @usn5=(({`8esn`:`5esn` Contains #usn7 Contains 9e12})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`1esn` :`3esn`{#usn8:$usn2[0.e0],`8esn`:$`4esn`['s_str'..]})),((`8esn` :@usn6{`7esn`:0e0[999..$``]})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})) With Distinct *,0Xa[Count(*)..],[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,0xabc In .12 In 0Xa Descending,.0 Contains .e12 Contains 0 Desc Skip All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1)[None(@usn6 In 010[`5esn`] Where 00[1.e1..])..[$12[$usn1..][Count(*)..],$@usn5 Contains 's_str' Contains \"d_str\"]][Extract(`3esn` In 9e1 Contains $999 Where 0e0 Starts With 999 Starts With `2esn`|9e1 Ends With Count(*) Ends With $7).._usn4(`1esn`[0.12..][@usn6..],#usn8 =~0.e0)] Limit `1esn` Starts With 9e1 Union Optional Match @usn5=(`3esn` {`4esn`:False Is Null}) Detach Delete $999 In 12 In 1.e1,usn2 Is Not Null Unwind .e12 Ends With 0Xa Ends With 0xabc As @usn6"), + octest:ct_string("Detach Delete $`4esn`[`6esn`..$12],[`3esn` In `2esn`[..01][..True] Where 0.e0[1000.._usn4][.e1..usn1]|`5esn`[..123.654][...e12]],[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e1[usn1..0x0][12.e12..12.0]][..{usn2:0x0[0X7]}][..[12.e12 Is Not Null Is Not Null,$@usn6[.0..][0e0..]]] Delete usn2 Is Null Is Null Create ``=((@usn5 {`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]})<-[`2esn`:`8esn`{`7esn`:$`4esn` Is Null Is Null}]->(usn1 :@usn6)-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(`8esn` :`8esn`)),(:_usn3{usn1:#usn7[..07]})<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]}) Union All Remove Extract(@usn6 In 010[`5esn`] Where 0e0[``..$1000][$7..12.e12]|1000[0e0][1e1]).`6esn`?"), + octest:ct_string("Delete True Starts With Null,`4esn`(Distinct Count(*) In 12 In `6esn`,Count(*) In 12 In `6esn`) =~{`7esn`:$@usn6[00]} =~[0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]]"), + octest:ct_string("Unwind 07 In 0Xa In usn1 As #usn8 Detach Delete usn1[False..`5esn`][$1000..$12] Match _usn4=(((:#usn7:`5esn`{`4esn`:$``[..\"d_str\"][..$#usn8]})<-[`6esn`? *00..0Xa]->(:#usn8:`1esn`$`7esn`)-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]})))"), + octest:ct_string("Unwind 1e1 Contains 0.e0 Contains 9e1 As `3esn` Detach Delete $`8esn`[999],usn2 Ends With $`4esn` Union Merge @usn6=((`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[@usn5?:usn2 *00..0Xa{usn2:$usn2[`4esn`..9e12]}]->(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->(usn2 :usn1:`3esn`)) On Match Set [#usn8 In `7esn` Where 01 Ends With 0Xa Ends With 0X7|`8esn` Contains Count(*) Contains $#usn7].``? ={`5esn`:$`1esn` In .e0,``:`6esn` Ends With Count ( * ) Ends With Count ( * )} Is Null Is Null,`8esn`+=$7 Is Null,`7esn` =_usn4 In #usn7 Merge ``=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) On Create Set [12e12 =~1e1,0X7[..$`8esn`]].`7esn` =1e1 Ends With $`2esn`,`8esn`+=01[$`7esn`..$@usn6] On Create Set Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7])._usn4 =count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null,`1esn`+=@usn5[..\"d_str\"],_usn4 =`2esn` =~.e12 =~0X0123456789ABCDEF Union Optional Match #usn7=(((:#usn7:`5esn`{_usn4:$usn2 =~9e1})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`)<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]}))),_usn4=((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})) Unwind None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] As `6esn` Delete `1esn`[`3esn`..],9e12[$`5esn`..$123456789]"), + octest:ct_string("Unwind $@usn5[_usn4] As #usn8 Union All Create ((#usn8 :_usn3)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)),((:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->({@usn6:12.e12 Contains #usn7 Contains $_usn4,usn2:$`5esn` =~$0 =~``})-[#usn7 *01..123456789]->(:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})) Union All With 's_str' Where 's_str'[0..] Unwind 12e12 In 123456789 As `7esn` Detach Delete $12 Starts With $0 Starts With $`8esn`"), + octest:ct_string("Create #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))),#usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Create ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)),((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Optional Match ``=((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)) Where 010 Is Null Is Null Union All Unwind Count(*)[9e12..12.0] As #usn8 Match _usn3=(`1esn` )<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7}) Where @usn5 Starts With 9e0 Starts With 010"), + octest:ct_string("Unwind All(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Is Not Null Is Not Null As `8esn` Create ((#usn8 :_usn3)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)),((:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->({@usn6:12.e12 Contains #usn7 Contains $_usn4,usn2:$`5esn` =~$0 =~``})-[#usn7 *01..123456789]->(:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})) Create `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})),usn2=((#usn7 {`8esn`:`7esn` In 010 In usn1})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})) Union Unwind 123.654[`4esn`..12] As `2esn` Create (((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})<-[?:usn1|`4esn` *01..123456789{usn1:.e12[$@usn6..00][01234567.._usn3],`1esn`:`7esn` Contains 9e0}]-(_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`}))),`6esn`=(:`3esn`{@usn6:$`5esn` =~$`8esn` =~usn2,`8esn`:12[..0e0][...e1]}) Union All Delete Extract(usn2 In 7[12] Where 0X7[.0])[Single(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)],0x0[..9e0] Create #usn8=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}),`2esn`=(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Merge `5esn`=({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})<-[_usn4?:@usn6|:`7esn`]->(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})<-[`8esn`:usn1|`4esn` *0Xa{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]->(:`8esn`) On Create Set {usn1:$_usn4 Starts With $1000 Starts With 12}.@usn6! =[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])] On Create Set `5esn`+=All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],`2esn` =False Starts With 0X7 Starts With 01234567"), + octest:ct_string("Optional Match #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),((:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8}))"), + octest:ct_string("Unwind $1000 Starts With $`3esn` Starts With 0.e0 As usn1 Return Distinct _usn4 Contains $_usn3 Contains .e1,$`4esn`['s_str'..] As `` Order By $usn2 =~9e1 Descending,(:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc,1.e1 =~$_usn4 Desc Skip 12[0e0] Optional Match (_usn4 :#usn7:`5esn`)-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-(`5esn` :#usn8:`1esn`) Where 9e1[`1esn`..0][999..1e1] Union All Remove [usn2 In 7[12] Where #usn7[0.e0..]['s_str'..]].#usn7!,{#usn8:.0 Is Null Is Null}.`2esn` Match ({@usn6:0x0[Count(*)..@usn6][Count(*)..0Xa],`7esn`:0.0 =~9e0 =~$0})-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(:_usn3{_usn3:$`3esn`[.e1][_usn4]})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`) Where 9e12 =~@usn6 Merge `1esn`=(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})-[`4esn`:`1esn`|`3esn` *12..]->(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}) On Match Set Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $@usn5[..0xabc][..$`3esn`]).#usn8 =_usn3 In $`8esn` In @usn6 On Create Set `6esn` =.e1[12.0..],{@usn5:``[9e12][$999]}.@usn5? =usn1 Contains 010,usn2+=All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 1.e1[12..][$`4esn`..])[{usn1:12.e12[..$`6esn`]}..]"), + octest:ct_string("Create ((:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[`2esn`{``:Null[..010][..1000]}]-(`` :usn1:`3esn`)-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})),((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})) With Distinct {`8esn`:9e12 =~@usn6,`1esn`:999 Contains 0 Contains $`5esn`}[`4esn`()],(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null} Order By [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Desc Limit $7 Starts With $`4esn`"), + octest:ct_string("Detach Delete Extract(@usn6 In 010[`5esn`] Where 00[$usn1..]|_usn3[$usn2..][$``..])[Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])],_usn4[$usn1..01234567][123.654..`5esn`],None(#usn7 In 9e0[$1000] Where $_usn3 Is Null) In [@usn5 In 's_str'[0..] Where $#usn8[12.e12..`8esn`][12.0..0.0]|`4esn` Ends With 12 Ends With .12] In [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12] Return *,[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]),01234567[$`2esn`][0Xa] As `5esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc Skip $@usn6[123.654..00] Merge (((_usn4 :#usn7:`5esn`)<-[#usn8 *0x0..]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})<-[`2esn`?:usn1|`4esn` *00..0Xa]->(`6esn` :#usn8:`1esn`{`6esn`:usn1[..$@usn6][..00]})))"), + octest:ct_string("Optional Match (usn2 :_usn4),`1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Where 0e0[01][$`7esn`] Remove (:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})-[? *0Xa]-(`8esn` {``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]}).`2esn`! Union All Detach Delete [$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][None(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..])..],1.e1 In 1000 In _usn3,#usn8 =~.e0 Remove None(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7).`5esn`?,({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})<-[`4esn`:usn2]->(:`8esn`{``:$`1esn` =~999}).usn2,(usn1 {usn1:$#usn7 =~`2esn`})-[{_usn3:01 Is Null,_usn3:$@usn6 Ends With 12.e12 Ends With @usn5}]-(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})-[`7esn`:#usn8|:`3esn` *0..01{`3esn`:07[_usn3..][`6esn`..],@usn6:``[usn1][`5esn`]}]->(:_usn3{_usn4:.e1[7..][9e0..]}).`4esn` Create `4esn`=((`` {#usn7:#usn8 Is Not Null Is Not Null})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]}))"), + octest:ct_string("Delete Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..],None(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1)[..{@usn5:$@usn6 Is Not Null Is Not Null}][..{`3esn`:1e1 In 0.0 In 0X0123456789ABCDEF}] Unwind $_usn3 Is Not Null Is Not Null As `3esn` Create (((:`1esn`:_usn4{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]})<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}))),_usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Union Optional Match `8esn`=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2) Where $0[0Xa..$123456789] Union All Delete (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..])"), + octest:ct_string("Detach Delete usn1[False..`5esn`][$1000..$12] Merge _usn3=(((`6esn` {`1esn`:12.0 =~@usn6 =~$`2esn`,`7esn`:0Xa[$`8esn`..][$_usn4..]})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(:`2esn`{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}))) On Match Set _usn3+=`6esn`[$``..$_usn3][1000...0],[usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5|0 Ends With 12.e12 Ends With usn2].`1esn` =123.654 Is Null Is Null On Create Set [usn2[12e12..]['s_str'..],$`3esn`[$_usn4..0Xa],#usn8 Is Null Is Null].usn2? =123.654 In $`6esn` Union All With *,Extract(`6esn` In $`6esn`[``..][Count(*)..] Where $@usn5 Starts With `5esn` Starts With 01234567|0.e0[..$7]) Is Null Is Null Skip 0xabc In 123456789 In 0x0 Limit _usn4 Starts With 1000 Starts With $usn2 Where 123.654[$0..0X7][Null..#usn8] Merge ({`4esn`:.e1[..$`3esn`][..01]})-[`5esn`:#usn7|@usn5]-(`5esn` :`4esn`:`6esn`) Union With $999[0Xa..][9e1..] As `4esn`,0X0123456789ABCDEF In .12 As #usn7 Skip None(@usn6 In 010[`5esn`] Where 123.654 In $`7esn`)[(`` {`7esn`:$#usn7[..0Xa]})<-[`1esn`?:usn1|`4esn` *00..0Xa]-(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[usn1? *01234567..{@usn5:01[`3esn`..][Count(*)..]}]->(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})..[False Contains 0 Contains $`6esn`,`1esn` Is Not Null Is Not Null]] Limit All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..] Remove Extract(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12|0x0[Count(*)..@usn6][Count(*)..0Xa])._usn3!,({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})<-[usn2?:`3esn` *00..0Xa]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})<-[`8esn`? *0Xa{#usn8:$``[True]}]->(_usn3 :`7esn`).`5esn`,Extract(`3esn` In 9e1 Contains $999 Where usn1[False..`5esn`][$1000..$12]).`7esn`"), + octest:ct_string("Delete {#usn7:$usn2[0.e0],`6esn`:.e1[..\"d_str\"][..$123456789]} Is Not Null"), + octest:ct_string("Match #usn8=(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) With Distinct $usn2[`5esn`..][01234567..] As #usn8 Skip $`6esn`[1.e1][$_usn3] Limit False[$`4esn`..] Remove (`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2).#usn7?,Filter(@usn5 In 9e0 Ends With $#usn8 Where 0X7 In $#usn7).`5esn`,[_usn3 Starts With 12e12 Starts With `5esn`,0e0[``..$1000][$7..12.e12],0Xa Ends With $`3esn` Ends With $1000].`8esn`?"), + octest:ct_string("Create usn2=((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`))"), + octest:ct_string("Create #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) Union All Unwind [#usn8 In `7esn` Where 9e12[$`5esn`..$123456789]] =~_usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6) As usn1 With Distinct usn2 Ends With .e1 Ends With $`5esn`,Extract(@usn5 In 's_str'[0..] Where 12e12 Is Not Null) =~[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]] Skip $`3esn`[..$1000][..$123456789] Limit 0xabc Is Null Is Null"), + octest:ct_string("Optional Match #usn8=((`3esn` :usn2{`6esn`:#usn8 Is Null})-[`4esn`?:_usn4 *7..{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(usn2 :`6esn`:_usn3{@usn5:$0[0Xa..$123456789]})<-[`2esn`{``:Null[..010][..1000]}]-(`` :usn1:`3esn`)),(`2esn` :`1esn`:_usn4) Union Delete {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}[..`2esn`(Distinct 0 Ends With 12.e12 Ends With usn2)][..Filter(_usn4 In 12e12 In 123456789 Where .e1 In 123456789)],Extract(@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1) Is Not Null Union With Distinct Single(usn2 In False[$usn1][0x0])[All(@usn6 In 010[`5esn`] Where 00[1.e1..])][(:`2esn`{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`})-[?{`5esn`:$`2esn`[.0..][0.0..]}]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})-[`` *1000..0X0123456789ABCDEF]->(:_usn4{`8esn`:01234567[Null..$_usn3]})],`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] As #usn7 Skip $`4esn` =~$`4esn` Return 0.0 Contains #usn7 As #usn8,Extract(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|.e1[usn2..$_usn3][.0..$#usn7]) Order By Any(`6esn` In $`6esn`[``..][Count(*)..] Where 1e1 Ends With $`7esn` Ends With .0) Is Not Null Descending,#usn8 Ends With $@usn5 Ends With $7 Desc,usn2[12.e12..] Asc Skip 12.0[$1000..][#usn7..] Limit $`2esn`[0..123456789][``..`1esn`]"), + octest:ct_string("Detach Delete [0.12[$0..$usn2],07 In `6esn`] Is Not Null Is Not Null,12[..$999][..$`2esn`] Union Match _usn3=((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7 *01..123456789]->(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})),``=((:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[`5esn`:#usn7|@usn5]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) Where 0x0[Count(*)..@usn6][Count(*)..0Xa] Remove Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12).`5esn`?,_usn3(0[$`5esn`],`2esn`[..$_usn4][...12]).`2esn`?,(usn1 :@usn6)<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})<-[?{`5esn`:123.654[$0..0X7][Null..#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]}]-(usn2 :`7esn`).#usn8 Create _usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})))"), + octest:ct_string("Unwind Filter(@usn5 In 's_str'[0..] Where $@usn6 =~#usn7 =~True)[Extract(@usn5 In 's_str'[0..] Where _usn3[0x0])..All(_usn4 In 12e12 In 123456789 Where $usn2 Is Not Null Is Not Null)][(`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]})<-[:`8esn`]-(:@usn6)-[? *0X0123456789ABCDEF..]-(usn2 :_usn3)..(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})] As `` Remove All(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1).`6esn`?,None(usn2 In False[$usn1][0x0] Where 9e12 Starts With 1e1).#usn8 Union All Return *,All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],12 In $usn1 In 7 As `8esn` Skip None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1) Limit $@usn5 Starts With .e1 Match `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((:#usn7:`5esn`{`3esn`:Null[..0]})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->(`6esn` :#usn7:`5esn`{_usn3:_usn4 Is Null Is Null})) Where $`5esn` =~usn1 Unwind #usn8 Is Null Is Null As `8esn` Union Delete `6esn` Is Null Is Null,0.e0[..$7] Detach Delete 01 Ends With 0Xa Ends With 0X7 Create (`5esn` :``:usn2)-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})"), + octest:ct_string("Optional Match #usn7=(((`4esn` :#usn7:`5esn`{_usn4:0Xa Ends With $`3esn` Ends With $1000})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7}))),usn1=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) Unwind 9e1[`1esn`..0][999..1e1] As #usn8 Merge `6esn`=(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})"), + octest:ct_string("With *,$`2esn` Contains Count(*) As `3esn`,(`2esn` :usn1:`3esn`)-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})<-[?:`3esn`]-(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})[({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})] Order By 010 Contains .e1 Asc,(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})<-[#usn7 *01..123456789]->(`6esn` :usn1:`3esn`) Ends With Extract(#usn8 In `7esn` Where 9e12[..1e1][..'s_str']) Ends With [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123.654 Is Not Null|$`2esn`[.0..][0.0..]] Descending Skip $@usn5[`1esn`..][$999..] Limit Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] Union All Return Distinct #usn8 Is Not Null Is Not Null,{`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..] As _usn4 Skip $`5esn`[$`3esn`..] Detach Delete [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null,00[False..0e0],0.e0[1000.._usn4][.e1..usn1] Detach Delete _usn4(Distinct 0X0123456789ABCDEF Ends With 01 Ends With ``,$`3esn`[..0xabc][..$7]) In Single(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0) In Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7]),Count(*) Ends With usn1 Union All Unwind `2esn`[$@usn6..][Null..] As `8esn` Return *,[`8esn`[..$#usn8],$1000 Starts With $`7esn`,0xabc In 010 In #usn7] Is Null Is Null As `8esn` Skip All(@usn5 In 's_str'[0..] Where 0.e0) In Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $123456789 In 0.12) In {`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]} Limit Filter(@usn6 In 010[`5esn`] Where `7esn`[1e1]) Contains {`7esn`:$`5esn` In 07 In 00,`1esn`:07 In `6esn`} Contains {`3esn`:00[12..$`6esn`]} Match _usn4=(@usn6 :`4esn`:`6esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`2esn`?:`6esn`|:#usn8{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`}]-(_usn3 {_usn3:0.12 Starts With $`8esn` Starts With @usn5}),#usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})))"), + octest:ct_string("Unwind {`8esn`:9e12 =~@usn6,`1esn`:999 Contains 0 Contains $`5esn`}[`4esn`()] As usn2 Merge #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))) On Create Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] On Match Set Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa).@usn6! =0.e0 Is Not Null Is Not Null,`1esn` =07 In `6esn` Union Delete 0X7 In $#usn7 Unwind {#usn8:1.e1 Is Null Is Null,_usn4:0xabc In 123456789 In 0x0}[All(@usn6 In 010[`5esn`] Where 00[1.e1..])..] As _usn4 Detach Delete [`6esn` In $`6esn`[``..][Count(*)..] Where $0[123.654..0.e0]][{`8esn`:$`4esn`[..$`8esn`][..Null]}..({usn2:_usn3[`2esn`..0X7][0.e0..$`3esn`]})<-[_usn4?:@usn6|:`7esn`]-(usn1 :`2esn`{@usn6:True Contains 's_str' Contains $usn1,``:$`4esn` Starts With 0 Starts With `7esn`})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})][None(`3esn` In `2esn`[..01][..True])..[0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF]] Union All Unwind #usn8(1000[12e12][`5esn`],9e1 Contains 12)[Extract(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0)..`1esn`(Distinct `3esn`[7..0.e0][0.0..123456789],`1esn` Starts With 0xabc Starts With $usn2)][Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 9e0[Count(*)..0.12][$`1esn`..12.0])..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12)] As @usn6 Remove None(`5esn` In 0X7 In $#usn7 Where usn1 =~$`7esn`).`3esn`!,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $123456789 In 0.12)._usn3?,(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]}).`6esn`? With *,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null Order By .e0 Starts With $@usn6 Starts With $7 Descending Skip [$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa)"), + octest:ct_string("Return *,[`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] As `4esn`,$1000[0X0123456789ABCDEF][12] Skip $999[.e12][.0] Limit `` Starts With $123456789 With Distinct {usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}[[@usn5 In 9e0 Ends With $#usn8 Where 00 Contains Count ( * ) Contains 0x0]],(`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Order By `3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] Desc,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1) Asc,$@usn5[..$#usn7] Descending Skip #usn8 Is Not Null Is Not Null"), + octest:ct_string("With *,0.e0 =~00 As `3esn` Order By 's_str'[0x0..1.e1] Asc,usn1[False..`5esn`][$1000..$12] Ascending Where 9e1[$#usn8][$1000] Remove (`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})<-[usn1:_usn4]-(#usn7 :@usn6).@usn5?,[@usn5 In 's_str'[0..] Where #usn7[0.12..]|.e12 Ends With 0Xa Ends With 0xabc].`1esn`? Unwind 0X0123456789ABCDEF Ends With `2esn` Ends With $`7esn` As `8esn`"), + octest:ct_string("Unwind Any(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) =~[#usn7 In 9e1[$`1esn`..] Where 0Xa Ends With $`3esn` Ends With $1000|$@usn5 Contains 's_str' Contains \"d_str\"] =~Extract(@usn6 In False Contains 0 Contains $`6esn` Where $`6esn` Starts With .e12 Starts With $`1esn`|12e12 In 123456789) As `1esn` Union All Optional Match ((`4esn` :@usn6)-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})) Where 0Xa Ends With $`3esn` Ends With $1000 Union Optional Match ``=(((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),((({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:#usn7|@usn5*..]-(`3esn` :usn2{`6esn`:#usn8 Is Null})<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Where $1000 Starts With $`3esn` Starts With 0.e0"), + octest:ct_string("Create #usn7=((:`7esn`{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})) Union All Create (((usn2 :#usn8:`1esn`)-[`5esn`?:`7esn`|:`2esn` *0x0..]->(`8esn` :`8esn`)<-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(#usn7 :`2esn`))),((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) Unwind 9e1 =~123456789 =~999 As ``"), + octest:ct_string("Unwind [#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)] Contains (:`2esn`)-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`3esn` {`4esn`:False Is Null}) Contains Filter(`8esn` In 123456789 =~@usn6 Where $`6esn` Starts With .e12 Starts With $`1esn`) As `1esn` Union Delete 12.e12 Starts With \"d_str\" Starts With 9e1,'s_str' Starts With 9e0 Starts With usn2,$`4esn`[..$`8esn`][..Null] Optional Match (`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}) Return Distinct *,00 Ends With $`1esn` Ends With `7esn`,$@usn6 Is Not Null Is Not Null As `8esn` Order By (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Descending,[#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Descending Skip [usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Limit 12.e12 =~.0 =~usn1"), + octest:ct_string("With 010[12.0..`4esn`][``..Count(*)],$`7esn`[123456789..$1000][Count ( * )..$7],$`2esn` Contains Count(*) As `3esn` Order By [$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) Ascending,[usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Ascending Limit 0.e0 Ends With 1.e1 Where _usn4 Is Not Null Optional Match ((`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})),`5esn`=(((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Union All With 0.12 Starts With $`8esn` Starts With @usn5 As @usn5,#usn7 Is Null Is Null As `1esn`,[@usn5[$`6esn`..][$999..],`` Starts With $123456789] Is Null Order By Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) Ascending,'s_str' Starts With 1e1 Starts With $0 Desc Where .e1[7..][9e0..] Merge `2esn`=(((`7esn` )<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2))) On Match Set #usn8 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) Unwind _usn3[`5esn`..][usn2..] As #usn7 Union Remove {`3esn`:$`5esn` Is Not Null Is Not Null}.`2esn`!,{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1}.`1esn`? Match _usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))),usn1=(_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})"), + octest:ct_string("Return Distinct 010 Is Not Null Is Not Null As `1esn`,9e12 Starts With 1e1 As `5esn` Order By 9e0[..123456789][..$`3esn`] Asc,$@usn6 Ends With `1esn` Descending,9e1[$#usn8][$1000] Descending Match ``=((:`3esn`{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})),(((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}))) Unwind 0[01234567..][0X0123456789ABCDEF..] As `4esn`"), + octest:ct_string("Merge @usn6=((`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})) On Match Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] Return Distinct $@usn6 Ends With 12.e12 Ends With @usn5 As usn2,``[usn1][`5esn`],`7esn`[..$`6esn`] Order By $@usn6 In @usn6 In 1e1 Desc,.e1[..$`3esn`][..01] Desc Limit Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Merge #usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) On Create Set @usn6+=$`1esn` =~1e1 On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1]"), + octest:ct_string("Unwind 999 In `2esn` In `8esn` As `4esn` Union Return Distinct Null[..010][..1000] As #usn7 Order By Any(`6esn` In $`6esn`[``..][Count(*)..] Where 1e1 Ends With $`7esn` Ends With .0) Is Not Null Descending,#usn8 Ends With $@usn5 Ends With $7 Desc,usn2[12.e12..] Asc Skip 1000[..`2esn`][..$@usn6] Limit [$`6esn`[1.e1][$_usn3],0Xa Ends With $`3esn` Ends With $1000] Ends With (usn2 :_usn4)-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-({`8esn`:usn2 Starts With .0,@usn5:Count(*) In 12 In `6esn`}) Create (`3esn` {_usn4:123.654 In 12})-[`4esn`?:_usn4 *7..]-(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})<-[ *00..0Xa]->(#usn7 :usn1:`3esn`),(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})"), + octest:ct_string("Remove Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01).`3esn`,`5esn`(Distinct).usn1! Detach Delete `2esn` Starts With $`7esn` Remove `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]).#usn8! Union All Create ((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[_usn3?:`8esn` *1000..0X0123456789ABCDEF{@usn5:07 Is Not Null Is Not Null}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})),usn2=(`6esn` :usn1:`3esn`)-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})<-[ *..07{`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn3{@usn5:$1000 Starts With $`7esn`})"), + octest:ct_string("Unwind [#usn8 In `7esn` Where .e0 Starts With $@usn6 Starts With $7|1000[12e12][`5esn`]] Ends With [`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8] Ends With [$``[..\"d_str\"][..$#usn8],$_usn4 Starts With $1000 Starts With 12,#usn7[.e0]] As `8esn` Union All Return 010[12.0..`4esn`][``..Count(*)],$`7esn`[123456789..$1000][Count ( * )..$7],$`2esn` Contains Count(*) As `3esn` Order By [$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) Ascending,[usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Ascending Limit 0.e0 Ends With 1.e1 Unwind Extract(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|.e1[usn2..$_usn3][.0..$#usn7]) As _usn4 Detach Delete 9e1 Contains $999 Union All Unwind (:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Is Not Null As usn1"), + octest:ct_string("With 0.e0 Is Not Null Is Not Null As _usn4,0X0123456789ABCDEF In $usn2 In `4esn`,$usn1 Is Not Null Is Not Null Order By 01234567[$@usn6..$#usn7][123456789..12e12] Desc,Single(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1)[Filter(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])..][Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.0 In 123.654 In _usn4)..] Ascending Skip Null[..0] Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0])"), + octest:ct_string("Create ((:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})),`2esn`=(((@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]})<-[? *7..{`1esn`:.e12 Ends With 0Xa Ends With 0xabc}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[ *..07]->(`8esn` {`8esn`:$_usn4 Starts With 12.e12}))) Match (({`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]})) Unwind `4esn` Contains 9e0 As `8esn` Union With (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Order By usn1 Ends With 9e0 Ends With 9e0 Descending,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Descending Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Remove [0.e0[1000.._usn4][.e1..usn1],$`1esn` =~999,07[_usn3..][`6esn`..]].usn1!,usn2:`4esn`:`6esn`,Extract(usn2 In False[$usn1][0x0] Where $`7esn`|07 Is Null).#usn7! Delete $`6esn` Is Not Null Is Not Null,$`8esn` Is Not Null Is Not Null"), + octest:ct_string("Detach Delete .e12[..999][..@usn5]"), + octest:ct_string("Merge ((`` {#usn7:#usn8 Is Not Null Is Not Null})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`2esn` :@usn5)<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Delete 9e0[$`8esn`] Remove [7 =~`4esn`,`2esn` Starts With $`7esn`].`8esn`! Union Return Distinct .0 Starts With `1esn` As #usn7,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} As usn2,$@usn5[..$#usn7] Limit None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[Extract(#usn7 In 9e0[$1000] Where .e1 In 123456789)][{_usn3:01[`8esn`..9e12][.12..0]}] Unwind `7esn` Is Null As @usn5 Union All Create (:`6esn`:_usn3{`8esn`:`4esn`[\"d_str\"]['s_str']})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0}),`4esn`=((({#usn7:$`3esn` Ends With 01234567,_usn3:usn1 =~$`7esn`})-[`7esn`?:usn1|`4esn` *00..0Xa{`3esn`:usn1 In ``}]-(usn1 {usn1:$#usn7 Starts With 01234567 Starts With $0})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})))"), + octest:ct_string("Unwind $#usn7 =~`2esn` As usn1 Detach Delete [0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]][{usn2:$@usn6 Ends With `1esn`,_usn3:`7esn`}..][{@usn6:1e1 Is Not Null Is Not Null,`8esn`:$`1esn` Starts With $`4esn` Starts With $_usn3}..],`6esn`[$1000][`3esn`] Union Optional Match (`1esn` {#usn7:$`1esn` Ends With 0X0123456789ABCDEF,`3esn`:.12 Starts With _usn3 Starts With $``}) Where 0 =~1e1"), + octest:ct_string("Create `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((`6esn` :`5esn`)<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`5esn` :`4esn`:`6esn`)) Detach Delete [#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null),1e1 Ends With $`2esn` With Distinct $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Order By 12.0 Ends With `2esn` Descending Skip @usn5 Starts With 9e0 Starts With 010 Limit usn1[_usn3..] Where 9e1[usn1..0x0][12.e12..12.0]"), + octest:ct_string("Merge (`1esn` :`3esn`{#usn8:$usn2[0.e0],`8esn`:$`4esn`['s_str'..]})<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]}) On Create Set `2esn`+=0X0123456789ABCDEF In .12,`1esn` =$`7esn` In False In $`1esn` On Create Set usn1+=_usn3 Starts With 12e12 Starts With `5esn`,`4esn`+=(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})[..Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|Count ( * )[$`5esn`..][$7..])][..$usn2],#usn7+=.e0 Is Null Optional Match #usn8=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}),`2esn`=(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Union Optional Match `8esn`=(`5esn` :``:usn2)-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}),((:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Create (`6esn` {`2esn`:$`3esn` Ends With 01234567}),usn2=({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2)<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(_usn4 :@usn5) Return Distinct *,Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] As `7esn` Skip $0 =~9e1 =~$`2esn` Limit Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..] Union All Merge `1esn`=(`5esn` :`5esn`{#usn7:``[$`3esn`]}) On Create Set @usn6+=$`1esn` =~1e1 On Match Set Any(`3esn` In 9e1 Contains $999 Where usn2[12.e12..]).usn1? =usn1[False..`5esn`][$1000..$12],#usn7 =Single(#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6])[Filter(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])..],Any(#usn8 In `7esn` Where .e12 Starts With $#usn8 Starts With False)._usn3? =1.e1 Ends With $#usn7 With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Order By 1.e1 In 1000 In _usn3 Desc,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Descending,123.654 Is Null Is Null Asc Where _usn4[`7esn`]"), + octest:ct_string("Remove Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5,{`3esn`:9e1 Ends With Count(*) Ends With $7}._usn4! Detach Delete 0X7[..$`8esn`] Union All Delete `4esn`($_usn4 Starts With $1000 Starts With 12)[{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}],00[$`1esn`..][@usn6..],0.12 Starts With $`8esn` Starts With @usn5 Union Return Distinct `1esn`(.0 Starts With `1esn`,01[`3esn`..][Count(*)..]) In [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] As `4esn`,`7esn`[$usn1..]['s_str'..] Detach Delete 00[12e12][$`7esn`],\"d_str\" Is Null Is Null,usn2[1.e1] Delete {``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]}[#usn7(Distinct $`1esn`[``][07])..None(@usn6 In 010[`5esn`] Where $`3esn` Ends With 01234567)]"), + octest:ct_string("Return *,`3esn`[12.0][$_usn3],.e1 =~_usn4 =~_usn4 As `3esn` Limit Count ( * ) In 0.12 With Distinct 010[12.0..`4esn`][``..Count(*)],$`7esn`[123456789..$1000][Count ( * )..$7],$`2esn` Contains Count(*) As `3esn` Skip `1esn` Where Null[..0] Union All Unwind #usn8 Is Not Null As `1esn`"), + octest:ct_string("Return *,#usn7[0.12..],$`3esn`[.e1][_usn4] As _usn4 Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Limit \"d_str\" Is Not Null Is Not Null"), + octest:ct_string("Return *,12 Ends With True Ends With @usn6,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3) Ascending,$@usn6 =~0xabc =~$999 Descending,[`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5|`7esn`[1e1]] Contains (`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->(`2esn` {`1esn`:$`4esn` Is Null Is Null}) Contains Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``) Desc Remove {`8esn`:usn2 =~7,`5esn`:.e0[01234567..$`8esn`]}.#usn8 Merge #usn7=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`}))"), + octest:ct_string("Detach Delete 07[999],12.e12 Contains #usn7 Contains $_usn4,0[@usn5..$#usn7] Union All Create #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))),#usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Create ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)),((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Optional Match ``=((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)) Where 010 Is Null Is Null Union Create `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]})"), + octest:ct_string("Return Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By 0Xa[..Count ( * )][..$123456789] Desc,`5esn`[$`7esn`..$@usn5] Ascending Skip usn2[..$usn1][..$#usn8] Limit 12.0 Ends With usn2 Ends With 0 Match @usn5=(:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']}),(`3esn` {_usn3:$123456789[0.12..]})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}) Remove {@usn6:07 Is Not Null Is Not Null,`5esn`:0e0 =~7 =~12.0}.`8esn`,All(#usn7 In 9e0[$1000] Where .e1 In 123456789).`6esn`! Union All Remove Any(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null).`4esn`,(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(_usn4 :`8esn`)<-[ *0X7..{#usn8:.e0 Contains $#usn8}]->(`2esn` :`6esn`:_usn3).@usn5!"), + octest:ct_string("Remove {usn1:0 =~1e1,`7esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}.usn1!,None(`5esn` In `7esn`[$usn2..][$123456789..] Where $123456789[...12][..@usn6]).usn2? Unwind $#usn8[..$999] As #usn7 Optional Match _usn4=((:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})),(`2esn` :`1esn`:_usn4)-[?*..]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})"), + octest:ct_string("Detach Delete usn1 Ends With 0.0,$999 In 1e1,`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..]"), + octest:ct_string("Return *,1e1 Contains 0.e0 Contains 9e1,`1esn` Starts With 9e1 As `6esn` Order By 010 Contains .e1 Asc,(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})<-[#usn7 *01..123456789]->(`6esn` :usn1:`3esn`) Ends With Extract(#usn8 In `7esn` Where 9e12[..1e1][..'s_str']) Ends With [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123.654 Is Not Null|$`2esn`[.0..][0.0..]] Descending Return $123456789 Starts With 0.12 Starts With Null As _usn3 Order By #usn7[``] Desc,{`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Ascending,`` Is Null Descending Skip 0X0123456789ABCDEF In $7 Limit All(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0)[(:#usn7:`5esn`)<-[#usn8? *0Xa]-(`5esn` :`5esn`{#usn7:``[$`3esn`]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc})..] Union All Return Distinct *,Null[..010][..1000] As #usn7,9e12 Ends With 12e12 Ends With 12 As `` Order By 1000[$7..][_usn4..] Desc Skip $`3esn` Ends With 01234567 Limit 7 Ends With .12 Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Unwind usn1[..$@usn6][..00] As `4esn`"), + octest:ct_string("Match @usn6=(usn2 :_usn4) Where `2esn` In 7 Merge ((@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})) On Create Set _usn4+=010 Starts With $`` Starts With 0e0 On Create Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null Unwind {`8esn`:9e12 =~@usn6,`1esn`:999 Contains 0 Contains $`5esn`}[`4esn`()] As usn2"), + octest:ct_string("Return Distinct _usn3 Is Not Null Is Not Null As `` Skip 0X7[..$`8esn`] Limit {@usn5:$@usn6 Is Not Null Is Not Null} Starts With [`3esn` In `2esn`[..01][..True] Where 0x0[usn1..usn1]] Starts With Extract(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..]|0X7['s_str'..][01..]) Delete $`7esn`[@usn5..][usn2..],0x0 In `8esn`"), + octest:ct_string("Unwind 0.0 Ends With $`7esn` As #usn7 Detach Delete Single(_usn4 In 12e12 In 123456789 Where False Is Null)[[$usn1,_usn4 Contains `` Contains 1.e1]][(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]})],0 =~1e1 Unwind (#usn7 )<-[`5esn`?:@usn5|_usn3{``:0.0 =~9e0 =~$0}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]}) Contains Filter(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null) As `` Union All Return Distinct *,$@usn6[123.654..00] As @usn5,7 Is Null Is Null Order By 0[01234567..][0X0123456789ABCDEF..] Desc,Extract(usn2 In 7[12] Where usn1 Starts With 00|`8esn` Contains Count(*) Contains $#usn7) Contains None(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[0.e0]) Contains Extract(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]|$`4esn`['s_str'..]) Asc,[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]][Any(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..])..Single(usn2 In False[$usn1][0x0] Where 9e1 Is Not Null Is Not Null)] Ascending Skip $_usn4[..123456789] Limit 0e0 Ends With 07 Ends With $`8esn` Merge ((#usn7 {#usn7:1.e1 Starts With 9e12})<-[ *..07{`5esn`:999 In 0e0}]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})) On Create Set `4esn`:usn2,`2esn`+=`2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..] On Match Set [#usn8 In `7esn` Where 00 In @usn6 In 0].`1esn`? =Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) Is Not Null Is Not Null,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]).@usn6! =[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]),_usn4+=$_usn3[$12]"), + octest:ct_string("Create ((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})),(((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[?:_usn4]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1}))) Union All With .0 Starts With `1esn` As #usn7,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} As usn2,$@usn5[..$#usn7] Limit None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[Extract(#usn7 In 9e0[$1000] Where .e1 In 123456789)][{_usn3:01[`8esn`..9e12][.12..0]}] Detach Delete 9e1[_usn3] Union Return *,`6esn`[$1000][`3esn`],$`1esn`[Null][True] As `7esn` Order By `5esn` Contains `5esn` Contains $_usn3 Ascending,[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]] In (`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(:#usn7:`5esn`)-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:#usn8:`1esn`$`7esn`) In {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]} Asc,#usn7 Starts With $123456789 Starts With 12e12 Asc Match ((:`5esn`{`8esn`:$`1esn` Starts With Count(*),_usn3:usn1[...e12][..1.e1]})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(`4esn` :_usn4)) Merge (((:#usn7:`5esn`{_usn4:$usn2 =~9e1})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`)<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})))"), + octest:ct_string("Merge usn1=(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]-(`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]}) On Match Set 0.12.`8esn`? =.0 Contains .e12 Contains 0 Remove Any(@usn5 In 's_str'[0..] Where #usn7[0.12..])._usn3,[`6esn` In $`6esn`[``..][Count(*)..] Where @usn5[0.0..0X7]].``! Union Return Distinct 07 As `4esn` Skip `2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..] Unwind Any(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) =~[#usn7 In 9e1[$`1esn`..] Where 0Xa Ends With $`3esn` Ends With $1000|$@usn5 Contains 's_str' Contains \"d_str\"] =~Extract(@usn6 In False Contains 0 Contains $`6esn` Where $`6esn` Starts With .e12 Starts With $`1esn`|12e12 In 123456789) As `1esn` Merge usn1=((`2esn` :@usn5)) On Match Set Any(#usn8 In `7esn` Where $`3esn` Contains $`1esn`).`8esn`? =0x0 Contains $`6esn` Contains `4esn`,Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where False[$usn1][0x0]|@usn5[0.0..0X7]).usn2! =Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1),`3esn` =12.e12[..$999][..07] On Match Set usn1 =`5esn` Contains `5esn` Contains $_usn3,#usn8 =True Contains 0x0 Contains $_usn3 Union All Create ((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[_usn3?:`8esn` *1000..0X0123456789ABCDEF{@usn5:07 Is Not Null Is Not Null}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})),usn2=(`6esn` :usn1:`3esn`)-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})<-[ *..07{`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn3{@usn5:$1000 Starts With $`7esn`})"), + octest:ct_string("Return $`4esn`[`6esn`..$12] As `3esn` Order By [0x0 Ends With 12.0 Ends With `5esn`,12e12 Ends With 0.0 Ends With usn1,00[1.e1..]] Ends With All(#usn8 In `7esn` Where $`3esn`[..0xabc][..$7]) Ends With Any(@usn6 In False Contains 0 Contains $`6esn` Where `6esn`[$1000][`3esn`]) Asc,Filter(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3]) In ({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) In Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0) Asc Skip usn1 Union Merge `3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) On Match Set @usn6 =999[..`1esn`][..07],`3esn`+=$@usn5[0.0][0X0123456789ABCDEF],`6esn`+=$usn1[1000][.12] On Match Set #usn8+=Count(*)[$@usn5],@usn6 =0 =~1e1,`2esn`+=Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Unwind Count(*)[9e12..12.0] As #usn8 Remove All(#usn7 In True Contains 's_str' Contains $usn1 Where .e12[$@usn6..00][01234567.._usn3]).usn2,[@usn6 In False Contains 0 Contains $`6esn` Where $`5esn`[..00]|_usn3 Contains 9e12 Contains `8esn`].`3esn`?,{`4esn`:.e1[7..][9e0..],`8esn`:00 In @usn6 In 0}.`4esn`?"), + octest:ct_string("Remove Extract(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12|.e1[12.0..]).`1esn`!,(:`5esn`{@usn6:1000[0e0][1e1]})-[:`` *0..01]-(:`8esn`{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]-(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}).@usn6! Remove [`5esn` In 0X7 In $#usn7 Where @usn6 Is Not Null Is Not Null|9e1[..123456789]].``?,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7).usn1 Optional Match (`8esn` {usn1:010[`5esn`],_usn3:_usn4 Is Null Is Null}) Union All Remove All(@usn6 In 010[`5esn`] Where `7esn`[$usn1..]['s_str'..]).usn1!,All(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).`8esn` Unwind `4esn` Starts With 0e0 As `1esn` Return Distinct `` Starts With $123456789,$`4esn` Starts With $`4esn` Starts With $_usn3,9e1[$#usn8][$1000] Order By .e12[.12..] Desc,{@usn5:01[`3esn`..][Count(*)..]} Starts With Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str']) Desc,``[$`3esn`] Descending Skip {@usn5:\"d_str\"[True..]} In _usn4(0 =~1e1,$123456789 Contains $#usn8 Contains ``) In [999 Contains $1000,`2esn` =~.e12 =~0X0123456789ABCDEF,_usn4[@usn6..][$0..]]"), + octest:ct_string("Match `5esn`=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']}),`7esn`=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}) Unwind {_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]} Contains ({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}) Contains None(#usn8 In `7esn`) As `4esn` Union Remove [`6esn` In $`6esn`[``..][Count(*)..]|$`4esn`['s_str'..]].@usn6?,(usn2 {`5esn`:$@usn5 In 12e12 In 01})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})-[`7esn`:`4esn`|@usn5 *12..]-(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]}).`5esn`"), + octest:ct_string("Remove Filter(`8esn` In 123456789 =~@usn6 Where 0x0[@usn6..][01..]).#usn8! Match `1esn`=(`5esn` :`5esn`{#usn7:``[$`3esn`]}) Union All Remove #usn7:`3esn`,Single(`6esn` In $`6esn`[``..][Count(*)..] Where 's_str' Starts With 1e1 Starts With $0).`4esn`?"), + octest:ct_string("Create ((`3esn` :usn2{`6esn`:#usn8 Is Null})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->(`7esn` {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01})),`5esn`=(({@usn5:``[9e12][$999]})-[usn2{``:$`1esn` =~999}]-(:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0})) Delete 123.654 In $`7esn`"), + octest:ct_string("Remove (_usn4 {usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[`2esn`:`8esn`{`7esn`:$`4esn` Is Null Is Null}]->(usn1 :@usn6)-[usn2?:`3esn` *00..0Xa]-(`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]}).`8esn`,{usn1:$123456789 In 0.12}.`1esn`! Union Merge `4esn`=({`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}) On Create Set #usn7+=Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] On Match Set `2esn` =9e1 Ends With Count(*) Ends With $7 Union All Merge ({`4esn`:.e1[..$`3esn`][..01]})-[`5esn`:#usn7|@usn5]-(`5esn` :`4esn`:`6esn`) Create (_usn3 :`7esn`) Unwind $`2esn` Starts With $@usn5 Starts With #usn7 As `4esn`"), + octest:ct_string("With Distinct .0[..'s_str'][..01234567] Order By {_usn4:01234567[Null..$_usn3],usn1:$123456789[12e12..9e0]} Desc,`1esn` Starts With 0X7 Starts With \"d_str\" Descending,9e1[$#usn8][$1000] Asc Skip Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`)[Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``)][Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 1e1 Contains 's_str' Contains `3esn`|$`2esn` Ends With `6esn`)] Limit _usn3 =~9e1 =~12e12 Unwind usn1 Ends With 0.0 As _usn3 Merge `6esn`=(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[@usn6:`1esn`|`3esn` *0X7..]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) On Match Set `4esn`+=$0 =~9e1 =~$`2esn`,_usn3 =Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] On Match Set Single(`5esn` In 0X7 In $#usn7 Where 123456789 =~$999).`5esn` =0[01234567..][0X0123456789ABCDEF..],All(`6esn` In $`6esn`[``..][Count(*)..]).`6esn` =1.e1 Starts With 9e12 Union Delete $@usn6 Ends With `1esn` Union All Remove [_usn3 In $`8esn` In @usn6,.e12 Ends With 0Xa Ends With 0xabc,.e1[12.0..]].#usn8,{_usn4:`5esn` Contains #usn7 Contains 9e12}.`1esn`!"), + octest:ct_string("With Distinct *,0xabc Is Null Is Null,usn2 =~$`` =~$`8esn` As `2esn` Skip 0 Ends With Count(*) Ends With False With *,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Where .e1[12.0..] Union Unwind 9e1 =~$_usn4 =~1.e1 As `7esn`"), + octest:ct_string("Match ((_usn3 :`8esn`{#usn8:False Starts With 0X7 Starts With 01234567})) Optional Match (:`7esn`{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8] Match `3esn`=((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})),((`5esn` :@usn5{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) Where 07 Is Null Union All Unwind .e0 Ends With $123456789 Ends With 0xabc As #usn7 Match `3esn`=(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0}),usn1=(({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) Where \"d_str\"[True..] Union Optional Match (`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Where #usn7[0.e0..]['s_str'..] Merge ((@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})) On Match Set #usn7+=`1esn` Remove None(_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`).`2esn`,(`5esn` :``:usn2)<-[?:`4esn`|@usn5{usn2:$@usn6[$`8esn`..][123456789..]}]->(:_usn4{`8esn`:01234567[Null..$_usn3]}).``?,Extract(usn2 In 7[12] Where .12[0X7..][12e12..]|0.0 Contains #usn7).`1esn`"), + octest:ct_string("Remove (_usn4 {_usn4:Null[..010][..1000],_usn3:.0 Is Null Is Null})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}).usn2 Union All Detach Delete $`1esn`[``][07],`2esn` Starts With .e1 Starts With 9e12,$`4esn` In 1.e1 In #usn7 Union Match (((`6esn` :#usn7:`5esn`)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(_usn4 :#usn7:`5esn`))),`1esn`=(`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})"), + octest:ct_string("Delete 0x0[usn1..usn1] Union All Return Distinct $`3esn`[..0xabc][..$7] As ``,`` Is Not Null Is Not Null As `6esn` Order By (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Ascending,123.654 In 12 Desc,$_usn3[_usn4..] Asc Skip 0[.12..1e1] Limit 01 Ends With .12 Ends With 07 Merge #usn8=(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1}) On Create Set Single(`5esn` In 0X7 In $#usn7 Where 123456789 =~$999).`5esn` =0[01234567..][0X0123456789ABCDEF..],All(`6esn` In $`6esn`[``..][Count(*)..]).`6esn` =1.e1 Starts With 9e12 With {#usn8:1.e1 Is Null Is Null,_usn4:0xabc In 123456789 In 0x0}[All(@usn6 In 010[`5esn`] Where 00[1.e1..])..],`5esn`(0[1e1][$usn1],Null =~`6esn`)[usn2(Distinct)..][Single(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7)..] As `1esn`,12.0 Starts With $`2esn` Starts With .e1 Order By [#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Ascending Skip `1esn`(#usn7[..07])[..[#usn8 In `7esn` Where 9e1 Starts With Count ( * )|`3esn` Starts With 9e0 Starts With usn1]] Limit _usn3 =~`2esn` =~0 Where #usn7[0.e0..]['s_str'..] Union All Optional Match (((:`1esn`:_usn4{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]})<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}))),_usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Where _usn4[`7esn`]"), + octest:ct_string("Unwind Count ( * ) Ends With $123456789 As ``"), + octest:ct_string("Match `2esn`=(`5esn` :``:usn2)<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2) Union Match `1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Union Optional Match `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}),(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}) Where `2esn` =~.e12 =~0X0123456789ABCDEF Merge `8esn`=((_usn3 :_usn4))"), + octest:ct_string("Merge usn2=((`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5)) On Create Set [$``[True]].#usn8! =[0.0 Is Not Null,$`4esn`[`8esn`],$123456789[12e12..9e0]] =~.e12 On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] Remove None(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null).`5esn` Unwind @usn6[123.654..][0x0..] As usn1 Union Return Distinct 01[$`7esn`..$@usn6] As `2esn`,(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]} Skip Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]) Is Not Null Is Not Null Return Distinct `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,0xabc In .12 In 0Xa Descending,.0 Contains .e12 Contains 0 Desc Unwind 0x0[usn1..usn1] As `1esn` Union All Unwind 0Xa =~False =~@usn5 As `8esn`"), + octest:ct_string("Optional Match (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Where $`7esn`[.e1][12.0] Union All Detach Delete `3esn` Starts With 9e0 Starts With usn1 Remove All(`6esn` In $`6esn`[``..][Count(*)..] Where 0X7['s_str'..][01..]).`2esn`!,(`3esn` {usn2:$usn2[`4esn`..9e12]})<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[_usn4?:@usn6|:`7esn`]->(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}).`4esn` Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] On Create Set `6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn1+=`4esn`[$_usn3..$`7esn`] Union All Return Distinct 12.e12 =~0X0123456789ABCDEF =~1.e1 As `6esn`,0.e0[..$7] As _usn3,usn1 Ends With 0.0 Skip usn2 =~$`` =~$`8esn` Limit (usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null Delete 07[_usn3..][`6esn`..] Unwind 9e12 =~@usn6 As usn1"), + octest:ct_string("With *,010 Is Not Null Is Not Null As `1esn`,0 =~1.e1 =~$#usn7 Order By Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] Ascending Skip $`5esn`[0X7..010][`7esn`..'s_str'] Where $#usn8[12.e12..`8esn`][12.0..0.0] Optional Match `2esn`=((`6esn` :#usn7:`5esn`)<-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]->(:#usn8:`1esn`$`7esn`)),((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(:`8esn`{``:$`1esn` =~999})) Union Return Distinct *,$`7esn`[0.12] Skip _usn4 Starts With 1000 Starts With $usn2"), + octest:ct_string("Unwind $`1esn` In .e0 As #usn7 Union Optional Match @usn6=(#usn7 {_usn4:1.e1[`8esn`]})<-[usn2{`2esn`:$12 Starts With $usn1}]->(:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]}) Where `6esn`[$1000][`3esn`] Union All Match usn1=(((:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[@usn6:`7esn`|:`2esn` *..07{`6esn`:$_usn4 Is Null Is Null,``:1e1 Ends With $`7esn` Ends With .0}]-(`5esn` :`3esn`{``:`` Is Null,`8esn`:$@usn6[$0..9e12][.e12..Null]}))),(`2esn` :`1esn`:_usn4)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}) Create @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) Merge ((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})) On Create Set `2esn`+=0X0123456789ABCDEF In .12,`1esn` =$`7esn` In False In $`1esn`"), + octest:ct_string("Merge ((@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]->(_usn4 )-[#usn7?:`7esn`|:`2esn` *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})) On Create Set #usn7 =[$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1],@usn6+=0.12[$0..$usn2] On Create Set `4esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1 =(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Detach Delete `7esn` Ends With $7 Ends With $@usn5,0X0123456789ABCDEF Is Not Null Is Not Null,All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1)[None(@usn6 In 010[`5esn`] Where 00[1.e1..])..[$12[$usn1..][Count(*)..],$@usn5 Contains 's_str' Contains \"d_str\"]][Extract(`3esn` In 9e1 Contains $999 Where 0e0 Starts With 999 Starts With `2esn`|9e1 Ends With Count(*) Ends With $7).._usn4(`1esn`[0.12..][@usn6..],#usn8 =~0.e0)] Detach Delete @usn6 Is Not Null Is Not Null,01 Contains usn2 Contains 0X0123456789ABCDEF,None(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])[Any(`3esn` In `2esn`[..01][..True] Where $`3esn`[..0xabc][..$7])][$#usn7]"), + octest:ct_string("Return usn2 =~$`` =~$`8esn` As `2esn`,'s_str'[0x0..1.e1] As `6esn`,$`5esn`[\"d_str\"..] As `5esn` Limit 01[07..][1.e1..] With Distinct $_usn3[$12] As #usn8,_usn4(Distinct usn2[07..][.0..]) Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]|$`2esn` Starts With `4esn` Starts With $usn1) Ends With Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Skip Single(#usn7 In $999 In 1e1 Where 07 In `6esn`) Is Null Is Null Limit .0 Contains .e12 Contains 0 Remove Extract(#usn7 In True Contains 's_str' Contains $usn1).#usn8!,#usn7().#usn7 Union Create ((`4esn` :`4esn`:`6esn`)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Optional Match (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Return *,$`5esn` Is Not Null,usn2 Contains $0 Contains .0 Order By 0.e0[$`4esn`..`2esn`] Descending,$123456789[12e12..9e0] Asc,$_usn3[_usn4..] Asc Skip $`7esn`[$_usn4][.e0] Limit Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..] Union All Remove {`5esn`:1.e1[`8esn`],`1esn`:.e0}.`1esn`,{`6esn`:12.e12 Is Not Null Is Not Null,`1esn`:#usn7[0.12..]}.`3esn`?,`6esn`(`1esn`[`3esn`..],01[..01234567][..$_usn3]).`1esn`? Unwind None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]) Ends With [_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4|0x0[0X7]] As usn1 Remove [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`8esn`[123456789..][$@usn5..]|#usn8 Is Not Null Is Not Null].#usn7"), + octest:ct_string("With *,12[``...e12] As _usn4,0X0123456789ABCDEF In $7 Order By 123.654 Starts With usn2 Starts With Count ( * ) Descending,01234567[Null..$_usn3] Asc Skip #usn8 Is Not Null Limit 9e12[_usn4..$`5esn`][_usn4...e1] Where 00[False..0e0]"), + octest:ct_string("Merge (((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[?:`8esn`*]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}))) Union All With Distinct 07[$_usn4][usn2] Order By `4esn` In 010 Asc,Single(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)[[07[_usn3..][`6esn`..],999[123.654..$usn2][Count ( * )..0x0]]..][Single(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])..] Descending Skip `` Is Not Null Is Not Null Where 9e12 Starts With 1e1"), + octest:ct_string("Merge `7esn`=(((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}))) On Create Set Single(`5esn` In 0X7 In $#usn7 Where 123456789 =~$999).`5esn` =0[01234567..][0X0123456789ABCDEF..],All(`6esn` In $`6esn`[``..][Count(*)..]).`6esn` =1.e1 Starts With 9e12 With Distinct 0.0[$usn2..] As ``,1e1[_usn3] As `3esn`,(:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Skip $`8esn`[999] Remove (:`1esn`:_usn4{`8esn`:#usn8 Is Null Is Null})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]})-[`2esn`?:@usn6|:`7esn`]->(#usn8 :@usn5{_usn4:$#usn7 Contains $`7esn` Contains .e12}).`7esn`? Union Return 01234567 In 123456789 In 12 As usn1,Count ( * ) In 123456789 In $@usn5 As _usn3 Order By #usn7 In 0.e0 Desc Skip [$#usn7 Ends With 's_str' Ends With 0X7,12e12 Ends With 0.0 Ends With usn1][Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $`6esn`[``..][Count(*)..])..Extract(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1|``[$`3esn`])][(#usn8 :`5esn`)<-[usn2?:`3esn` *00..0Xa]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})..{_usn3:_usn4 Is Null Is Null}] Union All Create (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}),`6esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) With Distinct $#usn8 Ends With `` Ends With 999 As `5esn`,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]) Is Not Null Is Not Null As _usn3 Order By _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..] Desc,{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Is Not Null Desc,9e0 Ends With $#usn8 Desc Limit 12.0 Starts With $`2esn` Starts With .e1 Where 9e1 Ends With Count(*) Ends With $7"), + octest:ct_string("Merge ((:@usn6)) On Create Set {`3esn`:07[_usn3..][`6esn`..],@usn6:``[usn1][`5esn`]}.@usn6 =Count(*)[``..#usn8][`3esn`..0xabc] On Create Set #usn7+=`6esn`[$`8esn`][9e1] Detach Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),{@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Union Return 0X7[`2esn`..] Order By 0[@usn5..$#usn7] Ascending Remove `8esn`:@usn5,Single(#usn7 In 9e0[$1000] Where $1000 Is Not Null).`5esn` Match (@usn6 :`4esn`:`6esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`2esn`?:`6esn`|:#usn8{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`}]-(_usn3 {_usn3:0.12 Starts With $`8esn` Starts With @usn5}),usn1=((:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[`2esn`?:usn1|`4esn` *00..0Xa]->({usn2:_usn3[`2esn`..0X7][0.e0..$`3esn`]}))"), + octest:ct_string("With $usn1,`1esn` Contains $999 Contains 0.0 As @usn6,$`6esn`[0e0..][010..] Order By 12.0 =~@usn6 =~$`2esn` Ascending Skip 123.654 In $999 In _usn3 Union All Unwind (`1esn` :`3esn`{#usn7:12[..0e0][...e1]})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})[(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null)][{`2esn`:$999 Ends With .e0}..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]] As `8esn` Return *,0Xa[Count(*)..],[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,0xabc In .12 In 0Xa Descending,.0 Contains .e12 Contains 0 Desc Skip All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1)[None(@usn6 In 010[`5esn`] Where 00[1.e1..])..[$12[$usn1..][Count(*)..],$@usn5 Contains 's_str' Contains \"d_str\"]][Extract(`3esn` In 9e1 Contains $999 Where 0e0 Starts With 999 Starts With `2esn`|9e1 Ends With Count(*) Ends With $7).._usn4(`1esn`[0.12..][@usn6..],#usn8 =~0.e0)] Limit `1esn` Starts With 9e1 Merge `4esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]})))"), + octest:ct_string("Remove None(_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1).``?,[@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2].`1esn` Return Distinct `1esn`[0Xa] As usn1,$`` Contains $`2esn` Contains $usn2 Order By $usn1 Ends With _usn4 Ends With `2esn` Descending,$``[..$#usn7][..`6esn`] Asc Skip 07[999]"), + octest:ct_string("Remove Any(@usn6 In False Contains 0 Contains $`6esn` Where $`5esn`[..00]).#usn7?,[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1]._usn3,Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|_usn3[`2esn`..0X7][0.e0..$`3esn`]).`7esn`? Remove {``:.e12 Ends With 0Xa Ends With 0xabc}.usn2? With Distinct 010 Starts With $`` Starts With 0e0,$#usn8 Ends With `` Ends With 999 As _usn3,$@usn5 Ends With @usn5 Ends With 0xabc Skip None(#usn7 In $999 In 1e1 Where 01234567[Null..$_usn3]) Ends With Extract(#usn8 In `7esn` Where $`5esn` Is Not Null Is Not Null) Limit `6esn` In .12 Where $``[7] Union Merge `7esn`=(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789})"), + octest:ct_string("Return Distinct None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,9e1[@usn5][$usn1] As `5esn`,`4esn` Starts With 0e0 As `7esn` Order By 1.e1 Contains `6esn` Contains 0.e0 Descending,07[..07][..0X7] Descending Limit Single(_usn4 In 12e12 In 123456789 Where 0e0 =~7 =~12.0) Starts With Extract(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]|9e12 =~@usn6) With .e1 In 0,Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])[[00[12..$`6esn`],$`4esn`['s_str'..]]..] Order By (:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Is Not Null Descending"), + octest:ct_string("Detach Delete 12.0[0X0123456789ABCDEF..] Optional Match ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)),((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Union Match (`3esn` :``:usn2)<-[?:`4esn`|@usn5 *1000..0X0123456789ABCDEF{`8esn`:0x0[0.0],`8esn`:12.e12 Starts With \"d_str\" Starts With 9e1}]-(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})"), + octest:ct_string("Merge ((usn2 :``:usn2)<-[usn1?:`1esn`|`3esn`{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->(:#usn8:`1esn`{_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})<-[`1esn`?:usn1|`4esn` *00..0Xa]-(`6esn` )) On Create Set None(`8esn` In 123456789 =~@usn6 Where Count(*) Ends With usn1).`7esn`! =All(usn2 In 7[12] Where #usn8 Is Null Is Null)[[usn2 In 7[12] Where #usn7[.e0]]..]"), + octest:ct_string("Return #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Order By `6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] Desc Limit $_usn4[$_usn4] Union All With @usn6 Is Not Null Is Not Null,(@usn6 :`8esn`)<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`}) Ends With #usn8(Distinct 12.e12 Contains #usn7 Contains $_usn4,01[`3esn`..][Count(*)..]) Ends With [`5esn`[..True][..0.e0],12 In $usn1 In 7,$`8esn`[123456789..][$@usn5..]] Skip [_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) Limit {@usn6:$`3esn`[.e1][_usn4]}[`8esn`(Distinct $``[True])..] Union Remove [$@usn5 In 12e12 In 01,$_usn4[..$_usn4][..`7esn`]].`3esn`?,[$_usn4 =~$`1esn` =~`2esn`,#usn7[`8esn`..usn1][$999..`7esn`],$@usn5[..0xabc][..$`3esn`]].`8esn`!"), + octest:ct_string("Remove All(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01).usn2! Create (((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Union All Return Distinct *,`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[12[..0e0][...e1]]..Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $123456789 Contains $#usn8 Contains ``)] As #usn8 Order By Extract(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With [#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4] Ends With [False[$`4esn`..],$#usn7[..0Xa]] Asc,@usn6[..$@usn5] Ascending Limit `1esn`[usn1][0xabc] Delete `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Is Null Return 0e0[``],0X7 In $#usn7 Order By Extract(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1|``[$`3esn`])[(:`6esn`:_usn3$usn2)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)..All(_usn3 In _usn3 Contains _usn4 Contains $@usn5)] Desc,`5esn`[$`7esn`..$@usn5] Ascending"), + octest:ct_string("Return Distinct 0.e0 Is Not Null Is Not Null As _usn4,0X0123456789ABCDEF In $usn2 In `4esn`,$usn1 Is Not Null Is Not Null Order By Count(*) Starts With usn2 Starts With `7esn` Desc"), + octest:ct_string("Create ((:`3esn`{`1esn`:`7esn`,`8esn`:12e12 =~$`7esn`})-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})),(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Union With *,{`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Order By [0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]][{usn2:$@usn6 Ends With `1esn`,_usn3:`7esn`}..][{@usn6:1e1 Is Not Null Is Not Null,`8esn`:$`1esn` Starts With $`4esn` Starts With $_usn3}..] Desc,0.0[usn1..] Desc Delete 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2],$`3esn` Ends With 1000,[$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..]"), + octest:ct_string("Unwind $`4esn`[..$`8esn`][..Null] As `7esn`"), + octest:ct_string("Delete ``[$`1esn`],All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] With Distinct usn2 =~$`` =~$`8esn` As `2esn`,'s_str'[0x0..1.e1] As `6esn`,$`5esn`[\"d_str\"..] As `5esn` Order By 1.e1 Contains `6esn` Contains 0.e0 Descending,07[..07][..0X7] Descending Skip usn1[False..] Limit `6esn`[$1000][`3esn`] Where 0x0[0X7] Union Create (_usn3 :`4esn`:`6esn`)-[?:@usn6|:`7esn`]-(:#usn8:`1esn`)-[_usn3?]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Remove (_usn4 {`7esn`:#usn7[0.e0..]['s_str'..]})-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]}).`2esn` Union Create `2esn`=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}),(({@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`})<-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->({usn2:$`2esn` Is Null,#usn8:.0 Is Null Is Null}))"), + octest:ct_string("Optional Match #usn8=((`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})) Merge ((($#usn8)<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]-(`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))) Merge (`5esn` :`4esn`:`6esn`)<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]}) On Create Set `4esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1 =(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Union Optional Match (`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-({`1esn`:#usn7[0]}),((:`4esn`:`6esn`{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})) Delete {#usn8:.0 Is Null Is Null}[..(_usn3 :@usn6{usn2:0Xa =~False =~@usn5,`3esn`:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})][..{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}],Count(*) Is Not Null Is Not Null"), + octest:ct_string("Match _usn3=((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7 *01..123456789]->(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})),``=((:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[`5esn`:#usn7|@usn5]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) Where 0x0[Count(*)..@usn6][Count(*)..0Xa] Remove Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12).`5esn`?,_usn3(0[$`5esn`],`2esn`[..$_usn4][...12]).`2esn`?,(usn1 :@usn6)<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})<-[?{`5esn`:123.654[$0..0X7][Null..#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]}]-(usn2 :`7esn`).#usn8 Create _usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})))"), + octest:ct_string("Return Distinct *,`4esn` Ends With 12 Ends With .12 As usn2 Skip `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] Limit Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``) In Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1) Detach Delete Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null) Is Not Null Is Not Null,010 Starts With $`` Starts With 0e0 Union Create #usn8=({#usn7:12e12 In $`5esn`}) Return *,Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null As usn1,00 Contains Count ( * ) Contains 0x0 As `5esn` Limit .e0 Unwind $`5esn` =~$`8esn` =~usn2 As `1esn` Union Match (`8esn` {usn1:0e0 =~7 =~12.0,`7esn`:usn2 Starts With .0})<-[:_usn4]->(_usn4 {usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}),(@usn5 :`1esn`:_usn4)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})-[? *01..123456789]-(_usn3 :`6esn`:_usn3) Where $0 =~9e1 =~$`2esn`"), + octest:ct_string("Optional Match ((@usn5 {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})) Remove Any(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`).`1esn`,Single(`3esn` In `2esn`[..01][..True]).``,{usn1:'s_str'[0..]}._usn3? With *,00[12..$`6esn`] As _usn4,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] As `3esn` Skip `8esn` Contains `2esn` Contains .0 Limit Null[.12..12e12] Where 9e12 Starts With 1e1 Union All Match ((`4esn` :`4esn`:`6esn`)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Where usn2 Contains $0 Contains .0 Merge ((`5esn` :@usn5{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) On Match Set `` =Null[..010][..1000] On Create Set #usn8 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..])"), + octest:ct_string("Match `5esn`=(`3esn` :_usn4) Remove [$123456789 Starts With 0.12 Starts With Null].`4esn`!,(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`}).#usn8 Union Return Distinct *,0x0[12e12..$`7esn`],.e1 In 0 Limit {`1esn`:$`2esn` Contains Count(*)}[[$`4esn`[0..][999..],@usn5 Contains #usn8 Contains 12.0]..[@usn6 In 010[`5esn`] Where 0e0[``..$1000][$7..12.e12]|@usn6[`1esn`..]]]"), + octest:ct_string("Create (#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}),`8esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Unwind 999 Contains 0 Contains $`5esn` As @usn5"), + octest:ct_string("Create `3esn`=((:_usn3{_usn3:$`3esn`[.e1][_usn4]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:`5esn`)<-[ *01234567..]->(#usn8 :`8esn`)) Return `3esn`[...e1] Skip 0 Is Not Null Return Distinct *,$999[0Xa..][9e1..] As `4esn` Skip $usn2 Ends With $123456789 Limit @usn6 Contains .12 Contains $usn1"), + octest:ct_string("With Distinct *,`2esn` In 9e0 In 7,$7 Starts With $`4esn` As _usn4 Skip Extract(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0) Ends With `2esn`(Distinct 123.654[`4esn`..12],_usn3[`2esn`..0X7][0.e0..$`3esn`]) Ends With [`5esn` In 0X7 In $#usn7 Where 12e12 =~1e1|0e0 =~0Xa =~$999] Where 9e0[$1000] Unwind [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null) As `7esn` Return 999[12e12..$_usn4] Order By Count(*) In #usn8 In \"d_str\" Ascending,[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null) Descending,9e12 =~@usn6 Desc Skip [#usn7 In 9e0[$1000] Where `6esn`[$1000][`3esn`]][Extract(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1|010 Starts With $`` Starts With 0e0)..] Union Unwind 1000[..$1000] As `` Return Distinct @usn5[01][@usn5],9e0 Contains $12 Contains `3esn` As #usn8,{`4esn`:0.0[usn1..],`7esn`:12.0[$1000..][#usn7..]}[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7)..[usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]]][[12.e12[..$`6esn`],999 In #usn8 In $``]..Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1)] Order By Null Ends With _usn4 Ends With 0.0 Asc Skip (`1esn` $`4esn`)-[@usn6?:`7esn`|:`2esn`]-({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]}) =~Filter(`3esn` In 9e1 Contains $999 Where 12.0 Is Null Is Null) =~[0xabc In Null] With Distinct usn2 =~$`` =~$`8esn` As `2esn`,'s_str'[0x0..1.e1] As `6esn`,$`5esn`[\"d_str\"..] As `5esn` Order By 1.e1 Contains `6esn` Contains 0.e0 Descending,07[..07][..0X7] Descending Skip usn1[False..] Limit `6esn`[$1000][`3esn`] Where 0x0[0X7] Union Return *,1e1 Is Not Null Is Not Null"), + octest:ct_string("Return *,00[12..$`6esn`] As _usn4,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] As `3esn` Skip `8esn` Contains `2esn` Contains .0 Limit Null[.12..12e12] Return Distinct *,`` =~.12 As #usn7 Order By Extract(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With [#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4] Ends With [False[$`4esn`..],$#usn7[..0Xa]] Asc,@usn6[..$@usn5] Ascending Skip \"d_str\" Is Null Is Null Limit `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Is Null Optional Match usn2=(`6esn` {`2esn`:$`3esn` Ends With 01234567}) Where usn1 Contains 010 Union Unwind $@usn6[_usn3..][$999..] As `4esn` Optional Match `8esn`=(:`4esn`:`6esn`{usn2:$`8esn` Is Not Null Is Not Null})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Where $999 Ends With .e0"), + octest:ct_string("Merge ((:`3esn`{@usn5:$`5esn` In _usn3 In 0.0})-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]->(:@usn5{#usn7:12e12 In $`5esn`})-[@usn5 *0X7..]->(`` $`6esn`)) On Match Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] With *,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As `8esn` Order By All(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null) Descending,0xabc In .12 In 0Xa Desc Detach Delete 0.12 Contains False Contains 1.e1 Union Return 0.e0 Starts With .0 Starts With 123456789,$7[01..$123456789][#usn7..12.0],(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`) As `` Order By True Ends With $_usn3 Ends With 12 Desc,$`6esn` Starts With .e12 Starts With $`1esn` Ascending,{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]} Contains ({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}) Contains None(#usn8 In `7esn`) Descending Detach Delete Extract(`6esn` In $`6esn`[``..][Count(*)..] Where $@usn5 Starts With `5esn` Starts With 01234567|0.e0[..$7]) Is Null Is Null Merge `7esn`=((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )) On Create Set `5esn`+=_usn4[$usn1..01234567][123.654..`5esn`],`2esn`+=#usn7 In 0.e0 On Match Set Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]|$``[..\"d_str\"][..$#usn8]).@usn6 =[$usn1[`2esn`..][$`2esn`..]][(`3esn` :usn2)-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})..`2esn`(Distinct $@usn6 Is Not Null Is Not Null,Count ( * ) Ends With $123456789)],None(#usn8 In `7esn` Where ``[7.._usn3]).@usn6? =`6esn`,Any(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])._usn4! =`` Is Null Union Merge #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}) On Match Set _usn3:`7esn` On Create Set Single(@usn6 In 010[`5esn`] Where 123.654).`6esn`? =0.e0[0X0123456789ABCDEF..],(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}).`3esn`? =999[..`1esn`][..07],[@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1].`6esn` =`7esn` Starts With @usn5 Merge ((_usn3 :usn2)) On Match Set Any(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0).`5esn`! =.e12 Ends With 0Xa Ends With 0xabc On Match Set `5esn`(Distinct .12[123.654..]).`3esn` =01234567 In 123456789 In 12,`6esn` =[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null Return 0.e0 =~00 As `3esn`,(`2esn` {`7esn`:999 In 0e0})<-[`8esn`?:`2esn`|`4esn` *01..123456789{`8esn`:$`4esn` Is Null Is Null,usn1:$1000 Starts With $`3esn` Starts With 0.e0}]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[ *0X7..{#usn8:.e0 Contains $#usn8}]->(`2esn` :`6esn`:_usn3) In (`8esn` :`6esn`:_usn3)-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(_usn4 {_usn4:123.654 In 12})-[?:#usn8|:`3esn` *0x0..]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) In {_usn4:.e0 Contains $#usn8,@usn6:1000[12e12][`5esn`]} As ``,#usn8[`6esn`..][$``..] As `2esn`"), + octest:ct_string("With Distinct *,$#usn7[..0Xa] As #usn8,0X7[`2esn`..] As `5esn` Order By $7[999][usn1] Asc Union All Merge (:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}) On Match Set [12e12 =~1e1,0X7[..$`8esn`]].`7esn` =1e1 Ends With $`2esn`,`8esn`+=01[$`7esn`..$@usn6] On Create Set usn1+=Extract(@usn5 In 's_str'[0..] Where 12 In $usn1 In 7) =~All(`3esn` In `2esn`[..01][..True] Where $`7esn`[.e1][12.0]),@usn6+=[$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][None(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..])..] Match (((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Where .0 Is Null Is Null Union All Unwind 07[False] As @usn5 Remove {_usn4:$``[True],`3esn`:$#usn8[@usn6..]}.@usn5!,[$@usn6[00],$@usn5 In $`6esn` In 12e12].`6esn`?,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null Is Not Null|1.e1 =~.12).usn2! Return Distinct 12 Starts With True Starts With 12e12 As _usn4 Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc"), + octest:ct_string("Unwind `8esn`[0.e0..] As #usn7"), + octest:ct_string("With Distinct $`1esn`[Null][True] As usn2,{`6esn`:$#usn7 =~`2esn`,`4esn`:True[$_usn3..]}[(:`1esn`:_usn4{#usn8:00[12..$`6esn`],@usn6:usn1[..$@usn6][..00]})-[`2esn`:`4esn`|@usn5 *01234567..]-(:`5esn`{_usn4:12 Starts With #usn7 Starts With 0Xa,#usn7:999 Is Null Is Null})-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})..Filter(@usn6 In 010[`5esn`] Where `7esn`[1e1])][Any(@usn6 In 010[`5esn`] Where False[$`4esn`..])..Extract(@usn5 In 's_str'[0..] Where `7esn` In 010 In usn1)] Limit {`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..] Return Distinct 0e0 Ends With 07 Ends With $`8esn` As `1esn`,0[01234567..][0X0123456789ABCDEF..] Order By (`1esn` :`3esn`{#usn7:12[..0e0][...e1]})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})[(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null)][{`2esn`:$999 Ends With .e0}..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]] Ascending,1.e1[..`4esn`] Ascending,0xabc Is Not Null Is Not Null Descending Limit _usn4[.12..$usn2][$_usn3..123.654] Union All Unwind 00 Ends With $`1esn` Ends With `7esn` As `8esn` Merge ((:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})) On Create Set usn1 =[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]][Any(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..])..Single(usn2 In False[$usn1][0x0] Where 9e1 Is Not Null Is Not Null)],`6esn` =12.e12 =~0X0123456789ABCDEF =~1.e1 With $usn1,`1esn` Contains $999 Contains 0.0 As @usn6,$`6esn`[0e0..][010..] Order By 0.0 Ends With $`7esn` Descending,`3esn`[7..0.e0][0.0..123456789] Asc Where ``[9e12][$999] Union Return Distinct *,$`3esn`[.e1][_usn4] Order By 12[None(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)..`5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12])][`5esn`(`2esn`[..01][..True])..(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})<-[? *7..]-(#usn7 :``:usn2)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})] Descending With Distinct usn2 =~$`` =~$`8esn` As `2esn`,'s_str'[0x0..1.e1] As `6esn`,$`5esn`[\"d_str\"..] As `5esn` Limit 01[07..][1.e1..]"), + octest:ct_string("Unwind 9e1[`1esn`..0][999..1e1] As `1esn` Unwind {usn2:$@usn6[00]}[..[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1]][..[12e12 Starts With $0 Starts With $`2esn`,$_usn3 Is Null]] As `5esn` Optional Match #usn8=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}),`2esn`=(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Union All Optional Match @usn6=((#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})),((`1esn` :usn2)) Where $usn2 Is Not Null Is Not Null Delete 9e0[$`8esn`] Unwind (:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] As #usn7"), + octest:ct_string("Merge _usn3=((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7 *01..123456789]->(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})) On Create Set (:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(usn1 :`7esn`).`4esn` =1.e1[$`3esn`][0Xa],(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})<-[`5esn`?:@usn5|_usn3{``:0.0 =~9e0 =~$0}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]}).usn2 =$`4esn` Starts With 0 Starts With `7esn`,usn2+=`2esn`[..01][..True] Union All Remove Filter(`3esn` In 9e1 Contains $999 Where 0Xa Ends With $`3esn` Ends With $1000).`4esn`,`1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]).#usn8!,Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 7[0e0..]).`8esn`! With Distinct `7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..],$`6esn`[0e0..][010..] Skip Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3) Limit 1.e1 Starts With 9e12 Union All Unwind Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)[(`` :`5esn`{@usn5:123456789 =~@usn6})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`7esn` {``:9e1 Contains $999,``:$usn2[True..0X0123456789ABCDEF]}).._usn3(Distinct 0x0 Contains $`6esn` Contains `4esn`,usn2[1.e1])][(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})..[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|9e1 Is Null]] As `4esn` Unwind [$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) As #usn8"), + octest:ct_string("Match (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}))) Where 010 Starts With 0 Starts With 0.0 Unwind usn2[`8esn`..][0X0123456789ABCDEF..] As `5esn`"), + octest:ct_string("Return *,`5esn`(0[1e1][$usn1],Null =~`6esn`)[usn2(Distinct)..][Single(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7)..] As `1esn` Order By `3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] Desc Merge @usn6=((#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})) On Match Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null On Match Set Extract(@usn5 In 's_str'[0..] Where @usn6 In .12 In `3esn`|$@usn6[00]).`8esn`? =9e0 Contains $12 Contains `3esn`,_usn4+=0x0[@usn5][$#usn8],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null Unwind (#usn7 )<-[`5esn`?:@usn5|_usn3{``:0.0 =~9e0 =~$0}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]}) Contains Filter(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null) As `` Union All With $@usn6[12.0][12.0] Skip `7esn`[$usn2..][$123456789..] Optional Match `3esn`=(`` {`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']})<-[`6esn`? *00..0Xa]->(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}),usn1=((`1esn` {``:0.0 Is Not Null,`1esn`:``[$`3esn`]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})) Where 01234567[\"d_str\"..`4esn`] Unwind $`1esn` In .e0 As #usn8"), + octest:ct_string("With *,#usn8 Is Not Null Skip usn1 Ends With 9e0 Ends With 9e0 Limit `8esn` Contains Count(*) Contains $#usn7"), + octest:ct_string("Unwind \"d_str\"[#usn8] As #usn7 Return *,$_usn4[usn2..] As @usn5,@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])] Order By Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[..[#usn7 In True Contains 's_str' Contains $usn1 Where Count(*) Ends With usn1]][..Filter(usn2 In 7[12] Where #usn7[0.e0..]['s_str'..])] Ascending,{@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Asc,usn2[1.e1] Descending Delete `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Is Null"), + octest:ct_string("Match (:usn2)<-[? *01..123456789{`8esn`:usn2 =~7,@usn5:`6esn` Ends With _usn4 Ends With False}]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`4esn`:usn2]->(`3esn` :_usn4),(({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn4?:@usn6|:`7esn`]-({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn3?:_usn3|:`7esn`]->(`3esn` {`8esn`:`7esn` In 010 In usn1})) Where 00 Ends With `` Ends With 12.e12 Match (((`6esn` :#usn7:`5esn`)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(_usn4 :#usn7:`5esn`))),`1esn`=(`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) Create (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3),(@usn6 :`4esn`:`6esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`2esn`?:`6esn`|:#usn8{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`}]-(_usn3 {_usn3:0.12 Starts With $`8esn` Starts With @usn5}) Union With Distinct (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Unwind Extract(@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1) Is Not Null As `1esn` Unwind Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[{`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}] As #usn8 Union All Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] On Create Set `6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn1+=`4esn`[$_usn3..$`7esn`]"), + octest:ct_string("Create ((#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})),usn2=((_usn3 :_usn4)-[`3esn`:`2esn`|`4esn`]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[:@usn6|:`7esn` *01..123456789]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07})) Unwind 12 Is Not Null As `6esn` Unwind `8esn` Contains Count(*) Contains $#usn7 As _usn4 Union Return *,$@usn6 Ends With `1esn` Order By $999 Is Null Is Null Descending,0e0 =~7 =~12.0 Asc Skip `` =~.12 Union Remove Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|@usn5 Contains 9e0)._usn4? Create ((#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[`7esn`? *0Xa{@usn5:123.654 Is Not Null}]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`}))"), + octest:ct_string("Delete 0X0123456789ABCDEF[..0xabc],All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where False[$usn1][0x0]) In [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null|9e12[9e1]] In [12.0 Is Null,$_usn4[..$_usn4][..`7esn`]],$`4esn` Starts With 0 Starts With `7esn` Merge ((`` {#usn7:#usn8 Is Not Null Is Not Null})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`2esn` :@usn5)<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Union Return Distinct *,`5esn`(0[1e1][$usn1],Null =~`6esn`)[usn2(Distinct)..][Single(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7)..] As `1esn` Order By `3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] Desc Delete count($`4esn`[`8esn`],`4esn` Is Not Null Is Not Null) =~Filter(@usn5 In 's_str'[0..] Where _usn3[0x0]),9e1[$`1esn`..],$usn2[`2esn`..] Unwind Extract(@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1) Is Not Null As `1esn` Union All Create @usn6=((usn2 {`5esn`:$@usn5 In 12e12 In 01})-[`8esn`:#usn7|@usn5 *00..0Xa]-(_usn3 {usn1:0x0 Starts With $`6esn`})),`2esn`=((#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]-(usn2 :_usn4))"), + octest:ct_string("Detach Delete Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`) Create _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),(((`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})<-[:`2esn`|`4esn` *0X0123456789ABCDEF..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(@usn6 :`2esn`{`4esn`:$999[0Xa..][9e1..]}))) Merge ((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) On Create Set `5esn` =$1000[$`4esn`..False],`6esn` =[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`],`2esn` =12.0 Is Null"), + octest:ct_string("With *,9e12 =~@usn6,`4esn` Contains 9e0 Order By 1000[..$1000] Descending Skip Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Limit {``:123.654 In $`7esn`}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..None(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6 =~#usn7 =~True)] Where $`` Starts With $1000 Starts With @usn6 With 12.0 Ends With `2esn` Order By 0e0 =~7 =~12.0 Ascending,0Xa[Count(*)..] Ascending,7 Is Not Null Descending Skip $@usn6 Ends With 123456789 Ends With 12.0 Limit Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Where usn1 In `` Return Distinct $@usn6 Ends With 12.e12 Ends With @usn5 As usn2,``[usn1][`5esn`],`7esn`[..$`6esn`] Order By $@usn6 In @usn6 In 1e1 Desc,.e1[..$`3esn`][..01] Desc Limit Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null"), + octest:ct_string("Optional Match (:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})<-[`7esn`:`4esn`|@usn5 *12..]->({`4esn`:.e1[..$`3esn`][..01]}),_usn4=((#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[`5esn`? *01234567..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(usn1 {``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})) Where True[..#usn8] With [.e12 Is Null Is Null] Starts With `5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12]) Starts With None(`8esn` In 123456789 =~@usn6 Where `7esn`[$usn2..][$123456789..]),9e1[usn1..0x0][12.e12..12.0] As usn1,Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3) As `7esn` Order By [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[$usn1..][Count(*)..]|0e0 =~7 =~12.0] Is Null Is Null Descending,@usn5[0..] Ascending Skip 0.0[..Count ( * )][..`1esn`] Where 12e12 In $`5esn` Union Detach Delete 9e0[$`8esn`],`5esn` Contains #usn7 Contains 9e12,12 Is Null Match @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Where 7[0e0..] Detach Delete (`4esn` :#usn7:`5esn`{_usn4:0Xa Ends With $`3esn` Ends With $1000})-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})[[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]|`1esn`[0.12..][@usn6..]]..][{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}..],07 Contains `3esn` Contains `7esn`,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)"), + octest:ct_string("Create (((`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})<-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Remove Extract(#usn8 In `7esn` Where 9e12[$`5esn`..$123456789]|`1esn` Starts With 0xabc Starts With $usn2).`5esn`,{@usn6:0e0 =~7 =~12.0}._usn3! With *,All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],12 In $usn1 In 7 As `8esn` Skip None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1) Limit $@usn5 Starts With .e1 Where usn1 Is Null Is Null Union All With $999[0Xa..][9e1..] As `4esn` Skip [#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Where 1000 Ends With `7esn`"), + octest:ct_string("Unwind `8esn`[..$#usn8] As @usn6 Union All Remove All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $usn1 Ends With _usn4 Ends With `2esn`).`8esn`!,[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|1.e1 In 1000 In _usn3].`2esn`?"), + octest:ct_string("Merge (`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]}) On Create Set usn1+={_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]} Contains ({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}) Contains None(#usn8 In `7esn`) Unwind usn2[..$usn1][..$#usn8] As `` Union Remove {@usn6:0e0 =~7 =~12.0}._usn3!,`3esn`:_usn3 Optional Match ``=(_usn3 :`4esn`:`6esn`)-[?:@usn6|:`7esn`]-(:#usn8:`1esn`)-[_usn3?]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}),#usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) Return Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],010 Is Null Is Null As #usn8,All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] As `8esn` Order By $_usn3[_usn4..] Asc,0.12 Is Null Is Null Desc,`6esn` Ends With _usn4 Ends With False Ascending Skip 1.e1 =~.12 Limit `1esn`[$@usn6][07] Union All Optional Match ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)) Merge ((usn2 {`5esn`:$@usn5 In 12e12 In 01})-[`8esn`:#usn7|@usn5 *00..0Xa]-(_usn3 {usn1:0x0 Starts With $`6esn`})) Remove Filter(`3esn` In `2esn`[..01][..True] Where #usn7 Starts With $123456789 Starts With 12e12).`8esn`?,@usn5:`6esn`:_usn3,#usn7:@usn6"), + octest:ct_string("Match (:`7esn`{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]}) Where .0[..'s_str'][..01234567] Unwind None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]) Is Null As `8esn` Union Remove {`5esn`:01234567[\"d_str\"..`4esn`]}.`3esn`? Return *,$`8esn`[999] As @usn5,00 Ends With `` Ends With 12.e12 Skip All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] Optional Match usn2=((usn1 {_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})),({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) Where .e1[usn2..$_usn3][.0..$#usn7]"), + octest:ct_string("With Distinct $usn2[`5esn`..][01234567..] As #usn8 Skip $`6esn`[1.e1][$_usn3] Limit False[$`4esn`..] Delete 12[..$999][..$`2esn`],Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])] Remove None(@usn5 In 's_str'[0..] Where 0.e0).`4esn`,{usn1:0[1e1][$usn1],``:`1esn`[`3esn`..]}.`6esn`! Union All Merge (@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) Merge (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}) On Match Set #usn7+=[#usn8 In `7esn` Where usn2[07..][.0..]|$usn1 Ends With _usn4 Ends With `2esn`] Contains (_usn3 {#usn7:1000[12e12][`5esn`]})-[`3esn`?:`3esn`]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0}) Contains Extract(`3esn` In `2esn`[..01][..True] Where usn1 In ``),@usn6:`8esn`,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.0 Starts With $`2esn` Starts With .e1).`8esn`? =$`3esn`[$_usn4..0Xa]"), + octest:ct_string("Remove All(@usn5 In 's_str'[0..] Where 12e12 Is Not Null)._usn3!,`3esn`(Distinct $@usn5 In $`6esn` In 12e12).`8esn`! Remove `5esn`($`4esn` In 1.e1 In #usn7,0Xa[Count(*)..]).`5esn`,(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`).`3esn`,None(#usn8 In `7esn` Where 9e12[..1e1][..'s_str'])._usn4? Union Create (@usn6 {`4esn`:9e1 Contains 12}) Return *,0X7[`2esn`..] As `6esn`,$`1esn` Contains 1e1 Contains @usn6 As `3esn` Order By $_usn3[_usn4..] Descending,9e1 Contains $999 Ascending Unwind 07[999] As @usn6 Union All Unwind 0x0[``..] As usn1"), + octest:ct_string("With Distinct 0.e0['s_str'..][01234567..] As `1esn`,None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,.0[$``..0X7] Skip usn2 =~$`` =~$`8esn` With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Where 12.e12 Ends With $`` Unwind (@usn6 :`8esn`)<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`}) Ends With #usn8(Distinct 12.e12 Contains #usn7 Contains $_usn4,01[`3esn`..][Count(*)..]) Ends With [`5esn`[..True][..0.e0],12 In $usn1 In 7,$`8esn`[123456789..][$@usn5..]] As `6esn`"), + octest:ct_string("Merge _usn3=(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[`4esn`:usn2]->(`3esn` :_usn4) On Match Set `8esn` =[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] With Distinct #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Order By Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[..[#usn7 In True Contains 's_str' Contains $usn1 Where Count(*) Ends With usn1]][..Filter(usn2 In 7[12] Where #usn7[0.e0..]['s_str'..])] Ascending,{@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Asc,usn2[1.e1] Descending Skip $``[01234567..][.0..] With Distinct *,$`1esn` Starts With Count(*) Limit `7esn`[..$`6esn`]"), + octest:ct_string("Optional Match (((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))),(_usn4 :#usn7:`5esn`)-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-(`5esn` :#usn8:`1esn`) Where .e0[999..1000][1e1..$`8esn`] Match ((:@usn6)) Where 9e1[_usn3] Union All Merge ((_usn3 :`8esn`{#usn8:False Starts With 0X7 Starts With 01234567})<-[`1esn`?:@usn6|:`7esn`]-(`` {`8esn`:$`6esn`[``..][Count(*)..]})) On Match Set #usn7 =9e1[`1esn`..0][999..1e1],All(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True]).`1esn`? =$usn2[`2esn`..$`1esn`],Single(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1).#usn7 =All(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null) Create usn2=((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`))"), + octest:ct_string("Merge ``=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})) On Create Set #usn8 =$_usn4[$`6esn`..]"), + octest:ct_string("Unwind $#usn7 Ends With \"d_str\" As `7esn` Optional Match ((`1esn` {_usn4:`8esn` Is Null})),`2esn`=(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Where usn2[1.e1] Remove {@usn5:07 Ends With 9e12 Ends With `2esn`}.`2esn`!,{usn2:_usn3[`2esn`..0X7][0.e0..$`3esn`]}.`2esn` Union All Create (((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}))),`7esn`=(({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(usn1 :_usn3{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})) Return Distinct $#usn7 =~`2esn` As `4esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc Skip usn2 Is Null Is Null Limit @usn6 Is Not Null Is Not Null Union All Return Distinct *,Null[..010][..1000] As #usn7,9e12 Ends With 12e12 Ends With 12 As `` Order By 1000[$7..][_usn4..] Desc Skip $`3esn` Ends With 01234567 Limit 7 Ends With .12 Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Unwind usn1[..$@usn6][..00] As `4esn`"), + octest:ct_string("Merge `7esn`=((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )) On Create Set `5esn`+=_usn4[$usn1..01234567][123.654..`5esn`],`2esn`+=#usn7 In 0.e0 On Match Set Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]|$``[..\"d_str\"][..$#usn8]).@usn6 =[$usn1[`2esn`..][$`2esn`..]][(`3esn` :usn2)-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})..`2esn`(Distinct $@usn6 Is Not Null Is Not Null,Count ( * ) Ends With $123456789)],None(#usn8 In `7esn` Where ``[7.._usn3]).@usn6? =`6esn`,Any(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])._usn4! =`` Is Null Match (((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[?:_usn4]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1}))),#usn7=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`})) Where 123.654 In 12 Return [#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]) As usn2,(`5esn` :@usn6{usn1:'s_str'[0..]})<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})[All(#usn7 In 9e1[$`1esn`..] Where ``[$`3esn`])] As `3esn` Order By @usn6 =~999 =~@usn5 Ascending,$@usn5[..$#usn7] Descending,{`4esn`:12e12 =~$`7esn`} Is Not Null Is Not Null Desc Skip Count(*)[9e12..12.0]"), + octest:ct_string("Unwind 00[..$`8esn`][..7] As `6esn` Merge (@usn5 :@usn6{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[`8esn` *0xabc]-(:_usn3{_usn4:.e1[7..][9e0..]}) On Match Set Single(@usn6 In 010[`5esn`] Where 123.654).`6esn`? =0.e0[0X0123456789ABCDEF..],(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}).`3esn`? =999[..`1esn`][..07],[@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1].`6esn` =`7esn` Starts With @usn5 Union Create ((`4esn` :_usn3{usn2:01[..0Xa][..12],`1esn`:999[..`1esn`][..07]})-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})),((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) With 999[12e12..$_usn4] Order By Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,0X7[.0] Asc,$`3esn`[..0X0123456789ABCDEF][..7] Descending Limit #usn7 =~9e12 Union With usn2 Starts With .0 Skip \"d_str\" In @usn5 In $@usn5 Limit _usn4 Starts With 1000 Starts With $usn2 Where _usn4 Is Not Null Is Not Null Merge (#usn7 {#usn7:1.e1 Starts With 9e12})<-[`5esn`?:@usn5|_usn3{``:0.0 =~9e0 =~$0}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]})-[@usn5?{#usn7:12e12 In $`5esn`}]->(`8esn` :`8esn`) On Match Set #usn7 =[$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1],@usn6+=0.12[$0..$usn2]"), + octest:ct_string("Return Distinct *,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) As `7esn` Order By 9e0[$1000] Asc Limit (`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Remove [999 Is Not Null Is Not Null,123.654 In $`7esn`].`6esn`,[#usn7 In 9e1[$`1esn`..] Where $`7esn`[$_usn4][.e0]|.0[..'s_str'][..01234567]].usn1?,[`6esn` In $`6esn`[``..][Count(*)..]|.e12 Starts With $12 Starts With .e12].`7esn`! Remove `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]).#usn8! Union All Merge `6esn`=((:_usn3{`7esn`:$999 Ends With .e0})<-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]-(#usn8 :_usn4)-[:`` *0..01]-(`3esn` :`1esn`:_usn4{#usn8:1e1 Is Not Null Is Not Null})) With Distinct [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) As usn2,#usn8 =~0.e0,$usn1 Limit 00 In @usn6 In 0 Where #usn8 =~.e0 With Distinct $`4esn`[0..][999..],Filter(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12])[..Extract(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])][..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]],(`3esn` {usn2:00[False..0e0]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null})<-[@usn6?:`8esn` *0..01]->(`5esn` :`4esn`:`6esn`)[[12.0 Starts With $`2esn` Starts With .e1]..] As `5esn` Order By .e12[`2esn`..010] Desc,0xabc In 010 In #usn7 Ascending Skip 1e1 Ends With $`7esn` Ends With .0 Where 9e1[$#usn8][$1000] Union All Unwind {_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]} Contains ({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}) Contains None(#usn8 In `7esn`) As `4esn`"), + octest:ct_string("Remove All(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7).`2esn`!,(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[ *01234567..]->(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`}).usn2,@usn6:_usn4 With *,``(Distinct 00 Ends With `` Ends With 12.e12,`6esn`[..Count ( * )][..$_usn4]) In (usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[`7esn`?:#usn8|:`3esn`{`6esn`:'s_str'[0..]}]->(#usn8 :`8esn`$#usn8) In Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1]) As `3esn` Order By $usn2[`5esn`..][01234567..] Asc,$`7esn`[.e1][12.0] Asc,$`5esn` =~usn1 Ascending Skip @usn6(0X7 In $#usn7,_usn4 Contains `` Contains 1.e1)[Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)..Any(#usn7 In 9e1[$`1esn`..] Where $`2esn` Ends With `6esn`)] Optional Match `8esn`=((_usn3 :_usn4))"), + octest:ct_string("Merge _usn4=(`1esn` {@usn5:`2esn` Starts With $`4esn`}) On Match Set #usn7 =9e1[`1esn`..0][999..1e1],All(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True]).`1esn`? =$usn2[`2esn`..$`1esn`],Single(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1).#usn7 =All(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null) Unwind 0.0 Ends With $`7esn` As #usn7"), + octest:ct_string("With *,$usn2 =~9e1,1e1 Is Null Is Null As usn2 Order By `1esn` Contains $999 Contains 0.0 Ascending,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Descending Skip 123.654[$@usn5..] Where `3esn` Starts With 9e0 Starts With usn1 Optional Match ((({`7esn`:999 In 0e0})<-[#usn7 *01..123456789]->({`2esn`:`7esn` In 010 In usn1,`8esn`:$0[123.654..0.e0]})<-[? *7..]-(usn1 {@usn5:_usn4[$usn1..01234567][123.654..`5esn`],`5esn`:1.e1 =~$_usn4}))) Delete [#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Union All Merge @usn6=((`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[@usn5?:usn2 *00..0Xa{usn2:$usn2[`4esn`..9e12]}]->(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->(usn2 :usn1:`3esn`)) Unwind `8esn`(Distinct #usn8 Is Not Null Is Not Null,`2esn` In 9e0 In 7) Starts With None(usn2 In 7[12] Where 123456789 =~12 =~'s_str') As `` Union All Unwind 0.0 Is Not Null As `` Detach Delete 999[12.e12]"), + octest:ct_string("Optional Match (:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]}),(((#usn8 :_usn4{@usn5:$0[0Xa..$123456789]})<-[ *..010{#usn7:``[$`3esn`]}]-(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]})<-[ *00..0Xa]->(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]}))) Detach Delete Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null,@usn5[$`7esn`..`5esn`]"), + octest:ct_string("Create (((usn2 {`5esn`:$@usn6 Ends With `1esn`})<-[`2esn`? *01..123456789]-(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]})<-[? *7..{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]-(#usn7 :``:usn2)))"), + octest:ct_string("Create @usn6=(((`1esn` $`4esn`)<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)-[@usn5?{#usn7:12e12 In $`5esn`}]->(#usn8 ))),usn1=((:@usn5{@usn5:$12[9e0..$999]})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})) Return *,12 Ends With True Ends With @usn6,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3) Ascending,$@usn6 =~0xabc =~$999 Descending,[`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5|`7esn`[1e1]] Contains (`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->(`2esn` {`1esn`:$`4esn` Is Null Is Null}) Contains Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``) Desc Union Remove _usn4:`2esn` Remove Any(#usn7 In 9e1[$`1esn`..] Where 999 In #usn8 In $``).`7esn` Merge `4esn`=((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`))"), + octest:ct_string("Create `7esn`=((`6esn` :`5esn`)<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`5esn` :`4esn`:`6esn`)) Create usn2=(:#usn8:`1esn`$`7esn`),`4esn`=(({#usn7:$@usn6[$0..9e12][.e12..Null]})) Optional Match (usn2 :_usn4),`1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Where 0e0[01][$`7esn`]"), + octest:ct_string("Merge `4esn`=(({#usn7:$@usn6[$0..9e12][.e12..Null]})) On Create Set count(Count(*) Is Null,`` Is Null).`8esn` =0Xa In $`6esn`"), + octest:ct_string("Remove [00[..$`8esn`][..7],_usn4 Starts With `` Starts With 1000,.e0].`1esn`?,Filter(usn2 In False[$usn1][0x0] Where $`7esn`).`2esn`! Unwind 0e0 Is Not Null As `6esn` Union Return Distinct 999[12e12..$_usn4] Order By Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,0X7[.0] Asc,$`3esn`[..0X0123456789ABCDEF][..7] Descending Limit #usn7 =~9e12 Unwind @usn6[..$@usn5] As #usn7"), + octest:ct_string("Unwind $0[0.e0] As `7esn` With Distinct Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..],{#usn8:12.0 Ends With `2esn`,@usn5:usn1 Starts With 00}[Any(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..],999 In 0e0 As #usn7 Order By `1esn` Starts With 9e1 Desc Where $@usn5[..$#usn7] Return 01234567 In 123456789 In 12 As usn1,0.0 Contains #usn7 As #usn8 Order By Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null Asc,{usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}[[@usn5 In 9e0 Ends With $#usn8 Where 00 Contains Count ( * ) Contains 0x0]] Asc,(:`2esn`)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})-[@usn6? *0X0123456789ABCDEF..{``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6}]-(`5esn` :@usn5) Is Null Is Null Ascending Skip 0e0[$999..0.0][$`8esn`..1.e1] Limit None(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1) Contains `3esn`(Distinct $123456789[...12][..@usn6]) Contains {``:`1esn` Starts With 0xabc Starts With $usn2} Union Unwind Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] As @usn6 With $#usn7 =~`2esn` As `4esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc Skip usn2 Is Null Is Null Limit @usn6 Is Not Null Is Not Null Where 's_str' Ends With `7esn` Ends With 010 Union Remove ({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})-[`4esn`?:`5esn`|:usn2]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[@usn5:usn2{`5esn`:#usn8 =~.e0}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]}).`4esn`? Merge #usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Detach Delete Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`)[Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``)][Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 1e1 Contains 's_str' Contains `3esn`|$`2esn` Ends With `6esn`)]"), + octest:ct_string("Unwind True Starts With Null As usn1 Merge `4esn`=(:#usn7:`5esn`{`4esn`:$``[..\"d_str\"][..$#usn8]}) On Create Set #usn8(Distinct 0[$`5esn`],Count(*)[9e12..12.0]).`7esn`! =123.654 In $999 In _usn3 On Match Set `1esn` =0x0[@usn6..][01..],`5esn`(Distinct $#usn7 Contains $`7esn` Contains .e12).@usn6! =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`) Is Null Unwind usn1[...e12][..1.e1] As #usn8 Union All Merge ({`4esn`:.e1[..$`3esn`][..01]})-[`5esn`:#usn7|@usn5]-(`5esn` :`4esn`:`6esn`) Create (_usn3 :`7esn`) Unwind $`2esn` Starts With $@usn5 Starts With #usn7 As `4esn` Union With Distinct *,12.e12 Contains `6esn`,12[``...e12] As `6esn` Limit Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null] Optional Match `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}),(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}) Where `2esn` =~.e12 =~0X0123456789ABCDEF Remove Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|@usn5 Contains 9e0)._usn4?"), + octest:ct_string("Unwind @usn6[123.654..][0x0..] As `2esn` Delete [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null),0x0 In `8esn` Union Detach Delete (`1esn` $`4esn`)-[@usn6?:`7esn`|:`2esn`]-({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]}) =~Filter(`3esn` In 9e1 Contains $999 Where 12.0 Is Null Is Null) =~[0xabc In Null],[$`1esn`[``][07],$`4esn`[`6esn`..$12],False[$usn1][0x0]] =~[.e12 Is Null Is Null],$`3esn` Merge (_usn3 :`7esn`) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] On Create Set #usn7+=Null[.12..12e12],Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]).`1esn`! =[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)],@usn6 =usn2[1.e1]"), + octest:ct_string("Delete [$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],0.0[$@usn5.._usn4],7 Ends With 01234567 Ends With 0Xa Unwind .0 Ends With 999 Ends With $`5esn` As @usn5 Union All Return *,1e1 Contains 0.e0 Contains 9e1 Limit None(#usn7 In 9e0[$1000] Where $1000 Is Not Null) Is Null Is Null Return 12.e12 =~0X0123456789ABCDEF =~1.e1 As `6esn`,.e12[`2esn`..010],.e0 Starts With $@usn6 Starts With $7 As `5esn` Order By Single(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) Contains Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0[1e1][$usn1]) Contains {`4esn`:9e1 Contains 12} Ascending Skip usn1 Limit 123456789 Contains 0Xa With Distinct 0Xa Ends With $`3esn` Ends With $1000,Extract(@usn5 In 's_str'[0..] Where 12e12 Is Not Null) =~[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]],$#usn8[@usn6..] As `7esn` Order By (`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Desc,$usn1[Null][`8esn`] Desc,$`5esn` In `2esn` In `2esn` Asc Limit [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Ends With `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Ends With [$`1esn`[``][07],`7esn`] Where _usn3[$`1esn`..]"), + octest:ct_string("Delete $_usn4[9e0..][$1000..] Unwind 7[0e0..] As `6esn` Union Remove All(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`).`6esn`? Union Match ``=((:`3esn`{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})),(((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null})))"), + octest:ct_string("Unwind 7[0e0..] As `6esn` Optional Match ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)) Union With *,00[12..$`6esn`] As _usn4,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] As `3esn` Order By (`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[``? *0x0..{`6esn`:$`2esn` Contains Count(*)}]->(`6esn` :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`3esn` {``:9e1 Is Null,usn1:9e0[Count(*)..0.12][$`1esn`..12.0]})[..{`6esn`:.e12 Is Null Is Null}] Descending,`1esn` Starts With 9e1 Asc,$`8esn` Contains 12 Contains `6esn` Asc Skip True Ends With $_usn3 Ends With 12 Limit usn1 Ends With 0.0 Unwind 010 Starts With $`` Starts With 0e0 As `3esn` Union Create ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)),((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Optional Match ((`1esn` {_usn4:`8esn` Is Null})),`2esn`=(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Where usn2[1.e1]"), + octest:ct_string("Unwind $`2esn` Contains Count(*) As `4esn` Union Return $#usn7 Ends With 's_str' Ends With 0X7 As usn1,Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])[[00[12..$`6esn`],$`4esn`['s_str'..]]..] As `3esn` Order By [_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1|999 Contains $1000] Starts With Single(`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``) Descending,01[07..][1.e1..] Ascending Skip 9e12[_usn4..$`5esn`][_usn4...e1] Unwind None(@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn2..][$123456789..]) =~{`2esn`:7[12],usn1:.12[0X7..][12e12..]} =~Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)|True[0xabc..01234567][$`8esn`..$@usn6]) As _usn3 With `2esn` Starts With 12.e12 Starts With 12.0 As #usn8,$_usn3 Is Not Null Is Not Null Order By All(#usn7 In 9e0[$1000] Where 0x0[12e12..$`7esn`])[(:`5esn`{_usn4:12 Starts With #usn7 Starts With 0Xa,#usn7:999 Is Null Is Null})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})][{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}] Desc Union All Optional Match (`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}) Return Distinct _usn3 Is Not Null Is Not Null As `` Skip 0X7[..$`8esn`] Limit {@usn5:$@usn6 Is Not Null Is Not Null} Starts With [`3esn` In `2esn`[..01][..True] Where 0x0[usn1..usn1]] Starts With Extract(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..]|0X7['s_str'..][01..])"), + octest:ct_string("Detach Delete Single(_usn4 In 12e12 In 123456789 Where False Is Null)[[$usn1,_usn4 Contains `` Contains 1.e1]][(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]})],0 =~1e1"), + octest:ct_string("Match (`3esn` {usn2:$usn2[`4esn`..9e12]}),usn1=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) Where 9e1 Ends With Count(*) Ends With $7 Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),Single(_usn4 In 12e12 In 123456789 Where False Is Null)[[$usn1,_usn4 Contains `` Contains 1.e1]][(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]})] Delete \"d_str\" Is Not Null,$usn1"), + octest:ct_string("Return Distinct $@usn6[.0..][0e0..] Order By $`8esn` Is Not Null Is Not Null Descending,Null Ends With _usn4 Ends With 0.0 Ascending Limit .e0 Create `4esn`=((`6esn` :#usn8:`1esn`{`6esn`:usn1[..$@usn6][..00]})-[@usn5:_usn4 *0x0..]-(_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})),(:`4esn`:`6esn`{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]-(:`6esn`:_usn3)<-[@usn5? *999..{usn1:.e12[$@usn6..00][01234567.._usn3],`1esn`:`7esn` Contains 9e0}]-({@usn6:999 Contains 0 Contains $`5esn`,#usn7:999[..`1esn`][..07]}) Union Return Distinct *,00 Ends With $`1esn` Ends With `7esn`,$@usn6 Is Not Null Is Not Null As `8esn` Order By (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Descending,[#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Descending Skip [usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Limit 12.e12 =~.0 =~usn1 Union All Delete [0x0 Ends With 12.0 Ends With `5esn`,12e12 Ends With 0.0 Ends With usn1,00[1.e1..]] Ends With All(#usn8 In `7esn` Where $`3esn`[..0xabc][..$7]) Ends With Any(@usn6 In False Contains 0 Contains $`6esn` Where `6esn`[$1000][`3esn`]) With Distinct *,@usn5 Contains #usn8 Contains 12.0 As `6esn`,{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] Skip 0.0 Is Null Is Null Where 07 Ends With 9e12 Ends With `2esn` Unwind usn1 Starts With 00 As _usn3"), + octest:ct_string("Return Distinct *,`5esn`[..123.654][...e12],12e12 =~$`7esn` Skip 0 =~1.e1 =~$#usn7 Union Merge (({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Union Create @usn6=(((`` :`5esn`{@usn5:123456789 =~@usn6})<-[`2esn`? *01234567..]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}))) Merge @usn6=((`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[@usn5?:usn2 *00..0Xa{usn2:$usn2[`4esn`..9e12]}]->(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->(usn2 :usn1:`3esn`)) Remove [False[$`4esn`..],$#usn7[..0Xa]].usn1?,({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}).`5esn`"), + octest:ct_string("Remove {#usn7:`7esn`[$usn2..][$123456789..]}.usn1!,[$0 =~9e1 =~$`2esn`,\"d_str\"[True..]].``,Any(usn2 In 7[12] Where 0x0 Ends With 12.0 Ends With `5esn`).#usn8 Union All With Distinct `2esn` Starts With 12.e12 Starts With 12.0 As #usn8,$_usn3 Is Not Null Is Not Null Order By All(#usn7 In 9e0[$1000] Where 0x0[12e12..$`7esn`])[(:`5esn`{_usn4:12 Starts With #usn7 Starts With 0Xa,#usn7:999 Is Null Is Null})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})][{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}] Desc Where `7esn` In 010 In usn1 Unwind _usn3 Is Not Null Is Not Null As _usn3 Return $@usn5 In 12e12 In 01 As `2esn`,0xabc =~@usn5 =~$usn1 As `8esn` Limit $`4esn`[07..]"), + octest:ct_string("Create ({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}) Remove Filter(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`).#usn7,[usn2 In 7[12] Where 12e12 Contains `2esn`].@usn5! Detach Delete $`8esn`[999],usn2 Ends With $`4esn`"), + octest:ct_string("Merge ((:usn2{``:Count(*)[9e12..12.0],#usn7:`2esn`[$12..]})) On Match Set `4esn`+=$0 =~9e1 =~$`2esn`,_usn3 =Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] On Create Set #usn7+=$999 In 1e1"), + octest:ct_string("Unwind `2esn`[..$_usn4][...12] As `3esn`"), + octest:ct_string("Detach Delete Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}],Extract(usn2 In 7[12] Where usn1 Starts With 00|`8esn` Contains Count(*) Contains $#usn7) Contains None(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[0.e0]) Contains Extract(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]|$`4esn`['s_str'..]),`` Starts With $123456789"), + octest:ct_string("Unwind Count ( * ) In True In @usn5 As usn1 Union All With *,`2esn` In 9e0 In 7,$7 Starts With $`4esn` As _usn4 Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Limit None(#usn7 In 9e0[$1000] Where $_usn3 Is Null) In (:`3esn`)<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})<-[`4esn`:`1esn`|`3esn` *12..]-(#usn8 :`8esn`) In {`7esn`:$``[..\"d_str\"][..$#usn8],`7esn`:$`` Contains $`2esn` Contains $usn2} Where 12e12 Is Not Null Unwind 07 In 0Xa In usn1 As #usn8 Union Create `8esn`=(((`4esn` :`4esn`:`6esn`)<-[ *..07{`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn3{@usn5:$1000 Starts With $`7esn`})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]}))) Delete .e12 Starts With $7 Starts With .0 Optional Match ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)),((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Where $`3esn`[..0xabc][..$7]"), + octest:ct_string("Remove All(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`).@usn6,Extract(`3esn` In 9e1 Contains $999 Where 12.0 Is Null Is Null)._usn4,Extract(`3esn` In `2esn`[..01][..True] Where $`6esn`[1.e1][$_usn3]|`2esn`[$12..]).@usn5! Create ((`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Union All Remove [`8esn` In 123456789 =~@usn6 Where `7esn`[$usn2..][$123456789..]].@usn6?,None(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]).``!,[1.e1[$usn1]].@usn5! Create ((`` {`7esn`:$#usn7[..0Xa]})-[_usn4{@usn5:`6esn`[$1000][`3esn`]}]-(`` :#usn8:`1esn`{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1}))"), + octest:ct_string("Delete 01234567 In 123456789 In 12 Detach Delete {``:1.e1 In 1000 In _usn3}[[`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1]][Single(#usn7 In 9e1[$`1esn`..] Where `4esn` Is Not Null Is Not Null)],999[..`1esn`][..07] With *,_usn4(#usn7 Starts With $123456789 Starts With 12e12) In None(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1) As @usn5,#usn7[`8esn`..usn1][$999..`7esn`] Order By $@usn6[_usn3..][$999..] Asc,[$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa) Asc Limit @usn6[`1esn`..] Where $`1esn` Starts With Count(*)"), + octest:ct_string("Optional Match `2esn`=(`3esn` {_usn4:123.654 In 12})-[`4esn`?:_usn4 *7..]-(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})<-[ *00..0Xa]->(#usn7 :usn1:`3esn`),((@usn6 :@usn6{_usn4:#usn8 Is Not Null})-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-(`5esn` :#usn8:`1esn`)<-[`1esn`:`8esn` *00..0Xa{#usn8:0X7['s_str'..][01..],``:$usn2 =~1.e1 =~usn1}]->(:_usn3{_usn4:.e1[7..][9e0..]})) Where .e1[12.0..]"), + octest:ct_string("Unwind 0xabc In 123456789 In 0x0 As usn1"), + octest:ct_string("Return *,01[`8esn`..9e12][.12..0] As @usn6,$`1esn` =~1e1 As `4esn` Order By 9e1 =~$_usn4 =~1.e1 Desc,$@usn5[$12...e12][0X0123456789ABCDEF..$999] Asc,(:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Ascending Skip $1000 Is Not Null With $_usn3[$12] Match usn1=((`6esn` :`5esn`)),#usn8=((:@usn5{`5esn`:`4esn` Starts With 0e0})) Where $usn2[`4esn`..9e12]"), + octest:ct_string("Remove All(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)._usn3?,`3esn`:`5esn`,Single(`8esn` In 123456789 =~@usn6 Where ``[9e12][$999])._usn4! Unwind [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) As #usn8 Return Distinct `` Is Not Null Is Not Null As `6esn`,`7esn`[$usn1..]['s_str'..] As usn1,$#usn8 Starts With .e12 Starts With 1.e1 Limit Single(usn2 In 7[12]) Ends With {_usn3:123.654[`4esn`..12]} Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where `1esn`[usn1][0xabc]) Union Optional Match `1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Where #usn8 =~.e0"), + octest:ct_string("Match _usn4=(`5esn` :``:usn2)-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}),`2esn`=(:#usn8:`1esn`$`7esn`) Where `2esn`[..$_usn3] Unwind $@usn5[..$#usn7] As #usn8 Union All Detach Delete $#usn7 Ends With 's_str' Ends With 0X7,[#usn8 In `7esn` Where .e0 Starts With $@usn6 Starts With $7|1000[12e12][`5esn`]] Ends With [`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8] Ends With [$``[..\"d_str\"][..$#usn8],$_usn4 Starts With $1000 Starts With 12,#usn7[.e0]] Union All Unwind 1.e1 Ends With $#usn7 As `5esn`"), + octest:ct_string("Unwind [#usn8 In `7esn` Where usn2[07..][.0..]|$usn1 Ends With _usn4 Ends With `2esn`] Contains (_usn3 {#usn7:1000[12e12][`5esn`]})-[`3esn`?:`3esn`]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0}) Contains Extract(`3esn` In `2esn`[..01][..True] Where usn1 In ``) As usn1 Return *,9e0[..123456789][..$`3esn`] As #usn7 Order By 999 In 0e0 Ascending Merge ((({usn2:_usn3[`2esn`..0X7][0.e0..$`3esn`]})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]-(_usn3 )<-[? *..010{usn1:9e1[_usn3]}]->(`5esn` {`4esn`:0x0[usn1..usn1],usn1:$`5esn`[0X7..010][`7esn`..'s_str']}))) Union With *,All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] As `3esn`,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[usn2(Distinct #usn7 Contains $0 Contains $usn2,0.e0)..] As @usn6 Order By [`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})] Ascending,{usn2:`7esn`[$usn1..]['s_str'..],usn2:_usn4 Contains `` Contains 1.e1} Is Not Null Is Not Null Ascending,None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0) Ascending Skip $`8esn`[999] Union All Optional Match ((:#usn8:`1esn`)-[ *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})),`8esn`=(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) Where @usn6[9e12]"), + octest:ct_string("Remove All(@usn5 In 9e0 Ends With $#usn8 Where False Contains 0 Contains $`6esn`).@usn6 Remove (:``:usn2{`3esn`:12.0 Starts With .12 Starts With `6esn`,``:$`4esn`[0..][999..]})-[@usn6?{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null}]->(:`7esn`{`2esn`:$`3esn` Ends With 01234567}).`6esn`,(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})<-[:`2esn`|`4esn` *1000..0X0123456789ABCDEF]-(usn2 :`6esn`:_usn3{@usn5:$0[0Xa..$123456789]}).`3esn`!,Any(#usn7 In 9e1[$`1esn`..] Where $`2esn` Ends With `6esn`).usn1!"), + octest:ct_string("Unwind Extract(@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1) Is Not Null As `1esn` Union All Detach Delete None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..],`7esn` Contains 9e0"), + octest:ct_string("With Distinct Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1|$@usn5 In $`6esn` In 12e12) Ends With (:`7esn`{#usn7:0 =~1.e1 =~$#usn7})<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) As @usn5,.e0 Is Not Null Is Not Null As `7esn`,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] As `3esn` Limit _usn4 In #usn7 With *,0.e0 =~00 As `3esn` Order By 's_str'[0x0..1.e1] Asc,usn1[False..`5esn`][$1000..$12] Ascending Where 9e1[$#usn8][$1000] Union Return Distinct *,#usn7[.e0] As `8esn` Order By 9e1 =~123456789 =~999 Asc Skip .e1[12.0..] Limit $@usn6 Ends With `1esn` Create `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}) Unwind [#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)] Contains (:`2esn`)-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`3esn` {`4esn`:False Is Null}) Contains Filter(`8esn` In 123456789 =~@usn6 Where $`6esn` Starts With .e12 Starts With $`1esn`) As `1esn` Union Remove All(@usn6 In 010[`5esn`] Where 1.e1[$usn1]).`6esn`!,Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5 Detach Delete 0xabc[$999..][$usn1..],12[..$999][..$`2esn`],Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|$`8esn`[..True][.._usn4]) Ends With Single(_usn4 In 12e12 In 123456789 Where $usn2 Is Not Null Is Not Null) Create (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})))"), + octest:ct_string("Match (`6esn` {`3esn`:$`2esn`[0..123456789][``..`1esn`],`7esn`:$0[0Xa..$123456789]}),`7esn`=((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )) Delete $@usn6[123.654..00] Union Merge (`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) Return *,`6esn` =~Null As `4esn`,.e0 Starts With $@usn6 Starts With $7 As `5esn` Order By [`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]] In (`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(:#usn7:`5esn`)-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:#usn8:`1esn`$`7esn`) In {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]} Asc,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] Desc Skip $`3esn`[$_usn4..0Xa] Union All With Distinct $@usn6 Ends With 12.e12 Ends With @usn5 As usn2,``[usn1][`5esn`],`7esn`[..$`6esn`] Skip `3esn`[7..0.e0][0.0..123456789] With Distinct [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`)"), + octest:ct_string("Return *,00[$usn1..] Limit `4esn`(Distinct 0.0 Contains #usn7)[(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})..][None(@usn5 In 's_str'[0..] Where #usn7[0.12..])..]"), + octest:ct_string("Unwind .0 Contains .e12 Contains 0 As `6esn` Detach Delete `4esn` Contains 9e0,$`1esn` =~999,$@usn5 Is Null Is Null"), + octest:ct_string("Remove None(#usn8 In `7esn` Where $`5esn` Is Not Null Is Not Null).`1esn`! Union Create _usn4=(:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}),((:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})) Return Distinct [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) As usn2,#usn8 =~0.e0,$usn1 Limit 00 In @usn6 In 0 Merge `8esn`=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`})) Union Create usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}))"), + octest:ct_string("Create usn1=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) Union Delete Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7) =~usn2(1.e1 =~.12) =~Filter(`3esn` In `2esn`[..01][..True] Where #usn8 =~.e0) Remove {_usn3:_usn4 Is Null Is Null}.``,``(@usn6[`1esn`..]).`7esn`! Union All With *,All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] As `3esn`,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[usn2(Distinct #usn7 Contains $0 Contains $usn2,0.e0)..] As @usn6 Order By $`1esn` Ends With 0X0123456789ABCDEF Ascending Limit `4esn` Contains 9e0 Remove [#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|Count(*) Is Null].#usn7,{``:0Xa =~False =~@usn5,`8esn`:.12[123.654..]}.`6esn`!,Any(#usn7 In $999 In 1e1 Where usn1 =~$`7esn`).`1esn`!"), + octest:ct_string("With Distinct Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],010 Is Null Is Null As #usn8,All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] As `8esn` Skip usn2 Is Not Null Limit `2esn` =~.e12 =~0X0123456789ABCDEF"), + octest:ct_string("Delete $999[0Xa..][9e1..],[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8|12.e12[..$`6esn`]][({`5esn`:`2esn` Is Null,`4esn`:usn2[1.e1]})-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]-({`7esn`:9e12 =~@usn6})..[$`3esn` Ends With 01234567]] Union All Detach Delete 0.e0,\"d_str\"[True..],$`3esn` Ends With 01234567 Return Distinct @usn5[01][@usn5],9e0 Contains $12 Contains `3esn` As #usn8,{`4esn`:0.0[usn1..],`7esn`:12.0[$1000..][#usn7..]}[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7)..[usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]]][[12.e12[..$`6esn`],999 In #usn8 In $``]..Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1)] Skip {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}[[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]]..][(_usn4 {`6esn`:$_usn4 =~$`1esn` =~`2esn`,_usn3:#usn8 Is Null})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[_usn4?{_usn3:.e1[.e1..`1esn`],@usn6:.12 In `8esn` In $#usn8}]->(usn2 :@usn5)..] Delete 01 Ends With 123456789"), + octest:ct_string("With Distinct #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Skip `8esn`[$12][123456789] Limit Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)[(`` :`5esn`{@usn5:123456789 =~@usn6})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`7esn` {``:9e1 Contains $999,``:$usn2[True..0X0123456789ABCDEF]}).._usn3(Distinct 0x0 Contains $`6esn` Contains `4esn`,usn2[1.e1])][(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})..[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|9e1 Is Null]] Merge #usn7=(((:`7esn`{`2esn`:$`3esn` Ends With 01234567})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(`` :`3esn`{`8esn`:.e1[12.0..],`6esn`:0e0[999..$``]})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})))"), + octest:ct_string("Detach Delete None(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1) Contains `3esn`(Distinct $123456789[...12][..@usn6]) Contains {``:`1esn` Starts With 0xabc Starts With $usn2} Create ``=((:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[`5esn`:#usn7|@usn5]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})),#usn8=(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`6esn` :`1esn`:_usn4{@usn5:07 Ends With 9e12 Ends With `2esn`}) Union All Optional Match ((`1esn` {_usn4:`8esn` Is Null})),`2esn`=(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Where usn2[1.e1] Union All Delete _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..],``(Distinct 00 Ends With `` Ends With 12.e12,`6esn`[..Count ( * )][..$_usn4]) In (usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[`7esn`?:#usn8|:`3esn`{`6esn`:'s_str'[0..]}]->(#usn8 :`8esn`$#usn8) In Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1]) Return Distinct @usn5[01][@usn5],9e0 Contains $12 Contains `3esn` As #usn8,{`4esn`:0.0[usn1..],`7esn`:12.0[$1000..][#usn7..]}[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7)..[usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]]][[12.e12[..$`6esn`],999 In #usn8 In $``]..Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1)] Skip {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}[[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]]..][(_usn4 {`6esn`:$_usn4 =~$`1esn` =~`2esn`,_usn3:#usn8 Is Null})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[_usn4?{_usn3:.e1[.e1..`1esn`],@usn6:.12 In `8esn` In $#usn8}]->(usn2 :@usn5)..]"), + octest:ct_string("Detach Delete False[..$`5esn`][..1e1],`4esn` Contains 9e0,12[$`5esn`..][False..] Unwind .e0 Ends With $123456789 Ends With 0xabc As #usn7 Union All Delete True Starts With Null,`4esn`(Distinct Count(*) In 12 In `6esn`,Count(*) In 12 In `6esn`) =~{`7esn`:$@usn6[00]} =~[0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]]"), + octest:ct_string("Create @usn5=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),({`4esn`:.e1[..$`3esn`][..01]})-[`5esn`:#usn7|@usn5]-(`5esn` :`4esn`:`6esn`) Union All Delete 12 Contains 01234567,[@usn5[$`6esn`..][$999..],`` Starts With $123456789] Is Null,`6esn` Is Null Is Null"), + octest:ct_string("With Distinct `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] As `3esn`,usn1 Ends With 0.0 Order By $`3esn`[$_usn4..0Xa] Desc,$`1esn` Ends With 0X0123456789ABCDEF Ascending,$@usn5 Ends With @usn5 Ends With 0xabc Descending"), + octest:ct_string("Delete {#usn8:1.e1 Is Null Is Null,_usn4:0xabc In 123456789 In 0x0}[All(@usn6 In 010[`5esn`] Where 00[1.e1..])..],{`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..],[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8|12.e12[..$`6esn`]][({`5esn`:`2esn` Is Null,`4esn`:usn2[1.e1]})-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]-({`7esn`:9e12 =~@usn6})..[$`3esn` Ends With 01234567]] Remove [@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]|9e12[$`5esn`..$123456789]].`6esn`,All(_usn4 In 12e12 In 123456789 Where 999 Contains $1000).``?,[`3esn` In `2esn`[..01][..True] Where 0x0[usn1..usn1]|0Xa =~False =~@usn5]._usn3! With Distinct *,``(Distinct 00 Ends With `` Ends With 12.e12,`6esn`[..Count ( * )][..$_usn4]) In (usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[`7esn`?:#usn8|:`3esn`{`6esn`:'s_str'[0..]}]->(#usn8 :`8esn`$#usn8) In Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1]) As `3esn` Order By $usn2[`5esn`..][01234567..] Asc,$`7esn`[.e1][12.0] Asc,$`5esn` =~usn1 Ascending Skip @usn6(0X7 In $#usn7,_usn4 Contains `` Contains 1.e1)[Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)..Any(#usn7 In 9e1[$`1esn`..] Where $`2esn` Ends With `6esn`)] Where 9e1[$``..][0.e0..] Union All Create _usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))),usn1=(_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]}) With Distinct [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Any(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`),usn2[usn2..0X7] As `1esn` Order By 's_str'[0x0..1.e1] Asc Limit 0xabc[..$1000][..`5esn`] Where `2esn` Starts With 12.e12 Starts With 12.0 Merge #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}))"), + octest:ct_string("Create #usn7=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2),(((:_usn4{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)))"), + octest:ct_string("Return Distinct *,1e1 Contains 0.e0 Contains 9e1 Limit None(#usn7 In 9e0[$1000] Where $1000 Is Not Null) Is Null Is Null Merge ((`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})) With 's_str' Order By $12[9e0..$999] Asc,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip #usn8[`8esn`..] Limit .12 In `8esn` In $#usn8 Where 12.e12 Contains #usn7 Contains $_usn4 Union All Merge ((`1esn` {_usn4:`8esn` Is Null})) On Create Set All(usn2 In False[$usn1][0x0] Where 0.0[usn1..]).`8esn`? =_usn4 Starts With 1000 Starts With $usn2,`7esn`+=12 In $usn1 In 7,Any(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1).`2esn`! ={_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] On Match Set @usn6+=0.0[..Count ( * )][..`1esn`],usn2 =1.e1 Starts With 9e12,Single(usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5).@usn5! =0xabc[$999..][$usn1..]"), + octest:ct_string("With $usn1,`1esn` Contains $999 Contains 0.0 As @usn6,$`6esn`[0e0..][010..] Order By 0.0 Ends With $`7esn` Descending,`3esn`[7..0.e0][0.0..123456789] Asc Return `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By $1000[$@usn6][$_usn4] Desc Unwind True Ends With $_usn3 Ends With 12 As #usn7"), + octest:ct_string("Create usn1=((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})) Union Delete `2esn`[$usn2][12.0],{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}[Single(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7)..],(:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] Unwind [$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1] As `1esn`"), + octest:ct_string("Delete .12 In `8esn` In $#usn8 Unwind .e0[9e12..] As @usn5 Remove `4esn`($`4esn` Contains _usn3 Contains `8esn`).`4esn`! Union Detach Delete _usn4(Distinct 0X0123456789ABCDEF Ends With 01 Ends With ``,$`3esn`[..0xabc][..$7]) In Single(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0) In Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7]),Count(*) Ends With usn1 Union With Distinct `5esn`[..123.654][...e12] As @usn6,(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) As `2esn`,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As `1esn` Skip $`3esn`[..0X0123456789ABCDEF][..7] Limit 12.0 Starts With .12 Starts With `6esn` Where ``[usn1][`5esn`] Delete `2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Return _usn4 Contains $_usn3 Contains .e1,$`4esn`['s_str'..] As `` Limit None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`])[Single(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Is Not Null Is Not Null)]"), + octest:ct_string("With Distinct *,`5esn` Contains `5esn` Contains $_usn3 Limit False Starts With 0X7 Starts With 01234567 Where 9e1[_usn3] Unwind _usn3 Contains _usn4 Contains $@usn5 As `2esn` Union Unwind Count ( * ) Ends With $123456789 As `` Union Optional Match `2esn`=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}),(({@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`})<-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->({usn2:$`2esn` Is Null,#usn8:.0 Is Null Is Null})) Where $`3esn`[.e1][_usn4] Merge ``=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) On Create Set [12e12 =~1e1,0X7[..$`8esn`]].`7esn` =1e1 Ends With $`2esn`,`8esn`+=01[$`7esn`..$@usn6] On Create Set Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7])._usn4 =count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null,`1esn`+=@usn5[..\"d_str\"],_usn4 =`2esn` =~.e12 =~0X0123456789ABCDEF"), + octest:ct_string("Detach Delete 00[False..0e0] Merge ((`2esn` :_usn3)-[? *0xabc{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})) Delete Null[..0] Union All Create (((usn2 :#usn8:`1esn`)-[`5esn`?:`7esn`|:`2esn` *0x0..]->(`8esn` :`8esn`)<-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(#usn7 :`2esn`))),((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) Unwind 9e1 =~123456789 =~999 As `` Union Match (((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}))),@usn6=(:usn2{`6esn`:#usn7[$`3esn`..$1000][0.0..`2esn`],``:010 Starts With 0 Starts With 0.0}) Where `7esn` In 010 In usn1 Create @usn6=(((`` :`5esn`{@usn5:123456789 =~@usn6})<-[`2esn`? *01234567..]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}))),(({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}))"), + octest:ct_string("With 999[12e12..$_usn4] Order By Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,0X7[.0] Asc,$`3esn`[..0X0123456789ABCDEF][..7] Descending Limit #usn7 =~9e12 Unwind $`5esn`[$`6esn`][`2esn`] As _usn4"), + octest:ct_string("Remove [usn2 In 7[12] Where 9e1 Is Not Null Is Not Null]._usn4?,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where `2esn` Starts With .e1 Starts With 9e12).`3esn`! With *,_usn3[12.e12..][`5esn`..] As @usn6,999[..`1esn`][..07] Order By 7 Is Null Is Null Ascending,Count ( * ) =~0e0 =~`8esn` Descending,#usn7[0.e0..][$#usn8..] Descending Where $999 Ends With .e0 Union Delete 12.e12 Starts With 1000,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null,Single(#usn8 In `7esn` Where 12.0 Starts With $`2esn` Starts With .e1) Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]] Ends With {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01}"), + octest:ct_string("Create @usn5=(:@usn5{#usn7:12e12 In $`5esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})-[?*]-({`8esn`:`5esn` Contains #usn7 Contains 9e12}) Union Unwind {`1esn`:$`2esn` Contains Count(*)}[[$`4esn`[0..][999..],@usn5 Contains #usn8 Contains 12.0]..[@usn6 In 010[`5esn`] Where 0e0[``..$1000][$7..12.e12]|@usn6[`1esn`..]]] As `5esn`"), + octest:ct_string("Remove [`5esn` In 0X7 In $#usn7 Where 01 Is Null]._usn4?,Any(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1).`3esn` Unwind `3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] As `8esn`"), + octest:ct_string("Merge `1esn`=(`6esn` {``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]})-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(`3esn` :usn2{`6esn`:#usn8 Is Null}) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] Union All Merge `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) On Create Set _usn3+=`5esn`(Distinct .12[123.654..]) On Match Set _usn3 =$``[01234567..][.0..] Union All Return Distinct 12.e12 =~0X0123456789ABCDEF =~1.e1 As `6esn`,0.e0[..$7] As _usn3,usn1 Ends With 0.0 Order By None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,.e0 Starts With $@usn6 Starts With $7 Descending Limit $@usn6[..12] Merge `3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) On Match Set `1esn` =[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]) Detach Delete 999 Is Not Null Is Not Null"), + octest:ct_string("Merge _usn4=(:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]})<-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(`2esn` :`1esn`:_usn4) On Match Set @usn6+=$`1esn` =~1e1 On Create Set `6esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null Union All Optional Match (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Where $`7esn`[.e1][12.0]"), + octest:ct_string("Optional Match ((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})),#usn8=({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Delete `2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] With Distinct *,$@usn6 Ends With 12.e12 Ends With @usn5 As `3esn` Order By .e0 Starts With $@usn6 Starts With $7 Descending Limit All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where False[$usn1][0x0]) In [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null|9e12[9e1]] In [12.0 Is Null,$_usn4[..$_usn4][..`7esn`]] Union All Merge (_usn3 :`7esn`) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] On Create Set #usn7+=Null[.12..12e12],Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]).`1esn`! =[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)],@usn6 =usn2[1.e1] Merge `2esn`=(:#usn8:`1esn`$`7esn`) On Match Set `8esn`+=`2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..]"), + octest:ct_string("Merge (((_usn4 :#usn7:`5esn`)<-[#usn8 *0x0..]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})<-[`2esn`?:usn1|`4esn` *00..0Xa]->(`6esn` :#usn8:`1esn`{`6esn`:usn1[..$@usn6][..00]})))"), + octest:ct_string("Match @usn6=((usn1 :_usn3{`4esn`:$`6esn`[1.e1][$_usn3]})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})) Where 1e1 In 0.0 In 0X0123456789ABCDEF Detach Delete ``[$`3esn`],Filter(_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4) Is Null Is Null,010[...12] Return Distinct *,$#usn7 Ends With \"d_str\" As `7esn` Union Unwind $`1esn` In .e0 As #usn8 Delete 0x0[``..],Any(usn2 In 7[12] Where $_usn3 Is Null) Is Not Null Is Not Null,[`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Union Remove Any(`6esn` In $`6esn`[``..][Count(*)..] Where $0[123.654..0.e0]).`4esn`?,Single(`5esn` In `7esn`[$usn2..][$123456789..] Where `2esn` =~.e12 =~0X0123456789ABCDEF).usn1 Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) On Create Set #usn7+=.e0[..9e12][..07],`4esn`(True[$_usn3..],$999[``]).usn2 =123456789 Is Null Is Null,@usn5 =01[07..][1.e1..] On Create Set `5esn`+={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},usn2 =True Contains 0x0 Contains $_usn3 With *,$`5esn`[0X7..010][`7esn`..'s_str'] As `4esn`,999 In 0e0 As #usn7 Skip Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] Limit (`5esn` :`6esn`:_usn3)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({#usn8:False Starts With 0X7 Starts With 01234567})<-[usn2?{``:$`1esn`[``][07]}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7}) Is Null Is Null"), + octest:ct_string("With Distinct 0.e0[$`4esn`..`2esn`],12.e12 Starts With \"d_str\" Starts With 9e1,{``:00 In @usn6 In 0}[(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})] As `5esn` Skip Extract(#usn7 In $999 In 1e1 Where `5esn`[..True][..0.e0]|$`5esn` =~$0 =~``) In (:`7esn`{#usn8:0Xa Ends With $`3esn` Ends With $1000})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]}) In Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|999 Contains 0 Contains $`5esn`) Where $`3esn` Ends With 01234567 Union Return 0.e0[..$7] As _usn3,0xabc =~@usn5 =~$usn1 Skip $@usn6[00] Limit `2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..] Union All Return Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],010 Is Null Is Null As #usn8,All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] As `8esn` Order By $_usn3[_usn4..] Asc,0.12 Is Null Is Null Desc,`6esn` Ends With _usn4 Ends With False Ascending Skip 1.e1 =~.12 Limit `1esn`[$@usn6][07]"), + octest:ct_string("Detach Delete $0[010..]"), + octest:ct_string("Delete `6esn` Starts With `6esn` With Distinct `6esn` In .12,None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]) Ends With [_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4|0x0[0X7]],`6esn` Starts With `6esn` Remove ({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})-[`4esn`?:`5esn`|:usn2]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[@usn5:usn2{`5esn`:#usn8 =~.e0}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]}).`4esn`? Union All Create (((#usn7 :usn2{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]})<-[@usn5?:usn2 *00..0Xa{usn2:$usn2[`4esn`..9e12]}]->(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})<-[ *..07{`5esn`:999 In 0e0}]->(:@usn6$usn1))) Create (((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) With Distinct $`1esn`[Null][True] As `8esn` Order By 9e0[..123456789][..$`3esn`] Asc,Filter(@usn5 In 's_str'[0..] Where $@usn6 =~#usn7 =~True)[Extract(@usn5 In 's_str'[0..] Where _usn3[0x0])..All(_usn4 In 12e12 In 123456789 Where $usn2 Is Not Null Is Not Null)][(`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]})<-[:`8esn`]-(:@usn6)-[? *0X0123456789ABCDEF..]-(usn2 :_usn3)..(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})] Descending,.e1 Is Null Is Null Descending Limit {_usn3:$`6esn`[1.e1][$_usn3]} Contains Extract(#usn7 In 9e1[$`1esn`..] Where $`7esn`[$_usn4][.e0]|7 Ends With 01234567 Ends With 0Xa)"), + octest:ct_string("Optional Match ({@usn6:999 Contains 0 Contains $`5esn`,#usn7:999[..`1esn`][..07]}),((:#usn7:`5esn`{_usn4:$usn2 =~9e1})<-[@usn5?:usn2 *0..01]->(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})) Where False[$usn1][0x0] Union Return *,usn1 Contains 010 As `6esn`,(:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]] As `5esn` Skip [`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})] Limit .e0[...0][..$`2esn`] Union Merge #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})) On Match Set `5esn`(Distinct .12[123.654..]).`3esn` =01234567 In 123456789 In 12,`6esn` =[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null On Match Set usn2+=`6esn`[$`8esn`][9e1]"), + octest:ct_string("Return *,'s_str' Starts With 9e0 Starts With usn2 As `8esn` Optional Match `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),(`2esn` $`6esn`) Where 7 =~`4esn` Optional Match `6esn`=(((_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})-[``?:_usn4]-(_usn4 :_usn4))) Union With *,#usn7[.e0] As `8esn` Order By 9e1 =~123456789 =~999 Asc Skip .e1[12.0..] Limit $@usn6 Ends With `1esn` Where ``[$`3esn`] Return Distinct *,All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) As `8esn` Order By 12.0 Ends With `2esn` Descending,$`4esn`[`4esn`][Count(*)] Descending,$`1esn`[07..] Desc Skip 9e12[..123.654][..999] Optional Match `6esn`=(((:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({#usn8:False Starts With 0X7 Starts With 01234567})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5)))"), + octest:ct_string("Match (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})))"), + octest:ct_string("Create ((`1esn` :usn2)),`2esn`=(`5esn` :``:usn2)<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2) Union Optional Match ((:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})),(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Where _usn3 Starts With 12e12 Starts With `5esn` Delete 9e1[$`1esn`..] With (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Order By usn1 Ends With 9e0 Ends With 9e0 Descending,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Descending Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Union Remove None(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]).`1esn`?,Extract(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null|0 =~1.e1 =~$#usn7).@usn5!,(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}).@usn5 Delete `2esn`[$usn2][12.0],{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}[Single(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7)..],(:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] Return Distinct *,1.e1 Ends With $#usn7 As usn2,@usn5[01][@usn5] Order By $`4esn`[..$`8esn`][..Null] Descending Skip `6esn` Is Null Is Null"), + octest:ct_string("With *,#usn8[`6esn`..][$``..] As usn1,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..]) Contains None(@usn5 In 's_str'[0..] Where 010 Is Null) Contains `2esn`(Distinct $`3esn`[$_usn4..0Xa],$`8esn`[123456789..][$@usn5..]) Order By 0x0[Count(*)..@usn6][Count(*)..0Xa] Desc Limit `6esn` Unwind 9e0 Is Not Null Is Not Null As `5esn` Union Detach Delete #usn7[0.e0..]['s_str'..],$0 Starts With @usn5 Create ((:`5esn`{`8esn`:$`1esn` Starts With Count(*),_usn3:usn1[...e12][..1.e1]})) Union Create usn1=((#usn8 :_usn3)<-[? *12..{#usn7:`6esn` Ends With _usn4 Ends With False,usn1:1000[12e12][`5esn`]}]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07})),`1esn`=((`6esn` {`3esn`:$`2esn`[0..123456789][``..`1esn`],`7esn`:$0[0Xa..$123456789]})<-[? *00..0Xa]->(usn2 :@usn5)-[?:`2esn`|`4esn` *0Xa{#usn7:1.e1 Starts With 9e12}]-(:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) Remove Extract(`3esn` In 9e1 Contains $999 Where usn1[False..`5esn`][$1000..$12]|True Starts With Null).`4esn`! With $usn2 Is Not Null Is Not Null Skip 999[@usn5..][Null..] Limit $@usn6 Ends With `1esn` Where 9e12[$`5esn`..$123456789]"), + octest:ct_string("Detach Delete @usn5 Starts With $`3esn`,12 Is Not Null,07 Contains `3esn` Contains `7esn` Union All Match (((:`6esn`:_usn3{@usn5:0.e0[..$7],@usn6:.12 In `8esn` In $#usn8})-[?*..]-(usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->(#usn8 :`8esn`))) Merge (:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789})"), + octest:ct_string("Remove [`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5|`5esn`[..True][..0.e0]].`2esn`!,None(`8esn` In 123456789 =~@usn6 Where $`5esn` =~$`8esn` =~usn2)._usn3? Union All Remove Extract(@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1|True Contains 's_str' Contains $usn1)._usn4?,All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]).`4esn`"), + octest:ct_string("Detach Delete `5esn` Contains $`5esn` Contains 0X7 Remove Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null).usn1 Union Match (`8esn` :#usn8:`1esn`{usn1:0x0 Starts With $`6esn`}) Create ((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})),@usn5=(({@usn5:$`5esn` Is Not Null Is Not Null})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})) Return Distinct .e0 Ends With $123456789 Ends With 0xabc Limit 's_str' Starts With 1e1 Starts With $0"), + octest:ct_string("Create _usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),_usn4=(({usn2:`2esn`[..$_usn3]})) Union All Optional Match ``=(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Remove Any(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]).@usn6?,@usn5(Distinct Count ( * ) Ends With $123456789).`6esn`? Unwind 00[False..0e0] As `6esn`"), + octest:ct_string("Match (({`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]})-[usn2?:`3esn`]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})),((#usn7 {`6esn`:$`2esn` Contains Count(*)})-[?:_usn4]->(`2esn` :usn2)) Where 12e12 Contains `2esn` With $@usn6[..12] As #usn8,Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] As `7esn` Order By $@usn5 In 12e12 In 01 Ascending Limit Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)[..`4esn`][..(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)] Where _usn3 Starts With 12e12 Starts With `5esn` Optional Match `8esn`=((@usn6 {usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}))"), + octest:ct_string("Unwind {usn2:$@usn6[00]}[..[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1]][..[12e12 Starts With $0 Starts With $`2esn`,$_usn3 Is Null]] As `5esn` Union All Create ((`2esn` {`7esn`:999 In 0e0})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)),#usn8=((:@usn5{`5esn`:`4esn` Starts With 0e0})) Create ((:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})) With `2esn`[$12..] As @usn6 Order By 0x0[``..] Asc,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Is Null Descending,usn1[_usn3..] Descending Skip $7 Starts With $`4esn` Where `1esn` Starts With 0xabc Starts With $usn2 Union Remove @usn6(Distinct .12[123.654..],`2esn` In 7).``,All(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1).`5esn`!,@usn5:`8esn`"), + octest:ct_string("Unwind 07 =~`4esn` =~$`1esn` As usn1 Remove [#usn7 In True Contains 's_str' Contains $usn1 Where $#usn7[..$`4esn`][..01]|1.e1 Is Null Is Null].#usn7?,(#usn8 :`2esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4)-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}).`8esn`!,`1esn`(Distinct `3esn`[7..0.e0][0.0..123456789],`1esn` Starts With 0xabc Starts With $usn2)._usn4! Unwind Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) As usn1 Union All Detach Delete _usn4(Distinct 0X0123456789ABCDEF Ends With 01 Ends With ``,$`3esn`[..0xabc][..$7]) Contains `1esn`(999 Is Null Is Null) Contains (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[usn1:_usn4]-(#usn7 :@usn6) Union All Create `7esn`=(((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}))),`2esn`=((`6esn` :#usn7:`5esn`)<-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]->(:#usn8:`1esn`$`7esn`)) Create `6esn`=(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[@usn6:`1esn`|`3esn` *0X7..]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}),(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(`3esn` :_usn4{`3esn`:12[..0e0][...e1],`4esn`:.0 Is Null Is Null})"), + octest:ct_string("Unwind (:`2esn`)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})-[@usn6? *0X0123456789ABCDEF..{``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6}]-(`5esn` :@usn5) Is Null Is Null As `4esn` Union Delete $`3esn`[.e1][_usn4],None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Create @usn6=((({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}))),`6esn`=((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[``:`5esn`|:usn2{`5esn`:_usn4[0]}]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]}))"), + octest:ct_string("Merge `1esn`=((`6esn` {`3esn`:$`2esn`[0..123456789][``..`1esn`],`7esn`:$0[0Xa..$123456789]})<-[? *00..0Xa]->(usn2 :@usn5)-[?:`2esn`|`4esn` *0Xa{#usn7:1.e1 Starts With 9e12}]-(:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) On Create Set `3esn`+=$@usn6 Is Not Null Is Not Null,[$usn2 Is Not Null Is Not Null,0 =~1e1].`3esn`? =$1000[0X0123456789ABCDEF][12] On Match Set `2esn` =`3esn`[..0X0123456789ABCDEF][..0x0]"), + octest:ct_string("Detach Delete Extract(`6esn` In $`6esn`[``..][Count(*)..] Where $@usn5 Starts With `5esn` Starts With 01234567|0.e0[..$7]) Is Null Is Null Optional Match `1esn`=(`5esn` :`5esn`{#usn7:``[$`3esn`]}) Where $`8esn`[..True][.._usn4]"), + octest:ct_string("Delete `2esn`[$usn2][12.0],{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}[Single(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7)..],(:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] Unwind [$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1] As `1esn`"), + octest:ct_string("With 12.e12[..$`6esn`] As `7esn`,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] As ``,1.e1 Contains `6esn` Contains 0.e0 Skip Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])] Where 999 Contains $1000 Detach Delete Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null) Is Not Null Is Not Null,010 Starts With $`` Starts With 0e0"), + octest:ct_string("Return 010 Starts With $`` Starts With 0e0,$#usn8 Ends With `` Ends With 999 As _usn3,$@usn5 Ends With @usn5 Ends With 0xabc Skip None(#usn7 In $999 In 1e1 Where 01234567[Null..$_usn3]) Ends With Extract(#usn8 In `7esn` Where $`5esn` Is Not Null Is Not Null) Limit `6esn` In .12"), + octest:ct_string("Merge (@usn5 :@usn6{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[`8esn` *0xabc]-(:_usn3{_usn4:.e1[7..][9e0..]}) On Match Set Single(@usn6 In 010[`5esn`] Where 123.654).`6esn`? =0.e0[0X0123456789ABCDEF..],(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}).`3esn`? =999[..`1esn`][..07],[@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1].`6esn` =`7esn` Starts With @usn5 Detach Delete 0.12 Contains False Contains 1.e1 Union All Unwind 01 Contains usn2 Contains 0X0123456789ABCDEF As usn2 Detach Delete All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]) =~All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where .e12[..999][..@usn5]) =~Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4),`4esn`[.12][$@usn6]"), + octest:ct_string("Unwind $0 Ends With $usn1 Ends With $_usn3 As `` Return Distinct Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null),9e1[usn1..0x0][12.e12..12.0] Order By 00[12e12][$`7esn`] Ascending,@usn5[0..] Descending,Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Descending Limit 0.e0[$`4esn`..`2esn`] With Distinct *,`5esn`[$`7esn`..$@usn5],`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] As #usn7 Order By 1000[..$1000] Asc,`7esn` Is Null Asc,#usn7 Desc Limit 010 Is Null Union All Delete $_usn4[..123456789],.e1 In 123456789 Union All Remove Filter(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $#usn7 Starts With 01234567 Starts With $0).usn2! Unwind Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[{`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}] As #usn8 Match `6esn`=(`` :`5esn`{@usn5:123456789 =~@usn6})"), + octest:ct_string("Merge usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Union All Merge _usn3=(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[`4esn`:usn2]->(`3esn` :_usn4) On Match Set `8esn` =[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] With Distinct #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Order By Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[..[#usn7 In True Contains 's_str' Contains $usn1 Where Count(*) Ends With usn1]][..Filter(usn2 In 7[12] Where #usn7[0.e0..]['s_str'..])] Ascending,{@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Asc,usn2[1.e1] Descending Skip $``[01234567..][.0..] With Distinct *,$`1esn` Starts With Count(*) Limit `7esn`[..$`6esn`] Union All Merge ((:_usn4{`1esn`:0e0 =~0Xa =~$999})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(`` :`5esn`{@usn5:123456789 =~@usn6})<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null})) Merge (_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]}) On Create Set `7esn` ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]} On Match Set [_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789|9e1 Ends With Count(*) Ends With $7]._usn4 =$`5esn`[0X7..010][`7esn`..'s_str'],@usn5+=(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},usn2+=999[12e12..$_usn4] Create (((usn2 {`5esn`:$@usn6 Ends With `1esn`})<-[`2esn`? *01..123456789]-(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]})<-[? *7..{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]-(#usn7 :``:usn2)))"), + octest:ct_string("Create ((:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})),(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Optional Match @usn5=(:@usn5{#usn7:12e12 In $`5esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})-[?*]-({`8esn`:`5esn` Contains #usn7 Contains 9e12}) Where 9e1 Contains 12 Return Distinct *,.0 Contains .e12 Contains 0,1e1 Is Null Is Null As usn2 Union Detach Delete 9e0[$`8esn`],`5esn` Contains #usn7 Contains 9e12,12 Is Null Match @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Where 7[0e0..] Detach Delete (`4esn` :#usn7:`5esn`{_usn4:0Xa Ends With $`3esn` Ends With $1000})-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})[[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]|`1esn`[0.12..][@usn6..]]..][{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}..],07 Contains `3esn` Contains `7esn`,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1) Union Create _usn3=((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})-[#usn8:#usn7|@usn5 *123456789..{@usn5:usn2[12.e12..]}]->(`` )<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})),usn2=((`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})) Create usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})),((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Merge (({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8}))"), + octest:ct_string("Delete $0 =~9e1 =~$`2esn` Remove [$`4esn`[0..][999..],$usn2 Is Not Null Is Not Null,$`5esn` In _usn3 In 0.0].`2esn`! Create `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]})"), + octest:ct_string("Remove Filter(`8esn` In 123456789 =~@usn6 Where True[`3esn`]).`8esn`?,Single(`8esn` In 123456789 =~@usn6 Where @usn6 Is Not Null Is Not Null).`1esn`?,Single(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]).`6esn`! Optional Match (({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn4?:@usn6|:`7esn`]-({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn3?:_usn3|:`7esn`]->(`3esn` {`8esn`:`7esn` In 010 In usn1})) Where _usn3 Ends With 7 Ends With $`1esn` Merge (@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`}) On Create Set All(usn2 In 7[12] Where `2esn`[$12..]).#usn8? =[#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3],Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3|01 In $@usn6).`7esn`? ={`3esn`:.e1[..\"d_str\"][..$123456789]},[$`5esn` =~usn1,@usn6 Contains .12 Contains $usn1,999 In #usn8 In $``]._usn3 =[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )] On Match Set `5esn` =0.e0[0X0123456789ABCDEF..]"), + octest:ct_string("Remove {`6esn`:Null =~`6esn`}._usn3!,[usn2 In False[$usn1][0x0] Where `4esn` Starts With 0e0].`6esn`!,[010[`5esn`],0Xa[..Count ( * )][..$123456789]]._usn3 Unwind [#usn8 In `7esn` Where .e0 Starts With $@usn6 Starts With $7|1000[12e12][`5esn`]] Ends With [`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8] Ends With [$``[..\"d_str\"][..$#usn8],$_usn4 Starts With $1000 Starts With 12,#usn7[.e0]] As `8esn`"), + octest:ct_string("Unwind usn2[12.e12..] As usn2 Create `7esn`=((`6esn` :`5esn`)<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`5esn` :`4esn`:`6esn`)) Union Optional Match ``=(((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[`2esn`? *01234567..]->(:`2esn`)-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->({`7esn`:999 In 0e0}))) Create #usn8=((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})<-[`8esn`?:`` *01234567..$usn1]->(:_usn4)),`5esn`=(({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]->(#usn8 :``:usn2)-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}))"), + octest:ct_string("Remove {@usn5:0e0 Starts With 999 Starts With `2esn`,#usn7:Count ( * ) In 0.12}._usn4,Any(usn2 In 7[12] Where 123456789 =~12 =~'s_str').`3esn`?,{`2esn`:`7esn` Is Null}.`6esn`! With Distinct [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`) Optional Match usn2=(`8esn` :`6esn`:_usn3),#usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Union Optional Match `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})),usn2=((#usn7 {`8esn`:`7esn` In 010 In usn1})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})) Create (#usn7 {`6esn`:$`2esn` Contains Count(*)})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`}) Union All Create (_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1})"), + octest:ct_string("Match ({_usn3:$12[9e0..$999],#usn7:0.0 Contains `3esn` Contains @usn5})-[#usn7?:`7esn`|:`2esn` *..07]-(#usn7 {#usn7:1.e1 Starts With 9e12}),#usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) Create ((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})),(((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[?:_usn4]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1}))) Unwind #usn7[0.12..] As `8esn` Union All Merge `1esn`=((`2esn` {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})) On Match Set (:``:usn2{`4esn`:#usn7 Contains $0 Contains $usn2})<-[:`8esn` *0X7..]->(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2})<-[`2esn`? *01..123456789]-(`2esn` :@usn6).`8esn` =`7esn`[1e1] Delete True Contains 's_str' Contains $usn1 Unwind 12['s_str'][01] As `6esn`"), + octest:ct_string("Detach Delete 0.0 Ends With $`7esn`,123.654 Is Null Is Null,1000 Contains [True Contains 0x0 Contains $_usn3,_usn3 Contains 9e12 Contains `8esn`] Contains [12.0 In 123.654 In _usn4] Detach Delete (`2esn` :usn1:`3esn`)-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})<-[?:`3esn`]-(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})[({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})],0X7 In $#usn7,Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 999 Contains $1000)[(`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8})][#usn8($1000 Is Not Null,$`5esn`[0X7..010][`7esn`..'s_str'])]"), + octest:ct_string("Return Distinct 9e1 Ends With Count(*) Ends With $7 As `6esn` Limit _usn3 Contains 9e12 Contains `8esn` Union All Detach Delete `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)],$0 In `3esn` In 07 Unwind .0[$``..0X7] As usn1"), + octest:ct_string("Unwind True[$_usn3..] As usn2 Union Return Distinct $`3esn`[$_usn4..0Xa] As #usn7,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa) As `3esn`,$`5esn`[$`3esn`..] As `4esn` Limit $`` Is Not Null Is Not Null Union All Merge (((:#usn8:`1esn`{_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(`5esn` {`4esn`:0x0[usn1..usn1],usn1:$`5esn`[0X7..010][`7esn`..'s_str']})<-[? *..010{#usn8:False Is Null}]->(#usn7 {#usn7:1.e1 Starts With 9e12}))) On Create Set {usn1:$_usn4 Starts With $1000 Starts With 12}.@usn6! =[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])] On Match Set [$usn2 =~9e1,$`6esn` Is Null].`8esn`? =(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),usn2 =$@usn5 Ends With @usn5 Ends With 0xabc,#usn8+=$`1esn` Starts With Count(*) With `1esn`[`3esn`..],(`3esn` {usn2:00[False..0e0]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null})<-[@usn6?:`8esn` *0..01]->(`5esn` :`4esn`:`6esn`)[[12.0 Starts With $`2esn` Starts With .e1]..] Skip 07 In 0Xa In usn1 Limit 010 Is Null With Distinct 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] As #usn8,(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null},$#usn7 =~`2esn` As `4esn` Limit Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null)"), + octest:ct_string("Unwind 9e1 In $#usn7 In Count(*) As #usn7 Remove #usn8(Distinct 0X0123456789ABCDEF Contains 12e12 Contains 12.e12,Count(*) Starts With usn2 Starts With `7esn`).usn1,Single(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..]).#usn7?,Any(_usn4 In 12e12 In 123456789 Where `3esn`[7..0.e0][0.0..123456789]).`8esn`! Merge `6esn`=(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Union All Remove [00[..$`8esn`][..7],_usn4 Starts With `` Starts With 1000,.e0].`1esn`?,_usn3:``:usn2 With Distinct 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] As #usn8,(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null},$#usn7 =~`2esn` As `4esn` Limit Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Return *,1e1 Contains 0.e0 Contains 9e1,`1esn` Starts With 9e1 As `6esn` Order By 010 Contains .e1 Asc,(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})<-[#usn7 *01..123456789]->(`6esn` :usn1:`3esn`) Ends With Extract(#usn8 In `7esn` Where 9e12[..1e1][..'s_str']) Ends With [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123.654 Is Not Null|$`2esn`[.0..][0.0..]] Descending"), + octest:ct_string("Detach Delete `7esn`[$usn1..]['s_str'..],None(#usn8 In `7esn` Where $`3esn` Contains $`1esn`) Starts With #usn8(0x0[Count(*)..@usn6][Count(*)..0Xa]),(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`) Is Null Merge ({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) On Match Set _usn3 =Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] Remove Any(`6esn` In $`6esn`[``..][Count(*)..] Where False Contains 0 Contains $`6esn`).usn1!,{`1esn`:`1esn`[$@usn6][07]}.`1esn` Union Unwind $@usn6[_usn3..][$999..] As `4esn` Optional Match `8esn`=(:`4esn`:`6esn`{usn2:$`8esn` Is Not Null Is Not Null})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Where $999 Ends With .e0 Union All Unwind $123456789[.0..] As `7esn`"), + octest:ct_string("Merge @usn6=((({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}))) On Match Set `1esn` =Filter(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12])[..Extract(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])][..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]],#usn8(Distinct 12.0[$1000..][#usn7..],0xabc In Null).`2esn` =0.e0 Starts With usn1 Union All Create #usn7=(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}),({`1esn`:1.e1[`8esn`]})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->({usn1:$123456789 In 0.12}) Return Distinct `2esn` Starts With 12.e12 Starts With 12.0 As #usn8,$_usn3 Is Not Null Is Not Null Skip `1esn`[$@usn6][07] Limit $1000 Is Not Null"), + octest:ct_string("Delete 0xabc =~@usn5 =~$usn1,[$usn1 Ends With _usn4 Ends With `2esn`][@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)..[#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1]][Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..])..Extract(#usn7 In 9e1[$`1esn`..] Where $999[``])],1000[$7..][_usn4..] With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Order By 1.e1 In 1000 In _usn3 Desc,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Descending,123.654 Is Null Is Null Asc Where _usn4[`7esn`] Union All Unwind Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..]) =~[_usn4 In 12e12 In 123456789 Where .0 Ends With Count ( * )|$`1esn` In .e0] As @usn5 Merge @usn6=((`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[@usn5?:usn2 *00..0Xa{usn2:$usn2[`4esn`..9e12]}]->(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->(usn2 :usn1:`3esn`)) On Match Set [#usn8 In `7esn` Where 01 Ends With 0Xa Ends With 0X7|`8esn` Contains Count(*) Contains $#usn7].``? ={`5esn`:$`1esn` In .e0,``:`6esn` Ends With Count ( * ) Ends With Count ( * )} Is Null Is Null,`8esn`+=$7 Is Null,`7esn` =_usn4 In #usn7"), + octest:ct_string("Match `4esn`=((@usn5 {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})),_usn3=(`8esn` :`2esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`6esn`]->({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) Union With Distinct 9e0[..123456789][..$`3esn`] As usn1 Limit 0x0[12e12..$`7esn`] Where usn1 Starts With 00 Merge (((`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})<-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Union All Match usn1=(({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) With $`1esn` Contains 1e1 Contains @usn6,`2esn`(Distinct $`3esn`[$_usn4..0Xa],$`8esn`[123456789..][$@usn5..]) Contains Single(`3esn` In 9e1 Contains $999 Where 0Xa Ends With $`3esn` Ends With $1000) Order By `3esn`[0X0123456789ABCDEF..][07..] Descending,{_usn4:0.0 Is Not Null,`3esn`:`5esn`[..True][..0.e0]}[(`` {#usn8:$12[9e0..$999]})-[`3esn`?:`7esn`|:`2esn`]-(`3esn` {``:9e1 Is Null,usn1:9e0[Count(*)..0.12][$`1esn`..12.0]})..All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])] Descending Skip {`6esn`:$#usn7 =~`2esn`,`4esn`:True[$_usn3..]}[(:`1esn`:_usn4{#usn8:00[12..$`6esn`],@usn6:usn1[..$@usn6][..00]})-[`2esn`:`4esn`|@usn5 *01234567..]-(:`5esn`{_usn4:12 Starts With #usn7 Starts With 0Xa,#usn7:999 Is Null Is Null})-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})..Filter(@usn6 In 010[`5esn`] Where `7esn`[1e1])][Any(@usn6 In 010[`5esn`] Where False[$`4esn`..])..Extract(@usn5 In 's_str'[0..] Where `7esn` In 010 In usn1)] With Distinct *,``[..False][..`3esn`],(@usn6 :`8esn`)<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`}) Ends With #usn8(Distinct 12.e12 Contains #usn7 Contains $_usn4,01[`3esn`..][Count(*)..]) Ends With [`5esn`[..True][..0.e0],12 In $usn1 In 7,$`8esn`[123456789..][$@usn5..]] As `5esn` Order By $`1esn` Starts With $`4esn` Starts With $_usn3 Asc,01234567 In $@usn6 In $#usn7 Desc Skip 1000 Ends With `7esn` Limit usn2 Starts With .0"), + octest:ct_string("Create ((:`5esn`{`8esn`:$`1esn` Starts With Count(*),_usn3:usn1[...e12][..1.e1]})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(`4esn` :_usn4)) With *,Filter(`5esn` In 0X7 In $#usn7 Where $@usn5 Starts With `5esn` Starts With 01234567) Is Null Is Null,$@usn6[$`8esn`..][123456789..] As @usn6 Order By 0X0123456789ABCDEF In $usn2 In `4esn` Descending,.e0 Ends With $#usn7 Ends With False Desc Where .12[..usn2][..12e12] Create `3esn`=((:_usn3{_usn3:$`3esn`[.e1][_usn4]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:`5esn`)<-[ *01234567..]->(#usn8 :`8esn`))"), + octest:ct_string("With Distinct $#usn7[..9e0][..123.654] Order By 0.0[..Count ( * )][..`1esn`] Desc Limit 0x0 In 0.e0 In #usn8 Union Unwind {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01}[#usn8(False Contains 0 Contains $`6esn`,'s_str' Starts With 1e1 Starts With $0)..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})][(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(`4esn` :`6esn`:_usn3)..[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]]] As `4esn` Create (((`7esn` )<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2))),`5esn`=(({@usn5:``[9e12][$999]})-[usn2{``:$`1esn` =~999}]-(:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0})) Create _usn3=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})"), + octest:ct_string("Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),Single(_usn4 In 12e12 In 123456789 Where False Is Null)[[$usn1,_usn4 Contains `` Contains 1.e1]][(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]})] With Distinct *,$`1esn`[07..] As ``,`` Is Null As `7esn` Skip $1000 Is Not Null Unwind @usn6[123.654..][0x0..] As usn1 Union With $999 =~.0 As usn2 Limit 's_str' Ends With _usn4 Ends With 0e0 Where 0Xa[$`8esn`..][$_usn4..] With Distinct *,@usn6[9e12],$`3esn`[..0xabc][..$7] Skip All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) Limit Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null Where 1000[12e12][`5esn`] Union Delete 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2],$`3esn` Ends With 1000,[$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..] Remove All(@usn6 In False Contains 0 Contains $`6esn` Where usn1[False..])._usn3! Remove `8esn`:``:usn2"), + octest:ct_string("With *,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Where .e1[12.0..] Create @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Return Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By 1000[$`2esn`..] Asc"), + octest:ct_string("Remove [Count(*) Starts With usn2 Starts With `7esn`,07[$`2esn`..9e12][$`4esn`..9e12],9e1 Is Not Null Is Not Null].`2esn`?"), + octest:ct_string("Remove Any(_usn4 In 12e12 In 123456789 Where 9e1 Is Not Null Is Not Null).#usn7?,Single(usn2 In 7[12]).@usn5 Union All Merge (`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-({`1esn`:#usn7[0]}) On Match Set `1esn` =0x0[@usn6..][01..],`5esn`(Distinct $#usn7 Contains $`7esn` Contains .e12).@usn6! =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`) Is Null Create (((`` :#usn8:`1esn`{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1})<-[_usn3?:_usn3|:`7esn`]->(#usn7 )<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(`5esn` :`3esn`))),((#usn7 :_usn3)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) Match (((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})))"), + octest:ct_string("Remove [_usn4 In 12e12 In 123456789 Where 1.e1 =~.12|.12 Contains $999].#usn7 Create `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),({_usn3:@usn6 Contains .12 Contains $usn1}) Create (#usn7 :@usn6),`7esn`=(((:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})<-[`1esn`?:usn1|`4esn` *00..0Xa]-(`6esn` )<-[? *12..{#usn7:`6esn` Ends With _usn4 Ends With False,usn1:1000[12e12][`5esn`]}]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}))) Union All Merge `1esn`=(`` {#usn7:#usn8 Is Not Null Is Not Null})<-[`5esn` *0xabc]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Unwind $1000[$@usn6][$_usn4] As `6esn` Detach Delete Null Ends With _usn4 Ends With 0.0 Union All Remove None(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null).`3esn`? Unwind \"d_str\"[#usn8] As @usn5"), + octest:ct_string("Create `4esn`=(({#usn7:$@usn6[$0..9e12][.e12..Null]})) Return Distinct $@usn6[.0..][0e0..] Order By $`8esn` Is Not Null Is Not Null Descending,Null Ends With _usn4 Ends With 0.0 Ascending Limit .e0"), + octest:ct_string("Create ``=({usn2:$`2esn` Is Null,#usn8:.0 Is Null Is Null})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]}),`8esn`=(((`4esn` :`4esn`:`6esn`)<-[ *..07{`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn3{@usn5:$1000 Starts With $`7esn`})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]}))) With *,$`5esn` Is Not Null,usn2 Contains $0 Contains .0 Order By 12.0 Ends With `2esn` Ascending,01234567[$0..][0..] Descending,$12 In True In 1.e1 Desc Skip 9e0[Count(*)..0.12][$`1esn`..12.0] Where `7esn` Union All Unwind ({`6esn`:usn1[..$@usn6][..00]})-[`6esn`?:`1esn`|`3esn` *01..123456789]-({`2esn`:`7esn` In 010 In usn1,`8esn`:$0[123.654..0.e0]}) In [$``[7]] In `6esn`(#usn8 Is Not Null Is Not Null) As usn1"), + octest:ct_string("Delete [@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]],[$`6esn`[1.e1][$_usn3],0Xa Ends With $`3esn` Ends With $1000] Ends With (usn2 :_usn4)-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-({`8esn`:usn2 Starts With .0,@usn5:Count(*) In 12 In `6esn`}),12.e12 Is Not Null Is Not Null Unwind Count ( * ) Ends With `6esn` Ends With 's_str' As _usn3 With *,0xabc Is Null Is Null,usn2 =~$`` =~$`8esn` As `2esn` Skip 0 Ends With Count(*) Ends With False"), + octest:ct_string("Return Distinct $7 Ends With Count ( * ),`6esn` =~Null As `4esn` Order By None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]) Ends With [_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4|0x0[0X7]] Asc,12 Starts With #usn7 Starts With 0Xa Desc Skip .12[01][@usn5] Union Return Distinct `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,0xabc In .12 In 0Xa Descending,.0 Contains .e12 Contains 0 Desc Delete _usn3[12.e12..][`5esn`..]"), + octest:ct_string("Remove Extract(@usn6 In False Contains 0 Contains $`6esn` Where $`5esn`[..00]).usn2 Create (_usn4 :`8esn`{usn1:12.e12[..$`6esn`]}),@usn6=(`2esn` :`1esn`:_usn4)-[?*..]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Remove Filter(usn2 In 7[12] Where $#usn8[12.e12..`8esn`][12.0..0.0]).``,[`8esn` In 123456789 =~@usn6 Where ``[9e12][$999]].@usn5?,`4esn`:`7esn` Union All Merge `7esn`=((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )) On Create Set `5esn`+=_usn4[$usn1..01234567][123.654..`5esn`],`2esn`+=#usn7 In 0.e0 On Match Set Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]|$``[..\"d_str\"][..$#usn8]).@usn6 =[$usn1[`2esn`..][$`2esn`..]][(`3esn` :usn2)-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})..`2esn`(Distinct $@usn6 Is Not Null Is Not Null,Count ( * ) Ends With $123456789)],None(#usn8 In `7esn` Where ``[7.._usn3]).@usn6? =`6esn`,Any(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])._usn4! =`` Is Null Match (((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[?:_usn4]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1}))),#usn7=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`})) Where 123.654 In 12 Return [#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]) As usn2,(`5esn` :@usn6{usn1:'s_str'[0..]})<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})[All(#usn7 In 9e1[$`1esn`..] Where ``[$`3esn`])] As `3esn` Order By @usn6 =~999 =~@usn5 Ascending,$@usn5[..$#usn7] Descending,{`4esn`:12e12 =~$`7esn`} Is Not Null Is Not Null Desc Skip Count(*)[9e12..12.0] Union Merge @usn6=((`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})) On Match Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] Return Distinct $@usn6 Ends With 12.e12 Ends With @usn5 As usn2,``[usn1][`5esn`],`7esn`[..$`6esn`] Order By $@usn6 In @usn6 In 1e1 Desc,.e1[..$`3esn`][..01] Desc Limit Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Merge #usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) On Create Set @usn6+=$`1esn` =~1e1 On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1]"), + octest:ct_string("Match ((#usn7 :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})),`2esn`=(((`` :`5esn`{@usn5:123456789 =~@usn6})<-[`2esn`? *01234567..]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}))) With `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By $999 Is Null Is Null Descending,0e0 =~7 =~12.0 Asc Skip 0.e0 Is Not Null Is Not Null Limit Extract(@usn5 In 's_str'[0..] Where usn1 Starts With 00)[..Any(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999)][..[$`5esn`[0X7..010][`7esn`..'s_str']]] Where .e0 Union All Merge ((`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})) On Create Set `6esn` =0e0 Is Not Null,_usn3 =@usn5(Distinct 1e1 Is Not Null Is Not Null,`1esn` Starts With 0xabc Starts With $usn2)[..Extract(`3esn` In 9e1 Contains $999 Where usn2[12.e12..]|.12[01][@usn5])],`7esn`+=12.e12 Contains 9e1 On Match Set {usn2:$@usn6 =~#usn7 =~True,_usn3:07 In `6esn`}.`3esn` =$`5esn`[$`6esn`][`2esn`] Delete [$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],0.0[$@usn5.._usn4],7 Ends With 01234567 Ends With 0Xa Remove [`6esn` In $`6esn`[``..][Count(*)..]|$`4esn`['s_str'..]].@usn6?,(usn2 {`5esn`:$@usn5 In 12e12 In 01})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})-[`7esn`:`4esn`|@usn5 *12..]-(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]}).`5esn`"), + octest:ct_string("Delete Any(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) =~[#usn7 In 9e1[$`1esn`..] Where 0Xa Ends With $`3esn` Ends With $1000|$@usn5 Contains 's_str' Contains \"d_str\"] =~Extract(@usn6 In False Contains 0 Contains $`6esn` Where $`6esn` Starts With .e12 Starts With $`1esn`|12e12 In 123456789),.e0 =~Null,12.e12[..9e1][..$_usn3] Remove None(#usn7 In 9e1[$`1esn`..]).`5esn` Union Optional Match usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})),((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Where $123456789[...12][..@usn6] Detach Delete `2esn`[$@usn6..][Null..],$1000 Starts With $`7esn` Union Merge ``=(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) On Create Set `8esn` =[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] On Match Set Any(#usn8 In `7esn` Where $`3esn` Contains $`1esn`).`8esn`? =0x0 Contains $`6esn` Contains `4esn`,Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where False[$usn1][0x0]|@usn5[0.0..0X7]).usn2! =Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1),`3esn` =12.e12[..$999][..07] Create (((`6esn` :#usn7:`5esn`)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(_usn4 :#usn7:`5esn`))),usn2=((#usn7 {`6esn`:$`2esn` Contains Count(*)})-[?:_usn4]->(`2esn` :usn2))"), + octest:ct_string("Remove `5esn`(Distinct .12[123.654..]).`3esn`,{``:0Xa =~False =~@usn5,`8esn`:.12[123.654..]}._usn4!,Extract(`3esn` In `2esn`[..01][..True] Where 00[01234567][False]|12[$`5esn`..][False..]).`2esn`! Return Distinct [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Any(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`) Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc Skip {`4esn`:999 In 0e0,`6esn`:0.e0['s_str'..][01234567..]} Contains Single(`8esn` In 123456789 =~@usn6 Where 12.e12 Ends With `` Ends With 0) Limit `6esn` Is Null Is Null Union Merge ((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Union All Match (((:`1esn`:_usn4)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[``? *0x0..{`6esn`:$`2esn` Contains Count(*)}]-(`8esn` ))),usn1=((`1esn` {``:0.0 Is Not Null,`1esn`:``[$`3esn`]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]}))"), + octest:ct_string("Detach Delete All(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]) Is Not Null Is Not Null,@usn6[`1esn`..],$#usn7 Ends With 's_str' Ends With 0X7 Match (((`` :#usn8:`1esn`{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1})<-[_usn3?:_usn3|:`7esn`]->(#usn7 )<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(`5esn` :`3esn`))),((#usn7 :_usn3)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) Union Remove {_usn4:``[9e12][$999],#usn8:123.654 In 12}.`5esn`?,{``:`1esn` Starts With 0xabc Starts With $usn2}.`8esn` Optional Match ((:`3esn`{`4esn`:$999[0Xa..][9e1..]})-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]-(:`3esn`{`4esn`:$999[0Xa..][9e1..]})),_usn4=((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})) Where @usn5 Is Null"), + octest:ct_string("Create ((_usn3 :`8esn`{#usn8:False Starts With 0X7 Starts With 01234567})),((`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})<-[? *12..{#usn7:`6esn` Ends With _usn4 Ends With False,usn1:1000[12e12][`5esn`]}]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07})<-[?{`5esn`:123.654[$0..0X7][Null..#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]}]-(#usn7 {`3esn`:1.e1 In 1000 In _usn3,#usn7:`2esn` Starts With .e1 Starts With 9e12})) Delete Count ( * ) Ends With `6esn` Ends With 's_str',Count(*)[$@usn5] Return *,`2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Order By $`2esn` Starts With 0.12 Starts With $12 Ascending,07 In `6esn` Desc,12[..0e0][...e1] Desc Skip #usn8[`6esn`..][$``..] Limit `3esn`[..0X0123456789ABCDEF][..0x0] Union Match usn1=(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[usn1:_usn4]-(:`4esn`:`6esn`),(({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn4?:@usn6|:`7esn`]-({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn3?:_usn3|:`7esn`]->(`3esn` {`8esn`:`7esn` In 010 In usn1})) Where .0[..'s_str'][..01234567] Merge (((`` :#usn8:`1esn`{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1})<-[_usn3?:_usn3|:`7esn`]->(#usn7 )<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(`5esn` :`3esn`))) Create ((:`5esn`{`8esn`:$`1esn` Starts With Count(*),_usn3:usn1[...e12][..1.e1]})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(`4esn` :_usn4)) Union Return Distinct usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Skip $@usn6 Ends With `1esn` Limit 9e1 Ends With Count(*) Ends With $7 Merge _usn4=(`5esn` :``:usn2)-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}) Match @usn6=(usn2 :_usn4) Where `4esn`[$_usn3..$`7esn`]"), + octest:ct_string("Optional Match ((:`3esn`{@usn5:$`5esn` In _usn3 In 0.0})-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]->(:@usn5{#usn7:12e12 In $`5esn`})-[@usn5 *0X7..]->(`` $`6esn`)) Remove [usn2 In 7[12] Where 12e12 =~$`7esn`|.e1[12.0..]].@usn5! Unwind Extract(@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1) Is Not Null As `1esn` Union All With `4esn`[$_usn3..$`7esn`],0e0[``..$1000][$7..12.e12],0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Order By $_usn4[01..][$_usn4..] Ascending,$@usn5[..$#usn7] Descending With Distinct *,`2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Order By $`2esn` Starts With 0.12 Starts With $12 Ascending,07 In `6esn` Desc,12[..0e0][...e1] Desc Skip #usn8[`6esn`..][$``..] Limit `3esn`[..0X0123456789ABCDEF][..0x0] Remove (@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[? *12..{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7}]->(#usn7 :usn1:`3esn`).`6esn`,[`6esn` In $`6esn`[``..][Count(*)..] Where @usn6 Is Not Null Is Not Null|123.654].`4esn`,_usn3._usn4?"), + octest:ct_string("Merge `7esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)) Detach Delete 12[0e0],$``[01234567..][.0..] Return Distinct Filter(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3]) In ({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) In Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0),.e0 Is Not Null Is Not Null As `7esn`,$`2esn` Ends With `6esn` As usn1 Order By `` Is Null Descending,_usn4(Distinct usn2[07..][.0..]) Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]|$`2esn` Starts With `4esn` Starts With $usn1) Ends With Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) Desc Limit 0.e0 Is Not Null Is Not Null"), + octest:ct_string("Match (`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]-(#usn8 :`6esn`:_usn3)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]}),`4esn`=((`` {#usn7:#usn8 Is Not Null Is Not Null})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})) Where 1.e1 Starts With 9e12 Union All Detach Delete usn1 Ends With 0.0,Count(*)[..@usn6][..`7esn`] With $@usn6[12.0][12.0] Skip `7esn`[$usn2..][$123456789..] Return Distinct @usn5[01][@usn5],9e0 Contains $12 Contains `3esn` As #usn8,{`4esn`:0.0[usn1..],`7esn`:12.0[$1000..][#usn7..]}[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7)..[usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]]][[12.e12[..$`6esn`],999 In #usn8 In $``]..Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1)] Order By Null Ends With _usn4 Ends With 0.0 Asc Skip (`1esn` $`4esn`)-[@usn6?:`7esn`|:`2esn`]-({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]}) =~Filter(`3esn` In 9e1 Contains $999 Where 12.0 Is Null Is Null) =~[0xabc In Null] Union Unwind 01[07..][1.e1..] As _usn3 Match `4esn`=((`3esn` {usn2:$usn2[`4esn`..9e12]})<-[?{@usn5:_usn3 Ends With 7 Ends With $`1esn`}]->(_usn3 :_usn4)<-[_usn4?:`3esn`]-(:_usn3{_usn4:.e1[7..][9e0..]})) Merge `2esn`=(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[`4esn`:usn2]->(`3esn` :_usn4) On Create Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null On Create Set #usn7+=`6esn`[$`8esn`][9e1]"), + octest:ct_string("Return Distinct 1.e1[$`3esn`][0Xa] As @usn5 Limit {`1esn`:1e1 Contains 's_str' Contains `3esn`} =~None(#usn7 In 9e0[$1000] Where `6esn`[$1000][`3esn`])"), + octest:ct_string("With (`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})<-[`8esn`? *0Xa{#usn8:$``[True]}]->(:`7esn`{usn2:@usn5 Is Not Null}) Is Null Is Null,$#usn8 Ends With `3esn` Ends With $`` As #usn7,{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]}[#usn7(Distinct $`1esn`[``][07])..None(@usn6 In 010[`5esn`] Where $`3esn` Ends With 01234567)] As _usn3 Order By @usn6 =~999 =~@usn5 Ascending,``[7.._usn3] Descending,All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) Is Not Null Is Not Null Ascending Skip #usn8 Ends With $@usn5 Ends With $7 Limit #usn8[`8esn`..] Create ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)) Optional Match ((:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) Where 12.e12 Starts With \"d_str\" Starts With 9e1 Union All Merge @usn5=(({`8esn`:`5esn` Contains #usn7 Contains 9e12})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`1esn` :`3esn`{#usn8:$usn2[0.e0],`8esn`:$`4esn`['s_str'..]})) On Match Set `4esn`+=@usn5 Is Not Null,@usn6+=.e12[`2esn`..010],#usn7 =$999[``] On Match Set [$0[123.654..0.e0],01234567[Null..$_usn3]]._usn4! ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,None(#usn7 In 9e0[$1000] Where 00[12..$`6esn`]).`7esn`? =`4esn`(Distinct)[`2esn`($`2esn`[..$`3esn`][..12e12])][Extract(@usn6 In 010[`5esn`] Where 1.e1[$usn1]|.e12[..999][..@usn5])],`5esn`+={`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}[Extract(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]|.e1[..$`3esn`][..01])..] Delete $usn1 Starts With 0x0 Starts With #usn8,$@usn6 Ends With `1esn`,Extract(`3esn` In `2esn`[..01][..True] Where 00[01234567][False]|$`3esn` Ends With 01234567) Starts With (_usn4 :_usn4)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}) Starts With Extract(@usn6 In 010[`5esn`] Where $`2esn` Starts With `4esn` Starts With $usn1) Union Return _usn3 Is Not Null Is Not Null As `` Order By Extract(`3esn` In `2esn`[..01][..True] Where 0.0 Is Null Is Null|$usn2[0.e0])[{usn2:@usn5 Is Null,`8esn`:$@usn6 Ends With 123456789 Ends With 12.0}..] Descending,(:_usn4$12)-[`1esn`?:`6esn`|:#usn8 *0Xa]-(usn1 :#usn8:`1esn`)[{`7esn`:$usn2 =~9e1}..] Desc,.12 In `8esn` In $#usn8 Desc Limit 9e1 Contains 12 Detach Delete 0.e0,\"d_str\"[True..],$`3esn` Ends With 01234567"), + octest:ct_string("Optional Match (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3) Where $`4esn`[..$`8esn`][..Null] Remove {`6esn`:Null =~`6esn`}._usn3!,[usn2 In False[$usn1][0x0] Where `4esn` Starts With 0e0].`6esn`!,[010[`5esn`],0Xa[..Count ( * )][..$123456789]]._usn3 Unwind Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null] As #usn7 Union With $`3esn` Ends With 1000,999[..`1esn`][..07] Skip [123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)] Limit [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12] Starts With usn2(01 Is Null) Starts With Filter(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]) Remove _usn4:`2esn` Union All Remove All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..]).@usn6!,Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12).@usn6!,[`8esn` In 123456789 =~@usn6 Where @usn6 Is Not Null Is Not Null|$`5esn` =~$`8esn` =~usn2].`7esn`? Remove (`3esn` {`8esn`:`7esn` In 010 In usn1})<-[:`1esn`|`3esn`{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]}).@usn5,[`8esn` In 123456789 =~@usn6 Where ``[9e12][$999]].@usn5?,(`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]}).`6esn` With _usn3 Is Not Null Is Not Null As `` Skip [$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][None(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..])..] Where .e1[12.0..]"), + octest:ct_string("With $#usn7 =~`2esn` As #usn7,usn1 Ends With 9e0 Ends With 9e0 As @usn5,{`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`}[Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..])] Order By 0xabc In .12 In 0Xa Descending,$@usn5 Descending Detach Delete [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null),07 Ends With 9e12 Ends With `2esn`,usn1 In `` Match ((:usn2)-[usn2:#usn8|:`3esn`{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}]->(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`2esn` :usn2)),_usn4=((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) Union All Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) Union Return Distinct *,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As `8esn` Optional Match (:`7esn`{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8] Unwind (`1esn` :`3esn`{#usn7:12[..0e0][...e1]})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})[(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null)][{`2esn`:$999 Ends With .e0}..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]] As `8esn`"), + octest:ct_string("Create (((`4esn` :``:usn2)<-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]-({`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[:_usn4{`8esn`:12.e12 Is Not Null Is Not Null,#usn7:@usn6[Null...0][\"d_str\"..Count(*)]}]-(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False}))),usn2=(`6esn` {`2esn`:$`3esn` Ends With 01234567})"), + octest:ct_string("Merge `7esn`=((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})-[#usn8:#usn7|@usn5 *123456789..{@usn5:usn2[12.e12..]}]->(`` )<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})) Union All With *,$#usn7 Ends With \"d_str\" As `7esn` Where 12.e12 Contains 9e1"), + octest:ct_string("Optional Match _usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))),usn1=(_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]}) Union Return *,$`1esn` Contains 1e1 Contains @usn6 Skip 07[_usn3..][`6esn`..] Optional Match _usn4=((:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})),(`2esn` :`1esn`:_usn4)-[?*..]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Delete _usn4[$usn1..01234567][123.654..`5esn`] Union All Create ((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})) Remove `2esn`(#usn7[0.12..])._usn4?"), + octest:ct_string("Return Distinct 010[12.0..`4esn`][``..Count(*)],$`7esn`[123456789..$1000][Count ( * )..$7],$`2esn` Contains Count(*) As `3esn` Order By [$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) Ascending,[usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Ascending Limit 0.e0 Ends With 1.e1"), + octest:ct_string("Unwind usn1 Starts With 00 As _usn3 Union Delete 12.e12 Contains `6esn`,$1000 Is Not Null,`1esn`[$@usn6][07] Optional Match usn1=(({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) Unwind 12 Is Not Null As `6esn`"), + octest:ct_string("Create (@usn5 :`1esn`:_usn4) Detach Delete $_usn3,[Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] Union Unwind 9e1[$``..][0.e0..] As @usn6"), + octest:ct_string("Match `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((:#usn7:`5esn`{`3esn`:Null[..0]})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->(`6esn` :#usn7:`5esn`{_usn3:_usn4 Is Null Is Null})) Where $#usn8 Starts With .e12 Starts With 1.e1 Detach Delete [#usn8 In `7esn` Where .e0 Is Null Is Null] Ends With {usn1:$`4esn`[`6esn`..$12],`4esn`:usn1 Contains 010} Ends With (:``:usn2{``:True[$_usn3..]})<-[`2esn`? *01..123456789]-(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(`1esn` $`4esn`),Extract(`6esn` In $`6esn`[``..][Count(*)..] Where 1.e1 Ends With $_usn4 Ends With #usn7|0xabc =~$@usn5) Contains {`5esn`:1.e1[`8esn`],`1esn`:.e0} Contains {usn1:$123456789 In 0.12} With 01234567 Starts With True Starts With $999 As `6esn`,usn2[..$usn1][..$#usn8] As `8esn` Limit $`5esn` Is Not Null Is Not Null Where usn1 Starts With 00 Union Create ((:`5esn`{`8esn`:$`1esn` Starts With Count(*),_usn3:usn1[...e12][..1.e1]})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(`4esn` :_usn4)) With *,Filter(`5esn` In 0X7 In $#usn7 Where $@usn5 Starts With `5esn` Starts With 01234567) Is Null Is Null,$@usn6[$`8esn`..][123456789..] As @usn6 Order By 0X0123456789ABCDEF In $usn2 In `4esn` Descending,.e0 Ends With $#usn7 Ends With False Desc Where .12[..usn2][..12e12] Create `3esn`=((:_usn3{_usn3:$`3esn`[.e1][_usn4]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:`5esn`)<-[ *01234567..]->(#usn8 :`8esn`))"), + octest:ct_string("Unwind 9e1 =~123456789 =~999 As @usn5 Union Unwind 123.654 Starts With 0X7 Starts With $`4esn` As `2esn`"), + octest:ct_string("With Distinct *,$7[$12..12e12][1.e1..9e1],12[..Count(*)][..$`2esn`] As `4esn` Remove All(`8esn` In 123456789 =~@usn6 Where ``[9e12][$999]).``? Union With `1esn`[`3esn`..],(`3esn` {usn2:00[False..0e0]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null})<-[@usn6?:`8esn` *0..01]->(`5esn` :`4esn`:`6esn`)[[12.0 Starts With $`2esn` Starts With .e1]..] Skip 07 In 0Xa In usn1 Limit 010 Is Null Where Count ( * )[$`5esn`..][$7..] Return Extract(#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null)[All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])..] As `1esn`,$`6esn`[1.e1][$_usn3] As usn1 Order By [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null] Is Not Null Desc Limit Count ( * ) In 0.12"), + octest:ct_string("Merge @usn5=((:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})) Detach Delete 12.e12 =~.0 =~usn1 Union Unwind 9e1 =~123456789 =~999 As @usn5 Union All Optional Match `4esn`=((({#usn7:$`3esn` Ends With 01234567,_usn3:usn1 =~$`7esn`})-[`7esn`?:usn1|`4esn` *00..0Xa{`3esn`:usn1 In ``}]-(usn1 {usn1:$#usn7 Starts With 01234567 Starts With $0})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]}))),#usn8=(({usn2:`2esn`[..$_usn3]})) Where `2esn`[..$_usn3] Return `6esn`[`5esn`..00],$1000 Is Null Is Null,0.0[usn1..] As `3esn` Limit All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`]"), + octest:ct_string("Delete {#usn8:.0 Is Null Is Null}[..(_usn3 :@usn6{usn2:0Xa =~False =~@usn5,`3esn`:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})][..{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}],Count(*) Is Not Null Is Not Null Remove {`8esn`:$`3esn`[$_usn4..0Xa]}._usn3,@usn5:`6esn`:_usn3,[0.e0[1000.._usn4][.e1..usn1],$`1esn` =~999,07[_usn3..][`6esn`..]].usn1! Union All Detach Delete Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}],Extract(usn2 In 7[12] Where usn1 Starts With 00|`8esn` Contains Count(*) Contains $#usn7) Contains None(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[0.e0]) Contains Extract(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]|$`4esn`['s_str'..]),`` Starts With $123456789"), + octest:ct_string("Match _usn3=((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7 *01..123456789]->(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})),``=((:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[`5esn`:#usn7|@usn5]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) Remove None(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`).@usn6?,[Count ( * ) In True In @usn5,#usn7[0.12..],1000[0e0][1e1]].`3esn`? Union Merge (_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) Merge @usn6=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}) Match (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}))) Where 010 Starts With 0 Starts With 0.0"), + octest:ct_string("Return 12 Contains 1.e1 As `5esn`,Extract(usn2 In 7[12] Where 12e12 Contains `2esn`|`5esn`[$`7esn`..$@usn5])[`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)..],usn2(0X7[.0])[{#usn8:0Xa Ends With $`3esn` Ends With $1000}..][[Null =~`6esn`]..] As `6esn` Merge `8esn`=(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) Union All Remove #usn7:usn2,[07[_usn3..][`6esn`..],$usn1 Ends With _usn4 Ends With `2esn`,False[$`4esn`..]].`3esn`?,[`6esn` Ends With _usn4 Ends With False].`4esn`! Merge ((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) On Create Set #usn8+=[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null),@usn5+=.e0 =~$`7esn` =~0X0123456789ABCDEF,``+=(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) On Match Set `6esn`(Distinct 0Xa[$`8esn`..][$_usn4..],0xabc In Null).`2esn`! =(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[? *..010{#usn8:False Is Null}]->(#usn7 {#usn7:1.e1 Starts With 9e12})<-[:_usn3|:`7esn` *00..0Xa]-(`1esn` $`4esn`)[..[0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]]][..(:`2esn`{_usn3:@usn5[0.0..0X7]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null).`7esn`? =Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])],Extract(`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]).@usn5 =$@usn6 Ends With 123456789 Ends With 12.0 Return Distinct _usn4(Distinct usn2[07..][.0..]) Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]|$`2esn` Starts With `4esn` Starts With $usn1) Ends With Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2),usn1[..$@usn6][..00] As #usn7,(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})[..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})] As `7esn` Order By 0X7[..$`8esn`] Desc,$123456789[12e12..9e0] Descending Union All Return Distinct *,$`7esn`[0.12] Limit 12[..0e0][...e1] Return *,`2esn`[..$_usn4][...12] As `6esn`,`1esn` Starts With 9e1 As `6esn` Order By 01 Ends With 123456789 Desc,1.e1[12.e12..] Desc,\"d_str\" Is Not Null Ascending Skip [#usn7 In 9e0[$1000] Where `6esn`[$1000][`3esn`]][Extract(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1|010 Starts With $`` Starts With 0e0)..] Limit @usn6 =~999 =~@usn5 Unwind 01 Ends With 123456789 As usn1"), + octest:ct_string("Delete #usn7[``],$`2esn`[.0..][0.0..],999 Ends With 999 Ends With `3esn` Union All Unwind 01 Ends With 123456789 As `7esn`"), + octest:ct_string("With Distinct 0[$#usn8..][0x0..]"), + octest:ct_string("With *,_usn4(#usn7 Starts With $123456789 Starts With 12e12) In None(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1) As @usn5,#usn7[`8esn`..usn1][$999..`7esn`] Order By $@usn6[_usn3..][$999..] Asc,[$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa) Asc Limit @usn6[`1esn`..] Where $`1esn` Starts With Count(*) Return *,Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] As `7esn` Skip $0 =~9e1 =~$`2esn` Limit Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..] Match ((`4esn` :`4esn`:`6esn`)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Where usn2 Contains $0 Contains .0"), + octest:ct_string("Delete None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])[..[_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4]] Remove {``:.e12 Ends With 0Xa Ends With 0xabc}.usn2? Union Unwind 999[..`1esn`][..07] As `8esn` Optional Match ((:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]})<-[_usn4?:`3esn`]-(:_usn3{_usn4:.e1[7..][9e0..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})) Optional Match ``=(((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),_usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))) Union All Optional Match `8esn`=(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}),`8esn`=(:`4esn`:`6esn`{usn2:$`8esn` Is Not Null Is Not Null})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Where `7esn` In 010 In usn1 Merge #usn8=((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})) On Match Set [12e12 =~1e1,0X7[..$`8esn`]].`7esn` =1e1 Ends With $`2esn`,`8esn`+=01[$`7esn`..$@usn6] On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``|.12 In `8esn` In $#usn8]._usn4? =7 =~0.12,`6esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null,Any(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]).`3esn`! =(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null"), + octest:ct_string("Merge ((:usn2{``:Count(*)[9e12..12.0],#usn7:`2esn`[$12..]})) Merge `4esn`=(:#usn7:`5esn`{`4esn`:$``[..\"d_str\"][..$#usn8]}) On Create Set #usn8(Distinct 0[$`5esn`],Count(*)[9e12..12.0]).`7esn`! =123.654 In $999 In _usn3 On Match Set `1esn` =0x0[@usn6..][01..],`5esn`(Distinct $#usn7 Contains $`7esn` Contains .e12).@usn6! =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`) Is Null Union All Return Distinct *,[usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null As #usn8 Order By @usn5(Distinct) =~[_usn3[`5esn`..][usn2..],$#usn7 =~`2esn`] =~1.e1 Ascending Skip (:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] Limit 0Xa[010..$0][$`2esn`..999]"), + octest:ct_string("Return Distinct *,00[12e12][$`7esn`],@usn5(Distinct) =~[_usn3[`5esn`..][usn2..],$#usn7 =~`2esn`] =~1.e1 As #usn8 Order By Extract(`3esn` In `2esn`[..01][..True] Where 0.0 Is Null Is Null|$usn2[0.e0])[{usn2:@usn5 Is Null,`8esn`:$@usn6 Ends With 123456789 Ends With 12.0}..] Descending,(:_usn4$12)-[`1esn`?:`6esn`|:#usn8 *0Xa]-(usn1 :#usn8:`1esn`)[{`7esn`:$usn2 =~9e1}..] Desc,.12 In `8esn` In $#usn8 Desc Skip Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[{`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}] Limit `6esn` In .0 In $`` Unwind {`8esn`:usn2 =~7,@usn5:`6esn` Ends With _usn4 Ends With False} Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]] Ends With (_usn4 :_usn4)<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[ *..07{`6esn`:Count(*)[9e12..12.0]}]->(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) As _usn4 Union All Optional Match #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}),((:#usn7:`5esn`{_usn4:$usn2 =~9e1})<-[@usn5?:usn2 *0..01]->(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})) Where 9e1 Starts With Count ( * ) Merge (`2esn` :`1esn`:_usn4)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}) On Match Set `5esn`+=010[..7][..`4esn`],(`2esn` :@usn5)-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}).`4esn`! =$@usn6 Ends With `1esn`,`6esn` =.0[$``..0X7] Detach Delete 01[`3esn`..][Count(*)..],usn2[07..][.0..] Union All Unwind 0x0[Count(*)..@usn6][Count(*)..0Xa] As _usn3"), + octest:ct_string("Match `2esn`=({@usn5:$`5esn` Is Not Null Is Not Null})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Create `8esn`=(usn2 :`7esn`)-[? *7..{#usn7:`4esn`[123456789]}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )}),_usn4=((`2esn` {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]-(`1esn` :``:usn2{@usn5:`4esn`[\"d_str\"]['s_str']})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})) Optional Match usn1=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`),`6esn`=(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Union All Delete [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12] Starts With usn2(01 Is Null) Starts With Filter(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),All(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null) Contains [@usn5 In 's_str'[0..] Where `6esn`[..Count ( * )][..$_usn4]] Contains ({usn1:$123456789 In 0.12})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(usn2 ) Create _usn3=((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})-[#usn8:#usn7|@usn5 *123456789..{@usn5:usn2[12.e12..]}]->(`` )<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})),usn2=((`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})) Merge `1esn`=(((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[?:`8esn`*]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}))) On Match Set _usn4 =0Xa In #usn7 In 's_str',`5esn`+=$#usn8 Starts With .e12 Starts With 1.e1,`1esn`+=usn2 In _usn3 On Match Set _usn3+=`6esn`[$``..$_usn3][1000...0],[usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5|0 Ends With 12.e12 Ends With usn2].`1esn` =123.654 Is Null Is Null Union With *,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As `8esn` Where $`7esn`[.e1][12.0]"), + octest:ct_string("Optional Match `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),(`2esn` $`6esn`) Where 7 =~`4esn` Merge ((@usn6 {_usn4:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})) On Match Set `8esn` =Count(*)[9e12..12.0],@usn5+=9e0[Count(*)..0.12][$`1esn`..12.0] Create (`8esn` :#usn8:`1esn`{usn1:0x0 Starts With $`6esn`})"), + octest:ct_string("Detach Delete 0Xa[Count(*)..],$`1esn` =~1e1 Optional Match usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})),((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Where $123456789[...12][..@usn6] Detach Delete (`3esn` :usn2)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null}) Is Null,(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`),Any(#usn7 In 9e0[$1000] Where .e0 Is Null) =~Extract(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0|$`3esn` In $usn2) =~{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789}"), + octest:ct_string("Remove Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0 =~1e1).`8esn`!,[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]|_usn3 Contains _usn4 Contains $@usn5].usn2!,{`4esn`:_usn4[@usn6..][$0..],@usn5:$@usn6 In @usn6 In 1e1}.`3esn`!"), + octest:ct_string("Remove ``:`5esn` Merge `8esn`=(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) On Match Set `3esn`+=[_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1|999 Contains $1000] Starts With Single(`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``),`2esn`+=\"d_str\" In @usn5 In $@usn5 On Create Set `7esn` ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]} Unwind usn1 Starts With 00 As _usn3 Union All Remove usn1:`1esn`:_usn4,[#usn8 In `7esn` Where 12.0 Starts With $`2esn` Starts With .e1|$`6esn`[1.e1][$_usn3]].usn1?,[`5esn` In `7esn`[$usn2..][$123456789..]].``? Optional Match (`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}),`4esn`=({`7esn`:`8esn`[$`4esn`..$#usn8]}) Where $`2esn` =~9e12 Union Unwind 0x0[0.0] As `3esn`"), + octest:ct_string("Create (((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})<-[?:usn1|`4esn` *01..123456789{usn1:.e12[$@usn6..00][01234567.._usn3],`1esn`:`7esn` Contains 9e0}]-(_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`}))),`6esn`=(:`3esn`{@usn6:$`5esn` =~$`8esn` =~usn2,`8esn`:12[..0e0][...e1]}) Create usn2=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})),`8esn`=((`1esn` :``:usn2{@usn5:`4esn`[\"d_str\"]['s_str']})) Union Merge @usn5=(:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']}) On Create Set usn1+=@usn5 Is Null,usn2 =`8esn` =~@usn6 =~$`2esn`,@usn5 =count($`4esn`[`8esn`],`4esn` Is Not Null Is Not Null) =~Filter(@usn5 In 's_str'[0..] Where _usn3[0x0]) Union All Match ((:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) Remove Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5,{`3esn`:9e1 Ends With Count(*) Ends With $7}._usn4! Detach Delete {usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}[[@usn5 In 9e0 Ends With $#usn8 Where 00 Contains Count ( * ) Contains 0x0]]"), + octest:ct_string("Return Distinct (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] As #usn7,1e1 Is Null Is Null As usn2,{`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}[..`2esn`(Distinct 0 Ends With 12.e12 Ends With usn2)][..Filter(_usn4 In 12e12 In 123456789 Where .e1 In 123456789)] As usn1 Match ``=(:_usn3{`7esn`:$999 Ends With .e0})<-[`8esn`?:`2esn`|`4esn`{usn2:#usn8[`6esn`..][$``..]}]-(@usn6 {`6esn`:$`5esn` =~usn1,`5esn`:$`` Starts With $1000 Starts With @usn6})-[?{_usn3:010[`5esn`],_usn4:#usn8 =~.e0}]-(#usn8 :`3esn`{`5esn`:$@usn6 Ends With `1esn`}),`3esn`=((`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) With *,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null Order By .e0 Starts With $@usn6 Starts With $7 Descending Skip [$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa) Union Merge ((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) On Create Set `5esn` =$1000[$`4esn`..False],`6esn` =[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`],`2esn` =12.0 Is Null Create (`6esn` {`2esn`:$`3esn` Ends With 01234567}),usn2=({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2)<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(_usn4 :@usn5) Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3)"), + octest:ct_string("Remove [@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|$`3esn` In $usn2].`5esn`?,[$usn2[0.e0],#usn8 Is Not Null Is Not Null,.12[01][@usn5]].`7esn`! Optional Match ((:`3esn`{`4esn`:$999[0Xa..][9e1..]})-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]-(:`3esn`{`4esn`:$999[0Xa..][9e1..]})),_usn4=((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})) Where @usn5 Is Null Remove Any(usn2 In 7[12] Where 0x0 Ends With 12.0 Ends With `5esn`).#usn8,Filter(#usn7 In 9e0[$1000] Where .e0 Is Null).`2esn`! Union All Match _usn4=((:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})) Where 123456789[12] Merge #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}) On Match Set _usn3:`7esn` On Create Set Single(@usn6 In 010[`5esn`] Where 123.654).`6esn`? =0.e0[0X0123456789ABCDEF..],(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}).`3esn`? =999[..`1esn`][..07],[@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1].`6esn` =`7esn` Starts With @usn5 With Distinct 0Xa In #usn7 In 's_str',`4esn` Starts With 0e0 As `7esn` Skip (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`) Where .e0 Union Detach Delete `` =~.12,[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])],123456789[12] With Distinct $#usn8 Ends With `` Ends With 999 As `5esn`,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]) Is Not Null Is Not Null As _usn3 Order By _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..] Desc,{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Is Not Null Desc,9e0 Ends With $#usn8 Desc Limit 12.0 Starts With $`2esn` Starts With .e1 Where 9e1 Ends With Count(*) Ends With $7 Merge `1esn`=(`6esn` {``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]})-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(`3esn` :usn2{`6esn`:#usn8 Is Null}) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]]"), + octest:ct_string("With Distinct [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`) Merge (_usn3 :`7esn`) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] On Create Set #usn7+=Null[.12..12e12],Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]).`1esn`! =[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)],@usn6 =usn2[1.e1] Union All Remove (`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[usn1? *01234567..{@usn5:01[`3esn`..][Count(*)..]}]->(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null}).#usn7,[`8esn` In 123456789 =~@usn6 Where 0x0[@usn6..][01..]|#usn7[.e0]].usn2?,Extract(#usn7 In True Contains 's_str' Contains $usn1 Where `8esn`[..$#usn8]).`2esn`! Unwind 9e1 =~123456789 =~999 As @usn5 Create #usn7=(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}),({`1esn`:1.e1[`8esn`]})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->({usn1:$123456789 In 0.12}) Union Unwind Any(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) =~[#usn7 In 9e1[$`1esn`..] Where 0Xa Ends With $`3esn` Ends With $1000|$@usn5 Contains 's_str' Contains \"d_str\"] =~Extract(@usn6 In False Contains 0 Contains $`6esn` Where $`6esn` Starts With .e12 Starts With $`1esn`|12e12 In 123456789) As #usn7 Remove Extract(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1|010 Starts With $`` Starts With 0e0)._usn3!,1000.`2esn`? Remove None(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`).@usn6?,[Count ( * ) In True In @usn5,#usn7[0.12..],1000[0e0][1e1]].`3esn`?"), + octest:ct_string("Return *,1e1 Is Not Null Is Not Null"), + octest:ct_string("Remove All(@usn6 In 010[`5esn`] Where 1.e1[$usn1]).`6esn`!,Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5 Detach Delete 0xabc[$999..][$usn1..],12[..$999][..$`2esn`],Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|$`8esn`[..True][.._usn4]) Ends With Single(_usn4 In 12e12 In 123456789 Where $usn2 Is Not Null Is Not Null) Create (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})))"), + octest:ct_string("Return Distinct `1esn` Starts With 0X7 Starts With \"d_str\",$`4esn`[..$`8esn`][..Null] As #usn7,None(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With Filter(`5esn` In 0X7 In $#usn7 Where 0x0[0X7]) Ends With Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) As `4esn` Order By [123456789 =~12 =~'s_str',`2esn` Starts With 12.e12 Starts With 12.0,$`8esn`[..True][.._usn4]] Contains Filter(#usn7 In 9e0[$1000] Where `7esn`) Asc,None(#usn8 In `7esn` Where $`3esn` Contains $`1esn`) Starts With #usn8(0x0[Count(*)..@usn6][Count(*)..0Xa]) Ascending,_usn4 Contains $_usn3 Contains .e1 Asc With usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Skip $@usn6 Ends With `1esn` Limit 9e1 Ends With Count(*) Ends With $7 Delete $`6esn` Is Not Null Is Not Null,@usn5 Starts With 9e0 Starts With 010 Union All Create (:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']}),((#usn7 :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8}))"), + octest:ct_string("Unwind 0.0 Contains `3esn` Contains @usn5 As @usn5 Union All Remove Single(#usn7 In 9e1[$`1esn`..] Where 999 In #usn8 In $``).``,Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7]|#usn8 =~.e0).`2esn`?,{usn2:Count ( * )[@usn6],`3esn`:$_usn4[$`5esn`][`7esn`]}.`7esn`? Delete 12 Contains 01234567,[@usn5[$`6esn`..][$999..],`` Starts With $123456789] Is Null,`6esn` Is Null Is Null Remove [0x0[0X7]].``!,(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}).`4esn`,{@usn5:01[`3esn`..][Count(*)..]}.`8esn`? Union Return $123456789 Starts With 0.12 Starts With Null As _usn3 Order By #usn7[``] Desc,{`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Ascending,`` Is Null Descending Skip 0X0123456789ABCDEF In $7 Limit All(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0)[(:#usn7:`5esn`)<-[#usn8? *0Xa]-(`5esn` :`5esn`{#usn7:``[$`3esn`]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc})..] With Distinct Count(*) In #usn8 In \"d_str\" As ``,$`4esn` Starts With 0 Starts With `7esn` As usn2 Order By $7 Starts With 12.e12 Starts With $@usn6 Desc,1.e1 Is Null Is Null Descending Skip $`1esn`[``][07] Limit `5esn` Contains 1.e1 Contains .e12 Where 9e1 Contains $999 Detach Delete All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`],usn2 Ends With $`4esn`"), + octest:ct_string("Return *,All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) As `8esn` Order By 12.0 Ends With `2esn` Descending,$`4esn`[`4esn`][Count(*)] Descending,$`1esn`[07..] Desc Skip 9e12[..123.654][..999] Merge @usn6=((`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})) On Match Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] Union Merge usn2=(@usn5 :@usn6{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[`8esn` *0xabc]-(:_usn3{_usn4:.e1[7..][9e0..]}) On Match Set None(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`).`7esn`! =07[..07][..0X7],`4esn`:`1esn`:_usn4 Merge `6esn`=(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})"), + octest:ct_string("Merge _usn3=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) Optional Match _usn4=({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}) Where 0x0[@usn6..][01..] Unwind $12 Starts With $usn1 As `4esn`"), + octest:ct_string("Match ((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})),(((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[?:_usn4]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1}))) Optional Match (:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]}) Where 12e12 In $`5esn` Union All Return $_usn4 Starts With $1000 Starts With 12,_usn4 Starts With `` Starts With 1000,Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null) Is Not Null Is Not Null As usn1 Order By [`5esn` Contains `1esn` Contains usn1,$@usn5 Ends With @usn5 Ends With 0xabc] Is Null Is Null Asc Create ((({`6esn`:`6esn`[..Count ( * )][..$_usn4],`7esn`:#usn7 Contains $0 Contains $usn2})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[`7esn`?]->(#usn8 :@usn5{_usn4:$#usn7 Contains $`7esn` Contains .e12}))),usn2=(_usn4 {_usn4:Null[..010][..1000],_usn3:.0 Is Null Is Null})-[`2esn`?:usn2{_usn3:0Xa In #usn7 In 's_str'}]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null}) Union All With Distinct {`8esn`:9e12 =~@usn6,`1esn`:999 Contains 0 Contains $`5esn`}[`4esn`()],(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null} Order By [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Desc Limit $7 Starts With $`4esn` Merge (({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})) Merge @usn6=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null})"), + octest:ct_string("Create (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3) Remove ``:`5esn` Detach Delete True Contains 's_str' Contains $usn1,$`5esn`[..00] Union All Unwind 7 =~0.12 As `3esn` Remove (#usn7 {_usn3:0.e0 Starts With .0 Starts With 123456789,_usn4:'s_str' Ends With `7esn` Ends With 010})<-[#usn7? *0X7..{`1esn`:$1000 Starts With $`7esn`}]->({`5esn`:'s_str'[0x0..1.e1],@usn6:.e0[01234567..$`8esn`]})<-[:`1esn`|`3esn`{`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6}]-(`` :`6esn`:_usn3{_usn3:$`6esn`[1.e1][$_usn3]}).`3esn`? Unwind True[$_usn3..] As usn2 Union Optional Match `8esn`=(:_usn3{usn1:#usn7[..07]})-[?:`7esn`|:`2esn`{@usn5:usn2[1.e1],@usn6:$#usn8 Starts With .e12 Starts With 1.e1}]->({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7}) Remove (:#usn8:`1esn`{usn2:$`7esn`[.e1][12.0],``:$`1esn` Contains 1e1 Contains @usn6})-[`` *1000..0X0123456789ABCDEF]-(`` :`7esn`)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:usn2{`6esn`:#usn7[$`3esn`..$1000][0.0..`2esn`],``:010 Starts With 0 Starts With 0.0}).`4esn`!,Extract(`5esn` In 0X7 In $#usn7 Where @usn6 Is Not Null Is Not Null).@usn5?,Any(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).#usn7! Return 0.e0[..$7] As _usn3,0xabc =~@usn5 =~$usn1 Skip $@usn6[00] Limit `2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..]"), + octest:ct_string("Unwind $@usn6 Ends With 123456789 Ends With 12.0 As `3esn` Merge ((@usn6 :@usn6{_usn4:#usn8 Is Not Null})-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-(`5esn` :#usn8:`1esn`)<-[`1esn`:`8esn` *00..0Xa{#usn8:0X7['s_str'..][01..],``:$usn2 =~1.e1 =~usn1}]->(:_usn3{_usn4:.e1[7..][9e0..]})) On Match Set (:``:usn2{`4esn`:#usn7 Contains $0 Contains $usn2})<-[:`8esn` *0X7..]->(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2})<-[`2esn`? *01..123456789]-(`2esn` :@usn6).`8esn` =`7esn`[1e1] On Create Set `7esn` ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]} Create `4esn`=((`6esn` :#usn8:`1esn`{`6esn`:usn1[..$@usn6][..00]})-[@usn5:_usn4 *0x0..]-(_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})),(:`4esn`:`6esn`{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]-(:`6esn`:_usn3)<-[@usn5? *999..{usn1:.e12[$@usn6..00][01234567.._usn3],`1esn`:`7esn` Contains 9e0}]-({@usn6:999 Contains 0 Contains $`5esn`,#usn7:999[..`1esn`][..07]}) Union Merge usn1=(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[usn1:_usn4]-(:`4esn`:`6esn`) On Match Set _usn3 =$``[01234567..][.0..] Union All Remove #usn7:@usn6,[#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0]._usn4?"), + octest:ct_string("Return Distinct *,1.e1 Ends With $#usn7 As usn2,@usn5[01][@usn5] Skip $`5esn` Limit (`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Is Not Null Union Unwind 9e12 =~@usn6 As usn1 Merge _usn3=((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(_usn3 :usn1:`3esn`)<-[`7esn`? *..010{usn2:12 Ends With Count ( * ),#usn8:`8esn` Contains `2esn` Contains .0}]->({`6esn`:'s_str' Contains 12.e12 Contains $`4esn`})) On Match Set #usn8+=Count(*)[$@usn5],@usn6 =0 =~1e1,`2esn`+=Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) On Match Set `8esn`+=#usn8[..`8esn`],_usn4 =0e0 Ends With 07 Ends With $`8esn`"), + octest:ct_string("Create ((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(:`8esn`{``:$`1esn` =~999})) Union All With Distinct [`8esn`[..$#usn8],$1000 Starts With $`7esn`,0xabc In 010 In #usn7] Is Null Is Null As #usn7,9e1[@usn5][$usn1],None(`3esn` In `2esn`[..01][..True] Where usn1 In ``)[None(usn2 In 7[12] Where 12e12 =~$`7esn`)..] Limit None(@usn5 In 's_str'[0..] Where 1000[..`2esn`][..$@usn6])[{usn2:`2esn` =~.e12 =~0X0123456789ABCDEF,@usn6:`2esn` Is Null}][(#usn7 {_usn3:0.e0 Starts With .0 Starts With 123456789,_usn4:'s_str' Ends With `7esn` Ends With 010})<-[`7esn`{`4esn`:$_usn4[$`6esn`..],`4esn`:Count(*) In #usn8 In \"d_str\"}]->(#usn8 :``:usn2)<-[`1esn`:`8esn` *00..0Xa{#usn8:0X7['s_str'..][01..],``:$usn2 =~1.e1 =~usn1}]->(:_usn3{_usn4:.e1[7..][9e0..]})] Where $`5esn` =~usn1"), + octest:ct_string("Unwind @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])] As usn2 Return Distinct *,False Is Null Order By 0X7[..$`8esn`] Desc,[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null Ascending,12.e12 Ends With `` Ends With 0 Desc Skip Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0)[..{`5esn`:0Xa[$`8esn`..][$_usn4..],_usn3:00[$usn1..]}][..Any(@usn6 In 010[`5esn`] Where 1.e1[$usn1])] Union With Distinct [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`) Merge (_usn3 :`7esn`) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] On Create Set #usn7+=Null[.12..12e12],Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]).`1esn`! =[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)],@usn6 =usn2[1.e1]"), + octest:ct_string("Create #usn8=(`5esn` :`7esn`)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1)<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}) Union Create usn2=((_usn3 :_usn4)-[`3esn`:`2esn`|`4esn`]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[:@usn6|:`7esn` *01..123456789]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}))"), + octest:ct_string("Unwind .0 Is Null Is Null As @usn6 Unwind 999[..`1esn`][..07] As `8esn`"), + octest:ct_string("Remove [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`].@usn6?,[usn2 In False[$usn1][0x0] Where 999[@usn5..][Null..]|0.e0['s_str'..][01234567..]].``!,(:`1esn`:_usn4{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]})<-[@usn5:`3esn` *0Xa{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`}]->(:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})._usn4? Unwind [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null] Is Not Null As `3esn` Remove [#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3]|1.e1 Starts With 9e12].#usn8?,usn1:usn2,Single(#usn8 In `7esn` Where 07 Contains `3esn` Contains `7esn`).@usn5! Union Create `3esn`=((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})),((`5esn` :@usn5{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) Create (usn2 :``:usn2) Union All Merge ((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) On Create Set #usn8+=[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null),@usn5+=.e0 =~$`7esn` =~0X0123456789ABCDEF,``+=(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) On Match Set `6esn`(Distinct 0Xa[$`8esn`..][$_usn4..],0xabc In Null).`2esn`! =(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[? *..010{#usn8:False Is Null}]->(#usn7 {#usn7:1.e1 Starts With 9e12})<-[:_usn3|:`7esn` *00..0Xa]-(`1esn` $`4esn`)[..[0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]]][..(:`2esn`{_usn3:@usn5[0.0..0X7]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null).`7esn`? =Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])],Extract(`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]).@usn5 =$@usn6 Ends With 123456789 Ends With 12.0 Return *,Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null As usn1,00 Contains Count ( * ) Contains 0x0 As `5esn` Limit .e0"), + octest:ct_string("Remove Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 1.e1[12..][$`4esn`..]).`7esn`? Detach Delete `2esn`[$@usn6..][Null..],$1000 Starts With $`7esn` Unwind Count ( * ) =~0e0 =~`8esn` As `8esn`"), + octest:ct_string("Unwind 010 Starts With 0 Starts With 0.0 As `5esn` Unwind 07[_usn3..][`6esn`..] As #usn8 Return Distinct Extract(`6esn` In $`6esn`[``..][Count(*)..] Where $@usn5 Starts With `5esn` Starts With 01234567|0.e0[..$7]) Is Null Is Null,`7esn`[1e1] Order By `2esn`[$12..] Desc,usn2 Is Null Is Null Ascending Skip [$@usn6 =~#usn7 =~True,$`1esn` Contains 1e1 Contains @usn6,9e1[..123456789]] Is Null Limit 0Xa =~False =~@usn5"), + octest:ct_string("Unwind 9e1 Contains $999 As `8esn` Union Merge ((#usn7 :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) On Match Set `6esn`+=[@usn5 In 's_str'[0..] Where @usn6 In .12 In `3esn`] Ends With Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $`5esn` Is Not Null) On Match Set {#usn8:$`5esn` =~$`8esn` =~usn2}.`4esn`! =999[@usn5..][Null..],`4esn`:`1esn`:_usn4 Unwind 9e1 =~123456789 =~999 As ``"), + octest:ct_string("With Distinct $usn2,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Order By 's_str' Contains 12.e12 Contains $`4esn` Descending,.e12 Ends With 0Xa Ends With 0xabc Descending Skip #usn7 =~9e12 Union Remove [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 1.e1 Ends With $_usn4 Ends With #usn7|False Starts With 0X7 Starts With 01234567]._usn4! Remove Any(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7])._usn3,`7esn`:@usn5"), + octest:ct_string("Unwind #usn8(1000[12e12][`5esn`],9e1 Contains 12)[Extract(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0)..`1esn`(Distinct `3esn`[7..0.e0][0.0..123456789],`1esn` Starts With 0xabc Starts With $usn2)][Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 9e0[Count(*)..0.12][$`1esn`..12.0])..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12)] As @usn6 Remove None(`5esn` In 0X7 In $#usn7 Where usn1 =~$`7esn`).`3esn`!,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $123456789 In 0.12)._usn3?,(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]}).`6esn`? With *,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null Order By .e0 Starts With $@usn6 Starts With $7 Descending Skip [$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa) Union Remove #usn8(Distinct 0X0123456789ABCDEF Contains 12e12 Contains 12.e12,Count(*) Starts With usn2 Starts With `7esn`).usn1,Single(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..]).#usn7?,Any(_usn4 In 12e12 In 123456789 Where `3esn`[7..0.e0][0.0..123456789]).`8esn`! Return $`4esn`[`4esn`][Count(*)] As `8esn`,$usn1[`2esn`..][$`2esn`..] As _usn3,_usn4[`7esn`] As usn2 Skip 01[..$`8esn`][..9e0] Limit 0X7[.0] Union All Create ((`1esn` :usn2)),`2esn`=(`5esn` :``:usn2)<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)"), + octest:ct_string("Match (((`` :#usn8:`1esn`{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1})<-[_usn3?:_usn3|:`7esn`]->(#usn7 )<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(`5esn` :`3esn`))),((#usn7 :_usn3)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) Union All Unwind _usn3[`5esn`..][usn2..] As #usn7 Unwind $1000 Starts With $`3esn` Starts With 0.e0 As usn1"), + octest:ct_string("With (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By 1000[$`2esn`..] Asc Where .e0 Contains $#usn8"), + octest:ct_string("Unwind $_usn3 Is Not Null As _usn3 Union All Delete Count ( * ) Ends With `6esn` Ends With 's_str',Count(*)[$@usn5] Optional Match @usn6=(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})-[:@usn5|_usn3 *00..0Xa]-(:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(_usn4 :@usn5) Merge (#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[?:`7esn`|:`2esn`]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]}) On Match Set `2esn` =`3esn`[..0X0123456789ABCDEF][..0x0] On Create Set `2esn` =$@usn5[0.0][0X0123456789ABCDEF],@usn6+=[`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})]"), + octest:ct_string("With Distinct 123.654[$0..0X7][Null..#usn8] As `3esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc,Count ( * )[$`5esn`..][$7..] Desc Skip Extract(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999)[..Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1])] Limit None(#usn7 In 9e0[$1000] Where $_usn3 Is Null)[[0 =~1e1,$#usn8[12.e12..`8esn`][12.0..0.0],$1000 Is Not Null]..] Where $123456789 Contains $#usn8 Contains `` Merge _usn3=({`4esn`:.e1[..$`3esn`][..01]})-[`5esn`:#usn7|@usn5]-(`5esn` :`4esn`:`6esn`) On Create Set usn1 =`3esn`[123456789],`3esn` =9e1[.12][`7esn`]"), + octest:ct_string("Optional Match (_usn3 :`5esn`{#usn8:0xabc In 010 In #usn7}),`3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) Where $#usn7[..9e0][..123.654] Merge usn2=(#usn7 {_usn4:1.e1[`8esn`]})<-[usn2{`2esn`:$12 Starts With $usn1}]->(:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]}) With Distinct *,{`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Skip (`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}) =~[12 In $usn1 In 7] =~Filter(@usn5 In 's_str'[0..] Where 0.e0) Limit `2esn` =~.e12 =~0X0123456789ABCDEF Where 0.12[..$_usn3][..0Xa]"), + octest:ct_string("With Distinct 0Xa Ends With $`3esn` Ends With $1000,Extract(@usn5 In 's_str'[0..] Where 12e12 Is Not Null) =~[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]],$#usn8[@usn6..] As `7esn` Order By (`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Desc,$usn1[Null][`8esn`] Desc,$`5esn` In `2esn` In `2esn` Asc Limit [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Ends With `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Ends With [$`1esn`[``][07],`7esn`] Where _usn3[$`1esn`..] Unwind $_usn4[9e0..][$1000..] As `5esn` Merge (:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Union All Detach Delete @usn5 Starts With $`3esn`,12 Is Not Null,07 Contains `3esn` Contains `7esn`"), + octest:ct_string("Return _usn3 Is Not Null Is Not Null As `` Order By Extract(`3esn` In `2esn`[..01][..True] Where 0.0 Is Null Is Null|$usn2[0.e0])[{usn2:@usn5 Is Null,`8esn`:$@usn6 Ends With 123456789 Ends With 12.0}..] Descending,(:_usn4$12)-[`1esn`?:`6esn`|:#usn8 *0Xa]-(usn1 :#usn8:`1esn`)[{`7esn`:$usn2 =~9e1}..] Desc,.12 In `8esn` In $#usn8 Desc Limit 9e1 Contains 12 Detach Delete 0.e0,\"d_str\"[True..],$`3esn` Ends With 01234567 Union All Remove {``:0Xa =~False =~@usn5,`6esn`:$`2esn` Starts With `4esn` Starts With $usn1}.@usn5,All(#usn7 In 9e0[$1000] Where 12e12 Starts With $0 Starts With $`2esn`).#usn7?"), + octest:ct_string("Create _usn4=((_usn3 :`8esn`{#usn8:False Starts With 0X7 Starts With 01234567})),((`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}))"), + octest:ct_string("Delete 0X7[.0] Match @usn6=(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-(:`5esn`{@usn6:1000[0e0][1e1]})<-[:`8esn`]-(:@usn6) Where $7 In $usn1 In 999 Union Merge ((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)) Remove (@usn5 :`6esn`:_usn3{`7esn`:`8esn`[..$#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]})-[`3esn`:`2esn`|`4esn`]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[usn1:_usn4]-(#usn7 :@usn6).#usn8"), + octest:ct_string("Delete 9e0[$`8esn`] Merge (_usn3 :`7esn`) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] On Create Set #usn7+=Null[.12..12e12],Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]).`1esn`! =[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)],@usn6 =usn2[1.e1] Union With Distinct 0.e0['s_str'..][01234567..] As `1esn`,None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,.0[$``..0X7] Skip usn2 =~$`` =~$`8esn` Where `4esn`[.12][$@usn6] Union All Create (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}),`6esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) With Distinct $#usn8 Ends With `` Ends With 999 As `5esn`,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]) Is Not Null Is Not Null As _usn3 Order By _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..] Desc,{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Is Not Null Desc,9e0 Ends With $#usn8 Desc Limit 12.0 Starts With $`2esn` Starts With .e1 Where 9e1 Ends With Count(*) Ends With $7"), + octest:ct_string("With *,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3])[..{`8esn`:usn2 =~7,`5esn`:.e0[01234567..$`8esn`]}][..Any(@usn6 In 010[`5esn`] Where False[$`4esn`..])] As #usn8,$#usn7 Contains $`7esn` Contains .e12 As @usn5 Limit (:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}) Where 's_str' Is Not Null Merge (_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})"), + octest:ct_string("Remove Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`).`8esn` Union Merge (`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]}) On Create Set usn1+={_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]} Contains ({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}) Contains None(#usn8 In `7esn`) Unwind usn2[..$usn1][..$#usn8] As ``"), + octest:ct_string("Optional Match `8esn`=(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}),`8esn`=(:`4esn`:`6esn`{usn2:$`8esn` Is Not Null Is Not Null})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Where `7esn` In 010 In usn1 Merge #usn8=((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})) On Match Set [12e12 =~1e1,0X7[..$`8esn`]].`7esn` =1e1 Ends With $`2esn`,`8esn`+=01[$`7esn`..$@usn6] On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``|.12 In `8esn` In $#usn8]._usn4? =7 =~0.12,`6esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null,Any(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]).`3esn`! =(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null Union Remove All(#usn8 In `7esn`).`1esn` With Distinct *,999 Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains {_usn3:123.654 In $`7esn`} As `6esn`,.e0 Is Not Null Is Not Null As `7esn` Order By _usn3 In $`8esn` In @usn6 Desc Return Distinct [$#usn7 Ends With 's_str' Ends With 0X7] Starts With (usn1 :@usn6)<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}) Starts With [`5esn` In `7esn`[$usn2..][$123456789..] Where $`1esn` Starts With Count(*)] As #usn8,0.12 Is Null Is Null As _usn3,_usn4[0] As `2esn` Skip `1esn`[$@usn6][07] Union All Delete [#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)] Contains (:`2esn`)-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`3esn` {`4esn`:False Is Null}) Contains Filter(`8esn` In 123456789 =~@usn6 Where $`6esn` Starts With .e12 Starts With $`1esn`),(_usn4 :_usn4)<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[ *..07{`6esn`:Count(*)[9e12..12.0]}]->(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12})[[0[$`5esn`],$999 In 1e1,$`6esn` Is Null]] Remove Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 1.e1[12..][$`4esn`..]).`7esn`?"), + octest:ct_string("Match ((:@usn6)) Where 9e1[_usn3] Return Distinct $#usn7[..9e0][..123.654],1e1 Contains 0.e0 Contains 9e1 As `8esn` Order By 01234567[Null..$_usn3] Descending,.e12 Starts With $12 Starts With .e12 Descending,0[01234567..][0X0123456789ABCDEF..] Ascending Remove Any(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0).usn1,All(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])._usn4!,7._usn4 Union All Remove All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]).`2esn`,[1000[..`2esn`][..$@usn6],Count(*) Is Null].`4esn`!,`8esn`:`5esn` Remove Any(`3esn` In `2esn`[..01][..True] Where $0 =~9e1 =~$`2esn`).usn1 Detach Delete (`3esn` :usn2)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null}) Is Null,(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`),Any(#usn7 In 9e0[$1000] Where .e0 Is Null) =~Extract(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0|$`3esn` In $usn2) =~{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Union All Return 0.12 Starts With $`8esn` Starts With @usn5 As @usn5,#usn7 Is Null Is Null As `1esn`,[@usn5[$`6esn`..][$999..],`` Starts With $123456789] Is Null Order By Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) Ascending,'s_str' Starts With 1e1 Starts With $0 Desc"), + octest:ct_string("Remove #usn7:usn2,[07[_usn3..][`6esn`..],$usn1 Ends With _usn4 Ends With `2esn`,False[$`4esn`..]].`3esn`?,[`6esn` Ends With _usn4 Ends With False].`4esn`! Merge ((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) On Create Set #usn8+=[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null),@usn5+=.e0 =~$`7esn` =~0X0123456789ABCDEF,``+=(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) On Match Set `6esn`(Distinct 0Xa[$`8esn`..][$_usn4..],0xabc In Null).`2esn`! =(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[? *..010{#usn8:False Is Null}]->(#usn7 {#usn7:1.e1 Starts With 9e12})<-[:_usn3|:`7esn` *00..0Xa]-(`1esn` $`4esn`)[..[0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]]][..(:`2esn`{_usn3:@usn5[0.0..0X7]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null).`7esn`? =Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])],Extract(`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]).@usn5 =$@usn6 Ends With 123456789 Ends With 12.0 Return Distinct _usn4(Distinct usn2[07..][.0..]) Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]|$`2esn` Starts With `4esn` Starts With $usn1) Ends With Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2),usn1[..$@usn6][..00] As #usn7,(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})[..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})] As `7esn` Order By 0X7[..$`8esn`] Desc,$123456789[12e12..9e0] Descending Union All Match _usn3=(`2esn` $`6esn`)-[`2esn`{``:Null[..010][..1000]}]-(#usn7 :``:usn2),@usn5=((#usn7 :@usn6{`8esn`:0x0[0.0],#usn7:`7esn`[$usn1..]['s_str'..]})) Where usn2[12e12..]['s_str'..] Union All Return #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Order By Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[..[#usn7 In True Contains 's_str' Contains $usn1 Where Count(*) Ends With usn1]][..Filter(usn2 In 7[12] Where #usn7[0.e0..]['s_str'..])] Ascending,{@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Asc,usn2[1.e1] Descending Skip $``[01234567..][.0..] Return Distinct $#usn7 In $@usn5 In $`1esn` As `4esn` Remove Filter(#usn7 In 9e0[$1000] Where 12['s_str'][01])._usn3?,[@usn5 In 's_str'[0..] Where usn1 Starts With 00|True Contains .e12].`6esn`!,None(@usn5 In 's_str'[0..] Where 0.e0).`4esn`"), + octest:ct_string("Unwind $0 Ends With Count ( * ) Ends With @usn5 As `8esn` Create `6esn`=(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[@usn6:`1esn`|`3esn` *0X7..]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}),(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(`3esn` :_usn4{`3esn`:12[..0e0][...e1],`4esn`:.0 Is Null Is Null}) Union Optional Match `4esn`=({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}),@usn5=(({@usn5:$`5esn` Is Not Null Is Not Null})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})) Where `8esn` Is Null Match (`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}),`7esn`=(((`` :`5esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`8esn`{`8esn`:usn1 Contains 010,_usn4:`5esn` Contains $`5esn` Contains 0X7}]-({#usn8:0xabc In 010 In #usn7}))) Optional Match `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((`6esn` :`5esn`)<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`5esn` :`4esn`:`6esn`)) Where 07 Is Not Null Is Not Null"), + octest:ct_string("With Distinct $`4esn`[0..][999..],Filter(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12])[..Extract(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])][..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]],(`3esn` {usn2:00[False..0e0]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null})<-[@usn6?:`8esn` *0..01]->(`5esn` :`4esn`:`6esn`)[[12.0 Starts With $`2esn` Starts With .e1]..] As `5esn` Order By .e12[`2esn`..010] Desc,0xabc In 010 In #usn7 Ascending Skip 1e1 Ends With $`7esn` Ends With .0 Where 9e1[$#usn8][$1000] Return Distinct `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By $1000[$@usn6][$_usn4] Desc Union All Detach Delete [`4esn`[.12][$@usn6],.0[..'s_str'][..01234567],1.e1 =~.12][Any(usn2 In False[$usn1][0x0] Where False Is Null)..],{#usn7:$usn2[0.e0],`6esn`:.e1[..\"d_str\"][..$123456789]}[..Extract(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999|Count ( * ) In 0.12)][..[@usn6 In 010[`5esn`] Where 's_str' Starts With 9e0 Starts With usn2|$`5esn` =~$0 =~``]],Count(*) In #usn8 In \"d_str\" Create (((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}))),`7esn`=(({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(usn1 :_usn3{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})) Unwind Single(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1)[Filter(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])..][Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.0 In 123.654 In _usn4)..] As _usn4 Union Optional Match `5esn`=((({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:#usn7|@usn5*..]-(`3esn` :usn2{`6esn`:#usn8 Is Null})<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Optional Match `2esn`=((`6esn` :#usn7:`5esn`)<-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]->(:#usn8:`1esn`$`7esn`)),((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(:`8esn`{``:$`1esn` =~999}))"), + octest:ct_string("Detach Delete 9e0[$`8esn`],`5esn` Contains #usn7 Contains 9e12,12 Is Null Match @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Where 7[0e0..] Detach Delete (`4esn` :#usn7:`5esn`{_usn4:0Xa Ends With $`3esn` Ends With $1000})-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})[[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]|`1esn`[0.12..][@usn6..]]..][{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}..],07 Contains `3esn` Contains `7esn`,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1) Union All Return *,`2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Order By $`2esn` Starts With 0.12 Starts With $12 Ascending,07 In `6esn` Desc,12[..0e0][...e1] Desc Skip #usn8[`6esn`..][$``..] Limit `3esn`[..0X0123456789ABCDEF][..0x0] Merge (((:`7esn`{_usn3:@usn5[0.0..0X7]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]}))) On Match Set @usn5+=$0[123.654..0.e0],Any(`8esn` In 123456789 =~@usn6 Where .e1 =~_usn4 =~_usn4)._usn3? =01[..$`8esn`][..9e0],usn1 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) On Create Set [#usn7 In 9e1[$`1esn`..] Where 00 Ends With $`1esn` Ends With `7esn`].`2esn` =All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null),``:@usn5,@usn5+=12.e12[_usn4..$1000][$7..$999] Remove `3esn`(Distinct 123.654 Starts With 0X7 Starts With $`4esn`).``!,Any(_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1).`2esn`,Filter(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]).@usn5? Union Detach Delete 1e1 Contains 's_str' Contains `3esn`,12[``...e12]"), + octest:ct_string("Merge _usn3=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']}) On Match Set Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]|$``[..\"d_str\"][..$#usn8]).@usn6 =[$usn1[`2esn`..][$`2esn`..]][(`3esn` :usn2)-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})..`2esn`(Distinct $@usn6 Is Not Null Is Not Null,Count ( * ) Ends With $123456789)],None(#usn8 In `7esn` Where ``[7.._usn3]).@usn6? =`6esn`,Any(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])._usn4! =`` Is Null Union Unwind False[$usn1][0x0] As usn2 Delete $_usn4 Starts With $1000 Starts With 12,@usn5[$`7esn`..`5esn`],usn1 Unwind 12['s_str'][01] As `6esn`"), + octest:ct_string("Return Distinct Filter(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3]) In ({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) In Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0),.e0 Is Not Null Is Not Null As `7esn`,$`2esn` Ends With `6esn` As usn1 Merge ((:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})<-[*..{`7esn`:$``[..\"d_str\"][..$#usn8],`7esn`:$`` Contains $`2esn` Contains $usn2}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Merge @usn5=({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`}) Union With Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By [Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] Ascending,None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) Descending Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]) Where @usn6 Is Not Null Is Not Null Create (`3esn` )-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]}) Remove Any(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0).usn1,All(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])._usn4!,7._usn4"), + octest:ct_string("Detach Delete 9e1[_usn3] Delete [usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null,$`2esn` Starts With .0 Starts With `1esn`,0x0[0.0] Optional Match _usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Where 0.e0 Starts With .0 Starts With 123456789"), + octest:ct_string("Delete (@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`})<-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(#usn7 :`2esn`)-[`4esn`?{`1esn`:0xabc =~$@usn5}]->(usn2 {`5esn`:$@usn5 In 12e12 In 01}) Ends With `4esn`,[$usn1[`2esn`..][$`2esn`..]] Contains Extract(usn2 In 7[12] Where $_usn3 Is Null|.e12 Is Null Is Null),`1esn`[`3esn`..]"), + octest:ct_string("Delete Filter(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3]) In ({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) In Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0),{`1esn`:1e1 Contains 's_str' Contains `3esn`} =~None(#usn7 In 9e0[$1000] Where `6esn`[$1000][`3esn`]) Union All Return $@usn5,0.12[0Xa][$`7esn`] As `4esn`,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As _usn3 Create `2esn`=((`6esn` :#usn7:`5esn`)<-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]->(:#usn8:`1esn`$`7esn`)),((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(:`8esn`{``:$`1esn` =~999})) Remove [`8esn` Contains Count(*) Contains $#usn7,$12[$usn1..][Count(*)..],_usn4 Is Not Null].@usn6 Union With $usn2 Is Not Null Is Not Null Skip 999[@usn5..][Null..] Limit $@usn6 Ends With `1esn` Where 9e12[$`5esn`..$123456789] Match ((({`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[`3esn` *..07{usn2:True Contains 0x0 Contains $_usn3}]-({``:``[$`3esn`],#usn8:$@usn6[00]}))) Where #usn7 =~9e12 Detach Delete 0Xa In #usn7 In 's_str',0.e0[1000.._usn4][.e1..usn1]"), + octest:ct_string("Match ((:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})),usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})) Where 0x0 Contains $`6esn` Contains `4esn` Merge @usn6=(({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) On Create Set usn2 =(`1esn` $`4esn`)-[@usn6?:`7esn`|:`2esn`]-({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]}) =~Filter(`3esn` In 9e1 Contains $999 Where 12.0 Is Null Is Null) =~[0xabc In Null],Single(#usn7 In True Contains 's_str' Contains $usn1 Where .e12[$@usn6..00][01234567.._usn3]).@usn5? =(`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}) =~[12 In $usn1 In 7] =~Filter(@usn5 In 's_str'[0..] Where 0.e0),`1esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[Extract(#usn7 In 9e0[$1000] Where .e1 In 123456789)][{_usn3:01[`8esn`..9e12][.12..0]}] On Create Set Extract(`3esn` In `2esn`[..01][..True] Where 00[01234567][False]|12[$`5esn`..][False..]).`2esn`! =12.e12 Ends With $``"), + octest:ct_string("Remove None(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]).`1esn`! Remove [0.e0[1000.._usn4][.e1..usn1],$`1esn` =~999,07[_usn3..][`6esn`..]].usn1!,usn2:`4esn`:`6esn`,Extract(usn2 In False[$usn1][0x0] Where $`7esn`|07 Is Null).#usn7! Union Delete Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..],None(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1)[..{@usn5:$@usn6 Is Not Null Is Not Null}][..{`3esn`:1e1 In 0.0 In 0X0123456789ABCDEF}] Unwind $_usn3 Is Not Null Is Not Null As `3esn` Create (((:`1esn`:_usn4{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]})<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}))),_usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Union Match ((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4))"), + octest:ct_string("Create @usn5=()-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]-(:`4esn`:`6esn`{usn1:0 =~1e1,`7esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})-[_usn3:`5esn`|:usn2 *999..{`3esn`:`5esn` Contains $`5esn` Contains 0X7}]-(`8esn` {`1esn`:$`4esn` Is Null Is Null}) Detach Delete (`5esn` :`6esn`:_usn3)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({#usn8:False Starts With 0X7 Starts With 01234567})<-[usn2?{``:$`1esn`[``][07]}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7}) Is Null Is Null,[`5esn` Contains `1esn` Contains usn1,$@usn5 Ends With @usn5 Ends With 0xabc] Is Null Is Null"), + octest:ct_string("Unwind usn1[$@usn5] As _usn4 Return {`1esn`:1e1 Contains 's_str' Contains `3esn`} =~None(#usn7 In 9e0[$1000] Where `6esn`[$1000][`3esn`]) As `7esn`,(`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Order By {`4esn`:999 In 0e0,`6esn`:0.e0['s_str'..][01234567..]} Contains Single(`8esn` In 123456789 =~@usn6 Where 12.e12 Ends With `` Ends With 0) Ascending,`1esn` Starts With 0xabc Starts With $usn2 Desc Skip Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Limit $usn1[Null][`8esn`] With *,.e12[.12..],_usn4 Ends With _usn4 Ends With 9e0 As `` Skip None(`3esn` In `2esn`[..01][..True] Where usn1 In ``)[None(usn2 In 7[12] Where 12e12 =~$`7esn`)..] Limit Null[..0] Union All Merge #usn8=((`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})) On Create Set `4esn`+=$`4esn`[07..],`1esn` =123.654[`4esn`..12] On Match Set `6esn`(Distinct 0Xa[$`8esn`..][$_usn4..],0xabc In Null).`2esn`! =(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[? *..010{#usn8:False Is Null}]->(#usn7 {#usn7:1.e1 Starts With 9e12})<-[:_usn3|:`7esn` *00..0Xa]-(`1esn` $`4esn`)[..[0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]]][..(:`2esn`{_usn3:@usn5[0.0..0X7]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null).`7esn`? =Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])],Extract(`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]).@usn5 =$@usn6 Ends With 123456789 Ends With 12.0 Remove [0[$`5esn`],$999 In 1e1,$`6esn` Is Null].`5esn`,(:usn1:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]})<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1}).`3esn`,{`6esn`:$`7esn`[0.12]}._usn3! Union Return Distinct *,$`6esn`[0e0..][010..],.e12 Is Null Is Null Skip 's_str' Ends With _usn4 Ends With 0e0 Return Distinct @usn6[9e12],usn2 =~$`` =~$`8esn` Order By All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) Is Not Null Is Not Null Descending Limit `5esn` Contains `7esn` Remove Extract(`3esn` In 9e1 Contains $999 Where usn1[False..`5esn`][$1000..$12]|True Starts With Null).`4esn`!"), + octest:ct_string("Detach Delete `1esn` Starts With 0X7 Starts With \"d_str\",\"d_str\" Is Not Null Is Not Null,_usn4 Starts With `` Starts With 1000 Union All Remove Single(`5esn` In 0X7 In $#usn7 Where 123456789 =~$999).`5esn`,[`6esn` In $`6esn`[``..][Count(*)..]|.e1[12.0..]]._usn4? Union Detach Delete `4esn`[..$@usn6][..@usn6],$_usn4 Is Null Is Null"), + octest:ct_string("Create usn1=(({#usn7:12e12 In $`5esn`})<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})) Union Optional Match usn1=(({#usn7:12e12 In $`5esn`})<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})),``=({`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[? *..010{usn1:9e1[_usn3]}]->(`5esn` {`4esn`:0x0[usn1..usn1],usn1:$`5esn`[0X7..010][`7esn`..'s_str']}) Where $usn2 Is Not Null Is Not Null Union All With 's_str' Where 's_str'[0..] Unwind 12e12 In 123456789 As `7esn` Detach Delete $12 Starts With $0 Starts With $`8esn`"), + octest:ct_string("Unwind {usn2:`7esn`[$usn1..]['s_str'..],usn2:_usn4 Contains `` Contains 1.e1} Is Not Null Is Not Null As _usn3 Union Match ((:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]})<-[@usn5?{`7esn`:0.0 Contains #usn7,`6esn`:@usn5[0.0..0X7]}]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`8esn`:usn2[`8esn`..][0X0123456789ABCDEF..]})),usn2=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) Where 0.12 Starts With $`8esn` Starts With @usn5 Merge (`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-({`1esn`:#usn7[0]}) On Match Set `1esn` =0x0[@usn6..][01..],`5esn`(Distinct $#usn7 Contains $`7esn` Contains .e12).@usn6! =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`) Is Null Create ((#usn7 {`1esn`:$`4esn` Is Null Is Null})<-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(`6esn` :`8esn`))"), + octest:ct_string("Merge ((:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) On Create Set [12 =~usn1,7 =~`4esn`,``[9e12][$999]].`1esn` =Extract(#usn7 In $999 In 1e1 Where `5esn`[..True][..0.e0]|$`5esn` =~$0 =~``) In (:`7esn`{#usn8:0Xa Ends With $`3esn` Ends With $1000})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]}) In Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|999 Contains 0 Contains $`5esn`) On Create Set {usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}.#usn8 =[@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1] Is Null,`4esn`:#usn7:`5esn`,({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})<-[`8esn` *0xabc]-(:_usn3{_usn4:.e1[7..][9e0..]})-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}).usn2 =123.654[..0.e0][..'s_str'] Create (:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Union All Unwind `` =~.12 As _usn3 Unwind 0x0[12e12..$`7esn`] As `7esn`"), + octest:ct_string("Unwind 9e1 =~123456789 =~999 As `` Union All Delete 7 =~0.12 Match #usn7=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2),`2esn`=({@usn5:$`5esn` Is Not Null Is Not Null})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Where $_usn4[$`5esn`][`7esn`]"), + octest:ct_string("Merge ((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})<-[usn1? *01234567..{@usn5:01[`3esn`..][Count(*)..]}]->(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})-[`4esn`?*..{``:`` =~.12,usn1:123.654 Is Not Null}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]})) On Create Set [`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc].@usn6? =[`4esn`[.12][$@usn6],.0[..'s_str'][..01234567],1.e1 =~.12][Any(usn2 In False[$usn1][0x0] Where False Is Null)..],{#usn8:Count(*) Starts With usn2 Starts With `7esn`}.`1esn`! =`4esn`($_usn4 Starts With $1000 Starts With 12) =~Any(@usn5 In 's_str'[0..] Where 1000[..`2esn`][..$@usn6]) =~[`3esn` In `2esn`[..01][..True] Where usn1 In ``|01[`8esn`..9e12][.12..0]] On Create Set `1esn` =(`4esn` :#usn7:`5esn`{_usn4:0Xa Ends With $`3esn` Ends With $1000})-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})[[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]|`1esn`[0.12..][@usn6..]]..][{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}..] Detach Delete [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null,00[False..0e0],0.e0[1000.._usn4][.e1..usn1]"), + octest:ct_string("With Distinct $@usn6 Ends With 12.e12 Ends With @usn5 As usn2,``[usn1][`5esn`],`7esn`[..$`6esn`] Skip `3esn`[7..0.e0][0.0..123456789] With Distinct [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`) Union All Create (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}),`6esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) With Distinct $#usn8 Ends With `` Ends With 999 As `5esn`,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]) Is Not Null Is Not Null As _usn3 Order By _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..] Desc,{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Is Not Null Desc,9e0 Ends With $#usn8 Desc Limit 12.0 Starts With $`2esn` Starts With .e1 Where 9e1 Ends With Count(*) Ends With $7"), + octest:ct_string("Create (((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})))"), + octest:ct_string("Merge usn2=(({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`)) Unwind Filter(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1) Contains {@usn5:07 Is Not Null Is Not Null} Contains None(@usn5 In 's_str'[0..] Where usn1 Starts With 00) As @usn6"), + octest:ct_string("Remove Any(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[0.e0])._usn3!,[usn2 Contains $0 Contains .0,$`5esn`[0X7..010][`7esn`..'s_str'],123.654[$0..0X7][Null..#usn8]]._usn4?,(`` {`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']})<-[`1esn`?:`8esn` *7..]-(:``:usn2{``:True[$_usn3..]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3).usn2 Detach Delete usn1[False..`5esn`][$1000..$12] Return $7[999][usn1] As `6esn`,0 Ends With Count(*) Ends With False As `7esn` Order By Any(#usn7 In 9e0[$1000] Where .e0 Is Null) =~Extract(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0|$`3esn` In $usn2) =~{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Descending Skip 010[...12] Limit $`1esn` In .e0"), + octest:ct_string("Optional Match (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3),(@usn6 :`4esn`:`6esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`2esn`?:`6esn`|:#usn8{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`}]-(_usn3 {_usn3:0.12 Starts With $`8esn` Starts With @usn5}) Unwind [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e1[usn1..0x0][12.e12..12.0]][..{usn2:0x0[0X7]}][..[12.e12 Is Not Null Is Not Null,$@usn6[.0..][0e0..]]] As _usn4"), + octest:ct_string("Match (((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}))) Union Detach Delete 999 Is Not Null Is Not Null Union Remove Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $123456789 In 0.12).#usn8?,[`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null|$#usn7 Starts With 01234567 Starts With $0].`7esn`,(`4esn` :@usn6)-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4).`4esn`"), + octest:ct_string("Merge (:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Union With Distinct 0X7[`2esn`..] As `6esn`,Single(usn2 In False[$usn1][0x0])[All(@usn6 In 010[`5esn`] Where 00[1.e1..])][(:`2esn`{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`})-[?{`5esn`:$`2esn`[.0..][0.0..]}]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})-[`` *1000..0X0123456789ABCDEF]->(:_usn4{`8esn`:01234567[Null..$_usn3]})] Order By $0 Starts With @usn5 Desc,Filter(@usn5 In 9e0 Ends With $#usn8) Contains {@usn6:#usn7[`8esn`..usn1][$999..`7esn`]} Contains (:#usn7:`5esn`)-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}) Asc Limit [@usn5 In 's_str'[0..] Where 01234567[\"d_str\"..`4esn`]|usn1 In ``] Is Null Is Null"), + octest:ct_string("Optional Match #usn7=((`7esn` :`1esn`:_usn4{@usn5:0x0[usn1..usn1],`6esn`:`4esn`[$_usn3..$`7esn`]})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->({`3esn`:`5esn` Contains $`5esn` Contains 0X7})-[`6esn` *00..0Xa{usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}]->(:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})) Where 999 Is Null Is Null Remove (:`5esn`{@usn6:1000[0e0][1e1]})-[:`` *0..01]-(:`8esn`{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]-(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}).@usn6!,[123456789 Contains 0.0 Contains $@usn6,usn1 =~$`7esn`,9e12[9e1]].`8esn`,Filter(@usn6 In 010[`5esn`] Where @usn6[9e12]).usn2 Union All Detach Delete $@usn5 Contains 's_str' Contains \"d_str\",010 Is Null,Count(*)[..@usn6][..`7esn`]"), + octest:ct_string("Detach Delete `2esn`[$@usn6..][Null..],$1000 Starts With $`7esn`"), + octest:ct_string("Match #usn7=((`7esn` :`1esn`:_usn4{@usn5:0x0[usn1..usn1],`6esn`:`4esn`[$_usn3..$`7esn`]})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->({`3esn`:`5esn` Contains $`5esn` Contains 0X7})-[`6esn` *00..0Xa{usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}]->(:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})) Where 0.0 Contains #usn7 With $@usn6 Ends With 12.e12 Ends With @usn5 As usn2 Where 12.0 Is Null Delete 12.e12 Contains `6esn`,$1000 Is Not Null,`1esn`[$@usn6][07] Union All With *,`` =~.12 As #usn7 Skip usn2 =~7 Limit 0x0 In 0.e0 In #usn8 Where $999[0Xa..][9e1..] Create (:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}),`7esn`=((_usn3 :`7esn`)) Return Distinct 12 Starts With True Starts With 12e12 As _usn4 Skip .e1 In 123456789 Limit $7 Starts With $`4esn`"), + octest:ct_string("Match _usn3=(`1esn` )<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7}) Where @usn5 Starts With 9e0 Starts With 010 Return `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Skip 0e0[``] Limit .e0 =~Null Return *,#usn7[0.12..],$`3esn`[.e1][_usn4] As _usn4 Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Limit \"d_str\" Is Not Null Is Not Null Union Detach Delete `7esn`[0x0][$`4esn`],0.0[$usn2..] Return (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3) Skip Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null) Is Not Null Is Not Null Limit $`1esn` Starts With Count(*)"), + octest:ct_string("With Distinct `2esn`[$usn2][12.0],Single(#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6])[Filter(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])..] As _usn4 Limit `4esn` In 010 Union All Delete $0[12.0...e1],_usn4[.12..$usn2][$_usn3..123.654],07[..07][..0X7] Remove [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where _usn4[`7esn`]|$#usn7 In $@usn5 In $`1esn`].@usn6 Return Distinct .0 Starts With `1esn` As #usn7,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} As usn2,$@usn5[..$#usn7] Limit None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[Extract(#usn7 In 9e0[$1000] Where .e1 In 123456789)][{_usn3:01[`8esn`..9e12][.12..0]}]"), + octest:ct_string("Merge (`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}) On Create Set _usn3+=`5esn`(Distinct .12[123.654..]) On Match Set `2esn` =`3esn`[..0X0123456789ABCDEF][..0x0] With Distinct .e1 In 0,Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])[[00[12..$`6esn`],$`4esn`['s_str'..]]..] Order By .12 In `8esn` In $#usn8 Asc,12.e12[..9e1][..$_usn3] Descending Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Where $`1esn`[``][07] Union Detach Delete All(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]) Is Not Null Is Not Null,@usn6[`1esn`..],$#usn7 Ends With 's_str' Ends With 0X7 Match (((`` :#usn8:`1esn`{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1})<-[_usn3?:_usn3|:`7esn`]->(#usn7 )<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(`5esn` :`3esn`))),((#usn7 :_usn3)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) Union All Remove [`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5|`5esn`[..True][..0.e0]].`2esn`!,None(`8esn` In 123456789 =~@usn6 Where $`5esn` =~$`8esn` =~usn2)._usn3?"), + octest:ct_string("Merge usn2=(`3esn` {``:9e1 Is Null,usn1:9e0[Count(*)..0.12][$`1esn`..12.0]})-[?:`7esn`|:`2esn`{@usn5:usn2[1.e1],@usn6:$#usn8 Starts With .e12 Starts With 1.e1}]->({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]}) On Create Set {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}.usn1 =[`4esn`[.12][$@usn6],.0[..'s_str'][..01234567],1.e1 =~.12][Any(usn2 In False[$usn1][0x0] Where False Is Null)..],`5esn`+={`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}[Extract(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]|.e1[..$`3esn`][..01])..],`2esn` =0e0[.12..7][12...e12] Match @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Where 7[0e0..] Union Merge `2esn`=(((:`6esn`:_usn3)<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})-[#usn7?:`7esn`|:`2esn` *..07]-(#usn7 {#usn7:1.e1 Starts With 9e12}))) On Create Set usn2+=$12 Starts With $0 Starts With $`8esn`,`1esn`+=12.0 Starts With .12 Starts With `6esn`"), + octest:ct_string("With Distinct $7[999][usn1] As `6esn`,[Null[..0]][[#usn7 In 9e1[$`1esn`..] Where Count ( * ) In 0.12|$`6esn`[1.e1][$_usn3]]..] As @usn5 Skip None(#usn8 In `7esn` Where $`3esn` Contains $`1esn`) Starts With #usn8(0x0[Count(*)..@usn6][Count(*)..0Xa]) Create ((:#usn8:`1esn`)-[ *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})),`8esn`=(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) Merge (({@usn6:010 Starts With 0 Starts With 0.0,_usn4:07[$`2esn`..9e12][$`4esn`..9e12]})<-[:@usn6|:`7esn` *0..01{``:`1esn`[0.0..1e1][0x0..7],usn2:01[`3esn`..][Count(*)..]}]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})) On Create Set [12 =~usn1,7 =~`4esn`,``[9e12][$999]].`1esn` =Extract(#usn7 In $999 In 1e1 Where `5esn`[..True][..0.e0]|$`5esn` =~$0 =~``) In (:`7esn`{#usn8:0Xa Ends With $`3esn` Ends With $1000})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]}) In Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|999 Contains 0 Contains $`5esn`) Union All Create _usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))),usn1=(_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]}) With Distinct [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Any(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`),usn2[usn2..0X7] As `1esn` Order By 's_str'[0x0..1.e1] Asc Limit 0xabc[..$1000][..`5esn`] Where `2esn` Starts With 12.e12 Starts With 12.0 Merge #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Union All Remove Any(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1).`2esn`!,None(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2).``"), + octest:ct_string("Detach Delete `6esn` =~`3esn` =~@usn6,(:_usn4$12)-[`1esn`?:`6esn`|:#usn8 *0Xa]-(usn1 :#usn8:`1esn`)[{`7esn`:$usn2 =~9e1}..] Create `2esn`=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) Remove (`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[usn1? *01234567..{@usn5:01[`3esn`..][Count(*)..]}]->(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null}).#usn7,[`8esn` In 123456789 =~@usn6 Where 0x0[@usn6..][01..]|#usn7[.e0]].usn2?,Extract(#usn7 In True Contains 's_str' Contains $usn1 Where `8esn`[..$#usn8]).`2esn`! Union All Unwind 0.e0[$`4esn`..`2esn`] As @usn5 Optional Match (_usn4 :#usn7:`5esn`)-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-(`5esn` :#usn8:`1esn`) Where 9e1[`1esn`..0][999..1e1]"), + octest:ct_string("With *,`2esn` In 9e0 In 7,$7 Starts With $`4esn` As _usn4 Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Limit None(#usn7 In 9e0[$1000] Where $_usn3 Is Null) In (:`3esn`)<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})<-[`4esn`:`1esn`|`3esn` *12..]-(#usn8 :`8esn`) In {`7esn`:$``[..\"d_str\"][..$#usn8],`7esn`:$`` Contains $`2esn` Contains $usn2} Where 12e12 Is Not Null Unwind 07 In 0Xa In usn1 As #usn8 Union Unwind 9e1 =~$_usn4 =~1.e1 As `7esn`"), + octest:ct_string("Unwind Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)[(`` :`5esn`{@usn5:123456789 =~@usn6})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`7esn` {``:9e1 Contains $999,``:$usn2[True..0X0123456789ABCDEF]}).._usn3(Distinct 0x0 Contains $`6esn` Contains `4esn`,usn2[1.e1])][(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})..[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|9e1 Is Null]] As usn1 Union All Create _usn3=(`1esn` )<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7}) With *,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) As `7esn` Order By (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc Where 1.e1 In 1000 In _usn3 Delete 0x0[``..],Any(usn2 In 7[12] Where $_usn3 Is Null) Is Not Null Is Not Null,[`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Union Unwind 01[07..][1.e1..] As _usn3 Match `4esn`=((`3esn` {usn2:$usn2[`4esn`..9e12]})<-[?{@usn5:_usn3 Ends With 7 Ends With $`1esn`}]->(_usn3 :_usn4)<-[_usn4?:`3esn`]-(:_usn3{_usn4:.e1[7..][9e0..]})) Merge `2esn`=(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[`4esn`:usn2]->(`3esn` :_usn4) On Create Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null On Create Set #usn7+=`6esn`[$`8esn`][9e1]"), + octest:ct_string("Unwind True Ends With $_usn3 Ends With 12 As #usn7 Return Distinct 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] As #usn8,(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null},$#usn7 =~`2esn` As `4esn` Limit Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Union All Merge ``=(@usn5 :`6esn`:_usn3{`7esn`:`8esn`[..$#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Union Return _usn4 Contains $_usn3 Contains .e1,$`4esn`['s_str'..] As `` Limit None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`])[Single(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Is Not Null Is Not Null)] Delete (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Remove Filter(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $#usn7 Starts With 01234567 Starts With $0).usn2!"), + octest:ct_string("Unwind Count ( * ) In 123456789 In $@usn5 As usn1 Unwind $1000[$@usn6][$_usn4] As `6esn` With 9e12[..`3esn`][..0X0123456789ABCDEF] As `5esn`,`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] As usn1 Order By .e1[..$`3esn`][..01] Ascending,'s_str' Is Not Null Descending Where $#usn7[..$`4esn`][..01]"), + octest:ct_string("Remove Extract(@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1|True Contains 's_str' Contains $usn1)._usn4?,All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]).`4esn` Union All Optional Match (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Where $`7esn`[.e1][12.0]"), + octest:ct_string("Optional Match ``=(((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),_usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))) Create @usn6=((({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}))),@usn5=()-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]-(:`4esn`:`6esn`{usn1:0 =~1e1,`7esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})-[_usn3:`5esn`|:usn2 *999..{`3esn`:`5esn` Contains $`5esn` Contains 0X7}]-(`8esn` {`1esn`:$`4esn` Is Null Is Null}) Return *,'s_str' Ends With `7esn` Ends With 010 Order By #usn7[``] Desc,`7esn` Starts With @usn5 Ascending Skip @usn6 =~999 =~@usn5"), + octest:ct_string("Optional Match ((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})) Unwind 's_str' Is Not Null As `4esn` Return 01[$`7esn`..$@usn6] As `2esn`,(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]} Order By `4esn` Contains 9e0 Desc,$12 =~0X7 =~0x0 Ascending,Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 1.e1 Ends With $_usn4 Ends With #usn7|$7 Starts With 12.e12 Starts With $@usn6) Starts With (:``:usn2)<-[`2esn`:`8esn`{`7esn`:$`4esn` Is Null Is Null}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]}) Starts With [01234567[Null..$_usn3],0[1e1][$usn1],False[..$`5esn`][..1e1]] Descending Limit None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]) Is Null Union Unwind $`4esn`[..$`8esn`][..Null] As #usn8 Union All Optional Match ((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})),#usn8=({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Delete `2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] With Distinct *,$@usn6 Ends With 12.e12 Ends With @usn5 As `3esn` Order By .e0 Starts With $@usn6 Starts With $7 Descending Limit All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where False[$usn1][0x0]) In [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null|9e12[9e1]] In [12.0 Is Null,$_usn4[..$_usn4][..`7esn`]]"), + octest:ct_string("Optional Match (`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}),`7esn`=(((`` :`5esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`8esn`{`8esn`:usn1 Contains 010,_usn4:`5esn` Contains $`5esn` Contains 0X7}]-({#usn8:0xabc In 010 In #usn7}))) With Distinct Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1|$@usn5 In $`6esn` In 12e12) Ends With (:`7esn`{#usn7:0 =~1.e1 =~$#usn7})<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) As @usn5,.e0 Is Not Null Is Not Null As `7esn`,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] As `3esn` Limit _usn4 In #usn7 Union All Detach Delete usn1 Ends With 9e0 Ends With 9e0,999 Is Null Is Null,[_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1|999 Contains $1000] Starts With Single(`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``) Merge ``=(((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[`2esn`? *01234567..]->(:`2esn`)-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->({`7esn`:999 In 0e0}))) Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) On Create Set #usn7+=.e0[..9e12][..07],`4esn`(True[$_usn3..],$999[``]).usn2 =123456789 Is Null Is Null,@usn5 =01[07..][1.e1..] On Create Set `5esn`+={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},usn2 =True Contains 0x0 Contains $_usn3 Union Merge `2esn`=(((`7esn` )<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2))) On Match Set #usn8 =[`5esn` Contains `1esn` Contains usn1,$@usn5 Ends With @usn5 Ends With 0xabc] Is Null Is Null,`8esn` =[$@usn6 =~#usn7 =~True,$`1esn` Contains 1e1 Contains @usn6,9e1[..123456789]] Is Null On Create Set @usn6+=$#usn7 Ends With 's_str' Ends With 0X7,`6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn2 =$@usn5 Ends With @usn5 Ends With 0xabc"), + octest:ct_string("With Distinct `6esn`[..$`4esn`],0xabc Is Not Null Is Not Null,[`2esn` Is Null] Is Null Is Null As `4esn` Union Return *,`8esn` =~@usn6 =~$`2esn` As _usn3 Optional Match @usn5=(`7esn` :`3esn`{`2esn`:999[123.654..$usn2][Count ( * )..0x0]})-[`2esn`?:usn1|`4esn` *00..0Xa]-(`4esn` :`4esn`:`6esn`),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Where 12 Starts With #usn7 Starts With 0Xa Return $7 Ends With Count ( * ),`6esn` =~Null As `4esn` Skip 1e1[_usn3] Limit [`2esn` Is Null] Is Null Is Null Union All Return Distinct $#usn7 In $@usn5 In $`1esn` As `4esn` Merge ((:`6esn`:_usn3)) On Match Set `` =Extract(@usn5 In 's_str'[0..] Where 12e12 Is Not Null) =~[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]]"), + octest:ct_string("Unwind {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01}[#usn8(False Contains 0 Contains $`6esn`,'s_str' Starts With 1e1 Starts With $0)..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})][(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(`4esn` :`6esn`:_usn3)..[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]]] As `4esn` Create (((`7esn` )<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2))),`5esn`=(({@usn5:``[9e12][$999]})-[usn2{``:$`1esn` =~999}]-(:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0})) Create _usn3=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']}) Union All Merge (`2esn` :`1esn`:_usn4)-[?*..]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) On Create Set @usn6+=$#usn7 Ends With 's_str' Ends With 0X7,`6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn2 =$@usn5 Ends With @usn5 Ends With 0xabc Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] On Create Set `6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn1+=`4esn`[$_usn3..$`7esn`] Unwind $`5esn`[`7esn`] As @usn5"), + octest:ct_string("Optional Match usn1=((:@usn5{@usn5:$12[9e0..$999]})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})) Return @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1|$@usn5 In $`6esn` In 12e12) Ends With (:`7esn`{#usn7:0 =~1.e1 =~$#usn7})<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}),`1esn`($`4esn`[`4esn`][Count(*)],`2esn` Starts With $`7esn`) =~Extract(@usn5 In 9e0 Ends With $#usn8 Where .e0 Starts With $@usn6 Starts With $7) =~{`3esn`:_usn3[`2esn`..0X7][0.e0..$`3esn`]} Union With Distinct Count(*)[$@usn5] As `6esn`,[#usn8 In `7esn` Where usn2[07..][.0..]|$usn1 Ends With _usn4 Ends With `2esn`] Contains (_usn3 {#usn7:1000[12e12][`5esn`]})-[`3esn`?:`3esn`]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0}) Contains Extract(`3esn` In `2esn`[..01][..True] Where usn1 In ``) As `2esn`,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..] Order By ``[$`1esn`] Desc,123456789 Contains 0Xa Asc,[$`8esn` Is Not Null Is Not Null,0xabc In Null] =~Single(#usn7 In 9e0[$1000] Where .e0 Is Null) Descending Where 9e1[_usn3] Unwind Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null As #usn7"), + octest:ct_string("Create ((`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Delete 0e0 Is Null Is Null,@usn6(0X7 In $#usn7,_usn4 Contains `` Contains 1.e1)[Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)..Any(#usn7 In 9e1[$`1esn`..] Where $`2esn` Ends With `6esn`)],`1esn`[0.12..][@usn6..] Union All Detach Delete $12[9e0..$999] With $#usn7 =~`2esn` As `4esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc Skip usn2 Is Null Is Null Limit @usn6 Is Not Null Is Not Null Where 's_str' Ends With `7esn` Ends With 010 Merge `8esn`=((_usn3 :_usn4))"), + octest:ct_string("Return $7[999][usn1] As `6esn`,0 Ends With Count(*) Ends With False As `7esn` Order By Any(#usn7 In 9e0[$1000] Where .e0 Is Null) =~Extract(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0|$`3esn` In $usn2) =~{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Descending Skip 010[...12] Limit $`1esn` In .e0 Remove {`4esn`:`7esn` Is Null}.`4esn`! Union Remove [12e12 =~1e1].`2esn`!"), + octest:ct_string("Remove [$12[$usn1..][Count(*)..]].`8esn`?,{`2esn`:.e12 Starts With $12 Starts With .e12,usn2:0e0 =~7 =~12.0}.`3esn`? Merge ``=(:_usn3{`7esn`:$999 Ends With .e0})<-[`8esn`?:`2esn`|`4esn`{usn2:#usn8[`6esn`..][$``..]}]-(@usn6 {`6esn`:$`5esn` =~usn1,`5esn`:$`` Starts With $1000 Starts With @usn6})-[?{_usn3:010[`5esn`],_usn4:#usn8 =~.e0}]-(#usn8 :`3esn`{`5esn`:$@usn6 Ends With `1esn`}) On Match Set `7esn`+=$`5esn` Is Not Null,Any(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7])._usn3 =.e12[`2esn`..010],`8esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null Union All Match #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}),((:#usn7:`5esn`{_usn4:$usn2 =~9e1})<-[@usn5?:usn2 *0..01]->(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})) Where 9e1[usn1..0x0][12.e12..12.0] Optional Match `6esn`=(((_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})-[``?:_usn4]-(_usn4 :_usn4))) Create `8esn`=(`4esn` :usn1:`3esn`) Union All Remove [0.e0[1000.._usn4][.e1..usn1],$`1esn` =~999,07[_usn3..][`6esn`..]].usn1!,usn2:`4esn`:`6esn`,Extract(usn2 In False[$usn1][0x0] Where $`7esn`|07 Is Null).#usn7! Return Distinct $0[010..] As `` Order By `5esn`(Distinct .e0[01234567..$`8esn`]) =~All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) =~[999 In #usn8 In $``,.e0 Is Null Is Null] Ascending Skip count(Distinct 0X0123456789ABCDEF Contains 12e12 Contains 12.e12)[..{usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]}][..(:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null})] Remove `4esn`:`8esn`,[`1esn`].#usn8?,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where `1esn`[0.12..][@usn6..]).usn2!"), + octest:ct_string("Return Distinct `` Is Not Null Is Not Null As `6esn`,`7esn`[$usn1..]['s_str'..] As usn1,$#usn8 Starts With .e12 Starts With 1.e1 Limit Single(usn2 In 7[12]) Ends With {_usn3:123.654[`4esn`..12]} Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where `1esn`[usn1][0xabc]) Remove Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01).`3esn`,`5esn`(Distinct).usn1! Unwind 0 Is Not Null As `6esn` Union Match `3esn`=(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0}),usn1=(({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) Where \"d_str\"[True..] Union All Optional Match `1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}))"), + octest:ct_string("Unwind 9e1[$1000][7] As `8esn` Create (((:_usn4{`8esn`:01234567[Null..$_usn3]})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->(`5esn` :`3esn`{``:`` Is Null,`8esn`:$@usn6[$0..9e12][.e12..Null]})<-[`7esn`:`4esn`|@usn5 *12..]->({`4esn`:.e1[..$`3esn`][..01]}))),_usn4=(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-(:#usn8:`1esn`{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}) Return $_usn3[_usn4..] Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Union Unwind .12[..usn2][..12e12] As `5esn` Unwind {#usn8:.0 Is Null Is Null}[..(_usn3 :@usn6{usn2:0Xa =~False =~@usn5,`3esn`:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})][..{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}] As `2esn`"), + octest:ct_string("With 9e0[..123456789][..$`3esn`] Order By 01 Contains usn2 Contains 0X0123456789ABCDEF Desc Limit 00 =~Count ( * ) Union All Optional Match ((`4esn` :@usn6)-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})) Where 0Xa Ends With $`3esn` Ends With $1000 Union Create _usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Remove {#usn8:`1esn`[usn1][0xabc],_usn3:$`6esn`[1.e1][$_usn3]}.`3esn`,{usn1:@usn6[9e12]}.`4esn`! Return 12[$`5esn`..][False..] As `4esn`,0e0 Ends With 07 Ends With $`8esn` As `1esn` Limit All(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`)[Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null)..][Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..])..]"), + octest:ct_string("Create `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})),usn2=(#usn7 {_usn4:1.e1[`8esn`]})<-[usn2{`2esn`:$12 Starts With $usn1}]->(:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]})"), + octest:ct_string("Unwind .e12[`2esn`..010] As `1esn`"), + octest:ct_string("Unwind Extract(@usn5 In 9e0 Ends With $#usn8 Where $`8esn`[123456789..][$@usn5..]) =~None(#usn7 In True Contains 's_str' Contains $usn1 Where 's_str' Starts With 9e0 Starts With usn2) As `2esn` Union Return Distinct *,None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`5esn` In _usn3 In 0.0) Is Not Null Is Not Null As @usn5 Order By 0.0[$usn2..] Asc,All(@usn5 In 9e0 Ends With $#usn8 Where _usn4[`7esn`]) In {`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6} In (:`6esn`:_usn3$usn2)-[:`3esn` *0Xa{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->(usn1 {usn1:$#usn7 Starts With 01234567 Starts With $0})-[?:#usn8|:`3esn` *0x0..]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) Asc,12e12 Starts With $0 Starts With $`2esn` Ascending Unwind (`1esn` :`3esn`{#usn7:12[..0e0][...e1]})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})[(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null)][{`2esn`:$999 Ends With .e0}..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]] As `8esn`"), + octest:ct_string("Merge @usn5=(((:`7esn`{#usn7:0 =~1.e1 =~$#usn7})-[?:`2esn`|`4esn`{@usn5:0.e0}]-(`1esn` $`4esn`)-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}))) On Match Set #usn7:_usn3,`` =None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6) =~Single(`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8) =~(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]}) Return Distinct *,$#usn7[..0Xa] As #usn8,0X7[`2esn`..] As `5esn` Order By $7[999][usn1] Asc Create usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})),((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'}))"), + octest:ct_string("Create (@usn6 {`4esn`:9e1 Contains 12}) Return *,0X7[`2esn`..] As `6esn`,$`1esn` Contains 1e1 Contains @usn6 As `3esn` Order By $_usn3[_usn4..] Descending,9e1 Contains $999 Ascending Unwind 07[999] As @usn6 Union Remove All(@usn5 In 's_str'[0..] Where 12e12 Is Not Null)._usn3!,`3esn`(Distinct $@usn5 In $`6esn` In 12e12).`8esn`! Remove `5esn`($`4esn` In 1.e1 In #usn7,0Xa[Count(*)..]).`5esn`,(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`).`3esn`,None(#usn8 In `7esn` Where 9e12[..1e1][..'s_str'])._usn4?"), + octest:ct_string("With *,``(Distinct 00 Ends With `` Ends With 12.e12,`6esn`[..Count ( * )][..$_usn4]) In (usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[`7esn`?:#usn8|:`3esn`{`6esn`:'s_str'[0..]}]->(#usn8 :`8esn`$#usn8) In Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1]) As `3esn` Order By $usn2[`5esn`..][01234567..] Asc,$`7esn`[.e1][12.0] Asc,$`5esn` =~usn1 Ascending Skip @usn6(0X7 In $#usn7,_usn4 Contains `` Contains 1.e1)[Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)..Any(#usn7 In 9e1[$`1esn`..] Where $`2esn` Ends With `6esn`)] Where 00[$usn1..] With Distinct {`8esn`:9e12 =~@usn6,`1esn`:999 Contains 0 Contains $`5esn`}[`4esn`()],(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null} Order By [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Desc Limit $7 Starts With $`4esn` Merge `6esn`=(((:`6esn`:_usn3)<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(`3esn` :_usn4{`3esn`:12[..0e0][...e1],`4esn`:.0 Is Null Is Null})-[usn2 *..07]->(`` {_usn3:`5esn` Contains `7esn`}))) On Match Set (:_usn3)<-[`2esn`? *01..123456789]-(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}).#usn8! =Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``),{`1esn`:`8esn` Is Not Null Is Not Null}.`4esn`? =$@usn5 Starts With `5esn` Starts With 01234567,{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}.``? =12 In $usn1 In 7"), + octest:ct_string("Create (:usn2)<-[? *01..123456789{`8esn`:usn2 =~7,@usn5:`6esn` Ends With _usn4 Ends With False}]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`4esn`:usn2]->(`3esn` :_usn4),(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}) With Distinct *,`3esn`(`7esn`,0x0 Contains $`6esn` Contains `4esn`) Is Null Is Null Limit usn2[..$usn1][..$#usn8] Union All Delete $0 =~9e1 =~$`2esn` Remove [$`4esn`[0..][999..],$usn2 Is Not Null Is Not Null,$`5esn` In _usn3 In 0.0].`2esn`! Create `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Union All Detach Delete 9e1[$1000][7],.e0[999..1000][1e1..$`8esn`],(:`2esn`)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})-[@usn6? *0X0123456789ABCDEF..{``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6}]-(`5esn` :@usn5) Is Null Is Null Return Distinct *,'s_str' Order By `5esn`(Distinct .e0[01234567..$`8esn`]) =~All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) =~[999 In #usn8 In $``,.e0 Is Null Is Null] Ascending Skip 123456789 Is Null Is Null Limit `4esn`[123456789] Merge ({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) On Match Set _usn3 =Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)]"), + octest:ct_string("With Distinct 999[12e12..$_usn4] Order By Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,0X7[.0] Asc,$`3esn`[..0X0123456789ABCDEF][..7] Descending Limit #usn7 =~9e12 Where _usn4 Contains `` Contains 1.e1 Union All Merge `7esn`=(((#usn7 :usn2{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]})<-[@usn5?:usn2 *00..0Xa{usn2:$usn2[`4esn`..9e12]}]->(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})<-[ *..07{`5esn`:999 In 0e0}]->(:@usn6$usn1))) Return Distinct *,`2esn`[..$_usn4][...12] As `6esn`,$999 Is Null Is Null Order By 12.0 Ends With `2esn` Descending,.0 Ends With 999 Ends With $`5esn` Ascending Match _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Where 010 Is Null Is Null Union Unwind 0.0 Contains `3esn` Contains @usn5 As @usn5"), + octest:ct_string("Optional Match ``=(((_usn3 :`6esn`:_usn3)<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]-(`3esn` :`1esn`:_usn4{#usn8:1e1 Is Not Null Is Not Null})-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null}))) Where 0.e0[1000.._usn4][.e1..usn1] Detach Delete _usn3 Ends With 7 Ends With $`1esn`,(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})[..Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|Count ( * )[$`5esn`..][$7..])][..$usn2] Union All Unwind 12.e12 Starts With 1000 As @usn5"), + octest:ct_string("Create `5esn`=((`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5)),(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[`4esn`:usn2]->(`3esn` :_usn4) Detach Delete $@usn6[_usn3..][$999..],$usn2 =~0.e0 =~@usn6 Match (((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})))"), + octest:ct_string("Merge ((usn1 {_usn4:#usn8 Is Not Null})<-[:`8esn` *0X7..]->(:`8esn`{@usn5:usn2 Ends With .e1 Ends With $`5esn`})<-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]->({`8esn`:usn2 Starts With .0,@usn5:Count(*) In 12 In `6esn`})) On Match Set @usn5 =$`2esn` Is Null,usn2+=`4esn` Starts With 0e0,``+={_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}[[$`2esn` =~9e12,`6esn` Is Null Is Null,usn2 Is Not Null]..[$`1esn` Starts With $`4esn` Starts With $_usn3]] Optional Match _usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Where 0.e0 Starts With .0 Starts With 123456789 Delete 999[..`1esn`][..07],0x0[@usn5][$#usn8]"), + octest:ct_string("With $@usn6[..12] As #usn8,Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] As `7esn` Order By $@usn5 In 12e12 In 01 Ascending Limit Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)[..`4esn`][..(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)] Where _usn3 Starts With 12e12 Starts With `5esn` Union All Merge _usn4=(((:`4esn`:`6esn`{usn1:0 =~1e1,`7esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})<-[`6esn`? *..010{usn2:Null[..0]}]-(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`}))) On Create Set [12 =~usn1,7 =~`4esn`,``[9e12][$999]].`1esn` =Extract(#usn7 In $999 In 1e1 Where `5esn`[..True][..0.e0]|$`5esn` =~$0 =~``) In (:`7esn`{#usn8:0Xa Ends With $`3esn` Ends With $1000})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]}) In Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|999 Contains 0 Contains $`5esn`)"), + octest:ct_string("Detach Delete $usn2[`2esn`..],`8esn`(Distinct #usn8 Is Not Null Is Not Null,`2esn` In 9e0 In 7) Starts With None(usn2 In 7[12] Where 123456789 =~12 =~'s_str') Match #usn7=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2),(((:_usn4{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})<-[`2esn`? *01..123456789]-(`2esn` :@usn6))) Where 999[123.654..$usn2][Count ( * )..0x0] Merge (((@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`})<-[`3esn` *7..]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[? *01..123456789]-(usn1 :_usn4{`4esn`:`7esn` Is Null}))) On Match Set usn1(True Contains 's_str' Contains $usn1,.e0 Is Not Null Is Not Null).@usn5! ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]}"), + octest:ct_string("Create #usn7=(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}),({`1esn`:1.e1[`8esn`]})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->({usn1:$123456789 In 0.12}) Return Distinct `2esn` Starts With 12.e12 Starts With 12.0 As #usn8,$_usn3 Is Not Null Is Not Null Skip `1esn`[$@usn6][07] Limit $1000 Is Not Null Union All Unwind 0 =~1e1 As usn2 Match #usn8=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}),(:#usn8:`1esn`{usn2:$`7esn`[.e1][12.0],``:$`1esn` Contains 1e1 Contains @usn6}) Where $_usn4 Starts With $1000 Starts With 12 Detach Delete (`3esn` :usn2)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null}) Is Null,(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`),Any(#usn7 In 9e0[$1000] Where .e0 Is Null) =~Extract(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0|$`3esn` In $usn2) =~{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Union Optional Match ((:`6esn`:_usn3{usn1:`3esn`[0x0..]})<-[? *1000..0X0123456789ABCDEF{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]->({`4esn`:.e1[..$`3esn`][..01]})<-[usn2?{``:$`1esn`[``][07]}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7})),(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) Create (((:_usn4{`8esn`:01234567[Null..$_usn3]})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->(`5esn` :`3esn`{``:`` Is Null,`8esn`:$@usn6[$0..9e12][.e12..Null]})<-[`7esn`:`4esn`|@usn5 *12..]->({`4esn`:.e1[..$`3esn`][..01]}))),_usn4=(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-(:#usn8:`1esn`{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0})"), + octest:ct_string("Create ``=((@usn5 {`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]})<-[`2esn`:`8esn`{`7esn`:$`4esn` Is Null Is Null}]->(usn1 :@usn6)-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(`8esn` :`8esn`)),(:_usn3{usn1:#usn7[..07]})<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]}) Return 010 Starts With $`` Starts With 0e0 As @usn5 Unwind True Starts With Null As usn1 Union With Distinct *,.e0 Is Null As `2esn`,[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]) Order By _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..] Descending,[.e12 Is Null Is Null] Starts With `5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12]) Starts With None(`8esn` In 123456789 =~@usn6 Where `7esn`[$usn2..][$123456789..]) Descending With {``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}[..Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)][..Any(#usn7 In $999 In 1e1 Where 07 In `6esn`)] As usn1,`8esn` Is Not Null Is Not Null As `4esn` Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Limit Any(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]) =~[9e12 =~@usn6,01 Ends With 0Xa Ends With 0X7,$@usn6[$0..9e12][.e12..Null]] Delete _usn4 Is Null Is Null,010[`5esn`],#usn8 Starts With $1000 Starts With $@usn5 Union Match (`8esn` :#usn8:`1esn`{usn1:0x0 Starts With $`6esn`}) Create ((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})),@usn5=(({@usn5:$`5esn` Is Not Null Is Not Null})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})) Return Distinct .e0 Ends With $123456789 Ends With 0xabc Limit 's_str' Starts With 1e1 Starts With $0"), + octest:ct_string("Unwind #usn8 Is Null Is Null As `8esn`"), + octest:ct_string("Detach Delete @usn5[0..],$#usn7 =~`2esn` Remove Filter(#usn8 In `7esn` Where 07 Ends With 9e12 Ends With `2esn`).@usn6?,`5esn`:`1esn`:_usn4 Match #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}),((:#usn7:`5esn`{_usn4:$usn2 =~9e1})<-[@usn5?:usn2 *0..01]->(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})) Where 9e1[usn1..0x0][12.e12..12.0] Union All Merge @usn5=(({`8esn`:`5esn` Contains #usn7 Contains 9e12})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`1esn` :`3esn`{#usn8:$usn2[0.e0],`8esn`:$`4esn`['s_str'..]})) On Match Set `4esn`+=@usn5 Is Not Null,@usn6+=.e12[`2esn`..010],#usn7 =$999[``] On Match Set [$0[123.654..0.e0],01234567[Null..$_usn3]]._usn4! ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,None(#usn7 In 9e0[$1000] Where 00[12..$`6esn`]).`7esn`? =`4esn`(Distinct)[`2esn`($`2esn`[..$`3esn`][..12e12])][Extract(@usn6 In 010[`5esn`] Where 1.e1[$usn1]|.e12[..999][..@usn5])],`5esn`+={`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}[Extract(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]|.e1[..$`3esn`][..01])..] Delete $usn1 Starts With 0x0 Starts With #usn8,$@usn6 Ends With `1esn`,Extract(`3esn` In `2esn`[..01][..True] Where 00[01234567][False]|$`3esn` Ends With 01234567) Starts With (_usn4 :_usn4)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}) Starts With Extract(@usn6 In 010[`5esn`] Where $`2esn` Starts With `4esn` Starts With $usn1) Union With [#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null) Order By `2esn` Starts With $`4esn` Ascending Where 12.0 In 123.654 In _usn4"), + octest:ct_string("Delete $0[12.0...e1],_usn4[.12..$usn2][$_usn3..123.654],07[..07][..0X7] Remove [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where _usn4[`7esn`]|$#usn7 In $@usn5 In $`1esn`].@usn6 Return Distinct .0 Starts With `1esn` As #usn7,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} As usn2,$@usn5[..$#usn7] Limit None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[Extract(#usn7 In 9e0[$1000] Where .e1 In 123456789)][{_usn3:01[`8esn`..9e12][.12..0]}] Union All Unwind (#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})[..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})] As #usn7"), + octest:ct_string("With *,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Return Distinct `` Starts With $123456789,$`4esn` Starts With $`4esn` Starts With $_usn3,9e1[$#usn8][$1000] Order By .e12[.12..] Desc,{@usn5:01[`3esn`..][Count(*)..]} Starts With Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str']) Desc,``[$`3esn`] Descending Skip {@usn5:\"d_str\"[True..]} In _usn4(0 =~1e1,$123456789 Contains $#usn8 Contains ``) In [999 Contains $1000,`2esn` =~.e12 =~0X0123456789ABCDEF,_usn4[@usn6..][$0..]] Union All Return Distinct *,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null Order By .e0 Starts With $@usn6 Starts With $7 Descending Skip [$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa) With Distinct _usn3[0x0],$@usn6 Is Null Is Null As `5esn` Where 12.0[$1000..][#usn7..] Remove [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]|12[..$999][..$`2esn`]].`1esn`?,#usn7:`4esn`:`6esn`,Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12).`5esn`?"), + octest:ct_string("Create (:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]}),(((#usn8 :_usn4{@usn5:$0[0Xa..$123456789]})<-[ *..010{#usn7:``[$`3esn`]}]-(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]})<-[ *00..0Xa]->(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})))"), + octest:ct_string("Return *,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) As `7esn` Order By 9e0[$1000] Asc Limit (`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..])"), + octest:ct_string("Create #usn8=((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})<-[`8esn`?:`` *01234567..$usn1]->(:_usn4)),`5esn`=(({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]->(#usn8 :``:usn2)-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1})) Unwind $_usn4 Starts With $1000 Starts With 12 As #usn7 Unwind $_usn3 Is Not Null Is Not Null As `1esn`"), + octest:ct_string("Optional Match (`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}) Return Distinct _usn3 Is Not Null Is Not Null As `` Skip 0X7[..$`8esn`] Limit {@usn5:$@usn6 Is Not Null Is Not Null} Starts With [`3esn` In `2esn`[..01][..True] Where 0x0[usn1..usn1]] Starts With Extract(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..]|0X7['s_str'..][01..]) Union All Merge (`1esn` :`3esn`{#usn8:$usn2[0.e0],`8esn`:$`4esn`['s_str'..]})<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]}) On Create Set `2esn`+=0X0123456789ABCDEF In .12,`1esn` =$`7esn` In False In $`1esn` On Create Set usn1+=_usn3 Starts With 12e12 Starts With `5esn`,`4esn`+=(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})[..Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|Count ( * )[$`5esn`..][$7..])][..$usn2],#usn7+=.e0 Is Null Optional Match #usn8=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}),`2esn`=(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})"), + octest:ct_string("Create ((@usn6 {_usn4:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})) Delete [#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Union All Optional Match @usn5=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),#usn7=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))) Merge (`1esn` :`3esn`{#usn8:$usn2[0.e0],`8esn`:$`4esn`['s_str'..]})<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]}) Union Match @usn5=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),#usn7=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})))"), + octest:ct_string("Remove `8esn`:@usn5,Single(#usn7 In 9e0[$1000] Where $1000 Is Not Null).`5esn` Merge `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] On Match Set (`3esn` {usn2:$usn2[`4esn`..9e12]})<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1).#usn7! =_usn4 Starts With `` Starts With 1000,Extract(`3esn` In `2esn`[..01][..True] Where 0X7[..$`8esn`]|$#usn7 Starts With 01234567 Starts With $0).`5esn`! =@usn6(Count ( * ) In True In @usn5)[None(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)] Merge ((@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]->(_usn4 )-[#usn7?:`7esn`|:`2esn` *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})) On Create Set #usn7 =[$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1],@usn6+=0.12[$0..$usn2] On Create Set `4esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1 =(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Union Match (((`` $`6esn`)<-[usn2*{_usn3:0.e0[0X0123456789ABCDEF..],`8esn`:$`5esn` In 07 In 00}]-(`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}))),(((`` $`6esn`)<-[usn2*{_usn3:0.e0[0X0123456789ABCDEF..],`8esn`:$`5esn` In 07 In 00}]-(`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}))) Where $@usn6 In @usn6 In 1e1 Create usn1=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) Merge `6esn`=((:_usn3{`7esn`:$999 Ends With .e0})<-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]-(#usn8 :_usn4)-[:`` *0..01]-(`3esn` :`1esn`:_usn4{#usn8:1e1 Is Not Null Is Not Null}))"), + octest:ct_string("Unwind [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e1[usn1..0x0][12.e12..12.0]][..{usn2:0x0[0X7]}][..[12.e12 Is Not Null Is Not Null,$@usn6[.0..][0e0..]]] As _usn4 Union All With Distinct 1.e1[$`3esn`][0Xa] As @usn5 Order By (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Ascending,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null Descending,9e12 =~@usn6 Asc Skip usn1[$@usn5] Where $@usn6[00]"), + octest:ct_string("Remove [$``[7],`7esn` Ends With $7 Ends With $@usn5].`8esn` Union Return *,(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null As `3esn` Order By 1e1 Ends With $`2esn` Descending,$usn1 Starts With 0x0 Starts With #usn8 Descending Skip #usn8 Ends With $@usn5 Ends With $7 Limit $`5esn`[$`3esn`..] Unwind $usn1 Starts With usn1 Starts With True As `8esn` Detach Delete `1esn`[$@usn6][07],``[$`3esn`]"), + octest:ct_string("Merge `1esn`=(`` {#usn7:#usn8 Is Not Null Is Not Null})<-[`5esn` *0xabc]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Unwind $1000[$@usn6][$_usn4] As `6esn` Detach Delete Null Ends With _usn4 Ends With 0.0 Union Detach Delete [0x0 Ends With 12.0 Ends With `5esn`,12e12 Ends With 0.0 Ends With usn1,00[1.e1..]] Ends With All(#usn8 In `7esn` Where $`3esn`[..0xabc][..$7]) Ends With Any(@usn6 In False Contains 0 Contains $`6esn` Where `6esn`[$1000][`3esn`]),@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])] Union Merge (((_usn4 :#usn7:`5esn`)<-[#usn8 *0x0..]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})<-[`2esn`?:usn1|`4esn` *00..0Xa]->(`6esn` :#usn8:`1esn`{`6esn`:usn1[..$@usn6][..00]})))"), + octest:ct_string("Unwind `6esn`[$`8esn`][9e1] As `7esn` Merge ({`1esn`:1.e1[`8esn`]})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`) On Create Set All(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True]).`1esn`? =$usn2[`2esn`..$`1esn`],{usn1:#usn8 =~.e0,_usn3:$_usn4 Is Null Is Null}.`1esn` =$`7esn`[.e1][12.0] Optional Match ((`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})),`5esn`=(((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Union Optional Match usn1=((`3esn` {usn2:$usn2[`4esn`..9e12]})<-[?{@usn5:_usn3 Ends With 7 Ends With $`1esn`}]->(_usn3 :_usn4)<-[_usn4?:`3esn`]-(:_usn3{_usn4:.e1[7..][9e0..]})),`7esn`=(usn1 :`7esn`) Return Distinct Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null),9e1[usn1..0x0][12.e12..12.0] Order By 00[12e12][$`7esn`] Ascending,@usn5[0..] Descending,Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Descending Limit 0.e0[$`4esn`..`2esn`] Merge `5esn`=(({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]->(#usn8 :``:usn2)-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}))"), + octest:ct_string("Unwind $`6esn` Is Not Null Is Not Null As `4esn` Remove Single(#usn7 In 9e1[$`1esn`..] Where ``[$`3esn`]).#usn7!,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3])._usn3?,{usn2:`2esn`[..$_usn3]}.usn2? Unwind $`3esn` Contains $`1esn` As `6esn` Union Unwind 0x0[12e12..$`7esn`] As `7esn` Union All Detach Delete $0[123.654..0.e0],123.654"), + octest:ct_string("Remove [#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|Count(*) Is Null].#usn7,{``:0Xa =~False =~@usn5,`8esn`:.12[123.654..]}.`6esn`!,Any(#usn7 In $999 In 1e1 Where usn1 =~$`7esn`).`1esn`! Match (_usn3 :`5esn`{#usn8:0xabc In 010 In #usn7}),`3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) Union All With 12 Starts With True Starts With 12e12 As _usn4 Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc Union Remove None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]).`4esn`,[@usn6 In 010[`5esn`] Where 9e1 Ends With Count(*) Ends With $7|`1esn` Is Not Null Is Not Null].`` Match `6esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Where `` Is Null Create (_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]}),`2esn`=(:#usn8:`1esn`$`7esn`)"), + octest:ct_string("Return #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Order By Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[..[#usn7 In True Contains 's_str' Contains $usn1 Where Count(*) Ends With usn1]][..Filter(usn2 In 7[12] Where #usn7[0.e0..]['s_str'..])] Ascending,{@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Asc,usn2[1.e1] Descending Skip $``[01234567..][.0..] Return Distinct $#usn7 In $@usn5 In $`1esn` As `4esn` Remove Filter(#usn7 In 9e0[$1000] Where 12['s_str'][01])._usn3?,[@usn5 In 's_str'[0..] Where usn1 Starts With 00|True Contains .e12].`6esn`!,None(@usn5 In 's_str'[0..] Where 0.e0).`4esn`"), + octest:ct_string("Detach Delete Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1) With *,`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] As @usn5 Where 07 Contains `3esn` Contains `7esn` Unwind False[$usn1][0x0] As usn2"), + octest:ct_string("Match _usn4=((:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})) Where 123456789[12] Merge #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}) On Match Set _usn3:`7esn` On Create Set Single(@usn6 In 010[`5esn`] Where 123.654).`6esn`? =0.e0[0X0123456789ABCDEF..],(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}).`3esn`? =999[..`1esn`][..07],[@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1].`6esn` =`7esn` Starts With @usn5 With Distinct 0Xa In #usn7 In 's_str',`4esn` Starts With 0e0 As `7esn` Skip (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`) Where .e0 Union Remove [0x0[0X7]].``!,(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}).`4esn`,{@usn5:01[`3esn`..][Count(*)..]}.`8esn`? Unwind 07[False] As @usn6 Union Remove [Null[..010][..1000]]._usn4!"), + octest:ct_string("Unwind #usn8 Is Null As `8esn` Merge ((_usn3 :usn2))"), + octest:ct_string("Create (#usn7 {`6esn`:$`2esn` Contains Count(*)})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`}) Return Distinct *,1e1 Contains 0.e0 Contains 9e1 Limit None(#usn7 In 9e0[$1000] Where $1000 Is Not Null) Is Null Is Null Create ((#usn7 {`1esn`:$`4esn` Is Null Is Null})<-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(`6esn` :`8esn`)) Union Merge `1esn`=((`6esn` {`3esn`:$`2esn`[0..123456789][``..`1esn`],`7esn`:$0[0Xa..$123456789]})<-[? *00..0Xa]->(usn2 :@usn5)-[?:`2esn`|`4esn` *0Xa{#usn7:1.e1 Starts With 9e12}]-(:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) On Create Set `3esn`+=$@usn6 Is Not Null Is Not Null,[$usn2 Is Not Null Is Not Null,0 =~1e1].`3esn`? =$1000[0X0123456789ABCDEF][12] On Match Set `2esn` =`3esn`[..0X0123456789ABCDEF][..0x0]"), + octest:ct_string("Merge (#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) Return Distinct *,9e1[$``..][0.e0..] Order By Count ( * )[$`5esn`..][$7..] Desc"), + octest:ct_string("Unwind $12[$usn1..][Count(*)..] As usn2 Return $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Order By 1.e1 In 1000 In _usn3 Desc,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Descending,123.654 Is Null Is Null Asc Union Delete True Contains 's_str' Contains $usn1 Union Optional Match ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)) Where 010 Starts With 0 Starts With 0.0 With _usn4 Contains $_usn3 Contains .e1,$`4esn`['s_str'..] As `` Limit .e12[..999][..@usn5] Where .12 In `8esn` In $#usn8 Return 0x0[12e12..$`7esn`] As #usn7 Order By .e12[`2esn`..010] Desc,0xabc In 010 In #usn7 Ascending Skip $999 In 1e1"), + octest:ct_string("With usn1[False..] As usn2 Order By 0 Ends With 12.e12 Ends With usn2 Asc,\"d_str\" In @usn5 In $@usn5 Ascending,$usn2 Desc Skip $usn2[`2esn`..$`1esn`] Delete [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] In [12e12 In 123456789,`1esn`] In All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),$999 Is Null Is Null Return *,'s_str' Starts With 9e0 Starts With usn2 As `8esn` Union All Create ((:_usn4{`4esn`:.e1 In 123456789})<-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})) With Distinct (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Union Return Distinct usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Skip $@usn6 Ends With `1esn` Limit 9e1 Ends With Count(*) Ends With $7 Merge _usn4=(`5esn` :``:usn2)-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}) Match @usn6=(usn2 :_usn4) Where `4esn`[$_usn3..$`7esn`]"), + octest:ct_string("Unwind 9e0 Is Not Null Is Not Null As `4esn`"), + octest:ct_string("Remove Extract(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..]|`2esn`[$@usn6..][Null..]).``,Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12).@usn6 Unwind #usn8(1000[12e12][`5esn`],9e1 Contains 12)[Extract(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0)..`1esn`(Distinct `3esn`[7..0.e0][0.0..123456789],`1esn` Starts With 0xabc Starts With $usn2)][Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 9e0[Count(*)..0.12][$`1esn`..12.0])..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12)] As @usn6 Remove [@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|$`3esn` In $usn2].usn1,[#usn8 In `7esn` Where $`5esn` Is Not Null Is Not Null].#usn8 Union Return Distinct $`3esn`[$_usn4..0Xa] As #usn7,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa) As `3esn`,$`5esn`[$`3esn`..] As `4esn` Limit $`` Is Not Null Is Not Null"), + octest:ct_string("Delete 12.e12 Starts With \"d_str\" Starts With 9e1 Union All Return 123456789 =~$999 Order By $7[01..$123456789][#usn7..12.0] Descending,.12[..usn2][..12e12] Descending Merge `8esn`=((#usn8 :_usn3)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)) Union All Unwind $_usn3 Is Not Null As _usn3"), + octest:ct_string("Optional Match @usn5=(:@usn5{#usn7:12e12 In $`5esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})-[?*]-({`8esn`:`5esn` Contains #usn7 Contains 9e12}) Where 9e1 Contains 12 Remove Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]|$``[..\"d_str\"][..$#usn8]).`6esn`!"), + octest:ct_string("With *,$@usn5 In 12e12 In 01 Order By 0.12 Starts With $`8esn` Starts With @usn5 Ascending Limit $7 Starts With $`4esn` Return Distinct *,00 Ends With $`1esn` Ends With `7esn`,$@usn6 Is Not Null Is Not Null As `8esn` Order By (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Descending,[#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Descending Skip [usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Limit 12.e12 =~.0 =~usn1 Return Distinct (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] As #usn7,1e1 Is Null Is Null As usn2,{`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}[..`2esn`(Distinct 0 Ends With 12.e12 Ends With usn2)][..Filter(_usn4 In 12e12 In 123456789 Where .e1 In 123456789)] As usn1"), + octest:ct_string("Remove #usn8(1000[12e12][`5esn`],9e1 Contains 12).@usn5?,({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]->(:#usn8:`1esn`$`7esn`).`6esn`?,[#usn7 In 9e0[$1000] Where .e0 Is Null|Count(*)[9e12..12.0]].``! Return *,`2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] As `3esn`,``[$`1esn`] Skip None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] Limit True Ends With $_usn3 Ends With 12 Union Optional Match @usn5=(`7esn` :`3esn`{`2esn`:999[123.654..$usn2][Count ( * )..0x0]})-[`2esn`?:usn1|`4esn` *00..0Xa]-(`4esn` :`4esn`:`6esn`),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Where 12 Starts With #usn7 Starts With 0Xa Union With [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`)"), + octest:ct_string("With 12 Starts With True Starts With 12e12 As _usn4 Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc Union All Merge `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] On Match Set (`3esn` {usn2:$usn2[`4esn`..9e12]})<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1).#usn7! =_usn4 Starts With `` Starts With 1000,Extract(`3esn` In `2esn`[..01][..True] Where 0X7[..$`8esn`]|$#usn7 Starts With 01234567 Starts With $0).`5esn`! =@usn6(Count ( * ) In True In @usn5)[None(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)]"), + octest:ct_string("Remove Single(#usn7 In 9e1[$`1esn`..] Where `3esn`[7..0.e0][0.0..123456789]).`7esn`?,{usn1:$123456789 In 0.12}.`1esn`!,`3esn`(9e0[0X7..$`6esn`][123456789..0]).@usn5 With Distinct *,999 Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains {_usn3:123.654 In $`7esn`} As `6esn`,.e0 Is Not Null Is Not Null As `7esn` Order By _usn3 In $`8esn` In @usn6 Desc Where `8esn` Contains Count(*) Contains $#usn7 Merge `3esn`=(usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})-[@usn5?{#usn7:12e12 In $`5esn`}]->(`8esn` :`8esn`)"), + octest:ct_string("Delete @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])] Delete 's_str' Starts With 1e1 Starts With $0 Remove `7esn`:@usn6 Union With `3esn`[7..0.e0][0.0..123456789] As _usn4,$usn2[0.e0] As _usn3 Limit 9e1 Contains $999 Where @usn5 Is Not Null Unwind [@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] As #usn8"), + octest:ct_string("Delete $7[$12..12e12][1.e1..9e1],Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..]) =~[_usn4 In 12e12 In 123456789 Where .0 Ends With Count ( * )|$`1esn` In .e0]"), + octest:ct_string("Match ({`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[:@usn6|:`7esn` *0..01{``:`1esn`[0.0..1e1][0x0..7],usn2:01[`3esn`..][Count(*)..]}]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[:@usn6|:`7esn` *0..01{``:`1esn`[0.0..1e1][0x0..7],usn2:01[`3esn`..][Count(*)..]}]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}),`4esn`=(:#usn7:`5esn`{`4esn`:$``[..\"d_str\"][..$#usn8]}) Remove None(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null).`5esn` Union All Optional Match ((({`7esn`:999 In 0e0})<-[#usn7 *01..123456789]->({`2esn`:`7esn` In 010 In usn1,`8esn`:$0[123.654..0.e0]})<-[? *7..]-(usn1 {@usn5:_usn4[$usn1..01234567][123.654..`5esn`],`5esn`:1.e1 =~$_usn4}))) With Distinct *,0Xa[Count(*)..],[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,0xabc In .12 In 0Xa Descending,.0 Contains .e12 Contains 0 Desc Skip All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1)[None(@usn6 In 010[`5esn`] Where 00[1.e1..])..[$12[$usn1..][Count(*)..],$@usn5 Contains 's_str' Contains \"d_str\"]][Extract(`3esn` In 9e1 Contains $999 Where 0e0 Starts With 999 Starts With `2esn`|9e1 Ends With Count(*) Ends With $7).._usn4(`1esn`[0.12..][@usn6..],#usn8 =~0.e0)] Limit `1esn` Starts With 9e1 Create ``=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})"), + octest:ct_string("Unwind .e1 In 123456789 As `4esn` Unwind .e1[7..][9e0..] As `4esn` With *,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``) Is Null Is Null"), + octest:ct_string("Return Distinct *,[`3esn` In `2esn`[..01][..True] Where 0.e0[1000.._usn4][.e1..usn1]|`5esn`[..123.654][...e12]] As `6esn`,$#usn8 Starts With .e12 Starts With 1.e1 As `8esn` Return _usn4 Is Null Is Null As @usn5,.e12[$@usn6..00][01234567.._usn3],Extract(@usn5 In 9e0 Ends With $#usn8 Where $`8esn`[123456789..][$@usn5..]) =~None(#usn7 In True Contains 's_str' Contains $usn1 Where 's_str' Starts With 9e0 Starts With usn2) As @usn5 Skip 9e12 Ends With 12e12 Ends With 12 Limit (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Union Unwind 07 =~`4esn` =~$`1esn` As _usn3 Create `4esn`=(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})<-[`7esn`:`4esn`|@usn5 *12..]->({`4esn`:.e1[..$`3esn`][..01]}),@usn5=(_usn3 :`7esn`)"), + octest:ct_string("Unwind _usn3 =~00 As `4esn` With Distinct #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Skip `8esn`[$12][123456789] Limit Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)[(`` :`5esn`{@usn5:123456789 =~@usn6})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`7esn` {``:9e1 Contains $999,``:$usn2[True..0X0123456789ABCDEF]}).._usn3(Distinct 0x0 Contains $`6esn` Contains `4esn`,usn2[1.e1])][(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})..[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|9e1 Is Null]]"), + octest:ct_string("Optional Match @usn6=(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-(:`5esn`{@usn6:1000[0e0][1e1]})<-[:`8esn`]-(:@usn6) Where .e1[..$`3esn`][..01] Delete 9e0[Count(*)..0.12][$`1esn`..12.0],`7esn` Is Null Unwind _usn3[`5esn`..][usn2..] As #usn7 Union All Return Distinct *,`4esn` Ends With 12 Ends With .12 As usn2 Skip `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] Limit Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``) In Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1) Detach Delete Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null) Is Not Null Is Not Null,010 Starts With $`` Starts With 0e0 Union All Unwind #usn7[..07] As usn1"), + octest:ct_string("Unwind `7esn`[1e1] As `6esn` Match ((@usn5 )),(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-({`1esn`:#usn7[0]}) Return Distinct *,#usn8 =~.e0,Count ( * ) Ends With $123456789 Skip $#usn8[True][9e0] Union All Optional Match usn1=((:@usn5{@usn5:$12[9e0..$999]})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})) Return @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1|$@usn5 In $`6esn` In 12e12) Ends With (:`7esn`{#usn7:0 =~1.e1 =~$#usn7})<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}),`1esn`($`4esn`[`4esn`][Count(*)],`2esn` Starts With $`7esn`) =~Extract(@usn5 In 9e0 Ends With $#usn8 Where .e0 Starts With $@usn6 Starts With $7) =~{`3esn`:_usn3[`2esn`..0X7][0.e0..$`3esn`]}"), + octest:ct_string("Detach Delete Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])],[$usn1 Ends With _usn4 Ends With `2esn`][@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)..[#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1]][Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..])..Extract(#usn7 In 9e1[$`1esn`..] Where $999[``])],{`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}[[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]]..][(_usn4 {`6esn`:$_usn4 =~$`1esn` =~`2esn`,_usn3:#usn8 Is Null})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[_usn4?{_usn3:.e1[.e1..`1esn`],@usn6:.12 In `8esn` In $#usn8}]->(usn2 :@usn5)..] With *,12 Ends With True Ends With @usn6,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3) Ascending,$@usn6 =~0xabc =~$999 Descending,[`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5|`7esn`[1e1]] Contains (`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->(`2esn` {`1esn`:$`4esn` Is Null Is Null}) Contains Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``) Desc With *,$`7esn`[$_usn4][.e0],`5esn` Contains `1esn` Contains usn1 As `2esn` Order By `4esn` Contains 9e0 Desc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Is Not Null Asc Skip [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] Limit $@usn6 =~#usn7 =~True Where 12.0 Is Null Union All With Distinct *,``[..False][..`3esn`],(@usn6 :`8esn`)<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`}) Ends With #usn8(Distinct 12.e12 Contains #usn7 Contains $_usn4,01[`3esn`..][Count(*)..]) Ends With [`5esn`[..True][..0.e0],12 In $usn1 In 7,$`8esn`[123456789..][$@usn5..]] As `5esn` Order By $`1esn` Starts With $`4esn` Starts With $_usn3 Asc,01234567 In $@usn6 In $#usn7 Desc Skip 1000 Ends With `7esn` Limit usn2 Starts With .0 Return Distinct #usn7[`8esn`..usn1][$999..`7esn`] As #usn8,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] As `8esn`,999 In #usn8 In $`` Order By 999[12.e12] Desc,07 Ascending,[`6esn` In $`6esn`[``..][Count(*)..] Where $`6esn`[1.e1][$_usn3]|$`5esn` Is Not Null Is Not Null][{`6esn`:usn2 =~usn1 =~Count ( * ),@usn5:999 Is Not Null Is Not Null}..] Desc Merge ``=(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) On Match Set @usn5 ={`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)],`7esn` =None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..]"), + octest:ct_string("Unwind Any(@usn6 In False Contains 0 Contains $`6esn` Where 0.0 Is Null Is Null) =~{``:$`2esn`[0..123456789][``..`1esn`]} As `` Delete $`3esn`[.e1][_usn4],None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Union Delete 123.654 In $`7esn` Return Distinct *,12.e12 Contains `6esn`,12[``...e12] As `6esn` Order By 's_str' Is Not Null Descending,123.654[`4esn`..12] Asc,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) Ascending Union Unwind `4esn` Starts With 0e0 As `1esn` Remove {_usn3:_usn4 Is Null Is Null}.``,``(@usn6[`1esn`..]).`7esn`! Return Distinct 1.e1[..123456789][..999],_usn3[12.e12..][`5esn`..] As @usn6,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `5esn` Order By 123456789 Contains 0Xa Descending,[@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00|`5esn`[$`7esn`..$@usn5]] Is Not Null Is Not Null Desc,00[False..0e0] Ascending"), + octest:ct_string("Return 010 Starts With $`` Starts With 0e0 As @usn5"), + octest:ct_string("With *,{`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Order By [0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]][{usn2:$@usn6 Ends With `1esn`,_usn3:`7esn`}..][{@usn6:1e1 Is Not Null Is Not Null,`8esn`:$`1esn` Starts With $`4esn` Starts With $_usn3}..] Desc,0.0[usn1..] Desc Delete 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2],$`3esn` Ends With 1000,[$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..] Union All Return Distinct 12.e12 =~0X0123456789ABCDEF =~1.e1 As `6esn`,0.e0[..$7] As _usn3,usn1 Ends With 0.0 Order By None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,.e0 Starts With $@usn6 Starts With $7 Descending Limit $@usn6[..12] Merge `3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) On Match Set `1esn` =[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]) Detach Delete 999 Is Not Null Is Not Null"), + octest:ct_string("Delete $#usn7[..0Xa],01 In $@usn6 With `5esn`[..123.654][...e12] As @usn6,(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) As `2esn`,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As `1esn` Order By None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0) Descending,@usn5[$`7esn`..`5esn`] Ascending,.0 Contains .e12 Contains 0 Asc Skip usn1 Limit `6esn`[$`8esn`][9e1] Where False Starts With 0X7 Starts With 01234567"), + octest:ct_string("With 0x0[..9e0],Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By 1.e1[12..][$`4esn`..] Asc,Null[..010][..1000] Descending,Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] Descending Limit 1.e1[12..][$`4esn`..] Where 07[$`2esn`..9e12][$`4esn`..9e12] Union All Create ((:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})),`2esn`=(((@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]})<-[? *7..{`1esn`:.e12 Ends With 0Xa Ends With 0xabc}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[ *..07]->(`8esn` {`8esn`:$_usn4 Starts With 12.e12}))) Match (({`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]})) Unwind `4esn` Contains 9e0 As `8esn`"), + octest:ct_string("Unwind $#usn8[@usn6..] As usn2 Merge ((`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})) On Match Set `1esn` =All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null With 0Xa In #usn7 In 's_str',`4esn` Starts With 0e0 As `7esn` Skip $1000 Is Not Null Limit 0X7['s_str'..][01..] Union All Unwind $@usn6 In @usn6 In 1e1 As #usn7 With usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Skip $@usn6 Ends With `1esn` Limit 9e1 Ends With Count(*) Ends With $7 Delete $0[12.0...e1],_usn4[.12..$usn2][$_usn3..123.654],07[..07][..0X7] Union Detach Delete $@usn6 Ends With `1esn`,$123456789[0X0123456789ABCDEF],12[..0e0][...e1] Remove None(_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`).`2esn`,(`5esn` :``:usn2)<-[?:`4esn`|@usn5{usn2:$@usn6[$`8esn`..][123456789..]}]->(:_usn4{`8esn`:01234567[Null..$_usn3]}).``?,Extract(usn2 In 7[12] Where .12[0X7..][12e12..]|0.0 Contains #usn7).`1esn` Optional Match @usn6=(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})-[:@usn5|_usn3 *00..0Xa]-(:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(_usn4 :@usn5) Where \"d_str\"[True..]"), + octest:ct_string("With Distinct Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..],{#usn8:12.0 Ends With `2esn`,@usn5:usn1 Starts With 00}[Any(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..],999 In 0e0 As #usn7 Order By `1esn` Starts With 9e1 Desc Where $@usn5[..$#usn7] Unwind Extract(@usn5 In 's_str'[0..] Where 12 In $usn1 In 7) =~All(`3esn` In `2esn`[..01][..True] Where $`7esn`[.e1][12.0]) As @usn5 Return Distinct Count ( * ) In True In @usn5 Skip 01234567[\"d_str\"..`4esn`] Limit 123.654 In $`6esn` Union Match _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Where 010 Is Null Is Null Union Unwind usn2 =~usn1 =~Count ( * ) As @usn6 Remove `6esn`:`6esn`:_usn3"), + octest:ct_string("Create (`3esn` {_usn4:123.654 In 12})-[`4esn`?:_usn4 *7..]-(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})<-[ *00..0Xa]->(#usn7 :usn1:`3esn`),(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]}) Merge #usn7=({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Union Optional Match (`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Where #usn7[0.e0..]['s_str'..] Merge ((@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})) On Match Set #usn7+=`1esn` Remove None(_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`).`2esn`,(`5esn` :``:usn2)<-[?:`4esn`|@usn5{usn2:$@usn6[$`8esn`..][123456789..]}]->(:_usn4{`8esn`:01234567[Null..$_usn3]}).``?,Extract(usn2 In 7[12] Where .12[0X7..][12e12..]|0.0 Contains #usn7).`1esn` Union Delete 9e1[$`1esn`..]"), + octest:ct_string("Remove `5esn`(.0 Is Null Is Null).usn1,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5).@usn5?,{``:12 In $usn1 In 7,`1esn`:Count(*) Ends With usn1}.usn2? Union Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) On Create Set #usn7+=.e0[..9e12][..07],`4esn`(True[$_usn3..],$999[``]).usn2 =123456789 Is Null Is Null,@usn5 =01[07..][1.e1..] On Create Set `5esn`+={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},usn2 =True Contains 0x0 Contains $_usn3"), + octest:ct_string("Merge #usn8=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}) On Create Set Filter(usn2 In 7[12] Where $`6esn`[1.e1][$_usn3]).``? =0Xa[$`8esn`..][$_usn4..],_usn4+=0X0123456789ABCDEF In $7 On Match Set #usn7 =9e1[`1esn`..0][999..1e1],All(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True]).`1esn`? =$usn2[`2esn`..$`1esn`],Single(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1).#usn7 =All(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null) Detach Delete $`5esn` Starts With 0.0 Starts With .e0,Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)[(`` :`5esn`{@usn5:123456789 =~@usn6})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`7esn` {``:9e1 Contains $999,``:$usn2[True..0X0123456789ABCDEF]}).._usn3(Distinct 0x0 Contains $`6esn` Contains `4esn`,usn2[1.e1])][(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})..[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|9e1 Is Null]],usn1[False..`5esn`][$1000..$12] Union Remove Extract(_usn4 In 12e12 In 123456789 Where .e1 Starts With 12.e12 Starts With `2esn`|$@usn5 Is Null Is Null).@usn5!,Extract(@usn6 In 010[`5esn`] Where $0[0Xa..$123456789]|#usn7[0.e0..]['s_str'..]).`8esn`?,(:#usn8:`1esn`$`7esn`)-[?:@usn6|:`7esn` *0X0123456789ABCDEF..{_usn4:0x0[12e12..$`7esn`]}]->({@usn5:Count(*) Is Not Null Is Not Null}).`5esn`?"), + octest:ct_string("Delete 07 =~`4esn` =~$`1esn`,9e1 In 0X7 In Count(*) Delete 07[_usn3..][`6esn`..] Detach Delete [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] Union All Delete Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]),$_usn3 Is Null Create @usn5=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),_usn4=({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Unwind Extract(#usn7 In $999 In 1e1 Where `5esn`[..True][..0.e0]|$`5esn` =~$0 =~``) In (:`7esn`{#usn8:0Xa Ends With $`3esn` Ends With $1000})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]}) In Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|999 Contains 0 Contains $`5esn`) As usn1 Union All Create `5esn`=(({@usn5:``[9e12][$999]})-[usn2{``:$`1esn` =~999}]-(:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0})),((_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`})<-[? *..010{`2esn`:'s_str'[0..]}]->(_usn3 :`5esn`))"), + octest:ct_string("Create ((({`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[`3esn` *..07{usn2:True Contains 0x0 Contains $_usn3}]-({``:``[$`3esn`],#usn8:$@usn6[00]}))),`5esn`=(({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Optional Match `3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))),usn2=(:#usn8:`1esn`$`7esn`) Where 123456789 Is Null Is Null Merge `8esn`=(((#usn8 :``:usn2)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[@usn5? *0xabc{`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}]->(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}))) On Match Set Any(#usn8 In `7esn` Where $`3esn` Contains $`1esn`).`8esn`? =0x0 Contains $`6esn` Contains `4esn`,Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where False[$usn1][0x0]|@usn5[0.0..0X7]).usn2! =Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1),`3esn` =12.e12[..$999][..07] On Match Set usn1 =_usn4 Is Not Null,`3esn` =usn1[...e12][..1.e1] Union Remove Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $123456789 In 0.12).#usn8?,[`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null|$#usn7 Starts With 01234567 Starts With $0].`7esn`,(`4esn` :@usn6)-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4).`4esn`"), + octest:ct_string("Remove Single(`3esn` In `2esn`[..01][..True] Where 9e12[9e1]).`2esn`?,`2esn`($7 In $usn1 In 999,'s_str' Contains 12.e12 Contains $`4esn`).`3esn`! Unwind 0X7[..$`8esn`] As `1esn` With Distinct `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] As `3esn`,usn1 Ends With 0.0 Order By $`3esn`[$_usn4..0Xa] Desc,$`1esn` Ends With 0X0123456789ABCDEF Ascending,$@usn5 Ends With @usn5 Ends With 0xabc Descending Where #usn8 =~0.e0"), + octest:ct_string("With Distinct *,{@usn6:$`3esn`[.e1][_usn4]}[`8esn`(Distinct $``[True])..] As #usn8,999[12e12..$_usn4] As usn2 Where `6esn`[$1000][`3esn`] Detach Delete `1esn` Starts With 0X7 Starts With \"d_str\",\"d_str\" Is Not Null Is Not Null,_usn4 Starts With `` Starts With 1000 Unwind $`6esn`[0e0..][010..] As `7esn` Union Detach Delete Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null) Is Not Null Is Not Null,010 Starts With $`` Starts With 0e0 Return 12e12[0x0..12.e12] As `1esn`,.e1[7..][9e0..] As `4esn`,$#usn8 Starts With .e12 Starts With 1.e1 As `8esn` Order By $`5esn` In `2esn` In `2esn` Asc,0.0[..Count ( * )][..`1esn`] Ascending,[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )] Ascending Union Detach Delete [#usn8 In `7esn` Where .e0 Is Null Is Null] Ends With {usn1:$`4esn`[`6esn`..$12],`4esn`:usn1 Contains 010} Ends With (:``:usn2{``:True[$_usn3..]})<-[`2esn`? *01..123456789]-(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(`1esn` $`4esn`),Extract(`6esn` In $`6esn`[``..][Count(*)..] Where 1.e1 Ends With $_usn4 Ends With #usn7|0xabc =~$@usn5) Contains {`5esn`:1.e1[`8esn`],`1esn`:.e0} Contains {usn1:$123456789 In 0.12} Match _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Where 010 Is Null Is Null Remove `3esn`(Distinct 123.654 Starts With 0X7 Starts With $`4esn`).``!,Any(_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1).`2esn`,Filter(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]).@usn5?"), + octest:ct_string("With *,12 Ends With True Ends With @usn6,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By $#usn8[True][9e0] Asc,All(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7) Contains `2esn`(Distinct 0x0[0.0],0Xa =~False =~@usn5) Contains Single(#usn7 In $999 In 1e1 Where $@usn6 =~#usn7 =~True) Descending Limit $`5esn`[$`3esn`..] Union Return Distinct .0 Starts With `1esn` As #usn7,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} As usn2,$@usn5[..$#usn7] Limit None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[Extract(#usn7 In 9e0[$1000] Where .e1 In 123456789)][{_usn3:01[`8esn`..9e12][.12..0]}] Unwind `7esn` Is Null As @usn5 Union All With Distinct *,$@usn6 Ends With 12.e12 Ends With @usn5 As `3esn` Order By .e0 Starts With $@usn6 Starts With $7 Descending Limit All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where False[$usn1][0x0]) In [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null|9e12[9e1]] In [12.0 Is Null,$_usn4[..$_usn4][..`7esn`]] Detach Delete $`8esn`[999],usn2 Ends With $`4esn` Return Distinct *,True In (#usn8 :`6esn`:_usn3)<-[`2esn`?:_usn4{#usn8:$12[9e0..$999]}]->({``:.e1 Starts With 12.e12 Starts With `2esn`}) As `5esn`,Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null]"), + octest:ct_string("Remove (:`8esn`{@usn5:usn2 Ends With .e1 Ends With $`5esn`})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`).`8esn`!,{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null}.``,{``:0Xa =~False =~@usn5,`6esn`:$`2esn` Starts With `4esn` Starts With $usn1}.@usn5 Unwind [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] As usn2 Match #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}),((_usn3 :usn2)) Union Delete $`6esn` Is Not Null Is Not Null,@usn5 Starts With 9e0 Starts With 010 Return Extract(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0),None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1) Order By 123456789 =~$999 Asc Skip $`4esn`[..$`8esn`][..Null] Unwind {``:0.0 =~9e0 =~$0} Contains [@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn2..][$123456789..]|0Xa[Count(*)..]] As ``"), + octest:ct_string("Merge @usn6=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}) Create `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Union All Delete $`1esn` Contains 1e1 Contains @usn6,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null,`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..]"), + octest:ct_string("Match (:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}),`7esn`=((_usn3 :`7esn`)) Where 12 Starts With True Starts With 12e12 Union Unwind None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])[..[_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4]] As `4esn`"), + octest:ct_string("Return *,None(#usn8 In `7esn` Where 9e1 Starts With Count ( * )) In (:`2esn`{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`})-[?{`5esn`:$`2esn`[.0..][0.0..]}]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})-[`` *1000..0X0123456789ABCDEF]->(:_usn4{`8esn`:01234567[Null..$_usn3]}),Extract(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0) As #usn8 Order By .e12 In $`5esn` In 0X7 Descending,$usn2[`2esn`..$`1esn`] Desc Limit $123456789[0.12..] Delete usn2 Is Not Null,{`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..] Union Optional Match usn2=((usn1 {_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})),`2esn`=(((_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})-[`4esn`?*..{``:`` =~.12,usn1:123.654 Is Not Null}]-(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->({usn2:@usn6 In .12 In `3esn`,`1esn`:usn2[12e12..]['s_str'..]}))) Where 00 Ends With `` Ends With 12.e12 Remove `5esn`:_usn4 Union With Distinct Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],010 Is Null Is Null As #usn8,All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] As `8esn` Order By $_usn3[_usn4..] Asc,0.12 Is Null Is Null Desc,`6esn` Ends With _usn4 Ends With False Ascending Skip 1.e1 =~.12 Limit `1esn`[$@usn6][07] Create ``=(`3esn` :_usn4),((_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`})-[?:`2esn`|`4esn`{@usn5:0.e0}]-(`1esn` $`4esn`))"), + octest:ct_string("Unwind $_usn3 Is Not Null Is Not Null As `1esn` Merge (((:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]-({`7esn`:9e12 =~@usn6})<-[ *0x0..]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}))) Union All Detach Delete @usn6[..$@usn5]"), + octest:ct_string("Delete [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[$usn1..][Count(*)..]|0e0 =~7 =~12.0] Is Null Is Null,$7[999][usn1] Optional Match (({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn4?:@usn6|:`7esn`]-({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn3?:_usn3|:`7esn`]->(`3esn` {`8esn`:`7esn` In 010 In usn1})) Return _usn4[@usn6..][$0..],[$usn2 =~1.e1 =~usn1,$usn1 Starts With usn1 Starts With True,$1000 Starts With $`3esn` Starts With 0.e0] In (`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]-(`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]}) In None(`3esn` In 9e1 Contains $999 Where 12.0 Starts With .12 Starts With `6esn`),@usn5 Contains #usn8 Contains 12.0 As `4esn` Limit Any(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null) Is Null Union With 9e1[usn1..0x0][12.e12..12.0] Order By $@usn6[$0..9e12][.e12..Null] Desc,.e0 Is Not Null Is Not Null Desc,usn2[..$usn1][..$#usn8] Asc Skip $7 Ends With Count ( * ) Where 's_str' Starts With 9e0 Starts With usn2 Unwind `` Is Not Null Is Not Null As _usn4 Optional Match (usn2 :``:usn2) Where @usn6 Is Not Null Is Not Null"), + octest:ct_string("Match ((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(:`8esn`{``:$`1esn` =~999})),`8esn`=(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`)-[?:usn2{#usn7:0 =~1.e1 =~$#usn7}]->(`8esn` $12) Create ((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})),(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Unwind $_usn3 Is Not Null Is Not Null As `3esn` Union Unwind 123.654 Contains @usn5 Contains $`5esn` As `6esn` Detach Delete 123.654[..0.e0][..'s_str']"), + octest:ct_string("Unwind 12.e12 Starts With 1000 As `` Union All Merge (_usn3 :`7esn`)-[*..{``:.e1 Starts With 12.e12 Starts With `2esn`}]-(#usn7 :_usn3) On Create Set Extract(`3esn` In `2esn`[..01][..True] Where 00[01234567][False]|12[$`5esn`..][False..]).`2esn`! =12.e12 Ends With $``"), + octest:ct_string("Optional Match ``=(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Remove Any(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]).@usn6?,@usn5(Distinct Count ( * ) Ends With $123456789).`6esn`? Unwind 00[False..0e0] As `6esn`"), + octest:ct_string("Create `7esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)) Delete $_usn4[9e0..][$1000..] Union All Return 123456789 =~$999 Order By $7[01..$123456789][#usn7..12.0] Descending,.12[..usn2][..12e12] Descending Merge `8esn`=((#usn8 :_usn3)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`))"), + octest:ct_string("Delete $#usn7[..$`4esn`][..01],Filter(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) =~{#usn7:1000[12e12][`5esn`]} Union All Unwind $#usn7 Ends With 's_str' Ends With 0X7 As usn1 Remove All(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7).`2esn`!,(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[ *01234567..]->(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`}).usn2,@usn6:_usn4 Unwind $@usn6 Ends With 123456789 Ends With 12.0 As _usn3 Union All With *,$`5esn` Is Not Null,usn2 Contains $0 Contains .0 Order By 12.0 Ends With `2esn` Ascending,01234567[$0..][0..] Descending,$12 In True In 1.e1 Desc Skip 9e0[Count(*)..0.12][$`1esn`..12.0] Where `7esn` Return *,0e0 Ends With 07 Ends With $`8esn` As `6esn` Order By {`4esn`:999 In 0e0,`6esn`:0.e0['s_str'..][01234567..]} Contains Single(`8esn` In 123456789 =~@usn6 Where 12.e12 Ends With `` Ends With 0) Ascending,$`4esn` In 1.e1 In #usn7 Desc Skip 0X0123456789ABCDEF In $usn2 In `4esn` Limit Extract(`3esn` In `2esn`[..01][..True] Where 0.0 Is Null Is Null|$usn2[0.e0])[{usn2:@usn5 Is Null,`8esn`:$@usn6 Ends With 123456789 Ends With 12.0}..]"), + octest:ct_string("With 01234567 Starts With True Starts With $999 As `6esn`,usn2[..$usn1][..$#usn8] As `8esn` Limit $`5esn` Is Not Null Is Not Null Where usn1 Starts With 00 Create `8esn`=(((#usn7 {`6esn`:$`2esn` Contains Count(*)})<-[#usn8{`5esn`:$@usn5 In 12e12 In 01}]->(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}))) Union All With *,#usn7[``] As usn1,None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6) =~Single(`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8) =~(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]}) Order By $@usn6 In @usn6 In 1e1 Desc,.e1[..$`3esn`][..01] Desc Limit _usn3 Is Null Is Null Merge ((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)) Return Distinct *,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``) Is Null Is Null Order By Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Ascending,$@usn5[..$#usn7] Descending,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip 9e1 Starts With Count ( * ) Limit {`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..] Union All With `1esn`[`3esn`..],(`3esn` {usn2:00[False..0e0]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null})<-[@usn6?:`8esn` *0..01]->(`5esn` :`4esn`:`6esn`)[[12.0 Starts With $`2esn` Starts With .e1]..] Skip 07 In 0Xa In usn1 Limit 010 Is Null Remove {_usn3:_usn4 Is Null Is Null}.``,(`1esn` )<-[@usn5?{`7esn`:0.0 Contains #usn7,`6esn`:@usn5[0.0..0X7]}]->(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})<-[usn2 *0X0123456789ABCDEF..]->(usn2 :`7esn`).#usn7?,[$#usn8[@usn6..]].`6esn`? Merge _usn3=((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7 *01..123456789]->(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})) On Create Set (:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(usn1 :`7esn`).`4esn` =1.e1[$`3esn`][0Xa],(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})<-[`5esn`?:@usn5|_usn3{``:0.0 =~9e0 =~$0}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]}).usn2 =$`4esn` Starts With 0 Starts With `7esn`,usn2+=`2esn`[..01][..True]"), + octest:ct_string("With Distinct *,12e12[12e12][$#usn7] Order By {`3esn`:.e1[..\"d_str\"][..$123456789]} Descending,010[..7][..`4esn`] Desc,12e12 Is Not Null Ascending Skip None(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]) Contains [$`2esn` Ends With `6esn`,9e1[..123456789]] Contains [12.0 In 123.654 In _usn4] Where False[..$`5esn`][..1e1] Union All With Distinct 12e12 Is Not Null Order By Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $`6esn`[``..][Count(*)..])[[$`2esn` =~9e12,`6esn` Is Null Is Null,usn2 Is Not Null]] Descending Skip 12 Contains 01234567 Limit @usn5 Is Not Null Optional Match (((`` $`6esn`)<-[usn2*{_usn3:0.e0[0X0123456789ABCDEF..],`8esn`:$`5esn` In 07 In 00}]-(`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}))),(((`` $`6esn`)<-[usn2*{_usn3:0.e0[0X0123456789ABCDEF..],`8esn`:$`5esn` In 07 In 00}]-(`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}))) Where 9e12 Starts With 1e1 Merge `8esn`=((_usn3 :_usn4))"), + octest:ct_string("Optional Match _usn4=(((`2esn` )-[?{_usn3:01[`8esn`..9e12][.12..0]}]->(`8esn` {@usn5:#usn7[..07],usn2:999 Contains 0 Contains $`5esn`})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]->(_usn3 :`5esn`))),((:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->({@usn6:12.e12 Contains #usn7 Contains $_usn4,usn2:$`5esn` =~$0 =~``})-[#usn7 *01..123456789]->(:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})) With Distinct 0Xa In $`6esn` As `2esn`,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null,12[0e0] As `5esn` Skip (`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}) =~[12 In $usn1 In 7] =~Filter(@usn5 In 's_str'[0..] Where 0.e0) Limit .e0[$`8esn`..][1000..] Union All Merge `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] On Match Set (`3esn` {usn2:$usn2[`4esn`..9e12]})<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1).#usn7! =_usn4 Starts With `` Starts With 1000,Extract(`3esn` In `2esn`[..01][..True] Where 0X7[..$`8esn`]|$#usn7 Starts With 01234567 Starts With $0).`5esn`! =@usn6(Count ( * ) In True In @usn5)[None(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)] Union All Return *,False Is Null Order By 0X7[..$`8esn`] Desc,[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null Ascending,12.e12 Ends With `` Ends With 0 Desc Skip Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0)[..{`5esn`:0Xa[$`8esn`..][$_usn4..],_usn3:00[$usn1..]}][..Any(@usn6 In 010[`5esn`] Where 1.e1[$usn1])] Unwind 9e1 =~123456789 =~999 As @usn5 Merge ((_usn3 :usn2)) On Match Set Any(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0).`5esn`! =.e12 Ends With 0Xa Ends With 0xabc On Match Set `5esn`(Distinct .12[123.654..]).`3esn` =01234567 In 123456789 In 12,`6esn` =[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null"), + octest:ct_string("With Distinct [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Any(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`) Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc Skip {`4esn`:999 In 0e0,`6esn`:0.e0['s_str'..][01234567..]} Contains Single(`8esn` In 123456789 =~@usn6 Where 12.e12 Ends With `` Ends With 0) Limit `6esn` Is Null Is Null Merge (`2esn` :`1esn`:_usn4)-[?*..]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) On Create Set @usn6+=$#usn7 Ends With 's_str' Ends With 0X7,`6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn2 =$@usn5 Ends With @usn5 Ends With 0xabc With Distinct $12 Starts With $0 Starts With $`8esn`,9e1[usn1..0x0][12.e12..12.0] As usn1,$``[..\"d_str\"][..$#usn8] As `6esn` Union Merge (({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Union All Return *,[`8esn`[..$#usn8],1.e1 Starts With 9e12] Ends With [`6esn` In $`6esn`[``..][Count(*)..]|.e1[12.0..]] Ends With Any(usn2 In 7[12]),$`6esn` Starts With .e12 Starts With $`1esn` As @usn6 Skip $`5esn`[$`3esn`..] Limit Single(@usn6 In 010[`5esn`] Where Count(*)[9e12..12.0])[(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)][`7esn`] Remove count(Distinct .e12[..999][..@usn5]).usn2!,[@usn6 In 010[`5esn`] Where 010 Is Null Is Null].`3esn`,Single(@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]).`7esn`"), + octest:ct_string("With *,'s_str'[0x0..1.e1] As `6esn` Where 07[_usn3..][`6esn`..]"), + octest:ct_string("With Distinct Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])] As @usn6,$`1esn`[Null][True] As usn2,0X7 In $#usn7 Order By 01 Ends With 0Xa Ends With 0X7 Desc,$12 =~0X7 =~0x0 Ascending Skip `7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] Where 00[01234567][False] Unwind `` Is Not Null Is Not Null As _usn4"), + octest:ct_string("Merge (({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Union All With Distinct *,0X7[`2esn`..] As `6esn`,$`1esn` Contains 1e1 Contains @usn6 As `3esn` Order By 0xabc In .12 In 0Xa Descending Limit [#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Optional Match ((:`6esn`:_usn3{usn1:`3esn`[0x0..]})<-[? *1000..0X0123456789ABCDEF{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]->({`4esn`:.e1[..$`3esn`][..01]})<-[usn2?{``:$`1esn`[``][07]}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7})),(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) Where $`3esn` In $usn2"), + octest:ct_string("Create (:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']}),((#usn7 :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Union All Detach Delete {`2esn`:12.e12 Is Not Null Is Not Null,``:Count ( * ) In True In @usn5} Ends With {`7esn`:$1000 Starts With $`3esn` Starts With 0.e0,``:$`2esn` Is Null} Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]],$`5esn`[0X7..010][`7esn`..'s_str'] Union All Merge @usn5=((:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})) Detach Delete 12.e12 =~.0 =~usn1"), + octest:ct_string("With 0.0 Contains #usn7 As #usn8,Extract(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|.e1[usn2..$_usn3][.0..$#usn7]) Order By Any(`6esn` In $`6esn`[``..][Count(*)..] Where 1e1 Ends With $`7esn` Ends With .0) Is Not Null Descending,#usn8 Ends With $@usn5 Ends With $7 Desc,usn2[12.e12..] Asc Skip 12.0[$1000..][#usn7..] Limit $`2esn`[0..123456789][``..`1esn`] Optional Match (_usn3 :`5esn`{#usn8:0xabc In 010 In #usn7}),`3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) Where $#usn7[..9e0][..123.654] With Distinct *,01[`8esn`..9e12][.12..0] As @usn6,$`1esn` =~1e1 As `4esn` Order By 9e1 =~$_usn4 =~1.e1 Desc,$@usn5[$12...e12][0X0123456789ABCDEF..$999] Asc,(:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Ascending Skip $1000 Is Not Null Union All Match ((`4esn` :`4esn`:`6esn`)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Where usn2 Contains $0 Contains .0 Merge ((`5esn` :@usn5{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) On Match Set `` =Null[..010][..1000] On Create Set #usn8 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..])"), + octest:ct_string("Return $#usn8 Starts With .e12 Starts With 1.e1,999 Starts With `4esn` Starts With 1000 Order By [$`1esn`[``][07],$`4esn`[`6esn`..$12],False[$usn1][0x0]] =~[.e12 Is Null Is Null] Descending Skip All(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)[Extract(`3esn` In `2esn`[..01][..True] Where #usn7 Starts With $123456789 Starts With 12e12)][Extract(_usn4 In 12e12 In 123456789 Where .e1 Starts With 12.e12 Starts With `2esn`|$@usn5 Is Null Is Null)] Return Distinct `1esn` Starts With 0X7 Starts With \"d_str\",$`4esn`[..$`8esn`][..Null] As #usn7,None(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With Filter(`5esn` In 0X7 In $#usn7 Where 0x0[0X7]) Ends With Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) As `4esn` Order By [123456789 =~12 =~'s_str',`2esn` Starts With 12.e12 Starts With 12.0,$`8esn`[..True][.._usn4]] Contains Filter(#usn7 In 9e0[$1000] Where `7esn`) Asc,None(#usn8 In `7esn` Where $`3esn` Contains $`1esn`) Starts With #usn8(0x0[Count(*)..@usn6][Count(*)..0Xa]) Ascending,_usn4 Contains $_usn3 Contains .e1 Asc Unwind $@usn6 In @usn6 In 1e1 As `5esn`"), + octest:ct_string("With Distinct #usn8[`6esn`..][$``..] As `2esn` Match (`1esn` {#usn7:$`1esn` Ends With 0X0123456789ABCDEF,`3esn`:.12 Starts With _usn3 Starts With $``}) Where True Starts With Null Remove (:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}).`6esn`!,[01 Is Null,9e1[..123456789],010 Starts With $`` Starts With 0e0].`6esn`?,(:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[usn2 *0X0123456789ABCDEF..]->(usn2 :`7esn`)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}).`5esn`? Union All Return Distinct .0[$``..0X7],(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})[..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})] As #usn8,01234567[$`2esn`][0Xa] As `5esn` Order By True[0xabc..01234567][$`8esn`..$@usn6] Descending,(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..] Desc,(:`2esn`)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})-[@usn6? *0X0123456789ABCDEF..{``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6}]-(`5esn` :@usn5) Is Null Is Null Ascending Skip Filter(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) =~{#usn7:1000[12e12][`5esn`]}"), + octest:ct_string("Delete $usn1[Null][`8esn`],`5esn`[..True][..0.e0] Merge @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) On Match Set `1esn`+=Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..]"), + octest:ct_string("Detach Delete 123.654[..0.e0][..'s_str'] Delete 01234567[$0..][0..],`1esn`[0.0..1e1][0x0..7]"), + octest:ct_string("Merge `5esn`=({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})<-[_usn4?:@usn6|:`7esn`]->(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})<-[`8esn`:usn1|`4esn` *0Xa{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]->(:`8esn`) On Create Set {usn1:$_usn4 Starts With $1000 Starts With 12}.@usn6! =[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])] On Create Set `5esn`+=All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],`2esn` =False Starts With 0X7 Starts With 01234567"), + octest:ct_string("Optional Match `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((`6esn` :`5esn`)<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`5esn` :`4esn`:`6esn`)) Where 07 Is Not Null Is Not Null Merge @usn5=(((_usn3 :`6esn`:_usn3)-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})))"), + octest:ct_string("Optional Match ((({`7esn`:999 In 0e0})<-[#usn7 *01..123456789]->({`2esn`:`7esn` In 010 In usn1,`8esn`:$0[123.654..0.e0]})<-[? *7..]-(usn1 {@usn5:_usn4[$usn1..01234567][123.654..`5esn`],`5esn`:1.e1 =~$_usn4}))) With Distinct *,0Xa[Count(*)..],[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,0xabc In .12 In 0Xa Descending,.0 Contains .e12 Contains 0 Desc Skip All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1)[None(@usn6 In 010[`5esn`] Where 00[1.e1..])..[$12[$usn1..][Count(*)..],$@usn5 Contains 's_str' Contains \"d_str\"]][Extract(`3esn` In 9e1 Contains $999 Where 0e0 Starts With 999 Starts With `2esn`|9e1 Ends With Count(*) Ends With $7).._usn4(`1esn`[0.12..][@usn6..],#usn8 =~0.e0)] Limit `1esn` Starts With 9e1 Create ``=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}) Union Create `2esn`=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}),(({@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`})<-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->({usn2:$`2esn` Is Null,#usn8:.0 Is Null Is Null})) Union Merge `8esn`=(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})"), + octest:ct_string("Unwind $7 In $usn1 In 999 As `2esn` Create (`3esn` )-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]})"), + octest:ct_string("Remove Any(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]).`4esn`! Optional Match (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Where $`7esn`[.e1][12.0] Union All Unwind _usn3 In $`8esn` In @usn6 As #usn7 Union Delete 123.654 In $`7esn` Return Distinct *,12.e12 Contains `6esn`,12[``...e12] As `6esn` Order By 's_str' Is Not Null Descending,123.654[`4esn`..12] Asc,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) Ascending"), + octest:ct_string("Match #usn8=((`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)) Union Remove None(@usn5 In 's_str'[0..] Where 01234567[\"d_str\"..`4esn`])._usn4! Union All Merge ((`2esn` :_usn3)-[? *0xabc{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})) With Distinct *,{@usn6:$`3esn`[.e1][_usn4]}[`8esn`(Distinct $``[True])..] As #usn8,999[12e12..$_usn4] As usn2 Where `6esn`[$1000][`3esn`] Unwind `6esn`[$`8esn`][9e1] As `7esn`"), + octest:ct_string("Merge @usn5=(({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})) On Create Set [@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null|Count(*) Starts With usn2 Starts With `7esn`].`3esn` =[@usn5 In 's_str'[0..] Where 123456789 =~12 =~'s_str'|0Xa In #usn7 In 's_str'] Is Not Null Union All Match _usn4=((:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})) Where 123456789[12] Merge #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}) On Match Set _usn3:`7esn` On Create Set Single(@usn6 In 010[`5esn`] Where 123.654).`6esn`? =0.e0[0X0123456789ABCDEF..],(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}).`3esn`? =999[..`1esn`][..07],[@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1].`6esn` =`7esn` Starts With @usn5 With Distinct 0Xa In #usn7 In 's_str',`4esn` Starts With 0e0 As `7esn` Skip (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`) Where .e0"), + octest:ct_string("Remove [7 =~`4esn`,`2esn` Starts With $`7esn`].`8esn`! Delete `6esn` Starts With `6esn` Union All Create @usn6=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}),((:#usn8:`1esn`$`7esn`)-[`6esn`?:usn2]-(@usn6 {@usn6:0e0 =~7 =~12.0})-[`7esn`:`4esn`|@usn5 *12..]-(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})) With Distinct #usn8 Is Not Null,.e0[..9e12][..07] Skip usn1 Limit 1000 Contains [True Contains 0x0 Contains $_usn3,_usn3 Contains 9e12 Contains `8esn`] Contains [12.0 In 123.654 In _usn4] Where $``[..\"d_str\"][..$#usn8] Union Unwind 0x0[12e12..$`7esn`] As `7esn`"), + octest:ct_string("Match @usn5=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),({`4esn`:.e1[..$`3esn`][..01]})-[`5esn`:#usn7|@usn5]-(`5esn` :`4esn`:`6esn`) Delete 7 Is Not Null Union All Create ((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) Unwind 123.654 Contains @usn5 Contains $`5esn` As `6esn` Union Remove All(#usn8 In `7esn`).`1esn` With Distinct *,999 Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains {_usn3:123.654 In $`7esn`} As `6esn`,.e0 Is Not Null Is Not Null As `7esn` Order By _usn3 In $`8esn` In @usn6 Desc Return Distinct [$#usn7 Ends With 's_str' Ends With 0X7] Starts With (usn1 :@usn6)<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}) Starts With [`5esn` In `7esn`[$usn2..][$123456789..] Where $`1esn` Starts With Count(*)] As #usn8,0.12 Is Null Is Null As _usn3,_usn4[0] As `2esn` Skip `1esn`[$@usn6][07]"), + octest:ct_string("Merge ((:`3esn`{`1esn`:`7esn`,`8esn`:12e12 =~$`7esn`})-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})) On Create Set _usn3 =@usn6 Is Not Null Is Not Null,`5esn` =[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]][Any(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..])..Single(usn2 In False[$usn1][0x0] Where 9e1 Is Not Null Is Not Null)] On Match Set #usn8 =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Is Null Match (`3esn` {usn2:$usn2[`4esn`..9e12]}),usn1=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) Where $`4esn` Contains _usn3 Contains `8esn` Union With 010 Starts With $`` Starts With 0e0 As @usn5 Where $`3esn`[$_usn4..0Xa] Union All Merge (`5esn` :`4esn`:`6esn`)<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]}) On Create Set `4esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1 =(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..])"), + octest:ct_string("With Distinct 0e0[``],0X7 In $#usn7 Limit 12e12[12e12][$#usn7]"), + octest:ct_string("Remove count(@usn5[$`6esn`..][$999..],_usn4[0]).`7esn`,_usn4(.12[0X7..][12e12..],9e1).#usn7! Remove {@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}.`8esn`!,{`4esn`:12[$`5esn`..][False..]}.``? Union All With Distinct *,[1000[0e0][1e1],12.0 Is Null Is Null] Is Not Null Is Not Null Order By $`5esn`[$`6esn`][`2esn`] Descending,`6esn`[..$`4esn`] Descending,12 Starts With $123456789 Starts With .e12 Ascending Limit [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Detach Delete usn1 Ends With 0.0,$999 In 1e1,`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..]"), + octest:ct_string("Merge (((`6esn` :#usn7:`5esn`)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(_usn4 :#usn7:`5esn`))) Remove [`3esn` In `2esn`[..01][..True] Where 00[01234567][False]].`7esn`!,Any(usn2 In False[$usn1][0x0] Where 12.e12 =~0X0123456789ABCDEF =~1.e1)._usn3,Extract(#usn7 In 9e1[$`1esn`..] Where $`7esn`[$_usn4][.e0]|$`3esn`[..$1000][..$123456789]).`1esn`?"), + octest:ct_string("With Distinct *,Count ( * ) In True In @usn5 As `2esn` Skip `7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] Union All Delete _usn4[$usn1..01234567][123.654..`5esn`] With *,1.e1 Ends With $#usn7 As usn2,@usn5[01][@usn5] Skip $`5esn` Limit (`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Is Not Null"), + octest:ct_string("Delete 12.e12 Ends With $``,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null,{#usn7:usn1 In ``}[None(`3esn` In `2esn`[..01][..True])..Extract(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..])]"), + octest:ct_string("Merge _usn4=(#usn8 :`6esn`:_usn3)<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`2esn` :usn2)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) On Create Set Single(`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5).usn1? =`6esn`[9e12..],`7esn`+=$0[0.e0] Merge `2esn`=(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[`4esn`:usn2]->(`3esn` :_usn4) On Create Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null On Create Set #usn7+=`6esn`[$`8esn`][9e1]"), + octest:ct_string("Unwind Extract(#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null)[All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])..] As `7esn` With *,.e0 Is Null As `2esn`,(:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Skip True Contains 0x0 Contains $_usn3 Limit 's_str' Ends With _usn4 Ends With 0e0 Where 1.e1[$usn1]"), + octest:ct_string("Merge (({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})) Union Remove None(@usn6 In False Contains 0 Contains $`6esn` Where #usn8 Is Not Null)._usn4!,Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc).`1esn`!,{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}.``? Remove Single(#usn7 In 9e1[$`1esn`..] Where ``[$`3esn`]).#usn7!,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3])._usn3?,{usn2:`2esn`[..$_usn3]}.usn2? Optional Match (`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]->(_usn4 {_usn4:Null[..010][..1000],_usn3:.0 Is Null Is Null}) Where 00 Ends With `` Ends With 12.e12"), + octest:ct_string("With Distinct *,usn1 Contains 010 As `6esn` Skip 999[@usn5..][Null..] Where `5esn` Contains `1esn` Contains usn1 Return 12.e12 =~0X0123456789ABCDEF =~1.e1 As `6esn`,.e12[`2esn`..010],.e0 Starts With $@usn6 Starts With $7 As `5esn` Order By Single(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) Contains Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0[1e1][$usn1]) Contains {`4esn`:9e1 Contains 12} Ascending Skip usn1 Limit 123456789 Contains 0Xa Union All Merge #usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})))"), + octest:ct_string("Merge `7esn`=({@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`})<-[`5esn` *0xabc]->(_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]}) Union All Unwind `8esn` Contains Count(*) Contains $#usn7 As _usn4 With {``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}[..Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)][..Any(#usn7 In $999 In 1e1 Where 07 In `6esn`)] As usn1,`8esn` Is Not Null Is Not Null As `4esn` Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Limit Any(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]) =~[9e12 =~@usn6,01 Ends With 0Xa Ends With 0X7,$@usn6[$0..9e12][.e12..Null]] Union All Create (((usn2 :#usn8:`1esn`)-[`5esn`?:`7esn`|:`2esn` *0x0..]->(`8esn` :`8esn`)<-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(#usn7 :`2esn`))),((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) Unwind 9e1 =~123456789 =~999 As ``"), + octest:ct_string("Delete $usn1[1000][.12] Union With Distinct $usn2[`5esn`..][01234567..] As #usn8 Order By .0 Ends With 999 Ends With $`5esn` Ascending,01234567 In $@usn6 In $#usn7 Desc Where .e0[01234567..$`8esn`] Remove Any(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]).`4esn`! Match (((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2)))"), + octest:ct_string("With Distinct *,True[$_usn3..] As usn1 Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Descending Limit [0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]][{usn2:$@usn6 Ends With `1esn`,_usn3:`7esn`}..][{@usn6:1e1 Is Not Null Is Not Null,`8esn`:$`1esn` Starts With $`4esn` Starts With $_usn3}..] With Distinct [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Any(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`),usn2[usn2..0X7] As `1esn` Order By 's_str'[0x0..1.e1] Asc Limit 0xabc[..$1000][..`5esn`] Where `2esn` Starts With 12.e12 Starts With 12.0 With *,0.0 Contains `3esn` Contains @usn5 As #usn8,[`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] As `4esn` Order By [#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Descending,0x0[usn1..usn1] Asc,`2esn` Starts With $`7esn` Descending Union Return *,`8esn` =~@usn6 =~$`2esn` As _usn3 Optional Match @usn5=(`7esn` :`3esn`{`2esn`:999[123.654..$usn2][Count ( * )..0x0]})-[`2esn`?:usn1|`4esn` *00..0Xa]-(`4esn` :`4esn`:`6esn`),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Where 12 Starts With #usn7 Starts With 0Xa Return $7 Ends With Count ( * ),`6esn` =~Null As `4esn` Skip 1e1[_usn3] Limit [`2esn` Is Null] Is Null Is Null Union All Match ``=(:_usn3{`7esn`:$999 Ends With .e0})<-[`8esn`?:`2esn`|`4esn`{usn2:#usn8[`6esn`..][$``..]}]-(@usn6 {`6esn`:$`5esn` =~usn1,`5esn`:$`` Starts With $1000 Starts With @usn6})-[?{_usn3:010[`5esn`],_usn4:#usn8 =~.e0}]-(#usn8 :`3esn`{`5esn`:$@usn6 Ends With `1esn`}),`3esn`=((`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) Optional Match ((({`7esn`:999 In 0e0})<-[#usn7 *01..123456789]->({`2esn`:`7esn` In 010 In usn1,`8esn`:$0[123.654..0.e0]})<-[? *7..]-(usn1 {@usn5:_usn4[$usn1..01234567][123.654..`5esn`],`5esn`:1.e1 =~$_usn4})))"), + octest:ct_string("Delete 12.e12 Starts With \"d_str\" Starts With 9e1,'s_str' Starts With 9e0 Starts With usn2,$`4esn`[..$`8esn`][..Null] Optional Match (`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}) Return Distinct *,00 Ends With $`1esn` Ends With `7esn`,$@usn6 Is Not Null Is Not Null As `8esn` Order By (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Descending,[#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Descending Skip [usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Limit 12.e12 =~.0 =~usn1 Union All Detach Delete 0.e0 =~00 Unwind 9e1 =~123456789 =~999 As @usn5"), + octest:ct_string("Remove {`8esn`:usn2 =~7,`5esn`:.e0[01234567..$`8esn`]}.#usn8 Remove #usn7:`1esn`:_usn4,[`4esn` Ends With 12 Ends With .12,`5esn` Contains `1esn` Contains usn1,$`2esn` =~9e12].@usn5! Union All With 0.e0 Is Not Null Is Not Null As _usn4,0X0123456789ABCDEF In $usn2 In `4esn`,$usn1 Is Not Null Is Not Null Order By 01234567[$@usn6..$#usn7][123456789..12e12] Desc,Single(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1)[Filter(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])..][Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.0 In 123.654 In _usn4)..] Ascending Skip Null[..0] Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]) Where 9e12 Starts With 1e1 Unwind `3esn`(Distinct $123456789[...12][..@usn6])[{usn2:$`2esn` Is Null,#usn8:.0 Is Null Is Null}][#usn7(Distinct $@usn6 Is Not Null Is Not Null,``[7.._usn3])] As `` Create (`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}),(`8esn` {usn1:0e0 =~7 =~12.0,`7esn`:usn2 Starts With .0})<-[:_usn4]->(_usn4 {usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Union All Remove {``:0Xa =~False =~@usn5,`6esn`:$`2esn` Starts With `4esn` Starts With $usn1}.@usn5,All(#usn7 In 9e0[$1000] Where 12e12 Starts With $0 Starts With $`2esn`).#usn7?"), + octest:ct_string("Unwind 0.12[$0..$usn2] As `4esn` Union Remove `5esn`:#usn8:`1esn`,[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|.e0 Contains $#usn8].@usn6!,[123.654 Starts With 0X7 Starts With $`4esn`,`6esn` Is Null Is Null].@usn5 Optional Match `6esn`=(((:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({#usn8:False Starts With 0X7 Starts With 01234567})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5))) With Distinct 0Xa Ends With $`3esn` Ends With $1000,Extract(@usn5 In 's_str'[0..] Where 12e12 Is Not Null) =~[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]],$#usn8[@usn6..] As `7esn` Order By (`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Desc,$usn1[Null][`8esn`] Desc,$`5esn` In `2esn` In `2esn` Asc Limit [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Ends With `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Ends With [$`1esn`[``][07],`7esn`] Where _usn3[$`1esn`..] Union All Unwind [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] As `4esn` Return #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Order By `6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] Desc Limit $_usn4[$_usn4] Remove None(`5esn` In 0X7 In $#usn7 Where usn1 =~$`7esn`).`3esn`!,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $123456789 In 0.12)._usn3?,(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]}).`6esn`?"), + octest:ct_string("Unwind .e0 Ends With $123456789 Ends With 0xabc As #usn7 Match `3esn`=(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0}),usn1=(({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) Where \"d_str\"[True..]"), + octest:ct_string("Remove {_usn3:_usn4 Is Null Is Null}.``,``(@usn6[`1esn`..]).`7esn`! With Distinct 0e0[``],0X7 In $#usn7 Order By Extract(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1|``[$`3esn`])[(:`6esn`:_usn3$usn2)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)..All(_usn3 In _usn3 Contains _usn4 Contains $@usn5)] Desc,`5esn`[$`7esn`..$@usn5] Ascending Where 01 Ends With 0Xa Ends With 0X7 Union All With *,.e0 Is Null As `2esn`,(:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Skip True Contains 0x0 Contains $_usn3 Limit 's_str' Ends With _usn4 Ends With 0e0 Where 1.e1[$usn1] Union With Distinct @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1|$@usn5 In $`6esn` In 12e12) Ends With (:`7esn`{#usn7:0 =~1.e1 =~$#usn7})<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}),`1esn`($`4esn`[`4esn`][Count(*)],`2esn` Starts With $`7esn`) =~Extract(@usn5 In 9e0 Ends With $#usn8 Where .e0 Starts With $@usn6 Starts With $7) =~{`3esn`:_usn3[`2esn`..0X7][0.e0..$`3esn`]} Where False Is Null Return #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Order By `6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] Desc Limit $_usn4[$_usn4]"), + octest:ct_string("Detach Delete [$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa),`8esn` Is Null,.0 Starts With `1esn` Merge ((#usn7 :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] Union With Distinct *,12.e12 Contains `6esn`,12[``...e12] As `6esn` Limit Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null] Optional Match `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}),(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}) Where `2esn` =~.e12 =~0X0123456789ABCDEF Remove Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|@usn5 Contains 9e0)._usn4?"), + octest:ct_string("Match `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),`8esn`=((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[``:`5esn`|:usn2{`5esn`:_usn4[0]}]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})) Where 1000[12e12][`5esn`] Union Merge @usn5=((`2esn` {`7esn`:999 In 0e0})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)) On Create Set `8esn` =$#usn8[True][9e0],`1esn`+=@usn6 Contains .12 Contains $usn1 On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1]"), + octest:ct_string("Return Distinct `1esn`(.0 Starts With `1esn`,01[`3esn`..][Count(*)..]) In [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] As `4esn`,`7esn`[$usn1..]['s_str'..] Detach Delete 00[12e12][$`7esn`],\"d_str\" Is Null Is Null,usn2[1.e1] Delete {``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]}[#usn7(Distinct $`1esn`[``][07])..None(@usn6 In 010[`5esn`] Where $`3esn` Ends With 01234567)]"), + octest:ct_string("Return 0x0[0.0] As ``,Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) Contains [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where .0 Is Null Is Null|`3esn`[0x0..]] Contains [999[12.e12],#usn8 Is Null Is Null,1.e1 =~$_usn4] As `1esn` Skip 0X0123456789ABCDEF Ends With `2esn` Ends With $`7esn` With Distinct $@usn6[12.0][12.0] Skip `7esn`[$usn2..][$123456789..] Where 0xabc =~$@usn5 Return $_usn4 Is Null Is Null,usn2 Starts With .0 Order By 9e1[$#usn8][$1000] Descending Limit #usn7 =~9e12 Union Unwind `4esn` Starts With 0e0 As `1esn` Remove {_usn3:_usn4 Is Null Is Null}.``,``(@usn6[`1esn`..]).`7esn`! Return Distinct 1.e1[..123456789][..999],_usn3[12.e12..][`5esn`..] As @usn6,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `5esn` Order By 123456789 Contains 0Xa Descending,[@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00|`5esn`[$`7esn`..$@usn5]] Is Not Null Is Not Null Desc,00[False..0e0] Ascending"), + octest:ct_string("Return $_usn3[_usn4..] Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Create @usn5=(({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(usn1 :_usn3{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})),(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]}) Union With $#usn7 =~`2esn` As `4esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc Skip usn2 Is Null Is Null Limit @usn6 Is Not Null Is Not Null Where 's_str' Ends With `7esn` Ends With 010 With Distinct *,(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) Is Not Null As `3esn`,$0 Starts With @usn5 As @usn5 Order By 's_str' Contains 12.e12 Contains $`4esn` Descending,False Contains 0 Contains $`6esn` Ascending,9e1 =~$_usn4 =~1.e1 Desc Limit 01234567 Starts With True Starts With $999"), + octest:ct_string("With $@usn5 Ends With @usn5 Ends With 0xabc Union With Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By [Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] Ascending,None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) Descending Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]) Where @usn6 Is Not Null Is Not Null Create (`3esn` )-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]}) Remove Any(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0).usn1,All(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])._usn4!,7._usn4 Union All Merge #usn8=((`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})) On Create Set `4esn`+=$`4esn`[07..],`1esn` =123.654[`4esn`..12] On Match Set `6esn`(Distinct 0Xa[$`8esn`..][$_usn4..],0xabc In Null).`2esn`! =(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[? *..010{#usn8:False Is Null}]->(#usn7 {#usn7:1.e1 Starts With 9e12})<-[:_usn3|:`7esn` *00..0Xa]-(`1esn` $`4esn`)[..[0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]]][..(:`2esn`{_usn3:@usn5[0.0..0X7]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null).`7esn`? =Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])],Extract(`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]).@usn5 =$@usn6 Ends With 123456789 Ends With 12.0 Remove [0[$`5esn`],$999 In 1e1,$`6esn` Is Null].`5esn`,(:usn1:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]})<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1}).`3esn`,{`6esn`:$`7esn`[0.12]}._usn3!"), + octest:ct_string("Create @usn6=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}),(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[?:`7esn`|:`2esn`]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]}) Union Merge ``=(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) On Match Set usn2+=`6esn`[$`8esn`][9e1] On Match Set Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa).@usn6! =0.e0 Is Not Null Is Not Null,`1esn` =07 In `6esn` Remove `4esn`:`3esn` Create (usn1 :usn1:`3esn`),((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` ))"), + octest:ct_string("With Distinct _usn4 Contains `` Contains 1.e1,1000[..`2esn`][..$@usn6] As @usn6,0x0[@usn5][$#usn8] Order By $usn2[`5esn`..][01234567..] Asc,$`7esn`[.e1][12.0] Asc,$`5esn` =~usn1 Ascending Skip Count(*) Ends With usn1 Unwind 07 In 0Xa In usn1 As #usn8 Unwind 0x0[12e12..$`7esn`] As `7esn` Union All Detach Delete `4esn`[..$@usn6][..@usn6] Detach Delete @usn6[999..$_usn3][0.12..$@usn5] Union Create `3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))),usn2=(:#usn8:`1esn`$`7esn`) Return *,$@usn5 Order By ``[$`3esn`] Asc,[1000[0e0][1e1],12.0 Is Null Is Null] Is Not Null Is Not Null Asc,.e0 =~$`7esn` =~0X0123456789ABCDEF Descending Limit {`8esn`:usn2 =~7,@usn5:`6esn` Ends With _usn4 Ends With False} Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]] Ends With (_usn4 :_usn4)<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[ *..07{`6esn`:Count(*)[9e12..12.0]}]->(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12})"), + octest:ct_string("Remove `8esn`:``:usn2 Return Distinct *,`1esn` Contains `2esn` Order By (:`2esn`)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})-[@usn6? *0X0123456789ABCDEF..{``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6}]-(`5esn` :@usn5) Is Null Is Null Asc,7 Is Not Null Ascending Delete None(`3esn` In `2esn`[..01][..True] Where usn1 In ``)[None(usn2 In 7[12] Where 12e12 =~$`7esn`)..],$`1esn` =~1e1 Union Optional Match `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})),usn2=((#usn7 {`8esn`:`7esn` In 010 In usn1})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})) Create (#usn7 {`6esn`:$`2esn` Contains Count(*)})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})"), + octest:ct_string("Delete 01234567[$0..][0..],`1esn`[0.0..1e1][0x0..7] With Distinct Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..],{#usn8:12.0 Ends With `2esn`,@usn5:usn1 Starts With 00}[Any(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..],999 In 0e0 As #usn7 Order By `1esn` Starts With 9e1 Desc Where $@usn5[..$#usn7]"), + octest:ct_string("Delete [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12] Starts With usn2(01 Is Null) Starts With Filter(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),12[0e0] Union Delete 's_str' Is Not Null,.e1[..$`3esn`][..01],0.e0[$`4esn`..`2esn`] Match ((_usn3 :`8esn`{#usn8:False Starts With 0X7 Starts With 01234567})) Merge ((:_usn4{`1esn`:0e0 =~0Xa =~$999})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(`` :`5esn`{@usn5:123456789 =~@usn6})<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}))"), + octest:ct_string("Remove usn2($usn1[`2esn`..][$`2esn`..])._usn3!,[@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7]|1e1 In 0.0 In 0X0123456789ABCDEF].#usn7!,[#usn7 In $999 In 1e1 Where .e12 Starts With $12 Starts With .e12|$usn2[`4esn`..9e12]].`6esn` Unwind 12.e12 Starts With 1000 As @usn5"), + octest:ct_string("Create ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)),((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Optional Match ((`1esn` {_usn4:`8esn` Is Null})),`2esn`=(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Where usn2[1.e1] Union All Remove {`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}.`2esn`!,(_usn4 :`3esn`)-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}).`4esn`,All(_usn4 In 12e12 In 123456789 Where .0 Ends With Count ( * )).`3esn` Remove (`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[ *0..01]-(@usn6 :_usn3{@usn6:07 Is Not Null Is Not Null,`5esn`:0e0 =~7 =~12.0}).`2esn`?,Extract(@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00).@usn5!"), + octest:ct_string("Return Distinct *,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] As `1esn` Union All Create _usn3=(`1esn` )<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7}) With *,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) As `7esn` Order By (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc Where 1.e1 In 1000 In _usn3 Delete 0x0[``..],Any(usn2 In 7[12] Where $_usn3 Is Null) Is Not Null Is Not Null,[`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Union Remove All(@usn6 In 010[`5esn`] Where 1.e1[$usn1]).`6esn`!,Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5 Detach Delete 0xabc[$999..][$usn1..],12[..$999][..$`2esn`],Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|$`8esn`[..True][.._usn4]) Ends With Single(_usn4 In 12e12 In 123456789 Where $usn2 Is Not Null Is Not Null) Create (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})))"), + octest:ct_string("Unwind $``[..\"d_str\"][..$#usn8] As _usn4 Union All Merge _usn3=((@usn6 :`8esn`)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})) Union All Remove {`6esn`:Null =~`6esn`}._usn3!,[usn2 In False[$usn1][0x0] Where `4esn` Starts With 0e0].`6esn`!,[010[`5esn`],0Xa[..Count ( * )][..$123456789]]._usn3 Unwind [#usn8 In `7esn` Where .e0 Starts With $@usn6 Starts With $7|1000[12e12][`5esn`]] Ends With [`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8] Ends With [$``[..\"d_str\"][..$#usn8],$_usn4 Starts With $1000 Starts With 12,#usn7[.e0]] As `8esn`"), + octest:ct_string("Remove [`1esn`[$@usn6][07],123.654 Starts With 0X7 Starts With $`4esn`,$`5esn` =~$`8esn` =~usn2].`8esn`,Filter(_usn3 In _usn3 Contains _usn4 Contains $@usn5)._usn4?,[@usn6 In 010[`5esn`] Where 12e12 In 123456789].`7esn`? With Distinct 0X0123456789ABCDEF Is Not Null Is Not Null Order By #usn8[`8esn`..] Descending,9e1[`1esn`..0][999..1e1] Desc Create @usn6=((#usn8 :_usn3)<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`)-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})) Union Delete ``[$`1esn`],All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] With Distinct usn2 =~$`` =~$`8esn` As `2esn`,'s_str'[0x0..1.e1] As `6esn`,$`5esn`[\"d_str\"..] As `5esn` Order By 1.e1 Contains `6esn` Contains 0.e0 Descending,07[..07][..0X7] Descending Skip usn1[False..] Limit `6esn`[$1000][`3esn`] Where 0x0[0X7]"), + octest:ct_string("Unwind 12['s_str'][01] As `6esn` With $999 =~.0 As usn2 Limit 's_str' Ends With _usn4 Ends With 0e0 Where 0Xa[$`8esn`..][$_usn4..] Create ``=((:`3esn`{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})),(((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}))) Union All Remove {_usn4:$``[True],`3esn`:$#usn8[@usn6..]}.@usn5!,[$@usn6[00],$@usn5 In $`6esn` In 12e12].`6esn`?,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null Is Not Null|1.e1 =~.12).usn2! Optional Match @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) Where Count ( * )[@usn6] Union Create `6esn`=((:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]})),`3esn`=(:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Match ((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(:`8esn`{``:$`1esn` =~999})),`8esn`=(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`)-[?:usn2{#usn7:0 =~1.e1 =~$#usn7}]->(`8esn` $12) Detach Delete 0X7[..$`8esn`]"), + octest:ct_string("Detach Delete None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`])[Single(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Is Not Null Is Not Null)],`1esn` Is Not Null Is Not Null With *,{@usn6:$`3esn`[.e1][_usn4]}[`8esn`(Distinct $``[True])..] As #usn8,999[12e12..$_usn4] As usn2 Where 01 Ends With 0Xa Ends With 0X7 With `2esn`[$usn2][12.0],Single(#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6])[Filter(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])..] As _usn4 Order By $`7esn`[..@usn6] Ascending Limit [`2esn` Is Null] Is Null Is Null Where usn1[...e12][..1.e1] Union Optional Match ((:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})),(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Where _usn3 Starts With 12e12 Starts With `5esn` Delete 9e1[$`1esn`..] With (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Order By usn1 Ends With 9e0 Ends With 9e0 Descending,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Descending Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Union All Delete [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null),0x0 In `8esn` Detach Delete usn1[..$@usn6][..00] Match _usn4=({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})<-[#usn7 *01..123456789]->({`2esn`:`7esn` In 010 In usn1,`8esn`:$0[123.654..0.e0]})"), + octest:ct_string("Return Distinct False[$usn1][0x0] As #usn7 Limit $`8esn` Is Null Union Unwind usn2[12e12..]['s_str'..] As @usn6 Union Detach Delete $999 In 12 In 1.e1,usn2 Is Not Null"), + octest:ct_string("With Distinct *,123.654[`4esn`..12] Order By 0.0[$usn2..] Asc,$7 Starts With 12.e12 Starts With $@usn6 Asc Limit $``[..\"d_str\"][..$#usn8] Where .e1[..\"d_str\"][..$123456789] Optional Match `1esn`=(`5esn` :`5esn`{#usn7:``[$`3esn`]}) Where $`8esn`[..True][.._usn4] Detach Delete None(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``)[[`5esn` In 0X7 In $#usn7 Where $@usn5 Starts With `5esn` Starts With 01234567|$``[..$#usn7][..`6esn`]]..Single(@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn1..]['s_str'..])] Union Optional Match (:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]}) Where 12e12 In $`5esn` Union All Return Distinct $usn2 =~0.e0 =~@usn6,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As _usn3,0X7[`2esn`..] As `5esn` Skip `1esn` Contains $999 Contains 0.0 Limit ``[..False][..`3esn`] With *,`` =~.12 As #usn7 Skip usn2 =~7 Limit 0x0 In 0.e0 In #usn8 Where `2esn`[..01][..True] With Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Order By @usn5[0..] Ascending,$@usn5 In $`6esn` In 12e12 Desc,#usn7 In 0.e0 Desc Skip {`8esn`:$_usn4 Starts With 12.e12} Is Null Is Null Limit 999 Contains $1000 Where 999 In #usn8 In $``"), + octest:ct_string("Unwind $@usn6[_usn3..][$999..] As `4esn` Optional Match `8esn`=(:`4esn`:`6esn`{usn2:$`8esn` Is Not Null Is Not Null})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Where $999 Ends With .e0 Union All Delete `1esn` Contains $999 Contains 0.0,999[..`1esn`][..07] Union All Detach Delete True Contains 's_str' Contains $usn1,$`5esn`[..00] Delete .e1[7..][9e0..],$`5esn` In _usn3 In 0.0"), + octest:ct_string("Merge _usn3=(`1esn` )<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7}) On Create Set `6esn` =0e0 Is Not Null,_usn3 =@usn5(Distinct 1e1 Is Not Null Is Not Null,`1esn` Starts With 0xabc Starts With $usn2)[..Extract(`3esn` In 9e1 Contains $999 Where usn2[12.e12..]|.12[01][@usn5])],`7esn`+=12.e12 Contains 9e1 Union Optional Match usn1=((`3esn` {usn2:$usn2[`4esn`..9e12]})<-[?{@usn5:_usn3 Ends With 7 Ends With $`1esn`}]->(_usn3 :_usn4)<-[_usn4?:`3esn`]-(:_usn3{_usn4:.e1[7..][9e0..]})),`7esn`=(usn1 :`7esn`) Return Distinct Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null),9e1[usn1..0x0][12.e12..12.0] Order By 00[12e12][$`7esn`] Ascending,@usn5[0..] Descending,Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Descending Limit 0.e0[$`4esn`..`2esn`] Merge `5esn`=(({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]->(#usn8 :``:usn2)-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}))"), + octest:ct_string("Detach Delete `` Is Null,12 Starts With $123456789 Starts With .e12,#usn7[$`3esn`..$1000][0.0..`2esn`] Union Merge (`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null}) Create `1esn`=((@usn6 {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})-[:``{``:.0[$``..0X7]}]->(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})-[ *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})) Remove {#usn8:`1esn`[usn1][0xabc],_usn3:$`6esn`[1.e1][$_usn3]}.`3esn`,{usn1:@usn6[9e12]}.`4esn`!"), + octest:ct_string("Match ((({`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[`3esn` *..07{usn2:True Contains 0x0 Contains $_usn3}]-({``:``[$`3esn`],#usn8:$@usn6[00]}))) Unwind $_usn3 Is Not Null As _usn3 With Distinct _usn4 Is Null Is Null As @usn5,.e12[$@usn6..00][01234567.._usn3],Extract(@usn5 In 9e0 Ends With $#usn8 Where $`8esn`[123456789..][$@usn5..]) =~None(#usn7 In True Contains 's_str' Contains $usn1 Where 's_str' Starts With 9e0 Starts With usn2) As @usn5 Skip 9e12 Ends With 12e12 Ends With 12 Limit (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Where 's_str'[0..] Union All Return Distinct *,07 As `4esn` Order By 1000[0e0][1e1] Asc,Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null Asc Skip 9e12[..1e1][..'s_str'] Detach Delete [9e12[9e1]][[_usn3[`2esn`..0X7][0.e0..$`3esn`]]..] Union All Create ``=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}) Delete Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`2esn` =~9e12) Is Null Is Null,0Xa Contains `8esn` Contains 0xabc,Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1)"), + octest:ct_string("Remove [#usn7 In True Contains 's_str' Contains $usn1 Where $#usn7[..$`4esn`][..01]|1.e1 Is Null Is Null].#usn7?,(#usn8 :`2esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4)-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}).`8esn`!,`1esn`(Distinct `3esn`[7..0.e0][0.0..123456789],`1esn` Starts With 0xabc Starts With $usn2)._usn4!"), + octest:ct_string("Unwind $@usn6 Ends With `1esn` As usn1 Detach Delete [$usn1[`2esn`..][$`2esn`..]] Contains Extract(usn2 In 7[12] Where $_usn3 Is Null|.e12 Is Null Is Null),12e12 Ends With 0.0 Ends With usn1 Unwind `6esn`[..Count ( * )][..$_usn4] As usn2 Union All Delete None(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1)[..{@usn5:$@usn6 Is Not Null Is Not Null}][..{`3esn`:1e1 In 0.0 In 0X0123456789ABCDEF}] Union With 0.e0 =~00 As `3esn`,(`2esn` {`7esn`:999 In 0e0})<-[`8esn`?:`2esn`|`4esn` *01..123456789{`8esn`:$`4esn` Is Null Is Null,usn1:$1000 Starts With $`3esn` Starts With 0.e0}]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[ *0X7..{#usn8:.e0 Contains $#usn8}]->(`2esn` :`6esn`:_usn3) In (`8esn` :`6esn`:_usn3)-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(_usn4 {_usn4:123.654 In 12})-[?:#usn8|:`3esn` *0x0..]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) In {_usn4:.e0 Contains $#usn8,@usn6:1000[12e12][`5esn`]} As ``,#usn8[`6esn`..][$``..] As `2esn` Where 00 In @usn6 In 0"), + octest:ct_string("Delete 999 Starts With `4esn` Starts With 1000,Filter(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12])[..Extract(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])][..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]],Filter(_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4) Is Null Is Null"), + octest:ct_string("Optional Match ((_usn4 :#usn7:`5esn`)-[`4esn`:`1esn`|`3esn` *12..]->({`7esn`:9e12 =~@usn6})),((:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[`1esn`:`8esn` *7..]-(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Where Count ( * )[$`5esn`..][$7..] Merge #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))) On Create Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] On Match Set Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa).@usn6! =0.e0 Is Not Null Is Not Null,`1esn` =07 In `6esn` Union All With *,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``) Is Null Is Null Remove Any(@usn5 In 's_str'[0..] Where #usn7[0.12..])._usn3,[`6esn` In $`6esn`[``..][Count(*)..] Where @usn5[0.0..0X7]].``! Delete 0x0[usn1..usn1],`2esn` Starts With .e1 Starts With 9e12"), + octest:ct_string("With Distinct 12.e12 =~0X0123456789ABCDEF =~1.e1 As `6esn`,0.e0[..$7] As _usn3,usn1 Ends With 0.0 Order By None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,.e0 Starts With $@usn6 Starts With $7 Descending Limit $@usn6[..12] Where `3esn` Starts With 9e0 Starts With usn1 Match ((usn1 :_usn4{`4esn`:`7esn` Is Null})<-[`8esn`?:`2esn`|`4esn` *01..123456789{`8esn`:$`4esn` Is Null Is Null,usn1:$1000 Starts With $`3esn` Starts With 0.e0}]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})) Union Merge ((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})) On Create Set usn1 =`3esn`[123456789],`3esn` =9e1[.12][`7esn`] On Match Set All(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).`3esn`! =12.0[$12..$_usn4] Union All Create `7esn`=(((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}))),`2esn`=((`6esn` :#usn7:`5esn`)<-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]->(:#usn8:`1esn`$`7esn`)) Create `6esn`=(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[@usn6:`1esn`|`3esn` *0X7..]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}),(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(`3esn` :_usn4{`3esn`:12[..0e0][...e1],`4esn`:.0 Is Null Is Null})"), + octest:ct_string("With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Where Count ( * ) In 0.12 Delete $@usn5[_usn4] Create `1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}))"), + octest:ct_string("Optional Match `6esn`=((`6esn` :#usn8:`1esn`{`6esn`:usn1[..$@usn6][..00]})-[@usn5:_usn4 *0x0..]-(_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})) Return Extract(#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null)[All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])..] As `1esn`,$`6esn`[1.e1][$_usn3] As usn1 Order By [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null] Is Not Null Desc Limit Count ( * ) In 0.12 Detach Delete `6esn` =~`3esn` =~@usn6,(:_usn4$12)-[`1esn`?:`6esn`|:#usn8 *0Xa]-(usn1 :#usn8:`1esn`)[{`7esn`:$usn2 =~9e1}..] Union All Create #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))),#usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Create ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)),((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Optional Match ``=((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)) Where 010 Is Null Is Null Union All Unwind Filter(`5esn` In 0X7 In $#usn7 Where $@usn5 Starts With `5esn` Starts With 01234567) Is Null Is Null As `8esn` Return Distinct .e12 Starts With $7 Starts With .0,[$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) As #usn7,01 Contains usn2 Contains 0X0123456789ABCDEF As `8esn` Order By 0Xa =~False =~@usn5 Descending,12.0 In 010 Ascending,`4esn`[123456789] Ascending"), + octest:ct_string("Return Distinct _usn4(Distinct usn2[07..][.0..]) Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]|$`2esn` Starts With `4esn` Starts With $usn1) Ends With Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2),usn1[..$@usn6][..00] As #usn7,(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})[..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})] As `7esn` Order By 0X7[..$`8esn`] Desc,$123456789[12e12..9e0] Descending Create (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3)"), + octest:ct_string("Remove All(`6esn` In $`6esn`[``..][Count(*)..] Where 0X7['s_str'..][01..]).`2esn`!,(`3esn` {usn2:$usn2[`4esn`..9e12]})<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[_usn4?:@usn6|:`7esn`]->(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}).`4esn` Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) On Create Set #usn7+=.e0[..9e12][..07],`4esn`(True[$_usn3..],$999[``]).usn2 =123456789 Is Null Is Null,@usn5 =01[07..][1.e1..] On Create Set `5esn`+={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},usn2 =True Contains 0x0 Contains $_usn3 Remove All(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`).`6esn`?"), + octest:ct_string("With Distinct $7[999][usn1] As `6esn`,0 Ends With Count(*) Ends With False As `7esn` Order By Any(#usn7 In 9e0[$1000] Where .e0 Is Null) =~Extract(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0|$`3esn` In $usn2) =~{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Descending Skip 010[...12] Limit $`1esn` In .e0 Return Distinct `3esn`[$123456789..][$usn2..] Order By `3esn`[7..0.e0][0.0..123456789] Asc,``[$`1esn`] Desc Skip Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) Starts With [12 In $usn1 In 7,`6esn` Ends With Count ( * ) Ends With Count ( * ),`2esn` Starts With $`7esn`] Starts With usn2(Distinct .0[..'s_str'][..01234567],Count(*) In 12 In `6esn`) Limit `3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[12[..0e0][...e1]]..Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $123456789 Contains $#usn8 Contains ``)] Union With *,00[False..0e0] As _usn3 Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc Skip (`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}) =~[12 In $usn1 In 7] =~Filter(@usn5 In 's_str'[0..] Where 0.e0) Limit [_usn3 Ends With 7 Ends With $`1esn`,True Contains .e12,usn2 Is Not Null] Contains [$`2esn`[.0..][0.0..]] Contains (`6esn` :`8esn`)<-[_usn3 *0X0123456789ABCDEF..]-(#usn8 :`2esn`)-[`7esn`:#usn8|:`3esn` *0..01{`3esn`:07[_usn3..][`6esn`..],@usn6:``[usn1][`5esn`]}]->(:_usn3{_usn4:.e1[7..][9e0..]}) Where `2esn` Starts With $`7esn` With Distinct 999[@usn5..][Null..] Limit None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Where @usn5 Contains 9e0"), + octest:ct_string("Unwind 0e0[$999..0.0][$`8esn`..1.e1] As `` Union Remove `6esn`($`2esn` Starts With `4esn` Starts With $usn1,.12 Starts With _usn3 Starts With $``).usn2!"), + octest:ct_string("Unwind #usn7[0.12..] As `8esn`"), + octest:ct_string("Optional Match _usn4=(`5esn` :``:usn2)-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}),`2esn`=(:#usn8:`1esn`$`7esn`) Union Remove `3esn`:#usn7:`5esn`,[$123456789 In 0.12]._usn3!,None(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).@usn6! Merge `4esn`=({`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}) On Create Set #usn7+=Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] On Match Set `2esn` =9e1 Ends With Count(*) Ends With $7 Union All With *,.e12[.12..],_usn4 Ends With _usn4 Ends With 9e0 As `` Skip None(`3esn` In `2esn`[..01][..True] Where usn1 In ``)[None(usn2 In 7[12] Where 12e12 =~$`7esn`)..] Limit Null[..0]"), + octest:ct_string("Return $@usn6[..12] As #usn8,Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] As `7esn` Create (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3) Union Detach Delete `4esn` Contains 9e0,`5esn` Contains `7esn` Merge #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Union Return Distinct Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],010 Is Null Is Null As #usn8,All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] As `8esn` Order By $_usn3[_usn4..] Asc,0.12 Is Null Is Null Desc,`6esn` Ends With _usn4 Ends With False Ascending Skip 1.e1 =~.12 Limit `1esn`[$@usn6][07] Return $_usn4 Is Null Is Null,usn2 Starts With .0 Order By 9e1[$#usn8][$1000] Descending Limit #usn7 =~9e12"), + octest:ct_string("Optional Match `3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))),usn2=(:#usn8:`1esn`$`7esn`) Where 123456789 Is Null Is Null Delete (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Union Return *,1e1 Is Not Null Is Not Null Order By Single(@usn6 In 010[`5esn`] Where Count(*)[9e12..12.0])[(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)][`7esn`] Descending Skip 12 Contains 1.e1 Unwind 1000[$7..][_usn4..] As `5esn` Match ((_usn4 :#usn7:`5esn`)-[`4esn`:`1esn`|`3esn` *12..]->({`7esn`:9e12 =~@usn6})),((:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[`1esn`:`8esn` *7..]-(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Union Remove Extract(#usn7 In True Contains 's_str' Contains $usn1).#usn8!,#usn7().#usn7 Unwind 00[False..0e0] As `6esn` Remove ({``:.e1 Starts With 12.e12 Starts With `2esn`})<-[``:`5esn`|:usn2{`5esn`:_usn4[0]}]-(`8esn` :`8esn`)<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"}).@usn5,`5esn`:`5esn`,Any(#usn7 In 9e0[$1000] Where `3esn` Starts With 9e0 Starts With usn1)._usn4?"), + octest:ct_string("Optional Match #usn8=(((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Where .12[123.654..] Create ((usn1 :`2esn`{@usn6:True Contains 's_str' Contains $usn1,``:$`4esn` Starts With 0 Starts With `7esn`})-[?*..{`6esn`:01 Ends With 0Xa Ends With 0X7}]->(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12})) Union All Return Distinct *,(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] As `1esn` Skip 01[07..][1.e1..] Limit All(usn2 In 7[12] Where #usn8 Is Null Is Null)[[usn2 In 7[12] Where #usn7[.e0]]..] Detach Delete `` Is Null,12 Starts With $123456789 Starts With .e12,#usn7[$`3esn`..$1000][0.0..`2esn`] Union Merge (((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[?:`8esn`*]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4})))"), + octest:ct_string("Unwind [_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`] As `6esn` Return Distinct 12 Starts With True Starts With 12e12 As _usn4 Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc"), + octest:ct_string("Delete 12 Contains 01234567,[@usn5[$`6esn`..][$999..],`` Starts With $123456789] Is Null,`6esn` Is Null Is Null Union All With Distinct *,`3esn`(`7esn`,0x0 Contains $`6esn` Contains `4esn`) Is Null Is Null Limit usn2[..$usn1][..$#usn8] Merge `5esn`=({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})<-[_usn4?:@usn6|:`7esn`]->(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})<-[`8esn`:usn1|`4esn` *0Xa{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]->(:`8esn`) On Create Set {usn1:$_usn4 Starts With $1000 Starts With 12}.@usn6! =[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])] On Create Set `5esn`+=All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],`2esn` =False Starts With 0X7 Starts With 01234567 Detach Delete 9e1 Contains $999"), + octest:ct_string("With Distinct *,$_usn3 Is Not Null Is Not Null As @usn6,$0[#usn8] As `4esn` Order By 0.0 Ends With $`7esn` Asc,010 Starts With 0 Starts With 0.0 Desc,Extract(`6esn` In $`6esn`[``..][Count(*)..] Where 1.e1 Ends With $_usn4 Ends With #usn7|0xabc =~$@usn5) =~{_usn4:9e1[`1esn`..0][999..1e1]} Desc Limit `1esn`[$@usn6][07] Union All Unwind Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..]) =~[_usn4 In 12e12 In 123456789 Where .0 Ends With Count ( * )|$`1esn` In .e0] As @usn5 Merge @usn6=((`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[@usn5?:usn2 *00..0Xa{usn2:$usn2[`4esn`..9e12]}]->(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->(usn2 :usn1:`3esn`)) On Match Set [#usn8 In `7esn` Where 01 Ends With 0Xa Ends With 0X7|`8esn` Contains Count(*) Contains $#usn7].``? ={`5esn`:$`1esn` In .e0,``:`6esn` Ends With Count ( * ) Ends With Count ( * )} Is Null Is Null,`8esn`+=$7 Is Null,`7esn` =_usn4 In #usn7 Union All Remove (:`6esn`:_usn3$usn2)<-[:`4esn`|@usn5{`3esn`:Null[..0]}]->(:`4esn`:`6esn`{`4esn`:$`3esn`[..0X0123456789ABCDEF][..7],`5esn`:$0 =~9e1 =~$`2esn`})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(#usn8 :@usn5{_usn4:$#usn7 Contains $`7esn` Contains .e12}).usn2 Delete $`1esn` Ends With 0X0123456789ABCDEF"), + octest:ct_string("Remove {``:.0[..'s_str'][..01234567]}.@usn5!,[#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6]].`3esn` Return Distinct *,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``) Is Null Is Null Order By Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Ascending,$@usn5[..$#usn7] Descending,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip 9e1 Starts With Count ( * ) Limit {`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..] Union All Delete `7esn` In 010 In usn1"). diff --git a/test/performance_query_legacy_SUITE.erl b/test/performance_query_legacy_SUITE.erl index 0d6a802..1f5ff1b 100644 --- a/test/performance_query_legacy_SUITE.erl +++ b/test/performance_query_legacy_SUITE.erl @@ -2,7 +2,7 @@ %%% File : performance_query_legacy_SUITE.erl %%% Description : Test Suite for rule: query. %%% -%%% Created : 03.10.2016 +%%% Created : 15.12.2016 %%%------------------------------------------------------------------- -module(performance_query_legacy_SUITE). @@ -38,1003 +38,1003 @@ all() -> %%-------------------------------------------------------------------- test_query(_Config) -> - octest_legacy:ct_string("Unwind 9e1 In 2.12 As @usn6 Return Distinct Case #usn7 Starts With {#usn7} Starts With `7esn` When $#usn7 Is Null Then Count(*) Is Null Is Null End =~Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))) =~Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {_usn4}[...e1][..$7]),Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..],{123456789} Contains $#usn8 As `3esn` Order By {`4esn`}[$123456789..][$#usn7..] Ascending Skip Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[usn2?:`5esn` *0..]-({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:usn1|@usn6 *00]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})))[..{_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]}] Load Csv From @usn6 Starts With `6esn` Starts With $`1esn` As _usn3 Union Remove {`3esn`:2.12 Contains usn2 Contains True}.`6esn`! Union All With 12[..$`4esn`] As `7esn`,(:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case When `6esn`[12..$usn2][{#usn8}..{usn2}] Then {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] When .e12[@usn5..#usn7][010..{usn1}] Then 0.12 =~$0 =~$0 End,Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Order By ({``:$`8esn` =~{1000}})-[:`8esn`*]->({_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]})-[`4esn`]->(:`6esn`$123456789) Contains Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {123456789}[0xabc..]) Asc,{@usn6}[..$7][..$`7esn`] Desc,None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12]) Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where $_usn3[.e0..$usn2]|{#usn7}[9e1..][{123456789}..]) Ends With Reduce(`2esn`={`3esn`} In 0X7,_usn3 In {`3esn`}[`2esn`]|$`5esn`[{`3esn`}]) Desc Skip (`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})[Single(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where Count(*) In $12)] Where $_usn3[{#usn7}] Foreach(`7esn` In $`3esn`[..$123456789][..$`1esn`]| Unwind [`` Is Not Null Is Not Null,`1esn` Contains {usn2} Contains $#usn8] Is Not Null As _usn4)"), - octest_legacy:ct_string("With Distinct $12[True..][{0}..],$@usn5[010..$#usn8][12..$`4esn`] As `6esn` Order By Shortestpath((`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})<-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(`3esn` :`6esn`))[(:`5esn`{``:1.0[0e0..0.e0]})-[ *7..12]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})] Ascending,0e0 Starts With `2esn` Starts With $`` Descending,usn2[9e12] Desc Skip $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Load Csv From 9e12[0.0..][$12..] As _usn4 Fieldterminator \"d_str\" Union All Optional Match ((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})),``=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))) Using Scan _usn3:_usn3 Where Count ( * ) Ends With $@usn5 Return {#usn7}[`2esn`..],Filter(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0]) Ends With Case When {#usn8}[010] Then False =~$7 =~2.12 End,0.0 =~999 As `4esn`"), - octest_legacy:ct_string("Create Unique `5esn`=Shortestpath((((@usn5 :_usn4{#usn7:Null Ends With `2esn` Ends With $usn1,`5esn`:12.0})-[?:#usn7 *01234567..0Xa]->({``:$`8esn` =~{1000}})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})))) With Distinct $`3esn`[0.12..`8esn`][$#usn7..`5esn`],Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]) =~Reduce(usn1=.e1 Ends With 1e1 Ends With @usn5,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$#usn7[#usn7..]) =~`1esn`($1000 Is Null) As @usn6 Limit 7[$`4esn`][0x0] Where 7[$`2esn`..{`5esn`}] Union All Return {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]),Shortestpath((@usn5 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[:#usn8|`1esn`*{`8esn`:0Xa[usn2..]}]-(`3esn` :_usn3:_usn3{@usn5:False})) Ends With {@usn5:$12[Null..Count(*)][{`5esn`}..{999}],#usn7:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4]} Ends With Case {123456789}[0xabc..] When $0[..9e1] Then 0.e0 Ends With $#usn7 Ends With $7 End As _usn3 Skip Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where _usn4 Contains 2.12)[(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})..][#usn7(7 =~{`8esn`} =~$`6esn`,$123456789 Ends With {`1esn`} Ends With $`4esn`)..] Start #usn7=Rel:@usn6(`7esn`={`8esn`}) ,``=Node:`2esn`(usn2='s_str')"), - octest_legacy:ct_string("Load Csv From All(#usn7 In {``} Is Not Null Where .e0 Starts With $`` Starts With $usn2)[..``(`8esn`[`4esn`..{#usn8}][$12..2.12],{0} In _usn4)] As `6esn` Foreach(`8esn` In 12.e12[``][{`2esn`}]| Unwind 1e1[1.e1..7][{12}...e12] As #usn8 Remove Reduce(`4esn`=12.e12[$_usn3..],`2esn` In `1esn` =~\"d_str\"|0x0[`4esn`..'s_str']).#usn8!,Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn2[{7}]|.e1 Ends With 1e1 Ends With @usn5).`8esn`?) Union All Start usn1=Relationship:`8esn`(#usn8={`2esn`}) ,`7esn`=Node:`6esn`({_usn3}) Unwind 12e12 Ends With `5esn` Ends With {@usn6} As `3esn` Remove ({#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]})<-[?:_usn3|_usn3{`3esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],#usn8:False Starts With {`5esn`}}]-(usn2 :`5esn`{`7esn`:01234567 Is Null Is Null})-[_usn4:#usn8|`1esn`{`6esn`:#usn8[..{#usn7}]}]->(@usn6 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})._usn3?,Any(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}]).`6esn`! Union Detach Delete 12[..$`4esn`]"), - octest_legacy:ct_string("Optional Match ((`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0})),Shortestpath((`7esn` :``:#usn8)<-[#usn8:`6esn`|`5esn`]-(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})) Using Index `2esn`:`1esn`(`4esn`) Using Scan `3esn`:_usn4 Where {`7esn`}[`6esn`][#usn7]"), - octest_legacy:ct_string("Merge `4esn`=Allshortestpaths((((#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)-[@usn5?:`4esn`]-(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})))) On Match Set _usn3+=2.12 =~False =~`5esn` Union All Return Distinct #usn7 Contains usn2 Contains @usn5 As `1esn` Order By 1.e1 Is Null Is Null Asc,12.e12 Starts With {999} Starts With {`1esn`} Desc,Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7) Contains Filter(`` In `` Is Not Null Is Not Null Where 0e0 Starts With 1000 Starts With #usn7) Contains Shortestpath((($#usn8)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]}))) Asc Skip 0e0 Starts With 1000 Starts With #usn7"), - octest_legacy:ct_string("Create Unique _usn3=((@usn5 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[`2esn`?:`7esn` *0X7..]-(@usn5 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})) Remove `8esn`:`5esn`,_usn4:#usn7,(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})-[`7esn`:#usn8|`1esn` *..0x0$`3esn`]-(:`3esn`:@usn5)-[`7esn` *..0x0]-(`2esn` :_usn4).`2esn`? Optional Match `4esn`=Allshortestpaths((((_usn3 )-[?{@usn6:0X7[`7esn`][123.654]}]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})))) Using Join On @usn5,_usn3,_usn3 Using Join On `2esn` Where $_usn3['s_str'][07] Union All Unwind $`3esn`[0.12..`8esn`][$#usn7..`5esn`] As `6esn`"), - octest_legacy:ct_string("Optional Match Allshortestpaths((`` {@usn6:1.0[$`1esn`..][$123456789..]})<-[?{usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null}]-(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})),(({`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})-[`8esn`?:`2esn`*..{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})) Using Index usn2:@usn6(`5esn`) Using Join On `6esn`,`8esn`,`4esn` Create Unique (((`6esn` :@usn5)-[usn1?:_usn3|_usn3]-(usn2 :#usn7)<-[#usn8:@usn6|`6esn`{`8esn`:True[00][0Xa]}]->(`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]}))),Allshortestpaths((((:_usn4{usn2:0X0123456789ABCDEF[123456789]})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)))) Union Load Csv From [.e12[@usn5..#usn7][010..{usn1}]] In All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {`6esn`} Contains \"d_str\") In None(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) As usn1 With 07[$123456789..] Order By {`2esn`} Ends With 12.0 Desc,`6esn`[12..$usn2][{#usn8}..{usn2}] Asc,9e1[..$`2esn`] Ascending Create `3esn`=Allshortestpaths((usn2 :`4esn`)),`2esn`=Shortestpath((((:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})<-[:#usn7 *..010]-(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})))) Union All Return {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}])"), - octest_legacy:ct_string("Load Csv With Headers From 00 Starts With 0xabc As @usn5 Fieldterminator 's_str'"), - octest_legacy:ct_string("Remove Case When Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6} Then {`2esn`} Is Not Null Is Not Null When `3esn`[{usn1}] Then `5esn` Starts With $`2esn` Starts With $1000 End._usn3!,Allshortestpaths((((`3esn` :`8esn`:`7esn`)-[`7esn`:#usn8|`1esn` *0xabc..]->(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})-[`2esn`?:`7esn` *..07$0]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})))).``! Foreach(_usn3 In usn2 Ends With 999 Ends With .e1| Match `4esn`=Allshortestpaths((((_usn3 )-[?{@usn6:0X7[`7esn`][123.654]}]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})))),((:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})) Create `8esn`=((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})),`8esn`=Allshortestpaths(((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})))) Detach Delete $1000 =~$`2esn`,00[Count(*)..]"), - octest_legacy:ct_string("Merge @usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})) On Match Set #usn8+={#usn8}[1.e1...e12] Remove {`3esn`:Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},@usn6:$`8esn` Contains 123456789 Contains $usn2}._usn3,`5esn`(Distinct {usn2}[$`3esn`..][{#usn7}..]).@usn6?,_usn4:`5esn`"), - octest_legacy:ct_string("Create Unique (((`6esn` :@usn5)-[usn1?:_usn3|_usn3]-(usn2 :#usn7)<-[#usn8:@usn6|`6esn`{`8esn`:True[00][0Xa]}]->(`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]}))),Allshortestpaths((((:_usn4{usn2:0X0123456789ABCDEF[123456789]})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)))) Optional Match ({`3esn`:usn1 Is Null Is Null})-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]-({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`4esn` {@usn6:{12}[..0X7]}) Using Join On _usn3,@usn5 Union All Delete `7esn` In {123456789} In `1esn` Union Create Unique ({`3esn`:usn1 Is Null Is Null})-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]-({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`4esn` {@usn6:{12}[..0X7]}) Return Reduce(`7esn`=$`5esn` In $`` In 123.654,`` In 123456789 Ends With 12.e12 Ends With $`7esn`|{`7esn`} Is Null)[Reduce(_usn3=#usn8 Is Not Null,`` In 123456789 Ends With 12.e12 Ends With $`7esn`|1.0 Starts With 12e12 Starts With {`5esn`})] As `8esn`,$`8esn` Is Not Null Is Not Null As `1esn`,\"d_str\" Starts With $123456789 Order By `` Ends With $1000 Desc,Case {`8esn`} Ends With `6esn` When False Is Null Is Null Then 's_str' In 00 Else 123456789 Ends With $`6esn` Ends With $#usn7 End Starts With Case `1esn` =~0 =~$#usn7 When $#usn8[9e12..][.e1..] Then False =~$7 =~2.12 When {123456789}[9e12][{0}] Then 12.0 =~999 =~$_usn3 End Desc"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From 0Xa[..{`4esn`}][..12.0] As `7esn` Fieldterminator \"d_str\" Detach Delete 1.0 =~7 =~{usn2},{`1esn`}[{123456789}][{0}],{_usn4}[{`5esn`}..{1000}][9e1..{1000}]"), - octest_legacy:ct_string("Load Csv From Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where _usn4 Contains 2.12|{_usn3}[..\"d_str\"]) Contains Shortestpath((`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})) Contains [$123456789 Ends With $999 Ends With {999},12.0 Contains #usn7] As _usn4 Merge _usn3=Shortestpath(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))) On Create Set `5esn`+=999 In {`3esn`} In usn2 On Match Set _usn4 =[`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null,@usn6+=Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 07 Contains 0X7 Contains $`8esn`) Is Not Null Is Not Null Union Return {0} As `7esn`,1000[..$0][..True] Limit Case When @usn5 Is Null Then 2.12 Ends With $_usn3 Ends With `3esn` Else $1000 Is Null End[Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}])..None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa)][Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01|usn2 Is Null)..Case When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` End] Create Allshortestpaths((`3esn` :#usn8:#usn8)),`4esn`=Allshortestpaths(((:`2esn`:usn1)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`}))) With Distinct *,$@usn5 Is Not Null,Count ( * ) Is Null Skip Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where _usn4 Contains 2.12|{_usn3}[..\"d_str\"]) Contains Shortestpath((`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})) Contains [$123456789 Ends With $999 Ends With {999},12.0 Contains #usn7] Limit {1000} Is Null Is Null Where usn2 Is Null"), - octest_legacy:ct_string("Merge (`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]}) On Create Set `4esn`+=(`1esn` :#usn8:#usn8)-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})[..(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})][..`5esn`({12} Ends With 1.0 Ends With .e0)],Any(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`])._usn4! ={@usn6}[{999}..][00..] Unwind $12 Starts With {`1esn`} Starts With Null As `6esn` Union All Unwind $#usn7 Contains 0x0 Contains 1000 As `4esn` Remove Extract(`8esn` In 01[2.12..`8esn`] Where {999} Starts With {0}|01 Contains {`8esn`} Contains 2.12).usn2?,Shortestpath((`4esn` :#usn7)-[@usn5?:`4esn`]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]})).`6esn`!,Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn1[9e12..][$7..]).usn2? Create Unique ({`8esn`:`3esn`[{0}][usn1]})-[_usn4?:_usn4|:usn2 *00]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``})<-[ *0X7..]-(`2esn` {_usn3:`1esn` Contains {usn2} Contains $#usn8}),(#usn8 :@usn6:#usn8) Union Foreach(`3esn` In {7} Is Null Is Null| Load Csv With Headers From $_usn4 Contains Null Contains #usn8 As #usn7 Fieldterminator \"d_str\") Start _usn3=Node:usn1(`6esn`={7}) Where 0X7[1000..{`1esn`}]"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From [`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999}] Ends With usn1(Distinct 1000 In {`8esn`} In 01,{_usn3}[..\"d_str\"][..`5esn`]) Ends With Reduce(_usn4=1000[Null..{123456789}],`5esn` In $999[0.0..]|9e1 In $`3esn` In $@usn6) As _usn4 Fieldterminator \"d_str\" Return 12 Ends With 0x0 Ends With 0.e0,Case When 1.0 In Count(*) Then False End Contains `1esn`(Distinct 0.e0 Starts With `2esn`) Contains Reduce(`1esn`=\"d_str\" Is Null Is Null,#usn7 In {``} Is Not Null|#usn7),0e0[..010] As `` Skip False =~$7 =~2.12"), - octest_legacy:ct_string("With All(`` In `` Is Not Null Is Not Null Where $_usn4 Starts With 1e1)[Shortestpath(((:usn1{`3esn`:{123456789} Is Null Is Null})-[_usn4{`5esn`:{0} Ends With $_usn3 Ends With $`7esn`,`2esn`:Null[``]}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[? *0Xa]-({`7esn`:{999}})))][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)] As ``,Shortestpath((`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})<-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(`3esn` :`6esn`))[(:`5esn`{``:1.0[0e0..0.e0]})-[ *7..12]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})] Order By `1esn`($123456789 Starts With 9e0 Starts With 's_str',{usn2}[.e0..$999])[{usn2:{`3esn`} In 0X7,_usn3:7 Starts With {@usn6} Starts With $``}..Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {usn1} In 2.12 In 1000)][Case 0[`7esn`..] When 123456789 Is Null Then .e12 Is Not Null Is Not Null Else $@usn5 =~1000 =~1000 End..[`4esn` In $`3esn` Is Not Null Where `8esn`[{123456789}..]|{`3esn`}[`2esn`]]] Desc,(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]}) Is Not Null Is Not Null Descending Limit [`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null Start `8esn`=Node:@usn6({_usn4}) Where `3esn`[`3esn`..][#usn8..]"), - octest_legacy:ct_string("Merge #usn8=Allshortestpaths((#usn8 :@usn5)) On Create Set $`1esn`.``? =[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12)"), - octest_legacy:ct_string("Remove Shortestpath(({`7esn`:{999}})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})).@usn5 Create Allshortestpaths(((usn2 :@usn5)<-[? *00]->(@usn5 :usn1))) Union All Remove (:usn1{_usn3:{#usn7}[`2esn`..]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(#usn7 ).`2esn`,Case `5esn` Starts With $`2esn` Starts With $1000 When 123.654 =~$usn2 =~{999} Then Count ( * ) Contains `8esn` Contains .e1 End._usn3!,exists($12[$1000..123456789],123456789[0xabc..'s_str'][``..`1esn`]).@usn5 Return {#usn8} Starts With 00 Starts With {`6esn`} As ``,7[{0}..{_usn4}] As #usn8,`4esn`[$999..{`1esn`}][{@usn6}.._usn3] Order By `8esn` Is Not Null Is Not Null Desc Limit {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Create usn2=Shortestpath((usn2 :#usn7)) Union All Detach Delete $7 In $7 In $7,0X7[1000..{`1esn`}],.e1 Is Null Is Null Optional Match _usn3=Allshortestpaths((`4esn` {usn2:0x0 Is Null,`5esn`:{usn2} =~12})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]})-[usn1:_usn3|_usn3 *..999{`2esn`:'s_str'[00][{`5esn`}],@usn6:999 Is Not Null Is Not Null}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})) Using Index `3esn`:@usn5(`8esn`) Where 0X7[$999][_usn4] Create ((:usn2{usn2:123.654[$`1esn`],@usn6:123456789[$@usn5..]})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`` {usn2:9e0[..999],`2esn`:0e0 In @usn5})<-[]->(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})),#usn8=Allshortestpaths((({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})-[? *..0x0{_usn3:01 Ends With 999 Ends With {`7esn`}}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[?{usn1:0[`7esn`..]}]->({usn1:{`7esn`}[`6esn`][#usn7],usn1:{999} Starts With $999})))"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From $`4esn` Is Null Is Null As @usn6 Unwind Single(#usn8 In {`5esn`}[.e1..``] Where 123.654[$`1esn`]) Is Not Null Is Not Null As @usn5 Delete 2.12 Ends With $_usn3 Ends With `3esn`,usn1 Ends With $@usn6 Ends With `3esn`"), - octest_legacy:ct_string("With Distinct Case #usn7 Starts With {#usn7} Starts With `7esn` When $#usn7 Is Null Then Count(*) Is Null Is Null End =~Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))) =~Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {_usn4}[...e1][..$7]),Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..],{123456789} Contains $#usn8 As `3esn` Order By {`4esn`}[$123456789..][$#usn7..] Ascending Skip Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[usn2?:`5esn` *0..]-({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:usn1|@usn6 *00]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})))[..{_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]}] Union All Merge (@usn6 :`6esn`)-[`6esn`?:#usn7]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}) On Create Set None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0xabc[01..{999}][{7}..{`7esn`}]).#usn8? =123.654[`3esn`..] Create `6esn`=Shortestpath((((`2esn` :`8esn`:`7esn`)<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})))) Foreach(`1esn` In Count ( * ) Ends With $@usn5| With Distinct {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]),Count ( * ) Is Null As @usn6,123.654[...e0] Order By {usn2} Starts With $`8esn` Starts With Count ( * ) Asc Limit $@usn5 Starts With #usn7 Where {123456789}[0xabc..]) Union All Unwind $`1esn`[{`2esn`}..] As `7esn` Unwind [#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn2 Is Null|@usn6[$`3esn`..{`3esn`}]] In Filter(_usn3 In {`3esn`}[`2esn`] Where 1e1 In 123.654 In `3esn`) As _usn3 With Distinct `5esn`[_usn4..],$123456789 In 0X0123456789ABCDEF In 0.e0 Where 7[True..][2.12..]"), - octest_legacy:ct_string("Remove `4esn`({12} Ends With 1.0 Ends With .e0).`3esn`!,_usn4:`2esn`:usn1,[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e1 Is Not Null|Null[$`5esn`][False]].`3esn`? Foreach(`2esn` In $@usn5 Starts With {@usn5} Starts With 9e0| Return Distinct 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] Skip $`5esn`[2.12..] Limit {_usn4}[`3esn`][12.0] Create Unique ((({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})<-[`5esn`:#usn7 *00{#usn7:{999} Starts With {0}}]-(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]})-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))),Allshortestpaths((@usn6 :_usn3:_usn3)-[?{`3esn`:7[{0}..{_usn4}]}]->(`7esn` :_usn3:_usn3)-[?:usn2|`` *..010{`4esn`:{`4esn`} Starts With $usn2 Starts With $1000,`7esn`:$@usn6 Contains 07}]->(:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})))"), - octest_legacy:ct_string("Match @usn6=Allshortestpaths((`6esn` :`8esn`:`7esn`)<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})),`8esn`=((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})) Using Index `6esn`:`8esn`(``) Using Join On `5esn`,#usn7 Where 1.0[0e0..0.e0] Create Unique Allshortestpaths((_usn3 :@usn5)-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})),`4esn`=Allshortestpaths(({@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})-[`6esn`?:``]-(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})) Load Csv With Headers From Reduce(`3esn`=$0[..9e1],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|999 In {`3esn`} In usn2) Starts With Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Starts With Allshortestpaths((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})) As @usn5 Fieldterminator 's_str'"), - octest_legacy:ct_string("Create Unique `7esn`=Allshortestpaths(((`1esn` ))) Union All Start @usn5=Rel:#usn8(\"d_str\") ,`2esn`=Rel:#usn8({``})Where 0X0123456789ABCDEF[123456789] Foreach(#usn8 In {123456789}[0.e0..$123456789][0Xa..`6esn`]| Remove Case When `2esn` Is Null Then 1000 =~@usn6 =~0x0 Else \"d_str\"[#usn8] End.`1esn` Start usn2=Node:usn1(`4esn`='s_str') ,_usn3=Node:`7esn`(`3esn`='s_str')) With Distinct [01[2.12..`8esn`],{7} In `2esn`,123456789 Ends With $`6esn` Ends With $#usn7] Starts With Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With `7esn`(Distinct {_usn4} Ends With `6esn`,{@usn6}[7]),$1000 =~$`2esn` As `6esn`"), - octest_legacy:ct_string("Foreach(`2esn` In 7[..999][..{#usn8}]| Delete {#usn8}[.._usn4][..$`3esn`],$123456789 Ends With `3esn` Ends With 123456789)"), - octest_legacy:ct_string("Load Csv From $`2esn` Is Null Is Null As `3esn` Merge #usn8=Allshortestpaths((#usn8 :@usn5)) On Create Set $`1esn`.``? =[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12) Union All Start _usn3=Relationship:`8esn`({`1esn`}) ,`6esn`=Relationship:`2esn`({0}) With Distinct *,'s_str'[$_usn3..][Count ( * )..] As #usn7 Limit {_usn3}[12.e12] Where 0e0 Starts With 2.12 Starts With $12 Load Csv From {_usn3}[..\"d_str\"] As `3esn` Union Create `8esn`=((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})) Load Csv From 1000 =~@usn6 =~0x0 As #usn7 Remove Reduce(_usn4=12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],#usn7 In {``} Is Not Null|$`8esn`).@usn5,Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {123456789}[0xabc..]|{7}[$``][{@usn6}]).#usn7"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From $@usn5 Starts With $1000 As `2esn` Foreach(#usn7 In (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12}| Return Distinct 0e0 =~`6esn` =~123456789 As @usn5,Count ( * )[True..][{#usn7}..],2.12 =~{7} As `6esn` Order By {`2esn`}[1e1..1.0][{#usn8}..$`1esn`] Ascending,0X0123456789ABCDEF Is Null Is Null Asc Skip \"d_str\"[#usn8] Match `8esn`=(:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`),Shortestpath(({usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null})) Using Join On `5esn`,#usn7 Using Scan `2esn`:`6esn` Where `7esn`[..2.12][..{usn1}]) Merge usn1=(#usn7 :`8esn`:`7esn`) On Create Set Single(_usn3 In {`3esn`}[`2esn`] Where _usn3 Contains $123456789 Contains ``).`2esn` =Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With Reduce(`1esn`=0.12 Starts With $`5esn` Starts With 12,_usn3 In {`3esn`}[`2esn`]|$12[True..][{0}..]) Starts With Reduce(usn2=Null Ends With {`5esn`} Ends With 0.e0,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{`6esn`}),[@usn6 Ends With {_usn3},12.0 Contains #usn7,$_usn3[..1000]].`2esn`? =0e0 Contains Null,`5esn`+=7 Ends With (@usn5 {`7esn`:$`6esn`[010..]})-[:`8esn` *..01]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]}) Ends With #usn8(False =~$7 =~2.12)"), - octest_legacy:ct_string("Match ``=Shortestpath(({`1esn`:`3esn`[{`2esn`}]})-[`3esn`?*{`8esn`:False Is Null Is Null}]->(:#usn7{_usn4:$`8esn` Contains 123456789 Contains $usn2})),usn2=Allshortestpaths(((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]}))) Using Join On #usn7,_usn4 Where $#usn8 Contains $`1esn` Contains {`6esn`} Return *,0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn` As `7esn` Limit 9e12[`6esn`..12.0] Union Optional Match Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))),`2esn`=(usn2 :`4esn`)-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(`` :_usn4) Where {123456789} Is Null Is Null Union Return *,12[..$`4esn`],Case When 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] Then {1000} =~0 =~123.654 When `8esn`[`4esn`..{#usn8}][$12..2.12] Then 00[$`7esn`] End Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`7esn` =~{`8esn`} =~$usn1) Contains [0.12 =~`5esn` =~`5esn`] Order By False[_usn3..`8esn`][$`8esn`..{`3esn`}] Ascending Limit _usn3 Starts With 12.e12 Starts With 0.12 Return Allshortestpaths((({`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})<-[?*..]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}))) Ends With Reduce(_usn3='s_str'[00][{`5esn`}],`4esn` In $`3esn` Is Not Null|Count ( * ) Contains `8esn` Contains .e1),$_usn4[0e0..][False..] As ``,$`6esn` Ends With Count(*) Order By {usn1} Is Not Null Is Not Null Desc,{usn2}[$`3esn`..][{#usn7}..] Ascending Limit {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]) Match Allshortestpaths((((#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)-[@usn5?:`4esn`]-(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})))) Using Scan ``:`2esn` Where 12.e12[$_usn3..]"), - octest_legacy:ct_string("Create Unique (`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[`8esn`?:@usn6|`6esn`]-(`2esn` :`6esn`) Merge @usn5=(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(`2esn` :`8esn`:`7esn`) Unwind $`4esn`[`7esn`] As _usn4 Union All Create Unique #usn8=(:`4esn`{``:2.12 Is Not Null Is Not Null}),Allshortestpaths(({_usn3:$`5esn`[`3esn`..]})-[usn1? *0X0123456789ABCDEF]->(:`8esn`:`7esn`)) Union Create Unique ((`3esn` )) Unwind {`5esn`}[0..`8esn`][0..Null] As usn1"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From Single(#usn8 In 7[..999][..{#usn8}] Where $_usn3[.e0..$usn2])[Reduce(`8esn`=$#usn8 Ends With $`2esn` Ends With $@usn6,`2esn` In `1esn` =~\"d_str\"|$`8esn`[1000..0Xa])][[$123456789 =~{`6esn`} =~\"d_str\",01234567 Ends With .e12 Ends With $#usn7]] As `` Fieldterminator 's_str' Load Csv From {#usn7}[True][.e1] As `` Fieldterminator \"d_str\" Return Distinct @usn6 Starts With `6esn` Starts With $`1esn` As `7esn`,usn1 In 7 In {123456789} As `5esn`,`8esn` Ends With 999 Ends With .e12 Order By 0.12[..False][..{1000}] Asc"), - octest_legacy:ct_string("Merge (`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) On Match Set Any(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`])._usn4! =$#usn8[..{`2esn`}][..1.0],#usn7+={@usn5:`1esn` =~0 =~$#usn7,usn2:{7} In `2esn`} Ends With ({`4esn`:{`4esn`} Ends With {usn2} Ends With {999}})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7}) Ends With Case False[..``] When 0.12 Starts With $`5esn` Starts With 12 Then `4esn` =~$`5esn` When 's_str' In 00 Then $0[..9e1] Else 1e1 In \"d_str\" In `7esn` End Foreach(`2esn` In Shortestpath(((({`4esn`:`7esn` Is Null})<-[`4esn`? *..12{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7}]->({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3))))[(`4esn` {`6esn`:#usn8[..{#usn7}]})<-[?:`8esn`{`3esn`:1.0 In Count(*)}]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[`1esn`:usn2|``]->(`3esn` {@usn5:$usn2[9e0]})]| Detach Delete Reduce(#usn7=`3esn`[{`2esn`}],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|#usn8 Is Not Null)[(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(#usn7 {_usn3:`4esn`[..Count ( * )][..{#usn7}]})..None(`8esn` In 01[2.12..`8esn`] Where {usn2})],Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))),12 Ends With 0x0 Ends With 0.e0 Unwind 12.e12 Starts With {999} Starts With {`1esn`} As `4esn`) Union All Foreach(`3esn` In Reduce(usn2=01[{`2esn`}..{@usn6}][$`2esn`..0.0],usn1 In @usn5 =~{`5esn`} =~`5esn`|$#usn8 Ends With $`2esn` Ends With $@usn6) =~[#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01|{0} Ends With $_usn3 Ends With $`7esn`] =~(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True})| Unwind All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] As @usn6) With Distinct *,`4esn` =~$`5esn` As usn1,{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4] Order By $`5esn` Starts With `` Descending,2.12 Is Null Asc Skip None(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Is Null Is Null Where 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Create Unique `5esn`=(_usn4 :`5esn`)-[ *0..]->(`` :usn2)"), - octest_legacy:ct_string("Unwind Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0)[..Case When 01234567[usn2..$12][{`7esn`}..$usn2] Then usn1[`5esn`..$7] Else $1000[0Xa][{#usn7}] End][..Reduce(@usn6=07 Contains 0X7 Contains $`8esn`,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|{#usn7}[9e1..][{123456789}..])] As _usn4 Optional Match ((usn2 :#usn8:#usn8)-[`2esn`?{_usn3:$_usn4[Count ( * )..],#usn7:{`3esn`}[..07][..{`5esn`}]}]-({_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]})),Allshortestpaths(((:_usn4{_usn4:{7} In `2esn`})<-[#usn8?:usn1|@usn6]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]}))) Using Scan @usn5:#usn7 Using Index #usn8:`2esn`(`5esn`) Unwind $#usn8 As `6esn`"), - octest_legacy:ct_string("Detach Delete $`1esn` =~0X7,.e0 Ends With 0.12,0e0[`8esn`..][$123456789..] Remove [{12} Contains {123456789} Contains `4esn`,1.e1[`8esn`][00],1.0[$`1esn`..][$123456789..]]._usn4?,Reduce(_usn3=123456789[#usn8..False],_usn3 In {`3esn`}[`2esn`]|123.654 Contains $`4esn` Contains 1.0).#usn8? Union All Start usn2=Rel:_usn4(\"d_str\") Where {`6esn`} Union Unwind All(#usn8 In {`5esn`}[.e1..``] Where {_usn3}[..\"d_str\"][..`5esn`])[..Allshortestpaths((`5esn` :`4esn`))] As `2esn` Merge ((`3esn` :usn2)) On Match Set _usn3+=$`3esn` Is Not Null Is Not Null,`3esn` ={`4esn`} Ends With {usn2} Ends With {999},{@usn6:{999} Starts With $999,`4esn`:$usn1[{`5esn`}][$`6esn`]}.@usn5? =$usn1[..{`6esn`}] Create Unique `5esn`=Shortestpath((_usn3 :#usn7)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})<-[`5esn`? *..12{`8esn`:{`7esn`}[`6esn`][#usn7],`1esn`:0x0 Ends With $12}]->({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000})),((:#usn8:#usn8{_usn4})<-[usn1?:`7esn`]-(:usn1{usn1:{`6esn`}}))"), - octest_legacy:ct_string("Start `5esn`=Rel:`8esn`({usn1}) Where {@usn6}[{999}..][00..] Create `5esn`=Allshortestpaths(((`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}))),Allshortestpaths(((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]}))) Unwind 0X7[1000..{`1esn`}] As `4esn` Union Start usn2=Relationship( {`5esn`}) Foreach(`8esn` In 0X0123456789ABCDEF[123456789]| Delete 07[..True][..9e12]) Match (({`4esn`:`7esn` Is Null})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})),({`4esn`:{`4esn`} Ends With {usn2} Ends With {999}})<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-(:#usn8:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]}) Using Index `6esn`:`8esn`(``) Using Scan `2esn`:`7esn` Where 0.e0 Contains 9e1 Contains {`7esn`}"), - octest_legacy:ct_string("Delete Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Is Not Null Is Not Null,7[..123456789][..{@usn6}] Start `4esn`=Relationship:`3esn`({`1esn`}) Foreach(#usn8 In 12.e12 Is Null Is Null| Optional Match ((usn2 :#usn8:#usn8)-[`2esn`?{_usn3:$_usn4[Count ( * )..],#usn7:{`3esn`}[..07][..{`5esn`}]}]-({_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]})),Allshortestpaths(((:_usn4{_usn4:{7} In `2esn`})<-[#usn8?:usn1|@usn6]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]}))) Using Scan @usn5:#usn7 Using Index #usn8:`2esn`(`5esn`)) Union All Optional Match @usn5=(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(`2esn` :`8esn`:`7esn`),usn1=Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` )))) Using Join On `7esn`,`8esn`,`3esn` Where 7[{0}..{_usn4}] Foreach(`` In $`8esn`| Create `8esn`=(:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`),(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7) Remove Case `1esn`[{usn1}..``][7..$#usn8] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] End.@usn5) Match `3esn`=Shortestpath((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))),Shortestpath(({@usn5:07[..True][..9e12]})-[_usn4?:`5esn` *..07]->({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})) Using Index @usn5:`2esn`(@usn5) Using Scan `7esn`:usn1 Where Null[$#usn7]"), - octest_legacy:ct_string("Foreach(`7esn` In 12.0 In {`2esn`}| Unwind $123456789[_usn3][{#usn7}] As `3esn` Optional Match (#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null}),(({usn1:`5esn`[_usn4..]})-[usn1?:_usn3|_usn3]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))) Union Start `6esn`=Node:`8esn`(\"d_str\") ,`4esn`=Relationship:``(@usn6={usn1}) Union All Optional Match (:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})-[?:`5esn`]->(:usn2),`2esn`=Shortestpath((({usn2:7[..999][..{#usn8}]}))) Using Join On @usn6,@usn6"), - octest_legacy:ct_string("Return Distinct (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(:_usn3:_usn3{``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Is Not Null,$#usn8[Count ( * )] As `4esn` Order By Case When Count(*) In $12 Then .e0 Starts With 0 Starts With 0.e0 When {usn1}[0X0123456789ABCDEF] Then $`6esn`[123456789..12][True..{`3esn`}] Else 7 Starts With {@usn6} Starts With $`` End[Case @usn6 Contains $1000 Contains {`7esn`} When 0.12 =~$0 =~$0 Then $usn1[.._usn4][..False] When {0} Ends With $_usn3 Ends With $`7esn` Then 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3] End..] Desc,False Ascending Skip `2esn`[{`4esn`}][$_usn3] Limit Reduce(`4esn`=01 Ends With 999 Ends With {`7esn`},`4esn` In $`3esn` Is Not Null|1.0[`3esn`..][9e0..]) Is Null Is Null Load Csv With Headers From Case When {_usn4} Starts With 0.e0 Starts With 0x0 Then 12 Ends With 0x0 Ends With 0.e0 Else $1000 Is Null Is Null End Starts With `7esn`(Distinct $#usn7[..{`5esn`}][..9e12]) Starts With {`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`} As _usn3 Fieldterminator \"d_str\" Return Distinct .e0 Ends With 0.12,{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}[Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End..[`3esn` In {7} Is Null Where {123456789} Contains $#usn8|#usn7 =~Count ( * ) =~``]][`7esn`(9e1[1000][{123456789}]).._usn3(0.12 =~$0 =~$0)] As `8esn`,{`6esn`} =~$999 As usn1 Skip {`4esn`}[#usn7..$123456789][{7}..usn2] Limit Case _usn3[$`8esn`] When 12e12 Contains 0Xa Then 7[{0}..{_usn4}] End Starts With {#usn7:Null Ends With `2esn` Ends With $usn1,`5esn`:12.0} Union Remove Case When 1.0 Starts With 12e12 Starts With {`5esn`} Then {0} End.usn1!,Case When 1.0 Contains $_usn4 Then {999} Contains .e0 Contains 12.0 Else `5esn`[_usn4..] End.#usn8! Start _usn4=Node:`3esn`(`2esn`={usn1}) ,`6esn`=Node:``('s_str') Unwind 999 In {`3esn`} In usn2 As `6esn` Union Return *,$`7esn`['s_str'] As #usn8,Reduce(`3esn`=$0[..9e1],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|999 In {`3esn`} In usn2) Starts With Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Starts With Allshortestpaths((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})) As `` Limit {@usn5} =~Count ( * ) =~12.0"), - octest_legacy:ct_string("Foreach(`2esn` In `5esn`(Distinct {_usn4} Ends With `6esn`,$`4esn` In Null In 0xabc) Ends With Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Ends With All(`3esn` In {7} Is Null Where Count ( * ) Contains 07)| Delete {`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]} Starts With [False] Starts With Filter(#usn8 In 7[..999][..{#usn8}] Where $_usn3[.e0..$usn2])) With {usn2}[$`3esn`..][{#usn7}..] As `1esn`,[$0] In [`2esn` In `1esn` =~\"d_str\" Where {0} Ends With $_usn3 Ends With $`7esn`|{999} Contains .e0 Contains 12.0] In None(`2esn` In `1esn` =~\"d_str\" Where {`7esn`}[..$@usn5][..$#usn8]) As usn1,0X7[123.654..@usn6] As _usn3 Limit usn2(7[..999][..{#usn8}])[[$_usn4 Contains Null Contains #usn8,{#usn8}[{7}],{@usn6}[{999}..][00..]]..] Where $#usn7 Is Null Merge _usn4=Shortestpath(((:`1esn`{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789}))) On Match Set `2esn` =$``[1.0],`8esn` =010[..12e12][..12e12],`5esn` =Extract(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|{@usn5} Is Null Is Null)[Case When $0[..9e1] Then Count(*)[..usn2][..usn2] When {`2esn`} Starts With 0.0 Starts With {usn1} Then 0e0 In @usn5 Else 01 =~{_usn3} =~`3esn` End.._usn3(1.0 In Count(*),0[{usn2}..][$`6esn`..])][count(Distinct $12[Null..Count(*)][{`5esn`}..{999}],$`4esn`[`7esn`])..Case When $123456789 Ends With $999 Ends With {999} Then `3esn`[{usn1}] When #usn7 =~Count ( * ) =~`` Then $_usn4 Starts With 1e1 End] On Match Set `` =[Count(*) Ends With 12.0 Ends With 12,9e0[{0}..{`3esn`}][\"d_str\"..0Xa]][..Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``])][..{usn1:$_usn3[..1000],`7esn`:{1000} =~0 =~123.654}],`5esn`+=Count ( * )[0.12...e1] Union All Load Csv From `5esn`[_usn4..] As @usn5 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Create Unique #usn8=Allshortestpaths(((:`1esn`{@usn6:$usn1 Ends With $`` Ends With $12})-[]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]}))) Merge `6esn`=({usn1:$`3esn` In $_usn4 In {_usn3}})-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})-[``?]-(#usn8 :@usn6:#usn8{`2esn`:$7 Is Not Null Is Not Null,`1esn`:`1esn` =~\"d_str\"}) Remove Shortestpath(((_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})-[`6esn`?:`3esn`|:#usn8{usn1:$usn1 In {999} In $#usn7}]-({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``}))).@usn6?,[{usn2}[.e0..$999],123456789[{123456789}..'s_str'],{`4esn`} Starts With $usn2 Starts With $1000].`5esn` Union Remove None(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`3esn`} Is Not Null Is Not Null).`` Load Csv From {999}[1000..{usn2}] As @usn6 Union Create _usn4=Allshortestpaths((:_usn4{usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})),({`4esn`:`7esn` Is Null})"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From Shortestpath(({`7esn`:\"d_str\" Starts With $123456789})<-[`4esn`:``{usn1:`` Is Not Null Is Not Null,usn1:{1000}[{_usn3}..]}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[`4esn`]->(:`6esn`$123456789)) Is Null As _usn3 Fieldterminator \"d_str\" Start usn2=Rel:#usn8({``}) Foreach(`3esn` In usn2(7[..999][..{#usn8}])[[$_usn4 Contains Null Contains #usn8,{#usn8}[{7}],{@usn6}[{999}..][00..]]..]| Unwind [_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null|999 Is Not Null Is Not Null] Ends With [`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null|{`5esn`} Starts With $`5esn` Starts With .e1] Ends With {``:usn1 Starts With usn1 Starts With $``} As #usn7 Remove Reduce(#usn8=01 =~{_usn3} =~`3esn`,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{12} Is Null Is Null).@usn6,Extract(`4esn` In $`3esn` Is Not Null Where 12[1.e1..{_usn3}][1.e1..1.0]).`1esn`!,@usn5(#usn8,{`3esn`} In 0X7).`7esn`?)"), - octest_legacy:ct_string("Start `7esn`=Node:`7esn`(`3esn`={``}) "), - octest_legacy:ct_string("Foreach(usn1 In 0Xa[2.12]| Unwind `3esn`[$`1esn`..999][``..$123456789] As usn1) Return #usn7 As `8esn`,0.12[..False][..{1000}] Order By Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`])[Case 00[{`8esn`}..][{`8esn`}..] When 0e0 Starts With 2.12 Starts With $12 Then Null[``] When 12e12 Ends With {usn1} Then $`2esn` Else 2.12['s_str'..$12][{`1esn`}..`2esn`] End..] Desc,[{@usn6} Ends With 's_str' Ends With 12.0,{12} Contains {123456789} Contains `4esn`] Starts With Filter(_usn3 In {`3esn`}[`2esn`] Where {1000} =~0 =~123.654) Starts With Case When Count ( * )[0.12...e1] Then $@usn5 =~1000 =~1000 When Null Ends With `2esn` Ends With $usn1 Then $usn2[{@usn5}] End Ascending,{12}[{7}][$123456789] Asc Skip `7esn` Ends With 0x0 Start `7esn`=Node:`6esn`({_usn3}) Where 123456789 Ends With 12.e12 Ends With $`7esn` Union All Create Unique @usn5=Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))),`2esn`=Allshortestpaths(((#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})-[`8esn`?:@usn6|`6esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}))) Unwind Shortestpath((((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))))[..Case 0Xa =~123456789 =~_usn4 When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $1000 In $1000 In $`3esn` Then 0.e0[#usn8] End][..(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})] As `3esn` Delete (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null Union Foreach(@usn5 In None(`5esn` In $999[0.0..] Where {``}[010..][0xabc..])[{`3esn`:False Is Null Is Null,`8esn`:2.12}]| Return *,Case When False Then 0.e0 Ends With $#usn7 Ends With $7 When {@usn6}[{999}..][00..] Then `5esn` Ends With {``} Ends With 12.e12 Else 123.654[$`1esn`] End[Reduce(#usn8=$`6esn` Ends With Count(*),`2esn` In `1esn` =~\"d_str\"|_usn4 Contains 2.12)..] As _usn3 Order By $12[Null..Count(*)][{`5esn`}..{999}] Desc,12.e12[7..$`6esn`] Desc Skip {`4esn`} Ends With {123456789} Ends With $`4esn` Return Distinct {``}[`8esn`..],{`7esn`} Starts With $123456789 Starts With $@usn6 As _usn3 Limit `8esn`(Distinct $#usn7 Is Null) Ends With Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]) Ends With Shortestpath(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))))"), - octest_legacy:ct_string("With Distinct .e12[..`7esn`][..0Xa],123.654 Is Not Null Is Not Null As `8esn`,All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By {usn2} Descending,1.0 =~7 =~{usn2} Desc Skip 0.0[$0][{@usn5}] Where _usn3 Contains $123456789 Contains `` Merge Shortestpath((((`1esn` :`5esn`{`5esn`:{``} Is Null})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(_usn4 :usn1)))) On Create Set `1esn`+=0.0 =~999,Case When `8esn` Ends With 999 Ends With .e12 Then 12.e12[7..$`6esn`] When 1000 In {`8esn`} In 01 Then `2esn` Starts With $_usn4 Else 0Xa Starts With {`6esn`} Starts With $usn1 End.`3esn`! =Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where `3esn`[{0}][usn1]) Starts With Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[`3esn`? *123456789..]->({_usn3:$`5esn`[`3esn`..]}))),@usn5 =`3esn` Is Null On Create Set `` =$#usn7 Contains 0x0 Contains 1000,#usn7+={``} Is Not Null,Reduce(`5esn`=01234567 Ends With .e12 Ends With $#usn7,`8esn` In 01[2.12..`8esn`]|0Xa =~Null =~$``).`6esn`! ={0} Contains 0.0 Contains $@usn5 Foreach(`7esn` In Single(#usn8 In {`5esn`}[.e1..``] Where 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4])[All(`5esn` In \"d_str\" Is Null Is Null Where {`6esn`}[..$@usn6][..`7esn`])..][Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`])..]| Load Csv From .e1 =~$usn2 =~999 As @usn5 Fieldterminator \"d_str\")"), - octest_legacy:ct_string("Unwind 's_str' =~$`7esn` As `4esn` Unwind [_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|`` Is Not Null Is Not Null] Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where {_usn3}[..\"d_str\"][..`5esn`]) Ends With Filter(`3esn` In {7} Is Null Where {123456789} Contains $#usn8) As _usn3 Union All Load Csv From All(#usn8 In 7[..999][..{#usn8}] Where $_usn4[1.e1]['s_str']) Starts With 123456789 As usn2 Load Csv From {usn1} In 2.12 In 1000 As _usn4 Foreach(#usn8 In False[$usn1.._usn4][_usn4..{`3esn`}]| Create `3esn`=({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})<-[usn2?:@usn5{`4esn`:{`7esn`} Is Null,_usn4:$123456789 Ends With {`1esn`} Ends With $`4esn`}]->(`6esn` {`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null})-[usn1? *0X0123456789ABCDEF]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}),Allshortestpaths((((@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:_usn3|_usn3 *01234567..0Xa{@usn5:123.654[True..$#usn8][0.12..Count(*)]}]-(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})<-[?:#usn7 *01234567..0Xa]-(@usn6 {#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12})))))"), - octest_legacy:ct_string("Create @usn5=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}) Create Unique Allshortestpaths((`1esn` :#usn7)),(({`3esn`:.e1[..usn2][..`8esn`]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`1esn`{_usn4:{999}})) Create `8esn`=(((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) Union Create `1esn`=Allshortestpaths((((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[? *0Xa]-({`7esn`:{999}})-[`7esn`]->(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]}))))"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From usn2 Ends With 999 Ends With .e1 As `2esn` Fieldterminator 's_str' Merge Shortestpath((`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[:`3esn`|:#usn8 *7..12{@usn5:_usn4 Starts With $_usn4 Starts With 12.e12}]->(`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}))"), - octest_legacy:ct_string("Load Csv With Headers From 0Xa[2.12] As `1esn` Fieldterminator 's_str' Union With Distinct 1e1 In 123.654 In `3esn` As `8esn` Skip Reduce(`6esn`=0X7[$999][_usn4],`8esn` In 01[2.12..`8esn`]|{1000} =~0 =~123.654) Is Null Is Null Where `3esn`[{usn1}]"), - octest_legacy:ct_string("Return Distinct (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8) Contains All(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) As @usn5,`8esn`[$`8esn`..{`4esn`}],None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `5esn` Starts With 010 Starts With 0.0) Ends With Reduce(usn2=False =~1e1 =~0.e0,`` In `` Is Not Null Is Not Null|#usn8[`3esn`..][{#usn7}..]) Order By @usn6 Is Null Is Null Descending,{_usn3} Is Null Is Null Desc,Allshortestpaths((({`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})<-[?*..]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}))) Ends With Reduce(_usn3='s_str'[00][{`5esn`}],`4esn` In $`3esn` Is Not Null|Count ( * ) Contains `8esn` Contains .e1) Descending"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From 0e0[$1000][{usn1}] As usn2 Create _usn3=Allshortestpaths((((:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)-[usn1? *1000..00]->({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})))),``=(:`3esn`:@usn5{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`4esn` {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}) Match Allshortestpaths((:@usn5$`5esn`)<-[usn1?:`8esn` *..010]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})<-[ *1000..00{#usn7:Count ( * ) Contains 07}]->(usn1 :`3esn`:@usn5)),(`3esn` {@usn5:$usn2[9e0]})<-[usn1?:`7esn` *0xabc..{`3esn`:$#usn8[$`8esn`..{`8esn`}]}]->(:`4esn`{`8esn`:0.e0 In $#usn7 In $_usn3})-[`4esn`?:@usn5{`7esn`:{_usn4}[1000..{@usn5}],`5esn`:$@usn5 Is Not Null}]->({`8esn`:`3esn`[{0}][usn1]}) Where 12.e12[0xabc]"), - octest_legacy:ct_string("With Distinct $@usn5,{`5esn`} Starts With @usn5 Starts With `7esn`,$1000 =~$`2esn` As `6esn` Skip 9e12[{123456789}..#usn8][{_usn3}..{#usn7}] Limit 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3] Where `1esn` Contains {usn2} Contains $#usn8 Union Foreach(@usn5 In $`5esn` In $`6esn`| Start `8esn`=Rel:`7esn`(_usn4={12}) Where 0.12 Starts With $`5esn` Starts With 12 Detach Delete $`1esn` =~0X7,.e0 Ends With 0.12,0e0[`8esn`..][$123456789..])"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From Reduce(`2esn`=$_usn3[.e0..$usn2],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$`7esn` Is Null Is Null)[Shortestpath((({``})))..{@usn6:{`6esn`} =~$999}] As `5esn` Foreach(@usn5 In 1.0 Starts With 12e12 Starts With {`5esn`}| Optional Match `3esn`=((`1esn` {#usn7:{_usn4} In {12} In $0})-[{#usn8:$#usn8 =~{@usn5},`8esn`:0X0123456789ABCDEF[{_usn4}..00]}]-(_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})) Using Scan `3esn`:`8esn` Using Scan `6esn`:`2esn` Where {0}[01][`7esn`] Start #usn7=Node:@usn5(usn2='s_str') Where 9e1[2.12..{#usn8}])"), - octest_legacy:ct_string("Create (`3esn` :#usn8:#usn8) Return #usn8 In $@usn6,1.e1[`8esn`][00] Optional Match `7esn`=Allshortestpaths(((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[`1esn`?:usn2|``{_usn4:$`4esn`[..$`3esn`][..0.0],@usn6:0e0 Starts With 2.12 Starts With $12}]->(:_usn3:_usn3{`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})<-[`8esn` *0X0123456789ABCDEF]->(usn2 :_usn4))),#usn7=Allshortestpaths((@usn6 :`6esn`)<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3)) Using Scan `4esn`:`2esn` Where $usn1[{`5esn`}][$`6esn`] Union With Distinct *,Allshortestpaths((:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))[[{_usn4} In {12} In $0,$`5esn`[2.12..],12[1.e1..{_usn3}][1.e1..1.0]]][[12e12 Is Not Null Is Not Null]] Order By $_usn3 In {1000} In 0.12 Desc Remove Case True[{`7esn`}..] When .e1 Is Null Is Null Then `3esn`[..$12][..{`7esn`}] When {_usn3}[..$12][..0.12] Then $7[0.12][usn1] End.`5esn`,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $123456789 Is Null Is Null|{`6esn`}[..$@usn6][..`7esn`]]._usn4,Single(`3esn` In {7} Is Null Where {`3esn`} In 01).`5esn` Union Remove Reduce(_usn4=01234567[usn2..$12][{`7esn`}..$usn2],@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|$@usn5 =~1000 =~1000).`8esn`?,[$1000 Is Null,$`1esn`[{`2esn`}..],.e1[{`7esn`}..{_usn4}]].@usn5,Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 123.654[$`1esn`])._usn3 Return *,$`4esn` Is Not Null Is Not Null As `6esn`,None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`])[Any(`3esn` In {7} Is Null Where {`4esn`} =~{7} =~{`7esn`})..][Extract(`2esn` In `1esn` =~\"d_str\" Where $_usn4[1.e1]['s_str']|usn1[`5esn`..$7])..] Skip Reduce(`8esn`={@usn5}[{#usn8}][9e0],`3esn` In {7} Is Null|0e0 Starts With 1000 Starts With #usn7)[Single(#usn8 In 7[..999][..{#usn8}] Where 123456789 Is Null)] Limit $usn2[$@usn6][True]"), - octest_legacy:ct_string("Delete $`7esn` Is Not Null,`2esn`(Distinct $``,7 Starts With {@usn6} Starts With $``) Contains {@usn6:_usn3[$`8esn`],usn1:$@usn5 Is Not Null} Contains {@usn5:`8esn`[{123456789}..]},Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..]) In Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null) In Filter(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {#usn8}[.._usn4][..$`3esn`]) Load Csv With Headers From 9e0 As `1esn` Load Csv From [`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null As usn2 Fieldterminator 's_str' Union All Create Allshortestpaths((:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 :usn1)) Foreach(@usn5 In 2.12 Is Null| Load Csv With Headers From `5esn`[.e0..][07..] As `6esn` Fieldterminator \"d_str\" Match _usn4=(:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null})) Detach Delete 010[..12e12][..12e12],Allshortestpaths((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))) Contains Filter(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]) Contains Shortestpath(({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})),Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`)[None(#usn8 In 7[..999][..{#usn8}] Where 0Xa[2.12])..][[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789]]..] Union All Start usn1=Node:#usn8(\"d_str\") "), - octest_legacy:ct_string("Merge Shortestpath((((`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})<-[`8esn`]-(usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[`3esn`?:`` *..0x0{`4esn`:0.e0 Contains 9e1 Contains {`7esn`},@usn6:$@usn5 =~1000 =~1000}]->(:@usn5{_usn3:07 =~01})))) On Create Set `3esn`+=Count(*) In $12,#usn7+=Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`)[None(#usn8 In 7[..999][..{#usn8}] Where 0Xa[2.12])..][[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789]]..],``+=7[$`8esn`..123456789][$usn1..$usn1] On Match Set [$usn1 =~``].`5esn`! =0e0 Starts With `2esn` Starts With $``,usn1 =0.e0[123.654][01],Case {#usn7}[`2esn`..] When $0 Ends With 12.0 Then $`` Is Not Null End.`6esn`! =Extract(`` In `` Is Not Null Is Not Null Where {``}[...e12]|12 Ends With 0x0 Ends With 0.e0) Is Null Is Null Union Create (`2esn` :`8esn`:`7esn`)-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}),@usn5=(({`2esn`:Count(*)[..usn2][..usn2]})-[`7esn`:#usn8|`1esn` *..0x0$`3esn`]-(:`3esn`:@usn5)-[usn1? *0X0123456789ABCDEF]->(`6esn` {_usn4:0Xa =~Null =~$``})) Return Distinct Reduce(usn2={`6esn`} Contains \"d_str\",`8esn` In 01[2.12..`8esn`]|7[..999][..{#usn8}]) Starts With All(#usn8 In 7[..999][..{#usn8}] Where $#usn7 Contains 0x0 Contains 1000) Skip 7 =~{`8esn`} =~$`6esn` Foreach(`8esn` In [$`1esn` =~0X7] =~[{7}[..1.0][..9e0],7 Is Not Null Is Not Null] =~{_usn3:`1esn` Contains {usn2} Contains $#usn8}| Return Distinct .e0 Ends With 0.12,{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}[Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End..[`3esn` In {7} Is Null Where {123456789} Contains $#usn8|#usn7 =~Count ( * ) =~``]][`7esn`(9e1[1000][{123456789}]).._usn3(0.12 =~$0 =~$0)] As `8esn`,{`6esn`} =~$999 As usn1 Skip {`4esn`}[#usn7..$123456789][{7}..usn2] Limit Case _usn3[$`8esn`] When 12e12 Contains 0Xa Then 7[{0}..{_usn4}] End Starts With {#usn7:Null Ends With `2esn` Ends With $usn1,`5esn`:12.0} Remove 2.12.`7esn`!,{`1esn`:$0[..9e1]}.usn2!,Reduce(usn2=#usn7 Is Null Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{_usn3}[12.e12]).@usn6?)"), - octest_legacy:ct_string("Foreach(#usn8 In 9e1[1000][{123456789}]| Load Csv With Headers From Case `7esn`[9e0..] When 1.0 =~'s_str' =~{`2esn`} Then 0xabc[01..{999}][{7}..{`7esn`}] When 0X7[$999][_usn4] Then 010 In Count(*) Else usn2[{7}] End =~Reduce(@usn6=usn2[9e12],#usn8 In 7[..999][..{#usn8}]|{999} Is Null Is Null) =~(:`1esn`{_usn4:$@usn6 Ends With $_usn4 Ends With 0.12})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->(_usn3 {`5esn`:12.e12[0xabc],`2esn`:{`7esn`}[..$@usn5][..$#usn8]})-[`7esn` *..0x0]-(`2esn` :_usn4) As `1esn` ) Load Csv From `3esn` In $0 In `1esn` As `8esn` Fieldterminator \"d_str\" Create Unique #usn7=((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})),Shortestpath((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))) Union Unwind {7}[$7..$``][{``}..{7}] As `3esn` Start usn1=Node:``(@usn6={usn1}) ,usn1=Relationship:`3esn`(`6esn`='s_str')"), - octest_legacy:ct_string("Load Csv With Headers From `8esn`[$`8esn`..{`4esn`}] As @usn6 Fieldterminator 's_str' Create @usn6=((`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})),(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})<-[usn2?:`5esn` *0..]-({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}) Start `6esn`=Rel:#usn8(@usn6={_usn4}) ,`4esn`=Relationship:`6esn`(#usn8={_usn3})"), - octest_legacy:ct_string("Unwind $#usn7[..{`5esn`}][..9e12] As #usn7 Merge Shortestpath((:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null})) On Create Set None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0xabc[01..{999}][{7}..{`7esn`}]).#usn8? =123.654[`3esn`..] Start `2esn`=Node:@usn5({`1esn`}) ,`1esn`=Rel:``({`1esn`}) Union With Distinct {#usn7} In 0x0 In $0 As ``,`4esn`[`5esn`..12][@usn6..False],$@usn5 As @usn5 Where {`1esn`}[12.0..`2esn`][@usn6..{usn1}]"), - octest_legacy:ct_string("Unwind (:_usn4{@usn6})<-[`4esn`?:_usn4|:usn2{_usn4:$usn2[{@usn5}],`2esn`:usn1[`5esn`..$7]}]->({``:$`8esn` =~{1000}})<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(:``:#usn8{usn1:{`6esn`}})[[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn` Contains 123456789 Contains $usn2|123456789 Ends With 01234567 Ends With 1.e1]..{usn2:1.0 =~7 =~{usn2},`8esn`:$_usn3[.e0..$usn2]}][None(_usn3 In {`3esn`}[`2esn`] Where 7 Ends With $`4esn`)..Case {`2esn`} Starts With 123456789 When $`5esn` In $`6esn` Then $`6esn` Ends With Count(*) End] As usn1 Union Return Distinct [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789] Ends With None(`2esn` In `1esn` =~\"d_str\" Where False Starts With {`5esn`}) As `5esn`,07[$123456789..],Reduce(`3esn`=$0[..9e1],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|999 In {`3esn`} In usn2) Starts With Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Starts With Allshortestpaths((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})) As `` Limit {`7esn`}[..{`4esn`}] Return 0X7[1000..{`1esn`}] As `3esn`,$`2esn`[12.e12..][{`4esn`}..] Order By Case 01[{`2esn`}..{@usn6}][$`2esn`..0.0] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] When 12e12[$`3esn`] Then {`5esn`} Contains $0 Contains {``} Else usn1 Starts With usn1 Starts With $`` End[usn2(Distinct 0.12 In _usn3 In {0},@usn6 Is Null Is Null).._usn4(0.e0 Starts With 12.e12 Starts With {_usn4},0X0123456789ABCDEF Is Null Is Null)][[{7}[$``][{@usn6}],0.0 Ends With 010 Ends With 1.e1]..$`4esn`] Asc,01[{@usn5}] Asc Union Create Unique ((:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`)) Return Distinct 010[Count(*)..12][$_usn3..{`8esn`}],Filter(_usn3 In {`3esn`}[`2esn`] Where False =~$7 =~2.12)[Case When .e12 Is Not Null Is Not Null Then `1esn` In .e0 In {`3esn`} When 7 Starts With {@usn6} Starts With $`` Then 0X0123456789ABCDEF =~1e1 =~{`4esn`} Else {`4esn`}[$123456789..][$#usn7..] End] As `5esn`,9e1[2.12] As _usn3 Foreach(`8esn` In $_usn3[.e0..$usn2]| Match Shortestpath((`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})),``=Allshortestpaths((`2esn` :`8esn`:`7esn`)-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})) Using Scan _usn3:`1esn` Where 12.0[123.654][Count(*)] Unwind .e1 =~$usn2 =~999 As `7esn`)"), - octest_legacy:ct_string("Merge (`` :@usn5{`1esn`:2.12 Contains usn2 Contains True}) Match ({`5esn`:\"d_str\" Starts With 01})-[_usn3:@usn5 *7..12{`2esn`:12.0 =~999 =~$_usn3}]->(`3esn` {usn1:$0[..9e1],@usn5:`7esn`[..{usn1}]}) Using Scan @usn5:_usn4"), - octest_legacy:ct_string("Delete False[$usn1.._usn4][_usn4..{`3esn`}],{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],$`1esn` Ends With 9e1 Ends With $123456789"), - octest_legacy:ct_string("Optional Match Shortestpath((`2esn` :#usn7{`5esn`:\"d_str\" Starts With $123456789}))"), - octest_legacy:ct_string("Load Csv From {usn1} In 2.12 In 1000 As _usn4 Merge Shortestpath((((`1esn` :`5esn`{`5esn`:{``} Is Null})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(_usn4 :usn1)))) On Create Set `1esn`+=0.0 =~999,Case When `8esn` Ends With 999 Ends With .e12 Then 12.e12[7..$`6esn`] When 1000 In {`8esn`} In 01 Then `2esn` Starts With $_usn4 Else 0Xa Starts With {`6esn`} Starts With $usn1 End.`3esn`! =Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where `3esn`[{0}][usn1]) Starts With Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[`3esn`? *123456789..]->({_usn3:$`5esn`[`3esn`..]}))),@usn5 =`3esn` Is Null On Create Set `` =$#usn7 Contains 0x0 Contains 1000,#usn7+={``} Is Not Null,Reduce(`5esn`=01234567 Ends With .e12 Ends With $#usn7,`8esn` In 01[2.12..`8esn`]|0Xa =~Null =~$``).`6esn`! ={0} Contains 0.0 Contains $@usn5 Union Remove Single(_usn3 In {`3esn`}[`2esn`] Where `3esn`[`3esn`..][#usn8..]).`1esn`?,[0.e0 Ends With $#usn7 Ends With $7].`6esn`!,(`2esn` :`8esn`:`7esn`)<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(:``:#usn8{usn1:{`6esn`}})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]}).`1esn` Foreach(`6esn` In [#usn8 In {`5esn`}[.e1..``] Where {`1esn`}[12.0..`2esn`][@usn6..{usn1}]] Is Not Null| With Distinct True[..$`6esn`],{@usn6} Ends With 's_str' Ends With 12.0 As `1esn` Order By Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $`3esn` =~{#usn8}|12.0 Ends With True)[..usn2(Distinct)] Ascending Skip Case When {``} Starts With $`2esn` Starts With `1esn` Then $`5esn` Starts With $0 Starts With {0} End[None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e1 Is Not Null)..[`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1]] Load Csv With Headers From `5esn`({12} Ends With 1.0 Ends With .e0) Contains `3esn`(`5esn`[{`4esn`}..`2esn`],9e1[2.12..{#usn8}]) Contains (@usn5 :#usn7)<-[``?:`3esn`|:#usn8{`1esn`:.e0[..$`8esn`]}]-(`5esn` {`4esn`:01 Is Null})<-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(_usn4 ) As `6esn` Fieldterminator 's_str')"), - octest_legacy:ct_string("Remove (:usn1{usn1:{`6esn`}})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(@usn6 :`1esn`)<-[`6esn`]-(`1esn` {@usn5:1.0[0e0..0.e0]}).`7esn`!,Any(`3esn` In {7} Is Null Where 1e1 Contains Count ( * )).`4esn`,#usn8:`4esn` Start ``=Relationship:usn2('s_str') ,`1esn`=Rel:`4esn`(`4esn`='s_str') Union All Detach Delete 's_str' =~{_usn4} =~$`7esn`,(:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0}) In [`4esn`[..Count ( * )][..{#usn7}]],$`5esn` Starts With `` Union Match `3esn`=Shortestpath((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))),Shortestpath(({@usn5:07[..True][..9e12]})-[_usn4?:`5esn` *..07]->({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})) Using Index @usn5:`2esn`(@usn5) Using Scan `7esn`:usn1 Where Null[$#usn7] Start `7esn`=Rel:`6esn`(\"d_str\") "), - octest_legacy:ct_string("Foreach(@usn5 In {`3esn`} In 01| Load Csv With Headers From {0}[\"d_str\"..07][0..'s_str'] As @usn5 Fieldterminator \"d_str\" Remove Case When $#usn8[$`8esn`..{`8esn`}] Then $#usn8[$`8esn`..{`8esn`}] Else #usn8 Is Not Null Is Not Null End.@usn6!) Return Distinct *,9e1[2.12],$_usn4 Contains Null Contains #usn8 As #usn7 Order By (usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]})<-[ *123456789..]-(:@usn5) Is Null Is Null Desc,False[..{`1esn`}] Desc Skip 1e1[$`5esn`][{`3esn`}] Limit {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains [1.0[0X7][{`5esn`}]]"), - octest_legacy:ct_string("Load Csv With Headers From Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End[..[9e1[1000][{123456789}],$_usn3[{#usn7}],`5esn` Starts With $`2esn` Starts With $1000]][..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0 In `2esn` In 010)] As `5esn` Fieldterminator \"d_str\" Union Foreach(_usn3 In 1e1 In 123.654 In `3esn`| Remove Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $`` Is Not Null|{123456789}[9e12][{0}]).``!,Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6}).@usn5) Detach Delete {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]),[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12),$_usn4 Is Null Is Null"), - octest_legacy:ct_string("Start usn2=Node:_usn4(``={#usn7}) ,`8esn`=Node:@usn6({_usn4})Where 12.0 =~1.0 =~9e12 Start #usn7=Node:`6esn`(`3esn`=\"d_str\") Union Start `5esn`=Node:@usn5({usn1}) ,``=Node:usn2(#usn8=\"d_str\") Delete {`4esn`:`7esn` Is Null}[{`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]}..],0.0[$0][{@usn5}],{`4esn`}[$usn2..07] Union All With 123.654 Is Not Null,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where False|{`1esn`}[12.0..`2esn`][@usn6..{usn1}]] =~Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 00[{`8esn`}..][{`8esn`}..]|{0}) =~{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}} Where $@usn5 Starts With $1000 Create Unique `3esn`=Shortestpath((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))"), - octest_legacy:ct_string("Merge ((`4esn` {`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}})) On Match Set `2esn`+=Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`]) In {usn2:{`3esn`} Is Not Null Is Not Null} In {`4esn`:False,_usn4:$`7esn` Is Null Is Null} Union Match #usn8=((`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0})),usn1=Allshortestpaths((`` {@usn6:1.0[$`1esn`..][$123456789..]})-[`7esn`*]->(`7esn` {`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})-[@usn6]-(`5esn` {`4esn`:01 Is Null})) Using Scan `4esn`:`2esn` Using Join On `1esn` Where {1000} =~0 =~123.654 Union All Create Unique `5esn`=(((_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(#usn7 {@usn5:$`8esn` =~{1000}})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]}))),usn2=Shortestpath((usn2 :#usn7)) Create Unique @usn6=((usn2 :@usn5)-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`4esn`{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})) Merge `3esn`=Allshortestpaths((((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5)))) On Match Set _usn4:usn1,@usn5 =0.e0[#usn8],`4esn` =`7esn`[$12..][$`8esn`..]"), - octest_legacy:ct_string("Merge usn1=Shortestpath(((`7esn` {`4esn`:{usn1} Ends With $0})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2})-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]-(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null}))) On Create Set (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(:usn2{usn2:7[..999][..{#usn8}]}).`3esn` ={_usn4:Count ( * )[True..][{#usn7}..],``:{``} Ends With `7esn` Ends With 0.0} In (usn2 {``:01[{@usn5}]})<-[?:_usn4|:usn2{`8esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],``:_usn3 Contains $123456789 Contains ``}]->(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(:_usn4{_usn4:{7} In `2esn`}) In {`4esn`:`7esn` Is Null} Return {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]),Shortestpath((@usn5 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[:#usn8|`1esn`*{`8esn`:0Xa[usn2..]}]-(`3esn` :_usn3:_usn3{@usn5:False})) Ends With {@usn5:$12[Null..Count(*)][{`5esn`}..{999}],#usn7:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4]} Ends With Case {123456789}[0xabc..] When $0[..9e1] Then 0.e0 Ends With $#usn7 Ends With $7 End As _usn3 Skip Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where _usn4 Contains 2.12)[(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})..][#usn7(7 =~{`8esn`} =~$`6esn`,$123456789 Ends With {`1esn`} Ends With $`4esn`)..] Union All Start `2esn`=Node:``({`1esn`}) "), - octest_legacy:ct_string("Load Csv From {#usn7:0X0123456789ABCDEF =~1e1 =~{`4esn`},`2esn`:1.0 =~'s_str' =~{`2esn`}}[..None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 0X7[`7esn`][123.654])][..(:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})<-[`2esn`?:`7esn`]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})] As `8esn` Fieldterminator \"d_str\" Union All Match Allshortestpaths(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))),Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Using Index ``:_usn4(_usn4) Where {#usn7}[9e1..][{123456789}..] Union All Merge @usn6=Shortestpath((#usn7 {`5esn`:00 Starts With 0xabc,`6esn`:0Xa =~Null =~$``})) On Create Set `4esn`+=(`1esn` :#usn8:#usn8)-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})[..(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})][..`5esn`({12} Ends With 1.0 Ends With .e0)],Any(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`])._usn4! ={@usn6}[{999}..][00..] Create Unique #usn8=Shortestpath((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[_usn3? *0X7..]-(:`5esn`{`2esn`:`4esn`[1.0]})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"}))"), - octest_legacy:ct_string("Optional Match _usn4=Allshortestpaths((:_usn4{usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})),({`4esn`:`7esn` Is Null}) Union Remove Allshortestpaths((:@usn5{_usn3:07 =~01}))._usn4 Foreach(`` In .e0[..0X0123456789ABCDEF][...e12]| Return *,12.0 Ends With True Skip {`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}[Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End..[`3esn` In {7} Is Null Where {123456789} Contains $#usn8|#usn7 =~Count ( * ) =~``]][`7esn`(9e1[1000][{123456789}]).._usn3(0.12 =~$0 =~$0)] Return Distinct *,0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn` As `7esn` Limit 9e12[`6esn`..12.0]) Union Load Csv With Headers From $`6esn`[010..] As `7esn` Fieldterminator \"d_str\" With 12 Ends With $usn2 As #usn8,$`3esn` In Null As @usn6 Create Unique Shortestpath(((({`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})<-[`8esn`*..{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]}]-(#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(`6esn` :_usn3:_usn3{`4esn`:0Xa Starts With {`6esn`} Starts With $usn1}))))"), - octest_legacy:ct_string("Foreach(`2esn` In Null Is Not Null Is Not Null| With {``} Is Not Null As #usn7,{#usn7}[`2esn`..],Count ( * ) Contains {`1esn`} Contains 07 Order By `8esn` Is Not Null Is Not Null Desc Limit $123456789[_usn3][{#usn7}] Where Count ( * ) Ends With 12.0) Create usn2=Shortestpath((({_usn3:.e12[@usn5..$12]})-[`3esn`:#usn7]->(@usn6 {_usn3:{#usn7} Is Not Null Is Not Null}))),`5esn`=(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})-[_usn4? *..01]-(_usn4 :usn2{usn1:7[True..][2.12..],`8esn`:2.12 Ends With $_usn3 Ends With `3esn`})-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]-({`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}) Union Create `7esn`=Allshortestpaths(((`1esn` :#usn7))),((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})) Remove {`4esn`:01 Is Null}.#usn7?,(:`3esn`:@usn5{``:12.e12[$_usn3..],_usn3:$`6esn`[010..]})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07}).`3esn`,Single(`8esn` In 01[2.12..`8esn`] Where {usn2}).`7esn` Start _usn3=Node:@usn6({#usn7}) Where `5esn` Starts With 010 Starts With 0.0 Union All Create Unique Allshortestpaths((`1esn` {_usn4:1.e1[$`1esn`..@usn6][$0..$_usn3],#usn8:$@usn5[..12e12][..$123456789]})<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})),(:@usn6:#usn8{`7esn`:0x0[`4esn`..'s_str']}) Remove usn1(Distinct {`3esn`} In 01,0X7 =~9e1).`3esn`?,Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}).`1esn`!,Filter(`5esn` In $999[0.0..] Where $`3esn`[..$123456789][..$`1esn`]).@usn6 Start usn1=Node:`7esn`(`3esn`={``}) "), - octest_legacy:ct_string("Delete True[{_usn4}..][False..],$#usn7[@usn5..{1000}][1.e1..7],#usn7 Contains usn2 Contains @usn5 Unwind [_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null|999 Is Not Null Is Not Null] Ends With [`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null|{`5esn`} Starts With $`5esn` Starts With .e1] Ends With {``:usn1 Starts With usn1 Starts With $``} As #usn7 Union Return Distinct [$`5esn`[..$`5esn`][..$12],9e12[`6esn`..12.0],Null[$`5esn`][False]] Is Null Is Null As #usn8 Skip Case #usn7 Starts With {#usn7} Starts With `7esn` When $#usn7 Is Null Then Count(*) Is Null Is Null End =~Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))) =~Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {_usn4}[...e1][..$7]) Limit exists({#usn7}[`2esn`..],$`3esn`[..$123456789][..$`1esn`])[All(`5esn` In \"d_str\" Is Null Is Null Where #usn8)..] Create _usn4=Allshortestpaths(({`7esn`:{999}})) Create `6esn`=((`2esn` :_usn4)) Union All Remove [_usn3[_usn3..][12.e12..]].`8esn`!,All(`8esn` In 01[2.12..`8esn`])._usn4! Create usn2=(((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})))"), - octest_legacy:ct_string("Create Unique ((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})),Allshortestpaths(((`2esn` :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0}))) Merge ((@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})) On Match Set `3esn` =Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End On Match Set Case When $_usn3[Count(*)] Then 010[#usn7..True] End.`6esn` =(`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})[\"d_str\"..Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null)][Shortestpath(((:`3esn`:@usn5$7)))..usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010])],All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where $_usn4 Ends With usn1 Ends With $0).@usn5? =Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End"), - octest_legacy:ct_string("With Distinct $`3esn`[0.12..`8esn`][$#usn7..`5esn`],Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]) =~Reduce(usn1=.e1 Ends With 1e1 Ends With @usn5,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$#usn7[#usn7..]) =~`1esn`($1000 Is Null) As @usn6 Limit 7[$`4esn`][0x0] Where 7[$`2esn`..{`5esn`}] With 0.e0 In $#usn7 In $_usn3,(usn2 :@usn5)-[?{`8esn`:{7} Is Null}]->(`` )<-[`3esn`?:`3esn`|:#usn8]-(`` :#usn8:#usn8)[Reduce(usn2=`2esn` Starts With $_usn4,#usn7 In {``} Is Not Null|{7} Is Null)..][Single(#usn7 In {``} Is Not Null Where $1000[0Xa][{#usn7}])..] As `2esn` Order By $usn1 Ends With $`` Ends With $12 Desc,1e1[1000..] Ascending,{123456789}[0.e0..$123456789][0Xa..`6esn`] Descending Limit {123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4] Where `4esn` Ends With 07 Ends With {`3esn`}"), - octest_legacy:ct_string("Load Csv With Headers From 0X7[1000..{`1esn`}] As usn1 Match ((_usn4 )) Using Index `3esn`:@usn5(`2esn`) Using Scan _usn3:`1esn` Where {usn1}[0X0123456789ABCDEF] Start `7esn`=Node:`7esn`(_usn4={@usn6}) Union All Delete 12.e12[9e12..{`6esn`}] Union Unwind 0.0[$0][{@usn5}] As `5esn`"), - octest_legacy:ct_string("Optional Match `8esn`=Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))) Using Join On `8esn`,@usn5 Using Index _usn3:`4esn`(`2esn`) Where 0 In `2esn` In 010 Union Foreach(`8esn` In (`1esn` :#usn8:#usn8)-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})[..(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})][..`5esn`({12} Ends With 1.0 Ends With .e0)]| Remove [usn1 Ends With $@usn6 Ends With `3esn`,0xabc[.e0],{``}[010..][0xabc..]].``?) With Distinct 9e0 Starts With 01 As `2esn`,`` Ends With 123456789 Ends With 123.654 As usn2,Count ( * ) Contains 07 Skip {`4esn`} =~{7} =~{`7esn`} Where 0X7[0e0..`7esn`][1000..0e0] Unwind $`3esn` Is Not Null Is Not Null As _usn3 Union All Unwind @usn5 In $7 As `` With Case When @usn5 Is Null Then 2.12 Ends With $_usn3 Ends With `3esn` Else $1000 Is Null End[Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}])..None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa)][Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01|usn2 Is Null)..Case When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` End] As `2esn` Order By Case When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $`4esn`[..$`3esn`][..0.0] Then `1esn` =~0 =~$#usn7 Else {``} Is Null End Contains Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Contains All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {@usn6}[7]) Asc,Shortestpath(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})))[#usn7(Distinct $`5esn`[`3esn`..])..{``:0Xa Starts With {`6esn`} Starts With $usn1}] Ascending,All(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0[{usn2}..][$`6esn`..]) Is Not Null Asc Where {usn2}[.e0..$999] Start #usn7=Node( {`8esn`}) "), - octest_legacy:ct_string("Start _usn4=Rel:#usn8({_usn3}) ,`8esn`=Rel:`1esn`(@usn5='s_str') Create Unique ((@usn6 :`1esn`{#usn8:`4esn`[1.0],``:.e12[@usn5..#usn7][010..{usn1}]}))"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From Shortestpath(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})))[#usn7(Distinct $`5esn`[`3esn`..])..{``:0Xa Starts With {`6esn`} Starts With $usn1}] As #usn8 "), - octest_legacy:ct_string("Foreach(`3esn` In {123456789} Contains $#usn8| Create `7esn`=Shortestpath((((:`7esn`:_usn3{@usn5:07 Contains 0X7 Contains $`8esn`,`6esn`:{1000}[{_usn3}..]})<-[`3esn`? *..01]->(@usn5 :`5esn`)-[`8esn`?:usn1|@usn6{`8esn`:\"d_str\" Contains {123456789} Contains 01,@usn5:`1esn` In .e0 In {`3esn`}}]-(@usn6 :`1esn`{#usn8:`4esn`[1.0],``:.e12[@usn5..#usn7][010..{usn1}]})))) Match `2esn`=(({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->({`1esn`:{1000}[{_usn3}..],`1esn`:{123456789}[9e12][{0}]})),``=Shortestpath(((`` {@usn6:1.0[$`1esn`..][$123456789..]})-[?{`1esn`:$0[..9e1]}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]}))) Using Index `7esn`:usn2(`6esn`) Using Scan _usn3:_usn3 Where @usn6 Ends With {_usn3})"), - octest_legacy:ct_string("Return Distinct [1000 =~@usn6 =~0x0] Starts With {#usn8:$`7esn` =~{`8esn`} =~$usn1,`7esn`:0xabc[01..{999}][{7}..{`7esn`}]} Starts With `7esn`(Distinct 123.654[`3esn`..]) As `1esn`,Shortestpath((($#usn8)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})))[Single(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where usn1 Ends With $@usn6 Ends With `3esn`)..],{#usn7}[True][.e1] Order By $_usn4[Count ( * )..] Descending,$123456789 In 0X0123456789ABCDEF In 0.e0 Asc Skip 0x0[`4esn`..'s_str'] Foreach(_usn4 In _usn3 In 0xabc| Unwind 123.654[$`1esn`] As `2esn` Remove [{12} Contains {123456789} Contains `4esn`,1.e1[`8esn`][00],1.0[$`1esn`..][$123456789..]]._usn4?,Reduce(_usn3=123456789[#usn8..False],_usn3 In {`3esn`}[`2esn`]|123.654 Contains $`4esn` Contains 1.0).#usn8?) Delete 12.e12 Starts With {999} Starts With {`1esn`} Union All Remove Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `5esn` Starts With 010 Starts With 0.0).`3esn`?,(`7esn` {`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]}).`2esn`?,(:`1esn`)<-[`3esn`:`6esn`|`5esn` *..12{usn1:0X0123456789ABCDEF Is Null Is Null}]-(:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[`3esn`?:`3esn`|:#usn8]->(`8esn` :_usn4)._usn4! Union All Return Distinct [1000 =~@usn6 =~0x0] Starts With {#usn8:$`7esn` =~{`8esn`} =~$usn1,`7esn`:0xabc[01..{999}][{7}..{`7esn`}]} Starts With `7esn`(Distinct 123.654[`3esn`..]) As `1esn`,0.0[Null][$`2esn`],`6esn` Is Not Null Is Not Null As `3esn` Skip (usn2 :_usn4)-[ *7..12]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})[$`2esn`] Merge (:`1esn`{})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(:`6esn`$123456789) On Create Set usn2 =All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {_usn4} Is Not Null Is Not Null) Is Null On Match Set @usn6 ='s_str' Starts With 123.654"), - octest_legacy:ct_string("Foreach(_usn4 In Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})]| Create Unique @usn5=Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))),`2esn`=Allshortestpaths(((#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})-[`8esn`?:@usn6|`6esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}))))"), - octest_legacy:ct_string("Load Csv With Headers From {`5esn`}[{usn2}..1000][$`8esn`..{`3esn`}] As #usn8 Fieldterminator \"d_str\" Union Merge Allshortestpaths((#usn8 :@usn5)) On Create Set `1esn` =12.e12[``][{`2esn`}],`8esn`+=00[{`8esn`}..][{`8esn`}..],#usn7+={_usn4} Ends With `6esn`"), - octest_legacy:ct_string("Create `6esn`=((`2esn` :_usn4)),(((:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[:`6esn`|`5esn` *123456789..]-(#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}))) Union All Load Csv With Headers From `8esn`[$`8esn`..{`4esn`}] As _usn4 Fieldterminator 's_str' Remove [{12} Contains {123456789} Contains `4esn`,1.e1[`8esn`][00],1.0[$`1esn`..][$123456789..]]._usn4?,Reduce(_usn3=123456789[#usn8..False],_usn3 In {`3esn`}[`2esn`]|123.654 Contains $`4esn` Contains 1.0).#usn8? Union Return $`5esn` Starts With $0 Starts With {0},0e0 Starts With 1000 Starts With #usn7 As _usn3,$@usn5 Is Not Null Order By [0x0 Is Null,{``} Ends With `7esn` Ends With 0.0,0X7[0e0..`7esn`][1000..0e0]] =~Any(`5esn` In \"d_str\" Is Null Is Null Where $`6esn` Is Null) =~[$12[True..][{0}..],usn1[`5esn`..$7]] Desc,``[12.0..0e0][{`5esn`}..`7esn`] Ascending Match ((:usn1{usn1:{`6esn`}})),`2esn`=(:`4esn`{_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[#usn8:@usn5 *..01]-(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null}) Using Join On `8esn`,@usn6 Using Index `6esn`:_usn4(``) Where usn2 Is Not Null Is Not Null Create Unique _usn3=Shortestpath((:`3esn`:@usn5{`2esn`:{`3esn`}[..07][..{`5esn`}]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})),usn2=({@usn5:usn1 Is Not Null})<-[`3esn`:`6esn`|`5esn` *..12{usn1:0X0123456789ABCDEF Is Null Is Null}]-(:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})"), - octest_legacy:ct_string("Create #usn8=(`1esn` :`4esn`{`6esn`:$`6esn` Ends With Count(*),`7esn`:_usn3 Starts With 12.e12 Starts With 0.12}),(:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]->(#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})-[`1esn`?:`8esn`]->(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}) Union Match usn2=Allshortestpaths(((@usn6 :`1esn`{#usn8:`4esn`[1.0],``:.e12[@usn5..#usn7][010..{usn1}]}))) Using Join On ``,#usn7,`` Using Scan `5esn`:usn2 Optional Match (`7esn` {`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2}),`5esn`=Allshortestpaths(((:`1esn`{``:.e1 Is Null Is Null})<-[usn1?:`7esn` *0xabc..{`3esn`:$#usn8[$`8esn`..{`8esn`}]}]->(:`4esn`{`8esn`:0.e0 In $#usn7 In $_usn3}))) Where {`5esn`} Contains $0 Contains {``} Remove [9e1[1000][{123456789}],$usn2[{@usn5}],0Xa Starts With {`6esn`} Starts With $usn1].`3esn`?,[`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]].#usn7?"), - octest_legacy:ct_string("With Distinct $_usn3 In {1000} In 0.12,$_usn3[..1000] Order By `7esn`[$12..][$`8esn`..] Descending,9e1[2.12] Ascending,$`1esn` Starts With {`8esn`} Descending Limit @usn6 Contains Null Contains $`7esn` Remove 0Xa.`6esn`?,[`1esn` =~0 =~$#usn7,0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,0.12 In _usn3 In {0}].`4esn`? Union With Distinct Case When @usn5 Is Null Then 2.12 Ends With $_usn3 Ends With `3esn` Else $1000 Is Null End[Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}])..None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa)][Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01|usn2 Is Null)..Case When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` End] As `2esn` Skip {12}[..0X7] Limit 1e1 Contains Count ( * ) Where {`3esn`}[`2esn`]"), - octest_legacy:ct_string("Delete [`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\"] Is Null Union Create `5esn`=((`` :`2esn`:usn1)<-[usn2?:``]-(usn2 :``:#usn8)<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})) Delete $#usn8[..{`2esn`}][..1.0],`4esn`[1.0]"), - octest_legacy:ct_string("Merge `3esn`=Shortestpath(((:`1esn`{`5esn`:1.0 In Count(*)}))) Create `1esn`=(`5esn` :_usn4{7})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}),((`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})) Union All Foreach(@usn6 In #usn7 =~Count ( * ) =~``| With `5esn`[.e0..][07..] As `7esn` Order By {usn2}[$`3esn`..][{#usn7}..] Ascending,{@usn6} In {123456789} In 0xabc Asc Skip {999} Limit Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)[None(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Starts With $1000)..{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}][Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8)..None(#usn8 In {`5esn`}[.e1..``] Where $`3esn` Is Not Null)] Where usn2 Is Null Optional Match ((`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(_usn3 :#usn7)<-[@usn5?]->(`1esn` :`5esn`{`5esn`:{``} Is Null})),`7esn`=(@usn6 :_usn3:_usn3)-[?{`3esn`:7[{0}..{_usn4}]}]->(`7esn` :_usn3:_usn3)-[?:usn2|`` *..010{`4esn`:{`4esn`} Starts With $usn2 Starts With $1000,`7esn`:$@usn6 Contains 07}]->(:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}) Where {123456789}[9e12][{0}]) Remove [$1000 Is Null,$`1esn`[{`2esn`}..],.e1[{`7esn`}..{_usn4}]].@usn5 Delete 1000 In {`8esn`} In 01,1.0 Contains $_usn4 Union All Detach Delete $12 Ends With 07 Ends With $123456789,$`6esn`[{_usn3}..$`4esn`][$_usn4...e12] Foreach(usn1 In (:_usn4{@usn6})<-[`4esn`?:_usn4|:usn2{_usn4:$usn2[{@usn5}],`2esn`:usn1[`5esn`..$7]}]->({``:$`8esn` =~{1000}})<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(:``:#usn8{usn1:{`6esn`}})[[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn` Contains 123456789 Contains $usn2|123456789 Ends With 01234567 Ends With 1.e1]..{usn2:1.0 =~7 =~{usn2},`8esn`:$_usn3[.e0..$usn2]}][None(_usn3 In {`3esn`}[`2esn`] Where 7 Ends With $`4esn`)..Case {`2esn`} Starts With 123456789 When $`5esn` In $`6esn` Then $`6esn` Ends With Count(*) End]| Optional Match Shortestpath(((({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(:`6esn`$123456789)))),@usn6=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7)) Using Index `7esn`:usn2(`6esn`)) Start `1esn`=Node:usn2({12}) ,usn1=Node:`7esn`(`3esn`={``})Where {usn2}"), - octest_legacy:ct_string("Foreach(@usn6 In Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0) Is Not Null Is Not Null| Unwind {1000}[$`4esn`][\"d_str\"] As `3esn`) Unwind [$`5esn`[..$`5esn`][..$12],01[2.12..`8esn`],_usn3 Contains $123456789 Contains ``] As `1esn` Union Start #usn7=Node:``(\"d_str\") ,_usn3=Relationship:`3esn`('s_str')Where $@usn5 =~1000 =~1000 Union All Return Distinct 12 Ends With 0x0 Ends With 0.e0,Case When 1.0 In Count(*) Then False End Contains `1esn`(Distinct 0.e0 Starts With `2esn`) Contains Reduce(`1esn`=\"d_str\" Is Null Is Null,#usn7 In {``} Is Not Null|#usn7),0e0[..010] As `` Limit $@usn5[010..$#usn8][12..$`4esn`] Match @usn6=Allshortestpaths((`6esn` :`8esn`:`7esn`)<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})),`8esn`=((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})) Using Index `6esn`:`8esn`(``) Using Join On `5esn`,#usn7 Where 1.0[0e0..0.e0] Merge _usn3=({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True})-[@usn5?:`4esn`]-(:usn1{usn1:{`6esn`}})<-[_usn4 *..999]->(`7esn` {#usn7:\"d_str\" Contains {123456789} Contains 01,@usn5:$1000 In $1000 In $`3esn`}) On Match Set `4esn`+=$_usn4 Starts With 1e1,_usn3 =(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})-[usn1?:_usn3|_usn3]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})-[`7esn`]->(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]}) =~Shortestpath(((`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]})-[usn2?]-(`7esn` :`5esn`)-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->(:``:#usn8{`7esn`:00 Starts With 0xabc,_usn3:{123456789} Contains $#usn8})))"), - octest_legacy:ct_string("Delete 0xabc[.e0],(:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8)[Reduce(`7esn`=7[$`2esn`..{`5esn`}],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$_usn4[0e0..][False..])..({``:00 Starts With 0xabc,`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})][{}..{@usn6:`4esn`[..010][..{12}]}] Create Unique Allshortestpaths((_usn3 :@usn5)-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})),`4esn`=Allshortestpaths(({@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})-[`6esn`?:``]-(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]}))"), - octest_legacy:ct_string("With Allshortestpaths(((`8esn` ))) Ends With (`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]}),$_usn3['s_str'][07] As @usn5 Skip $_usn4[0e0..][False..] Return 12 Ends With $usn2 As #usn8,$`3esn` In Null As @usn6 Unwind ({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)[Shortestpath((((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``}))))..][{usn2:{7}[..1.0][..9e0]}..] As `8esn` Union Start #usn7=Node:`5esn`(\"d_str\") With Distinct None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As `5esn`,01 Is Null As `2esn`,{1000} =~$_usn4 Detach Delete Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})]"), - octest_legacy:ct_string("Remove {usn1:$usn1[{`5esn`}][$`6esn`]}.usn2?,Reduce(`1esn`=True =~010,`8esn` In 01[2.12..`8esn`]|{_usn3}[..\"d_str\"][..`5esn`]).#usn8?,Case 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] When $`1esn` =~0X7 Then $`2esn`[2.12..'s_str'][{@usn6}.._usn4] When $1000[`2esn`..`5esn`][1e1..1.e1] Then {`3esn`}[`2esn`] Else 0[..usn2][..{@usn5}] End.@usn5! Unwind {`3esn`}[..$`3esn`][..12.e12] As _usn3 Foreach(usn1 In 0.0[`7esn`..][12.e12..]| Create Allshortestpaths((((`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`2esn` *..07]-(`1esn` {#usn7:{_usn4} In {12} In $0})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})))))"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From {`4esn`:False,_usn4:$`7esn` Is Null Is Null}[..Reduce(`4esn`={`4esn`} Ends With {123456789} Ends With $`4esn`,`2esn` In `1esn` =~\"d_str\"|7[..123456789][..{@usn6}])][..None(`5esn` In \"d_str\" Is Null Is Null Where {``} Ends With `7esn` Ends With 0.0)] As `8esn` Fieldterminator 's_str' Match `7esn`=Allshortestpaths((({_usn3:$`5esn`[`3esn`..]})-[? *..07{`4esn`:@usn5 =~{`5esn`} =~`5esn`}]->(_usn3 :usn2{#usn7:{999} Starts With {0}}))) Using Scan _usn4:@usn6 Start `7esn`=Rel:`6esn`(\"d_str\") ,#usn7=Node:@usn6(`7esn`={`8esn`})Where {#usn7} Is Not Null Is Not Null"), - octest_legacy:ct_string("Load Csv From {#usn7}[True][.e1] As `` Fieldterminator \"d_str\" Remove (:usn2{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})-[`2esn`:`7esn`]-(`2esn` :usn1).`8esn`!,Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0xabc[01..{999}][{7}..{`7esn`}]|0 In `2esn` In 010).`1esn`!,{#usn8:$123456789 Is Null Is Null,`8esn`:Count ( * )[0.12...e1]}._usn4 With Distinct False Is Null Is Null,Count(*) Is Null Is Null As usn2,0Xa[9e1..][$`6esn`..] As @usn6 Order By 123.654 Is Not Null Is Not Null Descending,{123456789} Starts With 0.0 Starts With `5esn` Desc,Case 01[{`2esn`}..{@usn6}][$`2esn`..0.0] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] When 12e12[$`3esn`] Then {`5esn`} Contains $0 Contains {``} Else usn1 Starts With usn1 Starts With $`` End[usn2(Distinct 0.12 In _usn3 In {0},@usn6 Is Null Is Null).._usn4(0.e0 Starts With 12.e12 Starts With {_usn4},0X0123456789ABCDEF Is Null Is Null)][[{7}[$``][{@usn6}],0.0 Ends With 010 Ends With 1.e1]..$`4esn`] Asc Skip 0.0[Null][$`2esn`]"), - octest_legacy:ct_string("Foreach(`6esn` In `7esn`[..2.12][..{usn1}]| Start `2esn`=Node:@usn6({_usn4}) ,_usn3=Relationship:`8esn`({`1esn`}) Return Distinct 0X7[1000..{`1esn`}] As `3esn`,$`2esn`[12.e12..][{`4esn`}..] Order By 0.0 =~999 Asc,$`5esn` In 0.e0 Asc,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) Ascending Limit Count ( * ) Is Null) With Distinct .e0 Ends With 0.12 As _usn3 Order By .e1 =~{@usn6} =~Null Asc,usn2(Distinct Null In $7 In .e1,`1esn` Contains {usn2} Contains $#usn8) In All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7) In Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 2.12 Ends With $_usn3 Ends With `3esn`|{123456789} Contains $#usn8) Asc,Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]] Ascending Skip _usn3[..`8esn`][..2.12] Limit Reduce(`1esn`={`8esn`} Ends With `6esn`,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|1e1 In 123.654 In `3esn`)[[#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]]] Foreach(`4esn` In {usn1} Is Not Null Is Not Null| With Distinct $`8esn`[1000..0Xa],({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(:@usn5)<-[`7esn`?:`8esn`]-({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}) Ends With $7 Ends With All(`` In `` Is Not Null Is Not Null Where 1000 In {`8esn`} In 01) As ``,usn1 Starts With $usn1 As `1esn` Order By Null[``] Descending,1.e1[$`1esn`..@usn6][$0..$_usn3] Asc,$`6esn`[.e0..$`6esn`][$_usn3..{#usn7}] Desc Limit {`4esn`} Starts With 1e1 Where 0Xa[usn2..]) Union Unwind Extract(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|{@usn5} Is Null Is Null)[Case When $0[..9e1] Then Count(*)[..usn2][..usn2] When {`2esn`} Starts With 0.0 Starts With {usn1} Then 0e0 In @usn5 Else 01 =~{_usn3} =~`3esn` End.._usn3(1.0 In Count(*),0[{usn2}..][$`6esn`..])][count(Distinct $12[Null..Count(*)][{`5esn`}..{999}],$`4esn`[`7esn`])..Case When $123456789 Ends With $999 Ends With {999} Then `3esn`[{usn1}] When #usn7 =~Count ( * ) =~`` Then $_usn4 Starts With 1e1 End] As usn1 Return (_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})[[{@usn6}[{999}..][00..],@usn5 =~{`5esn`} =~`5esn`,`7esn` Is Null]][Reduce(`7esn`=0X0123456789ABCDEF Is Null Is Null,`5esn` In $999[0.0..]|$1000[Null][`4esn`])] As @usn6,9e0 Is Not Null Is Not Null Skip {7}[$`5esn`][{_usn3}] Limit Shortestpath(((`1esn` )))[Case 7[$`2esn`..{`5esn`}] When 0e0[..010] Then {123456789} Is Null Is Null Else `6esn`[..$@usn6] End..][Shortestpath(((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(@usn5 :`4esn`)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]})))..] Remove Reduce(``=2.12 Contains usn2 Contains True,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|`4esn`[..Count ( * )][..{#usn7}]).@usn6?,[Null Ends With `2esn` Ends With $usn1,0X0123456789ABCDEF[123456789],0Xa[$123456789..123.654][.e12..0.e0]].`3esn`! Union All Remove {`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null}.`4esn`?,usn1:#usn7,Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`|$_usn3[..1000]).``"), - octest_legacy:ct_string("Optional Match Allshortestpaths(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))),Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Using Join On `8esn`,`2esn` Where 0e0 In @usn5 Merge `6esn`=Allshortestpaths(((_usn3 :`3esn`:@usn5))) On Create Set Any(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12.0[123.654][Count(*)]).`4esn`? =(:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case When `6esn`[12..$usn2][{#usn8}..{usn2}] Then {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] When .e12[@usn5..#usn7][010..{usn1}] Then 0.12 =~$0 =~$0 End,`8esn` =All(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Contains (`5esn` :_usn4{`5esn`:07[..True][..9e12]})-[`8esn`?:`2esn`{@usn6:{12}[..0X7]}]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]})<-[_usn4{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00}) Contains [0.12[$`3esn`..$_usn3][12.0..usn1]],_usn4 =$#usn8 In 0Xa In `6esn` On Match Set `2esn`+=#usn7 Contains _usn3 Contains {`3esn`},Reduce(`8esn`={usn1} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|0xabc[.e0]).`3esn`! =$@usn5 Starts With 01 Starts With .e0 Union Foreach(`5esn` In 0.12 Contains 0X0123456789ABCDEF Contains .e0| Return None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})[Any(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")..Reduce(usn1=#usn7[usn1][$`5esn`],`3esn` In {7} Is Null|Count(*) Ends With 12.0 Ends With 12)][(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})..({usn1:`5esn`[_usn4..]})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})],@usn5 =~{`5esn`} =~`5esn` As _usn4,$123456789 In $#usn7 In `4esn` As `` Limit #usn7[010..False]) Load Csv From usn2 Is Not Null As @usn6 Fieldterminator \"d_str\" Load Csv From Shortestpath(((:`8esn`:`7esn`$#usn7)-[`5esn`:`8esn`]->(#usn8 {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]}))) In [_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..]|1.0 Is Null Is Null] In Case When Count ( * ) Contains 07 Then 123.654[$`1esn`] End As `3esn` Fieldterminator \"d_str\" Union All Start `3esn`=Relationship:_usn3(`8esn`={123456789}) ,#usn7=Node:@usn5('s_str') Unwind $`4esn` Starts With $`5esn` Starts With False As #usn8 Remove Extract(`5esn` In \"d_str\" Is Null Is Null Where 12.e12 Starts With {999} Starts With {`1esn`}).`5esn`,{_usn3:$@usn5 Starts With 01 Starts With .e0,@usn6:123456789[$@usn5..]}.usn2?,[#usn8 In 7[..999][..{#usn8}] Where `5esn`[{`4esn`}..`2esn`]|1.0[0X0123456789ABCDEF]].`7esn`?"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From Case When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $`4esn`[..$`3esn`][..0.0] Then `1esn` =~0 =~$#usn7 Else {``} Is Null End Contains Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Contains All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {@usn6}[7]) As _usn4 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Remove Case {#usn7}[`2esn`..] When {1000}[$999...e12][`7esn`..'s_str'] Then 0x0 Ends With $12 When $`5esn`[{`3esn`}] Then $#usn7 Contains 0x0 Contains 1000 Else {@usn6}[7] End.`2esn`!,Reduce(@usn6=1000 In {`8esn`} In 01,#usn7 In `2esn`[..$#usn8][..Count(*)]|$`4esn`[Null..]).usn2,Case {123456789} =~`8esn` =~@usn5 When $#usn8[9e12..][.e1..] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] When 0x0[{`7esn`}..][$usn2..] Then @usn5 Is Null Else 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] End.`2esn` Start @usn6=Rel:@usn6(usn1={999}) Where 0e0 Ends With 1.e1 Ends With $`4esn`"), - octest_legacy:ct_string("Merge Shortestpath(((:_usn4{usn2:0X7 =~9e1})<-[? *..0x0]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}}))) On Match Set Reduce(`8esn`=Count ( * ) Contains 07,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|\"d_str\"[#usn8])._usn3! =[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12),Reduce(@usn6={`8esn`} Ends With `6esn`,`4esn` In $`3esn` Is Not Null|False =~$7 =~2.12).`8esn` =$`4esn`[`7esn`] On Create Set #usn8 =Extract(`5esn` In \"d_str\" Is Null Is Null)[Any(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``)][Case $`7esn` Is Null Is Null When {#usn7}[9e1..][{123456789}..] Then False =~1e1 =~0.e0 Else 1000 In {`8esn`} In 01 End],#usn7+=`4esn`[..Count ( * )][..{#usn7}],@usn5 =@usn6 In 1000 In $``"), - octest_legacy:ct_string("Foreach(`5esn` In $`8esn`[..00]| Load Csv From .e0 =~`6esn` =~{12} As usn1 Fieldterminator \"d_str\" Start `3esn`=Relationship:#usn7('s_str') ,#usn7=Rel:_usn3({@usn5})) Foreach(`5esn` In \"d_str\" Contains {123456789} Contains 01| Match #usn7=({@usn5:07[..True][..9e12]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}),Allshortestpaths((_usn4 :usn1)<-[`1esn`?:`4esn`]->(`5esn` :`4esn`)) With Distinct .e12[..`7esn`][..0Xa],123.654 Is Not Null Is Not Null As `8esn`,All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By {usn2} Descending,1.0 =~7 =~{usn2} Desc Skip 0.0[$0][{@usn5}] Where _usn3 Contains $123456789 Contains ``) Union Create Unique Shortestpath(((({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})<-[#usn8?:usn1|@usn6]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]})-[#usn7?:_usn4|:usn2 *00]-(`7esn` :`4esn`)))) Load Csv From Case 1.0 In Count(*) When $_usn4[Count ( * )..] Then Null[``] When $1000[`2esn`..`5esn`][1e1..1.e1] Then .e12[@usn5..#usn7][010..{usn1}] Else 1.0[$`1esn`..][$123456789..] End As `6esn` Union Create `6esn`=(usn2 {``:01[{@usn5}]})<-[{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(`3esn` :`2esn`:usn1{`8esn`:9e12[`6esn`..12.0],``:01[{@usn5}]})<-[`8esn`:`2esn` *..07]->({@usn6:01234567 Ends With .e12 Ends With $#usn7,`4esn`:12.e12[`3esn`]}),Allshortestpaths((((`4esn` )<-[? *0X7..{#usn8:{1000} Is Null Is Null,`3esn`:0.e0 Starts With 12.e12 Starts With {_usn4}}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})-[`8esn`?]->(`1esn` :#usn8:#usn8))))"), - octest_legacy:ct_string("Unwind {`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}[Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End..[`3esn` In {7} Is Null Where {123456789} Contains $#usn8|#usn7 =~Count ( * ) =~``]][`7esn`(9e1[1000][{123456789}]).._usn3(0.12 =~$0 =~$0)] As ``"), - octest_legacy:ct_string("Unwind $usn1[.._usn4][..False] As @usn6 Return Distinct *,2.12 Ends With $_usn3 Ends With `3esn` As `7esn`,0 In `2esn` In 010 Order By Count ( * ) Starts With 7 Starts With $123456789 Descending,01234567 Ends With .e12 Ends With $#usn7 Asc,$`6esn` =~1.e1 =~12 Asc Skip [{`3esn`} Is Not Null Is Not Null] Limit Single(#usn8 In {`5esn`}[.e1..``] Where $`` =~12.0 =~$`7esn`) Contains Case When {`1esn`}[12.0..`2esn`][@usn6..{usn1}] Then 's_str'[00][{`5esn`}] Else $#usn7 Is Null End Contains None(`5esn` In $999[0.0..] Where .e1 =~$`8esn`) Detach Delete `6esn`[2.12..01][{``}..False]"), - octest_legacy:ct_string("Delete `5esn`(Distinct $0,$_usn4 Contains Null Contains #usn8) In Case 12.0[123.654][Count(*)] When $_usn3[Count(*)] Then 0e0 =~`6esn` =~123456789 End In {`8esn`:False Is Null Is Null},`6esn`[2.12..01][{``}..False],[_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null|999 Is Not Null Is Not Null] Ends With [`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null|{`5esn`} Starts With $`5esn` Starts With .e1] Ends With {``:usn1 Starts With usn1 Starts With $``} Merge (`1esn` :`4esn`{`6esn`:$`6esn` Ends With Count(*),`7esn`:_usn3 Starts With 12.e12 Starts With 0.12})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})"), - octest_legacy:ct_string("Create `2esn`=Shortestpath(((usn2 :`6esn`{#usn7:Count ( * ) Contains 07})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))),Allshortestpaths(((`8esn` )-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})<-[ *..12]->(#usn8 {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]}))) Union Optional Match Shortestpath((({`5esn`:$#usn8 Ends With $`2esn` Ends With $@usn6})<-[`4esn`?:usn2|`` *0X7..]->({_usn3:$`5esn`[`3esn`..]})-[@usn5?:`4esn`]-(:usn1{usn1:{`6esn`}}))) Create Unique @usn5=((`5esn` {`8esn`:1000[Null..{123456789}]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})-[:@usn6|`6esn`{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}]->(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})),`4esn`=Allshortestpaths(((:`2esn`:usn1)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})))"), - octest_legacy:ct_string("Return *,Allshortestpaths((:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))[[{_usn4} In {12} In $0,$`5esn`[2.12..],12[1.e1..{_usn3}][1.e1..1.0]]][[12e12 Is Not Null Is Not Null]] Order By $_usn3 In {1000} In 0.12 Desc Merge ((@usn5 :`4esn`)) On Match Set `3esn`+=.e1[..$@usn6][..`2esn`] On Create Set Shortestpath((`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[:`3esn`|:#usn8 *7..12{@usn5:_usn4 Starts With $_usn4 Starts With 12.e12}]->(`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null})).`1esn` =[$0] In [`2esn` In `1esn` =~\"d_str\" Where {0} Ends With $_usn3 Ends With $`7esn`|{999} Contains .e0 Contains 12.0] In None(`2esn` In `1esn` =~\"d_str\" Where {`7esn`}[..$@usn5][..$#usn8]) Foreach(`` In {`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]} Starts With [False] Starts With Filter(#usn8 In 7[..999][..{#usn8}] Where $_usn3[.e0..$usn2])| Load Csv With Headers From 123.654[0e0..$``][$`1esn`..$`8esn`] As _usn4 ) Union Create Unique (`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]}) Match #usn8=Shortestpath((#usn8 :@usn5)) With True[..$`6esn`],(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})[[{@usn6}[{999}..][00..],@usn5 =~{`5esn`} =~`5esn`,`7esn` Is Null]][Reduce(`7esn`=0X0123456789ABCDEF Is Null Is Null,`5esn` In $999[0.0..]|$1000[Null][`4esn`])] As @usn5 Skip Count ( * ) Is Null Limit 07 =~01 Where 0X0123456789ABCDEF[123456789]"), - octest_legacy:ct_string("Optional Match (`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2}),_usn4=({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[?:`8esn`{`3esn`:1.0 In Count(*)}]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}) Where {usn1}[0X0123456789ABCDEF] Start usn1=Node:`3esn`(`2esn`={usn1}) ,@usn5=Relationship:`6esn`(`8esn`='s_str') Union Unwind 's_str' In $usn1 In False As `6esn` Union All Merge _usn3=((:`1esn`{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})) On Create Set `2esn` =$``[1.0],`8esn` =010[..12e12][..12e12],`5esn` =Extract(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|{@usn5} Is Null Is Null)[Case When $0[..9e1] Then Count(*)[..usn2][..usn2] When {`2esn`} Starts With 0.0 Starts With {usn1} Then 0e0 In @usn5 Else 01 =~{_usn3} =~`3esn` End.._usn3(1.0 In Count(*),0[{usn2}..][$`6esn`..])][count(Distinct $12[Null..Count(*)][{`5esn`}..{999}],$`4esn`[`7esn`])..Case When $123456789 Ends With $999 Ends With {999} Then `3esn`[{usn1}] When #usn7 =~Count ( * ) =~`` Then $_usn4 Starts With 1e1 End] Remove ({@usn6:01234567 Ends With .e12 Ends With $#usn7,`4esn`:12.e12[`3esn`]})<-[ *123456789..]-(:@usn5).`1esn`!"), - octest_legacy:ct_string("Foreach(@usn5 In `5esn` Starts With 010 Starts With 0.0| Create Shortestpath(((:#usn8:#usn8)-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12}))),Shortestpath((({_usn3:{_usn4} Is Not Null Is Not Null})<-[_usn4 *0..{_usn4:00[`2esn`..12][123456789..0.e0],`8esn`:0x0[`4esn`..'s_str']}]->()<-[``? *..01{`1esn`:$@usn6 Contains 07}]->(:#usn8:#usn8{@usn6:$_usn3[..1000]}))) Create ((`1esn` {`5esn`})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})),Shortestpath((((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`8esn`?:`2esn`*..{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]}))))) Delete 0.0 Is Not Null Is Not Null,None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})[Any(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")..Reduce(usn1=#usn7[usn1][$`5esn`],`3esn` In {7} Is Null|Count(*) Ends With 12.0 Ends With 12)][(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})..({usn1:`5esn`[_usn4..]})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})],Reduce(#usn7=$1000 Is Null,#usn7 In {``} Is Not Null|$`1esn` Ends With 9e1 Ends With $123456789) In Case When `5esn` Is Null Then True[..$`6esn`] Else `3esn`[`3esn`..][#usn8..] End Create Unique `8esn`=((:@usn6:#usn8)<-[`1esn`?:usn2|``]-({@usn5:{usn2}[.e0..$999]})) Union Return Distinct $`5esn`[$`4esn`..{@usn6}][07..$@usn6] As usn2 Order By [usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*)) Ascending,Case When 1.0 In Count(*) Then False End Contains `1esn`(Distinct 0.e0 Starts With `2esn`) Contains Reduce(`1esn`=\"d_str\" Is Null Is Null,#usn7 In {``} Is Not Null|#usn7) Descending Skip Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End Limit All(#usn7 In {``} Is Not Null Where {_usn4}[...e1][..$7]) Is Null Is Null Match Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Using Index ``:usn1(@usn5) Using Index `3esn`:`5esn`(#usn7) Where $`5esn`[2.12..] Unwind $_usn4 In usn1 In $7 As usn1 Union All Foreach(usn2 In $12[True..][{0}..]| Return Distinct 0X7[1000..{`1esn`}] As `3esn`,$`2esn`[12.e12..][{`4esn`}..] Order By 0.0 =~999 Asc,$`5esn` In 0.e0 Asc,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) Ascending Limit Count ( * ) Is Null Load Csv With Headers From {1000}[$`4esn`][\"d_str\"] As _usn3 ) Create Unique (:``:#usn8{_usn3:$`7esn` Is Null Is Null}),`5esn`=Shortestpath((((@usn5 :_usn4{#usn7:Null Ends With `2esn` Ends With $usn1,`5esn`:12.0})-[?:#usn7 *01234567..0Xa]->({``:$`8esn` =~{1000}})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})))) Remove [`2esn` In `1esn` =~\"d_str\" Where usn2[9e12]|usn2 Ends With 999 Ends With .e1].`5esn`,(`` :_usn4{_usn4:False[..``],usn2:9e1[1000][{123456789}]})-[ *7..12{`2esn`:.e12 Ends With _usn4}]->(:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(:@usn6:#usn8{`1esn`:`4esn`[..010][..{12}]})._usn4?,Extract(#usn8 In {`5esn`}[.e1..``] Where $`` =~12.0 =~$`7esn`|1e1 In 123.654 In `3esn`).`6esn`!"), - octest_legacy:ct_string("Return *,Reduce(`2esn`=12[1.e1..{_usn3}][1.e1..1.0],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{#usn8}[010]) Is Not Null Is Not Null Skip Reduce(@usn6=0.e0 Ends With $#usn7 Ends With $7,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999})[[#usn8[`3esn`..][{#usn7}..]]..(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`8esn` :@usn6:#usn8)<-[{`8esn`:07 In `2esn` In 12e12}]->(:_usn4{`6esn`:{`6esn`} =~$999,`6esn`:$#usn7[..{`5esn`}][..9e12]})][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)..Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0e0 Starts With `2esn` Starts With $``)] Limit {`5esn`} =~`4esn` =~{_usn4} Foreach(`7esn` In {#usn8} Is Not Null| Start `1esn`=Rel:_usn4(``={#usn7}) ,`3esn`=Relationship:#usn7('s_str')Where 's_str'[00][{`5esn`}]) Detach Delete Shortestpath((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0}))[Single(`5esn` In $999[0.0..] Where usn2 Ends With 999 Ends With .e1)..],{0}[{`8esn`}..`4esn`],Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 1.0 =~7 =~{usn2}) Is Not Null Is Not Null Union All Foreach(`2esn` In 9e1[True]| Create Unique @usn6=((usn2 :@usn5)-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`4esn`{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})) Load Csv With Headers From 0e0[07] As _usn4 Fieldterminator 's_str') Unwind 0x0[{`7esn`}..][$usn2..] As `7esn` Union Remove Case When 1.0 Starts With 12e12 Starts With {`5esn`} Then {0} End.usn1!,Case When 1.0 Contains $_usn4 Then {999} Contains .e0 Contains 12.0 Else `5esn`[_usn4..] End.#usn8! Start _usn4=Node:`3esn`(`2esn`={usn1}) ,`6esn`=Node:``('s_str') Unwind 999 In {`3esn`} In usn2 As `6esn`"), - octest_legacy:ct_string("Merge `5esn`=(_usn4 :`5esn`)-[ *0..]->(`` :usn2) With Distinct *,1e1 Contains 0e0 Skip @usn6 Contains Null Contains $`7esn` Limit $0 Where 0Xa Starts With {`6esn`} Starts With $usn1 Foreach(`2esn` In 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3]| Create (#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})) Union Optional Match (({`7esn`:\"d_str\" Starts With $123456789})-[`6esn`? *0..]-(`5esn` :`2esn`:usn1)<-[? *..999]->(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})),(_usn3 {@usn5:`5esn`[{`4esn`}..`2esn`],_usn3:07 =~01}) Using Scan `6esn`:`2esn` Using Index _usn4:`5esn`(`6esn`) With *,#usn7(usn2 Is Not Null Is Not Null,$`6esn` Ends With Count(*)) Is Null Is Null As `6esn`,#usn8 In $@usn6 Skip 0e0 Contains Null Where $1000[Null][`4esn`] Union Remove Reduce(@usn5={@usn6}[{999}..][00..],`2esn` In `1esn` =~\"d_str\"|1.0 =~7 =~{usn2}).`8esn`? Return *,1e1 Contains 0e0 Order By `6esn`({usn1} Ends With $0) Is Not Null Desc,$#usn7 Is Not Null Desc Limit None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null) Load Csv With Headers From Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where `5esn` Starts With $`2esn` Starts With $1000) Ends With Reduce(``=0.12 =~$0 =~$0,`2esn` In `1esn` =~\"d_str\"|9e12[`1esn`..][$`1esn`..]) As usn1 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Load Csv From Reduce(@usn6=0.e0 Ends With $#usn7 Ends With $7,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999})[[#usn8[`3esn`..][{#usn7}..]]..(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`8esn` :@usn6:#usn8)<-[{`8esn`:07 In `2esn` In 12e12}]->(:_usn4{`6esn`:{`6esn`} =~$999,`6esn`:$#usn7[..{`5esn`}][..9e12]})][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)..Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0e0 Starts With `2esn` Starts With $``)] As `2esn` Fieldterminator \"d_str\" With *,$``[1.0] As `6esn`,12.0[123.654][Count(*)] Where 0.12[$`3esn`..$_usn3][12.0..usn1] Union All Detach Delete 7[{0}..{_usn4}] Remove ({@usn5:_usn3 Contains $123456789 Contains ``,_usn4:{``} Ends With `7esn` Ends With 0.0})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(#usn7 :usn1).#usn7!,All(`` In `` Is Not Null Is Not Null Where `1esn` =~0 =~$#usn7).#usn7! Match _usn3=(((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5))),(:``:#usn8{_usn3:$`7esn` Is Null Is Null}) Using Scan `4esn`:#usn7 Using Scan `5esn`:usn2"), - octest_legacy:ct_string("Start _usn4=Node:`6esn`(\"d_str\") Where {_usn3}[..$12][..0.12] Start `7esn`=Relationship:`3esn`(`6esn`='s_str') Where 0Xa =~123456789 =~_usn4 Union All Return Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]) =~({``:$`8esn` =~{1000}})<-[#usn8? *0..]->(`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7}) =~Shortestpath((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})) As #usn8,Reduce(`8esn`={@usn5}[{#usn8}][9e0],`3esn` In {7} Is Null|0e0 Starts With 1000 Starts With #usn7)[Single(#usn8 In 7[..999][..{#usn8}] Where 123456789 Is Null)] Order By 's_str' In 00 Desc,{1000}[{_usn3}..] Descending,$usn1[...e0][..$_usn3] Asc Union All Create `1esn`=Shortestpath((((`2esn` :`8esn`:`7esn`)<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``}))))"), - octest_legacy:ct_string("Create Unique (:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null}) Optional Match @usn6=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7)),(({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})) Using Scan `1esn`:`1esn` Using Index `8esn`:`1esn`(@usn5) Match Allshortestpaths(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))),Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Using Index ``:_usn4(_usn4) Where {#usn7}[9e1..][{123456789}..]"), - octest_legacy:ct_string("Foreach(`4esn` In 1000[0X7..2.12]| Remove ({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)._usn4?) Foreach(`3esn` In 0.0[Null][$`2esn`]| Remove (:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:_usn3|_usn3{`3esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],#usn8:False Starts With {`5esn`}}]-(usn2 :`5esn`{`7esn`:01234567 Is Null Is Null})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)._usn3,[@usn6[$`3esn`..{`3esn`}]].#usn7!,Reduce(@usn5='s_str' Ends With 7 Ends With {_usn4},`8esn` In 01[2.12..`8esn`]|{999}).#usn8!) Optional Match _usn3=Allshortestpaths(((:usn1{_usn4})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}))),(({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})) Using Scan _usn4:usn1 Where 12e12 Ends With {usn1} Union All Merge Allshortestpaths((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))) On Match Set Filter(`4esn` In $`3esn` Is Not Null Where `7esn`[..2.12][..{usn1}]).@usn6? =123456789 Ends With $`6esn` Ends With $#usn7,`1esn`+=(`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})[\"d_str\"..Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null)][Shortestpath(((:`3esn`:@usn5$7)))..usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010])],#usn7 =$123456789 In $#usn7 In `4esn` Union All Load Csv From {_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] As #usn8 Create Unique Allshortestpaths(({_usn3:{_usn4} Is Not Null Is Not Null})),(({_usn3:{_usn4} Is Not Null Is Not Null})) With Distinct 123.654 Is Not Null As `1esn`,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) As `4esn` Order By 0.0 =~999 Asc,1e1 In \"d_str\" In `7esn` Descending"), - octest_legacy:ct_string("Remove (:_usn4{@usn6})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {_usn3:{#usn7} Is Not Null Is Not Null})<-[#usn7?:`8esn` *0Xa]-({@usn6:01234567 Ends With .e12 Ends With $#usn7,`4esn`:12.e12[`3esn`]}).#usn8,Reduce(`2esn`={123456789}[9e12][{0}],@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|False[..``]).`6esn`?,Case 2.12 =~Count(*) When $`4esn`[`7esn`] Then usn1 Ends With $@usn6 Ends With `3esn` End.#usn8!"), - octest_legacy:ct_string("Create Unique Allshortestpaths((`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(_usn4 {`5esn`:\"d_str\" Starts With 01})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(:`3esn`:@usn5$usn2)),`5esn`=Shortestpath((((`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})<-[@usn6:@usn5 *0Xa]->({`3esn`:9e1[2.12..{#usn8}]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})))) Union Detach Delete $`` Ends With 0.0 Ends With {1000},$`1esn` =~0X7,All(`3esn` In {7} Is Null)[{`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]}..] Match Shortestpath((`3esn` :`8esn`:`7esn`)-[`` *..12]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[`3esn`? *123456789..]-(`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})),Shortestpath((`5esn` :`4esn`)) Using Index _usn4:usn1(`1esn`) Using Index `1esn`:_usn3(_usn4) Where True[00][0Xa] Load Csv From [`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`]|`8esn` Contains $usn1 Contains $12][Filter(_usn3 In {`3esn`}[`2esn`] Where #usn7 Contains _usn3 Contains {`3esn`})..(:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})-[usn2?:`7esn` *123456789..{_usn4:$@usn5 Starts With {0} Starts With 12,`2esn`:{7}[..12e12][..Count ( * )]}]->({_usn3:False =~1e1 =~0.e0,_usn3:{999} Starts With $999})] As `6esn` Fieldterminator \"d_str\" Union Merge Shortestpath(((`2esn` :#usn7{`5esn`:\"d_str\" Starts With $123456789})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`)<-[`6esn`?:_usn4|:usn2 *1000..00{`6esn`:@usn5 In {`7esn`} In `2esn`,@usn5:0.0 =~999}]->($#usn8))) On Create Set @usn6+=None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End],`3esn` ={`7esn`}[0e0][1.e1],usn1+=Reduce(`8esn`=$@usn5[..12e12][..$123456789],@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|@usn5 In {`7esn`} In `2esn`) Is Not Null Is Not Null On Match Set Case usn1 In 7 In {123456789} When _usn3[_usn3..][12.e12..] Then 0x0 Ends With $12 Else `7esn`[..2.12][..00] End.`7esn`? =Reduce(`8esn`=0[..usn2][..{@usn5}],#usn8 In {`5esn`}[.e1..``]|Count ( * )[True..][{#usn7}..])[2.12..][{999}..],`` ={`3esn`} Is Null Is Null,(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(usn2 {``:01[{@usn5}]})._usn4? =Reduce(`1esn`={0} Ends With $_usn3 Ends With $`7esn`,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|010 In Count(*))[9e12..(`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})][0X7..Case $_usn4 Starts With 1e1 When {12} Ends With 1.0 Ends With .e0 Then {`2esn`} Is Not Null Else \"d_str\"[..{@usn5}][..``] End] Detach Delete (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12},{`4esn`} Starts With $usn2 Starts With $1000"), - octest_legacy:ct_string("Create Unique ((:@usn6:#usn8)<-[`1esn`?:usn2|``]-({@usn5:{usn2}[.e0..$999]})),@usn6=Shortestpath((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})) Merge Allshortestpaths(({@usn5:07[..True][..9e12]})-[_usn4?:`5esn` *..07]->({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})) On Match Set None(`2esn` In `1esn` =~\"d_str\" Where $`1esn`[1.0..][_usn3..]).`1esn`? =.e12 Contains 0X7 Contains {0} On Create Set Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {@usn6}[7]|`8esn` =~0xabc =~010).#usn8! =Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)[None(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Starts With $1000)..{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}][Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8)..None(#usn8 In {`5esn`}[.e1..``] Where $`3esn` Is Not Null)]"), - octest_legacy:ct_string("Load Csv With Headers From ({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]})<-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})[(@usn5 :`6esn`)-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]->(:@usn6:#usn8)..{`2esn`:{_usn4} Starts With 0.e0 Starts With 0x0}] As `1esn` Detach Delete $7 In $7 In $7,0X7[1000..{`1esn`}],.e1 Is Null Is Null Union All With Distinct *,9e1[2.12],$_usn4 Contains Null Contains #usn8 As #usn7 Order By (usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]})<-[ *123456789..]-(:@usn5) Is Null Is Null Desc,False[..{`1esn`}] Desc Skip 1e1[$`5esn`][{`3esn`}] Limit {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains [1.0[0X7][{`5esn`}]] Where 123.654 Contains $`4esn` Contains 1.0"), - octest_legacy:ct_string("Merge (:`8esn`:`7esn`) Create Unique ((`4esn` :@usn6:#usn8)-[:`8esn`*]->({_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})),`3esn`=Shortestpath(((:`1esn`{`5esn`:1.0 In Count(*)})))"), - octest_legacy:ct_string("Unwind 123.654[$`1esn`] As `2esn` Remove [$1000 Is Null,$`1esn`[{`2esn`}..],.e1[{`7esn`}..{_usn4}]].@usn5 Union All Merge (`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]}) On Create Set `4esn`+=(`1esn` :#usn8:#usn8)-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})[..(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})][..`5esn`({12} Ends With 1.0 Ends With .e0)],Any(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`])._usn4! ={@usn6}[{999}..][00..] Unwind $12 Starts With {`1esn`} Starts With Null As `6esn` Union All Foreach(`5esn` In $#usn7[..{`5esn`}][..9e12]| Delete `5esn`(Distinct `2esn` Is Null,123456789[{123456789}..'s_str'])[.._usn3(.e0[..$`8esn`])][..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]) Return Distinct 2.12[$`5esn`][$#usn8],$7 Ends With `4esn` As `5esn` Order By ({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}) Asc,{#usn8} Starts With 00 Starts With {`6esn`} Desc Skip `1esn`[{usn1}..``][7..$#usn8]"), - octest_legacy:ct_string("Merge `2esn`=Shortestpath((:`4esn`{`7esn`:$0[..9e1],usn1:{_usn4} Ends With `6esn`})-[@usn6?:`3esn`|:#usn8 *123456789..]->(:_usn3:_usn3{`7esn`:$`1esn` =~0X7})-[`4esn`]->(:`6esn`$123456789)) On Create Set usn2 =`3esn` In $0 In `1esn`,@usn6:`1esn`,count(Distinct {`1esn`}[usn1][.e1]).`1esn`? =01 Contains {`8esn`} Contains 2.12 Union Remove @usn6:`5esn`,[usn1 In @usn5 =~{`5esn`} =~`5esn` Where $usn1 Ends With $`` Ends With $12|`5esn` Starts With `3esn`].`8esn`,(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn2 ).`7esn`? Union Optional Match ``=(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}}),`3esn`=(`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8}) Using Index `3esn`:`5esn`(#usn7) Using Join On `8esn`,`2esn` Where $`6esn`[{999}..9e0] With Distinct All(`3esn` In {7} Is Null Where Count ( * ) Contains 07) Is Null Is Null Limit $12[`5esn`..] Foreach(`3esn` In {`7esn`}[`6esn`][#usn7]| With Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where @usn6 Is Null Is Null)[(`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})..] As `3esn`,{`3esn`} In 0X7 Skip `1esn` In .e0 In {`3esn`} Limit Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End Create Unique #usn7=((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})),Shortestpath((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))))"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From Allshortestpaths((((:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]->(:`4esn`{``:2.12 Is Not Null Is Not Null}))))[{`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null}][Allshortestpaths(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})))] As `2esn` Optional Match @usn6=(({#usn7:2.12 Contains usn2 Contains True})<-[`7esn`?:@usn5{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]}]-(`` :@usn6:#usn8{`8esn`:'s_str' In 00})-[`7esn`?*..]->({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})),((`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})-[`4esn`:``{usn1:`` Is Not Null Is Not Null,usn1:{1000}[{_usn3}..]}]-(`` :_usn4{_usn4:False[..``],usn2:9e1[1000][{123456789}]})) Start `5esn`=Rel:`8esn`({usn1}) ,`7esn`=Node:`6esn`({_usn3})"), - octest_legacy:ct_string("Delete 0[07..{123456789}][999...e12],0Xa[9e1..][$`6esn`..],Extract(#usn7 In {``} Is Not Null Where 123456789[0xabc..'s_str'][``..`1esn`])[Reduce(usn1=False,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|$_usn4 Starts With 1e1)] Foreach(`8esn` In [_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|`` Is Not Null Is Not Null] Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where {_usn3}[..\"d_str\"][..`5esn`]) Ends With Filter(`3esn` In {7} Is Null Where {123456789} Contains $#usn8)| Remove (:#usn7)-[?:_usn3|_usn3]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[:#usn7 *..010]->(#usn8 :usn1)._usn4!,{_usn4:0.12 Contains 0X0123456789ABCDEF Contains .e0}.`1esn`! Remove None(#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01).`5esn`!) Union All Create Unique @usn5=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}) Merge `2esn`=Shortestpath((((:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})<-[:#usn7 *..010]-(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})))) On Match Set #usn8:usn2,usn1 =Reduce(`2esn`=1e1 In 123.654 In `3esn`,`5esn` In \"d_str\" Is Null Is Null|$_usn3[{#usn7}]) Is Not Null,`6esn` =0.e0 Starts With `2esn` On Match Set @usn5 =Extract(#usn8 In {`5esn`}[.e1..``] Where {`3esn`}[..07][..{`5esn`}]) Is Null Is Null"), - octest_legacy:ct_string("Foreach(usn2 In Case {999} Is Null Is Null When 1000[Null..{123456789}] Then 9e12[`6esn`..12.0] Else `` Ends With $1000 End[Reduce(`2esn`={`3esn`} In 0X7,_usn3 In {`3esn`}[`2esn`]|$`5esn`[{`3esn`}])..(@usn5 {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})]| Return Distinct 010[Count(*)..12][$_usn3..{`8esn`}],Filter(_usn3 In {`3esn`}[`2esn`] Where False =~$7 =~2.12)[Case When .e12 Is Not Null Is Not Null Then `1esn` In .e0 In {`3esn`} When 7 Starts With {@usn6} Starts With $`` Then 0X0123456789ABCDEF =~1e1 =~{`4esn`} Else {`4esn`}[$123456789..][$#usn7..] End] As `5esn`,9e1[2.12] As _usn3 Delete 010 In Count(*),Count(*)[..usn2][..usn2]) Create usn1=(((@usn5 :`8esn`:`7esn`{`6esn`:`7esn`[$0][9e12],`4esn`:.e1 Is Null Is Null})<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->(`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`))),(((usn2 :`4esn`)-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[``? *..01{`1esn`:$@usn6 Contains 07}]-(:`3esn`:@usn5{#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}))) Match usn1=Allshortestpaths(((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))),((@usn6 :`1esn`{#usn8:`4esn`[1.0],``:.e12[@usn5..#usn7][010..{usn1}]})) Using Join On @usn5,_usn3,_usn3 Using Scan #usn7:@usn6"), - octest_legacy:ct_string("Delete 123456789[#usn8..False],9e1 In 2.12 Load Csv From Shortestpath(({`7esn`:\"d_str\" Starts With $123456789})<-[`4esn`:``{usn1:`` Is Not Null Is Not Null,usn1:{1000}[{_usn3}..]}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[`4esn`]->(:`6esn`$123456789)) Is Null As `7esn` Merge (`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}) On Create Set usn1+=Extract(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|{@usn5} Is Null Is Null)[Case When $0[..9e1] Then Count(*)[..usn2][..usn2] When {`2esn`} Starts With 0.0 Starts With {usn1} Then 0e0 In @usn5 Else 01 =~{_usn3} =~`3esn` End.._usn3(1.0 In Count(*),0[{usn2}..][$`6esn`..])][count(Distinct $12[Null..Count(*)][{`5esn`}..{999}],$`4esn`[`7esn`])..Case When $123456789 Ends With $999 Ends With {999} Then `3esn`[{usn1}] When #usn7 =~Count ( * ) =~`` Then $_usn4 Starts With 1e1 End],`7esn` =[12.0,2.12 Is Not Null Is Not Null][Case When usn1 In 7 In {123456789} Then `5esn`[_usn4..] When `7esn`[9e0..] Then {`3esn`} In 01 End..999] On Match Set Shortestpath(({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[`6esn`? *0..]-(:usn1{`3esn`:{123456789} Is Null Is Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})).`6esn` =$`8esn`[1000..0Xa],`4esn`+=1e1[1000..],(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})-[? *0Xa]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(`3esn` :`6esn`).#usn7! =1000 =~@usn6 =~0x0 Union All Foreach(#usn8 In $`7esn` Is Not Null| Create #usn7=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}),@usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})) Create `3esn`=Allshortestpaths(((:usn1{_usn4})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})))) Delete Shortestpath((((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))))[..Case 0Xa =~123456789 =~_usn4 When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $1000 In $1000 In $`3esn` Then 0.e0[#usn8] End][..(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})],Case $1000[999] When `4esn`[`5esn`..12][@usn6..False] Then {0} Ends With $_usn3 Ends With $`7esn` When $usn1 In {999} In $#usn7 Then Count ( * )[True..][{#usn7}..] End Ends With {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null},`7esn` In 00 Start _usn4=Relationship:`1esn`({12}) ,@usn6=Relationship:`8esn`({`3esn`})"), - octest_legacy:ct_string("Detach Delete _usn4(0.e0 Starts With 12.e12 Starts With {_usn4},0X0123456789ABCDEF Is Null Is Null)[Case 's_str' In 00 When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null When $@usn5 Starts With {0} Starts With 12 Then {usn2} Else {#usn7}[`2esn`..] End..],(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]}) Is Not Null Is Not Null Merge ((`5esn` )-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(@usn6 {`3esn`:{``} Is Not Null})<-[`1esn` *0Xa{_usn3:Null Ends With `2esn` Ends With $usn1,#usn8:.e12 Is Not Null Is Not Null}]->(usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})) On Match Set `6esn`:`8esn`:`7esn` On Match Set `7esn`+=$1000 Is Not Null,`8esn`+=$_usn4 Is Not Null Is Not Null Foreach(_usn4 In {@usn6} Ends With 's_str' Ends With 12.0| Return `6esn`[2.12..01][{``}..False] As @usn5 Skip 1.0[$`1esn`..][$123456789..] Limit Allshortestpaths((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3))[{_usn3:01[{@usn5}]}..Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where True In 0e0)][Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0.12 In _usn3 In {0})..None(`3esn` In {7} Is Null Where 0Xa[2.12])] Delete Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With Reduce(`1esn`=0.12 Starts With $`5esn` Starts With 12,_usn3 In {`3esn`}[`2esn`]|$12[True..][{0}..]) Starts With Reduce(usn2=Null Ends With {`5esn`} Ends With 0.e0,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{`6esn`})) Union All With Distinct *,$`7esn`['s_str'] Limit Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) Is Not Null Is Not Null Where .e12 In 0.e0 In {12} Load Csv From #usn7[usn1][$`5esn`] As `6esn` Foreach(`2esn` In 123456789[_usn3]| Start _usn4=Node( {123456789}) ,`8esn`=Relationship:usn2('s_str')Where {_usn3}[12.e12]) Union All Create Unique `1esn`=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})<-[{`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}]->({`7esn`:7[{0}..{_usn4}]})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-({#usn8:0xabc[.e0]})))) Match `1esn`=(((_usn4 :#usn7)-[? *..07{`4esn`:@usn5 =~{`5esn`} =~`5esn`}]->(_usn3 :usn2{#usn7:{999} Starts With {0}})-[usn1?:`4esn` *..01]-({``:.e1 Is Null Is Null}))) Using Join On `1esn`,_usn3,_usn3 Using Scan ``:`7esn` Where {``} Is Not Null"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From $`5esn`[2.12..{_usn3}][_usn3..{1000}] As `5esn` With Distinct [{`3esn`} Is Not Null Is Not Null] As `2esn`,Count ( * )[True..][{#usn7}..] As usn2,Reduce(`2esn`=1e1 In 123.654 In `3esn`,`5esn` In \"d_str\" Is Null Is Null|$_usn3[{#usn7}]) Is Not Null As `2esn` Skip {`4esn`} Starts With 1e1 Return {`4esn`:`7esn` Is Null}[{`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]}..] As #usn8 Order By 9e12[`1esn`..][$`1esn`..] Ascending,Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]] Ascending,9e1 Is Not Null Asc"), - octest_legacy:ct_string("Load Csv From {1000} =~0 =~123.654 As @usn6 Fieldterminator 's_str' Remove Case When Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6} Then {`2esn`} Is Not Null Is Not Null When `3esn`[{usn1}] Then `5esn` Starts With $`2esn` Starts With $1000 End._usn3!,Allshortestpaths((((`3esn` :`8esn`:`7esn`)-[`7esn`:#usn8|`1esn` *0xabc..]->(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})-[`2esn`?:`7esn` *..07$0]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})))).``! Foreach(_usn3 In Single(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]) Is Not Null Is Not Null| Create Unique @usn6=(((@usn6 :`3esn`:@usn5)<-[`4esn`:`8esn` *00]-(`2esn` :`8esn`:`7esn`)<-[? *..999]->(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null}))),((:`1esn`{`5esn`:1.0 In Count(*)})) Create Unique _usn3=(({@usn6:01234567 Ends With .e12 Ends With $#usn7,`4esn`:12.e12[`3esn`]})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(#usn7 :`7esn`:_usn3))) Union All Load Csv With Headers From 123456789[{123456789}..'s_str'] As `5esn` Merge #usn8=Allshortestpaths((({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})-[? *..0x0{_usn3:01 Ends With 999 Ends With {`7esn`}}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[?{usn1:0[`7esn`..]}]->({usn1:{`7esn`}[`6esn`][#usn7],usn1:{999} Starts With $999}))) Optional Match `2esn`=((`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]})-[{`7esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4]}]-(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)),`6esn`=Shortestpath(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null}))) Using Index `3esn`:usn1(@usn6) Using Scan `4esn`:`5esn` Where {`5esn`}[.e1..``] Union All Create @usn6=Shortestpath((usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})),(((`3esn` :`8esn`:`7esn`)-[`7esn`:#usn8|`1esn` *0xabc..]->(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})-[`2esn`?:`7esn` *..07$0]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]}))) Load Csv With Headers From (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8) Contains All(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) As #usn8 Fieldterminator 's_str'"), - octest_legacy:ct_string("With (`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})-[:`6esn`|`5esn`{`8esn`:$0 Ends With 12.0}]->(`5esn` {`4esn`:7[$`2esn`..{`5esn`}],@usn6:{7} Is Null}) Contains Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) Contains Case 9e12 Is Not Null Is Not Null When 0[..usn2][..{@usn5}] Then 0e0 Ends With 1.e1 Ends With $`4esn` Else usn1 Is Null End Optional Match Shortestpath(((`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}))) Using Join On `8esn`,`2esn` Where `7esn`[..{usn1}] Delete Shortestpath((((`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`2esn` *..07]-(`1esn` {#usn7:{_usn4} In {12} In $0})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})))) In ({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}),[0x0 Is Null,{``} Ends With `7esn` Ends With 0.0,0X7[0e0..`7esn`][1000..0e0]] =~Any(`5esn` In \"d_str\" Is Null Is Null Where $`6esn` Is Null) =~[$12[True..][{0}..],usn1[`5esn`..$7]],1.0[`3esn`..][9e0..]"), - octest_legacy:ct_string("Merge _usn3=((@usn5 {usn2:0.e0[123.654][01]})-[`3esn`:#usn7]->(@usn6 {_usn3:{#usn7} Is Not Null Is Not Null})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})) On Match Set `2esn`+=`8esn`[9e12][$`1esn`] Union All Delete .e0 Ends With 0.12 Unwind {0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]] As `2esn` Union All Remove 0xabc.`1esn`?,Allshortestpaths(((($#usn8)-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)<-[? *7..12]->({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})))).``?,(_usn3 {`5esn`:12.e12[0xabc],`2esn`:{`7esn`}[..$@usn5][..$#usn8]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]->(:`4esn`{``:2.12 Is Not Null Is Not Null}).`2esn`!"), - octest_legacy:ct_string("Delete exists()[..[`5esn` In $999[0.0..] Where $`3esn`[..$123456789][..$`1esn`]]][..Reduce(`2esn`={123456789} Is Null Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4])],`3esn`[`3esn`..][#usn8..],1.0 Starts With 12e12 Starts With {`5esn`} Start `6esn`=Rel:`7esn`(`3esn`=\"d_str\") Where 1.0[0X7][{`5esn`}] Union All Return 123456789[0xabc..'s_str'][``..`1esn`] As `4esn` Skip `4esn`[`5esn`..12][@usn6..False] Limit $_usn4[Count ( * )..] Detach Delete 1.e1[$`1esn`..@usn6][$0..$_usn3],$@usn6[..{#usn7}][..{@usn6}] Create `1esn`=Shortestpath((usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})<-[ *..010{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}}]->(:_usn4$@usn5)<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]->(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})),((:_usn4{@usn6})) Union All Detach Delete Filter(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0]) Ends With Case When {#usn8}[010] Then False =~$7 =~2.12 End,1.0[$`1esn`..][$123456789..]"), - octest_legacy:ct_string("Optional Match `6esn`=(({``})<-[`5esn`{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(usn2 {#usn7:2.12 =~Count(*),_usn4:$usn2[9e0]})),@usn5=Allshortestpaths((:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[#usn8]-(:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})) Using Index @usn5:`4esn`(`3esn`) Using Scan _usn3:`1esn` Where $123456789 =~{`6esn`} =~\"d_str\""), - octest_legacy:ct_string("Return *,Reduce(`2esn`=12[1.e1..{_usn3}][1.e1..1.0],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{#usn8}[010]) Is Not Null Is Not Null,usn1 In 7 In {123456789} As `5esn` Return Distinct 07 Is Not Null Is Not Null As `6esn`,(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})[[{@usn6}[{999}..][00..],@usn5 =~{`5esn`} =~`5esn`,`7esn` Is Null]][Reduce(`7esn`=0X0123456789ABCDEF Is Null Is Null,`5esn` In $999[0.0..]|$1000[Null][`4esn`])] As @usn6 Limit Shortestpath((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]}))[None(#usn7 In `2esn`[..$#usn8][..Count(*)])][(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})] Detach Delete $`1esn` =~0X7,.e0 Ends With 0.12,0e0[`8esn`..][$123456789..] Union All Create _usn3=(((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5))),(:``:#usn8{_usn3:$`7esn` Is Null Is Null})"), - octest_legacy:ct_string("Start usn2=Node:`4esn`('s_str') Union Create Allshortestpaths((({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}))) Delete $_usn4[0e0..][False..],01234567 Is Null Is Null Start `6esn`=Node:``('s_str') Where 12.e12[7..$`6esn`] Union Foreach(#usn7 In .e1 =~{@usn6} =~Null| Create (:`2esn`:usn1{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}) Start `6esn`=Node:@usn5({0}) Where $#usn7[#usn7..]) Optional Match (((`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[usn1?:@usn5*]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})-[#usn7:@usn5 *0X7..]->(`2esn` ))),Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))) Where `7esn` In {123456789} In `1esn`"), - octest_legacy:ct_string("Optional Match `7esn`=Allshortestpaths(((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[`1esn`?:usn2|``{_usn4:$`4esn`[..$`3esn`][..0.0],@usn6:0e0 Starts With 2.12 Starts With $12}]->(:_usn3:_usn3{`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})<-[`8esn` *0X0123456789ABCDEF]->(usn2 :_usn4))),#usn7=Allshortestpaths((@usn6 :`6esn`)<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3)) Using Join On `6esn`,`8esn`,`4esn` Using Scan `4esn`:`2esn` Where 0.12 Starts With $`5esn` Starts With 12 Load Csv With Headers From Filter(`8esn` In 01[2.12..`8esn`] Where 1e1 In 123.654 In `3esn`) Is Not Null As usn2 Union All Return Distinct {`5esn`}[0..`8esn`][0..Null] As `7esn`,usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010]) Is Not Null Is Not Null As `7esn`,{0}[{`8esn`}..`4esn`] As #usn8 Skip {_usn4} Is Not Null Is Not Null Limit 9e12[`6esn`..12.0] Union All Load Csv With Headers From 0Xa[2.12] As `7esn` Fieldterminator \"d_str\" Start `2esn`=Relationship:usn2(`8esn`={`8esn`}) ,usn2=Node:`4esn`('s_str')Where Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6} Unwind Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`3esn`} In 01)[Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12e12 Contains 0Xa|Null[$#usn7])..Allshortestpaths(((`` {`3esn`:{12} Contains {123456789} Contains `4esn`})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})))][Reduce(`6esn`=7[..123456789][..{@usn6}],`5esn` In \"d_str\" Is Null Is Null|$_usn4 Is Not Null Is Not Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] As `6esn`"), - octest_legacy:ct_string("Create `7esn`=Shortestpath((((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``})))),((:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12}))"), - octest_legacy:ct_string("Load Csv From Shortestpath((_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})) Contains [`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 7 Starts With {@usn6} Starts With $``|.e12 Is Not Null Is Not Null] As `2esn` Fieldterminator 's_str' Start #usn8=Rel:`7esn`(`6esn`={_usn4}) Foreach(#usn8 In $`8esn`| Remove Reduce(usn2=#usn7 Is Null Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{_usn3}[12.e12]).@usn6?,#usn8(Distinct $#usn7[@usn5..{1000}][1.e1..7]).#usn7!,Reduce(#usn7=usn1 Is Null,`8esn` In 01[2.12..`8esn`]|{_usn3}[..\"d_str\"][..`5esn`])._usn4? Remove `4esn`(Distinct usn1 Is Not Null).@usn5,Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where False Starts With {`5esn`}).#usn7,Reduce(`8esn`=123456789 Ends With 01234567 Ends With 1.e1,_usn3 In {`3esn`}[`2esn`]|0X7 =~9e1)._usn3!) Union All Unwind 010[#usn7..True] As _usn4 Delete $`8esn` In {`1esn`} In 12,Reduce(`4esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|False[..``]) Is Null Is Null,Reduce(`6esn`=@usn5 Is Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{12} Ends With 1.0 Ends With .e0)[Filter(_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null)..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`|`7esn`[..2.12][..00])] Union With Distinct .e12[..`7esn`][..0Xa],123.654 Is Not Null Is Not Null As `8esn`,All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Limit {7} In `2esn` Where 0e0 Contains Null Foreach(#usn8 In .e12 Ends With $`2esn` Ends With {``}| Start `3esn`=Node:@usn5({0}) ,`2esn`=Relationship:`3esn`(\"d_str\")) Merge (:`2esn`:usn1{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]})"), - octest_legacy:ct_string("Unwind $0[$`1esn`..07] As usn2 With .e0 Ends With 0.12 As `6esn` Order By 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] Asc,[#usn8 In 7[..999][..{#usn8}] Where {12} =~#usn8|\"d_str\" Contains {123456789} Contains 01] Contains {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Descending Skip 0.0[Null][$`2esn`] Where 1000 In {`8esn`} In 01 Foreach(`8esn` In {#usn8}[$@usn5..usn1][$1000..0xabc]| Detach Delete Count(*) Contains $#usn7 Contains 1e1 Return Distinct *,{_usn4:Count ( * )[True..][{#usn7}..],``:{``} Ends With `7esn` Ends With 0.0} In (usn2 {``:01[{@usn5}]})<-[?:_usn4|:usn2{`8esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],``:_usn3 Contains $123456789 Contains ``}]->(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(:_usn4{_usn4:{7} In `2esn`}) In {`4esn`:`7esn` Is Null} As `2esn`,`5esn` Is Null Order By Reduce(@usn6=$1000[999],`8esn` In 01[2.12..`8esn`]|#usn7 Is Null Is Null)[_usn3(0.12 =~$0 =~$0)..][count($12 Ends With 07 Ends With $123456789,`8esn`[{123456789}..])..] Desc Skip `5esn`({12} Ends With 1.0 Ends With .e0) Contains `3esn`(`5esn`[{`4esn`}..`2esn`],9e1[2.12..{#usn8}]) Contains (@usn5 :#usn7)<-[``?:`3esn`|:#usn8{`1esn`:.e0[..$`8esn`]}]-(`5esn` {`4esn`:01 Is Null})<-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(_usn4 ) Limit {@usn5} =~Count ( * ) =~12.0)"), - octest_legacy:ct_string("Start #usn7=Node:`5esn`(\"d_str\") With Distinct None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As `5esn`,01 Is Null As `2esn`,{1000} =~$_usn4 Detach Delete Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})] Union All Detach Delete $#usn7 Is Not Null Merge ({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`) On Match Set _usn3+={_usn3}[12.e12],`3esn`+=@usn5 =~{`5esn`} =~`5esn`,#usn8 =[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*)) Union All Start `8esn`=Node:`7esn`({_usn3}) Where 1.0 Contains $_usn4 Remove Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..]).`2esn`,({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)._usn4? Delete Case {`8esn`} Ends With `6esn` When False Is Null Is Null Then 's_str' In 00 Else 123456789 Ends With $`6esn` Ends With $#usn7 End Starts With Case `1esn` =~0 =~$#usn7 When $#usn8[9e12..][.e1..] Then False =~$7 =~2.12 When {123456789}[9e12][{0}] Then 12.0 =~999 =~$_usn3 End,{`7esn`} Starts With $123456789 Starts With $@usn6"), - octest_legacy:ct_string("Unwind Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 1.0 =~7 =~{usn2}) Is Not Null Is Not Null As usn2 Merge `8esn`=(#usn7 :`6esn`$1000)<-[`6esn`? *..010]-(`` :`1esn`)"), - octest_legacy:ct_string("Start `8esn`=Node:@usn6({_usn4}) Where `3esn`[`3esn`..][#usn8..] Start #usn7=Node:`6esn`(`3esn`=\"d_str\") ,`7esn`=Node:``(@usn6={usn1})Where 9e12 Is Not Null Is Not Null Create Unique ((:usn2{#usn8:$`5esn` In $`6esn`})<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})),_usn3=(({@usn6:01234567 Ends With .e12 Ends With $#usn7,`4esn`:12.e12[`3esn`]})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(#usn7 :`7esn`:_usn3)) Union Foreach(_usn4 In {@usn6} Ends With 's_str' Ends With 12.0| With Distinct @usn6 Contains $1000 Contains {`7esn`} Unwind 999 Ends With Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 1.0 In Count(*)) As `5esn`) Foreach(@usn6 In $usn1 Ends With $`` Ends With $12| Create `8esn`=Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))),#usn8=(:`2esn`:usn1)-[`1esn`:@usn6|`6esn`*..{`7esn`:7[{0}..{_usn4}]}]->(`8esn` {_usn4:`4esn`[1.0],`5esn`:0e0 Ends With 1.e1 Ends With $`4esn`})-[:@usn5{@usn5:{#usn7}[9e1..][{123456789}..],``:#usn7 Is Not Null Is Not Null}]->(`4esn` :`6esn`{_usn3:$123456789 Ends With `3esn` Ends With 123456789,`6esn`:0e0 Starts With 2.12 Starts With $12})) Foreach(`6esn` In [#usn8 In {`5esn`}[.e1..``] Where {`1esn`}[12.0..`2esn`][@usn6..{usn1}]] Is Not Null| With Distinct True[..$`6esn`],{@usn6} Ends With 's_str' Ends With 12.0 As `1esn` Order By Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $`3esn` =~{#usn8}|12.0 Ends With True)[..usn2(Distinct)] Ascending Skip Case When {``} Starts With $`2esn` Starts With `1esn` Then $`5esn` Starts With $0 Starts With {0} End[None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e1 Is Not Null)..[`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1]] Load Csv With Headers From `5esn`({12} Ends With 1.0 Ends With .e0) Contains `3esn`(`5esn`[{`4esn`}..`2esn`],9e1[2.12..{#usn8}]) Contains (@usn5 :#usn7)<-[``?:`3esn`|:#usn8{`1esn`:.e0[..$`8esn`]}]-(`5esn` {`4esn`:01 Is Null})<-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(_usn4 ) As `6esn` Fieldterminator 's_str') Union Delete 7[..999][..{#usn8}],`1esn`[{usn1}..``][7..$#usn8] Unwind Case When {_usn4} Starts With 0.e0 Starts With 0x0 Then 12 Ends With 0x0 Ends With 0.e0 Else $1000 Is Null Is Null End Starts With `7esn`(Distinct $#usn7[..{`5esn`}][..9e12]) Starts With {`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`} As usn1"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn` As usn2 Fieldterminator \"d_str\" Foreach(_usn4 In 9e0[1.e1..][0Xa..]| Match Allshortestpaths(((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(@usn5 :`4esn`)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]}))) Using Index `1esn`:@usn5(#usn8))"), - octest_legacy:ct_string("Load Csv With Headers From Extract(#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12) Ends With [False =~$7 =~2.12,$`4esn` In Null In 0xabc,{`7esn`} Starts With $123456789 Starts With $@usn6] As @usn6 Fieldterminator 's_str' Load Csv With Headers From {`2esn`} Ends With 12.0 As _usn4 Unwind {`6esn`} =~$999 As `8esn` Union Merge ((#usn7 :``:#usn8{`2esn`})<-[usn1?:#usn8|`1esn`]->({@usn5:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],@usn6:$0})<-[@usn6?:`5esn`]-(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})) On Create Set #usn7+=01 =~{_usn3} =~`3esn` On Match Set #usn7:@usn5 Union Delete $_usn4 Is Null Is Null,.e0 Starts With 0 Starts With 0.e0,$`1esn`[1.0..][_usn3..] Foreach(`3esn` In {`7esn`}[`6esn`][#usn7]| With Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where @usn6 Is Null Is Null)[(`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})..] As `3esn`,{`3esn`} In 0X7 Skip `1esn` In .e0 In {`3esn`} Limit Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End Create Unique #usn7=((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})),Shortestpath((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))))) Create Unique _usn4=(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})<-[ *..010{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}}]->(:_usn4$@usn5)<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]->(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc}),(((usn1 :`7esn`:_usn3{_usn4:{999}})-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]-(:`1esn`{`4esn`:12e12 Ends With {usn1}})-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})))"), - octest_legacy:ct_string("Load Csv With Headers From {`1esn`}[12.0..`2esn`][@usn6..{usn1}] As `8esn` Fieldterminator 's_str' Detach Delete (:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[`6esn` *0Xa{_usn3}]-({@usn5:usn1 Is Not Null})-[:`8esn` *0..{_usn3:`4esn` Ends With 07 Ends With {`3esn`}}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})[..[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]|{7}[..12e12][..Count ( * )]]],({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})[[@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where 0 In `2esn` In 010]..][{_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null}..] With *,All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8) Is Not Null Is Not Null As `2esn`,Allshortestpaths(((`7esn` {`2esn`:$`6esn`[123456789..12][True..{`3esn`}],#usn7:$_usn3[Count(*)]})-[#usn8? *..07$_usn4]->(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}))) =~(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null}) =~{#usn8:{`3esn`}[@usn6..0Xa][{12}..0Xa],@usn5:False Is Null Is Null} Order By [`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null Ascending,0.0 =~0 =~`6esn` Ascending Skip $_usn3[.e0..$usn2] Union Remove Reduce(#usn7=`7esn` Starts With $#usn7 Starts With $`7esn`,#usn8 In 7[..999][..{#usn8}]|`1esn` Ends With {_usn3} Ends With `2esn`).`8esn`,Any(`8esn` In 01[2.12..`8esn`] Where {usn2}).`1esn`!,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}|$#usn8 Ends With $`2esn` Ends With $@usn6].usn1? Union With Distinct 12.e12[`3esn`] As #usn7,{12} Ends With 1.0 Ends With .e0 As `5esn` Skip Filter(`4esn` In $`3esn` Is Not Null Where {`6esn`}) =~{_usn3:{`3esn`} Is Not Null Is Not Null} Where 0X7[..2.12] Detach Delete 12.0 Ends With {``}"), - octest_legacy:ct_string("Create Unique Shortestpath((:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[`6esn`]-(`1esn` {@usn5:1.0[0e0..0.e0]})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})),(((#usn7 :`8esn`:`7esn`{`5esn`:1.0 In Count(*)})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000}))) Merge @usn6=((`7esn` {`7esn`:{123456789} Contains $#usn8})) On Match Set `` =2.12 =~False,#usn7+=$usn1[..{`6esn`}],#usn7+=(:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12} With Distinct $_usn3 In {1000} In 0.12,$_usn3[..1000] Order By `7esn`[$12..][$`8esn`..] Descending,9e1[2.12] Ascending,$`1esn` Starts With {`8esn`} Descending Limit @usn6 Contains Null Contains $`7esn` Union Remove Filter(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 7[..999][..{#usn8}]).usn1!,_usn4:`7esn`:_usn3 Create `7esn`=((:`3esn`:@usn5$7))"), - octest_legacy:ct_string("Foreach(`5esn` In 0.0[`7esn`..][12.e12..]| Load Csv With Headers From {`6esn`}[..$@usn6][..`7esn`] As @usn6 Fieldterminator \"d_str\") Remove @usn6:usn2 Union Optional Match Allshortestpaths(((`` :usn2)<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})-[`2esn`?:usn2|``{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}]-({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}))) Where `7esn`[$0][9e12] Start _usn4=Node:``(\"d_str\") Where `6esn`[12..$usn2][{#usn8}..{usn2}] Union Foreach(`3esn` In Reduce(usn2=01[{`2esn`}..{@usn6}][$`2esn`..0.0],usn1 In @usn5 =~{`5esn`} =~`5esn`|$#usn8 Ends With $`2esn` Ends With $@usn6) =~[#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01|{0} Ends With $_usn3 Ends With $`7esn`] =~(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True})| Detach Delete 's_str' =~{_usn4} =~$`7esn`,(:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0}) In [`4esn`[..Count ( * )][..{#usn7}]],$`5esn` Starts With `` Unwind [#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn2 Is Null|@usn6[$`3esn`..{`3esn`}]] In Filter(_usn3 In {`3esn`}[`2esn`] Where 1e1 In 123.654 In `3esn`) As _usn3) Delete 010 In Count(*),Count(*)[..usn2][..usn2]"), - octest_legacy:ct_string("Foreach(@usn5 In 1.0 Starts With 12e12 Starts With {`5esn`}| Optional Match `3esn`=((`1esn` {#usn7:{_usn4} In {12} In $0})-[{#usn8:$#usn8 =~{@usn5},`8esn`:0X0123456789ABCDEF[{_usn4}..00]}]-(_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})) Using Scan `3esn`:`8esn` Using Scan `6esn`:`2esn` Where {0}[01][`7esn`] Start #usn7=Node:@usn5(usn2='s_str') Where 9e1[2.12..{#usn8}])"), - octest_legacy:ct_string("Start _usn4=Node( {123456789}) ,`8esn`=Relationship:usn2('s_str')Where {_usn3}[12.e12] Union Foreach(@usn5 In $_usn4[1.e1]['s_str']| Delete $12[$1000..123456789] With Distinct *,Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))) As _usn3 Order By 1.e1[$`1esn`..@usn6][$0..$_usn3] Asc,Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Is Not Null Is Not Null Asc Skip [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789] =~Reduce(_usn3=$``,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{#usn8} Is Null) =~Case {``} Is Null When 2.12 Then $123456789 Ends With {`1esn`} Ends With $`4esn` End Limit {usn1} Ends With $0) Merge `3esn`=(((:`5esn`)<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})-[`3esn`:#usn7]-({@usn6:$usn1 Ends With $`` Ends With $12}))) On Match Set usn1+=Extract(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|{@usn5} Is Null Is Null)[Case When $0[..9e1] Then Count(*)[..usn2][..usn2] When {`2esn`} Starts With 0.0 Starts With {usn1} Then 0e0 In @usn5 Else 01 =~{_usn3} =~`3esn` End.._usn3(1.0 In Count(*),0[{usn2}..][$`6esn`..])][count(Distinct $12[Null..Count(*)][{`5esn`}..{999}],$`4esn`[`7esn`])..Case When $123456789 Ends With $999 Ends With {999} Then `3esn`[{usn1}] When #usn7 =~Count ( * ) =~`` Then $_usn4 Starts With 1e1 End],`7esn` =[12.0,2.12 Is Not Null Is Not Null][Case When usn1 In 7 In {123456789} Then `5esn`[_usn4..] When `7esn`[9e0..] Then {`3esn`} In 01 End..999] Union With Distinct *,(:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As `` Skip (:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]}) Is Null Limit $`8esn` In {`1esn`} In 12 Create @usn6=((`` :`7esn`:_usn3)),((usn2 :`4esn`)-[_usn3:#usn8|`1esn`{_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]}]->(@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:`5esn` *0..{_usn4:7[$`2esn`..{`5esn`}]}]->())"), - octest_legacy:ct_string("Foreach(`8esn` In $`3esn` Is Not Null Is Not Null| With Distinct *,{``}[$#usn8..$usn1] As `3esn` Order By $usn2[$`2esn`..`4esn`] Ascending,$`6esn`[{_usn3}..$`4esn`][$_usn4...e12] Asc,True[{_usn4}..][False..] Ascending Where \"d_str\" Contains {123456789} Contains 01 Start `3esn`=Relationship:#usn7('s_str') ) Union Load Csv From All(#usn8 In {`5esn`}[.e1..``] Where {_usn3}[..\"d_str\"][..`5esn`])[..Allshortestpaths((`5esn` :`4esn`))] As @usn5 Load Csv From None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {@usn6}[{999}..][00..]) Ends With Shortestpath((`6esn` {_usn4:0Xa =~Null =~$``})<-[``? *0X7..]->(`` :`1esn`)) Ends With Reduce(_usn3={7}[..1.0][..9e0],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|`1esn` Contains {usn2} Contains $#usn8) As `` Fieldterminator 's_str' Union Create Unique (((`6esn` :@usn5)-[usn1?:_usn3|_usn3]-(usn2 :#usn7)<-[#usn8:@usn6|`6esn`{`8esn`:True[00][0Xa]}]->(`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]}))),Allshortestpaths((((:_usn4{usn2:0X0123456789ABCDEF[123456789]})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)))) Optional Match ({`3esn`:usn1 Is Null Is Null})-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]-({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`4esn` {@usn6:{12}[..0X7]}) Using Join On _usn3,@usn5"), - octest_legacy:ct_string("Remove [@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where 01[2.12..`8esn`]].@usn6?,Any(#usn7 In {``} Is Not Null Where {`1esn`}[usn1][.e1]).#usn8? Union All Delete (:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case `8esn` Contains $usn1 Contains $12 When 12.e12[7..$`6esn`] Then {12} Contains {123456789} Contains `4esn` When $`1esn`[1.0..][_usn3..] Then `7esn`[$0][9e12] End,Case usn2 Is Null When 1000[0X7..2.12] Then `7esn`[9e0..] End Starts With Reduce(@usn6=$@usn5 Is Not Null,`2esn` In `1esn` =~\"d_str\"|{999} Starts With $999),$@usn6[12.0..][#usn7..]"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From 9e1[2.12..{#usn8}] As `2esn` "), - octest_legacy:ct_string("Start usn1=Node:`3esn`(`2esn`={usn1}) ,@usn5=Relationship:`6esn`(`8esn`='s_str') Merge ``=((:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?:`5esn` *0..]->(usn2 :``:#usn8)<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})) On Match Set All(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`).`6esn`! =_usn4 Contains 2.12 On Match Set `1esn`+=Single(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}])[Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] Union Unwind `7esn`[..{usn1}] As `4esn` Create Unique @usn5=Allshortestpaths((:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})-[:#usn7 *..010]->(#usn8 :usn1)),`4esn`=Allshortestpaths((({usn1:`5esn`[_usn4..]})-[usn1?:_usn3|_usn3]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))) Merge Shortestpath(((`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}))) Union Start _usn3=Node:`6esn`('s_str') With Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`3esn`} In 01)[Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12e12 Contains 0Xa|Null[$#usn7])..Allshortestpaths(((`` {`3esn`:{12} Contains {123456789} Contains `4esn`})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})))][Reduce(`6esn`=7[..123456789][..{@usn6}],`5esn` In \"d_str\" Is Null Is Null|$_usn4 Is Not Null Is Not Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] As _usn4,Allshortestpaths((:@usn5{_usn3:07 =~01})) Starts With [`3esn` In {7} Is Null Where {`4esn`} =~{7} =~{`7esn`}] Starts With ({`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}})<-[`6esn`?:_usn4|:usn2]-(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}) Skip 7 Ends With (@usn5 {`7esn`:$`6esn`[010..]})-[:`8esn` *..01]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]}) Ends With #usn8(False =~$7 =~2.12) Where $_usn4 Starts With 1e1"), - octest_legacy:ct_string("Create @usn6=((`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})),(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})<-[usn2?:`5esn` *0..]-({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}) Unwind Case When False Then 0.e0 Ends With $#usn7 Ends With $7 When {@usn6}[{999}..][00..] Then `5esn` Ends With {``} Ends With 12.e12 Else 123.654[$`1esn`] End[Reduce(#usn8=$`6esn` Ends With Count(*),`2esn` In `1esn` =~\"d_str\"|_usn4 Contains 2.12)..] As `8esn` Union Start #usn7=Node:`6esn`(`3esn`=\"d_str\") ,`7esn`=Node:``(@usn6={usn1})Where 9e12 Is Not Null Is Not Null With Distinct {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null} Contains {@usn5:{`3esn`} In 01} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 1.0[0X7][{`5esn`}]|{``}[010..][0xabc..]) As #usn8 Where {1000}[{_usn3}..] Detach Delete 12[1.e1..{_usn3}][1.e1..1.0],{_usn4:`` Ends With 0Xa Ends With `2esn`}[[{`4esn`} Ends With {123456789} Ends With $`4esn`,$#usn7[#usn7..]]],Extract(_usn3 In {`3esn`}[`2esn`] Where _usn3 Contains $123456789 Contains ``)[Extract(`5esn` In \"d_str\" Is Null Is Null Where 00[$`7esn`]|$`6esn` Is Null)] Union With Distinct {#usn7}[`2esn`..],Filter(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0]) Ends With Case When {#usn8}[010] Then False =~$7 =~2.12 End,0.0 =~999 As `4esn` Detach Delete [0x0[{`7esn`}..][$usn2..],{`4esn`} =~{7} =~{`7esn`},usn1 In 7 In {123456789}] Is Null Is Null,Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`])[Case 00[{`8esn`}..][{`8esn`}..] When 0e0 Starts With 2.12 Starts With $12 Then Null[``] When 12e12 Ends With {usn1} Then $`2esn` Else 2.12['s_str'..$12][{`1esn`}..`2esn`] End..],1000 =~@usn6 =~0x0"), - octest_legacy:ct_string("Unwind All(#usn8 In {`5esn`}[.e1..``] Where {_usn3}[..\"d_str\"][..`5esn`])[..Allshortestpaths((`5esn` :`4esn`))] As `2esn` Merge ((`3esn` :usn2)) On Match Set _usn3+=$`3esn` Is Not Null Is Not Null,`3esn` ={`4esn`} Ends With {usn2} Ends With {999},{@usn6:{999} Starts With $999,`4esn`:$usn1[{`5esn`}][$`6esn`]}.@usn5? =$usn1[..{`6esn`}] Create Unique `5esn`=Shortestpath((_usn3 :#usn7)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})<-[`5esn`? *..12{`8esn`:{`7esn`}[`6esn`][#usn7],`1esn`:0x0 Ends With $12}]->({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000})),((:#usn8:#usn8{_usn4})<-[usn1?:`7esn`]-(:usn1{usn1:{`6esn`}})) Union Remove Reduce(usn2=#usn7 Is Null Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{_usn3}[12.e12]).@usn6?,#usn8(Distinct $#usn7[@usn5..{1000}][1.e1..7]).#usn7!,Reduce(#usn7=usn1 Is Null,`8esn` In 01[2.12..`8esn`]|{_usn3}[..\"d_str\"][..`5esn`])._usn4? Return *,$12 Starts With $`8esn` Starts With $`1esn` As `1esn`,$_usn4 Contains Null Contains #usn8 Skip [`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null Match usn2=Shortestpath(((_usn4 :``:#usn8)-[:`8esn` *..01]->({#usn7:0.e0 Starts With `2esn`})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->($#usn8))) Using Index `8esn`:@usn6(`5esn`) Union All Merge (`5esn` {`8esn`:1000[Null..{123456789}]})-[:`6esn`|`5esn` *123456789..]-(#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})-[`8esn`?:usn1|@usn6{`8esn`:\"d_str\" Contains {123456789} Contains 01,@usn5:`1esn` In .e0 In {`3esn`}}]-(`6esn` {`7esn`:$`6esn`[010..]}) Foreach(`5esn` In .e0[12.e12..]| Optional Match `5esn`=(((_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(#usn7 {@usn5:$`8esn` =~{1000}})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]}))),usn1=(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})-[_usn4? *..01]-(_usn4 :usn2{usn1:7[True..][2.12..],`8esn`:2.12 Ends With $_usn3 Ends With `3esn`})-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]-({`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}) Using Index `1esn`:_usn3(_usn4) Using Index `2esn`:`3esn`(@usn6) Where #usn8 With ()-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[@usn6?$0]->({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})[{#usn8:_usn4 Starts With $_usn4 Starts With 12.e12}..Allshortestpaths(((@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})))][(usn2 :usn2)<-[@usn5? *..01]-(`8esn` :@usn6:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})..Case When #usn8 Is Not Null Is Not Null Then `3esn`[{usn1}] Else 0.12 Starts With $`5esn` Starts With 12 End],0Xa[..{`4esn`}][..12.0],$`` Ends With 0.0 Ends With {1000} Order By 0.0 =~999 Asc,1e1 In \"d_str\" In `7esn` Descending Skip {123456789}[{`8esn`}][$`8esn`] Limit Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789])[`7esn`(Distinct Count ( * ) =~$usn2 =~$usn2)])"), - octest_legacy:ct_string("Foreach(`7esn` In `1esn`(Distinct $@usn5[..12e12][..$123456789],{#usn7} Is Not Null Is Not Null)[{`7esn`:\"d_str\" Starts With $123456789}..]| Load Csv With Headers From `7esn` In 00 As @usn5 )"), - octest_legacy:ct_string("Create Shortestpath(((:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[`7esn`? *7..12]->({`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})<-[{`6esn`:2.12 Contains `1esn`,`1esn`:9e12[`6esn`..12.0]}]-(`4esn` {`6esn`:#usn8[..{#usn7}]}))) Union All Load Csv With Headers From 0.0 In $usn1 As `5esn` Fieldterminator 's_str' Create usn2=((`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(#usn8 {@usn5:_usn3 Contains $123456789 Contains ``,_usn4:{``} Ends With `7esn` Ends With 0.0})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)),(#usn8 :@usn6:#usn8) Union All Create Unique `1esn`=Allshortestpaths(()<-[_usn4 *..999]->(`7esn` {#usn7:\"d_str\" Contains {123456789} Contains 01,@usn5:$1000 In $1000 In $`3esn`}))"), - octest_legacy:ct_string("Remove None(`2esn` In `1esn` =~\"d_str\" Where 0e0 Ends With 1.e1 Ends With $`4esn`)._usn4? Create #usn8=Shortestpath(((`5esn` )-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(@usn6 {`3esn`:{``} Is Not Null})<-[`1esn` *0Xa{_usn3:Null Ends With `2esn` Ends With $usn1,#usn8:.e12 Is Not Null Is Not Null}]->(usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})))"), - octest_legacy:ct_string("Merge @usn6=((`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})) On Match Set Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {`6esn`} =~$999).`7esn`! =Extract(_usn3 In {`3esn`}[`2esn`] Where _usn3 Contains $123456789 Contains ``)[Extract(`5esn` In \"d_str\" Is Null Is Null Where 00[$`7esn`]|$`6esn` Is Null)],``+=`` Ends With 0Xa Ends With `2esn`,`` =`3esn`[{0}][usn1] On Match Set `6esn`:`8esn`:`7esn` Union All Remove usn1:`5esn` Load Csv With Headers From $_usn4 Contains Null Contains #usn8 As #usn7 Fieldterminator \"d_str\" Union All Merge Allshortestpaths(((`` :usn2)<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})-[`2esn`?:usn2|``{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}]-({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}))) On Match Set [#usn8 In {`5esn`}[.e1..``] Where {7}[..12e12][..Count ( * )]|$123456789 Ends With {`1esn`} Ends With $`4esn`].`6esn`! =Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7) In [{_usn3}[..$12][..0.12],usn1 Is Null] In [#usn8 In 7[..999][..{#usn8}] Where $_usn3 Contains 999 Contains \"d_str\"] On Match Set Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0).``? ={@usn6}[{999}..][00..]"), - octest_legacy:ct_string("Foreach(_usn4 In [1000 =~@usn6 =~0x0] Starts With {#usn8:$`7esn` =~{`8esn`} =~$usn1,`7esn`:0xabc[01..{999}][{7}..{`7esn`}]} Starts With `7esn`(Distinct 123.654[`3esn`..])| Unwind $12[`5esn`..] As `7esn` With *,`7esn` Is Null As `7esn`,None(`` In `` Is Not Null Is Not Null Where $`6esn` Is Null) Contains Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}))) Contains Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End Order By {usn2} Starts With $`8esn` Starts With Count ( * ) Asc,(:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(:_usn3:_usn3{``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Is Not Null Descending,.e0[..0X0123456789ABCDEF][...e12] Descending Limit {``}[...e12]) Union All Unwind {usn2} Starts With $`8esn` Starts With Count ( * ) As @usn5 Start usn1=Rel:@usn6(#usn7='s_str') ,`4esn`=Relationship:`3esn`({`1esn`})Where {123456789} Is Null Is Null"), - octest_legacy:ct_string("With *,@usn6(`5esn`[.e0..][07..]) Is Null Is Null,Count(*) In $12 As @usn6 Order By @usn6 In 1000 In $`` Desc,usn1[..00][..$#usn8] Descending Where `` Ends With 0Xa Ends With `2esn` Unwind 9e0[..999] As #usn8"), - octest_legacy:ct_string("Foreach(`3esn` In $`7esn` Is Null Is Null| Create Unique usn2=Allshortestpaths((:`2esn`:usn1{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]})),((({@usn5:{usn2}[.e0..$999]})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(`6esn` :_usn3:_usn3{`4esn`:0Xa Starts With {`6esn`} Starts With $usn1})-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1}))) Detach Delete Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 2.12 Ends With $_usn3 Ends With `3esn`|{123456789} Contains $#usn8)[{`7esn`:$`6esn`[010..]}..],01 Ends With 999 Ends With {`7esn`},All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)])"), - octest_legacy:ct_string("Start @usn5=Node:#usn8(#usn7=\"d_str\") ,`8esn`=Rel:`1esn`(@usn5='s_str')Where {@usn6}[{999}..][00..] Optional Match (#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})<-[`6esn`?{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}),usn2=(@usn6 :``:#usn8)<-[?:`8esn`{`3esn`:1.0 In Count(*)}]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}) Using Index _usn4:`5esn`(`6esn`) Using Scan `6esn`:`2esn` Union All With Distinct *,Extract(`8esn` In 01[2.12..`8esn`] Where {usn2}|$0[12.e12..]) =~Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null|7 Ends With $`4esn`) =~(usn1 {`2esn`})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->(:_usn3:_usn3{`4esn`:12e12 Ends With {usn1}})<-[`7esn`?:`8esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}) Order By {_usn3}[{12}..$_usn4][`5esn`..$`5esn`] Asc,123.654 Contains $`4esn` Contains 1.0 Descending Limit $1000[999] Match (usn2 :#usn7)"), - octest_legacy:ct_string("Create Unique `5esn`=(#usn7 :`8esn`:`7esn`)<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[_usn4?:`1esn` *7..12]->(:#usn8:#usn8{_usn3:$_usn3['s_str'][07],`7esn`:$1000 In $1000 In $`3esn`}) With Distinct $`8esn` Contains 123456789 Contains $usn2,{_usn4} In {12} In $0,Extract(#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12) Ends With [False =~$7 =~2.12,$`4esn` In Null In 0xabc,{`7esn`} Starts With $123456789 Starts With $@usn6] Skip _usn3[..`8esn`][..2.12] Limit 0X7[0e0..`7esn`][1000..0e0] Foreach(`2esn` In [@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null] Is Null Is Null| Create Allshortestpaths(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))) With Distinct 0.0 Is Not Null Is Not Null As `8esn` Skip $`3esn` Is Not Null Is Not Null)"), - octest_legacy:ct_string("Return Distinct *,Case {#usn8} Is Not Null When {`4esn`} =~9e0 =~{12} Then _usn3[_usn3..][12.e12..] Else 123.654 Contains $`4esn` Contains 1.0 End[(`6esn` {`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]})<-[? *..0x0]->(`3esn` :`7esn`:_usn3)-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->(:``:#usn8{`7esn`:00 Starts With 0xabc,_usn3:{123456789} Contains $#usn8})..][Single(`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1)..] As `4esn`,All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By #usn8 Starts With `6esn` Starts With 12.e12 Desc Optional Match usn2=((`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(#usn8 {@usn5:_usn3 Contains $123456789 Contains ``,_usn4:{``} Ends With `7esn` Ends With 0.0})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)),Shortestpath(({@usn5:07[..True][..9e12]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]})) Using Index #usn8:`2esn`(`5esn`)"), - octest_legacy:ct_string("Return Distinct {``} =~12 =~`` As `2esn`,Filter(`4esn` In $`3esn` Is Not Null Where {`6esn`}) =~{_usn3:{`3esn`} Is Not Null Is Not Null} Skip 1.0[00..] Limit 12.e12 Starts With {999} Starts With {`1esn`} Union All Merge (@usn5 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[:#usn8|`1esn`*{`8esn`:0Xa[usn2..]}]-(`3esn` :_usn3:_usn3{@usn5:False}) On Match Set #usn8+={#usn8}[1.e1...e12]"), - octest_legacy:ct_string("With $@usn6 Contains 07 As @usn5 Order By [`5esn` In $999[0.0..] Where `5esn` Starts With `3esn`|12e12 Is Not Null Is Not Null] Asc,010 =~{usn2} Asc,$12 Is Not Null Is Not Null Ascending Skip {usn2} =~12 Create Unique usn2=Allshortestpaths((:`2esn`:usn1{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]})),((({@usn5:{usn2}[.e0..$999]})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(`6esn` :_usn3:_usn3{`4esn`:0Xa Starts With {`6esn`} Starts With $usn1})-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1}))) Union Merge _usn4=Shortestpath(((#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]}))) Unwind @usn5 =~{`5esn`} =~`5esn` As _usn4"), - octest_legacy:ct_string("Start `6esn`=Node:``('s_str') ,usn2=Relationship( {`5esn`}) Delete $@usn5 Starts With #usn7"), - octest_legacy:ct_string("Foreach(_usn4 In \"d_str\" Is Null Is Null| Detach Delete {#usn8}[{``}..] Remove Single(`` In `` Is Not Null Is Not Null Where 1.0 In Count(*)).`6esn`!,All(#usn8 In 7[..999][..{#usn8}] Where `4esn`[1.0]).@usn6)"), - octest_legacy:ct_string("Create ``=Allshortestpaths(({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})) Match usn2=(`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[@usn5?:`3esn`|:#usn8{_usn4:{999}}]->(:#usn8:#usn8{``:1.0[0e0..0.e0]}) Union All Unwind 0e0 Starts With 2.12 Starts With $12 As _usn3 Create Unique ((_usn3 :`7esn`:_usn3)-[]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]}))"), - octest_legacy:ct_string("Merge #usn8=(:`2esn`:usn1)-[`1esn`:@usn6|`6esn`*..{`7esn`:7[{0}..{_usn4}]}]->(`8esn` {_usn4:`4esn`[1.0],`5esn`:0e0 Ends With 1.e1 Ends With $`4esn`})-[:@usn5{@usn5:{#usn7}[9e1..][{123456789}..],``:#usn7 Is Not Null Is Not Null}]->(`4esn` :`6esn`{_usn3:$123456789 Ends With `3esn` Ends With 123456789,`6esn`:0e0 Starts With 2.12 Starts With $12}) On Create Set `5esn` =$`` Is Not Null,{usn2:usn2 Is Not Null Is Not Null}.usn1? =Case When 07 Contains 0X7 Contains $`8esn` Then 123456789[{123456789}..'s_str'] When _usn3[_usn3..][12.e12..] Then $12[True..][{0}..] End Is Null Is Null,[{_usn4}[...e1][..$7],_usn4 Starts With $_usn4 Starts With 12.e12].#usn8? =0X7[0e0..`7esn`][1000..0e0] Union With Distinct *,(:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As `` Skip (:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]}) Is Null Limit $`8esn` In {`1esn`} In 12 Create @usn6=((`` :`7esn`:_usn3)),((usn2 :`4esn`)-[_usn3:#usn8|`1esn`{_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]}]->(@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:`5esn` *0..{_usn4:7[$`2esn`..{`5esn`}]}]->()) Union Load Csv With Headers From (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8) Contains All(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) As #usn8 Fieldterminator 's_str'"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From $1000[`2esn`..`5esn`][1e1..1.e1] As `4esn` Fieldterminator \"d_str\" Return *,0.0 =~999 As `4esn` Limit 9e1[..$`2esn`] Detach Delete Case {#usn7}[9e1..][{123456789}..] When $0 Ends With 12.0 Then $`` Is Not Null When $usn1 In {999} In $#usn7 Then 1000[Null..{123456789}] Else 1.0 =~'s_str' =~{`2esn`} End[{@usn5:.e0[..$`8esn`],`4esn`:{usn2} =~12}..Any(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``)],0.12 In _usn3 In {0},Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`]|123456789 Ends With 12.e12 Ends With $`7esn`) Is Not Null"), - octest_legacy:ct_string("Load Csv From .e0 Starts With 0 Starts With 0.e0 As _usn3 Fieldterminator 's_str' Optional Match ``=Shortestpath((`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})),Allshortestpaths(((:_usn4))) Remove Case {_usn4} Is Not Null Is Not Null When {#usn8} Is Not Null Then $`8esn`[..00] When $#usn7[..{`5esn`}][..9e12] Then `7esn`[$0][9e12] End.`5esn` Union All Foreach(`2esn` In [`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]][Case 1.0 In Count(*) When $_usn4[Count ( * )..] Then Null[``] When $1000[`2esn`..`5esn`][1e1..1.e1] Then .e12[@usn5..#usn7][010..{usn1}] Else 1.0[$`1esn`..][$123456789..] End][All(`4esn` In $`3esn` Is Not Null Where usn2 Is Not Null Is Not Null)]| Detach Delete $usn1[_usn4],.e1[..usn2][..`8esn`],$123456789 Ends With `3esn` Ends With 123456789 Load Csv From {``} Starts With $`2esn` Starts With `1esn` As `` ) Delete {`3esn`} In 01,.e1 In 0,Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]] Union Return #usn7 As `8esn`,0.12[..False][..{1000}] Order By Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`])[Case 00[{`8esn`}..][{`8esn`}..] When 0e0 Starts With 2.12 Starts With $12 Then Null[``] When 12e12 Ends With {usn1} Then $`2esn` Else 2.12['s_str'..$12][{`1esn`}..`2esn`] End..] Desc,[{@usn6} Ends With 's_str' Ends With 12.0,{12} Contains {123456789} Contains `4esn`] Starts With Filter(_usn3 In {`3esn`}[`2esn`] Where {1000} =~0 =~123.654) Starts With Case When Count ( * )[0.12...e1] Then $@usn5 =~1000 =~1000 When Null Ends With `2esn` Ends With $usn1 Then $usn2[{@usn5}] End Ascending,{12}[{7}][$123456789] Asc Skip `7esn` Ends With 0x0"), - octest_legacy:ct_string("Create Unique #usn8=Shortestpath((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[_usn3? *0X7..]-(:`5esn`{`2esn`:`4esn`[1.0]})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})) Foreach(`6esn` In $`5esn` In $`` In 123.654| Return $`8esn`[1000..0Xa],({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(:@usn5)<-[`7esn`?:`8esn`]-({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}) Ends With $7 Ends With All(`` In `` Is Not Null Is Not Null Where 1000 In {`8esn`} In 01) As ``,usn1 Starts With $usn1 As `1esn` Order By Null[``] Descending,1.e1[$`1esn`..@usn6][$0..$_usn3] Asc,$`6esn`[.e0..$`6esn`][$_usn3..{#usn7}] Desc Limit {`4esn`} Starts With 1e1 Unwind {`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]}[@usn5(Distinct {`5esn`} Contains $0 Contains {``},12.e12 Starts With {999} Starts With {`1esn`})] As _usn4) Union All Merge usn2=Allshortestpaths(((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]}))) On Create Set _usn3:`7esn`:_usn3,`8esn` ={1000}[$999...e12][`7esn`..'s_str'] Foreach(usn2 In $12[True..][{0}..]| Return Distinct 0X7[1000..{`1esn`}] As `3esn`,$`2esn`[12.e12..][{`4esn`}..] Order By 0.0 =~999 Asc,$`5esn` In 0.e0 Asc,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) Ascending Limit Count ( * ) Is Null Load Csv With Headers From {1000}[$`4esn`][\"d_str\"] As _usn3 )"), - octest_legacy:ct_string("Load Csv From 12e12 Ends With `5esn` Ends With {@usn6} As `` Fieldterminator \"d_str\" Create Shortestpath((({@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}))) Merge `7esn`=Shortestpath(((`5esn` :_usn4{7})<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})-[:`4esn` *0xabc..{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(`3esn` :`5esn`))) On Create Set `1esn` =12.e12[``][{`2esn`}],`8esn`+=00[{`8esn`}..][{`8esn`}..],#usn7+={_usn4} Ends With `6esn` Union Match Allshortestpaths((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(`2esn` :`8esn`:`7esn`)),(#usn7 :@usn5{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]}) Where True In 0e0 Load Csv With Headers From _usn4 Contains 2.12 As #usn8 Foreach(@usn5 In `5esn` Starts With 010 Starts With 0.0| Create Shortestpath((:`4esn`{``:2.12 Is Not Null Is Not Null})),Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[`3esn`? *123456789..]->({_usn3:$`5esn`[`3esn`..]}))) Optional Match ``=Shortestpath((`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})),Allshortestpaths(((:_usn4)))) Union Start _usn4=Node:usn2(`8esn`='s_str') ,#usn7=Node:usn2({12})Where $`3esn` Is Not Null"), - octest_legacy:ct_string("Load Csv From [1.0 =~'s_str' =~{`2esn`}] Contains [9e1[2.12],{usn2}[$`3esn`..][{#usn7}..],Null Ends With {`5esn`} Ends With 0.e0] Contains `5esn` As @usn6 With Distinct *,{#usn8} Is Not Null,$`5esn`[2.12..{_usn3}][_usn3..{1000}] As usn2 Order By 9e0[1.e1..][0Xa..] Descending,{_usn3:`4esn`[..Count ( * )][..{#usn7}]}[Any(_usn3 In {`3esn`}[`2esn`] Where 1e1 In \"d_str\" In `7esn`)..(:usn1{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[`2esn`:_usn4|:usn2]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[`6esn`{`6esn`:Count(*) Ends With 12.0 Ends With 12}]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})][Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7|123.654[{7}..])..Filter(`3esn` In {7} Is Null Where usn1 Is Null Is Null)] Asc With Distinct 0e0[..010] As _usn3,Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..]) In Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null) In Filter(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {#usn8}[.._usn4][..$`3esn`]) As `` Skip {12}[{7}][$123456789] Union All Foreach(_usn3 In (_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})<-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :`3esn`:@usn5)<-[? *..999]-(#usn8 :`5esn`{#usn8:0xabc[.e0]})[Shortestpath(({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[`6esn`? *0..]-(:usn1{`3esn`:{123456789} Is Null Is Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))..Allshortestpaths((_usn4 :#usn7)<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]}))]| Delete `4esn`[$999..{`1esn`}][{@usn6}.._usn3] Create #usn8=Shortestpath(((`5esn` )-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(@usn6 {`3esn`:{``} Is Not Null})<-[`1esn` *0Xa{_usn3:Null Ends With `2esn` Ends With $usn1,#usn8:.e12 Is Not Null Is Not Null}]->(usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]}))))"), - octest_legacy:ct_string("Create @usn5=(((`1esn` :`5esn`{`5esn`:{``} Is Null})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(_usn4 :usn1)))"), - octest_legacy:ct_string("Match (({_usn3:$`5esn`[`3esn`..]})-[? *..07{`4esn`:@usn5 =~{`5esn`} =~`5esn`}]->(_usn3 :usn2{#usn7:{999} Starts With {0}})) Using Index @usn5:`2esn`(@usn5) Where $123456789 Is Null Is Null Foreach(`4esn` In None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12])[Reduce(`4esn`=`1esn` =~0 =~$#usn7,`2esn` In `1esn` =~\"d_str\"|{123456789} Is Null Is Null)][{``:`7esn` Starts With $#usn7 Starts With $`7esn`}]| Remove [@usn5 In {`7esn`} In `2esn`,9e0,$`5esn`[..$`5esn`][..$12]].`4esn`!,Reduce(usn2=$usn2[{@usn5}],`4esn` In $`3esn` Is Not Null|$7[{usn2}..][{usn2}..]).usn2,[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 01[2.12..`8esn`]|{0} Ends With $_usn3 Ends With $`7esn`].`6esn`!) Union Remove Filter(`4esn` In $`3esn` Is Not Null Where 12.e12[7..$`6esn`]).usn2?,#usn7:``:#usn8,Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01).usn2 Unwind $`5esn` Starts With $0 Starts With {0} As usn1"), - octest_legacy:ct_string("Start ``=Relationship:_usn3(`8esn`={123456789}) ,`3esn`=Rel:usn1(_usn4={12}) Remove exists(Distinct 9e1 In $`3esn` In $@usn6).`8esn`!,None(_usn3 In {`3esn`}[`2esn`] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0])._usn4,[usn1 Starts With usn1 Starts With $``,False =~1e1 =~0.e0,`3esn`[..010][..$7]].`1esn` Remove (`1esn` :_usn3:_usn3)<-[? *7..12]->({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})<-[`6esn` *0Xa{_usn3}]-({@usn5:usn1 Is Not Null}).`3esn`!,Case When {7} Is Null Then .e1[{`7esn`}..{_usn4}] When 1.0 =~'s_str' =~{`2esn`} Then $`5esn` In $`6esn` End.`6esn`? Union All Foreach(usn1 In Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End Ends With Case When 0x0 Ends With $12 Then 07 =~01 End| Detach Delete $@usn5,'s_str' =~{_usn4} =~$`7esn`,usn1(Distinct $@usn5 Starts With $1000)[[`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}|0Xa =~Null =~$``]..])"), - octest_legacy:ct_string("Unwind $@usn5 Is Not Null Is Not Null As `8esn` Match ``=(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[?:#usn7 *01234567..0Xa]-(@usn6 {#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12})-[usn1? *1000..00]->(#usn7 :@usn5{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}))),`1esn`=((`` :@usn6:#usn8{`8esn`:'s_str' In 00})-[#usn8:`6esn`|`5esn`]-(usn1 {`1esn`:$@usn6 Ends With $_usn4 Ends With 0.12,`3esn`:`4esn` =~$`5esn`})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(`7esn` {@usn5:{7}[..1.0][..9e0]})) Using Join On `7esn` Unwind 0e0[`8esn`..][$123456789..] As usn2 Union All Create Unique (((:_usn4{usn2:0X0123456789ABCDEF[123456789]})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3))) Create Unique ((`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(_usn3 :#usn7)<-[@usn5?]->(`1esn` :`5esn`{`5esn`:{``} Is Null})),((`5esn` :`2esn`:usn1))"), - octest_legacy:ct_string("Match _usn3=((:`2esn`:usn1)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})) Using Join On `3esn`,`5esn` Using Join On @usn5,_usn3,_usn3 Remove [12.e12[9e12..{`6esn`}]].usn1!,Case When {``}[010..][0xabc..] Then usn1 Starts With usn1 Starts With $`` Else $#usn8 Ends With $`2esn` Ends With $@usn6 End.`6esn`? Union All Unwind 0e0[07] As `7esn` Remove {`8esn`:Count ( * ) =~$usn2 =~$usn2}.@usn6 Unwind $`1esn` Ends With 9e1 Ends With $123456789 As `8esn`"), - octest_legacy:ct_string("Merge ``=Allshortestpaths(((@usn6 :_usn3:_usn3)-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8))) On Match Set `8esn`+=[9e1[..$`2esn`]][{`8esn`:False =~$7 =~2.12,`3esn`:Count ( * ) =~$usn2 =~$usn2}][Case {``} Is Null When 2.12 Then $123456789 Ends With {`1esn`} Ends With $`4esn` End],`6esn`+=9e1 Is Not Null On Create Set Single(_usn3 In {`3esn`}[`2esn`] Where _usn3 Contains $123456789 Contains ``).`2esn` =Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With Reduce(`1esn`=0.12 Starts With $`5esn` Starts With 12,_usn3 In {`3esn`}[`2esn`]|$12[True..][{0}..]) Starts With Reduce(usn2=Null Ends With {`5esn`} Ends With 0.e0,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{`6esn`}),[@usn6 Ends With {_usn3},12.0 Contains #usn7,$_usn3[..1000]].`2esn`? =0e0 Contains Null,`5esn`+=7 Ends With (@usn5 {`7esn`:$`6esn`[010..]})-[:`8esn` *..01]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]}) Ends With #usn8(False =~$7 =~2.12) Create Unique ``=Allshortestpaths(((:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->(:usn1{`3esn`:{123456789} Is Null Is Null}))) Create usn1=Allshortestpaths((#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(usn2 {``:01[{@usn5}]})),(({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})-[`3esn`{usn1:True =~010,#usn7:0X0123456789ABCDEF Is Null Is Null}]->(:`1esn`{_usn4:{999}})<-[?:`7esn`{`3esn`:{#usn8}[010]}]-(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})) Union Delete $`8esn` Contains 123456789 Contains $usn2,Shortestpath(((({`4esn`:`7esn` Is Null})<-[`4esn`? *..12{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7}]->({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3))))[(`4esn` {`6esn`:#usn8[..{#usn7}]})<-[?:`8esn`{`3esn`:1.0 In Count(*)}]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[`1esn`:usn2|``]->(`3esn` {@usn5:$usn2[9e0]})] Unwind $#usn8[$`2esn`..][{`2esn`}..] As `5esn` Delete 0x0 Is Null,00[`2esn`..12][123456789..0.e0],Count(*)[$#usn8]"), - octest_legacy:ct_string("Merge `2esn`=Allshortestpaths(((#usn7 :_usn3:_usn3{`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]-({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5}))) On Match Set `8esn`+=$@usn5 Starts With 01 Starts With .e0,usn2+=Shortestpath(((({#usn7:2.12 Contains usn2 Contains True})-[_usn3?:`6esn`|`5esn` *0X0123456789ABCDEF]-(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}))))[Case When $999[0.0..] Then 12 Ends With 0x0 Ends With 0.e0 When `` Is Not Null Is Not Null Then {`3esn`}[..07][..{`5esn`}] End..[`3esn` In {7} Is Null Where usn1 Is Null Is Null]],@usn6+=`3esn`[{`2esn`}] Unwind Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where _usn4 Contains 2.12)[(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})..][#usn7(7 =~{`8esn`} =~$`6esn`,$123456789 Ends With {`1esn`} Ends With $`4esn`)..] As `7esn` Delete 12.e12[9e12..{`6esn`}] Union Delete 010[Count(*)..12][$_usn3..{`8esn`}],{`5esn`} Contains $0 Contains {``},()-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[@usn6?$0]->({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})[{#usn8:_usn4 Starts With $_usn4 Starts With 12.e12}..Allshortestpaths(((@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})))][(usn2 :usn2)<-[@usn5? *..01]-(`8esn` :@usn6:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})..Case When #usn8 Is Not Null Is Not Null Then `3esn`[{usn1}] Else 0.12 Starts With $`5esn` Starts With 12 End]"), - octest_legacy:ct_string("Match `6esn`=((`3esn` {usn1:$0[..9e1],@usn5:`7esn`[..{usn1}]})-[#usn7?:`3esn`|:#usn8]->(`2esn` :usn1)-[`7esn`]-(`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})),`3esn`=Allshortestpaths(((#usn7 {``:9e12[`1esn`..][$`1esn`..],#usn7:#usn8})-[?:`7esn` *0X0123456789ABCDEF]->(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})<-[#usn8?:#usn7{`1esn`:#usn7 =~Count ( * ) =~``,usn2:`` Ends With $1000}]->(:@usn6:#usn8{`4esn`:$`8esn`[..00]}))) Where .e1 Is Null Is Null Remove Case When $#usn8 Ends With $`2esn` Ends With $@usn6 Then $1000[`2esn`..`5esn`][1e1..1.e1] Else {`4esn`} =~{7} =~{`7esn`} End._usn3?,{`8esn`:{usn2} =~12}.@usn5,`2esn`(Distinct 7[$`8esn`..123456789][$usn1..$usn1],1e1 In 123.654 In `3esn`)._usn4! Unwind Allshortestpaths((((:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]->(:`4esn`{``:2.12 Is Not Null Is Not Null}))))[{`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null}][Allshortestpaths(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})))] As @usn5"), - octest_legacy:ct_string("With Distinct usn1(Distinct 999 In {`3esn`} In usn2,$12[Null..Count(*)][{`5esn`}..{999}]) Starts With ``($12[$1000..123456789],\"d_str\" Starts With 01) Starts With All(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`7esn` =~{`8esn`} =~$usn1),(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(`5esn` :@usn5{`8esn`:{usn2} =~12})[All(`` In `` Is Not Null Is Not Null Where `3esn`[{0}][usn1])] As _usn4 Skip $12 Ends With 07 Ends With $123456789 Where _usn3 Starts With 12.e12 Starts With 0.12 Merge `3esn`=(((`1esn` :`5esn`{`5esn`:{``} Is Null})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(_usn4 :usn1))) On Create Set `7esn`(Distinct `3esn`[..010][..$7]).#usn8? =7 Ends With $`4esn` Start _usn3=Relationship:usn2(`8esn`={`8esn`}) ,`1esn`=Rel:#usn8(`8esn`={`6esn`})Where #usn8 Is Not Null Is Not Null Union Create @usn5=((`8esn` :#usn7)-[`3esn`{usn1:True =~010,#usn7:0X0123456789ABCDEF Is Null Is Null}]->(:`1esn`{_usn4:{999}})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null})),@usn6=((`` :`7esn`:_usn3)) With Distinct [{`3esn`} Is Not Null Is Not Null] As `2esn`,Count ( * )[True..][{#usn7}..] As usn2,Reduce(`2esn`=1e1 In 123.654 In `3esn`,`5esn` In \"d_str\" Is Null Is Null|$_usn3[{#usn7}]) Is Not Null As `2esn` Skip {`4esn`} Starts With 1e1 Union All Unwind True[00][0Xa] As #usn8 Remove [0e0 Ends With 1.e1 Ends With $`4esn`].`7esn`!"), - octest_legacy:ct_string("With Distinct $123456789 Ends With $999 Ends With {999},7[$`8esn`..123456789][$usn1..$usn1] As `5esn`,{#usn7}[`2esn`..] Order By $`6esn`[010..] Ascending Skip 1e1 In \"d_str\" In `7esn` Limit Case Count ( * ) Contains 07 When {7}[..12e12][..Count ( * )] Then 9e12 Is Not Null Is Not Null When $`2esn` Then 1.0 Contains $_usn4 Else _usn4 Contains 2.12 End[Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`2esn`} Ends With {`7esn`})..] Detach Delete 123456789[$1000..$#usn7],#usn8 Is Not Null Union All Unwind 0X7[1000..{`1esn`}] As `4esn` Return Distinct `4esn` =~$`5esn`,$`1esn` Starts With {`8esn`} As _usn3,None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`])[Any(`3esn` In {7} Is Null Where {`4esn`} =~{7} =~{`7esn`})..][Extract(`2esn` In `1esn` =~\"d_str\" Where $_usn4[1.e1]['s_str']|usn1[`5esn`..$7])..] As `7esn` Skip [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where False|{`1esn`}[12.0..`2esn`][@usn6..{usn1}]] =~Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 00[{`8esn`}..][{`8esn`}..]|{0}) =~{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}} Start `7esn`=Relationship:`3esn`(`6esn`='s_str') Where 0Xa =~123456789 =~_usn4 Union All Optional Match (({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}]->({`7esn`:7[{0}..{_usn4}]})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(usn2 {``:01[{@usn5}]})),`5esn`=Shortestpath((((`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})<-[@usn6:@usn5 *0Xa]->({`3esn`:9e1[2.12..{#usn8}]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})))) Using Scan `1esn`:`3esn` Where 7[..999][..{#usn8}] Foreach(`8esn` In $`2esn` Ends With 1000 Ends With `6esn`| Load Csv With Headers From $#usn8 =~{@usn5} As usn2 Fieldterminator 's_str') Merge (usn2 :usn2)-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->({``:12.e12[$_usn3..],_usn3:$`6esn`[010..]})<-[_usn3?:`5esn`]-({`7esn`:{999}}) On Match Set Allshortestpaths((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})).`8esn`? =123456789 Ends With 12.e12 Ends With $`7esn`,{usn2:{`3esn`} In 0X7,_usn3:7 Starts With {@usn6} Starts With $``}.`8esn` =7 Ends With $`4esn`,All(#usn8 In 7[..999][..{#usn8}] Where .e0[..$`8esn`]).@usn5! =`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) In [#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]|@usn6 Contains $1000 Contains {`7esn`}] In Filter(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12])"), - octest_legacy:ct_string("Start _usn3=Relationship:usn2(`8esn`={`8esn`}) ,`1esn`=Rel:#usn8(`8esn`={`6esn`})Where #usn8 Is Not Null Is Not Null"), - octest_legacy:ct_string("Start `4esn`=Node:_usn4(#usn7=\"d_str\") Union All Unwind {0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]] As `4esn` Create Unique `6esn`=Allshortestpaths(((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(@usn5 :`4esn`)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]}))),_usn3=(((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5))) Start `2esn`=Node:_usn4(#usn7=\"d_str\") Union With Distinct $`3esn`[0.12..`8esn`][$#usn7..`5esn`],Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]) =~Reduce(usn1=.e1 Ends With 1e1 Ends With @usn5,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$#usn7[#usn7..]) =~`1esn`($1000 Is Null) As @usn6 Order By {`1esn`}[12.0..`2esn`][@usn6..{usn1}] Ascending,$`3esn` Is Not Null Desc Where 01 Contains {`8esn`} Contains 2.12"), - octest_legacy:ct_string("Return `6esn`[..$@usn6] As `` Order By Extract(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0])[Case $`3esn` In $`6esn` In $`` When {_usn3}[..\"d_str\"] Then `3esn`[{usn1}] Else {999} Starts With {0} End][usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010])] Desc,Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))) Desc Limit Count(*) Contains $#usn7 Contains 1e1 Create @usn6=Shortestpath((usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})),(((`3esn` :`8esn`:`7esn`)-[`7esn`:#usn8|`1esn` *0xabc..]->(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})-[`2esn`?:`7esn` *..07$0]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})))"), - octest_legacy:ct_string("Create usn2=(((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})))"), - octest_legacy:ct_string("Start `4esn`=Node:_usn4(#usn7=\"d_str\") ,``=Relationship:usn2(`3esn`='s_str')Where #usn7 Is Null Is Null Create ``=Shortestpath(((usn2 :`4esn`)-[_usn3:#usn8|`1esn`{_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]}]->(@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:`5esn` *0..{_usn4:7[$`2esn`..{`5esn`}]}]->()))"), - octest_legacy:ct_string("With Distinct {#usn7}[`2esn`..],Filter(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0]) Ends With Case When {#usn8}[010] Then False =~$7 =~2.12 End,0.0 =~999 As `4esn` Detach Delete [0x0[{`7esn`}..][$usn2..],{`4esn`} =~{7} =~{`7esn`},usn1 In 7 In {123456789}] Is Null Is Null,Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`])[Case 00[{`8esn`}..][{`8esn`}..] When 0e0 Starts With 2.12 Starts With $12 Then Null[``] When 12e12 Ends With {usn1} Then $`2esn` Else 2.12['s_str'..$12][{`1esn`}..`2esn`] End..],1000 =~@usn6 =~0x0 Union Create (({`5esn`:$`8esn`[1000..0Xa]})-[:`8esn` *..01]->(`` {`3esn`:{12} Contains {123456789} Contains `4esn`}))"), - octest_legacy:ct_string("Unwind `7esn` In 00 As `` Load Csv With Headers From 7 Starts With {@usn6} Starts With $`` As #usn8 Unwind Reduce(`5esn`=$`5esn`[{`3esn`}],`3esn` In {7} Is Null|`6esn`[12..$usn2][{#usn8}..{usn2}]) In @usn5(Distinct _usn4 Starts With $_usn4 Starts With 12.e12) In None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Count ( * ) Ends With 12.0) As _usn3 Union All Foreach(`2esn` In Allshortestpaths((`5esn` :`4esn`)) Is Not Null| Delete [#usn8 In {`5esn`}[.e1..``] Where {7}[..12e12][..Count ( * )]|{`2esn`} Ends With {`7esn`}] In All(#usn8 In {`5esn`}[.e1..``] Where {7}[..1.0][..9e0]),Null Ends With `2esn` Ends With $usn1,[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12)) Union All Load Csv With Headers From .e12[@usn5..#usn7][010..{usn1}] As `4esn` Detach Delete 1e1 Contains 0e0,Case {#usn8} Is Not Null When {`4esn`} =~9e0 =~{12} Then _usn3[_usn3..][12.e12..] Else 123.654 Contains $`4esn` Contains 1.0 End[(`6esn` {`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]})<-[? *..0x0]->(`3esn` :`7esn`:_usn3)-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->(:``:#usn8{`7esn`:00 Starts With 0xabc,_usn3:{123456789} Contains $#usn8})..][Single(`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1)..],usn1 Is Null Is Null Merge Shortestpath(((`5esn` :_usn4{7})-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})))"), - octest_legacy:ct_string("Create ``=(`1esn` {``:`7esn` Starts With $#usn7 Starts With $`7esn`}),usn2=(((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))) Union All Merge (#usn7 :`8esn`:`7esn`)<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[_usn4?:`1esn` *7..12]->(:#usn8:#usn8{_usn3:$_usn3['s_str'][07],`7esn`:$1000 In $1000 In $`3esn`}) Return Distinct *,{`5esn`:01234567 Is Null Is Null}[..`1esn`(Distinct 00 Starts With 0xabc,$0)],Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn` As _usn3 Skip 1.0 =~7 =~{usn2} Union Return Distinct $`5esn`[$`4esn`..{@usn6}][07..$@usn6] As usn2 Order By [usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*)) Ascending,Case When 1.0 In Count(*) Then False End Contains `1esn`(Distinct 0.e0 Starts With `2esn`) Contains Reduce(`1esn`=\"d_str\" Is Null Is Null,#usn7 In {``} Is Not Null|#usn7) Descending Skip Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End Limit All(#usn7 In {``} Is Not Null Where {_usn4}[...e1][..$7]) Is Null Is Null Match Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Using Index ``:usn1(@usn5) Using Index `3esn`:`5esn`(#usn7) Where $`5esn`[2.12..] Unwind $_usn4 In usn1 In $7 As usn1"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From 123456789 Ends With 01234567 Ends With 1.e1 As #usn8 Fieldterminator \"d_str\" Create `1esn`=(`5esn` :_usn4{7})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}),((`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8}))"), - octest_legacy:ct_string("Merge ((`6esn` {`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]})<-[usn2?:`5esn`{`8esn`:{_usn4}[1000..{@usn5}],_usn3:12e12 Ends With {usn1}}]-(#usn7 :#usn8:#usn8{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[? *7..12]->({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})) On Create Set @usn5 =Extract(#usn8 In {`5esn`}[.e1..``] Where {`3esn`}[..07][..{`5esn`}]) Is Null Is Null On Create Set None(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $12[True..][{0}..]).usn1! ={123456789} Is Not Null Create Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))),`2esn`=(usn2 :`4esn`)-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(`` :_usn4)"), - octest_legacy:ct_string("Unwind Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)[(:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0})..Shortestpath((({``})))] As @usn6 Foreach(`5esn` In 0.12 Contains 0X0123456789ABCDEF Contains .e0| Return None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})[Any(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")..Reduce(usn1=#usn7[usn1][$`5esn`],`3esn` In {7} Is Null|Count(*) Ends With 12.0 Ends With 12)][(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})..({usn1:`5esn`[_usn4..]})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})],@usn5 =~{`5esn`} =~`5esn` As _usn4,$123456789 In $#usn7 In `4esn` As `` Limit #usn7[010..False]) Create Unique (:`4esn`{`7esn`:$0[..9e1],usn1:{_usn4} Ends With `6esn`})-[:@usn5{@usn5:{#usn7}[9e1..][{123456789}..],``:#usn7 Is Not Null Is Not Null}]->(`4esn` :`6esn`{_usn3:$123456789 Ends With `3esn` Ends With 123456789,`6esn`:0e0 Starts With 2.12 Starts With $12})-[`7esn` *..0x0]-(`2esn` :_usn4)"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From `1esn` =~\"d_str\" As usn1 Fieldterminator \"d_str\" Foreach(`5esn` In All(`5esn` In $999[0.0..] Where {@usn6} Ends With 's_str' Ends With 12.0) In (:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})| Start _usn4=Rel:#usn8(\"d_str\") Where $#usn8[9e12..][.e1..])"), - octest_legacy:ct_string("Start @usn6=Rel:``(_usn3='s_str') ,``=Node:_usn4(usn1={12}) Union All Match #usn7=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}),@usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})) Using Join On _usn4 Create `1esn`=(`5esn` :_usn4{7})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}),((`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})) Load Csv With Headers From 7 =~{`8esn`} =~$`6esn` As `5esn` Union All Remove Extract(#usn8 In {`5esn`}[.e1..``]|12e12 Ends With {usn1})._usn3!"), - octest_legacy:ct_string("Return Distinct [1.0 =~'s_str' =~{`2esn`}] Contains [9e1[2.12],{usn2}[$`3esn`..][{#usn7}..],Null Ends With {`5esn`} Ends With 0.e0] Contains `5esn` As `8esn`,[`` Ends With 0Xa Ends With `2esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},{`4esn`} =~{7} =~{`7esn`}] As @usn6 Skip #usn8 Starts With $_usn4 Starts With $7 Remove Reduce(`5esn`=$`5esn` In $`` In 123.654,_usn3 In {`3esn`}[`2esn`]|$@usn5 Starts With 01 Starts With .e0).``,(`` {`1esn`:{@usn6}[{999}..][00..]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->({12}).`5esn`! Detach Delete .e0[12.e12..],Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0) Is Not Null Is Not Null,0.12[`2esn`..{`6esn`}]"), - octest_legacy:ct_string("Unwind Allshortestpaths(((`7esn` {`2esn`:$`6esn`[123456789..12][True..{`3esn`}],#usn7:$_usn3[Count(*)]})-[#usn8? *..07$_usn4]->(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}))) =~(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null}) =~{#usn8:{`3esn`}[@usn6..0Xa][{12}..0Xa],@usn5:False Is Null Is Null} As usn2 Union Optional Match ``=(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[?:#usn7 *01234567..0Xa]-(@usn6 {#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12})-[usn1? *1000..00]->(#usn7 :@usn5{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}))) Using Join On #usn7 Using Index _usn4:usn2(#usn8) Union All Start _usn3=Node:@usn6({#usn7}) Where usn1 In 7 In {123456789} Remove [`5esn` In \"d_str\" Is Null Is Null Where 1.e1[$`1esn`..@usn6][$0..$_usn3]].usn2!,{`5esn`:{999},_usn3:$`5esn`[2.12..]}.`1esn`?"), - octest_legacy:ct_string("Load Csv From $123456789 In $#usn7 In `4esn` As `5esn` Union All Load Csv With Headers From Null[$`5esn`][False] As `` Fieldterminator \"d_str\" Merge (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[`4esn`:`8esn` *00]-(`2esn` :`8esn`:`7esn`)<-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:usn2) Union All Merge ((`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})) On Create Set usn1(Distinct $123456789 Ends With `3esn` Ends With 123456789,`5esn`[7][{usn2}]).@usn5 =All(#usn7 In {``} Is Not Null Where {_usn4}[...e1][..$7]) Is Null Is Null,`2esn`+=Case {#usn8} Is Not Null When {`4esn`} =~9e0 =~{12} Then _usn3[_usn3..][12.e12..] Else 123.654 Contains $`4esn` Contains 1.0 End[(`6esn` {`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]})<-[? *..0x0]->(`3esn` :`7esn`:_usn3)-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->(:``:#usn8{`7esn`:00 Starts With 0xabc,_usn3:{123456789} Contains $#usn8})..][Single(`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1)..],usn1+=$`6esn`[123456789..12][True..{`3esn`}] Detach Delete $@usn5 Starts With {0} Starts With 12 Detach Delete 0X7[{@usn6}],Null In $7 In .e1,9e12[0.0..][$12..]"), - octest_legacy:ct_string("Load Csv From Allshortestpaths((((:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]->(:`4esn`{``:2.12 Is Not Null Is Not Null}))))[{`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null}][Allshortestpaths(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})))] As `2esn` Merge `2esn`=Allshortestpaths((((#usn8 :usn1)-[:`6esn`|`5esn` *123456789..]-(#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})-[_usn4{`5esn`:{0} Ends With $_usn3 Ends With $`7esn`,`2esn`:Null[``]}]-(`7esn` :`5esn`)))) Union Unwind 0e0[`8esn`..][$123456789..] As usn2 Optional Match `6esn`=Shortestpath((((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})))),Shortestpath(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null}))) Using Scan `3esn`:_usn4 Using Scan ``:`2esn` Where $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Load Csv With Headers From `6esn`[..$@usn6] As @usn6 Fieldterminator 's_str' Union Unwind $_usn4 =~usn2 =~{_usn3} As _usn4"), - octest_legacy:ct_string("Start `5esn`=Relationship(*) Return Distinct 12.e12 Is Null Is Null As `6esn`,01 Is Null As `2esn`,$12 =~$_usn3 As #usn8 Skip Filter(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]) Ends With Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``]) Ends With Case $`7esn` Is Null Is Null When {#usn7}[9e1..][{123456789}..] Then False =~1e1 =~0.e0 Else 1000 In {`8esn`} In 01 End Limit $999 Is Not Null With Distinct Extract(`8esn` In 01[2.12..`8esn`] Where {usn2}|$0[12.e12..]) =~Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null|7 Ends With $`4esn`) =~(usn1 {`2esn`})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->(:_usn3:_usn3{`4esn`:12e12 Ends With {usn1}})<-[`7esn`?:`8esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}) As `1esn`,Extract(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null)[..Any(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})] Order By $`1esn`[{`2esn`}..] Desc,$12 Starts With $`8esn` Starts With $`1esn` Descending Union Merge #usn7=((`4esn` :@usn6:#usn8)-[:`8esn`*]->({_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})) On Match Set usn1 =$`3esn`[{`5esn`}..#usn7][{`2esn`}...e1],(`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[`5esn`?:`5esn` *1000..00]->({`1esn`:`3esn`[{`2esn`}]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]}).`5esn` ={#usn8}[{``}..]"), - octest_legacy:ct_string("Merge (`6esn` :`8esn`:`7esn`)<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}}) On Create Set Extract(#usn7 In {``} Is Not Null Where 0.12 =~`5esn` =~`5esn`).`8esn` =1000[0X7..2.12],`1esn`+={`5esn`} Starts With @usn5 Starts With `7esn`,`5esn`+=123.654 Is Not Null On Create Set _usn4 =[`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null,@usn6+=Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 07 Contains 0X7 Contains $`8esn`) Is Not Null Is Not Null Create Unique Shortestpath((({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`4esn`:`8esn` *00]->(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]->(`6esn` :`4esn`{#usn8:@usn6[$`3esn`..{`3esn`}],`3esn`:usn2[{7}]}))) Delete True[{_usn4}..][False..],$#usn7[@usn5..{1000}][1.e1..7],#usn7 Contains usn2 Contains @usn5"), - octest_legacy:ct_string("Start #usn8=Relationship:`8esn`(#usn8={`2esn`}) ,`6esn`=Rel:`7esn`(`3esn`=\"d_str\") Remove Allshortestpaths(({`3esn`:usn1 Is Null Is Null})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(usn2 {`6esn`:{#usn8}[.._usn4][..$`3esn`],`7esn`:01 =~{_usn3} =~`3esn`})).@usn5!,All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where ``[$`2esn`])._usn4!,Filter(#usn7 In {``} Is Not Null Where .e0 Starts With $`` Starts With $usn2).#usn8 Union All Remove (:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn` *0X7..{usn2:_usn3[$`8esn`]}]->(`8esn` :_usn4).@usn5,[@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $0[``][{@usn6}]].#usn8! Unwind (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12} As `1esn`"), - octest_legacy:ct_string("Start @usn6=Relationship:`8esn`({`3esn`}) ,`3esn`=Node:usn1(_usn4={12}) Remove Shortestpath((usn1 {`7esn`:{999}})).`5esn`!,Any(`4esn` In $`3esn` Is Not Null Where `8esn`[{123456789}..]).`5esn`"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From $@usn6 Ends With $_usn4 Ends With 0.12 As `4esn` Start ``=Rel:#usn8({12}) ,`7esn`=Relationship:@usn5({`8esn`})Where `7esn` In {123456789} In `1esn` Return *,Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0) Is Not Null Is Not Null As `1esn`,[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `4esn` Ends With 07 Ends With {`3esn`}|@usn5 Is Null] Is Null Is Null As _usn3 Order By 123456789[$@usn5..] Ascending,.e12 Contains 00 Contains {999} Asc,{`5esn`}[{usn2}..1000][$`8esn`..{`3esn`}] Ascending Skip $`8esn`[1000..0Xa]"), - octest_legacy:ct_string("Delete `4esn`[`5esn`..12][@usn6..False],07 Contains 0X7 Contains $`8esn`,$`5esn`[2.12..] Start `2esn`=Node:`7esn`(`3esn`=\"d_str\") ,_usn3=Node:@usn6({#usn7}) Foreach(`2esn` In {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}])| Start `1esn`=Node:`2esn`(#usn8={123456789}) )"), - octest_legacy:ct_string("Match `2esn`=(:`1esn`{``:.e1 Is Null Is Null})<-[#usn8?:usn1|@usn6]->(`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`}),`6esn`=(((usn2 :``:#usn8)-[ *123456789..{`4esn`:0Xa[2.12],#usn7:0.e0 In $#usn7 In $_usn3}]-(@usn6 :`3esn`:@usn5)-[`7esn` *0X0123456789ABCDEF]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0}))) Using Index `6esn`:`8esn`(``) Using Index `1esn`:_usn3(_usn4) Where $#usn8 Ends With $`2esn` Ends With $@usn6 Foreach(`4esn` In 12 Ends With 0x0 Ends With 0.e0| With *,Shortestpath((((`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`2esn` *..07]-(`1esn` {#usn7:{_usn4} In {12} In $0})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})))) In ({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}) As `1esn`,`6esn`[2.12..01][{``}..False] As `1esn` Where $123456789 In 0X0123456789ABCDEF In 0.e0 Unwind 123456789 Ends With 0.12 Ends With `` As _usn3) Foreach(usn2 In {@usn6} Is Null Is Null| Remove `3esn`(False Starts With {`5esn`},0[{usn2}..][$`6esn`..]).usn2? Detach Delete Reduce(#usn7=`3esn`[{`2esn`}],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|#usn8 Is Not Null)[(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(#usn7 {_usn3:`4esn`[..Count ( * )][..{#usn7}]})..None(`8esn` In 01[2.12..`8esn`] Where {usn2})],Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))),12 Ends With 0x0 Ends With 0.e0) Union Detach Delete Case {#usn8} Is Not Null When {`4esn`} =~9e0 =~{12} Then _usn3[_usn3..][12.e12..] Else 123.654 Contains $`4esn` Contains 1.0 End[(`6esn` {`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]})<-[? *..0x0]->(`3esn` :`7esn`:_usn3)-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->(:``:#usn8{`7esn`:00 Starts With 0xabc,_usn3:{123456789} Contains $#usn8})..][Single(`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1)..],Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End Is Null Is Null Unwind 0.e0 Starts With 12.e12 Starts With {_usn4} As _usn3 Return [01[2.12..`8esn`],{7} In `2esn`,123456789 Ends With $`6esn` Ends With $#usn7] Starts With Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With `7esn`(Distinct {_usn4} Ends With `6esn`,{@usn6}[7]),{_usn4}[...e1][..$7] Skip 0x0 Ends With $12"), - octest_legacy:ct_string("Create `8esn`=Allshortestpaths(((:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))),#usn7=Shortestpath((`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})) Remove [`5esn` In $999[0.0..] Where {7}[..12e12][..Count ( * )]]._usn4!,All(#usn8 In 7[..999][..{#usn8}] Where {12} =~#usn8).``!,{#usn8:01234567[usn2..$12][{`7esn`}..$usn2]}.`4esn`? Return Distinct *,Reduce(usn1=$123456789 Is Null Is Null,_usn3 In {`3esn`}[`2esn`]|Null[$`5esn`][False])[Case 0e0 Contains Null When 0X7[`7esn`][123.654] Then 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] End..][[9e1[$usn2],{`4esn`}[$123456789..][$#usn7..]]..],01234567 Is Null Is Null Order By @usn6 Contains Null Contains $`7esn` Ascending"), - octest_legacy:ct_string("With (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As ``,12[..$`4esn`] As `7esn` Limit Count ( * ) =~$usn2 =~$usn2 Create Unique Allshortestpaths((`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})),(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})<-[`6esn`?{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}) Return Distinct Reduce(`7esn`=$`5esn` In $`` In 123.654,`` In 123456789 Ends With 12.e12 Ends With $`7esn`|{`7esn`} Is Null)[Reduce(_usn3=#usn8 Is Not Null,`` In 123456789 Ends With 12.e12 Ends With $`7esn`|1.0 Starts With 12e12 Starts With {`5esn`})] As `8esn`,$`8esn` Is Not Null Is Not Null As `1esn`,\"d_str\" Starts With $123456789 Order By `` Ends With $1000 Desc,Case {`8esn`} Ends With `6esn` When False Is Null Is Null Then 's_str' In 00 Else 123456789 Ends With $`6esn` Ends With $#usn7 End Starts With Case `1esn` =~0 =~$#usn7 When $#usn8[9e12..][.e1..] Then False =~$7 =~2.12 When {123456789}[9e12][{0}] Then 12.0 =~999 =~$_usn3 End Desc"), - octest_legacy:ct_string("Start usn2=Node:`4esn`('s_str') ,@usn6=Rel:``(_usn3='s_str')Where `7esn` In {123456789} In `1esn`"), - octest_legacy:ct_string("Foreach(usn2 In @usn6 Ends With {_usn3}| Load Csv From {123456789}['s_str'] As #usn7 Fieldterminator 's_str' Create @usn6=Allshortestpaths(((:@usn6:#usn8{`4esn`:$`8esn`[..00]})<-[_usn4?:_usn4|:usn2 *00]->(:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))))"), - octest_legacy:ct_string("Return [`5esn`[{`4esn`}..`2esn`],Null Ends With {`5esn`} Ends With 0.e0,010[#usn7..True]] Contains [`3esn` In {7} Is Null Where {usn2}[.e0..$999]|Count ( * ) Contains `8esn` Contains .e1] Contains Reduce(``=@usn5 In {`7esn`} In `2esn`,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{_usn4}[1000..{@usn5}]) As `3esn`,{7}[$7..$``][{``}..{7}] As usn2,{1000}[{_usn3}..] As #usn7 Skip Shortestpath((_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})) Contains [`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 7 Starts With {@usn6} Starts With $``|.e12 Is Not Null Is Not Null] Limit $`6esn` Ends With Count(*) Return Allshortestpaths((({`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})<-[?*..]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}))) Ends With Reduce(_usn3='s_str'[00][{`5esn`}],`4esn` In $`3esn` Is Not Null|Count ( * ) Contains `8esn` Contains .e1),$_usn4[0e0..][False..] As ``,$`6esn` Ends With Count(*) Order By {usn1} Is Not Null Is Not Null Desc,{usn2}[$`3esn`..][{#usn7}..] Ascending Limit {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]) Union Create Unique (((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`8esn`?:`2esn`*..{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]}))),Allshortestpaths((_usn3 :@usn5)-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})) Union Match (({_usn3:$`5esn`[`3esn`..]})-[? *..07{`4esn`:@usn5 =~{`5esn`} =~`5esn`}]->(_usn3 :usn2{#usn7:{999} Starts With {0}})) Using Index @usn5:`2esn`(@usn5) Where $123456789 Is Null Is Null Foreach(`4esn` In None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12])[Reduce(`4esn`=`1esn` =~0 =~$#usn7,`2esn` In `1esn` =~\"d_str\"|{123456789} Is Null Is Null)][{``:`7esn` Starts With $#usn7 Starts With $`7esn`}]| Remove [@usn5 In {`7esn`} In `2esn`,9e0,$`5esn`[..$`5esn`][..$12]].`4esn`!,Reduce(usn2=$usn2[{@usn5}],`4esn` In $`3esn` Is Not Null|$7[{usn2}..][{usn2}..]).usn2,[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 01[2.12..`8esn`]|{0} Ends With $_usn3 Ends With $`7esn`].`6esn`!)"), - octest_legacy:ct_string("Detach Delete None(`5esn` In $999[0.0..] Where {``}[010..][0xabc..])[{`3esn`:False Is Null Is Null,`8esn`:2.12}] Load Csv With Headers From #usn8 Starts With `6esn` Starts With 12.e12 As `` Union Foreach(#usn7 In .e1 =~{@usn6} =~Null| Create (:`2esn`:usn1{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}) Start `6esn`=Node:@usn5({0}) Where $#usn7[#usn7..]) Optional Match (((`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[usn1?:@usn5*]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})-[#usn7:@usn5 *0X7..]->(`2esn` ))),Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))) Where `7esn` In {123456789} In `1esn` Union All Detach Delete $usn1 In {999} In $#usn7,Shortestpath((:`3esn`:@usn5{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`4esn` {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}))[Filter(#usn8 In 7[..999][..{#usn8}] Where $#usn7 Contains 0x0 Contains 1000)..] Match Allshortestpaths((@usn5 {`7esn`:$`6esn`[010..],#usn8:0.e0 Starts With `2esn`})-[@usn5]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})) Using Join On `2esn` Where $1000 In $1000 In $`3esn` Detach Delete $`1esn` =~0X7,.e0 Ends With 0.12,0e0[`8esn`..][$123456789..]"), - octest_legacy:ct_string("Unwind All(`4esn` In $`3esn` Is Not Null Where {123456789} Is Not Null) As `` Remove Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7))._usn4 Union Detach Delete @usn6 Contains Null Contains $`7esn`,$usn2[$`2esn`..`4esn`] Union Detach Delete usn2 Ends With 12.e12,Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})] Create Unique `6esn`=Shortestpath(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null}))),(:`7esn`:_usn3{usn1:$usn1 In {999} In $#usn7}) With Distinct 0x0[{`7esn`}..][$usn2..],Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {`3esn`} Is Not Null Is Not Null)[{@usn6:1.0[$`1esn`..][$123456789..]}] As `6esn`,12.e12 Is Not Null Is Not Null As #usn8 Skip 12.0[..9e0][..$``]"), - octest_legacy:ct_string("Load Csv From [`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`]|`8esn` Contains $usn1 Contains $12][Filter(_usn3 In {`3esn`}[`2esn`] Where #usn7 Contains _usn3 Contains {`3esn`})..(:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})-[usn2?:`7esn` *123456789..{_usn4:$@usn5 Starts With {0} Starts With 12,`2esn`:{7}[..12e12][..Count ( * )]}]->({_usn3:False =~1e1 =~0.e0,_usn3:{999} Starts With $999})] As `6esn` Fieldterminator \"d_str\" With Distinct $7[{123456789}] As `6esn` Order By _usn4 Starts With $_usn4 Starts With 12.e12 Descending Skip \"d_str\" Ends With {`2esn`} Ends With usn2 Limit Reduce(`2esn`=$_usn3[.e0..$usn2],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$`7esn` Is Null Is Null)[Shortestpath((({``})))..{@usn6:{`6esn`} =~$999}]"), - octest_legacy:ct_string("Create Unique `1esn`=((:usn1{`6esn`:2.12 Contains `1esn`,`1esn`:9e12[`6esn`..12.0]})<-[`3esn`? *..01]->(@usn5 :`5esn`)<-[? *..07]-(:`4esn`)),(((`6esn` :`5esn`{usn1:{`6esn`}})<-[? *0X7..{#usn8:{1000} Is Null Is Null,`3esn`:0.e0 Starts With 12.e12 Starts With {_usn4}}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})<-[:`1esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}))) Create ((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})),Allshortestpaths(((`2esn` :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0}))) Union All Create Unique #usn8=Shortestpath((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[_usn3? *0X7..]-(:`5esn`{`2esn`:`4esn`[1.0]})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})) Foreach(`6esn` In $`5esn` In $`` In 123.654| Return $`8esn`[1000..0Xa],({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(:@usn5)<-[`7esn`?:`8esn`]-({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}) Ends With $7 Ends With All(`` In `` Is Not Null Is Not Null Where 1000 In {`8esn`} In 01) As ``,usn1 Starts With $usn1 As `1esn` Order By Null[``] Descending,1.e1[$`1esn`..@usn6][$0..$_usn3] Asc,$`6esn`[.e0..$`6esn`][$_usn3..{#usn7}] Desc Limit {`4esn`} Starts With 1e1 Unwind {`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]}[@usn5(Distinct {`5esn`} Contains $0 Contains {``},12.e12 Starts With {999} Starts With {`1esn`})] As _usn4)"), - octest_legacy:ct_string("Load Csv With Headers From 0e0 Starts With `2esn` Starts With $`` As `3esn` Fieldterminator \"d_str\" Match (_usn3 {@usn5:`5esn`[{`4esn`}..`2esn`],_usn3:07 =~01}) Using Index #usn7:#usn8(`4esn`) Where {``} Starts With $`2esn` Starts With `1esn` Foreach(`8esn` In [_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|`` Is Not Null Is Not Null] Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where {_usn3}[..\"d_str\"][..`5esn`]) Ends With Filter(`3esn` In {7} Is Null Where {123456789} Contains $#usn8)| Remove (:#usn7)-[?:_usn3|_usn3]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[:#usn7 *..010]->(#usn8 :usn1)._usn4!,{_usn4:0.12 Contains 0X0123456789ABCDEF Contains .e0}.`1esn`! Remove None(#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01).`5esn`!) Union Remove `5esn`:_usn4,[1.0[0X7][{`5esn`}],@usn6[$`3esn`..{`3esn`}]].#usn8!"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From $`` Is Not Null As `7esn` "), - octest_legacy:ct_string("Detach Delete 1.e1[$`1esn`..@usn6][$0..$_usn3],$@usn6[..{#usn7}][..{@usn6}] Load Csv From `5esn`[..Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`])] As _usn4 "), - octest_legacy:ct_string("Foreach(#usn8 In 1000 =~@usn6 =~0x0| Create Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))),`2esn`=(usn2 :`4esn`)-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(`` :_usn4) Unwind {`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}[Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End..[`3esn` In {7} Is Null Where {123456789} Contains $#usn8|#usn7 =~Count ( * ) =~``]][`7esn`(9e1[1000][{123456789}]).._usn3(0.12 =~$0 =~$0)] As ``) Create Allshortestpaths((:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 :usn1)) Foreach(_usn4 In {`4esn`} Starts With $usn2 Starts With $1000| Unwind {`4esn`}[$0..] As @usn5 Unwind 0e0[..010] As ``)"), - octest_legacy:ct_string("Foreach(`1esn` In Count ( * ) Ends With $@usn5| With Distinct {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]),Count ( * ) Is Null As @usn6,123.654[...e0] Order By {usn2} Starts With $`8esn` Starts With Count ( * ) Asc Limit $@usn5 Starts With #usn7 Where {123456789}[0xabc..]) Start usn2=Node:usn1(`4esn`='s_str') Where 12.e12[..Null][..$#usn8] Detach Delete {_usn3} Ends With `5esn`,$#usn8[$`8esn`..{`8esn`}],{`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]}[@usn5(Distinct {`5esn`} Contains $0 Contains {``},12.e12 Starts With {999} Starts With {`1esn`})]"), - octest_legacy:ct_string("Start `4esn`=Relationship:`3esn`({`1esn`}) ,`7esn`=Rel:`4esn`(`2esn`=\"d_str\")Where usn2 Is Not Null Is Not Null Match #usn7=(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[#usn8]-(:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}) Using Index #usn8:`2esn`(`5esn`) Using Index `3esn`:`5esn`(#usn7) Detach Delete `1esn` In .e0 In {`3esn`}"), - octest_legacy:ct_string("Create #usn8=((:`4esn`{`7esn`:$0[..9e1],usn1:{_usn4} Ends With `6esn`})-[`1esn`? *123456789..{_usn4:$@usn6 Ends With $_usn4 Ends With 0.12}]->(_usn4 :#usn7{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})),((usn1 {`7esn`:{999}})) Load Csv From {_usn4} Is Not Null Is Not Null As usn2 Return Extract(`8esn` In 01[2.12..`8esn`] Where {usn2}|$0[12.e12..]) =~Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null|7 Ends With $`4esn`) =~(usn1 {`2esn`})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->(:_usn3:_usn3{`4esn`:12e12 Ends With {usn1}})<-[`7esn`?:`8esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}) As `1esn`,Extract(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null)[..Any(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})] Order By $`1esn`[{`2esn`}..] Desc,$12 Starts With $`8esn` Starts With $`1esn` Descending Union All Delete .e12[$usn2..][12.e12..],Allshortestpaths(((`7esn` {`2esn`:$`6esn`[123456789..12][True..{`3esn`}],#usn7:$_usn3[Count(*)]})-[#usn8? *..07$_usn4]->(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}))) Is Not Null Is Not Null,1.e1[$`1esn`..@usn6][$0..$_usn3]"), - octest_legacy:ct_string("Detach Delete $`5esn`[$`4esn`..{@usn6}][07..$@usn6],0X7[`7esn`][123.654]"), - octest_legacy:ct_string("Create `1esn`=Allshortestpaths((((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[? *0Xa]-({`7esn`:{999}})-[`7esn`]->(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})))) Union All Create Unique (#usn8 {#usn7:`4esn` Ends With 07 Ends With {`3esn`},`3esn`:{0} In $_usn3})<-[:`4esn` *..010{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]->(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}),(`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]}) Union Create `8esn`=(:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`),Shortestpath(({usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null})) Merge (`1esn` :`4esn`{`6esn`:$`6esn` Ends With Count(*),`7esn`:_usn3 Starts With 12.e12 Starts With 0.12})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}) Start _usn4=Node:`4esn`(_usn4={123456789}) Where {_usn4} In {12} In $0"), - octest_legacy:ct_string("Remove ({#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(`7esn` {`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})-[`2esn` *0xabc..{`3esn`:$#usn8[$`8esn`..{`8esn`}]}]-({_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1}).``?,#usn7(Distinct).`3esn`!"), - octest_legacy:ct_string("Delete Reduce(_usn4=01[{`2esn`}..{@usn6}][$`2esn`..0.0],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|0.12 =~$0 =~$0)[Shortestpath((((`1esn` {@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00})-[`6esn`?:`3esn`|:#usn8]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))))..[{12}[{7}][$123456789]]] Create Unique Shortestpath((((`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})<-[@usn6:@usn5 *0Xa]->({`3esn`:9e1[2.12..{#usn8}]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})))),#usn7=({@usn5:07[..True][..9e12]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}) Union Unwind 0.e0 Starts With 12.e12 Starts With {_usn4} As _usn3 Union Remove Reduce(#usn7=`7esn` Starts With $#usn7 Starts With $`7esn`,#usn8 In 7[..999][..{#usn8}]|`1esn` Ends With {_usn3} Ends With `2esn`).`8esn`,Any(`8esn` In 01[2.12..`8esn`] Where {usn2}).`1esn`!,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}|$#usn8 Ends With $`2esn` Ends With $@usn6].usn1?"), - octest_legacy:ct_string("Load Csv From All(#usn8 In {`5esn`}[.e1..``] Where {_usn3}[..\"d_str\"][..`5esn`])[..Allshortestpaths((`5esn` :`4esn`))] As @usn5 Load Csv From None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {@usn6}[{999}..][00..]) Ends With Shortestpath((`6esn` {_usn4:0Xa =~Null =~$``})<-[``? *0X7..]->(`` :`1esn`)) Ends With Reduce(_usn3={7}[..1.0][..9e0],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|`1esn` Contains {usn2} Contains $#usn8) As `` Fieldterminator 's_str' Union Merge `7esn`=Shortestpath(((`5esn` :_usn4{7})<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})-[:`4esn` *0xabc..{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(`3esn` :`5esn`))) On Create Set `1esn` =12.e12[``][{`2esn`}],`8esn`+=00[{`8esn`}..][{`8esn`}..],#usn7+={_usn4} Ends With `6esn` Match Shortestpath((:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[`6esn`]-(`1esn` {@usn5:1.0[0e0..0.e0]})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})),(((#usn7 :`8esn`:`7esn`{`5esn`:1.0 In Count(*)})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000}))) Using Index _usn4:@usn5(`8esn`) Using Index `8esn`:`1esn`(@usn5) Create `7esn`=Allshortestpaths((@usn6 {`3esn`:{``} Is Not Null})-[usn1?:@usn5*]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})) Union Unwind $`4esn` Starts With $`5esn` Starts With False As #usn8 Detach Delete Single(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]) Is Not Null Is Not Null,{`2esn`:1000[..$0][..True],@usn5:{12} Ends With 0Xa Ends With $`6esn`}[Single(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn1} Ends With $0)..][Extract(`2esn` In `1esn` =~\"d_str\" Where $`4esn` In Null In 0xabc|{`5esn`} Starts With $`5esn` Starts With .e1)..],usn1 Is Not Null"), - octest_legacy:ct_string("Match #usn7=({@usn5:07[..True][..9e12]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}),Allshortestpaths((_usn4 :usn1)<-[`1esn`?:`4esn`]->(`5esn` :`4esn`)) Match `6esn`=((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})) Using Index usn2:@usn6(`5esn`) Using Scan `2esn`:_usn4 Where $@usn5 Contains 0xabc Contains {#usn7} Detach Delete {`3esn`}[`2esn`],{12} Ends With 0Xa Ends With $`6esn`,False[$usn1.._usn4][_usn4..{`3esn`}] Union With *,07 Is Not Null Is Not Null Delete {@usn6}[7] Foreach(`4esn` In {`6esn`}| Create Unique `8esn`=(_usn4 :usn2{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]})) Union Create Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null})))"), - octest_legacy:ct_string("Merge #usn8=Shortestpath((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[_usn3? *0X7..]-(:`5esn`{`2esn`:`4esn`[1.0]})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})) On Match Set usn2+=Case {#usn7}[9e1..][{123456789}..] When $0 Ends With 12.0 Then $`` Is Not Null When $usn1 In {999} In $#usn7 Then 1000[Null..{123456789}] Else 1.0 =~'s_str' =~{`2esn`} End[{@usn5:.e0[..$`8esn`],`4esn`:{usn2} =~12}..Any(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``)] With #usn8 In $@usn6,1.e1[`8esn`][00] Skip 01 Ends With 999 Ends With {`7esn`} Where 123456789 Ends With $`6esn` Ends With $#usn7"), - octest_legacy:ct_string("Delete \"d_str\" =~1000 =~{`1esn`} Match usn2=Shortestpath(((_usn4 :``:#usn8)-[:`8esn` *..01]->({#usn7:0.e0 Starts With `2esn`})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->($#usn8))) Using Index `8esn`:@usn6(`5esn`)"), - octest_legacy:ct_string("Start usn2=Node:_usn4(``={#usn7}) ,``=Node:usn2(#usn8=\"d_str\")Where usn1 Starts With usn1 Starts With $`` Return *,$`7esn`['s_str'] As #usn8,Reduce(`3esn`=$0[..9e1],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|999 In {`3esn`} In usn2) Starts With Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Starts With Allshortestpaths((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})) As `` Limit {@usn5} =~Count ( * ) =~12.0 Create (`6esn` :`8esn`:`7esn`)<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From {999}[_usn4..] As @usn6 Fieldterminator \"d_str\" Create usn1=Shortestpath((()<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[?:`2esn` *00]->(`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}))) Return Distinct *,07[$#usn7..{1000}],0X0123456789ABCDEF =~1e1 =~{`4esn`} Order By $`5esn`[2.12..] Asc"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From `5esn` Is Null As usn2 Create Unique ({_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})"), - octest_legacy:ct_string("Foreach(`3esn` In {`7esn`}[`6esn`][#usn7]| With Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where @usn6 Is Null Is Null)[(`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})..] As `3esn`,{`3esn`} In 0X7 Skip `1esn` In .e0 In {`3esn`} Limit Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End Create Unique #usn7=((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})),Shortestpath((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))))) Start #usn7=Node:`6esn`(`3esn`=\"d_str\") ,`7esn`=Node:``(@usn6={usn1})Where 9e12 Is Not Null Is Not Null Return Distinct 9e1[True] As _usn3 Order By Count ( * ) =~$usn2 =~$usn2 Descending Limit $@usn6 Is Not Null Union All Create Unique Shortestpath((({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`4esn`:`8esn` *00]->(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]->(`6esn` :`4esn`{#usn8:@usn6[$`3esn`..{`3esn`}],`3esn`:usn2[{7}]}))) Union All Foreach(`2esn` In [`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]][Case 1.0 In Count(*) When $_usn4[Count ( * )..] Then Null[``] When $1000[`2esn`..`5esn`][1e1..1.e1] Then .e12[@usn5..#usn7][010..{usn1}] Else 1.0[$`1esn`..][$123456789..] End][All(`4esn` In $`3esn` Is Not Null Where usn2 Is Not Null Is Not Null)]| Detach Delete $usn1[_usn4],.e1[..usn2][..`8esn`],$123456789 Ends With `3esn` Ends With 123456789 Load Csv From {``} Starts With $`2esn` Starts With `1esn` As `` ) Delete {`3esn`} In 01,.e1 In 0,Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]]"), - octest_legacy:ct_string("Remove (`8esn` {`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})<-[`7esn`?:`8esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]})-[`7esn`?*..]->(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01}).`7esn`!,{`7esn`:Count(*)[..usn2][..usn2]}.``!,Case 01[{`2esn`}..{@usn6}][$`2esn`..0.0] When Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6} Then {7}[$``][{@usn6}] Else usn1 Is Null End.`6esn`! Load Csv With Headers From 9e12[`6esn`..12.0] As @usn5 Start `1esn`=Node:usn2({`5esn`}) Union All Match ((:@usn5{#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})-[?:usn2|`` *0..{usn2:{12} Is Not Null,`6esn`:``[$`2esn`]}]-(`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})),((_usn3 :`7esn`:_usn3)-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})<-[`5esn`{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(_usn3 {#usn8:_usn4 Is Null Is Null})) Using Index ``:_usn3(usn1) Foreach(@usn6 In 123.654 Contains $`4esn` Contains 1.0| Load Csv From `5esn`[{`4esn`}..`2esn`] As `8esn` Fieldterminator \"d_str\" Optional Match `2esn`=(((`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[:`8esn` *..01]->({#usn7:0.e0 Starts With `2esn`})-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(@usn5 {usn2:0.e0[123.654][01]}))) Using Scan `6esn`:`` Where {`4esn`}[$123456789..][$#usn7..])"), - octest_legacy:ct_string("Optional Match Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))),`2esn`=(usn2 :`4esn`)-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(`` :_usn4) Where {123456789} Is Null Is Null Union Unwind Count(*) In $`3esn` In 0Xa As `1esn`"), - octest_legacy:ct_string("Optional Match `2esn`=Allshortestpaths((`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})),Shortestpath((((:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]->(:`4esn`{``:2.12 Is Not Null Is Not Null})))) Using Scan `4esn`:#usn7 Where 0.12 Contains 0X0123456789ABCDEF Contains .e0 Create Unique `8esn`=Allshortestpaths(((:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))) Union Merge Allshortestpaths(((:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`))) On Match Set (:usn1{usn2:0x0 Is Null,`5esn`:{usn2} =~12})<-[:`5esn` *0..{_usn4:7[$`2esn`..{`5esn`}]}]-(`5esn` {`4esn`:01 Is Null})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}).usn1 =2.12 Is Not Null Is Not Null,(:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[{`7esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4]}]-({`5esn`:$#usn8 Ends With $`2esn` Ends With $@usn6})<-[usn1:_usn4|:usn2]-(:_usn4{usn2:0X0123456789ABCDEF[123456789]}).usn2! =Single(#usn8 In {`5esn`}[.e1..``] Where 123.654[$`1esn`]) Is Not Null Is Not Null,[{_usn3}[12.e12],123456789 Ends With 01234567 Ends With 1.e1,True =~010].`8esn`? =9e1 Contains #usn7 Foreach(`3esn` In {`7esn`}[`6esn`][#usn7]| With Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where @usn6 Is Null Is Null)[(`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})..] As `3esn`,{`3esn`} In 0X7 Skip `1esn` In .e0 In {`3esn`} Limit Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End Create Unique #usn7=((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})),Shortestpath((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))))"), - octest_legacy:ct_string("Merge (_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5}) On Match Set ``(Distinct 0.12 =~`5esn` =~`5esn`,Null[``]).`1esn`! =12e12 Ends With {usn1},@usn5 =7 Ends With $`4esn`,_usn4 =Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End[..[9e1[1000][{123456789}],$_usn3[{#usn7}],`5esn` Starts With $`2esn` Starts With $1000]][..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0 In `2esn` In 010)] On Match Set `6esn`:`8esn`:`7esn` Union All With *,None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12]) Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where $_usn3[.e0..$usn2]|{#usn7}[9e1..][{123456789}..]) Ends With Reduce(`2esn`={`3esn`} In 0X7,_usn3 In {`3esn`}[`2esn`]|$`5esn`[{`3esn`}]) As ``,0.e0[123.654][01] As _usn3 Where 1000 In {`8esn`} In 01 Delete 0.0 Is Not Null Is Not Null,None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})[Any(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")..Reduce(usn1=#usn7[usn1][$`5esn`],`3esn` In {7} Is Null|Count(*) Ends With 12.0 Ends With 12)][(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})..({usn1:`5esn`[_usn4..]})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})],Reduce(#usn7=$1000 Is Null,#usn7 In {``} Is Not Null|$`1esn` Ends With 9e1 Ends With $123456789) In Case When `5esn` Is Null Then True[..$`6esn`] Else `3esn`[`3esn`..][#usn8..] End Union All Foreach(_usn3 In $#usn7 Is Not Null| Load Csv With Headers From 0e0[07] As _usn4 Fieldterminator 's_str') With Distinct $1000 =~$`2esn` As `6esn`,`` Is Not Null Is Not Null Order By $12[..{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}] Ascending Skip False[..``] Limit Count ( * )[$_usn4..$`4esn`] Foreach(#usn8 In $`1esn` Ends With 9e1 Ends With $123456789| Start _usn3=Node:`8esn`(`1esn`={#usn7}) Where usn2[9e12] Remove Case When 01 Contains {`8esn`} Contains 2.12 Then $_usn3[Count(*)] Else {`3esn`}[@usn6..0Xa][{12}..0Xa] End.`5esn`!,[#usn8 In 7[..999][..{#usn8}] Where {`5esn`} Contains $0 Contains {``}|#usn7 Starts With {#usn7} Starts With `7esn`].`1esn`?)"), - octest_legacy:ct_string("Remove #usn8(Distinct $`4esn`[Null..],2.12 =~False).@usn5,[$`3esn` In $_usn4 In {_usn3},{1000} =~0 =~123.654].`3esn` Create `7esn`=Shortestpath((((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``})))),((:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12})) Union All With 7[$`8esn`..123456789][$usn1..$usn1] As `5esn`,2.12[{7}..] As `5esn`,[usn2[$_usn4..][True..],1.0 In Count(*)] =~Any(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12.0[123.654][Count(*)]) =~Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where usn2 Is Not Null Is Not Null) As `` Skip 12.0 In {`2esn`} Where 123.654 Is Not Null Is Not Null Create Unique @usn6=(((:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)-[usn1? *1000..00]->({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}))),(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``}) Optional Match ((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})),``=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))) Using Scan _usn3:_usn3 Where Count ( * ) Ends With $@usn5"), - octest_legacy:ct_string("With Distinct Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7) Contains Filter(`` In `` Is Not Null Is Not Null Where 0e0 Starts With 1000 Starts With #usn7) Contains Shortestpath((($#usn8)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]}))) As #usn7 Order By 2.12 =~Count(*) Descending,`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) Contains Reduce(`7esn`=$_usn4 Ends With usn1 Ends With $0,`4esn` In $`3esn` Is Not Null|`7esn` In {123456789} In `1esn`) Asc Where 1.0 Contains $_usn4"), - octest_legacy:ct_string("Unwind $7 Is Not Null Is Not Null As usn2"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From Shortestpath((((`7esn` {`5esn`:123.654 Contains $`4esn` Contains 1.0,`8esn`:123.654 =~$usn2 =~{999}})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[`2esn`?:`1esn` *00]->({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})))) In (usn2 :@usn5)-[?{`8esn`:{7} Is Null}]->(`` )<-[`3esn`?:`3esn`|:#usn8]-(`` :#usn8:#usn8) In (@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8}) As @usn6 Fieldterminator 's_str'"), - octest_legacy:ct_string("With Distinct *,{#usn8} Is Not Null,$`5esn`[2.12..{_usn3}][_usn3..{1000}] As usn2 Order By 9e0[1.e1..][0Xa..] Descending,{_usn3:`4esn`[..Count ( * )][..{#usn7}]}[Any(_usn3 In {`3esn`}[`2esn`] Where 1e1 In \"d_str\" In `7esn`)..(:usn1{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[`2esn`:_usn4|:usn2]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[`6esn`{`6esn`:Count(*) Ends With 12.0 Ends With 12}]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})][Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7|123.654[{7}..])..Filter(`3esn` In {7} Is Null Where usn1 Is Null Is Null)] Asc Create #usn8=Shortestpath((#usn8 :@usn5)) Union Remove [`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|0Xa[2.12]].`2esn`!,#usn7:usn1 Create Unique @usn6=((`7esn` {`7esn`:{123456789} Contains $#usn8})),Allshortestpaths((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})) Unwind $`2esn`[2.12..'s_str'][{@usn6}.._usn4] As `7esn`"), - octest_legacy:ct_string("Optional Match `6esn`=Allshortestpaths((#usn8 :@usn6:#usn8))"), - octest_legacy:ct_string("With Distinct *,{`2esn`} Ends With {`7esn`},Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 1.0 =~7 =~{usn2}) Is Not Null Is Not Null As `5esn` Skip 12 In `3esn` In 1e1 Where $`7esn` =~{`8esn`} =~$usn1 Foreach(_usn3 In None(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Is Null Is Null| Unwind Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]] As `8esn`) Start `6esn`=Node:usn2({`4esn`}) ,``=Relationship:_usn3(`8esn`={123456789})Where $`6esn` Is Null"), - octest_legacy:ct_string("Start `3esn`=Relationship:#usn7('s_str') ,#usn7=Rel:_usn3({@usn5}) With #usn8 In $@usn6,1.e1[`8esn`][00] Skip 01 Ends With 999 Ends With {`7esn`} Where 123456789 Ends With $`6esn` Ends With $#usn7 Union All Create Unique `3esn`=Shortestpath((`4esn` {`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}})) Unwind `4esn`[`5esn`..12][@usn6..False] As `5esn` Create Allshortestpaths((`3esn` :#usn8:#usn8)),((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})-[`8esn`?:@usn6|`6esn`]-(`2esn` :`6esn`))"), - octest_legacy:ct_string("Create Shortestpath((`3esn` :`8esn`:`7esn`)-[`` *..12]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[`3esn`? *123456789..]-(`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})),Shortestpath((`5esn` :`4esn`)) Return Distinct {``} Is Not Null As #usn7,{#usn7}[`2esn`..],Count ( * ) Contains {`1esn`} Contains 07 Order By `8esn` Is Not Null Is Not Null Desc Limit $123456789[_usn3][{#usn7}] With Distinct *,2.12 Ends With $_usn3 Ends With `3esn` As `7esn`,0 In `2esn` In 010 Order By Count ( * ) Starts With 7 Starts With $123456789 Descending,01234567 Ends With .e12 Ends With $#usn7 Asc,$`6esn` =~1.e1 =~12 Asc Skip [{`3esn`} Is Not Null Is Not Null] Limit Single(#usn8 In {`5esn`}[.e1..``] Where $`` =~12.0 =~$`7esn`) Contains Case When {`1esn`}[12.0..`2esn`][@usn6..{usn1}] Then 's_str'[00][{`5esn`}] Else $#usn7 Is Null End Contains None(`5esn` In $999[0.0..] Where .e1 =~$`8esn`) Where $`8esn` Contains 123456789 Contains $usn2"), - octest_legacy:ct_string("Create Unique (((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`}))),Allshortestpaths((usn2 :`4esn`))"), - octest_legacy:ct_string("Remove usn1:_usn4,[`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|0Xa[2.12]].`2esn`! Remove (_usn3 :usn2{#usn7:{999} Starts With {0}})<-[`4esn`:@usn6|`6esn`{`4esn`:`2esn` Is Null,@usn5:00 Starts With 0xabc}]-({`5esn`:$#usn8 Ends With $`2esn` Ends With $@usn6}).`2esn`? Create Unique ((:@usn6:#usn8)<-[`1esn`?:usn2|``]-({@usn5:{usn2}[.e0..$999]})),@usn6=Shortestpath((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null}))"), - octest_legacy:ct_string("Remove {#usn8:#usn7 Contains _usn3 Contains {`3esn`}}._usn3?,{`3esn`}.`4esn` Union All Load Csv From None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`]) Is Not Null As `2esn` Union All Unwind 2.12 Contains usn2 Contains True As `4esn` With Distinct Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn`,{``}[$#usn8..$usn1] As @usn6,None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`]) Is Not Null Order By $0[..9e1] Descending,{usn1}[Count(*)..] Desc Skip (`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})-[:`6esn`|`5esn`{`8esn`:$0 Ends With 12.0}]->(`5esn` {`4esn`:7[$`2esn`..{`5esn`}],@usn6:{7} Is Null}) Contains Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) Contains Case 9e12 Is Not Null Is Not Null When 0[..usn2][..{@usn5}] Then 0e0 Ends With 1.e1 Ends With $`4esn` Else usn1 Is Null End Where $`5esn` In $`6esn` Load Csv With Headers From {0}[\"d_str\"..07][0..'s_str'] As @usn5 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Foreach(`7esn` In Case When _usn4 Is Null Is Null Then Null[$#usn7] When $`2esn` Is Null Is Null Then $`3esn` =~{#usn8} End[(@usn5 :usn1)-[`2esn`:_usn4|:usn2]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})..Reduce(@usn5=`3esn`[{usn1}],`8esn` In 01[2.12..`8esn`]|`5esn` Starts With `3esn`)][Shortestpath((:``:#usn8{``:1.0[0e0..0.e0]}))..None(#usn8 In {`5esn`}[.e1..``] Where {_usn3}[..\"d_str\"][..`5esn`])]| Optional Match ((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})),``=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))) Using Scan _usn3:_usn3 Where Count ( * ) Ends With $@usn5 Optional Match `8esn`=Allshortestpaths(((:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))),`2esn`=((`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(_usn3 :#usn7)<-[@usn5?]->(`1esn` :`5esn`{`5esn`:{``} Is Null})) Where $usn1[{`5esn`}][$`6esn`]) Detach Delete 1e1 Contains 0e0"), - octest_legacy:ct_string("Create `7esn`=Allshortestpaths(((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[`1esn`?:usn2|``{_usn4:$`4esn`[..$`3esn`][..0.0],@usn6:0e0 Starts With 2.12 Starts With $12}]->(:_usn3:_usn3{`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})<-[`8esn` *0X0123456789ABCDEF]->(usn2 :_usn4))),#usn7=Allshortestpaths((@usn6 :`6esn`)<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3))"), - octest_legacy:ct_string("Unwind 7 Starts With `6esn` Starts With 01234567 As #usn8 Union All Return Distinct Shortestpath((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))) Is Null Is Null As @usn5,1000 In `7esn` In 9e12 As `6esn`,`1esn`[..{`2esn`}][..$_usn4] As #usn7 Union All Return Distinct (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As ``,12[..$`4esn`] As `7esn` Skip Allshortestpaths((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3))[Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})))] Load Csv With Headers From Extract(#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12) Ends With [False =~$7 =~2.12,$`4esn` In Null In 0xabc,{`7esn`} Starts With $123456789 Starts With $@usn6] As @usn6 Fieldterminator 's_str'"), - octest_legacy:ct_string("Foreach(@usn5 In 2.12 Is Null| Load Csv With Headers From `5esn`[.e0..][07..] As `6esn` Fieldterminator \"d_str\" Match _usn4=(:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null})) Union Detach Delete $`5esn`[$`4esn`..{@usn6}][07..$@usn6],0X7[`7esn`][123.654]"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From {``}[...e12] As `1esn` Fieldterminator \"d_str\" Delete [`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\"] Is Null"), - octest_legacy:ct_string("Foreach(`4esn` In $12 Starts With {`1esn`} Starts With Null| Start `7esn`=Rel( {``}) Where `1esn` =~0 =~$#usn7 Delete Extract(#usn7 In {``} Is Not Null Where 123456789[0xabc..'s_str'][``..`1esn`])[Reduce(usn1=False,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|$_usn4 Starts With 1e1)]) Union Load Csv From {usn1} In 2.12 In 1000 As _usn4 Merge Shortestpath((((`1esn` :`5esn`{`5esn`:{``} Is Null})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(_usn4 :usn1)))) On Create Set `1esn`+=0.0 =~999,Case When `8esn` Ends With 999 Ends With .e12 Then 12.e12[7..$`6esn`] When 1000 In {`8esn`} In 01 Then `2esn` Starts With $_usn4 Else 0Xa Starts With {`6esn`} Starts With $usn1 End.`3esn`! =Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where `3esn`[{0}][usn1]) Starts With Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[`3esn`? *123456789..]->({_usn3:$`5esn`[`3esn`..]}))),@usn5 =`3esn` Is Null On Create Set `` =$#usn7 Contains 0x0 Contains 1000,#usn7+={``} Is Not Null,Reduce(`5esn`=01234567 Ends With .e12 Ends With $#usn7,`8esn` In 01[2.12..`8esn`]|0Xa =~Null =~$``).`6esn`! ={0} Contains 0.0 Contains $@usn5"), - octest_legacy:ct_string("Foreach(usn1 In {12} Ends With 0Xa Ends With $`6esn`| Create Unique Allshortestpaths(((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})-[`7esn`:#usn8|`1esn` *0xabc..]->(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]->(:@usn6:#usn8))),#usn7=Allshortestpaths((@usn6 :`6esn`)<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3)) Optional Match `1esn`=(#usn8 {`2esn`:$`5esn`[..$`5esn`][..$12]}),@usn5=Allshortestpaths(()<-[_usn4 *..999]->(`7esn` {#usn7:\"d_str\" Contains {123456789} Contains 01,@usn5:$1000 In $1000 In $`3esn`})) Where 1000[0X7..2.12]) Return Distinct *,Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`]|123456789 Ends With 12.e12 Ends With $`7esn`) Is Not Null As `6esn` Order By {#usn7:0X0123456789ABCDEF =~1e1 =~{`4esn`},`2esn`:1.0 =~'s_str' =~{`2esn`}}[..None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 0X7[`7esn`][123.654])][..(:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})<-[`2esn`?:`7esn`]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})] Asc,usn2 Is Null Desc,$_usn3 Starts With $@usn6 Starts With {`8esn`} Desc Limit Reduce(`3esn`=12.0[123.654][Count(*)],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|`1esn` =~\"d_str\")[..Case When $`` Is Not Null Then 12[1.e1..{_usn3}][1.e1..1.0] When 7[True..][2.12..] Then $_usn4 Is Not Null Is Not Null End][..Case When $#usn8[$`2esn`..][{`2esn`}..] Then 0X7[1000..{`1esn`}] When {#usn8}[{7}] Then 07 In `2esn` In 12e12 Else $`1esn` Ends With 9e1 Ends With $123456789 End]"), - octest_legacy:ct_string("Start _usn4=Rel:#usn8({_usn3}) ,#usn8=Node:@usn5(usn2='s_str')Where 1.0 Contains $_usn4 Foreach(#usn8 In $`3esn` In Null| Optional Match #usn8=(`1esn` :`4esn`{`6esn`:$`6esn` Ends With Count(*),`7esn`:_usn3 Starts With 12.e12 Starts With 0.12}),(:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]->(#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})-[`1esn`?:`8esn`]->(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}) Using Index `6esn`:`8esn`(``)) Union Remove [`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where $7[0.12][usn1]].`3esn`!,[#usn8 In 7[..999][..{#usn8}] Where $_usn4[1.e1]['s_str']|`2esn` Is Null].usn1 Start _usn4=Node:`2esn`(#usn7='s_str') ,`3esn`=Node:#usn8(`1esn`={`3esn`})Where @usn6 Is Null Is Null"), - octest_legacy:ct_string("Create Unique `3esn`=(((`1esn` :`5esn`{`5esn`:{``} Is Null})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(_usn4 :usn1))),(`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Foreach(usn1 In \"d_str\" Starts With 01| Unwind [`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"]|$#usn7 Is Null][..{`4esn`:{`4esn`} =~{7} =~{`7esn`},`8esn`:$#usn7[#usn7..]}] As @usn6)"), - octest_legacy:ct_string("Return Distinct $12 =~$_usn3 As #usn8,`7esn` Ends With 0x0 As @usn6,$1000 =~$`2esn` As `7esn` Skip All(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`2esn`} Is Not Null)[Filter(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`4esn`} Starts With $usn2 Starts With $1000)..Reduce(`8esn`={`2esn`} Is Not Null Is Not Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{usn1} Ends With $0)][Allshortestpaths(((`1esn` )))..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End]"), - octest_legacy:ct_string("Start _usn4=Node:`3esn`(`2esn`={usn1}) ,`6esn`=Node:``('s_str') Load Csv With Headers From $@usn6 Ends With $_usn4 Ends With 0.12 As `4esn` Start `8esn`=Relationship:`4esn`(`1esn`={`2esn`}) Union All Return {#usn7}[..9e12][..`8esn`] As #usn7,{0}[{`8esn`}..`4esn`] As #usn8 Order By 0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn` Asc Skip [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}|{usn1} Is Null Is Null][Allshortestpaths(((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})))..] Limit `3esn`[$`1esn`..999][``..$123456789] Create `6esn`=({usn1:$`3esn` In $_usn4 In {_usn3}})-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})-[``?]-(#usn8 :@usn6:#usn8{`2esn`:$7 Is Not Null Is Not Null,`1esn`:`1esn` =~\"d_str\"}),_usn4=(:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null}) Load Csv With Headers From 123456789 Ends With $`6esn` Ends With $#usn7 As `6esn` Fieldterminator 's_str' Union All Load Csv With Headers From 0X7[1000..{`1esn`}] As usn1 Match ((_usn4 )) Using Index `3esn`:@usn5(`2esn`) Using Scan _usn3:`1esn` Where {usn1}[0X0123456789ABCDEF] Start `7esn`=Node:`7esn`(_usn4={@usn6}) "), - octest_legacy:ct_string("Return Distinct {``}[$#usn8..$usn1] As `3esn`,{`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]} Starts With [False] Starts With Filter(#usn8 In 7[..999][..{#usn8}] Where $_usn3[.e0..$usn2]) As _usn3,$`6esn`[{999}..9e0] Order By Case When @usn5 Is Null Then 2.12 Ends With $_usn3 Ends With `3esn` Else $1000 Is Null End[Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}])..None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa)][Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01|usn2 Is Null)..Case When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` End] Descending,``[12.0..0e0][{`5esn`}..`7esn`] Asc,Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End Descending Skip {_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] Create (#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null}) Create Unique Allshortestpaths(((usn2 :`6esn`{#usn7:Count ( * ) Contains 07})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))),`3esn`=({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]->(_usn3 :`5esn`) Union Merge (#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(#usn7 ) On Create Set `6esn` =#usn7(usn2 Is Not Null Is Not Null,$`6esn` Ends With Count(*)) Is Null Is Null,Case $usn1 =~`` When 07 Contains 0X7 Contains $`8esn` Then 123456789[{123456789}..'s_str'] When $_usn3[Count(*)] Then $`5esn` In $`` In 123.654 End.`5esn`? =Reduce(`2esn`=$`5esn` In $`` In 123.654,#usn8 In {`5esn`}[.e1..``]|$12[True..][{0}..]) =~Shortestpath((((:#usn7)<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})))),`5esn`+=2.12 =~Count(*) Create Unique `8esn`=Allshortestpaths((((:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?{usn1:0[`7esn`..]}]->({usn1:{`7esn`}[`6esn`][#usn7],usn1:{999} Starts With $999})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))),_usn4=(`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null})<-[``?]->(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}) Create Unique Allshortestpaths(((`8esn` )<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}))),`6esn`=(_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})"), - octest_legacy:ct_string("Start ``=Node:@usn5({0}) ,`7esn`=Rel:`4esn`(`2esn`=\"d_str\")Where `3esn`[`3esn`..][#usn8..] Merge _usn3=((:`2esn`:usn1)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`}))"), - octest_legacy:ct_string("With *,`7esn` Is Null As `7esn`,None(`` In `` Is Not Null Is Not Null Where $`6esn` Is Null) Contains Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}))) Contains Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End Order By {usn2} Starts With $`8esn` Starts With Count ( * ) Asc,(:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(:_usn3:_usn3{``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Is Not Null Descending,.e0[..0X0123456789ABCDEF][...e12] Descending Limit {``}[...e12] Load Csv With Headers From ({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]})<-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})[(@usn5 :`6esn`)-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]->(:@usn6:#usn8)..{`2esn`:{_usn4} Starts With 0.e0 Starts With 0x0}] As `1esn` Load Csv From Any(#usn8 In 7[..999][..{#usn8}] Where .e0[..$`8esn`]) In Case When 123.654[0e0..$``][$`1esn`..$`8esn`] Then $_usn3['s_str'][07] When {`3esn`}[..07][..{`5esn`}] Then 's_str' Is Not Null Is Not Null End In {`7esn`:{1000}[{_usn3}..],usn2:2.12 =~False} As `7esn` Fieldterminator \"d_str\" Union All Unwind {``} Ends With `7esn` Ends With 0.0 As `6esn` Union All Start #usn7=Node:``(\"d_str\") ,`3esn`=Rel:`7esn`(`3esn`='s_str')Where 9e0 Start `7esn`=Node:_usn4(#usn7=\"d_str\") ,`5esn`=Rel:`4esn`(`2esn`=\"d_str\") Unwind $#usn8[$`8esn`..{`8esn`}] As `6esn`"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From {_usn4} Is Not Null Is Not Null As `5esn` Return `6esn`[..$@usn6] As `` Order By Extract(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0])[Case $`3esn` In $`6esn` In $`` When {_usn3}[..\"d_str\"] Then `3esn`[{usn1}] Else {999} Starts With {0} End][usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010])] Desc,Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))) Desc Limit Count(*) Contains $#usn7 Contains 1e1 Optional Match ``=(`5esn` :_usn4{7})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}),((`5esn` )-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(@usn6 {`3esn`:{``} Is Not Null})<-[`1esn` *0Xa{_usn3:Null Ends With `2esn` Ends With $usn1,#usn8:.e12 Is Not Null Is Not Null}]->(usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})) Using Index `2esn`:`3esn`(@usn6) Using Join On `5esn`,#usn7 Where 123456789 Ends With $`6esn` Ends With $#usn7"), - octest_legacy:ct_string("With Distinct *,`7esn` Is Null As `7esn`,None(`` In `` Is Not Null Is Not Null Where $`6esn` Is Null) Contains Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}))) Contains Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End Limit [@usn6 Contains Null Contains $`7esn`,{`4esn`} Starts With $usn2 Starts With $1000] Ends With Any(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $_usn4[0e0..][False..]) Ends With (`1esn` :`2esn`:usn1)-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(`1esn` :_usn3:_usn3{#usn7:$@usn5 Is Not Null Is Not Null})"), - octest_legacy:ct_string("Return {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null} Contains {@usn5:{`3esn`} In 01} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 1.0[0X7][{`5esn`}]|{``}[010..][0xabc..]) As #usn8 Union Unwind 7[{0}..{_usn4}] As `3esn` Create `6esn`=Allshortestpaths((#usn8 :@usn6:#usn8)) Union All Optional Match usn2=Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))) Using Index `2esn`:usn1(`2esn`)"), - octest_legacy:ct_string("Create (:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})-[?:`5esn`]->(:usn2),`2esn`=Shortestpath((({usn2:7[..999][..{#usn8}]}))) Union All Foreach(#usn8 In $`7esn` Is Not Null| Create #usn7=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}),@usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})) Create `3esn`=Allshortestpaths(((:usn1{_usn4})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})))) Delete Shortestpath((((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))))[..Case 0Xa =~123456789 =~_usn4 When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $1000 In $1000 In $`3esn` Then 0.e0[#usn8] End][..(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})],Case $1000[999] When `4esn`[`5esn`..12][@usn6..False] Then {0} Ends With $_usn3 Ends With $`7esn` When $usn1 In {999} In $#usn7 Then Count ( * )[True..][{#usn7}..] End Ends With {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null},`7esn` In 00 Start _usn4=Relationship:`1esn`({12}) ,@usn6=Relationship:`8esn`({`3esn`}) Union All Start `6esn`=Rel( {0}) With Distinct [`4esn` In $`3esn` Is Not Null Where $@usn5 Contains 0xabc Contains {#usn7}|`3esn`[{0}][usn1]] In [{12}[{7}][$123456789],`2esn` Starts With $_usn4] In count($1000 Is Null,0Xa[$123456789..123.654][.e12..0.e0]) Order By None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null) Desc,None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null) Desc Where $usn2[{@usn5}]"), - octest_legacy:ct_string("Create (((:`6esn`{_usn4:'s_str' Ends With 7 Ends With {_usn4},@usn6:$`2esn`})-[:@usn6|`6esn` *1000..00]-(usn1 {`1esn`:$@usn6 Ends With $_usn4 Ends With 0.12,`3esn`:`4esn` =~$`5esn`})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(:`3esn`:@usn5$usn2))),@usn5=((:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12})) Unwind 0.e0 Starts With 12.e12 Starts With {_usn4} As _usn3 Load Csv With Headers From None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As usn1 "), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From 9e12[`6esn`..12.0] As @usn6 Merge (`7esn` {@usn5:{7}[..1.0][..9e0]})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})<-[`1esn`?:usn2|``]-({@usn5:{usn2}[.e0..$999]}) On Match Set `2esn`+=#usn7 Contains _usn3 Contains {`3esn`},Reduce(`8esn`={usn1} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|0xabc[.e0]).`3esn`! =$@usn5 Starts With 01 Starts With .e0 Detach Delete $12 Ends With 07 Ends With $123456789,$`6esn`[{_usn3}..$`4esn`][$_usn4...e12]"), - octest_legacy:ct_string("Return Distinct {``} Is Not Null As #usn7,{#usn7}[`2esn`..],Count ( * ) Contains {`1esn`} Contains 07 Order By `8esn` Is Not Null Is Not Null Desc Limit $123456789[_usn3][{#usn7}]"), - octest_legacy:ct_string("Return Distinct Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`3esn`} In 01)[Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12e12 Contains 0Xa|Null[$#usn7])..Allshortestpaths(((`` {`3esn`:{12} Contains {123456789} Contains `4esn`})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})))][Reduce(`6esn`=7[..123456789][..{@usn6}],`5esn` In \"d_str\" Is Null Is Null|$_usn4 Is Not Null Is Not Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] As _usn4,Allshortestpaths((:@usn5{_usn3:07 =~01})) Starts With [`3esn` In {7} Is Null Where {`4esn`} =~{7} =~{`7esn`}] Starts With ({`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}})<-[`6esn`?:_usn4|:usn2]-(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}) Skip 7 Ends With (@usn5 {`7esn`:$`6esn`[010..]})-[:`8esn` *..01]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]}) Ends With #usn8(False =~$7 =~2.12) Union All Foreach(_usn3 In {#usn7} Contains _usn3 Contains 12.e12| Create Unique #usn8=({`7esn`:\"d_str\" Starts With $123456789})<-[`4esn`:``{usn1:`` Is Not Null Is Not Null,usn1:{1000}[{_usn3}..]}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[`4esn`]->(:`6esn`$123456789) Match (usn2 {``:01[{@usn5}]}) Where {123456789} =~`8esn` =~@usn5) Union Foreach(`7esn` In {`5esn`} =~`4esn` =~{_usn4}| Optional Match `7esn`=Shortestpath(((:`5esn`{``:1.0[0e0..0.e0]})-[_usn4:#usn8|`1esn`{`6esn`:#usn8[..{#usn7}]}]->(#usn7 :`4esn`))) Using Index `7esn`:usn2(`6esn`)) Load Csv From {``} Starts With $`2esn` Starts With `1esn` As `` Delete Extract(#usn7 In {``} Is Not Null Where 123456789[0xabc..'s_str'][``..`1esn`])[Reduce(usn1=False,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|$_usn4 Starts With 1e1)]"), - octest_legacy:ct_string("With 2.12[$`5esn`][$#usn8],$7 Ends With `4esn` As `5esn` Order By ({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}) Asc,{#usn8} Starts With 00 Starts With {`6esn`} Desc Skip `1esn`[{usn1}..``][7..$#usn8] Unwind $123456789[_usn3][{#usn7}] As `3esn` Create `1esn`=Shortestpath((usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})<-[ *..010{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}}]->(:_usn4$@usn5)<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]->(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})),((:_usn4{@usn6})) Union All Remove Case When $#usn8[$`8esn`..{`8esn`}] Then $#usn8[$`8esn`..{`8esn`}] Else #usn8 Is Not Null Is Not Null End.@usn6! Start usn1=Node:_usn3({`6esn`}) ,`5esn`=Relationship(*)"), - octest_legacy:ct_string("Create usn2=Allshortestpaths(((@usn5 :`4esn`))),(@usn6 :`6esn`)<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3) Union All Unwind {`2esn`} In 12 As `7esn` Foreach(`5esn` In {123456789} Starts With 0.0 Starts With `5esn`| Remove 2.12.`7esn`!,[@usn6 Contains $1000 Contains {`7esn`}].`3esn`?) Union All Optional Match @usn6=Shortestpath((((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``})))),Shortestpath(((@usn6 :`8esn`:`7esn`)<-[`6esn`?:`4esn` *..01]->(`3esn` :#usn7{usn2:12.0 =~999 =~$_usn3,@usn6:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?]-(`7esn` :`5esn`))) Unwind .e12[$usn2..][12.e12..] As `6esn`"), - octest_legacy:ct_string("Return *,$`7esn`['s_str'] As #usn8,Reduce(`3esn`=$0[..9e1],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|999 In {`3esn`} In usn2) Starts With Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Starts With Allshortestpaths((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})) As `` Limit {@usn5} =~Count ( * ) =~12.0 Union Load Csv From 9e1[2.12..{#usn8}] As `2esn` Unwind $@usn5 Is Not Null Is Not Null As `8esn` Start `1esn`=Rel:`4esn`(`4esn`='s_str') Where 123456789 Is Null"), - octest_legacy:ct_string("Match _usn3=(((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5))),(:``:#usn8{_usn3:$`7esn` Is Null Is Null}) Using Scan `4esn`:#usn7 Using Scan `5esn`:usn2 Union All Merge `4esn`=Allshortestpaths((({`3esn`:.e1[..usn2][..`8esn`]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`1esn`{_usn4:{999}}))) Match ((_usn4 )) Using Index `3esn`:@usn5(`2esn`) Using Scan _usn3:`1esn` Where {usn1}[0X0123456789ABCDEF] Union All Merge `5esn`=(((:@usn6:#usn8{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})<-[`6esn`?{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}]->(`4esn` {_usn4:0Xa =~Null =~$``})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))) On Match Set _usn4+=.e1 Ends With 1e1 Ends With @usn5,#usn8+=1.e1[`8esn`][00],`1esn` =[1000 =~@usn6 =~0x0] Starts With {#usn8:$`7esn` =~{`8esn`} =~$usn1,`7esn`:0xabc[01..{999}][{7}..{`7esn`}]} Starts With `7esn`(Distinct 123.654[`3esn`..])"), - octest_legacy:ct_string("Unwind $`1esn`[{`2esn`}..] As `7esn` Unwind [#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn2 Is Null|@usn6[$`3esn`..{`3esn`}]] In Filter(_usn3 In {`3esn`}[`2esn`] Where 1e1 In 123.654 In `3esn`) As _usn3 With Distinct `5esn`[_usn4..],$123456789 In 0X0123456789ABCDEF In 0.e0 Where 7[True..][2.12..] Union All Detach Delete {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]),[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12),$_usn4 Is Null Is Null Match #usn7=Shortestpath((`2esn` :usn1)<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(`3esn` :`8esn`:`7esn`)<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)) Using Join On `8esn`,@usn6 Where 999 Is Not Null Is Not Null"), - octest_legacy:ct_string("Remove Any(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..]).usn2 Remove `8esn`(Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},9e1[$usn2]).`8esn` Union Return *,0X7[1000..{`1esn`}],12.e12 Is Null Is Null Order By $`6esn`[{_usn3}..$`4esn`][$_usn4...e12] Descending,$`6esn`[.e0..$`6esn`][$_usn3..{#usn7}] Desc Skip `4esn` Is Not Null Is Not Null Load Csv With Headers From 0Xa Starts With {`6esn`} Starts With $usn1 As `` Union All Merge @usn5=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})) On Create Set [{#usn8}[010]].`8esn`! =`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) In [#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]|@usn6 Contains $1000 Contains {`7esn`}] In Filter(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]),`2esn`+=9e1[1000][{123456789}] On Create Set `` =2.12 =~False,#usn7+=$usn1[..{`6esn`}],#usn7+=(:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12} Unwind Count(*) In $`3esn` In 0Xa As `1esn` Return Distinct {123456789} =~`8esn` =~@usn5 As `5esn` Order By {`4esn`} In 1.0 Descending,`8esn`(Distinct $#usn7 Is Null) Ends With Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]) Ends With Shortestpath(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))) Descending Skip {`4esn`}[#usn7..$123456789][{7}..usn2]"), - octest_legacy:ct_string("Load Csv With Headers From {`3esn`}[..07][..{`5esn`}] As `1esn` Fieldterminator 's_str' Delete 12.0 Contains #usn7,$12[Null..Count(*)][{`5esn`}..{999}],Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where `5esn` Starts With $`2esn` Starts With $1000) Ends With Reduce(``=0.12 =~$0 =~$0,`2esn` In `1esn` =~\"d_str\"|9e12[`1esn`..][$`1esn`..]) Start `3esn`=Rel:#usn8(`8esn`={`6esn`}) ,usn1=Node:`3esn`(`2esn`={usn1})"), - octest_legacy:ct_string("Foreach(#usn8 In Shortestpath(((:`8esn`:`7esn`$#usn7)-[`5esn`:`8esn`]->(#usn8 {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]}))) In [_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..]|1.0 Is Null Is Null] In Case When Count ( * ) Contains 07 Then 123.654[$`1esn`] End| Detach Delete .e0[12.e12..],Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0) Is Not Null Is Not Null,0.12[`2esn`..{`6esn`}] Optional Match (({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}]->({`7esn`:7[{0}..{_usn4}]})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(usn2 {``:01[{@usn5}]})),`5esn`=Shortestpath((((`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})<-[@usn6:@usn5 *0Xa]->({`3esn`:9e1[2.12..{#usn8}]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})))) Using Scan `1esn`:`3esn` Where 7[..999][..{#usn8}]) Union All Remove (:_usn4{@usn6})-[`5esn`?:_usn4|:usn2{_usn4:{999}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[{`4esn`:{_usn3}[..$12][..0.12],`7esn`:1.0[0X7][{`5esn`}]}]-({`2esn`:{7} In `2esn`,`1esn`:`4esn`[1.0]})._usn3!,Case `1esn`[{usn1}..``][7..$#usn8] When 9e1[2.12] Then $_usn4 Is Not Null Is Not Null When $`7esn` =~{`8esn`} =~$usn1 Then $`4esn`[9e12..123.654] Else {123456789}[0xabc..] End.`7esn`?,None(#usn7 In `2esn`[..$#usn8][..Count(*)] Where Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6}).usn1? Detach Delete Allshortestpaths(((_usn4 :`8esn`:`7esn`{`4esn`:{`2esn`} Is Not Null Is Not Null,`1esn`:.e1 =~$`8esn`})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2}))),7[$_usn4..9e0],Count(*) Ends With 12.0 Ends With 12 Return Distinct usn2 Is Null,Shortestpath((_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})) Contains [`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 7 Starts With {@usn6} Starts With $``|.e12 Is Not Null Is Not Null] As `6esn` Order By Case When Count(*) In $12 Then .e0 Starts With 0 Starts With 0.e0 When {usn1}[0X0123456789ABCDEF] Then $`6esn`[123456789..12][True..{`3esn`}] Else 7 Starts With {@usn6} Starts With $`` End[Case @usn6 Contains $1000 Contains {`7esn`} When 0.12 =~$0 =~$0 Then $usn1[.._usn4][..False] When {0} Ends With $_usn3 Ends With $`7esn` Then 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3] End..] Desc,$#usn7[@usn5..{1000}][1.e1..7] Asc,123456789[$@usn5..] Asc"), - octest_legacy:ct_string("Load Csv From {usn2} =~12 As #usn8 Unwind [`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]][..None(#usn8 In 7[..999][..{#usn8}] Where $`7esn`['s_str'])][..`1esn`(Distinct 12e12[$`3esn`],0.0 =~999)] As `8esn` Union Remove [`5esn` In $999[0.0..] Where #usn7 =~Count ( * ) =~``|\"d_str\" Is Null Is Null].`5esn`!,(:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12})-[usn1:`8esn`]-({_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null}).`2esn`,Case When 9e1[$usn2] Then {7}[..12e12][..Count ( * )] When 12.e12[$_usn3..] Then {`8esn`} Ends With `6esn` End.#usn7? Match `5esn`=Allshortestpaths(((`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}))),Allshortestpaths(((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]}))) Where {7}[..12e12][..Count ( * )] Foreach(#usn7 In {`3esn`} In $@usn5 In _usn4| Detach Delete {999} Contains .e0 Contains 12.0,$usn1[{`5esn`}][$`6esn`])"), - octest_legacy:ct_string("Load Csv With Headers From Allshortestpaths((:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))[[{_usn4} In {12} In $0,$`5esn`[2.12..],12[1.e1..{_usn3}][1.e1..1.0]]][[12e12 Is Not Null Is Not Null]] As _usn3 Fieldterminator 's_str' Create ((usn2 :`4esn`)),(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[`6esn`]-(`1esn` {@usn5:1.0[0e0..0.e0]})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}) Optional Match ``=Shortestpath((`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})) Using Scan `6esn`:`` Using Scan `6esn`:`1esn` Where \"d_str\" Is Null Is Null Union Unwind $12[..{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}] As `5esn` With Distinct *,9e1[2.12],$_usn4 Contains Null Contains #usn8 As #usn7 Order By (usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]})<-[ *123456789..]-(:@usn5) Is Null Is Null Desc,False[..{`1esn`}] Desc Skip 1e1[$`5esn`][{`3esn`}] Limit {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains [1.0[0X7][{`5esn`}]] Where 123.654 Contains $`4esn` Contains 1.0 Create Shortestpath((`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(_usn4 {`5esn`:\"d_str\" Starts With 01})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(:`3esn`:@usn5$usn2)),#usn8=Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Union All Foreach(_usn4 In [`5esn` In $999[0.0..] Where `5esn` Starts With `3esn`|12e12 Is Not Null Is Not Null]| Start ``=Rel:#usn8({12}) Match ((:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?:`5esn` *0..]->(usn2 :``:#usn8)<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})) Using Scan _usn4:@usn6 Where `` Ends With 0Xa Ends With `2esn`)"), - octest_legacy:ct_string("Start `1esn`=Node:usn2({12}) ,usn1=Node:`7esn`(`3esn`={``})Where {usn2} Foreach(_usn3 In (_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})<-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :`3esn`:@usn5)<-[? *..999]-(#usn8 :`5esn`{#usn8:0xabc[.e0]})[Shortestpath(({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[`6esn`? *0..]-(:usn1{`3esn`:{123456789} Is Null Is Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))..Allshortestpaths((_usn4 :#usn7)<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]}))]| Delete `4esn`[$999..{`1esn`}][{@usn6}.._usn3] Create #usn8=Shortestpath(((`5esn` )-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(@usn6 {`3esn`:{``} Is Not Null})<-[`1esn` *0Xa{_usn3:Null Ends With `2esn` Ends With $usn1,#usn8:.e12 Is Not Null Is Not Null}]->(usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})))) Union All Start usn2=Rel:usn2({`4esn`}) Where $usn1 In {999} In $#usn7"), - octest_legacy:ct_string("Match `7esn`=Shortestpath(((({#usn7:2.12 Contains usn2 Contains True})-[_usn3?:`6esn`|`5esn` *0X0123456789ABCDEF]-(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})))),`5esn`=((:@usn5)-[:#usn7{`2esn`:.e12 Ends With _usn4}]-(usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)) Using Scan #usn7:`2esn` Where $999 Merge Shortestpath(({`1esn`:0.12[$`3esn`..$_usn3][12.0..usn1]})<-[{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}]->(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`6esn`?:`3esn`|:#usn8{usn1:$usn1 In {999} In $#usn7}]-({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})) On Create Set `8esn`+=[9e1[..$`2esn`]][{`8esn`:False =~$7 =~2.12,`3esn`:Count ( * ) =~$usn2 =~$usn2}][Case {``} Is Null When 2.12 Then $123456789 Ends With {`1esn`} Ends With $`4esn` End] On Create Set None(`1esn` In {`6esn`}[..$@usn6][..`7esn`]).@usn5? =12.0 =~{`2esn`} =~{`1esn`},@usn6 =Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) Is Not Null Is Not Null Remove Filter(`5esn` In \"d_str\" Is Null Is Null Where `6esn`[..$@usn6]).usn2,Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {123456789} Is Null Is Null).`` Union All Remove Case When _usn3[$`8esn`] Then $0[..9e1] End.usn1?,[_usn3[_usn3..][12.e12..]].`8esn`!,None(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where False).`4esn`? Start `7esn`=Rel:_usn4(``={#usn7}) Start `6esn`=Relationship:`2esn`({0}) Where 0e0[..010] Union Start #usn7=Node:_usn4(#usn7=\"d_str\") "), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From False[..``] As usn1 Fieldterminator 's_str' Unwind {``}[010..][0xabc..] As `` Match (((usn2 {``:01[{@usn5}]})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})-[`6esn`? *0..]-(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12}))) Using Index _usn4:`8esn`(#usn7)"), - octest_legacy:ct_string("Unwind Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})] As #usn8 Return Distinct {123456789} =~`8esn` =~@usn5 As `5esn` Order By {`4esn`} In 1.0 Descending,`8esn`(Distinct $#usn7 Is Null) Ends With Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]) Ends With Shortestpath(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))) Descending Skip {`4esn`}[#usn7..$123456789][{7}..usn2] Delete 123.654 Is Not Null Union All Match (({`1esn`})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})<-[`3esn`:#usn7]-(:#usn8:#usn8{_usn4})) Using Index `3esn`:_usn3(`6esn`) Where `7esn`[..{usn1}] Start ``=Rel:#usn8(`5esn`=\"d_str\") ,`3esn`=Relationship:#usn7('s_str')"), - octest_legacy:ct_string("Detach Delete Shortestpath((((`7esn` {`5esn`:123.654 Contains $`4esn` Contains 1.0,`8esn`:123.654 =~$usn2 =~{999}})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[`2esn`?:`1esn` *00]->({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})))) In (usn2 :@usn5)-[?{`8esn`:{7} Is Null}]->(`` )<-[`3esn`?:`3esn`|:#usn8]-(`` :#usn8:#usn8) In (@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8}),Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`)[None(#usn8 In 7[..999][..{#usn8}] Where 0Xa[2.12])..][[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789]]..],$999 Delete $`8esn` In {`1esn`} In 12,Reduce(`4esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|False[..``]) Is Null Is Null,Reduce(`6esn`=@usn5 Is Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{12} Ends With 1.0 Ends With .e0)[Filter(_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null)..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`|`7esn`[..2.12][..00])] Union All Start `8esn`=Relationship:`4esn`(`1esn`={`2esn`}) With Distinct *,`1esn`(Distinct $1000[999]) =~Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) =~{`6esn`:'s_str'[00][{`5esn`}]},{_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] As `` Order By {0}[{`8esn`}..`4esn`] Desc,Case When Count ( * ) Contains 07 Then $`2esn` When 1.0 Is Null Is Null Then `7esn`[..2.12][..{usn1}] End Is Not Null Desc Limit $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Create Unique Allshortestpaths((:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 :usn1))"), - octest_legacy:ct_string("Remove {`4esn`:{`4esn`}[$123456789..][$#usn7..]}.`1esn` Foreach(_usn4 In (`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})-[:`6esn`|`5esn`{`8esn`:$0 Ends With 12.0}]->(`5esn` {`4esn`:7[$`2esn`..{`5esn`}],@usn6:{7} Is Null}) Contains Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) Contains Case 9e12 Is Not Null Is Not Null When 0[..usn2][..{@usn5}] Then 0e0 Ends With 1.e1 Ends With $`4esn` Else usn1 Is Null End| Optional Match (((`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[usn1?:@usn5*]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})-[#usn7:@usn5 *0X7..]->(`2esn` ))),Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))) Where `7esn` In {123456789} In `1esn`) Create Unique `3esn`=((`7esn` {`4esn`:{usn1} Ends With $0})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2})-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]-(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})),(:`4esn`{`7esn`:$0[..9e1],usn1:{_usn4} Ends With `6esn`})-[:@usn5{@usn5:{#usn7}[9e1..][{123456789}..],``:#usn7 Is Not Null Is Not Null}]->(`4esn` :`6esn`{_usn3:$123456789 Ends With `3esn` Ends With 123456789,`6esn`:0e0 Starts With 2.12 Starts With $12})-[`7esn` *..0x0]-(`2esn` :_usn4) Union With *,{12} Is Not Null As `7esn` Skip usn2 Is Not Null Where @usn6[$`3esn`..{`3esn`}] Create `3esn`=({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})<-[usn2?:@usn5{`4esn`:{`7esn`} Is Null,_usn4:$123456789 Ends With {`1esn`} Ends With $`4esn`}]->(`6esn` {`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null})-[usn1? *0X0123456789ABCDEF]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}),`4esn`=Allshortestpaths((((_usn3 )-[?{@usn6:0X7[`7esn`][123.654]}]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})))) Union Load Csv From {``} Starts With $`2esn` Starts With `1esn` As `` Create (({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})),`7esn`=Allshortestpaths((:`4esn`{`5esn`})<-[@usn6?:`5esn`]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})) Merge #usn8=((:`4esn`{`7esn`:$0[..9e1],usn1:{_usn4} Ends With `6esn`})-[`1esn`? *123456789..{_usn4:$@usn6 Ends With $_usn4 Ends With 0.12}]->(_usn4 :#usn7{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})) On Create Set Any(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12.0[123.654][Count(*)]).`4esn`? =(:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case When `6esn`[12..$usn2][{#usn8}..{usn2}] Then {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] When .e12[@usn5..#usn7][010..{usn1}] Then 0.12 =~$0 =~$0 End,`8esn` =All(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Contains (`5esn` :_usn4{`5esn`:07[..True][..9e12]})-[`8esn`?:`2esn`{@usn6:{12}[..0X7]}]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]})<-[_usn4{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00}) Contains [0.12[$`3esn`..$_usn3][12.0..usn1]],_usn4 =$#usn8 In 0Xa In `6esn`"), - octest_legacy:ct_string("Unwind {``} Is Not Null As `1esn` Start @usn5=Relationship:``(\"d_str\") "), - octest_legacy:ct_string("Create Unique `3esn`=Shortestpath((`3esn` :@usn5)<-[_usn4?:`` *0X0123456789ABCDEF{`5esn`:$123456789 Is Null Is Null,@usn6:{12} Ends With 1.0 Ends With .e0}]->({@usn5:{usn2}[.e0..$999]})) Union Optional Match Shortestpath(({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->(`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[:`3esn`|:#usn8 *1000..00{usn1:0[`7esn`..]}]-(usn1 :`3esn`:@usn5)),`4esn`=Allshortestpaths((:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})) Using Index ``:usn1(@usn5) Where 12.0 =~999 =~$_usn3 Delete {`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]} Starts With [False] Starts With Filter(#usn8 In 7[..999][..{#usn8}] Where $_usn3[.e0..$usn2]) Foreach(`8esn` In .e1 In 0Xa In #usn7| With Distinct #usn8 In $@usn6,1.e1[`8esn`][00] Where 0.e0 Starts With `2esn` Return Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})] As `4esn`,usn2 Is Null As `7esn`,Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn` As _usn3 Order By Count ( * ) =~$usn2 =~$usn2 Descending Limit {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains [1.0[0X7][{`5esn`}]]) Union All With Distinct {0} As `7esn`,1000[..$0][..True] Limit Case When @usn5 Is Null Then 2.12 Ends With $_usn3 Ends With `3esn` Else $1000 Is Null End[Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}])..None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa)][Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01|usn2 Is Null)..Case When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` End]"), - octest_legacy:ct_string("Unwind False Ends With `3esn` As `8esn` Union All Foreach(`4esn` In $#usn7 Is Not Null Is Not Null| With *,123.654 Is Not Null,Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..] As `7esn` Skip Case When 1.0 =~'s_str' =~{`2esn`} Then $`5esn` In $`6esn` When {`7esn`}[..{`4esn`}] Then {usn1} Ends With $0 End[All(`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"])..[Count ( * )[0.12...e1],1.0[00..],$``]][`4esn`(`4esn` Ends With 07 Ends With {`3esn`})..Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `1esn` =~\"d_str\"|9e12 Is Not Null Is Not Null)] Limit Single(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}])[Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] Where 00 Starts With 0xabc Optional Match _usn3=Shortestpath((:`3esn`:@usn5{`2esn`:{`3esn`}[..07][..{`5esn`}]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})),usn2=({@usn5:usn1 Is Not Null})<-[`3esn`:`6esn`|`5esn` *..12{usn1:0X0123456789ABCDEF Is Null Is Null}]-(:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})) Remove $999.``,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789].`5esn`?,(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})-[usn2?]-(:@usn5)<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->(`7esn` {`5esn`:123.654 Contains $`4esn` Contains 1.0,`8esn`:123.654 =~$usn2 =~{999}}).`5esn`? Union All Load Csv With Headers From 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] As #usn8 Fieldterminator 's_str' Detach Delete $#usn7 Contains 0x0 Contains 1000,{7}[..12e12][..Count ( * )],None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`3esn`} In 01)[Allshortestpaths((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null}))..{@usn6:.e0[..$`8esn`],`6esn`:12 Ends With 0x0 Ends With 0.e0}]"), - octest_legacy:ct_string("Create Unique _usn4=((@usn6 )<-[usn1?:`8esn` *..010]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})<-[?:`8esn` *..0x0{`2esn`:$`4esn`[Null..]}]->({#usn8:0xabc[.e0]})),Shortestpath(((`6esn` :`4esn`))) Remove {usn1:#usn7 Is Null Is Null,`5esn`:{`3esn`} In 0X7}.`8esn`! Create Shortestpath((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654}))"), - octest_legacy:ct_string("Remove Extract(#usn8 In {`5esn`}[.e1..``]|12e12 Ends With {usn1})._usn3! Union All Delete Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End[[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]]..Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})))],7[$`8esn`..123456789][$usn1..$usn1],.e0 Ends With 0.12 Union Return 123.654 Is Not Null Is Not Null As `8esn` Order By Count ( * ) Starts With 7 Starts With $123456789 Descending,01234567 Ends With .e12 Ends With $#usn7 Asc,$`6esn` =~1.e1 =~12 Asc"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From .e12 In None(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`2esn`} Is Not Null) In Reduce(`3esn`=01[{`2esn`}..{@usn6}][$`2esn`..0.0],`` In 123456789 Ends With 12.e12 Ends With $`7esn`|$_usn4[1.e1]['s_str']) As `1esn` Fieldterminator 's_str' Merge `1esn`=((:usn2{#usn8:$`5esn` In $`6esn`})<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})) Detach Delete {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]),[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12),$_usn4 Is Null Is Null"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From 0X0123456789ABCDEF[{_usn4}..00] As @usn5 Create Unique (:`1esn`{})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(:`6esn`$123456789) Remove Case When {usn2} =~12 Then `7esn`[..2.12][..00] When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null End.usn2?,[1000 =~@usn6 =~0x0,12.e12[7..$`6esn`],_usn4 Is Null Is Null].#usn7,[{_usn4} Is Not Null Is Not Null,{#usn7} Is Not Null Is Not Null,$usn1[.._usn4][..False]].`4esn`!"), - octest_legacy:ct_string("With Distinct {123456789} Contains $#usn8 As `3esn`,{7}[..12e12][..Count ( * )],$0[$`1esn`..07] Order By 0Xa[$123456789..123.654][.e12..0.e0] Asc,1000 In `7esn` In 9e12 Asc,Null[$#usn7] Asc Where 0X7 =~9e1 Union Optional Match `3esn`=({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True}),Shortestpath((:`8esn`:`7esn`)<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})) Using Index ``:_usn4(_usn4) Where {_usn3}[..\"d_str\"] Merge `6esn`=(@usn5 {`7esn`:$`6esn`[010..]})-[?:`8esn`{`3esn`:1.0 In Count(*)}]-(`4esn` :#usn7{``:$#usn7[@usn5..{1000}][1.e1..7]})-[`5esn`?:@usn5{`4esn`:0Xa =~Null =~$``}]->(:#usn7{usn2:{usn1} Ends With $0,#usn8:`5esn` Starts With $`2esn` Starts With $1000}) On Create Set `4esn`+=(`1esn` :#usn8:#usn8)-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})[..(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})][..`5esn`({12} Ends With 1.0 Ends With .e0)],Any(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`])._usn4! ={@usn6}[{999}..][00..] On Match Set _usn3+={_usn3}[12.e12],`3esn`+=@usn5 =~{`5esn`} =~`5esn`,#usn8 =[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*)) Union Return Distinct 010[Count(*)..12][$_usn3..{`8esn`}],Filter(_usn3 In {`3esn`}[`2esn`] Where False =~$7 =~2.12)[Case When .e12 Is Not Null Is Not Null Then `1esn` In .e0 In {`3esn`} When 7 Starts With {@usn6} Starts With $`` Then 0X0123456789ABCDEF =~1e1 =~{`4esn`} Else {`4esn`}[$123456789..][$#usn7..] End] As `5esn`,9e1[2.12] As _usn3 Load Csv From $123456789 Starts With {_usn4} Starts With $1000 As #usn8 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Load Csv With Headers From Reduce(`4esn`=01 Ends With 999 Ends With {`7esn`},`4esn` In $`3esn` Is Not Null|1.0[`3esn`..][9e0..]) Is Null Is Null As `3esn` Delete {#usn7} Is Not Null Is Not Null,None(`3esn` In {7} Is Null Where 0Xa[2.12]) Is Null Is Null,Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End[[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]]..Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})))] Union All Start `5esn`=Node:`6esn`(`8esn`='s_str') ,`7esn`=Rel:#usn8({_usn3})Where 0.e0 Starts With `2esn` Remove #usn8(Distinct $`4esn`[Null..],2.12 =~False).@usn5,[$`3esn` In $_usn4 In {_usn3},{1000} =~0 =~123.654].`3esn` Union All Unwind $`7esn` Is Null Is Null As _usn3 With *,{_usn4} =~$_usn4 As _usn4 Order By {12} =~#usn8 Asc,[00[$`7esn`],{usn1} In 2.12 In 1000,01 Ends With 999 Ends With {`7esn`}] Starts With Reduce(`6esn`=00[{`8esn`}..][{`8esn`}..],`5esn` In $999[0.0..]|`5esn`[{`4esn`}..`2esn`]) Asc,$1000 Is Null Is Null Descending Skip False[$usn1.._usn4][_usn4..{`3esn`}]"), - octest_legacy:ct_string("Return 2.12 Is Null,$_usn3 Ends With 0x0 Ends With 12.0 Order By {`3esn`} In $@usn5 In _usn4 Asc Limit [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789] Ends With None(`2esn` In `1esn` =~\"d_str\" Where False Starts With {`5esn`}) Start #usn8=Rel:usn1(\"d_str\") ,@usn6=Node:_usn3({@usn5}) Foreach(`7esn` In $`1esn` Starts With {`8esn`}| Start #usn8=Rel:`7esn`(`6esn`={_usn4}) Match @usn5=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})),(`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]}))"), - octest_legacy:ct_string("Create Unique @usn5=Allshortestpaths((:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})-[:#usn7 *..010]->(#usn8 :usn1)),`4esn`=Allshortestpaths((({usn1:`5esn`[_usn4..]})-[usn1?:_usn3|_usn3]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))) Create @usn5=Allshortestpaths((:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})-[:#usn7 *..010]->(#usn8 :usn1)),(((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`}))) Unwind {`5esn`}[0..`8esn`][0..Null] As usn1 Union Unwind $999 Is Not Null As `` Union All Optional Match ({usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null}) Using Join On `8esn`,@usn5 Using Scan `6esn`:`1esn` Where $#usn8[Count ( * )] With {123456789} Contains $#usn8 As `3esn`,{7}[..12e12][..Count ( * )],$0[$`1esn`..07] Order By {`8esn`}[..{`8esn`}][..$`3esn`] Descending,Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Desc Limit None(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {123456789}[0xabc..]) In (`4esn` {`6esn`:#usn8[..{#usn7}]})<-[_usn4 *..999]->({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[#usn8? *0..]->(#usn7 ) In Extract(`3esn` In {7} Is Null Where 1e1 Contains Count ( * )) Where $`3esn` In $`6esn` In $``"), - octest_legacy:ct_string("Return *,12[..$`4esn`],Case When 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] Then {1000} =~0 =~123.654 When `8esn`[`4esn`..{#usn8}][$12..2.12] Then 00[$`7esn`] End Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`7esn` =~{`8esn`} =~$usn1) Contains [0.12 =~`5esn` =~`5esn`] Order By {12} Contains {123456789} Contains `4esn` Desc,{_usn3:`4esn`[..Count ( * )][..{#usn7}]}[..{_usn4:`5esn`[.e0..][07..],`3esn`:{0} In $_usn3}][..Allshortestpaths(((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})))] Desc,`1esn` In .e0 In {`3esn`} Descending Limit 7 Contains @usn6 Union Start `2esn`=Relationship:`4esn`(`1esn`={`2esn`}) ,`3esn`=Rel:``({`1esn`})Where `4esn` Is Not Null Is Not Null Start usn2=Relationship:`3esn`({`1esn`}) Where `1esn`[..{@usn6}][..$123456789] Foreach(`3esn` In .e1 In 0| Load Csv From {_usn4} Starts With 0.e0 Starts With 0x0 As `8esn` Fieldterminator 's_str' Start `1esn`=Node( {_usn4}) ,`6esn`=Relationship:`4esn`(`1esn`={`2esn`})Where {_usn3}[..\"d_str\"])"), - octest_legacy:ct_string("Return 1000 In `7esn` In 9e12 As `6esn`,$12 Starts With {`1esn`} Starts With Null Skip .e12[@usn5..$12] Limit (`` :_usn4{_usn4:False[..``],usn2:9e1[1000][{123456789}]})<-[:`5esn`{@usn6:$#usn8 Ends With $`2esn` Ends With $@usn6,`6esn`:{7}[..12e12][..Count ( * )]}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]->({@usn6:$usn1 Ends With $`` Ends With $12}) Starts With `3esn`($123456789 Is Null Is Null,0Xa[usn2..]) Starts With (@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(@usn5 {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]->(#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12}) Return Distinct *,`6esn`[2.12..01][{``}..False] As @usn5,Reduce(`5esn`=$`5esn`[{`3esn`}],`3esn` In {7} Is Null|`6esn`[12..$usn2][{#usn8}..{usn2}]) In @usn5(Distinct _usn4 Starts With $_usn4 Starts With 12.e12) In None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Count ( * ) Ends With 12.0) Order By `4esn`[..Count ( * )][..{#usn7}] Ascending Create Unique `1esn`=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})<-[{`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}]->({`7esn`:7[{0}..{_usn4}]})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-({#usn8:0xabc[.e0]}))))"), - octest_legacy:ct_string("Foreach(_usn4 In $999 In $_usn3 In {`5esn`}| Load Csv From {999}[1000..{usn2}] As @usn6 ) Start _usn4=Node:usn2(`8esn`='s_str') Where `7esn`[9e0..] Foreach(`1esn` In 07 Is Not Null Is Not Null| Remove (_usn4 {usn1:True Contains {0} Contains 7})-[`3esn`:#usn7]-(`2esn` :_usn3:_usn3).@usn6)"), - octest_legacy:ct_string("Return *,`4esn`[`5esn`..12][@usn6..False],None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As `5esn` Order By {0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]] Ascending,.e1 =~{@usn6} =~Null Asc,(:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case `8esn` Contains $usn1 Contains $12 When 12.e12[7..$`6esn`] Then {12} Contains {123456789} Contains `4esn` When $`1esn`[1.0..][_usn3..] Then `7esn`[$0][9e12] End Desc Skip 123.654[`3esn`..] Limit `7esn`[$12..][$`8esn`..] Load Csv From 123.654[...e0] As usn2 Union All Create Unique `1esn`=(`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})<-[`2esn`?:`7esn` *0X7..]-(:_usn4)<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]}),usn1=((({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[{``:12.e12[$_usn3..],_usn3:$`6esn`[010..]}]->(@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null}))) With Distinct 12 Ends With $usn2 As #usn8,$`3esn` In Null As @usn6 Order By 9e1 In 2.12 Asc,True[{`7esn`}..] Asc,{`2esn`}[``..07][0x0..1000] Desc Skip [@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null] Is Null Is Null Where Null Ends With {`5esn`} Ends With 0.e0 Union All Start #usn7=Node:``(\"d_str\") ,`3esn`=Rel:`7esn`(`3esn`='s_str')Where 9e0 Start `7esn`=Node:_usn4(#usn7=\"d_str\") ,`5esn`=Rel:`4esn`(`2esn`=\"d_str\") Unwind $#usn8[$`8esn`..{`8esn`}] As `6esn`"), - octest_legacy:ct_string("Unwind 12.e12[..Null][..$#usn8] As usn1 Remove Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]).@usn6!,{`6esn`:Count(*) Ends With 12.0 Ends With 12}.`2esn`?,Reduce(`8esn`='s_str' Ends With 7 Ends With {_usn4},#usn7 In `2esn`[..$#usn8][..Count(*)]|$123456789 Ends With `3esn` Ends With 123456789).#usn7 Union All Foreach(#usn8 In [_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null|999 Is Not Null Is Not Null] Ends With [`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null|{`5esn`} Starts With $`5esn` Starts With .e1] Ends With {``:usn1 Starts With usn1 Starts With $``}| Match `7esn`=Allshortestpaths((((`6esn` {`7esn`:$`6esn`[010..]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-({`1esn`:`3esn`[{`2esn`}]})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})))),@usn6=Allshortestpaths((`1esn` :`5esn`{`5esn`:{``} Is Null})-[:@usn6|`6esn`{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}]->(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[`2esn`?:`2esn`]->(`7esn` {``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})) Using Join On `6esn` Using Index `4esn`:`3esn`(#usn8) Where 123456789 Ends With $`6esn` Ends With $#usn7 Match usn2=(`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[@usn5?:`3esn`|:#usn8{_usn4:{999}}]->(:#usn8:#usn8{``:1.0[0e0..0.e0]})) Foreach(usn1 In Case 01[{`2esn`}..{@usn6}][$`2esn`..0.0] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] When 12e12[$`3esn`] Then {`5esn`} Contains $0 Contains {``} Else usn1 Starts With usn1 Starts With $`` End[usn2(Distinct 0.12 In _usn3 In {0},@usn6 Is Null Is Null).._usn4(0.e0 Starts With 12.e12 Starts With {_usn4},0X0123456789ABCDEF Is Null Is Null)][[{7}[$``][{@usn6}],0.0 Ends With 010 Ends With 1.e1]..$`4esn`]| Start `7esn`=Node:`7esn`(_usn4={@usn6}) ) Foreach(#usn8 In $`7esn` Is Not Null| Create #usn7=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}),@usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})) Create `3esn`=Allshortestpaths(((:usn1{_usn4})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}))))"), - octest_legacy:ct_string("Create Unique `6esn`=(({``})<-[`5esn`{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(usn2 {#usn7:2.12 =~Count(*),_usn4:$usn2[9e0]})),`1esn`=((:usn2{#usn8:$`5esn` In $`6esn`})<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})) Return Distinct (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As ``,12[..$`4esn`] As `7esn` Order By 01234567[usn2..$12][{`7esn`}..$usn2] Asc Skip .e12[..`7esn`][..0Xa]"), - octest_legacy:ct_string("Return Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains Extract(`5esn` In \"d_str\" Is Null Is Null Where Null Ends With `2esn` Ends With $usn1|$#usn7[@usn5..{1000}][1.e1..7]),$1000 Is Not Null,$@usn5 Is Not Null Order By {`4esn`} =~{7} =~{`7esn`} Ascending Foreach(@usn5 In $_usn4[1.e1]['s_str']| Delete $12[$1000..123456789] With Distinct *,Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))) As _usn3 Order By 1.e1[$`1esn`..@usn6][$0..$_usn3] Asc,Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Is Not Null Is Not Null Asc Skip [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789] =~Reduce(_usn3=$``,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{#usn8} Is Null) =~Case {``} Is Null When 2.12 Then $123456789 Ends With {`1esn`} Ends With $`4esn` End Limit {usn1} Ends With $0) Create Unique Allshortestpaths((:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 :usn1)) Union All Start #usn8=Relationship:`4esn`(_usn4={`2esn`}) Create Unique ((:`3esn`:@usn5$7)),((_usn4 {usn1:True Contains {0} Contains 7})) Union All Start #usn7=Rel:@usn6(`7esn`={`8esn`}) ,`3esn`=Node:@usn6('s_str')Where 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Unwind 0Xa[9e1..][$`6esn`..] As `8esn`"), - octest_legacy:ct_string("With Distinct *,2.12[$`5esn`][$#usn8] As #usn8 Order By Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0)[..Case When 01234567[usn2..$12][{`7esn`}..$usn2] Then usn1[`5esn`..$7] Else $1000[0Xa][{#usn7}] End][..Reduce(@usn6=07 Contains 0X7 Contains $`8esn`,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|{#usn7}[9e1..][{123456789}..])] Descending,(:usn2{usn2:7[..999][..{#usn8}]})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})<-[:`4esn` *..010{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]->(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}) Desc,{usn2} Starts With $`8esn` Starts With Count ( * ) Ascending Skip 2.12[$`5esn`][$#usn8] Where 1e1 In \"d_str\" In `7esn` Optional Match ({`3esn`:usn1 Is Null Is Null})-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]-({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`4esn` {@usn6:{12}[..0X7]}) Using Join On _usn3,@usn5 Union Merge usn1=(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})-[_usn4? *..01]-(_usn4 :usn2{usn1:7[True..][2.12..],`8esn`:2.12 Ends With $_usn3 Ends With `3esn`})-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]-({`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}) Merge Shortestpath(((:#usn8:#usn8)-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12}))) On Match Set `5esn` =All(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`2esn`} Is Not Null)[Filter(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`4esn`} Starts With $usn2 Starts With $1000)..Reduce(`8esn`={`2esn`} Is Not Null Is Not Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{usn1} Ends With $0)][Allshortestpaths(((`1esn` )))..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] On Match Set `7esn` =`4esn`[..010][..{12}],@usn5+=0X7[$999][_usn4],@usn5 =0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn` Union Unwind ({`7esn`:7[{0}..{_usn4}]})-[`` *..12]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})-[:`2esn`*..{`1esn`}]-(usn2 :`5esn`{`7esn`:01234567 Is Null Is Null}) =~Reduce(#usn8=$_usn4[0e0..][False..],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|#usn8[#usn8..]) =~Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) As _usn3 Remove [2.12 Is Null,{`5esn`} =~`4esn` =~{_usn4}].`7esn`! Create Unique ((:`1esn`)),`2esn`=((@usn6 :_usn4))"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 2.12 Ends With $_usn3 Ends With `3esn`|{123456789} Contains $#usn8)[{`7esn`:$`6esn`[010..]}..] As @usn5 "), - octest_legacy:ct_string("Detach Delete $`4esn` In Null In 0xabc,{0} In _usn4 Union All Remove ``:`1esn`,[#usn7 In {``} Is Not Null Where {0}[01][`7esn`]|0e0 Starts With 1000 Starts With #usn7].#usn7,{usn1:`1esn` Contains {usn2} Contains $#usn8}._usn3? Union Unwind $#usn8[$`2esn`..][{`2esn`}..] As `5esn` Foreach(`4esn` In 1000[0X7..2.12]| Remove ({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)._usn4?) Start _usn4=Node:usn2(`8esn`='s_str') ,#usn7=Node:usn2({12})Where $`3esn` Is Not Null"), - octest_legacy:ct_string("With (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As ``,12[..$`4esn`] As `7esn` Skip Allshortestpaths((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3))[Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})))] Where 0.12 =~$0 =~$0 Union All Merge `7esn`=((`7esn` :``:#usn8)) On Create Set _usn3:`7esn`:_usn3,`8esn` ={1000}[$999...e12][`7esn`..'s_str'] On Create Set Case When $`1esn`[{`2esn`}..] Then .e1 =~$`8esn` End.`7esn`? =All(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0[{usn2}..][$`6esn`..])[[{0}[12.0..0Xa][$`5esn`..{_usn3}],$`6esn`[12],.e12[@usn5..#usn7][010..{usn1}]]..],`3esn` =$`2esn` Is Null Is Null With [1.0 =~'s_str' =~{`2esn`}] Contains [9e1[2.12],{usn2}[$`3esn`..][{#usn7}..],Null Ends With {`5esn`} Ends With 0.e0] Contains `5esn` As `8esn`,[`` Ends With 0Xa Ends With `2esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},{`4esn`} =~{7} =~{`7esn`}] As @usn6 Skip {7}[$`5esn`][{_usn3}] Where {7}[..1.0][..9e0] Union Remove @usn6:usn2 Start `6esn`=Relationship:usn2(#usn8=\"d_str\") ,`7esn`=Rel:#usn8({_usn3})"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From {`3esn`} In $@usn5 In _usn4 As _usn3 Match (({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}]->({`7esn`:7[{0}..{_usn4}]})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(usn2 {``:01[{@usn5}]})),(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``}) Foreach(`1esn` In True =~{`5esn`}| Return *,$_usn3 =~0.12 =~{#usn8},9e0 Is Not Null Is Not Null Skip {usn2} Starts With $`8esn` Starts With Count ( * ) Limit $@usn5 Starts With $1000 Detach Delete {0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]],$`7esn`['s_str'],Reduce(`1esn`={`8esn`} Ends With `6esn`,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|1e1 In 123.654 In `3esn`)[[#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]]])"), - octest_legacy:ct_string("Remove (usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[usn1?:`8esn` *..010]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}).usn2! Union All Start `3esn`=Relationship:#usn7('s_str') ,#usn7=Rel:_usn3({@usn5}) With #usn8 In $@usn6,1.e1[`8esn`][00] Skip 01 Ends With 999 Ends With {`7esn`} Where 123456789 Ends With $`6esn` Ends With $#usn7 Union Foreach(_usn3 In 00[{`8esn`}..][{`8esn`}..]| Load Csv From {1000}[$`4esn`][\"d_str\"] As `8esn` Fieldterminator \"d_str\")"), - octest_legacy:ct_string("Delete 2.12 Ends With $_usn3 Ends With `3esn`,usn1 Ends With $@usn6 Ends With `3esn`"), - octest_legacy:ct_string("Return All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By (`` :#usn7)<-[`1esn`?:usn1|@usn6 *0..]-(:#usn8:#usn8{@usn6:$_usn3[..1000]})[[`4esn`[..010][..{12}],0.e0 Starts With `2esn`,1000[..$0][..True]]..] Desc,0Xa =~Null =~$`` Ascending,Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12) Ends With Single(_usn3 In {`3esn`}[`2esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12]) Desc Limit Reduce(``={999},#usn8 In {`5esn`}[.e1..``]|$_usn3['s_str'][07])[..{`4esn`:0.0[$0][{@usn5}]}][..Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..])] Union All Remove Case When {usn2} =~12 Then `7esn`[..2.12][..00] When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null End.usn2?,[1000 =~@usn6 =~0x0,12.e12[7..$`6esn`],_usn4 Is Null Is Null].#usn7,[{_usn4} Is Not Null Is Not Null,{#usn7} Is Not Null Is Not Null,$usn1[.._usn4][..False]].`4esn`! Foreach(usn1 In None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {@usn6}[{999}..][00..]) Ends With Shortestpath((`6esn` {_usn4:0Xa =~Null =~$``})<-[``? *0X7..]->(`` :`1esn`)) Ends With Reduce(_usn3={7}[..1.0][..9e0],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|`1esn` Contains {usn2} Contains $#usn8)| With Distinct *,{``}[`8esn`..],Case {`3esn`}[@usn6..0Xa][{12}..0Xa] When {usn1}[0X0123456789ABCDEF] Then 0x0 Ends With $12 When 0e0 Starts With `2esn` Starts With $`` Then {123456789}[9e12][{0}] Else 0X7[1000..{`1esn`}] End[..({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})] As #usn7 Order By False Contains {`6esn`} Ascending,{`1esn`}[usn1][.e1] Asc Where `7esn`[..2.12][..{usn1}] Remove exists($123456789[_usn3][{#usn7}]).`6esn`?,count(Distinct $999 Is Not Null).`8esn`!,Case When $`5esn` In $`6esn` Then $`6esn` Ends With Count(*) When 0X7[`7esn`][123.654] Then 0X0123456789ABCDEF[{_usn4}..00] Else $@usn5 Is Not Null End.usn2) Union All Create #usn7=(`4esn` :#usn7),(({`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})<-[usn2?:#usn7]-(@usn6 :@usn5{usn2:$`5esn`[..$`5esn`][..$12]})) Match `8esn`=(((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) Using Join On `8esn`,@usn5 Where 123456789[0xabc..'s_str'][``..`1esn`]"), - octest_legacy:ct_string("Load Csv From Shortestpath(({`7esn`:\"d_str\" Starts With $123456789})<-[`4esn`:``{usn1:`` Is Not Null Is Not Null,usn1:{1000}[{_usn3}..]}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[`4esn`]->(:`6esn`$123456789)) Is Null As `7esn` "), - octest_legacy:ct_string("Create `8esn`=Allshortestpaths(((:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))),`2esn`=((`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(_usn3 :#usn7)<-[@usn5?]->(`1esn` :`5esn`{`5esn`:{``} Is Null})) Union All Create Shortestpath(((:@usn6:#usn8{`4esn`:{`7esn`} Is Null,_usn4:$123456789 Ends With {`1esn`} Ends With $`4esn`}))) Foreach(`4esn` In $1000[`2esn`..`5esn`][1e1..1.e1]| Start `6esn`=Rel:#usn8(@usn6={_usn4}) ,`5esn`=Relationship:@usn5(\"d_str\")) Union All Unwind Extract(`5esn` In \"d_str\" Is Null Is Null)[Any(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``)][Case $`7esn` Is Null Is Null When {#usn7}[9e1..][{123456789}..] Then False =~1e1 =~0.e0 Else 1000 In {`8esn`} In 01 End] As `2esn` Create Unique @usn6=Allshortestpaths((`6esn` :`8esn`:`7esn`)<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})),``=((`5esn` :_usn4{7})-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})) Create Unique ((`4esn` {``:{#usn8}[010],usn1:{``} Starts With $`2esn` Starts With `1esn`}))"), - octest_legacy:ct_string("Start `3esn`=Rel:`7esn`(`3esn`='s_str') ,``=Node:#usn8(`8esn`={`6esn`})Where usn1 Is Null Create Unique ((:_usn4)) Union Start _usn4=Node:`3esn`(`2esn`={usn1}) ,`6esn`=Node:``('s_str') Load Csv With Headers From $@usn6 Ends With $_usn4 Ends With 0.12 As `4esn` Start `8esn`=Relationship:`4esn`(`1esn`={`2esn`}) "), - octest_legacy:ct_string("Load Csv With Headers From 01234567 Is Null Is Null As #usn7 Fieldterminator 's_str' Merge _usn3=Allshortestpaths((({_usn3:.e12[@usn5..$12]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]}))) On Create Set `3esn` =0.0[Null][$`2esn`] Create Unique usn2=(`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[@usn5?:`3esn`|:#usn8{_usn4:{999}}]->(:#usn8:#usn8{``:1.0[0e0..0.e0]}),#usn8=((`3esn` {`8esn`:\"d_str\" Contains {123456789} Contains 01,@usn5:`1esn` In .e0 In {`3esn`}})-[#usn7?:`3esn`|:#usn8]->(`2esn` :usn1)-[ *..999{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(@usn5 {_usn3:`1esn` Contains {usn2} Contains $#usn8}))"), - octest_legacy:ct_string("Detach Delete $`3esn` In $`6esn` In $``,\"d_str\" =~{usn1} =~{`7esn`} Remove Single(#usn8 In 7[..999][..{#usn8}] Where $_usn4[1.e1]['s_str']).``,Case When $#usn8 Ends With $`2esn` Ends With $@usn6 Then $1000[`2esn`..`5esn`][1e1..1.e1] Else {`4esn`} =~{7} =~{`7esn`} End._usn3? With *,$#usn7 Starts With {7} Starts With 1.0,Extract(`8esn` In 01[2.12..`8esn`] Where {usn2}|$0[12.e12..]) =~Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null|7 Ends With $`4esn`) =~(usn1 {`2esn`})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->(:_usn3:_usn3{`4esn`:12e12 Ends With {usn1}})<-[`7esn`?:`8esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}) As usn2 Order By {#usn8} Starts With 00 Starts With {`6esn`} Descending,$123456789 Ends With $999 Ends With {999} Desc Skip $#usn8[..{`2esn`}][..1.0] Union All Detach Delete {`4esn`}[..'s_str'][..$12],(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(`5esn` :@usn5{`8esn`:{usn2} =~12})[All(`` In `` Is Not Null Is Not Null Where `3esn`[{0}][usn1])],`2esn`(Distinct $``,7 Starts With {@usn6} Starts With $``) Contains {@usn6:_usn3[$`8esn`],usn1:$@usn5 Is Not Null} Contains {@usn5:`8esn`[{123456789}..]} Start usn2=Node:`6esn`(usn2={`8esn`}) ,@usn5=Node:`6esn`(\"d_str\")Where {0}[@usn6..$1000]"), - octest_legacy:ct_string("Foreach(_usn4 In {@usn6} Ends With 's_str' Ends With 12.0| Return `6esn`[2.12..01][{``}..False] As @usn5 Skip 1.0[$`1esn`..][$123456789..] Limit Allshortestpaths((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3))[{_usn3:01[{@usn5}]}..Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where True In 0e0)][Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0.12 In _usn3 In {0})..None(`3esn` In {7} Is Null Where 0Xa[2.12])] Delete Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With Reduce(`1esn`=0.12 Starts With $`5esn` Starts With 12,_usn3 In {`3esn`}[`2esn`]|$12[True..][{0}..]) Starts With Reduce(usn2=Null Ends With {`5esn`} Ends With 0.e0,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{`6esn`})) Return Distinct (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As ``,12[..$`4esn`] As `7esn` Skip Allshortestpaths((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3))[Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})))] Union Detach Delete [`` Ends With 0Xa Ends With `2esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},{`4esn`} =~{7} =~{`7esn`}],Reduce(`4esn`=01 Ends With 999 Ends With {`7esn`},`4esn` In $`3esn` Is Not Null|1.0[`3esn`..][9e0..]) Is Null Is Null,$_usn3 In {1000} In 0.12 Detach Delete {1000}[$999...e12][`7esn`..'s_str'],12.e12 Is Not Null Is Not Null,$#usn8 Ends With $`2esn` Ends With $@usn6 Create `3esn`=Allshortestpaths(((:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null}))) Union All Detach Delete 0.0 =~0 =~`6esn`,@usn5 In $7,{`7esn`}[..$@usn5][..$#usn8] Return `6esn`(Distinct 2.12 Ends With $_usn3 Ends With `3esn`) Is Null,`8esn`[$#usn7..123456789],All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By Single(#usn8 In {`5esn`}[.e1..``] Where 123.654[$`1esn`]) Is Not Null Is Not Null Descending,_usn4(Distinct _usn3[_usn3..][12.e12..])[[0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},0Xa Starts With {`6esn`} Starts With $usn1]] Desc,1e1 In \"d_str\" In `7esn` Descending Skip [`` Ends With 0Xa Ends With `2esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},{`4esn`} =~{7} =~{`7esn`}] Remove [{12} Contains {123456789} Contains `4esn`,1.e1[`8esn`][00],1.0[$`1esn`..][$123456789..]]._usn4?,Reduce(_usn3=123456789[#usn8..False],_usn3 In {`3esn`}[`2esn`]|123.654 Contains $`4esn` Contains 1.0).#usn8?"), - octest_legacy:ct_string("Start `5esn`=Rel:`2esn`({`1esn`}) ,`4esn`=Relationship:`6esn`(`3esn`=\"d_str\")Where {1000} =~0 =~123.654 Create Unique `6esn`=((`8esn` :#usn8:#usn8{`3esn`:$`4esn`[9e12..123.654]})),((:`4esn`{``:2.12 Is Not Null Is Not Null})-[usn1? *1000..00]->(#usn7 :@usn5{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})) Foreach(`8esn` In True Contains {0} Contains 7| Start ``=Relationship:usn2('s_str') ,`1esn`=Rel:`4esn`(`4esn`='s_str') Delete Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0) Is Not Null Is Not Null) Union Merge `3esn`=Shortestpath(((:usn1{usn1:{`6esn`}})-[@usn6?:`3esn`|:#usn8 *123456789..]->(:_usn3:_usn3{`7esn`:$`1esn` =~0X7})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``}))) On Match Set [1.0 Is Null Is Null,0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`].usn2? =12.0 On Create Set Filter(usn1 In @usn5 =~{`5esn`} =~`5esn` Where @usn6 Contains Null Contains $`7esn`).`4esn` =00 Starts With 0xabc Remove ({usn1:`5esn`[_usn4..]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[?:`8esn`{`3esn`:1.0 In Count(*)}]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})._usn4,Filter(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {_usn4}[...e1][..$7]).`6esn`! Foreach(`7esn` In 999[..$`5esn`][..12.0]| Return Distinct Single(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}])[Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] Skip 0Xa[..{`4esn`}][..12.0] Limit (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})<-[{`8esn`:07 In `2esn` In 12e12}]-(`3esn` :@usn5)-[?:`5esn`]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}) Is Not Null Is Not Null Return Distinct $12 =~$_usn3 As #usn8,`7esn` Ends With 0x0 As @usn6,$1000 =~$`2esn` As `7esn` Skip All(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`2esn`} Is Not Null)[Filter(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`4esn`} Starts With $usn2 Starts With $1000)..Reduce(`8esn`={`2esn`} Is Not Null Is Not Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{usn1} Ends With $0)][Allshortestpaths(((`1esn` )))..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End]) Union All Unwind .e0[..$`8esn`] As usn2 Load Csv With Headers From 0e0 Starts With `2esn` Starts With $`` As `3esn` Fieldterminator \"d_str\""), - octest_legacy:ct_string("With Distinct .e1 =~$usn2 =~999 As `2esn`,Allshortestpaths(((`7esn` {`2esn`:$`6esn`[123456789..12][True..{`3esn`}],#usn7:$_usn3[Count(*)]})-[#usn8? *..07$_usn4]->(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}))) Is Not Null Is Not Null As `8esn` Skip Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where `5esn` Starts With $`2esn` Starts With $1000) Ends With Reduce(``=0.12 =~$0 =~$0,`2esn` In `1esn` =~\"d_str\"|9e12[`1esn`..][$`1esn`..]) Limit 9e0 Starts With 01 Where 's_str'[00][{`5esn`}] Union Delete 7[..999][..{#usn8}],`1esn`[{usn1}..``][7..$#usn8] Unwind Case When {_usn4} Starts With 0.e0 Starts With 0x0 Then 12 Ends With 0x0 Ends With 0.e0 Else $1000 Is Null Is Null End Starts With `7esn`(Distinct $#usn7[..{`5esn`}][..9e12]) Starts With {`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`} As usn1 Union All Return *,Case When False Then 0.e0 Ends With $#usn7 Ends With $7 When {@usn6}[{999}..][00..] Then `5esn` Ends With {``} Ends With 12.e12 Else 123.654[$`1esn`] End[Reduce(#usn8=$`6esn` Ends With Count(*),`2esn` In `1esn` =~\"d_str\"|_usn4 Contains 2.12)..] As _usn3 Order By $12[Null..Count(*)][{`5esn`}..{999}] Desc,12.e12[7..$`6esn`] Desc Skip {`4esn`} Ends With {123456789} Ends With $`4esn` Create usn2=Allshortestpaths(((:@usn6:#usn8{`4esn`:$`8esn`[..00]})<-[_usn4?:_usn4|:usn2 *00]->(:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))),#usn8=(((`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})-[@usn5]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))"), - octest_legacy:ct_string("With Distinct [01[2.12..`8esn`],{7} In `2esn`,123456789 Ends With $`6esn` Ends With $#usn7] Starts With Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With `7esn`(Distinct {_usn4} Ends With `6esn`,{@usn6}[7]),$1000 =~$`2esn` As `6esn` Union Start `3esn`=Node:@usn6('s_str') ,`7esn`=Node:`4esn`(usn1=\"d_str\") Union All Merge usn2=((@usn6 :_usn4)) On Create Set `` =Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End,Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where 01[2.12..`8esn`]).`5esn` =Shortestpath(((:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]-(:`5esn`{``:1.0[0e0..0.e0]})<-[``? *..0x0{#usn7:False =~$7 =~2.12}]->(`3esn` :usn2)))[['s_str' In 00,{@usn6}[$`6esn`..`4esn`]]..][Case @usn6 Starts With `6esn` Starts With $`1esn` When {`3esn`}[`2esn`] Then Null In $7 In .e1 When {0}[@usn6..$1000] Then 12.0 Contains #usn7 End..] On Create Set _usn3+=$`3esn` Is Not Null Is Not Null,`3esn` ={`4esn`} Ends With {usn2} Ends With {999},{@usn6:{999} Starts With $999,`4esn`:$usn1[{`5esn`}][$`6esn`]}.@usn5? =$usn1[..{`6esn`}]"), - octest_legacy:ct_string("Return Distinct @usn6 Contains $1000 Contains {`7esn`} Unwind `5esn` Ends With {``} Ends With 12.e12 As `1esn`"), - octest_legacy:ct_string("Load Csv From `5esn`[..Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`])] As _usn4 "), - octest_legacy:ct_string("With $123456789 In $#usn7 In `4esn` As `4esn` Order By $`3esn` Is Null Is Null Desc Skip {`1esn`}[{123456789}][{0}] Limit {`2esn`}[$`8esn`][$12] Where {12} Is Null Is Null"), - octest_legacy:ct_string("Create `1esn`=Allshortestpaths(((({#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[`4esn`]->(:`6esn`$123456789)))) Union Remove [0.12 =~$0 =~$0,2.12 Contains usn2 Contains True,2.12].`4esn` Union All Load Csv With Headers From 0Xa Starts With {`6esn`} Starts With $usn1 As `` Load Csv From {_usn4} Is Not Null Is Not Null As usn2 "), - octest_legacy:ct_string("Using Periodic Commit Load Csv From [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789] Ends With None(`2esn` In `1esn` =~\"d_str\" Where False Starts With {`5esn`}) As `4esn` Fieldterminator \"d_str\" Optional Match _usn3=(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})-[`8esn`?:#usn8|`1esn` *1000..00]->(:_usn4$@usn5)-[`7esn`:``{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2}]->({_usn4:00 Starts With 0xabc}))) Using Join On `8esn`,``"), - octest_legacy:ct_string("Start @usn5=Relationship(*) Create Unique `8esn`=({@usn5:07[..True][..9e12]})<-[? *1000..00]->(#usn8 {#usn7:`4esn` Ends With 07 Ends With {`3esn`},`3esn`:{0} In $_usn3})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Load Csv With Headers From $_usn4 In usn1 In $7 As `2esn` Fieldterminator 's_str' Union Unwind {1000} =~0 =~123.654 As `3esn` Create Unique ``=(:`3esn`:@usn5{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`4esn` {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}) Return Distinct `5esn`[.e0..][07..] As `7esn` Skip All(`4esn` In $`3esn` Is Not Null Where {123456789} Is Not Null) Limit {1000} =~0 =~123.654 Union All Create Shortestpath((((:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[`2esn`?{`3esn`:{123456789} Is Null Is Null}]->(usn2 :#usn7)<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) With @usn6[$`3esn`..{`3esn`}] As `3esn`,`6esn`() In {#usn7:0X0123456789ABCDEF =~1e1 =~{`4esn`},`2esn`:1.0 =~'s_str' =~{`2esn`}} In usn1() Skip $`4esn` Is Null Is Null Unwind All(`3esn` In {7} Is Null Where Count ( * ) Contains 07) Is Null Is Null As `2esn`"), - octest_legacy:ct_string("Merge usn2=((:`1esn`{})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})) On Match Set Reduce(usn1=.e1 Ends With 1e1 Ends With @usn5,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$#usn7[#usn7..]).``! ={123456789} =~`8esn` =~@usn5 On Create Set @usn6+={0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]],{`8esn`:{_usn4} Starts With 0.e0 Starts With 0x0}.@usn5! =`4esn`[`5esn`..123456789][0..$12] Union Start `6esn`=Node:`8esn`(\"d_str\") ,`6esn`=Relationship:`4esn`(`1esn`={`2esn`})Where {usn2}[.e0..$999] Create `5esn`=((`` :`2esn`:usn1)<-[usn2?:``]-(usn2 :``:#usn8)<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})) Load Csv From usn2(Distinct Null In $7 In .e1,`1esn` Contains {usn2} Contains $#usn8) In All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7) In Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 2.12 Ends With $_usn3 Ends With `3esn`|{123456789} Contains $#usn8) As `5esn` Fieldterminator 's_str' Union Foreach(`6esn` In {`4esn`} Starts With 1e1| Create Unique (:`6esn`{_usn4:$`5esn` Starts With $0 Starts With {0}})<-[`1esn` *0Xa{_usn3:Null Ends With `2esn` Ends With $usn1,#usn8:.e12 Is Not Null Is Not Null}]->(usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]}),(`4esn` {`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}})<-[``?]->(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})) With Distinct {12} Ends With Count ( * ) Ends With .e12 As `8esn` Skip 12 Ends With 0x0 Ends With 0.e0 Limit Case When `4esn`[`5esn`..12][@usn6..False] Then $123456789 Ends With $999 Ends With {999} When $123456789 Ends With $999 Ends With {999} Then False Is Null Is Null Else 7[True..][2.12..] End Starts With [`8esn` Ends With 999 Ends With .e12] Starts With (`5esn` :`4esn`)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null})<-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]-(`7esn` :`5esn`{`3esn`:`7esn` Is Null}) Foreach(`5esn` In usn2[{7}]| Return Distinct *,(:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8)[Reduce(`7esn`=7[$`2esn`..{`5esn`}],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$_usn4[0e0..][False..])..({``:00 Starts With 0xabc,`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})][{}..{@usn6:`4esn`[..010][..{12}]}],(:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[`6esn` *0Xa{_usn3}]-({@usn5:usn1 Is Not Null})-[:`8esn` *0..{_usn3:`4esn` Ends With 07 Ends With {`3esn`}}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})[..[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]|{7}[..12e12][..Count ( * )]]] Order By (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12} Asc,({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}) In Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 07 In `2esn` In 12e12) Descending,All(#usn7 In {``} Is Not Null Where {_usn4}[...e1][..$7]) Is Null Is Null Ascending Skip 1e1 Contains 0e0)"), - octest_legacy:ct_string("Load Csv From 12[1.e1..{_usn3}][1.e1..1.0] As `8esn` Fieldterminator 's_str' Union Unwind 12.0 Ends With True Ends With 123456789 As _usn3"), - octest_legacy:ct_string("Create Unique Allshortestpaths(((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]}))) Return *,$@usn5 =~1000 =~1000 Skip $`4esn`[010..`4esn`] Limit 00[$`2esn`..][`6esn`..] Union Return Distinct 0X7[1000..{`1esn`}] As `3esn`,$`2esn`[12.e12..][{`4esn`}..] Order By 0.0 =~999 Asc,$`5esn` In 0.e0 Asc,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) Ascending Limit Count ( * ) Is Null Merge Allshortestpaths(((:@usn5{#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})-[?:usn2|`` *0..{usn2:{12} Is Not Null,`6esn`:``[$`2esn`]}]-(`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}))) Create Unique Allshortestpaths((`1esn` {_usn4:1.e1[$`1esn`..@usn6][$0..$_usn3],#usn8:$@usn5[..12e12][..$123456789]})<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})),usn2=({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->(`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[:`3esn`|:#usn8 *1000..00{usn1:0[`7esn`..]}]-(usn1 :`3esn`:@usn5)"), - octest_legacy:ct_string("Match (((#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})<-[`2esn`?:`7esn` *0X7..]-(_usn4 :usn2{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}))),#usn7=Shortestpath((:`8esn`:`7esn`)) Using Scan `6esn`:`3esn`"), - octest_legacy:ct_string("Create Unique Shortestpath(((({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(:`6esn`$123456789)))),@usn6=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7)) Union All Create Unique usn1=Allshortestpaths((#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(usn2 {``:01[{@usn5}]})),Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[`3esn`? *123456789..]->({_usn3:$`5esn`[`3esn`..]}))) Return Distinct Case #usn7 Starts With {#usn7} Starts With `7esn` When $#usn7 Is Null Then Count(*) Is Null Is Null End =~Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))) =~Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {_usn4}[...e1][..$7]),Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..],{123456789} Contains $#usn8 As `3esn` Order By {`4esn`}[$123456789..][$#usn7..] Ascending Skip Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[usn2?:`5esn` *0..]-({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:usn1|@usn6 *00]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})))[..{_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]}]"), - octest_legacy:ct_string("Remove Shortestpath(((({#usn7:2.12 Contains usn2 Contains True})-[_usn3?:`6esn`|`5esn` *0X0123456789ABCDEF]-(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}))))._usn3!,Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {123456789} Is Null Is Null).`6esn`!,{_usn4:12.0 Ends With True}.`2esn`! Remove 123.654.`3esn`!"), - octest_legacy:ct_string("Merge Shortestpath(((#usn7 :``:#usn8{`2esn`})<-[usn1?:#usn8|`1esn`]->({@usn5:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],@usn6:$0})<-[@usn6?:`5esn`]-(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]}))) On Create Set _usn3+=1000[..$0][..True] Foreach(`3esn` In 's_str' In $usn1 In False| With Distinct Case #usn7 Starts With {#usn7} Starts With `7esn` When $#usn7 Is Null Then Count(*) Is Null Is Null End =~Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))) =~Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {_usn4}[...e1][..$7]),Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..],{123456789} Contains $#usn8 As `3esn` Order By {`4esn`}[$123456789..][$#usn7..] Ascending Skip Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[usn2?:`5esn` *0..]-({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:usn1|@usn6 *00]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})))[..{_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]}] Start `8esn`=Node:_usn4(`6esn`='s_str') ,_usn3=Rel:`6esn`(\"d_str\")Where Count(*) Is Null Is Null) Merge @usn6=((usn2 :@usn5)-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`4esn`{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})) On Match Set `6esn`+=$_usn4 Ends With usn1 Ends With $0,All(`5esn` In \"d_str\" Is Null Is Null Where 1000 In {`8esn`} In 01)._usn4 =Filter(`4esn` In $`3esn` Is Not Null Where {`6esn`}) =~{_usn3:{`3esn`} Is Not Null Is Not Null} On Match Set ``+={12} =~#usn8 Union All Return Distinct 9e0 Starts With 01 As `2esn`,`` Ends With 123456789 Ends With 123.654 As usn2,Count ( * ) Contains 07 Skip {`4esn`} =~{7} =~{`7esn`} Start `3esn`=Node:usn1(\"d_str\") Where Count ( * ) =~$usn2 =~$usn2 Union Match Allshortestpaths(((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(@usn5 :`4esn`)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]}))) Using Index `1esn`:@usn5(#usn8) Merge ``=(`1esn` {``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Start `8esn`=Rel:@usn6(`7esn`={`8esn`}) ,_usn4=Node( {`1esn`})Where 0[1.e1..12e12]"), - octest_legacy:ct_string("Unwind {usn1} In 2.12 In 1000 As `8esn` Union All Foreach(`8esn` In \"d_str\" Starts With 01| Start `8esn`=Relationship:`6esn`('s_str') Where 010 =~{usn2}) Unwind $`1esn` In $`7esn` In $`6esn` As `2esn` Delete 123456789[#usn8..False],9e1 In 2.12"), - octest_legacy:ct_string("Create Unique #usn7=Shortestpath(((#usn8 :_usn3:_usn3{`4esn`:{_usn3}[..$12][..0.12],`7esn`:1.0[0X7][{`5esn`}]})-[_usn3?:#usn8|`1esn`]-({``:$`8esn` =~{1000}}))),(((_usn4 :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})<-[``?:_usn4|:usn2{`1esn`:False Is Null Is Null}]->(usn2 :`6esn`{#usn7:Count ( * ) Contains 07})))"), - octest_legacy:ct_string("Merge ((`7esn` )-[@usn5?:`4esn`]-(:usn1{usn1:{`6esn`}})) Union All Return 1.0 Contains $_usn4,Case 1.0 In Count(*) When $_usn4[Count ( * )..] Then Null[``] When $1000[`2esn`..`5esn`][1e1..1.e1] Then .e12[@usn5..#usn7][010..{usn1}] Else 1.0[$`1esn`..][$123456789..] End,0 In $_usn4 In $@usn5 As `1esn` Skip $@usn5[..12e12][..$123456789] Load Csv From Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains Extract(`5esn` In \"d_str\" Is Null Is Null Where Null Ends With `2esn` Ends With $usn1|$#usn7[@usn5..{1000}][1.e1..7]) As `4esn` Fieldterminator 's_str'"), - octest_legacy:ct_string("Foreach(usn2 In {`2esn`} Is Not Null| Delete 00[{`8esn`}..][{`8esn`}..]) Union Remove Reduce(``=$usn1[.._usn4][..False],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|#usn8[#usn8..]).`8esn`,Reduce(@usn5=9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Ends With {_usn3}).`8esn` Return Distinct *,`6esn` Is Not Null Is Not Null As `3esn` Order By $`5esn` Starts With $0 Starts With {0} Asc Union All Create Unique ``=Allshortestpaths((((:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)-[usn1? *1000..00]->({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})))),Shortestpath(((:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null}))) Remove Shortestpath((`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[:`3esn`|:#usn8 *7..12{@usn5:_usn4 Starts With $_usn4 Starts With 12.e12}]->(`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null})).`5esn`?,Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01).`7esn`"), - octest_legacy:ct_string("Delete $`1esn` In $`7esn` In $`6esn`,1000[0X7..2.12] Merge `2esn`=(`2esn` :`3esn`:@usn5)<-[`3esn`:`6esn`|`5esn` *..12{usn1:0X0123456789ABCDEF Is Null Is Null}]-(:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[`7esn` *0X0123456789ABCDEF]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0}) On Create Set @usn5+=[$`5esn`[..$`5esn`][..$12],01[2.12..`8esn`],_usn3 Contains $123456789 Contains ``],None(`8esn` In 01[2.12..`8esn`] Where Count ( * ) Ends With $@usn5).`4esn` =Reduce(``={999},#usn8 In {`5esn`}[.e1..``]|$_usn3['s_str'][07])[..{`4esn`:0.0[$0][{@usn5}]}][..Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..])] On Match Set `1esn`+=usn1 Is Null Is Null,Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]).`5esn` =0X0123456789ABCDEF Is Null Is Null"), - octest_legacy:ct_string("Load Csv From True[{`7esn`}..] As `4esn` Union With 's_str'[00][{`5esn`}],#usn8 In $@usn6,{1000}[_usn3][$123456789] As `1esn` Order By {999} Starts With $999 Descending Skip {`7esn`} Ends With `4esn` Ends With {@usn5} Limit $@usn5 Starts With {@usn5} Starts With 9e0 Where #usn7"), - octest_legacy:ct_string("Load Csv With Headers From .e0[..$`8esn`] As `7esn` Fieldterminator \"d_str\" Union All Remove (:usn1{_usn3:{#usn7}[`2esn`..]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(#usn7 ).`2esn`,Case `5esn` Starts With $`2esn` Starts With $1000 When 123.654 =~$usn2 =~{999} Then Count ( * ) Contains `8esn` Contains .e1 End._usn3!,exists($12[$1000..123456789],123456789[0xabc..'s_str'][``..`1esn`]).@usn5 Return {#usn8} Starts With 00 Starts With {`6esn`} As ``,7[{0}..{_usn4}] As #usn8,`4esn`[$999..{`1esn`}][{@usn6}.._usn3] Order By `8esn` Is Not Null Is Not Null Desc Limit {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Create usn2=Shortestpath((usn2 :#usn7)) Union All Return Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7) Contains Filter(`` In `` Is Not Null Is Not Null Where 0e0 Starts With 1000 Starts With #usn7) Contains Shortestpath((($#usn8)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]}))) As #usn7 Order By 2.12 =~Count(*) Descending,`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) Contains Reduce(`7esn`=$_usn4 Ends With usn1 Ends With $0,`4esn` In $`3esn` Is Not Null|`7esn` In {123456789} In `1esn`) Asc"), - octest_legacy:ct_string("Merge _usn4=Shortestpath((usn1 {`2esn`})-[@usn5? *0Xa]->(:`3esn`:@usn5{``:12.e12[$_usn3..],_usn3:$`6esn`[010..]})) On Create Set Reduce(usn1=7[{0}..{_usn4}],`` In 123456789 Ends With 12.e12 Ends With $`7esn`|$999 Is Not Null)._usn3 =@usn6 Contains `3esn` Contains {`2esn`} Remove Reduce(#usn8={0}[01][`7esn`],@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|2.12 =~False).`6esn`!,Case True In 0e0 When 0.0 =~999 Then {@usn5} Is Null Is Null End.`6esn`? Union All Optional Match @usn5=(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(`2esn` :`8esn`:`7esn`),usn1=Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` )))) Using Join On `7esn`,`8esn`,`3esn` Where 7[{0}..{_usn4}] Foreach(`` In $`8esn`| Create `8esn`=(:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`),(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7) Remove Case `1esn`[{usn1}..``][7..$#usn8] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] End.@usn5) Match `3esn`=Shortestpath((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))),Shortestpath(({@usn5:07[..True][..9e12]})-[_usn4?:`5esn` *..07]->({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})) Using Index @usn5:`2esn`(@usn5) Using Scan `7esn`:usn1 Where Null[$#usn7]"), - octest_legacy:ct_string("Return Distinct *,'s_str'[$_usn3..][Count ( * )..] As #usn7,{1000} =~$@usn6 =~12 Order By {_usn3:`4esn`[..Count ( * )][..{#usn7}]}[Any(_usn3 In {`3esn`}[`2esn`] Where 1e1 In \"d_str\" In `7esn`)..(:usn1{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[`2esn`:_usn4|:usn2]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[`6esn`{`6esn`:Count(*) Ends With 12.0 Ends With 12}]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})][Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7|123.654[{7}..])..Filter(`3esn` In {7} Is Null Where usn1 Is Null Is Null)] Asc Skip 0X7 In $#usn7 In 1.e1 Limit usn2(7[..999][..{#usn8}])[[$_usn4 Contains Null Contains #usn8,{#usn8}[{7}],{@usn6}[{999}..][00..]]..] Load Csv With Headers From usn2[{7}] As @usn6 Fieldterminator \"d_str\" Union Return *,1e1 Contains 0e0 Skip @usn6 Contains Null Contains $`7esn` Limit $0 Return Distinct $123456789 Ends With $999 Ends With {999},7[$`8esn`..123456789][$usn1..$usn1] As `5esn`,{#usn7}[`2esn`..] Order By #usn7 =~Count ( * ) =~`` Ascending,{123456789} Starts With 0.0 Starts With `5esn` Desc,12.e12 Starts With {999} Starts With {`1esn`} Desc Skip 1.0[0e0..0.e0] Limit `6esn`[12..$usn2][{#usn8}..{usn2}] Union All Optional Match _usn4=(_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :_usn3:_usn3{`7esn`:$`6esn`[123456789..12][True..{`3esn`}],`5esn`:0X0123456789ABCDEF[123456789]})-[?{usn1:0[`7esn`..]}]->(`2esn` :`6esn`) Using Join On @usn6,@usn6 Using Scan _usn4:usn1"), - octest_legacy:ct_string("Detach Delete Count(*) Contains $#usn7 Contains 1e1 Start `8esn`=Relationship:usn2('s_str') Union All Unwind `4esn`[`5esn`..12][@usn6..False] As #usn8 Start `2esn`=Node:`2esn`({1000}) Unwind `8esn` Is Not Null Is Not Null As `6esn`"), - octest_legacy:ct_string("Merge ((:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[ *0xabc..{usn2:{12} Is Not Null,`6esn`:``[$`2esn`]}]-(`4esn` {`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})) On Create Set usn1 =0.e0[123.654][01],@usn5+=$`8esn`[$`7esn`..][0.e0..] Match `8esn`=(((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) Using Join On `8esn`,@usn5 Where 123456789[0xabc..'s_str'][``..`1esn`]"), - octest_legacy:ct_string("With $1000 =~$`2esn` As `6esn`,`` Is Not Null Is Not Null Order By $12[..{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}] Ascending Skip False[..``] Limit Count ( * )[$_usn4..$`4esn`] Where $#usn8[$`2esn`..][{`2esn`}..] Load Csv With Headers From _usn3 Ends With 7 Ends With `1esn` As `4esn` Union Load Csv From Shortestpath(((:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]-(:`5esn`{``:1.0[0e0..0.e0]})<-[``? *..0x0{#usn7:False =~$7 =~2.12}]->(`3esn` :usn2)))[['s_str' In 00,{@usn6}[$`6esn`..`4esn`]]..][Case @usn6 Starts With `6esn` Starts With $`1esn` When {`3esn`}[`2esn`] Then Null In $7 In .e1 When {0}[@usn6..$1000] Then 12.0 Contains #usn7 End..] As @usn5 Union All Merge Allshortestpaths((:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null})<-[#usn7{`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]}]-({#usn8:True[..$`6esn`]})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})) On Match Set `6esn`+=01[{`2esn`}..{@usn6}][$`2esn`..0.0],Case #usn8[..{#usn7}] When _usn4 Is Null Is Null Then {@usn6} Ends With 's_str' Ends With 12.0 When 010 =~{usn2} Then _usn4 Starts With $_usn4 Starts With 12.e12 Else {`5esn`} Starts With $`5esn` Starts With .e1 End.`8esn`? =_usn4 Contains {`1esn`} Contains \"d_str\",`3esn`(Distinct 0[..usn2][..{@usn5}]).`8esn`? =({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})[Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 0X7[`7esn`][123.654])..Filter(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")] On Match Set All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where $_usn4 Ends With usn1 Ends With $0).@usn5? =Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End,Reduce(`8esn`={usn1} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|0xabc[.e0]).`3esn`! =Reduce(`3esn`=12.0[123.654][Count(*)],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|`1esn` =~\"d_str\")[..Case When $`` Is Not Null Then 12[1.e1..{_usn3}][1.e1..1.0] When 7[True..][2.12..] Then $_usn4 Is Not Null Is Not Null End][..Case When $#usn8[$`2esn`..][{`2esn`}..] Then 0X7[1000..{`1esn`}] When {#usn8}[{7}] Then 07 In `2esn` In 12e12 Else $`1esn` Ends With 9e1 Ends With $123456789 End],`3esn` =12.e12[0xabc]"), - octest_legacy:ct_string("Remove All(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 07 Contains 0X7 Contains $`8esn`).`4esn`,Reduce(``=`5esn`[.e0..][07..],`5esn` In \"d_str\" Is Null Is Null|0.0 In $usn1).#usn8? Union All Merge Allshortestpaths(((:`2esn`:usn1{@usn5:`5esn`[.e0..][07..],`4esn`:`8esn` =~0xabc =~010})<-[``? *0X7..]->(`8esn` :#usn7))) On Create Set `5esn`+=999 In {`3esn`} In usn2"), - octest_legacy:ct_string("Create #usn7=(`4esn` :#usn7),(({`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})<-[usn2?:#usn7]-(@usn6 :@usn5{usn2:$`5esn`[..$`5esn`][..$12]})) Match `8esn`=(((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) Using Join On `8esn`,@usn5 Where 123456789[0xabc..'s_str'][``..`1esn`] Union All Return Distinct *,{``}[`8esn`..],Case {`3esn`}[@usn6..0Xa][{12}..0Xa] When {usn1}[0X0123456789ABCDEF] Then 0x0 Ends With $12 When 0e0 Starts With `2esn` Starts With $`` Then {123456789}[9e12][{0}] Else 0X7[1000..{`1esn`}] End[..({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})] As #usn7 Order By False Contains {`6esn`} Ascending,{`1esn`}[usn1][.e1] Asc Return *,0Xa[9e1..][$`6esn`..] As @usn6,1e1 In 123.654 In `3esn` As @usn6 Order By 0.0 =~False =~$999 Desc,123456789 Ends With 01234567 Ends With 1.e1 Ascending Limit $999 Delete 12e12 Contains 0Xa"), - octest_legacy:ct_string("Create Unique #usn7=(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[#usn8]-(:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}) Foreach(`2esn` In `6esn`[..$@usn6]| Optional Match (`2esn` :usn1)<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(`3esn` :`8esn`:`7esn`)<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1),Allshortestpaths(((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[? *..0x0]->(`3esn` :`7esn`:_usn3))) Using Index _usn4:`5esn`(`6esn`) Using Index `5esn`:usn2(``) Where 1.0[0X0123456789ABCDEF] Remove _usn3:`2esn`:usn1,[$0[..9e1],0.0[Null][$`2esn`]]._usn4?) Union All Merge Allshortestpaths((@usn6 :`6esn`)<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3))"), - octest_legacy:ct_string("Match #usn7=Shortestpath((`2esn` :usn1)<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(`3esn` :`8esn`:`7esn`)<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)) Using Join On `8esn`,@usn6 Where 999 Is Not Null Is Not Null Union Delete $`7esn` Is Not Null,`2esn`(Distinct $``,7 Starts With {@usn6} Starts With $``) Contains {@usn6:_usn3[$`8esn`],usn1:$@usn5 Is Not Null} Contains {@usn5:`8esn`[{123456789}..]},Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..]) In Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null) In Filter(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {#usn8}[.._usn4][..$`3esn`]) Load Csv With Headers From 9e0 As `1esn` Load Csv From [`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null As usn2 Fieldterminator 's_str'"), - octest_legacy:ct_string("Merge Shortestpath((:usn1{usn2:7[..999][..{#usn8}]})-[?:#usn7 *01234567..0Xa]->({``:$`8esn` =~{1000}})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})) On Create Set `8esn`(00 Starts With 0xabc,{12} Is Not Null).`6esn`! =$12 Ends With 07 Ends With $123456789,`3esn` ='s_str' Ends With 7 Ends With {_usn4},``(0X7 =~9e1,0.0 =~999).`3esn`! =$1000[Null][`4esn`] With Distinct $123456789 Ends With {`1esn`} Ends With $`4esn`,$`8esn`[..{`2esn`}],Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0)[..Case When 01234567[usn2..$12][{`7esn`}..$usn2] Then usn1[`5esn`..$7] Else $1000[0Xa][{#usn7}] End][..Reduce(@usn6=07 Contains 0X7 Contains $`8esn`,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|{#usn7}[9e1..][{123456789}..])] Order By `5esn`[_usn4..] Ascending Limit [`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]][..None(#usn8 In 7[..999][..{#usn8}] Where $`7esn`['s_str'])][..`1esn`(Distinct 12e12[$`3esn`],0.0 =~999)] Where $_usn4[0e0..][False..] Remove `6esn`({1000}[{_usn3}..],0.12 =~$0 =~$0).`` Union All Return Distinct .e12[..`7esn`][..0Xa],123.654 Is Not Null Is Not Null As `8esn`,All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By {usn2} Descending,1.0 =~7 =~{usn2} Desc Skip 0.0[$0][{@usn5}] Create Unique ((`1esn` {`5esn`})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})),Shortestpath((((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`8esn`?:`2esn`*..{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]}))))"), - octest_legacy:ct_string("Merge Allshortestpaths(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))) On Match Set `3esn`+=.e1[..$@usn6][..`2esn`] Create Unique `2esn`=((`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]})-[{`7esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4]}]-(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)),`6esn`=Shortestpath(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})))"), - octest_legacy:ct_string("Merge Shortestpath(({`1esn`:0.12[$`3esn`..$_usn3][12.0..usn1]})<-[{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}]->(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`6esn`?:`3esn`|:#usn8{usn1:$usn1 In {999} In $#usn7}]-({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})) On Create Set None(`3esn` In {7} Is Null Where {_usn3}[12.e12]).#usn8? =Case {999} Is Null Is Null When 1000[Null..{123456789}] Then 9e12[`6esn`..12.0] Else `` Ends With $1000 End[Reduce(`2esn`={`3esn`} In 0X7,_usn3 In {`3esn`}[`2esn`]|$`5esn`[{`3esn`}])..(@usn5 {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})],#usn8 ={usn2} In _usn3 In $#usn7,[{@usn6}[$`6esn`..`4esn`],0Xa[$123456789..123.654][.e12..0.e0]]._usn3? =Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Is Not Null Is Not Null On Match Set `5esn` =$@usn5[010..$#usn8][12..$`4esn`],@usn5+={`6esn`:1000[..$0][..True],_usn4:Count ( * ) Ends With $@usn5}[[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 12e12 Ends With {usn1}|$#usn8 Contains $`1esn` Contains {`6esn`}]..Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..])][[_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `3esn`[{`2esn`}]|$0[12.e12..]]..Filter(_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null)],`5esn`+=0.e0 Starts With `2esn` Union All Remove usn1(Distinct $@usn5 Is Not Null).``! Union Merge Shortestpath(((`2esn` :_usn4))) On Match Set #usn8+=`2esn`(Distinct $``,7 Starts With {@usn6} Starts With $``) Contains {@usn6:_usn3[$`8esn`],usn1:$@usn5 Is Not Null} Contains {@usn5:`8esn`[{123456789}..]},({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(#usn7 :#usn8:#usn8{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null}).@usn6? =01[{@usn5}] Merge Allshortestpaths(((_usn3 :`3esn`:@usn5))) On Create Set `7esn` =`6esn`({usn1} Ends With $0) Is Not Null,`2esn`+=All(`` In `` Is Not Null Is Not Null Where $_usn4 Starts With 1e1)[Shortestpath(((:usn1{`3esn`:{123456789} Is Null Is Null})-[_usn4{`5esn`:{0} Ends With $_usn3 Ends With $`7esn`,`2esn`:Null[``]}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[? *0Xa]-({`7esn`:{999}})))][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)],Reduce(#usn7=`` Is Not Null Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{`7esn`}[..$@usn5][..$#usn8]).`2esn` =None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12])[Reduce(`4esn`=`1esn` =~0 =~$#usn7,`2esn` In `1esn` =~\"d_str\"|{123456789} Is Null Is Null)][{``:`7esn` Starts With $#usn7 Starts With $`7esn`}] On Create Set [`5esn` In \"d_str\" Is Null Is Null|$`8esn`[..00]].usn2! =[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*)),#usn7:#usn8:#usn8"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`)[None(#usn8 In 7[..999][..{#usn8}] Where 0Xa[2.12])..][[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789]]..] As #usn8 "), - octest_legacy:ct_string("Detach Delete {`7esn`} Ends With `4esn` Ends With {@usn5},None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12])[Reduce(`4esn`=`1esn` =~0 =~$#usn7,`2esn` In `1esn` =~\"d_str\"|{123456789} Is Null Is Null)][{``:`7esn` Starts With $#usn7 Starts With $`7esn`}],Case When {_usn4} Starts With 0.e0 Starts With 0x0 Then 12 Ends With 0x0 Ends With 0.e0 Else $1000 Is Null Is Null End Starts With `7esn`(Distinct $#usn7[..{`5esn`}][..9e12]) Starts With {`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`}"), - octest_legacy:ct_string("Unwind $`3esn`[0.12..`8esn`][$#usn7..`5esn`] As `6esn` Union All Match (:#usn7{usn2:{usn1} Ends With $0,#usn8:`5esn` Starts With $`2esn` Starts With $1000})-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(`1esn` :_usn3:_usn3{#usn7:$@usn5 Is Not Null Is Not Null}),`3esn`=({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True}) Using Join On `8esn`,@usn5 Using Index `3esn`:_usn3(`6esn`) Create Unique `2esn`=Allshortestpaths(((#usn7 {``:9e12[`1esn`..][$`1esn`..],#usn7:#usn8})-[?:`7esn` *0X0123456789ABCDEF]->(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})<-[#usn8?:#usn7{`1esn`:#usn7 =~Count ( * ) =~``,usn2:`` Ends With $1000}]->(:@usn6:#usn8{`4esn`:$`8esn`[..00]}))) Union Start #usn7=Node:``(\"d_str\") ,_usn3=Relationship:`3esn`('s_str')Where $@usn5 =~1000 =~1000"), - octest_legacy:ct_string("Return Distinct usn1[..@usn6][...e0],usn1 Is Not Null As `6esn`,False[_usn3..`8esn`][$`8esn`..{`3esn`}] As _usn3 Order By Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End[[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]]..Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})))] Ascending,All(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Contains (`5esn` :_usn4{`5esn`:07[..True][..9e12]})-[`8esn`?:`2esn`{@usn6:{12}[..0X7]}]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]})<-[_usn4{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00}) Contains [0.12[$`3esn`..$_usn3][12.0..usn1]] Ascending Start `3esn`=Rel:#usn8(`8esn`={`6esn`}) ,usn1=Node:`3esn`(`2esn`={usn1}) Union All Load Csv With Headers From Case When False Then 0.e0 Ends With $#usn7 Ends With $7 When {@usn6}[{999}..][00..] Then `5esn` Ends With {``} Ends With 12.e12 Else 123.654[$`1esn`] End[Reduce(#usn8=$`6esn` Ends With Count(*),`2esn` In `1esn` =~\"d_str\"|_usn4 Contains 2.12)..] As `1esn` "), - octest_legacy:ct_string("Foreach(@usn5 In _usn3 Contains Count(*) Contains 12e12| Match Shortestpath(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))),usn2=Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))) Where 01234567 Ends With .e12 Ends With $#usn7 Load Csv From [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `4esn` Ends With 07 Ends With {`3esn`}|@usn5 Is Null] Is Null Is Null As #usn8 Fieldterminator \"d_str\") Detach Delete Reduce(#usn7=`3esn`[{`2esn`}],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|#usn8 Is Not Null)[(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(#usn7 {_usn3:`4esn`[..Count ( * )][..{#usn7}]})..None(`8esn` In 01[2.12..`8esn`] Where {usn2})],Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))),12 Ends With 0x0 Ends With 0.e0"), - octest_legacy:ct_string("Detach Delete .e0[..$`8esn`],$@usn5 Starts With #usn7,12.0[{@usn5}..$#usn7] Union All Foreach(@usn5 In `5esn` Starts With 010 Starts With 0.0| Create Shortestpath(((:#usn8:#usn8)-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12}))),Shortestpath((({_usn3:{_usn4} Is Not Null Is Not Null})<-[_usn4 *0..{_usn4:00[`2esn`..12][123456789..0.e0],`8esn`:0x0[`4esn`..'s_str']}]->()<-[``? *..01{`1esn`:$@usn6 Contains 07}]->(:#usn8:#usn8{@usn6:$_usn3[..1000]}))) Create ((`1esn` {`5esn`})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})),Shortestpath((((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`8esn`?:`2esn`*..{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]}))))) Delete 0.0 Is Not Null Is Not Null,None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})[Any(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")..Reduce(usn1=#usn7[usn1][$`5esn`],`3esn` In {7} Is Null|Count(*) Ends With 12.0 Ends With 12)][(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})..({usn1:`5esn`[_usn4..]})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})],Reduce(#usn7=$1000 Is Null,#usn7 In {``} Is Not Null|$`1esn` Ends With 9e1 Ends With $123456789) In Case When `5esn` Is Null Then True[..$`6esn`] Else `3esn`[`3esn`..][#usn8..] End Create Unique `8esn`=((:@usn6:#usn8)<-[`1esn`?:usn2|``]-({@usn5:{usn2}[.e0..$999]}))"), - octest_legacy:ct_string("Delete {`4esn`} =~9e0 =~{12},Count ( * ) Ends With $@usn5,Reduce(`2esn`=1e1 In 123.654 In `3esn`,`5esn` In \"d_str\" Is Null Is Null|$_usn3[{#usn7}]) Is Not Null Return Distinct *,.e1[..$@usn6][..`2esn`] As #usn8,0Xa[usn2..] Order By $12[..{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}] Ascending Limit {1000}[{_usn3}..] Union Start `1esn`=Relationship:`2esn`({1000}) With @usn6 Starts With `6esn` Starts With $`1esn` As `7esn`,usn1 In 7 In {123456789} As `5esn`,`8esn` Ends With 999 Ends With .e12 Order By {@usn6} Is Null Is Null Desc,`7esn` In 00 Asc,Case When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $`4esn`[..$`3esn`][..0.0] Then `1esn` =~0 =~$#usn7 Else {``} Is Null End Contains Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Contains All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {@usn6}[7]) Asc"), - octest_legacy:ct_string("Foreach(_usn3 In 0e0 In @usn5| Return .e1 =~{@usn6} =~Null Order By $#usn7[..{`5esn`}][..9e12] Desc,Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`)[None(#usn8 In 7[..999][..{#usn8}] Where 0Xa[2.12])..][[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789]]..] Desc,0x0 Ends With $12 Asc Limit _usn4(Distinct _usn3[_usn3..][12.e12..])[[0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},0Xa Starts With {`6esn`} Starts With $usn1]]) Load Csv With Headers From 9e12[`6esn`..12.0] As @usn6 Union All Merge `3esn`=Shortestpath((_usn3 {@usn5:`5esn`[{`4esn`}..`2esn`],_usn3:07 =~01})) Union All Foreach(`8esn` In True Contains {0} Contains 7| Start ``=Relationship:usn2('s_str') ,`1esn`=Rel:`4esn`(`4esn`='s_str') Delete Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0) Is Not Null Is Not Null)"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From Allshortestpaths((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3))[Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})))] As `3esn` Unwind 12.0 Ends With {``} As _usn4 With Distinct *,None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As `5esn`,Null[{#usn7}..][0X0123456789ABCDEF..] Where $999"), - octest_legacy:ct_string("Create Unique Allshortestpaths((@usn5 {`3esn`:.e1[..usn2][..`8esn`]})<-[usn2:`7esn`]->(:usn1{_usn3:{#usn7}[`2esn`..]})-[?:usn2|``$#usn7]-(#usn8 :``:#usn8{`7esn`:9e1[$usn2],_usn4:$_usn4 Contains Null Contains #usn8})),({`4esn`:`7esn` Is Null}) Return Distinct {#usn8}[$@usn5..usn1][$1000..0xabc],{_usn4}[{`5esn`}..{1000}][9e1..{1000}] Delete Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},Shortestpath(((:`8esn`:`7esn`$#usn7)-[`5esn`:`8esn`]->(#usn8 {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]}))) In [_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..]|1.0 Is Null Is Null] In Case When Count ( * ) Contains 07 Then 123.654[$`1esn`] End,$123456789 Is Null Is Null Union All Merge Shortestpath(((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null}))) On Match Set None(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $12[True..][{0}..]).usn1! ={123456789} Is Not Null,`5esn`+=Reduce(``={999},#usn8 In {`5esn`}[.e1..``]|$_usn3['s_str'][07])[..{`4esn`:0.0[$0][{@usn5}]}][..Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..])],{`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000}.usn1 ={`3esn`}[..07][..{`5esn`}] On Match Set _usn3+=2.12 =~False =~`5esn` Delete {`2esn`:1000[..$0][..True],@usn5:{12} Ends With 0Xa Ends With $`6esn`}[Single(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn1} Ends With $0)..][Extract(`2esn` In `1esn` =~\"d_str\" Where $`4esn` In Null In 0xabc|{`5esn`} Starts With $`5esn` Starts With .e1)..],usn2 Is Null Unwind 07[..True][..9e12] As _usn3 Union All Create Unique (:`7esn`:_usn3{usn1:$usn1 In {999} In $#usn7})"), - octest_legacy:ct_string("Create Unique `1esn`=((:usn2{#usn8:$`5esn` In $`6esn`})<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})) Merge `2esn`=Allshortestpaths(((#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})-[`8esn`?:@usn6|`6esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}))) On Create Set _usn3+=Case _usn3[$`8esn`] When 12e12 Contains 0Xa Then 7[{0}..{_usn4}] End Ends With Reduce(usn2=$`5esn`[`3esn`..],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|{_usn4} In {12} In $0) Ends With [$0],#usn8+=12.e12 Is Null Is Null Create Unique ((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})),Allshortestpaths(((`2esn` :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})))"), - octest_legacy:ct_string("Remove (_usn3 :usn2{#usn7:{999} Starts With {0}})<-[`4esn`:@usn6|`6esn`{`4esn`:`2esn` Is Null,@usn5:00 Starts With 0xabc}]-({`5esn`:$#usn8 Ends With $`2esn` Ends With $@usn6}).`2esn`?,Reduce(#usn8=123.654[$`1esn`],#usn8 In {`5esn`}[.e1..``]|{`5esn`} Starts With $`5esn` Starts With .e1).#usn7? Union All Detach Delete $#usn7 Is Null Foreach(usn1 In $@usn5 Is Not Null Is Not Null| Unwind {usn1} Starts With #usn8 As _usn3)"), - octest_legacy:ct_string("Match #usn8=Shortestpath((#usn8 :@usn5))"), - octest_legacy:ct_string("Unwind {`1esn`:#usn7 =~Count ( * ) =~``,usn2:`` Ends With $1000} Is Not Null Is Not Null As ``"), - octest_legacy:ct_string("Create `7esn`=({`5esn`:\"d_str\" Starts With 01})-[_usn3:@usn5 *7..12{`2esn`:12.0 =~999 =~$_usn3}]->(`3esn` {usn1:$0[..9e1],@usn5:`7esn`[..{usn1}]}),Allshortestpaths((((:_usn4{usn2:0X0123456789ABCDEF[123456789]})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)))) With Distinct $12[Count ( * )][0X7],Case {`3esn`}[@usn6..0Xa][{12}..0Xa] When {usn1}[0X0123456789ABCDEF] Then 0x0 Ends With $12 When 0e0 Starts With `2esn` Starts With $`` Then {123456789}[9e12][{0}] Else 0X7[1000..{`1esn`}] End[..({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})] As `3esn`,{`5esn`:01 =~{_usn3} =~`3esn`,@usn5:{`3esn`} Is Not Null Is Not Null}[[`3esn` In {7} Is Null Where usn1 Is Null Is Null]..Reduce(@usn5=$0 Ends With 12.0,`5esn` In $999[0.0..]|$`8esn`[..00])][Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where usn2[$7..$123456789][$@usn6..$7]|0xabc[01..{999}][{7}..{`7esn`}])..None(`` In `` Is Not Null Is Not Null Where 0x0[`4esn`..'s_str'])] As @usn5 Skip $usn2[9e0] Limit {12} Is Not Null Unwind `4esn`[..010][..{12}] As `` Union All Start `6esn`=Relationship:usn2(#usn8=\"d_str\") ,`5esn`=Relationship(*)"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From usn2(7[..999][..{#usn8}])[[$_usn4 Contains Null Contains #usn8,{#usn8}[{7}],{@usn6}[{999}..][00..]]..] As `7esn` Start `5esn`=Relationship:usn1({999}) ,usn1=Relationship:_usn3(`8esn`={123456789})"), - octest_legacy:ct_string("Return *,Shortestpath(((({#usn7:2.12 Contains usn2 Contains True})-[_usn3?:`6esn`|`5esn` *0X0123456789ABCDEF]-(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}))))[Case When $999[0.0..] Then 12 Ends With 0x0 Ends With 0.e0 When `` Is Not Null Is Not Null Then {`3esn`}[..07][..{`5esn`}] End..[`3esn` In {7} Is Null Where usn1 Is Null Is Null]],$`3esn`[0.12..`8esn`][$#usn7..`5esn`] As `` Order By 123456789[_usn4..][{999}..] Ascending,All(`3esn` In {7} Is Null Where Count ( * ) Contains 07) Is Null Is Null Ascending Delete [@usn6 Contains Null Contains $`7esn`,{`4esn`} Starts With $usn2 Starts With $1000] Ends With Any(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $_usn4[0e0..][False..]) Ends With (`1esn` :`2esn`:usn1)-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(`1esn` :_usn3:_usn3{#usn7:$@usn5 Is Not Null Is Not Null}) Load Csv From ({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}) As #usn8 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Optional Match (:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})-[?:`5esn`]->(:usn2),`2esn`=Shortestpath((({usn2:7[..999][..{#usn8}]}))) Using Join On @usn6,@usn6 Union All Load Csv With Headers From [_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null|999 Is Not Null Is Not Null] Ends With [`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null|{`5esn`} Starts With $`5esn` Starts With .e1] Ends With {``:usn1 Starts With usn1 Starts With $``} As @usn5 Load Csv From .e1 In 0Xa In #usn7 As `2esn` Fieldterminator \"d_str\" Remove Any(`5esn` In \"d_str\" Is Null Is Null Where `6esn`[..$@usn6]).`7esn`,Case When _usn3[$`8esn`] Then $0[..9e1] End.usn1?,Allshortestpaths((_usn3 :@usn5)-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})).@usn6?"), - octest_legacy:ct_string("With Distinct 7 =~{`8esn`} =~$`6esn` Order By 0.0 =~0 =~`6esn` Ascending,{``}[$`8esn`..] Ascending,9e1 Is Not Null Descending Skip Reduce(_usn4=01[{`2esn`}..{@usn6}][$`2esn`..0.0],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|0.12 =~$0 =~$0)[Shortestpath((((`1esn` {@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00})-[`6esn`?:`3esn`|:#usn8]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))))..[{12}[{7}][$123456789]]] Limit ({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(:@usn5)<-[`7esn`?:`8esn`]-({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}) Ends With $7 Ends With All(`` In `` Is Not Null Is Not Null Where 1000 In {`8esn`} In 01) Where $0[12.e12..] Remove Case 2.12['s_str'..$12][{`1esn`}..`2esn`] When 7[$`2esn`..{`5esn`}] Then {7}[..1.0][..9e0] Else 0x0[`4esn`..'s_str'] End.@usn6! Union Merge `4esn`=(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})<-[:`5esn`{@usn6:$#usn8 Ends With $`2esn` Ends With $@usn6,`6esn`:{7}[..12e12][..Count ( * )]}]->(#usn8 :_usn3:_usn3{`4esn`:{_usn3}[..$12][..0.12],`7esn`:1.0[0X7][{`5esn`}]})<-[`4esn`?:usn2|`` *0X7..]->(_usn3 :@usn5) Union All Foreach(usn1 In 9e1[2.12..{#usn8}]| Match `7esn`=Allshortestpaths((((`6esn` {`7esn`:$`6esn`[010..]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-({`1esn`:`3esn`[{`2esn`}]})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})))),@usn6=Allshortestpaths((`1esn` :`5esn`{`5esn`:{``} Is Null})-[:@usn6|`6esn`{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}]->(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[`2esn`?:`2esn`]->(`7esn` {``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})) Using Join On `6esn` Using Index `4esn`:`3esn`(#usn8) Where 123456789 Ends With $`6esn` Ends With $#usn7 Create `3esn`=Allshortestpaths((((_usn3 )-[?{@usn6:0X7[`7esn`][123.654]}]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})))),`2esn`=Shortestpath((`6esn` {_usn4:0Xa =~Null =~$``})<-[``? *0X7..]->(`` :`1esn`))) Merge ((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null})) With Distinct *,2.12[$`5esn`][$#usn8] As #usn8 Order By Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0)[..Case When 01234567[usn2..$12][{`7esn`}..$usn2] Then usn1[`5esn`..$7] Else $1000[0Xa][{#usn7}] End][..Reduce(@usn6=07 Contains 0X7 Contains $`8esn`,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|{#usn7}[9e1..][{123456789}..])] Descending,(:usn2{usn2:7[..999][..{#usn8}]})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})<-[:`4esn` *..010{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]->(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}) Desc,{usn2} Starts With $`8esn` Starts With Count ( * ) Ascending Skip 2.12[$`5esn`][$#usn8] Where 1e1 In \"d_str\" In `7esn`"), - octest_legacy:ct_string("Match @usn6=(((:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)-[usn1? *1000..00]->({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}))),(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``}) Using Scan `2esn`:usn1 Using Index _usn3:`6esn`(#usn7) Detach Delete $#usn7 Contains 0x0 Contains 1000,{_usn3}[..\"d_str\"][..`5esn`] Union All Load Csv From Allshortestpaths((:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))[[{_usn4} In {12} In $0,$`5esn`[2.12..],12[1.e1..{_usn3}][1.e1..1.0]]][[12e12 Is Not Null Is Not Null]] As usn2 Union All Optional Match `3esn`=Allshortestpaths(((#usn7 {``:9e12[`1esn`..][$`1esn`..],#usn7:#usn8})-[?:`7esn` *0X0123456789ABCDEF]->(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})<-[#usn8?:#usn7{`1esn`:#usn7 =~Count ( * ) =~``,usn2:`` Ends With $1000}]->(:@usn6:#usn8{`4esn`:$`8esn`[..00]}))) Where 00 Starts With 0xabc Create `7esn`=((:`3esn`:@usn5$7)) Detach Delete @usn6 Contains Null Contains $`7esn`,$usn2[$`2esn`..`4esn`]"), - octest_legacy:ct_string("Unwind 0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn` As `4esn` Delete 1e1 In \"d_str\" In `7esn` Foreach(`5esn` In $@usn5 Starts With {@usn5} Starts With 9e0| Remove _usn3(0.12 =~$0 =~$0).`3esn`) Union With .e0 Ends With 0.12 As `6esn` Skip Case 's_str' In 00 When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null When $@usn5 Starts With {0} Starts With 12 Then {usn2} Else {#usn7}[`2esn`..] End Limit 1.0 Starts With 12e12 Starts With {`5esn`} Where 123.654[True..$#usn8][0.12..Count(*)] Unwind $usn1[{`5esn`}][$`6esn`] As @usn6"), - octest_legacy:ct_string("With Distinct [1.0 =~'s_str' =~{`2esn`}] Contains [9e1[2.12],{usn2}[$`3esn`..][{#usn7}..],Null Ends With {`5esn`} Ends With 0.e0] Contains `5esn`,All(`3esn` In {7} Is Null)[{`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]}..],{`2esn`} Ends With {`7esn`} Skip `6esn`(Distinct 0X7[`7esn`][123.654]) Is Not Null Is Not Null Unwind 1000 In {`8esn`} In 01 As `` Union All Start #usn7=Rel:@usn6(`7esn`={`8esn`}) Return *,'s_str' Starts With 123.654 As usn1 Order By $#usn7[..{`5esn`}][..9e12] Desc,Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`)[None(#usn8 In 7[..999][..{#usn8}] Where 0Xa[2.12])..][[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789]]..] Desc,0x0 Ends With $12 Asc Limit $123456789 In $#usn7 In `4esn` Detach Delete 's_str' Ends With 7 Ends With {_usn4},{@usn6}[..$7][..$`7esn`]"), - octest_legacy:ct_string("Load Csv From _usn3[_usn3..][12.e12..] As `5esn` Fieldterminator 's_str' Return {usn2} =~12 Order By @usn6 Is Null Is Null Descending,{_usn3} Is Null Is Null Desc,Allshortestpaths((({`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})<-[?*..]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}))) Ends With Reduce(_usn3='s_str'[00][{`5esn`}],`4esn` In $`3esn` Is Not Null|Count ( * ) Contains `8esn` Contains .e1) Descending Unwind 7[..999][..{#usn8}] As `8esn` Union All Foreach(`5esn` In {123456789} Starts With 0.0 Starts With `5esn`| Remove 2.12.`7esn`!,[@usn6 Contains $1000 Contains {`7esn`}].`3esn`?) Optional Match `7esn`=Shortestpath(((:`5esn`{``:1.0[0e0..0.e0]})-[_usn4:#usn8|`1esn`{`6esn`:#usn8[..{#usn7}]}]->(#usn7 :`4esn`))) Using Index `6esn`:@usn5(`2esn`) Using Scan ``:`2esn` Union Merge `7esn`=((`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]->(`` )<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})) Unwind None(`` In `` Is Not Null Is Not Null Where $`6esn` Is Null) Contains Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}))) Contains Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End As usn2 Detach Delete $`3esn` In $`6esn` In $``,\"d_str\" =~{usn1} =~{`7esn`}"), - octest_legacy:ct_string("Return $`5esn`[..$`5esn`][..$12] As `5esn`,Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn`,$`2esn` Is Null Is Null Order By Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains Extract(`5esn` In \"d_str\" Is Null Is Null Where Null Ends With `2esn` Ends With $usn1|$#usn7[@usn5..{1000}][1.e1..7]) Descending,Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) Is Not Null Is Not Null Asc,None(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {123456789}[0xabc..]) In (`4esn` {`6esn`:#usn8[..{#usn7}]})<-[_usn4 *..999]->({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[#usn8? *0..]->(#usn7 ) In Extract(`3esn` In {7} Is Null Where 1e1 Contains Count ( * )) Desc Limit $`7esn`[1.e1.._usn4][0Xa..`2esn`] Start @usn5=Node:#usn7({_usn3}) ,@usn6=Relationship:@usn6(`4esn`='s_str')Where {``} Is Not Null Union All Merge ``=((:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?:`5esn` *0..]->(usn2 :``:#usn8)<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})) On Match Set All(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`).`6esn`! =_usn4 Contains 2.12 On Match Set `1esn`+=Single(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}])[Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] Return *,123.654 Is Not Null,Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..] As `7esn` Skip Case When 1.0 =~'s_str' =~{`2esn`} Then $`5esn` In $`6esn` When {`7esn`}[..{`4esn`}] Then {usn1} Ends With $0 End[All(`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"])..[Count ( * )[0.12...e1],1.0[00..],$``]][`4esn`(`4esn` Ends With 07 Ends With {`3esn`})..Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `1esn` =~\"d_str\"|9e12 Is Not Null Is Not Null)] Limit Single(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}])[Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] Union All Create `6esn`=(`7esn` :`5esn`)<-[`5esn`:#usn7 *00{#usn7:{999} Starts With {0}}]-(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]}),`2esn`=(:`1esn`{``:.e1 Is Null Is Null})<-[#usn8?:usn1|@usn6]->(`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})"), - octest_legacy:ct_string("Create Unique `6esn`=((`2esn` :_usn4)),(((:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[:`6esn`|`5esn` *123456789..]-(#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}))) Union All Detach Delete 1.0 In Count(*),{_usn4}[`3esn`][12.0],1e1 Contains Count ( * ) Create Unique _usn4=(`1esn` {@usn5:1.0[0e0..0.e0]})-[usn2?:#usn7]-(:`4esn`{``:2.12 Is Not Null Is Not Null}),Shortestpath(((`7esn` {``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})-[?:`2esn` *00]->(`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]})<-[`6esn`?:`4esn` *..01]-({`7esn`:{999}}))) Load Csv From Reduce(@usn6=0.e0 Ends With $#usn7 Ends With $7,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999})[[#usn8[`3esn`..][{#usn7}..]]..(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`8esn` :@usn6:#usn8)<-[{`8esn`:07 In `2esn` In 12e12}]->(:_usn4{`6esn`:{`6esn`} =~$999,`6esn`:$#usn7[..{`5esn`}][..9e12]})][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)..Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0e0 Starts With `2esn` Starts With $``)] As `2esn` Fieldterminator \"d_str\" Union Return 2.12[$`5esn`][$#usn8] As #usn8 Skip False =~$7 =~2.12 Delete $@usn5 Starts With #usn7"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From (:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]}) Is Null As @usn6 Fieldterminator \"d_str\" Foreach(`7esn` In (:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case When `6esn`[12..$usn2][{#usn8}..{usn2}] Then {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] When .e12[@usn5..#usn7][010..{usn1}] Then 0.12 =~$0 =~$0 End| Optional Match Allshortestpaths((((:`2esn`:usn1{@usn5:`5esn`[.e0..][07..],`4esn`:`8esn` =~0xabc =~010})-[`7esn`?*..]->(#usn7 {`5esn`:00 Starts With 0xabc,`6esn`:0Xa =~Null =~$``})-[usn2?]-(:@usn5)))),_usn4=(((#usn8 :#usn8:#usn8{@usn5:{#usn8} Is Not Null})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})-[`4esn`?:_usn4|:usn2 *..01]->(`7esn` :`8esn`:`7esn`{#usn8:01234567[usn2..$12][{`7esn`}..$usn2]}))) Using Join On `6esn`,`8esn`,`4esn` Using Index #usn7:#usn7(``) Where 1.0 Is Null Is Null Create _usn4=((@usn6 )<-[usn1?:`8esn` *..010]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})<-[?:`8esn` *..0x0{`2esn`:$`4esn`[Null..]}]->({#usn8:0xabc[.e0]})),Shortestpath(((`6esn` :`4esn`))))"), - octest_legacy:ct_string("Unwind $#usn8[$`2esn`..][{`2esn`}..] As @usn5 Unwind 0Xa[7..2.12][`3esn`.._usn3] As _usn3"), - octest_legacy:ct_string("Start `7esn`=Rel:_usn4(``={#usn7}) ,@usn6=Node:`7esn`(_usn4={12})Where Count ( * )[0.12...e1] Create `7esn`=Shortestpath(((:usn1{`3esn`:{123456789} Is Null Is Null})-[_usn4{`5esn`:{0} Ends With $_usn3 Ends With $`7esn`,`2esn`:Null[``]}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[? *0Xa]-({`7esn`:{999}}))) Union All Match Shortestpath((`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})) Using Index ``:usn1(@usn5) Union All Unwind 12 Ends With $usn2 As `6esn` Unwind `7esn`[$12..][$`8esn`..] As `2esn` Unwind .e0 =~`6esn` =~{12} As `3esn`"), - octest_legacy:ct_string("Remove _usn4(Distinct `` Ends With $1000,$`5esn`[{`3esn`}]).`7esn`,`6esn`:usn2 Optional Match Shortestpath((((:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[`2esn`?{`3esn`:{123456789} Is Null Is Null}]->(usn2 :#usn7)<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) Using Join On ``,`6esn`,usn2 Using Scan ``:`7esn` Where $999[0.0..] Union All With (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As ``,12[..$`4esn`] As `7esn` Skip Allshortestpaths((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3))[Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})))] Where 0.12 =~$0 =~$0 Union With *,(`1esn` {#usn7:{_usn4} In {12} In $0})<-[#usn7?:_usn3|_usn3 *..0x0]-(`1esn` :`8esn`:`7esn`)[Case When {``} Starts With $`2esn` Starts With `1esn` Then $`5esn` Starts With $0 Starts With {0} End..(`7esn` {@usn5:{7}[..1.0][..9e0]})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})][{usn2:$`2esn`}..[`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $`` Is Not Null|$#usn7[#usn7..]]] As `2esn` Limit {_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] Where {#usn7}[`2esn`..] Create Unique (`7esn` {@usn5:{7}[..1.0][..9e0]})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})<-[`1esn`?:usn2|``]-({@usn5:{usn2}[.e0..$999]}),((`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0}))"), - octest_legacy:ct_string("Load Csv With Headers From 01[2.12..`8esn`] As @usn5 "), - octest_legacy:ct_string("With Distinct 07[$123456789..] Order By {7}[$7..$``][{``}..{7}] Descending,$_usn3[Count(*)] Desc Union All Foreach(`8esn` In $`3esn` Is Not Null Is Not Null| With Distinct *,{``}[$#usn8..$usn1] As `3esn` Order By $usn2[$`2esn`..`4esn`] Ascending,$`6esn`[{_usn3}..$`4esn`][$_usn4...e12] Asc,True[{_usn4}..][False..] Ascending Where \"d_str\" Contains {123456789} Contains 01 Start `3esn`=Relationship:#usn7('s_str') )"), - octest_legacy:ct_string("Start `2esn`=Node:@usn6({_usn4}) Create `1esn`=Shortestpath((((`2esn` :`8esn`:`7esn`)<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})))) Optional Match (`7esn` {`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2}),`5esn`=Allshortestpaths(((:`1esn`{``:.e1 Is Null Is Null})<-[usn1?:`7esn` *0xabc..{`3esn`:$#usn8[$`8esn`..{`8esn`}]}]->(:`4esn`{`8esn`:0.e0 In $#usn7 In $_usn3}))) Where {`5esn`} Contains $0 Contains {``} Union All Detach Delete {`6esn`},Single(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]) Ends With Case When 07 Contains 0X7 Contains $`8esn` Then {`4esn`} =~9e0 =~{12} When .e1 Ends With 1e1 Ends With @usn5 Then $#usn8[Count ( * )] Else Count ( * )[True..][{#usn7}..] End Ends With Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End,`1esn`[..{@usn6}][..$123456789] Union All Remove Reduce(#usn8=#usn7 Is Null Is Null,`8esn` In 01[2.12..`8esn`]|0Xa[2.12]).`7esn`?,(:#usn7{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[`4esn`:`8esn` *00]->(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]})<-[{`6esn`:2.12 Contains `1esn`,`1esn`:9e12[`6esn`..12.0]}]-(:_usn3:_usn3{``:`7esn` Starts With $#usn7 Starts With $`7esn`})._usn3!"), - octest_legacy:ct_string("Match (((usn2 :`4esn`)-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[``? *..01{`1esn`:$@usn6 Contains 07}]-(:`3esn`:@usn5{#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}))),Shortestpath((`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})) Using Scan `3esn`:_usn4 Using Index `3esn`:@usn5(`8esn`) Where Count(*) Ends With 12.0 Ends With 12 Unwind Case When {_usn4} Starts With 0.e0 Starts With 0x0 Then 12 Ends With 0x0 Ends With 0.e0 Else $1000 Is Null Is Null End Starts With `7esn`(Distinct $#usn7[..{`5esn`}][..9e12]) Starts With {`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`} As usn1"), - octest_legacy:ct_string("Remove Reduce(`4esn`=0X7[$999][_usn4],`2esn` In `1esn` =~\"d_str\"|0Xa[$123456789..123.654][.e12..0.e0]).usn2,{@usn6}.@usn6 With 7[$`8esn`..123456789][$usn1..$usn1] As `5esn`,2.12[{7}..] As `5esn`,[usn2[$_usn4..][True..],1.0 In Count(*)] =~Any(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12.0[123.654][Count(*)]) =~Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where usn2 Is Not Null Is Not Null) As `` Skip 12.0 In {`2esn`} Where 123.654 Is Not Null Is Not Null Union All Remove Case When `2esn` Is Null Then 1000 =~@usn6 =~0x0 Else \"d_str\"[#usn8] End.`1esn` Union All Foreach(_usn3 In 123456789 Ends With $`6esn` Ends With $#usn7| Unwind $`1esn`[{`2esn`}..] As `7esn` Create `8esn`=((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}}))) Start usn1=Rel:@usn6(#usn7='s_str') ,``=Node:@usn6({_usn4})"), - octest_legacy:ct_string("Foreach(usn2 In {1000}[$999...e12][`7esn`..'s_str']| Create _usn3=Allshortestpaths((((:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)-[usn1? *1000..00]->({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})))),(((#usn8 :#usn8:#usn8{@usn5:{#usn8} Is Not Null})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})-[`4esn`?:_usn4|:usn2 *..01]->(`7esn` :`8esn`:`7esn`{#usn8:01234567[usn2..$12][{`7esn`}..$usn2]})))) Union With All(`3esn` In {7} Is Null Where Count ( * ) Contains 07) Is Null Is Null Limit $12[`5esn`..] Where 0.12[`2esn`..{`6esn`}] Delete $#usn8[Count ( * )]"), - octest_legacy:ct_string("Match @usn5=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})),(`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]}) Merge Shortestpath(((:#usn8:#usn8)-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12}))) On Match Set `5esn` =All(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`2esn`} Is Not Null)[Filter(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`4esn`} Starts With $usn2 Starts With $1000)..Reduce(`8esn`={`2esn`} Is Not Null Is Not Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{usn1} Ends With $0)][Allshortestpaths(((`1esn` )))..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] On Match Set `7esn` =`4esn`[..010][..{12}],@usn5+=0X7[$999][_usn4],@usn5 =0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn` Load Csv From 2.12[{7}..] As #usn8 Union Create (((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7}))),((:#usn8:#usn8{_usn4})<-[usn1?:`7esn`]-(:usn1{usn1:{`6esn`}})) Merge ((#usn7 :#usn7)<-[#usn8:@usn6|`6esn`{`8esn`:True[00][0Xa]}]->(`7esn` :`7esn`:_usn3{usn2:_usn3[$`8esn`]})) On Match Set Case When 1.0[0X0123456789ABCDEF] Then 9e1 In $`3esn` In $@usn6 End.#usn8? =12e12 Is Null Is Null,Filter(#usn8 In 7[..999][..{#usn8}] Where 0e0 Contains Null).`6esn`! =0xabc[.e0],@usn6+={999} Is Null Is Null On Create Set `4esn` =Shortestpath(((({#usn7:2.12 Contains usn2 Contains True})-[_usn3?:`6esn`|`5esn` *0X0123456789ABCDEF]-(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}))))[Case When $999[0.0..] Then 12 Ends With 0x0 Ends With 0.e0 When `` Is Not Null Is Not Null Then {`3esn`}[..07][..{`5esn`}] End..[`3esn` In {7} Is Null Where usn1 Is Null Is Null]],Case When Count ( * ) Ends With $@usn5 Then _usn4 Contains 2.12 Else False =~$7 =~2.12 End.`5esn`! =7 Ends With $`4esn` Return 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] As #usn8,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6} As _usn4,12.0 Ends With True Ends With 123456789 As #usn7 Skip $1000 Is Not Null Union All With Distinct Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn`,{``}[$#usn8..$usn1] As @usn6,None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`]) Is Not Null Order By $0[..9e1] Descending,{usn1}[Count(*)..] Desc Skip (`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})-[:`6esn`|`5esn`{`8esn`:$0 Ends With 12.0}]->(`5esn` {`4esn`:7[$`2esn`..{`5esn`}],@usn6:{7} Is Null}) Contains Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) Contains Case 9e12 Is Not Null Is Not Null When 0[..usn2][..{@usn5}] Then 0e0 Ends With 1.e1 Ends With $`4esn` Else usn1 Is Null End Where $`5esn` In $`6esn` Load Csv With Headers From `6esn`[12..$usn2][{#usn8}..{usn2}] As `2esn` Fieldterminator \"d_str\""), - octest_legacy:ct_string("Unwind [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}|{usn1} Is Null Is Null][Allshortestpaths(((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})))..] As `3esn` Start @usn6=Rel:``(_usn3='s_str') ,``=Node:_usn4(usn1={12}) Create (:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})-[`1esn`:_usn4|:usn2]-(`8esn` :`8esn`:`7esn`) Union Optional Match (((usn2 {``:01[{@usn5}]})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})-[`6esn`? *0..]-(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12}))) Using Scan usn2:`6esn` Using Join On #usn8 Where $_usn3[..1000] Create usn1=(((@usn5 :`8esn`:`7esn`{`6esn`:`7esn`[$0][9e12],`4esn`:.e1 Is Null Is Null})<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->(`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`))),(((usn2 :`4esn`)-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[``? *..01{`1esn`:$@usn6 Contains 07}]-(:`3esn`:@usn5{#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}))) Remove [{#usn7}[9e1..][{123456789}..]].usn1!,None(`2esn` In `1esn` =~\"d_str\" Where `` Ends With 123456789 Ends With 123.654).@usn6,All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8).`4esn` Union All Return Distinct {`4esn`:`7esn` Is Null}[{`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]}..] As #usn8 Order By 9e12[`1esn`..][$`1esn`..] Ascending,Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]] Ascending,9e1 Is Not Null Asc Match ``=Shortestpath(({`1esn`:`3esn`[{`2esn`}]})-[`3esn`?*{`8esn`:False Is Null Is Null}]->(:#usn7{_usn4:$`8esn` Contains 123456789 Contains $usn2})),usn2=Allshortestpaths(((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]}))) Using Join On #usn7,_usn4 Where $#usn8 Contains $`1esn` Contains {`6esn`}"), - octest_legacy:ct_string("Return Distinct 12.e12 Is Null Is Null As `6esn`,01 Is Null As `2esn`,$12 =~$_usn3 As #usn8 Skip Filter(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]) Ends With Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``]) Ends With Case $`7esn` Is Null Is Null When {#usn7}[9e1..][{123456789}..] Then False =~1e1 =~0.e0 Else 1000 In {`8esn`} In 01 End Limit $999 Is Not Null Create (`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]->(usn2 :`6esn`{#usn7:Count ( * ) Contains 07})<-[`4esn`?{`3esn`:\"d_str\" Is Null Is Null,usn1:0X0123456789ABCDEF[123456789]}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]}),`2esn`=(@usn5 :usn1) Create Allshortestpaths((:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 :usn1)) Union Create `4esn`=((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})),`1esn`=((({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})<-[`4esn`?:usn2|`` *0X7..]->(_usn3 :@usn5)<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8})))"), - octest_legacy:ct_string("Detach Delete $@usn5 Starts With {0} Starts With 12 Foreach(`7esn` In {@usn6} Is Null Is Null| Return {`4esn`:`7esn` Is Null}[{`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]}..] As #usn8 Order By 9e12[`1esn`..][$`1esn`..] Ascending,Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]] Ascending,9e1 Is Not Null Asc Unwind None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`])[Any(`3esn` In {7} Is Null Where {`4esn`} =~{7} =~{`7esn`})..][Extract(`2esn` In `1esn` =~\"d_str\" Where $_usn4[1.e1]['s_str']|usn1[`5esn`..$7])..] As usn2)"), - octest_legacy:ct_string("With Distinct *,9e1[2.12],$_usn4 Contains Null Contains #usn8 As #usn7 Order By (usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]})<-[ *123456789..]-(:@usn5) Is Null Is Null Desc,False[..{`1esn`}] Desc Skip 1e1[$`5esn`][{`3esn`}] Limit {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains [1.0[0X7][{`5esn`}]] Where 123.654 Contains $`4esn` Contains 1.0"), - octest_legacy:ct_string("Remove ({`5esn`:\"d_str\" Starts With 01})<-[:_usn4|:usn2{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]}]-(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})._usn4,[`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 0.e0[123.654][01]|{usn1}[0X0123456789ABCDEF]].`7esn`?,Extract(`4esn` In $`3esn` Is Not Null Where `7esn`[..2.12][..{usn1}]|9e1[..$`2esn`]).`8esn`! Create Unique `7esn`=Shortestpath(((({#usn7:2.12 Contains usn2 Contains True})-[_usn3?:`6esn`|`5esn` *0X0123456789ABCDEF]-(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})))),`5esn`=((:@usn5)-[:#usn7{`2esn`:.e12 Ends With _usn4}]-(usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)) Union Remove [`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 01234567 Is Null Is Null].`6esn`?,`8esn`:`8esn`:`7esn`,Allshortestpaths(((`4esn` {`6esn`:#usn8[..{#usn7}]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]}))).#usn7! Unwind [{@usn6} Ends With 's_str' Ends With 12.0,{12} Contains {123456789} Contains `4esn`] Starts With Filter(_usn3 In {`3esn`}[`2esn`] Where {1000} =~0 =~123.654) Starts With Case When Count ( * )[0.12...e1] Then $@usn5 =~1000 =~1000 When Null Ends With `2esn` Ends With $usn1 Then $usn2[{@usn5}] End As `4esn` Merge `4esn`=(({_usn3:.e12[@usn5..$12]})-[`3esn`:#usn7]->(@usn6 {_usn3:{#usn7} Is Not Null Is Not Null})) On Match Set ``:_usn3:_usn3"), - octest_legacy:ct_string("Create `4esn`=((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})),`1esn`=((({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})<-[`4esn`?:usn2|`` *0X7..]->(_usn3 :@usn5)<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8}))) Union All With 0.e0 In $#usn7 In $_usn3,(usn2 :@usn5)-[?{`8esn`:{7} Is Null}]->(`` )<-[`3esn`?:`3esn`|:#usn8]-(`` :#usn8:#usn8)[Reduce(usn2=`2esn` Starts With $_usn4,#usn7 In {``} Is Not Null|{7} Is Null)..][Single(#usn7 In {``} Is Not Null Where $1000[0Xa][{#usn7}])..] As `2esn` Order By $usn1 Ends With $`` Ends With $12 Desc,1e1[1000..] Ascending,{123456789}[0.e0..$123456789][0Xa..`6esn`] Descending Limit {123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4] Where `4esn` Ends With 07 Ends With {`3esn`}"), - octest_legacy:ct_string("Start _usn4=Node:`4esn`(_usn4={123456789}) Where {_usn4} In {12} In $0 Union All Create #usn7=Shortestpath(((@usn6 )<-[usn1?:`8esn` *..010]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})<-[?:`8esn` *..0x0{`2esn`:$`4esn`[Null..]}]->({#usn8:0xabc[.e0]}))),`3esn`=Shortestpath((@usn5 :`8esn`:`7esn`{`6esn`:`7esn`[$0][9e12],`4esn`:.e1 Is Null Is Null})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`4esn` {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null})-[`1esn`?:`8esn`]->(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})) Delete `2esn`[{`4esn`}][$_usn3] Union Foreach(`1esn` In {#usn7} In 0x0 In $0| Unwind $`1esn` Ends With 9e1 Ends With $123456789 As ``) Create `8esn`=Allshortestpaths((`` :#usn7)-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})),(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`8esn` :`8esn`:`7esn`) Start ``=Rel:#usn8(_usn3='s_str') ,`7esn`=Rel:`6esn`(\"d_str\")Where 0[..usn2][..{@usn5}]"), - octest_legacy:ct_string("Foreach(`2esn` In 1e1 In \"d_str\" In `7esn`| Return Distinct *,Reduce(`5esn`=$`5esn`[{`3esn`}],`3esn` In {7} Is Null|`6esn`[12..$usn2][{#usn8}..{usn2}]) In @usn5(Distinct _usn4 Starts With $_usn4 Starts With 12.e12) In None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Count ( * ) Ends With 12.0) As #usn8 Order By {7}[..1.0][..9e0] Asc Skip {_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] Limit 0 In $_usn4 In $@usn5) Unwind $@usn5 Is Not Null Is Not Null As `8esn` Return Distinct *,`4esn`[`5esn`..12][@usn6..False],Case 's_str' In 00 When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null When $@usn5 Starts With {0} Starts With 12 Then {usn2} Else {#usn7}[`2esn`..] End As `4esn` Order By 123456789[{123456789}..'s_str'] Descending Limit 9e0 Union Return 12.e12 Is Null Is Null As `6esn`,01 Is Null As `2esn`,$12 =~$_usn3 As #usn8 Order By (`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(`5esn` :@usn5{`8esn`:{usn2} =~12})[All(`` In `` Is Not Null Is Not Null Where `3esn`[{0}][usn1])] Descending Skip [0x0 Is Null,{``} Ends With `7esn` Ends With 0.0,0X7[0e0..`7esn`][1000..0e0]] =~Any(`5esn` In \"d_str\" Is Null Is Null Where $`6esn` Is Null) =~[$12[True..][{0}..],usn1[`5esn`..$7]] Start @usn6=Node:#usn7(@usn6={#usn8}) ,`4esn`=Relationship:@usn6({12})Where \"d_str\" Starts With 01 Remove ``:`1esn`,[#usn7 In {``} Is Not Null Where {0}[01][`7esn`]|0e0 Starts With 1000 Starts With #usn7].#usn7,{usn1:`1esn` Contains {usn2} Contains $#usn8}._usn3?"), - octest_legacy:ct_string("Return *,Allshortestpaths((:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))[[{_usn4} In {12} In $0,$`5esn`[2.12..],12[1.e1..{_usn3}][1.e1..1.0]]][[12e12 Is Not Null Is Not Null]] Skip 1.e1[Count ( * )..] Limit 0e0 Starts With 1000 Starts With #usn7 Create `8esn`=((`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]->(`` )<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})) Create ``=Allshortestpaths(({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})) Union All Unwind $#usn7[..{`5esn`}][..9e12] As `3esn` Foreach(`` In Reduce(_usn4=01[{`2esn`}..{@usn6}][$`2esn`..0.0],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|0.12 =~$0 =~$0)[Shortestpath((((`1esn` {@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00})-[`6esn`?:`3esn`|:#usn8]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))))..[{12}[{7}][$123456789]]]| Remove 2.12.`7esn`!,{`1esn`:$0[..9e1]}.usn2!,Reduce(usn2=#usn7 Is Null Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{_usn3}[12.e12]).@usn6?) Foreach(_usn3 In {@usn6} Starts With `5esn`| Remove {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}}.`6esn`!,All(`5esn` In $999[0.0..] Where $`5esn`[..$`5esn`][..$12])._usn4?,(:@usn6:#usn8$`5esn`)<-[`1esn`?:usn1|@usn6 *0..]-(:#usn8:#usn8{@usn6:$_usn3[..1000]})-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :_usn3:_usn3{`7esn`:$`6esn`[123456789..12][True..{`3esn`}],`5esn`:0X0123456789ABCDEF[123456789]}).`3esn` Start `1esn`=Rel:`4esn`(`4esn`='s_str') Where 12.e12[`3esn`]) Union All Return Distinct Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where @usn6 Is Null Is Null)[(`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})..] As `3esn`,{`3esn`} In 0X7 Skip `1esn` In .e0 In {`3esn`} Limit Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End Optional Match `8esn`=Allshortestpaths(((`` {usn2:0X0123456789ABCDEF[123456789]})-[?{`8esn`:{7} Is Null}]->(`4esn` {`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})-[]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]}))),@usn5=((`5esn` {`8esn`:1000[Null..{123456789}]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})-[:@usn6|`6esn`{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}]->(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})) Using Scan `4esn`:`5esn` Using Join On #usn8 Where {#usn8} Is Null Return {_usn4:$_usn4[1.e1]['s_str']} Is Null As _usn3,[$0] In [`2esn` In `1esn` =~\"d_str\" Where {0} Ends With $_usn3 Ends With $`7esn`|{999} Contains .e0 Contains 12.0] In None(`2esn` In `1esn` =~\"d_str\" Where {`7esn`}[..$@usn5][..$#usn8]) As usn1,Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {`3esn`} Is Not Null Is Not Null)[{@usn6:1.0[$`1esn`..][$123456789..]}] As `6esn` Order By $`3esn`[..12.0] Asc Skip 0.0[$0][{@usn5}] Limit {``} Starts With $`2esn` Starts With `1esn`"), - octest_legacy:ct_string("Load Csv With Headers From [`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`]|`8esn` Contains $usn1 Contains $12][Filter(_usn3 In {`3esn`}[`2esn`] Where #usn7 Contains _usn3 Contains {`3esn`})..(:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})-[usn2?:`7esn` *123456789..{_usn4:$@usn5 Starts With {0} Starts With 12,`2esn`:{7}[..12e12][..Count ( * )]}]->({_usn3:False =~1e1 =~0.e0,_usn3:{999} Starts With $999})] As `5esn` Fieldterminator \"d_str\" Create Unique Shortestpath((_usn4 )<-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:usn2)<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})),@usn5=(((usn2 :`4esn`)-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[``? *..01{`1esn`:$@usn6 Contains 07}]-(:`3esn`:@usn5{#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}))) Foreach(`4esn` In 1000[0X7..2.12]| Remove ({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)._usn4?) Union Load Csv With Headers From 9e12[`6esn`..12.0] As @usn6 Union All Merge ``=Allshortestpaths(((:`3esn`:@usn5$7))) Detach Delete 123.654[$`1esn`]"), - octest_legacy:ct_string("Create Unique @usn5=Allshortestpaths(({`1esn`:$`8esn`[1000..0Xa]})),(:`1esn`{``:.e1 Is Null Is Null})<-[#usn8?:usn1|@usn6]->(`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`}) Delete Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) Is Not Null Is Not Null,$@usn5[..12e12][..$123456789] Create _usn4=(`` :#usn8:#usn8) Union All Create @usn5=Shortestpath(((`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8}))),_usn3=Allshortestpaths((`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})) Match (`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Using Scan `6esn`:`3esn` Using Scan _usn4:`7esn` Where 0[{usn2}..][$`6esn`..] Return Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7) Contains Filter(`` In `` Is Not Null Is Not Null Where 0e0 Starts With 1000 Starts With #usn7) Contains Shortestpath((($#usn8)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]}))) As #usn7 Order By 2.12 =~Count(*) Descending,`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) Contains Reduce(`7esn`=$_usn4 Ends With usn1 Ends With $0,`4esn` In $`3esn` Is Not Null|`7esn` In {123456789} In `1esn`) Asc Union All Start `6esn`=Node:``({`1esn`}) ,usn2=Node:_usn4(``={#usn7})Where $`5esn`[{`3esn`}] Detach Delete Single(_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..])[..All(`` In `` Is Not Null Is Not Null Where {`7esn`} Is Null)],{123456789}[0xabc..],Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`]) In {usn2:{`3esn`} Is Not Null Is Not Null} In {`4esn`:False,_usn4:$`7esn` Is Null Is Null} Create `4esn`=Allshortestpaths(((usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})<-[`2esn`?:`7esn`]->(`7esn` {`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})))"), - octest_legacy:ct_string("Match Allshortestpaths(((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(@usn5 :`4esn`)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]}))) Using Index `1esn`:@usn5(#usn8) Merge ``=(`1esn` {``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Start `8esn`=Rel:@usn6(`7esn`={`8esn`}) ,_usn4=Node( {`1esn`})Where 0[1.e1..12e12] Union All With *,.e0 Ends With 0.12,12.e12[`3esn`] As #usn7 Skip False Contains {`6esn`} Create Unique Allshortestpaths((@usn5 {`3esn`:.e1[..usn2][..`8esn`]})<-[usn2:`7esn`]->(:usn1{_usn3:{#usn7}[`2esn`..]})-[?:usn2|``$#usn7]-(#usn8 :``:#usn8{`7esn`:9e1[$usn2],_usn4:$_usn4 Contains Null Contains #usn8})),({`4esn`:`7esn` Is Null}) Return {12} Contains {123456789} Contains `4esn` Union Foreach(usn1 In 0Xa[..{`4esn`}][..12.0]| Return *,Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7) In [{_usn3}[..$12][..0.12],usn1 Is Null] In [#usn8 In 7[..999][..{#usn8}] Where $_usn3 Contains 999 Contains \"d_str\"] Limit [`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999}] Ends With usn1(Distinct 1000 In {`8esn`} In 01,{_usn3}[..\"d_str\"][..`5esn`]) Ends With Reduce(_usn4=1000[Null..{123456789}],`5esn` In $999[0.0..]|9e1 In $`3esn` In $@usn6) Remove Reduce(`8esn`={`7esn`}[..$@usn5][..$#usn8],`3esn` In {7} Is Null|0.12[$`3esn`..$_usn3][12.0..usn1]).`1esn`,Reduce(`4esn`=$999 Is Not Null,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|$`7esn`['s_str']).``?,(@usn5 {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`}).#usn7) With Distinct (`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(`5esn` :@usn5{`8esn`:{usn2} =~12})[All(`` In `` Is Not Null Is Not Null Where `3esn`[{0}][usn1])] As _usn4,$_usn4[1.e1]['s_str'] As #usn8,usn2[$7..$123456789][$@usn6..$7] Order By 9e1[0.0..] Desc,0.12 =~$0 =~$0 Desc Limit {_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] Where 0X7 =~9e1 Unwind .e0 Starts With $`` Starts With $usn2 As _usn3"), - octest_legacy:ct_string("Start `7esn`=Rel:_usn4(``={#usn7}) ,`8esn`=Relationship:`4esn`(`1esn`={`2esn`}) Match @usn5=Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))),`2esn`=Allshortestpaths(((#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})-[`8esn`?:@usn6|`6esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}))) Using Scan `4esn`:`8esn` Using Join On `8esn`,`2esn` Where {_usn3}[..$12][..0.12] Match Shortestpath((`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})),``=Allshortestpaths((`2esn` :`8esn`:`7esn`)-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})) Using Scan _usn3:`1esn` Where 12.0[123.654][Count(*)]"), - octest_legacy:ct_string("Return {123456789} Contains $#usn8 As `3esn`,{7}[..12e12][..Count ( * )],$0[$`1esn`..07] Order By 0e0[$1000][{usn1}] Descending,1.0 Starts With 12e12 Starts With {`5esn`} Desc Skip $`5esn` In 0.e0 Union Load Csv With Headers From `6esn`[..$@usn6] As @usn6 Fieldterminator 's_str' Unwind {`2esn`}[$`4esn`][$`5esn`] As ``"), - octest_legacy:ct_string("Create `1esn`=Shortestpath((((`2esn` :`8esn`:`7esn`)<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})))),(((:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[:`6esn`|`5esn` *123456789..]-(#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}))) Union All Optional Match (:`5esn`{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}),((`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[`2esn`]->({`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}})) Using Index `6esn`:@usn5(`2esn`) With Distinct *,0Xa Is Null Is Null As `1esn` Order By {7}[$`5esn`][{_usn3}] Asc,.e1 Is Null Is Null Descending,usn1[`5esn`..$7] Desc Union Merge `6esn`=(@usn5 {`7esn`:$`6esn`[010..]})-[?:`8esn`{`3esn`:1.0 In Count(*)}]-(`4esn` :#usn7{``:$#usn7[@usn5..{1000}][1.e1..7]})-[`5esn`?:@usn5{`4esn`:0Xa =~Null =~$``}]->(:#usn7{usn2:{usn1} Ends With $0,#usn8:`5esn` Starts With $`2esn` Starts With $1000}) On Create Set `4esn`+=(`1esn` :#usn8:#usn8)-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})[..(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})][..`5esn`({12} Ends With 1.0 Ends With .e0)],Any(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`])._usn4! ={@usn6}[{999}..][00..] On Match Set _usn3+={_usn3}[12.e12],`3esn`+=@usn5 =~{`5esn`} =~`5esn`,#usn8 =[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*))"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From $`4esn` =~.e12 As `4esn` Fieldterminator \"d_str\""), - octest_legacy:ct_string("Foreach(_usn4 In {`2esn`} Is Not Null| Match usn2=(`7esn` {`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2}),`4esn`=Allshortestpaths((({usn1:`5esn`[_usn4..]})-[usn1?:_usn3|_usn3]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))) Using Join On #usn7,_usn4 Using Join On `8esn`,@usn5 Where `3esn`[{`2esn`}]) Union All Return *,12.0 Ends With True Skip {`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}[Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End..[`3esn` In {7} Is Null Where {123456789} Contains $#usn8|#usn7 =~Count ( * ) =~``]][`7esn`(9e1[1000][{123456789}]).._usn3(0.12 =~$0 =~$0)] With *,{_usn4:Count ( * )[True..][{#usn7}..],``:{``} Ends With `7esn` Ends With 0.0} In (usn2 {``:01[{@usn5}]})<-[?:_usn4|:usn2{`8esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],``:_usn3 Contains $123456789 Contains ``}]->(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(:_usn4{_usn4:{7} In `2esn`}) In {`4esn`:`7esn` Is Null} As `2esn`,`5esn` Is Null Order By Reduce(@usn6=$1000[999],`8esn` In 01[2.12..`8esn`]|#usn7 Is Null Is Null)[_usn3(0.12 =~$0 =~$0)..][count($12 Ends With 07 Ends With $123456789,`8esn`[{123456789}..])..] Desc Skip `5esn`({12} Ends With 1.0 Ends With .e0) Contains `3esn`(`5esn`[{`4esn`}..`2esn`],9e1[2.12..{#usn8}]) Contains (@usn5 :#usn7)<-[``?:`3esn`|:#usn8{`1esn`:.e0[..$`8esn`]}]-(`5esn` {`4esn`:01 Is Null})<-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(_usn4 ) Limit {@usn5} =~Count ( * ) =~12.0 Start `2esn`=Node:``({`1esn`}) "), - octest_legacy:ct_string("Match @usn5=Allshortestpaths((`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[:`3esn`|:#usn8 *7..12{@usn5:_usn4 Starts With $_usn4 Starts With 12.e12}]->(`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null})),`2esn`=Shortestpath(((#usn8 {_usn4:00[`2esn`..12][123456789..0.e0],`8esn`:0x0[`4esn`..'s_str']}))) Using Join On `5esn`,#usn7 Create ((@usn5 :usn1)<-[`5esn`? *7..12{`5esn`:{999},_usn3:$`5esn`[2.12..]}]->(:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})-[_usn4?:_usn4|:usn2 *..999]-({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})),``=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))) Union All Unwind 123456789 Ends With 0.12 Ends With `` As _usn3 Remove [{12} Contains {123456789} Contains `4esn`,1.e1[`8esn`][00],1.0[$`1esn`..][$123456789..]]._usn4?,Reduce(_usn3=123456789[#usn8..False],_usn3 In {`3esn`}[`2esn`]|123.654 Contains $`4esn` Contains 1.0).#usn8? Remove Case When $#usn8 Ends With $`2esn` Ends With $@usn6 Then $1000[`2esn`..`5esn`][1e1..1.e1] Else {`4esn`} =~{7} =~{`7esn`} End._usn3?,{`8esn`:{usn2} =~12}.@usn5,`2esn`(Distinct 7[$`8esn`..123456789][$usn1..$usn1],1e1 In 123.654 In `3esn`)._usn4!"), - octest_legacy:ct_string("With Distinct *,{``}[$`8esn`..] As `6esn` Order By None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {@usn6}[{999}..][00..]) Ends With Shortestpath((`6esn` {_usn4:0Xa =~Null =~$``})<-[``? *0X7..]->(`` :`1esn`)) Ends With Reduce(_usn3={7}[..1.0][..9e0],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|`1esn` Contains {usn2} Contains $#usn8) Asc,12.e12[7..$`6esn`] Desc,$usn1[.._usn4][..False] Asc Limit $#usn8[Count ( * )] Create Shortestpath(((:#usn8:#usn8{_usn4})<-[usn1?:`7esn`]-(:usn1{usn1:{`6esn`}}))),`7esn`=((:`3esn`:@usn5$7)-[ *0xabc..{usn2:{12} Is Not Null,`6esn`:``[$`2esn`]}]-(`4esn` {`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})<-[?{#usn8:9e12[`1esn`..][$`1esn`..]}]-(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})) Start ``=Rel:`7esn`(usn2={`6esn`}) ,`2esn`=Node:@usn5({`1esn`}) Union Start `3esn`=Node:``(_usn3='s_str') ,`7esn`=Node:_usn4(#usn7=\"d_str\") Foreach(`7esn` In {@usn6} Ends With 's_str' Ends With 12.0| With Distinct `7esn` Is Null As `7esn`,count($123456789 Is Null Is Null,{`7esn`} Starts With $123456789 Starts With $@usn6)[`8esn`(Distinct `8esn` =~0xabc =~010)][Case When `2esn`[..$#usn8][..Count(*)] Then False =~1e1 =~0.e0 When {`4esn`} Starts With $usn2 Starts With $1000 Then {``} Is Not Null End] As @usn5,1000 In `7esn` In 9e12 As `6esn` Limit $`` Is Not Null Match `2esn`=Allshortestpaths((({`3esn`:.e1[..usn2][..`8esn`]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`1esn`{_usn4:{999}}))),#usn7=Shortestpath((((#usn7 :`8esn`:`7esn`{`5esn`:1.0 In Count(*)})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000})))) Using Scan ``:_usn4 Using Scan ``:`2esn`) Create ``=Shortestpath(({`7esn`:{999}})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})),``=(((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})))"), - octest_legacy:ct_string("Load Csv With Headers From $`8esn` Is Not Null Is Not Null As #usn8 Union Create `8esn`=Allshortestpaths((`` :#usn7)-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})),(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`8esn` :`8esn`:`7esn`) Union All Create Unique _usn3=(({@usn6:01234567 Ends With .e12 Ends With $#usn7,`4esn`:12.e12[`3esn`]})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(#usn7 :`7esn`:_usn3)),(((#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})<-[`2esn`?:`7esn` *0X7..]-(_usn4 :usn2{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}))) Create ``=Shortestpath(({`1esn`:`3esn`[{`2esn`}]})-[`3esn`?*{`8esn`:False Is Null Is Null}]->(:#usn7{_usn4:$`8esn` Contains 123456789 Contains $usn2})),@usn6=Allshortestpaths(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})))"), - octest_legacy:ct_string("With Distinct All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)],None(#usn8 In 7[..999][..{#usn8}] Where 2.12['s_str'..$12][{`1esn`}..`2esn`])[[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 12e12 Ends With {usn1}]][[$12 Ends With 07 Ends With $123456789,$@usn5 =~1000 =~1000,.e12[@usn5..$12]]] As @usn5 Order By True =~{`5esn`} Asc,\"d_str\" Contains {123456789} Contains 01 Asc Where {999} Starts With {0} Union All Create Unique ((usn2 :@usn5)<-[? *00]->(@usn5 :usn1)),Allshortestpaths((((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})))) Create `6esn`=Shortestpath((({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})<-[_usn4?:`` *0X0123456789ABCDEF{`5esn`:$123456789 Is Null Is Null,@usn6:{12} Ends With 1.0 Ends With .e0}]->(:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null})<-[``?:#usn8|`1esn`{#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1}]->({@usn5:12e12 Contains 0Xa,_usn4:01[2.12..`8esn`]}))),usn2=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})<-[{`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}]->({`7esn`:7[{0}..{_usn4}]})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-({#usn8:0xabc[.e0]})))) Start `6esn`=Node:``('s_str') Where 12.e12[7..$`6esn`] Union Start `5esn`=Relationship(*) ,`7esn`=Rel:#usn8({_usn3}) Match ((_usn4 )) Using Index `3esn`:@usn5(`2esn`) Using Scan _usn3:`1esn` Where {usn1}[0X0123456789ABCDEF]"), - octest_legacy:ct_string("Foreach(_usn3 In 1.0 =~'s_str' =~{`2esn`}| Detach Delete 07 Is Not Null Is Not Null) With Distinct *,$`7esn`['s_str'] Limit Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) Is Not Null Is Not Null Where .e12 In 0.e0 In {12} Foreach(@usn5 In {7}[..12e12][..Count ( * )]| Load Csv With Headers From 0e0 Starts With `2esn` Starts With $`` As `3esn` Fieldterminator \"d_str\" Detach Delete {123456789} Contains $#usn8) Union Match (:#usn7{usn2:{usn1} Ends With $0,#usn8:`5esn` Starts With $`2esn` Starts With $1000})-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(`1esn` :_usn3:_usn3{#usn7:$@usn5 Is Not Null Is Not Null}),`7esn`=((@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[`4esn`?:_usn4|:usn2{_usn4:$usn2[{@usn5}],`2esn`:usn1[`5esn`..$7]}]->({``:$`8esn` =~{1000}})<-[?:`7esn`{`3esn`:{#usn8}[010]}]-(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})) Union All Remove Reduce(`8esn`={`7esn`}[..$@usn5][..$#usn8],`3esn` In {7} Is Null|0.12[$`3esn`..$_usn3][12.0..usn1]).`1esn`,Reduce(`4esn`=$999 Is Not Null,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|$`7esn`['s_str']).``?,(@usn5 {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`}).#usn7"), - octest_legacy:ct_string("Delete 0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,$12 Starts With $`8esn` Starts With $`1esn`,123456789[_usn4..][{999}..] Union All Merge Allshortestpaths((_usn4 )<-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:usn2)<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})) Start `8esn`=Rel:`7esn`(_usn4={12}) Where 0.12 Starts With $`5esn` Starts With 12 Merge `1esn`=((`8esn` )) On Create Set usn1:`4esn`,usn2+=0Xa[2.12],`7esn`:usn1 On Create Set `4esn` =[1000 =~@usn6 =~0x0] Starts With {#usn8:$`7esn` =~{`8esn`} =~$usn1,`7esn`:0xabc[01..{999}][{7}..{`7esn`}]} Starts With `7esn`(Distinct 123.654[`3esn`..])"), - octest_legacy:ct_string("Create ((@usn6 ))"), - octest_legacy:ct_string("Foreach(`5esn` In $`5esn`[..$`5esn`][..$12]| Load Csv With Headers From 0e0[07] As _usn4 Fieldterminator 's_str' Create _usn4=(_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :_usn3:_usn3{`7esn`:$`6esn`[123456789..12][True..{`3esn`}],`5esn`:0X0123456789ABCDEF[123456789]})-[?{usn1:0[`7esn`..]}]->(`2esn` :`6esn`),@usn5=(((:_usn4)<-[:`6esn`|`5esn` *..010]-(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})<-[`4esn`?:`7esn` *0..{`2esn`:00[`2esn`..12][123456789..0.e0]}]->(`1esn` :_usn3:_usn3)))) Union All Foreach(`` In 010 =~{usn2}| Load Csv With Headers From 0X7[..2.12] As #usn8 Fieldterminator \"d_str\") Start #usn8=Rel:usn1(\"d_str\") ,`2esn`=Node:_usn4(#usn7=\"d_str\")"), - octest_legacy:ct_string("Foreach(`4esn` In {`6esn`}| Create Unique `8esn`=(_usn4 :usn2{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]})) Create Unique (@usn6 :`1esn`)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``}),_usn3=(((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5))) Union With Distinct `5esn`[_usn4..],$123456789 In 0X0123456789ABCDEF In 0.e0 Where 7[True..][2.12..]"), - octest_legacy:ct_string("Start #usn7=Rel:_usn4(\"d_str\") Where `3esn`[`3esn`..][#usn8..] Unwind 1e1 Contains 0e0 As _usn3 Optional Match @usn6=Shortestpath((((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``})))),Shortestpath(((@usn6 :`8esn`:`7esn`)<-[`6esn`?:`4esn` *..01]->(`3esn` :#usn7{usn2:12.0 =~999 =~$_usn3,@usn6:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?]-(`7esn` :`5esn`))) Where _usn3[_usn3..][12.e12..]"), - octest_legacy:ct_string("Create Unique @usn6=((`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})) With Distinct 0e0[..010] As _usn3,Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..]) In Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null) In Filter(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {#usn8}[.._usn4][..$`3esn`]) As `` Skip {12}[{7}][$123456789] Union Merge `5esn`=(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]->(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[`1esn`?:`8esn` *123456789..]->(#usn7 :`6esn`$1000) On Create Set Extract(`3esn` In {7} Is Null Where $#usn7[@usn5..{1000}][1.e1..7]|$7 Is Not Null Is Not Null).`4esn`! =Case When {``} Starts With $`2esn` Starts With `1esn` Then $`5esn` Starts With $0 Starts With {0} End[None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e1 Is Not Null)..[`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1]],[12[1.e1..{_usn3}][1.e1..1.0]].`8esn`? ={`4esn`:{`4esn`} =~{7} =~{`7esn`},`8esn`:$#usn7[#usn7..]} Is Null Is Null,usn1 =$_usn4 Contains Null Contains #usn8 Load Csv With Headers From 0 In `2esn` In 010 As `1esn` Fieldterminator 's_str' Match ``=(`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}),(#usn8 :@usn6:#usn8) Using Index `7esn`:usn2(`6esn`) Union Create (((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6}))),#usn8=(`5esn` :`4esn`)<-[_usn4 *..999]->({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5}) Optional Match Shortestpath((((:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[`2esn`?{`3esn`:{123456789} Is Null Is Null}]->(usn2 :#usn7)<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) Unwind Reduce(`6esn`=@usn5 Is Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{12} Ends With 1.0 Ends With .e0)[Filter(_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null)..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`|`7esn`[..2.12][..00])] As ``"), - octest_legacy:ct_string("Load Csv With Headers From {0}[\"d_str\"..07][0..'s_str'] As @usn5 Fieldterminator \"d_str\" Match _usn3=Allshortestpaths((`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})) Where {#usn7}[..9e12][..`8esn`] Remove Reduce(_usn4=12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],#usn7 In {``} Is Not Null|$`8esn`).@usn5,Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {123456789}[0xabc..]|{7}[$``][{@usn6}]).#usn7 Union All Start @usn5=Relationship:@usn5({1000}) Where $_usn4 Starts With 1e1 Unwind $1000 In $1000 In $`3esn` As usn2 Union All Foreach(@usn5 In {7}[..12e12][..Count ( * )]| Load Csv With Headers From 0e0 Starts With `2esn` Starts With $`` As `3esn` Fieldterminator \"d_str\" Detach Delete {123456789} Contains $#usn8) Remove `4esn`(#usn7 =~Count ( * ) =~``).#usn8!,{`4esn`:$`4esn`[Null..],`3esn`:.e12 Ends With _usn4}.`4esn`,[usn1 In @usn5 =~{`5esn`} =~`5esn` Where $0|1.0[0X7][{`5esn`}]]._usn3 Start `8esn`=Rel:`7esn`(_usn4={12}) ,`1esn`=Node:`2esn`(#usn8={123456789})"), - octest_legacy:ct_string("Remove (_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[? *00]->(@usn5 :usn1)<-[?{`3esn`:7[{0}..{_usn4}]}]-(#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})._usn4!,Case $#usn8[Count ( * )] When .e1[{`7esn`}..{_usn4}] Then {7} Is Null End.`` Detach Delete $1000 =~$`2esn`,00[Count(*)..] Unwind 1e1 Contains 0e0 As _usn3 Union Unwind $12[..{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}] As usn1"), - octest_legacy:ct_string("Return Shortestpath(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})))[#usn7(Distinct $`5esn`[`3esn`..])..{``:0Xa Starts With {`6esn`} Starts With $usn1}] Limit Single(`3esn` In {7} Is Null Where Count ( * ) Contains 07) Contains None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Delete 0x0 =~$usn2 Union Start ``=Rel:#usn8(_usn3='s_str') ,`5esn`=Rel:`8esn`({usn1})Where `8esn`[{123456789}..] Return Distinct Filter(`4esn` In $`3esn` Is Not Null Where {`6esn`}) =~{_usn3:{`3esn`} Is Not Null Is Not Null} As `7esn`,.e0[12.e12..] As `3esn`,0e0 =~`6esn` =~123456789 As @usn5 Skip {12} Is Not Null Limit $@usn5 Starts With $1000 Foreach(`2esn` In $@usn5 Starts With {@usn5} Starts With 9e0| Return Distinct 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] Skip $`5esn`[2.12..] Limit {_usn4}[`3esn`][12.0] Create Unique ((({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})<-[`5esn`:#usn7 *00{#usn7:{999} Starts With {0}}]-(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]})-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))),Allshortestpaths((@usn6 :_usn3:_usn3)-[?{`3esn`:7[{0}..{_usn4}]}]->(`7esn` :_usn3:_usn3)-[?:usn2|`` *..010{`4esn`:{`4esn`} Starts With $usn2 Starts With $1000,`7esn`:$@usn6 Contains 07}]->(:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}))) Union All Load Csv From 9e12[0.0..][$12..] As _usn4 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Load Csv From {#usn8}[$@usn5..usn1][$1000..0xabc] As usn2 "), - octest_legacy:ct_string("Merge ((#usn7 {`5esn`:00 Starts With 0xabc,`6esn`:0Xa =~Null =~$``})) On Match Set Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0).``? ={@usn6}[{999}..][00..] Match #usn7=(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[#usn8]-(:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}) Using Index #usn8:`2esn`(`5esn`) Using Index `3esn`:`5esn`(#usn7) Union Unwind Shortestpath((((`7esn` {`5esn`:123.654 Contains $`4esn` Contains 1.0,`8esn`:123.654 =~$usn2 =~{999}})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[`2esn`?:`1esn` *00]->({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})))) In (usn2 :@usn5)-[?{`8esn`:{7} Is Null}]->(`` )<-[`3esn`?:`3esn`|:#usn8]-(`` :#usn8:#usn8) In (@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8}) As ``"), - octest_legacy:ct_string("Unwind $999 Is Not Null As #usn7 Union All Foreach(`7esn` In 1.0[0X0123456789ABCDEF]| Load Csv From $`3esn` In 123.654 In #usn8 As `` Fieldterminator \"d_str\" Create (({@usn5:{usn2}[.e0..$999]})),Allshortestpaths(((:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]})))) Union All Create Unique `2esn`=((`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]})-[{`7esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4]}]-(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)),`6esn`=Shortestpath(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null}))) With *,Count ( * )[$_usn4..$`4esn`] As _usn4,@usn6[#usn7][#usn8] As `4esn`"), - octest_legacy:ct_string("Return Distinct *,`4esn`[`5esn`..12][@usn6..False],Case 's_str' In 00 When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null When $@usn5 Starts With {0} Starts With 12 Then {usn2} Else {#usn7}[`2esn`..] End As `4esn` Order By 123456789[{123456789}..'s_str'] Descending Limit 9e0 Union All Optional Match `6esn`=Allshortestpaths(((_usn3 :`3esn`:@usn5))) Using Scan `3esn`:`5esn` Using Scan `6esn`:`3esn`"), - octest_legacy:ct_string("Unwind 07 Contains 0X7 Contains $`8esn` As `6esn` Unwind (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8)[Reduce(`7esn`=7[$`2esn`..{`5esn`}],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$_usn4[0e0..][False..])..({``:00 Starts With 0xabc,`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})][{}..{@usn6:`4esn`[..010][..{12}]}] As _usn4 Create Unique (`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[`8esn`?:@usn6|`6esn`]-(`2esn` :`6esn`) Union All Create Unique @usn6=Shortestpath(((:@usn6:#usn8{`4esn`:$`8esn`[..00]})<-[_usn4?:_usn4|:usn2 *00]->(:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))),#usn8=Shortestpath((#usn8 :@usn5)) Union Unwind 0.12[`2esn`..{`6esn`}] As `6esn` With Distinct *,1000[0X7..2.12] As `4esn` Limit {7}[$7..$``][{``}..{7}] Where _usn3 Starts With 12.e12 Starts With 0.12 Unwind `7esn`(usn2 Is Null)[Case {usn1}[0X0123456789ABCDEF] When $`` Then `8esn` Contains $usn1 Contains $12 Else 's_str'[00][{`5esn`}] End] As @usn6"), - octest_legacy:ct_string("Load Csv From False =~$7 =~2.12 As `6esn` Union All Unwind Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789])[`7esn`(Distinct Count ( * ) =~$usn2 =~$usn2)] As @usn6 Create ``=(((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))),@usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})) Union Create @usn6=((`` :`7esn`:_usn3)),((usn2 :`4esn`)-[_usn3:#usn8|`1esn`{_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]}]->(@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:`5esn` *0..{_usn4:7[$`2esn`..{`5esn`}]}]->()) Merge `8esn`=Allshortestpaths((`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))"), - octest_legacy:ct_string("Remove Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0X0123456789ABCDEF =~1e1 =~{`4esn`}|1.0 Contains $_usn4).`5esn`?,Reduce(`5esn`=12[1.e1..{_usn3}][1.e1..1.0],#usn7 In `2esn`[..$#usn8][..Count(*)]|12.e12[7..$`6esn`]).`5esn`!,`4esn`:`6esn` Detach Delete [#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01|{0} Ends With $_usn3 Ends With $`7esn`] Contains Case {0}[12.0..0Xa][$`5esn`..{_usn3}] When .e1 Ends With 1e1 Ends With @usn5 Then 01[{`2esn`}..{@usn6}][$`2esn`..0.0] Else 123.654[...e0] End,9e0[{0}..{`3esn`}][\"d_str\"..0Xa],``[12.0..0e0][{`5esn`}..`7esn`] Union Detach Delete 1.0[00..] Foreach(@usn5 In 0.12 In _usn3 In {0}| Match `2esn`=Allshortestpaths((({`3esn`:.e1[..usn2][..`8esn`]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`1esn`{_usn4:{999}}))),#usn7=Shortestpath((((#usn7 :`8esn`:`7esn`{`5esn`:1.0 In Count(*)})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000})))) Where $@usn6 Contains 07) Union Match Allshortestpaths((`1esn` {_usn4:1.e1[$`1esn`..@usn6][$0..$_usn3],#usn8:$@usn5[..12e12][..$123456789]})<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})),usn2=({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->(`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[:`3esn`|:#usn8 *1000..00{usn1:0[`7esn`..]}]-(usn1 :`3esn`:@usn5) Where `4esn`[..Count ( * )][..{#usn7}] Start `7esn`=Rel:_usn4(``={#usn7}) Where 00 Starts With 0xabc Start #usn7=Node:@usn6({_usn4}) "), - octest_legacy:ct_string("Merge ((`3esn` :usn2)) On Match Set _usn3+=$`3esn` Is Not Null Is Not Null,`3esn` ={`4esn`} Ends With {usn2} Ends With {999},{@usn6:{999} Starts With $999,`4esn`:$usn1[{`5esn`}][$`6esn`]}.@usn5? =$usn1[..{`6esn`}] Union All Match `2esn`=({#usn7:2.12 Contains usn2 Contains True})-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})-[:#usn7{`2esn`:.e12 Ends With _usn4}]-(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5}),`7esn`=Allshortestpaths((:@usn5$`5esn`)<-[usn1?:`8esn` *..010]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})<-[ *1000..00{#usn7:Count ( * ) Contains 07}]->(usn1 :`3esn`:@usn5)) Using Scan `3esn`:`2esn` Using Index `6esn`:#usn8(`2esn`) Where 01[{@usn5}]"), - octest_legacy:ct_string("Merge Shortestpath(((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null}))) On Create Set `2esn`+={0} In $_usn3,`8esn` ={#usn8} Is Not Null,`1esn`($1000 Is Null).#usn8? =`5esn` Ends With {``} Ends With 12.e12 Union Create `8esn`=Shortestpath(({`1esn`:`3esn`[{`2esn`}]})-[`3esn`?*{`8esn`:False Is Null Is Null}]->(:#usn7{_usn4:$`8esn` Contains 123456789 Contains $usn2})),@usn6=Allshortestpaths(((@usn5 :`4esn`))) Foreach(usn2 In Reduce(usn1=$123456789 Is Null Is Null,_usn3 In {`3esn`}[`2esn`]|Null[$`5esn`][False])[Case 0e0 Contains Null When 0X7[`7esn`][123.654] Then 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] End..][[9e1[$usn2],{`4esn`}[$123456789..][$#usn7..]]..]| Delete Case When {1000}[$`4esn`][\"d_str\"] Then `4esn`[``] When {usn2}[.e0..$999] Then {_usn3}[12.e12] Else `4esn`[``] End[Shortestpath((@usn5 {`7esn`:$`6esn`[010..]})-[?:`8esn`{`3esn`:1.0 In Count(*)}]-(`4esn` :#usn7{``:$#usn7[@usn5..{1000}][1.e1..7]})-[`5esn`?:@usn5{`4esn`:0Xa =~Null =~$``}]->(:#usn7{usn2:{usn1} Ends With $0,#usn8:`5esn` Starts With $`2esn` Starts With $1000}))..],$`4esn`[Null..],Case 0x0[`4esn`..'s_str'] When 0.e0 Ends With $#usn7 Ends With $7 Then 0X7[..2.12] When {123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4] Then 0.e0[123.654][01] Else {_usn3}[..$12][..0.12] End[[`1esn`[..{@usn6}][..$123456789]]..] Load Csv From 1e1 Contains Count ( * ) As usn2 Fieldterminator \"d_str\")"), - octest_legacy:ct_string("Unwind 2.12 Contains usn2 Contains True As `4esn` With Distinct Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn`,{``}[$#usn8..$usn1] As @usn6,None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`]) Is Not Null Order By $0[..9e1] Descending,{usn1}[Count(*)..] Desc Skip (`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})-[:`6esn`|`5esn`{`8esn`:$0 Ends With 12.0}]->(`5esn` {`4esn`:7[$`2esn`..{`5esn`}],@usn6:{7} Is Null}) Contains Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) Contains Case 9e12 Is Not Null Is Not Null When 0[..usn2][..{@usn5}] Then 0e0 Ends With 1.e1 Ends With $`4esn` Else usn1 Is Null End Where $`5esn` In $`6esn` Load Csv With Headers From {0}[\"d_str\"..07][0..'s_str'] As @usn5 Fieldterminator \"d_str\""), - octest_legacy:ct_string("With Distinct *,07[$#usn7..{1000}],0X0123456789ABCDEF =~1e1 =~{`4esn`} Order By $`5esn`[2.12..] Asc Where @usn5 Is Null Create ((:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})),#usn7=((:`5esn`{``:1.0[0e0..0.e0]})) Union All Start @usn5=Rel:#usn8({_usn3}) Where $`6esn` Is Null Detach Delete ({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}),`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) In [#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]|@usn6 Contains $1000 Contains {`7esn`}] In Filter(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]),usn2[{7}] Create @usn5=Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})))"), - octest_legacy:ct_string("With 123.654 Is Not Null,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where False|{`1esn`}[12.0..`2esn`][@usn6..{usn1}]] =~Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 00[{`8esn`}..][{`8esn`}..]|{0}) =~{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}} Where $@usn5 Starts With $1000 Create Unique `3esn`=Shortestpath((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))"), - octest_legacy:ct_string("Unwind {0} In $_usn3 As `3esn`"), - octest_legacy:ct_string("Load Csv From Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End[[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]]..Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})))] As usn1 Fieldterminator 's_str' Remove Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..]).`2esn`,({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)._usn4? Match `8esn`=(((usn2 :#usn7)<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[`7esn`:`1esn` *0X0123456789ABCDEF{`6esn`:1000[..$0][..True],_usn4:Count ( * ) Ends With $@usn5}]->(`4esn` {usn2:0x0 Is Null,`5esn`:{usn2} =~12}))),((_usn3 :`7esn`:_usn3)-[]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})) Union All Create Unique @usn5=(((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``})))"), - octest_legacy:ct_string("Merge @usn6=Allshortestpaths(((:`1esn`))) On Match Set All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where $_usn4 Ends With usn1 Ends With $0).@usn5? =Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End,Reduce(`8esn`={usn1} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|0xabc[.e0]).`3esn`! =Reduce(`3esn`=12.0[123.654][Count(*)],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|`1esn` =~\"d_str\")[..Case When $`` Is Not Null Then 12[1.e1..{_usn3}][1.e1..1.0] When 7[True..][2.12..] Then $_usn4 Is Not Null Is Not Null End][..Case When $#usn8[$`2esn`..][{`2esn`}..] Then 0X7[1000..{`1esn`}] When {#usn8}[{7}] Then 07 In `2esn` In 12e12 Else $`1esn` Ends With 9e1 Ends With $123456789 End],`3esn` =12.e12[0xabc]"), - octest_legacy:ct_string("Create Unique @usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]}))"), - octest_legacy:ct_string("Start _usn4=Rel:#usn8(\"d_str\") ,#usn7=Relationship:`7esn`('s_str') Union Start ``=Rel:#usn8(_usn3='s_str') ,`7esn`=Rel:`6esn`(\"d_str\")Where 0[..usn2][..{@usn5}] Delete $#usn7[..{`5esn`}][..9e12],{``}[$`8esn`..],Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6}"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From None(#usn8 In 7[..999][..{#usn8}] Where 2.12['s_str'..$12][{`1esn`}..`2esn`])[[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 12e12 Ends With {usn1}]][[$12 Ends With 07 Ends With $123456789,$@usn5 =~1000 =~1000,.e12[@usn5..$12]]] As `2esn` "), - octest_legacy:ct_string("Start @usn5=Relationship:``(\"d_str\") Union With Distinct *,$`3esn`[0.12..`8esn`][$#usn7..`5esn`],`3esn`[..010][..$7] As usn1 Order By (:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case When `6esn`[12..$usn2][{#usn8}..{usn2}] Then {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] When .e12[@usn5..#usn7][010..{usn1}] Then 0.12 =~$0 =~$0 End Desc,({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}) In Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 07 In `2esn` In 12e12) Descending,$12 Is Not Null Is Not Null Ascending Limit 123.654[0e0..$``][$`1esn`..$`8esn`] Remove Reduce(``=00[`2esn`..12][123456789..0.e0],_usn3 In {`3esn`}[`2esn`]|{#usn8} Is Null).`7esn`?"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From 12.0 In {`2esn`} As #usn8 Create usn1=Allshortestpaths((`` {@usn6:1.0[$`1esn`..][$123456789..]})-[`7esn`*]->(`7esn` {`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})-[@usn6]-(`5esn` {`4esn`:01 Is Null})) Unwind Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6} As `4esn`"), - octest_legacy:ct_string("Remove Extract(#usn7 In {``} Is Not Null Where True[..$`6esn`]|{``} Is Null).`8esn`!,Case $123456789 Ends With {`1esn`} Ends With $`4esn` When {1000}[$`4esn`][\"d_str\"] Then usn1 Ends With $@usn6 Ends With `3esn` When $#usn7[..{`5esn`}][..9e12] Then {usn2}[$`3esn`..][{#usn7}..] Else Null[{#usn7}..][0X0123456789ABCDEF..] End.@usn6!,Reduce(@usn5=$12[$1000..123456789],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|`4esn` Is Not Null Is Not Null).`5esn` Remove #usn8(Distinct $`4esn`[Null..],2.12 =~False).@usn5,[$`3esn` In $_usn4 In {_usn3},{1000} =~0 =~123.654].`3esn` With Distinct *,`1esn`(Distinct $1000[999]) =~Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) =~{`6esn`:'s_str'[00][{`5esn`}]},{_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] As `` Order By {0}[{`8esn`}..`4esn`] Desc,Case When Count ( * ) Contains 07 Then $`2esn` When 1.0 Is Null Is Null Then `7esn`[..2.12][..{usn1}] End Is Not Null Desc Limit $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Union All Create Unique Allshortestpaths((({`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})<-[?*..]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})))"), - octest_legacy:ct_string("Optional Match Shortestpath((({`5esn`:$#usn8 Ends With $`2esn` Ends With $@usn6})<-[`4esn`?:usn2|`` *0X7..]->({_usn3:$`5esn`[`3esn`..]})-[@usn5?:`4esn`]-(:usn1{usn1:{`6esn`}}))) Create Unique @usn5=((`5esn` {`8esn`:1000[Null..{123456789}]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})-[:@usn6|`6esn`{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}]->(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})),`4esn`=Allshortestpaths(((:`2esn`:usn1)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})))"), - octest_legacy:ct_string("Create Shortestpath((((:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[`2esn`?{`3esn`:{123456789} Is Null Is Null}]->(usn2 :#usn7)<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) With @usn6[$`3esn`..{`3esn`}] As `3esn`,`6esn`() In {#usn7:0X0123456789ABCDEF =~1e1 =~{`4esn`},`2esn`:1.0 =~'s_str' =~{`2esn`}} In usn1() Skip $`4esn` Is Null Is Null Unwind All(`3esn` In {7} Is Null Where Count ( * ) Contains 07) Is Null Is Null As `2esn` Union All Foreach(@usn5 In `5esn` Starts With 010 Starts With 0.0| Create Shortestpath((:`4esn`{``:2.12 Is Not Null Is Not Null})),Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[`3esn`? *123456789..]->({_usn3:$`5esn`[`3esn`..]}))) Optional Match ``=Shortestpath((`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})),Allshortestpaths(((:_usn4)))) Start usn1=Node:`2esn`({`1esn`}) "), - octest_legacy:ct_string("Optional Match #usn7=((`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})-[_usn4 *0X7..]->(`8esn` :#usn8:#usn8{`3esn`:$`4esn`[9e12..123.654]})) Using Index #usn8:`2esn`(`5esn`) Where $`8esn`[..{`2esn`}] Foreach(`3esn` In Allshortestpaths(((_usn4 :`8esn`:`7esn`{`4esn`:{`2esn`} Is Not Null Is Not Null,`1esn`:.e1 =~$`8esn`})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2})))| Load Csv With Headers From 01 Contains {`8esn`} Contains 2.12 As usn1 Fieldterminator \"d_str\" Unwind .e0[..$`8esn`] As usn2) Union All Remove _usn4(Distinct `` Ends With $1000,$`5esn`[{`3esn`}]).`7esn`,`6esn`:usn2 Optional Match Shortestpath((((:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[`2esn`?{`3esn`:{123456789} Is Null Is Null}]->(usn2 :#usn7)<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) Using Join On ``,`6esn`,usn2 Using Scan ``:`7esn` Where $999[0.0..] Union Load Csv From {`4esn`}[$0..] As `6esn` Fieldterminator \"d_str\" Create Unique Allshortestpaths((`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})),({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`) Remove [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`|`4esn`[`5esn`..12][@usn6..False]].#usn7?,`6esn`(Distinct False Starts With {`5esn`}).`2esn`?,Extract(`3esn` In {7} Is Null Where $#usn7[@usn5..{1000}][1.e1..7]|1.0 =~7 =~{usn2}).usn2!"), - octest_legacy:ct_string("Load Csv With Headers From 0Xa[..{`4esn`}][..12.0] As `7esn` Fieldterminator \"d_str\" Delete {@usn6:$_usn3[..1000]} Is Null Is Null"), - octest_legacy:ct_string("Merge `4esn`=Shortestpath((:`3esn`:@usn5{`2esn`:{`3esn`}[..07][..{`5esn`}]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})) On Match Set #usn8:usn2,usn1 =Reduce(`2esn`=1e1 In 123.654 In `3esn`,`5esn` In \"d_str\" Is Null Is Null|$_usn3[{#usn7}]) Is Not Null,`6esn` =0.e0 Starts With `2esn` Return `` Is Not Null Is Not Null,$_usn3 Ends With 0x0 Ends With 12.0,$_usn3[.e0..$usn2] Order By Single(_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..])[..All(`` In `` Is Not Null Is Not Null Where {`7esn`} Is Null)] Ascending Limit {`4esn`} Ends With {123456789} Ends With $`4esn` Union Load Csv From `3esn`[{0}][usn1] As #usn7 Fieldterminator \"d_str\" Create ({`8esn`:`3esn`[{0}][usn1]})-[_usn4?:_usn4|:usn2 *00]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``})<-[ *0X7..]-(`2esn` {_usn3:`1esn` Contains {usn2} Contains $#usn8}),(#usn8 :@usn6:#usn8) Remove [0.12 =~$0 =~$0,2.12 Contains usn2 Contains True,2.12].`4esn`"), - octest_legacy:ct_string("Delete _usn3[..`8esn`][..2.12],None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 7[..999][..{#usn8}]) Is Not Null,0.e0 Starts With 12.e12 Starts With {_usn4} Return *,Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End Is Null Is Null,$`5esn`[$`4esn`..{@usn6}][07..$@usn6] Order By {`1esn`:{@usn6}[{999}..][00..]}[..`5esn`][..{#usn8:{`7esn`}[`6esn`][#usn7],`5esn`:$`4esn`[9e12..123.654]}] Ascending Skip [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `4esn` Ends With 07 Ends With {`3esn`}|@usn5 Is Null] Is Null Is Null Match Allshortestpaths((@usn5 {`7esn`:$`6esn`[010..],#usn8:0.e0 Starts With `2esn`})-[@usn5]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})) Using Join On `2esn` Where $1000 In $1000 In $`3esn`"), - octest_legacy:ct_string("Unwind 0X7[1000..{`1esn`}] As `4esn` Return Distinct `4esn` =~$`5esn`,$`1esn` Starts With {`8esn`} As _usn3,None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`])[Any(`3esn` In {7} Is Null Where {`4esn`} =~{7} =~{`7esn`})..][Extract(`2esn` In `1esn` =~\"d_str\" Where $_usn4[1.e1]['s_str']|usn1[`5esn`..$7])..] As `7esn` Skip [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where False|{`1esn`}[12.0..`2esn`][@usn6..{usn1}]] =~Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 00[{`8esn`}..][{`8esn`}..]|{0}) =~{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}} Start `7esn`=Relationship:`3esn`(`6esn`='s_str') Where 0Xa =~123456789 =~_usn4 Union Unwind $`5esn` In 0.e0 As @usn6 Return Distinct 1000[..$0][..True] As `3esn`,`7esn` In {123456789} In `1esn` Skip 7[$_usn4..9e0] Union Optional Match ((:@usn5{#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})-[?:usn2|`` *0..{usn2:{12} Is Not Null,`6esn`:``[$`2esn`]}]-(`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})),(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07}) Using Join On @usn6 With Distinct *,$123456789[_usn3][{#usn7}] As `4esn`,All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8) Is Not Null Is Not Null Limit True Contains {0} Contains 7 Where {12} =~#usn8 With Distinct $`` As #usn8,None(`3esn` In {7} Is Null Where 0Xa[2.12]) Is Null Is Null As #usn7 Order By Count ( * ) Contains {`1esn`} Contains 07 Ascending Limit @usn6(Distinct 0X7[1000..{`1esn`}],True[07..$usn2][$7..{usn1}])[Reduce(`4esn`=0.0[$0][{@usn5}],`4esn` In $`3esn` Is Not Null|$`5esn`[`3esn`..])][Case When 123.654[0e0..$``][$`1esn`..$`8esn`] Then $_usn3['s_str'][07] When {`3esn`}[..07][..{`5esn`}] Then 's_str' Is Not Null Is Not Null End] Where {`4esn`} =~{7} =~{`7esn`}"), - octest_legacy:ct_string("Return usn1[..@usn6][...e0],usn1 Is Not Null As `6esn`,False[_usn3..`8esn`][$`8esn`..{`3esn`}] As _usn3 Order By Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End[[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]]..Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})))] Ascending,All(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Contains (`5esn` :_usn4{`5esn`:07[..True][..9e12]})-[`8esn`?:`2esn`{@usn6:{12}[..0X7]}]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]})<-[_usn4{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00}) Contains [0.12[$`3esn`..$_usn3][12.0..usn1]] Ascending Union Start usn1=Relationship:`3esn`(`6esn`='s_str') ,_usn3=Node:`6esn`('s_str')"), - octest_legacy:ct_string("Create `6esn`=((`8esn` )<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})),(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}) Union All Remove {`5esn`:{12}[..0X7],#usn8:$1000 In $1000 In $`3esn`}.#usn7?,Case 0Xa[2.12] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] Else $1000[0Xa][{#usn7}] End.`1esn`,[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0.0 In $usn1|{#usn8}[{7}]].#usn8? Load Csv From usn1 Is Null As @usn5 Fieldterminator 's_str' Merge @usn6=(_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5}) On Match Set `6esn`+=Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``|usn2[9e12]) Ends With [{`7esn`}[..{`4esn`}]] Ends With Filter(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`4esn`} Starts With $usn2 Starts With $1000),`3esn`+=123456789[0xabc..'s_str'][``..`1esn`],_usn3 ={usn1}[0X0123456789ABCDEF] On Create Set [_usn3[_usn3..][12.e12..]].`8esn`! =Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where .e0 Starts With 0 Starts With 0.e0) Is Null Is Null,{`3esn`:$`4esn`[9e12..123.654]}.#usn8 =Filter(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8])[{`4esn`:Null In $7 In .e1,_usn3:usn2 Is Null}..Case _usn3[$`8esn`] When {0} In $_usn3 Then 01[{`2esn`}..{@usn6}][$`2esn`..0.0] Else $7 Is Not Null Is Not Null End] Union All Load Csv From 0.0 In $usn1 As `2esn` Remove Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`]).usn1!,`7esn`(Distinct $`6esn`[123456789..12][True..{`3esn`}],7 =~{`8esn`} =~$`6esn`).`1esn`?,Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789)._usn3"), - octest_legacy:ct_string("Optional Match _usn4=Allshortestpaths((:_usn4{usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})) Using Scan usn1:_usn3 Using Scan `1esn`:`3esn` Where 7[$`2esn`..{`5esn`}] Union All Create (((:`4esn`{`5esn`})-[`7esn`?:`4esn`{_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}]-(#usn7 :#usn8:#usn8{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[`6esn`?:`1esn` *0X7..]->(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null}))) Load Csv With Headers From #usn8 Is Not Null Is Not Null As _usn4 Load Csv From 0Xa Starts With `7esn` Starts With $`1esn` As `7esn` Fieldterminator \"d_str\""), - octest_legacy:ct_string("Create `7esn`=(@usn6 :`6esn`)-[`6esn`?:#usn7]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}) Union Delete All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {_usn4} Is Not Null Is Not Null) Is Null With {`5esn`} =~`4esn` =~{_usn4} As `4esn`,Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]) =~Reduce(usn1=.e1 Ends With 1e1 Ends With @usn5,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$#usn7[#usn7..]) =~`1esn`($1000 Is Null) As @usn6,07 =~01 Order By `5esn`[_usn4..] Desc Skip `8esn`[{123456789}..] Start `5esn`=Node:`7esn`('s_str') ,usn1=Node:#usn8({``})"), - octest_legacy:ct_string("Return {7}[$``][{@usn6}] As `2esn` Order By {`4esn`:{`4esn`} =~{7} =~{`7esn`},`8esn`:$#usn7[#usn7..]} Is Null Is Null Desc,{123456789}[9e12][{0}] Ascending,$_usn3['s_str'][07] Ascending Skip [usn2[$_usn4..][True..],1.0 In Count(*)] =~Any(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12.0[123.654][Count(*)]) =~Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where usn2 Is Not Null Is Not Null) Create (({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})),Shortestpath(((`` :@usn6:#usn8{`8esn`:'s_str' In 00})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-({#usn8:0xabc[.e0]}))) Return {usn2:0X0123456789ABCDEF[123456789]}[[0e0 Starts With 1000 Starts With #usn7,True =~010,$usn2[{@usn5}]]..],1000[..$0][..True],[$0] In [`2esn` In `1esn` =~\"d_str\" Where {0} Ends With $_usn3 Ends With $`7esn`|{999} Contains .e0 Contains 12.0] In None(`2esn` In `1esn` =~\"d_str\" Where {`7esn`}[..$@usn5][..$#usn8]) As usn1 Limit $#usn8[Count ( * )] Union All Merge usn2=((@usn6 :_usn4)) With Distinct #usn8 In $@usn6,1.e1[`8esn`][00] Where 0.e0 Starts With `2esn` Return *,({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}),`1esn`[..{`2esn`}][..$_usn4] As #usn7 Order By [Count(*) Ends With 12.0 Ends With 12,9e0[{0}..{`3esn`}][\"d_str\"..0Xa]][..Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``])][..{usn1:$_usn3[..1000],`7esn`:{1000} =~0 =~123.654}] Asc,count(`1esn` Contains {usn2} Contains $#usn8) Contains [`5esn`[7][{usn2}],@usn5 Is Null] Descending,(:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8)[Reduce(`7esn`=7[$`2esn`..{`5esn`}],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$_usn4[0e0..][False..])..({``:00 Starts With 0xabc,`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})][{}..{@usn6:`4esn`[..010][..{12}]}] Descending Skip [@usn6 Contains Null Contains $`7esn`,{`4esn`} Starts With $usn2 Starts With $1000] Ends With Any(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $_usn4[0e0..][False..]) Ends With (`1esn` :`2esn`:usn1)-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(`1esn` :_usn3:_usn3{#usn7:$@usn5 Is Not Null Is Not Null}) Limit .e12[..`7esn`][..0Xa]"), - octest_legacy:ct_string("With *,usn2 Ends With 12.e12 As usn1,{`4esn`:`7esn` Is Null}[{`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]}..] As #usn8 Limit `1esn`(Distinct $@usn5[..12e12][..$123456789],{#usn7} Is Not Null Is Not Null)[{`7esn`:\"d_str\" Starts With $123456789}..] Where $`1esn`[1.0..][_usn3..] With {``} Is Not Null As #usn7,{#usn7}[`2esn`..],Count ( * ) Contains {`1esn`} Contains 07 Order By `8esn` Is Not Null Is Not Null Desc Limit $123456789[_usn3][{#usn7}] Where Count ( * ) Ends With 12.0 Detach Delete Extract(`2esn` In `1esn` =~\"d_str\" Where usn2[9e12]|#usn7 Starts With {#usn7} Starts With `7esn`)[..(:#usn8:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})<-[_usn4?:`` *0X0123456789ABCDEF{`5esn`:$123456789 Is Null Is Null,@usn6:{12} Ends With 1.0 Ends With .e0}]->(:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null})<-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})][..Extract(`3esn` In {7} Is Null Where usn1 Is Null Is Null|12.0)],1.0 Starts With 12e12 Starts With {`5esn`} Union Remove `2esn`($`6esn`[123456789..12][True..{`3esn`}],$`5esn`[`3esn`..]).``! Merge Shortestpath((:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})<-[usn1?:`7esn`]-(:usn1{usn1:{`6esn`}})<-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(_usn3 :#usn7)) Union All Load Csv With Headers From `1esn` =~\"d_str\" As @usn6 Fieldterminator \"d_str\" Create Unique Allshortestpaths(({_usn3:{_usn4} Is Not Null Is Not Null})),(({_usn3:{_usn4} Is Not Null Is Not Null})) Load Csv From 0Xa Is Null Is Null As _usn3 "), - octest_legacy:ct_string("Create `6esn`=Allshortestpaths((#usn8 :@usn6:#usn8)) With 0.e0 Starts With 12.e12 Starts With {_usn4} As _usn3,0e0 =~`6esn` =~123456789,`1esn`($123456789 Starts With 9e0 Starts With 's_str',{usn2}[.e0..$999])[{usn2:{`3esn`} In 0X7,_usn3:7 Starts With {@usn6} Starts With $``}..Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {usn1} In 2.12 In 1000)][Case 0[`7esn`..] When 123456789 Is Null Then .e12 Is Not Null Is Not Null Else $@usn5 =~1000 =~1000 End..[`4esn` In $`3esn` Is Not Null Where `8esn`[{123456789}..]|{`3esn`}[`2esn`]]] Order By `5esn`[_usn4..] Ascending Where $`1esn` Ends With 9e1 Ends With $123456789 Union Delete Extract(_usn3 In {`3esn`}[`2esn`] Where _usn3 Contains $123456789 Contains ``)[Extract(`5esn` In \"d_str\" Is Null Is Null Where 00[$`7esn`]|$`6esn` Is Null)]"), - octest_legacy:ct_string("Start _usn3=Relationship:`8esn`({`1esn`}) ,`6esn`=Relationship:`2esn`({0}) With Distinct *,'s_str'[$_usn3..][Count ( * )..] As #usn7 Limit {_usn3}[12.e12] Where 0e0 Starts With 2.12 Starts With $12 Load Csv From {_usn3}[..\"d_str\"] As `3esn` "), - octest_legacy:ct_string("Merge `1esn`=(`` {@usn6:1.0[$`1esn`..][$123456789..]})<-[?{usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null}]-(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null}) On Match Set usn1(Distinct 01 Ends With 999 Ends With {`7esn`},$_usn4 Ends With usn1 Ends With $0).`2esn`! =Single(`5esn` In \"d_str\" Is Null Is Null Where {1000} =~0 =~123.654)[None(`5esn` In \"d_str\" Is Null Is Null Where 12.e12 Starts With {999} Starts With {`1esn`})..None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`)] On Match Set Allshortestpaths((#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})).`6esn` =_usn4 Contains 0e0,`3esn` =2.12 Is Not Null Is Not Null,Extract(`3esn` In {7} Is Null Where `1esn` =~0 =~$#usn7|{`3esn`} In 01).`5esn`! ={1000}[_usn3][$123456789] Union Foreach(`2esn` In $999 Is Not Null| Start `3esn`=Node:_usn4(`6esn`='s_str') Create Unique `6esn`=Shortestpath((({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})<-[_usn4?:`` *0X0123456789ABCDEF{`5esn`:$123456789 Is Null Is Null,@usn6:{12} Ends With 1.0 Ends With .e0}]->(:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null})<-[``?:#usn8|`1esn`{#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1}]->({@usn5:12e12 Contains 0Xa,_usn4:01[2.12..`8esn`]}))),((@usn5 :`7esn`:_usn3)))"), - octest_legacy:ct_string("Merge `4esn`=((usn2 )-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-(`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})) On Create Set [{#usn8}[010]].`8esn`! =`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) In [#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]|@usn6 Contains $1000 Contains {`7esn`}] In Filter(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]),`2esn`+=9e1[1000][{123456789}] On Create Set Shortestpath(((`4esn` {`6esn`:#usn8[..{#usn7}]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]}))).`4esn`? ={#usn8} Starts With 00 Starts With {`6esn`} Create (((#usn7 :`8esn`:`7esn`{`5esn`:1.0 In Count(*)})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000}))) Create @usn5=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}) Union Start `2esn`=Node:usn1(`6esn`={7}) "), - octest_legacy:ct_string("Load Csv With Headers From usn2[{7}] As @usn6 Fieldterminator \"d_str\" Union Return Distinct *,_usn4(Count(*) In $12) In Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $123456789 =~{`6esn`} =~\"d_str\"|01 Ends With 999 Ends With {`7esn`}),$`` Ends With 0.0 Ends With {1000} Union Merge `8esn`=(_usn4 :usn2{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}) On Match Set #usn8+=`2esn`(Distinct $``,7 Starts With {@usn6} Starts With $``) Contains {@usn6:_usn3[$`8esn`],usn1:$@usn5 Is Not Null} Contains {@usn5:`8esn`[{123456789}..]},({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(#usn7 :#usn8:#usn8{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null}).@usn6? =01[{@usn5}]"), - octest_legacy:ct_string("Create Unique Allshortestpaths((:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[@usn6:_usn4|:usn2]->(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})-[`3esn`?:@usn5]->(usn1 {`8esn`:False Is Null Is Null})),Allshortestpaths((:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null})<-[#usn7{`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]}]-({#usn8:True[..$`6esn`]})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})) Return 12.0 Ends With True Ends With 123456789 As #usn7 Order By {_usn3}[12.e12] Descending Skip 0X7[{@usn6}] Limit 1e1 Contains Count ( * ) Create ({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})<-[usn2?:@usn5{`4esn`:{`7esn`} Is Null,_usn4:$123456789 Ends With {`1esn`} Ends With $`4esn`}]->(`6esn` {`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null})-[usn1? *0X0123456789ABCDEF]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}),`5esn`=(({_usn3:$`5esn`[`3esn`..]})-[? *..07{`4esn`:@usn5 =~{`5esn`} =~`5esn`}]->(_usn3 :usn2{#usn7:{999} Starts With {0}}))"), - octest_legacy:ct_string("Delete 1e1 In \"d_str\" In `7esn` Union Foreach(`2esn` In $`5esn`[2.12..{_usn3}][_usn3..{1000}]| Unwind 0.12[`2esn`..{`6esn`}] As usn2) Remove Filter(`2esn` In `1esn` =~\"d_str\" Where $`4esn` In Null In 0xabc).`6esn`?,None(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`]).`4esn`! Start _usn4=Node:`4esn`(_usn4={123456789}) Where {_usn4} In {12} In $0 Union All Merge (((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})-[:`8esn` *..01]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[usn2?:@usn5{`4esn`:{`7esn`} Is Null,_usn4:$123456789 Ends With {`1esn`} Ends With $`4esn`}]->(`6esn` {`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}))) On Create Set {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}.`8esn`? =$@usn5[010..$#usn8][12..$`4esn`],`7esn`+=`8esn`(Distinct $#usn7 Is Null) Ends With Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]) Ends With Shortestpath(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))),`7esn` =`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) Contains Reduce(`7esn`=$_usn4 Ends With usn1 Ends With $0,`4esn` In $`3esn` Is Not Null|`7esn` In {123456789} In `1esn`) On Match Set usn2 ='s_str'[$_usn3..][Count ( * )..]"), - octest_legacy:ct_string("Start ``=Node:`2esn`(usn2='s_str') With Distinct 123.654 Is Not Null As `1esn`,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) As `4esn` Order By 0.0 =~999 Asc,1e1 In \"d_str\" In `7esn` Descending Where 12.e12[`3esn`] Union All Load Csv From Reduce(@usn6=0.e0 Ends With $#usn7 Ends With $7,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999})[[#usn8[`3esn`..][{#usn7}..]]..(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`8esn` :@usn6:#usn8)<-[{`8esn`:07 In `2esn` In 12e12}]->(:_usn4{`6esn`:{`6esn`} =~$999,`6esn`:$#usn7[..{`5esn`}][..9e12]})][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)..Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0e0 Starts With `2esn` Starts With $``)] As `2esn` Fieldterminator \"d_str\" With *,$``[1.0] As `6esn`,12.0[123.654][Count(*)] Where 0.12[$`3esn`..$_usn3][12.0..usn1] Union Create #usn7=Shortestpath((`2esn` :usn1)<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(`3esn` :`8esn`:`7esn`)<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)),usn2=Shortestpath(({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))"), - octest_legacy:ct_string("Start _usn4=Node( {123456789}) ,#usn7=Relationship:usn2(`8esn`={`8esn`})Where _usn4 Is Null Is Null Create `3esn`=Allshortestpaths(((:usn1{_usn4})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}))) Load Csv From 1.0 Is Null Is Null As `3esn` Fieldterminator 's_str'"), - octest_legacy:ct_string("Merge ((`4esn` {`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}})) On Match Set @usn6 ='s_str' Starts With 123.654 Union Load Csv With Headers From [_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|`` Is Not Null Is Not Null] Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where {_usn3}[..\"d_str\"][..`5esn`]) Ends With Filter(`3esn` In {7} Is Null Where {123456789} Contains $#usn8) As _usn3 Fieldterminator 's_str' With 07[$123456789..] Order By {`2esn`} Ends With 12.0 Desc,`6esn`[12..$usn2][{#usn8}..{usn2}] Asc,9e1[..$`2esn`] Ascending"), - octest_legacy:ct_string("Unwind $usn1[{`5esn`}][$`6esn`] As @usn6 Merge ((:usn2{usn2:123.654[$`1esn`],@usn6:123456789[$@usn5..]})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`` {usn2:9e0[..999],`2esn`:0e0 In @usn5})<-[]->(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})) On Create Set `8esn`+=[9e1[..$`2esn`]][{`8esn`:False =~$7 =~2.12,`3esn`:Count ( * ) =~$usn2 =~$usn2}][Case {``} Is Null When 2.12 Then $123456789 Ends With {`1esn`} Ends With $`4esn` End] On Match Set @usn6+=$1000[0Xa][{#usn7}]"), - octest_legacy:ct_string("Return *,Case When 1.0 =~'s_str' =~{`2esn`} Then $`5esn` In $`6esn` When {`7esn`}[..{`4esn`}] Then {usn1} Ends With $0 End[All(`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"])..[Count ( * )[0.12...e1],1.0[00..],$``]][`4esn`(`4esn` Ends With 07 Ends With {`3esn`})..Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `1esn` =~\"d_str\"|9e12 Is Not Null Is Not Null)] As `` Order By `3esn`(`5esn`[{`4esn`}..`2esn`],9e1[2.12..{#usn8}]) In `8esn`(Distinct $1000[`2esn`..`5esn`][1e1..1.e1],0X0123456789ABCDEF Ends With $`8esn` Ends With 0.12) In All(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`4esn`} Starts With $usn2 Starts With $1000) Ascending,Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Is Not Null Is Not Null Asc,{`2esn`} Ends With {`7esn`} Desc Return [`5esn`[{`4esn`}..`2esn`],Null Ends With {`5esn`} Ends With 0.e0,010[#usn7..True]] Contains [`3esn` In {7} Is Null Where {usn2}[.e0..$999]|Count ( * ) Contains `8esn` Contains .e1] Contains Reduce(``=@usn5 In {`7esn`} In `2esn`,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{_usn4}[1000..{@usn5}]) As `3esn`,{7}[$7..$``][{``}..{7}] As usn2,{1000}[{_usn3}..] As #usn7 Skip Shortestpath((_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})) Contains [`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 7 Starts With {@usn6} Starts With $``|.e12 Is Not Null Is Not Null] Limit $`6esn` Ends With Count(*) Return *,'s_str' Starts With 123.654 As usn1 Skip {0} In $_usn3 Limit {`3esn`} In 01 Union Merge _usn4=(({``:9e12[`1esn`..][$`1esn`..],#usn7:#usn8})<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]-({`7esn`:{999}})) On Create Set #usn7+=Count(*) In $12,`2esn`+=$usn2[9e0],[9e1[1000][{123456789}],$usn2[{@usn5}],0Xa Starts With {`6esn`} Starts With $usn1].usn1? =Reduce(`4esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|False[..``]) Is Null Is Null On Match Set ``(Distinct 0.12 =~`5esn` =~`5esn`,Null[``]).`1esn`! =12e12 Ends With {usn1},@usn5 =7 Ends With $`4esn`,_usn4 =Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End[..[9e1[1000][{123456789}],$_usn3[{#usn7}],`5esn` Starts With $`2esn` Starts With $1000]][..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0 In `2esn` In 010)] Create Shortestpath((((usn2 :`4esn`)-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[``? *..01{`1esn`:$@usn6 Contains 07}]-(:`3esn`:@usn5{#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})))),`1esn`=((usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``}))"), - octest_legacy:ct_string("With *,Shortestpath((((`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`2esn` *..07]-(`1esn` {#usn7:{_usn4} In {12} In $0})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})))) In ({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}) As `1esn`,`6esn`[2.12..01][{``}..False] As `1esn` Where $123456789 In 0X0123456789ABCDEF In 0.e0 Merge Shortestpath((((:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[:`6esn`|`5esn` *123456789..]-(#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})))) Unwind Case {`3esn`}[@usn6..0Xa][{12}..0Xa] When {usn1}[0X0123456789ABCDEF] Then 0x0 Ends With $12 When 0e0 Starts With `2esn` Starts With $`` Then {123456789}[9e12][{0}] Else 0X7[1000..{`1esn`}] End[..({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})] As `5esn` Union Load Csv With Headers From 0.0 In {#usn8} As `4esn` Merge `3esn`=Allshortestpaths((:@usn5{`2esn`:_usn3 Ends With 7 Ends With `1esn`})<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`4esn`{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})) Optional Match #usn8=Allshortestpaths(((@usn5 {_usn3:`1esn` Contains {usn2} Contains $#usn8})<-[:`3esn`|:#usn8 *7..12{@usn5:_usn4 Starts With $_usn4 Starts With 12.e12}]->(#usn7 :_usn3:_usn3{`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}}))),Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))) Where 0Xa[7..2.12][`3esn`.._usn3] Union With Distinct 0[07..{123456789}][999...e12] As `4esn` Order By Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End Descending Skip $`6esn`[$`6esn`..`8esn`] Limit Allshortestpaths((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))) Contains Filter(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]) Contains Shortestpath(({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})) Foreach(`4esn` In 1000[0X7..2.12]| Remove ({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)._usn4?) Unwind $usn1 In {999} In $#usn7 As _usn4"), - octest_legacy:ct_string("Return Distinct *,None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12]) Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where $_usn3[.e0..$usn2]|{#usn7}[9e1..][{123456789}..]) Ends With Reduce(`2esn`={`3esn`} In 0X7,_usn3 In {`3esn`}[`2esn`]|$`5esn`[{`3esn`}]) Order By Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) Is Not Null Is Not Null Asc,$`4esn`[010..`4esn`] Ascending,1e1 In \"d_str\" In `7esn` Descending Skip 9e1 Is Not Null Union All Create _usn3=(((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5))),(:``:#usn8{_usn3:$`7esn` Is Null Is Null}) Union Optional Match `2esn`=Shortestpath(((usn2 :`6esn`{#usn7:Count ( * ) Contains 07})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))),Allshortestpaths(((`8esn` )-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})<-[ *..12]->(#usn8 {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]}))) Merge ((:_usn4{usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})) Match (({_usn3:$`5esn`[`3esn`..]})-[? *..07{`4esn`:@usn5 =~{`5esn`} =~`5esn`}]->(_usn3 :usn2{#usn7:{999} Starts With {0}})) Using Index @usn5:`2esn`(@usn5) Where $123456789 Is Null Is Null"), - octest_legacy:ct_string("Unwind Null Ends With {`5esn`} Ends With 0.e0 As usn1 Load Csv From [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `4esn` Ends With 07 Ends With {`3esn`}|@usn5 Is Null] Is Null Is Null As #usn8 Fieldterminator \"d_str\" Union Match ((:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?:`5esn` *0..]->(usn2 :``:#usn8)<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})) Using Scan _usn4:@usn6 Where `` Ends With 0Xa Ends With `2esn` Merge #usn7=Allshortestpaths((@usn5 {`3esn`:.e1[..usn2][..`8esn`]})<-[usn2:`7esn`]->(:usn1{_usn3:{#usn7}[`2esn`..]})-[?:usn2|``$#usn7]-(#usn8 :``:#usn8{`7esn`:9e1[$usn2],_usn4:$_usn4 Contains Null Contains #usn8})) On Create Set @usn5 =(#usn8 :``:#usn8)-[]->(`5esn` {`4esn`:01 Is Null})-[_usn3:@usn5 *7..12{`2esn`:12.0 =~999 =~$_usn3}]->(`3esn` {usn1:$0[..9e1],@usn5:`7esn`[..{usn1}]}) =~None(#usn7 In {``} Is Not Null Where .e0 Starts With $`` Starts With $usn2) =~Case When 0X0123456789ABCDEF Ends With $`8esn` Ends With 0.12 Then `3esn` In $0 In `1esn` When \"d_str\"[#usn8] Then `7esn`[$0][9e12] Else {`7esn`} Is Null End On Match Set _usn4+={`7esn`}[`6esn`][#usn7],@usn6 =01 Is Null Union All Detach Delete ({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}),`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) In [#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]|@usn6 Contains $1000 Contains {`7esn`}] In Filter(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]),usn2[{7}] Foreach(`1esn` In 12[..$`4esn`]| Optional Match #usn7=Shortestpath((@usn6 {`3esn`:{``} Is Not Null})-[usn1?:@usn5*]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})),``=({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True}) Using Scan `1esn`:usn2 Using Scan `3esn`:`5esn` Where 1.0 Starts With 12e12 Starts With {`5esn`} Delete Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},Shortestpath(((:`8esn`:`7esn`$#usn7)-[`5esn`:`8esn`]->(#usn8 {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]}))) In [_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..]|1.0 Is Null Is Null] In Case When Count ( * ) Contains 07 Then 123.654[$`1esn`] End,$123456789 Is Null Is Null)"), - octest_legacy:ct_string("Unwind {`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]}[@usn5(Distinct {`5esn`} Contains $0 Contains {``},12.e12 Starts With {999} Starts With {`1esn`})] As _usn4 Load Csv With Headers From $`4esn`[..$`3esn`][..0.0] As `4esn` Detach Delete Case {usn2} When {_usn4} Starts With 0.e0 Starts With 0x0 Then 12 Ends With 0x0 Ends With 0.e0 Else 1.0 =~'s_str' =~{`2esn`} End[(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True})..All(`3esn` In {7} Is Null Where $#usn7[@usn5..{1000}][1.e1..7])][{usn2:$`5esn`[..$`5esn`][..$12]}..Any(`8esn` In 01[2.12..`8esn`] Where `1esn`[{usn1}..``][7..$#usn8])],'s_str' Is Not Null Is Not Null Union Foreach(_usn4 In {usn1} Ends With 12.0 Ends With 00| With *,`7esn` Is Null As `7esn`,None(`` In `` Is Not Null Is Not Null Where $`6esn` Is Null) Contains Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}))) Contains Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End Order By {usn2} Starts With $`8esn` Starts With Count ( * ) Asc,(:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(:_usn3:_usn3{``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Is Not Null Descending,.e0[..0X0123456789ABCDEF][...e12] Descending Limit {``}[...e12]) Foreach(`4esn` In #usn8[`3esn`..][{#usn7}..]| Create `5esn`=Allshortestpaths(((`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}))),(((`6esn` :`5esn`{usn1:{`6esn`}})<-[? *0X7..{#usn8:{1000} Is Null Is Null,`3esn`:0.e0 Starts With 12.e12 Starts With {_usn4}}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})<-[:`1esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]})))) Union Return Distinct 12.0 Ends With True Ends With 123456789 As #usn7 Order By {_usn3}[12.e12] Descending Skip 0X7[{@usn6}] Limit 1e1 Contains Count ( * ) Create @usn5=(((`1esn` :`5esn`{`5esn`:{``} Is Null})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(_usn4 :usn1))) Delete Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End Starts With Single(`2esn` In `1esn` =~\"d_str\" Where False Starts With {`5esn`}) Starts With Extract(`5esn` In $999[0.0..] Where 0x0 Ends With $12),$`7esn` Is Not Null,7[$`2esn`..{`5esn`}]"), - octest_legacy:ct_string("Start ``=Relationship:usn2('s_str') ,`1esn`=Rel:`4esn`(`4esn`='s_str') With Distinct $`3esn`[0.12..`8esn`][$#usn7..`5esn`],Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]) =~Reduce(usn1=.e1 Ends With 1e1 Ends With @usn5,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$#usn7[#usn7..]) =~`1esn`($1000 Is Null) As @usn6 Order By {`1esn`}[12.0..`2esn`][@usn6..{usn1}] Ascending,$`3esn` Is Not Null Desc Where 01 Contains {`8esn`} Contains 2.12 Remove usn1:`1esn`,Filter(#usn8 In 7[..999][..{#usn8}] Where 123456789 Is Null).`8esn`!,[7[..123456789][..{@usn6}],#usn7].#usn8 Union All Unwind False[..``] As `7esn` Union Load Csv From $_usn4 =~usn2 =~{_usn3} As _usn3 Start _usn4=Node:`3esn`(`2esn`={usn1}) ,`6esn`=Node:``('s_str')"), - octest_legacy:ct_string("Return Distinct Filter(`4esn` In $`3esn` Is Not Null Where {`6esn`}) =~{_usn3:{`3esn`} Is Not Null Is Not Null} As `7esn`,.e0[12.e12..] As `3esn`,0e0 =~`6esn` =~123456789 As @usn5 Skip {12} Is Not Null Limit $@usn5 Starts With $1000 Union Unwind Reduce(@usn6=0.e0 Ends With $#usn7 Ends With $7,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999})[[#usn8[`3esn`..][{#usn7}..]]..(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`8esn` :@usn6:#usn8)<-[{`8esn`:07 In `2esn` In 12e12}]->(:_usn4{`6esn`:{`6esn`} =~$999,`6esn`:$#usn7[..{`5esn`}][..9e12]})][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)..Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0e0 Starts With `2esn` Starts With $``)] As #usn7 Create (({`4esn`:`7esn` Is Null})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})) Union All Load Csv From \"d_str\"[..{@usn5}][..``] As `6esn` Fieldterminator 's_str'"), - octest_legacy:ct_string("Foreach(`8esn` In \"d_str\" Starts With 01| Start `8esn`=Relationship:`6esn`('s_str') Where 010 =~{usn2}) Unwind $`1esn` In $`7esn` In $`6esn` As `2esn` Delete 123456789[#usn8..False],9e1 In 2.12 Union Delete #usn7[$usn1]"), - octest_legacy:ct_string("Unwind [$`5esn`[..$`5esn`][..$12],01[2.12..`8esn`],_usn3 Contains $123456789 Contains ``] As `1esn` Remove Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..]|0xabc[01..{999}][{7}..{`7esn`}]).`8esn`!,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]|123456789[#usn8..False]].`5esn`?,[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0.0 In $usn1|{#usn8}[{7}]].#usn8?"), - octest_legacy:ct_string("Foreach(#usn7 In Allshortestpaths(((`7esn` {`2esn`:$`6esn`[123456789..12][True..{`3esn`}],#usn7:$_usn3[Count(*)]})-[#usn8? *..07$_usn4]->(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}))) =~(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null}) =~{#usn8:{`3esn`}[@usn6..0Xa][{12}..0Xa],@usn5:False Is Null Is Null}| Create ``=((({_usn4:00 Starts With 0xabc})<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]->(`5esn` :`4esn`{@usn6:{`6esn`} =~$999}))),`2esn`=(:`4esn`{`3esn`:$`7esn` =~{`8esn`} =~$usn1})) Create `2esn`=(:`4esn`{_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[#usn8:@usn5 *..01]-(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null}),_usn4=Shortestpath(((:`1esn`{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789}))) Union Optional Match (:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`8esn` :`8esn`:`7esn`) Using Join On `1esn`,_usn3,_usn3 Return *,$@usn5 Contains 0xabc Contains {#usn7} Limit Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $_usn3 In {1000} In 0.12)[{@usn6}..] Load Csv With Headers From #usn7[usn1][$`5esn`] As `4esn` Union Merge (((:usn1{usn1:`5esn`[_usn4..]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[:usn1|@usn6 *7..12]-({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]}))) Start `7esn`=Node:`4esn`({usn1}) ,`1esn`=Relationship:`2esn`({1000})Where $`6esn`[010..] Match (`2esn` :`8esn`:`7esn`)-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}) Using Scan ``:_usn4 Using Join On ``,_usn3,`1esn`"), - octest_legacy:ct_string("Merge @usn6=Allshortestpaths(((@usn5 :`4esn`))) Delete Shortestpath((((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))))[..Case 0Xa =~123456789 =~_usn4 When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $1000 In $1000 In $`3esn` Then 0.e0[#usn8] End][..(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})],Case $1000[999] When `4esn`[`5esn`..12][@usn6..False] Then {0} Ends With $_usn3 Ends With $`7esn` When $usn1 In {999} In $#usn7 Then Count ( * )[True..][{#usn7}..] End Ends With {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null},`7esn` In 00 Remove (:usn1{_usn3:{#usn7}[`2esn`..]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(#usn7 ).`2esn`,Case `5esn` Starts With $`2esn` Starts With $1000 When 123.654 =~$usn2 =~{999} Then Count ( * ) Contains `8esn` Contains .e1 End._usn3!,exists($12[$1000..123456789],123456789[0xabc..'s_str'][``..`1esn`]).@usn5 Union All Match (({`4esn`:`7esn` Is Null})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})),({`4esn`:{`4esn`} Ends With {usn2} Ends With {999}})<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-(:#usn8:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]}) Using Index `6esn`:`8esn`(``) Using Scan `2esn`:`7esn` Where 0.e0 Contains 9e1 Contains {`7esn`} Create (:``:#usn8$`3esn`)-[`1esn`?:`8esn`]->(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})"), - octest_legacy:ct_string("Optional Match (((_usn4 :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})<-[``?:_usn4|:usn2{`1esn`:False Is Null Is Null}]->(usn2 :`6esn`{#usn7:Count ( * ) Contains 07}))),``=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))) Where usn2 Is Null Merge usn1=Shortestpath((`7esn` :``:#usn8)<-[ *0X7..]-(`2esn` {_usn3:`1esn` Contains {usn2} Contains $#usn8})-[_usn4:#usn8|`1esn`{`6esn`:#usn8[..{#usn7}]}]->(#usn7 :`4esn`)) Foreach(usn1 In \"d_str\" Starts With 01| Unwind [`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"]|$#usn7 Is Null][..{`4esn`:{`4esn`} =~{7} =~{`7esn`},`8esn`:$#usn7[#usn7..]}] As @usn6)"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From $123456789 In $#usn7 In `4esn` As `5esn` "), - octest_legacy:ct_string("Foreach(`7esn` In Case 's_str' In 00 When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null When $@usn5 Starts With {0} Starts With 12 Then {usn2} Else {#usn7}[`2esn`..] End| Create `8esn`=Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))),#usn8=(:`2esn`:usn1)-[`1esn`:@usn6|`6esn`*..{`7esn`:7[{0}..{_usn4}]}]->(`8esn` {_usn4:`4esn`[1.0],`5esn`:0e0 Ends With 1.e1 Ends With $`4esn`})-[:@usn5{@usn5:{#usn7}[9e1..][{123456789}..],``:#usn7 Is Not Null Is Not Null}]->(`4esn` :`6esn`{_usn3:$123456789 Ends With `3esn` Ends With 123456789,`6esn`:0e0 Starts With 2.12 Starts With $12})) Merge Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))) Union All Start usn1=Rel:@usn6(#usn7='s_str') ,``=Node:@usn6({_usn4}) Union All Load Csv From None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`]) Is Not Null As `2esn` "), - octest_legacy:ct_string("Remove [123456789 Ends With $`6esn` Ends With $#usn7]._usn3!,{usn1:`1esn` Contains {usn2} Contains $#usn8}._usn3?,{_usn4:True[07..$usn2][$7..{usn1}]}.``?"), - octest_legacy:ct_string("Create usn2=(`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[@usn5?:`3esn`|:#usn8{_usn4:{999}}]->(:#usn8:#usn8{``:1.0[0e0..0.e0]}),#usn8=((`3esn` {`8esn`:\"d_str\" Contains {123456789} Contains 01,@usn5:`1esn` In .e0 In {`3esn`}})-[#usn7?:`3esn`|:#usn8]->(`2esn` :usn1)-[ *..999{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(@usn5 {_usn3:`1esn` Contains {usn2} Contains $#usn8})) With Distinct #usn8 Starts With $_usn4 Starts With $7 As `6esn` Order By $0[$`1esn`..07] Descending Skip 9e1 Is Not Null"), - octest_legacy:ct_string("Load Csv With Headers From {_usn4} Is Not Null Is Not Null As `5esn` Return Distinct $``[1.0],{`5esn`}[0..`8esn`][0..Null] As `7esn` Order By 0Xa =~123456789 =~_usn4 Desc Skip $7[{usn2}..][{usn2}..] Limit $1000 Is Null Remove Allshortestpaths((:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[usn1:`8esn`]-({_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null})).`6esn`!,(`4esn` :``:#usn8{`1esn`:$`5esn`[`3esn`..]})-[`7esn`*]->(:#usn7{@usn5:{12} =~#usn8})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 ).`4esn`? Union All Optional Match #usn7=((usn2 :`6esn`{#usn7:Count ( * ) Contains 07})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})) Using Join On `8esn`,`` Using Index `8esn`:`1esn`(@usn5) Where `1esn`[..{@usn6}][..$123456789] Unwind {7} Is Null As `6esn` Merge #usn8=Allshortestpaths(({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null}))"), - octest_legacy:ct_string("Merge `7esn`=((`1esn` :#usn7)) Create Unique _usn4=Allshortestpaths((`` {@usn6:1.0[$`1esn`..][$123456789..]})<-[?{usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null}]-(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})) Union Merge `4esn`=Shortestpath((((#usn8 :`8esn`:`7esn`{#usn7:#usn8[..{#usn7}]})-[usn1?]->({_usn3:False =~1e1 =~0.e0,_usn3:{999} Starts With $999})-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(`` :_usn4)))) Merge Allshortestpaths(((`` :`1esn`)-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 $999)<-[`4esn`?:`7esn` *0..{`2esn`:00[`2esn`..12][123456789..0.e0]}]->(`1esn` :_usn3:_usn3))) On Match Set `1esn`+=usn1 Is Null Is Null,Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]).`5esn` =0X0123456789ABCDEF Is Null Is Null Start `7esn`=Node:`6esn`({_usn3}) Where 123456789 Ends With 12.e12 Ends With $`7esn` Union All With Distinct {0} As `7esn`,1000[..$0][..True] Limit Case When @usn5 Is Null Then 2.12 Ends With $_usn3 Ends With `3esn` Else $1000 Is Null End[Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}])..None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa)][Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01|usn2 Is Null)..Case When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` End]"), - octest_legacy:ct_string("Start usn2=Node:_usn4(``={#usn7}) ,`3esn`=Rel:usn1(`6esn`={7}) Union All Create Unique ((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})),Allshortestpaths(((`2esn` :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0}))) Merge ((@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})) On Match Set `3esn` =Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End On Match Set Case When $_usn3[Count(*)] Then 010[#usn7..True] End.`6esn` =(`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})[\"d_str\"..Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null)][Shortestpath(((:`3esn`:@usn5$7)))..usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010])],All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where $_usn4 Ends With usn1 Ends With $0).@usn5? =Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End Union Create usn2=Allshortestpaths(((:@usn6:#usn8{`4esn`:$`8esn`[..00]})<-[_usn4?:_usn4|:usn2 *00]->(:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))),#usn8=(((`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})-[@usn5]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))"), - octest_legacy:ct_string("Unwind {12}[..0X7] As `3esn` Foreach(usn1 In Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End Ends With Case When 0x0 Ends With $12 Then 07 =~01 End| Detach Delete $@usn5,'s_str' =~{_usn4} =~$`7esn`,usn1(Distinct $@usn5 Starts With $1000)[[`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}|0Xa =~Null =~$``]..]) Start `2esn`=Node:@usn5({`1esn`}) ,usn1=Node:#usn7(usn1=\"d_str\")Where #usn7 Starts With {#usn7} Starts With `7esn` Union All Load Csv From $usn2[{@usn5}] As #usn7 Fieldterminator 's_str'"), - octest_legacy:ct_string("Remove [9e1[1000][{123456789}],$usn2[{@usn5}],0Xa Starts With {`6esn`} Starts With $usn1].`3esn`?,[`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]].#usn7? Load Csv With Headers From Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 2.12 Ends With $_usn3 Ends With `3esn`|{123456789} Contains $#usn8)[{`7esn`:$`6esn`[010..]}..] As @usn5 "), - octest_legacy:ct_string("With Distinct *,$123456789 Starts With {_usn4} Starts With $1000,`6esn`(Distinct 0X7[`7esn`][123.654]) Is Not Null Is Not Null Skip $`7esn` Is Not Null Remove `2esn`($`6esn`[123456789..12][True..{`3esn`}],$`5esn`[`3esn`..]).``! Union All Merge usn1=Allshortestpaths((`` {@usn6:1.0[$`1esn`..][$123456789..]})-[`7esn`*]->(`7esn` {`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})-[@usn6]-(`5esn` {`4esn`:01 Is Null})) Union All With Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]) =~({``:$`8esn` =~{1000}})<-[#usn8? *0..]->(`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7}) =~Shortestpath((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})) As #usn8,Reduce(`8esn`={@usn5}[{#usn8}][9e0],`3esn` In {7} Is Null|0e0 Starts With 1000 Starts With #usn7)[Single(#usn8 In 7[..999][..{#usn8}] Where 123456789 Is Null)] Order By 's_str' In 00 Desc,{1000}[{_usn3}..] Descending,$usn1[...e0][..$_usn3] Asc Where 123.654[$`1esn`]"), - octest_legacy:ct_string("Optional Match (((`5esn` :`6esn`)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}))),#usn7=(:#usn7)<-[`5esn`{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(_usn3 {#usn8:_usn4 Is Null Is Null})<-[#usn7{`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]}]-({#usn8:True[..$`6esn`]}) Using Join On ``,`4esn`,@usn6 Return *,Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})] As `5esn`,False Ends With `3esn` Order By 00[{`8esn`}..][{`8esn`}..] Descending Skip 123456789[_usn4..][{999}..] Limit 0x0 Is Null Delete `8esn` Ends With $`2esn`,[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where $7[0.12][usn1]] Ends With {#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12} Ends With Case `1esn`[{usn1}..``][7..$#usn8] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] End,$123456789 =~{`6esn`} =~\"d_str\" Union Merge `5esn`=(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]->(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[`1esn`?:`8esn` *123456789..]->(#usn7 :`6esn`$1000) On Create Set Extract(`3esn` In {7} Is Null Where $#usn7[@usn5..{1000}][1.e1..7]|$7 Is Not Null Is Not Null).`4esn`! =Case When {``} Starts With $`2esn` Starts With `1esn` Then $`5esn` Starts With $0 Starts With {0} End[None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e1 Is Not Null)..[`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1]],[12[1.e1..{_usn3}][1.e1..1.0]].`8esn`? ={`4esn`:{`4esn`} =~{7} =~{`7esn`},`8esn`:$#usn7[#usn7..]} Is Null Is Null,usn1 =$_usn4 Contains Null Contains #usn8 Load Csv With Headers From 0 In `2esn` In 010 As `1esn` Fieldterminator 's_str' Match ``=(`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}),(#usn8 :@usn6:#usn8) Using Index `7esn`:usn2(`6esn`)"), - octest_legacy:ct_string("Detach Delete $12 Ends With 07 Ends With $123456789,$`6esn`[{_usn3}..$`4esn`][$_usn4...e12] Foreach(usn1 In (:_usn4{@usn6})<-[`4esn`?:_usn4|:usn2{_usn4:$usn2[{@usn5}],`2esn`:usn1[`5esn`..$7]}]->({``:$`8esn` =~{1000}})<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(:``:#usn8{usn1:{`6esn`}})[[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn` Contains 123456789 Contains $usn2|123456789 Ends With 01234567 Ends With 1.e1]..{usn2:1.0 =~7 =~{usn2},`8esn`:$_usn3[.e0..$usn2]}][None(_usn3 In {`3esn`}[`2esn`] Where 7 Ends With $`4esn`)..Case {`2esn`} Starts With 123456789 When $`5esn` In $`6esn` Then $`6esn` Ends With Count(*) End]| Optional Match Shortestpath(((({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(:`6esn`$123456789)))),@usn6=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7)) Using Index `7esn`:usn2(`6esn`)) Start `1esn`=Node:usn2({12}) ,usn1=Node:`7esn`(`3esn`={``})Where {usn2}"), - octest_legacy:ct_string("Remove @usn5(2.12 Is Null,_usn3 Ends With 7 Ends With `1esn`).usn1,[`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`]].#usn7? Foreach(`5esn` In {#usn8} Is Null| Create `5esn`=Allshortestpaths(((`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}))),`6esn`=Shortestpath((((_usn4 :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})<-[``?:_usn4|:usn2{`1esn`:False Is Null Is Null}]->(usn2 :`6esn`{#usn7:Count ( * ) Contains 07})))) Start #usn8=Relationship:usn2(`8esn`={`8esn`}) ,`3esn`=Node:usn1(\"d_str\")Where 0.0[Null][$`2esn`]) Union Unwind `8esn`[$#usn7..123456789] As `` Start `6esn`=Rel:#usn8(@usn6={_usn4}) ,`4esn`=Relationship:`6esn`(#usn8={_usn3})"), - octest_legacy:ct_string("Load Csv From #usn7[usn1][$`5esn`] As `6esn` Load Csv From 12 Ends With 0x0 Ends With 0.e0 As usn1 Union Remove All(#usn7 In `2esn`[..$#usn8][..Count(*)]).#usn7!,All(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01).usn1?,[`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {_usn4} Starts With 0.e0 Starts With 0x0|123.654[`3esn`..]].`2esn`? Union All Optional Match usn2=((@usn6 :_usn4)),Shortestpath((((:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})<-[:#usn7 *..010]-(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})))) Using Index _usn3:`6esn`(#usn7) Where $`4esn`[..$`3esn`][..0.0]"), - octest_legacy:ct_string("Return Distinct $`5esn`[$`4esn`..{@usn6}][07..$@usn6] As usn2 Order By [usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*)) Ascending,Case When 1.0 In Count(*) Then False End Contains `1esn`(Distinct 0.e0 Starts With `2esn`) Contains Reduce(`1esn`=\"d_str\" Is Null Is Null,#usn7 In {``} Is Not Null|#usn7) Descending Skip Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End Limit All(#usn7 In {``} Is Not Null Where {_usn4}[...e1][..$7]) Is Null Is Null Match Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Using Index ``:usn1(@usn5) Using Index `3esn`:`5esn`(#usn7) Where $`5esn`[2.12..] Unwind $_usn4 In usn1 In $7 As usn1"), - octest_legacy:ct_string("Remove `2esn`(Distinct 123.654[0e0..$``][$`1esn`..$`8esn`],`5esn`[{`4esn`}..`2esn`]).#usn8!,Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0xabc[01..{999}][{7}..{`7esn`}]|0 In `2esn` In 010).`7esn`? Optional Match Shortestpath(((`` :usn2)<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})-[`2esn`?:usn2|``{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}]-({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}))) Using Join On ``,`4esn`,@usn6 Using Join On `5esn`,@usn6 With Distinct 07[$123456789..] Order By {7}[$7..$``][{``}..{7}] Descending,$_usn3[Count(*)] Desc Union Optional Match `8esn`=Allshortestpaths(((:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))),`2esn`=((`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(_usn3 :#usn7)<-[@usn5?]->(`1esn` :`5esn`{`5esn`:{``} Is Null})) Where $usn1[{`5esn`}][$`6esn`] Union Foreach(usn2 In {`3esn`}[`2esn`]| Load Csv From 2.12 Is Null As `7esn` ) With [9e1[..$`2esn`]][{`8esn`:False =~$7 =~2.12,`3esn`:Count ( * ) =~$usn2 =~$usn2}][Case {``} Is Null When 2.12 Then $123456789 Ends With {`1esn`} Ends With $`4esn` End] As `8esn`,`7esn` Is Null As `7esn` Skip $`4esn`[010..`4esn`] Where {1000} =~0 =~123.654 Merge `2esn`=Shortestpath((((:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})<-[:#usn7 *..010]-(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})))) On Match Set #usn8:usn2,usn1 =Reduce(`2esn`=1e1 In 123.654 In `3esn`,`5esn` In \"d_str\" Is Null Is Null|$_usn3[{#usn7}]) Is Not Null,`6esn` =0.e0 Starts With `2esn` On Match Set @usn5 =Extract(#usn8 In {`5esn`}[.e1..``] Where {`3esn`}[..07][..{`5esn`}]) Is Null Is Null"), - octest_legacy:ct_string("Unwind 12 Ends With $usn2 As `6esn` Unwind `7esn`[$12..][$`8esn`..] As `2esn` Unwind .e0 =~`6esn` =~{12} As `3esn`"), - octest_legacy:ct_string("Start #usn7=Node:@usn6({_usn4}) ,usn1=Rel:`7esn`(usn2={`7esn`})Where 123.654 =~$usn2 =~{999} Foreach(`5esn` In All(`5esn` In $999[0.0..] Where {@usn6} Ends With 's_str' Ends With 12.0) In (:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})| Start _usn4=Rel:#usn8(\"d_str\") Where $#usn8[9e12..][.e1..]) Return Distinct 0.e0 Starts With 12.e12 Starts With {_usn4} As _usn3,0e0 =~`6esn` =~123456789,`1esn`($123456789 Starts With 9e0 Starts With 's_str',{usn2}[.e0..$999])[{usn2:{`3esn`} In 0X7,_usn3:7 Starts With {@usn6} Starts With $``}..Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {usn1} In 2.12 In 1000)][Case 0[`7esn`..] When 123456789 Is Null Then .e12 Is Not Null Is Not Null Else $@usn5 =~1000 =~1000 End..[`4esn` In $`3esn` Is Not Null Where `8esn`[{123456789}..]|{`3esn`}[`2esn`]]] Skip 0X0123456789ABCDEF Ends With $`8esn` Ends With 0.12 Limit Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]|@usn5 =~{`5esn`} =~`5esn`) Contains Case When 0[..usn2][..{@usn5}] Then 2.12['s_str'..$12][{`1esn`}..`2esn`] When 01 Contains {`8esn`} Contains 2.12 Then #usn8[#usn8..] End Contains (:`5esn`{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]})<-[usn2?:_usn4|:usn2{``:`1esn` Contains {usn2} Contains $#usn8}]-(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc}) Union Load Csv From [{`3esn`} Is Not Null Is Not Null] As @usn5 Merge `1esn`=Allshortestpaths((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))))"), - octest_legacy:ct_string("Load Csv From {`2esn`}[$`4esn`][$`5esn`] As `7esn` Start `2esn`=Node:@usn6({_usn4}) "), - octest_legacy:ct_string("Optional Match `8esn`=Allshortestpaths(({@usn5:07[..True][..9e12]})-[_usn4?:`5esn` *..07]->({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})) Using Join On #usn7,_usn4 Using Index `3esn`:`5esn`(#usn7) Where usn1 Ends With $@usn6 Ends With `3esn` Load Csv From {#usn7:0X0123456789ABCDEF =~1e1 =~{`4esn`},`2esn`:1.0 =~'s_str' =~{`2esn`}}[..None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 0X7[`7esn`][123.654])][..(:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})<-[`2esn`?:`7esn`]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})] As `8esn` Fieldterminator \"d_str\" Union All Create ((:`4esn`{`5esn`})) With *,Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn` Skip 010[\"d_str\"..{@usn6}] Limit $`3esn`[0.12..`8esn`][$#usn7..`5esn`]"), - octest_legacy:ct_string("With Distinct *,{``}[`8esn`..],Case {`3esn`}[@usn6..0Xa][{12}..0Xa] When {usn1}[0X0123456789ABCDEF] Then 0x0 Ends With $12 When 0e0 Starts With `2esn` Starts With $`` Then {123456789}[9e12][{0}] Else 0X7[1000..{`1esn`}] End[..({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})] As #usn7 Order By False Contains {`6esn`} Ascending,{`1esn`}[usn1][.e1] Asc Where `7esn`[..2.12][..{usn1}] Load Csv From 1000 In `7esn` In 9e12 As `3esn` Fieldterminator 's_str' Create Allshortestpaths((:`3esn`:@usn5{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`4esn` {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})),(({@usn5:{usn2}[.e0..$999]}))"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From \"d_str\"[..{@usn5}][..``] As `6esn` Fieldterminator 's_str' Unwind $usn2[9e0] As `5esn`"), - octest_legacy:ct_string("Match #usn8=Shortestpath((#usn8 :@usn5)) Using Scan `1esn`:`3esn` Using Join On _usn4 Where {``} Starts With $`2esn` Starts With `1esn` Detach Delete [`4esn` In $`3esn` Is Not Null Where $@usn5 Contains 0xabc Contains {#usn7}|`3esn`[{0}][usn1]] In [{12}[{7}][$123456789],`2esn` Starts With $_usn4] In count($1000 Is Null,0Xa[$123456789..123.654][.e12..0.e0]),{0} Contains 0.0 Contains $@usn5"), - octest_legacy:ct_string("Match ((_usn4 :``:#usn8)-[:`8esn` *..01]->({#usn7:0.e0 Starts With `2esn`})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->($#usn8)) Using Join On `2esn` Using Join On `1esn`"), - octest_legacy:ct_string("Load Csv From {_usn3}[..\"d_str\"] As `3esn` Remove `6esn`(Distinct `5esn`[7][{usn2}],.e12[@usn5..$12]).usn1!,{`1esn`:True[..$`6esn`]}.`2esn`,Reduce(@usn6=0.e0[#usn8],usn1 In @usn5 =~{`5esn`} =~`5esn`|$`5esn` In $`6esn`).`5esn`? Union Unwind Allshortestpaths(((`8esn` ))) Ends With (`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]}) As _usn3 Foreach(`4esn` In {_usn3}[12.e12]| Optional Match (#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})<-[`6esn`?{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}),usn2=(@usn6 :``:#usn8)<-[?:`8esn`{`3esn`:1.0 In Count(*)}]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}) Using Index _usn4:`5esn`(`6esn`) Using Scan `6esn`:`2esn`) Union Optional Match Shortestpath((_usn3 :#usn7)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})<-[`5esn`? *..12{`8esn`:{`7esn`}[`6esn`][#usn7],`1esn`:0x0 Ends With $12}]->({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000})) Using Index _usn3:`6esn`(#usn7) Using Index usn2:`7esn`(`2esn`) Where Count(*)[..usn2][..usn2] Remove Reduce(`4esn`=0X7[$999][_usn4],`2esn` In `1esn` =~\"d_str\"|0Xa[$123456789..123.654][.e12..0.e0]).usn2,{@usn6}.@usn6 With *,123.654 Is Not Null,Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..] As `7esn` Order By Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End[[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]]..Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})))] Ascending,All(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Contains (`5esn` :_usn4{`5esn`:07[..True][..9e12]})-[`8esn`?:`2esn`{@usn6:{12}[..0X7]}]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]})<-[_usn4{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00}) Contains [0.12[$`3esn`..$_usn3][12.0..usn1]] Ascending Skip {_usn4} In {12} In $0 Where {7}[..12e12][..Count ( * )]"), - octest_legacy:ct_string("Unwind {`1esn`:9e1[1000][{123456789}],``:$`8esn`} Starts With (#usn8 :#usn8:#usn8{@usn5:{#usn8} Is Not Null})-[?:`5esn`]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}) As @usn5 Union Load Csv From $usn1[_usn4] As `` Return Distinct (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(:_usn3:_usn3{``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Is Not Null,$#usn8[Count ( * )] As `4esn` Order By Case When Count(*) In $12 Then .e0 Starts With 0 Starts With 0.e0 When {usn1}[0X0123456789ABCDEF] Then $`6esn`[123456789..12][True..{`3esn`}] Else 7 Starts With {@usn6} Starts With $`` End[Case @usn6 Contains $1000 Contains {`7esn`} When 0.12 =~$0 =~$0 Then $usn1[.._usn4][..False] When {0} Ends With $_usn3 Ends With $`7esn` Then 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3] End..] Desc,False Ascending Skip `2esn`[{`4esn`}][$_usn3] Limit Reduce(`4esn`=01 Ends With 999 Ends With {`7esn`},`4esn` In $`3esn` Is Not Null|1.0[`3esn`..][9e0..]) Is Null Is Null Union Foreach(`8esn` In {usn1}[0X0123456789ABCDEF]| Create Unique usn1=Allshortestpaths((`` {@usn6:1.0[$`1esn`..][$123456789..]})-[`7esn`*]->(`7esn` {`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})-[@usn6]-(`5esn` {`4esn`:01 Is Null})),({_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})<-[:#usn7{@usn5:$usn2[9e0]}]-(`2esn` :``:#usn8) Load Csv With Headers From [_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null|999 Is Not Null Is Not Null] Ends With [`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null|{`5esn`} Starts With $`5esn` Starts With .e1] Ends With {``:usn1 Starts With usn1 Starts With $``} As @usn5 ) Return Distinct [12.e12[$_usn3..]][Shortestpath(((@usn6 :`4esn`)))..Reduce(`5esn`=01234567 Ends With .e12 Ends With $#usn7,`8esn` In 01[2.12..`8esn`]|0Xa =~Null =~$``)] As `1esn`,$`8esn` Contains 123456789 Contains $usn2 Order By Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 1.0 =~7 =~{usn2}) Is Not Null Is Not Null Desc,Case When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $`4esn`[..$`3esn`][..0.0] Then `1esn` =~0 =~$#usn7 Else {``} Is Null End Contains Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Contains All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {@usn6}[7]) Ascending,[`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]][..None(#usn8 In 7[..999][..{#usn8}] Where $`7esn`['s_str'])][..`1esn`(Distinct 12e12[$`3esn`],0.0 =~999)] Desc Create #usn8=Allshortestpaths((({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})-[? *..0x0{_usn3:01 Ends With 999 Ends With {`7esn`}}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[?{usn1:0[`7esn`..]}]->({usn1:{`7esn`}[`6esn`][#usn7],usn1:{999} Starts With $999})))"), - octest_legacy:ct_string("Unwind True[00][0Xa] As #usn8 Remove [0e0 Ends With 1.e1 Ends With $`4esn`].`7esn`!"), - octest_legacy:ct_string("Remove `7esn`(Distinct {usn1} Ends With $0).#usn8! Match `8esn`=(((usn2 :#usn7)<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[`7esn`:`1esn` *0X0123456789ABCDEF{`6esn`:1000[..$0][..True],_usn4:Count ( * ) Ends With $@usn5}]->(`4esn` {usn2:0x0 Is Null,`5esn`:{usn2} =~12}))),((_usn3 :`7esn`:_usn3)-[]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})) Unwind usn2 Ends With 12.e12 As `6esn` Union All Return *,Reduce(`2esn`=12[1.e1..{_usn3}][1.e1..1.0],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{#usn8}[010]) Is Not Null Is Not Null,usn1 In 7 In {123456789} As `5esn` Return Distinct 07 Is Not Null Is Not Null As `6esn`,(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})[[{@usn6}[{999}..][00..],@usn5 =~{`5esn`} =~`5esn`,`7esn` Is Null]][Reduce(`7esn`=0X0123456789ABCDEF Is Null Is Null,`5esn` In $999[0.0..]|$1000[Null][`4esn`])] As @usn6 Limit Shortestpath((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]}))[None(#usn7 In `2esn`[..$#usn8][..Count(*)])][(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})] Detach Delete $`1esn` =~0X7,.e0 Ends With 0.12,0e0[`8esn`..][$123456789..] Union Start ``=Rel:#usn8(_usn3='s_str') ,`7esn`=Rel:`6esn`(\"d_str\")Where 0[..usn2][..{@usn5}] Delete $#usn7[..{`5esn`}][..9e12],{``}[$`8esn`..],Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6}"), - octest_legacy:ct_string("Optional Match ((`4esn` :@usn6:#usn8)-[:`8esn`*]->({_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})),`3esn`=Shortestpath(((:`1esn`{`5esn`:1.0 In Count(*)}))) Using Scan _usn4:`7esn` Where 0x0[{`7esn`}..][$usn2..] Detach Delete `3esn`[$`1esn`..999][``..$123456789],$12[Null..Count(*)][{`5esn`}..{999}] Load Csv With Headers From Extract(`5esn` In \"d_str\" Is Null Is Null)[Any(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``)][Case $`7esn` Is Null Is Null When {#usn7}[9e1..][{123456789}..] Then False =~1e1 =~0.e0 Else 1000 In {`8esn`} In 01 End] As _usn4 Fieldterminator \"d_str\" Union All Create ({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}) Union All Delete {0}[12.0..0Xa][$`5esn`..{_usn3}] Create Unique _usn3=Allshortestpaths((`8esn` {`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})<-[`3esn`? *..01]->(:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)),`8esn`=((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}}))"), - octest_legacy:ct_string("Start ``=Node:`1esn`(@usn5='s_str') ,``=Node:@usn6({_usn4})Where $`8esn`[$`6esn`..$`4esn`][0.12.._usn3] Union All Detach Delete $#usn7 Is Not Null Merge ({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`) On Match Set _usn3+={_usn3}[12.e12],`3esn`+=@usn5 =~{`5esn`} =~`5esn`,#usn8 =[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*))"), - octest_legacy:ct_string("Create Unique Allshortestpaths((`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})),({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`) Return Case When usn1 Is Not Null Then $0[12.e12..] Else 7[{0}..{_usn4}] End[..Reduce(_usn3={@usn5} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{usn1}[0X0123456789ABCDEF])] As #usn8,$`7esn` =~7 =~12e12,$`8esn`[..{`2esn`}] Skip Reduce(`2esn`=$_usn3[.e0..$usn2],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$`7esn` Is Null Is Null)[Shortestpath((({``})))..{@usn6:{`6esn`} =~$999}] Limit `8esn`[$`8esn`..{`4esn`}] Create `3esn`=Shortestpath(((:usn1{usn1:{`6esn`}})-[@usn6?:`3esn`|:#usn8 *123456789..]->(:_usn3:_usn3{`7esn`:$`1esn` =~0X7})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``}))),@usn6=Allshortestpaths(((:`1esn`)))"), - octest_legacy:ct_string("Foreach(#usn8 In $`1esn` Ends With 9e1 Ends With $123456789| Start _usn3=Node:`8esn`(`1esn`={#usn7}) Where usn2[9e12] Remove Case When 01 Contains {`8esn`} Contains 2.12 Then $_usn3[Count(*)] Else {`3esn`}[@usn6..0Xa][{12}..0Xa] End.`5esn`!,[#usn8 In 7[..999][..{#usn8}] Where {`5esn`} Contains $0 Contains {``}|#usn7 Starts With {#usn7} Starts With `7esn`].`1esn`?) Return 1.e1 Is Null Is Null As @usn5,$`7esn` =~7 =~12e12 Limit $12[Count ( * )][0X7] Union All Remove Case When $#usn8[$`8esn`..{`8esn`}] Then $#usn8[$`8esn`..{`8esn`}] Else #usn8 Is Not Null Is Not Null End.@usn6! Start usn1=Node:_usn3({`6esn`}) ,`5esn`=Relationship(*)"), - octest_legacy:ct_string("Return Distinct `5esn`(Distinct `2esn` Is Null,123456789[{123456789}..'s_str'])[.._usn3(.e0[..$`8esn`])][..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}] Skip [`5esn` In $999[0.0..] Where `5esn` Starts With `3esn`|12e12 Is Not Null Is Not Null]"), - octest_legacy:ct_string("Detach Delete [12.e12[$_usn3..]][..All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where True In 0e0)][..[.e12[@usn5..#usn7][010..{usn1}],$@usn5 Is Not Null]],Count(*) In $12,{`8esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`6esn`:2.12 =~Count(*)} =~Shortestpath(((:`4esn`{`5esn`})))"), - octest_legacy:ct_string("Start usn1=Rel:`7esn`(usn2={`7esn`}) ,``=Node:usn2(#usn8=\"d_str\") Return Distinct All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {_usn4} Is Not Null Is Not Null) Is Null As `2esn`,{0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]] As `1esn`,$`6esn` =~1.e1 =~12 Limit 0e0 Starts With `2esn` Starts With $``"), - octest_legacy:ct_string("Detach Delete [`4esn` In $`3esn` Is Not Null Where $@usn5 Contains 0xabc Contains {#usn7}|`3esn`[{0}][usn1]] In [{12}[{7}][$123456789],`2esn` Starts With $_usn4] In count($1000 Is Null,0Xa[$123456789..123.654][.e12..0.e0]),{0} Contains 0.0 Contains $@usn5 With Distinct usn2 Ends With 999 Ends With .e1 As `7esn`,$`5esn`[$123456789],[#usn8 In 7[..999][..{#usn8}] Where {12} =~#usn8|\"d_str\" Contains {123456789} Contains 01] Contains {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} As `8esn` Order By $0[$`1esn`..07] Desc,Filter(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0]) Ends With Case When {#usn8}[010] Then False =~$7 =~2.12 End Descending,{`4esn`:{`4esn`} =~{7} =~{`7esn`},`8esn`:$#usn7[#usn7..]} Is Null Is Null Desc Limit Extract(`5esn` In $999[0.0..] Where {_usn3}[..\"d_str\"]) =~All(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {@usn6}[{999}..][00..]) =~Any(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01) Optional Match ((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})),``=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))) Using Scan _usn3:_usn3 Where Count ( * ) Ends With $@usn5 Union Merge ((@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})) On Match Set `3esn` =Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End On Match Set Case When $_usn3[Count(*)] Then 010[#usn7..True] End.`6esn` =(`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})[\"d_str\"..Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null)][Shortestpath(((:`3esn`:@usn5$7)))..usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010])],All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where $_usn4 Ends With usn1 Ends With $0).@usn5? =Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End"), - octest_legacy:ct_string("Load Csv From 123456789[_usn3] As _usn3 Create _usn4=Shortestpath((((`7esn` )-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:`1esn`{``:.e1 Is Null Is Null})))),#usn8=Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Union Remove [usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0X0123456789ABCDEF =~1e1 =~{`4esn`}|$_usn3['s_str'][07]].`6esn`?,Single(`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1).@usn5! Union Optional Match `2esn`=((`5esn` :_usn4{7})<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})-[:`4esn` *0xabc..{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(`3esn` :`5esn`)) Using Scan `1esn`:usn2 Where {@usn5} Is Null Is Null Return Distinct All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)],None(#usn8 In 7[..999][..{#usn8}] Where 2.12['s_str'..$12][{`1esn`}..`2esn`])[[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 12e12 Ends With {usn1}]][[$12 Ends With 07 Ends With $123456789,$@usn5 =~1000 =~1000,.e12[@usn5..$12]]] As @usn5 Order By 0.12 =~$0 =~$0 Descending Create Unique Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` )))),_usn3=Shortestpath((:`3esn`:@usn5{`2esn`:{`3esn`}[..07][..{`5esn`}]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null}))"), - octest_legacy:ct_string("Start `5esn`=Relationship:usn1({999}) ,usn1=Relationship:_usn3(`8esn`={123456789}) Return Distinct 0e0 =~`6esn` =~123456789 As @usn5,Count ( * )[True..][{#usn7}..],2.12 =~{7} As `6esn` Order By {`2esn`}[1e1..1.0][{#usn8}..$`1esn`] Ascending,0X0123456789ABCDEF Is Null Is Null Asc Skip \"d_str\"[#usn8] Detach Delete `6esn`[2.12..01][{``}..False]"), - octest_legacy:ct_string("Load Csv From `2esn`[..$#usn8][..Count(*)] As `6esn` Fieldterminator 's_str'"), - octest_legacy:ct_string("With *,'s_str' Starts With 123.654 As usn1 Skip {0} In $_usn3 Limit {`3esn`} In 01 Load Csv With Headers From 2.12 =~{7} As `7esn` Fieldterminator 's_str'"), - octest_legacy:ct_string("With 0.e0 In $#usn7 In $_usn3,(usn2 :@usn5)-[?{`8esn`:{7} Is Null}]->(`` )<-[`3esn`?:`3esn`|:#usn8]-(`` :#usn8:#usn8)[Reduce(usn2=`2esn` Starts With $_usn4,#usn7 In {``} Is Not Null|{7} Is Null)..][Single(#usn7 In {``} Is Not Null Where $1000[0Xa][{#usn7}])..] As `2esn` Order By $usn1 Ends With $`` Ends With $12 Desc,1e1[1000..] Ascending,{123456789}[0.e0..$123456789][0Xa..`6esn`] Descending Limit {123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4] Where `4esn` Ends With 07 Ends With {`3esn`}"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From _usn4 Contains 2.12 As #usn8 Merge `8esn`=Allshortestpaths((`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})) With Distinct $@usn5 Contains 0xabc Contains {#usn7},Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))) As _usn3 Limit {`3esn`}[@usn6..0Xa][{12}..0Xa]"), - octest_legacy:ct_string("Create `4esn`=Shortestpath((`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})<-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(`3esn` :`6esn`)),Allshortestpaths(((_usn4 :`8esn`:`7esn`{`4esn`:{`2esn`} Is Not Null Is Not Null,`1esn`:.e1 =~$`8esn`})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2}))) Foreach(`6esn` In `7esn`[..2.12][..{usn1}]| Start `2esn`=Node:@usn6({_usn4}) ,_usn3=Relationship:`8esn`({`1esn`}) Return Distinct 0X7[1000..{`1esn`}] As `3esn`,$`2esn`[12.e12..][{`4esn`}..] Order By 0.0 =~999 Asc,$`5esn` In 0.e0 Asc,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) Ascending Limit Count ( * ) Is Null) Unwind {1000} =~0 =~123.654 As `3esn`"), - octest_legacy:ct_string("Detach Delete All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $`` Is Not Null)[..Reduce(@usn6=$`4esn`[..$`3esn`][..0.0],`3esn` In {7} Is Null|$`7esn` =~{`8esn`} =~$usn1)][..Reduce(@usn6={`3esn`} Is Not Null Is Not Null,`` In `` Is Not Null Is Not Null|$`3esn` Is Null)],12.e12[$_usn3..] Union Foreach(usn1 In Case When False Then 0.e0 Ends With $#usn7 Ends With $7 When {@usn6}[{999}..][00..] Then `5esn` Ends With {``} Ends With 12.e12 Else 123.654[$`1esn`] End[Reduce(#usn8=$`6esn` Ends With Count(*),`2esn` In `1esn` =~\"d_str\"|_usn4 Contains 2.12)..]| Start @usn6=Relationship:@usn6(`4esn`='s_str') Remove (:`1esn`{_usn4:{999}})-[`4esn`?:_usn4|:usn2 *..01]->(`7esn` :`8esn`:`7esn`{#usn8:01234567[usn2..$12][{`7esn`}..$usn2]}).``!,Any(#usn8 In {`5esn`}[.e1..``] Where 0X7[..2.12])._usn4,{#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12}.`5esn`?) Delete {_usn4} =~$_usn4 Union All Optional Match Shortestpath(((:@usn6:#usn8{`4esn`:{`7esn`} Is Null,_usn4:$123456789 Ends With {`1esn`} Ends With $`4esn`}))),`1esn`=Allshortestpaths(((:@usn5)-[:#usn7{`2esn`:.e12 Ends With _usn4}]-(usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1))) Using Join On _usn4,`4esn`,`5esn` Create _usn4=Shortestpath(((:`1esn`{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789}))),`3esn`=((:`5esn`{#usn7:{123456789} Contains $#usn8})) Remove Filter(`2esn` In `1esn` =~\"d_str\" Where $`4esn` In Null In 0xabc).`6esn`?,None(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`]).`4esn`!"), - octest_legacy:ct_string("Create #usn8=Shortestpath(((`5esn` )-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(@usn6 {`3esn`:{``} Is Not Null})<-[`1esn` *0Xa{_usn3:Null Ends With `2esn` Ends With $usn1,#usn8:.e12 Is Not Null Is Not Null}]->(usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]}))) Optional Match (((`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})-[usn1:_usn3|_usn3 *..999{`2esn`:'s_str'[00][{`5esn`}],@usn6:999 Is Not Null Is Not Null}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]}))),(@usn6 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}) Where 123.654[`3esn`..] Foreach(usn1 In usn1(Distinct $@usn5 Starts With $1000)[[`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}|0Xa =~Null =~$``]..]| With Distinct $`8esn` Contains 123456789 Contains $usn2,{_usn4} In {12} In $0,Extract(#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12) Ends With [False =~$7 =~2.12,$`4esn` In Null In 0xabc,{`7esn`} Starts With $123456789 Starts With $@usn6] Skip _usn3[..`8esn`][..2.12] Limit 0X7[0e0..`7esn`][1000..0e0])"), - octest_legacy:ct_string("Foreach(`2esn` In \"d_str\"[#usn8]| Create Unique usn1=(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})-[_usn4? *..01]-(_usn4 :usn2{usn1:7[True..][2.12..],`8esn`:2.12 Ends With $_usn3 Ends With `3esn`})-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]-({`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}),(((`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(:`3esn`:@usn5$usn2))) Load Csv With Headers From $`6esn`[010..] As `7esn` Fieldterminator \"d_str\") Unwind {#usn8}[{``}..] As `6esn` Remove Reduce(`3esn`={12} Is Null Is Null,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|`5esn` Starts With $`2esn` Starts With $1000).`7esn`!"), - octest_legacy:ct_string("With Distinct *,$_usn3 Ends With 0x0 Ends With 12.0 As usn2,[usn1 In @usn5 =~{`5esn`} =~`5esn` Where $999 Is Not Null|{_usn4} Is Not Null Is Not Null][Shortestpath((:`5esn`{``:1.0[0e0..0.e0]})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]}))..{`4esn`:{`4esn`} Ends With {usn2} Ends With {999}}][Single(`5esn` In $999[0.0..] Where .e0[..$`8esn`])..Shortestpath(((:`3esn`:@usn5$7)))] Order By usn1 Starts With $usn1 Desc,1.e1[`8esn`][00] Descending Where 0 In `2esn` In 010 Optional Match Allshortestpaths(((`7esn` :`5esn`{`3esn`:`7esn` Is Null})<-[`5esn`?:`4esn`]-(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})<-[{`4esn`:{_usn3}[..$12][..0.12],`7esn`:1.0[0X7][{`5esn`}]}]-({`2esn`:{7} In `2esn`,`1esn`:`4esn`[1.0]}))),`1esn`=((`8esn` )) Union All With Distinct None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As `5esn`,01 Is Null As `2esn`,{1000} =~$_usn4 Return Distinct 1.e1 Starts With 's_str' Starts With `5esn`,$123456789 Starts With {_usn4} Starts With $1000 As `6esn` Order By Allshortestpaths(((_usn4 :`8esn`:`7esn`{`4esn`:{`2esn`} Is Not Null Is Not Null,`1esn`:.e1 =~$`8esn`})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2}))) Ascending,Case When 07 Contains 0X7 Contains $`8esn` Then 123456789[{123456789}..'s_str'] When _usn3[_usn3..][12.e12..] Then $12[True..][{0}..] End Is Null Is Null Ascending,_usn4(Distinct _usn3[_usn3..][12.e12..])[[0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},0Xa Starts With {`6esn`} Starts With $usn1]] Desc"), - octest_legacy:ct_string("With Distinct 0X7[1000..{`1esn`}],Extract(#usn8 In {`5esn`}[.e1..``] Where {7}[..1.0][..9e0]) Ends With Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where `8esn` Ends With 999 Ends With .e12|9e1[..$`2esn`]) Ends With $_usn4 As `4esn`,12.e12[`3esn`] As #usn7 Where {`6esn`}[..$@usn6][..`7esn`] Create Unique (@usn6 :`1esn`)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``}),_usn3=(((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5))) Foreach(`3esn` In {123456789}[0xabc..]| Remove (_usn4 :#usn7{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})<-[:`4esn` *..010{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-({`1esn`:`3esn`[{`2esn`}]}).`4esn`,Allshortestpaths(((:`1esn`{`5esn`:1.0 In Count(*)}))).@usn5! Delete 010 In Count(*),Count(*)[..usn2][..usn2]) Union With usn2 Ends With 999 Ends With .e1 As `7esn`,$`5esn`[$123456789],[#usn8 In 7[..999][..{#usn8}] Where {12} =~#usn8|\"d_str\" Contains {123456789} Contains 01] Contains {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} As `8esn` Order By {`6esn`}[..$@usn6][..`7esn`] Asc Match @usn6=(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(@usn6 {`3esn`:{``} Is Not Null})<-[@usn5 *0X0123456789ABCDEF]->(`6esn` :`3esn`:@usn5{`3esn`:0.e0 In $#usn7 In $_usn3,_usn4:{`8esn`} Ends With `6esn`}) Where False Remove `5esn`:_usn4,[1.0[0X7][{`5esn`}],@usn6[$`3esn`..{`3esn`}]].#usn8! Union All With *,{_usn4} =~$_usn4 As _usn4 Order By {12} =~#usn8 Asc,[00[$`7esn`],{usn1} In 2.12 In 1000,01 Ends With 999 Ends With {`7esn`}] Starts With Reduce(`6esn`=00[{`8esn`}..][{`8esn`}..],`5esn` In $999[0.0..]|`5esn`[{`4esn`}..`2esn`]) Asc,$1000 Is Null Is Null Descending Skip False[$usn1.._usn4][_usn4..{`3esn`}]"), - octest_legacy:ct_string("Merge #usn7=({@usn5:07[..True][..9e12]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}) On Create Set None(`2esn` In `1esn` =~\"d_str\" Where $`1esn`[1.0..][_usn3..]).`1esn`? =.e12 Contains 0X7 Contains {0} On Match Set [#usn8 In {`5esn`}[.e1..``] Where {7}[..12e12][..Count ( * )]|$123456789 Ends With {`1esn`} Ends With $`4esn`].`6esn`! =Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7) In [{_usn3}[..$12][..0.12],usn1 Is Null] In [#usn8 In 7[..999][..{#usn8}] Where $_usn3 Contains 999 Contains \"d_str\"] Union All Unwind True[..$`6esn`] As `2esn` Foreach(usn1 In {`8esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`6esn`:2.12 =~Count(*)} =~Shortestpath(((:`4esn`{`5esn`})))| Remove [`5esn` In $999[0.0..] Where `5esn` Starts With `3esn`|0e0[..010]].`6esn`!) Return Distinct All(`3esn` In {7} Is Null)[{`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]}..],`5esn`[.e0..][07..] As `7esn` Order By None(`2esn` In `1esn` =~\"d_str\" Where .e12 Is Not Null Is Not Null)[Reduce(@usn5=#usn7 Contains _usn3 Contains {`3esn`},@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|$@usn5 Starts With {0} Starts With 12)] Descending,$123456789[_usn3][{#usn7}] Descending,`8esn`(Distinct $#usn7 Is Null) Ends With Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]) Ends With Shortestpath(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))) Ascending Union Create Unique ((:`5esn`{``:1.0[0e0..0.e0]})) Optional Match `3esn`=((`6esn` :#usn7)-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]})),`2esn`=Shortestpath(((_usn4 {`5esn`:\"d_str\" Starts With 01})-[`3esn`? *123456789..]->({_usn3:$`5esn`[`3esn`..]})<-[{#usn7:123456789 Is Null}]-(:`6esn`{#usn7:$@usn5 Contains 0xabc Contains {#usn7},`1esn`:0xabc[.e0]}))) Using Scan `4esn`:usn1 With *,$1000 =~$`2esn` As `7esn` Limit 0.0 =~0 =~`6esn` Where 12e12 Ends With {usn1}"), - octest_legacy:ct_string("Optional Match usn2=Allshortestpaths(((:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null}))) Using Join On ``,_usn3 Remove Single(`` In `` Is Not Null Is Not Null Where 1.0 In Count(*)).`6esn`!,All(#usn8 In 7[..999][..{#usn8}] Where `4esn`[1.0]).@usn6 Union Return *,$@usn5 Contains 0xabc Contains {#usn7} Limit Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $_usn3 In {1000} In 0.12)[{@usn6}..]"), - octest_legacy:ct_string("Foreach(`8esn` In (`1esn` :#usn8:#usn8)-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})[..(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})][..`5esn`({12} Ends With 1.0 Ends With .e0)]| Remove [usn1 Ends With $@usn6 Ends With `3esn`,0xabc[.e0],{``}[010..][0xabc..]].``?) With Distinct 9e0 Starts With 01 As `2esn`,`` Ends With 123456789 Ends With 123.654 As usn2,Count ( * ) Contains 07 Skip {`4esn`} =~{7} =~{`7esn`} Where 0X7[0e0..`7esn`][1000..0e0] Unwind $`3esn` Is Not Null Is Not Null As _usn3 Union All Remove Case When `2esn` Is Null Then 1000 =~@usn6 =~0x0 Else \"d_str\"[#usn8] End.`1esn`"), - octest_legacy:ct_string("Start #usn8=Relationship:usn2(`8esn`={`8esn`}) "), - octest_legacy:ct_string("Merge _usn4=(({``:9e12[`1esn`..][$`1esn`..],#usn7:#usn8})<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]-({`7esn`:{999}})) On Create Set #usn7+=Count(*) In $12,`2esn`+=$usn2[9e0],[9e1[1000][{123456789}],$usn2[{@usn5}],0Xa Starts With {`6esn`} Starts With $usn1].usn1? =Reduce(`4esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|False[..``]) Is Null Is Null On Match Set ``(Distinct 0.12 =~`5esn` =~`5esn`,Null[``]).`1esn`! =12e12 Ends With {usn1},@usn5 =7 Ends With $`4esn`,_usn4 =Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End[..[9e1[1000][{123456789}],$_usn3[{#usn7}],`5esn` Starts With $`2esn` Starts With $1000]][..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0 In `2esn` In 010)] Create Shortestpath((((usn2 :`4esn`)-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[``? *..01{`1esn`:$@usn6 Contains 07}]-(:`3esn`:@usn5{#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})))),`1esn`=((usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``})) Union All With Distinct False Is Null Is Null,Count(*) Is Null Is Null As usn2,0Xa[9e1..][$`6esn`..] As @usn6 Order By 123.654 Is Not Null Is Not Null Descending,{123456789} Starts With 0.0 Starts With `5esn` Desc,Case 01[{`2esn`}..{@usn6}][$`2esn`..0.0] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] When 12e12[$`3esn`] Then {`5esn`} Contains $0 Contains {``} Else usn1 Starts With usn1 Starts With $`` End[usn2(Distinct 0.12 In _usn3 In {0},@usn6 Is Null Is Null).._usn4(0.e0 Starts With 12.e12 Starts With {_usn4},0X0123456789ABCDEF Is Null Is Null)][[{7}[$``][{@usn6}],0.0 Ends With 010 Ends With 1.e1]..$`4esn`] Asc Skip 0.0[Null][$`2esn`]"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From 0.0 In {#usn8} As _usn4 Fieldterminator 's_str' Load Csv From $123456789 Starts With {_usn4} Starts With $1000 As #usn8 Fieldterminator \"d_str\" With None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})[Any(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")..Reduce(usn1=#usn7[usn1][$`5esn`],`3esn` In {7} Is Null|Count(*) Ends With 12.0 Ends With 12)][(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})..({usn1:`5esn`[_usn4..]})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})],@usn5 =~{`5esn`} =~`5esn` As _usn4,$123456789 In $#usn7 In `4esn` As `` Order By {`3esn`}[..07][..{`5esn`}] Desc Limit 12.0"), - octest_legacy:ct_string("Create (({`7esn`:\"d_str\" Starts With $123456789})-[`6esn`? *0..]-(`5esn` :`2esn`:usn1)<-[? *..999]->(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})),Allshortestpaths(((@usn6 :`1esn`{#usn8:`4esn`[1.0],``:.e12[@usn5..#usn7][010..{usn1}]}))) Remove Extract(`3esn` In {7} Is Null Where $#usn7[@usn5..{1000}][1.e1..7]|1.0 =~7 =~{usn2}).`8esn`! Return *,None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As `5esn`,123.654[`3esn`..] Order By Shortestpath(((@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})-[]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})<-[#usn7?:`1esn` *01234567..0Xa]-(`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7}))) =~_usn3(Distinct 7[$`8esn`..123456789][$usn1..$usn1],.e0[..$`8esn`]) Descending,7 =~{`8esn`} =~$`6esn` Asc Skip `8esn`[`4esn`..{#usn8}][$12..2.12] Union All Foreach(`4esn` In `7esn` Is Null Is Null| Create `2esn`=(`` :#usn7) With Distinct $12[True..][{0}..],0Xa[$123456789..123.654][.e12..0.e0],{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) As `4esn` Order By $`5esn` Starts With `` Asc,Any(#usn7 In {``} Is Not Null Where usn1[9e12..][$7..]) Ends With Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0X7[`7esn`][123.654]|12.e12[7..$`6esn`]) Ends With All(`3esn` In {7} Is Null Where {123456789} Contains $#usn8) Ascending Skip `7esn`[9e0..] Limit Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`]) In {usn2:{`3esn`} Is Not Null Is Not Null} In {`4esn`:False,_usn4:$`7esn` Is Null Is Null} Where {``} Ends With `7esn` Ends With 0.0) Create `8esn`=(:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`),Shortestpath(({usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null}))"), - octest_legacy:ct_string("With Count(*)[exists($12[$1000..123456789],123456789[0xabc..'s_str'][``..`1esn`])][Case When .e12 Is Not Null Is Not Null Then usn1[`5esn`..$7] Else `3esn`[..$12][..{`7esn`}] End] As `3esn`,2.12 Ends With $_usn3 Ends With `3esn` As `7esn`,{#usn7:0X0123456789ABCDEF =~1e1 =~{`4esn`},`2esn`:1.0 =~'s_str' =~{`2esn`}}[..None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 0X7[`7esn`][123.654])][..(:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})<-[`2esn`?:`7esn`]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})] Order By 0[1.e1..12e12] Desc,Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {123456789} Is Null Is Null|12.0 =~999 =~$_usn3) Is Not Null Is Not Null Asc Skip $999 Where 's_str' Ends With 7 Ends With {_usn4} Optional Match usn2=Shortestpath((`1esn` :`4esn`{`6esn`:$`6esn` Ends With Count(*),`7esn`:_usn3 Starts With 12.e12 Starts With 0.12})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})),`1esn`=((`` :@usn6:#usn8{`8esn`:'s_str' In 00})-[#usn8:`6esn`|`5esn`]-(usn1 {`1esn`:$@usn6 Ends With $_usn4 Ends With 0.12,`3esn`:`4esn` =~$`5esn`})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(`7esn` {@usn5:{7}[..1.0][..9e0]})) Using Index `3esn`:_usn3(`6esn`) Using Index #usn8:`2esn`(`5esn`) Where 07[..$@usn6][..1.0] Match `1esn`=(_usn3 :usn2{#usn7:{999} Starts With {0}}) Using Join On @usn5,`8esn` Where False Starts With {`5esn`} Union All Delete {`3esn`} In 01,.e1 In 0,Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]]"), - octest_legacy:ct_string("Match _usn3=((@usn5 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[`2esn`?:`7esn` *0X7..]-(@usn5 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})) Using Scan `6esn`:`3esn` Using Join On ``,`6esn`,usn2 Where Null Ends With {`5esn`} Ends With 0.e0 Union Create Unique `5esn`=Allshortestpaths(((`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}))),Allshortestpaths(((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]}))) Optional Match Shortestpath((({`5esn`:$#usn8 Ends With $`2esn` Ends With $@usn6})<-[`4esn`?:usn2|`` *0X7..]->({_usn3:$`5esn`[`3esn`..]})-[@usn5?:`4esn`]-(:usn1{usn1:{`6esn`}}))) Create @usn6=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7)),`8esn`=((`4esn` :@usn6:#usn8)-[:`8esn`*]->({_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})) Union Match `7esn`=Allshortestpaths((@usn6 {`3esn`:{``} Is Not Null})-[usn1?:@usn5*]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]}))"), - octest_legacy:ct_string("Create Unique Allshortestpaths((`` :`1esn`)) Load Csv With Headers From (usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]})<-[ *123456789..]-(:@usn5) Is Null Is Null As _usn3 Fieldterminator 's_str' Union All Create Unique (`2esn` :usn1)<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(`3esn` :`8esn`:`7esn`)<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1),`1esn`=((_usn3 {`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(`5esn` :@usn5{`8esn`:{usn2} =~12})) Union Load Csv From Shortestpath((:`3esn`:@usn5{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`4esn` {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}))[Filter(#usn8 In 7[..999][..{#usn8}] Where $#usn7 Contains 0x0 Contains 1000)..] As #usn8 Fieldterminator 's_str' Remove [`5esn` In $999[0.0..] Where {7}[..12e12][..Count ( * )]]._usn4!,All(#usn8 In 7[..999][..{#usn8}] Where {12} =~#usn8).``!,{#usn8:01234567[usn2..$12][{`7esn`}..$usn2]}.`4esn`? Create Allshortestpaths((#usn8 {@usn5:_usn3 Contains $123456789 Contains ``,_usn4:{``} Ends With `7esn` Ends With 0.0})-[#usn8?:`7esn`$1000]->(_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})),`5esn`=Allshortestpaths((`7esn` {`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(`7esn` {@usn5:{7}[..1.0][..9e0]})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))"), - octest_legacy:ct_string("Start `7esn`=Rel:`6esn`(\"d_str\") With Distinct *,`1esn` Contains {usn2} Contains $#usn8,$`3esn` In $_usn4 In {_usn3} As `4esn` Where $`4esn`[Null..] With *,12[..$`4esn`],Case When 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] Then {1000} =~0 =~123.654 When `8esn`[`4esn`..{#usn8}][$12..2.12] Then 00[$`7esn`] End Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`7esn` =~{`8esn`} =~$usn1) Contains [0.12 =~`5esn` =~`5esn`]"), - octest_legacy:ct_string("Detach Delete {7}[..12e12][..Count ( * )],`7esn` Is Null,[.e12[@usn5..#usn7][010..{usn1}]] In All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {`6esn`} Contains \"d_str\") In None(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Load Csv From 999 In {`3esn`} In usn2 As _usn4 "), - octest_legacy:ct_string("With $12 =~$_usn3 As `6esn`,Count ( * ) Contains 07 Order By usn1(Distinct $@usn5 Starts With $1000)[[`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}|0Xa =~Null =~$``]..] Asc,Count ( * ) Starts With 7 Starts With $123456789 Descending,Reduce(``={999},#usn8 In {`5esn`}[.e1..``]|$_usn3['s_str'][07])[..{`4esn`:0.0[$0][{@usn5}]}][..Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..])] Ascending Skip $`8esn`[..{`2esn`}] Where {``} Is Not Null With Distinct [`4esn` In $`3esn` Is Not Null Where $@usn5 Contains 0xabc Contains {#usn7}|`3esn`[{0}][usn1]] In [{12}[{7}][$123456789],`2esn` Starts With $_usn4] In count($1000 Is Null,0Xa[$123456789..123.654][.e12..0.e0]) Order By None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null) Desc,None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null) Desc Where $usn2[{@usn5}] Create `4esn`=(({_usn3:.e12[@usn5..$12]})-[`3esn`:#usn7]->(@usn6 {_usn3:{#usn7} Is Not Null Is Not Null})),#usn8=((@usn5 :usn1)<-[`5esn`? *7..12{`5esn`:{999},_usn3:$`5esn`[2.12..]}]->(:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})-[_usn4?:_usn4|:usn2 *..999]-({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}))"), - octest_legacy:ct_string("Detach Delete {`1esn`:9e1[1000][{123456789}],``:$`8esn`} Starts With (#usn8 :#usn8:#usn8{@usn5:{#usn8} Is Not Null})-[?:`5esn`]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}),`1esn`($123456789 Starts With 9e0 Starts With 's_str',{usn2}[.e0..$999])[{usn2:{`3esn`} In 0X7,_usn3:7 Starts With {@usn6} Starts With $``}..Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {usn1} In 2.12 In 1000)][Case 0[`7esn`..] When 123456789 Is Null Then .e12 Is Not Null Is Not Null Else $@usn5 =~1000 =~1000 End..[`4esn` In $`3esn` Is Not Null Where `8esn`[{123456789}..]|{`3esn`}[`2esn`]]],(`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})-[:`6esn`|`5esn`{`8esn`:$0 Ends With 12.0}]->(`5esn` {`4esn`:7[$`2esn`..{`5esn`}],@usn6:{7} Is Null}) Contains Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) Contains Case 9e12 Is Not Null Is Not Null When 0[..usn2][..{@usn5}] Then 0e0 Ends With 1.e1 Ends With $`4esn` Else usn1 Is Null End Union All Match Allshortestpaths(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))),Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Using Index ``:_usn4(_usn4) Where {#usn7}[9e1..][{123456789}..]"), - octest_legacy:ct_string("Optional Match ({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`),`4esn`=Allshortestpaths(((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(@usn5 :`4esn`)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]}))) Using Scan `4esn`:`5esn` Using Index `3esn`:@usn5(`2esn`) Where $@usn5 Starts With 01 Starts With .e0 Unwind None(`` In `` Is Not Null Is Not Null Where $`6esn` Is Null) Contains Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}))) Contains Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End As @usn5 Remove Reduce(`1esn`=#usn8,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|0.e0 In $#usn7 In $_usn3).#usn8!,[9e1 In $`3esn` In $@usn6,`7esn`[..2.12][..00]].`2esn`!,[{`2esn`} Ends With {`7esn`},usn1[`5esn`..$7]].usn1"), - octest_legacy:ct_string("Create Unique usn2=((@usn6 :_usn4)),Shortestpath((((:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})<-[:#usn7 *..010]-(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})))) Union All Optional Match #usn7=Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))) Create Unique ({`3esn`:usn1 Is Null Is Null})-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]-({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`4esn` {@usn6:{12}[..0X7]}) Union All Load Csv From {0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]] As `4esn` Fieldterminator \"d_str\" Delete $`7esn` Is Null Is Null Delete {#usn8:#usn7[usn1][$`5esn`],`4esn`:01[2.12..`8esn`]} =~{usn1:True =~010,#usn7:0X0123456789ABCDEF Is Null Is Null} =~[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]]"), - octest_legacy:ct_string("With Distinct [1.0 =~'s_str' =~{`2esn`}] Contains [9e1[2.12],{usn2}[$`3esn`..][{#usn7}..],Null Ends With {`5esn`} Ends With 0.e0] Contains `5esn` As `8esn`,[`` Ends With 0Xa Ends With `2esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},{`4esn`} =~{7} =~{`7esn`}] As @usn6 Skip {7}[$`5esn`][{_usn3}] Detach Delete ({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}),`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) In [#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]|@usn6 Contains $1000 Contains {`7esn`}] In Filter(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]),usn2[{7}] Create (`6esn` :`8esn`:`7esn`)<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}}),Allshortestpaths((((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})))) Union Foreach(usn1 In Filter(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]) Ends With Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``]) Ends With Case $`7esn` Is Null Is Null When {#usn7}[9e1..][{123456789}..] Then False =~1e1 =~0.e0 Else 1000 In {`8esn`} In 01 End| Unwind {@usn6}[$`6esn`..`4esn`] As #usn8) Create @usn5=Allshortestpaths((:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})-[:#usn7 *..010]->(#usn8 :usn1)),(((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`}))) Unwind {usn1} Starts With #usn8 As _usn3"), - octest_legacy:ct_string("Start usn1=Rel:`7esn`(usn2={`7esn`}) Where $`6esn`[{999}..9e0] Union All Unwind Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End Starts With Single(`2esn` In `1esn` =~\"d_str\" Where False Starts With {`5esn`}) Starts With Extract(`5esn` In $999[0.0..] Where 0x0 Ends With $12) As `1esn` Delete Shortestpath(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})))[#usn7(Distinct $`5esn`[`3esn`..])..{``:0Xa Starts With {`6esn`} Starts With $usn1}],.e0[..$`8esn`] Foreach(`8esn` In .e1 In 0Xa In #usn7| With Distinct #usn8 In $@usn6,1.e1[`8esn`][00] Where 0.e0 Starts With `2esn` Return Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})] As `4esn`,usn2 Is Null As `7esn`,Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn` As _usn3 Order By Count ( * ) =~$usn2 =~$usn2 Descending Limit {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains [1.0[0X7][{`5esn`}]])"), - octest_legacy:ct_string("Start `3esn`=Rel:`7esn`(`3esn`='s_str') Union All Delete $#usn7[@usn5..{1000}][1.e1..7],Extract(`` In `` Is Not Null Is Not Null Where {``}[...e12]|12 Ends With 0x0 Ends With 0.e0) Is Null Is Null,$#usn7 Is Null Union All With Distinct *,1000[0X7..2.12] As `4esn` Limit {7}[$7..$``][{``}..{7}] Where _usn3 Starts With 12.e12 Starts With 0.12 With Distinct #usn8 In $@usn6,1.e1[`8esn`][00] Skip 01 Ends With 999 Ends With {`7esn`}"), - octest_legacy:ct_string("Unwind $12[Count ( * )][0X7] As `3esn` Optional Match @usn5=Allshortestpaths(({`1esn`:$`8esn`[1000..0Xa]})),(:`1esn`{``:.e1 Is Null Is Null})<-[#usn8?:usn1|@usn6]->(`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`}) Using Join On `3esn`,`5esn` Using Join On `5esn`,@usn6 Where $_usn3[Count(*)] Union Load Csv From 9e1[2.12..{#usn8}] As `2esn` Unwind $@usn5 Is Not Null Is Not Null As `8esn` Start `1esn`=Rel:`4esn`(`4esn`='s_str') Where 123456789 Is Null Union All Create Unique #usn7=(:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null}) Start `2esn`=Node:``({`1esn`}) With Single(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}])[Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] Skip 0Xa[..{`4esn`}][..12.0] Limit (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})<-[{`8esn`:07 In `2esn` In 12e12}]-(`3esn` :@usn5)-[?:`5esn`]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}) Is Not Null Is Not Null"), - octest_legacy:ct_string("Merge Shortestpath((:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})-[:#usn7 *..010]->(#usn8 :usn1)) On Create Set @usn5+={123456789}[9e12][{0}],`` =@usn6 Contains Null Contains $`7esn`,`` =12.0 =~'s_str' =~$`5esn` On Create Set Extract(`4esn` In $`3esn` Is Not Null Where `8esn`[{123456789}..]|False =~1e1 =~0.e0).`4esn`! =None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null),`2esn` ={`3esn`}[..07][..{`5esn`}],(@usn5 :`6esn`)-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->(:``:#usn8{`7esn`:00 Starts With 0xabc,_usn3:{123456789} Contains $#usn8}).usn1? =$#usn8 =~{@usn5} Union All Return Distinct {usn2} In _usn3 In $#usn7 As `6esn` Order By Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn` Asc Limit {#usn8:#usn7[usn1][$`5esn`],`4esn`:01[2.12..`8esn`]} =~{usn1:True =~010,#usn7:0X0123456789ABCDEF Is Null Is Null} =~[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]] Return *,1e1 Contains 0e0 Skip @usn6 Contains Null Contains $`7esn` Limit $0 Union Merge `4esn`=Shortestpath((((#usn8 :`8esn`:`7esn`{#usn7:#usn8[..{#usn7}]})-[usn1?]->({_usn3:False =~1e1 =~0.e0,_usn3:{999} Starts With $999})-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(`` :_usn4)))) Merge Allshortestpaths(((`` :`1esn`)-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 $999)<-[`4esn`?:`7esn` *0..{`2esn`:00[`2esn`..12][123456789..0.e0]}]->(`1esn` :_usn3:_usn3))) On Match Set `1esn`+=usn1 Is Null Is Null,Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]).`5esn` =0X0123456789ABCDEF Is Null Is Null Start `7esn`=Node:`6esn`({_usn3}) Where 123456789 Ends With 12.e12 Ends With $`7esn`"), - octest_legacy:ct_string("Match #usn7=(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[#usn8]-(:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}) Using Index #usn8:`2esn`(`5esn`) Using Index `3esn`:`5esn`(#usn7) Union All Create Unique `6esn`=((`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})<-[`7esn`? *7..12]->({`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})),#usn7=((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})) Union With Distinct *,`1esn`(Distinct $1000[999]) =~Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) =~{`6esn`:'s_str'[00][{`5esn`}]},{_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] As `` Order By {0}[{`8esn`}..`4esn`] Desc,Case When Count ( * ) Contains 07 Then $`2esn` When 1.0 Is Null Is Null Then `7esn`[..2.12][..{usn1}] End Is Not Null Desc Limit $`2esn`[2.12..'s_str'][{@usn6}.._usn4]"), - octest_legacy:ct_string("Unwind $#usn7 Contains 0x0 Contains 1000 As #usn7 Detach Delete Case {#usn7}[9e1..][{123456789}..] When $0 Ends With 12.0 Then $`` Is Not Null When $usn1 In {999} In $#usn7 Then 1000[Null..{123456789}] Else 1.0 =~'s_str' =~{`2esn`} End[{@usn5:.e0[..$`8esn`],`4esn`:{usn2} =~12}..Any(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``)],0.12 In _usn3 In {0},Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`]|123456789 Ends With 12.e12 Ends With $`7esn`) Is Not Null Union All With $123456789 In 0X0123456789ABCDEF In 0.e0 As `6esn`,{`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null} Contains {@usn5:{`3esn`} In 01} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 1.0[0X7][{`5esn`}]|{``}[010..][0xabc..]) Order By 1e1 In \"d_str\" In `7esn` Descending,`1esn`({`2esn`} Ends With {`7esn`},{`2esn`} Starts With 0.0 Starts With {usn1})[Extract(`4esn` In $`3esn` Is Not Null Where usn2 Is Not Null Is Not Null)..None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {_usn4} Starts With 0.e0 Starts With 0x0)] Desc Skip [Count(*) Ends With 12.0 Ends With 12,9e0[{0}..{`3esn`}][\"d_str\"..0Xa]][..Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``])][..{usn1:$_usn3[..1000],`7esn`:{1000} =~0 =~123.654}] Union All With Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End,9e0[`3esn`..$_usn4],.e0 Ends With 0.12 As usn2 Limit {999}[_usn4..] Where $#usn8[$`8esn`..{`8esn`}]"), - octest_legacy:ct_string("Match ((`1esn` {`5esn`})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})),Shortestpath((((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`8esn`?:`2esn`*..{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]})))) Using Index @usn5:`4esn`(`3esn`) Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] Union Merge Shortestpath(((:#usn8:#usn8)-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12}))) On Match Set `5esn` =All(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`2esn`} Is Not Null)[Filter(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`4esn`} Starts With $usn2 Starts With $1000)..Reduce(`8esn`={`2esn`} Is Not Null Is Not Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{usn1} Ends With $0)][Allshortestpaths(((`1esn` )))..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] On Match Set `7esn` =`4esn`[..010][..{12}],@usn5+=0X7[$999][_usn4],@usn5 =0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`"), - octest_legacy:ct_string("Remove Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 01 =~{_usn3} =~`3esn`).`7esn`!"), - octest_legacy:ct_string("Unwind 0X7[..2.12] As `2esn` Return {7}[$``][{@usn6}] As `2esn` Order By {`4esn`:{`4esn`} =~{7} =~{`7esn`},`8esn`:$#usn7[#usn7..]} Is Null Is Null Desc,{123456789}[9e12][{0}] Ascending,$_usn3['s_str'][07] Ascending Skip [usn2[$_usn4..][True..],1.0 In Count(*)] =~Any(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12.0[123.654][Count(*)]) =~Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where usn2 Is Not Null Is Not Null)"), - octest_legacy:ct_string("Merge ({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`) On Match Set _usn3+={_usn3}[12.e12],`3esn`+=@usn5 =~{`5esn`} =~`5esn`,#usn8 =[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*)) Union All Merge #usn8=Shortestpath(((#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]}))) Unwind $999 In $_usn3 In {`5esn`} As @usn6"), - octest_legacy:ct_string("Load Csv From _usn4 Is Null Is Null As `8esn` Fieldterminator 's_str' Merge _usn4=Shortestpath((((#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`8esn` :@usn6:#usn8)<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})))) Load Csv From .e0 =~`6esn` =~{12} As usn1 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Start `2esn`=Node:`7esn`(`3esn`=\"d_str\") With {`5esn`} =~`4esn` =~{_usn4} As `4esn`,Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]) =~Reduce(usn1=.e1 Ends With 1e1 Ends With @usn5,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$#usn7[#usn7..]) =~`1esn`($1000 Is Null) As @usn6,07 =~01 Order By `5esn`[_usn4..] Desc Skip `8esn`[{123456789}..] Union All Return Distinct Case When usn1 Is Not Null Then $0[12.e12..] Else 7[{0}..{_usn4}] End[..Reduce(_usn3={@usn5} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{usn1}[0X0123456789ABCDEF])] As #usn8,0X7[123.654..@usn6] As _usn3 Skip Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 00[`2esn`..12][123456789..0.e0]|0e0 In @usn5) Ends With 's_str' Ends With _usn3(Distinct $`7esn` =~{`8esn`} =~$usn1,$0[..9e1]) Optional Match (((#usn7 :`8esn`:`7esn`{`5esn`:1.0 In Count(*)})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000}))),(#usn7 :@usn5{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]}) Where $usn1 =~`` Create ``=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))),(#usn8 {@usn5:_usn3 Contains $123456789 Contains ``,_usn4:{``} Ends With `7esn` Ends With 0.0})-[#usn8?:`7esn`$1000]->(_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`}) Union All Merge `6esn`=Allshortestpaths((#usn8 :@usn6:#usn8)) On Match Set #usn8+=#usn7[010..False] On Create Set $`1esn`.``? =[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12) Detach Delete 123.654[{7}..],False Starts With {`5esn`} Load Csv With Headers From _usn4 Contains 2.12 As #usn8 "), - octest_legacy:ct_string("Start @usn6=Rel:``(_usn3='s_str') ,_usn4=Node:@usn6({12}) With *,0X7[1000..{`1esn`}],12.e12 Is Null Is Null Order By $`6esn`[{_usn3}..$`4esn`][$_usn4...e12] Descending,$`6esn`[.e0..$`6esn`][$_usn3..{#usn7}] Desc Skip `4esn` Is Not Null Is Not Null Where `5esn`[.e0..][07..] Union All With *,None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12]) Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where $_usn3[.e0..$usn2]|{#usn7}[9e1..][{123456789}..]) Ends With Reduce(`2esn`={`3esn`} In 0X7,_usn3 In {`3esn`}[`2esn`]|$`5esn`[{`3esn`}]) As ``,0.e0[123.654][01] As _usn3 Where 1000 In {`8esn`} In 01 Delete 0.0 Is Not Null Is Not Null,None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})[Any(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")..Reduce(usn1=#usn7[usn1][$`5esn`],`3esn` In {7} Is Null|Count(*) Ends With 12.0 Ends With 12)][(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})..({usn1:`5esn`[_usn4..]})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})],Reduce(#usn7=$1000 Is Null,#usn7 In {``} Is Not Null|$`1esn` Ends With 9e1 Ends With $123456789) In Case When `5esn` Is Null Then True[..$`6esn`] Else `3esn`[`3esn`..][#usn8..] End"), - octest_legacy:ct_string("Foreach(usn2 In [12.e12[$_usn3..]][Shortestpath(((@usn6 :`4esn`)))..Reduce(`5esn`=01234567 Ends With .e12 Ends With $#usn7,`8esn` In 01[2.12..`8esn`]|0Xa =~Null =~$``)]| Detach Delete $#usn7 Is Null Start usn1=Rel:`7esn`(usn2={`7esn`}) ) Create ((:`1esn`{`5esn`:1.0 In Count(*)})),#usn8=Shortestpath((#usn8 :usn1{#usn7:`5esn` Is Null})) With Distinct *,#usn7(usn2 Is Not Null Is Not Null,$`6esn` Ends With Count(*)) Is Null Is Null As `6esn`,#usn8 In $@usn6 Skip {`1esn`} Is Not Null Where {7}[$``][{@usn6}] Union Load Csv With Headers From $`` =~12.0 =~$`7esn` As #usn7 Start usn1=Rel:``(_usn3='s_str') ,``=Node:_usn3({@usn6})Where 0[..usn2][..{@usn5}] Remove `1esn`(Distinct `1esn` Contains {usn2} Contains $#usn8,$1000 Is Null).`2esn`?,(_usn3 :_usn4)-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]-({_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]}).#usn8? Union Remove Extract(`8esn` In 01[2.12..`8esn`] Where Count ( * ) Ends With $@usn5|Count ( * )[True..][{#usn7}..]).usn2?"), - octest_legacy:ct_string("Create Unique (#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null}),(({usn1:`5esn`[_usn4..]})-[usn1?:_usn3|_usn3]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})) Union All Remove Extract(#usn8 In {`5esn`}[.e1..``]|Count ( * ) Ends With 12.0).#usn8,(`7esn` :``:#usn8)-[usn2?:#usn7]-(:`4esn`{``:2.12 Is Not Null Is Not Null})<-[`5esn`? *..12{`8esn`:{`7esn`}[`6esn`][#usn7],`1esn`:0x0 Ends With $12}]->({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000}).`8esn` Match ((:usn1{usn1:{`6esn`}})),`2esn`=(:`4esn`{_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[#usn8:@usn5 *..01]-(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null}) Using Join On `8esn`,@usn6 Using Index `6esn`:_usn4(``) Where usn2 Is Not Null Is Not Null Unwind 0.0 =~False =~$999 As usn2"), - octest_legacy:ct_string("Create (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[`4esn`:`8esn` *00]-(`2esn` :`8esn`:`7esn`)<-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:usn2) Load Csv With Headers From True[00][0Xa] As #usn7 Fieldterminator 's_str' Start usn1=Node:``(@usn6={usn1}) ,#usn8=Rel:`5esn`(_usn3={`8esn`})Where {1000} =~0 =~123.654 Union Match #usn7=Allshortestpaths((@usn5 {`3esn`:.e1[..usn2][..`8esn`]})<-[usn2:`7esn`]->(:usn1{_usn3:{#usn7}[`2esn`..]})-[?:usn2|``$#usn7]-(#usn8 :``:#usn8{`7esn`:9e1[$usn2],_usn4:$_usn4 Contains Null Contains #usn8})),((:@usn5{#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})-[?:usn2|`` *0..{usn2:{12} Is Not Null,`6esn`:``[$`2esn`]}]-(`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})) Using Index `3esn`:usn1(@usn6) Match Allshortestpaths(((usn2 :@usn5)<-[? *00]->(@usn5 :usn1))) Using Scan _usn3:`1esn`"), - octest_legacy:ct_string("Delete 9e1[0.0..],{``} Ends With `7esn` Ends With 0.0 Union All Remove Allshortestpaths((:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[#usn8]-(:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})).`4esn` Unwind Allshortestpaths(((({#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[`4esn`]->(:`6esn`$123456789))))[Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {_usn4} In {12} In $0)] As `6esn`"), - octest_legacy:ct_string("Unwind [`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"]|$#usn7 Is Null][..{`4esn`:{`4esn`} =~{7} =~{`7esn`},`8esn`:$#usn7[#usn7..]}] As @usn6 Detach Delete .e0 Starts With 0 Starts With 0.e0 Union All Foreach(`4esn` In {1000} Is Null Is Null| Return *,{12} Is Not Null As `7esn` Skip 9e12 Is Not Null Is Not Null Delete $@usn5 Starts With 01 Starts With .e0,$usn1[{`5esn`}][$`6esn`]) Start usn1=Node:#usn8({``}) Union Create `5esn`=Allshortestpaths(((`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}))),(((`6esn` :`5esn`{usn1:{`6esn`}})<-[? *0X7..{#usn8:{1000} Is Null Is Null,`3esn`:0.e0 Starts With 12.e12 Starts With {_usn4}}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})<-[:`1esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]})))"), - octest_legacy:ct_string("Start usn1=Node:@usn5({`1esn`}) Union Foreach(usn1 In 0Xa[..{`4esn`}][..12.0]| Return *,Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7) In [{_usn3}[..$12][..0.12],usn1 Is Null] In [#usn8 In 7[..999][..{#usn8}] Where $_usn3 Contains 999 Contains \"d_str\"] Limit [`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999}] Ends With usn1(Distinct 1000 In {`8esn`} In 01,{_usn3}[..\"d_str\"][..`5esn`]) Ends With Reduce(_usn4=1000[Null..{123456789}],`5esn` In $999[0.0..]|9e1 In $`3esn` In $@usn6) Remove Reduce(`8esn`={`7esn`}[..$@usn5][..$#usn8],`3esn` In {7} Is Null|0.12[$`3esn`..$_usn3][12.0..usn1]).`1esn`,Reduce(`4esn`=$999 Is Not Null,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|$`7esn`['s_str']).``?,(@usn5 {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`}).#usn7) With Distinct (`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(`5esn` :@usn5{`8esn`:{usn2} =~12})[All(`` In `` Is Not Null Is Not Null Where `3esn`[{0}][usn1])] As _usn4,$_usn4[1.e1]['s_str'] As #usn8,usn2[$7..$123456789][$@usn6..$7] Order By 9e1[0.0..] Desc,0.12 =~$0 =~$0 Desc Limit {_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] Where 0X7 =~9e1 Unwind .e0 Starts With $`` Starts With $usn2 As _usn3"), - octest_legacy:ct_string("Start `3esn`=Node:_usn4(`6esn`='s_str') Union All Return $_usn4[0e0..][False..] As `` Order By 0X0123456789ABCDEF =~1e1 =~{`4esn`} Desc Skip Count(*) Contains $#usn7 Contains 1e1"), - octest_legacy:ct_string("Foreach(`` In $`8esn`| Create `8esn`=(:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`),(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7) Remove Case `1esn`[{usn1}..``][7..$#usn8] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] End.@usn5)"), - octest_legacy:ct_string("Foreach(`5esn` In $@usn5 Starts With {@usn5} Starts With 9e0| Remove _usn3(0.12 =~$0 =~$0).`3esn`) Union Foreach(`3esn` In $`3esn`[..12.0]| Match (:`1esn`{})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(:`6esn`$123456789) Using Index _usn3:`6esn`(#usn7) Where `6esn` In 0Xa Return Distinct {``} =~12 =~`` As `2esn`,Filter(`4esn` In $`3esn` Is Not Null Where {`6esn`}) =~{_usn3:{`3esn`} Is Not Null Is Not Null} Skip 1.0[00..] Limit 12.e12 Starts With {999} Starts With {`1esn`}) Optional Match ``=((`` :`7esn`:_usn3)),(((`` {`3esn`:{12} Contains {123456789} Contains `4esn`})<-[`6esn`?:`1esn` *0X7..]->(:``:#usn8{``:1.0[0e0..0.e0]})<-[`4esn`?:_usn4|:usn2{_usn4:$usn2[{@usn5}],`2esn`:usn1[`5esn`..$7]}]->({``:$`8esn` =~{1000}}))) Using Index #usn7:#usn8(`4esn`) Using Join On ``,`6esn`,usn2 Union Merge _usn3=((#usn7 :``:#usn8{`2esn`})) Return `` Is Not Null Is Not Null,$_usn3 Ends With 0x0 Ends With 12.0,$_usn3[.e0..$usn2] Order By Single(_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..])[..All(`` In `` Is Not Null Is Not Null Where {`7esn`} Is Null)] Ascending Limit {`4esn`} Ends With {123456789} Ends With $`4esn` Delete [`3esn` In {7} Is Null Where {123456789} Contains $#usn8|$@usn5[..12e12][..$123456789]] In Case 01 =~{_usn3} =~`3esn` When `2esn`[..$#usn8][..Count(*)] Then 00[{`8esn`}..][{`8esn`}..] Else `3esn`[..$12][..{`7esn`}] End In Extract(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0]|010 =~{usn2})"), - octest_legacy:ct_string("With (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8) Contains All(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) As @usn5,`8esn`[$`8esn`..{`4esn`}],None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `5esn` Starts With 010 Starts With 0.0) Ends With Reduce(usn2=False =~1e1 =~0.e0,`` In `` Is Not Null Is Not Null|#usn8[`3esn`..][{#usn7}..]) Order By @usn6 Is Null Is Null Descending,{_usn3} Is Null Is Null Desc,Allshortestpaths((({`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})<-[?*..]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}))) Ends With Reduce(_usn3='s_str'[00][{`5esn`}],`4esn` In $`3esn` Is Not Null|Count ( * ) Contains `8esn` Contains .e1) Descending Union With Distinct *,{_usn4} In {12} In $0 Skip [$12 Ends With 07 Ends With $123456789,$@usn5 =~1000 =~1000,.e12[@usn5..$12]][..{#usn7:{123456789} Contains $#usn8}][..Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `4esn`[1.0])] Limit None(#usn8 In {`5esn`}[.e1..``] Where `8esn` Contains $usn1 Contains $12) In Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where #usn8[..{#usn7}]) In (#usn8 {`2esn`:$`5esn`[..$`5esn`][..$12]})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)<-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]-(:`5esn`{``:1.0[0e0..0.e0]}) Where #usn8 Is Not Null Foreach(#usn8 In .e12 Ends With $`2esn` Ends With {``}| Start `3esn`=Node:@usn5({0}) ,`2esn`=Relationship:`3esn`(\"d_str\")) With All(`3esn` In {7} Is Null Where Count ( * ) Contains 07) Is Null Is Null Limit $12[`5esn`..] Where 0.12[`2esn`..{`6esn`}] Union All Unwind `2esn`[{`4esn`}][$_usn3] As usn1 Return Distinct $@usn5,{`5esn`} Starts With @usn5 Starts With `7esn`,$1000 =~$`2esn` As `6esn` Skip 9e12[{123456789}..#usn8][{_usn3}..{#usn7}] Limit 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3]"), - octest_legacy:ct_string("Match (:#usn7{usn2:{usn1} Ends With $0,#usn8:`5esn` Starts With $`2esn` Starts With $1000})-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(`1esn` :_usn3:_usn3{#usn7:$@usn5 Is Not Null Is Not Null}),`7esn`=((@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[`4esn`?:_usn4|:usn2{_usn4:$usn2[{@usn5}],`2esn`:usn1[`5esn`..$7]}]->({``:$`8esn` =~{1000}})<-[?:`7esn`{`3esn`:{#usn8}[010]}]-(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})) Union All Remove Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7))._usn4"), - octest_legacy:ct_string("Create usn2=Shortestpath((({_usn3:.e12[@usn5..$12]})-[`3esn`:#usn7]->(@usn6 {_usn3:{#usn7} Is Not Null Is Not Null}))),`5esn`=(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})-[_usn4? *..01]-(_usn4 :usn2{usn1:7[True..][2.12..],`8esn`:2.12 Ends With $_usn3 Ends With `3esn`})-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]-({`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}) Union Create `6esn`=Shortestpath((((`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})<-[`8esn`]-(usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[`3esn`?:`` *..0x0{`4esn`:0.e0 Contains 9e1 Contains {`7esn`},@usn6:$@usn5 =~1000 =~1000}]->(:@usn5{_usn3:07 =~01})))),_usn3=((:`2esn`:usn1)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})) Union All Start usn1=Rel:@usn6(#usn7='s_str') ,_usn3=Node:`6esn`('s_str')Where #usn7 Match ((:@usn5{#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})-[?:usn2|`` *0..{usn2:{12} Is Not Null,`6esn`:``[$`2esn`]}]-(`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})),((_usn3 :`7esn`:_usn3)-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})<-[`5esn`{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(_usn3 {#usn8:_usn4 Is Null Is Null})) Using Index ``:_usn3(usn1) Unwind Extract(`5esn` In \"d_str\" Is Null Is Null)[Any(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``)][Case $`7esn` Is Null Is Null When {#usn7}[9e1..][{123456789}..] Then False =~1e1 =~0.e0 Else 1000 In {`8esn`} In 01 End] As `2esn`"), - octest_legacy:ct_string("Detach Delete 0.0 =~0 =~`6esn`,@usn5 In $7,{`7esn`}[..$@usn5][..$#usn8] Return `6esn`(Distinct 2.12 Ends With $_usn3 Ends With `3esn`) Is Null,`8esn`[$#usn7..123456789],All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By Single(#usn8 In {`5esn`}[.e1..``] Where 123.654[$`1esn`]) Is Not Null Is Not Null Descending,_usn4(Distinct _usn3[_usn3..][12.e12..])[[0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},0Xa Starts With {`6esn`} Starts With $usn1]] Desc,1e1 In \"d_str\" In `7esn` Descending Skip [`` Ends With 0Xa Ends With `2esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},{`4esn`} =~{7} =~{`7esn`}] Remove [{12} Contains {123456789} Contains `4esn`,1.e1[`8esn`][00],1.0[$`1esn`..][$123456789..]]._usn4?,Reduce(_usn3=123456789[#usn8..False],_usn3 In {`3esn`}[`2esn`]|123.654 Contains $`4esn` Contains 1.0).#usn8?"), - octest_legacy:ct_string("Start #usn7=Node:@usn5(usn2='s_str') Where 9e1[2.12..{#usn8}] Foreach(`` In $`8esn`| Create `8esn`=(:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`),(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7) Remove Case `1esn`[{usn1}..``][7..$#usn8] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] End.@usn5) Return Distinct {usn2} In _usn3 In $#usn7 As `6esn` Order By Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn` Asc Limit {#usn8:#usn7[usn1][$`5esn`],`4esn`:01[2.12..`8esn`]} =~{usn1:True =~010,#usn7:0X0123456789ABCDEF Is Null Is Null} =~[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]] Union Optional Match (((`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[usn1?:@usn5*]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})-[#usn7:@usn5 *0X7..]->(`2esn` ))),Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))) Where `7esn` In {123456789} In `1esn` Delete Extract(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|{@usn5} Is Null Is Null)[Case When $0[..9e1] Then Count(*)[..usn2][..usn2] When {`2esn`} Starts With 0.0 Starts With {usn1} Then 0e0 In @usn5 Else 01 =~{_usn3} =~`3esn` End.._usn3(1.0 In Count(*),0[{usn2}..][$`6esn`..])][count(Distinct $12[Null..Count(*)][{`5esn`}..{999}],$`4esn`[`7esn`])..Case When $123456789 Ends With $999 Ends With {999} Then `3esn`[{usn1}] When #usn7 =~Count ( * ) =~`` Then $_usn4 Starts With 1e1 End]"), - octest_legacy:ct_string("Unwind Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where .e0 Starts With 0 Starts With 0.e0) Is Null Is Null As `6esn` Load Csv From 9e1[0.0..] As #usn7 Fieldterminator \"d_str\" Union Foreach(@usn5 In None(`5esn` In $999[0.0..] Where {``}[010..][0xabc..])[{`3esn`:False Is Null Is Null,`8esn`:2.12}]| Return *,Case When False Then 0.e0 Ends With $#usn7 Ends With $7 When {@usn6}[{999}..][00..] Then `5esn` Ends With {``} Ends With 12.e12 Else 123.654[$`1esn`] End[Reduce(#usn8=$`6esn` Ends With Count(*),`2esn` In `1esn` =~\"d_str\"|_usn4 Contains 2.12)..] As _usn3 Order By $12[Null..Count(*)][{`5esn`}..{999}] Desc,12.e12[7..$`6esn`] Desc Skip {`4esn`} Ends With {123456789} Ends With $`4esn` Return Distinct {``}[`8esn`..],{`7esn`} Starts With $123456789 Starts With $@usn6 As _usn3 Limit `8esn`(Distinct $#usn7 Is Null) Ends With Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]) Ends With Shortestpath(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))))"), - octest_legacy:ct_string("Create Unique Allshortestpaths(((`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}))),@usn6=(({_usn3:{_usn4} Is Not Null Is Not Null})<-[_usn4 *0..{_usn4:00[`2esn`..12][123456789..0.e0],`8esn`:0x0[`4esn`..'s_str']}]->()<-[``? *..01{`1esn`:$@usn6 Contains 07}]->(:#usn8:#usn8{@usn6:$_usn3[..1000]})) Optional Match `3esn`=({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True}),Shortestpath((:`8esn`:`7esn`)<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})) Using Index ``:_usn4(_usn4) Where {_usn3}[..\"d_str\"]"), - octest_legacy:ct_string("Start `4esn`=Relationship:_usn3({`6esn`}) Where {``}[...e12] Foreach(`4esn` In {`6esn`}| Create Unique `8esn`=(_usn4 :usn2{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]})) Return Distinct *,Count ( * )[$_usn4..$`4esn`],Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7) In [{_usn3}[..$12][..0.12],usn1 Is Null] In [#usn8 In 7[..999][..{#usn8}] Where $_usn3 Contains 999 Contains \"d_str\"] Limit $_usn3 =~0.12 =~{#usn8} Union All Foreach(`` In $``| Optional Match `2esn`=((`5esn` :_usn4{7})<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})-[:`4esn` *0xabc..{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(`3esn` :`5esn`)) Using Scan `1esn`:usn2 Where {@usn5} Is Null Is Null) Detach Delete 0.0 =~0 =~`6esn`,@usn5 In $7,{`7esn`}[..$@usn5][..$#usn8] Return Distinct *,{`3esn`:{@usn6}[{999}..][00..]}[count(Null Ends With {`5esn`} Ends With 0.e0,{usn1} In 2.12 In 1000)][All(`` In `` Is Not Null Is Not Null Where Count(*)[..usn2][..usn2])],9e1[..$`2esn`] As `` Skip 0X7[{@usn6}] Limit {`2esn`} In 12 Union Delete {`7esn`}[0e0][1.e1] Create usn2=(`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[@usn5?:`3esn`|:#usn8{_usn4:{999}}]->(:#usn8:#usn8{``:1.0[0e0..0.e0]}),#usn8=((`3esn` {`8esn`:\"d_str\" Contains {123456789} Contains 01,@usn5:`1esn` In .e0 In {`3esn`}})-[#usn7?:`3esn`|:#usn8]->(`2esn` :usn1)-[ *..999{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(@usn5 {_usn3:`1esn` Contains {usn2} Contains $#usn8})) Merge Allshortestpaths((`` :_usn4{_usn4:False[..``],usn2:9e1[1000][{123456789}]}))"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From `2esn`[..$#usn8][..Count(*)] As `6esn` Fieldterminator 's_str' Start `1esn`=Node:`2esn`(#usn8={123456789}) Where @usn6[{`5esn`}] Foreach(`5esn` In False| Detach Delete Single(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]) Ends With Case When 07 Contains 0X7 Contains $`8esn` Then {`4esn`} =~9e0 =~{12} When .e1 Ends With 1e1 Ends With @usn5 Then $#usn8[Count ( * )] Else Count ( * )[True..][{#usn7}..] End Ends With Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End)"), - octest_legacy:ct_string("With .e0 Ends With 0.12 As `6esn` Order By 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] Asc,[#usn8 In 7[..999][..{#usn8}] Where {12} =~#usn8|\"d_str\" Contains {123456789} Contains 01] Contains {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Descending Skip 0.0[Null][$`2esn`] Where 1000 In {`8esn`} In 01 Union Remove (:usn1{usn1:{`6esn`}})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(@usn6 :`1esn`)<-[`6esn`]-(`1esn` {@usn5:1.0[0e0..0.e0]}).`7esn`!,Any(`3esn` In {7} Is Null Where 1e1 Contains Count ( * )).`4esn`,#usn8:`4esn` Start ``=Relationship:usn2('s_str') ,`1esn`=Rel:`4esn`(`4esn`='s_str') Union Unwind 's_str' Is Not Null Is Not Null As _usn3"), - octest_legacy:ct_string("Load Csv With Headers From None(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Is Null Is Null As usn1 Fieldterminator 's_str'"), - octest_legacy:ct_string("With Distinct *,Extract(`8esn` In 01[2.12..`8esn`] Where {usn2}|$0[12.e12..]) =~Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null|7 Ends With $`4esn`) =~(usn1 {`2esn`})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->(:_usn3:_usn3{`4esn`:12e12 Ends With {usn1}})<-[`7esn`?:`8esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}) Load Csv With Headers From .e1 In 0Xa In #usn7 As _usn3 Union All Return *,$_usn3 =~0.12 =~{#usn8},9e0 Is Not Null Is Not Null Skip {usn2} Starts With $`8esn` Starts With Count ( * ) Limit $@usn5 Starts With $1000 Union All Create Unique `1esn`=(`5esn` :_usn4{7})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}),`2esn`=Shortestpath(({@usn5:07[..True][..9e12]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]})) Load Csv From {1000} =~0 =~123.654 As @usn6 Fieldterminator 's_str' Start `5esn`=Node:_usn3(#usn8=\"d_str\") Where True[..$`6esn`]"), - octest_legacy:ct_string("Delete 0Xa[2.12] Create `5esn`=(:`3esn`:@usn5{#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-(:#usn8:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[`5esn`?:`5esn` *1000..00]->({`1esn`:`3esn`[{`2esn`}]}),Shortestpath(((#usn7 :``:#usn8{`2esn`})<-[usn1?:#usn8|`1esn`]->({@usn5:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],@usn6:$0})<-[@usn6?:`5esn`]-(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]}))) Union All Load Csv With Headers From Null[$`5esn`][False] As `` Fieldterminator \"d_str\" Merge (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[`4esn`:`8esn` *00]-(`2esn` :`8esn`:`7esn`)<-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:usn2) Union All Create Unique `8esn`=((_usn4 :`8esn`:`7esn`{`4esn`:{`2esn`} Is Not Null Is Not Null,`1esn`:.e1 =~$`8esn`})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2}))"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From 1.0[`3esn`..][9e0..] As `5esn` Merge @usn6=(_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5}) On Create Set #usn8+=[1.0 =~'s_str' =~{`2esn`}][Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`6esn`})][Reduce(`2esn`={123456789} Is Null Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4])]"), - octest_legacy:ct_string("Create Unique `3esn`=Shortestpath(((:`1esn`{`5esn`:1.0 In Count(*)}))) Union All Return *,Case When False Then 0.e0 Ends With $#usn7 Ends With $7 When {@usn6}[{999}..][00..] Then `5esn` Ends With {``} Ends With 12.e12 Else 123.654[$`1esn`] End[Reduce(#usn8=$`6esn` Ends With Count(*),`2esn` In `1esn` =~\"d_str\"|_usn4 Contains 2.12)..] As _usn3 Order By $12[Null..Count(*)][{`5esn`}..{999}] Desc,12.e12[7..$`6esn`] Desc Skip {`4esn`} Ends With {123456789} Ends With $`4esn` Create usn2=Allshortestpaths(((:@usn6:#usn8{`4esn`:$`8esn`[..00]})<-[_usn4?:_usn4|:usn2 *00]->(:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))),#usn8=(((`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})-[@usn5]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))"), - octest_legacy:ct_string("Unwind {`3esn`}[..07][..{`5esn`}] As usn2 Union All Merge `7esn`=(`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[@usn5?:`3esn`|:#usn8{_usn4:{999}}]->(:#usn8:#usn8{``:1.0[0e0..0.e0]}) Load Csv With Headers From {`4esn`} Ends With {usn2} Ends With {999} As _usn4 Union All Return {#usn7}[..9e12][..`8esn`] As #usn7,{0}[{`8esn`}..`4esn`] As #usn8 Order By 0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn` Asc Skip [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}|{usn1} Is Null Is Null][Allshortestpaths(((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})))..] Limit `3esn`[$`1esn`..999][``..$123456789] Create `6esn`=({usn1:$`3esn` In $_usn4 In {_usn3}})-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})-[``?]-(#usn8 :@usn6:#usn8{`2esn`:$7 Is Not Null Is Not Null,`1esn`:`1esn` =~\"d_str\"}),_usn4=(:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null}) Load Csv With Headers From 123456789 Ends With $`6esn` Ends With $#usn7 As `6esn` Fieldterminator 's_str'"), - octest_legacy:ct_string("Create Shortestpath(((:#usn8:#usn8{``:1.0[0e0..0.e0]})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[ *123456789..{`4esn`:0Xa[2.12],#usn7:0.e0 In $#usn7 In $_usn3}]->(`6esn` :`3esn`:@usn5{`3esn`:0.e0 In $#usn7 In $_usn3,_usn4:{`8esn`} Ends With `6esn`}))),@usn6=Shortestpath((((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`8esn`?:`2esn`*..{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]})))) Merge (:`1esn`{})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(:`6esn`$123456789) On Create Set usn2 =All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {_usn4} Is Not Null Is Not Null) Is Null On Match Set @usn6 ='s_str' Starts With 123.654 With Distinct $12[Count ( * )][0X7],Case {`3esn`}[@usn6..0Xa][{12}..0Xa] When {usn1}[0X0123456789ABCDEF] Then 0x0 Ends With $12 When 0e0 Starts With `2esn` Starts With $`` Then {123456789}[9e12][{0}] Else 0X7[1000..{`1esn`}] End[..({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})] As `3esn`,{`5esn`:01 =~{_usn3} =~`3esn`,@usn5:{`3esn`} Is Not Null Is Not Null}[[`3esn` In {7} Is Null Where usn1 Is Null Is Null]..Reduce(@usn5=$0 Ends With 12.0,`5esn` In $999[0.0..]|$`8esn`[..00])][Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where usn2[$7..$123456789][$@usn6..$7]|0xabc[01..{999}][{7}..{`7esn`}])..None(`` In `` Is Not Null Is Not Null Where 0x0[`4esn`..'s_str'])] As @usn5 Skip $usn2[9e0] Limit {12} Is Not Null"), - octest_legacy:ct_string("Load Csv From 123.654[$`1esn`] As #usn7 Detach Delete [`` Ends With 0Xa Ends With `2esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},{`4esn`} =~{7} =~{`7esn`}],Reduce(`4esn`=01 Ends With 999 Ends With {`7esn`},`4esn` In $`3esn` Is Not Null|1.0[`3esn`..][9e0..]) Is Null Is Null,$_usn3 In {1000} In 0.12 Foreach(_usn4 In [`5esn` In $999[0.0..] Where `5esn` Starts With `3esn`|12e12 Is Not Null Is Not Null]| Start ``=Rel:#usn8({12}) Match ((:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?:`5esn` *0..]->(usn2 :``:#usn8)<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})) Using Scan _usn4:@usn6 Where `` Ends With 0Xa Ends With `2esn`) Union All Foreach(`3esn` In {`7esn`}[`6esn`][#usn7]| With Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where @usn6 Is Null Is Null)[(`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})..] As `3esn`,{`3esn`} In 0X7 Skip `1esn` In .e0 In {`3esn`} Limit Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End Create Unique #usn7=((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})),Shortestpath((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))))) Start #usn7=Node:`6esn`(`3esn`=\"d_str\") ,`7esn`=Node:``(@usn6={usn1})Where 9e12 Is Not Null Is Not Null Return Distinct 9e1[True] As _usn3 Order By Count ( * ) =~$usn2 =~$usn2 Descending Limit $@usn6 Is Not Null"), - octest_legacy:ct_string("Load Csv With Headers From #usn7(usn2 Is Not Null Is Not Null,$`6esn` Ends With Count(*)) Is Null Is Null As `6esn` Fieldterminator 's_str' Match (({_usn3:$`5esn`[`3esn`..]})-[? *..07{`4esn`:@usn5 =~{`5esn`} =~`5esn`}]->(_usn3 :usn2{#usn7:{999} Starts With {0}})) Using Index ``:`2esn`(usn1)"), - octest_legacy:ct_string("Create Unique @usn5=(((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``}))) Union Return Distinct usn2 Ends With 999 Ends With .e1 As `7esn`,$`5esn`[$123456789],[#usn8 In 7[..999][..{#usn8}] Where {12} =~#usn8|\"d_str\" Contains {123456789} Contains 01] Contains {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} As `8esn` Order By $0[$`1esn`..07] Desc,Filter(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0]) Ends With Case When {#usn8}[010] Then False =~$7 =~2.12 End Descending,{`4esn`:{`4esn`} =~{7} =~{`7esn`},`8esn`:$#usn7[#usn7..]} Is Null Is Null Desc Limit Extract(`5esn` In $999[0.0..] Where {_usn3}[..\"d_str\"]) =~All(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {@usn6}[{999}..][00..]) =~Any(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01) Union All Optional Match _usn4=Shortestpath(((:`1esn`{`5esn`:1.0 In Count(*)}))),#usn8=((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})-[:`4esn` *0xabc..{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(`3esn` :`5esn`)<-[#usn7?:_usn3|_usn3 *..0x0]-(`` :#usn7)) Using Index #usn8:`2esn`(`5esn`) Using Index `2esn`:`1esn`(`4esn`) Where {usn1} Is Not Null Is Not Null Merge @usn5=(`6esn` ) On Create Set Filter(usn1 In @usn5 =~{`5esn`} =~`5esn` Where @usn6 Contains Null Contains $`7esn`).`4esn` =00 Starts With 0xabc On Create Set usn2 =`3esn` In $0 In `1esn`,@usn6:`1esn`,count(Distinct {`1esn`}[usn1][.e1]).`1esn`? =01 Contains {`8esn`} Contains 2.12"), - octest_legacy:ct_string("With Distinct Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..] As `7esn` Skip $usn1 =~`` Limit `7esn`[..2.12][..{usn1}] Match `4esn`=Allshortestpaths((((:`5esn`)<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})-[`3esn`:#usn7]-({@usn6:$usn1 Ends With $`` Ends With $12})))) Where False Contains {`6esn`} Match (({`4esn`:`7esn` Is Null})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})),({`4esn`:{`4esn`} Ends With {usn2} Ends With {999}})<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-(:#usn8:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]}) Using Index `6esn`:`8esn`(``) Using Scan `2esn`:`7esn` Where 0.e0 Contains 9e1 Contains {`7esn`} Union All With Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..] As `7esn` Skip {`4esn`}[$123456789..][$#usn7..] Where `5esn` Starts With 010 Starts With 0.0 With $`8esn`[1000..0Xa],({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(:@usn5)<-[`7esn`?:`8esn`]-({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}) Ends With $7 Ends With All(`` In `` Is Not Null Is Not Null Where 1000 In {`8esn`} In 01) As ``,usn1 Starts With $usn1 As `1esn` Order By Null[``] Descending,1.e1[$`1esn`..@usn6][$0..$_usn3] Asc,$`6esn`[.e0..$`6esn`][$_usn3..{#usn7}] Desc Limit {`4esn`} Starts With 1e1 Where $123456789 Starts With 9e0 Starts With 's_str' Return *,Case When $_usn3[Count(*)] Then `7esn`[$0][9e12] When $1000[`2esn`..`5esn`][1e1..1.e1] Then 00[{`8esn`}..][{`8esn`}..] End[`7esn`(9e1[1000][{123456789}])],{12} Is Not Null"), - octest_legacy:ct_string("Load Csv From {@usn6}[$`6esn`..`4esn`] As @usn6 Union All With Distinct *,`6esn` Is Not Null Is Not Null As `3esn` Order By $`5esn` Starts With $0 Starts With {0} Asc Foreach(#usn7 In [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}|{usn1} Is Null Is Null][Allshortestpaths(((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})))..]| Load Csv From @usn6 Starts With `6esn` Starts With $`1esn` As _usn3 Return Allshortestpaths(((`8esn` ))) Ends With (`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]}),$_usn3['s_str'][07] As @usn5 Skip $_usn4[0e0..][False..])"), - octest_legacy:ct_string("Create Unique (`2esn` :usn1)<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(`3esn` :`8esn`:`7esn`)<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1),`1esn`=((_usn3 {`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(`5esn` :@usn5{`8esn`:{usn2} =~12})) Union Match `1esn`=(_usn3 :usn2{#usn7:{999} Starts With {0}}) Using Join On @usn5,`8esn` Where False Starts With {`5esn`}"), - octest_legacy:ct_string("Unwind 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] As _usn4 Union All Detach Delete #usn7[$usn1],$usn2[9e0],07[$123456789..] Optional Match `6esn`=Allshortestpaths(((_usn3 :`3esn`:@usn5))) Using Scan `3esn`:`5esn` Using Scan `6esn`:`3esn` Merge _usn4=(`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null})<-[``?]->(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}) Union All Merge #usn7=Allshortestpaths(((`1esn` {``:`7esn` Starts With $#usn7 Starts With $`7esn`})-[`5esn`:`8esn`]->(#usn8 {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]}))) Return *,Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End Is Null Is Null,$`5esn`[$`4esn`..{@usn6}][07..$@usn6] Order By {`1esn`:{@usn6}[{999}..][00..]}[..`5esn`][..{#usn8:{`7esn`}[`6esn`][#usn7],`5esn`:$`4esn`[9e12..123.654]}] Ascending Skip [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `4esn` Ends With 07 Ends With {`3esn`}|@usn5 Is Null] Is Null Is Null Start _usn4=Node( {`1esn`}) ,_usn3=Rel:#usn8(`1esn`={`3esn`})Where {#usn7}[`2esn`..]"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From {`6esn`} As _usn4 Start usn1=Relationship:`8esn`(#usn8={`2esn`}) ,`7esn`=Node:`6esn`({_usn3}) Create `6esn`=(usn2 {``:01[{@usn5}]})<-[{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(`3esn` :`2esn`:usn1{`8esn`:9e12[`6esn`..12.0],``:01[{@usn5}]})<-[`8esn`:`2esn` *..07]->({@usn6:01234567 Ends With .e12 Ends With $#usn7,`4esn`:12.e12[`3esn`]}),Allshortestpaths((((`4esn` )<-[? *0X7..{#usn8:{1000} Is Null Is Null,`3esn`:0.e0 Starts With 12.e12 Starts With {_usn4}}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})-[`8esn`?]->(`1esn` :#usn8:#usn8))))"), - octest_legacy:ct_string("Unwind .e0[..$`8esn`] As usn2 Load Csv With Headers From 0e0 Starts With `2esn` Starts With $`` As `3esn` Fieldterminator \"d_str\" Union All Create Unique ((_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})),`2esn`=Shortestpath((`6esn` {_usn4:0Xa =~Null =~$``})<-[``? *0X7..]->(`` :`1esn`)) Union With *,`7esn` Is Null As `7esn`,None(`` In `` Is Not Null Is Not Null Where $`6esn` Is Null) Contains Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}))) Contains Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End Order By {usn2} Starts With $`8esn` Starts With Count ( * ) Asc,(:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(:_usn3:_usn3{``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Is Not Null Descending,.e0[..0X0123456789ABCDEF][...e12] Descending Limit {``}[...e12] Load Csv With Headers From ({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]})<-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})[(@usn5 :`6esn`)-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]->(:@usn6:#usn8)..{`2esn`:{_usn4} Starts With 0.e0 Starts With 0x0}] As `1esn` Load Csv From Any(#usn8 In 7[..999][..{#usn8}] Where .e0[..$`8esn`]) In Case When 123.654[0e0..$``][$`1esn`..$`8esn`] Then $_usn3['s_str'][07] When {`3esn`}[..07][..{`5esn`}] Then 's_str' Is Not Null Is Not Null End In {`7esn`:{1000}[{_usn3}..],usn2:2.12 =~False} As `7esn` Fieldterminator \"d_str\""), - octest_legacy:ct_string("Merge (#usn7 :`8esn`:`7esn`)<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[_usn4?:`1esn` *7..12]->(:#usn8:#usn8{_usn3:$_usn3['s_str'][07],`7esn`:$1000 In $1000 In $`3esn`}) Return Distinct *,{`5esn`:01234567 Is Null Is Null}[..`1esn`(Distinct 00 Starts With 0xabc,$0)],Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn` As _usn3 Skip 1.0 =~7 =~{usn2}"), - octest_legacy:ct_string("Merge Shortestpath(((`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]})-[usn2?]-(`7esn` :`5esn`)-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->(:``:#usn8{`7esn`:00 Starts With 0xabc,_usn3:{123456789} Contains $#usn8}))) Merge Shortestpath(((`3esn` :`8esn`:`7esn`)<-[usn1:_usn4|:usn2]-(:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(`6esn` :_usn3:_usn3{`4esn`:0Xa Starts With {`6esn`} Starts With $usn1}))) On Create Set #usn7+=01 =~{_usn3} =~`3esn` Create Shortestpath(({@usn5:07[..True][..9e12]})-[_usn4?:`5esn` *..07]->({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})),#usn8=Shortestpath(((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[?*..]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})))"), - octest_legacy:ct_string("Foreach(@usn5 In `2esn` Starts With $_usn4| Remove _usn3(0.12 =~$0 =~$0).`3esn` With Distinct *,Filter(`4esn` In $`3esn` Is Not Null Where {`6esn`}) =~{_usn3:{`3esn`} Is Not Null Is Not Null} Skip $7 Ends With `4esn` Limit Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`3esn`} In 01)[Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12e12 Contains 0Xa|Null[$#usn7])..Allshortestpaths(((`` {`3esn`:{12} Contains {123456789} Contains `4esn`})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})))][Reduce(`6esn`=7[..123456789][..{@usn6}],`5esn` In \"d_str\" Is Null Is Null|$_usn4 Is Not Null Is Not Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] Where {`2esn`} Ends With {`7esn`}) Optional Match @usn6=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7)),(({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})) Using Scan `1esn`:`1esn` Using Index `8esn`:`1esn`(@usn5) Unwind $#usn7 Contains 0x0 Contains 1000 As _usn3"), - octest_legacy:ct_string("Create `2esn`=Allshortestpaths((({`3esn`:.e1[..usn2][..`8esn`]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`1esn`{_usn4:{999}}))),#usn7=Shortestpath((((#usn7 :`8esn`:`7esn`{`5esn`:1.0 In Count(*)})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000})))) Union All Return *,$`7esn`['s_str'] As #usn8 Order By Count ( * ) =~$usn2 =~$usn2 Descending,Reduce(`2esn`=$`5esn` In $`` In 123.654,#usn8 In {`5esn`}[.e1..``]|$12[True..][{0}..]) =~Shortestpath((((:#usn7)<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})))) Asc Limit {7}[$``][{@usn6}] Merge Shortestpath(((`2esn` :_usn4))) On Match Set #usn8+=`2esn`(Distinct $``,7 Starts With {@usn6} Starts With $``) Contains {@usn6:_usn3[$`8esn`],usn1:$@usn5 Is Not Null} Contains {@usn5:`8esn`[{123456789}..]},({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(#usn7 :#usn8:#usn8{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null}).@usn6? =01[{@usn5}] Foreach(`3esn` In 123.654[True..$#usn8][0.12..Count(*)]| Return (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(:_usn3:_usn3{``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Is Not Null,$#usn8[Count ( * )] As `4esn` Skip _usn3 Ends With 7 Ends With `1esn` Remove [1.0[00..]].#usn8?) Union All Optional Match @usn5=(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(`2esn` :`8esn`:`7esn`),usn1=Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` )))) Using Join On `7esn`,`8esn`,`3esn` Where 7[{0}..{_usn4}] Foreach(`` In $`8esn`| Create `8esn`=(:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`),(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7) Remove Case `1esn`[{usn1}..``][7..$#usn8] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] End.@usn5) Match `3esn`=Shortestpath((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))),Shortestpath(({@usn5:07[..True][..9e12]})-[_usn4?:`5esn` *..07]->({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})) Using Index @usn5:`2esn`(@usn5) Using Scan `7esn`:usn1 Where Null[$#usn7]"), - octest_legacy:ct_string("Remove Extract(`4esn` In $`3esn` Is Not Null Where Null Ends With {`5esn`} Ends With 0.e0|0X0123456789ABCDEF[123456789]).`4esn`?"), - octest_legacy:ct_string("Create Unique `6esn`=((`8esn` :#usn8:#usn8{`3esn`:$`4esn`[9e12..123.654]})),((:`4esn`{``:2.12 Is Not Null Is Not Null})-[usn1? *1000..00]->(#usn7 :@usn5{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})) Union With #usn7 Order By 7 Contains @usn6 Desc,`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) Contains Reduce(`7esn`=$_usn4 Ends With usn1 Ends With $0,`4esn` In $`3esn` Is Not Null|`7esn` In {123456789} In `1esn`) Ascending,\"d_str\" Starts With $#usn8 Starts With _usn4 Asc Where $999 Remove 0xabc.`1esn`?,Allshortestpaths(((($#usn8)-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)<-[? *7..12]->({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})))).``?,(_usn3 {`5esn`:12.e12[0xabc],`2esn`:{`7esn`}[..$@usn5][..$#usn8]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]->(:`4esn`{``:2.12 Is Not Null Is Not Null}).`2esn`!"), - octest_legacy:ct_string("Create Unique (`7esn` {@usn5:{7}[..1.0][..9e0]})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})<-[`1esn`?:usn2|``]-({@usn5:{usn2}[.e0..$999]}),((`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0})) Optional Match `8esn`=Allshortestpaths(({@usn5:07[..True][..9e12]})-[_usn4?:`5esn` *..07]->({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})) Using Join On #usn7,_usn4 Using Index `3esn`:`5esn`(#usn7) Where usn1 Ends With $@usn6 Ends With `3esn` Union All Load Csv With Headers From {123456789} Is Not Null As `7esn` Fieldterminator \"d_str\" Create (`2esn` :`8esn`:`7esn`)-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}) Create Unique (((usn2 :`4esn`)-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[``? *..01{`1esn`:$@usn6 Contains 07}]-(:`3esn`:@usn5{#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}))),((({#usn8:0xabc[.e0]})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(:usn2{`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`6esn`? *..010]-({#usn7:2.12 Contains usn2 Contains True})))"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From Case When False Then 0.e0 Ends With $#usn7 Ends With $7 When {@usn6}[{999}..][00..] Then `5esn` Ends With {``} Ends With 12.e12 Else 123.654[$`1esn`] End[Reduce(#usn8=$`6esn` Ends With Count(*),`2esn` In `1esn` =~\"d_str\"|_usn4 Contains 2.12)..] As `1esn` Unwind `8esn` Ends With 999 Ends With .e12 As `7esn` Match (((#usn7 :`8esn`:`7esn`{`5esn`:1.0 In Count(*)})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000}))) Where $_usn4 Is Not Null Is Not Null"), - octest_legacy:ct_string("With Distinct {`7esn`} Starts With $123456789 Starts With $@usn6 As _usn3 Order By _usn4(Distinct _usn3[_usn3..][12.e12..])[[0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},0Xa Starts With {`6esn`} Starts With $usn1]] Desc,Count(*) Contains $#usn7 Contains 1e1 Desc Limit {#usn8} Is Null With Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {`3esn`} Is Not Null Is Not Null)[{@usn6:1.0[$`1esn`..][$123456789..]}] As `6esn` Order By Single(_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..])[..All(`` In `` Is Not Null Is Not Null Where {`7esn`} Is Null)] Ascending Skip Case {#usn7}[9e1..][{123456789}..] When $0 Ends With 12.0 Then $`` Is Not Null When $usn1 In {999} In $#usn7 Then 1000[Null..{123456789}] Else 1.0 =~'s_str' =~{`2esn`} End[({#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)..][Shortestpath((((`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})<-[`8esn`]-(usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[`3esn`?:`` *..0x0{`4esn`:0.e0 Contains 9e1 Contains {`7esn`},@usn6:$@usn5 =~1000 =~1000}]->(:@usn5{_usn3:07 =~01}))))..] Where _usn4 Is Null Is Null"), - octest_legacy:ct_string("Remove (:_usn3:_usn3{`7esn`:$`1esn` =~0X7})-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 :usn1)._usn3,[#usn8 In 7[..999][..{#usn8}] Where 0Xa[$123456789..123.654][.e12..0.e0]|{999} Starts With $999].usn2 Union All Start _usn4=Relationship(,) "), - octest_legacy:ct_string("Load Csv From 0Xa Starts With `7esn` Starts With $`1esn` As `7esn` Fieldterminator \"d_str\" Optional Match #usn7=(`4esn` :#usn7),(({`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})<-[usn2?:#usn7]-(@usn6 :@usn5{usn2:$`5esn`[..$`5esn`][..$12]})) Using Scan #usn7:@usn6 Using Join On `6esn` Where 0.12 =~$0 =~$0"), - octest_legacy:ct_string("Return Distinct {``}[`8esn`..],{`7esn`} Starts With $123456789 Starts With $@usn6 As _usn3 Limit `8esn`(Distinct $#usn7 Is Null) Ends With Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]) Ends With Shortestpath(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))) Merge usn2=Shortestpath(((_usn4 {`5esn`:\"d_str\" Starts With 01})-[`3esn`? *123456789..]->({_usn3:$`5esn`[`3esn`..]})<-[{#usn7:123456789 Is Null}]-(:`6esn`{#usn7:$@usn5 Contains 0xabc Contains {#usn7},`1esn`:0xabc[.e0]}))) Union Remove None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`).``?,Filter(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 12e12 Ends With {usn1}).`5esn`!"), - octest_legacy:ct_string("Merge @usn6=(_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5}) On Create Set #usn8+=[1.0 =~'s_str' =~{`2esn`}][Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`6esn`})][Reduce(`2esn`={123456789} Is Null Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4])]"), - octest_legacy:ct_string("Foreach(usn2 In {@usn6} Is Null Is Null| Remove `3esn`(False Starts With {`5esn`},0[{usn2}..][$`6esn`..]).usn2? Detach Delete Reduce(#usn7=`3esn`[{`2esn`}],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|#usn8 Is Not Null)[(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(#usn7 {_usn3:`4esn`[..Count ( * )][..{#usn7}]})..None(`8esn` In 01[2.12..`8esn`] Where {usn2})],Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))),12 Ends With 0x0 Ends With 0.e0) Unwind {usn1} In 2.12 In 1000 As @usn6 Delete `1esn`[{usn1}..``][7..$#usn8],`3esn`(`5esn`[{`4esn`}..`2esn`],9e1[2.12..{#usn8}]) In `8esn`(Distinct $1000[`2esn`..`5esn`][1e1..1.e1],0X0123456789ABCDEF Ends With $`8esn` Ends With 0.12) In All(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`4esn`} Starts With $usn2 Starts With $1000)"), - octest_legacy:ct_string("Start `5esn`=Relationship:usn2({`5esn`}) Create Unique (({`1esn`})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})<-[`3esn`:#usn7]-(:#usn8:#usn8{_usn4})) Create Unique Shortestpath(((({`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})<-[`8esn`*..{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]}]-(#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(`6esn` :_usn3:_usn3{`4esn`:0Xa Starts With {`6esn`} Starts With $usn1})))) Union All With Distinct *,Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End[..[9e1[1000][{123456789}],$_usn3[{#usn7}],`5esn` Starts With $`2esn` Starts With $1000]][..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0 In `2esn` In 010)] As usn1,Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`]|123456789 Ends With 12.e12 Ends With $`7esn`) Is Not Null As `6esn` Order By [@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null] Is Null Is Null Ascending,0xabc[{12}..] Desc,`7esn`[$12..][$`8esn`..] Descending Skip {_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] Limit Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End Ends With Case When 0x0 Ends With $12 Then 07 =~01 End Load Csv From `3esn`[{0}][usn1] As #usn7 Fieldterminator \"d_str\" Union Load Csv From Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`])[Case 00[{`8esn`}..][{`8esn`}..] When 0e0 Starts With 2.12 Starts With $12 Then Null[``] When 12e12 Ends With {usn1} Then $`2esn` Else 2.12['s_str'..$12][{`1esn`}..`2esn`] End..] As usn2 Merge ``=Allshortestpaths((`6esn` :`8esn`:`7esn`)<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})) On Create Set #usn8+=#usn7[010..False] On Create Set [2.12 Ends With $_usn3 Ends With `3esn`,#usn7,01[{@usn5}]].`2esn`! =usn1(Distinct $@usn5 Starts With $1000)[[`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}|0Xa =~Null =~$``]..]"), - octest_legacy:ct_string("Remove Reduce(usn2=$`8esn`[..{`2esn`}],@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|`5esn` Is Null).@usn5 Return Distinct 1e1 Contains Count ( * ),$`` Ends With 0.0 Ends With {1000},.e1 In 0 As `7esn` Skip 07[..True][..9e12] Limit Case When _usn4 Is Null Is Null Then Null[$#usn7] When $`2esn` Is Null Is Null Then $`3esn` =~{#usn8} End[(@usn5 :usn1)-[`2esn`:_usn4|:usn2]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})..Reduce(@usn5=`3esn`[{usn1}],`8esn` In 01[2.12..`8esn`]|`5esn` Starts With `3esn`)][Shortestpath((:``:#usn8{``:1.0[0e0..0.e0]}))..None(#usn8 In {`5esn`}[.e1..``] Where {_usn3}[..\"d_str\"][..`5esn`])] Unwind [.e12[@usn5..#usn7][010..{usn1}]] In All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {`6esn`} Contains \"d_str\") In None(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) As `2esn` Union All With Distinct *,07 Is Not Null Is Not Null Order By None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null) Desc,None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null) Desc Limit Case `7esn`[9e0..] When 1.0 =~'s_str' =~{`2esn`} Then 0xabc[01..{999}][{7}..{`7esn`}] When 0X7[$999][_usn4] Then 010 In Count(*) Else usn2[{7}] End =~Reduce(@usn6=usn2[9e12],#usn8 In 7[..999][..{#usn8}]|{999} Is Null Is Null) =~(:`1esn`{_usn4:$@usn6 Ends With $_usn4 Ends With 0.12})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->(_usn3 {`5esn`:12.e12[0xabc],`2esn`:{`7esn`}[..$@usn5][..$#usn8]})-[`7esn` *..0x0]-(`2esn` :_usn4) Where Count ( * ) Contains {`1esn`} Contains 07 Optional Match usn2=Allshortestpaths((usn2 :`4esn`)-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(`` :_usn4)),_usn3=({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True}) Using Scan `3esn`:`2esn` Union Match (`7esn` {`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2}) Using Scan @usn5:@usn6 Where {`3esn`} Is Not Null Is Not Null"), - octest_legacy:ct_string("Merge `7esn`=(`1esn` )-[`1esn`?:`8esn`]->(#usn7 :`6esn`$1000)<-[?:`2esn` *00{@usn6:usn1[`5esn`..$7],`3esn`:{`7esn`}[..$@usn5][..$#usn8]}]-(`` {`1esn`:{@usn6}[{999}..][00..]}) On Create Set #usn7 =Extract(`8esn` In 01[2.12..`8esn`] Where True[00][0Xa]) In Allshortestpaths((((`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[usn2?:#usn7]-(@usn6 :@usn5{usn2:$`5esn`[..$`5esn`][..$12]})<-[`1esn`?:`1esn` *..01{`2esn`:$_usn4 Is Not Null Is Not Null}]->(:`5esn`{`2esn`:`4esn`[1.0]})))) In Reduce(`7esn`=`3esn`[{`2esn`}],#usn7 In `2esn`[..$#usn8][..Count(*)]|Count ( * ) Contains {`1esn`} Contains 07),_usn3 =$#usn7 Is Null Union Optional Match Shortestpath((((:@usn6:#usn8{`1esn`:`4esn`[..010][..{12}]})<-[`2esn`?:`7esn`]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[? *..07]-(`4esn` {``:{#usn8}[010],usn1:{``} Starts With $`2esn` Starts With `1esn`})))) Using Join On _usn4 Using Index _usn4:`5esn`(`6esn`) Where $`6esn` Ends With Count(*) With *,Extract(#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12) Ends With [False =~$7 =~2.12,$`4esn` In Null In 0xabc,{`7esn`} Starts With $123456789 Starts With $@usn6],_usn3 Ends With 7 Ends With `1esn` As _usn4 Where 0.12 Contains 0X0123456789ABCDEF Contains .e0 With Distinct [`4esn` In $`3esn` Is Not Null Where $@usn5 Contains 0xabc Contains {#usn7}|`3esn`[{0}][usn1]] In [{12}[{7}][$123456789],`2esn` Starts With $_usn4] In count($1000 Is Null,0Xa[$123456789..123.654][.e12..0.e0]) Order By None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null) Desc,None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null) Desc Where $usn2[{@usn5}]"), - octest_legacy:ct_string("Delete 999[..$`5esn`][..12.0],Case 0x0[`4esn`..'s_str'] When 0.e0 Ends With $#usn7 Ends With $7 Then 0X7[..2.12] When {123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4] Then 0.e0[123.654][01] Else {_usn3}[..$12][..0.12] End[[`1esn`[..{@usn6}][..$123456789]]..] Load Csv With Headers From 0[{usn2}..][$`6esn`..] As #usn8 Fieldterminator \"d_str\" Union All Merge (((:`2esn`:usn1{@usn5:`5esn`[.e0..][07..],`4esn`:`8esn` =~0xabc =~010})-[`7esn`?*..]->(#usn7 {`5esn`:00 Starts With 0xabc,`6esn`:0Xa =~Null =~$``})-[usn2?]-(:@usn5))) Foreach(`2esn` In 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3]| Create (#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})) Remove (_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})<-[usn2?:#usn7]-({#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}).#usn7,Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01|7[True..][2.12..]).@usn5 Union Start ``=Node:#usn8(`8esn`={`6esn`}) ,_usn3=Node:@usn6({_usn4}) Create Unique `8esn`=Allshortestpaths((((:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?{usn1:0[`7esn`..]}]->({usn1:{`7esn`}[`6esn`][#usn7],usn1:{999} Starts With $999})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))),_usn4=(`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null})<-[``?]->(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})"), - octest_legacy:ct_string("Foreach(`8esn` In True Contains {0} Contains 7| Start ``=Relationship:usn2('s_str') ,`1esn`=Rel:`4esn`(`4esn`='s_str') Delete Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0) Is Not Null Is Not Null) Union Merge `8esn`=Allshortestpaths(((`` {usn2:0X0123456789ABCDEF[123456789]})-[?{`8esn`:{7} Is Null}]->(`4esn` {`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})-[]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]}))) On Match Set Case {999} Is Null Is Null When 12.0 =~1.0 =~9e12 Then $usn1 In {999} In $#usn7 Else `1esn` Ends With {_usn3} Ends With `2esn` End.usn2 ={@usn5:$`8esn` =~{1000}} Contains [1000 In {`8esn`} In 01,`` Ends With 0Xa Ends With `2esn`] Contains Reduce(#usn7={12} Is Not Null,#usn7 In {``} Is Not Null|usn2 Is Null),[00[{`8esn`}..][{`8esn`}..],.e12[@usn5..#usn7][010..{usn1}],usn1 Ends With $@usn6 Ends With `3esn`].usn2? =$`7esn` Is Not Null On Match Set `1esn` =(:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case When `6esn`[12..$usn2][{#usn8}..{usn2}] Then {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] When .e12[@usn5..#usn7][010..{usn1}] Then 0.12 =~$0 =~$0 End"), - octest_legacy:ct_string("Create Unique `6esn`=((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})),@usn6=Allshortestpaths((:@usn5{`2esn`:_usn3 Ends With 7 Ends With `1esn`})<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`4esn`{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})) Start `6esn`=Relationship:usn2(#usn8=\"d_str\") ,`7esn`=Rel:#usn8({_usn3}) Unwind Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 2.12 Ends With $_usn3 Ends With `3esn`|{123456789} Contains $#usn8)[{`7esn`:$`6esn`[010..]}..] As `2esn` Union All Load Csv With Headers From {`3esn`}[..07][..{`5esn`}] As `4esn` Fieldterminator 's_str' Merge _usn4=Allshortestpaths((#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})) With `6esn`(Distinct 2.12 Ends With $_usn3 Ends With `3esn`) Is Null,`8esn`[$#usn7..123456789],All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By Single(#usn8 In {`5esn`}[.e1..``] Where 123.654[$`1esn`]) Is Not Null Is Not Null Descending,_usn4(Distinct _usn3[_usn3..][12.e12..])[[0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},0Xa Starts With {`6esn`} Starts With $usn1]] Desc,1e1 In \"d_str\" In `7esn` Descending Skip [`` Ends With 0Xa Ends With `2esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},{`4esn`} =~{7} =~{`7esn`}] Union All With [9e1[..$`2esn`]][{`8esn`:False =~$7 =~2.12,`3esn`:Count ( * ) =~$usn2 =~$usn2}][Case {``} Is Null When 2.12 Then $123456789 Ends With {`1esn`} Ends With $`4esn` End] As `8esn`,`7esn` Is Null As `7esn` Skip $`4esn`[010..`4esn`] Where {1000} =~0 =~123.654"), - octest_legacy:ct_string("Remove None(`4esn` In $`3esn` Is Not Null Where {123456789} Is Not Null).usn2!,Single(`2esn` In `1esn` =~\"d_str\" Where 0X0123456789ABCDEF Ends With $`8esn` Ends With 0.12).usn1 Union Return Distinct [`5esn`[{`4esn`}..`2esn`],Null Ends With {`5esn`} Ends With 0.e0,010[#usn7..True]] Contains [`3esn` In {7} Is Null Where {usn2}[.e0..$999]|Count ( * ) Contains `8esn` Contains .e1] Contains Reduce(``=@usn5 In {`7esn`} In `2esn`,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{_usn4}[1000..{@usn5}]) As `3esn`,{7}[$7..$``][{``}..{7}] As usn2,{1000}[{_usn3}..] As #usn7 Skip Shortestpath((_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})) Contains [`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 7 Starts With {@usn6} Starts With $``|.e12 Is Not Null Is Not Null] Limit $`6esn` Ends With Count(*) Merge _usn3=(#usn8 {`2esn`:$`5esn`[..$`5esn`][..$12]})-[#usn7:@usn5 *0X7..]->(@usn5 :usn1{`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]})-[?:`2esn` *00]->(`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}) Remove None(_usn3 In {`3esn`}[`2esn`] Where {`8esn`} Ends With `6esn`).`5esn`!,None(#usn7 In {``} Is Not Null Where `5esn`[.e0..][07..]).usn2 Union Create Unique (@usn6 {#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12})<-[usn1?:`7esn`]-(:usn1{usn1:{`6esn`}}),(((:`6esn`{_usn4:'s_str' Ends With 7 Ends With {_usn4},@usn6:$`2esn`})-[:@usn6|`6esn` *1000..00]-(usn1 {`1esn`:$@usn6 Ends With $_usn4 Ends With 0.12,`3esn`:`4esn` =~$`5esn`})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(:`3esn`:@usn5$usn2))) Create Unique (({`4esn`:`7esn` Is Null})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})),({`4esn`:{`4esn`} Ends With {usn2} Ends With {999}})<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-(:#usn8:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]}) Create @usn5=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7})"), - octest_legacy:ct_string("Start `7esn`=Node:_usn4(@usn5={_usn3}) ,_usn4=Relationship(,) Unwind 9e0 Is Not Null Is Not Null As `2esn` Foreach(`3esn` In $`7esn` Is Null Is Null| Create Unique usn2=Allshortestpaths((:`2esn`:usn1{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]})),((({@usn5:{usn2}[.e0..$999]})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(`6esn` :_usn3:_usn3{`4esn`:0Xa Starts With {`6esn`} Starts With $usn1})-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1}))) Detach Delete Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 2.12 Ends With $_usn3 Ends With `3esn`|{123456789} Contains $#usn8)[{`7esn`:$`6esn`[010..]}..],01 Ends With 999 Ends With {`7esn`},All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)]) Union Load Csv From 0X7[..2.12] As `` Union With $@usn5[010..$#usn8][12..$`4esn`] As `8esn` Order By {`2esn`} Ends With {`7esn`} Asc,[`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999}] Ends With usn1(Distinct 1000 In {`8esn`} In 01,{_usn3}[..\"d_str\"][..`5esn`]) Ends With Reduce(_usn4=1000[Null..{123456789}],`5esn` In $999[0.0..]|9e1 In $`3esn` In $@usn6) Asc Skip 00[`2esn`..12][123456789..0.e0] Where @usn5 In $7 Merge Allshortestpaths((`2esn` :`8esn`:`7esn`{`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})) Unwind $#usn8 Contains $`1esn` Contains {`6esn`} As #usn7"), - octest_legacy:ct_string("Create Unique (#usn8 {#usn7:`4esn` Ends With 07 Ends With {`3esn`},`3esn`:{0} In $_usn3})<-[:`4esn` *..010{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]->(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}),`1esn`=Allshortestpaths((((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})-[:`8esn` *..01]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[usn2?:@usn5{`4esn`:{`7esn`} Is Null,_usn4:$123456789 Ends With {`1esn`} Ends With $`4esn`}]->(`6esn` {`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null})))) With Distinct 07[$#usn7..{1000}] Order By {#usn7}[..9e12][..`8esn`] Ascending,Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))) Desc,@usn6 Is Null Is Null Descending Limit `3esn` In $0 In `1esn` Where {`4esn`} =~9e0 =~{12} Unwind $`3esn` Is Not Null Is Not Null As `7esn` Union All Foreach(`4esn` In 1000[0X7..2.12]| Remove ({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)._usn4?) Foreach(`3esn` In 0.0[Null][$`2esn`]| Remove (:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:_usn3|_usn3{`3esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],#usn8:False Starts With {`5esn`}}]-(usn2 :`5esn`{`7esn`:01234567 Is Null Is Null})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)._usn3,[@usn6[$`3esn`..{`3esn`}]].#usn7!,Reduce(@usn5='s_str' Ends With 7 Ends With {_usn4},`8esn` In 01[2.12..`8esn`]|{999}).#usn8!) Optional Match _usn3=Allshortestpaths(((:usn1{_usn4})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}))),(({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})) Using Scan _usn4:usn1 Where 12e12 Ends With {usn1} Union All Match #usn7=({@usn5:07[..True][..9e12]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}),Allshortestpaths((_usn4 :usn1)<-[`1esn`?:`4esn`]->(`5esn` :`4esn`)) Match `6esn`=((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})) Using Index usn2:@usn6(`5esn`) Using Scan `2esn`:_usn4 Where $@usn5 Contains 0xabc Contains {#usn7} Detach Delete {`3esn`}[`2esn`],{12} Ends With 0Xa Ends With $`6esn`,False[$usn1.._usn4][_usn4..{`3esn`}]"), - octest_legacy:ct_string("Foreach(`7esn` In Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where _usn4 Contains 2.12)[(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})..][#usn7(7 =~{`8esn`} =~$`6esn`,$123456789 Ends With {`1esn`} Ends With $`4esn`)..]| Remove _usn3(0.12 =~$0 =~$0).`3esn`) Union All With Distinct *,`6esn` Is Not Null Is Not Null As `3esn` Order By $`5esn` Starts With $0 Starts With {0} Asc Foreach(#usn7 In [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}|{usn1} Is Null Is Null][Allshortestpaths(((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})))..]| Load Csv From @usn6 Starts With `6esn` Starts With $`1esn` As _usn3 Return Allshortestpaths(((`8esn` ))) Ends With (`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]}),$_usn3['s_str'][07] As @usn5 Skip $_usn4[0e0..][False..]) Union All Create Unique @usn6=((`` :`7esn`:_usn3)),((usn2 :`4esn`)-[_usn3:#usn8|`1esn`{_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]}]->(@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:`5esn` *0..{_usn4:7[$`2esn`..{`5esn`}]}]->()) Delete Count(*) Starts With 123456789 Starts With $1000,`7esn` Contains $@usn5 Contains {`6esn`},False Is Null Is Null"), - octest_legacy:ct_string("Remove {_usn3:`4esn` Ends With 07 Ends With {`3esn`}}.`1esn` Union All Foreach(`7esn` In $0[12.e12..]| Load Csv With Headers From 's_str' In 00 As @usn6 Fieldterminator 's_str' Optional Match (((`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[usn1?:@usn5*]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})-[#usn7:@usn5 *0X7..]->(`2esn` ))),Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))) Where `7esn` In {123456789} In `1esn`)"), - octest_legacy:ct_string("Optional Match `2esn`=((#usn7 :``:#usn8{`2esn`})) Using Join On @usn6 Using Scan `2esn`:`6esn` Unwind {`3esn`}[..$`3esn`][..12.e12] As _usn3"), - octest_legacy:ct_string("Remove {`4esn`:`2esn` Is Null,@usn5:00 Starts With 0xabc}.`6esn`,usn1:`3esn`:@usn5 Union Remove None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`).``? Merge `5esn`=Shortestpath((((@usn5 :_usn4{#usn7:Null Ends With `2esn` Ends With $usn1,`5esn`:12.0})-[?:#usn7 *01234567..0Xa]->({``:$`8esn` =~{1000}})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})))) Create Shortestpath(((`7esn` {`4esn`:{usn1} Ends With $0})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2})-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]-(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})))"), - octest_legacy:ct_string("Create Unique (((`6esn` )-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`5esn` :_usn4{7})<-[usn1:_usn4|:usn2]-(:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1}))),(:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})"), - octest_legacy:ct_string("Unwind \"d_str\" =~1000 =~{`1esn`} As `` Load Csv From [#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01|{0} Ends With $_usn3 Ends With $`7esn`] Contains Case {0}[12.0..0Xa][$`5esn`..{_usn3}] When .e1 Ends With 1e1 Ends With @usn5 Then 01[{`2esn`}..{@usn6}][$`2esn`..0.0] Else 123.654[...e0] End As #usn8 Union Create Unique ((:_usn4{usn2:0X7 =~9e1})<-[? *..0x0]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})),`1esn`=(`` {@usn6:1.0[$`1esn`..][$123456789..]})<-[?{usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null}]-(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null}) Delete 0.0 =~999,0e0[07],$1000 Is Not Null With *,0.0 =~999 As `4esn` Skip `3esn`[..$12][..{`7esn`}] Limit {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]) Where `6esn`[..$@usn6] Union All Create `1esn`=(((:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})<-[:#usn7 *..010]-(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}))),((@usn5 :usn1)<-[`5esn`? *7..12{`5esn`:{999},_usn3:$`5esn`[2.12..]}]->(:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})-[_usn4?:_usn4|:usn2 *..999]-({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})) Match (:#usn7{usn2:{usn1} Ends With $0,#usn8:`5esn` Starts With $`2esn` Starts With $1000})-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(`1esn` :_usn3:_usn3{#usn7:$@usn5 Is Not Null Is Not Null}),`3esn`=({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True}) Using Join On `8esn`,@usn5 Using Index `3esn`:_usn3(`6esn`)"), - octest_legacy:ct_string("With Distinct 123.654 Is Not Null As `1esn`,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) As `4esn` Order By 0.0 =~999 Asc,1e1 In \"d_str\" In `7esn` Descending Create `8esn`=Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))),#usn8=(:`2esn`:usn1)-[`1esn`:@usn6|`6esn`*..{`7esn`:7[{0}..{_usn4}]}]->(`8esn` {_usn4:`4esn`[1.0],`5esn`:0e0 Ends With 1.e1 Ends With $`4esn`})-[:@usn5{@usn5:{#usn7}[9e1..][{123456789}..],``:#usn7 Is Not Null Is Not Null}]->(`4esn` :`6esn`{_usn3:$123456789 Ends With `3esn` Ends With 123456789,`6esn`:0e0 Starts With 2.12 Starts With $12}) With Distinct *,{`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null} Contains {@usn5:{`3esn`} In 01} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 1.0[0X7][{`5esn`}]|{``}[010..][0xabc..]) As #usn8 Order By {`3esn`} In $@usn5 In _usn4 Asc Skip $0[..9e1] Limit $usn1 =~`` Where 9e0[..999] Union Foreach(@usn6 In usn2 Is Null| Remove Reduce(#usn8=$999 Is Not Null,`` In `` Is Not Null Is Not Null|@usn5 In $7)._usn4?,[0.0[Null][$`2esn`],.e12 Ends With _usn4,01 Is Null].`6esn`,Reduce(#usn7=1.0 Contains $_usn4,#usn7 In {``} Is Not Null|$`4esn`[9e12..123.654]).`3esn`?) Create Unique `3esn`=(`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[`8esn`?:@usn6|`6esn`]-(`2esn` :`6esn`) Unwind {``} Ends With `7esn` Ends With 0.0 As `6esn` Union All Load Csv From $#usn7[#usn7..] As `1esn` Remove Any(`3esn` In {7} Is Null Where 1e1 Contains Count ( * )).`4esn`,[#usn8 In 7[..999][..{#usn8}] Where $_usn4[1.e1]['s_str']|`2esn` Is Null].usn1,None(#usn8 In 7[..999][..{#usn8}] Where $_usn3 Contains 999 Contains \"d_str\")._usn3?"), - octest_legacy:ct_string("Return Distinct $@usn5,{`5esn`} Starts With @usn5 Starts With `7esn`,$1000 =~$`2esn` As `6esn` Skip 9e12[{123456789}..#usn8][{_usn3}..{#usn7}] Limit 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3] Remove (`1esn` :_usn3:_usn3)<-[? *7..12]->({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})<-[`6esn` *0Xa{_usn3}]-({@usn5:usn1 Is Not Null}).`3esn`!,Case When {7} Is Null Then .e1[{`7esn`}..{_usn4}] When 1.0 =~'s_str' =~{`2esn`} Then $`5esn` In $`6esn` End.`6esn`? Union Start _usn4=Node( {#usn7}) Unwind {`8esn`} Ends With `6esn` As @usn6 Create Unique _usn3=Shortestpath((:`3esn`:@usn5{`2esn`:{`3esn`}[..07][..{`5esn`}]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})),usn2=({@usn5:usn1 Is Not Null})<-[`3esn`:`6esn`|`5esn` *..12{usn1:0X0123456789ABCDEF Is Null Is Null}]-(:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})"), - octest_legacy:ct_string("With Distinct *,{#usn8}[1.e1...e12] As `5esn` Order By 0e0[..010] Descending,_usn4(0.e0 Starts With 12.e12 Starts With {_usn4},0X0123456789ABCDEF Is Null Is Null)[Case 's_str' In 00 When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null When $@usn5 Starts With {0} Starts With 12 Then {usn2} Else {#usn7}[`2esn`..] End..] Descending Limit 1.0 =~'s_str' =~{`2esn`} Where 1.0 =~7 =~{usn2}"), - octest_legacy:ct_string("Unwind `2esn` Starts With 07 As #usn7 Start @usn5=Rel:#usn8({_usn3}) Where $`6esn` Is Null Remove (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}).`7esn`?,(_usn3 {`5esn`:$#usn8[$`8esn`..{`8esn`}]})<-[@usn6?:`5esn`]-(`3esn` :usn2).@usn5?,Reduce(#usn7=`7esn`[..2.12][..00],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|1000 =~@usn6 =~0x0).`4esn`! Union Return $`1esn` Ends With 9e1 Ends With $123456789 As `4esn`,False Ends With `3esn`,9e1[2.12..{#usn8}] Order By 0Xa[7..2.12][`3esn`.._usn3] Desc,7 Contains @usn6 Desc,`2esn` Starts With $_usn4 Asc Skip {123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4] Unwind $0[$`1esn`..07] As usn2"), - octest_legacy:ct_string("Remove {`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null}.`4esn`?,usn1:#usn7,Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`|$_usn3[..1000]).`` Union All Detach Delete Any(`5esn` In \"d_str\" Is Null Is Null Where usn1 Ends With $@usn6 Ends With `3esn`) In (:`3esn`:@usn5{`5esn`:`3esn`[..$12][..{`7esn`}]})<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]-({`7esn`:{999}})-[_usn3? *0X7..]-(:`5esn`{`2esn`:`4esn`[1.0]}) Union Delete \"d_str\" =~1000 =~{`1esn`} Match usn2=Shortestpath(((_usn4 :``:#usn8)-[:`8esn` *..01]->({#usn7:0.e0 Starts With `2esn`})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->($#usn8))) Using Index `8esn`:@usn6(`5esn`)"), - octest_legacy:ct_string("Delete Reduce(`6esn`=0X7[$999][_usn4],`8esn` In 01[2.12..`8esn`]|{1000} =~0 =~123.654) Is Null Is Null,Count ( * ) Is Null Load Csv From 0.0 Is Not Null Is Not Null As usn1 Create Unique Allshortestpaths((:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[#usn8]-(:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})),Allshortestpaths((((@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:_usn3|_usn3 *01234567..0Xa{@usn5:123.654[True..$#usn8][0.12..Count(*)]}]-(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})<-[?:#usn7 *01234567..0Xa]-(@usn6 {#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12}))))"), - octest_legacy:ct_string("Return Distinct *,$`3esn` In Null As `3esn` Limit `1esn`(Distinct $@usn5[..12e12][..$123456789],{#usn7} Is Not Null Is Not Null)[{`7esn`:\"d_str\" Starts With $123456789}..] Remove Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0X0123456789ABCDEF =~1e1 =~{`4esn`}|1.0 Contains $_usn4).`5esn`?,Reduce(`5esn`=12[1.e1..{_usn3}][1.e1..1.0],#usn7 In `2esn`[..$#usn8][..Count(*)]|12.e12[7..$`6esn`]).`5esn`!,`4esn`:`6esn`"), - octest_legacy:ct_string("With *,None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As `5esn`,Shortestpath((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]}))[None(#usn7 In `2esn`[..$#usn8][..Count(*)])][(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})] Where {usn1} Ends With $0 Foreach(`7esn` In {`5esn`} =~`4esn` =~{_usn4}| Load Csv With Headers From {`6esn`}[..$@usn6][..`7esn`] As @usn6 Fieldterminator \"d_str\" Start usn2=Rel:usn2({`4esn`}) ,_usn4=Node:usn2(`8esn`='s_str')Where 123.654[...e0])"), - octest_legacy:ct_string("Merge _usn3=((@usn5 {usn2:0.e0[123.654][01]})-[`3esn`:#usn7]->(@usn6 {_usn3:{#usn7} Is Not Null Is Not Null})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})) On Create Set `5esn`+=999 In {`3esn`} In usn2 Unwind Shortestpath((($#usn8)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})))[Single(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where usn1 Ends With $@usn6 Ends With `3esn`)..] As `1esn`"), - octest_legacy:ct_string("Merge Allshortestpaths((({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}))) On Create Set Single(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0Xa Starts With {`6esn`} Starts With $usn1).`2esn`! =123456789[$1000..$#usn7],{usn2:12.0 =~999 =~$_usn3,@usn6:{usn2}[$`3esn`..][{#usn7}..]}.`1esn` =0.e0 Contains 9e1 Contains {`7esn`},(@usn5 :`4esn`)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`6esn` :_usn4)-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(usn2 {`6esn`:{#usn8}[.._usn4][..$`3esn`],`7esn`:01 =~{_usn3} =~`3esn`}).`1esn`! =None(`2esn` In `1esn` =~\"d_str\" Where .e12 Is Not Null Is Not Null)[Reduce(@usn5=#usn7 Contains _usn3 Contains {`3esn`},@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|$@usn5 Starts With {0} Starts With 12)] Remove [`5esn` In $999[0.0..] Where `5esn` Starts With `3esn`|0e0[..010]].`6esn`! Remove [`5esn` In $999[0.0..] Where $_usn3[.e0..$usn2]|Count(*)[..usn2][..usn2]].@usn6,Any(`5esn` In \"d_str\" Is Null Is Null Where ``[$`2esn`])._usn3?,None(_usn3 In {`3esn`}[`2esn`]).`6esn`?"), - octest_legacy:ct_string("Return Distinct .e12[..`7esn`][..0Xa],123.654 Is Not Null Is Not Null As `8esn`,All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By {usn2} Descending,1.0 =~7 =~{usn2} Desc Skip 0.0[$0][{@usn5}] Create Unique ((`1esn` {`5esn`})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})),Shortestpath((((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`8esn`?:`2esn`*..{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]})))) Union All Foreach(#usn8 In .e12 Ends With $`2esn` Ends With {``}| Start `3esn`=Node:@usn5({0}) ,`2esn`=Relationship:`3esn`(\"d_str\")) Start @usn6=Rel:``(_usn3='s_str') ,``=Node:_usn4(usn1={12}) Merge Allshortestpaths((_usn4 )<-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:usn2)<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})) Union All Start usn1=Relationship:`3esn`(`6esn`='s_str') ,`1esn`=Rel:``(`8esn`='s_str')Where {@usn6}[{999}..][00..]"), - octest_legacy:ct_string("Start ``=Rel:#usn8(`5esn`=\"d_str\") ,@usn6=Rel:`4esn`(\"d_str\") Remove Single(`3esn` In {7} Is Null Where {_usn3}[12.e12]).`2esn`,None(#usn8 In 7[..999][..{#usn8}] Where $_usn3 Contains 999 Contains \"d_str\")._usn3?,Reduce(`1esn`=`5esn`[.e0..][07..],#usn8 In {`5esn`}[.e1..``]|_usn4 Is Null Is Null).`2esn` Unwind Shortestpath((((`7esn` {`5esn`:123.654 Contains $`4esn` Contains 1.0,`8esn`:123.654 =~$usn2 =~{999}})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[`2esn`?:`1esn` *00]->({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})))) In (usn2 :@usn5)-[?{`8esn`:{7} Is Null}]->(`` )<-[`3esn`?:`3esn`|:#usn8]-(`` :#usn8:#usn8) In (@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8}) As `` Union Foreach(`4esn` In $12 Starts With {`1esn`} Starts With Null| Start `7esn`=Rel( {``}) Where `1esn` =~0 =~$#usn7 Delete Extract(#usn7 In {``} Is Not Null Where 123456789[0xabc..'s_str'][``..`1esn`])[Reduce(usn1=False,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|$_usn4 Starts With 1e1)]) Union All Match Allshortestpaths((({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}))),usn2=Allshortestpaths(((:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null}))) Using Scan `3esn`:`2esn` Using Scan `6esn`:`2esn`"), - octest_legacy:ct_string("Load Csv From Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains Extract(`5esn` In \"d_str\" Is Null Is Null Where Null Ends With `2esn` Ends With $usn1|$#usn7[@usn5..{1000}][1.e1..7]) As `4esn` Fieldterminator 's_str' Union Remove Case When `2esn`[..$#usn8][..Count(*)] Then False =~1e1 =~0.e0 When {`4esn`} Starts With $usn2 Starts With $1000 Then {``} Is Not Null End.#usn7?,Extract(`4esn` In $`3esn` Is Not Null Where usn2 Is Not Null Is Not Null|{``} Is Not Null).usn1!,All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {#usn8}[010]).usn1! Load Csv From Case {#usn7}[9e1..][{123456789}..] When $0 Ends With 12.0 Then $`` Is Not Null When $usn1 In {999} In $#usn7 Then 1000[Null..{123456789}] Else 1.0 =~'s_str' =~{`2esn`} End[({#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)..][Shortestpath((((`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})<-[`8esn`]-(usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[`3esn`?:`` *..0x0{`4esn`:0.e0 Contains 9e1 Contains {`7esn`},@usn6:$@usn5 =~1000 =~1000}]->(:@usn5{_usn3:07 =~01}))))..] As @usn5 "), - octest_legacy:ct_string("Unwind $#usn7 Contains 0x0 Contains 1000 As _usn3 Foreach(_usn3 In 1e1 In 123.654 In `3esn`| Remove Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $`` Is Not Null|{123456789}[9e12][{0}]).``!,Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6}).@usn5) Union All Foreach(_usn4 In $`2esn` Ends With 1000 Ends With `6esn`| Detach Delete (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null,$@usn6 Contains 07,Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End[..[9e1[1000][{123456789}],$_usn3[{#usn7}],`5esn` Starts With $`2esn` Starts With $1000]][..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0 In `2esn` In 010)] Detach Delete @usn6 =~{7} =~{@usn5}) Remove ({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)._usn4? Union Remove Allshortestpaths((:@usn5{_usn3:07 =~01}))._usn4 Foreach(`` In .e0[..0X0123456789ABCDEF][...e12]| Return *,12.0 Ends With True Skip {`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}[Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End..[`3esn` In {7} Is Null Where {123456789} Contains $#usn8|#usn7 =~Count ( * ) =~``]][`7esn`(9e1[1000][{123456789}]).._usn3(0.12 =~$0 =~$0)] Return Distinct *,0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn` As `7esn` Limit 9e12[`6esn`..12.0])"), - octest_legacy:ct_string("Create Unique `7esn`=Shortestpath(((({#usn7:2.12 Contains usn2 Contains True})-[_usn3?:`6esn`|`5esn` *0X0123456789ABCDEF]-(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})))),`6esn`=((`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})<-[`7esn`? *7..12]->({`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})) With Distinct *,{#usn8}[1.e1...e12] As `5esn` Order By 0e0[..010] Descending,_usn4(0.e0 Starts With 12.e12 Starts With {_usn4},0X0123456789ABCDEF Is Null Is Null)[Case 's_str' In 00 When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null When $@usn5 Starts With {0} Starts With 12 Then {usn2} Else {#usn7}[`2esn`..] End..] Descending Limit 1.0 =~'s_str' =~{`2esn`} Where 1.0 =~7 =~{usn2} Union Optional Match `7esn`=Shortestpath(((:`5esn`{``:1.0[0e0..0.e0]})-[_usn4:#usn8|`1esn`{`6esn`:#usn8[..{#usn7}]}]->(#usn7 :`4esn`))) Using Index `7esn`:usn2(`6esn`) With *,`6esn`[2.12..01][{``}..False] As @usn5,Reduce(`5esn`=$`5esn`[{`3esn`}],`3esn` In {7} Is Null|`6esn`[12..$usn2][{#usn8}..{usn2}]) In @usn5(Distinct _usn4 Starts With $_usn4 Starts With 12.e12) In None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Count ( * ) Ends With 12.0) Limit {_usn3} Is Null Is Null Where {`6esn`}[..$@usn6][..`7esn`]"), - octest_legacy:ct_string("Start `6esn`=Relationship:usn2(#usn8=\"d_str\") ,@usn6=Node:`7esn`(`3esn`={``}) Merge `8esn`=Allshortestpaths(({@usn5:07[..True][..9e12]})-[_usn4?:`5esn` *..07]->({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})) Union All Foreach(_usn4 In {`2esn`} Is Not Null| Match usn2=(`7esn` {`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2}),`4esn`=Allshortestpaths((({usn1:`5esn`[_usn4..]})-[usn1?:_usn3|_usn3]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))) Using Join On #usn7,_usn4 Using Join On `8esn`,@usn5 Where `3esn`[{`2esn`}]) Union Create Allshortestpaths((`4esn` {usn2:0x0 Is Null,`5esn`:{usn2} =~12})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]})-[usn1:_usn3|_usn3 *..999{`2esn`:'s_str'[00][{`5esn`}],@usn6:999 Is Not Null Is Not Null}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]}))"), - octest_legacy:ct_string("Create Allshortestpaths(()<-[_usn4 *..999]->(`7esn` {#usn7:\"d_str\" Contains {123456789} Contains 01,@usn5:$1000 In $1000 In $`3esn`})) Union Merge ((`4esn` {`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}})) On Match Set `2esn`+=Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`]) In {usn2:{`3esn`} Is Not Null Is Not Null} In {`4esn`:False,_usn4:$`7esn` Is Null Is Null}"), - octest_legacy:ct_string("Create Unique `6esn`=Allshortestpaths(((`6esn` :`5esn`{usn1:{`6esn`}}))) Union Unwind $_usn3 Ends With 0x0 Ends With 12.0 As #usn7 Union Remove `4esn`(Distinct usn1 Is Not Null).@usn5,Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where False Starts With {`5esn`}).#usn7,Reduce(`8esn`=123456789 Ends With 01234567 Ends With 1.e1,_usn3 In {`3esn`}[`2esn`]|0X7 =~9e1)._usn3! Foreach(`2esn` In Null Is Not Null Is Not Null| With {``} Is Not Null As #usn7,{#usn7}[`2esn`..],Count ( * ) Contains {`1esn`} Contains 07 Order By `8esn` Is Not Null Is Not Null Desc Limit $123456789[_usn3][{#usn7}] Where Count ( * ) Ends With 12.0)"), - octest_legacy:ct_string("Load Csv From Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With Reduce(`1esn`=0.12 Starts With $`5esn` Starts With 12,_usn3 In {`3esn`}[`2esn`]|$12[True..][{0}..]) Starts With Reduce(usn2=Null Ends With {`5esn`} Ends With 0.e0,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{`6esn`}) As `4esn` Fieldterminator \"d_str\" Optional Match @usn6=Allshortestpaths((:@usn5{`2esn`:_usn3 Ends With 7 Ends With `1esn`})<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`4esn`{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})) Merge @usn5=Shortestpath(((`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8}))) Union All Merge Shortestpath((:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[`4esn`:`8esn` *00]-(`2esn` :`8esn`:`7esn`)<-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:usn2)) Union All Create Unique `8esn`=Allshortestpaths(((:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))),`2esn`=((`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(_usn3 :#usn7)<-[@usn5?]->(`1esn` :`5esn`{`5esn`:{``} Is Null})) Start _usn3=Node:@usn6({#usn7}) Where `5esn` Starts With 010 Starts With 0.0"), - octest_legacy:ct_string("Create Unique @usn5=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}) Merge `2esn`=Shortestpath((((:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})<-[:#usn7 *..010]-(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})))) On Match Set #usn8:usn2,usn1 =Reduce(`2esn`=1e1 In 123.654 In `3esn`,`5esn` In \"d_str\" Is Null Is Null|$_usn3[{#usn7}]) Is Not Null,`6esn` =0.e0 Starts With `2esn` On Match Set @usn5 =Extract(#usn8 In {`5esn`}[.e1..``] Where {`3esn`}[..07][..{`5esn`}]) Is Null Is Null Union All Create Unique (`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]->(usn2 :`6esn`{#usn7:Count ( * ) Contains 07})<-[`4esn`?{`3esn`:\"d_str\" Is Null Is Null,usn1:0X0123456789ABCDEF[123456789]}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]}),#usn7=Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6}))))"), - octest_legacy:ct_string("Merge `2esn`=(`2esn` :`3esn`:@usn5)<-[`3esn`:`6esn`|`5esn` *..12{usn1:0X0123456789ABCDEF Is Null Is Null}]-(:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[`7esn` *0X0123456789ABCDEF]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0}) On Create Set @usn5+=[$`5esn`[..$`5esn`][..$12],01[2.12..`8esn`],_usn3 Contains $123456789 Contains ``],None(`8esn` In 01[2.12..`8esn`] Where Count ( * ) Ends With $@usn5).`4esn` =Reduce(``={999},#usn8 In {`5esn`}[.e1..``]|$_usn3['s_str'][07])[..{`4esn`:0.0[$0][{@usn5}]}][..Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..])] On Match Set `1esn`+=usn1 Is Null Is Null,Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]).`5esn` =0X0123456789ABCDEF Is Null Is Null Union Load Csv With Headers From usn2[$7..$123456789][$@usn6..$7] As usn2 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Foreach(#usn8 In $`7esn` Is Not Null| Create #usn7=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}),@usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})) Create `3esn`=Allshortestpaths(((:usn1{_usn4})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})))) Delete Shortestpath((((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))))[..Case 0Xa =~123456789 =~_usn4 When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $1000 In $1000 In $`3esn` Then 0.e0[#usn8] End][..(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})],Case $1000[999] When `4esn`[`5esn`..12][@usn6..False] Then {0} Ends With $_usn3 Ends With $`7esn` When $usn1 In {999} In $#usn7 Then Count ( * )[True..][{#usn7}..] End Ends With {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null},`7esn` In 00 Start _usn4=Relationship:`1esn`({12}) ,@usn6=Relationship:`8esn`({`3esn`}) Union All Start #usn7=Node:_usn3({@usn5}) ,``=Node:`2esn`(usn2='s_str')"), - octest_legacy:ct_string("Create Unique (@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(@usn6 {`3esn`:{``} Is Not Null})<-[@usn5 *0X0123456789ABCDEF]->(`6esn` :`3esn`:@usn5{`3esn`:0.e0 In $#usn7 In $_usn3,_usn4:{`8esn`} Ends With `6esn`}),Shortestpath(((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07}))) Union Start #usn7=Node:usn2({12}) Where $`4esn` In Null In 0xabc"), - octest_legacy:ct_string("Remove (@usn5 :_usn4{#usn7:Null Ends With `2esn` Ends With $usn1,`5esn`:12.0})-[@usn5]->(:_usn4{usn2:0X0123456789ABCDEF[123456789]})<-[#usn8?:usn2|`` *0X7..{`1esn`}]->(`5esn` :_usn4{7}).usn2 Union Unwind ()-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[@usn6?$0]->({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})[{#usn8:_usn4 Starts With $_usn4 Starts With 12.e12}..Allshortestpaths(((@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})))][(usn2 :usn2)<-[@usn5? *..01]-(`8esn` :@usn6:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})..Case When #usn8 Is Not Null Is Not Null Then `3esn`[{usn1}] Else 0.12 Starts With $`5esn` Starts With 12 End] As #usn7 Union All Create Unique `2esn`=({#usn7:2.12 Contains usn2 Contains True})-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})-[:#usn7{`2esn`:.e12 Ends With _usn4}]-(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})"), - octest_legacy:ct_string("Create Unique Allshortestpaths(((`` :usn2)<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})-[`2esn`?:usn2|``{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}]-({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}))) Create Unique ((`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})) Remove (:usn2{`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})-[@usn6?$0]-(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7}).usn2!,[`3esn` In {7} Is Null Where 0.e0[123.654][01]].`5esn`! Union All Unwind $#usn8[9e12..][.e1..] As usn2 Create (#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})<-[`6esn`?{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}),Allshortestpaths((`` :#usn7)-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})) Return exists($12[$1000..123456789],123456789[0xabc..'s_str'][``..`1esn`])[{`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]}..[@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where `8esn` Ends With 999 Ends With .e12|0X0123456789ABCDEF[123456789]]],Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 00[`2esn`..12][123456789..0.e0]|0e0 In @usn5) Ends With 's_str' Ends With _usn3(Distinct $`7esn` =~{`8esn`} =~$usn1,$0[..9e1]) As usn1 Order By $_usn4[Count ( * )..] Descending,$`1esn` Starts With {`8esn`} Descending Limit Case When _usn4 Is Null Is Null Then Null[$#usn7] When $`2esn` Is Null Is Null Then $`3esn` =~{#usn8} End[(@usn5 :usn1)-[`2esn`:_usn4|:usn2]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})..Reduce(@usn5=`3esn`[{usn1}],`8esn` In 01[2.12..`8esn`]|`5esn` Starts With `3esn`)][Shortestpath((:``:#usn8{``:1.0[0e0..0.e0]}))..None(#usn8 In {`5esn`}[.e1..``] Where {_usn3}[..\"d_str\"][..`5esn`])]"), - octest_legacy:ct_string("Unwind Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..]) In Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null) In Filter(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {#usn8}[.._usn4][..$`3esn`]) As `6esn`"), - octest_legacy:ct_string("Create `6esn`=(usn2 {``:01[{@usn5}]})<-[{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(`3esn` :`2esn`:usn1{`8esn`:9e12[`6esn`..12.0],``:01[{@usn5}]})<-[`8esn`:`2esn` *..07]->({@usn6:01234567 Ends With .e12 Ends With $#usn7,`4esn`:12.e12[`3esn`]}),Allshortestpaths((((`4esn` )<-[? *0X7..{#usn8:{1000} Is Null Is Null,`3esn`:0.e0 Starts With 12.e12 Starts With {_usn4}}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})-[`8esn`?]->(`1esn` :#usn8:#usn8))))"), - octest_legacy:ct_string("Start `3esn`=Relationship:``(usn2={999}) ,usn2=Node:`6esn`(usn2={`8esn`}) Union Remove (_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})<-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :`3esn`:@usn5)<-[? *..999]-(#usn8 :`5esn`{#usn8:0xabc[.e0]}).`4esn`! Create Unique `5esn`=(:`3esn`:@usn5{#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-(:#usn8:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[`5esn`?:`5esn` *1000..00]->({`1esn`:`3esn`[{`2esn`}]})"), - octest_legacy:ct_string("Load Csv With Headers From None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As #usn8 "), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From 0.e0 In $#usn7 In $_usn3 As #usn8 "), - octest_legacy:ct_string("Load Csv From $`3esn` In $`6esn` In $`` As `4esn` Optional Match `2esn`=(:`1esn`{``:.e1 Is Null Is Null})<-[#usn8?:usn1|@usn6]->(`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`}),`6esn`=(((usn2 :``:#usn8)-[ *123456789..{`4esn`:0Xa[2.12],#usn7:0.e0 In $#usn7 In $_usn3}]-(@usn6 :`3esn`:@usn5)-[`7esn` *0X0123456789ABCDEF]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0}))) Using Index `5esn`:`1esn`(usn1) Where 07[..True][..9e12] Foreach(@usn5 In ({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}) In Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 07 In `2esn` In 12e12)| Start _usn4=Relationship(,) Where @usn5 In {`7esn`} In `2esn` With Distinct `5esn`[_usn4..],$123456789 In 0X0123456789ABCDEF In 0.e0 Where 7[True..][2.12..]) Union Start `7esn`=Node:`7esn`(`3esn`={``}) Union All Create Unique (({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}]->({`7esn`:7[{0}..{_usn4}]})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(usn2 {``:01[{@usn5}]})),`5esn`=Shortestpath((((`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})<-[@usn6:@usn5 *0Xa]->({`3esn`:9e1[2.12..{#usn8}]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})))) Create Unique @usn5=Allshortestpaths(()<-[_usn4 *..999]->(`7esn` {#usn7:\"d_str\" Contains {123456789} Contains 01,@usn5:$1000 In $1000 In $`3esn`}))"), - octest_legacy:ct_string("Merge `3esn`=Allshortestpaths((:@usn5{`2esn`:_usn3 Ends With 7 Ends With `1esn`})<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`4esn`{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})) With $`3esn`[0.12..`8esn`][$#usn7..`5esn`],Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]) =~Reduce(usn1=.e1 Ends With 1e1 Ends With @usn5,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$#usn7[#usn7..]) =~`1esn`($1000 Is Null) As @usn6 Order By {`1esn`}[12.0..`2esn`][@usn6..{usn1}] Ascending,$`3esn` Is Not Null Desc Detach Delete `6esn`({usn1} Ends With $0) Is Not Null Union Return *,[0x0[{`7esn`}..][$usn2..],{`4esn`} =~{7} =~{`7esn`},usn1 In 7 In {123456789}] Is Null Is Null,True In 0e0 As @usn6 Merge Allshortestpaths(((`` {usn2:0X0123456789ABCDEF[123456789]})-[?{`8esn`:{7} Is Null}]->(`4esn` {`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})-[]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]}))) On Match Set _usn4+=.e1 Ends With 1e1 Ends With @usn5,`1esn` =$@usn6[12.0..][#usn7..] On Match Set ``(Distinct 0.12 =~`5esn` =~`5esn`,Null[``]).`1esn`! =12e12 Ends With {usn1},@usn5 =7 Ends With $`4esn`,_usn4 =Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End[..[9e1[1000][{123456789}],$_usn3[{#usn7}],`5esn` Starts With $`2esn` Starts With $1000]][..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0 In `2esn` In 010)] Start @usn5=Node:#usn8(#usn7=\"d_str\") ,#usn8=Rel( {#usn7})"), - octest_legacy:ct_string("Optional Match _usn4=(((#usn8 :#usn8:#usn8{@usn5:{#usn8} Is Not Null})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})-[`4esn`?:_usn4|:usn2 *..01]->(`7esn` :`8esn`:`7esn`{#usn8:01234567[usn2..$12][{`7esn`}..$usn2]}))),(:`3esn`:@usn5{#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-(:#usn8:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[`5esn`?:`5esn` *1000..00]->({`1esn`:`3esn`[{`2esn`}]}) Using Join On `6esn` Using Index `4esn`:`3esn`(#usn8)"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From 0[..usn2][..{@usn5}] As `3esn` Fieldterminator 's_str' Return 01234567 Ends With .e12 Ends With $#usn7,12[..$`4esn`] Order By $`7esn` Is Null Is Null Descending,Reduce(#usn7=`3esn`[{`2esn`}],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|#usn8 Is Not Null)[(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(#usn7 {_usn3:`4esn`[..Count ( * )][..{#usn7}]})..None(`8esn` In 01[2.12..`8esn`] Where {usn2})] Descending,{`6esn`} In $#usn8 In \"d_str\" Asc"), - octest_legacy:ct_string("Start @usn5=Relationship(*) ,_usn3=Node:`5esn`(`7esn`='s_str') Remove Reduce(@usn5=$12[$1000..123456789],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|`4esn` Is Not Null Is Not Null).`5esn`,Single(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 123456789 Ends With 12.e12 Ends With $`7esn`).#usn7?,[`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where #usn8 Is Not Null|{123456789}[0xabc..]]._usn4? Match `1esn`=(_usn3 :usn2{#usn7:{999} Starts With {0}}) Using Join On @usn5,`8esn` Where False Starts With {`5esn`} Union All Return *,`4esn`[`5esn`..12][@usn6..False],None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As `5esn` Order By {0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]] Ascending,.e1 =~{@usn6} =~Null Asc,(:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case `8esn` Contains $usn1 Contains $12 When 12.e12[7..$`6esn`] Then {12} Contains {123456789} Contains `4esn` When $`1esn`[1.0..][_usn3..] Then `7esn`[$0][9e12] End Desc Skip 123.654[`3esn`..] Limit `7esn`[$12..][$`8esn`..] Load Csv From 123.654[...e0] As usn2 "), - octest_legacy:ct_string("Start #usn7=Relationship:usn2(`8esn`={`8esn`}) Where Count(*) In $12 Union Unwind {`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]} Starts With [False] Starts With Filter(#usn8 In 7[..999][..{#usn8}] Where $_usn3[.e0..$usn2]) As `6esn` With Distinct _usn3 Contains Count(*) Contains 12e12 As `4esn`,123456789[{123456789}..'s_str'] As `5esn`,1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] Order By None(#usn8 In 7[..999][..{#usn8}] Where 2.12['s_str'..$12][{`1esn`}..`2esn`])[[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 12e12 Ends With {usn1}]][[$12 Ends With 07 Ends With $123456789,$@usn5 =~1000 =~1000,.e12[@usn5..$12]]] Ascending,{usn2}[$`3esn`..][{#usn7}..] Ascending Limit {``} Is Null Where 01234567 Is Null Is Null Load Csv With Headers From Case When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $`4esn`[..$`3esn`][..0.0] Then `1esn` =~0 =~$#usn7 Else {``} Is Null End Contains Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Contains All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {@usn6}[7]) As _usn4 Fieldterminator \"d_str\" Union Foreach(usn1 In {`3esn`}[..07][..{`5esn`}]| Create Unique `8esn`=Allshortestpaths(((:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))),#usn7=Shortestpath((`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})))"), - octest_legacy:ct_string("Unwind {`4esn`} In 1.0 As @usn6 Union Load Csv With Headers From `5esn` Starts With 010 Starts With 0.0 As `2esn` "), - octest_legacy:ct_string("Load Csv From None(#usn8 In 7[..999][..{#usn8}] Where 2.12['s_str'..$12][{`1esn`}..`2esn`])[[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 12e12 Ends With {usn1}]][[$12 Ends With 07 Ends With $123456789,$@usn5 =~1000 =~1000,.e12[@usn5..$12]]] As `2esn` Union All Start usn2=Node:_usn4(``={#usn7}) Return Distinct $@usn5 Is Not Null Is Not Null As `5esn`,0e0[07] As `5esn` Order By $#usn7 Starts With {7} Starts With 1.0 Desc,{12} Is Not Null Ascending Limit {``} Ends With `7esn` Ends With 0.0 Union Detach Delete ``[$`2esn`],[usn2[$_usn4..][True..],1.0 In Count(*)] =~Any(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12.0[123.654][Count(*)]) =~Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where usn2 Is Not Null Is Not Null),0.12[{#usn7}..] Merge `2esn`=Allshortestpaths((:`4esn`{``:2.12 Is Not Null Is Not Null})) On Match Set #usn8 =$#usn8"), - octest_legacy:ct_string("Create Unique `2esn`=Allshortestpaths(((#usn7 {``:9e12[`1esn`..][$`1esn`..],#usn7:#usn8})-[?:`7esn` *0X0123456789ABCDEF]->(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})<-[#usn8?:#usn7{`1esn`:#usn7 =~Count ( * ) =~``,usn2:`` Ends With $1000}]->(:@usn6:#usn8{`4esn`:$`8esn`[..00]}))) Unwind @usn6 Contains Null Contains $`7esn` As `4esn` Union All Match ((_usn4 )) Using Index `3esn`:@usn5(`2esn`) Using Scan _usn3:`1esn` Where {usn1}[0X0123456789ABCDEF]"), - octest_legacy:ct_string("Create Unique @usn5=Allshortestpaths(({`1esn`:$`8esn`[1000..0Xa]})) Detach Delete $12 Ends With 07 Ends With $123456789,$`6esn`[{_usn3}..$`4esn`][$_usn4...e12] Union All With Distinct *,1e1 Contains 0e0 Skip @usn6 Contains Null Contains $`7esn` Limit $0 Where 0Xa Starts With {`6esn`} Starts With $usn1 Merge Shortestpath((((`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})<-[@usn6:@usn5 *0Xa]->({`3esn`:9e1[2.12..{#usn8}]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})))) On Match Set @usn5+=12 Ends With $usn2,@usn6 =Count ( * ) =~$usn2 =~$usn2,`` =12.0 =~1.0 =~9e12 Match #usn7=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}),@usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})) Using Join On _usn4"), - octest_legacy:ct_string("Return All(`5esn` In $999[0.0..] Where {@usn6} Ends With 's_str' Ends With 12.0) In (:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) As usn1 Limit True[{`7esn`}..]"), - octest_legacy:ct_string("Merge `7esn`=({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}) On Create Set (:usn2{`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2})._usn4? =All(#usn8 In 7[..999][..{#usn8}] Where $_usn4[1.e1]['s_str']) Starts With 123456789"), - octest_legacy:ct_string("Unwind $`6esn`[$`6esn`..`8esn`] As @usn6 Union All Remove Extract(`` In `` Is Not Null Is Not Null Where 1000 In {`8esn`} In 01|1.0[0e0..0.e0])._usn4!,All(#usn7 In {``} Is Not Null Where usn1[9e12..][$7..]).``!,({_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[`1esn`:@usn6|`6esn`*..{`7esn`:7[{0}..{_usn4}]}]->(`8esn` {_usn4:`4esn`[1.0],`5esn`:0e0 Ends With 1.e1 Ends With $`4esn`}).@usn6! Union Remove @usn6:`5esn`,All(`3esn` In {7} Is Null Where Count ( * ) Ends With $@usn5).`6esn`? Load Csv From `5esn`(Distinct {_usn4} Ends With `6esn`,$`4esn` In Null In 0xabc) Ends With Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Ends With All(`3esn` In {7} Is Null Where Count ( * ) Contains 07) As #usn7 Fieldterminator 's_str' Remove Extract(`5esn` In \"d_str\" Is Null Is Null Where 9e12[{123456789}..#usn8][{_usn3}..{#usn7}]|01 =~{_usn3} =~`3esn`).`1esn`!"), - octest_legacy:ct_string("With 010[Count(*)..12][$_usn3..{`8esn`}],Filter(_usn3 In {`3esn`}[`2esn`] Where False =~$7 =~2.12)[Case When .e12 Is Not Null Is Not Null Then `1esn` In .e0 In {`3esn`} When 7 Starts With {@usn6} Starts With $`` Then 0X0123456789ABCDEF =~1e1 =~{`4esn`} Else {`4esn`}[$123456789..][$#usn7..] End] As `5esn`,9e1[2.12] As _usn3 Create Unique `5esn`=(#usn7 :`8esn`:`7esn`)<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[_usn4?:`1esn` *7..12]->(:#usn8:#usn8{_usn3:$_usn3['s_str'][07],`7esn`:$1000 In $1000 In $`3esn`}) Union All Create Unique ((:_usn3:_usn3{`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})<-[`3esn`?:_usn3|_usn3 *1000..00]-(#usn7 :_usn3:_usn3)) Create Unique `8esn`=Allshortestpaths(((:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))) Create #usn8=(`1esn` :`4esn`{`6esn`:$`6esn` Ends With Count(*),`7esn`:_usn3 Starts With 12.e12 Starts With 0.12}),(:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]->(#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})-[`1esn`?:`8esn`]->(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}) Union Match _usn3=(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})-[`8esn`?:#usn8|`1esn` *1000..00]->(:_usn4$@usn5)-[`7esn`:``{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2}]->({_usn4:00 Starts With 0xabc}))),`6esn`=Shortestpath((`` :#usn7)) Using Scan `4esn`:`8esn`"), - octest_legacy:ct_string("Create Unique Allshortestpaths(((`7esn` :`5esn`{`3esn`:`7esn` Is Null})<-[`5esn`?:`4esn`]-(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})<-[{`4esn`:{_usn3}[..$12][..0.12],`7esn`:1.0[0X7][{`5esn`}]}]-({`2esn`:{7} In `2esn`,`1esn`:`4esn`[1.0]}))),`1esn`=((`8esn` ))"), - octest_legacy:ct_string("Return None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})[Any(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")..Reduce(usn1=#usn7[usn1][$`5esn`],`3esn` In {7} Is Null|Count(*) Ends With 12.0 Ends With 12)][(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})..({usn1:`5esn`[_usn4..]})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})],@usn5 =~{`5esn`} =~`5esn` As _usn4,$123456789 In $#usn7 In `4esn` As `` Limit #usn7[010..False] Create Unique Allshortestpaths((({_usn3:.e12[@usn5..$12]})-[`3esn`:#usn7]->(@usn6 {_usn3:{#usn7} Is Not Null Is Not Null}))) With Distinct *,'s_str'[$_usn3..][Count ( * )..] As #usn7 Limit {_usn3}[12.e12] Where {`4esn`} =~9e0 =~{12}"), - octest_legacy:ct_string("Match Shortestpath(({@usn5:07[..True][..9e12]})-[_usn4?:`5esn` *..07]->({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})),#usn8=Shortestpath(((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[?*..]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}))) Using Join On #usn7,`4esn` Using Scan `1esn`:@usn6 With Distinct 123.654 Is Not Null As `1esn`,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) As `4esn` Order By 0.0 =~999 Asc,1e1 In \"d_str\" In `7esn` Descending Union All Match _usn3=((:`1esn`{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})) Using Join On usn1,`4esn`,`6esn` Create Unique `8esn`=Allshortestpaths(((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]}))),Allshortestpaths((`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]})) Union All Unwind 0.e0 Contains 9e1 Contains {`7esn`} As usn2 Remove Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 01234567 Is Null Is Null).`2esn`? With Distinct *,{``}[$#usn8..$usn1] As `3esn` Order By $usn2[$`2esn`..`4esn`] Ascending,$`6esn`[{_usn3}..$`4esn`][$_usn4...e12] Asc,True[{_usn4}..][False..] Ascending Where \"d_str\" Contains {123456789} Contains 01"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From Shortestpath((((`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`2esn` *..07]-(`1esn` {#usn7:{_usn4} In {12} In $0})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})))) In ({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}) As `8esn` Fieldterminator \"d_str\""), - octest_legacy:ct_string("Return *,{_usn4:`` Ends With 0Xa Ends With `2esn`}[[{`4esn`} Ends With {123456789} Ends With $`4esn`,$#usn7[#usn7..]]],9e0[1.e1..][0Xa..] As `7esn` Order By 9e1 In 2.12 Asc,True[{`7esn`}..] Asc,{`2esn`}[``..07][0x0..1000] Desc Skip @usn6 Starts With `6esn` Starts With $`1esn` Limit {`6esn`} Contains \"d_str\" Start #usn7=Relationship:`8esn`({`1esn`}) Where #usn7 Starts With {#usn7} Starts With `7esn` Start `5esn`=Node:@usn5({usn1}) ,``=Node:usn2(#usn8=\"d_str\")"), - octest_legacy:ct_string("Foreach(#usn8 In Count ( * )[True..][{#usn7}..]| Load Csv With Headers From 9e1 Ends With {usn2} Ends With True As `5esn` With Distinct $_usn3 In {1000} In 0.12,$_usn3[..1000] Order By `7esn`[$12..][$`8esn`..] Descending,9e1[2.12] Ascending,$`1esn` Starts With {`8esn`} Descending Limit @usn6 Contains Null Contains $`7esn`) Match @usn6=Allshortestpaths((`1esn` :`5esn`{`5esn`:{``} Is Null})-[:@usn6|`6esn`{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}]->(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[`2esn`?:`2esn`]->(`7esn` {``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})),`3esn`=Shortestpath((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))) Where {0}[{`8esn`}..`4esn`] Union All Remove Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 0.e0[123.654][01]).`2esn`,Any(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 00[{`8esn`}..][{`8esn`}..]).`5esn`,[0.0 Ends With 010 Ends With 1.e1,$`4esn`[Null..],`8esn` Ends With 999 Ends With .e12]._usn4! Remove Filter(_usn3 In {`3esn`}[`2esn`] Where 010 =~{usn2}).`4esn`?,Case {#usn7} Is Not Null Is Not Null When 12e12 Ends With {usn1} Then `1esn` Ends With {_usn3} Ends With `2esn` End.`3esn` Union With *,123.654 Is Not Null,Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..] As `7esn` Skip Case When 1.0 =~'s_str' =~{`2esn`} Then $`5esn` In $`6esn` When {`7esn`}[..{`4esn`}] Then {usn1} Ends With $0 End[All(`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"])..[Count ( * )[0.12...e1],1.0[00..],$``]][`4esn`(`4esn` Ends With 07 Ends With {`3esn`})..Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `1esn` =~\"d_str\"|9e12 Is Not Null Is Not Null)] Limit Single(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}])[Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] Where 00 Starts With 0xabc"), - octest_legacy:ct_string("With Distinct `5esn`[_usn4..],$123456789 In 0X0123456789ABCDEF In 0.e0 Where 7[True..][2.12..] Union Merge `4esn`=Allshortestpaths((`8esn` {`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})<-[`3esn`? *..01]->(:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)) Start `3esn`=Rel:usn1(`6esn`={7}) Where $_usn4 Ends With usn1 Ends With $0 Load Csv With Headers From 2.12 =~False As #usn7 Union All Merge (((`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})-[?:`7esn` *0X0123456789ABCDEF]->(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]}))) On Create Set usn2+=0.e0[123.654][01],Reduce(@usn6=123456789 Ends With $`6esn` Ends With $#usn7,#usn7 In {``} Is Not Null|$#usn8[$`2esn`..][{`2esn`}..]).``! =False Contains {`6esn`},`6esn` =.e0 Ends With $`6esn` Ends With .e1 On Create Set @usn6+={0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]],{`8esn`:{_usn4} Starts With 0.e0 Starts With 0x0}.@usn5! =`4esn`[`5esn`..123456789][0..$12] Foreach(`3esn` In {`7esn`}[`6esn`][#usn7]| With Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where @usn6 Is Null Is Null)[(`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})..] As `3esn`,{`3esn`} In 0X7 Skip `1esn` In .e0 In {`3esn`} Limit Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End Create Unique #usn7=((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})),Shortestpath((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))))"), - octest_legacy:ct_string("Merge `7esn`=((`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]->(`` )<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})) On Match Set Case usn1 In 7 In {123456789} When _usn3[_usn3..][12.e12..] Then 0x0 Ends With $12 Else `7esn`[..2.12][..00] End.`7esn`? =Reduce(`8esn`=0[..usn2][..{@usn5}],#usn8 In {`5esn`}[.e1..``]|Count ( * )[True..][{#usn7}..])[2.12..][{999}..],`` ={`3esn`} Is Null Is Null,(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(usn2 {``:01[{@usn5}]})._usn4? =Reduce(`1esn`={0} Ends With $_usn3 Ends With $`7esn`,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|010 In Count(*))[9e12..(`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})][0X7..Case $_usn4 Starts With 1e1 When {12} Ends With 1.0 Ends With .e0 Then {`2esn`} Is Not Null Else \"d_str\"[..{@usn5}][..``] End] Union All Match Allshortestpaths((({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}))) Where 9e1[$usn2] Union All Delete $`8esn`[$999..{``}] Remove Case `1esn`[{usn1}..``][7..$#usn8] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] End.@usn5"), - octest_legacy:ct_string("Optional Match ``=(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[?:#usn7 *01234567..0Xa]-(@usn6 {#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12})-[usn1? *1000..00]->(#usn7 :@usn5{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}))) Using Join On #usn7 Using Index _usn4:usn2(#usn8) Union All Optional Match _usn4=Allshortestpaths((usn2 :`4esn`)),(`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Create Allshortestpaths((`2esn` :`8esn`:`7esn`{`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})),Shortestpath(({`7esn`:\"d_str\" Starts With $123456789})<-[`4esn`:``{usn1:`` Is Not Null Is Not Null,usn1:{1000}[{_usn3}..]}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[`4esn`]->(:`6esn`$123456789))"), - octest_legacy:ct_string("Foreach(usn2 In {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains [1.0[0X7][{`5esn`}]]| Unwind 's_str' =~$`7esn` As `4esn` Optional Match Allshortestpaths(((`3esn` {`8esn`:\"d_str\" Contains {123456789} Contains 01,@usn5:`1esn` In .e0 In {`3esn`}})-[#usn7?:`3esn`|:#usn8]->(`2esn` :usn1)-[ *..999{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(@usn5 {_usn3:`1esn` Contains {usn2} Contains $#usn8})))) Union Merge Shortestpath((:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null})) On Create Set None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0xabc[01..{999}][{7}..{`7esn`}]).#usn8? =123.654[`3esn`..] Return Distinct *,.e12[@usn5..$12] As `6esn` Order By 2.12 =~{7} Asc,@usn5 In {`7esn`} In `2esn` Ascending Limit Shortestpath(((@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})-[]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})<-[#usn7?:`1esn` *01234567..0Xa]-(`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7}))) =~_usn3(Distinct 7[$`8esn`..123456789][$usn1..$usn1],.e0[..$`8esn`]) Union Remove Reduce(#usn7=0Xa[2.12],`4esn` In $`3esn` Is Not Null|usn1 Is Not Null).`5esn`,None(`4esn` In $`3esn` Is Not Null Where {`4esn`}[$123456789..][$#usn7..]).`3esn`! Load Csv With Headers From $usn2[$`2esn`..`4esn`] As `2esn` "), - octest_legacy:ct_string("Load Csv With Headers From Single(#usn8 In 7[..999][..{#usn8}] Where $_usn3[.e0..$usn2])[Reduce(`8esn`=$#usn8 Ends With $`2esn` Ends With $@usn6,`2esn` In `1esn` =~\"d_str\"|$`8esn`[1000..0Xa])][[$123456789 =~{`6esn`} =~\"d_str\",01234567 Ends With .e12 Ends With $#usn7]] As usn1 Fieldterminator \"d_str\" Remove {`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null}.`4esn`?,usn1:#usn7,Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`|$_usn3[..1000]).``"), - octest_legacy:ct_string("Return * Skip 0Xa[7..2.12][`3esn`.._usn3] With *,Case When $_usn3[Count(*)] Then `7esn`[$0][9e12] When $1000[`2esn`..`5esn`][1e1..1.e1] Then 00[{`8esn`}..][{`8esn`}..] End[`7esn`(9e1[1000][{123456789}])] Skip $`7esn`[1.e1.._usn4][0Xa..`2esn`] Limit Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where `5esn` Starts With $`2esn` Starts With $1000) Ends With Reduce(``=0.12 =~$0 =~$0,`2esn` In `1esn` =~\"d_str\"|9e12[`1esn`..][$`1esn`..]) Where $`6esn`[12] Unwind .e1[..usn2][..`8esn`] As `4esn` Union Load Csv From 1.0 Is Null Is Null As `3esn` Fieldterminator 's_str' Union All Foreach(@usn6 In {_usn4} Is Null| Unwind [.e12[@usn5..#usn7][010..{usn1}]] In All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {`6esn`} Contains \"d_str\") In None(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) As `2esn`) Merge usn1=((({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[{``:12.e12[$_usn3..],_usn3:$`6esn`[010..]}]->(@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null}))) On Create Set Single(_usn3 In {`3esn`}[`2esn`] Where _usn3 Contains $123456789 Contains ``).`2esn` =Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With Reduce(`1esn`=0.12 Starts With $`5esn` Starts With 12,_usn3 In {`3esn`}[`2esn`]|$12[True..][{0}..]) Starts With Reduce(usn2=Null Ends With {`5esn`} Ends With 0.e0,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{`6esn`}),[@usn6 Ends With {_usn3},12.0 Contains #usn7,$_usn3[..1000]].`2esn`? =0e0 Contains Null,`5esn`+=7 Ends With (@usn5 {`7esn`:$`6esn`[010..]})-[:`8esn` *..01]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]}) Ends With #usn8(False =~$7 =~2.12) Merge (($#usn8)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})) On Create Set [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|$`4esn`[Null..]].usn1! =123.654[True..$#usn8][0.12..Count(*)]"), - octest_legacy:ct_string("Delete 00[{`8esn`}..][{`8esn`}..]"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From $_usn4 Ends With usn1 Ends With $0 As `7esn` Fieldterminator \"d_str\" With (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8) Contains All(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) As @usn5,`8esn`[$`8esn`..{`4esn`}],None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `5esn` Starts With 010 Starts With 0.0) Ends With Reduce(usn2=False =~1e1 =~0.e0,`` In `` Is Not Null Is Not Null|#usn8[`3esn`..][{#usn7}..]) Order By @usn6 Is Null Is Null Descending,{_usn3} Is Null Is Null Desc,Allshortestpaths((({`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})<-[?*..]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}))) Ends With Reduce(_usn3='s_str'[00][{`5esn`}],`4esn` In $`3esn` Is Not Null|Count ( * ) Contains `8esn` Contains .e1) Descending Match Allshortestpaths((`1esn` {_usn4:1.e1[$`1esn`..@usn6][$0..$_usn3],#usn8:$@usn5[..12e12][..$123456789]})<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})),(:@usn6:#usn8{`7esn`:0x0[`4esn`..'s_str']}) Using Scan `2esn`:usn1 Using Index _usn4:`5esn`(`6esn`) Where $`6esn` Is Null"), - octest_legacy:ct_string("Create Unique Shortestpath(((({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(:`6esn`$123456789)))),``=(((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})))"), - octest_legacy:ct_string("Remove Filter(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {_usn4} Is Not Null Is Not Null)._usn4?,[Null[$`5esn`][False]]._usn3,(`3esn` {@usn5:$usn2[9e0]})<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7}).`5esn`? Optional Match @usn5=(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(`2esn` :`8esn`:`7esn`),usn1=Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` )))) Using Join On `7esn`,`8esn`,`3esn` Where 7[{0}..{_usn4}] Detach Delete $`3esn` In $_usn4 In {_usn3},$_usn3 =~0.12 =~{#usn8} Union All Match Allshortestpaths(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))),_usn3=(#usn8 {`2esn`:$`5esn`[..$`5esn`][..$12]})-[#usn7:@usn5 *0X7..]->(@usn5 :usn1{`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]})-[?:`2esn` *00]->(`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}) Using Index `6esn`:@usn5(`2esn`) Using Scan _usn4:@usn6 Where {123456789} Contains $#usn8 With 7 =~{`8esn`} =~$`6esn`,`1esn`[..{`2esn`}][..$_usn4],$#usn7 Starts With {7} Starts With 1.0 Order By 12.e12 Is Null Is Null Desc"), - octest_legacy:ct_string("Start `3esn`=Rel:usn1(_usn4={12}) ,usn1=Node:`2esn`({`1esn`})Where \"d_str\" Starts With 01 Remove [$`8esn` =~{1000},$usn1 =~``].``?,({@usn5:usn1 Is Not Null})-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]}).#usn7!,Reduce(@usn5={123456789} =~`8esn` =~@usn5,#usn8 In 7[..999][..{#usn8}]|$@usn5 Is Not Null Is Not Null).`1esn`! Union Foreach(`` In [#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn2 Is Null|@usn6[$`3esn`..{`3esn`}]] In Filter(_usn3 In {`3esn`}[`2esn`] Where 1e1 In 123.654 In `3esn`)| Remove ({@usn5:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],@usn6:$0})<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True}).@usn5!,[.e12 Ends With _usn4,0Xa =~Null =~$``]._usn3?,Filter(`2esn` In `1esn` =~\"d_str\" Where Count ( * ) =~$usn2 =~$usn2).`4esn` Return Distinct All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)],None(#usn8 In 7[..999][..{#usn8}] Where 2.12['s_str'..$12][{`1esn`}..`2esn`])[[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 12e12 Ends With {usn1}]][[$12 Ends With 07 Ends With $123456789,$@usn5 =~1000 =~1000,.e12[@usn5..$12]]] As @usn5 Order By 0.12 =~$0 =~$0 Descending) Remove Allshortestpaths(((#usn7 :``:#usn8{`2esn`})<-[usn1?:#usn8|`1esn`]->({@usn5:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],@usn6:$0})<-[@usn6?:`5esn`]-(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})))._usn3? Start `6esn`=Rel:`2esn`({`1esn`}) Union All Optional Match Allshortestpaths((((:_usn4{usn2:0X0123456789ABCDEF[123456789]})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)))),((usn1 :`6esn`)) Using Join On `7esn`"), - octest_legacy:ct_string("With (`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})-[`7esn` *0X0123456789ABCDEF]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})<-[@usn6 *..01{#usn7:@usn6 Contains $1000 Contains {`7esn`},@usn5:`2esn` Starts With $_usn4}]->(`6esn` :@usn6:#usn8) Is Not Null Is Not Null As usn2 Order By $`6esn`[.e0..$`6esn`][$_usn3..{#usn7}] Ascending Skip $12 Is Not Null Is Not Null Limit $123456789 Ends With {`1esn`} Ends With $`4esn` Load Csv From Case When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $`4esn`[..$`3esn`][..0.0] Then `1esn` =~0 =~$#usn7 Else {``} Is Null End Contains Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Contains All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {@usn6}[7]) As `1esn` Union Create Unique `1esn`=((({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})<-[`4esn`?:usn2|`` *0X7..]->(_usn3 :@usn5)<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8}))),_usn4=Allshortestpaths((#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})) Foreach(`8esn` In $123456789 In 0X0123456789ABCDEF In 0.e0| Start _usn4=Relationship( {usn1}) ) Create Unique @usn5=(((:_usn4)<-[:`6esn`|`5esn` *..010]-(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})<-[`4esn`?:`7esn` *0..{`2esn`:00[`2esn`..12][123456789..0.e0]}]->(`1esn` :_usn3:_usn3))),#usn8=Allshortestpaths(((`5esn` :`2esn`:usn1)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3)))"), - octest_legacy:ct_string("Remove [`5esn` In \"d_str\" Is Null Is Null Where ``[$`2esn`]|9e1[2.12..{#usn8}]].@usn6! With Distinct $@usn5 Contains 0xabc Contains {#usn7},Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))) As _usn3 Limit {`3esn`}[@usn6..0Xa][{12}..0Xa] Create Unique usn2=(_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]}),`6esn`=((@usn6 :`1esn`)<-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})) Union All Merge Allshortestpaths(((:`2esn`:usn1{@usn5:`5esn`[.e0..][07..],`4esn`:`8esn` =~0xabc =~010})<-[``? *0X7..]->(`8esn` :#usn7))) On Create Set `5esn`+=999 In {`3esn`} In usn2"), - octest_legacy:ct_string("Load Csv From 0.0[Null][$`2esn`] As `3esn` Fieldterminator 's_str' Return Distinct *,(`1esn` {#usn7:{_usn4} In {12} In $0})<-[#usn7?:_usn3|_usn3 *..0x0]-(`1esn` :`8esn`:`7esn`)[Case When {``} Starts With $`2esn` Starts With `1esn` Then $`5esn` Starts With $0 Starts With {0} End..(`7esn` {@usn5:{7}[..1.0][..9e0]})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})][{usn2:$`2esn`}..[`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $`` Is Not Null|$#usn7[#usn7..]]] As `2esn` Limit 12.0 Contains #usn7 Remove [$1000 Is Null,$`1esn`[{`2esn`}..],.e1[{`7esn`}..{_usn4}]].@usn5"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From Reduce(`3esn`=$0[..9e1],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|999 In {`3esn`} In usn2) Starts With Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Starts With Allshortestpaths((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})) As @usn5 Fieldterminator 's_str' Match usn1=Allshortestpaths(((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))),((@usn6 :`1esn`{#usn8:`4esn`[1.0],``:.e12[@usn5..#usn7][010..{usn1}]})) Using Join On @usn5,_usn3,_usn3 Using Scan #usn7:@usn6"), - octest_legacy:ct_string("Remove Reduce(`4esn`=12.e12[$_usn3..],`2esn` In `1esn` =~\"d_str\"|0x0[`4esn`..'s_str']).#usn8!,Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn2[{7}]|.e1 Ends With 1e1 Ends With @usn5).`8esn`? Unwind Case {`3esn`}[@usn6..0Xa][{12}..0Xa] When {usn1}[0X0123456789ABCDEF] Then 0x0 Ends With $12 When 0e0 Starts With `2esn` Starts With $`` Then {123456789}[9e12][{0}] Else 0X7[1000..{`1esn`}] End[..({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})] As `5esn`"), - octest_legacy:ct_string("Optional Match `2esn`=((`5esn` {`8esn`:1000[Null..{123456789}]})) Using Index @usn5:`4esn`(`3esn`) Using Join On `5esn`,#usn7 Where #usn8 Is Not Null Load Csv With Headers From {``} Is Not Null As usn1 Fieldterminator 's_str' Remove {`6esn`:{usn1} Is Null Is Null,@usn5:0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`}.`3esn`,usn2:`1esn` Union All Delete {#usn8} Is Null,$@usn5[`2esn`],`3esn`[$`1esn`..999][``..$123456789] Return {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}])"), - octest_legacy:ct_string("Foreach(`6esn` In All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)]| Create Unique ((:@usn5{#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})-[?:usn2|`` *0..{usn2:{12} Is Not Null,`6esn`:``[$`2esn`]}]-(`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}))) Return *,$#usn7 Contains 0x0 Contains 1000 As @usn5 Order By $_usn4 Contains Null Contains #usn8 Descending,07[$#usn7..{1000}] Ascending Skip #usn7[$usn1]"), - octest_legacy:ct_string("Remove Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where False|{999}).`3esn`,Case 's_str' In 00 When 010 =~{usn2} Then $`5esn`[2.12..] When {12} Ends With 1.0 Ends With .e0 Then {`2esn`} Is Not Null End.usn2?,[@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8|@usn6[$`3esn`..{`3esn`}]].``!"), - octest_legacy:ct_string("Merge Shortestpath((((`1esn` :`5esn`{`5esn`:{``} Is Null})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(_usn4 :usn1)))) On Create Set `1esn`+=0.0 =~999,Case When `8esn` Ends With 999 Ends With .e12 Then 12.e12[7..$`6esn`] When 1000 In {`8esn`} In 01 Then `2esn` Starts With $_usn4 Else 0Xa Starts With {`6esn`} Starts With $usn1 End.`3esn`! =Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where `3esn`[{0}][usn1]) Starts With Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[`3esn`? *123456789..]->({_usn3:$`5esn`[`3esn`..]}))),@usn5 =`3esn` Is Null On Create Set `` =$#usn7 Contains 0x0 Contains 1000,#usn7+={``} Is Not Null,Reduce(`5esn`=01234567 Ends With .e12 Ends With $#usn7,`8esn` In 01[2.12..`8esn`]|0Xa =~Null =~$``).`6esn`! ={0} Contains 0.0 Contains $@usn5 Unwind 7[..999][..{#usn8}] As `8esn` Delete $`1esn`[{`2esn`}..],{`3esn`},0.e0 =~$12 =~``"), - octest_legacy:ct_string("Create #usn8=Allshortestpaths((({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})-[? *..0x0{_usn3:01 Ends With 999 Ends With {`7esn`}}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[?{usn1:0[`7esn`..]}]->({usn1:{`7esn`}[`6esn`][#usn7],usn1:{999} Starts With $999}))) Return Distinct *,{`5esn`:01234567 Is Null Is Null}[..`1esn`(Distinct 00 Starts With 0xabc,$0)],Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn` As _usn3 Skip 1.0 =~7 =~{usn2} Union All Return Distinct *,{#usn8} Is Not Null,$`5esn`[2.12..{_usn3}][_usn3..{1000}] As usn2 Order By 9e0[1.e1..][0Xa..] Descending,{_usn3:`4esn`[..Count ( * )][..{#usn7}]}[Any(_usn3 In {`3esn`}[`2esn`] Where 1e1 In \"d_str\" In `7esn`)..(:usn1{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[`2esn`:_usn4|:usn2]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[`6esn`{`6esn`:Count(*) Ends With 12.0 Ends With 12}]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})][Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7|123.654[{7}..])..Filter(`3esn` In {7} Is Null Where usn1 Is Null Is Null)] Asc Remove (_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})-[usn2?]-(:@usn5)<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->(`7esn` {`5esn`:123.654 Contains $`4esn` Contains 1.0,`8esn`:123.654 =~$usn2 =~{999}}).`5esn`?,All(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12)._usn4 Create #usn8=Shortestpath((#usn8 :@usn5))"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From `6esn`[2.12..01][{``}..False] As _usn4 Fieldterminator 's_str' Optional Match `7esn`=Shortestpath((((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``})))),((:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12})) Using Scan _usn4:`7esn` Remove {`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}.usn2?,`8esn`:#usn8:#usn8,Allshortestpaths(((_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})-[`6esn`?:`3esn`|:#usn8{usn1:$usn1 In {999} In $#usn7}]-({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``}))).`2esn`"), - octest_legacy:ct_string("Unwind True[07..$usn2][$7..{usn1}] As @usn5"), - octest_legacy:ct_string("Delete $#usn7 Starts With {7} Starts With 1.0,Case Count ( * ) Contains 07 When {7}[..12e12][..Count ( * )] Then 9e12 Is Not Null Is Not Null When $`2esn` Then 1.0 Contains $_usn4 Else _usn4 Contains 2.12 End[Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`2esn`} Ends With {`7esn`})..] Unwind $_usn3 Starts With $@usn6 Starts With {`8esn`} As @usn6 Load Csv From $`6esn`[{_usn3}..$`4esn`][$_usn4...e12] As usn2 Fieldterminator 's_str'"), - octest_legacy:ct_string("Match #usn7=Allshortestpaths((@usn5 {`3esn`:.e1[..usn2][..`8esn`]})<-[usn2:`7esn`]->(:usn1{_usn3:{#usn7}[`2esn`..]})-[?:usn2|``$#usn7]-(#usn8 :``:#usn8{`7esn`:9e1[$usn2],_usn4:$_usn4 Contains Null Contains #usn8})),((:@usn5{#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})-[?:usn2|`` *0..{usn2:{12} Is Not Null,`6esn`:``[$`2esn`]}]-(`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})) Using Index `3esn`:usn1(@usn6) Match Allshortestpaths(((usn2 :@usn5)<-[? *00]->(@usn5 :usn1))) Using Scan _usn3:`1esn`"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From 0xabc[.e0] As usn2 Fieldterminator 's_str'"), - octest_legacy:ct_string("Load Csv From `5esn` Starts With 010 Starts With 0.0 As @usn5 Create `5esn`=Allshortestpaths(((`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}))),(((`6esn` :`5esn`{usn1:{`6esn`}})<-[? *0X7..{#usn8:{1000} Is Null Is Null,`3esn`:0.e0 Starts With 12.e12 Starts With {_usn4}}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})<-[:`1esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}))) Union All Create @usn6=Shortestpath((usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})),(((`3esn` :`8esn`:`7esn`)-[`7esn`:#usn8|`1esn` *0xabc..]->(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})-[`2esn`?:`7esn` *..07$0]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]}))) Load Csv With Headers From (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8) Contains All(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) As #usn8 Fieldterminator 's_str'"), - octest_legacy:ct_string("Match Allshortestpaths(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))),Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Using Index ``:_usn4(_usn4) Where {#usn7}[9e1..][{123456789}..] Union Create Shortestpath(((:#usn8:#usn8)-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12}))),Shortestpath((({_usn3:{_usn4} Is Not Null Is Not Null})<-[_usn4 *0..{_usn4:00[`2esn`..12][123456789..0.e0],`8esn`:0x0[`4esn`..'s_str']}]->()<-[``? *..01{`1esn`:$@usn6 Contains 07}]->(:#usn8:#usn8{@usn6:$_usn3[..1000]}))) With *,$12[True..][{0}..] Order By Case `1esn`[{usn1}..``][7..$#usn8] When {0} Ends With $_usn3 Ends With $`7esn` Then $7[{usn2}..][{usn2}..] When 12.0[123.654][Count(*)] Then Count ( * ) Ends With 12.0 Else 01234567[usn2..$12][{`7esn`}..$usn2] End Is Not Null Descending Where {_usn4} Ends With `6esn` Optional Match `2esn`=((`5esn` :_usn4{7})<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})-[:`4esn` *0xabc..{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(`3esn` :`5esn`)) Using Scan `1esn`:usn2 Where {@usn5} Is Null Is Null"), - octest_legacy:ct_string("Optional Match `2esn`=(:`1esn`{``:.e1 Is Null Is Null})<-[#usn8?:usn1|@usn6]->(`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`}),`6esn`=(((usn2 :``:#usn8)-[ *123456789..{`4esn`:0Xa[2.12],#usn7:0.e0 In $#usn7 In $_usn3}]-(@usn6 :`3esn`:@usn5)-[`7esn` *0X0123456789ABCDEF]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0}))) Using Index `5esn`:`1esn`(usn1) Where 07[..True][..9e12] Merge (((:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})<-[usn2?:``]-(usn2 :``:#usn8)-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null}))) Union Create Unique ((:_usn4{usn2:0X7 =~9e1})<-[? *..0x0]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})),`1esn`=(`` {@usn6:1.0[$`1esn`..][$123456789..]})<-[?{usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null}]-(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null}) Delete 0.0 =~999,0e0[07],$1000 Is Not Null With *,0.0 =~999 As `4esn` Skip `3esn`[..$12][..{`7esn`}] Limit {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]) Where `6esn`[..$@usn6]"), - octest_legacy:ct_string("Optional Match `4esn`=((`1esn` :`7esn`:_usn3{`2esn`:$#usn7[#usn7..],_usn4:'s_str' Is Not Null Is Not Null})-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})),(`1esn` {_usn4:1.e1[$`1esn`..@usn6][$0..$_usn3],#usn8:$@usn5[..12e12][..$123456789]})<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0}) Using Join On `6esn` Using Index `6esn`:_usn4(``) Where 0[..usn2][..{@usn5}]"), - octest_legacy:ct_string("Remove Reduce(``=00[`2esn`..12][123456789..0.e0],_usn3 In {`3esn`}[`2esn`]|{#usn8} Is Null).`7esn`? Remove (:_usn4{@usn6})-[`5esn`?:_usn4|:usn2{_usn4:{999}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[{`4esn`:{_usn3}[..$12][..0.12],`7esn`:1.0[0X7][{`5esn`}]}]-({`2esn`:{7} In `2esn`,`1esn`:`4esn`[1.0]})._usn3!,Case `1esn`[{usn1}..``][7..$#usn8] When 9e1[2.12] Then $_usn4 Is Not Null Is Not Null When $`7esn` =~{`8esn`} =~$usn1 Then $`4esn`[9e12..123.654] Else {123456789}[0xabc..] End.`7esn`?,None(#usn7 In `2esn`[..$#usn8][..Count(*)] Where Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6}).usn1?"), - octest_legacy:ct_string("Remove Single(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7).usn1?,`1esn`().`6esn`!"), - octest_legacy:ct_string("Start `7esn`=Rel:#usn8({_usn3}) ,`7esn`=Rel:#usn8({_usn3})Where {0}[01][`7esn`]"), - octest_legacy:ct_string("Return Distinct .e1 =~$usn2 =~999 As `2esn`,Allshortestpaths(((`7esn` {`2esn`:$`6esn`[123456789..12][True..{`3esn`}],#usn7:$_usn3[Count(*)]})-[#usn8? *..07$_usn4]->(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}))) Is Not Null Is Not Null As `8esn` Skip Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where `5esn` Starts With $`2esn` Starts With $1000) Ends With Reduce(``=0.12 =~$0 =~$0,`2esn` In `1esn` =~\"d_str\"|9e12[`1esn`..][$`1esn`..]) Limit 9e0 Starts With 01 Union All Return Distinct Reduce(`1esn`={0} In $_usn3,@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|{``} Ends With `7esn` Ends With 0.0) Is Null Is Null As `3esn` With *,{_usn4:Count ( * )[True..][{#usn7}..],``:{``} Ends With `7esn` Ends With 0.0} In (usn2 {``:01[{@usn5}]})<-[?:_usn4|:usn2{`8esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],``:_usn3 Contains $123456789 Contains ``}]->(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(:_usn4{_usn4:{7} In `2esn`}) In {`4esn`:`7esn` Is Null} As `2esn`,`5esn` Is Null Order By $`5esn` Ends With Reduce(#usn8=$#usn7 Is Null,`4esn` In $`3esn` Is Not Null|12.e12[`3esn`]) Ends With Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) Desc,count(`1esn` Contains {usn2} Contains $#usn8) Contains [`5esn`[7][{usn2}],@usn5 Is Null] Desc,Case When $#usn7 Contains 0x0 Contains 1000 Then {123456789} Is Not Null When $#usn7 Contains 0x0 Contains 1000 Then usn2[$_usn4..][True..] End Is Null Is Null Asc Limit `5esn`[{`4esn`}..`2esn`] Unwind 0x0[`4esn`..'s_str'] As `6esn` Union All Detach Delete {`7esn`} Starts With 0,$`6esn`[{999}..9e0],@usn6 Contains `3esn` Contains {`2esn`}"), - octest_legacy:ct_string("Return *,$_usn3 =~0.12 =~{#usn8},9e0 Is Not Null Is Not Null Skip {usn2} Starts With $`8esn` Starts With Count ( * ) Limit $@usn5 Starts With $1000"), - octest_legacy:ct_string("Match #usn8=((`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0})),usn1=Allshortestpaths((`` {@usn6:1.0[$`1esn`..][$123456789..]})-[`7esn`*]->(`7esn` {`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})-[@usn6]-(`5esn` {`4esn`:01 Is Null})) Using Scan `4esn`:`2esn` Using Join On `1esn` Where {1000} =~0 =~123.654 Union All Foreach(usn1 In usn1(Distinct $@usn5 Starts With $1000)[[`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}|0Xa =~Null =~$``]..]| With Distinct $`8esn` Contains 123456789 Contains $usn2,{_usn4} In {12} In $0,Extract(#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12) Ends With [False =~$7 =~2.12,$`4esn` In Null In 0xabc,{`7esn`} Starts With $123456789 Starts With $@usn6] Skip _usn3[..`8esn`][..2.12] Limit 0X7[0e0..`7esn`][1000..0e0]) Load Csv From [#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01|{0} Ends With $_usn3 Ends With $`7esn`] Contains Case {0}[12.0..0Xa][$`5esn`..{_usn3}] When .e1 Ends With 1e1 Ends With @usn5 Then 01[{`2esn`}..{@usn6}][$`2esn`..0.0] Else 123.654[...e0] End As #usn8 Unwind {12} Ends With 1.0 Ends With .e0 As #usn7"), - octest_legacy:ct_string("Create (:`5esn`{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}),((`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[`2esn`]->({`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}})) Create Unique _usn4=Allshortestpaths((`` {@usn6:1.0[$`1esn`..][$123456789..]})<-[?{usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null}]-(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null}))"), - octest_legacy:ct_string("Detach Delete ``[12.0..0e0][{`5esn`}..`7esn`] With None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})[Any(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")..Reduce(usn1=#usn7[usn1][$`5esn`],`3esn` In {7} Is Null|Count(*) Ends With 12.0 Ends With 12)][(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})..({usn1:`5esn`[_usn4..]})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})],@usn5 =~{`5esn`} =~`5esn` As _usn4,$123456789 In $#usn7 In `4esn` As `` Order By {`3esn`}[..07][..{`5esn`}] Desc Limit 12.0 Where {123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]"), - octest_legacy:ct_string("Load Csv From [`3esn` In {7} Is Null Where {123456789} Contains $#usn8|$@usn5[..12e12][..$123456789]] In Case 01 =~{_usn3} =~`3esn` When `2esn`[..$#usn8][..Count(*)] Then 00[{`8esn`}..][{`8esn`}..] Else `3esn`[..$12][..{`7esn`}] End In Extract(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0]|010 =~{usn2}) As @usn6 Fieldterminator 's_str' Load Csv From {#usn8}[010] As _usn3 Return Distinct 00 Starts With 0xabc,\"d_str\" Starts With 01 As _usn3,({`7esn`:7[{0}..{_usn4}]})-[`` *..12]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})-[:`2esn`*..{`1esn`}]-(usn2 :`5esn`{`7esn`:01234567 Is Null Is Null}) =~Reduce(#usn8=$_usn4[0e0..][False..],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|#usn8[#usn8..]) =~Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Order By Reduce(`2esn`=$`5esn` In $`` In 123.654,#usn8 In {`5esn`}[.e1..``]|$12[True..][{0}..]) =~Shortestpath((((:#usn7)<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})))) Asc,_usn4 Contains 0e0 Descending,(@usn6 :`1esn`{#usn8:`4esn`[1.0],``:.e12[@usn5..#usn7][010..{usn1}]})<-[``? *..01{`1esn`:$@usn6 Contains 07}]->(:#usn8:#usn8{@usn6:$_usn3[..1000]})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(:``:#usn8{usn1:{`6esn`}}) Starts With {@usn5:0.12 Starts With $`5esn` Starts With 12} Starts With [`5esn` In \"d_str\" Is Null Is Null Where 0X7[1000..{`1esn`}]] Asc Skip 0e0 In @usn5 Limit 1e1 Contains Count ( * ) Union All With Distinct #usn8 In $@usn6,1.e1[`8esn`][00] Where 0.e0 Starts With `2esn` Start `3esn`=Node:`2esn`({0}) ,@usn5=Node:#usn8(#usn7=\"d_str\")Where `5esn`[{`4esn`}..`2esn`] Merge ((usn1 {`7esn`:{999}})) On Create Set Shortestpath((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))).`4esn`? ={`4esn`} Starts With $usn2 Starts With $1000,_usn4 =07[$123456789..] On Match Set (`` :usn2)<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->({`1esn`:{1000}[{_usn3}..],`1esn`:{123456789}[9e12][{0}]}).usn1 =False[..``],None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $#usn7[@usn5..{1000}][1.e1..7]).@usn5 =$usn2[9e0],#usn8 =0x0 Ends With Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..]) Ends With Filter(#usn7 In {``} Is Not Null Where 0x0 Is Null)"), - octest_legacy:ct_string("Detach Delete False Starts With {`5esn`} Union Merge Shortestpath(((:#usn8:#usn8)-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12}))) On Match Set `5esn` =All(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`2esn`} Is Not Null)[Filter(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`4esn`} Starts With $usn2 Starts With $1000)..Reduce(`8esn`={`2esn`} Is Not Null Is Not Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{usn1} Ends With $0)][Allshortestpaths(((`1esn` )))..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] On Match Set `7esn` =`4esn`[..010][..{12}],@usn5+=0X7[$999][_usn4],@usn5 =0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`"), - octest_legacy:ct_string("Match usn1=Allshortestpaths(((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))),((@usn6 :`1esn`{#usn8:`4esn`[1.0],``:.e12[@usn5..#usn7][010..{usn1}]})) Using Join On @usn5,_usn3,_usn3 Using Scan #usn7:@usn6 Match ({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})<-[`3esn`?:_usn3|_usn3 *1000..00]-(#usn7 :_usn3:_usn3)<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]}),(#usn7 :@usn5{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]}) Using Join On `8esn`,@usn5 Using Join On ``,_usn3,`1esn` Union All With Distinct *,07[$#usn7..{1000}],0X0123456789ABCDEF =~1e1 =~{`4esn`} Order By $`5esn`[2.12..] Asc Where @usn5 Is Null Create ((:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})),#usn7=((:`5esn`{``:1.0[0e0..0.e0]}))"), - octest_legacy:ct_string("Start ``=Node:@usn6(usn1={999}) Union All Create Unique `6esn`=Shortestpath((((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})))),Shortestpath(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null}))) Detach Delete {#usn8} Contains 0.0 Contains Count(*),{0} Contains 0.0 Contains $@usn5"), - octest_legacy:ct_string("Remove Extract(`` In `` Is Not Null Is Not Null Where 0e0 Starts With 1000 Starts With #usn7|usn1[`5esn`..$7]).`7esn`?,Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `` Ends With 0Xa Ends With `2esn`).`7esn` Foreach(@usn5 In 12.0[{123456789}..]| Detach Delete {`2esn`} Ends With 12.0) Delete $12 Starts With {`1esn`} Starts With Null,$`8esn` =~{1000},#usn7 Is Not Null Is Not Null"), - octest_legacy:ct_string("Return `` Is Not Null Is Not Null,$_usn3 Ends With 0x0 Ends With 12.0,$_usn3[.e0..$usn2] Order By Single(_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..])[..All(`` In `` Is Not Null Is Not Null Where {`7esn`} Is Null)] Ascending Limit {`4esn`} Ends With {123456789} Ends With $`4esn`"), - octest_legacy:ct_string("Detach Delete Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {_usn4} In {12} In $0) Is Not Null Is Not Null,[.e12[@usn5..#usn7][010..{usn1}]] In All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {`6esn`} Contains \"d_str\") In None(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null),$@usn5[010..$#usn8][12..$`4esn`] Foreach(`8esn` In \"d_str\" Starts With 01| Start `8esn`=Relationship:`6esn`('s_str') Where 010 =~{usn2}) Union All Optional Match `5esn`=(((_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(#usn7 {@usn5:$`8esn` =~{1000}})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]}))),usn1=(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})-[_usn4? *..01]-(_usn4 :usn2{usn1:7[True..][2.12..],`8esn`:2.12 Ends With $_usn3 Ends With `3esn`})-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]-({`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}) Using Index `1esn`:_usn3(_usn4) Using Index `2esn`:`3esn`(@usn6) Where #usn8"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From $usn1[_usn4] As `` Match usn2=(`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[@usn5?:`3esn`|:#usn8{_usn4:{999}}]->(:#usn8:#usn8{``:1.0[0e0..0.e0]})"), - octest_legacy:ct_string("Delete Case When Count ( * ) Contains 07 Then $`2esn` When 1.0 Is Null Is Null Then `7esn`[..2.12][..{usn1}] End Is Not Null Union Merge #usn8=(_usn4 :`2esn`:usn1{_usn3:0.e0 Starts With `2esn`}) On Create Set `` =123456789[0xabc..'s_str'][``..`1esn`] Return *,{12} Is Not Null Order By $`1esn`[1.0..][_usn3..] Ascending Skip `` =~'s_str' =~$#usn7 Limit $`1esn` =~0X7 Union All Return Distinct *,Reduce(usn2={`6esn`} Contains \"d_str\",`8esn` In 01[2.12..`8esn`]|7[..999][..{#usn8}]) Starts With All(#usn8 In 7[..999][..{#usn8}] Where $#usn7 Contains 0x0 Contains 1000) Skip (_usn3 {`5esn`:12.e12[0xabc],`2esn`:{`7esn`}[..$@usn5][..$#usn8]})-[`2esn`?{_usn3:$_usn4[Count ( * )..],#usn7:{`3esn`}[..07][..{`5esn`}]}]-(`4esn` :@usn6:#usn8{`1esn`:`4esn`[..010][..{12}]})[(`2esn` :#usn7{@usn5:$123456789 Starts With 9e0 Starts With 's_str',`5esn`:9e1[1000][{123456789}]})<-[`2esn` *0Xa{#usn8:1.0[0e0..0.e0]}]-(_usn4 {``:1.0[0e0..0.e0]})-[usn1?:`4esn` *..01]-({``:.e1 Is Null Is Null}).._usn3(Distinct $1000 Is Null,0.0[$0][{@usn5}])][Any(`5esn` In $999[0.0..] Where {@usn6} Ends With 's_str' Ends With 12.0)..Any(`4esn` In $`3esn` Is Not Null Where $`` Starts With $1000 Starts With False)] Limit {_usn4} Is Not Null Is Not Null Detach Delete 12e12 Contains 0Xa Create @usn6=Allshortestpaths(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))),(`7esn` {@usn5:{7}[..1.0][..9e0]})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})<-[`1esn`?:usn2|``]-({@usn5:{usn2}[.e0..$999]})"), - octest_legacy:ct_string("Optional Match (((`5esn` :`6esn`)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}))),(_usn3 {@usn5:`5esn`[{`4esn`}..`2esn`],_usn3:07 =~01}) Using Join On `7esn` Using Scan `5esn`:usn2 With $`8esn` Contains 123456789 Contains $usn2,{_usn4} In {12} In $0,Extract(#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12) Ends With [False =~$7 =~2.12,$`4esn` In Null In 0xabc,{`7esn`} Starts With $123456789 Starts With $@usn6] Skip _usn3[..`8esn`][..2.12] Limit 0X7[0e0..`7esn`][1000..0e0] Union Create _usn3=((:``:#usn8{`7esn`:{12}[{7}][$123456789]})) Create Unique _usn3=((@usn5 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[`2esn`?:`7esn` *0X7..]-(@usn5 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})) Load Csv With Headers From $12[Count ( * )][0X7] As `1esn` Fieldterminator \"d_str\""), - octest_legacy:ct_string("Detach Delete {`1esn`}[{123456789}][{0}],None(#usn8 In {`5esn`}[.e1..``] Where `8esn` Contains $usn1 Contains $12) In Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where #usn8[..{#usn7}]) In (#usn8 {`2esn`:$`5esn`[..$`5esn`][..$12]})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)<-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]-(:`5esn`{``:1.0[0e0..0.e0]}),010[Count(*)..12][$_usn3..{`8esn`}]"), - octest_legacy:ct_string("Create Unique `4esn`=(:``:#usn8$`3esn`)<-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]}),`1esn`=((({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})<-[`4esn`?:usn2|`` *0X7..]->(_usn3 :@usn5)<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8}))) Union All Create #usn7=(({_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})-[`7esn`?*..]->(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01})-[]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`}))"), - octest_legacy:ct_string("With Distinct *,$@usn5 Is Not Null,Count ( * ) Is Null Skip Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where _usn4 Contains 2.12|{_usn3}[..\"d_str\"]) Contains Shortestpath((`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})) Contains [$123456789 Ends With $999 Ends With {999},12.0 Contains #usn7] Limit {1000} Is Null Is Null Where usn2 Is Null Unwind [`` Is Not Null Is Not Null,`1esn` Contains {usn2} Contains $#usn8] Is Not Null As _usn4 Union Merge (((:usn1{usn1:`5esn`[_usn4..]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[:usn1|@usn6 *7..12]-({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]}))) Start `7esn`=Node:`4esn`({usn1}) ,`1esn`=Relationship:`2esn`({1000})Where $`6esn`[010..] Match (`2esn` :`8esn`:`7esn`)-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}) Using Scan ``:_usn4 Using Join On ``,_usn3,`1esn` Union Unwind Case When {12} Ends With 1.0 Ends With .e0 Then 01[{`2esn`}..{@usn6}][$`2esn`..0.0] When {``}[...e12] Then {`2esn`} Starts With 0.0 Starts With {usn1} Else 123456789[$@usn5..] End[Case When $_usn4[0e0..][False..] Then $`2esn` Is Null Is Null Else `` Ends With 0Xa Ends With `2esn` End..Any(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 07 In `2esn` In 12e12)][count($`3esn` Is Null)..(:`1esn`{`5esn`})<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]})-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(@usn5 {usn2:0.e0[123.654][01]})] As _usn4"), - octest_legacy:ct_string("Match _usn3=Shortestpath((`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[:`3esn`|:#usn8 *7..12{@usn5:_usn4 Starts With $_usn4 Starts With 12.e12}]->(`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null})),`5esn`=(:@usn5$`5esn`) Where 1e1 In 123.654 In `3esn`"), - octest_legacy:ct_string("Create Unique (@usn6 {#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12})<-[usn1?:`7esn`]-(:usn1{usn1:{`6esn`}}),(((:`6esn`{_usn4:'s_str' Ends With 7 Ends With {_usn4},@usn6:$`2esn`})-[:@usn6|`6esn` *1000..00]-(usn1 {`1esn`:$@usn6 Ends With $_usn4 Ends With 0.12,`3esn`:`4esn` =~$`5esn`})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(:`3esn`:@usn5$usn2))) Create Unique (({`4esn`:`7esn` Is Null})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})),({`4esn`:{`4esn`} Ends With {usn2} Ends With {999}})<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-(:#usn8:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]}) Create @usn5=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7})"), - octest_legacy:ct_string("Load Csv With Headers From {0} Contains 0.0 Contains $@usn5 As `7esn` Fieldterminator \"d_str\""), - octest_legacy:ct_string("Start usn1=Node:`2esn`({`1esn`}) Where 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] Load Csv From All(#usn8 In {`5esn`}[.e1..``] Where {_usn3}[..\"d_str\"][..`5esn`])[..Allshortestpaths((`5esn` :`4esn`))] As @usn5 Foreach(`3esn` In 123.654[True..$#usn8][0.12..Count(*)]| Return (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(:_usn3:_usn3{``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Is Not Null,$#usn8[Count ( * )] As `4esn` Skip _usn3 Ends With 7 Ends With `1esn` Remove [1.0[00..]].#usn8?) Union All Create `4esn`=((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})),`4esn`=((:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null})) Remove [@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where 01[2.12..`8esn`]].@usn6?,Any(#usn7 In {``} Is Not Null Where {`1esn`}[usn1][.e1]).#usn8? Union All Unwind _usn3[..`8esn`][..2.12] As usn1 With Allshortestpaths(((`8esn` ))) Ends With (`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]}),$_usn3['s_str'][07] As @usn5 Skip $_usn4[0e0..][False..] Where $`7esn` =~{`8esn`} =~$usn1"), - octest_legacy:ct_string("Create _usn4=Shortestpath((((`7esn` )-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:`1esn`{``:.e1 Is Null Is Null})))),#usn8=Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Unwind {`8esn`} Ends With `6esn` As @usn6 Union All Create Unique (:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3) Merge `4esn`=(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}) On Create Set `5esn` =$`` Is Not Null,{usn2:usn2 Is Not Null Is Not Null}.usn1? =Case When 07 Contains 0X7 Contains $`8esn` Then 123456789[{123456789}..'s_str'] When _usn3[_usn3..][12.e12..] Then $12[True..][{0}..] End Is Null Is Null,[{_usn4}[...e1][..$7],_usn4 Starts With $_usn4 Starts With 12.e12].#usn8? =0X7[0e0..`7esn`][1000..0e0] Load Csv With Headers From $_usn4[1.0..{#usn7}][9e1..$`1esn`] As usn2 "), - octest_legacy:ct_string("Remove Reduce(``=$usn1[.._usn4][..False],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|#usn8[#usn8..]).`8esn`,Reduce(@usn5=9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Ends With {_usn3}).`8esn` Return Distinct *,`6esn` Is Not Null Is Not Null As `3esn` Order By $`5esn` Starts With $0 Starts With {0} Asc Union With Distinct {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]),Count ( * ) Is Null As @usn6,123.654[...e0] Order By {usn2} Starts With $`8esn` Starts With Count ( * ) Asc Limit $@usn5 Starts With #usn7 Where {123456789}[0xabc..] Union All Create Unique (:``:#usn8{_usn3:$`7esn` Is Null Is Null}),`5esn`=Shortestpath((((@usn5 :_usn4{#usn7:Null Ends With `2esn` Ends With $usn1,`5esn`:12.0})-[?:#usn7 *01234567..0Xa]->({``:$`8esn` =~{1000}})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})))) With Distinct *,{#usn8}[1.e1...e12] As `5esn` Order By 0e0[..010] Descending,_usn4(0.e0 Starts With 12.e12 Starts With {_usn4},0X0123456789ABCDEF Is Null Is Null)[Case 's_str' In 00 When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null When $@usn5 Starts With {0} Starts With 12 Then {usn2} Else {#usn7}[`2esn`..] End..] Descending Limit 1.0 =~'s_str' =~{`2esn`} Where 1.0 =~7 =~{usn2}"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From $`3esn` In $`6esn` In $`` As `4esn` Load Csv From 12.0 Contains #usn7 As `5esn` Create _usn4=(_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :_usn3:_usn3{`7esn`:$`6esn`[123456789..12][True..{`3esn`}],`5esn`:0X0123456789ABCDEF[123456789]})-[?{usn1:0[`7esn`..]}]->(`2esn` :`6esn`),@usn5=(((:_usn4)<-[:`6esn`|`5esn` *..010]-(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})<-[`4esn`?:`7esn` *0..{`2esn`:00[`2esn`..12][123456789..0.e0]}]->(`1esn` :_usn3:_usn3)))"), - octest_legacy:ct_string("Merge ``=((#usn7 )-[`7esn`?*..]->(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01})) On Create Set All(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`).`6esn`! =_usn4 Contains 2.12 Create usn2=Allshortestpaths((usn2 :`4esn`)-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(`` :_usn4)),_usn3=({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True}) Start `5esn`=Rel:@usn6(`7esn`={`8esn`}) ,`3esn`=Relationship:#usn7('s_str') Union Foreach(`4esn` In (`` :#usn7)<-[`1esn`?:usn1|@usn6 *0..]-(:#usn8:#usn8{@usn6:$_usn3[..1000]})[[`4esn`[..010][..{12}],0.e0 Starts With `2esn`,1000[..$0][..True]]..]| Start `3esn`=Node:`8esn`(`1esn`={#usn7}) Unwind {`4esn`} In 1.0 As @usn6)"), - octest_legacy:ct_string("Create @usn6=Allshortestpaths((:@usn5{`2esn`:_usn3 Ends With 7 Ends With `1esn`})<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`4esn`{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}}))"), - octest_legacy:ct_string("Load Csv From 0X0123456789ABCDEF[{_usn4}..00] As @usn5 Create usn2=Allshortestpaths(((:@usn6:#usn8{`4esn`:$`8esn`[..00]})<-[_usn4?:_usn4|:usn2 *00]->(:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))),#usn8=(((`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})-[@usn5]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))) Union All Detach Delete {`1esn`}[{123456789}][{0}],None(#usn8 In {`5esn`}[.e1..``] Where `8esn` Contains $usn1 Contains $12) In Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where #usn8[..{#usn7}]) In (#usn8 {`2esn`:$`5esn`[..$`5esn`][..$12]})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)<-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]-(:`5esn`{``:1.0[0e0..0.e0]}),010[Count(*)..12][$_usn3..{`8esn`}] Union All With Distinct usn1(Distinct $@usn5 Starts With $1000)[[`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}|0Xa =~Null =~$``]..] As usn1 Order By [1.0 =~'s_str' =~{`2esn`}] Contains [9e1[2.12],{usn2}[$`3esn`..][{#usn7}..],Null Ends With {`5esn`} Ends With 0.e0] Contains `5esn` Descending Limit Reduce(usn1=$123456789 Is Null Is Null,_usn3 In {`3esn`}[`2esn`]|Null[$`5esn`][False])[Case 0e0 Contains Null When 0X7[`7esn`][123.654] Then 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] End..][[9e1[$usn2],{`4esn`}[$123456789..][$#usn7..]]..] Where Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6} Create Unique Shortestpath(((({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(:`6esn`$123456789)))),@usn6=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7)) Remove Filter(#usn8 In 7[..999][..{#usn8}] Where $_usn3 Contains 999 Contains \"d_str\").`1esn`!,None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa).`5esn`!"), - octest_legacy:ct_string("Load Csv With Headers From $_usn4 Contains Null Contains #usn8 As #usn7 Fieldterminator \"d_str\" Foreach(`5esn` In (`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})[\"d_str\"..Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null)][Shortestpath(((:`3esn`:@usn5$7)))..usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010])]| With Distinct True[..$`6esn`],(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})[[{@usn6}[{999}..][00..],@usn5 =~{`5esn`} =~`5esn`,`7esn` Is Null]][Reduce(`7esn`=0X0123456789ABCDEF Is Null Is Null,`5esn` In $999[0.0..]|$1000[Null][`4esn`])] As @usn5 Skip $0 Ends With 12.0 Limit 01[2.12..`8esn`]) Union Detach Delete All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8) Is Not Null Is Not Null,{_usn4}[{`5esn`}..{1000}][9e1..{1000}],{``} Starts With $`2esn` Starts With `1esn` Remove [`2esn` In `1esn` =~\"d_str\" Where usn2 Ends With 999 Ends With .e1|9e0[..999]].`4esn`,Case When usn1 In 7 In {123456789} Then `5esn`[_usn4..] When `7esn`[9e0..] Then {`3esn`} In 01 End.`4esn` Foreach(`5esn` In \"d_str\" Contains {123456789} Contains 01| Match #usn7=({@usn5:07[..True][..9e12]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}),Allshortestpaths((_usn4 :usn1)<-[`1esn`?:`4esn`]->(`5esn` :`4esn`)) With Distinct .e12[..`7esn`][..0Xa],123.654 Is Not Null Is Not Null As `8esn`,All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By {usn2} Descending,1.0 =~7 =~{usn2} Desc Skip 0.0[$0][{@usn5}] Where _usn3 Contains $123456789 Contains ``)"), - octest_legacy:ct_string("Merge usn2=Shortestpath(((`1esn` :_usn3:_usn3))) On Match Set Reduce(@usn6=01234567 Is Null Is Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|1.0 Starts With 12e12 Starts With {`5esn`})._usn3? =`4esn`[..Count ( * )][..{#usn7}]"), - octest_legacy:ct_string("Create Unique (({@usn5:{usn2}[.e0..$999]})),Allshortestpaths(((:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}))) Detach Delete \"d_str\" =~1000 =~{`1esn`} Unwind Extract(`5esn` In \"d_str\" Is Null Is Null)[Any(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``)][Case $`7esn` Is Null Is Null When {#usn7}[9e1..][{123456789}..] Then False =~1e1 =~0.e0 Else 1000 In {`8esn`} In 01 End] As `2esn`"), - octest_legacy:ct_string("Remove {usn1:#usn7 Is Null Is Null,`5esn`:{`3esn`} In 0X7}.`8esn`! Union All Load Csv With Headers From 1.e1[`8esn`][00] As #usn7 Union Start _usn3=Node:`8esn`(`1esn`={#usn7}) Where usn2[9e12] Return Distinct *,`4esn`[`5esn`..12][@usn6..False],Case 's_str' In 00 When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null When $@usn5 Starts With {0} Starts With 12 Then {usn2} Else {#usn7}[`2esn`..] End As `4esn` Order By 123456789[{123456789}..'s_str'] Descending Limit 9e0 Remove `4esn`:usn2,[Null Ends With `2esn` Ends With $usn1,0X0123456789ABCDEF[123456789],0Xa[$123456789..123.654][.e12..0.e0]].`3esn`!,Single(`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1).@usn5!"), - octest_legacy:ct_string("Create Unique ((:_usn3:_usn3{`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})<-[`3esn`?:_usn3|_usn3 *1000..00]-(#usn7 :_usn3:_usn3)) Create Unique `8esn`=Allshortestpaths(((:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))) Create #usn8=(`1esn` :`4esn`{`6esn`:$`6esn` Ends With Count(*),`7esn`:_usn3 Starts With 12.e12 Starts With 0.12}),(:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]->(#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})-[`1esn`?:`8esn`]->(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}) Union All Foreach(`2esn` In Allshortestpaths((`5esn` :`4esn`)) Is Not Null| Delete [#usn8 In {`5esn`}[.e1..``] Where {7}[..12e12][..Count ( * )]|{`2esn`} Ends With {`7esn`}] In All(#usn8 In {`5esn`}[.e1..``] Where {7}[..1.0][..9e0]),Null Ends With `2esn` Ends With $usn1,[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12)) Union All Create usn2=(`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[@usn5?:`3esn`|:#usn8{_usn4:{999}}]->(:#usn8:#usn8{``:1.0[0e0..0.e0]}),#usn8=((`3esn` {`8esn`:\"d_str\" Contains {123456789} Contains 01,@usn5:`1esn` In .e0 In {`3esn`}})-[#usn7?:`3esn`|:#usn8]->(`2esn` :usn1)-[ *..999{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(@usn5 {_usn3:`1esn` Contains {usn2} Contains $#usn8})) With Distinct #usn8 Starts With $_usn4 Starts With $7 As `6esn` Order By $0[$`1esn`..07] Descending Skip 9e1 Is Not Null"), - octest_legacy:ct_string("Detach Delete Case {#usn7}[9e1..][{123456789}..] When $0 Ends With 12.0 Then $`` Is Not Null When $usn1 In {999} In $#usn7 Then 1000[Null..{123456789}] Else 1.0 =~'s_str' =~{`2esn`} End[{@usn5:.e0[..$`8esn`],`4esn`:{usn2} =~12}..Any(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``)],0.12 In _usn3 In {0},Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`]|123456789 Ends With 12.e12 Ends With $`7esn`) Is Not Null Optional Match _usn4=Allshortestpaths((usn2 :`4esn`)),(`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Unwind $usn1[.._usn4][..False] As @usn6 Union Remove [#usn8 In 7[..999][..{#usn8}] Where .e0[..$`8esn`]].`2esn`!,Single(`4esn` In $`3esn` Is Not Null Where @usn5 =~{`5esn`} =~`5esn`).`6esn`?,Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where .e0 Starts With 0 Starts With 0.e0|@usn6[{`5esn`}]).usn1? Load Csv With Headers From {`7esn`} Is Null As `` Fieldterminator 's_str'"), - octest_legacy:ct_string("Remove Reduce(@usn5=Count ( * ) Contains {`1esn`} Contains 07,`2esn` In `1esn` =~\"d_str\"|`3esn` In $0 In `1esn`).usn2,{#usn8:1.0[0e0..0.e0]}.usn1,(:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn` *0X7..{usn2:_usn3[$`8esn`]}]->(`8esn` :_usn4).@usn5 Union Remove Extract(`2esn` In `1esn` =~\"d_str\" Where $`4esn` In Null In 0xabc|$`5esn` Starts With $0 Starts With {0}).`4esn`,Filter(`5esn` In $999[0.0..] Where {`5esn`} Contains $0 Contains {``}).`1esn`!,Allshortestpaths(((`3esn` :`8esn`:`7esn`)<-[usn1:_usn4|:usn2]-(:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(`6esn` :_usn3:_usn3{`4esn`:0Xa Starts With {`6esn`} Starts With $usn1}))).#usn8? Optional Match @usn6=Allshortestpaths(((:@usn6:#usn8{`4esn`:$`8esn`[..00]})<-[_usn4?:_usn4|:usn2 *00]->(:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))) Where 0X7[..2.12] Create `3esn`=Shortestpath(((:usn1{usn1:{`6esn`}})-[@usn6?:`3esn`|:#usn8 *123456789..]->(:_usn3:_usn3{`7esn`:$`1esn` =~0X7})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``}))),@usn6=Allshortestpaths(((:`1esn`))) Union All Foreach(`` In .e0[..0X0123456789ABCDEF][...e12]| Return *,12.0 Ends With True Skip {`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}[Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End..[`3esn` In {7} Is Null Where {123456789} Contains $#usn8|#usn7 =~Count ( * ) =~``]][`7esn`(9e1[1000][{123456789}]).._usn3(0.12 =~$0 =~$0)] Return Distinct *,0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn` As `7esn` Limit 9e12[`6esn`..12.0]) Create `3esn`=Shortestpath((@usn5 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[:#usn8|`1esn`*{`8esn`:0Xa[usn2..]}]-(`3esn` :_usn3:_usn3{@usn5:False})),`4esn`=Allshortestpaths(((@usn5 {_usn3:`1esn` Contains {usn2} Contains $#usn8})<-[:`3esn`|:#usn8 *7..12{@usn5:_usn4 Starts With $_usn4 Starts With 12.e12}]->(#usn7 :_usn3:_usn3{`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}}))) Load Csv With Headers From 9e0 As `1esn` "), - octest_legacy:ct_string("Using Periodic Commit Load Csv From Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)[(:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0})..Shortestpath((({``})))] As `4esn` Fieldterminator \"d_str\""), - octest_legacy:ct_string("Unwind $`8esn`[$`7esn`..][0.e0..] As `4esn` Load Csv With Headers From `6esn`[..$@usn6] As @usn6 Fieldterminator 's_str' Create Unique Allshortestpaths((({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}))),usn2=Allshortestpaths(((:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null}))) Union Detach Delete [usn1 In @usn5 =~{`5esn`} =~`5esn` Where $999 Is Not Null|{_usn4} Is Not Null Is Not Null][Shortestpath((:`5esn`{``:1.0[0e0..0.e0]})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]}))..{`4esn`:{`4esn`} Ends With {usn2} Ends With {999}}][Single(`5esn` In $999[0.0..] Where .e0[..$`8esn`])..Shortestpath(((:`3esn`:@usn5$7)))],$usn2[$`2esn`..`4esn`]"), - octest_legacy:ct_string("Foreach(@usn6 In `5esn` Starts With 010 Starts With 0.0| Load Csv From .e0 =~`6esn` =~{12} As usn1 Fieldterminator \"d_str\" Return Distinct 0e0 =~`6esn` =~123456789 As @usn5,Count ( * )[True..][{#usn7}..],2.12 =~{7} As `6esn` Order By {`2esn`}[1e1..1.0][{#usn8}..$`1esn`] Ascending,0X0123456789ABCDEF Is Null Is Null Asc Skip \"d_str\"[#usn8]) Union Remove (:usn1{usn1:{`6esn`}})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(@usn6 :`1esn`)<-[`6esn`]-(`1esn` {@usn5:1.0[0e0..0.e0]}).`7esn`!,Any(`3esn` In {7} Is Null Where 1e1 Contains Count ( * )).`4esn`,#usn8:`4esn` Start ``=Relationship:usn2('s_str') ,`1esn`=Rel:`4esn`(`4esn`='s_str') Union All Unwind None(`` In `` Is Not Null Is Not Null Where $`6esn` Is Null) Contains Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}))) Contains Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End As usn2"), - octest_legacy:ct_string("Foreach(`` In {`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]} Starts With [False] Starts With Filter(#usn8 In 7[..999][..{#usn8}] Where $_usn3[.e0..$usn2])| Load Csv With Headers From 123.654[0e0..$``][$`1esn`..$`8esn`] As _usn4 ) Start _usn4=Node( {999}) ,#usn7=Node:`6esn`(`3esn`=\"d_str\")Where `3esn`[{`2esn`}] Detach Delete $12 Ends With 07 Ends With $123456789,$`6esn`[{_usn3}..$`4esn`][$_usn4...e12]"), - octest_legacy:ct_string("Foreach(`4esn` In $1000[`2esn`..`5esn`][1e1..1.e1]| Start `6esn`=Rel:#usn8(@usn6={_usn4}) ,`5esn`=Relationship:@usn5(\"d_str\"))"), - octest_legacy:ct_string("Return *,$@usn5 =~1000 =~1000 Skip $`4esn`[010..`4esn`] Limit 00[$`2esn`..][`6esn`..]"), - octest_legacy:ct_string("Optional Match Shortestpath((((:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[`2esn`?{`3esn`:{123456789} Is Null Is Null}]->(usn2 :#usn7)<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) Using Join On ``,`6esn`,usn2 Using Scan ``:`7esn` Where $999[0.0..] Create `4esn`=Shortestpath((`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})<-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(`3esn` :`6esn`)),Allshortestpaths(((_usn4 :`8esn`:`7esn`{`4esn`:{`2esn`} Is Not Null Is Not Null,`1esn`:.e1 =~$`8esn`})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2}))) Union With Distinct {12} Ends With Count ( * ) Ends With .e12 As `8esn` Skip 12 Ends With 0x0 Ends With 0.e0 Limit Case When `4esn`[`5esn`..12][@usn6..False] Then $123456789 Ends With $999 Ends With {999} When $123456789 Ends With $999 Ends With {999} Then False Is Null Is Null Else 7[True..][2.12..] End Starts With [`8esn` Ends With 999 Ends With .e12] Starts With (`5esn` :`4esn`)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null})<-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]-(`7esn` :`5esn`{`3esn`:`7esn` Is Null}) Start usn2=Rel:usn2({`4esn`}) Where $usn1 In {999} In $#usn7 Match (((`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})-[usn1:_usn3|_usn3 *..999{`2esn`:'s_str'[00][{`5esn`}],@usn6:999 Is Not Null Is Not Null}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]}))) Using Join On `1esn`,_usn3,_usn3 Union All Load Csv With Headers From 00[{`8esn`}..][{`8esn`}..] As usn2 Fieldterminator 's_str' Remove [$`8esn` =~{1000},$usn1 =~``].``?,({@usn5:usn1 Is Not Null})-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]}).#usn7!,Reduce(@usn5={123456789} =~`8esn` =~@usn5,#usn8 In 7[..999][..{#usn8}]|$@usn5 Is Not Null Is Not Null).`1esn`! With Distinct 123456789[0xabc..'s_str'][``..`1esn`] As `4esn` Order By Extract(#usn8 In 7[..999][..{#usn8}] Where 0Xa[$123456789..123.654][.e12..0.e0]) Ends With Single(_usn3 In {`3esn`}[`2esn`] Where True Contains {0} Contains 7) Ends With All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $_usn3 In {1000} In 0.12) Desc,00[{`8esn`}..][{`8esn`}..] Descending Limit Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With Reduce(`1esn`=0.12 Starts With $`5esn` Starts With 12,_usn3 In {`3esn`}[`2esn`]|$12[True..][{0}..]) Starts With Reduce(usn2=Null Ends With {`5esn`} Ends With 0.e0,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{`6esn`})"), - octest_legacy:ct_string("Create Allshortestpaths(((`8esn` )<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}))),`7esn`=((:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[`1esn`?:`4esn`]->(`5esn` :`4esn`)) Create #usn7=(({_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})-[`7esn`?*..]->(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01})-[]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})),((`8esn` )) Create Allshortestpaths((:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[@usn6:_usn4|:usn2]->(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})-[`3esn`?:@usn5]->(usn1 {`8esn`:False Is Null Is Null})) Union All Create #usn7=({@usn5:07[..True][..9e12]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}) With Distinct *,{`5esn`} =~{`3esn`} =~1.0 As `1esn` Skip {999}[_usn4..] Limit Shortestpath((((`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`2esn` *..07]-(`1esn` {#usn7:{_usn4} In {12} In $0})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})))) In ({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}) Load Csv With Headers From {`5esn`} Starts With $`5esn` Starts With .e1 As `2esn` Union With {_usn4}[{`5esn`}..{1000}][9e1..{1000}],$#usn8[$`2esn`..][{`2esn`}..],\"d_str\" Starts With $123456789 Order By $`1esn` Starts With {`8esn`} Desc,`5esn` Starts With `3esn` Asc Skip 1000 =~@usn6 =~0x0 Remove `4esn`({12} Ends With 1.0 Ends With .e0).`3esn`!,_usn4:`2esn`:usn1,[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e1 Is Not Null|Null[$`5esn`][False]].`3esn`? Create Shortestpath((@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})),(`7esn` {usn1:$0[..9e1],@usn5:`7esn`[..{usn1}]})-[{`7esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4]}]->(:`3esn`:@usn5{`2esn`:{`3esn`}[..07][..{`5esn`}]})-[usn1?]->({_usn3:False =~1e1 =~0.e0,_usn3:{999} Starts With $999})"), - octest_legacy:ct_string("Remove Reduce(#usn7=`7esn`[..2.12][..00],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|1000 =~@usn6 =~0x0).`4esn`! With Distinct *,`4esn` =~$`5esn` As usn1,{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4] Order By $`5esn` Starts With `` Descending,2.12 Is Null Asc Skip None(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Is Null Is Null Where 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Union Optional Match usn1=(((@usn5 :`8esn`:`7esn`{`6esn`:`7esn`[$0][9e12],`4esn`:.e1 Is Null Is Null})<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->(`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`))) Unwind Null Ends With {`5esn`} Ends With 0.e0 As usn1 Delete 123456789 Ends With 0.12 Ends With ``"), - octest_legacy:ct_string("Return *,Case When False Then 0.e0 Ends With $#usn7 Ends With $7 When {@usn6}[{999}..][00..] Then `5esn` Ends With {``} Ends With 12.e12 Else 123.654[$`1esn`] End[Reduce(#usn8=$`6esn` Ends With Count(*),`2esn` In `1esn` =~\"d_str\"|_usn4 Contains 2.12)..] As _usn3 Order By $12[Null..Count(*)][{`5esn`}..{999}] Desc,12.e12[7..$`6esn`] Desc Skip {`4esn`} Ends With {123456789} Ends With $`4esn` Create usn2=Allshortestpaths(((:@usn6:#usn8{`4esn`:$`8esn`[..00]})<-[_usn4?:_usn4|:usn2 *00]->(:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))),#usn8=(((`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})-[@usn5]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))"), - octest_legacy:ct_string("Foreach(_usn3 In 00[{`8esn`}..][{`8esn`}..]| Load Csv From {1000}[$`4esn`][\"d_str\"] As `8esn` Fieldterminator \"d_str\")"), - octest_legacy:ct_string("Optional Match usn1=(((usn2 {``:01[{@usn5}]})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})-[`6esn`? *0..]-(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12}))),Allshortestpaths(((`8esn` )<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}))) Using Index `6esn`:usn2(@usn6) Using Join On ``,_usn3,`1esn` Merge #usn7=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}) On Create Set @usn6+=Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where _usn4 Contains 2.12)[(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})..][#usn7(7 =~{`8esn`} =~$`6esn`,$123456789 Ends With {`1esn`} Ends With $`4esn`)..] On Create Set [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|$`4esn`[Null..]].usn1! =123.654[True..$#usn8][0.12..Count(*)] Union All Create `8esn`=(((usn2 :#usn7)<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[`7esn`:`1esn` *0X0123456789ABCDEF{`6esn`:1000[..$0][..True],_usn4:Count ( * ) Ends With $@usn5}]->(`4esn` {usn2:0x0 Is Null,`5esn`:{usn2} =~12}))),((_usn3 :`7esn`:_usn3)-[]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})) Union Unwind {12} Is Not Null As @usn6"), - octest_legacy:ct_string("Create _usn4=(_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :_usn3:_usn3{`7esn`:$`6esn`[123456789..12][True..{`3esn`}],`5esn`:0X0123456789ABCDEF[123456789]})-[?{usn1:0[`7esn`..]}]->(`2esn` :`6esn`)"), - octest_legacy:ct_string("Optional Match _usn3=Shortestpath((`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[:`3esn`|:#usn8 *7..12{@usn5:_usn4 Starts With $_usn4 Starts With 12.e12}]->(`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null})),`5esn`=(:@usn5$`5esn`) Using Scan #usn8:usn1 Using Join On ``,`6esn`,usn2 Where 9e1[..$`2esn`] Union All Foreach(`2esn` In [`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]][Case 1.0 In Count(*) When $_usn4[Count ( * )..] Then Null[``] When $1000[`2esn`..`5esn`][1e1..1.e1] Then .e12[@usn5..#usn7][010..{usn1}] Else 1.0[$`1esn`..][$123456789..] End][All(`4esn` In $`3esn` Is Not Null Where usn2 Is Not Null Is Not Null)]| Detach Delete $usn1[_usn4],.e1[..usn2][..`8esn`],$123456789 Ends With `3esn` Ends With 123456789 Load Csv From {``} Starts With $`2esn` Starts With `1esn` As `` ) Delete {`3esn`} In 01,.e1 In 0,Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]]"), - octest_legacy:ct_string("With *,0X7[1000..{`1esn`}],12.e12 Is Null Is Null Order By $`6esn`[{_usn3}..$`4esn`][$_usn4...e12] Descending,$`6esn`[.e0..$`6esn`][$_usn3..{#usn7}] Desc Skip `4esn` Is Not Null Is Not Null Where `5esn`[.e0..][07..] Create `7esn`=Shortestpath((`2esn` :`3esn`:@usn5)<-[`3esn`:`6esn`|`5esn` *..12{usn1:0X0123456789ABCDEF Is Null Is Null}]-(:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[`7esn` *0X0123456789ABCDEF]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})),#usn8=((@usn5 :usn1)<-[`5esn`? *7..12{`5esn`:{999},_usn3:$`5esn`[2.12..]}]->(:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})-[_usn4?:_usn4|:usn2 *..999]-({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}))"), - octest_legacy:ct_string("Detach Delete [False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12) Return Distinct `5esn`(Distinct `2esn` Is Null,123456789[{123456789}..'s_str'])[.._usn3(.e0[..$`8esn`])][..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}] Skip [`5esn` In $999[0.0..] Where `5esn` Starts With `3esn`|12e12 Is Not Null Is Not Null] Foreach(usn2 In $12[True..][{0}..]| Return Distinct 0X7[1000..{`1esn`}] As `3esn`,$`2esn`[12.e12..][{`4esn`}..] Order By 0.0 =~999 Asc,$`5esn` In 0.e0 Asc,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) Ascending Limit Count ( * ) Is Null Load Csv With Headers From {1000}[$`4esn`][\"d_str\"] As _usn3 )"), - octest_legacy:ct_string("Create Shortestpath((`` {@usn6:1.0[$`1esn`..][$123456789..]})<-[?{usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null}]-(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})),Shortestpath(({_usn3:.e12[@usn5..$12]})<-[`6esn`? *..010]-({#usn7:2.12 Contains usn2 Contains True})<-[{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(`3esn` :`2esn`:usn1{`8esn`:9e12[`6esn`..12.0],``:01[{@usn5}]})) Match Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Using Index ``:usn1(@usn5) Using Index `3esn`:`5esn`(#usn7) Where $`5esn`[2.12..] Union Merge #usn8=((:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]})) On Create Set ``(0X7 =~9e1,0.0 =~999).`3esn`! =(:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})<-[{`8esn`:07 In `2esn` In 12e12}]-(`3esn` :@usn5)-[?:`5esn`]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}) Is Not Null Is Not Null On Create Set ($#usn8)-[:`8esn` *..01]->(`` {`3esn`:{12} Contains {123456789} Contains `4esn`}).`6esn`! =999 Ends With Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 1.0 In Count(*)),@usn6+=None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12])[Reduce(`4esn`=`1esn` =~0 =~$#usn7,`2esn` In `1esn` =~\"d_str\"|{123456789} Is Null Is Null)][{``:`7esn` Starts With $#usn7 Starts With $`7esn`}],Shortestpath(((usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]->(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(:@usn6:#usn8$`5esn`))).``? =(:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12} Unwind $`1esn`[{`2esn`}..] As #usn8 Union All Create Unique `1esn`=((:usn2{#usn8:$`5esn` In $`6esn`})<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})),`5esn`=((:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}))"), - octest_legacy:ct_string("Create Unique (((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`8esn`?:`2esn`*..{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]}))),((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null})) Union With Distinct *,2.12 Ends With $_usn3 Ends With `3esn` As `7esn`,0 In `2esn` In 010 Order By Count ( * ) Starts With 7 Starts With $123456789 Descending,01234567 Ends With .e12 Ends With $#usn7 Asc,$`6esn` =~1.e1 =~12 Asc Skip [{`3esn`} Is Not Null Is Not Null] Limit Single(#usn8 In {`5esn`}[.e1..``] Where $`` =~12.0 =~$`7esn`) Contains Case When {`1esn`}[12.0..`2esn`][@usn6..{usn1}] Then 's_str'[00][{`5esn`}] Else $#usn7 Is Null End Contains None(`5esn` In $999[0.0..] Where .e1 =~$`8esn`) Where $`8esn` Contains 123456789 Contains $usn2 Merge `2esn`=(:`4esn`{_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[#usn8:@usn5 *..01]-(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null}) On Match Set (`` :usn2)<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->({`1esn`:{1000}[{_usn3}..],`1esn`:{123456789}[9e12][{0}]}).usn1 =False[..``],None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $#usn7[@usn5..{1000}][1.e1..7]).@usn5 =$usn2[9e0],#usn8 =0x0 Ends With Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..]) Ends With Filter(#usn7 In {``} Is Not Null Where 0x0 Is Null) Unwind $`8esn` =~{1000} As `3esn` Union All Create Unique ((`3esn` :usn2)) Foreach(#usn7 In {0}[``..$usn1][9e1..0Xa]| With Distinct *,$@usn5 =~1000 =~1000 Skip $`4esn`[010..`4esn`] Limit 00[$`2esn`..][`6esn`..] Load Csv From Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where _usn4 Contains 2.12|{_usn3}[..\"d_str\"]) Contains Shortestpath((`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})) Contains [$123456789 Ends With $999 Ends With {999},12.0 Contains #usn7] As _usn4 ) Create Unique `7esn`=Allshortestpaths(((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[`1esn`?:usn2|``{_usn4:$`4esn`[..$`3esn`][..0.0],@usn6:0e0 Starts With 2.12 Starts With $12}]->(:_usn3:_usn3{`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})<-[`8esn` *0X0123456789ABCDEF]->(usn2 :_usn4))),#usn7=Allshortestpaths((@usn6 :`6esn`)<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3))"), - octest_legacy:ct_string("Return {@usn5}[{#usn8}][9e0],$`3esn` In Null As `3esn` Order By True Contains {0} Contains 7 Ascending,[`8esn` In 01[2.12..`8esn`] Where True[00][0Xa]] Contains Shortestpath((((:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[:`6esn`|`5esn` *123456789..]-(#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})))) Contains Extract(_usn3 In {`3esn`}[`2esn`] Where 0e0[07]) Desc Limit Null In $7 In .e1 Create Unique ((`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})) Return Distinct *,(:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8)[Reduce(`7esn`=7[$`2esn`..{`5esn`}],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$_usn4[0e0..][False..])..({``:00 Starts With 0xabc,`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})][{}..{@usn6:`4esn`[..010][..{12}]}],(:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[`6esn` *0Xa{_usn3}]-({@usn5:usn1 Is Not Null})-[:`8esn` *0..{_usn3:`4esn` Ends With 07 Ends With {`3esn`}}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})[..[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]|{7}[..12e12][..Count ( * )]]] Order By (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12} Asc,({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}) In Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 07 In `2esn` In 12e12) Descending,All(#usn7 In {``} Is Not Null Where {_usn4}[...e1][..$7]) Is Null Is Null Ascending Skip 1e1 Contains 0e0 Union Merge #usn8=(((`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})-[@usn5]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))"), - octest_legacy:ct_string("Create (`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]->(usn2 :`6esn`{#usn7:Count ( * ) Contains 07})<-[`4esn`?{`3esn`:\"d_str\" Is Null Is Null,usn1:0X0123456789ABCDEF[123456789]}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]}),#usn7=Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))) Start `7esn`=Rel:_usn4(``={#usn7}) Where 00 Starts With 0xabc Merge ((#usn7 :#usn7)<-[#usn8:@usn6|`6esn`{`8esn`:True[00][0Xa]}]->(`7esn` :`7esn`:_usn3{usn2:_usn3[$`8esn`]})) On Match Set Case When 1.0[0X0123456789ABCDEF] Then 9e1 In $`3esn` In $@usn6 End.#usn8? =12e12 Is Null Is Null,Filter(#usn8 In 7[..999][..{#usn8}] Where 0e0 Contains Null).`6esn`! =0xabc[.e0],@usn6+={999} Is Null Is Null On Create Set `4esn` =Shortestpath(((({#usn7:2.12 Contains usn2 Contains True})-[_usn3?:`6esn`|`5esn` *0X0123456789ABCDEF]-(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}))))[Case When $999[0.0..] Then 12 Ends With 0x0 Ends With 0.e0 When `` Is Not Null Is Not Null Then {`3esn`}[..07][..{`5esn`}] End..[`3esn` In {7} Is Null Where usn1 Is Null Is Null]],Case When Count ( * ) Ends With $@usn5 Then _usn4 Contains 2.12 Else False =~$7 =~2.12 End.`5esn`! =7 Ends With $`4esn` Union Merge @usn5=Shortestpath((((`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``})-[#usn8?{`5esn`:#usn7 Contains _usn3 Contains {`3esn`}}]-(:``:#usn8)))) On Match Set `5esn` ={123456789} Is Null Is Null,#usn8 =123.654[12..][_usn3..] Create ((`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})),(((@usn5 :_usn4{#usn7:Null Ends With `2esn` Ends With $usn1,`5esn`:12.0})-[?:#usn7 *01234567..0Xa]->({``:$`8esn` =~{1000}})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12}))) Remove Reduce(`6esn`={#usn8}[010],usn1 In @usn5 =~{`5esn`} =~`5esn`|`4esn`[``]).@usn5!,[`7esn`[$0][9e12],$`7esn`['s_str']].#usn8!,Case 7[$`2esn`..{`5esn`}] When 0e0[..010] Then {123456789} Is Null Is Null Else `6esn`[..$@usn6] End.``!"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From {_usn4} Starts With 0.e0 Starts With 0x0 As `8esn` Fieldterminator 's_str' With *,Null[{#usn7}..][0X0123456789ABCDEF..] As `2esn` Where usn2 Is Null Create Unique `5esn`=((@usn5 {usn2:0.e0[123.654][01]})-[`3esn`:#usn7]->(@usn6 {_usn3:{#usn7} Is Not Null Is Not Null})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]}))"), - octest_legacy:ct_string("Merge _usn4=Shortestpath((((#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`8esn` :@usn6:#usn8)<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})))) Union All Optional Match `4esn`=((:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[`1esn`?:`4esn`]->(`5esn` :`4esn`)) Using Index _usn4:`5esn`(`6esn`) Using Join On `4esn`,usn1,`2esn` Where `6esn`[12..$usn2][{#usn8}..{usn2}] Union All Return Count ( * )[$_usn4..$`4esn`] As _usn4,Case _usn3[$`8esn`] When 12e12 Contains 0Xa Then 7[{0}..{_usn4}] End Ends With Reduce(usn2=$`5esn`[`3esn`..],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|{_usn4} In {12} In $0) Ends With [$0] Order By `7esn` In 00 Asc,All(`2esn` In `1esn` =~\"d_str\" Where `` Ends With 123456789 Ends With 123.654)[..$_usn3][..[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 7[$`8esn`..123456789][$usn1..$usn1]]] Descending,00[`2esn`..12][123456789..0.e0] Ascending"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From [.e12[@usn5..#usn7][010..{usn1}]] In All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {`6esn`} Contains \"d_str\") In None(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) As usn1 "), - octest_legacy:ct_string("Foreach(`3esn` In $`6esn` Ends With Count(*)| Create #usn8=((_usn4 {usn1:True Contains {0} Contains 7})) Load Csv From .e1 In 0Xa In #usn7 As `2esn` Fieldterminator \"d_str\") Union All Foreach(`2esn` In @usn6 In 1000 In $``| Create Unique ((`1esn` {`5esn`})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})),Shortestpath((((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`8esn`?:`2esn`*..{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]}))))) Union Remove `6esn`(Distinct `5esn`[7][{usn2}],.e12[@usn5..$12]).usn1!,{`1esn`:True[..$`6esn`]}.`2esn`,Reduce(@usn6=0.e0[#usn8],usn1 In @usn5 =~{`5esn`} =~`5esn`|$`5esn` In $`6esn`).`5esn`? Load Csv From Shortestpath(((:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]-(:`5esn`{``:1.0[0e0..0.e0]})<-[``? *..0x0{#usn7:False =~$7 =~2.12}]->(`3esn` :usn2)))[['s_str' In 00,{@usn6}[$`6esn`..`4esn`]]..][Case @usn6 Starts With `6esn` Starts With $`1esn` When {`3esn`}[`2esn`] Then Null In $7 In .e1 When {0}[@usn6..$1000] Then 12.0 Contains #usn7 End..] As @usn5 With Distinct 0x0[{`7esn`}..][$usn2..],Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {`3esn`} Is Not Null Is Not Null)[{@usn6:1.0[$`1esn`..][$123456789..]}] As `6esn`,12.e12 Is Not Null Is Not Null As #usn8 Skip 12.0[..9e0][..$``]"), - octest_legacy:ct_string("With Distinct $#usn7 Contains 0x0 Contains 1000,Shortestpath(({`7esn`:\"d_str\" Starts With $123456789})<-[`4esn`:``{usn1:`` Is Not Null Is Not Null,usn1:{1000}[{_usn3}..]}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[`4esn`]->(:`6esn`$123456789)) Is Null As `4esn`,{@usn6} Is Not Null Is Not Null Order By 7[$`2esn`..{`5esn`}] Desc,0Xa[2.12] Desc,0.0 Asc Remove Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|`5esn` Ends With {``} Ends With 12.e12).usn2?,[#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`2esn`} Ends With {`7esn`}|12e12[0e0][9e1]].`1esn`?,{`6esn`:1.e1[$`1esn`..@usn6][$0..$_usn3],`8esn`:{``} Is Not Null}._usn4! Unwind {1000} In {@usn6} In @usn5 As `2esn` Union With Distinct Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)[None(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Starts With $1000)..{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}][Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8)..None(#usn8 In {`5esn`}[.e1..``] Where $`3esn` Is Not Null)] As ``,$`3esn` In $`6esn` In $`` Order By `7esn`[..{usn1}] Ascending,Count(*) Ends With 12.0 Ends With 12 Asc,{_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains [1.0[0X7][{`5esn`}]] Asc Limit 2.12 Where $`3esn` In $_usn4 In {_usn3} Create Unique `4esn`=Allshortestpaths((:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})),#usn8=Allshortestpaths((({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})-[? *..0x0{_usn3:01 Ends With 999 Ends With {`7esn`}}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[?{usn1:0[`7esn`..]}]->({usn1:{`7esn`}[`6esn`][#usn7],usn1:{999} Starts With $999}))) Foreach(_usn4 In {@usn6} Ends With 's_str' Ends With 12.0| Return `6esn`[2.12..01][{``}..False] As @usn5 Skip 1.0[$`1esn`..][$123456789..] Limit Allshortestpaths((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3))[{_usn3:01[{@usn5}]}..Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where True In 0e0)][Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0.12 In _usn3 In {0})..None(`3esn` In {7} Is Null Where 0Xa[2.12])] Delete Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With Reduce(`1esn`=0.12 Starts With $`5esn` Starts With 12,_usn3 In {`3esn`}[`2esn`]|$12[True..][{0}..]) Starts With Reduce(usn2=Null Ends With {`5esn`} Ends With 0.e0,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{`6esn`}))"), - octest_legacy:ct_string("Remove Reduce(usn2=$`5esn`[`3esn`..],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|{_usn4} In {12} In $0).usn1!"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From `7esn`[..2.12][..{usn1}] As `7esn` Create Unique ({`8esn`:`3esn`[{0}][usn1]})-[_usn4?:_usn4|:usn2 *00]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``})<-[ *0X7..]-(`2esn` {_usn3:`1esn` Contains {usn2} Contains $#usn8}),(#usn8 :@usn6:#usn8)"), - octest_legacy:ct_string("Start #usn7=Node:@usn5('s_str') ,`5esn`=Relationship:``(@usn6={usn1}) Start `2esn`=Node:@usn6({_usn4}) Where $@usn5 Starts With $1000 Union All Foreach(_usn3 In 123456789 Ends With $`6esn` Ends With $#usn7| Unwind $`1esn`[{`2esn`}..] As `7esn` Create `8esn`=((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}}))) Start usn1=Rel:@usn6(#usn7='s_str') ,``=Node:@usn6({_usn4})"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From 123456789[{123456789}..'s_str'] As `5esn` Merge Allshortestpaths(((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})-[`7esn`:#usn8|`1esn` *0xabc..]->(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]->(:@usn6:#usn8))) Start #usn7=Node:``(\"d_str\") ,`3esn`=Rel:`7esn`(`3esn`='s_str')Where 9e0"), - octest_legacy:ct_string("With Distinct 0x0 Ends With Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..]) Ends With Filter(#usn7 In {``} Is Not Null Where 0x0 Is Null) As ``,Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End Starts With Single(`2esn` In `1esn` =~\"d_str\" Where False Starts With {`5esn`}) Starts With Extract(`5esn` In $999[0.0..] Where 0x0 Ends With $12),`4esn` =~$`5esn` As `3esn`"), - octest_legacy:ct_string("Foreach(usn2 In usn2[{7}]| Unwind 7 Is Not Null Is Not Null As @usn5 Return Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]) =~({``:$`8esn` =~{1000}})<-[#usn8? *0..]->(`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7}) =~Shortestpath((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})) As #usn8,Reduce(`8esn`={@usn5}[{#usn8}][9e0],`3esn` In {7} Is Null|0e0 Starts With 1000 Starts With #usn7)[Single(#usn8 In 7[..999][..{#usn8}] Where 123456789 Is Null)] Order By 's_str' In 00 Desc,{1000}[{_usn3}..] Descending,$usn1[...e0][..$_usn3] Asc) Create Unique (`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]}),_usn4=Shortestpath(((:`1esn`{`5esn`:1.0 In Count(*)}))) Union All Remove Any(`3esn` In {7} Is Null Where 1e1 Contains Count ( * )).`4esn`,[#usn8 In 7[..999][..{#usn8}] Where $_usn4[1.e1]['s_str']|`2esn` Is Null].usn1,None(#usn8 In 7[..999][..{#usn8}] Where $_usn3 Contains 999 Contains \"d_str\")._usn3? Unwind [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}|{usn1} Is Null Is Null][Allshortestpaths(((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})))..] As `3esn` Start `4esn`=Node:_usn4(#usn7=\"d_str\") "), - octest_legacy:ct_string("Create `4esn`=Allshortestpaths((((#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)-[@usn5?:`4esn`]-(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})))),`5esn`=Allshortestpaths(((#usn8 {_usn4:00[`2esn`..12][123456789..0.e0],`8esn`:0x0[`4esn`..'s_str']}))) Union Load Csv From {usn2} =~12 As #usn8 Unwind [`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]][..None(#usn8 In 7[..999][..{#usn8}] Where $`7esn`['s_str'])][..`1esn`(Distinct 12e12[$`3esn`],0.0 =~999)] As `8esn`"), - octest_legacy:ct_string("Start #usn7=Node:`6esn`(`3esn`=\"d_str\") ,``=Rel:#usn8(_usn3='s_str') With *,Reduce(`1esn`={0} In $_usn3,@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|{``} Ends With `7esn` Ends With 0.0) Is Null Is Null As `3esn`,usn1 Ends With $@usn6 Ends With `3esn` Limit {`4esn`}[{`5esn`}..$`6esn`] Where $0[12.e12..] Delete usn2(Distinct Null In $7 In .e1,`1esn` Contains {usn2} Contains $#usn8) In All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7) In Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 2.12 Ends With $_usn3 Ends With `3esn`|{123456789} Contains $#usn8),Reduce(`8esn`=0[..usn2][..{@usn5}],#usn8 In {`5esn`}[.e1..``]|Count ( * )[True..][{#usn7}..])[2.12..][{999}..] Union All Remove Case When {usn2} =~12 Then `7esn`[..2.12][..00] When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null End.usn2?,[1000 =~@usn6 =~0x0,12.e12[7..$`6esn`],_usn4 Is Null Is Null].#usn7,[{_usn4} Is Not Null Is Not Null,{#usn7} Is Not Null Is Not Null,$usn1[.._usn4][..False]].`4esn`! Foreach(usn1 In None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {@usn6}[{999}..][00..]) Ends With Shortestpath((`6esn` {_usn4:0Xa =~Null =~$``})<-[``? *0X7..]->(`` :`1esn`)) Ends With Reduce(_usn3={7}[..1.0][..9e0],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|`1esn` Contains {usn2} Contains $#usn8)| With Distinct *,{``}[`8esn`..],Case {`3esn`}[@usn6..0Xa][{12}..0Xa] When {usn1}[0X0123456789ABCDEF] Then 0x0 Ends With $12 When 0e0 Starts With `2esn` Starts With $`` Then {123456789}[9e12][{0}] Else 0X7[1000..{`1esn`}] End[..({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})] As #usn7 Order By False Contains {`6esn`} Ascending,{`1esn`}[usn1][.e1] Asc Where `7esn`[..2.12][..{usn1}] Remove exists($123456789[_usn3][{#usn7}]).`6esn`?,count(Distinct $999 Is Not Null).`8esn`!,Case When $`5esn` In $`6esn` Then $`6esn` Ends With Count(*) When 0X7[`7esn`][123.654] Then 0X0123456789ABCDEF[{_usn4}..00] Else $@usn5 Is Not Null End.usn2) Union All With 1000 In `7esn` In 9e12 As `6esn`,$12 Starts With {`1esn`} Starts With Null Skip .e12[@usn5..$12] Limit (`` :_usn4{_usn4:False[..``],usn2:9e1[1000][{123456789}]})<-[:`5esn`{@usn6:$#usn8 Ends With $`2esn` Ends With $@usn6,`6esn`:{7}[..12e12][..Count ( * )]}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]->({@usn6:$usn1 Ends With $`` Ends With $12}) Starts With `3esn`($123456789 Is Null Is Null,0Xa[usn2..]) Starts With (@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(@usn5 {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]->(#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12}) Where 0X7 =~9e1 Unwind $7[0.12][usn1] As `6esn`"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From $`5esn`[{`3esn`}] As `8esn` Fieldterminator \"d_str\" Unwind {`3esn`}[..07][..{`5esn`}] As usn2 Create @usn6=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7)),(({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}))"), - octest_legacy:ct_string("Load Csv From Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where @usn6 Is Null Is Null)[(`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})..] As `7esn` Merge _usn3=(#usn8 {`2esn`:$`5esn`[..$`5esn`][..$12]})-[#usn7:@usn5 *0X7..]->(@usn5 :usn1{`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]})-[?:`2esn` *00]->(`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}) On Create Set _usn3+=_usn3 Contains Count(*) Contains 12e12,Reduce(`3esn`=0Xa[2.12],#usn7 In {``} Is Not Null|$`3esn` In $`6esn` In $``).usn2? =123.654[`3esn`..],{@usn5:$`` =~12.0 =~$`7esn`,`7esn`:.e12 Ends With _usn4}.#usn8? ={12} Is Not Null Create Allshortestpaths((`4esn` {usn2:0x0 Is Null,`5esn`:{usn2} =~12})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]})-[usn1:_usn3|_usn3 *..999{`2esn`:'s_str'[00][{`5esn`}],@usn6:999 Is Not Null Is Not Null}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})) Union All Merge `4esn`=((:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[`6esn`?:_usn4|:usn2 *1000..00{`6esn`:@usn5 In {`7esn`} In `2esn`,@usn5:0.0 =~999}]->(:usn1{usn2:7[..999][..{#usn8}]})) On Create Set _usn4 =Reduce(usn1={`6esn`} =~$999,`8esn` In 01[2.12..`8esn`]|9e1[1000][{123456789}]),Extract(`4esn` In $`3esn` Is Not Null Where `5esn` Starts With 010 Starts With 0.0|`7esn`[..{usn1}])._usn4! =None(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 123.654 Contains $`4esn` Contains 1.0) Starts With Reduce(_usn3={@usn5} Is Null Is Null,#usn8 In {`5esn`}[.e1..``]|{_usn3}[..\"d_str\"][..`5esn`]) Union With All(`` In `` Is Not Null Is Not Null Where $_usn4 Starts With 1e1)[Shortestpath(((:usn1{`3esn`:{123456789} Is Null Is Null})-[_usn4{`5esn`:{0} Ends With $_usn3 Ends With $`7esn`,`2esn`:Null[``]}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[? *0Xa]-({`7esn`:{999}})))][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)] As ``,Shortestpath((`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})<-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(`3esn` :`6esn`))[(:`5esn`{``:1.0[0e0..0.e0]})-[ *7..12]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})] Order By `1esn`($123456789 Starts With 9e0 Starts With 's_str',{usn2}[.e0..$999])[{usn2:{`3esn`} In 0X7,_usn3:7 Starts With {@usn6} Starts With $``}..Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {usn1} In 2.12 In 1000)][Case 0[`7esn`..] When 123456789 Is Null Then .e12 Is Not Null Is Not Null Else $@usn5 =~1000 =~1000 End..[`4esn` In $`3esn` Is Not Null Where `8esn`[{123456789}..]|{`3esn`}[`2esn`]]] Desc,(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]}) Is Not Null Is Not Null Descending Limit [`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null Start `8esn`=Node:@usn6({_usn4}) Where `3esn`[`3esn`..][#usn8..]"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From usn2(Distinct Null In $7 In .e1,`1esn` Contains {usn2} Contains $#usn8) In All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7) In Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 2.12 Ends With $_usn3 Ends With `3esn`|{123456789} Contains $#usn8) As `5esn` Fieldterminator 's_str' Merge `8esn`=(_usn4 :usn2{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}) On Match Set #usn8+=`2esn`(Distinct $``,7 Starts With {@usn6} Starts With $``) Contains {@usn6:_usn3[$`8esn`],usn1:$@usn5 Is Not Null} Contains {@usn5:`8esn`[{123456789}..]},({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(#usn7 :#usn8:#usn8{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null}).@usn6? =01[{@usn5}] Remove None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa).usn2,Allshortestpaths((`` :#usn7))._usn4"), - octest_legacy:ct_string("Detach Delete [`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\"] Is Null,$12[Null..Count(*)][{`5esn`}..{999}],{`3esn`} Unwind $12[`5esn`..] As `7esn` Union All Foreach(`3esn` In 010[Count(*)..12][$_usn3..{`8esn`}]| Create ``=Shortestpath(({`1esn`:`3esn`[{`2esn`}]})-[`3esn`?*{`8esn`:False Is Null Is Null}]->(:#usn7{_usn4:$`8esn` Contains 123456789 Contains $usn2})),@usn6=Allshortestpaths(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})))) Merge Shortestpath((((`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})<-[`8esn`]-(usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[`3esn`?:`` *..0x0{`4esn`:0.e0 Contains 9e1 Contains {`7esn`},@usn6:$@usn5 =~1000 =~1000}]->(:@usn5{_usn3:07 =~01})))) On Match Set None(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $12[True..][{0}..]).usn1! ={123456789} Is Not Null,`5esn`+=Reduce(``={999},#usn8 In {`5esn`}[.e1..``]|$_usn3['s_str'][07])[..{`4esn`:0.0[$0][{@usn5}]}][..Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..])],{`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000}.usn1 ={`3esn`}[..07][..{`5esn`}] On Create Set None(`2esn` In `1esn` =~\"d_str\" Where $`1esn`[1.0..][_usn3..]).`1esn`? =.e12 Contains 0X7 Contains {0} Delete 123456789[$1000..$#usn7],0.e0[#usn8]"), - octest_legacy:ct_string("Match (((usn2 {``:01[{@usn5}]})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})-[`6esn`? *0..]-(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12}))) Using Join On `5esn`,`6esn`,`2esn` Using Index `5esn`:`2esn`(`5esn`) Union All Foreach(`` In $``| Optional Match `2esn`=((`5esn` :_usn4{7})<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})-[:`4esn` *0xabc..{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(`3esn` :`5esn`)) Using Scan `1esn`:usn2 Where {@usn5} Is Null Is Null) Detach Delete 0.0 =~0 =~`6esn`,@usn5 In $7,{`7esn`}[..$@usn5][..$#usn8] Return Distinct *,{`3esn`:{@usn6}[{999}..][00..]}[count(Null Ends With {`5esn`} Ends With 0.e0,{usn1} In 2.12 In 1000)][All(`` In `` Is Not Null Is Not Null Where Count(*)[..usn2][..usn2])],9e1[..$`2esn`] As `` Skip 0X7[{@usn6}] Limit {`2esn`} In 12 Union Merge #usn8=(_usn4 :`2esn`:usn1{_usn3:0.e0 Starts With `2esn`}) Unwind $12[..{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}] As `5esn` Match `3esn`=(({`1esn`:$`8esn`[1000..0Xa]})),`4esn`=Allshortestpaths(((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(@usn5 :`4esn`)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]})))"), - octest_legacy:ct_string("Create #usn7=Shortestpath((`2esn` :usn1)<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(`3esn` :`8esn`:`7esn`)<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)),usn2=Shortestpath(({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From {`4esn`} Ends With {usn2} Ends With {999} As _usn4 Remove Extract(`4esn` In $`3esn` Is Not Null Where Null Ends With {`5esn`} Ends With 0.e0|0X0123456789ABCDEF[123456789]).`4esn`? Remove [`2esn` In `1esn` =~\"d_str\" Where usn2 Ends With 999 Ends With .e1|9e0[..999]].`4esn`,Case When usn1 In 7 In {123456789} Then `5esn`[_usn4..] When `7esn`[9e0..] Then {`3esn`} In 01 End.`4esn`"), - octest_legacy:ct_string("Delete Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},Shortestpath(((:`8esn`:`7esn`$#usn7)-[`5esn`:`8esn`]->(#usn8 {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]}))) In [_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..]|1.0 Is Null Is Null] In Case When Count ( * ) Contains 07 Then 123.654[$`1esn`] End,$123456789 Is Null Is Null Unwind `7esn`(usn2 Is Null)[Case {usn1}[0X0123456789ABCDEF] When $`` Then `8esn` Contains $usn1 Contains $12 Else 's_str'[00][{`5esn`}] End] As @usn6 With *,123.654 Is Not Null,Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..] As `7esn` Order By Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End[[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]]..Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})))] Ascending,All(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Contains (`5esn` :_usn4{`5esn`:07[..True][..9e12]})-[`8esn`?:`2esn`{@usn6:{12}[..0X7]}]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]})<-[_usn4{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00}) Contains [0.12[$`3esn`..$_usn3][12.0..usn1]] Ascending Skip {_usn4} In {12} In $0 Where {7}[..12e12][..Count ( * )]"), - octest_legacy:ct_string("With Distinct [`5esn`[{`4esn`}..`2esn`],Null Ends With {`5esn`} Ends With 0.e0,010[#usn7..True]] Contains [`3esn` In {7} Is Null Where {usn2}[.e0..$999]|Count ( * ) Contains `8esn` Contains .e1] Contains Reduce(``=@usn5 In {`7esn`} In `2esn`,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{_usn4}[1000..{@usn5}]) As `3esn`,{7}[$7..$``][{``}..{7}] As usn2,{1000}[{_usn3}..] As #usn7 Skip Shortestpath((_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})) Contains [`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 7 Starts With {@usn6} Starts With $``|.e12 Is Not Null Is Not Null] Limit $`6esn` Ends With Count(*) Where `4esn`[`5esn`..12][@usn6..False] With Distinct *,0.0 =~999 As `4esn` Limit 9e1[..$`2esn`] Where $#usn8[9e12..][.e1..] Union Merge `2esn`=Allshortestpaths(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Match `8esn`=Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))) Where False =~1e1 =~0.e0 Create Unique `1esn`=(`5esn` :_usn4{7})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}),`2esn`=Shortestpath(({@usn5:07[..True][..9e12]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]})) Union Remove $`1esn`._usn3,{`2esn`:$#usn7[#usn7..],_usn4:'s_str' Is Not Null Is Not Null}.@usn6 Start `5esn`=Relationship(*) Unwind (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12} As `1esn`"), - octest_legacy:ct_string("Remove Reduce(#usn7=0Xa[2.12],`4esn` In $`3esn` Is Not Null|usn1 Is Not Null).`5esn`,None(`4esn` In $`3esn` Is Not Null Where {`4esn`}[$123456789..][$#usn7..]).`3esn`! Load Csv With Headers From $usn2[$`2esn`..`4esn`] As `2esn` "), - octest_legacy:ct_string("With Distinct *,`1esn` Contains {usn2} Contains $#usn8,$`3esn` In $_usn4 In {_usn3} As `4esn` Where $`4esn`[Null..]"), - octest_legacy:ct_string("Remove [_usn3 In {`3esn`}[`2esn`] Where 1e1 In 123.654 In `3esn`|.e1[..usn2][..`8esn`]].@usn6?,[{usn1} Is Null Is Null].`5esn`"), - octest_legacy:ct_string("Create Unique usn1=Allshortestpaths(((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))) Detach Delete Reduce(#usn7=`3esn`[{`2esn`}],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|#usn8 Is Not Null)[(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(#usn7 {_usn3:`4esn`[..Count ( * )][..{#usn7}]})..None(`8esn` In 01[2.12..`8esn`] Where {usn2})],Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))),12 Ends With 0x0 Ends With 0.e0 Create Unique usn2=(`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[@usn5?:`3esn`|:#usn8{_usn4:{999}}]->(:#usn8:#usn8{``:1.0[0e0..0.e0]}),#usn8=((`3esn` {`8esn`:\"d_str\" Contains {123456789} Contains 01,@usn5:`1esn` In .e0 In {`3esn`}})-[#usn7?:`3esn`|:#usn8]->(`2esn` :usn1)-[ *..999{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(@usn5 {_usn3:`1esn` Contains {usn2} Contains $#usn8})) Union All Create `4esn`=Allshortestpaths(((usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})<-[`2esn`?:`7esn`]->(`7esn` {`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]}))) Create Shortestpath((({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`6esn`?:_usn4|:usn2 *1000..00{`6esn`:@usn5 In {`7esn`} In `2esn`,@usn5:0.0 =~999}]-(usn2 :_usn4)-[usn1? *1000..00]->(#usn7 :@usn5{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}))),(:`8esn`:`7esn`) Union All Remove All(`2esn` In `1esn` =~\"d_str\" Where 0e0 Ends With 1.e1 Ends With $`4esn`).`8esn`?,(_usn4 :usn1)-[`7esn`:`1esn` *0X0123456789ABCDEF{`6esn`:1000[..$0][..True],_usn4:Count ( * ) Ends With $@usn5}]->(`4esn` {usn2:0x0 Is Null,`5esn`:{usn2} =~12})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(_usn3 {#usn8:_usn4 Is Null Is Null}).usn2?"), - octest_legacy:ct_string("Return {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}])"), - octest_legacy:ct_string("Detach Delete {#usn8} Contains 0.0 Contains Count(*),{0} Contains 0.0 Contains $@usn5 Start `3esn`=Node:usn2(#usn8=\"d_str\") Where `7esn`[$0][9e12] With 12.e12[`3esn`] As #usn7,{12} Ends With 1.0 Ends With .e0 As `5esn` Skip {@usn5:usn1[`5esn`..$7],@usn6:{123456789} Is Not Null} In None(`5esn` In $999[0.0..] Where .e1 =~$`8esn`) In `7esn`(Distinct {_usn4} Ends With `6esn`,{@usn6}[7]) Limit False =~1e1 =~0.e0 Union Create Unique `2esn`=(((`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[:`8esn` *..01]->({#usn7:0.e0 Starts With `2esn`})-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(@usn5 {usn2:0.e0[123.654][01]}))),((`3esn` :_usn3:_usn3{@usn5:False})-[?*]-(`2esn` :`8esn`:`7esn`{`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})<-[?:`2esn` *00{@usn6:usn1[`5esn`..$7],`3esn`:{`7esn`}[..$@usn5][..$#usn8]}]-(:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})) Load Csv From Allshortestpaths((((:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]->(:`4esn`{``:2.12 Is Not Null Is Not Null}))))[{`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null}][Allshortestpaths(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})))] As `2esn` "), - octest_legacy:ct_string("Remove Reduce(@usn5=#usn7,`4esn` In $`3esn` Is Not Null|0[`7esn`..]).usn1? Start #usn8=Node:usn1(@usn6={`5esn`}) Merge `5esn`=Shortestpath(((@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[? *..12{#usn8:`5esn` Is Null,#usn8:`1esn`[{usn1}..``][7..$#usn8]}]-(`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]}))) On Create Set Reduce(`3esn`=0e0 Starts With 2.12 Starts With $12,@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|{_usn4} In {12} In $0).usn2? =.e12[$usn2..][12.e12..],_usn4+=Reduce(`1esn`={0} In $_usn3,@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|{``} Ends With `7esn` Ends With 0.0) Is Null Is Null Union Merge @usn5=(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(`2esn` :`8esn`:`7esn`) Load Csv From `5esn`[{`4esn`}..`2esn`] As `8esn` Fieldterminator \"d_str\" Detach Delete False Starts With {`5esn`} Union All Create Unique (:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3) Merge `4esn`=(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}) On Create Set `5esn` =$`` Is Not Null,{usn2:usn2 Is Not Null Is Not Null}.usn1? =Case When 07 Contains 0X7 Contains $`8esn` Then 123456789[{123456789}..'s_str'] When _usn3[_usn3..][12.e12..] Then $12[True..][{0}..] End Is Null Is Null,[{_usn4}[...e1][..$7],_usn4 Starts With $_usn4 Starts With 12.e12].#usn8? =0X7[0e0..`7esn`][1000..0e0] Load Csv With Headers From $_usn4[1.0..{#usn7}][9e1..$`1esn`] As usn2 "), - octest_legacy:ct_string("Create `4esn`=((@usn5 :`6esn`)) Unwind usn2 As `5esn` Union Delete 010 In Count(*),Count(*)[..usn2][..usn2] Unwind `3esn`[$`1esn`..999][``..$123456789] As usn1 Union All With *,12[..$`4esn`],Case When 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] Then {1000} =~0 =~123.654 When `8esn`[`4esn`..{#usn8}][$12..2.12] Then 00[$`7esn`] End Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`7esn` =~{`8esn`} =~$usn1) Contains [0.12 =~`5esn` =~`5esn`] Return *,{12} Is Not Null As `7esn` Skip 9e12 Is Not Null Is Not Null"), - octest_legacy:ct_string("Unwind Shortestpath((((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))))[..Case 0Xa =~123456789 =~_usn4 When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $1000 In $1000 In $`3esn` Then 0.e0[#usn8] End][..(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})] As `3esn` Union All Create Unique ((({`2esn`:{7} In `2esn`,`1esn`:`4esn`[1.0]})-[_usn4]-(:@usn5{#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})-[`1esn`? *1000..00{@usn5:.e0[..$`8esn`],`4esn`:{usn2} =~12}]->(_usn4 {usn1:True Contains {0} Contains 7}))),Shortestpath((:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})-[:#usn7 *..010]->(#usn8 :usn1)) Create Unique `8esn`=Allshortestpaths(((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]}))),Allshortestpaths((`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]}))"), - octest_legacy:ct_string("With Distinct True =~010 Order By _usn4 Contains 0e0 Descending Where $_usn4[1.e1]['s_str'] Union All Optional Match Shortestpath(((({#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[`4esn`]->(:`6esn`$123456789)))) Using Join On `1esn` Using Join On `4esn`,`8esn`,`6esn` Where False =~1e1 =~0.e0 Union All Load Csv With Headers From .e12 Ends With $`2esn` Ends With {``} As _usn3 "), - octest_legacy:ct_string("Foreach(`5esn` In \"d_str\" Contains {123456789} Contains 01| Match #usn7=({@usn5:07[..True][..9e12]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}),Allshortestpaths((_usn4 :usn1)<-[`1esn`?:`4esn`]->(`5esn` :`4esn`)) With Distinct .e12[..`7esn`][..0Xa],123.654 Is Not Null Is Not Null As `8esn`,All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By {usn2} Descending,1.0 =~7 =~{usn2} Desc Skip 0.0[$0][{@usn5}] Where _usn3 Contains $123456789 Contains ``) Delete $`7esn` Is Not Null,`2esn`(Distinct $``,7 Starts With {@usn6} Starts With $``) Contains {@usn6:_usn3[$`8esn`],usn1:$@usn5 Is Not Null} Contains {@usn5:`8esn`[{123456789}..]},Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..]) In Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null) In Filter(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {#usn8}[.._usn4][..$`3esn`]) Union Match `6esn`=((`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})<-[`7esn`? *7..12]->({`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})),#usn7=((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})) Using Index @usn5:`2esn`(@usn5) Where $123456789 Ends With $999 Ends With {999} Delete {_usn4} =~$_usn4 Union Detach Delete $`1esn` =~0X7,.e0 Ends With 0.12,0e0[`8esn`..][$123456789..] Remove [{12} Contains {123456789} Contains `4esn`,1.e1[`8esn`][00],1.0[$`1esn`..][$123456789..]]._usn4?,Reduce(_usn3=123456789[#usn8..False],_usn3 In {`3esn`}[`2esn`]|123.654 Contains $`4esn` Contains 1.0).#usn8?"), - octest_legacy:ct_string("Remove Extract(`5esn` In \"d_str\" Is Null Is Null Where 9e12[{123456789}..#usn8][{_usn3}..{#usn7}]|01 =~{_usn3} =~`3esn`).`1esn`! Match usn2=(_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]}),`6esn`=((@usn6 :`1esn`)<-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})) Load Csv From usn2[9e12] As @usn6 Fieldterminator 's_str'"), - octest_legacy:ct_string("Foreach(@usn5 In $@usn5 Starts With #usn7| Create Unique @usn6=Allshortestpaths(((@usn5 :`4esn`))),`2esn`=((($#usn8)-[:#usn7{`2esn`:.e12 Ends With _usn4}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})<-[?:#usn8|`1esn` *..010{``:usn1 Starts With usn1 Starts With $``}]->(:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})))) Union All Return Distinct 9e1 Starts With {`5esn`} Starts With Count ( * ) As _usn3,Count ( * )[$_usn4..$`4esn`] As _usn4 Order By Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Is Not Null Is Not Null Asc Skip $`1esn`[1.0..][_usn3..] Limit $`3esn` In $`6esn` In $`` Create usn1=Shortestpath(((:``:#usn8$`3esn`))) Union Start `5esn`=Relationship:`3esn`('s_str') ,@usn5=Node:_usn4(`5esn`='s_str') Foreach(usn2 In 123.654[{_usn3}..1.0]| Return [1000 =~@usn6 =~0x0] Starts With {#usn8:$`7esn` =~{`8esn`} =~$usn1,`7esn`:0xabc[01..{999}][{7}..{`7esn`}]} Starts With `7esn`(Distinct 123.654[`3esn`..]) As `1esn`,0.0[Null][$`2esn`],`6esn` Is Not Null Is Not Null As `3esn` Skip (usn2 :_usn4)-[ *7..12]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})[$`2esn`]) Create Unique Allshortestpaths(()<-[_usn4 *..999]->(`7esn` {#usn7:\"d_str\" Contains {123456789} Contains 01,@usn5:$1000 In $1000 In $`3esn`}))"), - octest_legacy:ct_string("Optional Match _usn3=Shortestpath((:`3esn`:@usn5{`2esn`:{`3esn`}[..07][..{`5esn`}]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})),Allshortestpaths((`5esn` :`4esn`)) Return Distinct #usn8 Starts With $_usn4 Starts With $7 As `6esn` Order By $0[$`1esn`..07] Descending Skip 9e1 Is Not Null Union Delete {`7esn`}[0e0][1.e1] Create usn2=(`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[@usn5?:`3esn`|:#usn8{_usn4:{999}}]->(:#usn8:#usn8{``:1.0[0e0..0.e0]}),#usn8=((`3esn` {`8esn`:\"d_str\" Contains {123456789} Contains 01,@usn5:`1esn` In .e0 In {`3esn`}})-[#usn7?:`3esn`|:#usn8]->(`2esn` :usn1)-[ *..999{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(@usn5 {_usn3:`1esn` Contains {usn2} Contains $#usn8})) Merge Allshortestpaths((`` :_usn4{_usn4:False[..``],usn2:9e1[1000][{123456789}]})) Union All With Distinct *,Reduce(usn1=$123456789 Is Null Is Null,_usn3 In {`3esn`}[`2esn`]|Null[$`5esn`][False])[Case 0e0 Contains Null When 0X7[`7esn`][123.654] Then 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] End..][[9e1[$usn2],{`4esn`}[$123456789..][$#usn7..]]..],01234567 Is Null Is Null Order By @usn6 Contains Null Contains $`7esn` Ascending Where 123.654 Contains $`4esn` Contains 1.0 Detach Delete $`2esn`,0e0 In @usn5"), - octest_legacy:ct_string("Foreach(usn2 In $12[True..][{0}..]| Return Distinct 0X7[1000..{`1esn`}] As `3esn`,$`2esn`[12.e12..][{`4esn`}..] Order By 0.0 =~999 Asc,$`5esn` In 0.e0 Asc,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) Ascending Limit Count ( * ) Is Null Load Csv With Headers From {1000}[$`4esn`][\"d_str\"] As _usn3 ) Create Unique (:``:#usn8{_usn3:$`7esn` Is Null Is Null}),`5esn`=Shortestpath((((@usn5 :_usn4{#usn7:Null Ends With `2esn` Ends With $usn1,`5esn`:12.0})-[?:#usn7 *01234567..0Xa]->({``:$`8esn` =~{1000}})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})))) Remove [`2esn` In `1esn` =~\"d_str\" Where usn2[9e12]|usn2 Ends With 999 Ends With .e1].`5esn`,(`` :_usn4{_usn4:False[..``],usn2:9e1[1000][{123456789}]})-[ *7..12{`2esn`:.e12 Ends With _usn4}]->(:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(:@usn6:#usn8{`1esn`:`4esn`[..010][..{12}]})._usn4?,Extract(#usn8 In {`5esn`}[.e1..``] Where $`` =~12.0 =~$`7esn`|1e1 In 123.654 In `3esn`).`6esn`!"), - octest_legacy:ct_string("Start _usn4=Relationship( {usn1}) Merge Shortestpath(((`5esn` :_usn4{7})-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0}))) Unwind `7esn` In 00 As `` Union All Foreach(`2esn` In $1000 In $1000 In $`3esn`| Optional Match _usn3=Allshortestpaths((`7esn` :`5esn`)<-[`5esn`:#usn7 *00{#usn7:{999} Starts With {0}}]-(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]})),Allshortestpaths((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(`2esn` :`8esn`:`7esn`)) Using Index `8esn`:`1esn`(@usn5)) Load Csv With Headers From Single(#usn8 In 7[..999][..{#usn8}] Where $_usn3[.e0..$usn2])[Reduce(`8esn`=$#usn8 Ends With $`2esn` Ends With $@usn6,`2esn` In `1esn` =~\"d_str\"|$`8esn`[1000..0Xa])][[$123456789 =~{`6esn`} =~\"d_str\",01234567 Ends With .e12 Ends With $#usn7]] As `` Fieldterminator 's_str' With Distinct #usn8 In $@usn6,1.e1[`8esn`][00] Skip 01 Ends With 999 Ends With {`7esn`}"), - octest_legacy:ct_string("With *,$12[True..][{0}..] Order By Case `1esn`[{usn1}..``][7..$#usn8] When {0} Ends With $_usn3 Ends With $`7esn` Then $7[{usn2}..][{usn2}..] When 12.0[123.654][Count(*)] Then Count ( * ) Ends With 12.0 Else 01234567[usn2..$12][{`7esn`}..$usn2] End Is Not Null Descending Where {_usn4} Ends With `6esn` Start `1esn`=Node:usn2({12}) ,`5esn`=Node:#usn7(@usn6={#usn8})Where `7esn` In {123456789} In `1esn` Union All With Distinct *,{``}[$#usn8..$usn1] As `3esn` Order By $usn2[$`2esn`..`4esn`] Ascending,$`6esn`[{_usn3}..$`4esn`][$_usn4...e12] Asc,True[{_usn4}..][False..] Ascending Where \"d_str\" Contains {123456789} Contains 01 Unwind 2.12 Is Not Null Is Not Null As usn1 Load Csv From {``}[...e12] As `1esn` Fieldterminator \"d_str\""), - octest_legacy:ct_string("Detach Delete `1esn`({`2esn`} Ends With {`7esn`},{`2esn`} Starts With 0.0 Starts With {usn1})[Extract(`4esn` In $`3esn` Is Not Null Where usn2 Is Not Null Is Not Null)..None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {_usn4} Starts With 0.e0 Starts With 0x0)] Create Unique #usn8=({`7esn`:\"d_str\" Starts With $123456789})<-[`4esn`:``{usn1:`` Is Not Null Is Not Null,usn1:{1000}[{_usn3}..]}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[`4esn`]->(:`6esn`$123456789) Union Load Csv From [`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`]|`8esn` Contains $usn1 Contains $12][Filter(_usn3 In {`3esn`}[`2esn`] Where #usn7 Contains _usn3 Contains {`3esn`})..(:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})-[usn2?:`7esn` *123456789..{_usn4:$@usn5 Starts With {0} Starts With 12,`2esn`:{7}[..12e12][..Count ( * )]}]->({_usn3:False =~1e1 =~0.e0,_usn3:{999} Starts With $999})] As `6esn` Fieldterminator \"d_str\" With Distinct $7[{123456789}] As `6esn` Order By _usn4 Starts With $_usn4 Starts With 12.e12 Descending Skip \"d_str\" Ends With {`2esn`} Ends With usn2 Limit Reduce(`2esn`=$_usn3[.e0..$usn2],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$`7esn` Is Null Is Null)[Shortestpath((({``})))..{@usn6:{`6esn`} =~$999}] Union Remove [`5esn` In $999[0.0..] Where {7}[..12e12][..Count ( * )]]._usn4!,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|usn1 Is Not Null].`2esn`!,Reduce(@usn6=usn2[{7}],#usn8 In {`5esn`}[.e1..``]|{7}[..1.0][..9e0]).#usn7! Return Distinct 12.0 Ends With True Ends With 123456789 As #usn7 Order By {`7esn`} Ends With `4esn` Ends With {@usn5} Ascending,9e1[0.0..] Ascending,[0x0 Is Null,{``} Ends With `7esn` Ends With 0.0,0X7[0e0..`7esn`][1000..0e0]] =~Any(`5esn` In \"d_str\" Is Null Is Null Where $`6esn` Is Null) =~[$12[True..][{0}..],usn1[`5esn`..$7]] Desc Skip 1.0 =~'s_str' =~{`2esn`} Limit `8esn`[$#usn7..123456789] Create Unique #usn8=((:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]})),``=(({``:9e12[`1esn`..][$`1esn`..],#usn7:#usn8})<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]-({`7esn`:{999}}))"), - octest_legacy:ct_string("Start @usn5=Relationship:@usn5({1000}) Where $_usn4 Starts With 1e1 Unwind $1000 In $1000 In $`3esn` As usn2"), - octest_legacy:ct_string("Return Distinct `4esn` =~$`5esn` As usn1 Order By True Contains {0} Contains 7 Ascending Start `1esn`=Rel:_usn4(``={#usn7}) Remove Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`2esn`} Is Not Null).`3esn`,{`6esn`}.#usn7? Union All Remove Case When 01 Contains {`8esn`} Contains 2.12 Then $_usn3[Count(*)] Else {`3esn`}[@usn6..0Xa][{12}..0Xa] End.`5esn`!,[#usn8 In 7[..999][..{#usn8}] Where {`5esn`} Contains $0 Contains {``}|#usn7 Starts With {#usn7} Starts With `7esn`].`1esn`? Foreach(usn2 In {@usn6} Is Null Is Null| Remove `3esn`(False Starts With {`5esn`},0[{usn2}..][$`6esn`..]).usn2? Detach Delete Reduce(#usn7=`3esn`[{`2esn`}],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|#usn8 Is Not Null)[(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(#usn7 {_usn3:`4esn`[..Count ( * )][..{#usn7}]})..None(`8esn` In 01[2.12..`8esn`] Where {usn2})],Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))),12 Ends With 0x0 Ends With 0.e0)"), - octest_legacy:ct_string("Match `5esn`=Shortestpath((_usn3 :#usn7)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})<-[`5esn`? *..12{`8esn`:{`7esn`}[`6esn`][#usn7],`1esn`:0x0 Ends With $12}]->({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000})),((:#usn8:#usn8{_usn4})<-[usn1?:`7esn`]-(:usn1{usn1:{`6esn`}})) Using Index `8esn`:@usn6(`5esn`) Where `5esn` Starts With `3esn` Load Csv With Headers From {12} Is Not Null As _usn4 Fieldterminator 's_str' Match `7esn`=(@usn6 :`6esn`)-[`6esn`?:#usn7]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}),(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[?:#usn7 *01234567..0Xa]-(@usn6 {#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12})-[usn1? *1000..00]->(#usn7 :@usn5{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}))) Union Foreach(usn2 In {usn2:0X0123456789ABCDEF[123456789]}[[0e0 Starts With 1000 Starts With #usn7,True =~010,$usn2[{@usn5}]]..]| Start #usn7=Rel:@usn6(`7esn`={`8esn`}) ,`3esn`=Node:@usn6('s_str')Where 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Remove Reduce(_usn3=12e12 Is Not Null Is Not Null,@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|`7esn` Starts With $#usn7 Starts With $`7esn`).`3esn`?"), - octest_legacy:ct_string("Delete 7[True..][2.12..] Union Delete 7 =~{`8esn`} =~$`6esn` Match Allshortestpaths(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))),_usn3=(#usn8 {`2esn`:$`5esn`[..$`5esn`][..$12]})-[#usn7:@usn5 *0X7..]->(@usn5 :usn1{`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]})-[?:`2esn` *00]->(`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}) Using Index `6esn`:@usn5(`2esn`) Using Scan _usn4:@usn6 Where {123456789} Contains $#usn8 Union Load Csv With Headers From $@usn6 Ends With $_usn4 Ends With 0.12 As `` Fieldterminator \"d_str\" Foreach(`8esn` In [$`1esn` =~0X7] =~[{7}[..1.0][..9e0],7 Is Not Null Is Not Null] =~{_usn3:`1esn` Contains {usn2} Contains $#usn8}| Return Distinct .e0 Ends With 0.12,{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}[Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End..[`3esn` In {7} Is Null Where {123456789} Contains $#usn8|#usn7 =~Count ( * ) =~``]][`7esn`(9e1[1000][{123456789}]).._usn3(0.12 =~$0 =~$0)] As `8esn`,{`6esn`} =~$999 As usn1 Skip {`4esn`}[#usn7..$123456789][{7}..usn2] Limit Case _usn3[$`8esn`] When 12e12 Contains 0Xa Then 7[{0}..{_usn4}] End Starts With {#usn7:Null Ends With `2esn` Ends With $usn1,`5esn`:12.0} Remove 2.12.`7esn`!,{`1esn`:$0[..9e1]}.usn2!,Reduce(usn2=#usn7 Is Null Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{_usn3}[12.e12]).@usn6?) Create Unique ``=Shortestpath((`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null}))"), - octest_legacy:ct_string("Detach Delete `1esn` In .e0 In {`3esn`} Load Csv From `5esn`[..Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`])] As _usn4 Union Start usn2=Rel:usn2({`4esn`}) Where _usn3[_usn3..][12.e12..] Unwind All(`4esn` In $`3esn` Is Not Null Where {123456789} Is Not Null) As ``"), - octest_legacy:ct_string("Return Distinct 12.e12[`3esn`] As #usn7,{12} Ends With 1.0 Ends With .e0 As `5esn` Skip {@usn5:usn1[`5esn`..$7],@usn6:{123456789} Is Not Null} In None(`5esn` In $999[0.0..] Where .e1 =~$`8esn`) In `7esn`(Distinct {_usn4} Ends With `6esn`,{@usn6}[7]) Limit False =~1e1 =~0.e0 Optional Match Allshortestpaths(((`7esn` :`5esn`{`3esn`:`7esn` Is Null})<-[`5esn`?:`4esn`]-(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})<-[{`4esn`:{_usn3}[..$12][..0.12],`7esn`:1.0[0X7][{`5esn`}]}]-({`2esn`:{7} In `2esn`,`1esn`:`4esn`[1.0]}))),`1esn`=((`8esn` )) Detach Delete [False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12) Union All Remove Case When 01 Contains {`8esn`} Contains 2.12 Then $_usn3[Count(*)] Else {`3esn`}[@usn6..0Xa][{12}..0Xa] End.`5esn`!,[#usn8 In 7[..999][..{#usn8}] Where {`5esn`} Contains $0 Contains {``}|#usn7 Starts With {#usn7} Starts With `7esn`].`1esn`? Foreach(usn2 In {@usn6} Is Null Is Null| Remove `3esn`(False Starts With {`5esn`},0[{usn2}..][$`6esn`..]).usn2? Detach Delete Reduce(#usn7=`3esn`[{`2esn`}],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|#usn8 Is Not Null)[(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(#usn7 {_usn3:`4esn`[..Count ( * )][..{#usn7}]})..None(`8esn` In 01[2.12..`8esn`] Where {usn2})],Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))),12 Ends With 0x0 Ends With 0.e0) Union All Return Distinct Reduce(`1esn`={0} In $_usn3,@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|{``} Ends With `7esn` Ends With 0.0) Is Null Is Null As `3esn` With *,{_usn4:Count ( * )[True..][{#usn7}..],``:{``} Ends With `7esn` Ends With 0.0} In (usn2 {``:01[{@usn5}]})<-[?:_usn4|:usn2{`8esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],``:_usn3 Contains $123456789 Contains ``}]->(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(:_usn4{_usn4:{7} In `2esn`}) In {`4esn`:`7esn` Is Null} As `2esn`,`5esn` Is Null Order By $`5esn` Ends With Reduce(#usn8=$#usn7 Is Null,`4esn` In $`3esn` Is Not Null|12.e12[`3esn`]) Ends With Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) Desc,count(`1esn` Contains {usn2} Contains $#usn8) Contains [`5esn`[7][{usn2}],@usn5 Is Null] Desc,Case When $#usn7 Contains 0x0 Contains 1000 Then {123456789} Is Not Null When $#usn7 Contains 0x0 Contains 1000 Then usn2[$_usn4..][True..] End Is Null Is Null Asc Limit `5esn`[{`4esn`}..`2esn`] Unwind 0x0[`4esn`..'s_str'] As `6esn`"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From #usn7 Is Not Null Is Not Null As #usn8 Delete `2esn`[{`4esn`}][$_usn3]"), - octest_legacy:ct_string("Start `2esn`=Node:@usn5({`1esn`}) ,`1esn`=Rel:``({`1esn`}) Create `2esn`=((@usn5 :`7esn`:_usn3)),#usn8=Allshortestpaths(({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null}))"), - octest_legacy:ct_string("Create Unique `4esn`=((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})),_usn3=((#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})) Union Remove (`1esn` :_usn3:_usn3)<-[? *7..12]->({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})<-[`6esn` *0Xa{_usn3}]-({@usn5:usn1 Is Not Null}).`3esn`!,Case When {7} Is Null Then .e1[{`7esn`}..{_usn4}] When 1.0 =~'s_str' =~{`2esn`} Then $`5esn` In $`6esn` End.`6esn`? Create Unique ``=(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[?:#usn7 *01234567..0Xa]-(@usn6 {#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12})-[usn1? *1000..00]->(#usn7 :@usn5{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}))),`1esn`=((`` :@usn6:#usn8{`8esn`:'s_str' In 00})-[#usn8:`6esn`|`5esn`]-(usn1 {`1esn`:$@usn6 Ends With $_usn4 Ends With 0.12,`3esn`:`4esn` =~$`5esn`})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(`7esn` {@usn5:{7}[..1.0][..9e0]})) Create Unique `8esn`=((:@usn6:#usn8)<-[`1esn`?:usn2|``]-({@usn5:{usn2}[.e0..$999]})) Union Merge Shortestpath((:usn1{usn2:7[..999][..{#usn8}]})-[?:#usn7 *01234567..0Xa]->({``:$`8esn` =~{1000}})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})) On Create Set `8esn`(00 Starts With 0xabc,{12} Is Not Null).`6esn`! =$12 Ends With 07 Ends With $123456789,`3esn` ='s_str' Ends With 7 Ends With {_usn4},``(0X7 =~9e1,0.0 =~999).`3esn`! =$1000[Null][`4esn`] With Distinct $123456789 Ends With {`1esn`} Ends With $`4esn`,$`8esn`[..{`2esn`}],Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0)[..Case When 01234567[usn2..$12][{`7esn`}..$usn2] Then usn1[`5esn`..$7] Else $1000[0Xa][{#usn7}] End][..Reduce(@usn6=07 Contains 0X7 Contains $`8esn`,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|{#usn7}[9e1..][{123456789}..])] Order By `5esn`[_usn4..] Ascending Limit [`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]][..None(#usn8 In 7[..999][..{#usn8}] Where $`7esn`['s_str'])][..`1esn`(Distinct 12e12[$`3esn`],0.0 =~999)] Where $_usn4[0e0..][False..] Remove `6esn`({1000}[{_usn3}..],0.12 =~$0 =~$0).``"), - octest_legacy:ct_string("With *,Case When usn1 Is Not Null Then $0[12.e12..] Else 7[{0}..{_usn4}] End[..Reduce(_usn3={@usn5} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{usn1}[0X0123456789ABCDEF])] Order By 0.e0 Ends With $#usn7 Ends With $7 Descending Skip 0Xa Starts With `7esn` Starts With $`1esn` Where 0.e0[#usn8] Union Remove Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]).@usn6!,{`6esn`:Count(*) Ends With 12.0 Ends With 12}.`2esn`?,Reduce(`8esn`='s_str' Ends With 7 Ends With {_usn4},#usn7 In `2esn`[..$#usn8][..Count(*)]|$123456789 Ends With `3esn` Ends With 123456789).#usn7 Union Delete 00[{`8esn`}..][{`8esn`}..]"), - octest_legacy:ct_string("Start ``=Rel:`7esn`(usn2={`6esn`}) Where $_usn3[..1000]"), - octest_legacy:ct_string("Load Csv With Headers From 9e1 Ends With {usn2} Ends With True As @usn6 Fieldterminator 's_str' Foreach(`2esn` In $0 Ends With 12.0| Detach Delete 123456789[$1000..$#usn7],#usn8 Is Not Null) Remove Reduce(_usn3=$@usn5 Is Not Null,`3esn` In {7} Is Null|123.654[True..$#usn8][0.12..Count(*)]).`2esn`,True._usn4?,@usn6:`5esn` Union With {``}[`8esn`..],{`7esn`} Starts With $123456789 Starts With $@usn6 As _usn3 Limit `8esn`(Distinct $#usn7 Is Null) Ends With Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]) Ends With Shortestpath(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))) Where 123.654[0e0..$``][$`1esn`..$`8esn`] With Distinct 1e1 Contains Count ( * ) As `8esn`,[0x0[{`7esn`}..][$usn2..],{`4esn`} =~{7} =~{`7esn`},usn1 In 7 In {123456789}] Is Null Is Null Skip 010 In Count(*) Limit {1000}[_usn3][$123456789] Where $`` Delete $123456789 Starts With {_usn4} Starts With $1000,`` Ends With 0Xa Ends With `2esn`,Case {999} Is Null Is Null When 1000[Null..{123456789}] Then 9e12[`6esn`..12.0] Else `` Ends With $1000 End[Reduce(`2esn`={`3esn`} In 0X7,_usn3 In {`3esn`}[`2esn`]|$`5esn`[{`3esn`}])..(@usn5 {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})] Union All Delete Case When `4esn`[`5esn`..12][@usn6..False] Then $123456789 Ends With $999 Ends With {999} When $123456789 Ends With $999 Ends With {999} Then False Is Null Is Null Else 7[True..][2.12..] End Starts With [`8esn` Ends With 999 Ends With .e12] Starts With (`5esn` :`4esn`)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null})<-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]-(`7esn` :`5esn`{`3esn`:`7esn` Is Null}),Reduce(@usn6=0.e0 Ends With $#usn7 Ends With $7,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999})[[#usn8[`3esn`..][{#usn7}..]]..(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`8esn` :@usn6:#usn8)<-[{`8esn`:07 In `2esn` In 12e12}]->(:_usn4{`6esn`:{`6esn`} =~$999,`6esn`:$#usn7[..{`5esn`}][..9e12]})][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)..Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0e0 Starts With `2esn` Starts With $``)],Extract(#usn8 In {`5esn`}[.e1..``] Where {`3esn`}[..07][..{`5esn`}]) Is Null Is Null Return $12[True..][{0}..] As _usn3"), - octest_legacy:ct_string("Load Csv With Headers From (`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})-[`7esn` *0X0123456789ABCDEF]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})<-[@usn6 *..01{#usn7:@usn6 Contains $1000 Contains {`7esn`},@usn5:`2esn` Starts With $_usn4}]->(`6esn` :@usn6:#usn8) Is Not Null Is Not Null As usn2 Fieldterminator \"d_str\" Union Remove Filter(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {_usn4} Is Not Null Is Not Null)._usn4?,[Null[$`5esn`][False]]._usn3,(`3esn` {@usn5:$usn2[9e0]})<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7}).`5esn`? Optional Match @usn5=(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(`2esn` :`8esn`:`7esn`),usn1=Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` )))) Using Join On `7esn`,`8esn`,`3esn` Where 7[{0}..{_usn4}] Detach Delete $`3esn` In $_usn4 In {_usn3},$_usn3 =~0.12 =~{#usn8}"), - octest_legacy:ct_string("With *,00[`2esn`..12][123456789..0.e0] As `8esn` Order By {1000} In {@usn6} In @usn5 Descending Unwind 01234567 Ends With .e12 Ends With $#usn7 As `` Unwind 0.e0 Starts With 12.e12 Starts With {_usn4} As _usn3"), - octest_legacy:ct_string("Remove usn1:`5esn` Load Csv With Headers From $_usn4 Contains Null Contains #usn8 As #usn7 Fieldterminator \"d_str\" Union Start _usn4=Node:``(\"d_str\") Where `6esn`[12..$usn2][{#usn8}..{usn2}] Remove (:usn2{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})-[`2esn`:`7esn`]-(`2esn` :usn1).`8esn`!,Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0xabc[01..{999}][{7}..{`7esn`}]|0 In `2esn` In 010).`1esn`!,{#usn8:$123456789 Is Null Is Null,`8esn`:Count ( * )[0.12...e1]}._usn4 Remove Filter(_usn3 In {`3esn`}[`2esn`] Where 010 =~{usn2}).`4esn`?,Case {#usn7} Is Not Null Is Not Null When 12e12 Ends With {usn1} Then `1esn` Ends With {_usn3} Ends With `2esn` End.`3esn` Union Remove [`5esn` In $999[0.0..] Where {7}[..12e12][..Count ( * )]]._usn4!,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|usn1 Is Not Null].`2esn`!,Reduce(@usn6=usn2[{7}],#usn8 In {`5esn`}[.e1..``]|{7}[..1.0][..9e0]).#usn7! Return Distinct 12.0 Ends With True Ends With 123456789 As #usn7 Order By {`7esn`} Ends With `4esn` Ends With {@usn5} Ascending,9e1[0.0..] Ascending,[0x0 Is Null,{``} Ends With `7esn` Ends With 0.0,0X7[0e0..`7esn`][1000..0e0]] =~Any(`5esn` In \"d_str\" Is Null Is Null Where $`6esn` Is Null) =~[$12[True..][{0}..],usn1[`5esn`..$7]] Desc Skip 1.0 =~'s_str' =~{`2esn`} Limit `8esn`[$#usn7..123456789] Create Unique #usn8=((:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]})),``=(({``:9e12[`1esn`..][$`1esn`..],#usn7:#usn8})<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]-({`7esn`:{999}}))"), - octest_legacy:ct_string("Delete Any(#usn8 In 7[..999][..{#usn8}] Where $_usn3 Contains 999 Contains \"d_str\")[{_usn4:$_usn4[1.e1]['s_str']}..None(`5esn` In $999[0.0..] Where {``}[010..][0xabc..])],7[{0}..{_usn4}] Merge `7esn`=Shortestpath((((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``})))) Union Load Csv With Headers From Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End[[_usn3 In {`3esn`}[`2esn`] Where 7[{0}..{_usn4}]]..Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End] As #usn7 Fieldterminator \"d_str\""), - octest_legacy:ct_string("With Distinct 1e1 In 123.654 In `3esn` As `8esn` Order By 123.654[{_usn3}..1.0] Descending,Extract(`2esn` In `1esn` =~\"d_str\" Where usn2[9e12]|#usn7 Starts With {#usn7} Starts With `7esn`)[..(:#usn8:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})<-[_usn4?:`` *0X0123456789ABCDEF{`5esn`:$123456789 Is Null Is Null,@usn6:{12} Ends With 1.0 Ends With .e0}]->(:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null})<-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})][..Extract(`3esn` In {7} Is Null Where usn1 Is Null Is Null|12.0)] Ascending,All(`3esn` In {7} Is Null Where Count ( * ) Contains 07) Is Null Is Null Descending Limit Case When _usn4 Is Null Is Null Then Null[$#usn7] When $`2esn` Is Null Is Null Then $`3esn` =~{#usn8} End[(@usn5 :usn1)-[`2esn`:_usn4|:usn2]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})..Reduce(@usn5=`3esn`[{usn1}],`8esn` In 01[2.12..`8esn`]|`5esn` Starts With `3esn`)][Shortestpath((:``:#usn8{``:1.0[0e0..0.e0]}))..None(#usn8 In {`5esn`}[.e1..``] Where {_usn3}[..\"d_str\"][..`5esn`])]"), - octest_legacy:ct_string("Create Unique #usn8=(`5esn` :`4esn`)<-[_usn4 *..999]->({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5}) Create ((usn1 :`6esn`)),`2esn`=((@usn5 :`7esn`:_usn3)) Remove Reduce(@usn5=Count ( * ) Contains {`1esn`} Contains 07,`2esn` In `1esn` =~\"d_str\"|`3esn` In $0 In `1esn`).usn2,{#usn8:1.0[0e0..0.e0]}.usn1,(:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn` *0X7..{usn2:_usn3[$`8esn`]}]->(`8esn` :_usn4).@usn5 Union All Delete {12} Is Null Is Null,@usn5 In {`7esn`} In `2esn` Optional Match Shortestpath(((:#usn8:#usn8)-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12}))) Using Join On #usn7,`4esn` Using Join On `1esn` Where _usn3 Contains $123456789 Contains `` Union Create ((@usn6 ))"), - octest_legacy:ct_string("Merge @usn5=Allshortestpaths((:@usn6:#usn8{`7esn`:0x0[`4esn`..'s_str']})) On Create Set `7esn` ={1000}[$999...e12][`7esn`..'s_str'],_usn4 =[`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null On Create Set None(`1esn` In {`6esn`}[..$@usn6][..`7esn`]).@usn5? =12.0 =~{`2esn`} =~{`1esn`},@usn6 =Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) Is Not Null Is Not Null Remove Reduce(``=2.12 Contains usn2 Contains True,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|`4esn`[..Count ( * )][..{#usn7}]).@usn6?,[Null Ends With `2esn` Ends With $usn1,0X0123456789ABCDEF[123456789],0Xa[$123456789..123.654][.e12..0.e0]].`3esn`! Foreach(_usn3 In {0} Starts With @usn5 Starts With {`2esn`}| Match `4esn`=({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]->(_usn3 :`5esn`) Using Scan ``:_usn4 Where 0.e0 In $#usn7 In $_usn3) Union All Load Csv From usn2[9e12] As `8esn` Fieldterminator 's_str' Start @usn5=Node:#usn8(#usn7=\"d_str\") ,`8esn`=Rel:`1esn`(@usn5='s_str')Where {@usn6}[{999}..][00..] Delete 9e1[0.0..],{``} Ends With `7esn` Ends With 0.0 Union All With Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..] As `7esn` Skip {`4esn`}[$123456789..][$#usn7..] Where `5esn` Starts With 010 Starts With 0.0 With $`8esn`[1000..0Xa],({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(:@usn5)<-[`7esn`?:`8esn`]-({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}) Ends With $7 Ends With All(`` In `` Is Not Null Is Not Null Where 1000 In {`8esn`} In 01) As ``,usn1 Starts With $usn1 As `1esn` Order By Null[``] Descending,1.e1[$`1esn`..@usn6][$0..$_usn3] Asc,$`6esn`[.e0..$`6esn`][$_usn3..{#usn7}] Desc Limit {`4esn`} Starts With 1e1 Where $123456789 Starts With 9e0 Starts With 's_str' Return *,Case When $_usn3[Count(*)] Then `7esn`[$0][9e12] When $1000[`2esn`..`5esn`][1e1..1.e1] Then 00[{`8esn`}..][{`8esn`}..] End[`7esn`(9e1[1000][{123456789}])],{12} Is Not Null"), - octest_legacy:ct_string("Merge ({usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null}) Load Csv With Headers From 00[{`8esn`}..][{`8esn`}..] As usn2 Fieldterminator 's_str' Union Unwind $7[0.12][usn1] As `6esn`"), - octest_legacy:ct_string("Merge #usn8=(_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :_usn3:_usn3{`7esn`:$`6esn`[123456789..12][True..{`3esn`}],`5esn`:0X0123456789ABCDEF[123456789]})-[?{usn1:0[`7esn`..]}]->(`2esn` :`6esn`) On Create Set Case When `4esn`[`5esn`..12][@usn6..False] Then $123456789 Ends With $999 Ends With {999} When $_usn4 Is Not Null Is Not Null Then $`8esn` Else Null In $7 In .e1 End.@usn6! =$`` =~12.0 =~$`7esn`,{`6esn`:$usn1 Ends With $`` Ends With $12}._usn4? =$0 On Create Set Reduce(usn1=7[{0}..{_usn4}],`` In 123456789 Ends With 12.e12 Ends With $`7esn`|$999 Is Not Null)._usn3 =@usn6 Contains `3esn` Contains {`2esn`} Delete 9e1 Ends With {usn2} Ends With True Load Csv With Headers From `5esn`(Distinct {_usn4} Ends With `6esn`,$`4esn` In Null In 0xabc) Ends With Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Ends With All(`3esn` In {7} Is Null Where Count ( * ) Contains 07) As usn2 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Unwind 123456789 Ends With 0.12 Ends With `` As _usn3 Remove [{12} Contains {123456789} Contains `4esn`,1.e1[`8esn`][00],1.0[$`1esn`..][$123456789..]]._usn4?,Reduce(_usn3=123456789[#usn8..False],_usn3 In {`3esn`}[`2esn`]|123.654 Contains $`4esn` Contains 1.0).#usn8? Remove Case When $#usn8 Ends With $`2esn` Ends With $@usn6 Then $1000[`2esn`..`5esn`][1e1..1.e1] Else {`4esn`} =~{7} =~{`7esn`} End._usn3?,{`8esn`:{usn2} =~12}.@usn5,`2esn`(Distinct 7[$`8esn`..123456789][$usn1..$usn1],1e1 In 123.654 In `3esn`)._usn4! Union All Return Distinct *,Allshortestpaths((((@usn6 :`3esn`:@usn5)<-[`4esn`:`8esn` *00]-(`2esn` :`8esn`:`7esn`)<-[? *..999]->(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null}))))[[$12 Ends With 07 Ends With $123456789,$@usn5 =~1000 =~1000,.e12[@usn5..$12]]..][[$`1esn` =~0X7]..] Order By $7[{123456789}] Ascending,@usn6 Contains Null Contains $`7esn` Ascending,``[12.0..0e0][{`5esn`}..`7esn`] Asc Limit True =~{`5esn`} Unwind $`8esn` =~{1000} As `3esn` With Distinct *,{usn2} In _usn3 In $#usn7 As `6esn`,usn2 Is Not Null Is Not Null Union All Unwind {``} Ends With 2.12 Ends With {`5esn`} As `1esn` Load Csv With Headers From {`2esn`}[``..07][0x0..1000] As `2esn` "), - octest_legacy:ct_string("Start `8esn`=Rel:@usn6(`7esn`={`8esn`}) Where {@usn5} Is Null Is Null Return Distinct *,$1000[0Xa][{#usn7}],{usn1} Is Not Null Is Not Null Order By 0.e0[123.654][01] Desc,{`2esn`}[``..07][0x0..1000] Desc Skip Allshortestpaths((:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})) Limit 0x0 Ends With Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..]) Ends With Filter(#usn7 In {``} Is Not Null Where 0x0 Is Null) Union Create Unique `7esn`=((:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[`1esn`?:`4esn`]->(`5esn` :`4esn`)),`1esn`=Allshortestpaths((`` {usn2:9e0[..999],`2esn`:0e0 In @usn5})-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->(`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})) Load Csv With Headers From {`2esn`} In 12 As usn2 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Return Distinct *,Allshortestpaths((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))) Contains Filter(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]) Contains Shortestpath(({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})) Skip $123456789[_usn3][{#usn7}] Limit {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}])"), - octest_legacy:ct_string("Start @usn5=Node:#usn8(#usn7=\"d_str\") Start `3esn`=Node:@usn6('s_str') ,`7esn`=Node:`4esn`(usn1=\"d_str\") Delete Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End[[_usn3 In {`3esn`}[`2esn`] Where 7[{0}..{_usn4}]]..Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End],Case When 07 Contains 0X7 Contains $`8esn` Then 123456789[{123456789}..'s_str'] When _usn3[_usn3..][12.e12..] Then $12[True..][{0}..] End Is Null Is Null"), - octest_legacy:ct_string("Merge #usn8=(_usn4 :`2esn`:usn1{_usn3:0.e0 Starts With `2esn`}) Unwind $12[..{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}] As `5esn` Match `3esn`=(({`1esn`:$`8esn`[1000..0Xa]})),`4esn`=Allshortestpaths(((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(@usn5 :`4esn`)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]}))) Union With Extract(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0]|010 =~{usn2}) As `6esn`,'s_str'[$_usn3..][Count ( * )..] Delete {#usn8} Is Null With {#usn8} Is Null As #usn8,12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],$`5esn`[$`4esn`..{@usn6}][07..$@usn6] As usn2"), - octest_legacy:ct_string("Load Csv From Case usn2 Is Null When {#usn8}[.._usn4][..$`3esn`] Then 1.0 =~7 =~{usn2} When Null[$`5esn`][False] Then 0.12 =~`5esn` =~`5esn` Else .e0 Starts With 0 Starts With 0.e0 End[..usn2(Distinct 7[True..][2.12..])] As @usn6 Start usn2=Rel:#usn8(@usn6={_usn3}) ,`3esn`=Node:``(_usn3='s_str') Union Create Unique `3esn`=((`7esn` {`4esn`:{usn1} Ends With $0})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2})-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]-(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})),(:`4esn`{`7esn`:$0[..9e1],usn1:{_usn4} Ends With `6esn`})-[:@usn5{@usn5:{#usn7}[9e1..][{123456789}..],``:#usn7 Is Not Null Is Not Null}]->(`4esn` :`6esn`{_usn3:$123456789 Ends With `3esn` Ends With 123456789,`6esn`:0e0 Starts With 2.12 Starts With $12})-[`7esn` *..0x0]-(`2esn` :_usn4) With *,{`4esn`}[{`5esn`}..$`6esn`] As `8esn` Skip 0X7 In $#usn7 In 1.e1 Detach Delete Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End Starts With Single(`2esn` In `1esn` =~\"d_str\" Where False Starts With {`5esn`}) Starts With Extract(`5esn` In $999[0.0..] Where 0x0 Ends With $12) Union Create Unique Shortestpath(((:#usn8:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})))"), - octest_legacy:ct_string("Load Csv With Headers From 0X7 =~9e1 As usn1 Fieldterminator \"d_str\" Unwind Single(#usn8 In {`5esn`}[.e1..``] Where 123.654[$`1esn`]) Is Not Null Is Not Null As @usn5 With Distinct $7[{123456789}] As `6esn` Order By _usn4 Starts With $_usn4 Starts With 12.e12 Descending Skip \"d_str\" Ends With {`2esn`} Ends With usn2 Limit Reduce(`2esn`=$_usn3[.e0..$usn2],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$`7esn` Is Null Is Null)[Shortestpath((({``})))..{@usn6:{`6esn`} =~$999}] Union All Start `7esn`=Node:_usn4(#usn7=\"d_str\") Return Distinct *,'s_str'[$_usn3..][Count ( * )..] As #usn7,{1000} =~$@usn6 =~12 Order By {_usn3:`4esn`[..Count ( * )][..{#usn7}]}[Any(_usn3 In {`3esn`}[`2esn`] Where 1e1 In \"d_str\" In `7esn`)..(:usn1{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[`2esn`:_usn4|:usn2]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[`6esn`{`6esn`:Count(*) Ends With 12.0 Ends With 12}]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})][Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7|123.654[{7}..])..Filter(`3esn` In {7} Is Null Where usn1 Is Null Is Null)] Asc Skip 0X7 In $#usn7 In 1.e1 Limit usn2(7[..999][..{#usn8}])[[$_usn4 Contains Null Contains #usn8,{#usn8}[{7}],{@usn6}[{999}..][00..]]..] Create Unique `3esn`=Allshortestpaths(((:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null}))) Union All Remove (_usn4 :#usn7{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})<-[:`4esn` *..010{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-({`1esn`:`3esn`[{`2esn`}]}).`4esn`,()<-[`1esn`?:`8esn` *123456789..]->(:`1esn`{@usn6:$usn1 Ends With $`` Ends With $12})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`).#usn8? Unwind Reduce(`6esn`=@usn5 Is Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{12} Ends With 1.0 Ends With .e0)[Filter(_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null)..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`|`7esn`[..2.12][..00])] As `` Remove Case When False[..``] Then `5esn`[.e0..][07..] End.`7esn`?,@usn6:_usn4"), - octest_legacy:ct_string("Unwind Reduce(``={999},#usn8 In {`5esn`}[.e1..``]|$_usn3['s_str'][07])[..{`4esn`:0.0[$0][{@usn5}]}][..Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..])] As `6esn` Load Csv From $usn2[{@usn5}] As @usn6 Fieldterminator \"d_str\" Detach Delete {`1esn`:#usn7 =~Count ( * ) =~``,usn2:`` Ends With $1000} Is Not Null Is Not Null Union Create `5esn`=(((:@usn6:#usn8{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})<-[`6esn`?{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}]->(`4esn` {_usn4:0Xa =~Null =~$``})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))),Shortestpath((({_usn3:{_usn4} Is Not Null Is Not Null})<-[_usn4 *0..{_usn4:00[`2esn`..12][123456789..0.e0],`8esn`:0x0[`4esn`..'s_str']}]->()<-[``? *..01{`1esn`:$@usn6 Contains 07}]->(:#usn8:#usn8{@usn6:$_usn3[..1000]})))"), - octest_legacy:ct_string("Delete `5esn`[{`4esn`}..`2esn`] Match Shortestpath(((:#usn8:#usn8{_usn4})<-[usn1?:`7esn`]-(:usn1{usn1:{`6esn`}}))),Allshortestpaths((`5esn` :`8esn`:`7esn`{usn1:`5esn`[_usn4..]})) Where $#usn8 Contains $`1esn` Contains {`6esn`} Union All Create Unique _usn4=Allshortestpaths((:_usn4{usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})),Allshortestpaths((_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :_usn3:_usn3{`7esn`:$`6esn`[123456789..12][True..{`3esn`}],`5esn`:0X0123456789ABCDEF[123456789]})-[?{usn1:0[`7esn`..]}]->(`2esn` :`6esn`)) Load Csv With Headers From {`2esn`} Ends With 12.0 As _usn4 "), - octest_legacy:ct_string("Load Csv With Headers From Reduce(`1esn`={0} In $_usn3,@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|{``} Ends With `7esn` Ends With 0.0) Is Null Is Null As `7esn` Fieldterminator \"d_str\" Return `6esn`[..$@usn6] As `` Order By Extract(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0])[Case $`3esn` In $`6esn` In $`` When {_usn3}[..\"d_str\"] Then `3esn`[{usn1}] Else {999} Starts With {0} End][usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010])] Desc,Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))) Desc Limit Count(*) Contains $#usn7 Contains 1e1 Start `6esn`=Node:``('s_str') ,usn2=Relationship( {`5esn`})"), - octest_legacy:ct_string("Match _usn4=Allshortestpaths((:_usn4{usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})),({`4esn`:`7esn` Is Null}) Remove Any(#usn7 In {``} Is Not Null Where $1000[0Xa][{#usn7}]).`2esn`?,All(#usn8 In 7[..999][..{#usn8}] Where {12} =~#usn8).``! Create ((`` :@usn6:#usn8{`8esn`:'s_str' In 00})-[?{usn1:0[`7esn`..]}]->(`2esn` :`6esn`)),usn1=((:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`))"), - octest_legacy:ct_string("Create Unique Shortestpath((({usn2:7[..999][..{#usn8}]})))"), - octest_legacy:ct_string("Start #usn8=Rel:`7esn`(`6esn`={_usn4}) ,@usn6=Rel:@usn6(usn1={999})Where {usn2} =~12 Create Unique _usn3=Allshortestpaths((`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})) Remove All(`2esn` In `1esn` =~\"d_str\" Where 0e0 Ends With 1.e1 Ends With $`4esn`).`8esn`?,(_usn4 :usn1)-[`7esn`:`1esn` *0X0123456789ABCDEF{`6esn`:1000[..$0][..True],_usn4:Count ( * ) Ends With $@usn5}]->(`4esn` {usn2:0x0 Is Null,`5esn`:{usn2} =~12})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(_usn3 {#usn8:_usn4 Is Null Is Null}).usn2?"), - octest_legacy:ct_string("Create `8esn`=Allshortestpaths((`` :#usn7)-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})),(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`8esn` :`8esn`:`7esn`) Union All With Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {`3esn`} Is Not Null Is Not Null)[{@usn6:1.0[$`1esn`..][$123456789..]}] As `6esn` Order By Single(_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..])[..All(`` In `` Is Not Null Is Not Null Where {`7esn`} Is Null)] Ascending Skip Case {#usn7}[9e1..][{123456789}..] When $0 Ends With 12.0 Then $`` Is Not Null When $usn1 In {999} In $#usn7 Then 1000[Null..{123456789}] Else 1.0 =~'s_str' =~{`2esn`} End[({#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)..][Shortestpath((((`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})<-[`8esn`]-(usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[`3esn`?:`` *..0x0{`4esn`:0.e0 Contains 9e1 Contains {`7esn`},@usn6:$@usn5 =~1000 =~1000}]->(:@usn5{_usn3:07 =~01}))))..] Where {`3esn`}[`2esn`] Union Match `8esn`=Allshortestpaths(((:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))) Using Scan `4esn`:usn1 Using Scan #usn8:`3esn` Merge (((:`2esn`:usn1{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]})<-[?:`5esn` *0xabc..]->(:`7esn`:_usn3)<-[#usn8?:usn1|@usn6]->(`` :_usn4{`4esn`:#usn8 Is Not Null Is Not Null,usn1:$`4esn`[Null..]}))) On Create Set usn1+=[`2esn` In `1esn` =~\"d_str\" Where 0e0 Ends With 1.e1 Ends With $`4esn`] =~[`3esn` In {7} Is Null Where `` Ends With $1000|1000[0X7..2.12]] =~Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {`3esn`} In 01) Start `7esn`=Node:`6esn`({_usn3}) ,_usn4=Node:@usn6({12})"), - octest_legacy:ct_string("Merge (_usn4 :`4esn`)-[`1esn`?:`8esn`]->(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})<-[`4esn`:`8esn` *00]->(`4esn` {``:{#usn8}[010],usn1:{``} Starts With $`2esn` Starts With `1esn`}) On Match Set `4esn`+=$_usn4 Starts With 1e1,_usn3 =(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})-[usn1?:_usn3|_usn3]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})-[`7esn`]->(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]}) =~Shortestpath(((`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]})-[usn2?]-(`7esn` :`5esn`)-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->(:``:#usn8{`7esn`:00 Starts With 0xabc,_usn3:{123456789} Contains $#usn8}))) Match @usn6=Shortestpath(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))),`1esn`=((:usn1{`6esn`:2.12 Contains `1esn`,`1esn`:9e12[`6esn`..12.0]})<-[`3esn`? *..01]->(@usn5 :`5esn`)<-[? *..07]-(:`4esn`)) Union All Remove Filter(`5esn` In $999[0.0..] Where $`3esn`[..$123456789][..$`1esn`]).@usn6 Foreach(`3esn` In _usn3[..`8esn`][..2.12]| Load Csv With Headers From None(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Is Null Is Null As usn1 Fieldterminator 's_str') Union Return 123.654 Is Not Null Is Not Null As `8esn` Order By Count ( * ) Starts With 7 Starts With $123456789 Descending,01234567 Ends With .e12 Ends With $#usn7 Asc,$`6esn` =~1.e1 =~12 Asc"), - octest_legacy:ct_string("Create `6esn`=Allshortestpaths(((`6esn` :`5esn`{usn1:{`6esn`}}))) Remove (:usn2{`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2})._usn4?,[@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8|@usn6[$`3esn`..{`3esn`}]].``!,None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`).``? Union All Return All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By (`` :#usn7)<-[`1esn`?:usn1|@usn6 *0..]-(:#usn8:#usn8{@usn6:$_usn3[..1000]})[[`4esn`[..010][..{12}],0.e0 Starts With `2esn`,1000[..$0][..True]]..] Desc,0Xa =~Null =~$`` Ascending,Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12) Ends With Single(_usn3 In {`3esn`}[`2esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12]) Desc Limit Reduce(``={999},#usn8 In {`5esn`}[.e1..``]|$_usn3['s_str'][07])[..{`4esn`:0.0[$0][{@usn5}]}][..Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..])] Union Foreach(`8esn` In {#usn8}[$@usn5..usn1][$1000..0xabc]| Detach Delete Count(*) Contains $#usn7 Contains 1e1 Return Distinct *,{_usn4:Count ( * )[True..][{#usn7}..],``:{``} Ends With `7esn` Ends With 0.0} In (usn2 {``:01[{@usn5}]})<-[?:_usn4|:usn2{`8esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],``:_usn3 Contains $123456789 Contains ``}]->(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(:_usn4{_usn4:{7} In `2esn`}) In {`4esn`:`7esn` Is Null} As `2esn`,`5esn` Is Null Order By Reduce(@usn6=$1000[999],`8esn` In 01[2.12..`8esn`]|#usn7 Is Null Is Null)[_usn3(0.12 =~$0 =~$0)..][count($12 Ends With 07 Ends With $123456789,`8esn`[{123456789}..])..] Desc Skip `5esn`({12} Ends With 1.0 Ends With .e0) Contains `3esn`(`5esn`[{`4esn`}..`2esn`],9e1[2.12..{#usn8}]) Contains (@usn5 :#usn7)<-[``?:`3esn`|:#usn8{`1esn`:.e0[..$`8esn`]}]-(`5esn` {`4esn`:01 Is Null})<-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(_usn4 ) Limit {@usn5} =~Count ( * ) =~12.0) Merge ((`1esn` :_usn3:_usn3)-[:#usn7 *..010]->(#usn8 :usn1)-[usn1? *1000..00]->(:`1esn`{})) On Match Set `1esn`+=Single(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}])[Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] On Match Set All(`4esn` In $`3esn` Is Not Null Where 12[1.e1..{_usn3}][1.e1..1.0]).`1esn` =[`4esn` In $`3esn` Is Not Null Where $@usn5 Contains 0xabc Contains {#usn7}|`3esn`[{0}][usn1]] In [{12}[{7}][$123456789],`2esn` Starts With $_usn4] In count($1000 Is Null,0Xa[$123456789..123.654][.e12..0.e0]) Return *,{#usn7:0X0123456789ABCDEF =~1e1 =~{`4esn`},`2esn`:1.0 =~'s_str' =~{`2esn`}}[..None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 0X7[`7esn`][123.654])][..(:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})<-[`2esn`?:`7esn`]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})],Case {#usn8} Is Null When .e1 =~$`8esn` Then \"d_str\"[..{@usn5}][..``] When {_usn3}[12.e12] Then 7 Ends With $`4esn` Else $123456789 Starts With 9e0 Starts With 's_str' End In [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]] Order By {`2esn`}[$`4esn`][$`5esn`] Descending,7 Ends With $`4esn` Asc,$`8esn` Is Null Asc"), - octest_legacy:ct_string("Create Unique _usn4=(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})<-[ *..010{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}}]->(:_usn4$@usn5)<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]->(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc}),(((usn1 :`7esn`:_usn3{_usn4:{999}})-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]-(:`1esn`{`4esn`:12e12 Ends With {usn1}})-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0}))) Detach Delete {0} Contains 0.0 Contains $@usn5,Allshortestpaths((:@usn5{_usn3:07 =~01})) Starts With [`3esn` In {7} Is Null Where {`4esn`} =~{7} =~{`7esn`}] Starts With ({`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}})<-[`6esn`?:_usn4|:usn2]-(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}),$`6esn` Ends With Count(*) Union Foreach(usn2 In Reduce(`2esn`=$_usn3[.e0..$usn2],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$`7esn` Is Null Is Null)[Shortestpath((({``})))..{@usn6:{`6esn`} =~$999}]| Delete Single(_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..])[..All(`` In `` Is Not Null Is Not Null Where {`7esn`} Is Null)] Return Distinct *,$#usn7 Contains 0x0 Contains 1000 As @usn5 Skip $7[{usn2}..][{usn2}..] Limit ({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})[[@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where 0 In `2esn` In 010]..][{_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null}..]) Merge (_usn3 :#usn7)<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})<-[`4esn`?:_usn4|:usn2 *..01]-(`4esn` :@usn6:#usn8{`1esn`:`4esn`[..010][..{12}]}) Union All Remove Case When 12e12 Contains 0Xa Then $`` =~12.0 =~$`7esn` End.`2esn`,Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7).`8esn`?"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From 00[$`7esn`] As `1esn` Foreach(`4esn` In {999}[1000..{usn2}]| Delete `7esn` In {123456789} In `1esn` Return usn2 Is Null As `2esn` Skip {`3esn`:{@usn6}[{999}..][00..]}[count(Null Ends With {`5esn`} Ends With 0.e0,{usn1} In 2.12 In 1000)][All(`` In `` Is Not Null Is Not Null Where Count(*)[..usn2][..usn2])])"), - octest_legacy:ct_string("With *,{`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null} Contains {@usn5:{`3esn`} In 01} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 1.0[0X7][{`5esn`}]|{``}[010..][0xabc..]) As #usn8 Order By {`3esn`} In $@usn5 In _usn4 Asc Skip $0[..9e1] Limit $usn1 =~`` Where 0e0 Starts With `2esn` Starts With $`` Union Foreach(@usn5 In 12.0[{123456789}..]| Detach Delete {`2esn`} Ends With 12.0) Unwind 's_str' In $usn1 In False As `6esn` Return Distinct *,$usn2[{@usn5}],0X7[1000..{`1esn`}] As `` Union All Detach Delete {0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]],$`7esn`['s_str'],Reduce(`1esn`={`8esn`} Ends With `6esn`,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|1e1 In 123.654 In `3esn`)[[#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]]]"), - octest_legacy:ct_string("Detach Delete Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End Starts With Single(`2esn` In `1esn` =~\"d_str\" Where False Starts With {`5esn`}) Starts With Extract(`5esn` In $999[0.0..] Where 0x0 Ends With $12) Union All With Distinct 0x0[{`7esn`}..][$usn2..],Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {`3esn`} Is Not Null Is Not Null)[{@usn6:1.0[$`1esn`..][$123456789..]}] As `6esn`,12.e12 Is Not Null Is Not Null As #usn8 Skip 12.0[..9e0][..$``] Where {_usn3}[12.e12] Load Csv With Headers From Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End[[_usn3 In {`3esn`}[`2esn`] Where 7[{0}..{_usn4}]]..Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End] As #usn7 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Detach Delete Count ( * ) Ends With $@usn5,$`5esn`[..$`5esn`][..$12] Union All Load Csv From 12 Ends With 0x0 Ends With 0.e0 As usn1 Create Unique Allshortestpaths(((`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}))),@usn6=(({_usn3:{_usn4} Is Not Null Is Not Null})<-[_usn4 *0..{_usn4:00[`2esn`..12][123456789..0.e0],`8esn`:0x0[`4esn`..'s_str']}]->()<-[``? *..01{`1esn`:$@usn6 Contains 07}]->(:#usn8:#usn8{@usn6:$_usn3[..1000]})) Merge `7esn`=((:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]-(:`5esn`{``:1.0[0e0..0.e0]})<-[``? *..0x0{#usn7:False =~$7 =~2.12}]->(`3esn` :usn2)) On Match Set Allshortestpaths((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})).`8esn`? =123456789 Ends With 12.e12 Ends With $`7esn`,{usn2:{`3esn`} In 0X7,_usn3:7 Starts With {@usn6} Starts With $``}.`8esn` =7 Ends With $`4esn`,All(#usn8 In 7[..999][..{#usn8}] Where .e0[..$`8esn`]).@usn5! =`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) In [#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]|@usn6 Contains $1000 Contains {`7esn`}] In Filter(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12])"), - octest_legacy:ct_string("Merge _usn3=Shortestpath(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))) On Create Set `5esn`+=999 In {`3esn`} In usn2 On Match Set _usn4 =[`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null,@usn6+=Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 07 Contains 0X7 Contains $`8esn`) Is Not Null Is Not Null Delete Shortestpath((((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))))[..Case 0Xa =~123456789 =~_usn4 When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $1000 In $1000 In $`3esn` Then 0.e0[#usn8] End][..(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})],Case $1000[999] When `4esn`[`5esn`..12][@usn6..False] Then {0} Ends With $_usn3 Ends With $`7esn` When $usn1 In {999} In $#usn7 Then Count ( * )[True..][{#usn7}..] End Ends With {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null},`7esn` In 00 Union With *,(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})-[`7esn` *0X0123456789ABCDEF]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})<-[@usn6 *..01{#usn7:@usn6 Contains $1000 Contains {`7esn`},@usn5:`2esn` Starts With $_usn4}]->(`6esn` :@usn6:#usn8) Is Not Null Is Not Null As usn2 Order By $`1esn` Ends With 9e1 Ends With $123456789 Descending,(:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8)[Reduce(`7esn`=7[$`2esn`..{`5esn`}],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$_usn4[0e0..][False..])..({``:00 Starts With 0xabc,`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})][{}..{@usn6:`4esn`[..010][..{12}]}] Ascending,01[2.12..`8esn`] Ascending Match `7esn`=Allshortestpaths((({_usn3:$`5esn`[`3esn`..]})-[? *..07{`4esn`:@usn5 =~{`5esn`} =~`5esn`}]->(_usn3 :usn2{#usn7:{999} Starts With {0}}))) Using Scan _usn4:@usn6 Create `6esn`=((`2esn` :_usn4)),(((:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[:`6esn`|`5esn` *123456789..]-(#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}))) Union Match _usn3=(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})-[`8esn`?:#usn8|`1esn` *1000..00]->(:_usn4$@usn5)-[`7esn`:``{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2}]->({_usn4:00 Starts With 0xabc}))) Where 00[{`8esn`}..][{`8esn`}..] Create Unique `5esn`=(:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null}) Return {7}[$``][{@usn6}] As `2esn` Order By {`4esn`:{`4esn`} =~{7} =~{`7esn`},`8esn`:$#usn7[#usn7..]} Is Null Is Null Desc,{123456789}[9e12][{0}] Ascending,$_usn3['s_str'][07] Ascending Skip [usn2[$_usn4..][True..],1.0 In Count(*)] =~Any(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12.0[123.654][Count(*)]) =~Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where usn2 Is Not Null Is Not Null)"), - octest_legacy:ct_string("Create (:``:#usn8{``:1.0[0e0..0.e0]})-[usn1?:@usn5*]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})-[:``{_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}]-({`2esn`:Count(*)[..usn2][..usn2]}) Load Csv From $usn2[{@usn5}] As @usn6 Fieldterminator \"d_str\" Union Return *,Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End Is Null Is Null,$`5esn`[$`4esn`..{@usn6}][07..$@usn6] Order By {`1esn`:{@usn6}[{999}..][00..]}[..`5esn`][..{#usn8:{`7esn`}[`6esn`][#usn7],`5esn`:$`4esn`[9e12..123.654]}] Ascending Skip [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `4esn` Ends With 07 Ends With {`3esn`}|@usn5 Is Null] Is Null Is Null Create Unique (((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6}))) Remove Case When {``}[010..][0xabc..] Then usn1 Starts With usn1 Starts With $`` Else $#usn8 Ends With $`2esn` Ends With $@usn6 End.`6esn`?"), - octest_legacy:ct_string("Foreach(@usn5 In usn2(Distinct 1e1 In 123.654 In `3esn`,@usn5 Is Null)[..(:@usn5{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[?:_usn4|:usn2]->({usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null})][..[`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\"]]| Start `3esn`=Rel:`7esn`(`3esn`='s_str') ,``=Relationship:usn2(`3esn`='s_str')) With *,2.12[$`5esn`][$#usn8] As #usn8 Order By Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0)[..Case When 01234567[usn2..$12][{`7esn`}..$usn2] Then usn1[`5esn`..$7] Else $1000[0Xa][{#usn7}] End][..Reduce(@usn6=07 Contains 0X7 Contains $`8esn`,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|{#usn7}[9e1..][{123456789}..])] Descending,(:usn2{usn2:7[..999][..{#usn8}]})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})<-[:`4esn` *..010{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]->(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}) Desc,{usn2} Starts With $`8esn` Starts With Count ( * ) Ascending Skip 2.12[$`5esn`][$#usn8] Remove None(`4esn` In $`3esn` Is Not Null Where `2esn`[..$#usn8][..Count(*)]).`3esn`,Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where usn2[$7..$123456789][$@usn6..$7]).@usn6"), - octest_legacy:ct_string("Remove [0Xa[7..2.12][`3esn`.._usn3]].`3esn`,Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]).@usn6,Extract(`8esn` In 01[2.12..`8esn`] Where 1e1 In 123.654 In `3esn`).#usn8! Union Create `8esn`=(:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`),Shortestpath(({usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null})) Merge (`1esn` :`4esn`{`6esn`:$`6esn` Ends With Count(*),`7esn`:_usn3 Starts With 12.e12 Starts With 0.12})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}) Start _usn4=Node:`4esn`(_usn4={123456789}) Where {_usn4} In {12} In $0 Union All Delete #usn8[`3esn`..][{#usn7}..],Single(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}])[Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)],{0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]] Start _usn4=Rel:#usn8(\"d_str\") Where $#usn8[9e12..][.e1..]"), - octest_legacy:ct_string("Foreach(_usn4 In {`5esn`} Contains $0 Contains {``}| Unwind `8esn` Is Not Null Is Not Null As `8esn`) Merge ((`8esn` :`8esn`:`7esn`)<-[?:`8esn`{`3esn`:1.0 In Count(*)}]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7})) On Create Set Any(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`])._usn4! =$#usn8[..{`2esn`}][..1.0],#usn7+={@usn5:`1esn` =~0 =~$#usn7,usn2:{7} In `2esn`} Ends With ({`4esn`:{`4esn`} Ends With {usn2} Ends With {999}})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7}) Ends With Case False[..``] When 0.12 Starts With $`5esn` Starts With 12 Then `4esn` =~$`5esn` When 's_str' In 00 Then $0[..9e1] Else 1e1 In \"d_str\" In `7esn` End Foreach(usn2 In 9e12[0.0..][$12..]| Start #usn8=Rel:`7esn`(`6esn`={_usn4}) Where {`3esn`} Is Not Null Is Not Null) Union All With Distinct {usn2:0X0123456789ABCDEF[123456789]}[[0e0 Starts With 1000 Starts With #usn7,True =~010,$usn2[{@usn5}]]..] Order By {`5esn`} =~`4esn` =~{_usn4} Ascending,{#usn7} In 0x0 In $0 Ascending,`7esn`[$12..][$`8esn`..] Descending Limit {_usn3} Is Null Is Null Start usn2=Node:_usn4(``={#usn7}) ,`3esn`=Rel:usn1(`6esn`={7}) Start _usn3=Rel:#usn8({_usn3}) Where 1.0 =~7 =~{usn2}"), - octest_legacy:ct_string("Unwind #usn7 =~Count ( * ) =~`` As @usn5 With Distinct *,{`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null} Contains {@usn5:{`3esn`} In 01} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 1.0[0X7][{`5esn`}]|{``}[010..][0xabc..]) As #usn8 Order By {`3esn`} In $@usn5 In _usn4 Asc Skip $0[..9e1] Limit $usn1 =~`` Where 9e0[..999] Merge usn1=Allshortestpaths((`` {@usn6:1.0[$`1esn`..][$123456789..]})-[`7esn`*]->(`7esn` {`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})-[@usn6]-(`5esn` {`4esn`:01 Is Null}))"), - octest_legacy:ct_string("Create Unique Allshortestpaths((`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})),(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})<-[`6esn`?{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}) Foreach(@usn5 In _usn3 Contains Count(*) Contains 12e12| Match Shortestpath(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))),usn2=Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))) Where 01234567 Ends With .e12 Ends With $#usn7 Load Csv From [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `4esn` Ends With 07 Ends With {`3esn`}|@usn5 Is Null] Is Null Is Null As #usn8 Fieldterminator \"d_str\") Optional Match usn2=Shortestpath((`1esn` :`4esn`{`6esn`:$`6esn` Ends With Count(*),`7esn`:_usn3 Starts With 12.e12 Starts With 0.12})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})),`1esn`=((`` :@usn6:#usn8{`8esn`:'s_str' In 00})-[#usn8:`6esn`|`5esn`]-(usn1 {`1esn`:$@usn6 Ends With $_usn4 Ends With 0.12,`3esn`:`4esn` =~$`5esn`})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(`7esn` {@usn5:{7}[..1.0][..9e0]})) Using Index `3esn`:_usn3(`6esn`) Using Index #usn8:`2esn`(`5esn`) Where 07[..$@usn6][..1.0]"), - octest_legacy:ct_string("Create Unique ({`1esn`:`3esn`[{`2esn`}]}) Start @usn6=Relationship:@usn6(`4esn`='s_str') Where 7[$`8esn`..123456789][$usn1..$usn1] Start `5esn`=Rel:@usn6(`7esn`={`8esn`}) ,`3esn`=Relationship:#usn7('s_str') Union All With Distinct *,$1000 =~$`2esn` As `7esn` Limit 0.0 =~0 =~`6esn` Where 0e0[07] Union All Create (((:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?{usn1:0[`7esn`..]}]->({usn1:{`7esn`}[`6esn`][#usn7],usn1:{999} Starts With $999})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`}))),``=(((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})))"), - octest_legacy:ct_string("Unwind {usn1} In 2.12 In 1000 As `` Create Unique `3esn`=Shortestpath((`4esn` {`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}})) Union All With Distinct $@usn5,{`5esn`} Starts With @usn5 Starts With `7esn`,$1000 =~$`2esn` As `6esn` Skip 9e12[{123456789}..#usn8][{_usn3}..{#usn7}] Limit 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3] Where `1esn` Contains {usn2} Contains $#usn8"), - octest_legacy:ct_string("With *,Filter(`4esn` In $`3esn` Is Not Null Where {`6esn`}) =~{_usn3:{`3esn`} Is Not Null Is Not Null} Skip $7 Ends With `4esn` Limit Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`3esn`} In 01)[Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12e12 Contains 0Xa|Null[$#usn7])..Allshortestpaths(((`` {`3esn`:{12} Contains {123456789} Contains `4esn`})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})))][Reduce(`6esn`=7[..123456789][..{@usn6}],`5esn` In \"d_str\" Is Null Is Null|$_usn4 Is Not Null Is Not Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] Where $`7esn` Is Null Is Null Detach Delete [`` Ends With 0Xa Ends With `2esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},{`4esn`} =~{7} =~{`7esn`}],Reduce(`4esn`=01 Ends With 999 Ends With {`7esn`},`4esn` In $`3esn` Is Not Null|1.0[`3esn`..][9e0..]) Is Null Is Null,$_usn3 In {1000} In 0.12"), - octest_legacy:ct_string("With Distinct *,1e1 Contains 0e0 Skip @usn6 Contains Null Contains $`7esn` Limit $0 Where 0Xa Starts With {`6esn`} Starts With $usn1 Merge Shortestpath((((`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})<-[@usn6:@usn5 *0Xa]->({`3esn`:9e1[2.12..{#usn8}]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})))) On Match Set @usn5+=12 Ends With $usn2,@usn6 =Count ( * ) =~$usn2 =~$usn2,`` =12.0 =~1.0 =~9e12 Match #usn7=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}),@usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})) Using Join On _usn4 Union All Return Distinct *,@usn6(`5esn`[.e0..][07..]) Is Null Is Null,Count(*) In $12 As @usn6 Order By 1.0[$`1esn`..][$123456789..] Ascending,``[12.0..0e0][{`5esn`}..`7esn`] Asc,$`8esn` Contains 123456789 Contains $usn2 Descending Skip `5esn`[..Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`])] Limit $``[1.0] Create Unique `5esn`=Shortestpath((_usn3 :#usn7)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})<-[`5esn`? *..12{`8esn`:{`7esn`}[`6esn`][#usn7],`1esn`:0x0 Ends With $12}]->({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000})),``=((:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?:`5esn` *0..]->(usn2 :``:#usn8)<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})) Union All Load Csv With Headers From count(`1esn` Contains {usn2} Contains $#usn8)[..usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010])][..Extract(_usn3 In {`3esn`}[`2esn`] Where 7[{0}..{_usn4}]|`2esn`[..$#usn8][..Count(*)])] As `5esn` Merge `3esn`=Allshortestpaths(((:usn1{_usn4})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}))) On Create Set (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(:usn2{usn2:7[..999][..{#usn8}]}).`3esn` ={_usn4:Count ( * )[True..][{#usn7}..],``:{``} Ends With `7esn` Ends With 0.0} In (usn2 {``:01[{@usn5}]})<-[?:_usn4|:usn2{`8esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],``:_usn3 Contains $123456789 Contains ``}]->(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(:_usn4{_usn4:{7} In `2esn`}) In {`4esn`:`7esn` Is Null}"), - octest_legacy:ct_string("Return Distinct (:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})-[usn1?:_usn3|_usn3]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})-[`7esn`]->(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]}) =~Shortestpath(((`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]})-[usn2?]-(`7esn` :`5esn`)-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->(:``:#usn8{`7esn`:00 Starts With 0xabc,_usn3:{123456789} Contains $#usn8}))),9e1[True] Order By $`3esn` In 123.654 In #usn8 Asc,Shortestpath((`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})<-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(`3esn` :`6esn`))[(:`5esn`{``:1.0[0e0..0.e0]})-[ *7..12]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})] Asc,{`2esn`} =~$`8esn` Ascending Skip Reduce(#usn7=`3esn`[{`2esn`}],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|#usn8 Is Not Null)[(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(#usn7 {_usn3:`4esn`[..Count ( * )][..{#usn7}]})..None(`8esn` In 01[2.12..`8esn`] Where {usn2})] Start usn2=Node:`4esn`('s_str') ,@usn6=Rel:``(_usn3='s_str')Where `7esn` In {123456789} In `1esn` Union Optional Match (:#usn7{usn2:{usn1} Ends With $0,#usn8:`5esn` Starts With $`2esn` Starts With $1000})-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(`1esn` :_usn3:_usn3{#usn7:$@usn5 Is Not Null Is Not Null}),`3esn`=({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True}) Using Join On @usn5,`8esn` Using Join On ``,#usn7,`` Where 00[{`8esn`}..][{`8esn`}..] Load Csv From [`5esn` In $999[0.0..] Where `5esn` Starts With `3esn`|12e12 Is Not Null Is Not Null] As _usn3 "), - octest_legacy:ct_string("Start @usn5=Node:#usn7({_usn3}) ,@usn6=Relationship:@usn6(`4esn`='s_str')Where {``} Is Not Null Load Csv With Headers From {_usn4} Is Not Null Is Not Null As `5esn` Union Create ``=(((`8esn` :#usn8:#usn8{_usn4:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[#usn8]-(`6esn` :#usn7)<-[:#usn7 *..010]-(@usn6 :@usn5{usn2:$`5esn`[..$`5esn`][..$12]}))),({`8esn`:`3esn`[{0}][usn1]})-[_usn4?:_usn4|:usn2 *00]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``})<-[ *0X7..]-(`2esn` {_usn3:`1esn` Contains {usn2} Contains $#usn8}) Start usn2=Node:`6esn`(usn2={`8esn`}) ,#usn8=Relationship:`8esn`(#usn8={`2esn`}) Create Unique Allshortestpaths((:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})-[`1esn`:_usn4|:usn2]-(`8esn` :`8esn`:`7esn`)),`2esn`=Shortestpath((#usn8 :@usn6:#usn8)) Union Start `7esn`=Rel:_usn4(``={#usn7}) Create Unique usn2=({@usn5:usn1 Is Not Null})<-[`3esn`:`6esn`|`5esn` *..12{usn1:0X0123456789ABCDEF Is Null Is Null}]-(:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False}),`4esn`=(#usn7 :`8esn`:`7esn`) Detach Delete {`4esn`}[#usn7..$123456789][{7}..usn2]"), - octest_legacy:ct_string("Unwind 9e0[123.654][01] As `` Union All Load Csv From {1000} =~0 =~123.654 As @usn6 Fieldterminator 's_str' Remove Case When Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6} Then {`2esn`} Is Not Null Is Not Null When `3esn`[{usn1}] Then `5esn` Starts With $`2esn` Starts With $1000 End._usn3!,Allshortestpaths((((`3esn` :`8esn`:`7esn`)-[`7esn`:#usn8|`1esn` *0xabc..]->(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})-[`2esn`?:`7esn` *..07$0]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})))).``! Foreach(_usn3 In Single(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]) Is Not Null Is Not Null| Create Unique @usn6=(((@usn6 :`3esn`:@usn5)<-[`4esn`:`8esn` *00]-(`2esn` :`8esn`:`7esn`)<-[? *..999]->(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null}))),((:`1esn`{`5esn`:1.0 In Count(*)})) Create Unique _usn3=(({@usn6:01234567 Ends With .e12 Ends With $#usn7,`4esn`:12.e12[`3esn`]})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(#usn7 :`7esn`:_usn3))) Union All Create `1esn`=(((:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})<-[:#usn7 *..010]-(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}))),((@usn5 :usn1)<-[`5esn`? *7..12{`5esn`:{999},_usn3:$`5esn`[2.12..]}]->(:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})-[_usn4?:_usn4|:usn2 *..999]-({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})) Match (:#usn7{usn2:{usn1} Ends With $0,#usn8:`5esn` Starts With $`2esn` Starts With $1000})-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(`1esn` :_usn3:_usn3{#usn7:$@usn5 Is Not Null Is Not Null}),`3esn`=({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True}) Using Join On `8esn`,@usn5 Using Index `3esn`:_usn3(`6esn`)"), - octest_legacy:ct_string("Unwind {_usn3}[{12}..$_usn4][`5esn`..$`5esn`] As _usn3 Union All Merge _usn3=Allshortestpaths((usn2 :`4esn`)-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(`` :_usn4)) On Match Set #usn8 =#usn7 =~Count ( * ) =~``,{#usn8:$`7esn`['s_str'],_usn3:{999}[1000..{usn2}]}.#usn7? =[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}|{usn1} Is Null Is Null][Allshortestpaths(((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})))..] On Create Set {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}.`8esn`? =$@usn5[010..$#usn8][12..$`4esn`],`7esn`+=`8esn`(Distinct $#usn7 Is Null) Ends With Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]) Ends With Shortestpath(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))),`7esn` =`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) Contains Reduce(`7esn`=$_usn4 Ends With usn1 Ends With $0,`4esn` In $`3esn` Is Not Null|`7esn` In {123456789} In `1esn`) Unwind `1esn`[..{@usn6}][..$123456789] As `1esn` Start `1esn`=Rel:`4esn`(`1esn`='s_str') ,`8esn`=Rel:`8esn`(\"d_str\")"), - octest_legacy:ct_string("Create Unique (@usn5 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[:#usn8|`1esn`*{`8esn`:0Xa[usn2..]}]-(`3esn` :_usn3:_usn3{@usn5:False}) Foreach(`1esn` In 123456789[$@usn5..]| Create Unique ((@usn6 :`1esn`{#usn8:`4esn`[1.0],``:.e12[@usn5..#usn7][010..{usn1}]})) Start ``=Relationship:usn2(`3esn`='s_str') Where $#usn7 Is Null) Union Unwind Filter(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]) Ends With Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``]) Ends With Case $`7esn` Is Null Is Null When {#usn7}[9e1..][{123456789}..] Then False =~1e1 =~0.e0 Else 1000 In {`8esn`} In 01 End As usn1 Unwind ({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})[Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 0X7[`7esn`][123.654])..Filter(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")] As usn1"), - octest_legacy:ct_string("Create Unique usn2=Shortestpath(((_usn4 :``:#usn8)-[:`8esn` *..01]->({#usn7:0.e0 Starts With `2esn`})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->($#usn8))),Allshortestpaths(({_usn3:$`5esn`[`3esn`..]})-[usn1? *0X0123456789ABCDEF]->(:`8esn`:`7esn`)) With Distinct $0 As #usn7,Case When 07 Contains 0X7 Contains $`8esn` Then 123456789[{123456789}..'s_str'] When _usn3[_usn3..][12.e12..] Then $12[True..][{0}..] End Is Null Is Null,$`5esn`[..$`5esn`][..$12] As #usn7 Where 9e1[$usn2] Create @usn6=Allshortestpaths((:@usn5{`2esn`:_usn3 Ends With 7 Ends With `1esn`})<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`4esn`{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})) Union All Unwind 2.12 Contains usn2 Contains True As `4esn` With Distinct Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn`,{``}[$#usn8..$usn1] As @usn6,None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`]) Is Not Null Order By $0[..9e1] Descending,{usn1}[Count(*)..] Desc Skip (`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})-[:`6esn`|`5esn`{`8esn`:$0 Ends With 12.0}]->(`5esn` {`4esn`:7[$`2esn`..{`5esn`}],@usn6:{7} Is Null}) Contains Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) Contains Case 9e12 Is Not Null Is Not Null When 0[..usn2][..{@usn5}] Then 0e0 Ends With 1.e1 Ends With $`4esn` Else usn1 Is Null End Where $`5esn` In $`6esn` Load Csv With Headers From {0}[\"d_str\"..07][0..'s_str'] As @usn5 Fieldterminator \"d_str\" Union All Start `6esn`=Rel( {0}) ,usn2=Node:`6esn`(usn2={`8esn`}) With Distinct usn1 Is Not Null As usn2 Skip Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End Limit `1esn`(Distinct $@usn5[..12e12][..$123456789],{#usn7} Is Not Null Is Not Null)[{`7esn`:\"d_str\" Starts With $123456789}..]"), - octest_legacy:ct_string("Foreach(`4esn` In {999}[1000..{usn2}]| Delete `7esn` In {123456789} In `1esn` Return usn2 Is Null As `2esn` Skip {`3esn`:{@usn6}[{999}..][00..]}[count(Null Ends With {`5esn`} Ends With 0.e0,{usn1} In 2.12 In 1000)][All(`` In `` Is Not Null Is Not Null Where Count(*)[..usn2][..usn2])]) Remove `3esn`($123456789 Is Null Is Null,0Xa[usn2..]).usn1?,`7esn`:`3esn`:@usn5,{`6esn`:$`8esn` Contains 123456789 Contains $usn2,`6esn`:{`3esn`}[`2esn`]}.`6esn`! Load Csv With Headers From {`7esn`} Is Null As `` Fieldterminator 's_str' Union Remove _usn3:`2esn`:usn1,[$0[..9e1],0.0[Null][$`2esn`]]._usn4?"), - octest_legacy:ct_string("Create Unique ((({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[@usn5 *0X0123456789ABCDEF]->(`6esn` :`3esn`:@usn5{`3esn`:0.e0 In $#usn7 In $_usn3,_usn4:{`8esn`} Ends With `6esn`})-[`1esn`?:`8esn`]->(#usn7 :`6esn`$1000))),usn2=Allshortestpaths(((@usn5 :`4esn`))) Start `4esn`=Rel:@usn6(usn1={999}) Union Load Csv With Headers From 123456789 Is Null As `8esn` Create Unique _usn3=(({@usn6:01234567 Ends With .e12 Ends With $#usn7,`4esn`:12.e12[`3esn`]})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(#usn7 :`7esn`:_usn3)) Union All With Distinct None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As `5esn`,01 Is Null As `2esn`,{1000} =~$_usn4 Return Distinct 1.e1 Starts With 's_str' Starts With `5esn`,$123456789 Starts With {_usn4} Starts With $1000 As `6esn` Order By Allshortestpaths(((_usn4 :`8esn`:`7esn`{`4esn`:{`2esn`} Is Not Null Is Not Null,`1esn`:.e1 =~$`8esn`})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2}))) Ascending,Case When 07 Contains 0X7 Contains $`8esn` Then 123456789[{123456789}..'s_str'] When _usn3[_usn3..][12.e12..] Then $12[True..][{0}..] End Is Null Is Null Ascending,_usn4(Distinct _usn3[_usn3..][12.e12..])[[0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},0Xa Starts With {`6esn`} Starts With $usn1]] Desc"), - octest_legacy:ct_string("Match _usn4=Allshortestpaths((:_usn4{usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})),({`4esn`:`7esn` Is Null}) Using Join On @usn5,`8esn` Foreach(#usn8 In 12.e12 Is Null Is Null| Optional Match ((usn2 :#usn8:#usn8)-[`2esn`?{_usn3:$_usn4[Count ( * )..],#usn7:{`3esn`}[..07][..{`5esn`}]}]-({_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]})),Allshortestpaths(((:_usn4{_usn4:{7} In `2esn`})<-[#usn8?:usn1|@usn6]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]}))) Using Scan @usn5:#usn7 Using Index #usn8:`2esn`(`5esn`)) Union All Delete (:_usn4{@usn6})<-[`4esn`?:_usn4|:usn2{_usn4:$usn2[{@usn5}],`2esn`:usn1[`5esn`..$7]}]->({``:$`8esn` =~{1000}})<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(:``:#usn8{usn1:{`6esn`}})[[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn` Contains 123456789 Contains $usn2|123456789 Ends With 01234567 Ends With 1.e1]..{usn2:1.0 =~7 =~{usn2},`8esn`:$_usn3[.e0..$usn2]}][None(_usn3 In {`3esn`}[`2esn`] Where 7 Ends With $`4esn`)..Case {`2esn`} Starts With 123456789 When $`5esn` In $`6esn` Then $`6esn` Ends With Count(*) End],[`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]][..None(#usn8 In 7[..999][..{#usn8}] Where $`7esn`['s_str'])][..`1esn`(Distinct 12e12[$`3esn`],0.0 =~999)] Match ((:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?:`5esn` *0..]->(usn2 :``:#usn8)<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})) Using Scan _usn4:@usn6 Where `` Ends With 0Xa Ends With `2esn` Foreach(`` In 0.12[`2esn`..{`6esn`}]| Create Allshortestpaths((#usn8 {@usn5:_usn3 Contains $123456789 Contains ``,_usn4:{``} Ends With `7esn` Ends With 0.0})-[#usn8?:`7esn`$1000]->(_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})),`5esn`=Allshortestpaths((`7esn` {`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(`7esn` {@usn5:{7}[..1.0][..9e0]})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})) Create Unique `6esn`=(({``})<-[`5esn`{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(usn2 {#usn7:2.12 =~Count(*),_usn4:$usn2[9e0]}))) Union Create Unique ((:`5esn`{``:1.0[0e0..0.e0]})) Optional Match `3esn`=((`6esn` :#usn7)-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]})),`2esn`=Shortestpath(((_usn4 {`5esn`:\"d_str\" Starts With 01})-[`3esn`? *123456789..]->({_usn3:$`5esn`[`3esn`..]})<-[{#usn7:123456789 Is Null}]-(:`6esn`{#usn7:$@usn5 Contains 0xabc Contains {#usn7},`1esn`:0xabc[.e0]}))) Using Scan `4esn`:usn1 With *,$1000 =~$`2esn` As `7esn` Limit 0.0 =~0 =~`6esn` Where 12e12 Ends With {usn1}"), - octest_legacy:ct_string("Create Unique `6esn`=((`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})<-[`7esn`? *7..12]->({`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})) Match `8esn`=(:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`),Shortestpath(({usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null})) Using Join On `5esn`,#usn7 Using Scan `2esn`:`6esn` Where `7esn`[..2.12][..{usn1}] Delete Extract(#usn7 In {``} Is Not Null Where 123456789[0xabc..'s_str'][``..`1esn`])[Reduce(usn1=False,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|$_usn4 Starts With 1e1)] Union Optional Match `7esn`=Allshortestpaths(((#usn8 {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]})<-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0}))) Using Scan #usn7:`2esn` Where 12.e12[7..$`6esn`] Optional Match Allshortestpaths(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))),Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Using Join On `8esn`,`2esn` Where 0e0 In @usn5"), - octest_legacy:ct_string("With None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})[Any(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")..Reduce(usn1=#usn7[usn1][$`5esn`],`3esn` In {7} Is Null|Count(*) Ends With 12.0 Ends With 12)][(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})..({usn1:`5esn`[_usn4..]})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})],@usn5 =~{`5esn`} =~`5esn` As _usn4,$123456789 In $#usn7 In `4esn` As `` Order By {`3esn`}[..07][..{`5esn`}] Desc Limit 12.0 Unwind [$`5esn`[..$`5esn`][..$12],01[2.12..`8esn`],_usn3 Contains $123456789 Contains ``] As `1esn` Optional Match `5esn`=((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})-[:`4esn` *0xabc..{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(`3esn` :`5esn`)<-[#usn7?:_usn3|_usn3 *..0x0]-(`` :#usn7)) Using Join On `8esn`,@usn6"), - octest_legacy:ct_string("With Case When usn1 Is Not Null Then $0[12.e12..] Else 7[{0}..{_usn4}] End[..Reduce(_usn3={@usn5} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{usn1}[0X0123456789ABCDEF])] As #usn8,$`7esn` =~7 =~12e12,$`8esn`[..{`2esn`}] Skip Reduce(`2esn`=$_usn3[.e0..$usn2],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$`7esn` Is Null Is Null)[Shortestpath((({``})))..{@usn6:{`6esn`} =~$999}] Limit `8esn`[$`8esn`..{`4esn`}] Create Unique @usn5=Allshortestpaths(({`1esn`:$`8esn`[1000..0Xa]})) Load Csv With Headers From {0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]] As `5esn` Union All Return *,{12} Is Not Null Skip {_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] Create Unique (({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}]->({`7esn`:7[{0}..{_usn4}]})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(usn2 {``:01[{@usn5}]})),`5esn`=Shortestpath((((`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})<-[@usn6:@usn5 *0Xa]->({`3esn`:9e1[2.12..{#usn8}]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})))) Return `6esn`(Distinct 2.12 Ends With $_usn3 Ends With `3esn`) Is Null,`8esn`[$#usn7..123456789],All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By Single(#usn8 In {`5esn`}[.e1..``] Where 123.654[$`1esn`]) Is Not Null Is Not Null Descending,_usn4(Distinct _usn3[_usn3..][12.e12..])[[0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},0Xa Starts With {`6esn`} Starts With $usn1]] Desc,1e1 In \"d_str\" In `7esn` Descending Skip [`` Ends With 0Xa Ends With `2esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},{`4esn`} =~{7} =~{`7esn`}]"), - octest_legacy:ct_string("Start #usn8=Rel:`7esn`(`6esn`={_usn4}) Where {`3esn`} Is Not Null Is Not Null Union All Return {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null} Contains {@usn5:{`3esn`} In 01} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 1.0[0X7][{`5esn`}]|{``}[010..][0xabc..]) As #usn8 Union All Foreach(`1esn` In Reduce(`8esn`=$@usn5[..12e12][..$123456789],@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|@usn5 In {`7esn`} In `2esn`) Is Not Null Is Not Null| Start @usn6=Relationship:`8esn`({`3esn`}) ,`3esn`=Node:usn1(_usn4={12}) With *,({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})[Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 0X7[`7esn`][123.654])..Filter(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")],(`1esn` {#usn7:{_usn4} In {12} In $0})<-[#usn7?:_usn3|_usn3 *..0x0]-(`1esn` :`8esn`:`7esn`)[Case When {``} Starts With $`2esn` Starts With `1esn` Then $`5esn` Starts With $0 Starts With {0} End..(`7esn` {@usn5:{7}[..1.0][..9e0]})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})][{usn2:$`2esn`}..[`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $`` Is Not Null|$#usn7[#usn7..]]] As `2esn`)"), - octest_legacy:ct_string("Remove (:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn` *0X7..{usn2:_usn3[$`8esn`]}]->(`8esn` :_usn4).@usn5,[@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $0[``][{@usn6}]].#usn8! Unwind (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12} As `1esn` Union All Return *,{`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null} Contains {@usn5:{`3esn`} In 01} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 1.0[0X7][{`5esn`}]|{``}[010..][0xabc..]) As #usn8 Order By {`3esn`} In $@usn5 In _usn4 Asc Skip $0[..9e1] Limit $usn1 =~`` With {_usn4:Count ( * )[True..][{#usn7}..],``:{``} Ends With `7esn` Ends With 0.0} In (usn2 {``:01[{@usn5}]})<-[?:_usn4|:usn2{`8esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],``:_usn3 Contains $123456789 Contains ``}]->(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(:_usn4{_usn4:{7} In `2esn`}) In {`4esn`:`7esn` Is Null} As `2esn` Order By 2.12 Contains usn2 Contains True Descending Where 0e0 In @usn5"), - octest_legacy:ct_string("Create `7esn`=Shortestpath(((:usn1{`3esn`:{123456789} Is Null Is Null})-[_usn4{`5esn`:{0} Ends With $_usn3 Ends With $`7esn`,`2esn`:Null[``]}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[? *0Xa]-({`7esn`:{999}}))) Union All Return *,9e1 In 2.12 Order By [`5esn` In $999[0.0..] Where `5esn` Starts With `3esn`|12e12 Is Not Null Is Not Null] Asc Skip Reduce(`2esn`=12[1.e1..{_usn3}][1.e1..1.0],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{#usn8}[010]) Is Not Null Is Not Null Merge ((usn1 {`7esn`:{999}})) On Create Set Shortestpath((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))).`4esn`? ={`4esn`} Starts With $usn2 Starts With $1000,_usn4 =07[$123456789..] On Match Set (`` :usn2)<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->({`1esn`:{1000}[{_usn3}..],`1esn`:{123456789}[9e12][{0}]}).usn1 =False[..``],None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $#usn7[@usn5..{1000}][1.e1..7]).@usn5 =$usn2[9e0],#usn8 =0x0 Ends With Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..]) Ends With Filter(#usn7 In {``} Is Not Null Where 0x0 Is Null)"), - octest_legacy:ct_string("Foreach(`3esn` In Reduce(usn2=01[{`2esn`}..{@usn6}][$`2esn`..0.0],usn1 In @usn5 =~{`5esn`} =~`5esn`|$#usn8 Ends With $`2esn` Ends With $@usn6) =~[#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01|{0} Ends With $_usn3 Ends With $`7esn`] =~(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True})| Detach Delete 's_str' =~{_usn4} =~$`7esn`,(:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0}) In [`4esn`[..Count ( * )][..{#usn7}]],$`5esn` Starts With `` Unwind [#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn2 Is Null|@usn6[$`3esn`..{`3esn`}]] In Filter(_usn3 In {`3esn`}[`2esn`] Where 1e1 In 123.654 In `3esn`) As _usn3) Delete 010 In Count(*),Count(*)[..usn2][..usn2] Union All Merge `8esn`=(((usn2 :#usn7)<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[`7esn`:`1esn` *0X0123456789ABCDEF{`6esn`:1000[..$0][..True],_usn4:Count ( * ) Ends With $@usn5}]->(`4esn` {usn2:0x0 Is Null,`5esn`:{usn2} =~12}))) Union Return Distinct *,2.12 Ends With $_usn3 Ends With `3esn` As `7esn`,0 In `2esn` In 010 Order By Count ( * ) Starts With 7 Starts With $123456789 Descending,01234567 Ends With .e12 Ends With $#usn7 Asc,$`6esn` =~1.e1 =~12 Asc Skip [{`3esn`} Is Not Null Is Not Null] Limit Single(#usn8 In {`5esn`}[.e1..``] Where $`` =~12.0 =~$`7esn`) Contains Case When {`1esn`}[12.0..`2esn`][@usn6..{usn1}] Then 's_str'[00][{`5esn`}] Else $#usn7 Is Null End Contains None(`5esn` In $999[0.0..] Where .e1 =~$`8esn`) Start _usn3=Node:`5esn`(`7esn`='s_str') Match usn2=(`7esn` {`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2}),`4esn`=Allshortestpaths((({usn1:`5esn`[_usn4..]})-[usn1?:_usn3|_usn3]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))) Using Join On #usn7,_usn4 Using Join On `8esn`,@usn5 Where `3esn`[{`2esn`}]"), - octest_legacy:ct_string("Remove All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {#usn8}[010]).usn1!,Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `` Ends With 0Xa Ends With `2esn`).`7esn`,#usn8:`4esn` Start `6esn`=Relationship:usn2(#usn8=\"d_str\") Where {_usn3}[..$12][..0.12] Optional Match #usn8=Allshortestpaths(((:`1esn`{@usn6:$usn1 Ends With $`` Ends With $12})-[]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]}))) Where .e1[..usn2][..`8esn`] Union Return Distinct #usn8 Is Not Null Is Not Null As `8esn` Create `1esn`=((@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})<-[`1esn`? *..999{#usn8:{_usn4}[...e1][..$7]}]-(`5esn` :`6esn`)),#usn8=Shortestpath((#usn8 :@usn5)) Union All Merge ((usn2 :@usn5)<-[? *00]->(@usn5 :usn1)) On Match Set Shortestpath(((`4esn` {`6esn`:#usn8[..{#usn7}]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]}))).`4esn`? ={#usn8} Starts With 00 Starts With {`6esn`}"), - octest_legacy:ct_string("Unwind {@usn6}[$`6esn`..`4esn`] As #usn8"), - octest_legacy:ct_string("Return Distinct `5esn`[.e0..][07..] As `7esn` Skip All(`4esn` In $`3esn` Is Not Null Where {123456789} Is Not Null) Limit {1000} =~0 =~123.654 Union All Delete 1e1 In \"d_str\" In `7esn`"), - octest_legacy:ct_string("Create `8esn`=((`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]->(`` )<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})) Union Start `3esn`=Relationship:#usn7('s_str') Return *,{``}[`8esn`..],@usn6(`5esn`[.e0..][07..]) Is Null Is Null Skip $`4esn` Is Null Is Null Create `6esn`=(`7esn` :`5esn`)<-[`5esn`:#usn7 *00{#usn7:{999} Starts With {0}}]-(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]}),`2esn`=(:`1esn`{``:.e1 Is Null Is Null})<-[#usn8?:usn1|@usn6]->(`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})"), - octest_legacy:ct_string("Merge usn2=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})<-[{`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}]->({`7esn`:7[{0}..{_usn4}]})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-({#usn8:0xabc[.e0]})))) On Match Set {usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]}.`7esn`! =Case When Count(*) In $12 Then .e0 Starts With 0 Starts With 0.e0 When {usn1}[0X0123456789ABCDEF] Then $`6esn`[123456789..12][True..{`3esn`}] Else 7 Starts With {@usn6} Starts With $`` End[Case @usn6 Contains $1000 Contains {`7esn`} When 0.12 =~$0 =~$0 Then $usn1[.._usn4][..False] When {0} Ends With $_usn3 Ends With $`7esn` Then 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3] End..] Create Unique ``=Allshortestpaths(((:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->(:usn1{`3esn`:{123456789} Is Null Is Null}))) Union All Optional Match _usn4=Allshortestpaths((:_usn4{usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})) Using Scan usn1:_usn3 Using Scan `1esn`:`3esn` Where 7[$`2esn`..{`5esn`}] Union All Start `3esn`=Node:`8esn`(`1esn`={#usn7}) Detach Delete (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null,$@usn6 Contains 07,Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End[..[9e1[1000][{123456789}],$_usn3[{#usn7}],`5esn` Starts With $`2esn` Starts With $1000]][..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0 In `2esn` In 010)]"), - octest_legacy:ct_string("Delete $#usn7[@usn5..{1000}][1.e1..7],Extract(`` In `` Is Not Null Is Not Null Where {``}[...e12]|12 Ends With 0x0 Ends With 0.e0) Is Null Is Null,$#usn7 Is Null Union All Delete [`` Is Not Null Is Not Null,`1esn` Contains {usn2} Contains $#usn8] Is Not Null,{`3esn`} Is Not Null Is Not Null,Count(*) Contains $#usn7 Contains 1e1 Return Distinct $``[1.0],{`5esn`}[0..`8esn`][0..Null] As `7esn` Order By 0Xa =~123456789 =~_usn4 Desc Skip $7[{usn2}..][{usn2}..] Limit $1000 Is Null"), - octest_legacy:ct_string("Remove Filter(`5esn` In $999[0.0..] Where `3esn`[{`2esn`}]).`6esn` Return Distinct 0x0 Ends With Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..]) Ends With Filter(#usn7 In {``} Is Not Null Where 0x0 Is Null) As ``,Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End Starts With Single(`2esn` In `1esn` =~\"d_str\" Where False Starts With {`5esn`}) Starts With Extract(`5esn` In $999[0.0..] Where 0x0 Ends With $12),`4esn` =~$`5esn` As `3esn` Create Shortestpath(((:usn1{`3esn`:{123456789} Is Null Is Null})-[_usn4{`5esn`:{0} Ends With $_usn3 Ends With $`7esn`,`2esn`:Null[``]}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[? *0Xa]-({`7esn`:{999}}))),usn1=((:`4esn`{``:2.12 Is Not Null Is Not Null})-[usn1? *1000..00]->(#usn7 :@usn5{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}))"), - octest_legacy:ct_string("Optional Match `4esn`=Allshortestpaths((((_usn3 )-[?{@usn6:0X7[`7esn`][123.654]}]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})))) Using Join On @usn5,_usn3,_usn3 Using Join On `2esn` Where $_usn3['s_str'][07] Merge `7esn`=(`1esn` )-[`1esn`?:`8esn`]->(#usn7 :`6esn`$1000)<-[?:`2esn` *00{@usn6:usn1[`5esn`..$7],`3esn`:{`7esn`}[..$@usn5][..$#usn8]}]-(`` {`1esn`:{@usn6}[{999}..][00..]}) On Match Set #usn8+={#usn8}[1.e1...e12] On Match Set None(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $12[True..][{0}..]).usn1! ={123456789} Is Not Null,`5esn`+=Reduce(``={999},#usn8 In {`5esn`}[.e1..``]|$_usn3['s_str'][07])[..{`4esn`:0.0[$0][{@usn5}]}][..Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..])],{`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000}.usn1 ={`3esn`}[..07][..{`5esn`}] Merge `7esn`=((`1esn` :#usn7))"), - octest_legacy:ct_string("Start _usn4=Node:usn2(`8esn`='s_str') Where 0[.e0..{`1esn`}] With [1.0 =~'s_str' =~{`2esn`}] Contains [9e1[2.12],{usn2}[$`3esn`..][{#usn7}..],Null Ends With {`5esn`} Ends With 0.e0] Contains `5esn` As `8esn`,[`` Ends With 0Xa Ends With `2esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},{`4esn`} =~{7} =~{`7esn`}] As @usn6 Skip {7}[$`5esn`][{_usn3}] Where {7}[..1.0][..9e0] Union Load Csv With Headers From {`5esn`} Starts With $`5esn` Starts With .e1 As `2esn` Start `6esn`=Rel:#usn8(@usn6={_usn4}) ,`4esn`=Relationship:`6esn`(#usn8={_usn3}) Match `1esn`=((:usn2{#usn8:$`5esn` In $`6esn`})<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]}))"), - octest_legacy:ct_string("Foreach(`3esn` In {`4esn`} Ends With {usn2} Ends With {999}| Load Csv From Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))) As `7esn` Remove [`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where $7[0.12][usn1]].`3esn`!,[#usn8 In 7[..999][..{#usn8}] Where $_usn4[1.e1]['s_str']|`2esn` Is Null].usn1) Remove Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..]).`2esn`,({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)._usn4? Return Distinct *,(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})-[:`8esn` *..01]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]->(_usn4 :#usn7)[@usn6(`5esn`[.e0..][07..])..[`` In `` Is Not Null Is Not Null Where 1.0 In Count(*)]][Reduce(_usn3=$0[12.e12..],_usn3 In {`3esn`}[`2esn`]|9e1[$usn2])..Filter(`3esn` In {7} Is Null Where {123456789} Contains $#usn8)],123.654 Is Not Null Union All With Distinct Count(*) In $12 As @usn6,True Contains {0} Contains 7 As _usn3 Order By Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where @usn6 Is Null Is Null)[(`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})..] Descending,$0[..9e1] Descending Skip {`5esn`:01234567 Is Null Is Null}[9e0..Reduce(``={`3esn`}[`2esn`],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{1000} =~0 =~123.654)][Reduce(usn1=$`6esn`[010..],@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|$`3esn` =~{#usn8})..Filter(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 7[..999][..{#usn8}])] Limit $`3esn`[{`7esn`}..][{usn2}..] Create `6esn`=Allshortestpaths(((`6esn` :`5esn`{usn1:{`6esn`}})))"), - octest_legacy:ct_string("Foreach(`2esn` In $0 Ends With 12.0| Detach Delete 123456789[$1000..$#usn7],#usn8 Is Not Null) Union All Create #usn8=(`1esn` :`4esn`{`6esn`:$`6esn` Ends With Count(*),`7esn`:_usn3 Starts With 12.e12 Starts With 0.12}),(:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]->(#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})-[`1esn`?:`8esn`]->(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}) Union All Optional Match #usn8=((:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]})),``=(({``:9e12[`1esn`..][$`1esn`..],#usn7:#usn8})<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]-({`7esn`:{999}})) Using Join On `8esn`,@usn5 Unwind Reduce(``={999},#usn8 In {`5esn`}[.e1..``]|$_usn3['s_str'][07])[..{`4esn`:0.0[$0][{@usn5}]}][..Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..])] As `6esn`"), - octest_legacy:ct_string("Create Shortestpath((({@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})))"), - octest_legacy:ct_string("Merge ({_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1}) On Create Set _usn4 =$``[1.0],``+=$_usn4 Is Null Is Null,Single(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`4esn`} Starts With $usn2 Starts With $1000).`8esn`! =2.12 =~False =~`5esn` Delete {1000} In {@usn6} In @usn5,{0} Starts With @usn5 Starts With {`2esn`},0e0 In @usn5 Union All Create Unique `7esn`=Allshortestpaths(((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[`1esn`?:usn2|``{_usn4:$`4esn`[..$`3esn`][..0.0],@usn6:0e0 Starts With 2.12 Starts With $12}]->(:_usn3:_usn3{`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})<-[`8esn` *0X0123456789ABCDEF]->(usn2 :_usn4))),#usn7=Allshortestpaths((@usn6 :`6esn`)<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3))"), - octest_legacy:ct_string("Foreach(`` In Case When False Then 0.e0 Ends With $#usn7 Ends With $7 When {@usn6}[{999}..][00..] Then `5esn` Ends With {``} Ends With 12.e12 Else 123.654[$`1esn`] End[Reduce(#usn8=$`6esn` Ends With Count(*),`2esn` In `1esn` =~\"d_str\"|_usn4 Contains 2.12)..]| Match @usn6=(:``:#usn8{``:1.0[0e0..0.e0]})-[usn1?:@usn5*]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})-[:``{_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}]-({`2esn`:Count(*)[..usn2][..usn2]}) Using Index usn2:`7esn`(`2esn`) Using Scan `3esn`:`2esn` Where True[..$`6esn`])"), - octest_legacy:ct_string("Optional Match Allshortestpaths(((`7esn` :`5esn`{`3esn`:`7esn` Is Null})<-[`5esn`?:`4esn`]-(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})<-[{`4esn`:{_usn3}[..$12][..0.12],`7esn`:1.0[0X7][{`5esn`}]}]-({`2esn`:{7} In `2esn`,`1esn`:`4esn`[1.0]}))),`1esn`=((`8esn` )) Unwind 's_str' In $usn1 In False As `6esn`"), - octest_legacy:ct_string("Remove Single(_usn3 In {`3esn`}[`2esn`] Where `3esn`[`3esn`..][#usn8..]).`1esn`?,[0.e0 Ends With $#usn7 Ends With $7].`6esn`!,(`2esn` :`8esn`:`7esn`)<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(:``:#usn8{usn1:{`6esn`}})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]}).`1esn` Foreach(`6esn` In [#usn8 In {`5esn`}[.e1..``] Where {`1esn`}[12.0..`2esn`][@usn6..{usn1}]] Is Not Null| With Distinct True[..$`6esn`],{@usn6} Ends With 's_str' Ends With 12.0 As `1esn` Order By Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $`3esn` =~{#usn8}|12.0 Ends With True)[..usn2(Distinct)] Ascending Skip Case When {``} Starts With $`2esn` Starts With `1esn` Then $`5esn` Starts With $0 Starts With {0} End[None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e1 Is Not Null)..[`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1]] Load Csv With Headers From `5esn`({12} Ends With 1.0 Ends With .e0) Contains `3esn`(`5esn`[{`4esn`}..`2esn`],9e1[2.12..{#usn8}]) Contains (@usn5 :#usn7)<-[``?:`3esn`|:#usn8{`1esn`:.e0[..$`8esn`]}]-(`5esn` {`4esn`:01 Is Null})<-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(_usn4 ) As `6esn` Fieldterminator 's_str') Union All Foreach(#usn7 In (`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})[..Reduce(#usn8=$`6esn` Ends With Count(*),`2esn` In `1esn` =~\"d_str\"|_usn4 Contains 2.12)][..(_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[_usn3? *0X7..]-(:`5esn`{`2esn`:`4esn`[1.0]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0})]| Load Csv From Case 's_str' In 00 When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null When $@usn5 Starts With {0} Starts With 12 Then {usn2} Else {#usn7}[`2esn`..] End As `` Fieldterminator 's_str' With Distinct Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})] As `4esn`,usn2 Is Null As `7esn`,Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn` As _usn3 Order By Count ( * ) =~$usn2 =~$usn2 Descending Limit {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains [1.0[0X7][{`5esn`}]]) Union Remove Reduce(#usn8={0}[01][`7esn`],@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|2.12 =~False).`6esn`!,Case True In 0e0 When 0.0 =~999 Then {@usn5} Is Null Is Null End.`6esn`? Load Csv From 999 In {`3esn`} In usn2 As _usn4 Merge `4esn`=(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})<-[:`5esn`{@usn6:$#usn8 Ends With $`2esn` Ends With $@usn6,`6esn`:{7}[..12e12][..Count ( * )]}]->(#usn8 :_usn3:_usn3{`4esn`:{_usn3}[..$12][..0.12],`7esn`:1.0[0X7][{`5esn`}]})<-[`4esn`?:usn2|`` *0X7..]->(_usn3 :@usn5)"), - octest_legacy:ct_string("Return $1000 =~$`2esn` As `6esn`,`` Is Not Null Is Not Null Order By Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`])[Case 00[{`8esn`}..][{`8esn`}..] When 0e0 Starts With 2.12 Starts With $12 Then Null[``] When 12e12 Ends With {usn1} Then $`2esn` Else 2.12['s_str'..$12][{`1esn`}..`2esn`] End..] Desc,[{@usn6} Ends With 's_str' Ends With 12.0,{12} Contains {123456789} Contains `4esn`] Starts With Filter(_usn3 In {`3esn`}[`2esn`] Where {1000} =~0 =~123.654) Starts With Case When Count ( * )[0.12...e1] Then $@usn5 =~1000 =~1000 When Null Ends With `2esn` Ends With $usn1 Then $usn2[{@usn5}] End Ascending,{12}[{7}][$123456789] Asc Skip Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End[..[9e1[1000][{123456789}],$_usn3[{#usn7}],`5esn` Starts With $`2esn` Starts With $1000]][..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0 In `2esn` In 010)]"), - octest_legacy:ct_string("Detach Delete `3esn`[$`1esn`..999][``..$123456789],$12[Null..Count(*)][{`5esn`}..{999}] Remove usn1:#usn7"), - octest_legacy:ct_string("Load Csv From {#usn8}[010] As _usn3 Optional Match Shortestpath((({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`6esn`?:_usn4|:usn2 *1000..00{`6esn`:@usn5 In {`7esn`} In `2esn`,@usn5:0.0 =~999}]-(usn2 :_usn4)-[usn1? *1000..00]->(#usn7 :@usn5{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}))),(:`8esn`:`7esn`) Return 2.12[$`5esn`][$#usn8] As #usn8 Skip $@usn6 Ends With $_usn4 Ends With 0.12 Union With Distinct [1.0 =~'s_str' =~{`2esn`}] Contains [9e1[2.12],{usn2}[$`3esn`..][{#usn7}..],Null Ends With {`5esn`} Ends With 0.e0] Contains `5esn` As `8esn`,[`` Ends With 0Xa Ends With `2esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},{`4esn`} =~{7} =~{`7esn`}] As @usn6 Skip {7}[$`5esn`][{_usn3}] Detach Delete ({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}),`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) In [#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]|@usn6 Contains $1000 Contains {`7esn`}] In Filter(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]),usn2[{7}] Create (`6esn` :`8esn`:`7esn`)<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}}),Allshortestpaths((((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})))) Union Load Csv From .e0 =~`6esn` =~{12} As usn1 Fieldterminator \"d_str\" Merge ({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`) On Match Set _usn3+={_usn3}[12.e12],`3esn`+=@usn5 =~{`5esn`} =~`5esn`,#usn8 =[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*)) Foreach(`2esn` In $1000 In $1000 In $`3esn`| Optional Match _usn3=Allshortestpaths((`7esn` :`5esn`)<-[`5esn`:#usn7 *00{#usn7:{999} Starts With {0}}]-(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]})),Allshortestpaths((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(`2esn` :`8esn`:`7esn`)) Using Index `8esn`:`1esn`(@usn5))"), - octest_legacy:ct_string("Merge ``=Allshortestpaths(((:`3esn`:@usn5$7))) Detach Delete 123.654[$`1esn`] Union Create Unique usn2=(`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[@usn5?:`3esn`|:#usn8{_usn4:{999}}]->(:#usn8:#usn8{``:1.0[0e0..0.e0]}),#usn8=((`3esn` {`8esn`:\"d_str\" Contains {123456789} Contains 01,@usn5:`1esn` In .e0 In {`3esn`}})-[#usn7?:`3esn`|:#usn8]->(`2esn` :usn1)-[ *..999{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(@usn5 {_usn3:`1esn` Contains {usn2} Contains $#usn8})) Load Csv With Headers From {`5esn`}[{usn2}..1000][$`8esn`..{`3esn`}] As #usn8 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Merge Shortestpath((((:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[:`6esn`|`5esn` *123456789..]-(#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})))) Match Allshortestpaths((({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}))),usn2=Allshortestpaths(((:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null}))) Using Scan `3esn`:`2esn` Using Scan `6esn`:`2esn` Union Remove [{`2esn`} Ends With {`7esn`},usn1[`5esn`..$7]].`7esn`?,[`2esn` Starts With $_usn4,$_usn3 Contains 999 Contains \"d_str\"].`8esn`,$1000.usn2 Delete _usn3[..`8esn`][..2.12],None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 7[..999][..{#usn8}]) Is Not Null,0.e0 Starts With 12.e12 Starts With {_usn4} Merge `2esn`=(((:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})<-[usn2?:``]-(usn2 :``:#usn8)-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null}))) Union All Create Unique Allshortestpaths((`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})),(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})<-[`6esn`?{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}) Foreach(@usn5 In _usn3 Contains Count(*) Contains 12e12| Match Shortestpath(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))),usn2=Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))) Where 01234567 Ends With .e12 Ends With $#usn7 Load Csv From [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `4esn` Ends With 07 Ends With {`3esn`}|@usn5 Is Null] Is Null Is Null As #usn8 Fieldterminator \"d_str\") Optional Match usn2=Shortestpath((`1esn` :`4esn`{`6esn`:$`6esn` Ends With Count(*),`7esn`:_usn3 Starts With 12.e12 Starts With 0.12})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})),`1esn`=((`` :@usn6:#usn8{`8esn`:'s_str' In 00})-[#usn8:`6esn`|`5esn`]-(usn1 {`1esn`:$@usn6 Ends With $_usn4 Ends With 0.12,`3esn`:`4esn` =~$`5esn`})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(`7esn` {@usn5:{7}[..1.0][..9e0]})) Using Index `3esn`:_usn3(`6esn`) Using Index #usn8:`2esn`(`5esn`) Where 07[..$@usn6][..1.0]"), - octest_legacy:ct_string("Merge Allshortestpaths(((:@usn5{#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})-[?:usn2|`` *0..{usn2:{12} Is Not Null,`6esn`:``[$`2esn`]}]-(`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}))) On Match Set Reduce(usn2=$`5esn`[`3esn`..],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|{_usn4} In {12} In $0).`1esn`? =`6esn`(Distinct 2.12 Ends With $_usn3 Ends With `3esn`) Is Null,`7esn`+={123456789}[9e12][{0}] With Distinct *,'s_str' Starts With 123.654 As usn1 Limit {`2esn`} Is Not Null Is Not Null Create Unique `5esn`=(#usn7 :`8esn`:`7esn`)<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[_usn4?:`1esn` *7..12]->(:#usn8:#usn8{_usn3:$_usn3['s_str'][07],`7esn`:$1000 In $1000 In $`3esn`}) Union All Create `1esn`=Shortestpath((((`2esn` :`8esn`:`7esn`)<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})))) Union Load Csv With Headers From Any(#usn7 In {``} Is Not Null Where usn1[9e12..][$7..]) Ends With Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0X7[`7esn`][123.654]|12.e12[7..$`6esn`]) Ends With All(`3esn` In {7} Is Null Where {123456789} Contains $#usn8) As @usn6 Return *,$1000 =~$`2esn` As `6esn`,Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {`3esn`} Is Not Null Is Not Null)[{@usn6:1.0[$`1esn`..][$123456789..]}] As `` Order By Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn` Asc,@usn6 Contains `3esn` Contains {`2esn`} Descending Skip {12}[{7}][$123456789] Optional Match ``=(:`3esn`:@usn5{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`4esn` {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}),Allshortestpaths(({_usn4:00 Starts With 0xabc})<-[_usn4{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00})-[`1esn`?:`8esn`]->(#usn7 :`6esn`$1000)) Using Scan `5esn`:usn2 Where _usn4 Is Null Is Null"), - octest_legacy:ct_string("Merge `2esn`=Allshortestpaths((:`4esn`{``:2.12 Is Not Null Is Not Null})) On Match Set #usn8 =$#usn8 Union All Load Csv With Headers From 0e0[$1000][{usn1}] As `5esn` Remove Filter(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $`3esn` In $`6esn` In $``).`4esn`,Case {#usn7}[`2esn`..] When 0.0 In $usn1 Then 00[$`7esn`] Else $_usn3[..1000] End.`2esn` Union Delete 010 In Count(*),Count(*)[..usn2][..usn2] Unwind `3esn`[$`1esn`..999][``..$123456789] As usn1"), - octest_legacy:ct_string("Unwind `1esn`[..{@usn6}][..$123456789] As `1esn` Detach Delete 0e0[$1000][{usn1}] Union All Start ``=Rel:#usn8(_usn3='s_str') Return 12.e12 Is Null Is Null As `6esn`,01 Is Null As `2esn`,$12 =~$_usn3 As #usn8 Order By (`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(`5esn` :@usn5{`8esn`:{usn2} =~12})[All(`` In `` Is Not Null Is Not Null Where `3esn`[{0}][usn1])] Descending Skip [0x0 Is Null,{``} Ends With `7esn` Ends With 0.0,0X7[0e0..`7esn`][1000..0e0]] =~Any(`5esn` In \"d_str\" Is Null Is Null Where $`6esn` Is Null) =~[$12[True..][{0}..],usn1[`5esn`..$7]] Load Csv With Headers From $`4esn`[..$`3esn`][..0.0] As `4esn` Union All Detach Delete Single(_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..])[..All(`` In `` Is Not Null Is Not Null Where {`7esn`} Is Null)],{123456789}[0xabc..],Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`]) In {usn2:{`3esn`} Is Not Null Is Not Null} In {`4esn`:False,_usn4:$`7esn` Is Null Is Null}"), - octest_legacy:ct_string("Start `8esn`=Node:`3esn`(\"d_str\") Union All Unwind $#usn8[$`8esn`..{`8esn`}] As `6esn` Unwind $123456789 Starts With 9e0 Starts With 's_str' As #usn7 Union All Create Unique Allshortestpaths(((`8esn` )<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}))),`7esn`=((:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[`1esn`?:`4esn`]->(`5esn` :`4esn`)) Unwind None(`2esn` In `1esn` =~\"d_str\" Where .e12 Is Not Null Is Not Null)[Reduce(@usn5=#usn7 Contains _usn3 Contains {`3esn`},@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|$@usn5 Starts With {0} Starts With 12)] As `4esn` Match (({`1esn`})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})<-[`3esn`:#usn7]-(:#usn8:#usn8{_usn4})) Using Index `3esn`:_usn3(`6esn`) Where `7esn`[..{usn1}]"), - octest_legacy:ct_string("Return *,`1esn`(Distinct $1000[999]) =~Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) =~{`6esn`:'s_str'[00][{`5esn`}]},[$`1esn` =~0X7] =~[{7}[..1.0][..9e0],7 Is Not Null Is Not Null] =~{_usn3:`1esn` Contains {usn2} Contains $#usn8} As `` Order By $1000 In $1000 In $`3esn` Desc,Case When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $`4esn`[..$`3esn`][..0.0] Then `1esn` =~0 =~$#usn7 Else {``} Is Null End Contains Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Contains All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {@usn6}[7]) Asc Optional Match @usn6=Shortestpath((((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``})))),Shortestpath(((@usn6 :`8esn`:`7esn`)<-[`6esn`?:`4esn` *..01]->(`3esn` :#usn7{usn2:12.0 =~999 =~$_usn3,@usn6:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?]-(`7esn` :`5esn`))) Where _usn3[_usn3..][12.e12..] Remove Reduce(@usn5={@usn6}[{999}..][00..],`2esn` In `1esn` =~\"d_str\"|1.0 =~7 =~{usn2}).`8esn`?"), - octest_legacy:ct_string("Remove None(#usn8 In {`5esn`}[.e1..``] Where $@usn6 Contains 07).@usn5,None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where usn2 Is Not Null Is Not Null).`7esn`,()-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[@usn6?$0]->({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]}).`6esn` Merge usn2=((:`1esn`{})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})) On Match Set Reduce(usn1=.e1 Ends With 1e1 Ends With @usn5,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$#usn7[#usn7..]).``! ={123456789} =~`8esn` =~@usn5 On Create Set @usn6+={0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]],{`8esn`:{_usn4} Starts With 0.e0 Starts With 0x0}.@usn5! =`4esn`[`5esn`..123456789][0..$12] Match Allshortestpaths(((:_usn4{_usn4:{7} In `2esn`})<-[#usn8?:usn1|@usn6]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]}))) Using Index _usn4:`1esn`(usn2) Using Join On ``,`6esn`,usn2 Union All Foreach(_usn4 In 9e12[`1esn`..][$`1esn`..]| Match Allshortestpaths((@usn5 {`3esn`:.e1[..usn2][..`8esn`]})<-[usn2:`7esn`]->(:usn1{_usn3:{#usn7}[`2esn`..]})-[?:usn2|``$#usn7]-(#usn8 :``:#usn8{`7esn`:9e1[$usn2],_usn4:$_usn4 Contains Null Contains #usn8})),({`4esn`:`7esn` Is Null}) Using Scan `2esn`:_usn3 Using Scan `4esn`:`8esn`)"), - octest_legacy:ct_string("Merge `1esn`=Allshortestpaths(()<-[_usn4 *..999]->(`7esn` {#usn7:\"d_str\" Contains {123456789} Contains 01,@usn5:$1000 In $1000 In $`3esn`})) Delete Single(`3esn` In {7} Is Null Where Count ( * ) Contains 07) Contains None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Remove Allshortestpaths(((`` ))).#usn8,All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {12} Is Not Null)._usn3?,`6esn`:`8esn`:`7esn` Union All Merge `6esn`=Shortestpath((((_usn3 )-[?{@usn6:0X7[`7esn`][123.654]}]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})))) Delete 123456789[$1000..$#usn7],0.e0[#usn8]"), - octest_legacy:ct_string("Unwind (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})<-[{`8esn`:07 In `2esn` In 12e12}]-(`3esn` :@usn5)-[?:`5esn`]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}) Is Not Null Is Not Null As @usn5 With Distinct {_usn4} =~$_usn4 As `4esn`,`5esn` Is Null Limit usn1 In 7 In {123456789} Where {123456789}[9e12][{0}]"), - octest_legacy:ct_string("Optional Match Shortestpath((((:@usn6:#usn8{`1esn`:`4esn`[..010][..{12}]})<-[`2esn`?:`7esn`]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[? *..07]-(`4esn` {``:{#usn8}[010],usn1:{``} Starts With $`2esn` Starts With `1esn`})))) Using Join On _usn4 Using Index _usn4:`5esn`(`6esn`) Where $`6esn` Ends With Count(*) With *,Extract(#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12) Ends With [False =~$7 =~2.12,$`4esn` In Null In 0xabc,{`7esn`} Starts With $123456789 Starts With $@usn6],_usn3 Ends With 7 Ends With `1esn` As _usn4 Where 0.12 Contains 0X0123456789ABCDEF Contains .e0 With Distinct [`4esn` In $`3esn` Is Not Null Where $@usn5 Contains 0xabc Contains {#usn7}|`3esn`[{0}][usn1]] In [{12}[{7}][$123456789],`2esn` Starts With $_usn4] In count($1000 Is Null,0Xa[$123456789..123.654][.e12..0.e0]) Order By None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null) Desc,None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null) Desc Where $usn2[{@usn5}]"), - octest_legacy:ct_string("Unwind {``}[`1esn`][$usn2] As @usn6 Delete {#usn7:$`6esn` Ends With Count(*)} =~(:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8) =~[`5esn` In $999[0.0..] Where `2esn` Starts With $_usn4],{7}[$``][{@usn6}] Union Return Distinct 2.12[$`5esn`][$#usn8],$7 Ends With `4esn` As `5esn` Order By ({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}) Asc,{#usn8} Starts With 00 Starts With {`6esn`} Desc Skip `1esn`[{usn1}..``][7..$#usn8] Unwind @usn5 In $7 As `` Create Unique ((:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?:`5esn` *0..]->(usn2 :``:#usn8)<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12}))"), - octest_legacy:ct_string("Remove Extract(`2esn` In `1esn` =~\"d_str\" Where $`4esn` In Null In 0xabc|$`5esn` Starts With $0 Starts With {0}).`4esn`,Filter(`5esn` In $999[0.0..] Where {`5esn`} Contains $0 Contains {``}).`1esn`!,Allshortestpaths(((`3esn` :`8esn`:`7esn`)<-[usn1:_usn4|:usn2]-(:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(`6esn` :_usn3:_usn3{`4esn`:0Xa Starts With {`6esn`} Starts With $usn1}))).#usn8? Optional Match @usn6=Allshortestpaths(((:@usn6:#usn8{`4esn`:$`8esn`[..00]})<-[_usn4?:_usn4|:usn2 *00]->(:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))) Where 0X7[..2.12] Create `3esn`=Shortestpath(((:usn1{usn1:{`6esn`}})-[@usn6?:`3esn`|:#usn8 *123456789..]->(:_usn3:_usn3{`7esn`:$`1esn` =~0X7})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``}))),@usn6=Allshortestpaths(((:`1esn`))) Union All Create ((@usn5 {usn2:0.e0[123.654][01]})-[`3esn`:#usn7]->(@usn6 {_usn3:{#usn7} Is Not Null Is Not Null})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})) Delete @usn6(`5esn`[.e0..][07..]) Is Null Is Null,`6esn` Is Not Null Is Not Null Union Merge @usn5=Shortestpath((((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[? *0Xa]-({`7esn`:{999}})-[`7esn`]->(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})))) On Create Set Reduce(@usn6=01234567 Is Null Is Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|1.0 Starts With 12e12 Starts With {`5esn`})._usn3? =`4esn`[..Count ( * )][..{#usn7}] Merge usn1=(((usn2 {``:01[{@usn5}]})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})-[`6esn`? *0..]-(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})))"), - octest_legacy:ct_string("Unwind Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where _usn4 Contains 2.12)[(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})..][#usn7(7 =~{`8esn`} =~$`6esn`,$123456789 Ends With {`1esn`} Ends With $`4esn`)..] As @usn5 Start usn2=Rel:usn2({`4esn`}) ,_usn4=Node:usn2(`8esn`='s_str')Where 123.654[...e0]"), - octest_legacy:ct_string("Load Csv From {123456789}[0.e0..$123456789][0Xa..`6esn`] As @usn5 Union Foreach(usn1 In 123456789[_usn3]| With Distinct *,`1esn`(Distinct $1000[999]) =~Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) =~{`6esn`:'s_str'[00][{`5esn`}]},{_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] As `` Order By {0}[{`8esn`}..`4esn`] Desc,Case When Count ( * ) Contains 07 Then $`2esn` When 1.0 Is Null Is Null Then `7esn`[..2.12][..{usn1}] End Is Not Null Desc Limit $`2esn`[2.12..'s_str'][{@usn6}.._usn4]) Load Csv From {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains [1.0[0X7][{`5esn`}]] As _usn3 Union With Distinct *,Reduce(`2esn`=12[1.e1..{_usn3}][1.e1..1.0],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{#usn8}[010]) Is Not Null Is Not Null,usn1 In 7 In {123456789} As `5esn`"), - octest_legacy:ct_string("Start #usn8=Rel:usn1(\"d_str\") ,`2esn`=Node:_usn4(#usn7=\"d_str\") Union Detach Delete {999},01234567 Is Null Is Null Unwind $usn1 In {999} In $#usn7 As _usn4 Foreach(usn2 In Null Contains {`4esn`}| Delete $`5esn`[..{12}],None(`2esn` In `1esn` =~\"d_str\" Where .e12 Is Not Null Is Not Null)[Reduce(@usn5=#usn7 Contains _usn3 Contains {`3esn`},@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|$@usn5 Starts With {0} Starts With 12)] Unwind None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`3esn`} In 01)[Allshortestpaths((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null}))..{@usn6:.e0[..$`8esn`],`6esn`:12 Ends With 0x0 Ends With 0.e0}] As _usn3) Union All Unwind 9e0[..999] As #usn8 Load Csv From Null Ends With `2esn` Ends With $usn1 As #usn8 "), - octest_legacy:ct_string("With *,$@usn5 Contains 0xabc Contains {#usn7} Skip 0Xa[..{`4esn`}][..12.0] Create `3esn`=Shortestpath(((:usn1{usn1:{`6esn`}})-[@usn6?:`3esn`|:#usn8 *123456789..]->(:_usn3:_usn3{`7esn`:$`1esn` =~0X7})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``}))),@usn6=Allshortestpaths(((:`1esn`))) With Distinct {`7esn`} Starts With $123456789 Starts With $@usn6 As _usn3 Order By _usn4(Distinct _usn3[_usn3..][12.e12..])[[0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},0Xa Starts With {`6esn`} Starts With $usn1]] Desc,Count(*) Contains $#usn7 Contains 1e1 Desc Limit {#usn8} Is Null"), - octest_legacy:ct_string("Start `2esn`=Relationship:`3esn`(\"d_str\") ,`7esn`=Node:``(@usn6={usn1})Where 0X0123456789ABCDEF =~1e1 =~{`4esn`} Remove Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where `7esn`[9e0..]).#usn8!"), - octest_legacy:ct_string("Merge (`1esn` :`4esn`{`6esn`:$`6esn` Ends With Count(*),`7esn`:_usn3 Starts With 12.e12 Starts With 0.12})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}) On Match Set @usn5(Distinct {123456789}[0xabc..],$_usn4[1.e1]['s_str']).usn1 =07 In `2esn` In 12e12,`1esn`+=0Xa Is Null Is Null,Any(`` In `` Is Not Null Is Not Null Where 0.0 Ends With 010 Ends With 1.e1).usn1 =(`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})[\"d_str\"..Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null)][Shortestpath(((:`3esn`:@usn5$7)))..usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010])] On Create Set `7esn` =`6esn`({usn1} Ends With $0) Is Not Null,`2esn`+=All(`` In `` Is Not Null Is Not Null Where $_usn4 Starts With 1e1)[Shortestpath(((:usn1{`3esn`:{123456789} Is Null Is Null})-[_usn4{`5esn`:{0} Ends With $_usn3 Ends With $`7esn`,`2esn`:Null[``]}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[? *0Xa]-({`7esn`:{999}})))][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)],Reduce(#usn7=`` Is Not Null Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{`7esn`}[..$@usn5][..$#usn8]).`2esn` =None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12])[Reduce(`4esn`=`1esn` =~0 =~$#usn7,`2esn` In `1esn` =~\"d_str\"|{123456789} Is Null Is Null)][{``:`7esn` Starts With $#usn7 Starts With $`7esn`}] Delete 12.0,`6esn`[12..$usn2][{#usn8}..{usn2}] Load Csv With Headers From {``} Is Not Null As usn1 Fieldterminator 's_str' Union Create Unique `6esn`=Allshortestpaths((#usn8 :@usn6:#usn8)) With *,$``[1.0] Order By All(`5esn` In $999[0.0..] Where {@usn6} Ends With 's_str' Ends With 12.0) In (:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Desc,True[{`7esn`}..] Asc Limit $``[1.0] Where {`7esn`}[..$@usn5][..$#usn8] Start `6esn`=Rel:`7esn`(`3esn`=\"d_str\") ,#usn7=Node:@usn5('s_str')"), - octest_legacy:ct_string("Merge ((:_usn4{usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})) Delete $#usn7[@usn5..{1000}][1.e1..7],All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)],Shortestpath((((`7esn` {`5esn`:123.654 Contains $`4esn` Contains 1.0,`8esn`:123.654 =~$usn2 =~{999}})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[`2esn`?:`1esn` *00]->({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})))) In (usn2 :@usn5)-[?{`8esn`:{7} Is Null}]->(`` )<-[`3esn`?:`3esn`|:#usn8]-(`` :#usn8:#usn8) In (@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8}) Union Merge Allshortestpaths((`2esn` :`8esn`:`7esn`{`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})) Foreach(`8esn` In \"d_str\" Contains {123456789} Contains 01| Remove Single(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 9e1[2.12..{#usn8}]).`5esn`,[@usn6 Contains $1000 Contains {`7esn`}].`3esn`?) Foreach(usn1 In {#usn7:0X0123456789ABCDEF =~1e1 =~{`4esn`},`2esn`:1.0 =~'s_str' =~{`2esn`}}[Reduce(`4esn`=`5esn`[_usn4..],@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{123456789} Is Null Is Null)][[`3esn` In {7} Is Null Where usn1 Is Null Is Null]]| Load Csv From 0.e0 Contains 9e1 Contains {`7esn`} As #usn8 Fieldterminator 's_str' Load Csv From Null Ends With `2esn` Ends With $usn1 As #usn8 ) Union Return Distinct (:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[`6esn` *0Xa{_usn3}]-({@usn5:usn1 Is Not Null})-[:`8esn` *0..{_usn3:`4esn` Ends With 07 Ends With {`3esn`}}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})[..[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]|{7}[..12e12][..Count ( * )]]] As `5esn`,$usn1 =~`` Order By Extract(`2esn` In `1esn` =~\"d_str\" Where usn2[9e12]|#usn7 Starts With {#usn7} Starts With `7esn`)[..(:#usn8:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})<-[_usn4?:`` *0X0123456789ABCDEF{`5esn`:$123456789 Is Null Is Null,@usn6:{12} Ends With 1.0 Ends With .e0}]->(:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null})<-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})][..Extract(`3esn` In {7} Is Null Where usn1 Is Null Is Null|12.0)] Ascending,0X7 =~9e1 Ascending Skip Count ( * )[True..][{#usn7}..] Limit $7[{123456789}] Start #usn7=Relationship:`8esn`({`1esn`}) ,_usn4=Relationship(,) Match ``=Allshortestpaths((`6esn` :`8esn`:`7esn`)<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})),#usn7=((:usn2{`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[?:_usn3|_usn3{`3esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],#usn8:False Starts With {`5esn`}}]-(usn2 :`5esn`{`7esn`:01234567 Is Null Is Null})-[_usn4?:`5esn` *..07]->({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]}))"), - octest_legacy:ct_string("Return *,$12 Starts With $`8esn` Starts With $`1esn` As `1esn`,$_usn4 Contains Null Contains #usn8 Skip [`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null Foreach(`5esn` In {`1esn`} Is Not Null| Create `5esn`=(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})-[_usn4? *..01]-(_usn4 :usn2{usn1:7[True..][2.12..],`8esn`:2.12 Ends With $_usn3 Ends With `3esn`})-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]-({`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0})) Create Unique (#usn8 {#usn7:`4esn` Ends With 07 Ends With {`3esn`},`3esn`:{0} In $_usn3})<-[:`4esn` *..010{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]->(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}),(`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})"), - octest_legacy:ct_string("With *,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where False|{`1esn`}[12.0..`2esn`][@usn6..{usn1}]] =~Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 00[{`8esn`}..][{`8esn`}..]|{0}) =~{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}},Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})] As `4esn` Order By $#usn7 Is Not Null Descending,{0} Ends With $`5esn` Asc,[{@usn6}[$`6esn`..`4esn`],0Xa[$123456789..123.654][.e12..0.e0]] Is Null Ascending Skip #usn7 Unwind [`` Ends With 0Xa Ends With `2esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},{`4esn`} =~{7} =~{`7esn`}] As `5esn` Merge #usn7=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}) On Create Set @usn6+=Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where _usn4 Contains 2.12)[(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})..][#usn7(7 =~{`8esn`} =~$`6esn`,$123456789 Ends With {`1esn`} Ends With $`4esn`)..] On Create Set [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|$`4esn`[Null..]].usn1! =123.654[True..$#usn8][0.12..Count(*)] Union All Create `6esn`=({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})<-[usn2?:@usn5{`4esn`:{`7esn`} Is Null,_usn4:$123456789 Ends With {`1esn`} Ends With $`4esn`}]->(`6esn` {`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null})-[usn1? *0X0123456789ABCDEF]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}),Shortestpath(((@usn6 :`8esn`:`7esn`)<-[`6esn`?:`4esn` *..01]->(`3esn` :#usn7{usn2:12.0 =~999 =~$_usn3,@usn6:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?]-(`7esn` :`5esn`))) Start `2esn`=Node:``({`1esn`}) "), - octest_legacy:ct_string("Load Csv From Case When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $`4esn`[..$`3esn`][..0.0] Then `1esn` =~0 =~$#usn7 Else {``} Is Null End Contains Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Contains All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {@usn6}[7]) As `1esn` Optional Match @usn5=(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(`2esn` :`8esn`:`7esn`),usn1=Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` )))) Using Join On `7esn`,`8esn`,`3esn` Where 7[{0}..{_usn4}] Union Create Unique `5esn`=(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})-[_usn4? *..01]-(_usn4 :usn2{usn1:7[True..][2.12..],`8esn`:2.12 Ends With $_usn3 Ends With `3esn`})-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]-({`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}) Foreach(`3esn` In 010[Count(*)..12][$_usn3..{`8esn`}]| Create ``=Shortestpath(({`1esn`:`3esn`[{`2esn`}]})-[`3esn`?*{`8esn`:False Is Null Is Null}]->(:#usn7{_usn4:$`8esn` Contains 123456789 Contains $usn2})),@usn6=Allshortestpaths(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))))"), - octest_legacy:ct_string("Delete (usn2 :@usn5)-[?{`8esn`:{7} Is Null}]->(`` )<-[`3esn`?:`3esn`|:#usn8]-(`` :#usn8:#usn8)[Reduce(usn2=`2esn` Starts With $_usn4,#usn7 In {``} Is Not Null|{7} Is Null)..][Single(#usn7 In {``} Is Not Null Where $1000[0Xa][{#usn7}])..],Case {#usn7}[9e1..][{123456789}..] When $0 Ends With 12.0 Then $`` Is Not Null When $usn1 In {999} In $#usn7 Then 1000[Null..{123456789}] Else 1.0 =~'s_str' =~{`2esn`} End[{@usn5:.e0[..$`8esn`],`4esn`:{usn2} =~12}..Any(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``)] Unwind 's_str' =~{_usn4} =~$`7esn` As `` Union All Match `2esn`=Shortestpath((`6esn` {_usn4:0Xa =~Null =~$``})<-[``? *0X7..]->(`` :`1esn`))"), - octest_legacy:ct_string("With Distinct *,'s_str'[$_usn3..][Count ( * )..] As #usn7 Limit {_usn3}[12.e12] Where {`4esn`} =~9e0 =~{12} Remove ({`1esn`:{`2esn`} Ends With {`7esn`}})-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]-({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[usn1:_usn4|:usn2]-(:_usn4{usn2:0X0123456789ABCDEF[123456789]})._usn3?,Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 7 Starts With {@usn6} Starts With $``).`2esn`! Remove (#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})<-[?:`5esn`]->(:`2esn`:usn1{#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12})-[`4esn`?:_usn4|:usn2 *..01]->(`7esn` :`8esn`:`7esn`{#usn8:01234567[usn2..$12][{`7esn`}..$usn2]}).`1esn` Union All Foreach(@usn5 In {`4esn`}[{`5esn`}..$`6esn`]| Optional Match (`2esn` :`8esn`:`7esn`)-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}) Using Join On `2esn`,`3esn` Using Join On usn1,`8esn` Where 00 Starts With 0xabc) Unwind False Ends With `3esn` As `8esn` Start _usn4=Node( {123456789}) ,`8esn`=Relationship:usn2('s_str')Where {_usn3}[12.e12] Union All Merge usn1=Shortestpath((`7esn` :``:#usn8)<-[ *0X7..]-(`2esn` {_usn3:`1esn` Contains {usn2} Contains $#usn8})-[_usn4:#usn8|`1esn`{`6esn`:#usn8[..{#usn7}]}]->(#usn7 :`4esn`)) Start #usn7=Relationship:usn2(`8esn`={`8esn`}) Where Count(*) In $12 Load Csv With Headers From 's_str' In 00 As @usn6 Fieldterminator 's_str'"), - octest_legacy:ct_string("Start `3esn`=Rel:`6esn`(\"d_str\") ,#usn8=Rel:`5esn`(_usn3={`8esn`}) With *,07 Is Not Null Is Not Null Delete {_usn3:`4esn`[..Count ( * )][..{#usn7}]}[..{_usn4:`5esn`[.e0..][07..],`3esn`:{0} In $_usn3}][..Allshortestpaths(((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})))],{999} Union Foreach(`1esn` In exists()[..[`5esn` In $999[0.0..] Where $`3esn`[..$123456789][..$`1esn`]]][..Reduce(`2esn`={123456789} Is Null Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4])]| Detach Delete #usn7 Is Null Is Null With Count ( * )[True..][{#usn7}..] As _usn3,Count ( * ) Contains 07 As `7esn`,{`4esn`} Ends With {usn2} Ends With {999} As _usn4 Skip `8esn`[{123456789}..]) Union All Create Allshortestpaths(((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]}))),Shortestpath((((`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})<-[`8esn`]-(usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[`3esn`?:`` *..0x0{`4esn`:0.e0 Contains 9e1 Contains {`7esn`},@usn6:$@usn5 =~1000 =~1000}]->(:@usn5{_usn3:07 =~01}))))"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From #usn7[usn1][$`5esn`] As `6esn` "), - octest_legacy:ct_string("Delete Case {`8esn`} Ends With `6esn` When False Is Null Is Null Then 's_str' In 00 Else 123456789 Ends With $`6esn` Ends With $#usn7 End Starts With Case `1esn` =~0 =~$#usn7 When $#usn8[9e12..][.e1..] Then False =~$7 =~2.12 When {123456789}[9e12][{0}] Then 12.0 =~999 =~$_usn3 End Start `6esn`=Node:`8esn`(\"d_str\") ,``=Relationship:_usn3(`8esn`={123456789})Where Count ( * ) Ends With $@usn5 Optional Match ((:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})),#usn7=((:`5esn`{``:1.0[0e0..0.e0]})) Union Start #usn7=Node:_usn4(#usn7=\"d_str\") Union All With Case When usn1 Is Not Null Then $0[12.e12..] Else 7[{0}..{_usn4}] End[..Reduce(_usn3={@usn5} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{usn1}[0X0123456789ABCDEF])] As #usn8,0X7[123.654..@usn6] As _usn3 Skip Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 00[`2esn`..12][123456789..0.e0]|0e0 In @usn5) Ends With 's_str' Ends With _usn3(Distinct $`7esn` =~{`8esn`} =~$usn1,$0[..9e1])"), - octest_legacy:ct_string("Optional Match `6esn`=Shortestpath((`` :#usn7)),Shortestpath(((:usn1{`3esn`:{123456789} Is Null Is Null})-[_usn4{`5esn`:{0} Ends With $_usn3 Ends With $`7esn`,`2esn`:Null[``]}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[? *0Xa]-({`7esn`:{999}}))) Using Join On ``,#usn7,`` Where 12e12 Ends With {usn1} Merge usn2=Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))) Return Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End[..[9e1[1000][{123456789}],$_usn3[{#usn7}],`5esn` Starts With $`2esn` Starts With $1000]][..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0 In `2esn` In 010)] As usn1 Order By Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`]) In {usn2:{`3esn`} Is Not Null Is Not Null} In {`4esn`:False,_usn4:$`7esn` Is Null Is Null} Ascending"), - octest_legacy:ct_string("Start _usn4=Node:`6esn`(\"d_str\") Where `8esn` Ends With 999 Ends With .e12 Union All With *,None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As `5esn`,Shortestpath((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]}))[None(#usn7 In `2esn`[..$#usn8][..Count(*)])][(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})] Where {usn1} Ends With $0 Foreach(`7esn` In {`5esn`} =~`4esn` =~{_usn4}| Load Csv With Headers From {`6esn`}[..$@usn6][..`7esn`] As @usn6 Fieldterminator \"d_str\" Start usn2=Rel:usn2({`4esn`}) ,_usn4=Node:usn2(`8esn`='s_str')Where 123.654[...e0])"), - octest_legacy:ct_string("Unwind Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End Starts With Single(`2esn` In `1esn` =~\"d_str\" Where False Starts With {`5esn`}) Starts With Extract(`5esn` In $999[0.0..] Where 0x0 Ends With $12) As `1esn` Delete Shortestpath(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})))[#usn7(Distinct $`5esn`[`3esn`..])..{``:0Xa Starts With {`6esn`} Starts With $usn1}],.e0[..$`8esn`] Foreach(`8esn` In .e1 In 0Xa In #usn7| With Distinct #usn8 In $@usn6,1.e1[`8esn`][00] Where 0.e0 Starts With `2esn` Return Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})] As `4esn`,usn2 Is Null As `7esn`,Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn` As _usn3 Order By Count ( * ) =~$usn2 =~$usn2 Descending Limit {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains [1.0[0X7][{`5esn`}]])"), - octest_legacy:ct_string("Create Unique `1esn`=((:usn2{#usn8:$`5esn` In $`6esn`})<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})),`5esn`=((:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})) Union Return *,123.654 Is Not Null,Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..] As `7esn` Skip Case When 1.0 =~'s_str' =~{`2esn`} Then $`5esn` In $`6esn` When {`7esn`}[..{`4esn`}] Then {usn1} Ends With $0 End[All(`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"])..[Count ( * )[0.12...e1],1.0[00..],$``]][`4esn`(`4esn` Ends With 07 Ends With {`3esn`})..Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `1esn` =~\"d_str\"|9e12 Is Not Null Is Not Null)] Limit Single(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}])[Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)]"), - octest_legacy:ct_string("Foreach(_usn3 In {``} Is Not Null| With *,$1000 =~$`2esn` As `7esn`,Case When False Then 0.e0 Ends With $#usn7 Ends With $7 When {@usn6}[{999}..][00..] Then `5esn` Ends With {``} Ends With 12.e12 Else 123.654[$`1esn`] End[Reduce(#usn8=$`6esn` Ends With Count(*),`2esn` In `1esn` =~\"d_str\"|_usn4 Contains 2.12)..] As _usn3 Order By #usn8[..{#usn7}] Descending Skip 123.654[$`1esn`] Limit {`7esn`} Is Null With Distinct (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As ``,12[..$`4esn`] As `7esn` Limit Count ( * ) =~$usn2 =~$usn2) Union All Merge ((:_usn4)-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(`5esn` :`8esn`:`7esn`{usn1:`5esn`[_usn4..]})<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]->(usn2 :`6esn`{#usn7:Count ( * ) Contains 07})) On Create Set usn1:`4esn`,usn2+=0Xa[2.12],`7esn`:usn1 On Create Set Single(_usn3 In {`3esn`}[`2esn`] Where _usn3 Contains $123456789 Contains ``).`2esn` =Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With Reduce(`1esn`=0.12 Starts With $`5esn` Starts With 12,_usn3 In {`3esn`}[`2esn`]|$12[True..][{0}..]) Starts With Reduce(usn2=Null Ends With {`5esn`} Ends With 0.e0,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{`6esn`}),[@usn6 Ends With {_usn3},12.0 Contains #usn7,$_usn3[..1000]].`2esn`? =0e0 Contains Null,`5esn`+=7 Ends With (@usn5 {`7esn`:$`6esn`[010..]})-[:`8esn` *..01]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]}) Ends With #usn8(False =~$7 =~2.12) Optional Match (:`2esn`:usn1{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}) Using Join On #usn8 Using Scan `6esn`:`2esn` Where 0e0 Starts With 1000 Starts With #usn7"), - octest_legacy:ct_string("Remove Case When {`3esn`}[..07][..{`5esn`}] Then 's_str' Is Not Null Is Not Null End.`7esn`! Foreach(`8esn` In [_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|`` Is Not Null Is Not Null] Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where {_usn3}[..\"d_str\"][..`5esn`]) Ends With Filter(`3esn` In {7} Is Null Where {123456789} Contains $#usn8)| Remove (:#usn7)-[?:_usn3|_usn3]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[:#usn7 *..010]->(#usn8 :usn1)._usn4!,{_usn4:0.12 Contains 0X0123456789ABCDEF Contains .e0}.`1esn`! Remove None(#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01).`5esn`!) Union All Delete Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) Is Not Null Is Not Null,$@usn5[..12e12][..$123456789] Start `7esn`=Rel:_usn4(``={#usn7}) ,@usn6=Node:`7esn`(_usn4={12})Where Count ( * )[0.12...e1] Create Unique (`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]}),Allshortestpaths((:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null})<-[#usn7{`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]}]-({#usn8:True[..$`6esn`]})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})) Union All Remove Reduce(#usn7=`7esn`[..2.12][..00],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|1000 =~@usn6 =~0x0).#usn8? Detach Delete $12 Ends With 07 Ends With $123456789,$`6esn`[{_usn3}..$`4esn`][$_usn4...e12]"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From 7 Starts With {@usn6} Starts With $`` As #usn8 Merge _usn3=Shortestpath(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})))"), - octest_legacy:ct_string("Merge #usn8=((:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]})) On Create Set ``(0X7 =~9e1,0.0 =~999).`3esn`! =(:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})<-[{`8esn`:07 In `2esn` In 12e12}]-(`3esn` :@usn5)-[?:`5esn`]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}) Is Not Null Is Not Null On Create Set ($#usn8)-[:`8esn` *..01]->(`` {`3esn`:{12} Contains {123456789} Contains `4esn`}).`6esn`! =999 Ends With Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 1.0 In Count(*)),@usn6+=None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12])[Reduce(`4esn`=`1esn` =~0 =~$#usn7,`2esn` In `1esn` =~\"d_str\"|{123456789} Is Null Is Null)][{``:`7esn` Starts With $#usn7 Starts With $`7esn`}],Shortestpath(((usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]->(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(:@usn6:#usn8$`5esn`))).``? =(:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12} Unwind $`1esn`[{`2esn`}..] As #usn8"), - octest_legacy:ct_string("Remove [`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where $7[0.12][usn1]].`3esn`!,[2.12 Ends With $_usn3 Ends With `3esn`,#usn7,01[{@usn5}]].`2esn`! Union All Foreach(`7esn` In [@usn6 Contains $1000 Contains {`7esn`},$1000 Is Null Is Null,$`5esn` In 0.e0] Is Not Null Is Not Null| Start @usn6=Rel:``(_usn3='s_str') ,#usn7=Relationship:usn2(`8esn`={`8esn`}) Create Allshortestpaths(((`7esn` {``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}))),_usn4=(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})<-[ *..010{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}}]->(:_usn4$@usn5)<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]->(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})) Create Unique Shortestpath((((:@usn6:#usn8{`1esn`:`4esn`[..010][..{12}]})<-[`2esn`?:`7esn`]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[? *..07]-(`4esn` {``:{#usn8}[010],usn1:{``} Starts With $`2esn` Starts With `1esn`}))))"), - octest_legacy:ct_string("Load Csv With Headers From {`3esn`}[..07][..{`5esn`}] As `4esn` Fieldterminator 's_str' Merge _usn4=Allshortestpaths((#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})) With `6esn`(Distinct 2.12 Ends With $_usn3 Ends With `3esn`) Is Null,`8esn`[$#usn7..123456789],All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By Single(#usn8 In {`5esn`}[.e1..``] Where 123.654[$`1esn`]) Is Not Null Is Not Null Descending,_usn4(Distinct _usn3[_usn3..][12.e12..])[[0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},0Xa Starts With {`6esn`} Starts With $usn1]] Desc,1e1 In \"d_str\" In `7esn` Descending Skip [`` Ends With 0Xa Ends With `2esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},{`4esn`} =~{7} =~{`7esn`}] Union With Distinct 07[$#usn7..{1000}] Order By {#usn7}[..9e12][..`8esn`] Ascending,Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))) Desc,@usn6 Is Null Is Null Descending Limit `3esn` In $0 In `1esn` Where Count ( * ) Ends With $@usn5 Remove Filter(_usn3 In {`3esn`}[`2esn`] Where 010 =~{usn2}).`4esn`?,Case {#usn7} Is Not Null Is Not Null When 12e12 Ends With {usn1} Then `1esn` Ends With {_usn3} Ends With `2esn` End.`3esn` Union Remove exists(Distinct 9e1 In $`3esn` In $@usn6).`8esn`!,None(_usn3 In {`3esn`}[`2esn`] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0])._usn4,[usn1 Starts With usn1 Starts With $``,False =~1e1 =~0.e0,`3esn`[..010][..$7]].`1esn` Create Unique _usn4=Allshortestpaths((`` {@usn6:1.0[$`1esn`..][$123456789..]})<-[?{usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null}]-(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})) Foreach(`2esn` In @usn6[{`5esn`}]| Unwind Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where _usn4 Contains 2.12)[(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})..][#usn7(7 =~{`8esn`} =~$`6esn`,$123456789 Ends With {`1esn`} Ends With $`4esn`)..] As @usn5 Optional Match ((`4esn` :@usn6:#usn8)-[:`8esn`*]->({_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})),`3esn`=Shortestpath(((:`1esn`{`5esn`:1.0 In Count(*)}))) Using Scan _usn4:`7esn` Where 0x0[{`7esn`}..][$usn2..])"), - octest_legacy:ct_string("Foreach(`2esn` In {`5esn`}[.e1..``]| Match ((usn2 :`4esn`)-[_usn3:#usn8|`1esn`{_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]}]->(@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:`5esn` *0..{_usn4:7[$`2esn`..{`5esn`}]}]->()) Using Scan @usn5:@usn6 Using Join On #usn7,`4esn`) Start @usn5=Relationship:`2esn`(usn2='s_str') ,`7esn`=Rel:`4esn`(`2esn`=\"d_str\")Where {999}[1000..{usn2}] Union Detach Delete .e0[12.e12..],Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0) Is Not Null Is Not Null,0.12[`2esn`..{`6esn`}] Union All Foreach(`4esn` In {#usn8} Starts With 00 Starts With {`6esn`}| Match `4esn`=Allshortestpaths((((:`5esn`)<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})-[`3esn`:#usn7]-({@usn6:$usn1 Ends With $`` Ends With $12})))) Where False Contains {`6esn`}) Return Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End[..[9e1[1000][{123456789}],$_usn3[{#usn7}],`5esn` Starts With $`2esn` Starts With $1000]][..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0 In `2esn` In 010)] As usn1 Order By Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`]) In {usn2:{`3esn`} Is Not Null Is Not Null} In {`4esn`:False,_usn4:$`7esn` Is Null Is Null} Ascending"), - octest_legacy:ct_string("Start `2esn`=Node:`2esn`({1000}) Start @usn6=Rel:@usn6(usn1={999}) Where 0e0 Ends With 1.e1 Ends With $`4esn` Merge ``=(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[?:#usn7 *01234567..0Xa]-(@usn6 {#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12})-[usn1? *1000..00]->(#usn7 :@usn5{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}))) On Match Set ``+={12} =~#usn8 On Create Set `3esn`+=$`7esn` =~{`8esn`} =~$usn1 Union Load Csv With Headers From Reduce(usn2={`6esn`} Contains \"d_str\",`8esn` In 01[2.12..`8esn`]|7[..999][..{#usn8}]) Starts With All(#usn8 In 7[..999][..{#usn8}] Where $#usn7 Contains 0x0 Contains 1000) As `4esn` Fieldterminator 's_str' Union Start _usn3=Node:`5esn`(`7esn`='s_str') ,`1esn`=Node:`6esn`(@usn5={_usn4})Where 0x0 Is Null"), - octest_legacy:ct_string("Merge #usn8=Allshortestpaths(({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})) Start `3esn`=Node:`7esn`(\"d_str\") Where 0.0 =~999 Union All Unwind $12 Starts With {`1esn`} Starts With Null As `6esn` With {usn2}[$`3esn`..][{#usn7}..] As `1esn`,[$0] In [`2esn` In `1esn` =~\"d_str\" Where {0} Ends With $_usn3 Ends With $`7esn`|{999} Contains .e0 Contains 12.0] In None(`2esn` In `1esn` =~\"d_str\" Where {`7esn`}[..$@usn5][..$#usn8]) As usn1,0X7[123.654..@usn6] As _usn3 Limit usn2(7[..999][..{#usn8}])[[$_usn4 Contains Null Contains #usn8,{#usn8}[{7}],{@usn6}[{999}..][00..]]..] Where $#usn7 Is Null Load Csv With Headers From {`1esn`}[12.0..`2esn`][@usn6..{usn1}] As `8esn` Fieldterminator 's_str'"), - octest_legacy:ct_string("Start `8esn`=Rel:@usn6(`7esn`={`8esn`}) Create Unique Allshortestpaths((((`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`2esn` *..07]-(`1esn` {#usn7:{_usn4} In {12} In $0})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})))),_usn4=(`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null})<-[``?]->(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}) Remove Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|`5esn` Ends With {``} Ends With 12.e12).usn2?,[#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`2esn`} Ends With {`7esn`}|12e12[0e0][9e1]].`1esn`?,{`6esn`:1.e1[$`1esn`..@usn6][$0..$_usn3],`8esn`:{``} Is Not Null}._usn4! Union All Merge usn2=((@usn6 :_usn4)) On Create Set `` =Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End,Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where 01[2.12..`8esn`]).`5esn` =Shortestpath(((:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]-(:`5esn`{``:1.0[0e0..0.e0]})<-[``? *..0x0{#usn7:False =~$7 =~2.12}]->(`3esn` :usn2)))[['s_str' In 00,{@usn6}[$`6esn`..`4esn`]]..][Case @usn6 Starts With `6esn` Starts With $`1esn` When {`3esn`}[`2esn`] Then Null In $7 In .e1 When {0}[@usn6..$1000] Then 12.0 Contains #usn7 End..] On Create Set _usn3+=$`3esn` Is Not Null Is Not Null,`3esn` ={`4esn`} Ends With {usn2} Ends With {999},{@usn6:{999} Starts With $999,`4esn`:$usn1[{`5esn`}][$`6esn`]}.@usn5? =$usn1[..{`6esn`}]"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From _usn3[$`8esn`] As `` "), - octest_legacy:ct_string("Remove {`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}.`1esn` Union Create `1esn`=Allshortestpaths((((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[? *0Xa]-({`7esn`:{999}})-[`7esn`]->(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]}))))"), - octest_legacy:ct_string("Unwind Allshortestpaths((:#usn8:#usn8{_usn3:$_usn3['s_str'][07],`7esn`:$1000 In $1000 In $`3esn`})<-[? *..12{#usn8:`5esn` Is Null,#usn8:`1esn`[{usn1}..``][7..$#usn8]}]-(`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]})-[:`6esn`|`5esn`{`8esn`:$0 Ends With 12.0}]-({`8esn`:$123456789[_usn3][{#usn7}]})) Ends With All(`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"]) Ends With All(#usn7 In {``} Is Not Null Where usn1[9e12..][$7..]) As _usn4 Create Allshortestpaths((((`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null})-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(:@usn6:#usn8{`1esn`:`4esn`[..010][..{12}]})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})))) Union Create (:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})-[?:`5esn`]->(:usn2),`2esn`=Shortestpath((({usn2:7[..999][..{#usn8}]})))"), - octest_legacy:ct_string("Delete Case When `4esn`[`5esn`..12][@usn6..False] Then $123456789 Ends With $999 Ends With {999} When $123456789 Ends With $999 Ends With {999} Then False Is Null Is Null Else 7[True..][2.12..] End Starts With [`8esn` Ends With 999 Ends With .e12] Starts With (`5esn` :`4esn`)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null})<-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]-(`7esn` :`5esn`{`3esn`:`7esn` Is Null}),Reduce(@usn6=0.e0 Ends With $#usn7 Ends With $7,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999})[[#usn8[`3esn`..][{#usn7}..]]..(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`8esn` :@usn6:#usn8)<-[{`8esn`:07 In `2esn` In 12e12}]->(:_usn4{`6esn`:{`6esn`} =~$999,`6esn`:$#usn7[..{`5esn`}][..9e12]})][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)..Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0e0 Starts With `2esn` Starts With $``)],Extract(#usn8 In {`5esn`}[.e1..``] Where {`3esn`}[..07][..{`5esn`}]) Is Null Is Null Return $12[True..][{0}..] As _usn3"), - octest_legacy:ct_string("Return Distinct [1000 =~@usn6 =~0x0] Starts With {#usn8:$`7esn` =~{`8esn`} =~$usn1,`7esn`:0xabc[01..{999}][{7}..{`7esn`}]} Starts With `7esn`(Distinct 123.654[`3esn`..]) As `1esn`,0.0[Null][$`2esn`],`6esn` Is Not Null Is Not Null As `3esn` Order By $7[{usn2}..][{usn2}..] Asc,.e12 Contains 00 Contains {999} Asc,1e1 In \"d_str\" In `7esn` Desc Limit $_usn4 Is Null Is Null"), - octest_legacy:ct_string("Load Csv With Headers From [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789] Ends With None(`2esn` In `1esn` =~\"d_str\" Where False Starts With {`5esn`}) As usn2 Create #usn7=(({_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})-[`7esn`?*..]->(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01})-[]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})),((`8esn` )) Union Load Csv From 0x0 Ends With $12 As usn2 Fieldterminator 's_str' Start usn2=Rel:_usn4(\"d_str\") ,_usn4=Node:`4esn`(_usn4={123456789})"), - octest_legacy:ct_string("Delete {@usn6}[7]"), - octest_legacy:ct_string("Return *,Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))) As _usn3 Order By 1.e1[$`1esn`..@usn6][$0..$_usn3] Asc,Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Is Not Null Is Not Null Asc Skip [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789] =~Reduce(_usn3=$``,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{#usn8} Is Null) =~Case {``} Is Null When 2.12 Then $123456789 Ends With {`1esn`} Ends With $`4esn` End Limit {usn1} Ends With $0 Create Unique `5esn`=((({usn1:{`7esn`}[`6esn`][#usn7],usn1:{999} Starts With $999})-[_usn4:#usn8|`1esn`{`6esn`:#usn8[..{#usn7}]}]->(#usn7 :`4esn`)-[usn1? *0X0123456789ABCDEF]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))),((:@usn5$`5esn`))"), - octest_legacy:ct_string("Remove All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e1 Is Not Null)._usn3!,[12.0 Contains #usn7,12.e12[$_usn3..],$0[$`1esn`..07]]._usn4,None(#usn8 In 7[..999][..{#usn8}] Where {12} =~#usn8).@usn5 Return Distinct *,`` Is Not Null,.e12[@usn5..$12] As `4esn` Union All Load Csv With Headers From {#usn7:0X0123456789ABCDEF =~1e1 =~{`4esn`},`2esn`:1.0 =~'s_str' =~{`2esn`}}[Reduce(`4esn`=`5esn`[_usn4..],@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{123456789} Is Null Is Null)][[`3esn` In {7} Is Null Where usn1 Is Null Is Null]] As #usn7 "), - octest_legacy:ct_string("Create Unique ((:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?:`5esn` *0..]->(usn2 :``:#usn8)<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})) Unwind 07[..True][..9e12] As _usn3 Load Csv From Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`)[None(#usn8 In 7[..999][..{#usn8}] Where 0Xa[2.12])..][[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789]]..] As #usn8 Union All Unwind {1000} Is Null Is Null As `3esn` Match ``=((`5esn` :_usn4{7})-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})) Using Index `5esn`:`1esn`(usn1) Where #usn8[..{#usn7}]"), - octest_legacy:ct_string("Create `5esn`=Allshortestpaths(((`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}))),Allshortestpaths(((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]}))) Union Remove All(#usn7 In `2esn`[..$#usn8][..Count(*)]).#usn7!,All(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01).usn1?,[`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {_usn4} Starts With 0.e0 Starts With 0x0|123.654[`3esn`..]].`2esn`? Union All With Distinct *,07[$#usn7..{1000}],0X0123456789ABCDEF =~1e1 =~{`4esn`} Order By $`5esn`[2.12..] Asc Where @usn5 Is Null Create ((:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})),#usn7=((:`5esn`{``:1.0[0e0..0.e0]}))"), - octest_legacy:ct_string("Merge Allshortestpaths((((:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null})-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]-({_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})))) On Create Set #usn8 =Extract(`5esn` In \"d_str\" Is Null Is Null)[Any(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``)][Case $`7esn` Is Null Is Null When {#usn7}[9e1..][{123456789}..] Then False =~1e1 =~0.e0 Else 1000 In {`8esn`} In 01 End],#usn7+=`4esn`[..Count ( * )][..{#usn7}],@usn5 =@usn6 In 1000 In $`` Remove usn1(Distinct 0X7[`7esn`][123.654],$`5esn`[..$`5esn`][..$12]).@usn5! Start `3esn`=Relationship:_usn3(`8esn`={123456789}) ,`2esn`=Rel:#usn8({``})Where 1.0[0e0..0.e0] Union All Foreach(@usn6 In {`2esn`:1000[..$0][..True],@usn5:{12} Ends With 0Xa Ends With $`6esn`}[Single(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn1} Ends With $0)..][Extract(`2esn` In `1esn` =~\"d_str\" Where $`4esn` In Null In 0xabc|{`5esn`} Starts With $`5esn` Starts With .e1)..]| Unwind #usn8 In $@usn6 As `4esn`) Return [12.e12[$_usn3..]][Shortestpath(((@usn6 :`4esn`)))..Reduce(`5esn`=01234567 Ends With .e12 Ends With $#usn7,`8esn` In 01[2.12..`8esn`]|0Xa =~Null =~$``)] As `1esn`,$`8esn` Contains 123456789 Contains $usn2 Order By Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 1.0 =~7 =~{usn2}) Is Not Null Is Not Null Desc,Case When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $`4esn`[..$`3esn`][..0.0] Then `1esn` =~0 =~$#usn7 Else {``} Is Null End Contains Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Contains All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {@usn6}[7]) Ascending,[`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]][..None(#usn8 In 7[..999][..{#usn8}] Where $`7esn`['s_str'])][..`1esn`(Distinct 12e12[$`3esn`],0.0 =~999)] Desc With Distinct *,{`2esn`} Ends With {`7esn`},Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 1.0 =~7 =~{usn2}) Is Not Null Is Not Null As `5esn` Skip 12.0[123.654][Count(*)]"), - octest_legacy:ct_string("With 123.654 Is Not Null,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where False|{`1esn`}[12.0..`2esn`][@usn6..{usn1}]] =~Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 00[{`8esn`}..][{`8esn`}..]|{0}) =~{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}} Order By {@usn5:$`8esn` =~{1000}} Contains [1000 In {`8esn`} In 01,`` Ends With 0Xa Ends With `2esn`] Contains Reduce(#usn7={12} Is Not Null,#usn7 In {``} Is Not Null|usn2 Is Null) Descending Where $usn2[{@usn5}] Create Allshortestpaths((`3esn` :#usn8:#usn8)),((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})-[`8esn`?:@usn6|`6esn`]-(`2esn` :`6esn`)) Remove {_usn3:`4esn` Ends With 07 Ends With {`3esn`}}.`1esn` Union All Delete `5esn`(Distinct $0,$_usn4 Contains Null Contains #usn8) In Case 12.0[123.654][Count(*)] When $_usn3[Count(*)] Then 0e0 =~`6esn` =~123456789 End In {`8esn`:False Is Null Is Null},`6esn`[2.12..01][{``}..False],[_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null|999 Is Not Null Is Not Null] Ends With [`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null|{`5esn`} Starts With $`5esn` Starts With .e1] Ends With {``:usn1 Starts With usn1 Starts With $``} Merge (`1esn` :`4esn`{`6esn`:$`6esn` Ends With Count(*),`7esn`:_usn3 Starts With 12.e12 Starts With 0.12})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})"), - octest_legacy:ct_string("Foreach(`4esn` In 999 Ends With Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 1.0 In Count(*))| Detach Delete Single(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]) Ends With Case When 07 Contains 0X7 Contains $`8esn` Then {`4esn`} =~9e0 =~{12} When .e1 Ends With 1e1 Ends With @usn5 Then $#usn8[Count ( * )] Else Count ( * )[True..][{#usn7}..] End Ends With Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End Unwind $#usn8[9e12..][.e1..] As usn2) With $123456789 In 0X0123456789ABCDEF In 0.e0 As `6esn`,{`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null} Contains {@usn5:{`3esn`} In 01} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 1.0[0X7][{`5esn`}]|{``}[010..][0xabc..]) Order By 1e1 In \"d_str\" In `7esn` Descending,`1esn`({`2esn`} Ends With {`7esn`},{`2esn`} Starts With 0.0 Starts With {usn1})[Extract(`4esn` In $`3esn` Is Not Null Where usn2 Is Not Null Is Not Null)..None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {_usn4} Starts With 0.e0 Starts With 0x0)] Desc Skip [Count(*) Ends With 12.0 Ends With 12,9e0[{0}..{`3esn`}][\"d_str\"..0Xa]][..Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``])][..{usn1:$_usn3[..1000],`7esn`:{1000} =~0 =~123.654}] Return Distinct *,$1000[0Xa][{#usn7}],{usn1} Is Not Null Is Not Null Order By 0.e0[123.654][01] Desc,{`2esn`}[``..07][0x0..1000] Desc Skip Allshortestpaths((:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})) Limit 0x0 Ends With Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..]) Ends With Filter(#usn7 In {``} Is Not Null Where 0x0 Is Null) Union All With (`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})-[`7esn` *0X0123456789ABCDEF]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})<-[@usn6 *..01{#usn7:@usn6 Contains $1000 Contains {`7esn`},@usn5:`2esn` Starts With $_usn4}]->(`6esn` :@usn6:#usn8) Is Not Null Is Not Null As usn2 Order By $`6esn`[.e0..$`6esn`][$_usn3..{#usn7}] Ascending Skip $12 Is Not Null Is Not Null Limit $123456789 Ends With {`1esn`} Ends With $`4esn` Load Csv From Case When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $`4esn`[..$`3esn`][..0.0] Then `1esn` =~0 =~$#usn7 Else {``} Is Null End Contains Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Contains All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {@usn6}[7]) As `1esn` Union All Foreach(`3esn` In $`6esn` Ends With Count(*)| Create #usn8=((_usn4 {usn1:True Contains {0} Contains 7})) Load Csv From .e1 In 0Xa In #usn7 As `2esn` Fieldterminator \"d_str\")"), - octest_legacy:ct_string("Return Distinct 0X7[1000..{`1esn`}],Extract(#usn8 In {`5esn`}[.e1..``] Where {7}[..1.0][..9e0]) Ends With Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where `8esn` Ends With 999 Ends With .e12|9e1[..$`2esn`]) Ends With $_usn4 As `4esn`,12.e12[`3esn`] As #usn7 Merge Allshortestpaths((`3esn` :#usn7{usn2:12.0 =~999 =~$_usn3,@usn6:{usn2}[$`3esn`..][{#usn7}..]})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null})-[usn1?:_usn3|_usn3]-(usn2 :#usn7)) Union All Unwind 7[$`8esn`..123456789][$usn1..$usn1] As _usn4 Unwind Allshortestpaths((((:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]->(:`4esn`{``:2.12 Is Not Null Is Not Null}))))[{`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null}][Allshortestpaths(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})))] As @usn5 Unwind Reduce(@usn6=0.e0 Ends With $#usn7 Ends With $7,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999})[[#usn8[`3esn`..][{#usn7}..]]..(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`8esn` :@usn6:#usn8)<-[{`8esn`:07 In `2esn` In 12e12}]->(:_usn4{`6esn`:{`6esn`} =~$999,`6esn`:$#usn7[..{`5esn`}][..9e12]})][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)..Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0e0 Starts With `2esn` Starts With $``)] As #usn7 Union All With *,9e1 In 2.12 Skip {`3esn`} Is Not Null Is Not Null Limit {_usn3}[12e12..]"), - octest_legacy:ct_string("Remove $999.``,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789].`5esn`?,(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})-[usn2?]-(:@usn5)<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->(`7esn` {`5esn`:123.654 Contains $`4esn` Contains 1.0,`8esn`:123.654 =~$usn2 =~{999}}).`5esn`? Unwind `4esn`[`5esn`..12][@usn6..False] As #usn8 Match (((@usn5 {usn2:0.e0[123.654][01]})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->($#usn8)<-[`8esn`:`2esn` *..07]->(:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null}))) Using Join On usn1,`4esn`,`6esn` Using Join On #usn7,_usn4 Union Remove [#usn8 In 7[..999][..{#usn8}] Where .e0[..$`8esn`]].`2esn`!,Single(`4esn` In $`3esn` Is Not Null Where @usn5 =~{`5esn`} =~`5esn`).`6esn`?,Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where .e0 Starts With 0 Starts With 0.e0|@usn6[{`5esn`}]).usn1? Load Csv With Headers From {`7esn`} Is Null As `` Fieldterminator 's_str'"), - octest_legacy:ct_string("Delete $@usn5 Starts With 01 Starts With .e0,$usn1[{`5esn`}][$`6esn`] Start `6esn`=Relationship:usn2(#usn8=\"d_str\") ,`5esn`=Relationship(*) Remove Reduce(`2esn`=`4esn`[`5esn`..12][@usn6..False],_usn3 In {`3esn`}[`2esn`]|@usn6 Contains $1000 Contains {`7esn`}).@usn5,#usn8:`6esn` Union All Start _usn4=Node( {999}) Where 12.0 Contains #usn7 Start usn1=Relationship:`8esn`(#usn8={`2esn`}) ,`7esn`=Node:`6esn`({_usn3}) Foreach(`2esn` In None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`])[Any(`3esn` In {7} Is Null Where {`4esn`} =~{7} =~{`7esn`})..][Extract(`2esn` In `1esn` =~\"d_str\" Where $_usn4[1.e1]['s_str']|usn1[`5esn`..$7])..]| Create Unique Allshortestpaths((:`1esn`{})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(:`6esn`$123456789)),(((`3esn` :`8esn`:`7esn`)-[`7esn`:#usn8|`1esn` *0xabc..]->(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})-[`2esn`?:`7esn` *..07$0]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]}))) Unwind 0e0[..010] As ``) Union Remove Reduce(`5esn`=07[..True][..9e12],#usn8 In {`5esn`}[.e1..``]|@usn5 =~{`5esn`} =~`5esn`).`8esn`,Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`).`6esn`!"), - octest_legacy:ct_string("Load Csv With Headers From _usn3[..`8esn`][..2.12] As `5esn` Fieldterminator \"d_str\" Unwind 12.e12 Starts With {999} Starts With {`1esn`} As `4esn` Create Unique #usn7=(:#usn7)<-[`5esn`{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(_usn3 {#usn8:_usn4 Is Null Is Null})<-[#usn7{`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]}]-({#usn8:True[..$`6esn`]}) Union Return $`6esn` =~1.e1 =~12,$`3esn`[..$123456789][..$`1esn`] Limit Shortestpath((((`7esn` {`5esn`:123.654 Contains $`4esn` Contains 1.0,`8esn`:123.654 =~$usn2 =~{999}})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[`2esn`?:`1esn` *00]->({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})))) In (usn2 :@usn5)-[?{`8esn`:{7} Is Null}]->(`` )<-[`3esn`?:`3esn`|:#usn8]-(`` :#usn8:#usn8) In (@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8}) Load Csv With Headers From 0Xa[usn2..] As `` Fieldterminator \"d_str\""), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From {`6esn`} Contains \"d_str\" As _usn3 Fieldterminator 's_str' Load Csv With Headers From Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0) Is Not Null Is Not Null As `` Remove Allshortestpaths(((`` ))).#usn8,All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {12} Is Not Null)._usn3?,`6esn`:`8esn`:`7esn`"), - octest_legacy:ct_string("Load Csv From $`4esn`[`7esn`] As `4esn` With *,_usn4(Count(*) In $12) In Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $123456789 =~{`6esn`} =~\"d_str\"|01 Ends With 999 Ends With {`7esn`}),$`` Ends With 0.0 Ends With {1000} With Distinct All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)],None(#usn8 In 7[..999][..{#usn8}] Where 2.12['s_str'..$12][{`1esn`}..`2esn`])[[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 12e12 Ends With {usn1}]][[$12 Ends With 07 Ends With $123456789,$@usn5 =~1000 =~1000,.e12[@usn5..$12]]] As @usn5 Order By True =~{`5esn`} Asc,\"d_str\" Contains {123456789} Contains 01 Asc Where {999} Starts With {0}"), - octest_legacy:ct_string("Match `4esn`=({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]->(_usn3 :`5esn`) Using Scan ``:_usn4 Where 0.e0 In $#usn7 In $_usn3 Detach Delete 7[{0}..{_usn4}] Remove [01[{@usn5}],12.0 =~1.0 =~9e12].`3esn`?,(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})<-[usn1:_usn4|:usn2]-(:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[`4esn`?:`2esn`{`4esn`:#usn7 Contains _usn3 Contains {`3esn`}}]-({`3esn`:.e1[..usn2][..`8esn`]}).`3esn`?,All(`4esn` In $`3esn` Is Not Null Where $@usn5 Contains 0xabc Contains {#usn7})._usn3! Union All Unwind `4esn`[..010][..{12}] As `5esn` Union All Unwind usn1 Ends With $@usn6 Ends With `3esn` As #usn7 With Distinct *,{`2esn`} Ends With {`7esn`},Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 1.0 =~7 =~{usn2}) Is Not Null Is Not Null As `5esn` Skip 12 In `3esn` In 1e1 Where $`7esn` =~{`8esn`} =~$usn1 Optional Match #usn7=((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})) Using Index @usn5:#usn7(`4esn`) Using Scan @usn5:_usn4 Where 0x0 =~$usn2"), - octest_legacy:ct_string("Match Allshortestpaths((`1esn` {_usn4:1.e1[$`1esn`..@usn6][$0..$_usn3],#usn8:$@usn5[..12e12][..$123456789]})<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})),(:@usn6:#usn8{`7esn`:0x0[`4esn`..'s_str']}) Using Scan `2esn`:usn1 Using Index _usn4:`5esn`(`6esn`) Where $`6esn` Is Null Foreach(usn2 In $`` Is Not Null| Delete True[..$`6esn`],\"d_str\" Starts With $123456789) Return *,Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7) In [{_usn3}[..$12][..0.12],usn1 Is Null] In [#usn8 In 7[..999][..{#usn8}] Where $_usn3 Contains 999 Contains \"d_str\"] Limit [`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999}] Ends With usn1(Distinct 1000 In {`8esn`} In 01,{_usn3}[..\"d_str\"][..`5esn`]) Ends With Reduce(_usn4=1000[Null..{123456789}],`5esn` In $999[0.0..]|9e1 In $`3esn` In $@usn6) Union Detach Delete 0e0[$1000][{usn1}]"), - octest_legacy:ct_string("Unwind ({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)[Shortestpath((((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``}))))..][{usn2:{7}[..1.0][..9e0]}..] As `8esn`"), - octest_legacy:ct_string("Merge `2esn`=Allshortestpaths(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Match `8esn`=Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))) Where False =~1e1 =~0.e0 Create Unique `1esn`=(`5esn` :_usn4{7})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}),`2esn`=Shortestpath(({@usn5:07[..True][..9e12]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]})) Union All Merge (`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}) On Create Set usn1+=Extract(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|{@usn5} Is Null Is Null)[Case When $0[..9e1] Then Count(*)[..usn2][..usn2] When {`2esn`} Starts With 0.0 Starts With {usn1} Then 0e0 In @usn5 Else 01 =~{_usn3} =~`3esn` End.._usn3(1.0 In Count(*),0[{usn2}..][$`6esn`..])][count(Distinct $12[Null..Count(*)][{`5esn`}..{999}],$`4esn`[`7esn`])..Case When $123456789 Ends With $999 Ends With {999} Then `3esn`[{usn1}] When #usn7 =~Count ( * ) =~`` Then $_usn4 Starts With 1e1 End],`7esn` =[12.0,2.12 Is Not Null Is Not Null][Case When usn1 In 7 In {123456789} Then `5esn`[_usn4..] When `7esn`[9e0..] Then {`3esn`} In 01 End..999] On Match Set Shortestpath(({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[`6esn`? *0..]-(:usn1{`3esn`:{123456789} Is Null Is Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})).`6esn` =$`8esn`[1000..0Xa],`4esn`+=1e1[1000..],(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})-[? *0Xa]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(`3esn` :`6esn`).#usn7! =1000 =~@usn6 =~0x0 Start usn2=Rel:_usn4(\"d_str\") Where {`6esn`} Union All Create `1esn`=((@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})<-[`1esn`? *..999{#usn8:{_usn4}[...e1][..$7]}]-(`5esn` :`6esn`)),#usn8=Shortestpath((#usn8 :@usn5)) Remove [usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0X0123456789ABCDEF =~1e1 =~{`4esn`}].`6esn`,[_usn3 Contains $123456789 Contains ``].@usn5!,Reduce(`1esn`=True[..$`6esn`],@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{@usn6}[7]).`1esn`! Merge ((:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[ *0xabc..{usn2:{12} Is Not Null,`6esn`:``[$`2esn`]}]-(`4esn` {`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})) On Create Set usn1 =0.e0[123.654][01],@usn5+=$`8esn`[$`7esn`..][0.e0..]"), - octest_legacy:ct_string("Delete 12.0 Contains #usn7,$12[Null..Count(*)][{`5esn`}..{999}],Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where `5esn` Starts With $`2esn` Starts With $1000) Ends With Reduce(``=0.12 =~$0 =~$0,`2esn` In `1esn` =~\"d_str\"|9e12[`1esn`..][$`1esn`..])"), - octest_legacy:ct_string("Load Csv With Headers From $123456789 Starts With 9e0 Starts With 's_str' As `3esn` Fieldterminator \"d_str\" Match `6esn`=((`3esn` {usn1:$0[..9e1],@usn5:`7esn`[..{usn1}]})-[#usn7?:`3esn`|:#usn8]->(`2esn` :usn1)-[`7esn`]-(`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})),`3esn`=Allshortestpaths(((#usn7 {``:9e12[`1esn`..][$`1esn`..],#usn7:#usn8})-[?:`7esn` *0X0123456789ABCDEF]->(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})<-[#usn8?:#usn7{`1esn`:#usn7 =~Count ( * ) =~``,usn2:`` Ends With $1000}]->(:@usn6:#usn8{`4esn`:$`8esn`[..00]}))) Where .e1 Is Null Is Null Union Start `3esn`=Relationship:_usn3(`8esn`={123456789}) Where $7[{usn2}..][{usn2}..] With All(`3esn` In {7} Is Null Where Count ( * ) Contains 07) Is Null Is Null Limit $12[`5esn`..] Where 0.12[`2esn`..{`6esn`}] Optional Match usn1=(((@usn5 :`8esn`:`7esn`{`6esn`:`7esn`[$0][9e12],`4esn`:.e1 Is Null Is Null})<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->(`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`)))"), - octest_legacy:ct_string("Return *,Case {`3esn`}[@usn6..0Xa][{12}..0Xa] When {usn1}[0X0123456789ABCDEF] Then 0x0 Ends With $12 When 0e0 Starts With `2esn` Starts With $`` Then {123456789}[9e12][{0}] Else 0X7[1000..{`1esn`}] End[..({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})] As #usn7 Order By 0.e0[#usn8] Desc Limit Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`)[None(#usn8 In 7[..999][..{#usn8}] Where 0Xa[2.12])..][[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789]]..] Create Unique `6esn`=Allshortestpaths((#usn8 :@usn6:#usn8)) Load Csv From 0.0 As `1esn` Fieldterminator 's_str' Union Load Csv From {`2esn`}[$`8esn`][$12] As `4esn` Union Merge `8esn`=(#usn7 :`6esn`$1000)<-[`6esn`? *..010]-(`` :`1esn`)"), - octest_legacy:ct_string("Return Distinct *,$1000[0Xa][{#usn7}],{usn1} Is Not Null Is Not Null Order By 0.e0[123.654][01] Desc,{`2esn`}[``..07][0x0..1000] Desc Skip Allshortestpaths((:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})) Limit 0x0 Ends With Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..]) Ends With Filter(#usn7 In {``} Is Not Null Where 0x0 Is Null) Create ``=Shortestpath(({`7esn`:{999}})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})),``=(((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))) Load Csv From $`5esn`[2.12..{_usn3}][_usn3..{1000}] As `5esn` "), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From 7[$`2esn`..{`5esn`}] As `6esn` Fieldterminator 's_str' Remove [`5esn` In \"d_str\" Is Null Is Null Where ``[$`2esn`]|9e1[2.12..{#usn8}]].@usn6! Match ``=(((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))),@usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})) Using Join On @usn6,`` Using Join On `1esn` Where `4esn` Is Not Null Is Not Null"), - octest_legacy:ct_string("Remove [usn1 Ends With $@usn6 Ends With `3esn`,0xabc[.e0],{``}[010..][0xabc..]].``? Unwind (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(:_usn3:_usn3{``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Is Not Null As usn1 Merge (_usn3 :#usn7)<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})<-[`4esn`?:_usn4|:usn2 *..01]-(`4esn` :@usn6:#usn8{`1esn`:`4esn`[..010][..{12}]}) Union Create (`7esn` {`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})"), - octest_legacy:ct_string("Foreach(`5esn` In {#usn8} Is Null| Create `5esn`=Allshortestpaths(((`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}))),`6esn`=Shortestpath((((_usn4 :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})<-[``?:_usn4|:usn2{`1esn`:False Is Null Is Null}]->(usn2 :`6esn`{#usn7:Count ( * ) Contains 07})))) Start #usn8=Relationship:usn2(`8esn`={`8esn`}) ,`3esn`=Node:usn1(\"d_str\")Where 0.0[Null][$`2esn`]) Union Remove Single(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]).#usn8,Any(`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"]).@usn6 With 12 Ends With 0x0 Ends With 0.e0,Case When 1.0 In Count(*) Then False End Contains `1esn`(Distinct 0.e0 Starts With `2esn`) Contains Reduce(`1esn`=\"d_str\" Is Null Is Null,#usn7 In {``} Is Not Null|#usn7),0e0[..010] As `` Limit $@usn5[010..$#usn8][12..$`4esn`] Start _usn4=Node:usn2(`8esn`='s_str') ,`5esn`=Rel:`8esn`({usn1})Where `4esn` Ends With 07 Ends With {`3esn`} Union Create Allshortestpaths((({`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})<-[?*..]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}))) Start `5esn`=Rel:`8esn`({usn1}) "), - octest_legacy:ct_string("Match ((_usn4 )) Using Index `3esn`:@usn5(`2esn`) Using Scan _usn3:`1esn` Where {usn1}[0X0123456789ABCDEF] Union All Match _usn3=((:`1esn`{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})) Using Join On usn1,`4esn`,`6esn` Create Unique `8esn`=Allshortestpaths(((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]}))),Allshortestpaths((`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]}))"), - octest_legacy:ct_string("Create Unique _usn3=((:`1esn`{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})),_usn4=((@usn6 )<-[usn1?:`8esn` *..010]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})<-[?:`8esn` *..0x0{`2esn`:$`4esn`[Null..]}]->({#usn8:0xabc[.e0]})) Union All Optional Match @usn5=Allshortestpaths((((_usn4 :#usn7)-[? *..07{`4esn`:@usn5 =~{`5esn`} =~`5esn`}]->(_usn3 :usn2{#usn7:{999} Starts With {0}})-[usn1?:`4esn` *..01]-({``:.e1 Is Null Is Null}))))"), - octest_legacy:ct_string("Foreach(#usn8 In .e12 Ends With $`2esn` Ends With {``}| Start `3esn`=Node:@usn5({0}) ,`2esn`=Relationship:`3esn`(\"d_str\")) Start @usn6=Rel:``(_usn3='s_str') ,``=Node:_usn4(usn1={12}) Merge Allshortestpaths((_usn4 )<-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:usn2)<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"}))"), - octest_legacy:ct_string("Delete Case When {1000}[$`4esn`][\"d_str\"] Then `4esn`[``] When {usn2}[.e0..$999] Then {_usn3}[12.e12] Else `4esn`[``] End[Shortestpath((@usn5 {`7esn`:$`6esn`[010..]})-[?:`8esn`{`3esn`:1.0 In Count(*)}]-(`4esn` :#usn7{``:$#usn7[@usn5..{1000}][1.e1..7]})-[`5esn`?:@usn5{`4esn`:0Xa =~Null =~$``}]->(:#usn7{usn2:{usn1} Ends With $0,#usn8:`5esn` Starts With $`2esn` Starts With $1000}))..],$`4esn`[Null..],Case 0x0[`4esn`..'s_str'] When 0.e0 Ends With $#usn7 Ends With $7 Then 0X7[..2.12] When {123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4] Then 0.e0[123.654][01] Else {_usn3}[..$12][..0.12] End[[`1esn`[..{@usn6}][..$123456789]]..] Match `3esn`=((_usn4 )) Using Join On _usn4,`4esn`,`5esn` Using Join On `8esn`,@usn5 Where Null In $7 In .e1 Foreach(`1esn` In 9e0[`3esn`..$_usn4]| Detach Delete Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})] With Distinct *,{`5esn`:01234567 Is Null Is Null}[..`1esn`(Distinct 00 Starts With 0xabc,$0)],Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn` As _usn3 Skip 1.0 =~7 =~{usn2})"), - octest_legacy:ct_string("With Distinct *,`1esn` Contains {usn2} Contains $#usn8,$`3esn` In $_usn4 In {_usn3} As `4esn` Order By $_usn3[`6esn`..] Descending,{_usn3} Is Null Is Null Desc,.e1 In 0 Asc Where _usn3 Starts With 12.e12 Starts With 0.12 Union Load Csv From 01[9e0][`2esn`] As `4esn` Unwind {1000} =~$_usn4 As `2esn` Return $`6esn` Ends With Count(*) As ``,$@usn5 Starts With 01 Starts With .e0 As usn2,{`7esn`} Starts With $123456789 Starts With $@usn6 As _usn3 Order By {usn1} Ends With 12.0 Ends With 00 Desc,123.654[...e0] Asc Limit All(#usn7 In {``} Is Not Null Where {_usn4}[...e1][..$7]) Starts With ({`7esn`:7[{0}..{_usn4}]})-[`` *..12]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})-[:`2esn`*..{`1esn`}]-(usn2 :`5esn`{`7esn`:01234567 Is Null Is Null}) Starts With Any(`` In `` Is Not Null Is Not Null Where {0}[12.0..0Xa][$`5esn`..{_usn3}]) Union All With Distinct *,`8esn` Ends With $`2esn`,{12} Contains {123456789} Contains `4esn` Foreach(usn2 In 123.654[{_usn3}..1.0]| Return [1000 =~@usn6 =~0x0] Starts With {#usn8:$`7esn` =~{`8esn`} =~$usn1,`7esn`:0xabc[01..{999}][{7}..{`7esn`}]} Starts With `7esn`(Distinct 123.654[`3esn`..]) As `1esn`,0.0[Null][$`2esn`],`6esn` Is Not Null Is Not Null As `3esn` Skip (usn2 :_usn4)-[ *7..12]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})[$`2esn`]) Create Unique `8esn`=(:usn1{``})<-[:`5esn`{@usn6:$#usn8 Ends With $`2esn` Ends With $@usn6,`6esn`:{7}[..12e12][..Count ( * )]}]->(#usn8 :_usn3:_usn3{`4esn`:{_usn3}[..$12][..0.12],`7esn`:1.0[0X7][{`5esn`}]})"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From $`3esn` In 123.654 In #usn8 As `` Fieldterminator \"d_str\" Merge Allshortestpaths((`` :_usn4{_usn4:False[..``],usn2:9e1[1000][{123456789}]}))"), - octest_legacy:ct_string("Optional Match _usn3=((:usn1{usn1:{`6esn`}})) Using Index `2esn`:`1esn`(`4esn`) Unwind usn1(Distinct $@usn5 Starts With $1000)[[`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}|0Xa =~Null =~$``]..] As `7esn`"), - octest_legacy:ct_string("Load Csv From 123.654[{_usn3}..1.0] As usn1 Load Csv With Headers From ['s_str' In 00,{@usn6}[$`6esn`..`4esn`]] Is Null Is Null As @usn6 Fieldterminator \"d_str\" Union Start _usn4=Relationship(,) Where @usn5 In {`7esn`} In `2esn` Load Csv With Headers From Case {usn2} When {_usn4} Starts With 0.e0 Starts With 0x0 Then 12 Ends With 0x0 Ends With 0.e0 Else 1.0 =~'s_str' =~{`2esn`} End[(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True})..All(`3esn` In {7} Is Null Where $#usn7[@usn5..{1000}][1.e1..7])][{usn2:$`5esn`[..$`5esn`][..$12]}..Any(`8esn` In 01[2.12..`8esn`] Where `1esn`[{usn1}..``][7..$#usn8])] As `4esn` Foreach(`7esn` In {@usn6} Ends With 's_str' Ends With 12.0| With Distinct `7esn` Is Null As `7esn`,count($123456789 Is Null Is Null,{`7esn`} Starts With $123456789 Starts With $@usn6)[`8esn`(Distinct `8esn` =~0xabc =~010)][Case When `2esn`[..$#usn8][..Count(*)] Then False =~1e1 =~0.e0 When {`4esn`} Starts With $usn2 Starts With $1000 Then {``} Is Not Null End] As @usn5,1000 In `7esn` In 9e12 As `6esn` Limit $`` Is Not Null Match `2esn`=Allshortestpaths((({`3esn`:.e1[..usn2][..`8esn`]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`1esn`{_usn4:{999}}))),#usn7=Shortestpath((((#usn7 :`8esn`:`7esn`{`5esn`:1.0 In Count(*)})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000})))) Using Scan ``:_usn4 Using Scan ``:`2esn`)"), - octest_legacy:ct_string("Merge usn1=(#usn7 :`8esn`:`7esn`) With Distinct *,12[..$`4esn`],Case When 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] Then {1000} =~0 =~123.654 When `8esn`[`4esn`..{#usn8}][$12..2.12] Then 00[$`7esn`] End Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`7esn` =~{`8esn`} =~$usn1) Contains [0.12 =~`5esn` =~`5esn`] Order By {12} Contains {123456789} Contains `4esn` Desc,{_usn3:`4esn`[..Count ( * )][..{#usn7}]}[..{_usn4:`5esn`[.e0..][07..],`3esn`:{0} In $_usn3}][..Allshortestpaths(((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})))] Desc,`1esn` In .e0 In {`3esn`} Descending Limit 7 Contains @usn6 Where usn1 Starts With usn1 Starts With $`` Union Create _usn3=Allshortestpaths((((:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)-[usn1? *1000..00]->({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})))),(((#usn8 :#usn8:#usn8{@usn5:{#usn8} Is Not Null})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})-[`4esn`?:_usn4|:usn2 *..01]->(`7esn` :`8esn`:`7esn`{#usn8:01234567[usn2..$12][{`7esn`}..$usn2]}))) Foreach(`1esn` In Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where `5esn` Starts With $`2esn` Starts With $1000) Ends With Reduce(``=0.12 =~$0 =~$0,`2esn` In `1esn` =~\"d_str\"|9e12[`1esn`..][$`1esn`..])| Unwind 7 Starts With `6esn` Starts With 01234567 As #usn8) Load Csv From Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`)[None(#usn8 In 7[..999][..{#usn8}] Where 0Xa[2.12])..][[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789]]..] As #usn8 "), - octest_legacy:ct_string("Return *,{12} Is Not Null Order By $`1esn`[1.0..][_usn3..] Ascending Skip `` =~'s_str' =~$#usn7 Limit $`1esn` =~0X7 Load Csv From 123.654[...e0] As usn2 Merge (`` :@usn5{`1esn`:2.12 Contains usn2 Contains True}) Union All Remove 0xabc.`1esn`?,Allshortestpaths(((($#usn8)-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)<-[? *7..12]->({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})))).``?,(_usn3 {`5esn`:12.e12[0xabc],`2esn`:{`7esn`}[..$@usn5][..$#usn8]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]->(:`4esn`{``:2.12 Is Not Null Is Not Null}).`2esn`!"), - octest_legacy:ct_string("With Distinct Extract(`8esn` In 01[2.12..`8esn`] Where {usn2}|$0[12.e12..]) =~Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null|7 Ends With $`4esn`) =~(usn1 {`2esn`})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->(:_usn3:_usn3{`4esn`:12e12 Ends With {usn1}})<-[`7esn`?:`8esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}) As `1esn`,Extract(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null)[..Any(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})] Order By $`1esn`[{`2esn`}..] Desc,$12 Starts With $`8esn` Starts With $`1esn` Descending Union All Remove Any(`3esn` In {7} Is Null Where 1e1 Contains Count ( * )).`4esn`,[#usn8 In 7[..999][..{#usn8}] Where $_usn4[1.e1]['s_str']|`2esn` Is Null].usn1,None(#usn8 In 7[..999][..{#usn8}] Where $_usn3 Contains 999 Contains \"d_str\")._usn3? Unwind [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}|{usn1} Is Null Is Null][Allshortestpaths(((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})))..] As `3esn` Start `4esn`=Node:_usn4(#usn7=\"d_str\") Union Match (:``:#usn8$`3esn`)-[`1esn`?:`8esn`]->(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}) Where `5esn` Is Null Create `6esn`=Shortestpath((((`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})<-[`8esn`]-(usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[`3esn`?:`` *..0x0{`4esn`:0.e0 Contains 9e1 Contains {`7esn`},@usn6:$@usn5 =~1000 =~1000}]->(:@usn5{_usn3:07 =~01})))),_usn3=((:`2esn`:usn1)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})) Match (`7esn` :``:#usn8)<-[ *0X7..]-(`2esn` {_usn3:`1esn` Contains {usn2} Contains $#usn8})-[_usn4:#usn8|`1esn`{`6esn`:#usn8[..{#usn7}]}]->(#usn7 :`4esn`) Using Index @usn5:`2esn`(@usn5) Using Scan _usn4:usn1 Where .e12 In 0.e0 In {12}"), - octest_legacy:ct_string("Merge #usn8=Allshortestpaths((({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})-[? *..0x0{_usn3:01 Ends With 999 Ends With {`7esn`}}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[?{usn1:0[`7esn`..]}]->({usn1:{`7esn`}[`6esn`][#usn7],usn1:{999} Starts With $999}))) Start _usn3=Relationship:`3esn`('s_str') ,_usn3=Node:`5esn`(`7esn`='s_str')Where 0.e0 Starts With `2esn`"), - octest_legacy:ct_string("Return *,All(#usn7 In {``} Is Not Null Where {_usn4}[...e1][..$7]) Starts With ({`7esn`:7[{0}..{_usn4}]})-[`` *..12]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})-[:`2esn`*..{`1esn`}]-(usn2 :`5esn`{`7esn`:01234567 Is Null Is Null}) Starts With Any(`` In `` Is Not Null Is Not Null Where {0}[12.0..0Xa][$`5esn`..{_usn3}]) As `5esn`,{usn2}[$`3esn`..][{#usn7}..] As `5esn` Order By `7esn` In {123456789} In `1esn` Asc,{_usn4:Count ( * )[True..][{#usn7}..],``:{``} Ends With `7esn` Ends With 0.0} In (usn2 {``:01[{@usn5}]})<-[?:_usn4|:usn2{`8esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],``:_usn3 Contains $123456789 Contains ``}]->(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(:_usn4{_usn4:{7} In `2esn`}) In {`4esn`:`7esn` Is Null} Desc,Reduce(`8esn`={@usn5}[{#usn8}][9e0],`3esn` In {7} Is Null|0e0 Starts With 1000 Starts With #usn7)[Single(#usn8 In 7[..999][..{#usn8}] Where 123456789 Is Null)] Desc Skip Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]) =~({``:$`8esn` =~{1000}})<-[#usn8? *0..]->(`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7}) =~Shortestpath((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})) Return *,{``}[$#usn8..$usn1] As #usn8,{`8esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`6esn`:2.12 =~Count(*)} =~Shortestpath(((:`4esn`{`5esn`}))) As @usn5 Order By 1.e1[`8esn`][00] Descending,$_usn3[`6esn`..] Descending,01234567 Ends With 0xabc Asc Unwind `6esn`(Distinct 2.12 Ends With $_usn3 Ends With `3esn`) Is Null As @usn5 Union Load Csv From Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End[[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]]..Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})))] As usn1 Fieldterminator 's_str' Remove Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..]).`2esn`,({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)._usn4? Match `8esn`=(((usn2 :#usn7)<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[`7esn`:`1esn` *0X0123456789ABCDEF{`6esn`:1000[..$0][..True],_usn4:Count ( * ) Ends With $@usn5}]->(`4esn` {usn2:0x0 Is Null,`5esn`:{usn2} =~12}))),((_usn3 :`7esn`:_usn3)-[]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]}))"), - octest_legacy:ct_string("Unwind ({``:$`8esn` =~{1000}})-[:`8esn`*]->({_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]})-[`4esn`]->(:`6esn`$123456789) Contains Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {123456789}[0xabc..]) As #usn7"), - octest_legacy:ct_string("Create Unique (:`4esn`{`7esn`:$0[..9e1],usn1:{_usn4} Ends With `6esn`})-[:@usn5{@usn5:{#usn7}[9e1..][{123456789}..],``:#usn7 Is Not Null Is Not Null}]->(`4esn` :`6esn`{_usn3:$123456789 Ends With `3esn` Ends With 123456789,`6esn`:0e0 Starts With 2.12 Starts With $12})-[`7esn` *..0x0]-(`2esn` :_usn4) Union Create Unique `6esn`=(#usn8 :#usn8:#usn8{@usn5:{#usn8} Is Not Null})<-[@usn6 *..01{#usn7:@usn6 Contains $1000 Contains {`7esn`},@usn5:`2esn` Starts With $_usn4}]->(`6esn` :@usn6:#usn8) Union All Merge `6esn`=(:``:#usn8$`3esn`) On Match Set `3esn`+=Count(*) In $12,#usn7+=Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`)[None(#usn8 In 7[..999][..{#usn8}] Where 0Xa[2.12])..][[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789]]..],``+=7[$`8esn`..123456789][$usn1..$usn1] On Create Set `2esn` =$``[1.0],`8esn` =010[..12e12][..12e12],`5esn` =Extract(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|{@usn5} Is Null Is Null)[Case When $0[..9e1] Then Count(*)[..usn2][..usn2] When {`2esn`} Starts With 0.0 Starts With {usn1} Then 0e0 In @usn5 Else 01 =~{_usn3} =~`3esn` End.._usn3(1.0 In Count(*),0[{usn2}..][$`6esn`..])][count(Distinct $12[Null..Count(*)][{`5esn`}..{999}],$`4esn`[`7esn`])..Case When $123456789 Ends With $999 Ends With {999} Then `3esn`[{usn1}] When #usn7 =~Count ( * ) =~`` Then $_usn4 Starts With 1e1 End] Remove Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0X7[`7esn`][123.654]|$@usn5 Starts With {0} Starts With 12).@usn6?"), - octest_legacy:ct_string("Load Csv From 1e1 Contains Count ( * ) As usn2 Fieldterminator \"d_str\" Union Return Distinct Count(*) In $12 As @usn6,True Contains {0} Contains 7 As _usn3 Limit Shortestpath((((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))))[..Case 0Xa =~123456789 =~_usn4 When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $1000 In $1000 In $`3esn` Then 0.e0[#usn8] End][..(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})] Delete 00[{`8esn`}..][{`8esn`}..] With None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})[Any(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")..Reduce(usn1=#usn7[usn1][$`5esn`],`3esn` In {7} Is Null|Count(*) Ends With 12.0 Ends With 12)][(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})..({usn1:`5esn`[_usn4..]})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})],@usn5 =~{`5esn`} =~`5esn` As _usn4,$123456789 In $#usn7 In `4esn` As `` Order By {`3esn`}[..07][..{`5esn`}] Desc Limit 12.0 Where {123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4] Union Load Csv With Headers From {@usn6}[$`6esn`..`4esn`] As usn2 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Foreach(usn2 In Case {#usn8} Is Null When .e1 =~$`8esn` Then \"d_str\"[..{@usn5}][..``] When {_usn3}[12.e12] Then 7 Ends With $`4esn` Else $123456789 Starts With 9e0 Starts With 's_str' End In [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]]| Remove Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 0.e0[123.654][01]).`2esn`,({#usn7:{123456789} Contains $#usn8})-[`7esn` *..0x0]-(`2esn` :_usn4)-[`3esn`?:@usn5]->(usn1 {`8esn`:False Is Null Is Null}).usn2?,Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where 0[.e0..{`1esn`}]|010[#usn7..True]).`8esn`?) Unwind {``}[`8esn`..] As _usn3 Union All Start ``=Rel:#usn8({12}) Delete {#usn8:#usn7[usn1][$`5esn`],`4esn`:01[2.12..`8esn`]} =~{usn1:True =~010,#usn7:0X0123456789ABCDEF Is Null Is Null} =~[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]] Union All Foreach(_usn4 In {`2esn`} Is Not Null| Match usn2=(`7esn` {`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2}),`4esn`=Allshortestpaths((({usn1:`5esn`[_usn4..]})-[usn1?:_usn3|_usn3]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))) Using Join On #usn7,_usn4 Using Join On `8esn`,@usn5 Where `3esn`[{`2esn`}])"), - octest_legacy:ct_string("Merge Allshortestpaths(((`2esn` :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0}))) Remove (_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})<-[usn2?:#usn7]-({#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}).#usn7,Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01|7[True..][2.12..]).@usn5 Union All Merge `4esn`=Shortestpath((((#usn8 :`8esn`:`7esn`{#usn7:#usn8[..{#usn7}]})-[usn1?]->({_usn3:False =~1e1 =~0.e0,_usn3:{999} Starts With $999})-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(`` :_usn4)))) On Create Set #usn8:usn2,usn1 =Reduce(`2esn`=1e1 In 123.654 In `3esn`,`5esn` In \"d_str\" Is Null Is Null|$_usn3[{#usn7}]) Is Not Null,`6esn` =0.e0 Starts With `2esn`"), - octest_legacy:ct_string("Load Csv With Headers From 's_str' In 00 As @usn6 Fieldterminator 's_str' Union Unwind {`4esn`}[$usn2..07] As `7esn` Return *,{12} Is Not Null As `7esn` Skip 9e12 Is Not Null Is Not Null Union Remove [.e1[..usn2][..`8esn`],`8esn`[{123456789}..],`3esn` In $0 In `1esn`].`5esn`! Load Csv With Headers From $`5esn`[{`3esn`}] As `8esn` Fieldterminator \"d_str\" With 2.12 Ends With $_usn3 Ends With `3esn` Order By [Count(*) Ends With 12.0 Ends With 12,9e0[{0}..{`3esn`}][\"d_str\"..0Xa]][..Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``])][..{usn1:$_usn3[..1000],`7esn`:{1000} =~0 =~123.654}] Asc,count(`1esn` Contains {usn2} Contains $#usn8) Contains [`5esn`[7][{usn2}],@usn5 Is Null] Descending,(:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8)[Reduce(`7esn`=7[$`2esn`..{`5esn`}],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$_usn4[0e0..][False..])..({``:00 Starts With 0xabc,`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})][{}..{@usn6:`4esn`[..010][..{12}]}] Descending Skip count(`1esn` Contains {usn2} Contains $#usn8) Contains [`5esn`[7][{usn2}],@usn5 Is Null] Limit $1000 Is Null Is Null"), - octest_legacy:ct_string("Optional Match #usn7=(:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null}) Using Join On `7esn`,`8esn`,`3esn` Using Join On ``,#usn7,`` With Distinct 9e1 Contains #usn7 As `1esn` Order By $#usn7 Contains 0x0 Contains 1000 Asc,`3esn`[{`2esn`}] Ascending,12.e12[7..$`6esn`] Descending Skip Count ( * ) Contains 07 Limit $#usn7[#usn7..] Load Csv From 9e1[0.0..] As #usn7 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Create `1esn`=Allshortestpaths(((@usn6 :`8esn`:`7esn`)<-[`6esn`?:`4esn` *..01]->(`3esn` :#usn7{usn2:12.0 =~999 =~$_usn3,@usn6:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?]-(`7esn` :`5esn`))),@usn6=Shortestpath(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))) Merge Shortestpath(({_usn4:00 Starts With 0xabc})<-[`4esn`?:`2esn`{`4esn`:#usn7 Contains _usn3 Contains {`3esn`}}]-({`3esn`:.e1[..usn2][..`8esn`]})) On Match Set #usn8 =#usn7 =~Count ( * ) =~``,{#usn8:$`7esn`['s_str'],_usn3:{999}[1000..{usn2}]}.#usn7? =[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}|{usn1} Is Null Is Null][Allshortestpaths(((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})))..] Union All Unwind Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End[[_usn3 In {`3esn`}[`2esn`] Where 7[{0}..{_usn4}]]..Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End] As #usn7 Delete $0[$`1esn`..07],0xabc[01..{999}][{7}..{`7esn`}],.e12 Is Not Null Is Not Null"), - octest_legacy:ct_string("Start usn2=Node:_usn4(``={#usn7}) Return Distinct $@usn5 Is Not Null Is Not Null As `5esn`,0e0[07] As `5esn` Order By $#usn7 Starts With {7} Starts With 1.0 Desc,{12} Is Not Null Ascending Limit {``} Ends With `7esn` Ends With 0.0 Union All Load Csv From \"d_str\"[..{@usn5}][..``] As `6esn` Fieldterminator 's_str'"), - octest_legacy:ct_string("Match ((:@usn6:#usn8{`4esn`:$`8esn`[..00]})<-[_usn4?:_usn4|:usn2 *00]->(:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})),(((@usn5 {usn2:0.e0[123.654][01]})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->($#usn8)<-[`8esn`:`2esn` *..07]->(:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null}))) Using Scan `5esn`:usn1 Where $1000 Is Null Is Null Union Merge Allshortestpaths(((_usn3 :`3esn`:@usn5))) On Create Set @usn5+={`6esn`:1000[..$0][..True],_usn4:Count ( * ) Ends With $@usn5}[[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 12e12 Ends With {usn1}|$#usn8 Contains $`1esn` Contains {`6esn`}]..Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..])][[_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `3esn`[{`2esn`}]|$0[12.e12..]]..Filter(_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null)] Remove None(`4esn` In $`3esn` Is Not Null Where {123456789} Is Not Null).usn2!,Single(`2esn` In `1esn` =~\"d_str\" Where 0X0123456789ABCDEF Ends With $`8esn` Ends With 0.12).usn1"), - octest_legacy:ct_string("Create usn1=(((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7}))) Union All Unwind [#usn8 In 7[..999][..{#usn8}] Where {12} =~#usn8|\"d_str\" Contains {123456789} Contains 01] Contains {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} As @usn6 Union Create usn2=Allshortestpaths((usn2 :`4esn`)-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(`` :_usn4)),_usn3=({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True}) Return 01[9e0][`2esn`] As `` Limit Case _usn3[$`8esn`] When 12e12 Contains 0Xa Then 7[{0}..{_usn4}] End Starts With {#usn7:Null Ends With `2esn` Ends With $usn1,`5esn`:12.0} Remove Allshortestpaths(((`7esn` {`2esn`:$`6esn`[123456789..12][True..{`3esn`}],#usn7:$_usn3[Count(*)]})-[#usn8? *..07$_usn4]->(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}))).#usn7?,`8esn`:`2esn`:usn1,`2esn`:`4esn`"), - octest_legacy:ct_string("Remove [7[..123456789][..{@usn6}],#usn7].#usn8 Union All Create `1esn`=((`` :@usn6:#usn8{`8esn`:'s_str' In 00})-[#usn8:`6esn`|`5esn`]-(usn1 {`1esn`:$@usn6 Ends With $_usn4 Ends With 0.12,`3esn`:`4esn` =~$`5esn`})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(`7esn` {@usn5:{7}[..1.0][..9e0]})),`8esn`=(:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`) Union Foreach(_usn4 In {@usn6}[7]| Return None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As `5esn`,01 Is Null As `2esn`,{1000} =~$_usn4 Order By Case When {12} Ends With 1.0 Ends With .e0 Then 01[{`2esn`}..{@usn6}][$`2esn`..0.0] When {``}[...e12] Then {`2esn`} Starts With 0.0 Starts With {usn1} Else 123456789[$@usn5..] End[Case When $_usn4[0e0..][False..] Then $`2esn` Is Null Is Null Else `` Ends With 0Xa Ends With `2esn` End..Any(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 07 In `2esn` In 12e12)][count($`3esn` Is Null)..(:`1esn`{`5esn`})<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]})-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(@usn5 {usn2:0.e0[123.654][01]})] Asc Skip {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) Return Distinct `4esn` =~$`5esn` As usn1 Order By True Contains {0} Contains 7 Ascending) Optional Match `8esn`=Allshortestpaths(((:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))),`2esn`=((`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(_usn3 :#usn7)<-[@usn5?]->(`1esn` :`5esn`{`5esn`:{``} Is Null})) Where $usn1[{`5esn`}][$`6esn`]"), - octest_legacy:ct_string("Delete $`8esn`[..00] Remove Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 0.e0[123.654][01]).`2esn`,({#usn7:{123456789} Contains $#usn8})-[`7esn` *..0x0]-(`2esn` :_usn4)-[`3esn`?:@usn5]->(usn1 {`8esn`:False Is Null Is Null}).usn2?,Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where 0[.e0..{`1esn`}]|010[#usn7..True]).`8esn`?"), - octest_legacy:ct_string("Create Allshortestpaths((`3esn` :#usn8:#usn8)),((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})-[`8esn`?:@usn6|`6esn`]-(`2esn` :`6esn`)) Start `4esn`=Node:_usn4(#usn7=\"d_str\") Load Csv From `6esn`[2.12..01][{``}..False] As _usn4 Fieldterminator 's_str' Union Unwind Filter(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`]) Starts With Case 2.12 Ends With $_usn3 Ends With `3esn` When {7}[$`5esn`][{_usn3}] Then #usn7 Starts With {#usn7} Starts With `7esn` When 123.654 Contains $`4esn` Contains 1.0 Then 0.e0[123.654][01] Else Null[{#usn7}..][0X0123456789ABCDEF..] End As _usn3 Create Unique Allshortestpaths((`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(_usn4 {`5esn`:\"d_str\" Starts With 01})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(:`3esn`:@usn5$usn2)),`5esn`=Shortestpath((((`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})<-[@usn6:@usn5 *0Xa]->({`3esn`:9e1[2.12..{#usn8}]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})))) Union Merge ((:_usn3:_usn3{`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})<-[`3esn`?:_usn3|_usn3 *1000..00]-(#usn7 :_usn3:_usn3)) Create Unique ``=(((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))) Merge #usn8=(_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :_usn3:_usn3{`7esn`:$`6esn`[123456789..12][True..{`3esn`}],`5esn`:0X0123456789ABCDEF[123456789]})-[?{usn1:0[`7esn`..]}]->(`2esn` :`6esn`) On Match Set #usn8:usn2,usn1 =Reduce(`2esn`=1e1 In 123.654 In `3esn`,`5esn` In \"d_str\" Is Null Is Null|$_usn3[{#usn7}]) Is Not Null,`6esn` =0.e0 Starts With `2esn` On Create Set Extract(#usn7 In {``} Is Not Null Where 0.12 =~`5esn` =~`5esn`).`8esn` =1000[0X7..2.12],`1esn`+={`5esn`} Starts With @usn5 Starts With `7esn`,`5esn`+=123.654 Is Not Null"), - octest_legacy:ct_string("Start _usn3=Node:`6esn`('s_str') With Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`3esn`} In 01)[Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12e12 Contains 0Xa|Null[$#usn7])..Allshortestpaths(((`` {`3esn`:{12} Contains {123456789} Contains `4esn`})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})))][Reduce(`6esn`=7[..123456789][..{@usn6}],`5esn` In \"d_str\" Is Null Is Null|$_usn4 Is Not Null Is Not Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] As _usn4,Allshortestpaths((:@usn5{_usn3:07 =~01})) Starts With [`3esn` In {7} Is Null Where {`4esn`} =~{7} =~{`7esn`}] Starts With ({`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}})<-[`6esn`?:_usn4|:usn2]-(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}) Skip 7 Ends With (@usn5 {`7esn`:$`6esn`[010..]})-[:`8esn` *..01]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]}) Ends With #usn8(False =~$7 =~2.12) Where $_usn4 Starts With 1e1"), - octest_legacy:ct_string("Merge usn2=Allshortestpaths((`1esn` :`5esn`{`5esn`:{``} Is Null})-[:@usn6|`6esn`{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}]->(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[`2esn`?:`2esn`]->(`7esn` {``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})) Create Unique Allshortestpaths((:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[@usn6:_usn4|:usn2]->(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})-[`3esn`?:@usn5]->(usn1 {`8esn`:False Is Null Is Null})),Allshortestpaths((:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null})<-[#usn7{`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]}]-({#usn8:True[..$`6esn`]})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})) Load Csv With Headers From 9e1 Ends With {usn2} Ends With True As @usn6 Fieldterminator 's_str'"), - octest_legacy:ct_string("Detach Delete Allshortestpaths(((({#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[`4esn`]->(:`6esn`$123456789))))[Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {_usn4} In {12} In $0)],\"d_str\" =~1000 =~{`1esn`},Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End[[_usn3 In {`3esn`}[`2esn`] Where 7[{0}..{_usn4}]]..Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End]"), - octest_legacy:ct_string("Remove Allshortestpaths((:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[usn1:`8esn`]-({_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null})).`6esn`!,(`4esn` :``:#usn8{`1esn`:$`5esn`[`3esn`..]})-[`7esn`*]->(:#usn7{@usn5:{12} =~#usn8})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 ).`4esn`? Create `6esn`=((`2esn` :_usn4)),(((:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[:`6esn`|`5esn` *123456789..]-(#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}))) Union All Load Csv From $`3esn` In $`6esn` In $`` As `4esn` Optional Match `2esn`=(:`1esn`{``:.e1 Is Null Is Null})<-[#usn8?:usn1|@usn6]->(`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`}),`6esn`=(((usn2 :``:#usn8)-[ *123456789..{`4esn`:0Xa[2.12],#usn7:0.e0 In $#usn7 In $_usn3}]-(@usn6 :`3esn`:@usn5)-[`7esn` *0X0123456789ABCDEF]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0}))) Using Index `5esn`:`1esn`(usn1) Where 07[..True][..9e12] Foreach(@usn5 In ({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}) In Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 07 In `2esn` In 12e12)| Start _usn4=Relationship(,) Where @usn5 In {`7esn`} In `2esn` With Distinct `5esn`[_usn4..],$123456789 In 0X0123456789ABCDEF In 0.e0 Where 7[True..][2.12..])"), - octest_legacy:ct_string("Create Unique Allshortestpaths(((#usn7 :_usn3:_usn3{`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]-({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5}))) Union Create Unique Shortestpath(((#usn7 )-[`7esn`?*..]->(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01}))) Remove Single(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where usn1 Ends With $@usn6 Ends With `3esn`).usn2?,All(`8esn` In 01[2.12..`8esn`] Where 0.e0[#usn8]).`7esn`"), - octest_legacy:ct_string("Create `6esn`=Shortestpath((((`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})<-[`8esn`]-(usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[`3esn`?:`` *..0x0{`4esn`:0.e0 Contains 9e1 Contains {`7esn`},@usn6:$@usn5 =~1000 =~1000}]->(:@usn5{_usn3:07 =~01})))),_usn3=((:`2esn`:usn1)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})) Union Optional Match @usn6=(((@usn6 :`3esn`:@usn5)<-[`4esn`:`8esn` *00]-(`2esn` :`8esn`:`7esn`)<-[? *..999]->(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null}))),((:`1esn`{`5esn`:1.0 In Count(*)})) Remove (:#usn7)-[?:_usn3|_usn3]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[:#usn7 *..010]->(#usn8 :usn1).`7esn`,Filter(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 12e12 Ends With {usn1}).`5esn`! Remove Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 0.e0[123.654][01]).`2esn`,({#usn7:{123456789} Contains $#usn8})-[`7esn` *..0x0]-(`2esn` :_usn4)-[`3esn`?:@usn5]->(usn1 {`8esn`:False Is Null Is Null}).usn2?,Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where 0[.e0..{`1esn`}]|010[#usn7..True]).`8esn`? Union Match `5esn`=((({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})<-[`3esn`?:_usn3|_usn3 *1000..00]-(#usn7 :_usn3:_usn3)<-[:`5esn`{@usn6:$#usn8 Ends With $`2esn` Ends With $@usn6,`6esn`:{7}[..12e12][..Count ( * )]}]->(#usn8 :_usn3:_usn3{`4esn`:{_usn3}[..$12][..0.12],`7esn`:1.0[0X7][{`5esn`}]}))) Using Join On ``,`4esn`,@usn6 Where $`5esn`[..$`5esn`][..$12]"), - octest_legacy:ct_string("Load Csv From usn1 Is Null As @usn5 Fieldterminator 's_str' Delete 12.e12[9e12..{`6esn`}]"), - octest_legacy:ct_string("Start `5esn`=Relationship:usn1({999}) Where {@usn5}[{#usn8}][9e0] Union Load Csv With Headers From `4esn` =~$`5esn` As #usn7 "), - octest_legacy:ct_string("Delete `5esn`(Distinct `2esn` Is Null,123456789[{123456789}..'s_str'])[.._usn3(.e0[..$`8esn`])][..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}],{@usn5}[{999}] Union Create Unique (((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`8esn`?:`2esn`*..{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]}))),((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null})) Union All Optional Match (#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null}),(({usn1:`5esn`[_usn4..]})-[usn1?:_usn3|_usn3]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))"), - octest_legacy:ct_string("Merge _usn4=Shortestpath(({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`)) Merge `1esn`=Allshortestpaths((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))) Union With $#usn7 Contains 0x0 Contains 1000,Shortestpath(({`7esn`:\"d_str\" Starts With $123456789})<-[`4esn`:``{usn1:`` Is Not Null Is Not Null,usn1:{1000}[{_usn3}..]}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[`4esn`]->(:`6esn`$123456789)) Is Null As `4esn`,{@usn6} Is Not Null Is Not Null Order By 7[$`2esn`..{`5esn`}] Desc,0Xa[2.12] Desc,0.0 Asc Where $1000[Null][`4esn`]"), - octest_legacy:ct_string("Detach Delete [#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01|{0} Ends With $_usn3 Ends With $`7esn`] Contains Case {0}[12.0..0Xa][$`5esn`..{_usn3}] When .e1 Ends With 1e1 Ends With @usn5 Then 01[{`2esn`}..{@usn6}][$`2esn`..0.0] Else 123.654[...e0] End,9e0[{0}..{`3esn`}][\"d_str\"..0Xa],``[12.0..0e0][{`5esn`}..`7esn`]"), - octest_legacy:ct_string("Start #usn7=Relationship:usn2(`8esn`={`8esn`}) ,`4esn`=Node:@usn6({#usn7})"). + octest_legacy:ct_string("Create `1esn`=Allshortestpaths((((:`7esn`{`1esn`:{1000} In {123456789},`4esn`:010 In `1esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)))),Shortestpath((`6esn` :`2esn`{`7esn`:#usn8 =~{999}})) Detach Delete {123456789}[{12}..],9e0 =~0.0 =~$`5esn` Foreach(`1esn` In Case 0Xa[.._usn3][..$`6esn`] When {`4esn`}[$123456789..] Then {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] When {usn2}[$`4esn`] Then $1000 Starts With $`8esn` Starts With {`5esn`} Else @usn6[$_usn4] End[(`8esn` :`2esn`)-[`8esn`]->(`8esn` :`8esn`:@usn5)..]| Create Unique @usn6=(_usn3 {`4esn`:`8esn` Contains 1e1,#usn7:{`2esn`}[..{@usn6}][..1.e1]})-[#usn7?:usn1 *01..07{`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}]->({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]}),`7esn`=(((`5esn` :@usn6)<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5)<-[ *123456789..0X7]-(:`7esn`{``:.e1 Contains $`3esn`})))) Union Foreach(usn2 In {_usn3} Contains 9e0 Contains $999| With Distinct *,All(usn1 In 12.e12 In {0} In 9e1 Where {12}[usn2])[Reduce(``=$@usn5[..usn2][..$#usn7],`6esn` In Count(*) Ends With $`` Ends With {7}|{`4esn`}[$123456789..])..][{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]}..],$`2esn` Is Null Is Null Where _usn4[Count(*)] Create (`2esn` {@usn6:True Is Null Is Null})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)-[_usn3?:@usn6|`` *0x0..{`3esn`}]->(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}})) Unwind [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]][Shortestpath(((`1esn` :`7esn`)<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})))..] As #usn8 Start `8esn`=Rel( {`7esn`}) ,`3esn`=Node:`2esn`(@usn6={`4esn`})Where 07 Is Null Union Remove {@usn6:.e12 Is Null Is Null}.``?,Shortestpath((:_usn3{@usn5:.e1[..\"d_str\"],#usn8:{`1esn`}[`6esn`..12e12]})<-[`7esn`?*..]-(usn1 :`1esn`{#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]})).@usn5? Create Unique `2esn`=(`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4),`5esn`=(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})"), + octest_legacy:ct_string("Foreach(_usn3 In Reduce(`1esn`=12[..$@usn6],`` In {`1esn`} Starts With @usn6|00[..$123456789][..$`5esn`])[Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where {@usn5} Is Null)]| Detach Delete $`2esn`,7[123456789..$123456789][``..00]) Return $1000 =~{1000} =~`5esn`,12e12 Is Not Null Is Not Null As `5esn` Order By {#usn8}[Null] Descending,{`4esn`} In _usn4 Asc Limit [Null Is Null Is Null,12e12 Ends With `4esn` Ends With 123456789,{@usn6} Is Not Null][Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[{999}..][{_usn4}..])..]"), + octest_legacy:ct_string("Create (((_usn3 :`3esn`:`6esn`)<-[`2esn`?{``:123.654 Starts With $``,``:{``} Ends With .e12 Ends With 0.e0}]-(:_usn3{0})<-[?:#usn8|`2esn` *01..07]->(:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]}))),`4esn`=((`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}})-[_usn4?:`3esn`|:@usn5]->(`4esn` {`7esn`:12.e12 In $0 In $0,@usn5:_usn4[Count(*)]})) Load Csv With Headers From {`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}] As @usn5 "), + octest_legacy:ct_string("Start usn1=Node:#usn8(#usn8={``}) Foreach(`6esn` In #usn8 Is Not Null| Load Csv From 12.e12[$`4esn`..] As usn1 )"), + octest_legacy:ct_string("Detach Delete Case When Null Ends With 12 Ends With usn2 Then {7}[{`4esn`}][`6esn`] End Is Not Null Is Not Null Union Create Unique (((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))) Union All Match ({`4esn`:_usn4 Is Null Is Null,@usn6:{`5esn`} Contains 's_str' Contains 9e1})<-[? *0xabc..7]->(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6}) Using Scan `1esn`:`7esn` Using Join On `8esn`,`3esn` Start `5esn`=Node:`6esn`(usn2={`8esn`}) ,usn1=Node:`6esn`({`8esn`})Where {#usn7} Contains 0.0 Contains $0 Create _usn3=(({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}))"), + octest_legacy:ct_string("Unwind 12.e12[..1e1] As usn1 Union All Create Unique Allshortestpaths((({`7esn`:123.654 Ends With usn2 Ends With 0})<-[@usn6?:`7esn` *07{123456789}]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}))),(((_usn3 :@usn5{`2esn`:@usn5[$12..\"d_str\"]})-[{`7esn`:01234567 In $123456789}]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[`4esn`?*..]-(:`4esn`:@usn6{`3esn`:123456789 Is Not Null Is Not Null}))) Remove [`3esn` =~9e0 =~@usn6].`1esn`,Allshortestpaths((((usn2 :_usn3)<-[#usn7{#usn8:{`1esn`} Is Not Null}]->(`8esn` {`3esn`:'s_str'[..0X7]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6)))).`8esn`"), + octest_legacy:ct_string("Load Csv With Headers From {@usn5}[{`5esn`}][$12] As usn1 Union Optional Match #usn7=Allshortestpaths((:`5esn`:@usn5{#usn8:123.654[$`1esn`..Null][1000..{_usn3}],`6esn`:12.0 =~$#usn7 =~9e12})-[`1esn`:usn2|#usn7{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})),(({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]})) Using Scan _usn4:_usn3 Using Index usn1:@usn5(`7esn`)"), + octest_legacy:ct_string("Load Csv From 12.e12 Starts With 1000 Starts With 's_str' As usn2 Union Load Csv With Headers From {`2esn`} Ends With {#usn7} As `3esn` Union With Distinct {@usn5} Is Null,``[$0..][`1esn`..] As `4esn` Order By 0Xa[07..] Ascending Limit 's_str'[.._usn4][..``] Where $#usn7[$`4esn`] Optional Match `5esn`=Allshortestpaths(((_usn3 :`6esn`:`8esn`{`4esn`:$usn1 Starts With $999 Starts With {@usn5},`7esn`:``[..$#usn7]})-[#usn7?:`1esn`|:`3esn`]-(`7esn` :@usn5{`7esn`:{1000}[{usn1}][Null],`3esn`:7[$0..][{_usn4}..]})<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))),((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})) Using Join On `7esn` Using Join On #usn8,#usn8 Where `8esn`[..`4esn`][..$usn1]"), + octest_legacy:ct_string("Merge usn2=Allshortestpaths((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}))) On Match Set @usn5 =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Foreach(#usn7 In {@usn5} =~_usn4 =~0.12| Match #usn7=Allshortestpaths((:`5esn`:@usn5{#usn8:123.654[$`1esn`..Null][1000..{_usn3}],`6esn`:12.0 =~$#usn7 =~9e12})-[`1esn`:usn2|#usn7{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})),usn1=((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})) Where .e12[$7..][{`6esn`}..]) Union Foreach(@usn6 In 1.e1[0xabc..]| Delete .e1[@usn5]['s_str'],Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..] Unwind {12}[$`3esn`] As `6esn`) Match ((()-[?:`3esn`|:@usn5 *0x0..{`3esn`:.e1[0.12],`7esn`:$123456789 Starts With .e12}]-(:`6esn`:`8esn`{@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]})-[?:usn2|#usn7]-(`1esn` {#usn7:Count ( * )[$12..]}))),((`4esn` {`1esn`:9e12 Is Not Null Is Not Null})-[?:`7esn` *999{@usn6:{``} Ends With .e12 Ends With 0.e0,`5esn`:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})) Using Scan #usn7:`3esn` With *,Case 0[{@usn5}..][7..] When {`4esn`} In _usn4 Then `1esn`[Null..] When ``[{#usn8}] Then {`4esn`} Starts With $7 Starts With $`` Else `8esn` Contains $`3esn` Contains {`4esn`} End In [{_usn4} In {1000}] In Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`4esn`} Starts With $7 Starts With $``|0Xa Contains {`7esn`} Contains $999),[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]|0[Count(*)][0e0]] Contains Extract(`` In {`1esn`} Starts With @usn6 Where .e0[..{`5esn`}][..999]|$`3esn`[..$`2esn`][..123.654]) Contains Reduce(`2esn`=$usn1[0X7],@usn5 In Null =~12e12|#usn7 =~{`4esn`} =~123456789) As usn2 Order By Single(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2])[(_usn3 {usn1:0Xa[0e0..{#usn7}],`1esn`:.e0[True..Count ( * )][#usn7..0X7]})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1})..] Descending,0.12 In 0X7 Descending Skip Count ( * )[\"d_str\"][_usn3]"), + octest_legacy:ct_string("Unwind {`3esn`:'s_str'[..0X7]}[(@usn5 :@usn5)<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]->(:`5esn`:@usn5{``:.e12 =~$_usn4})] As `1esn` Start `5esn`=Rel:`4esn`('s_str') ,`6esn`=Node:_usn4(``=\"d_str\")Where $@usn5[$`4esn`][$@usn6] Union All Load Csv From `2esn` Ends With $`4esn` Ends With {#usn7} As usn2 Fieldterminator \"d_str\" Union Create Unique Allshortestpaths((({_usn3})-[`5esn` *0x0..]->(usn1 :usn1:_usn4))),`4esn`=((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7))"), + octest_legacy:ct_string("Return Distinct Count(*) Is Not Null,{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] Skip Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123456789 Is Not Null Is Not Null)[Allshortestpaths((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}))..Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12 Starts With {_usn4} Starts With $#usn8)][Case When 01 =~$`1esn` Then {@usn5}[Count(*)..] End..count(Distinct 07 =~@usn5)] Create Unique Shortestpath((((`2esn` {@usn6:True Is Null Is Null})-[`5esn` *0x0..]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]})-[?:`7esn`]->(#usn7 :@usn6)))),`2esn`=((@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]})) Union With Distinct `2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] Limit `` =~`6esn` =~usn1 Where 123.654[{`7esn`}][{7}] Remove `8esn`(9e1 =~999,{``} Is Null Is Null).`3esn`! Merge usn2=Shortestpath(((:@usn5{`3esn`:@usn5 =~'s_str',`1esn`:$`7esn` Contains {`1esn`} Contains 9e12}))) Union All Load Csv With Headers From 00[0.12..] As `2esn` Match _usn3=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`)))"), + octest_legacy:ct_string("With 0Xa[07..] Order By Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4])[Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End] Descending,Case When {@usn6} Contains 123.654 Contains 01 Then usn2 Ends With Count ( * ) Ends With $@usn6 End Is Not Null Is Not Null Desc,{_usn4}[{usn1}..$_usn3] Asc Skip .e1 Ends With {7} Ends With $usn1 Limit {`3esn`} =~$7"), + octest_legacy:ct_string("Using Periodic Commit 0X0123456789ABCDEF Load Csv From (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Is Null As usn1 Fieldterminator 's_str'"), + octest_legacy:ct_string("Return 1.e1 Is Null Skip $`2esn`[{``}..{1000}][#usn8..`2esn`] Limit $123456789[..$7][..$`6esn`] Merge `5esn`=(_usn3 :`6esn`:`8esn`{`4esn`:$usn1 Starts With $999 Starts With {@usn5},`7esn`:``[..$#usn7]}) On Create Set #usn8 =$`1esn` =~$`1esn` =~{`6esn`},`2esn` =@usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2),`6esn` =`6esn` In Null On Match Set `5esn` =123456789 Is Not Null Is Not Null,`6esn` ={@usn5}[{`5esn`}][$12] Union Start `7esn`=Node:usn1({999}) Start `1esn`=Node:@usn6(\"d_str\") ,`3esn`=Rel:`5esn`({0}) Union All Load Csv From $`2esn` Starts With {`8esn`} Starts With {usn1} As #usn7 Fieldterminator \"d_str\""), + octest_legacy:ct_string("With Distinct Count(*) Is Not Null,{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] Order By {`8esn`}[0X7][$`3esn`] Descending,12.e12[$`4esn`..] Descending,`3esn` In {@usn6} Ascending Skip 01234567 =~0x0 =~9e12 With True Is Not Null As @usn5 Order By {`2esn`} In $123456789 In True Ascending,Reduce(#usn7={`1esn`} Starts With `4esn` Starts With {0},`3esn` In 123.654[1e1..][{#usn8}..]|9e12[$`5esn`]) Desc Skip 0Xa In {`7esn`} Limit 9e0 =~0.0 =~$`5esn`"), + octest_legacy:ct_string("Load Csv From .e12[$#usn8..@usn6] As usn2 Fieldterminator \"d_str\" Union All Foreach(`3esn` In {`5esn`} Contains 123456789 Contains 9e12| With `7esn` =~.e12 =~$#usn7 As `3esn`,$`8esn` Is Null Is Null As `6esn` Order By False[{`8esn`}] Asc,Reduce(usn2={`6esn`}[..{`2esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|1e1[..01]) Is Not Null Is Not Null Asc,{1000}[1000][$usn1] Ascending Skip $#usn8[{12}..]) Union Merge `6esn`=((@usn5 {#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})-[{@usn5:1000 Is Null Is Null}]-(_usn3 :@usn5{`2esn`:@usn5[$12..\"d_str\"]})) On Match Set _usn3 ={#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null,Reduce(usn2=.e1[..\"d_str\"],#usn7 In 123.654 Starts With $``|0Xa[$1000..$123456789]).@usn6 ={`2esn`}[Count(*)],`2esn`+=[{usn2}[$`4esn`]] Starts With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null] On Match Set `` =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Merge ((usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[#usn7? *999{usn2:{1000}[{``}][999]}]-({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`)) On Create Set @usn6+={`3esn`} =~$7,{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}._usn3 ={`5esn`} Ends With \"d_str\" With *,$usn1 In 01234567 In .e1 Order By Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6) Starts With [$_usn3[010..False],$123456789 =~`4esn`,$usn1[$123456789..0][{`1esn`}..12.0]] Descending,{#usn7:`5esn`[..9e0][..01234567]} In Case 1e1[1.e1..][123.654..] When 7[1000.._usn3][9e0..\"d_str\"] Then 12.e12[``..usn2][{#usn7}..@usn5] When 1.e1[0xabc..] Then 1.e1 Starts With $`2esn` Starts With $0 End In Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null) Desc,{7}[$7..] Desc Skip \"d_str\"[{999}..] Limit @usn5[$12..\"d_str\"]"), + octest_legacy:ct_string("Create Unique ``=Allshortestpaths((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[?:`6esn` *01..07]->(#usn7 :#usn8{_usn3:`1esn`[..00][..{7}]})<-[:`1esn`|:`3esn` *1000]-($12)),`7esn`=({#usn7:#usn8 =~{999}}) Union Create Unique (((usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]})<-[ *0xabc..7]-(`` :`6esn`:`8esn`))),`2esn`=((`4esn` :`2esn`)) Union Foreach(usn2 In `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]]| Start #usn8=Relationship:usn1({7}) ,`5esn`=Relationship:_usn4(usn1={_usn4})Where .e12 Ends With 1000 Ends With 010) Remove (#usn7 :@usn6{`8esn`:{@usn6}[True..{_usn3}],`1esn`:07 Is Null})-[`3esn`:`6esn`{`3esn`}]-(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[`1esn`?:_usn3|`8esn` *0xabc..7]-(`4esn` :@usn6).@usn6"), + octest_legacy:ct_string("Delete $@usn5[..usn2][..$#usn7],`3esn` In {@usn6},0[{@usn5}..][7..] Union All Remove [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12].`2esn`,[usn1 Contains $7 Contains $``,$@usn5 In 's_str' In $12,$`1esn` Is Not Null Is Not Null].usn2!,All(`1esn` In `3esn`[07..] Where 999 Starts With 's_str').#usn8! Remove Extract(`` In {`1esn`} Starts With @usn6 Where Null[{_usn4}..]|0Xa Contains {`7esn`} Contains $999).`5esn`!,All(`5esn` In $`2esn`[12.e12][$@usn5] Where {999} Starts With {12}).`2esn`,Reduce(`3esn`={7} Starts With $usn1 Starts With 1.0,_usn3 In True[7][$999]|123.654[{@usn5}..123.654][1.0..$12]).#usn8 Foreach(`` In {123456789} =~01234567 =~`3esn`| With (`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] Order By `1esn`[..00][..{7}] Ascending,`6esn` In Null Descending,{`3esn`} Is Null Descending Skip Case When .e1[@usn5]['s_str'] Then 123456789 Starts With {@usn6} Starts With $12 End Contains [`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`] Contains {@usn5:12 Is Not Null,`2esn`:$999 In 999} Where $``[..1.e1][..12] Start @usn5=Node:``(#usn7=\"d_str\") ,#usn8=Relationship:`4esn`(``='s_str')Where $``[..1.e1][..12]) Union All Unwind Filter(#usn7 In 0Xa[@usn5][{`7esn`}] Where {1000}[\"d_str\"..{@usn5}][$1000..$#usn8]) Starts With All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $`5esn`[$#usn7..][0xabc..]) Starts With [#usn7 Contains {`3esn`} Contains $`6esn`] As #usn8"), + octest_legacy:ct_string("Create Unique Shortestpath((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->({_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})),Allshortestpaths((#usn7 {``:0x0 =~123.654 =~{999}})) Union All Remove [$12[{7}..0X0123456789ABCDEF]]._usn4?,(usn1 :`2esn`{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})-[?{`7esn`:{``} Ends With .e12 Ends With 0.e0}]-(`4esn` {`2esn`:12 Starts With 7 Starts With $`5esn`})<-[``?:usn2|#usn7 *0x0..]->(@usn6 :usn1:_usn4).`7esn`? Unwind 999 Starts With $123456789 Starts With {``} As `8esn`"), + octest_legacy:ct_string("Using Periodic Commit 0xabc Load Csv From Shortestpath(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})))[[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7[`5esn`]|{_usn3}[{0}]]..] As `4esn` With (`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] Order By `1esn`[..00][..{7}] Ascending,`6esn` In Null Descending,{`3esn`} Is Null Descending Skip Case When .e1[@usn5]['s_str'] Then 123456789 Starts With {@usn6} Starts With $12 End Contains [`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`] Contains {@usn5:12 Is Not Null,`2esn`:$999 In 999} Where $``[..1.e1][..12] Load Csv From Shortestpath(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})))[[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7[`5esn`]|{_usn3}[{0}]]..] As `4esn` "), + octest_legacy:ct_string("Load Csv With Headers From Count ( * )[$1000..] As @usn5 Remove Filter(`` In {`1esn`} Starts With @usn6 Where $`5esn`[`1esn`][0X0123456789ABCDEF]).@usn6?,Single(_usn4 In `2esn` Where ``[00..$7]).``?,Any(`5esn` In $`2esn`[12.e12][$@usn5] Where `6esn`[{`6esn`}..]).`7esn`! Union Create Allshortestpaths(((@usn6 :`2esn`))),#usn7=(($`5esn`))"), + octest_legacy:ct_string("Create ``=({#usn7:#usn8 =~{999}})-[{`7esn`:01234567 In $123456789}]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})"), + octest_legacy:ct_string("Optional Match `6esn`=(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}),(((usn2 :_usn3)<-[#usn7{#usn8:{`1esn`} Is Not Null}]->(`8esn` {`3esn`:'s_str'[..0X7]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6))) Remove (`2esn` :`2esn`{`5esn`:{1000}[{``}][999],`3esn`:#usn7 =~{`4esn`} =~123456789})-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(`2esn` :_usn3)-[? *01..07]->(`8esn` :#usn7)._usn3!,Any(@usn5 In Null =~12e12 Where {_usn4} In {1000}).`3esn`,Reduce(_usn3=12.e12[``..usn2][{#usn7}..@usn5],`2esn` In {999} Is Not Null|@usn6[$_usn4]).`6esn` Start ``=Node:`6esn`(usn2={`8esn`}) Where {7} Starts With $usn1 Starts With 1.0 Union All Remove {`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}.`1esn`,[0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0],Count(*) Starts With $usn1 Starts With {usn2}].`2esn`?,Reduce(`5esn`=$_usn4[{``}..][1e1..],usn1 In 12.e12 In {0} In 9e1|{`1esn`} Starts With @usn6).#usn8? Optional Match (((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}))),#usn8=((`2esn` :@usn6)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)<-[`1esn`:`8esn`|:_usn4 *123456789..0X7$12]->(:`1esn`{`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})) Using Scan `3esn`:`3esn` Start `6esn`=Node:@usn5({`3esn`}) ,`4esn`=Node:#usn7({``}) Union Unwind #usn7[9e0] As ``"), + octest_legacy:ct_string("Create Shortestpath((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->({_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})),Allshortestpaths((#usn7 {``:0x0 =~123.654 =~{999}})) Union Start usn2=Relationship:`5esn`(#usn7=\"d_str\") ,`8esn`=Rel( {`7esn`})Where $@usn5 In $usn2 In {1000} Create Unique #usn7=Allshortestpaths(((:`6esn`:`8esn`))),usn1=Allshortestpaths(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))) Merge Shortestpath(((({`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]})-[:#usn8|`2esn`]->(`` :usn2:`2esn`)<-[@usn5:_usn4|:usn1*]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF})))) On Create Set `6esn`({`6esn`}[..{`2esn`}]).`7esn` =`4esn` Is Not Null Is Not Null,`6esn` ={_usn3}[usn1][0],Single(`2esn` In {999} Is Not Null Where $7[{`1esn`}]).usn2? ={@usn6}[0Xa..$@usn6][0..`5esn`]"), + octest_legacy:ct_string("Unwind Count(*)[..``][..#usn8] As #usn7 Union Return Distinct *,(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As #usn7,.e1 Ends With 0Xa Ends With 00 As _usn3 Order By usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3) Ascending,.e1 =~$`5esn` Desc,Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000|$@usn5 In $usn2 In {1000}) Is Not Null Ascending Limit 12 Starts With 7 Starts With $`5esn` With *,Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*))[Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12)..] As `3esn`,123456789[12..$`4esn`] As `7esn` Skip 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF Unwind 0x0[{7}..] As #usn7 Union Start usn1=Relationship:`8esn`(`8esn`={12}) Where {@usn5}[..#usn7]"), + octest_legacy:ct_string("Foreach(@usn5 In {1000}[7..$usn2]| Create ``=(({`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[ *0xabc..7]->(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]}))) Start `4esn`=Node:``(\"d_str\") Where True =~_usn3 =~123456789 Foreach(`` In [$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null][(`1esn` :#usn7)<-[? *0X0123456789ABCDEF]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]})..[{_usn3}[$usn2..],$`3esn`[..$`2esn`][..123.654],12.e12[`7esn`]]]| Optional Match ``=Allshortestpaths((((:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})-[#usn8? *..0Xa{`4esn`:$`2esn` Ends With 0.12 Ends With .e1,`4esn`:07 =~@usn5}]-(usn2 :`4esn`:@usn6)-[`8esn`?:``]->(`` {`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]})))) Where `6esn`[..{999}] With 12.0[010],{@usn5} Is Null Order By `3esn`[$@usn5..@usn5][9e1..$``] Desc,Extract(_usn4 In `2esn` Where $999 Is Null) Starts With Reduce(`5esn`=00,`2esn` In {999} Is Not Null|{`4esn`}[..07][..$`6esn`]) Starts With [`8esn`[..`4esn`][..$usn1],{#usn8}[2.12]] Descending,.e1 =~$`5esn` Desc Skip Count ( * ) Contains 12 Limit Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000) Contains [0x0[$`8esn`.._usn3]] Contains count({`1esn`} Is Not Null,$`2esn` Ends With 0.12 Ends With .e1))"), + octest_legacy:ct_string("Using Periodic Commit 01 Load Csv From 1e1 Starts With 9e1 Starts With {`4esn`} As `2esn` Match ``=Shortestpath((`7esn` :`5esn`:@usn5{`2esn`:12 Starts With $#usn7})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(`4esn` :_usn4{`2esn`:#usn7 =~00})) Using Scan `1esn`:`7esn` Using Join On `7esn`"), + octest_legacy:ct_string("Match `8esn`=Allshortestpaths((`` :``)-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})) Using Scan `3esn`:#usn8 Using Join On _usn3 Create _usn4=((`8esn` :`5esn`:@usn5)-[_usn3:#usn7|`2esn`]-(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})) Union Foreach(usn1 In $`6esn`[`8esn`][$`5esn`]| Start `6esn`=Relationship:`4esn`(\"d_str\") ,`3esn`=Relationship:`2esn`(#usn7={usn1})Where @usn5 Is Not Null Is Not Null Match (((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),_usn4=Allshortestpaths((usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})) Using Scan `2esn`:#usn7 Where {#usn8} =~{999} =~{#usn7}) Union All Detach Delete {12}[00..{@usn6}][1.e1..0],`1esn`(Distinct $usn1 Starts With {_usn3},{#usn8}[$#usn7..]) Starts With [$_usn4[$`4esn`..$12]] Starts With [`6esn` In 00 Where 0.12 In 0X7|{999} Is Null] Start ``=Node:`6esn`('s_str') Where #usn7 Ends With $#usn7 Ends With {`8esn`}"), + octest_legacy:ct_string("Remove Allshortestpaths(((_usn3 :#usn8{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(:`2esn`{`2esn`:123456789[0..]}))).`8esn`! Remove Shortestpath((({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`))).#usn8!,({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})-[? *01..07]->({_usn4:{usn1} =~123.654 =~\"d_str\"}).`5esn`?,[{`6esn`}[..{`2esn`}],$`8esn`[..$999][..0],`3esn` Is Not Null Is Not Null].`1esn`? Return Distinct *,010 Is Not Null Is Not Null As #usn7,123456789[12..$`4esn`] As `7esn` Order By $_usn3[..$`2esn`][..\"d_str\"] Desc Limit `` Is Null Is Null"), + octest_legacy:ct_string("Unwind `4esn`[usn1] As _usn4 Union All Foreach(`4esn` In 0.e0[12.e12]| Optional Match `5esn`=((`2esn` :`3esn`:`6esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-(:`7esn`{``:.e1 Contains $`3esn`})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`8esn`:@usn5)) Remove [`1esn` Is Null Is Null,$`3esn` Contains 0 Contains 07,0 Contains $usn2 Contains 12e12].@usn6!,(usn1 :usn2:`2esn`{`1esn`:{123456789}[12..][$12..]})<-[@usn6?:`7esn`]->(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:``{`2esn`:Null In .e0,usn1:01234567[..9e1]}).#usn8,None(#usn7 In 123.654 Starts With $`` Where .e1[@usn5]['s_str']).#usn8) Start @usn6=Rel:`2esn`(`5esn`='s_str') ,usn1=Rel(*)Where {#usn7} Contains @usn5 Contains Count ( * ) Foreach(`7esn` In $`2esn`[{usn2}]| Create Unique Allshortestpaths((_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})-[? *1000]->(`5esn` {usn2:$#usn7 Starts With 9e0 Starts With 2.12})),`1esn`=Allshortestpaths((_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}))) Union With Distinct usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3) As usn1,$999 Contains {7},\"d_str\"[..0.e0] As #usn8 Order By None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12.e12[``..usn2][{#usn7}..@usn5]) Is Null Is Null Descending Skip Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4])[Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End] Limit [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null Where $0[$1000..00][{0}..{usn1}] Merge `2esn`=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`))) On Match Set `6esn`+={`8esn`}[Null..][{`8esn`}..],_usn4+={#usn8} =~{999} =~{#usn7} On Match Set usn1 =[usn1 In 12.e12 In {0} In 9e1 Where {usn1} In Count ( * )][{_usn3:.e1 Ends With 0Xa Ends With .e1,`2esn`:12e12 Starts With `1esn` Starts With usn2}..] Remove {_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}.#usn7!,Extract(_usn3 In {@usn5}[..#usn7]).`4esn`?"), + octest_legacy:ct_string("With *,#usn7[..12e12] Order By Count(*) Ends With 123.654 Ends With $12 Asc Limit {usn2}[$`4esn`] Where {`6esn`} Contains 07 Merge Shortestpath((((#usn8 :@usn6)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4})-[:`3esn`|:@usn5]-(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})))) On Create Set Reduce(#usn7=`4esn`[usn1],usn1 In 12.e12 In {0} In 9e1|2.12 =~0x0 =~_usn4).``! =False[`4esn`..Count(*)] On Match Set `4esn`+=12.e12[..1e1] Create Unique ((`5esn` :_usn3)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})),``=(_usn4 :#usn7{`8esn`:$999 Contains {7}}) Union All Remove Single(usn1 In 12.e12 In {0} In 9e1 Where `7esn` Contains {@usn5} Contains $123456789)._usn4?,(_usn4 :_usn4)-[``?:#usn7|`2esn`{`5esn`:123456789 Starts With {@usn6} Starts With $12}]->(`7esn` {@usn6:{_usn4} Is Null})<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}).`4esn`? Create `1esn`=((`4esn` {`7esn`:12.e12 In $0 In $0,@usn5:_usn4[Count(*)]})<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})),`5esn`=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]})"), + octest_legacy:ct_string("Create usn1=((:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})<-[`5esn`:usn2|#usn7 *999]-(:`8esn`:@usn5)<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(`1esn` :@usn6)),Allshortestpaths(((_usn4 :@usn6)-[`5esn`?:@usn5|:`7esn`]-(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})))"), + octest_legacy:ct_string("Start #usn7=Node:``(_usn3={0}) ,`8esn`=Node:`4esn`(\"d_str\")Where 9e0 In usn1 Load Csv From `3esn`[_usn4..{0}][`5esn`..usn2] As usn1 Fieldterminator 's_str' Union Load Csv With Headers From Allshortestpaths((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null}))) In {`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null} As _usn3 Fieldterminator \"d_str\" Unwind {123456789}[..'s_str'][..$@usn6] As `8esn` Detach Delete $1000 Is Not Null Is Not Null,$`7esn` Is Null Is Null,_usn4 Is Not Null Is Not Null Union All With Distinct *,9e1[9e1...e0] Order By 1e1[{_usn4}..123.654] Ascending,00[..$123456789][..$`5esn`] Asc Skip 7[1e1..#usn7] Limit [`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]][..{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}][..`4esn`(123.654[$`1esn`..Null][1000..{_usn3}])] Unwind $123456789 Starts With .e12 As _usn3"), + octest_legacy:ct_string("Remove All(`1esn` In $12 Is Not Null Where {usn1} In Count ( * )).usn1,Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where _usn3[\"d_str\"]|$_usn4 Is Not Null Is Not Null).`1esn`? Start `7esn`=Node:usn1(@usn5={12}) ,usn1=Node:_usn3(_usn3='s_str')Where _usn4 In $usn1 Union Foreach(`6esn` In .e12[$7..][{`6esn`}..]| Create (`2esn` {@usn6:True Is Null Is Null})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)-[_usn3?:@usn6|`` *0x0..{`3esn`}]->(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}})) Remove Filter(`1esn` In `3esn`[07..] Where 9e12 Is Not Null).@usn5! Union All Unwind 9e0[#usn8] As `2esn`"), + octest_legacy:ct_string("Foreach(`4esn` In [00[..$123456789][..$`5esn`],{_usn3} Contains $`1esn` Contains 12.0][..[0.e0 =~`1esn` =~`6esn`,12.0[2.12..][{`5esn`}..],1.e1[0X0123456789ABCDEF..]]][..Filter(_usn3 In True[7][$999] Where 's_str'[..0X7])]| Unwind 0Xa[.._usn3][..$`6esn`] As `4esn` Load Csv With Headers From Any(`5esn` In $`2esn`[12.e12][$@usn5] Where {999} Starts With {12})[Reduce(#usn7={_usn3}[`3esn`..$#usn8],`3esn` In 123.654[1e1..][{#usn8}..]|{999} Starts With {_usn4} Starts With 00)..Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0.12[..$`6esn`][..$1000])][All(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])..[$_usn3 Is Null Is Null,`5esn` Is Null Is Null,7 Is Null Is Null]] As `2esn` ) Match Allshortestpaths(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),Allshortestpaths((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})-[`5esn`{`7esn`:@usn5[..$@usn5][..0Xa]}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})<-[#usn8? *..01234567]-($_usn3))"), + octest_legacy:ct_string("Using Periodic Commit 123456789 Load Csv With Headers From $usn1 =~010 =~07 As _usn4 Create usn1=(({`7esn`:123456789[0..]})),`4esn`=Shortestpath((usn2 {_usn3:$0 In _usn4})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[{`2esn`:1000 Is Null Is Null}]->(:_usn4{`4esn`:`8esn` Contains $`3esn` Contains {`4esn`},_usn3:$12[{7}..0X0123456789ABCDEF]}))"), + octest_legacy:ct_string("With Distinct *,Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF) Ends With Case {`2esn`}[..{@usn6}][..1.e1] When Null Is Null Is Null Then #usn7 Contains {`3esn`} Contains $`6esn` When 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Then $usn1[..'s_str'][..$#usn8] End Ends With Filter(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789}) As `8esn` Skip {`5esn`} Contains 's_str' Contains 9e1 Limit Shortestpath(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(:#usn8)<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})))[False..][({`1esn`:{123456789}[12..][$12..]})-[?:`1esn`|:`3esn`{@usn5:{`6esn`} Ends With 0e0 Ends With {``},@usn5:{`1esn`} Starts With `4esn` Starts With {0}}]->(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[`5esn`?:`7esn`]->({@usn5:Count ( * ) Is Null})..] Union Remove @usn5:``,Reduce(`8esn`=0.12 Contains 12.0,`8esn` In $12[{7}..0X0123456789ABCDEF]|`8esn`[..`4esn`][..$usn1]).`8esn`? With 's_str'[_usn3..] As `5esn`,{0}[False..@usn5] As `1esn` Order By {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Desc,01234567[{`7esn`}..] Descending,[{7} Contains $123456789,$``[..1.e1][..12],$`5esn`[..{`2esn`}][..{0}]] =~`3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]) =~{`6esn`:{`3esn`} Ends With `1esn` Ends With $@usn6,@usn6:$usn1 In 0.12 In $``} Descending Skip .e0[..{`5esn`}][..999] Limit {`8esn`:`2esn` Starts With `` Starts With 1e1} In [usn1 In 00 In {_usn3}] In Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) Where $123456789[..$7][..$`6esn`] Load Csv From {_usn3}[`3esn`..$#usn8] As `4esn` Fieldterminator 's_str' Union All Foreach(`` In `6esn` Starts With 123.654| Create Unique `1esn`=(({`3esn`:@usn5[12.0][{1000}]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]->(`2esn` :@usn5{`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})) Unwind Reduce(@usn6=12 Is Not Null,`` In {usn1} Ends With {`6esn`} Ends With 123456789|.e1 Ends With {7} Ends With $usn1)[Case {12} Contains `7esn` Contains $_usn3 When 0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] Then Count ( * ) Starts With 010 Starts With 0x0 When $7 Ends With 0X7 Then {#usn8}[2.12] Else $7 In 1.0 In 1e1 End..][_usn4(Distinct 0.12 Ends With {1000} Ends With `6esn`,$_usn3 =~{_usn4} =~$`6esn`)..] As _usn3) Create (`4esn` :`4esn`:@usn6)"), + octest_legacy:ct_string("Remove [`6esn` In 00 Where 0.12[..$`6esn`][..$1000]|Null =~12e12]._usn4?,[#usn7 In 123.654 Starts With $`` Where `1esn` In 07|0.0[..{999}][..0.0]].`7esn`!,Shortestpath(({`6esn`:$``['s_str'..][0x0..]})).`8esn` Unwind @usn6[Count ( * )][True] As usn2 Unwind 0x0[{7}..] As `3esn` Union All Optional Match @usn6=Shortestpath(((usn1 :`5esn`:@usn5)-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:usn2:`2esn`{usn1:$7 Is Null Is Null})-[? *01..07]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}))),(`2esn` :`5esn`:@usn5{_usn4:{`2esn`} Is Not Null Is Not Null,usn2:{`4esn`} In _usn4})<-[#usn7?:#usn8|`2esn`]->(#usn7 {usn1:$#usn7 =~{12} =~False,#usn7:0x0 =~123.654 =~{999}})-[`8esn`?]->(`3esn` :`6esn`:`8esn`) Using Scan `3esn`:#usn8 Using Join On `1esn`,`7esn`,usn2 Where {``} Is Null Is Null Merge `6esn`=(`3esn` :#usn7)-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}) Union All Return *,Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000)[[_usn4 In `2esn` Where `3esn` Is Not Null Is Not Null]..All(`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999])][(_usn4 {_usn3:9e1 =~999})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})..{`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}] As _usn3,Reduce(_usn4=.e1 Starts With $_usn4 Starts With {`1esn`},`6esn` In 00|usn2[True])[..[9e12[..0X7]]][..$`1esn`] Skip 0e0[..$@usn5][..$`8esn`] Limit Reduce(`3esn`={_usn3} Is Not Null,usn1 In 12.e12 In {0} In 9e1|0[Count(*)][0e0])[`6esn`(``[..0X0123456789ABCDEF])..Single(`` In {`1esn`} Starts With @usn6 Where {_usn3}[$usn2..])] Start `8esn`=Relationship:`4esn`(``='s_str') ,`8esn`=Rel( {`7esn`})"), + octest_legacy:ct_string("Using Periodic Commit 0Xa Load Csv With Headers From Reduce(``={usn2} =~@usn6 =~{`4esn`},`` In {`1esn`} Starts With @usn6|0[{@usn5}..][7..]) Contains [`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]] Contains [$999 Is Null,{``}[010]] As `4esn` Fieldterminator 's_str' Detach Delete 123.654[{`7esn`}][{7}],Count ( * ) Starts With 010 Starts With 0x0"), + octest_legacy:ct_string("Match Allshortestpaths(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),Allshortestpaths((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})-[`5esn`{`7esn`:@usn5[..$@usn5][..0Xa]}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})<-[#usn8? *..01234567]-($_usn3)) Remove [@usn5 In Null =~12e12 Where _usn4 In $usn1].`6esn`?,Reduce(`4esn`=`3esn`[..{_usn4}][..{@usn5}],`2esn` In {999} Is Not Null|123456789 Starts With {@usn6} Starts With $12).usn2,Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3).`3esn` Union All Merge _usn4=(`7esn` :`5esn`:@usn5{`2esn`:12 Starts With $#usn7})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(`4esn` :_usn4{`2esn`:#usn7 =~00}) Foreach(`1esn` In Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 07[..`6esn`][..'s_str']) In [$`2esn`[$usn2..][{``}..],0.e0 Ends With False] In (:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})-[`2esn`?$_usn4]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})| Detach Delete 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF,#usn8[1.0..] Delete $#usn7[`2esn`][010],{`7esn`} Is Not Null Is Not Null) Union All Foreach(`5esn` In $_usn4 Is Null Is Null| Create _usn4=((`2esn` :@usn6)-[_usn3?:@usn6|``]-(usn2 )<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})),`5esn`=Allshortestpaths(((:_usn4)<-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]->(_usn4 {_usn3:`1esn`[..00][..{7}]}))) Remove (`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]}).`1esn`?,[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000].usn1?,{`4esn`:0.12 In 0X7}._usn4!) Remove Shortestpath(((@usn6 :`4esn`:@usn6{#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[:#usn7|`2esn` *0x0..]-({`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}))).#usn7!,Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where _usn4 Is Null Is Null).``!"), + octest_legacy:ct_string("Delete Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where 12e12 Is Not Null) Ends With Single(usn1 In 12.e12 In {0} In 9e1 Where 07 =~@usn5) Ends With [`` In {`1esn`} Starts With @usn6 Where {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]|$`` In 0 In {1000}] Union Unwind $_usn4[$`4esn`..$12] As `3esn` Load Csv With Headers From #usn8 In `8esn` In 07 As #usn7 Fieldterminator \"d_str\" Create @usn5=Allshortestpaths((@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})),(((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[{#usn7:'s_str'[_usn4..0x0]}]-(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})))"), + octest_legacy:ct_string("Foreach(_usn3 In 1000 Is Null| Start @usn6=Rel:`2esn`(`5esn`='s_str') ,`1esn`=Node(00)Where $usn2 =~\"d_str\" =~_usn3 Create `7esn`=Shortestpath(({usn2:#usn8 =~{_usn3} =~``})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})-[?:`1esn`|:`3esn` *999]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})),_usn3=Shortestpath((`6esn` {``:`4esn`[usn1]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]-(#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]}))) Start `5esn`=Relationship:`4esn`(#usn8=\"d_str\") ,#usn8=Node:``(#usn7=\"d_str\")"), + octest_legacy:ct_string("Merge Shortestpath((usn2 )-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})) Union All Remove Shortestpath(({usn2:#usn8 =~{_usn3} =~``})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})-[?:`1esn`|:`3esn` *999]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})).`4esn`,Reduce(#usn7={_usn4}[{``}..],_usn3 In {`2esn`} Ends With {12} Ends With 7|{`6esn`} Ends With 0e0 Ends With {``}).#usn7! Union All With Distinct 0Xa Contains #usn8 Contains 1000 Order By {#usn8} Contains 1000 Contains $`4esn` Ascending,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Ascending Skip ({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..`2esn`(Distinct #usn8[`7esn`..])][..[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]]] Remove None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $`5esn`[$#usn7..][0xabc..]).`2esn`,{`5esn`:usn2 =~0X7 =~{#usn7}}.`3esn`? Return *,All(`6esn` In Count(*) Ends With $`` Ends With {7}) In (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}) Skip [`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7}|usn2[`7esn`..{`3esn`}][$7..{#usn7}]][..[`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]|9e12[..0X7]]][..[`2esn` Ends With $`4esn` Ends With {#usn7},'s_str'[..0X7],{#usn8} =~{999} =~{#usn7}]]"), + octest_legacy:ct_string("Detach Delete $@usn6 Contains $`7esn` Contains 1e1 Merge _usn3=Shortestpath((((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[`6esn`?]-(`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})))) On Match Set #usn8 =$`1esn` =~$`1esn` =~{`6esn`},`2esn` =@usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2),`6esn` =`6esn` In Null On Create Set `5esn`+=$`3esn` Contains 0 Contains 07,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $#usn7[..@usn6][..$0]).`1esn`? =$1000[0.12..0.12] With 0X0123456789ABCDEF[0X7..] As `4esn`,7 Contains 9e0 As `4esn`,0x0 Ends With {``} As `7esn` Where 1.e1[0X0123456789ABCDEF..] Union Detach Delete \"d_str\" Starts With $`8esn` Starts With {usn1},12.e12[2.12..][0xabc..],(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) Merge ((`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})) On Create Set `4esn` ={999} Ends With {`5esn`} Ends With {0} Start `6esn`=Node:_usn4('s_str') ,#usn8=Node:`2esn`({_usn3}) Union All Remove Single(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn4} In {1000}).usn1 Remove Filter(`6esn` In 00 Where 0.12[..$`6esn`][..$1000]).#usn8!,[999 Ends With .e12 Ends With .e1,{_usn3}[..$`8esn`]].@usn6?"), + octest_legacy:ct_string("Start _usn4=Node:`6esn`({`1esn`}) ,`3esn`=Rel:#usn8(\"d_str\")Where 12 Starts With 7 Starts With $`5esn` Foreach(`` In {12} =~0.e0 =~{_usn3}| Detach Delete 12.e12 In {0} In 9e1,$``[01],0.0 In `6esn` In $@usn5 Create Unique #usn7=(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}),`6esn`=(({@usn6:Null =~12e12}))) With *,2.12[`8esn`][1e1],$usn1 Starts With {_usn3} As _usn4 Limit {`2esn`} In 0Xa In {_usn3} Union Remove (#usn8 :_usn3)<-[?:usn2|#usn7]->(#usn8 :#usn7)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`).`2esn`,{@usn6:12 Starts With {_usn4} Starts With $#usn8,`2esn`:{@usn6}[$`7esn`..][False..]}.`1esn` Create Unique (((`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]})-[]->(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )})<-[@usn6?]->(`8esn` :``))),usn2=Allshortestpaths(((({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})<-[?:``]-(`1esn` :#usn7)-[?:`4esn`|:#usn7]->(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})))) Detach Delete {`5esn`} Starts With 12.0,1000 Starts With `7esn`,$usn1 In 01234567 In .e1 Union Create Unique `8esn`=Shortestpath(((_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->(`` {``:0x0 =~123.654 =~{999}})-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->(:`3esn`:`6esn`{@usn5:.e12 =~.e0}))),Allshortestpaths((:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[_usn4? *07{1000}]-(`` )<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00}))"), + octest_legacy:ct_string("Remove ({#usn8:0Xa Contains Count ( * ),`8esn`:Null Is Null Is Null})<-[:@usn5|:`7esn`{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})-[`5esn` *0x0..]->(usn1 :usn1:_usn4)._usn3! Start `4esn`=Node:`1esn`(#usn7=\"d_str\") Where $0[$1000..00][{0}..{usn1}] Union All With `7esn` Ends With $_usn3 Ends With usn2 As _usn4,1000 Is Null Is Null Order By \"d_str\"[Count ( * )..`6esn`] Desc Skip 9e1 Ends With $@usn5 Ends With $123456789 Limit $`8esn`[0e0..] Where {999} Starts With {_usn4} Starts With 00 Create Unique `2esn`=Shortestpath((:`5esn`:@usn5{``:0.12[..$`6esn`][..$1000]})) Foreach(`` In {`7esn`}[0X7..][0x0..]| Load Csv With Headers From 12.e12[`7esn`] As `1esn` With `7esn`[{usn1}][999] As `7esn`,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..]) Starts With [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]|Count ( * )[..12][..{@usn6}]] Starts With Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where True Starts With $`2esn` Starts With {@usn6}) Order By @usn5 =~$`3esn` =~0X7 Descending Skip {usn1}[01..7][{`3esn`}..`6esn`]) Union All Match `6esn`=(`4esn` {`2esn`:@usn5[$12..\"d_str\"]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]-({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000}),``=Shortestpath((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})-[#usn8?:#usn8|`2esn` *0X7..0Xa{usn2:{1000},`6esn`:#usn8[`7esn`..]}]->(:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})) Using Scan `1esn`:`7esn` Using Join On #usn8,#usn8 Where 's_str' Starts With 12e12 Starts With $_usn4 Foreach(#usn8 In {1000}| Create Unique _usn4=((`2esn` :@usn6)-[_usn3?:@usn6|``]-(usn2 )<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})))"), + octest_legacy:ct_string("Unwind _usn4 =~0e0 As `` Detach Delete ({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01})[(`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(usn2 )],{123456789} =~usn1 =~{usn1}"), + octest_legacy:ct_string("Load Csv From 010 Ends With 01 Ends With {_usn3} As `7esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Detach Delete 9e0 Starts With .e0 Starts With \"d_str\",(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) Union All Unwind 0.0 In `6esn` In $@usn5 As `6esn` Union Load Csv From 0.0 In `6esn` In $@usn5 As `4esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Detach Delete $`3esn`[{``}..],All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.e12[$`8esn`..{`8esn`}]) Is Null,$@usn5[..usn2][..$#usn7] Union All Delete $`2esn`[{`6esn`}][0.0],Single(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7])[..{@usn5:_usn4[Count(*)],`6esn`:$`3esn` Contains 0 Contains 07}][..Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`])],Single(`6esn` In 00 Where 0.12 In 0X7)[..{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] Union Unwind 010 Is Not Null Is Not Null As usn1"), + octest_legacy:ct_string("Detach Delete {`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}[Case When 1.e1[0X0123456789ABCDEF..] Then `6esn`[..{999}] When {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`] Then $#usn7 Ends With 0.12 Ends With {@usn6} End..Filter(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null)],Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})] Load Csv From Single(_usn3 In {@usn5}[..#usn7] Where {@usn6} In {#usn7} In 12.e12)[(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[*{`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]}]->(:`2esn`{#usn8:`6esn` Ends With 2.12 Ends With @usn6,`1esn`:{`8esn`}[True..][.e1..]})<-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` :`8esn`:@usn5)] As @usn6 Fieldterminator 's_str' Union All Start `3esn`=Node:`4esn`({#usn8}) ,`2esn`=Rel:`4esn`(#usn8='s_str')Where 010 In `1esn` Union Load Csv With Headers From $`8esn`[..0x0][..``] As usn2 Start ``=Relationship( {``}) ,`7esn`=Relationship(07,123456789,123456789)Where 12.e12[{@usn5}..][9e1..] Remove Reduce(@usn6=0.e0[12.e12],_usn4 In `2esn`|True Starts With $`4esn` Starts With 12e12).@usn6?"), + octest_legacy:ct_string("Load Csv From `4esn` Is Not Null Is Not Null As `7esn` Fieldterminator \"d_str\" Create Unique _usn4=Shortestpath(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})-[:`1esn`|:`3esn` *..01234567{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(#usn7 {``:0x0 =~123.654 =~{999}})),#usn8=((`2esn` :@usn6)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)<-[`1esn`:`8esn`|:_usn4 *123456789..0X7$12]->(:`1esn`{`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})) Load Csv From `1esn` In 07 As `8esn` "), + octest_legacy:ct_string("With Distinct *,$`1esn` Ends With {`7esn`} Ends With $_usn3 As `7esn`,{1000} As `` Load Csv With Headers From 01234567[{`7esn`}..] As `7esn` Fieldterminator \"d_str\" Union Optional Match `5esn`=(`8esn` :`5esn`:@usn5)-[`5esn`?:usn2|#usn7]->(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )}) Using Join On `4esn` Using Join On `1esn`,`7esn`,usn2 Where 00 With `7esn`[{usn1}][999] As `7esn`,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..]) Starts With [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]|Count ( * )[..12][..{@usn6}]] Starts With Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where True Starts With $`2esn` Starts With {@usn6}) Order By @usn5 =~$`3esn` =~0X7 Descending Skip {usn1}[01..7][{`3esn`}..`6esn`] Start `2esn`=Rel:usn2(`2esn`={`7esn`}) ,`1esn`=Relationship( {@usn6})Where {`7esn`} Is Not Null Is Not Null"), + octest_legacy:ct_string("Remove Single(@usn5 In Null =~12e12 Where `7esn`[0..$usn2][{usn2}..0.e0]).`5esn`? Union Foreach(usn2 In Any(`5esn` In $`2esn`[12.e12][$@usn5] Where {999} Starts With {12})[Reduce(#usn7={_usn3}[`3esn`..$#usn8],`3esn` In 123.654[1e1..][{#usn8}..]|{999} Starts With {_usn4} Starts With 00)..Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0.12[..$`6esn`][..$1000])][All(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])..[$_usn3 Is Null Is Null,`5esn` Is Null Is Null,7 Is Null Is Null]]| With Distinct {usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}[..None(`1esn` In `3esn`[07..] Where 0X0123456789ABCDEF[`5esn`..][$#usn8..])] Skip 0xabc[$999..][{#usn7}..]) Optional Match @usn6=(`2esn` :`3esn`:`6esn`),`8esn`=(@usn6 :`6esn`:`8esn`)<-[_usn4?:`7esn`{``:{_usn3} Contains $`1esn` Contains 12.0}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}) Using Join On _usn4,_usn4,@usn6 Where 0.12 Starts With 9e12 Starts With $`1esn`"), + octest_legacy:ct_string("Optional Match `7esn`=Shortestpath((((`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})-[_usn3?*..{#usn7:#usn8 =~{999},`8esn`:{_usn3}[`3esn`..$#usn8]}]->({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})-[@usn6 *07{`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}]->({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]})))),`6esn`=Shortestpath(((:#usn8{#usn8:`3esn` Is Not Null Is Not Null}))) Where $1000[{`6esn`}..] Unwind $`` Contains 1.e1 As `` With All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,1000 As `1esn`,12e12[{usn2}..][`8esn`..] Order By Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where 1.e1[12e12..{`6esn`}]|Count ( * )[..12][..{@usn6}]) Contains All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Contains Extract(_usn4 In `2esn` Where $999 Is Null) Ascending,[False Contains 0.e0 Contains Count(*)][Any(@usn5 In Null =~12e12 Where 0[`4esn`][12.e12])..[$_usn4 Is Not Null Is Not Null,`7esn` Is Not Null Is Not Null]] Descending,(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-({#usn7:#usn8 =~{999}}) In Shortestpath(((:`1esn`)<-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})-[`7esn`? *123456789..0X7{`6esn`:{0}[..{`7esn`}]}]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999}))) Desc Where `5esn`[0xabc..]"), + octest_legacy:ct_string("With @usn5[$12..\"d_str\"] As @usn6,usn2 In `2esn` In $`7esn`,.e1[0.12] As @usn6 Order By [1.e1 =~$usn2,1000][[_usn4 In 0.0[..{999}][..0.0] Where 12.e12[{7}..7]]..][All(_usn4 In `2esn` Where $0[`7esn`])..] Descending,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..])[..{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}][..Filter(`2esn` In {999} Is Not Null Where 010 In `1esn`)] Desc Skip {#usn8} =~{999} =~{#usn7} Union Remove {@usn6:$usn1[0X7],`3esn`:$7[$`3esn`]}.`6esn`? Detach Delete 0.12 Contains 12.0,{999}[$123456789..][12..] Load Csv From [1.e1 =~$usn2,@usn6[{0}..],@usn5[12.0][{1000}]][@usn6()..Case {@usn5}[..@usn6] When $`2esn` Starts With {`8esn`} Starts With {usn1} Then {``} Is Null Is Null Else 123456789 Ends With usn1 Ends With usn2 End] As `6esn` Fieldterminator \"d_str\" Union All Merge `8esn`=((:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *..00{#usn7:`4esn`[usn1]}]-(:@usn5{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12})) On Create Set `1esn`+=usn1[0],None(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``).@usn5! =0e0 Contains 9e12,`3esn`(Distinct 0[Count(*)][0e0],#usn8 =~{_usn3} =~``).@usn6 =Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12) Contains {`1esn`:$999 Ends With {0}} Contains (`5esn` :_usn3{`4esn`:12.e12[``..usn2][{#usn7}..@usn5]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(`4esn` :`2esn`{`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00}) With Distinct Count(*) Ends With $`` Ends With {7} As #usn7,$#usn7 =~9e1 =~$_usn4 Order By Case $1000[..12.0][..0e0] When `3esn` Is Not Null Is Not Null Then 12.e12[{7}..7] When Count(*) In {``} Then 12[..$@usn6] End[..All(#usn7 In 0Xa[@usn5][{`7esn`}] Where 1e1[1.e1..][123.654..])][..[0.0 =~12.e12 =~1.0,$`7esn` Is Null Is Null,``[..$#usn7]]] Ascending"), + octest_legacy:ct_string("Merge _usn3=(@usn6 {``:.e12[\"d_str\"..][.e1..]}) Union Start usn1=Node:_usn3(_usn3='s_str') ,`3esn`=Node:``(_usn3={0}) Optional Match (:``{``:0x0 =~123.654 =~{999}})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]}),Allshortestpaths((:@usn6{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]})) Using Scan `6esn`:`` Create Unique Allshortestpaths(((_usn4 :`6esn`:`8esn`$``))),usn2=({`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})"), + octest_legacy:ct_string("Merge ((:#usn8{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})-[``?:usn2|#usn7 *0x0..]-(@usn5 :usn1:_usn4)-[:`5esn`]->(:@usn6{`2esn`:$999 In 999})) Unwind $`7esn` Is Null Is Null As `1esn` Delete Count(*) Ends With 0x0 Ends With 9e0,{123456789} =~usn1 =~{usn1}"), + octest_legacy:ct_string("Delete (`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Is Not Null Is Not Null Unwind 0Xa[.._usn3][..$`6esn`] As `4esn`"), + octest_legacy:ct_string("Detach Delete Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where 12e12 Is Not Null)[..Reduce(`1esn`=$`3esn` In 9e12 In ``,`2esn` In {999} Is Not Null|$@usn5[..usn2][..$#usn7])],$#usn7[`5esn`] Union Create Shortestpath((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Union All Foreach(`4esn` In [$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null][(`1esn` :#usn7)<-[? *0X0123456789ABCDEF]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]})..[{_usn3}[$usn2..],$`3esn`[..$`2esn`][..123.654],12.e12[`7esn`]]]| Create ((:``)-[:``]->({`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}}))) Optional Match ((usn2 :_usn3)<-[?:_usn4|:usn1 *..00{`1esn`:{#usn8}[2.12]}]->(:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn8:#usn7|`2esn`]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})),((`8esn` :`8esn`:@usn5)<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})) Where {`3esn`} Is Null"), + octest_legacy:ct_string("Load Csv With Headers From ``(999 Starts With 's_str',1e1[1.e1..][123.654..]) =~[$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]] =~[#usn7 In 0Xa[@usn5][{`7esn`}] Where `5esn`[0xabc..]] As @usn5 Union Create Unique ({`4esn`:#usn8 Is Null}) Union All Create `5esn`=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]}) Return Distinct ``[$0..][`1esn`..] As `4esn`,Allshortestpaths((usn2 {_usn3:$0 In _usn4})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[{`2esn`:1000 Is Null Is Null}]->(:_usn4{`4esn`:`8esn` Contains $`3esn` Contains {`4esn`},_usn3:$12[{7}..0X0123456789ABCDEF]}))[..[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12 Starts With {_usn4} Starts With $#usn8]][..(:``{`1esn`:#usn8 Is Not Null,`5esn`:$@usn6[$0..usn1][0X0123456789ABCDEF..$999]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})-[?:_usn3|`8esn` *12..{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}]-(`6esn` :`2esn`{`7esn`:#usn8 =~{999}})] Order By {12} Starts With #usn8 Starts With 0e0 Descending,0.0 Is Null Asc Skip All(`5esn` In $`2esn`[12.e12][$@usn5] Where 12[..$@usn6]) =~(_usn4 :`7esn`)<-[{`2esn`:1000 Is Null Is Null}]->({`6esn`:7[010][00],#usn8:$usn1 =~010 =~07}) Limit [_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]|0[Count(*)][0e0]] Contains Extract(`` In {`1esn`} Starts With @usn6 Where .e0[..{`5esn`}][..999]|$`3esn`[..$`2esn`][..123.654]) Contains Reduce(`2esn`=$usn1[0X7],@usn5 In Null =~12e12|#usn7 =~{`4esn`} =~123456789)"), + octest_legacy:ct_string("Remove Shortestpath((({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`))).#usn8!,({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})-[? *01..07]->({_usn4:{usn1} =~123.654 =~\"d_str\"}).`5esn`?,[{`6esn`}[..{`2esn`}],$`8esn`[..$999][..0],`3esn` Is Not Null Is Not Null].`1esn`? Merge `8esn`=((@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})) On Match Set `8esn`+=$`4esn` In Null Start `3esn`=Relationship:#usn8(_usn3={#usn7}) ,`8esn`=Rel( {`3esn`})Where $`2esn` Is Null Is Null Union All Merge @usn6=((_usn4 :#usn8)<-[:#usn8|`2esn` *123456789..0X7{``:$#usn7 =~{12} =~False,`5esn`:{1000} In {123456789}}]->({`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF})<-[{``:\"d_str\"[{`8esn`}..]}]-(:#usn7{#usn7:$`8esn` In $`2esn` In {7}})) Detach Delete $@usn5 In 's_str' In $12,Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]}))) Ends With Case When $``['s_str'..][0x0..] Then 9e12[..0X7] Else $1000[..$999] End,{`7esn`} Ends With `` Ends With {`8esn`} Union Create Unique `8esn`=Allshortestpaths(((`8esn` :@usn6)))"), + octest_legacy:ct_string("With Distinct *,Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 9e12 Is Not Null) =~Case When False[0Xa..$usn1] Then {123456789}[12..][$12..] Else 0e0 Contains 9e12 End As usn2 Order By $`7esn` Contains {`1esn`} Contains 9e12 Asc,usn1 Is Null Is Null Descending Limit `5esn` Is Not Null Is Not Null Union All Load Csv From .e12[010..$123456789] As _usn4 Fieldterminator \"d_str\" Optional Match (((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`}))),#usn7=(($`5esn`)) Using Scan #usn7:_usn3 Using Index `6esn`:`7esn`(#usn8)"), + octest_legacy:ct_string("Remove (:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}).``? Foreach(`3esn` In 01234567[$7..{12}]| Create Shortestpath((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Return Distinct *,`` Ends With $`4esn` Ends With 0X0123456789ABCDEF As #usn7,False Contains 0.e0 Contains Count(*) Order By Reduce(usn1=12.0[2.12..][{`5esn`}..],_usn3 In {@usn5}[..#usn7]|1000[$7..$123456789]) Is Null Is Null Desc,[#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 Starts With {_usn3}|@usn6[$12]] Ends With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null] Ends With Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) Ascending Skip $@usn5[`6esn`..] Limit $`4esn`[..7][..{12}]) Delete `2esn`[Null],$7 In #usn8 Union Unwind $``['s_str'..][0x0..] As #usn7 Union All Load Csv From Case When 0X0123456789ABCDEF[7...e0][`1esn`..usn2] Then $1000 Starts With $`8esn` Starts With {`5esn`} When usn2 =~0X7 =~{#usn7} Then {`2esn`} In $123456789 In True End[Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`)] As usn1 Load Csv With Headers From 9e1 =~999 As `7esn` "), + octest_legacy:ct_string("Foreach(`` In 0X7[0X7..][Count ( * )..]| Unwind [`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*)] Starts With (`5esn` :`7esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`}) Starts With `6esn`(Distinct 12.e12[``..usn2][{#usn7}..@usn5],$`7esn` In 12) As @usn5) Delete True[7][$999],Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]}))) With *,(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As #usn7 Union All Create Unique `1esn`=Allshortestpaths((((#usn7 :@usn5)<-[`4esn`?*..]-(:`4esn`:@usn6{`3esn`:123456789 Is Not Null Is Not Null})-[#usn8:`` *..0{@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})))),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` )) Create `2esn`=Allshortestpaths((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})))"), + octest_legacy:ct_string("Remove None(`5esn` In $`2esn`[12.e12][$@usn5] Where 's_str' Starts With 12e12 Starts With $_usn4).@usn5!,[usn1 In 12.e12 In {0} In 9e1 Where {1000} Ends With {`8esn`}|$_usn3 =~{_usn4} =~$`6esn`]._usn3 Merge `6esn`=(((:#usn8{`2esn`:12e12 Is Not Null,_usn3:12.e12[2.12..][0xabc..]})-[:_usn4|:usn1{``:0 Contains $usn2 Contains 12e12}]-(`4esn` :`2esn`)<-[`7esn`?:_usn3|`8esn`*..]->(`2esn` :_usn3))) On Match Set `4esn`+=Any(`6esn` In Count(*) Ends With $`` Ends With {7} Where 1000 Is Null) Is Not Null Is Not Null,{`6esn`:7 Is Not Null}.`5esn` =$`6esn`[`8esn`][$`5esn`],`2esn`+=Reduce(`3esn`=#usn8 In `8esn` In 07,#usn7 In 123.654 Starts With $``|_usn3[$usn2..0])[..Any(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`])][..[$`1esn`[#usn8][$@usn5],\"d_str\" Ends With False Ends With {@usn6}]] On Match Set `7esn` =$1000[0.12..0.12] Union Start @usn6=Node( {`8esn`}) ,`3esn`=Relationship:@usn6({`2esn`}) Remove {usn2:7 In 1.e1 In $usn1}.`4esn`!,All(_usn4 In 0.0[..{999}][..0.0] Where #usn8 Is Null).`8esn`? Create #usn7=(`4esn` :usn2:`2esn`)"), + octest_legacy:ct_string("Create Unique (`2esn` :@usn6{7})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]})<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`),(((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}))) Create Shortestpath(({`3esn`:0.e0[{999}][{`1esn`}],`1esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[:usn2|#usn7 *0X7..0Xa]->(#usn7 :@usn5)),`3esn`=(((`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[usn1?:`4esn`|:#usn7 *0X7..0Xa]->({_usn4:01234567[..9e1]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}))) Load Csv With Headers From $`2esn`[{usn2}] As #usn8 Union All Start @usn6=Node:`4esn`(``='s_str') Where {`5esn`} Contains 's_str' Contains 9e1 Start `8esn`=Relationship(07,123456789,123456789) ,usn2=Relationship( {123456789})Where $0[$1000..00][{0}..{usn1}] Optional Match _usn3=((:@usn5{`3esn`:@usn5 =~'s_str',`1esn`:$`7esn` Contains {`1esn`} Contains 9e12})),_usn4=(((@usn6 {usn1:$#usn7 =~{12} =~False})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))) Using Index `3esn`:``(`5esn`) Using Scan usn2:_usn3 Where $12 Is Not Null Union Unwind Reduce(`6esn`=7[$0..][{_usn4}..],_usn3 In {`2esn`} Ends With {12} Ends With 7|{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`)[[$#usn7[`5esn`],Count(*) Ends With 123.654 Ends With $12,$#usn7[..@usn6][..$0]]] As `3esn`"), + octest_legacy:ct_string("Create (((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})-[`4esn`?:``{usn2:12e12 Ends With `4esn` Ends With 123456789}]->(:`7esn`{usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))),(((#usn8 )-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]})))"), + octest_legacy:ct_string("Load Csv From 9e1 =~`` =~{`7esn`} As @usn6 Union Foreach(_usn4 In `3esn`[_usn4..{0}][`5esn`..usn2]| Optional Match (((`3esn` :@usn5)<-[`7esn`? *0xabc..7]->(:usn2:`2esn`{`5esn`:@usn5 =~'s_str'})-[? *0X0123456789ABCDEF]-(_usn3 :`5esn`:@usn5))) Using Join On @usn5,usn2,_usn3 Using Join On `8esn`,#usn8 Where {_usn3} Contains True Contains 0X7) Remove Single(`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}])._usn3,Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $``[.e12..]).`6esn` Start `3esn`=Relationship:#usn8(_usn3={#usn7}) Where {999} Is Null Union Merge ((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]})) Match ((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]})),(((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`}))) Using Index `6esn`:`2esn`(`1esn`) Create Unique ``=Shortestpath(((usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}))),usn1=Allshortestpaths(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]})))"), + octest_legacy:ct_string("Using Periodic Commit 1000 Load Csv From usn2 =~0X7 =~{#usn7} As `` Unwind {`1esn`} In 12.e12 In 9e1 As `4esn` Create Unique _usn3=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]})"), + octest_legacy:ct_string("Unwind `7esn`[0..$usn2][{usn2}..0.e0] As `1esn` Union Unwind All(usn1 In 12.e12 In {0} In 9e1)[[`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]|12.e12[$`8esn`..{`8esn`}]]..] As usn1 Create Unique ((:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})<-[`2esn`?:@usn6|`` *..00]->({_usn3})) Merge _usn3=Shortestpath((((#usn7 :@usn6{`8esn`:{@usn6}[True..{_usn3}],`1esn`:07 Is Null})-[ *..0{`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null}]->(:usn1:_usn4{`4esn`:01234567 In $123456789})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5))))"), + octest_legacy:ct_string("Optional Match @usn6=Allshortestpaths(({`4esn`:#usn8 Is Null})),@usn6=Allshortestpaths(({_usn4:0X0123456789ABCDEF[$`2esn`..][`2esn`..],`2esn`:$`6esn` Starts With 12.e12 Starts With $#usn7})-[:#usn8|`2esn`]->(:`3esn`:`6esn`)<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]->({_usn4})) Using Scan `5esn`:#usn8 Merge `4esn`=Shortestpath(((:#usn8{#usn8:`3esn` Is Not Null Is Not Null})<-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(`` :`7esn`))) On Create Set `1esn`:`` On Create Set usn1+=$999 Is Not Null Is Not Null,Shortestpath(((`4esn` :`2esn`)<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]}))).`3esn`! =@usn5 In 1e1"), + octest_legacy:ct_string("Load Csv From 999 Starts With 's_str' As _usn4 Optional Match `3esn`=((_usn4 :#usn8{`5esn`})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5)-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->({`7esn`:123456789[0..]})) Using Scan `3esn`:`3esn` Union All With Distinct {usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}[..None(`1esn` In `3esn`[07..] Where 0X0123456789ABCDEF[`5esn`..][$#usn8..])] Skip 0xabc[$999..][{#usn7}..] Optional Match Allshortestpaths((usn2 :`5esn`:@usn5)),Allshortestpaths((((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]-({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})-[#usn8:`` *..0{@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})))) Load Csv With Headers From 0Xa[$1000..$123456789] As `7esn` Union Optional Match #usn7=Allshortestpaths(((:`5esn`:@usn5))),@usn5=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Where _usn4[Count(*)] Load Csv From {`1esn`} Starts With {`3esn`} As `2esn` Fieldterminator \"d_str\" Remove Shortestpath(({usn2:#usn8 =~{_usn3} =~``})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})-[?:`1esn`|:`3esn` *999]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})).`4esn`,Reduce(#usn7={_usn4}[{``}..],_usn3 In {`2esn`} Ends With {12} Ends With 7|{`6esn`} Ends With 0e0 Ends With {``}).#usn7!"), + octest_legacy:ct_string("Remove (usn1 :#usn8{``:$7[{`1esn`}]})-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-(_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null}).usn1?,[`3esn` =~9e0 =~@usn6].`1esn`,None(`1esn` In $12 Is Not Null Where .e1[@usn5]['s_str']).usn1! Unwind 07[$#usn8] As usn2 Match (_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Using Index @usn6:#usn8(_usn4) Using Index usn1:``(#usn7) Where 0X7[0X7..][Count ( * )..]"), + octest_legacy:ct_string("Create Unique #usn7=Allshortestpaths(((:`6esn`:`8esn`))),usn1=Allshortestpaths(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))) Union Return *,(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As #usn7,.e1 Ends With 0Xa Ends With 00 As _usn3 Detach Delete Count(*)[010..][#usn7..],usn2[..`1esn`],1.e1 =~$usn2"), + octest_legacy:ct_string("Using Periodic Commit 0xabc Load Csv From All(_usn3 In {@usn5}[..#usn7] Where $`2esn` Starts With {`8esn`} Starts With {usn1}) Starts With {usn2:{`1esn`} Is Not Null} As _usn4 Merge `2esn`=((({`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1})-[`3esn`:`6esn`{`3esn`}]-(#usn8 :`6esn`:`8esn`{`1esn`:9e12 Is Not Null,_usn4:0X0123456789ABCDEF[$`2esn`..][`2esn`..]})<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})))"), + octest_legacy:ct_string("Detach Delete $7 In 1.0 In 1e1 Create Unique (#usn7 :#usn8)-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0}),@usn6=Allshortestpaths(((`3esn` {`1esn`:$`6esn` Starts With 12.e12 Starts With $#usn7})-[`6esn`:`8esn`|:_usn4]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}))) Foreach(@usn5 In [_usn3 In {@usn5}[..#usn7] Where 12.e12[{7}..7]][Case $`2esn`[{``}..{1000}][#usn8..`2esn`] When {999} Ends With 123456789 Ends With {@usn5} Then Count(*)[.e12..] When {_usn4}[{``}..] Then 0Xa[.._usn3][..$`6esn`] Else #usn8 In `8esn` In 07 End..][All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $#usn7[..@usn6][..$0])..]| Remove (:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}).``?)"), + octest_legacy:ct_string("Optional Match Allshortestpaths((:usn1:_usn4{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[`8esn`? *999]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})),`6esn`=(({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})) Using Join On `6esn`,`1esn`,`` Using Index `4esn`:usn2(`4esn`) Where {``} Starts With 123456789 Starts With usn2 Unwind `6esn` Ends With 2.12 Ends With @usn6 As @usn6"), + octest_legacy:ct_string("With 7[1e1..#usn7] As _usn3 Where 999[12.0..][#usn7..] Union All Create Unique ((@usn5 :`7esn`{#usn8:`8esn` Starts With {123456789},`1esn`:{12} Contains 9e0})<-[`3esn`?{`3esn`:1e1 Contains usn2}]->(:`3esn`:`6esn`)) Optional Match `3esn`=Allshortestpaths((`7esn` :@usn6)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]})),usn1=(({`3esn`:12 Starts With 0x0,`8esn`:0X7[0.e0][{`4esn`}]})-[`5esn` *0x0..]->(`8esn` :#usn7)) Using Index `3esn`:#usn8(`2esn`) Where $`2esn` In {123456789}"), + octest_legacy:ct_string("Create `4esn`=((:#usn8{#usn8:`3esn` Is Not Null Is Not Null})),``=Shortestpath((((`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})))) Union Detach Delete {123456789}[{12}..],9e0 =~0.0 =~$`5esn`"), + octest_legacy:ct_string("Create Unique Allshortestpaths(((:#usn8{#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})-[`8esn`?]->(:`3esn`:`6esn`))),`3esn`=(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})-[:_usn4|:usn1{`6esn`}]->(`8esn` :`7esn`) Start #usn8=Relationship( {`4esn`}) Remove {#usn7:`2esn` Starts With `` Starts With 1e1}.@usn5!,{`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]}.@usn6 Union All Start `8esn`=Relationship:`8esn`({`1esn`}) Where $_usn4 Contains {#usn7} Contains `1esn` Merge ((`2esn` :@usn5{`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})<-[?:`6esn` *07]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[{#usn7:'s_str'[_usn4..0x0]}]-({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]})) On Match Set `6esn`+=`1esn`(Distinct $usn1 Starts With {_usn3},{#usn8}[$#usn7..]) In Shortestpath((({_usn4:0.12 Starts With 9e12 Starts With $`1esn`}))) In All(`1esn` In $12 Is Not Null Where 12.e12[{@usn5}..][9e1..]),All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $#usn7[..@usn6][..$0]).`1esn`? =$1000[0.12..0.12],`2esn`+=0.0 In `6esn` In $@usn5 On Match Set Reduce(`8esn`=7 Contains `2esn` Contains $`8esn`,_usn4 In 0.0[..{999}][..0.0]|$@usn5[`1esn`..]).`2esn` =$`5esn`[`4esn`] Foreach(`` In usn1(Distinct {@usn5}[Count(*)..])[[@usn5 In Null =~12e12 Where {`5esn`} Contains 's_str' Contains 9e1|`2esn`]..][{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}..]| Load Csv With Headers From {usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]} Is Null Is Null As usn1 Create Allshortestpaths(({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})))"), + octest_legacy:ct_string("Optional Match `1esn`=Allshortestpaths(((($_usn3)<-[``?:`3esn`|:@usn5{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(:@usn5{#usn7:{#usn7} In Count ( * ) In $#usn8})-[? *01..07]->(`8esn` :#usn7)))) Using Join On ``,`7esn`,#usn7 Where $`1esn`[$12][Count ( * )] Return Distinct {#usn8}[12.0][$@usn6],$usn2 In 123.654 In .e0,{@usn6}[$`7esn`..][False..] Skip 1000 Is Null Limit $usn1 In 0.12 In $``"), + octest_legacy:ct_string("Load Csv With Headers From Count(*)[.e12..] As _usn4 Fieldterminator \"d_str\" Union All Create Unique `8esn`=((#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null})<-[?:#usn7|`2esn`{@usn5:$0 Is Not Null}]-(`` {``:0x0 =~123.654 =~{999}})),(({`1esn`:{123456789}[12..][$12..]})) Create Unique Allshortestpaths((`` :``)-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})) Unwind 01234567[..9e1] As usn2 Union All Match usn1=((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})),`8esn`=(`6esn` {``:`4esn`[usn1]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]->(#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``}) Using Scan `4esn`:#usn8 Unwind .e0[..{`5esn`}][..999] As `4esn`"), + octest_legacy:ct_string("Detach Delete ``[..$#usn7],{123456789}[..'s_str'][..$@usn6] Merge @usn6=Allshortestpaths(((`6esn` :_usn3{#usn7:$@usn6[01..@usn5][0x0..`4esn`],_usn4:9e12 =~123456789 =~$999})<-[usn1? *01..07]->({`1esn`:$123456789[..$7][..$`6esn`]}))) On Create Set None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]).@usn6! =0X0123456789ABCDEF[$`5esn`..],(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[_usn3?:`1esn`|:`3esn`{`3esn`:$@usn6 Contains $`7esn` Contains 1e1,@usn5:True Starts With $`4esn` Starts With 12e12}]-(`3esn` :_usn3{_usn3:{_usn3} Contains 9e0 Contains $999,`2esn`:{_usn3}[$usn2..]})<-[`3esn`?*{#usn8:$`1esn`[..{_usn3}]}]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}).`8esn`? =$12 Is Not Null On Match Set `7esn`+=Reduce(@usn5=True =~{`1esn`},_usn4 In 0.0[..{999}][..0.0]|7[$0..][{_usn4}..]) In Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`) In All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Merge Allshortestpaths((((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})))) Union Match @usn6=((`8esn` :`5esn`:@usn5)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null})),`4esn`=(`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})-[?:@usn6|`` *..0Xa]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]}) Where .e12[$#usn8..@usn6] Start @usn5=Relationship:#usn7({`4esn`}) ,`3esn`=Rel:`8esn`(@usn6='s_str')Where 9e12[$`5esn`]"), + octest_legacy:ct_string("Merge ((:`5esn`:@usn5{usn1:$#usn7[`5esn`]})-[@usn5{#usn7:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,#usn7:.e12[$#usn8..@usn6]}]->(`5esn` :@usn5)<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]-({`7esn`:123.654 Ends With usn2 Ends With 0})) On Create Set #usn8+=``(#usn8 =~{999})[Single(_usn3 In {@usn5}[..#usn7])..][Case $123456789 Is Not Null When .e1[0.12] Then {@usn5}[..{12}][..0x0] When @usn5 Is Not Null Is Not Null Then \"d_str\" Ends With False Ends With {@usn6} End..] On Match Set @usn6($@usn6 Contains `7esn`).@usn5! =$`5esn` Ends With 00 Ends With #usn7,Reduce(usn2=True[7][$999],`` In {`1esn`} Starts With @usn6|{`4esn`}[$_usn4..][9e0..]).`6esn` ={`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn` Start #usn7=Node:_usn4(``=\"d_str\") ,`4esn`=Node:_usn3({123456789}) Return *,`2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}],{#usn7} Starts With `3esn` Starts With {``} As `8esn` Order By (`4esn` :`1esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]->(#usn7 )[Single(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null)] Ascending,Reduce(@usn6=@usn5[$12..\"d_str\"],`` In {`1esn`} Starts With @usn6|Count ( * ) =~{`5esn`} =~{_usn4}) Starts With None(`1esn` In $12 Is Not Null Where `7esn` Is Not Null Is Not Null) Starts With [$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null] Descending Skip ``[$0..][`1esn`..] Union All Unwind 01234567['s_str'] As usn2 Start usn1=Node:`7esn`(`5esn`={usn2}) ,_usn3=Node:`2esn`(#usn7={usn1}) Load Csv With Headers From Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Is Null Is Null As `2esn` Fieldterminator 's_str' Union All Remove `4esn`({`2esn`} Starts With @usn6,{`2esn`}[..{@usn6}][..1.e1]).`3esn`?,{`3esn`:$#usn7 =~{12} =~False,usn2:$@usn6[$`8esn`..][7..]}.@usn5? Remove Case 0x0 =~123.654 =~{999} When $7 Is Null Then {`1esn`} =~{_usn4} When {`3esn`}[{`5esn`}] Then usn1 Contains $7 Contains $`` End.usn2,None(#usn7 In 123.654 Starts With $`` Where $999 In 999).`5esn`!,({_usn4:{usn1} =~123.654 =~\"d_str\"})-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}}).`8esn`?"), + octest_legacy:ct_string("Unwind [@usn5[..$@usn5][..0Xa],{`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`]] In Filter(_usn4 In 0.0[..{999}][..0.0] Where True Starts With $`4esn` Starts With 12e12) As `6esn` Unwind 0X7 Is Null As `2esn` Unwind {`7esn`}[..9e12][..0.0] As #usn7 Union With *,{999}[9e1] As usn1,{`6esn`} Is Null As `2esn` Skip Allshortestpaths(((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}))) Starts With All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Limit $`3esn` Ends With $999 Ends With 0X0123456789ABCDEF Create (@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}),_usn4=(@usn6 :@usn6{`5esn`:@usn5[$12..\"d_str\"],usn2:1.e1[0X0123456789ABCDEF..]}) Union Merge Allshortestpaths(((`4esn` :`1esn`)-[`6esn`?*..{`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}]->({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6})))"), + octest_legacy:ct_string("Match Allshortestpaths(((_usn4 :@usn6)-[`5esn`?:@usn5|:`7esn`]-(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]}))),Shortestpath(((`` {``:0x0 =~123.654 =~{999}})-[{`2esn`:``[{123456789}..]}]->(#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]}))) Where Count ( * )[Count ( * )][12] Unwind [usn1 In 12.e12 In {0} In 9e1 Where {usn1} In Count ( * )][{_usn3:.e1 Ends With 0Xa Ends With .e1,`2esn`:12e12 Starts With `1esn` Starts With usn2}..] As `2esn` Detach Delete 0x0 Is Not Null Is Not Null Union Detach Delete `3esn` In {@usn6} Return {usn2:{1000}[{usn1}][Null],_usn4:0[{@usn5}..][7..]}[Shortestpath(((@usn6 {@usn5:0X0123456789ABCDEF[$999..][@usn5..]})))][All(`1esn` In `3esn`[07..] Where 12 Starts With {_usn4} Starts With $#usn8)] As @usn6,{#usn8} Is Null Is Null Limit 0x0 Is Not Null Is Not Null Remove @usn5:``,(`6esn` :_usn3)<-[`1esn`? *0X0123456789ABCDEF{`5esn`:1.e1 Starts With $`2esn` Starts With $0}]->({_usn4:{usn1} =~123.654 =~\"d_str\"}).`2esn`"), + octest_legacy:ct_string("Remove @usn6:@usn6,Allshortestpaths(((($_usn3)<-[``?:`3esn`|:@usn5{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(:@usn5{#usn7:{#usn7} In Count ( * ) In $#usn8})-[? *01..07]->(`8esn` :#usn7)))).#usn8,All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]).#usn8? Create Allshortestpaths((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]})),((@usn6 :`7esn`)<-[``?:`6esn` *07{`5esn`:{12} Contains `7esn` Contains $_usn3,_usn4:$`3esn` In 9e12 In ``}]-({#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]})-[_usn3:#usn7|`2esn`]-(_usn3 :#usn8)) Create ((@usn6 :@usn6)-[{`7esn`:01234567 In $123456789}]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})-[{`2esn`:1000 Is Null Is Null}]->(`5esn` :`2esn`{#usn8:True[$`7esn`..{1000}]})) Union Unwind @usn6[Count ( * )][True] As usn2 Detach Delete 9e12 =~123456789 =~$999 Union Start #usn7=Node:`1esn`(\"d_str\") Where $_usn3[010..False] Foreach(#usn7 In {@usn6} Contains 123.654 Contains 01| Remove [0.0[..{999}][..0.0],12.e12[2.12..][0xabc..],True[7][$999]].@usn6 Delete Filter(#usn7 In 123.654 Starts With $`` Where Count(*)[010..][#usn7..])[None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $999 Ends With {0})..])"), + octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From {7} Starts With $usn1 Starts With 1.0 As `8esn` "), + octest_legacy:ct_string("Optional Match ((#usn8 :@usn5)<-[_usn3{@usn6:{7} Contains $123456789}]->(:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1})),`2esn`=Allshortestpaths((usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})-[`1esn`:`1esn`|:`3esn` *01..07{`3esn`:123456789 Is Not Null Is Not Null}]-(`1esn` {@usn5:$usn1 In 0.12 In $``})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]-(:usn1:_usn4{`4esn`:01234567 In $123456789})) Where #usn8[$0..False][$`1esn`..$#usn7] Start ``=Relationship:#usn7(_usn3=\"d_str\") ,@usn5=Relationship:`8esn`(usn1={1000}) Union Unwind 0e0 Starts With $@usn6 Starts With $`6esn` As _usn4 Union Create @usn6=Allshortestpaths((({#usn7:123456789[0..]}))),((`` :`6esn`:`8esn`)<-[`4esn`?{usn2:{#usn8}[$#usn7..],@usn5:{@usn5}[..@usn6]}]-(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]})<-[{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]}]-(`` :`4esn`:@usn6{``:.e12 =~$_usn4})) Foreach(#usn7 In $usn1[0X7]| With 's_str'[_usn3..] As `5esn`,{0}[False..@usn5] As `1esn` Order By {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Desc,01234567[{`7esn`}..] Descending,[{7} Contains $123456789,$``[..1.e1][..12],$`5esn`[..{`2esn`}][..{0}]] =~`3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]) =~{`6esn`:{`3esn`} Ends With `1esn` Ends With $@usn6,@usn6:$usn1 In 0.12 In $``} Descending Skip .e0[..{`5esn`}][..999] Limit {`8esn`:`2esn` Starts With `` Starts With 1e1} In [usn1 In 00 In {_usn3}] In Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) Where $`6esn` Starts With 12.e12 Starts With $#usn7 With Distinct $#usn8 Is Null Is Null,Shortestpath((_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]) In Shortestpath(((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}))),{7} Is Null As `7esn` Order By [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null Asc,{@usn5} =~_usn4 =~0.12 Desc Limit #usn7 Contains {`3esn`} Contains $`6esn` Where 12e12 Ends With `6esn` Ends With {`3esn`})"), + octest_legacy:ct_string("Using Periodic Commit 999 Load Csv With Headers From {`2esn`}[@usn5..][{``}..] As usn2 Unwind False Ends With $`` As _usn4"), + octest_legacy:ct_string("With Distinct *,`6esn` Contains {`1esn`} Contains 9e0,$`1esn` Is Not Null Is Not Null Order By $7 Is Not Null Descending,Single(`8esn` In $12[{7}..0X0123456789ABCDEF])[Case 9e1[123456789..] When 12 Starts With 7 Starts With $`5esn` Then {_usn3} Contains True Contains 0X7 When `1esn`[..00][..{7}] Then 1.e1[12e12..{`6esn`}] End..] Descending Limit 0x0 =~123.654 =~{999} Where 9e0 In usn1 Start @usn5=Node:_usn4(``=\"d_str\") ,@usn5=Node:`7esn`(@usn5=\"d_str\") Unwind Count(*)[..``][..#usn8] As #usn7 Union All Remove {`3esn`:#usn8 In `8esn` In 07}._usn4!,Allshortestpaths(((:`8esn`:@usn5)-[`3esn`?:`8esn`|:_usn4 *07]->(@usn5 {#usn7:$`7esn` In 12}))).`4esn`,Any(`1esn` In `3esn`[07..] Where {#usn7} In Count ( * ) In $#usn8).#usn7? Unwind {12}[$`3esn`] As `6esn` With Distinct 1.e1 =~$`1esn` As `8esn`,0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0] Union All Remove ({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[?:@usn6|`` *1000]->(:_usn4{`8esn`:12e12 Starts With `1esn` Starts With usn2})-[`2esn`:`2esn`{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})._usn3! Merge `2esn`=(:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}}) Start `8esn`=Relationship:`4esn`(``='s_str') ,`8esn`=Rel( {`7esn`})"), + octest_legacy:ct_string("Create `5esn`=((#usn7 :_usn3{`2esn`})<-[@usn6?:`1esn`|:`3esn` *..0Xa{`1esn`:12 Starts With 0x0}]->(#usn7 :_usn3{`2esn`})<-[?:`1esn`|:`3esn`{#usn8:$0 Is Not Null,``:True Is Null Is Null}]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})),Shortestpath((:`8esn`:@usn5)<-[?:`1esn`|:`3esn`{#usn8:$0 Is Not Null,``:True Is Null Is Null}]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})) Start `8esn`=Rel:`5esn`({0}) ,`8esn`=Node:`7esn`(usn1='s_str')Where {@usn5} =~_usn4 =~0.12"), + octest_legacy:ct_string("Return @usn5[$12..\"d_str\"] As @usn6,usn2 In `2esn` In $`7esn`,.e1[0.12] As @usn6 Order By [1.e1 =~$usn2,1000][[_usn4 In 0.0[..{999}][..0.0] Where 12.e12[{7}..7]]..][All(_usn4 In `2esn` Where $0[`7esn`])..] Descending,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..])[..{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}][..Filter(`2esn` In {999} Is Not Null Where 010 In `1esn`)] Desc Skip {#usn8} =~{999} =~{#usn7}"), + octest_legacy:ct_string("Optional Match usn1=((`5esn` :_usn4)),((`4esn` :`8esn`:@usn5)-[`6esn`:usn1{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]->(:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]-(@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})) Using Index @usn5:usn2(`2esn`) Create Unique #usn7=Allshortestpaths(((`5esn` :`2esn`{#usn8:True[$`7esn`..{1000}]})<-[usn1?:`6esn` *12..{`6esn`:999 Starts With $123456789 Starts With {``}}]->({_usn4}))),((:#usn7{#usn7:$`8esn` In $`2esn` In {7}})) Union All Unwind {#usn7}[{#usn7}..][$`4esn`..] As `5esn` Merge Shortestpath(({usn2:#usn8 =~{_usn3} =~``})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})-[?:`1esn`|:`3esn` *999]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}))"), + octest_legacy:ct_string("Optional Match (((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))) Using Scan #usn7:usn2 Using Join On `1esn`,#usn8 With `4esn`[usn1] As @usn5 Skip 1.e1 Is Null Where $@usn6 Contains $`7esn` Contains 1e1 Union All Start _usn4=Node:`7esn`(@usn5={`4esn`}) ,`7esn`=Node:usn2(usn2='s_str') Delete (`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->({_usn3})[Reduce(usn1=0x0[$`8esn`.._usn3],_usn4 In `2esn`|{123456789} Is Not Null)..Reduce(usn1=12.0[2.12..][{`5esn`}..],_usn3 In {@usn5}[..#usn7]|1000[$7..$123456789])][[_usn4 In `2esn` Where 9e12 Ends With 123456789|07 =~$`8esn` =~9e1]..(:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->()],{0}[False..@usn5],_usn4 Is Null Is Null Remove [0X0123456789ABCDEF[$`5esn`..],#usn7 Ends With $#usn7 Ends With {`8esn`}].`5esn`!,Case `6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}] When 1.e1[..12.e12][..$usn2] Then $_usn3[{999}] When $7 Is Null Then `1esn` =~1000 =~1000 Else 9e12[$`5esn`] End.`3esn`?,exists(Distinct #usn8 =~{999},$`2esn` Ends With 0.12 Ends With .e1).@usn5?"), + octest_legacy:ct_string("Unwind 010 Ends With 01 Ends With {_usn3} As #usn7 Detach Delete $@usn5 Is Not Null Is Not Null,{`8esn`}[..$`6esn`][..123.654],Allshortestpaths(((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))) Starts With (`1esn` :_usn3{`5esn`:{`8esn`}[..$`6esn`][..123.654],`1esn`:1000 Starts With `7esn`})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Extract(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) Foreach(usn1 In {`4esn`}[{`4esn`}..999]| Create (`4esn` :`4esn`:@usn6) With Distinct 0Xa Contains #usn8 Contains 1000 Order By {#usn8} Contains 1000 Contains $`4esn` Ascending,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Ascending Skip ({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..`2esn`(Distinct #usn8[`7esn`..])][..[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]]])"), + octest_legacy:ct_string("Optional Match _usn4=Allshortestpaths(((:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})-[?:#usn8|`2esn` *999{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({@usn6:#usn8[$0..False][$`1esn`..$#usn7]})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}))),`6esn`=Allshortestpaths(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})-[:`1esn`|:`3esn` *..01234567{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(#usn7 {``:0x0 =~123.654 =~{999}})) Merge ((:`5esn`:@usn5{usn1:$#usn7[`5esn`]})-[@usn5{#usn7:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,#usn7:.e12[$#usn8..@usn6]}]->(`5esn` :@usn5)<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]-({`7esn`:123.654 Ends With usn2 Ends With 0})) On Create Set #usn8+=``(#usn8 =~{999})[Single(_usn3 In {@usn5}[..#usn7])..][Case $123456789 Is Not Null When .e1[0.12] Then {@usn5}[..{12}][..0x0] When @usn5 Is Not Null Is Not Null Then \"d_str\" Ends With False Ends With {@usn6} End..] On Match Set @usn6($@usn6 Contains `7esn`).@usn5! =$`5esn` Ends With 00 Ends With #usn7,Reduce(usn2=True[7][$999],`` In {`1esn`} Starts With @usn6|{`4esn`}[$_usn4..][9e0..]).`6esn` ={`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`"), + octest_legacy:ct_string("Match @usn6=Shortestpath((:``{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})-[?:`4esn`|:#usn7]->(`1esn` :@usn6)<-[`1esn`?]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})),(((`4esn` :usn2:`2esn`)-[`8esn`?:`4esn`|:#usn7]->({`3esn`:12 Starts With 0x0,`8esn`:0X7[0.e0][{`4esn`}]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]}))) Using Index usn2:`8esn`(`5esn`) Where _usn4[Count(*)]"), + octest_legacy:ct_string("Create Unique Shortestpath((`5esn` )<-[`3esn` *..010]-(:@usn5{`2esn`:True[$123456789][`8esn`]})) Merge usn2=Allshortestpaths((:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[_usn4? *07{1000}]-(`` )<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})) Union Load Csv With Headers From Count ( * )[$12..] As @usn5 Remove All(`1esn` In `3esn`[07..] Where @usn6[{0}..]).``?,(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})<-[`8esn`?:`4esn`|:#usn7]->({`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]})<-[:_usn4|:usn1 *07]-(#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"}).@usn5!,Reduce(#usn7=$`7esn` Is Null Is Null,`1esn` In `3esn`[07..]|1000 Is Not Null)._usn3! Create `4esn`=Shortestpath((((`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})))),Allshortestpaths((@usn6 :`7esn`{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12})-[_usn3?:``]-(@usn5 {_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})) Union Create (((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}))),(((`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})-[_usn3?*..{#usn7:#usn8 =~{999},`8esn`:{_usn3}[`3esn`..$#usn8]}]->({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})-[@usn6 *07{`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}]->({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]}))) Foreach(`3esn` In {123456789} Is Not Null| With Distinct *,.e0 =~{`8esn`} =~$999 As #usn7,{_usn4:$0[$1000..00][{0}..{usn1}]}[{`2esn`:$``['s_str'..][0x0..]}..] As `1esn` Skip $usn1 =~010 =~07 Where {@usn5} Starts With 1.0 Starts With 00 Remove Shortestpath(((usn2 :_usn3{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000}))).@usn6?) Match Allshortestpaths((#usn8 :`7esn`)) Using Join On usn1 Using Join On `6esn`,_usn4"), + octest_legacy:ct_string("Foreach(`1esn` In 7 Is Not Null| Create Allshortestpaths((((@usn6 {usn1:$#usn7 =~{12} =~False})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})))),`8esn`=({`2esn`:{7}[$7..],#usn7:`1esn` In 07})-[:_usn4|:usn1 *07]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})) Union Create `8esn`=((#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null})<-[?:#usn7|`2esn`{@usn5:$0 Is Not Null}]-(`` {``:0x0 =~123.654 =~{999}})),(({`1esn`:{123456789}[12..][$12..]})) Union All Create Unique Shortestpath((`7esn` {@usn6:{_usn4} Is Null})<-[usn2? *0xabc..7{usn1:$123456789 Starts With `5esn`}]->(:`4esn`:@usn6{`1esn`:{12}[00..{@usn6}][1.e1..0],usn1:``[..0X0123456789ABCDEF]})-[`1esn`?:_usn4|:usn1*]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})),((`2esn` :usn1:_usn4)<-[ *0xabc..7]->(:`4esn`:@usn6)) With *,0X7[0.e0][{`4esn`}],usn1 Contains $7 Contains $`` Limit usn2 In `2esn` In $`7esn` Where {#usn7}[Count ( * )..12][$`2esn`..`4esn`] Unwind {`4esn`} In _usn4 As usn2"), + octest_legacy:ct_string("Merge (:`8esn`:@usn5)<-[?:`1esn`|:`3esn`{#usn8:$0 Is Not Null,``:True Is Null Is Null}]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0}) On Create Set #usn7+=All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.e12[$`8esn`..{`8esn`}]) Is Null On Match Set [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0[$#usn8...e12]].#usn8 =Allshortestpaths(((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))) Starts With (`1esn` :_usn3{`5esn`:{`8esn`}[..$`6esn`][..123.654],`1esn`:1000 Starts With `7esn`})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Extract(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]),Case When Count ( * ) Starts With 010 Starts With 0x0 Then 9e12[$`5esn`] When {999}[$123456789..][12..] Then {@usn5}[..{12}][..0x0] End.`8esn`? =$`6esn`[{`3esn`}..12],`6esn` =9e0 Contains @usn6 Contains {#usn7} Return Distinct 9e1[$`2esn`..][`1esn`..] Limit Any(`6esn` In Count(*) Ends With $`` Ends With {7} Where 1000 Is Null) Is Not Null Is Not Null Union All Create @usn5=Allshortestpaths(((#usn7 :`2esn`)-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]})-[@usn5?:#usn7|`2esn`{`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}]->({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}))) Remove [`` In {`1esn`} Starts With @usn6 Where 12.e12 In {0} In 9e1].#usn8? Return Distinct Any(`6esn` In 00 Where 0X7 Starts With {999} Starts With 12e12) Starts With (`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}) Starts With {`8esn`:{#usn7} Contains @usn5 Contains Count ( * )} As #usn7,0X0123456789ABCDEF Contains {usn1} As @usn5,{999} Starts With {_usn4} Starts With 00 As _usn4 Skip {_usn4}[{``}..]"), + octest_legacy:ct_string("Create Unique `3esn`=(`3esn` :`8esn`:@usn5{@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]}),usn2=(((:#usn8{`2esn`:12e12 Is Not Null,_usn3:12.e12[2.12..][0xabc..]})-[:_usn4|:usn1{``:0 Contains $usn2 Contains 12e12}]-(`4esn` :`2esn`)<-[`7esn`?:_usn3|`8esn`*..]->(`2esn` :_usn3))) Create usn2=((`3esn` :`1esn`)<-[? *0xabc..7]->(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})) Union Unwind 1e1[..`1esn`][..0e0] As _usn4 Remove (`2esn` :@usn6{7})-[?:`1esn`|:`3esn`{@usn5:{`6esn`} Ends With 0e0 Ends With {``},@usn5:{`1esn`} Starts With `4esn` Starts With {0}}]->(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]}).``!"), + octest_legacy:ct_string("Foreach(`6esn` In `8esn` Contains 1e1| Detach Delete usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3),Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])) Load Csv From None(`1esn` In $12 Is Not Null Where Null Is Null Is Null) Contains $`6esn` Contains exists(Distinct {`3esn`} Is Null) As `2esn` Union Foreach(@usn6 In 's_str'[$usn2][Count(*)]| With Distinct {_usn3} Is Not Null As `4esn`,Case 00 Starts With $`6esn` When $@usn5 In 's_str' In $12 Then Count(*)[010..][#usn7..] When Count ( * )[Count ( * )][12] Then True[7][$999] Else `4esn` Contains #usn8 Contains 7 End =~Allshortestpaths(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]}))) As `4esn` Limit Shortestpath((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})-[`7esn`?:`6esn`]->(`1esn` :_usn4)-[#usn8:_usn3|`8esn`{`6esn`:`5esn` Is Null Is Null}]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))[Extract(`1esn` In `3esn`[07..] Where 999 Starts With 's_str')][Case `8esn` Contains $`3esn` Contains {`4esn`} When 9e1 Ends With $@usn5 Ends With $123456789 Then usn2[True] When 0.e0 =~`1esn` =~`6esn` Then usn2 =~0X7 =~{#usn7} Else 1.e1[..12.e12][..$usn2] End] Where {123456789} =~01234567 =~`3esn` Create Unique _usn4=Allshortestpaths(((`` {`1esn`:{@usn5}[1e1..][9e1..],`2esn`:$`7esn` Contains {`1esn`} Contains 9e12})<-[`3esn`? *0x0..{_usn3:0.0[9e1..][Null..],#usn7:{`3esn`} Is Not Null Is Not Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-(`3esn` :`6esn`:`8esn`{`8esn`:{``} Is Null Is Null,`3esn`:123456789 Is Not Null Is Not Null}))),``=Shortestpath((`7esn` :`5esn`:@usn5{`2esn`:12 Starts With $#usn7})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(`4esn` :_usn4{`2esn`:#usn7 =~00}))) Foreach(@usn5 In 7[010][00]| With .e0 =~{`8esn`} =~$999 As #usn7,$12 Is Not Null As `7esn`,{``} Is Null Is Null Limit All(_usn3 In {@usn5}[..#usn7] Where $`2esn` Starts With {`8esn`} Starts With {usn1}) Starts With {usn2:{`1esn`} Is Not Null} Delete Case $1000[..12.0][..0e0] When `3esn` Is Not Null Is Not Null Then 12.e12[{7}..7] When Count(*) In {``} Then 12[..$@usn6] End[..All(#usn7 In 0Xa[@usn5][{`7esn`}] Where 1e1[1.e1..][123.654..])][..[0.0 =~12.e12 =~1.0,$`7esn` Is Null Is Null,``[..$#usn7]]],0xabc Contains {1000}) With 0x0[{999}..][{_usn4}..] As `6esn`,{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}[Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))..] As `6esn`,Case When $`6esn` Starts With 12.e12 Starts With $#usn7 Then #usn8[`7esn`..] When {`4esn`}[$123456789..] Then {_usn3} Contains 9e0 Contains $999 End As @usn6 Order By {@usn5} Ascending,Reduce(@usn5=$`8esn`[..$999][..0],`` In {`1esn`} Starts With @usn6|{@usn6} Contains 123.654 Contains 01) Contains [`1esn` In `3esn`[07..] Where {0} =~12.0] Contains (:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[`3esn`:_usn3|`8esn`]->(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null}) Descending,1000 Is Not Null Desc Skip Allshortestpaths(((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))) Starts With (`1esn` :_usn3{`5esn`:{`8esn`}[..$`6esn`][..123.654],`1esn`:1000 Starts With `7esn`})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Extract(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) Union Foreach(`6esn` In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000|$@usn5 In $usn2 In {1000}) Is Not Null| Create Unique @usn6=((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})<-[``?:#usn8|`2esn`]->(:`8esn`:@usn5)<-[#usn7]-(`3esn` :#usn7)),((#usn8 :usn1:_usn4)<-[usn1:usn1{`3esn`:\"d_str\" Ends With False Ends With {@usn6},`5esn`:`4esn` Contains #usn8 Contains 7}]->(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(`2esn` :#usn8{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})) Delete Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where 1.e1[12e12..{`6esn`}]|Count ( * )[..12][..{@usn6}]) Contains All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Contains Extract(_usn4 In `2esn` Where $999 Is Null),[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]] Is Not Null,Single(_usn3 In True[7][$999]) Is Not Null Is Not Null) Merge ((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})) On Match Set Reduce(#usn8=Count ( * )[..12][..{@usn6}],`` In {`1esn`} Starts With @usn6|@usn6[{0}..]).@usn5 =$#usn7 =~{12} =~False On Match Set [`6esn` In 00 Where $`1esn`[$12][Count ( * )]].`5esn`? =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,_usn4 =Reduce(@usn5=True[7][$999],usn1 In 12.e12 In {0} In 9e1|.e12 =~$_usn4)[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])][[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]]]"), + octest_legacy:ct_string("Return Distinct $`2esn`[{usn2}],$`5esn`[$#usn7..][0xabc..] Order By [0.12[..$`6esn`][..$1000],0.12 Starts With 9e12 Starts With $`1esn`,\"d_str\" Contains @usn6 Contains 12.e12] Is Null Ascending,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..])[..{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}][..Filter(`2esn` In {999} Is Not Null Where 010 In `1esn`)] Desc,{999} Ends With 123456789 Ends With {@usn5} Descending Limit $usn1 Contains {`8esn`} Contains $123456789 Union Create Unique `8esn`=((@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]}))"), + octest_legacy:ct_string("Foreach(`8esn` In Extract(#usn7 In 123.654 Starts With $`` Where #usn8[`7esn`..]|0.0[..{999}][..0.0])[..Extract(`1esn` In `3esn`[07..] Where 00[07..]|$#usn7 Starts With 9e0 Starts With 2.12)][..None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])]| Unwind `5esn`[..9e0][..01234567] As @usn5 Remove Filter(`6esn` In 00 Where 0.12[..$`6esn`][..$1000]).#usn8!,[999 Ends With .e12 Ends With .e1,{_usn3}[..$`8esn`]].@usn6?) Return usn1[0] As ``,9e12 Is Not Null Is Not Null Order By {`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] Desc Limit 9e0 In usn1"), + octest_legacy:ct_string("Unwind {12}[999][{_usn3}] As `3esn` Foreach(`1esn` In `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]]| With Distinct *,0X0123456789ABCDEF Contains {usn1} As @usn5 Order By (:usn1:_usn4)<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[usn2?:`2esn`*..]-(:`5esn`:@usn5{``:0.12[..$`6esn`][..$1000]}) Starts With Reduce(`8esn`=00[..$123456789][..$`5esn`],`` In {`1esn`} Starts With @usn6|False[999]) Starts With [`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]] Descending,`2esn`(Null In .e0)[_usn3(Distinct {@usn6}[$`7esn`..][False..])..[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]]] Asc,(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[#usn7?:@usn6|``{123456789}]->(usn1 :`8esn`:@usn5)<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})[..[12.e12 In {0} In 9e1,9e1 =~`` =~{`7esn`},0X0123456789ABCDEF[0X7..]]][..All(`1esn` In `3esn`[07..] Where `7esn`[0..$usn2][{usn2}..0.e0])] Asc Skip #usn7[00] Limit Shortestpath(((usn1 {``:.e12 =~$_usn4})))[`6esn`(_usn3 Contains .e0 Contains {usn2},`3esn`[07..])][[.e12 Ends With 1000 Ends With 010,Count(*)]]) Union All Foreach(`1esn` In Allshortestpaths(((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}))) Starts With All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`)| Load Csv With Headers From 12[12e12] As _usn4 Fieldterminator \"d_str\") Start usn1=Node:`6esn`({`8esn`}) Where $_usn4 Ends With 0.e0 Ends With .e0 Union All With \"d_str\"[..0.e0] As #usn7,[12e12 Starts With `1esn` Starts With usn2,Count ( * ) Is Null][(#usn8 {``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})][Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))] As `1esn` Where $999 Ends With {0}"), + octest_legacy:ct_string("Create Unique usn1=((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})),Allshortestpaths(((`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->(`4esn` {`2esn`:@usn5[$12..\"d_str\"]}))) Unwind [#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 Starts With {_usn3}|@usn6[$12]] Ends With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null] Ends With Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) As `8esn`"), + octest_legacy:ct_string("Load Csv With Headers From {#usn7}[{#usn7}..][$`4esn`..] As `6esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("With Distinct 1e1[{_usn4}..123.654] Order By Case When 0X0123456789ABCDEF[7...e0][`1esn`..usn2] Then $1000 Starts With $`8esn` Starts With {`5esn`} When usn2 =~0X7 =~{#usn7} Then {`2esn`} In $123456789 In True End[Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`)] Ascending,Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..] Asc,usn1 Is Null Is Null Descending Start usn2=Node:usn1(`5esn`={_usn4}) ,_usn3=Relationship:``(_usn3={0})Where 1.0[{999}][$999]"), + octest_legacy:ct_string("Start _usn3=Relationship:``(`1esn`={`2esn`}) Where 0[{usn2}..][usn1..] Return *,Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6) Starts With [$_usn3[010..False],$123456789 =~`4esn`,$usn1[$123456789..0][{`1esn`}..12.0]] As `8esn`,12 Starts With 0x0 As `2esn` Order By All(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[{#usn7:Count ( * )[$12..]}..][`5esn`(Distinct False Starts With 010)..] Asc,All(usn1 In 12.e12 In {0} In 9e1)[[`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]|12.e12[$`8esn`..{`8esn`}]]..] Asc Limit 0Xa[07..] Detach Delete [`8esn` In $12[{7}..0X0123456789ABCDEF] Where {`2esn`}[Count(*)]|0e0 Contains 9e12][None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12[..$@usn6])][All(@usn5 In Null =~12e12 Where 0X0123456789ABCDEF[$`5esn`..])],12.e12 In $0 In $0 Union All Load Csv From usn2 =~0X7 =~{#usn7} As `` Foreach(usn1 In {usn2}[$`4esn`]| Start `3esn`=Relationship:#usn8(_usn3={#usn7}) Where {999} Is Null Create (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` ))) Union All Match Allshortestpaths((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]})),#usn8=Shortestpath((#usn7 :usn1:_usn4{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})) Using Index @usn5:usn2(`6esn`) Where $`8esn` In $`2esn` In {7} Merge Shortestpath((((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`})))) On Create Set `6esn`+=$7 In #usn8 On Match Set `2esn`+=$999 =~0 =~{7},@usn5+=0X7[0.e0][{`4esn`}],Extract(`` In {`1esn`} Starts With @usn6 Where {`2esn`}[..{@usn6}][..1.e1]|True =~{`1esn`})._usn4! =All(usn1 In 12.e12 In {0} In 9e1)[[`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]|12.e12[$`8esn`..{`8esn`}]]..]"), + octest_legacy:ct_string("Merge (((#usn8 )-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))) On Create Set _usn3 =Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF)[Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6)..Shortestpath(((_usn3 {@usn5:.e12 =~.e0})-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})-[`5esn`?:@usn5|:`7esn`]-(:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01})))][Shortestpath(((`6esn` :`7esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})))..Reduce(usn2=Null In .e0,_usn3 In {`2esn`} Ends With {12} Ends With 7|{0}[..{`7esn`}])] On Create Set _usn4+={`1esn`:{123456789}[12..][$12..]} =~{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF} =~[`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`|_usn3[\"d_str\"]],`6esn`+=[usn1 In 12.e12 In {0} In 9e1 Where {usn1} In Count ( * )][{_usn3:.e1 Ends With 0Xa Ends With .e1,`2esn`:12e12 Starts With `1esn` Starts With usn2}..] Return *,`7esn` Is Not Null Is Not Null As @usn5,`1esn`[Null..] As `2esn` Order By Extract(_usn4 In `2esn` Where $999 Is Null) In Case `8esn` Contains $`3esn` Contains {`4esn`} When 9e1 Ends With $@usn5 Ends With $123456789 Then usn2[True] When 0.e0 =~`1esn` =~`6esn` Then usn2 =~0X7 =~{#usn7} Else 1.e1[..12.e12][..$usn2] End In Any(`6esn` In 00 Where `5esn`[..9e0][..01234567]) Asc Limit `6esn`[{`6esn`}..] Foreach(#usn8 In {123456789}[12..][$12..]| Remove Case When $`3esn` In 9e12 In `` Then 9e0[#usn8] When {999} Starts With {12} Then 7 Is Null Is Null End._usn4!,{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}.#usn8 Remove {@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]}.`2esn`!) Union All With Distinct 1.e1 =~9e12 =~`4esn` As `7esn`,0 Contains $usn2 Contains 12e12 Order By {@usn6} Is Not Null Asc Where $123456789 Starts With .e12 Detach Delete Single(_usn3 In True[7][$999]) Is Not Null Is Not Null,{`1esn`:{123456789}[12..][$12..]} =~{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF} =~[`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`|_usn3[\"d_str\"]] Union All Unwind @usn5[12.0][{1000}] As `8esn`"), + octest_legacy:ct_string("Return $7 Ends With $`8esn` As `4esn` Order By {#usn8}[usn2][{0}] Ascending,00 Contains #usn8 Desc Skip 1e1 Is Not Null Is Not Null Start #usn8=Relationship:usn1({7}) ,`2esn`=Node(123456789,01234567,01234567)Where $12 Is Not Null Foreach(`` In True Is Not Null Is Not Null| Create Unique ((`4esn` :`8esn`:@usn5)-[`6esn`:usn1{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]->(:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]-(@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})) With Distinct Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))) =~Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) As _usn4,7[..$`1esn`][..00],{12} Starts With #usn8 Starts With 0e0 Order By $0 Starts With `2esn` Desc,0.12 In 0X7 Descending,12.e12 In $0 In $0 Desc Limit `6esn` In Null Where False Contains 0.e0 Contains Count(*)) Union All Start `1esn`=Rel:`6esn`(`3esn`={12}) Where $`5esn`[$#usn7..][0xabc..] Create Unique usn2=(`2esn` {@usn6:True Is Null Is Null})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)-[_usn3?:@usn6|`` *0x0..{`3esn`}]->(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}}),(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]})"), + octest_legacy:ct_string("Create ((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` )),#usn7=((`4esn` :`1esn`)-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})) Create Unique `3esn`=(((`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[usn1?:`4esn`|:#usn7 *0X7..0Xa]->({_usn4:01234567[..9e1]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}))) Create (#usn7 :#usn8)-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0}),`3esn`=Shortestpath(((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[:#usn7|`2esn`]-(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}}))) Union All Merge `5esn`=({_usn4:0.e0[{999}][{`1esn`}]})-[`2esn`:`3esn`|:@usn5 *..010{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->({`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})"), + octest_legacy:ct_string("Using Periodic Commit 01234567 Load Csv From 0.0 Is Not Null As `5esn` Foreach(_usn4 In 12e12 Ends With `4esn` Ends With 123456789| Create `2esn`=(`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4),`5esn`=(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}) Return *,Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000)[[_usn4 In `2esn` Where `3esn` Is Not Null Is Not Null]..All(`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999])][(_usn4 {_usn3:9e1 =~999})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})..{`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}] As _usn3,Reduce(_usn4=.e1 Starts With $_usn4 Starts With {`1esn`},`6esn` In 00|usn2[True])[..[9e12[..0X7]]][..$`1esn`] Skip 0e0[..$@usn5][..$`8esn`] Limit Reduce(`3esn`={_usn3} Is Not Null,usn1 In 12.e12 In {0} In 9e1|0[Count(*)][0e0])[`6esn`(``[..0X0123456789ABCDEF])..Single(`` In {`1esn`} Starts With @usn6 Where {_usn3}[$usn2..])]) Return *,$1000[..{`7esn`}][..#usn7] Order By 7[010][00] Descending Skip {`5esn`} Starts With 12.0"), + octest_legacy:ct_string("Unwind {usn2}[`6esn`..01234567] As _usn3 Optional Match `6esn`=(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}),(((usn2 :_usn3)<-[#usn7{#usn8:{`1esn`} Is Not Null}]->(`8esn` {`3esn`:'s_str'[..0X7]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6)))"), + octest_legacy:ct_string("Optional Match @usn6=Shortestpath(((_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]}))) Using Join On @usn5,usn2,_usn3 Foreach(usn1 In {`3esn`} Starts With $`8esn` Starts With 1e1| Start `7esn`=Node:`2esn`(#usn7={usn1}) Where $#usn7 Ends With 0.12 Ends With {@usn6})"), + octest_legacy:ct_string("Using Periodic Commit 0X0123456789ABCDEF Load Csv With Headers From ``[{123456789}..] As `3esn` "), + octest_legacy:ct_string("Create `5esn`=Shortestpath(((:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}}))),`2esn`=(`` :`7esn`) Start `4esn`=Relationship:`1esn`({@usn5}) Create (`4esn` :#usn7)<-[@usn6?:usn2|#usn7]->(`1esn` )-[`6esn`?*..{`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}]->({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6}),_usn4=Allshortestpaths((_usn3 {`4esn`:`8esn` Contains 1e1,#usn7:{`2esn`}[..{@usn6}][..1.e1]})-[#usn7?:usn1 *01..07{`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}]->({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]})) Union With Distinct .e1 Contains $`3esn` As #usn7 Order By Extract(_usn3 In True[7][$999] Where $`3esn`[{``}..]) Is Not Null Is Not Null Desc,`6esn`[{`6esn`}..] Descending,123456789 Starts With {@usn6} Starts With $12 Asc Where Count ( * )[$12..]"), + octest_legacy:ct_string("Create Unique usn2=Allshortestpaths((:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[_usn4? *07{1000}]-(`` )<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})),`7esn`=Shortestpath((@usn5 {#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(`2esn` :#usn8{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})) Union Merge #usn8=Allshortestpaths(({`3esn`:0.e0[{999}][{`1esn`}],`1esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[:usn2|#usn7 *0X7..0Xa]->(#usn7 :@usn5)) On Create Set `6esn`+=$7 In #usn8 Union Merge ((`8esn` :`2esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[@usn6?]-({`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})) On Match Set `3esn`(\"d_str\"[..0.e0]).`8esn` =[1e1[{_usn4}..123.654]] In Reduce(`5esn`=9e1 Ends With Count(*) Ends With False,`1esn` In $12 Is Not Null|123.654[{`7esn`}][{7}]) In [usn2[True],{`3esn`}[{`5esn`}]] On Match Set `1esn`+=`2esn` Starts With `` Starts With 1e1,Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End.`3esn` =$0 Ends With False Ends With $_usn4 Match Allshortestpaths((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]})),#usn8=Shortestpath((#usn7 :usn1:_usn4{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})) Using Index @usn5:usn2(`6esn`) Where $`8esn` In $`2esn` In {7} Create Unique `6esn`=((`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[`5esn`:`5esn`]-(:usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07}))"), + octest_legacy:ct_string("With Distinct *,$123456789[..$7][..$`6esn`],Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF) Ends With Case {`2esn`}[..{@usn6}][..1.e1] When Null Is Null Is Null Then #usn7 Contains {`3esn`} Contains $`6esn` When 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Then $usn1[..'s_str'][..$#usn8] End Ends With Filter(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789}) Skip Count(*)[..``][..#usn8] Limit 9e12[{123456789}..][$`2esn`..] Where 0X0123456789ABCDEF[$999..][@usn5..] Union All Merge `3esn`=Allshortestpaths((:@usn6{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]})) On Match Set `2esn`+=0X0123456789ABCDEF[{@usn5}..1.e1][$_usn3..{7}],`2esn` =True[7][$999],_usn3+=$usn2 Starts With $`5esn` On Match Set Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where Count(*) In 0e0 In 9e1).usn1? =[`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7}|usn2[`7esn`..{`3esn`}][$7..{#usn7}]][..[`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]|9e12[..0X7]]][..[`2esn` Ends With $`4esn` Ends With {#usn7},'s_str'[..0X7],{#usn8} =~{999} =~{#usn7}]] Optional Match #usn7=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Where #usn7 Starts With 1000 Starts With .e1 Union All Start _usn4=Node:#usn8(#usn7='s_str') ,@usn5=Node:_usn4(``=\"d_str\")"), + octest_legacy:ct_string("Detach Delete 123456789 Is Not Null Is Not Null,{@usn6} Starts With @usn5 Starts With @usn6,.e1[..\"d_str\"] Return $7 Ends With $`8esn` As `4esn` Skip {`4esn`:#usn7 =~00,@usn5:usn2[True]} =~`6esn`(Distinct #usn7 =~{`4esn`} =~123456789,1e1[1.e1..][123.654..]) =~Allshortestpaths(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))) Detach Delete {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}[Any(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3}[..$`8esn`])] Union All Match #usn8=(((#usn7 :@usn6{`8esn`:{@usn6}[True..{_usn3}],`1esn`:07 Is Null})-[ *..0{`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null}]->(:usn1:_usn4{`4esn`:01234567 In $123456789})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5))) Using Index usn2:@usn6(`2esn`) Using Index @usn6:#usn8(`8esn`) Where 12e12 Create Unique @usn5=(`6esn` :`8esn`:@usn5),usn1=((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)) Foreach(_usn4 In $`8esn` Starts With 0xabc Starts With {usn2}| Optional Match usn1=((`5esn` :_usn4)),((`4esn` :`8esn`:@usn5)-[`6esn`:usn1{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]->(:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]-(@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})) Using Index @usn5:usn2(`2esn`) Return *,{7}[$123456789..{1000}][$`3esn`..`7esn`] Limit $123456789[..$7][..$`6esn`])"), + octest_legacy:ct_string("With $12 Is Not Null As `6esn`,(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Is Not Null Is Not Null As `2esn`,$`4esn` In Null Order By 2.12[`8esn`][1e1] Descending Skip $1000 Is Null Is Null Optional Match `8esn`=Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Using Scan `4esn`:_usn4"), + octest_legacy:ct_string("With Distinct {`5esn`} Starts With 12.0,Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End[None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])][count(Distinct $`5esn`[$#usn7..][0xabc..])] As `2esn`,0.e0 Contains .e0 Contains $@usn6 Skip Reduce(#usn8=0X7 Starts With {999} Starts With 12e12,_usn4 In `2esn`|usn2[True]) Starts With [01234567[..9e1]] Starts With Reduce(@usn5=.e1 Ends With {7} Ends With $usn1,`` In {usn1} Ends With {`6esn`} Ends With 123456789|{`2esn`} In 0Xa In {_usn3}) Limit 0.e0 Ends With False Where Null[{_usn4}..] Load Csv With Headers From Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})] As @usn5 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Delete `` =~`6esn` =~usn1 Load Csv With Headers From usn2(0.0 Is Not Null Is Not Null,{123456789} Is Not Null)[None(`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12])..[_usn4 In `2esn` Where False Ends With $``|9e0[#usn8]]][(`3esn` :`3esn`:`6esn`)-[]->(`7esn` :#usn8)..[0X0123456789ABCDEF Contains $`1esn` Contains 1000,0e0[$#usn8...e12],.e12 Is Null Is Null]] As _usn3 Return True Is Null Is Null As `3esn` Order By $`8esn`[0xabc][Null] Desc,`2esn`[usn2..][$7..] Descending Limit .e1[..$`4esn`][..$`6esn`] Union Load Csv From None(`1esn` In $12 Is Not Null Where Null Is Null Is Null) Contains $`6esn` Contains exists(Distinct {`3esn`} Is Null) As `2esn` Detach Delete 0.12 Ends With {1000} Ends With `6esn`,$@usn5[usn2..][$0..] Union Create usn1=Allshortestpaths(((:`6esn`:`8esn`{`5esn`:{@usn5} Is Null,`8esn`:True[..010]}))) Unwind #usn7 Starts With $999 As #usn7"), + octest_legacy:ct_string("Merge Allshortestpaths(((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0}))) On Create Set `5esn`+={usn1}[$`8esn`..0.0],`2esn`+={`1esn`:{123456789}[12..][$12..]} =~{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF} =~[`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`|_usn3[\"d_str\"]] On Create Set `7esn` =[`2esn`,{`2esn`} Starts With @usn6,9e1 =~999] In Any(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3} Contains 9e0 Contains $999),Reduce(#usn7=_usn3 Contains .e0 Contains {usn2},_usn4 In `2esn`|{@usn6} In {#usn7} In 12.e12).@usn6 =Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3]..`1esn`(Distinct $@usn5[`6esn`..],9e12[..0X7])][Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}))..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]})],Extract(`1esn` In $12 Is Not Null Where 12.e12[{@usn5}..][9e1..]|`1esn`[Null..]).`4esn`? =0Xa Is Not Null Is Not Null Union All Load Csv With Headers From Shortestpath((((:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00}))))[`4esn`(999[12.0..][#usn7..],False[999])..00] As `3esn` Foreach(@usn5 In {1000}[{#usn8}]| Create Unique `7esn`=((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})),Shortestpath((usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`)) Unwind Case {1000}[{#usn8}] When `7esn` Contains `5esn` Contains 0X7 Then True[..010] When {#usn8} =~{999} =~{#usn7} Then `1esn`[..\"d_str\"][..$`5esn`] Else `6esn`[..{999}] End In Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where `3esn`[..{_usn4}][..{@usn5}]) As `8esn`) Delete {#usn7:`5esn`[..9e0][..01234567]} In Case 1e1[1.e1..][123.654..] When 7[1000.._usn3][9e0..\"d_str\"] Then 12.e12[``..usn2][{#usn7}..@usn5] When 1.e1[0xabc..] Then 1.e1 Starts With $`2esn` Starts With $0 End In Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null),$`5esn`[`1esn`..$123456789]"), + octest_legacy:ct_string("Match (#usn7 :#usn8)-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0}),@usn6=Allshortestpaths(((`3esn` {`1esn`:$`6esn` Starts With 12.e12 Starts With $#usn7})-[`6esn`:`8esn`|:_usn4]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}))) Using Index `6esn`:usn2(@usn5)"), + octest_legacy:ct_string("Load Csv From [False Contains 0.e0 Contains Count(*)][Any(@usn5 In Null =~12e12 Where 0[`4esn`][12.e12])..[$_usn4 Is Not Null Is Not Null,`7esn` Is Not Null Is Not Null]] As `3esn` Fieldterminator \"d_str\" Union Create `3esn`=Shortestpath((({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))),((`2esn` :@usn5{`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})<-[?:`6esn` *07]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[{#usn7:'s_str'[_usn4..0x0]}]-({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]})) Create Allshortestpaths(((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7))) Union Unwind Shortestpath(({``:False Contains $#usn8 Contains 9e1})<-[`6esn`?:_usn3|`8esn`]->(`2esn` :#usn8{@usn6:`7esn` Ends With $_usn3 Ends With usn2,_usn4:{12} Starts With #usn8 Starts With 0e0})) Starts With Reduce(_usn4=Count(*) In {``},`` In {usn1} Ends With {`6esn`} Ends With 123456789|9e12 =~123456789 =~$999) Starts With None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where `3esn`[..{_usn4}][..{@usn5}]) As usn2 Detach Delete $_usn3[{#usn8}..`7esn`][0..$0],usn1(Distinct {@usn5}[Count(*)..])[[@usn5 In Null =~12e12 Where {`5esn`} Contains 's_str' Contains 9e1|`2esn`]..][{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}..]"), + octest_legacy:ct_string("Unwind .e1 Starts With {`1esn`} Starts With $_usn3 As _usn4 Foreach(`` In False[1000][{`7esn`}]| With *,0x0[$`8esn`.._usn3],True[$123456789][`8esn`] As @usn5 Skip \"d_str\" Contains @usn6 Contains 12.e12 Limit 9e1 =~`` =~{`7esn`} Delete 12e12 Ends With $999 Ends With 1e1,$`3esn`,1000) Union All Create Shortestpath(((`2esn` {_usn4:`4esn`[usn1]})<-[`2esn`?{`3esn`:$7 In 1.0 In 1e1,@usn5:{@usn6} Contains 123.654 Contains 01}]->(@usn6 {usn1:$#usn7 =~{12} =~False})<-[`2esn`?:@usn6|``]->(`1esn` {_usn4:{1000} Ends With {`8esn`}}))),`5esn`=(`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})-[:`3esn`|:@usn5{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}]-($`5esn`)-[? *07{#usn7:`5esn`[..9e0][..01234567]}]-({#usn8:0Xa Contains Count ( * ),`8esn`:Null Is Null Is Null}) Unwind `2esn`(Null In .e0)[_usn3(Distinct {@usn6}[$`7esn`..][False..])..[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]]] As _usn3 Remove (`5esn` {@usn5:07 =~$`8esn` =~9e1,#usn7:{`1esn`} Starts With `4esn` Starts With {0}})<-[`2esn`?*]->({#usn7:1e1[1.e1..][123.654..],`3esn`:True Starts With $`4esn` Starts With 12e12}).`1esn` Union Create Unique Allshortestpaths((`` :``)-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}))"), + octest_legacy:ct_string("Match usn1=(((:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})<-[:``]-(_usn3 :`7esn`)<-[ *0xabc..7]->({#usn7:123456789[0..]}))),(usn2 :`5esn`:@usn5)-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})"), + octest_legacy:ct_string("Load Csv From 12e12 Is Not Null Is Not Null As usn1 Merge `4esn`=Shortestpath((`3esn` {@usn6:12 Starts With {_usn4} Starts With $#usn8})) On Match Set `5esn`+=Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..],[`6esn` In Count(*) Ends With $`` Ends With {7} Where @usn5 =~'s_str'|{_usn3} Contains 9e0 Contains $999].usn2 =9e12 Is Null Union Unwind False Starts With 010 As #usn8 Return Distinct *,Single(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7])[..{@usn5:_usn4[Count(*)],`6esn`:$`3esn` Contains 0 Contains 07}][..Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`])],0e0[$#usn8...e12] Order By {#usn7}[{`4esn`}..][0X7..] Desc,Filter(`1esn` In $12 Is Not Null Where Count(*)[..``][..#usn8]) Ends With Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}]) Ends With {`2esn`:usn1 Is Null Is Null,usn2:0.e0 =~`1esn` =~`6esn`} Desc Skip Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000|$@usn5 In $usn2 In {1000}) Is Not Null Union All Remove Reduce(@usn6=_usn4 Is Null,`1esn` In $12 Is Not Null|`5esn`[..9e0][..01234567]).#usn7?,Case {`1esn`} In 12.e12 In 9e1 When {usn2}[$`4esn`] Then $1000 Starts With $`8esn` Starts With {`5esn`} Else {1000}[{#usn8}] End.`1esn`!,Reduce(`5esn`=12 Starts With {_usn4} Starts With $#usn8,`1esn` In 0.e0 =~`1esn` =~`6esn`|@usn5[$12..\"d_str\"]).`5esn`! Create Unique ``=(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})<-[:#usn7|`2esn` *1000]->(`5esn` :_usn4)-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`) With {_usn3}[`3esn`..$#usn8] As `1esn`,12 Starts With 7 Starts With $`5esn`,$#usn7 Contains True Contains _usn4 As `4esn` Skip $@usn6[..123.654]"), + octest_legacy:ct_string("Merge _usn3=(`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})<-[usn2 *07{usn1:07 =~@usn5}]->(_usn4 {`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}) Detach Delete {1000}[01234567..$_usn4][{@usn6}..$_usn3],{usn2} =~`7esn` =~07,count(Distinct 999[12.0..][#usn7..]) =~Allshortestpaths(((usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}))) =~@usn6(`8esn` Starts With {123456789},$`` Starts With 12 Starts With $usn2) Unwind {`7esn`}[0X7..][0x0..] As `3esn` Union All Create (((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),`7esn`=(({`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})) Remove {@usn6:12 Starts With {_usn4} Starts With $#usn8,`2esn`:{@usn6}[$`7esn`..][False..]}.`1esn` Merge `2esn`=((_usn3 :`5esn`:@usn5)<-[`7esn`? *0xabc..7]->(:`6esn`:`8esn`{`3esn`:$`6esn`[{`3esn`}..12],_usn3:0[{@usn5}..][7..]})) On Create Set _usn4 =Filter(`1esn` In $12 Is Not Null Where {@usn5}[1e1..][9e1..]) In [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 12 Starts With {_usn4} Starts With $#usn8] In Filter(`2esn` In {999} Is Not Null Where $7 Ends With 0X7),#usn8 =0Xa[@usn5][{`7esn`}]"), + octest_legacy:ct_string("Delete Any(@usn5 In Null =~12e12 Where 0[`4esn`][12.e12]) Is Null,Count ( * )[9e1..{@usn5}],{`3esn`} Is Not Null Is Not Null Merge Allshortestpaths((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}))) On Match Set Allshortestpaths((:`3esn`:`6esn`{999})).`6esn`! =00[07..],usn2 =usn1 Is Null Is Null,#usn8+=0e0 On Match Set `4esn` =$0[..{usn2}][..$usn1],`5esn`+=Count(*) In 0e0 In 9e1,`8esn` =$123456789[{@usn6}][{999}] Merge (((#usn7 :#usn8{_usn3:`1esn`[..00][..{7}]})<-[`2esn`?{`3esn`:$7 In 1.0 In 1e1,@usn5:{@usn6} Contains 123.654 Contains 01}]->(:`1esn`{_usn4:{`6esn`} Ends With 0e0 Ends With {``}})-[`8esn`?{@usn5:Null Is Null Is Null}]->({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null}))) On Match Set Allshortestpaths((((:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})<-[`2esn`?{``:123.654 Starts With $``,``:{``} Ends With .e12 Ends With 0.e0}]-(:_usn3{0})<-[`3esn`?{`3esn`:1e1 Contains usn2}]->(:`3esn`:`6esn`)))).@usn6! =`5esn` Contains {`7esn`} Contains $7 Union All Foreach(#usn7 In Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999)[..Reduce(``={`8esn`}[True..][.e1..],#usn7 In 123.654 Starts With $``|{usn1}[$`8esn`..0.0])][..Any(`1esn` In $12 Is Not Null Where $12 Is Not Null Is Not Null)]| With *,1.e1[`4esn`..][$`6esn`..] As @usn5,Count ( * ) =~{`5esn`} =~{_usn4} As _usn3 Where _usn3[\"d_str\"]) Union All Load Csv From `7esn` Contains {@usn5} Contains $123456789 As `6esn` Return #usn7 Starts With $999 Skip {@usn6}[0Xa..$@usn6][0..`5esn`] Limit {`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1}[Reduce(`6esn`=$12 Contains 0Xa,`6esn` In 00|$`4esn`[..'s_str'][..`8esn`])][Shortestpath(((:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})-[:usn2|#usn7 *0X7..0Xa]->(#usn7 :@usn5)-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})))]"), + octest_legacy:ct_string("Load Csv With Headers From None(_usn3 In {@usn5}[..#usn7] Where `2esn` Starts With `` Starts With 1e1) Contains Reduce(`1esn`={999} Ends With 123456789 Ends With {@usn5},_usn4 In 0.0[..{999}][..0.0]|$1000 =~{1000} =~`5esn`) Contains `6esn`(Distinct {1000}[{#usn8}],$#usn7[123.654]) As @usn5 Fieldterminator 's_str' Load Csv From 123456789 Starts With {999} As usn2 Union All Merge ``=(`` :``)-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(`2esn` :_usn3) Merge (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}) On Match Set `8esn` =[`` In {`1esn`} Starts With @usn6 Where 0Xa[$1000..$123456789]] Starts With (`7esn` )-[:_usn4|:usn1 *0X7..0Xa{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]}]-({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null}) Starts With Allshortestpaths((`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})),[$0[`7esn`],0.12 Contains 12.0,True Is Null Is Null].`3esn`? =`2esn` Ends With $`4esn` Ends With {#usn7}"), + octest_legacy:ct_string("With *,{@usn6} Contains 123.654 Contains 01 As `4esn` Skip @usn5[12.0][{1000}] Where @usn6[$usn2..#usn7] Create Unique @usn5=(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})<-[?:`6esn` *01..07]->(:usn2:`2esn`{`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})-[? *1000]->(`5esn` {usn2:$#usn7 Starts With 9e0 Starts With 2.12}) Start #usn8=Rel:usn2(`7esn`={7}) Union Foreach(`` In {999} Ends With {`5esn`} Ends With {0}| Start @usn5=Relationship:usn2({`5esn`}) ,@usn5=Node:@usn5(\"d_str\") Unwind 1.e1 Ends With 0 Ends With $usn1 As `1esn`) Remove {``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}}.`7esn`,(:usn2:`2esn`)<-[:@usn5|:`7esn`{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]}).`7esn`!,{`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}}.`3esn`? Match Allshortestpaths((:``{``:0x0 =~123.654 =~{999}})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})),_usn4=(usn2 {_usn3:$0 In _usn4})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[{`2esn`:1000 Is Null Is Null}]->(:_usn4{`4esn`:`8esn` Contains $`3esn` Contains {`4esn`},_usn3:$12[{7}..0X0123456789ABCDEF]})"), + octest_legacy:ct_string("Using Periodic Commit 0xabc Load Csv With Headers From Count ( * )[$12..] As @usn5 "), + octest_legacy:ct_string("Using Periodic Commit 0x0 Load Csv With Headers From 12.e12[`7esn`] As `1esn` Load Csv With Headers From $`7esn` Is Null Is Null As usn1 Fieldterminator 's_str' Optional Match (((`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]})-[]->(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )})<-[@usn6?]->(`8esn` :``))),`4esn`=(:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})-[`8esn`?:`4esn`|:#usn7{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`7esn` {`4esn`:#usn8 =~{999},`2esn`:9e1 =~`` =~{`7esn`}})"), + octest_legacy:ct_string("Unwind Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {7} Contains $123456789) Is Not Null As `5esn` Union Foreach(@usn6 In Case $123456789[..$7][..$`6esn`] When 0.e0 Contains #usn7 Then {`6esn`} Contains 07 When {_usn4} In {1000} Then ``[..$#usn7] End[Shortestpath((usn1 :usn1:_usn4))..][Reduce(@usn6={`4esn`} Starts With $7 Starts With $``,`` In {usn1} Ends With {`6esn`} Ends With 123456789|$`6esn` Starts With 12.e12 Starts With $#usn7)..]| Optional Match `5esn`=((`8esn` :@usn6)),`8esn`=Shortestpath(({`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})) Using Scan @usn6:@usn6) Create `2esn`=(`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4) Unwind usn2[999..] As `1esn`"), + octest_legacy:ct_string("Create Allshortestpaths((_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})<-[*{`8esn`:0Xa[.._usn3][..$`6esn`]}]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})) Union All With *,$`1esn`[`6esn`..][00..],$1000 =~{1000} =~`5esn` As @usn6 Order By {#usn8}[usn1][1.0] Asc,`7esn`[{usn1}][999] Descending Skip Null In .e0 Where {999} Is Null Foreach(#usn7 In 0Xa Contains #usn8 Contains 1000| Create Unique #usn7=(_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}) Match ``=(({`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[ *0xabc..7]->(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]})) Using Index `1esn`:`4esn`(`1esn`)) Start _usn3=Relationship:``(_usn3={0}) Union All Load Csv With Headers From {@usn5}[{`5esn`}][$12] As usn1 "), + octest_legacy:ct_string("Using Periodic Commit 0xabc Load Csv From {`3esn`}[{123456789}..][{usn1}..] As `6esn` Start @usn6=Rel:`2esn`(`5esn`='s_str') ,usn1=Rel(*)Where {#usn7} Contains @usn5 Contains Count ( * )"), + octest_legacy:ct_string("Match Shortestpath(({`3esn`:0.e0[{999}][{`1esn`}],`1esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[:usn2|#usn7 *0X7..0Xa]->(#usn7 :@usn5)),_usn4=Allshortestpaths((@usn6 :`6esn`:`8esn`)<-[_usn4?:`7esn`{``:{_usn3} Contains $`1esn` Contains 12.0}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})) Create @usn6=((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1)) Merge @usn6=((usn1 :`5esn`:@usn5)-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:usn2:`2esn`{usn1:$7 Is Null Is Null})-[? *01..07]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]})) Union Merge (:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}}) Create Shortestpath(({``:.e1 Contains $`3esn`})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})),Allshortestpaths((:usn1:_usn4{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[`8esn`? *999]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})) Load Csv From Filter(`1esn` In $12 Is Not Null Where {@usn5}[1e1..][9e1..]) Starts With [{@usn6} Contains 123.654 Contains 01,$`2esn` Starts With {`8esn`} Starts With {usn1}] Starts With All(`1esn` In $12 Is Not Null Where 12.e12[{@usn5}..][9e1..]) As `5esn` "), + octest_legacy:ct_string("Remove (`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]}).`1esn`?,[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000].usn1?,{`4esn`:0.12 In 0X7}._usn4! Start `4esn`=Node:`1esn`(#usn7=\"d_str\") Where $_usn3 Is Null Is Null Start _usn3=Relationship:`1esn`(\"d_str\") ,`8esn`=Node:`4esn`(\"d_str\") Union With Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF) Ends With Case {`2esn`}[..{@usn6}][..1.e1] When Null Is Null Is Null Then #usn7 Contains {`3esn`} Contains $`6esn` When 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Then $usn1[..'s_str'][..$#usn8] End Ends With Filter(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789}),@usn6 Contains Null As `2esn`,00 =~0.e0 =~$`8esn` Order By `5esn`(0X0123456789ABCDEF[9e12])[[`8esn` In $12[{7}..0X0123456789ABCDEF] Where $``['s_str'..][0x0..]]..None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`8esn`}[0X7][$`3esn`])][Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000})..Case 7 Is Null Is Null When usn1 Contains $7 Contains $`` Then 12e12 Is Not Null End] Ascending,#usn7[9e0] Asc,{`5esn`} Starts With 12.0 Desc Limit {@usn5}[Count(*)..] Create Unique Allshortestpaths((@usn6 :usn1:_usn4)),(:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}) Union All Optional Match #usn8=((`7esn` :@usn6)<-[#usn8? *0X7..0Xa$`2esn`]-(:`5esn`:@usn5{usn2:{#usn8}[12.0][$@usn6]})-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(`2esn` :_usn3)),usn2=(((:`2esn`{`4esn`:`3esn` Is Not Null Is Not Null})-[?:#usn7|`2esn` *0x0..]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5))) Using Index @usn6:#usn8(`8esn`) Merge (`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]}) Start _usn3=Node( {usn2}) ,@usn5=Node:`6esn`(#usn8={`5esn`})"), + octest_legacy:ct_string("Detach Delete Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`])[(`3esn` :#usn7{`6esn`:{_usn4} Is Null,usn2:{`2esn`} Starts With @usn6})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`8esn`:@usn5)<-[@usn6?:`7esn`]->(:`2esn`{#usn7:#usn8 =~{999}})..Shortestpath((`8esn` {_usn4:{usn1} In Count ( * )})<-[`6esn`?]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})<-[@usn6?:`7esn`]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1}))][Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0[$#usn8...e12])..[`1esn` In $12 Is Not Null Where {usn1} In Count ( * )|$`3esn`[{``}..]]],\"d_str\" Contains @usn6 Contains 12.e12 With 9e12[{123456789}..][$`2esn`..] As `2esn` Order By {#usn7}[{`4esn`}..][0X7..] Desc Where 1.e1 =~`2esn` Union All Remove None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000).`2esn`? With Distinct {#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null As `8esn`,Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4])[Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End] As `7esn`,{_usn4} In {1000} As `1esn` Order By $@usn5[`1esn`..] Desc Limit #usn8['s_str'..][123.654..] Where 's_str' Starts With 12e12 Starts With $_usn4"), + octest_legacy:ct_string("Return *,$_usn4[$`4esn`..$12],{`5esn`} Starts With 12.0 Order By @usn5 =~`` Asc"), + octest_legacy:ct_string("Merge `8esn`=Shortestpath((:`2esn`{`4esn`:`3esn` Is Not Null Is Not Null})<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(usn1 {`4esn`:1.0[{999}][$999],``:9e1[9e1...e0]})) On Create Set `2esn`+=$#usn7[`2esn`][010] On Create Set `1esn`:`` Union Load Csv From #usn8 =~`7esn` As `` Foreach(`2esn` In None(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) Ends With Case When 0x0[{999}..][{_usn4}..] Then Count(*)[.e12] When {_usn4}[...e12][..0xabc] Then Count(*) Ends With $`` Ends With {7} Else ``[{#usn8}] End Ends With Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where 's_str' Starts With 12e12 Starts With $_usn4|True Starts With $`4esn` Starts With 12e12)| Create Unique Shortestpath(({`8esn`:0[$`6esn`...e1][`1esn`..$`7esn`]})-[#usn8:#usn7|`2esn`]->(:@usn6{`2esn`:$999 In 999})),`8esn`=((`5esn` )) Load Csv From #usn8 =~`7esn` As `` ) Foreach(`1esn` In All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Contains `4esn`(999 Starts With 's_str') Contains (`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})| Create (#usn8 :`7esn`),`3esn`=Shortestpath((:_usn4)-[`6esn`?{#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}]-({`3esn`:9e1 =~999})-[`3esn`? *01..07]->({`7esn`:@usn5[..$@usn5][..0Xa]})) Detach Delete Reduce(@usn5={`1esn`} In 12.e12 In 9e1,`5esn` In $`2esn`[12.e12][$@usn5]|$`6esn` Ends With {0} Ends With {`7esn`}) Is Null,``[..0X0123456789ABCDEF],{`1esn`}[$`4esn`..][False..])"), + octest_legacy:ct_string("Create Unique ((usn2 :_usn3)<-[?:_usn4|:usn1 *..00{`1esn`:{#usn8}[2.12]}]->(:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn8:#usn7|`2esn`]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})),`5esn`=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]}) Union All Match @usn5=(`4esn` :#usn7)<-[@usn6?:usn2|#usn7]->(`1esn` )-[`6esn`?*..{`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}]->({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6}),(usn2 {usn1:{`4esn`}[..07][..$`6esn`],`5esn`:'s_str'[..0X7]})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]->({_usn4})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`) Using Index @usn6:#usn8(_usn4) Using Scan ``:usn2 Where .e12[$#usn8..@usn6] Create `7esn`=Allshortestpaths(((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1))),@usn6=((`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]})<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)<-[`1esn`?:`4esn`|:#usn7 *..01234567]-(#usn8 {#usn7:$1000 Is Not Null Is Not Null}))"), + octest_legacy:ct_string("With Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..]) Starts With [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]|Count ( * )[..12][..{@usn6}]] Starts With Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where True Starts With $`2esn` Starts With {@usn6}),'s_str' Starts With 12e12 Starts With $_usn4 As `4esn` Return *,0.e0 Contains #usn7 Order By {@usn5}[Count(*)..] Asc,9e0[Count ( * )] Descending Skip Case When #usn8 In `8esn` In 07 Then 00[Count(*)...e0][$#usn7..0X0123456789ABCDEF] Else 12.e12[{7}..7] End In Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]})) In Reduce(`3esn`=00 Ends With `8esn`,usn1 In 12.e12 In {0} In 9e1|True Starts With $`4esn` Starts With 12e12) Limit $12 Is Not Null Is Not Null Union Return *,1.e1 =~$`1esn` As `8esn` Order By {usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}[Reduce(`1esn`={usn1} In Count ( * ),`` In {usn1} Ends With {`6esn`} Ends With 123456789|0[{usn2}..][usn1..])][[`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12]|{``} Starts With 123456789 Starts With usn2]] Ascending,Reduce(usn1=1e1 Contains usn2,`8esn` In $12[{7}..0X0123456789ABCDEF]|#usn7 =~{`4esn`} =~123456789) Contains `3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]) Asc,[False Starts With 010] Contains Extract(_usn3 In True[7][$999] Where 0e0[$#usn8...e12]|12 Is Not Null Is Not Null) Contains [`1esn` In $12 Is Not Null] Asc Load Csv From (#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As `` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Start ``=Rel:_usn4({`2esn`}) ,`6esn`=Rel:`2esn`({_usn3})Where @usn5[$12..\"d_str\"] Union Unwind {@usn6} In {#usn7} In 12.e12 As `8esn`"), + octest_legacy:ct_string("Load Csv From Extract(_usn3 In {@usn5}[..#usn7])[Case $1000[..12.0][..0e0] When `3esn` Is Not Null Is Not Null Then 12.e12[{7}..7] When Count(*) In {``} Then 12[..$@usn6] End..] As #usn7 Fieldterminator \"d_str\" Load Csv With Headers From $`2esn`[{`6esn`}][0.0] As `2esn` Fieldterminator \"d_str\" Optional Match Allshortestpaths((:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[:`5esn`]-({`7esn`:@usn5[..$@usn5][..0Xa]})<-[#usn8:_usn3|`8esn`{usn1:{#usn8}[usn1][1.0],@usn6:1.e1 =~$usn2}]->(#usn7 :usn1:_usn4{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})),`8esn`=Allshortestpaths((`` :``)-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})) Union All Remove Reduce(_usn3=12 Starts With 0x0,_usn4 In 0.0[..{999}][..0.0]|$usn1[..'s_str'][..$#usn8]).`6esn`! With Distinct 12 Is Not Null Is Not Null As `2esn`,Case When $`6esn` Starts With 12.e12 Starts With $#usn7 Then #usn8[`7esn`..] When {`4esn`}[$123456789..] Then {_usn3} Contains 9e0 Contains $999 End As @usn6 Order By {`2esn`} In 0Xa In {_usn3} Ascending,All(usn1 In 12.e12 In {0} In 9e1)[[`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]|12.e12[$`8esn`..{`8esn`}]]..] Ascending,{usn2}[$`4esn`] Descending Skip 1.e1 Starts With $`2esn` Starts With $0 Limit All(_usn3 In {@usn5}[..#usn7] Where $`2esn` Starts With {`8esn`} Starts With {usn1}) Starts With {usn2:{`1esn`} Is Not Null} Union All Detach Delete {#usn8}[#usn7..{`2esn`}],$usn1 Is Not Null Is Not Null,12e12 Remove usn2(Distinct 1e1[..01],$123456789 Is Not Null)._usn3?"), + octest_legacy:ct_string("Create Unique (:``) Start ``=Node:_usn3('s_str') With Distinct 0e0[..1000] As #usn7,#usn8 Is Not Null As usn2 Order By 0.0[9e1..][Null..] Ascending,123.654[{@usn5}..123.654][1.0..$12] Descending,All(`5esn` In $`2esn`[12.e12][$@usn5] Where 12[..$@usn6]) =~(_usn4 :`7esn`)<-[{`2esn`:1000 Is Null Is Null}]->({`6esn`:7[010][00],#usn8:$usn1 =~010 =~07}) Desc Skip `8esn` Is Null Is Null Limit 12.0[#usn7]"), + octest_legacy:ct_string("Create Unique _usn4=((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null})<-[usn2 *..01234567{`1esn`:@usn5 =~'s_str',`8esn`:{999} Starts With {_usn4} Starts With 00}]->(usn1 {`5esn`})<-[:`8esn`|:_usn4 *1000]->(`5esn` $`8esn`))),(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})<-[?:`6esn` *07]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}) Start #usn8=Node:`2esn`(#usn7={usn1}) ,``=Node:`5esn`(#usn7=\"d_str\")Where {``}[_usn4..$`1esn`] Foreach(_usn4 In 12e12 Ends With `4esn` Ends With 123456789| Create `2esn`=(`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4),`5esn`=(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}) Return *,Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000)[[_usn4 In `2esn` Where `3esn` Is Not Null Is Not Null]..All(`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999])][(_usn4 {_usn3:9e1 =~999})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})..{`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}] As _usn3,Reduce(_usn4=.e1 Starts With $_usn4 Starts With {`1esn`},`6esn` In 00|usn2[True])[..[9e12[..0X7]]][..$`1esn`] Skip 0e0[..$@usn5][..$`8esn`] Limit Reduce(`3esn`={_usn3} Is Not Null,usn1 In 12.e12 In {0} In 9e1|0[Count(*)][0e0])[`6esn`(``[..0X0123456789ABCDEF])..Single(`` In {`1esn`} Starts With @usn6 Where {_usn3}[$usn2..])]) Union All Start `5esn`=Relationship:@usn6(_usn4={_usn4}) Delete usn1 Is Not Null Is Not Null"), + octest_legacy:ct_string("Optional Match _usn3=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`))) Using Scan #usn7:_usn3 Unwind `5esn` In 12e12 In `8esn` As `8esn` Merge `5esn`=Shortestpath((_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null})<-[@usn5?:`8esn`|:_usn4 *0X0123456789ABCDEF{usn1:False Contains $#usn8 Contains 9e1}]->({@usn6:$usn1[0X7],`3esn`:$7[$`3esn`]}))"), + octest_legacy:ct_string("Create Unique @usn5=({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1}) Union All Remove None(`1esn` In $12 Is Not Null Where 0Xa Contains Count ( * )).`3esn`,{`2esn`:Null In .e0,usn1:01234567[..9e1]}.`2esn`,Filter(`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0.12 In 0X7).`1esn` Match usn1=Shortestpath((:_usn3{@usn5:.e1[..\"d_str\"],#usn8:{`1esn`}[`6esn`..12e12]})<-[`7esn`?*..]-(usn1 :`1esn`{#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]})),`4esn`=Shortestpath((({@usn5:``[{123456789}..]})-[`3esn`:`6esn`{`3esn`}]-({`1esn`:$123456789[..$7][..$`6esn`]})<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`))) Using Scan `2esn`:`2esn` Using Join On `8esn`,_usn4 Where True =~_usn3 =~123456789"), + octest_legacy:ct_string("Remove @usn6(Distinct {@usn5}[..#usn7],0X0123456789ABCDEF[$999..][@usn5..]).`8esn`?,[usn1 Is Null Is Null].`4esn` Start ``=Relationship( {``}) ,`7esn`=Relationship(07,123456789,123456789)Where 12.e12[{@usn5}..][9e1..] Union With $999[07..{#usn7}][1e1..0xabc] As #usn8,{1000}[{#usn8}] As `2esn` Skip `3esn` Contains $`6esn` Contains `8esn` Where 0.e0 =~`1esn` =~`6esn` Remove (:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}).``? Union All Foreach(#usn7 In Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12) Contains {`1esn`:$999 Ends With {0}} Contains (`5esn` :_usn3{`4esn`:12.e12[``..usn2][{#usn7}..@usn5]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(`4esn` :`2esn`{`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})| Delete 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF,$7 Is Not Null,0X0123456789ABCDEF[$`5esn`..]) Detach Delete $`2esn`,_usn4 Is Null Is Null,12.e12[{7}..7]"), + octest_legacy:ct_string("Create Unique `7esn`=((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})),({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->({`7esn`:123456789[0..]}) Unwind Count(*)[.e12..] As @usn6 Merge ((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})) On Match Set Reduce(#usn8=Count ( * )[..12][..{@usn6}],`` In {`1esn`} Starts With @usn6|@usn6[{0}..]).@usn5 =$#usn7 =~{12} =~False On Match Set [`6esn` In 00 Where $`1esn`[$12][Count ( * )]].`5esn`? =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,_usn4 =Reduce(@usn5=True[7][$999],usn1 In 12.e12 In {0} In 9e1|.e12 =~$_usn4)[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])][[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]]] Union All Delete 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF,$7 Is Not Null,0X0123456789ABCDEF[$`5esn`..] Unwind [0X0123456789ABCDEF[$999..][@usn5..]] Contains Reduce(#usn7={12}[999][{_usn3}],`2esn` In {999} Is Not Null|$usn1 =~010 =~07) Contains None(`1esn` In `3esn`[07..]) As @usn5 Return Distinct #usn7 Starts With $999 As `6esn`,{7}[$123456789..{1000}][$`3esn`..`7esn`] Skip $123456789 Contains [True Starts With $`2esn` Starts With {@usn6}] Contains {@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]} Limit None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] Union All Load Csv With Headers From #usn8['s_str'..][123.654..] As `4esn` Fieldterminator \"d_str\" With Distinct usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3) As usn1,$999 Contains {7},\"d_str\"[..0.e0] As #usn8 Order By $0 Ends With False Ends With $_usn4 Descending,Case Count(*) Ends With 123.654 Ends With $12 When $@usn6[$0..usn1][0X0123456789ABCDEF..$999] Then {`6esn`}[..{`2esn`}] End In Reduce(`4esn`={@usn6} In {#usn7} In 12.e12,usn1 In 12.e12 In {0} In 9e1|\"d_str\"[..0.e0]) In [_usn4 In `2esn` Where 9e12 Ends With 123456789|$999 Is Null] Desc,Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}])[[#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}]..{`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}][Case When 2.12 =~0x0 =~_usn4 Then .e1[@usn5]['s_str'] When $@usn5 In $usn2 In {1000} Then {0}[False..@usn5] Else {@usn6}[True..{_usn3}] End..`1esn`()] Descending Limit {`2esn`} Ends With {#usn7}"), + octest_legacy:ct_string("Remove (`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[{_usn4:{1000} Ends With {`8esn`}}]-(@usn5 :`7esn`{_usn3:{``}[_usn4..$`1esn`]})<-[`2esn`?*]->({#usn7:1e1[1.e1..][123.654..],`3esn`:True Starts With $`4esn` Starts With 12e12})._usn4? Create Unique `7esn`=((`1esn` :#usn7))"), + octest_legacy:ct_string("Using Periodic Commit 0 Load Csv With Headers From (#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..] As usn1 With `7esn` Contains `5esn` Contains 0X7 As `1esn`,#usn7(01 =~$`1esn`) =~{@usn6:12.e12[$`8esn`..{`8esn`}],#usn8:#usn7 =~00} As `5esn`,{@usn6}[$`7esn`..][False..] Order By $@usn6 =~#usn8 Descending,{1000} Ends With {`8esn`} Ascending Skip 1000[$7..$123456789] Limit 9e12[..0X7] With Distinct Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..],`` =~`6esn` =~usn1 As `2esn` Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,1.e1 =~$`1esn` Ascending,12.e12[..1e1] Asc Limit 0X0123456789ABCDEF[0X7..] Where $123456789[..$7][..$`6esn`]"), + octest_legacy:ct_string("Start _usn4=Node:usn2(usn2='s_str') ,#usn7=Node:`5esn`(\"d_str\")Where .e1 Starts With $_usn4 Starts With {`1esn`} Union All Delete None(_usn4 In `2esn` Where 9e12 Ends With 123456789) Contains All(`2esn` In {999} Is Not Null Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF),{`2esn`:`8esn`[..`4esn`][..$usn1],@usn6:{123456789}[12..][$12..]} In [$0 Is Not Null,#usn7 Starts With $999,$`6esn`[`8esn`][0.0]] In [$999 Is Null,{``}[010]] Create _usn4=Shortestpath((`6esn` :`2esn`{`7esn`:#usn8 =~{999}})),`7esn`=(({@usn6:$`` Starts With 12 Starts With $usn2}))"), + octest_legacy:ct_string("Load Csv With Headers From (usn1 :`6esn`:`8esn`)<-[_usn4?:`6esn` *0xabc..7$_usn3]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}) Contains {`7esn`:{@usn5}[..#usn7],@usn6:{_usn3}[`3esn`..$#usn8]} As `8esn` Union All Remove @usn6(Distinct {@usn5}[..#usn7],0X0123456789ABCDEF[$999..][@usn5..]).`8esn`?,[usn1 Is Null Is Null].`4esn` Start ``=Relationship( {``}) ,`7esn`=Relationship(07,123456789,123456789)Where 12.e12[{@usn5}..][9e1..]"), + octest_legacy:ct_string("Create usn1=(({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]})) Union Return Distinct *,12.0[{`5esn`}..][$@usn5..],[`6esn` In 00 Where 0.12 In 0X7|{999} Is Null][Allshortestpaths((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]}))][Case {999}[$123456789..][12..] When $@usn6 =~#usn8 Then $999 Contains {7} When False Starts With 010 Then `8esn` Starts With {123456789} Else True Is Not Null Is Not Null End] As `6esn` Order By 1e1[..01] Desc Union All Detach Delete \"d_str\" Starts With $`8esn` Starts With {usn1} With Distinct *,1.e1[`4esn`..][$`6esn`..] As @usn5,Count ( * ) =~{`5esn`} =~{_usn4} As _usn3 Create `1esn`=Shortestpath((usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]}))"), + octest_legacy:ct_string("With $1000[\"d_str\"..$999][$`3esn`..{`3esn`}] Order By (:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) Desc,{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}[Reduce(`1esn`={usn1} In Count ( * ),`` In {usn1} Ends With {`6esn`} Ends With 123456789|0[{usn2}..][usn1..])][[`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12]|{``} Starts With 123456789 Starts With usn2]] Ascending Where 0x0 Ends With {``} Union Create Unique usn1=Allshortestpaths((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})) Merge (`3esn` :`1esn`)-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]}) On Match Set `7esn` =$999[{_usn4}] On Match Set `5esn`+=$`3esn` Contains 0 Contains 07,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $#usn7[..@usn6][..$0]).`1esn`? =$1000[0.12..0.12]"), + octest_legacy:ct_string("Detach Delete [12e12 Starts With `1esn` Starts With usn2,Count ( * ) Is Null][(#usn8 {``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})][Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))],[#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]][Shortestpath(((`1esn` :`7esn`)<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})))..],Shortestpath(((usn1 {``:.e12 =~$_usn4})))[`6esn`(_usn3 Contains .e0 Contains {usn2},`3esn`[07..])][[.e12 Ends With 1000 Ends With 010,Count(*)]] Optional Match `4esn`=(`6esn` {``:`4esn`[usn1]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]-(#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]}) Using Join On `7esn` Match _usn4=Shortestpath((`6esn` :`2esn`{`7esn`:#usn8 =~{999}})),(((usn2 :``)-[@usn5?:#usn7|`2esn`{`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}]->(`2esn` :@usn6{7})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`))) Using Index ``:`1esn`(_usn4) Using Index _usn3:_usn3(`6esn`) Where 123.654[1e1..][{#usn8}..]"), + octest_legacy:ct_string("Merge ``=((_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[ *0xabc..7]->(:`4esn`:@usn6)-[?{`7esn`:{``} Ends With .e12 Ends With 0.e0}]-(`4esn` {`2esn`:12 Starts With 7 Starts With $`5esn`})) On Create Set [`6esn` In 00 Where $`1esn`[$12][Count ( * )]].`5esn`? =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,_usn4 =Reduce(@usn5=True[7][$999],usn1 In 12.e12 In {0} In 9e1|.e12 =~$_usn4)[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])][[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]]] Foreach(@usn6 In {1000}[{usn1}][Null]| Load Csv With Headers From $`8esn`[..0x0][..``] As usn2 Delete Case 0Xa Contains Count ( * ) When 12e12 Starts With `1esn` Starts With usn2 Then 010 In `1esn` When 123456789 Ends With usn1 Ends With usn2 Then `1esn`[..\"d_str\"][..$`5esn`] End[..{`2esn`:Count(*)[.e12]}]) Foreach(usn2 In {`4esn`}[{`4esn`}..999]| Detach Delete 9e1[9e1...e0])"), + octest_legacy:ct_string("Return *,0X0123456789ABCDEF[9e12] As @usn5,Count(*)[.e12..] Skip (usn1 :@usn5)<-[_usn4?:usn2|#usn7{_usn4:{`1esn`} In 12.e12 In 9e1}]-(:usn2:`2esn`)[Extract(`1esn` In $12 Is Not Null Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`|12.0 =~$#usn7 =~9e12)] Limit (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})-[:`2esn` *1000{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(_usn3 :#usn8)-[:``]->({`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}}) Ends With 01234567 Detach Delete Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`])[(`3esn` :#usn7{`6esn`:{_usn4} Is Null,usn2:{`2esn`} Starts With @usn6})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`8esn`:@usn5)<-[@usn6?:`7esn`]->(:`2esn`{#usn7:#usn8 =~{999}})..Shortestpath((`8esn` {_usn4:{usn1} In Count ( * )})<-[`6esn`?]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})<-[@usn6?:`7esn`]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1}))][Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0[$#usn8...e12])..[`1esn` In $12 Is Not Null Where {usn1} In Count ( * )|$`3esn`[{``}..]]],{usn2}[`6esn`..01234567],All(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7]) Contains Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End Contains Reduce(`6esn`={_usn4} In {1000},usn1 In 12.e12 In {0} In 9e1|{`4esn`} Starts With $7 Starts With $``) Start `8esn`=Node:`4esn`(\"d_str\") ,#usn8=Relationship:`4esn`(``='s_str')"), + octest_legacy:ct_string("Load Csv With Headers From usn1 In 00 In {_usn3} As usn2 Fieldterminator 's_str' With Distinct {`8esn`}[..$`6esn`][..123.654],{@usn6} In {#usn7} In 12.e12 As usn1,0.12 Is Not Null Is Not Null Limit Reduce(`3esn`={_usn3} Is Not Null,usn1 In 12.e12 In {0} In 9e1|0[Count(*)][0e0])[`6esn`(``[..0X0123456789ABCDEF])..Single(`` In {`1esn`} Starts With @usn6 Where {_usn3}[$usn2..])] Union Merge @usn5=(({`3esn`:12 Starts With 0x0,`8esn`:0X7[0.e0][{`4esn`}]})-[`5esn` *0x0..]->(`8esn` :#usn7)) On Match Set `2esn`+=0X0123456789ABCDEF[{@usn5}..1.e1][$_usn3..{7}],`2esn` =True[7][$999],_usn3+=$usn2 Starts With $`5esn` On Match Set `4esn` ={999} Ends With {`5esn`} Ends With {0} Foreach(`` In 0X7[0X7..][Count ( * )..]| Unwind [`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*)] Starts With (`5esn` :`7esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`}) Starts With `6esn`(Distinct 12.e12[``..usn2][{#usn7}..@usn5],$`7esn` In 12) As @usn5) Return Distinct $`2esn`[{usn2}],$`5esn`[$#usn7..][0xabc..] Order By [0.12[..$`6esn`][..$1000],0.12 Starts With 9e12 Starts With $`1esn`,\"d_str\" Contains @usn6 Contains 12.e12] Is Null Ascending,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..])[..{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}][..Filter(`2esn` In {999} Is Not Null Where 010 In `1esn`)] Desc,{999} Ends With 123456789 Ends With {@usn5} Descending Limit $usn1 Contains {`8esn`} Contains $123456789"), + octest_legacy:ct_string("Merge `2esn`=((:`5esn`:@usn5)) On Create Set [12.e12[{7}..7],_usn3[\"d_str\"]]._usn4! =$``[..1.e1][..12],#usn7 =1.e1 Is Null,usn1+=Reduce(@usn5={`1esn`} In 12.e12 In 9e1,`5esn` In $`2esn`[12.e12][$@usn5]|$`6esn` Ends With {0} Ends With {`7esn`}) Is Null On Match Set Reduce(#usn8=Count ( * )[..12][..{@usn6}],`` In {`1esn`} Starts With @usn6|@usn6[{0}..]).@usn5 =$#usn7 =~{12} =~False"), + octest_legacy:ct_string("Merge Allshortestpaths((:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[_usn4? *07{1000}]-(`` )<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})) On Create Set ['s_str'[..0X7],False Contains 0.e0 Contains Count(*)].``? =$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`] Return *,Any(_usn4 In 0.0[..{999}][..0.0] Where Count(*) In {``})[..[$#usn7[`5esn`],.e1[@usn5]['s_str'],Count(*) Starts With $usn1 Starts With {usn2}]][..{usn2:$7 In @usn5 In {@usn5},`7esn`:{#usn7} Contains @usn5 Contains Count ( * )}] Order By $`4esn` In Null Descending,#usn8 =~{999} Asc Skip Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $#usn7[$`4esn`])[(usn1 :`6esn`:`8esn`)<-[_usn4?:`6esn` *0xabc..7$_usn3]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})][Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))] Match Allshortestpaths(((`2esn` :@usn6)<-[:#usn7|`2esn`]->(`1esn` :`6esn`:`8esn`{usn2:Count ( * )[..12][..{@usn6}]}))),#usn8=(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[?:`6esn` *01..07]->(#usn7 :#usn8{_usn3:`1esn`[..00][..{7}]})<-[:`1esn`|:`3esn` *1000]-($12) Using Join On `4esn`,`2esn` Where $@usn6 Contains `7esn` Union Delete 12e12 Ends With $999 Ends With 1e1,$`3esn`,1000 Merge usn1=(@usn6 :`2esn`)<-[ *..0Xa]->({`8esn`:Null In .e0}) On Create Set Allshortestpaths(((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]}))).`8esn`? =`6esn`[{`6esn`}..],@usn6+=Reduce(usn1=$#usn7 Ends With 0.12 Ends With {@usn6},_usn3 In {`2esn`} Ends With {12} Ends With 7|{0} Is Null) Is Not Null Is Not Null,Extract(usn1 In 12.e12 In {0} In 9e1 Where False Starts With 010|True Starts With $`4esn` Starts With 12e12).`7esn`? =0X0123456789ABCDEF Is Null Is Null"), + octest_legacy:ct_string("Remove Extract(_usn4 In `2esn` Where 123.654 Starts With $``).usn2 Unwind {`2esn`}[..{@usn6}][..1.e1] As #usn7 Return Distinct *,None(`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}])[[123.654[1e1..][{#usn8}..],$#usn7[123.654]]] As `1esn` Order By None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] Desc,Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 9e12 Is Not Null Is Not Null) Is Null Is Null Descending Skip Single(_usn3 In True[7][$999]) Is Not Null Is Not Null Limit $1000[..12.0][..0e0] Union All Match ((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]})),(((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`}))) Using Index `6esn`:`2esn`(`1esn`) Merge @usn5=Allshortestpaths(((:`2esn`)))"), + octest_legacy:ct_string("Start `2esn`=Relationship:`4esn`(``='s_str') Where 7 Contains `2esn` Contains $`8esn`"), + octest_legacy:ct_string("Create Unique `6esn`=(_usn3 {@usn5:.e12 =~.e0})-[?:`7esn`]-(usn2 :`4esn`:@usn6)-[?:@usn6|`` *1000]-(`5esn` :`7esn`),`3esn`=(((:_usn3{`8esn`:9e1 =~999})<-[@usn6?]->(`6esn` :_usn3)<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`))) Union All Create Unique Shortestpath((`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})),(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]}) Union Merge Shortestpath((`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})) Return Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))) =~Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) As _usn4,7[..$`1esn`][..00],{12} Starts With #usn8 Starts With 0e0 Order By $0 Starts With `2esn` Desc,0.12 In 0X7 Descending,12.e12 In $0 In $0 Desc Limit `6esn` In Null Load Csv From Reduce(`7esn`={@usn5} Is Null,#usn7 In 0Xa[@usn5][{`7esn`}]|0e0[0X0123456789ABCDEF..010][$@usn6..010]) Is Not Null Is Not Null As `3esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Merge (@usn6 :@usn5{usn2:{`6esn`} Ends With 0e0 Ends With {``}})<-[{`2esn`:``[{123456789}..]}]->(:_usn4) On Create Set `2esn`+=Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})],`3esn` =$12 Starts With $`8esn`,@usn5 =Reduce(#usn8={`8esn`}[..$`6esn`][..123.654],usn1 In 12.e12 In {0} In 9e1|\"d_str\" =~`1esn` =~{`5esn`}) Match @usn6=Allshortestpaths((:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}})),(:``) Using Index usn1:_usn3(``) Using Scan `1esn`:`3esn` Where 1e1[1.e1..][123.654..] Union All Create `8esn`=Shortestpath(({`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})),`4esn`=Allshortestpaths(((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))) Union Foreach(@usn6 In 9e12 In 1e1 In .e12| Remove {`1esn`:7 Is Null Is Null,@usn6:9e1 =~`` =~{`7esn`}}.`2esn`,(:@usn5{#usn7:{#usn7} In Count ( * ) In $#usn8})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(`4esn` :_usn4{`2esn`:#usn7 =~00}).#usn7!,`4esn`:_usn4 Remove Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 9e12 Is Not Null Is Not Null|_usn4[Count(*)]).`7esn`!,[#usn7 In 0Xa[@usn5][{`7esn`}] Where #usn7 Starts With $999|$@usn5[$`4esn`][$@usn6]].`2esn`!,Reduce(`2esn`=9e12 Ends With 123456789,`1esn` In 0.e0 =~`1esn` =~`6esn`|$`3esn` Contains 0 Contains 07).`7esn`?) Match @usn6=((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1))"), + octest_legacy:ct_string("Create Unique `3esn`=(((`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[usn1?:`4esn`|:#usn7 *0X7..0Xa]->({_usn4:01234567[..9e1]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}))) Foreach(`3esn` In {_usn4:$0[$1000..00][{0}..{usn1}]}[{`2esn`:$``['s_str'..][0x0..]}..]| Optional Match `1esn`=Allshortestpaths(((($_usn3)<-[``?:`3esn`|:@usn5{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(:@usn5{#usn7:{#usn7} In Count ( * ) In $#usn8})-[? *01..07]->(`8esn` :#usn7)))) Using Join On ``,`7esn`,#usn7 Where $`1esn`[$12][Count ( * )] Remove [`6esn` In 00 Where 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF].@usn5!,{usn1:$123456789 Starts With `5esn`}.`6esn`) Create Unique usn2=(`2esn` {@usn6:True Is Null Is Null})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)-[_usn3?:@usn6|`` *0x0..{`3esn`}]->(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}}),Shortestpath((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}))"), + octest_legacy:ct_string("Unwind {#usn7}[{#usn7}..][$`4esn`..] As `6esn` Merge ((:`8esn`:@usn5{`5esn`:$`8esn`[..$999][..0],#usn7:$1000 =~{1000} =~`5esn`})) Create Shortestpath(({``:.e1 Contains $`3esn`})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})),Allshortestpaths((:usn1:_usn4{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[`8esn`? *999]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})) Union Foreach(`6esn` In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000|$@usn5 In $usn2 In {1000}) Is Not Null| Create Unique @usn6=((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})<-[``?:#usn8|`2esn`]->(:`8esn`:@usn5)<-[#usn7]-(`3esn` :#usn7)),((#usn8 :usn1:_usn4)<-[usn1:usn1{`3esn`:\"d_str\" Ends With False Ends With {@usn6},`5esn`:`4esn` Contains #usn8 Contains 7}]->(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(`2esn` :#usn8{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})) Delete Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where 1.e1[12e12..{`6esn`}]|Count ( * )[..12][..{@usn6}]) Contains All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Contains Extract(_usn4 In `2esn` Where $999 Is Null),[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]] Is Not Null,Single(_usn3 In True[7][$999]) Is Not Null Is Not Null) Merge ((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})) On Match Set Reduce(#usn8=Count ( * )[..12][..{@usn6}],`` In {`1esn`} Starts With @usn6|@usn6[{0}..]).@usn5 =$#usn7 =~{12} =~False On Match Set [`6esn` In 00 Where $`1esn`[$12][Count ( * )]].`5esn`? =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,_usn4 =Reduce(@usn5=True[7][$999],usn1 In 12.e12 In {0} In 9e1|.e12 =~$_usn4)[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])][[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]]] Union Merge @usn5=Allshortestpaths(((:`2esn`)))"), + octest_legacy:ct_string("Remove Extract(_usn4 In `2esn` Where 0X0123456789ABCDEF[$`5esn`..]|$usn2 Ends With $`5esn`).`8esn`!,@usn6:`` Union Optional Match `8esn`=(({#usn7:#usn8 =~{999}})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})),((@usn5 )<-[#usn8? *..01234567]-($_usn3)) Using Join On ``,`7esn`,#usn7 Where True[$`7esn`..{1000}]"), + octest_legacy:ct_string("Return Distinct {`5esn`:2.12 =~0x0 =~_usn4,`3esn`:$@usn6 Contains `7esn`}[..(#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]})<-[`7esn`?:`7esn` *..7{`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})][..Any(_usn3 In {`2esn`} Ends With {12} Ends With 7)] As #usn8,12.e12 In {0} In 9e1 As #usn8 Order By #usn7[9e0] Ascending Skip #usn8 =~{999} Limit $`6esn`['s_str'..][{_usn4}..]"), + octest_legacy:ct_string("Start usn2=Node:#usn8(_usn3={#usn7}) Where 's_str'[_usn4..0x0] Foreach(_usn3 In `1esn`(Distinct $usn1 Starts With {_usn3},{#usn8}[$#usn7..]) Starts With [$_usn4[$`4esn`..$12]] Starts With [`6esn` In 00 Where 0.12 In 0X7|{999} Is Null]| Match `1esn`=Allshortestpaths((`6esn` :@usn5{`4esn`:{#usn8}[$#usn7..],`4esn`:0[{@usn5}..][7..]})),`1esn`=Allshortestpaths((((:`7esn`{`1esn`:{1000} In {123456789},`4esn`:010 In `1esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)))) Using Scan `2esn`:`2esn` Return Distinct Filter(`1esn` In `3esn`[07..] Where 12 Ends With 01)[..All(`3esn` In 123.654[1e1..][{#usn8}..] Where 0Xa Contains Count ( * ))] As usn2,{usn1}[01..7][{`3esn`}..`6esn`] Order By Reduce(`4esn`=@usn6[$_usn4],`8esn` In $12[{7}..0X0123456789ABCDEF]|0.12 Starts With 9e12 Starts With $`1esn`)[Reduce(usn2={`7esn`}[0X7..][0x0..],_usn3 In {`2esn`} Ends With {12} Ends With 7|01[..{`7esn`}][..01234567])][(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})-[_usn4 *0x0..]-(:#usn7{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})] Ascending,[.e12 Ends With 1000 Ends With 010,Count(*)] Ends With {`7esn`:$_usn3 =~{_usn4} =~$`6esn`} Ends With Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]) Descending Skip [`` In {`1esn`} Starts With @usn6 Where $123456789 Starts With $123456789 Starts With Count ( * )|{#usn8}[usn1][1.0]][Shortestpath((@usn6 {usn1:$#usn7 =~{12} =~False})-[`1esn`?:_usn3|`8esn` *0xabc..7]-(`4esn` :@usn6))..] Limit $`5esn`[`4esn`]) Union All Load Csv With Headers From Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Is Null Is Null As `2esn` Fieldterminator 's_str' Union All Start @usn6=Node:@usn5({usn1}) ,#usn8=Node:`6esn`(#usn8={@usn5})Where {7} Starts With $usn1 Starts With 1.0 Merge @usn6=((_usn4 :#usn8)<-[:#usn8|`2esn` *123456789..0X7{``:$#usn7 =~{12} =~False,`5esn`:{1000} In {123456789}}]->({`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF})<-[{``:\"d_str\"[{`8esn`}..]}]-(:#usn7{#usn7:$`8esn` In $`2esn` In {7}})) On Create Set _usn3 =1.e1[`4esn`..][$`6esn`..] Detach Delete \"d_str\"[..0.e0],{7}[$_usn4..Count ( * )],{#usn7} Contains 0.0 Contains $0"), + octest_legacy:ct_string("Unwind Filter(`1esn` In $12 Is Not Null Where Count(*)[..``][..#usn8]) Ends With Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}]) Ends With {`2esn`:usn1 Is Null Is Null,usn2:0.e0 =~`1esn` =~`6esn`} As _usn3 Load Csv With Headers From {``} Starts With 123456789 Starts With usn2 As `3esn` Union All Foreach(`3esn` In {@usn5} Starts With 1.0 Starts With 00| Detach Delete True Starts With $`2esn` Starts With {@usn6},.e12[\"d_str\"..][.e1..],$_usn3[..$`2esn`][..\"d_str\"])"), + octest_legacy:ct_string("Merge ((`8esn` :`8esn`:@usn5)<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})) On Create Set Filter(`1esn` In `3esn`[07..] Where 9e12 Is Not Null).@usn5! =07 =~$`8esn` =~9e1,`4esn` =Reduce(usn1=$#usn7 Ends With 0.12 Ends With {@usn6},_usn3 In {`2esn`} Ends With {12} Ends With 7|{0} Is Null) Is Not Null Is Not Null On Match Set Reduce(`3esn`={123456789}[12..][$12..],#usn7 In 0Xa[@usn5][{`7esn`}]|123.654[$`1esn`..Null][1000..{_usn3}]).`8esn`? =#usn8 =~{999},`5esn`+=`6esn`[$0][#usn8] Remove [{_usn3}[$usn2..],`5esn` Is Null Is Null,0.12 Contains 12.0].`3esn`,Shortestpath((@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})).``! Union All Detach Delete 123.654 Ends With usn2 Ends With 0,{usn1} In Count ( * ),0x0[{999}..`1esn`][0Xa..False] Start `5esn`=Rel( {_usn4}) Union All Start `7esn`=Node:`2esn`(#usn7={usn1}) ,usn2=Rel:`5esn`(\"d_str\")Where Null =~12e12 Load Csv From [1.e1 =~$usn2,@usn6[{0}..],@usn5[12.0][{1000}]][@usn6()..Case {@usn5}[..@usn6] When $`2esn` Starts With {`8esn`} Starts With {usn1} Then {``} Is Null Is Null Else 123456789 Ends With usn1 Ends With usn2 End] As `` "), + octest_legacy:ct_string("Foreach(usn1 In {`4esn`:12 Starts With {_usn4} Starts With $#usn8} =~Reduce(@usn5=$@usn6 =~#usn8,`5esn` In $`2esn`[12.e12][$@usn5]|{`1esn`} In 12.e12 In 9e1)| Start `3esn`=Relationship:`2esn`(#usn7={usn1}) ,`5esn`=Relationship:`7esn`({#usn8})) Merge (((`2esn` :@usn5{`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]-(:usn1:_usn4{`4esn`:01234567 In $123456789})-[`8esn`?]->({@usn6:$`` Starts With 12 Starts With $usn2}))) On Match Set `6esn`($usn1 Starts With $999 Starts With {@usn5},#usn7 =~00).usn2! =Case 0Xa[.._usn3][..$`6esn`] When {`4esn`}[$123456789..] Then {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] When {usn2}[$`4esn`] Then $1000 Starts With $`8esn` Starts With {`5esn`} Else @usn6[$_usn4] End[(`8esn` :`2esn`)-[`8esn`]->(`8esn` :`8esn`:@usn5)..],`7esn`+='s_str' Starts With 12e12 Starts With $_usn4,(#usn7 {`7esn`:12e12 Ends With `4esn` Ends With 123456789})<-[``{`3esn`:{`3esn`}[{`5esn`}]}]-({@usn5:``[{123456789}..]}).`8esn`? =Reduce(`4esn`=@usn6[$_usn4],`8esn` In $12[{7}..0X0123456789ABCDEF]|0.12 Starts With 9e12 Starts With $`1esn`)[Reduce(usn2={`7esn`}[0X7..][0x0..],_usn3 In {`2esn`} Ends With {12} Ends With 7|01[..{`7esn`}][..01234567])][(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})-[_usn4 *0x0..]-(:#usn7{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})] Create @usn6=((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1)) Union All Match `3esn`=(({#usn7:$0 Is Not Null})),`2esn`=Allshortestpaths(((_usn4 :#usn8))) Using Index @usn6:#usn8(`8esn`) Using Index usn2:`8esn`(`5esn`) Union With *,0X7[0.e0][{`4esn`}],usn1 Contains $7 Contains $`` Limit usn2 In `2esn` In $`7esn` Where {#usn7}[Count ( * )..12][$`2esn`..`4esn`] Merge `4esn`=(((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 :`4esn`:@usn6)<-[:`6esn` *0xabc..7{`8esn`:0X7[0X7..][Count ( * )..]}]-(#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"}))) Remove {#usn7:`2esn` Starts With `` Starts With 1e1}.@usn5!,{`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]}.@usn6"), + octest_legacy:ct_string("Merge @usn6=Shortestpath((:``{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})-[?:`4esn`|:#usn7]->(`1esn` :@usn6)<-[`1esn`?]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})) On Match Set `5esn` =Filter(`5esn` In $`2esn`[12.e12][$@usn5] Where 's_str'[.._usn4][..``]),{usn2:{`6esn`} Ends With 0e0 Ends With {``}}.``? =`7esn`[{7}..@usn5],`3esn`+={#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null Load Csv With Headers From {`4esn`} Contains $`1esn` Contains 01234567 As `8esn` Fieldterminator \"d_str\" Unwind {1000}[{#usn8}] As #usn8"), + octest_legacy:ct_string("Create Unique `6esn`=(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]})-[`3esn`?:#usn7|`2esn`]->(usn1 :`6esn`:`8esn`)-[`7esn`? *..0{`2esn`:07 =~$`8esn` =~9e1,``:`5esn`[0xabc..]}]->({`3esn`:{@usn5} Is Null,`5esn`:{`2esn`} Ends With {12} Ends With 7}),Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Match @usn5=($`5esn`)-[?:`3esn`|:@usn5]-(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Using Scan usn2:@usn5 Where True Is Null Is Null Merge _usn4=(((@usn6 {usn1:$#usn7 =~{12} =~False})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))) On Match Set #usn8+={123456789} Is Not Null,{#usn7:'s_str'[_usn4..0x0],`6esn`:$`6esn` Ends With {0} Ends With {`7esn`}}.`` =07 Is Not Null,usn2 ={usn2} =~@usn6 =~{`4esn`}"), + octest_legacy:ct_string("Remove Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where _usn4 Is Null Is Null).``!,Case 7 Contains $`` Contains {`6esn`} When {#usn8}[2.12] Then $``['s_str'..][0x0..] When $7 Ends With $`8esn` Then {`7esn`}[``..] Else {123456789}[12..][$12..] End.`6esn`! Unwind Extract(#usn7 In 0Xa[@usn5][{`7esn`}] Where $@usn5 In $usn2 In {1000}|{`2esn`}[..{@usn6}][..1.e1]) In Reduce(`5esn`=7[$0..][{_usn4}..],`` In {usn1} Ends With {`6esn`} Ends With 123456789|#usn8[$0..False][$`1esn`..$#usn7]) In Reduce(`8esn`=True Starts With $`2esn` Starts With {@usn6},`5esn` In $`2esn`[12.e12][$@usn5]|999 Ends With .e12 Ends With .e1) As `7esn` With `7esn`[{7}..@usn5],{@usn6} Contains 0e0,[$_usn4[9e0..]][`8esn`(Distinct {7} Starts With $usn1 Starts With 1.0)..Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} Starts With 1.0 Starts With 00|$#usn7[..@usn6][..$0])][Any(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{#usn8:{`7esn`} Is Not Null Is Not Null,`4esn`:12 Starts With 0x0}] As `1esn` Limit $#usn7[.e1..{7}] Where 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Union Match `6esn`=Allshortestpaths(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(:`2esn`{`6esn`:@usn6[{0}..]}))),`8esn`=({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]->(usn1 :`8esn`:@usn5{`1esn`:{#usn7} Contains 0.0 Contains $0,`2esn`:.e12[010..$123456789]})<-[_usn3?:@usn6|`` *0x0..{`3esn`}]-(@usn6 {`1esn`:01234567 In $123456789,`1esn`:{`6esn`}[..{`2esn`}]}) Using Scan `3esn`:`3esn` Where 999[12.0..][#usn7..]"), + octest_legacy:ct_string("Detach Delete {`4esn`:`7esn` Contains `5esn` Contains 0X7} Ends With Allshortestpaths((`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4)) Merge Shortestpath((((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})<-[`5esn`?:`7esn`]->({@usn5:Count ( * ) Is Null})<-[#usn8?:``]-(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})))) Union Return Distinct $`2esn`[{usn2}],`7esn` Ends With $_usn3 Ends With usn2 Order By $_usn3[..$`2esn`][..\"d_str\"] Desc Skip `4esn`[{1000}][{`5esn`}]"), + octest_legacy:ct_string("Start `3esn`=Relationship:`2esn`(#usn7={usn1}) ,`5esn`=Relationship:`7esn`({#usn8}) Unwind [False Starts With 010] Contains Extract(_usn3 In True[7][$999] Where 0e0[$#usn8...e12]|12 Is Not Null Is Not Null) Contains [`1esn` In $12 Is Not Null] As `` Match Shortestpath((({`2esn`:{7}[$7..],#usn7:`1esn` In 07})-[? *01..07]->({_usn4:{usn1} =~123.654 =~\"d_str\"}))),usn1=Allshortestpaths(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]}))) Where .e12 =~$_usn4 Union All Load Csv From $@usn6 Ends With 01 Ends With 999 As _usn3 Fieldterminator \"d_str\" Detach Delete usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3),[$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]][..Case {#usn8}[#usn7..{`2esn`}] When $7 Is Not Null Then $@usn6[$`8esn`..][7..] When $`4esn`[..'s_str'][..`8esn`] Then `7esn` Contains {@usn5} Contains $123456789 Else 12.e12 In $0 In $0 End] Union All Unwind Count(*)[..``][..#usn8] As #usn7"), + octest_legacy:ct_string("Create Allshortestpaths((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]})),((@usn6 :`7esn`)<-[``?:`6esn` *07{`5esn`:{12} Contains `7esn` Contains $_usn3,_usn4:$`3esn` In 9e12 In ``}]-({#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]})-[_usn3:#usn7|`2esn`]-(_usn3 :#usn8)) Union All Create `6esn`=(((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[?:`6esn`{`1esn`:{@usn5}[..{12}][..0x0],usn2:1000}]->(:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})<-[`1esn`?:usn2|#usn7 *..0]-(:@usn6{`4esn`:1.e1[{#usn8}]}))) Delete $@usn6[1.e1..`8esn`][Null..123456789]"), + octest_legacy:ct_string("Load Csv From $0 Is Not Null As `3esn` Fieldterminator 's_str' Start `5esn`=Rel:`4esn`('s_str') ,`6esn`=Node:_usn4(``=\"d_str\")Where $@usn5[$`4esn`][$@usn6]"), + octest_legacy:ct_string("Using Periodic Commit 00 Load Csv With Headers From 010 Ends With 01 Ends With {_usn3} As #usn8 Fieldterminator 's_str' Remove Extract(`2esn` In {999} Is Not Null Where {#usn7} In Count ( * ) In $#usn8|{usn1} =~123.654 =~\"d_str\").@usn5?,Case .e12[$#usn8..@usn6] When {12} =~0.e0 =~{_usn3} Then $7 In 1.0 In 1e1 End.`4esn`? Create Allshortestpaths((:usn1:_usn4{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[`8esn`? *999]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}))"), + octest_legacy:ct_string("Load Csv With Headers From $`2esn` Starts With {`8esn`} Starts With {usn1} As usn2 Fieldterminator 's_str' Return Distinct *,{`8esn`:{#usn8}[$#usn7..]}[Case 12.e12[``..usn2][{#usn7}..@usn5] When `3esn` Is Not Null Is Not Null Then 7 Contains `2esn` Contains $`8esn` Else $``[..1.e1][..12] End..] As `2esn`,0e0 Starts With $@usn6 Starts With $`6esn` Detach Delete Allshortestpaths(((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8?:``]-(`1esn` :`1esn`{`7esn`:{1000}[{usn1}][Null],`3esn`:7[$0..][{_usn4}..]})<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(usn1 {`4esn`:1.0[{999}][$999],``:9e1[9e1...e0]}))) Starts With (`7esn` )-[:_usn4|:usn1 *0X7..0Xa{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]}]-({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})"), + octest_legacy:ct_string("Match `3esn`=((#usn8 :@usn5)) Using Index #usn7:`8esn`(@usn6) Where 12.e12[$`8esn`..{`8esn`}] Foreach(`2esn` In {usn2}[`6esn`..01234567]| Remove Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where _usn4 Is Null Is Null).``!,Case 7 Contains $`` Contains {`6esn`} When {#usn8}[2.12] Then $``['s_str'..][0x0..] When $7 Ends With $`8esn` Then {`7esn`}[``..] Else {123456789}[12..][$12..] End.`6esn`!) Union Load Csv From $``[.e12..] As usn1 "), + octest_legacy:ct_string("Return Distinct $#usn7 Contains True Contains _usn4,.e1 Ends With {7} Ends With $usn1 As `` Limit {usn2}[`6esn`..01234567] Unwind `2esn`(Null In .e0)[_usn3(Distinct {@usn6}[$`7esn`..][False..])..[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]]] As `6esn` Union All Load Csv From {@usn5}[1e1..][9e1..] As `8esn` "), + octest_legacy:ct_string("Delete 0.0 In `6esn` In $@usn5,9e12 In 1e1 In .e12,1.0[..`4esn`][..{0}] Merge (((`8esn` {_usn4:{usn1} In Count ( * )})<-[``?:`3esn`|:@usn5{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(:`5esn`:@usn5)<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07}))) Delete 12 Starts With {_usn4} Starts With $#usn8,.e12 Ends With 1000 Ends With 010,[#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null Union Delete 12e12 Ends With $999 Ends With 1e1,$`3esn`,1000 Merge usn1=(@usn6 :`2esn`)<-[ *..0Xa]->({`8esn`:Null In .e0}) On Create Set Allshortestpaths(((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]}))).`8esn`? =`6esn`[{`6esn`}..],@usn6+=Reduce(usn1=$#usn7 Ends With 0.12 Ends With {@usn6},_usn3 In {`2esn`} Ends With {12} Ends With 7|{0} Is Null) Is Not Null Is Not Null,Extract(usn1 In 12.e12 In {0} In 9e1 Where False Starts With 010|True Starts With $`4esn` Starts With 12e12).`7esn`? =0X0123456789ABCDEF Is Null Is Null"), + octest_legacy:ct_string("Create Unique _usn3=((:@usn5{`3esn`:@usn5 =~'s_str',`1esn`:$`7esn` Contains {`1esn`} Contains 9e12})) Return Distinct $`6esn`[`8esn`][0.0] Order By {`7esn`}[0X7..][0x0..] Asc,Single(usn1 In 12.e12 In {0} In 9e1 Where `4esn` Contains #usn8 Contains 7) Ends With [123.654[$`1esn`..Null][1000..{_usn3}],#usn8[`7esn`..],$@usn6 Starts With {`1esn`} Starts With 12] Ends With {`4esn`:{usn1} In Count ( * )} Descending Skip Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $#usn7[$`4esn`])[(usn1 :`6esn`:`8esn`)<-[_usn4?:`6esn` *0xabc..7$_usn3]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})][Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))] Unwind {usn2} Starts With `` Starts With {0} As #usn7 Union With Distinct {`8esn`}[@usn5..][01..],All(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) In Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4]) In [``[00..$7],.e1 Contains $`3esn`,{``} Starts With 123456789 Starts With usn2] As `5esn` Order By [#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}][..[$`6esn`[`8esn`][0.0],$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,True[$`7esn`..{1000}]]][..None(`2esn` In {999} Is Not Null Where {``} Ends With .e12 Ends With 0.e0)] Desc,{@usn5}[Count(*)..] Asc,None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False)[Shortestpath(((({``:$7[{`1esn`}]})<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`)<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(#usn7 :@usn6))))..Extract(_usn3 In True[7][$999] Where $7 Is Null Is Null)][{`4esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:.e12 Is Null Is Null}..[`6esn` In Count(*) Ends With $`` Ends With {7} Where `1esn` =~1000 =~1000]] Descending Limit $`8esn` =~0x0 =~usn2 Where $_usn4 Ends With 0.e0 Ends With .e0 With 0xabc[$_usn3..],[$_usn4[9e0..]][`8esn`(Distinct {7} Starts With $usn1 Starts With 1.0)..Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} Starts With 1.0 Starts With 00|$#usn7[..@usn6][..$0])][Any(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{#usn8:{`7esn`} Is Not Null Is Not Null,`4esn`:12 Starts With 0x0}] As `1esn` Order By $_usn4 Is Null Is Null Asc,.e1 Contains $`3esn` Descending,$_usn3 =~{_usn4} =~$`6esn` Ascending Skip $usn2 In 123.654 In .e0"), + octest_legacy:ct_string("Return Distinct $1000[\"d_str\"..$999][$`3esn`..{`3esn`}] Order By (:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) Desc,{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}[Reduce(`1esn`={usn1} In Count ( * ),`` In {usn1} Ends With {`6esn`} Ends With 123456789|0[{usn2}..][usn1..])][[`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12]|{``} Starts With 123456789 Starts With usn2]] Ascending Remove {usn2:7 In 1.e1 In $usn1}.`4esn`!,All(_usn4 In 0.0[..{999}][..0.0] Where #usn8 Is Null).`8esn`? Union Start `5esn`=Node:#usn8(#usn7='s_str') ,`5esn`=Node:_usn3(_usn3='s_str')Where {#usn7}[Count ( * )..12][$`2esn`..`4esn`] Union Remove {#usn8:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]}.usn1 Detach Delete Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`])[(`3esn` :#usn7{`6esn`:{_usn4} Is Null,usn2:{`2esn`} Starts With @usn6})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`8esn`:@usn5)<-[@usn6?:`7esn`]->(:`2esn`{#usn7:#usn8 =~{999}})..Shortestpath((`8esn` {_usn4:{usn1} In Count ( * )})<-[`6esn`?]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})<-[@usn6?:`7esn`]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1}))][Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0[$#usn8...e12])..[`1esn` In $12 Is Not Null Where {usn1} In Count ( * )|$`3esn`[{``}..]]],{usn2}[`6esn`..01234567],All(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7]) Contains Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End Contains Reduce(`6esn`={_usn4} In {1000},usn1 In 12.e12 In {0} In 9e1|{`4esn`} Starts With $7 Starts With $``)"), + octest_legacy:ct_string("Detach Delete All(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) In Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4]) In [``[00..$7],.e1 Contains $`3esn`,{``} Starts With 123456789 Starts With usn2],[`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7}|usn2[`7esn`..{`3esn`}][$7..{#usn7}]][..[`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]|9e12[..0X7]]][..[`2esn` Ends With $`4esn` Ends With {#usn7},'s_str'[..0X7],{#usn8} =~{999} =~{#usn7}]] Optional Match (`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})-[``:usn2|#usn7 *..0Xa]->(:`4esn`:@usn6{usn1:$7[{`1esn`}],#usn8:\"d_str\"[..0.e0]}),`3esn`=Allshortestpaths((:`3esn`:`6esn`{_usn4:{usn1} In Count ( * )})) Using Index @usn6:#usn8(_usn4) Using Join On `6esn`,usn2,`5esn`"), + octest_legacy:ct_string("Create `2esn`=(:_usn3{#usn7:#usn8 =~{999}}),Shortestpath(((:#usn8{``:12.e12[$`4esn`..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]}))) Return $`2esn`[12.e12][$@usn5],12 Starts With $#usn7,(#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..] Order By @usn5 In 1e1 Asc Limit {_usn4}[...e12][..0xabc] Union All Detach Delete 123.654[{`7esn`}][{7}],Count ( * ) Starts With 010 Starts With 0x0 Match `2esn`=(_usn3 :@usn5),(@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]}) Using Scan `3esn`:_usn3 Where $`` Starts With 12 Starts With $usn2 Foreach(`3esn` In 0X0123456789ABCDEF[$`5esn`..]| With Distinct $`2esn`[12.e12][$@usn5],12 Starts With $#usn7,(#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..] Where 0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] Create `8esn`=((:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *..00{#usn7:`4esn`[usn1]}]-(:@usn5{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12})),_usn4=(((#usn8 )-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))))"), + octest_legacy:ct_string("Detach Delete usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3),Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12]) Union Create ((({usn2:`1esn` In 07})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}))) Load Csv From $`1esn` =~$`1esn` =~{`6esn`} As `7esn` Delete Single(`8esn` In $12[{7}..0X0123456789ABCDEF])[Case 9e1[123456789..] When 12 Starts With 7 Starts With $`5esn` Then {_usn3} Contains True Contains 0X7 When `1esn`[..00][..{7}] Then 1.e1[12e12..{`6esn`}] End..],123456789 Is Not Null Is Not Null,$usn2"), + octest_legacy:ct_string("Return *,1.e1 Starts With $`2esn` Starts With $0 Create Allshortestpaths(((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)))"), + octest_legacy:ct_string("Start _usn3=Node(01,0x0,0X7,0X7) ,`2esn`=Relationship:_usn4(usn1={_usn4})Where $`8esn`[..$999][..0] Union All Match _usn4=Allshortestpaths(((:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})-[?:#usn8|`2esn` *999{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({@usn6:#usn8[$0..False][$`1esn`..$#usn7]})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}))) Using Join On _usn3 Using Scan `6esn`:``"), + octest_legacy:ct_string("Create Unique Shortestpath((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->({_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})),Allshortestpaths(({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) Start @usn5=Node:``(#usn7=\"d_str\") ,#usn8=Relationship:`4esn`(``='s_str')Where $``[..1.e1][..12] Union All Create Unique ((`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]-(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->({_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})) Create @usn6=Shortestpath(((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}))),(`6esn` :#usn8) With {1000}[\"d_str\"..{@usn5}][$1000..$#usn8] Order By 0.12[999][$#usn8] Descending,`7esn`[..$`5esn`][..{`5esn`}] Desc Limit {`1esn`:{123456789}[12..][$12..]} =~{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF} =~[`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`|_usn3[\"d_str\"]] Where 1.0 Is Null Is Null Union Foreach(`3esn` In `2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}]| Match Shortestpath(({`3esn`:0.e0[{999}][{`1esn`}],`1esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[:usn2|#usn7 *0X7..0Xa]->(#usn7 :@usn5)),`3esn`=(((`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[usn1?:`4esn`|:#usn7 *0X7..0Xa]->({_usn4:01234567[..9e1]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}))))"), + octest_legacy:ct_string("Start `6esn`=Node:@usn6(_usn4={_usn4}) ,`8esn`=Node:`8esn`('s_str')Where 07[`8esn`] With [`1esn` In `3esn`[07..] Where @usn6[{0}..]|0.e0[12.e12]] Contains {usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF} As @usn6,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $`5esn`[$#usn7..][0xabc..]) Contains All(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}]) As #usn8 Order By {#usn8} Contains 1000 Contains $`4esn` Ascending,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Ascending Where 123456789[0..]"), + octest_legacy:ct_string("With Distinct *,{`6esn`} Contains {usn2} Contains $1000 As `2esn` Order By $`5esn`[`1esn`][0X0123456789ABCDEF] Ascending,Count(*)[usn2..][$#usn8..] Asc Where 0X7 Starts With {999} Starts With 12e12 Create `7esn`=((`1esn` :#usn7)) Load Csv With Headers From {_usn3}[$usn2..] As `` Fieldterminator 's_str' Union All Unwind $0 Ends With False Ends With $_usn4 As `1esn` Merge `6esn`=Shortestpath(((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1))) Optional Match `1esn`=Allshortestpaths((((#usn7 :@usn5)<-[`4esn`?*..]-(:`4esn`:@usn6{`3esn`:123456789 Is Not Null Is Not Null})-[#usn8:`` *..0{@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})))),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` )) Where 00[..$123456789][..$`5esn`] Union All Detach Delete $1000 Is Not Null Is Not Null,$`7esn` Is Null Is Null,_usn4 Is Not Null Is Not Null"), + octest_legacy:ct_string("Create Unique @usn6=Allshortestpaths(((:#usn8{#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})-[_usn4 *0x0..]-(:#usn7{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}}))),Shortestpath((`5esn` )<-[`3esn` *..010]-(:@usn5{`2esn`:True[$123456789][`8esn`]})) Union All Load Csv From `6esn` Starts With 123.654 As `8esn` Fieldterminator \"d_str\" Unwind Filter(`3esn` In 123.654[1e1..][{#usn8}..] Where $7 Is Not Null) Is Null Is Null As #usn8"), + octest_legacy:ct_string("Merge Shortestpath(({`8esn`:0[$`6esn`...e1][`1esn`..$`7esn`]})-[#usn8:#usn7|`2esn`]->(:@usn6{`2esn`:$999 In 999})) On Match Set `7esn`+=Reduce(@usn5=True =~{`1esn`},_usn4 In 0.0[..{999}][..0.0]|7[$0..][{_usn4}..]) In Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`) In All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) On Match Set `6esn` ={_usn3}[usn1][0],Shortestpath((@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})).@usn5? =\"d_str\" Contains @usn6 Contains 12.e12,`7esn`+=`3esn`[..{_usn4}][..{@usn5}] Union All Load Csv With Headers From .e0[0.12] As _usn4 Start `4esn`=Node:@usn6(`5esn`={1000}) Where {@usn5}[1e1..][9e1..] Union All Remove `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null).`3esn`! Delete 0e0[..$@usn5][..$`8esn`]"), + octest_legacy:ct_string("Unwind .e0 =~{`8esn`} =~$999 As _usn4 Create ``=Allshortestpaths(((:usn1:_usn4)-[`1esn`:`1esn`|:`3esn` *01..07{`3esn`:123456789 Is Not Null Is Not Null}]-(`1esn` {@usn5:$usn1 In 0.12 In $``})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`))),Allshortestpaths(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(usn1 :`8esn`:@usn5)-[? *0x0..{`6esn`:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-({`2esn`})) With `7esn` Contains `5esn` Contains 0X7 As `1esn`,#usn7(01 =~$`1esn`) =~{@usn6:12.e12[$`8esn`..{`8esn`}],#usn8:#usn7 =~00} As `5esn`,{@usn6}[$`7esn`..][False..] Order By $@usn6 =~#usn8 Descending,{1000} Ends With {`8esn`} Ascending Skip 1000[$7..$123456789] Limit 9e12[..0X7]"), + octest_legacy:ct_string("With Distinct (@usn5 {`2esn`:1.e1 =~9e12 =~`4esn`})<-[@usn5?:usn1 *..010{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}]->(`8esn` :`1esn`{usn2:0.0 Is Not Null,usn2:0.12[Count(*)..][$#usn7..]})-[`5esn`{`7esn`:@usn5[..$@usn5][..0Xa]}]->(#usn7 :#usn8{_usn3:`1esn`[..00][..{7}]}) In Case When .e0[True..Count ( * )][#usn7..0X7] Then $@usn5[`6esn`..] When 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF Then $`1esn`[#usn8][$@usn5] End In @usn6(`` Ends With $`4esn` Ends With 0X0123456789ABCDEF),{`1esn`:{`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`],`5esn`:0.12 Contains 12.0} Ends With [{usn2},0.12[Count(*)..][$#usn7..]] Ends With {0},$`2esn` Ends With 0.12 Ends With .e1 As `` Limit {_usn3} Contains $`1esn` Contains 12.0 Where {999} Is Null Create Unique usn2=(((:`2esn`{`4esn`:`3esn` Is Not Null Is Not Null})-[?:#usn7|`2esn` *0x0..]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5))) Merge `1esn`=(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}) On Match Set Any(_usn4 In `2esn` Where 0X0123456789ABCDEF[9e12]).`5esn`! =(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) On Match Set `3esn`(Distinct 's_str' Starts With 12e12 Starts With $_usn4).`3esn` =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End"), + octest_legacy:ct_string("Foreach(`3esn` In {usn1} In Count ( * )| With Distinct *,{`6esn`} Contains {usn2} Contains $1000 As `2esn` Order By $`5esn`[`1esn`][0X0123456789ABCDEF] Ascending,Count(*)[usn2..][$#usn8..] Asc Where 0X7 Starts With {999} Starts With 12e12 With *,$999[07..{#usn7}][1e1..0xabc] As #usn8 Order By None(@usn5 In Null =~12e12 Where #usn8[`7esn`..])[{123456789}..][All(`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0})..] Ascending Skip Single(`6esn` In 00 Where $_usn4 Ends With 0.e0 Ends With .e0) Contains Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End) Union All Match @usn6=Allshortestpaths(({`4esn`:#usn8 Is Null})),(({`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})) Using Scan `1esn`:`7esn` Match ``=Allshortestpaths((((`6esn` :@usn5)<-[`4esn`?*..]-(:`4esn`:@usn6{`3esn`:123456789 Is Not Null Is Not Null})-[_usn4?:`3esn`|:@usn5]->(:@usn5{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12})))) Using Scan usn2:@usn5 Where 0 Contains $usn2 Contains 12e12 Create Unique Shortestpath(((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))),`5esn`=Allshortestpaths(((:`7esn`{usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})<-[`8esn`?:`4esn`|:#usn7]->({`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]})-[usn2 *07{usn1:07 =~@usn5}]->({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})))"), + octest_legacy:ct_string("Merge Allshortestpaths((((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})))) Union Create Unique Shortestpath((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->({_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})),Shortestpath(((usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}))) Detach Delete Reduce(@usn5=0.e0 Contains #usn7,`` In {usn1} Ends With {`6esn`} Ends With 123456789|$999 In 999)[Allshortestpaths(({`4esn`:#usn8 Is Null})-[:usn1{_usn4:0[{usn2}..][usn1..],`3esn`:12 Starts With 7 Starts With $`5esn`}]-(`7esn` :`3esn`:`6esn`)<-[`6esn`?:#usn8|`2esn`*..{`5esn`:@usn5 =~'s_str'}]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}))..{@usn6:0.0 Is Not Null Is Not Null,#usn7:\"d_str\"[{`8esn`}..]}],Single(_usn3 In True[7][$999]) Is Not Null Is Not Null Union All Load Csv With Headers From Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})] As @usn5 Fieldterminator \"d_str\" Return Distinct *,(#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..],[`1esn` In $12 Is Not Null Where {`3esn`}[{`5esn`}]|True Is Not Null Is Not Null] Ends With Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End Ends With `3esn`(Distinct 1.e1 =~$usn2,0X0123456789ABCDEF Is Null Is Null) As `5esn` Limit `2esn`(Null In .e0)[_usn3(Distinct {@usn6}[$`7esn`..][False..])..[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]]]"), + octest_legacy:ct_string("Start _usn3=Node( {usn2}) ,`8esn`=Rel( {`7esn`})Where {0} Is Null Detach Delete 0.12 Ends With {1000} Ends With `6esn`,$@usn5[usn2..][$0..] Return Distinct *,.e0 =~{`8esn`} =~$999 As #usn7,010 In $`5esn` In 0 As `6esn` Order By $usn1 In 0.12 In $`` Descending,Count ( * ) Contains 12 Descending Skip $`` In `7esn` Limit [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]][Shortestpath(((`1esn` :`7esn`)<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})))..]"), + octest_legacy:ct_string("Create Unique @usn5=Allshortestpaths(((_usn3 {@usn5:.e12 =~.e0})<-[`3esn` *..010]-({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))) Detach Delete {999}[$123456789..][12..],$`6esn`[..1.e1][..1e1]"), + octest_legacy:ct_string("Foreach(#usn7 In {_usn3}[`3esn`..$#usn8]| With Distinct (`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] Order By `1esn`[..00][..{7}] Ascending,`6esn` In Null Descending,{`3esn`} Is Null Descending Skip Case When .e1[@usn5]['s_str'] Then 123456789 Starts With {@usn6} Starts With $12 End Contains [`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`] Contains {@usn5:12 Is Not Null,`2esn`:$999 In 999} Where @usn5 Is Not Null Is Not Null) Union All With *,0.e0 Contains #usn7 Order By $_usn4[9e0..] Asc,12 In 999 Descending Limit {`2esn`} Starts With @usn6 Foreach(`1esn` In 0x0 =~123.654 =~{999}| Create Unique @usn5=((`4esn` {`8esn`:0Xa[@usn5][{`7esn`}]})<-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(`3esn` :#usn7)<-[`1esn`?:`4esn`|:#usn7 *..01234567]-(#usn8 {#usn7:$1000 Is Not Null Is Not Null})) Match #usn8=(({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`)),usn2=(`4esn` {_usn4:12 Starts With {_usn4} Starts With $#usn8,_usn4:$@usn5[$`4esn`][$@usn6]})<-[? *0X7..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Using Index @usn6:`4esn`(`6esn`))"), + octest_legacy:ct_string("Unwind 0X0123456789ABCDEF[7...e0][`1esn`..usn2] As `` Remove Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn1 Starts With {_usn3}|{123456789}[12..][$12..]).usn1?,[$``[..1.e1][..12],7 Contains $`` Contains {`6esn`}].`7esn`!"), + octest_legacy:ct_string("Detach Delete {_usn3}[$usn2..] Union All Start `4esn`=Rel:`1esn`(@usn5={`5esn`}) ,`4esn`=Node(01234567,0Xa,07)Where @usn6[{0}..] Union All Remove [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12].`2esn`,[usn1 Contains $7 Contains $``,$@usn5 In 's_str' In $12,$`1esn` Is Not Null Is Not Null].usn2!,All(`1esn` In `3esn`[07..] Where 999 Starts With 's_str').#usn8! Remove Extract(`` In {`1esn`} Starts With @usn6 Where Null[{_usn4}..]|0Xa Contains {`7esn`} Contains $999).`5esn`!,All(`5esn` In $`2esn`[12.e12][$@usn5] Where {999} Starts With {12}).`2esn`,Reduce(`3esn`={7} Starts With $usn1 Starts With 1.0,_usn3 In True[7][$999]|123.654[{@usn5}..123.654][1.0..$12]).#usn8 Foreach(`` In {123456789} =~01234567 =~`3esn`| With (`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] Order By `1esn`[..00][..{7}] Ascending,`6esn` In Null Descending,{`3esn`} Is Null Descending Skip Case When .e1[@usn5]['s_str'] Then 123456789 Starts With {@usn6} Starts With $12 End Contains [`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`] Contains {@usn5:12 Is Not Null,`2esn`:$999 In 999} Where $``[..1.e1][..12] Start @usn5=Node:``(#usn7=\"d_str\") ,#usn8=Relationship:`4esn`(``='s_str')Where $``[..1.e1][..12])"), + octest_legacy:ct_string("Remove `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null).`3esn`! Delete 0e0[..$@usn5][..$`8esn`] Union Remove Shortestpath((_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}})).#usn8?"), + octest_legacy:ct_string("Unwind $usn2 As `5esn` Union Merge `2esn`=Allshortestpaths((((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})<-[_usn4?:usn2|#usn7{_usn4:{`1esn`} In 12.e12 In 9e1}]-(:usn2:`2esn`)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]})))) On Create Set Case $`1esn`[07] When Null =~12e12 Then $``['s_str'..][0x0..] Else Null Is Null Is Null End.usn2? =0X0123456789ABCDEF[9e12],`4esn`+=12.e12[$`4esn`..],`8esn` =$usn1[0X7] On Match Set [1.e1 =~$usn2,$`5esn`[`1esn`][0X0123456789ABCDEF],$0[`7esn`]].`5esn`? =@usn5[$12..\"d_str\"],_usn3+=$`1esn`[$12][Count ( * )]"), + octest_legacy:ct_string("Load Csv With Headers From [`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]][..{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}][..`4esn`(123.654[$`1esn`..Null][1000..{_usn3}])] As @usn5 Fieldterminator \"d_str\" Union Unwind Case {`1esn`} Is Not Null When 9e12 =~123456789 =~$999 Then 999[12.0..][#usn7..] When `4esn` Contains #usn8 Contains 7 Then `2esn` Starts With `` Starts With 1e1 Else Count(*) Ends With $`` Ends With {7} End In Reduce(`8esn`=00[..$123456789][..$`5esn`],`` In {`1esn`} Starts With @usn6|False[999]) In Reduce(``=12 Starts With $#usn7,`6esn` In 00|False Contains $#usn8 Contains 9e1) As `` Foreach(`2esn` In Case When 0X0123456789ABCDEF[7...e0][`1esn`..usn2] Then $1000 Starts With $`8esn` Starts With {`5esn`} When usn2 =~0X7 =~{#usn7} Then {`2esn`} In $123456789 In True End[Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`)]| Create Unique usn2=((:`7esn`{999})-[? *01..07]->({_usn4:{usn1} =~123.654 =~\"d_str\"})) With *,$@usn5 In 's_str' In $12 As `2esn`,Count ( * )[{12}..{@usn5}][{#usn8}..Null] As `5esn` Order By {12} Contains 9e0 Descending,`5esn`(0X0123456789ABCDEF[9e12])[[`8esn` In $12[{7}..0X0123456789ABCDEF] Where $``['s_str'..][0x0..]]..None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`8esn`}[0X7][$`3esn`])][Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000})..Case 7 Is Null Is Null When usn1 Contains $7 Contains $`` Then 12e12 Is Not Null End] Descending Skip [usn1 In 12.e12 In {0} In 9e1 Where {usn1} In Count ( * )][{_usn3:.e1 Ends With 0Xa Ends With .e1,`2esn`:12e12 Starts With `1esn` Starts With usn2}..] Where $#usn7[..@usn6][..$0])"), + octest_legacy:ct_string("Unwind None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] As _usn3 Start `4esn`=Rel:`7esn`(usn2='s_str') Create Unique _usn3=(((`7esn` :#usn7{`5esn`:_usn4 Is Null Is Null})-[`2esn`:`2esn`{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})-[{``:\"d_str\"[{`8esn`}..]}]-(:`4esn`:@usn6{@usn6:Count(*)[..``][..#usn8]}))),#usn8=(((:@usn5{@usn6:{7} Contains $123456789})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})-[`3esn`:`6esn`{`3esn`}]-(#usn8 :`6esn`:`8esn`{`1esn`:9e12 Is Not Null,_usn4:0X0123456789ABCDEF[$`2esn`..][`2esn`..]})))"), + octest_legacy:ct_string("Start @usn6=Relationship:_usn3({`2esn`}) ,`7esn`=Node:usn2(usn2='s_str')Where 7 Contains $`` Contains {`6esn`} Remove [$7 Is Not Null,Count(*) Ends With 123.654 Ends With $12,$`1esn`[07]]._usn3,[9e12 Ends With 123456789].`1esn`!,[999 Ends With .e12 Ends With .e1,{_usn3}[..$`8esn`]].@usn6? Union Remove {usn2:_usn4 Is Null}.`7esn`,Case When ``[{123456789}..] Then `1esn` =~1000 =~1000 End._usn4?,{`4esn`}.`2esn`? Unwind $0 Is Not Null As usn2 Start usn1=Node:`6esn`({`8esn`}) Where 07[..`6esn`][..'s_str']"), + octest_legacy:ct_string("Remove Reduce(#usn8=$#usn7 =~{12} =~False,`1esn` In `3esn`[07..]|{usn2}[$`4esn`]).`4esn`,(_usn4 :#usn7{`8esn`:$999 Contains {7}})<-[#usn7{#usn8:{`1esn`} Is Not Null}]->(`8esn` {`3esn`:'s_str'[..0X7]}).``!,Extract(`6esn` In 00 Where 0Xa[0e0..{#usn7}]).@usn6! Unwind Count ( * )[\"d_str\"][_usn3] As `5esn` Union Load Csv With Headers From 's_str'[$usn2][Count(*)] As `5esn` Remove {`5esn`:01234567[..9e1]}.#usn8!,[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $`8esn`[..$999][..0]].@usn6!,None(#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}).`6esn`"), + octest_legacy:ct_string("Load Csv With Headers From 123.654 Starts With $`` As `7esn` Create (((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}))),(((`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})-[_usn3?*..{#usn7:#usn8 =~{999},`8esn`:{_usn3}[`3esn`..$#usn8]}]->({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})-[@usn6 *07{`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}]->({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]}))) Load Csv With Headers From 0.12[999][$#usn8] As usn1 "), + octest_legacy:ct_string("With 2.12 =~0x0 =~_usn4 Limit [123456789[0..]] Ends With Any(`1esn` In $12 Is Not Null) Ends With @usn5(Distinct 1.e1[{#usn8}],123.654 Ends With usn2 Ends With 0) Where `3esn`[..{_usn4}][..{@usn5}] Create `7esn`=Allshortestpaths(((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1))),@usn6=((`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]})<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)<-[`1esn`?:`4esn`|:#usn7 *..01234567]-(#usn8 {#usn7:$1000 Is Not Null Is Not Null})) Union Optional Match ((@usn6 :#usn7{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})-[`2esn`?:`` *999{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12}]-(usn2 {`7esn`:{usn1}[$`8esn`..0.0]})) Where `3esn`[..{_usn4}][..{@usn5}] Remove (_usn4 :#usn8{`5esn`})-[?*..{`1esn`:$`1esn`[07..][9e12..],@usn6:{7} Starts With $usn1 Starts With 1.0}]->(:`3esn`:`6esn`).usn2?,usn2($123456789[$`5esn`][$_usn4],#usn7 Starts With $999).@usn5? Create Unique `6esn`=(`4esn` {`2esn`:@usn5[$12..\"d_str\"]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]-({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})"), + octest_legacy:ct_string("Create Unique (((:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})<-[:``]-(_usn3 :`7esn`)<-[ *0xabc..7]->({#usn7:123456789[0..]}))),((:#usn8{#usn8:`3esn` Is Not Null Is Not Null})) Union Match Allshortestpaths((({`5esn`:0Xa[0e0..{#usn7}]})<-[?:``]-(`7esn` :`3esn`:`6esn`))),(usn1 :usn2:`2esn`{`1esn`:{123456789}[12..][$12..]}) Using Index `1esn`:`4esn`(`1esn`) Where $_usn3[{999}]"), + octest_legacy:ct_string("Merge #usn8=((#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]})) On Match Set Reduce(#usn8=Count ( * )[..12][..{@usn6}],`` In {`1esn`} Starts With @usn6|@usn6[{0}..]).@usn5 =$#usn7 =~{12} =~False On Match Set @usn5 =`2esn`[$1000..9e12][{#usn8}..{7}] Create Shortestpath(((_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})))"), + octest_legacy:ct_string("Foreach(_usn3 In 123456789[12..$`4esn`]| Detach Delete {`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}[Case When 1.e1[0X0123456789ABCDEF..] Then `6esn`[..{999}] When {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`] Then $#usn7 Ends With 0.12 Ends With {@usn6} End..Filter(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null)],Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})]) Unwind `5esn`[..9e0][..01234567] As @usn5 Create Unique @usn6=Shortestpath(((usn1 :`5esn`:@usn5)-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:usn2:`2esn`{usn1:$7 Is Null Is Null})-[? *01..07]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}))),((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]})) Union All Optional Match Allshortestpaths(({`4esn`:#usn8 Is Null})) Using Index `3esn`:#usn8(`2esn`) Using Scan `1esn`:`3esn` Unwind `7esn`[{7}..@usn5] As @usn5 Union All Merge `8esn`=((`5esn` )) On Match Set (:usn1:_usn4{`4esn`:#usn7 Starts With 1000 Starts With .e1})-[`7esn`]->(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}).``? =$`2esn`[{usn1}..],None(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e12 =~$_usn4).`7esn`! =Reduce(@usn5=True[7][$999],usn1 In 12.e12 In {0} In 9e1|.e12 =~$_usn4)[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])][[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]]] On Create Set _usn4+=0.12[Count(*)..][$#usn7..],None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]).@usn6! =[$`1esn`[$12][Count ( * )],9e1 Ends With $@usn5 Ends With $123456789] Is Not Null Is Not Null Start @usn6=Node:@usn5({usn1}) ,#usn8=Node:`6esn`(#usn8={@usn5})Where {7} Starts With $usn1 Starts With 1.0"), + octest_legacy:ct_string("With Distinct *,$@usn5 In 's_str' In $12 As `2esn`,Count ( * )[{12}..{@usn5}][{#usn8}..Null] As `5esn` Order By $@usn5[..usn2][..$#usn7] Descending,7[..$`1esn`][..00] Desc,{0}[{@usn6}..{123456789}] Asc Limit {`4esn`:`7esn` Contains `5esn` Contains 0X7} Ends With Allshortestpaths((`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4)) Where ``[..0X0123456789ABCDEF] Union All Unwind 9e0[#usn8] As `2esn` Union All Delete $usn2,`8esn` Is Null Is Null"), + octest_legacy:ct_string("Match `5esn`=Shortestpath(((#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]}))),@usn6=((usn1 :`8esn`:@usn5{`1esn`:{#usn7} Contains 0.0 Contains $0,`2esn`:.e12[010..$123456789]})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})<-[?:usn2|#usn7]->(#usn8 :#usn7)) Using Index usn2:``(#usn8) Using Join On ``,usn1,usn2 Where @usn5 In 1e1 Start `7esn`=Node:usn1({999}) Delete 1000 Is Not Null"), + octest_legacy:ct_string("Detach Delete {@usn5}[..{_usn4}][..$@usn5],0Xa Is Not Null Is Not Null,{usn2}[`6esn`..01234567] Unwind #usn8['s_str'..][123.654..] As _usn4 Create _usn4=((`2esn` :@usn6)-[_usn3?:@usn6|``]-(usn2 )<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})),`5esn`=Allshortestpaths(((:_usn4)<-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]->(_usn4 {_usn3:`1esn`[..00][..{7}]})))"), + octest_legacy:ct_string("Load Csv With Headers From {`7esn`:{999} Starts With {12},`3esn`:00} =~[0X0123456789ABCDEF[$`5esn`..],#usn7 Ends With $#usn7 Ends With {`8esn`}] =~[{12} =~0.e0 =~{_usn3},$#usn7 =~{12} =~False,1000 Is Null] As `6esn` Fieldterminator 's_str' With Distinct Reduce(#usn7={`1esn`} Starts With `4esn` Starts With {0},`3esn` In 123.654[1e1..][{#usn8}..]|9e12[$`5esn`]) As `3esn` Skip \"d_str\"[..0.e0] Limit ({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..`2esn`(Distinct #usn8[`7esn`..])][..[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]]] Create Unique Allshortestpaths((#usn8 :`7esn`))"), + octest_legacy:ct_string("Match _usn4=Allshortestpaths(((:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})-[?:#usn8|`2esn` *999{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({@usn6:#usn8[$0..False][$`1esn`..$#usn7]})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}))),#usn8=((`2esn` :@usn6)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)<-[`1esn`:`8esn`|:_usn4 *123456789..0X7$12]->(:`1esn`{`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})) Using Index usn1:usn1(`4esn`) Using Join On `3esn` Start @usn6=Relationship:`1esn`({@usn5}) Union All Load Csv From Filter(`1esn` In $12 Is Not Null Where {@usn5}[1e1..][9e1..]) Starts With [{@usn6} Contains 123.654 Contains 01,$`2esn` Starts With {`8esn`} Starts With {usn1}] Starts With All(`1esn` In $12 Is Not Null Where 12.e12[{@usn5}..][9e1..]) As `5esn` Remove {_usn4:12.e12[2.12..][0xabc..],_usn4:$_usn4[{``}..][1e1..]}.`5esn`!,[$7[{`1esn`}],$_usn4[$`4esn`..$12]].`2esn`? Union Remove Filter(`1esn` In `3esn`[07..] Where {0} =~12.0).``!,{usn2:$`5esn`[`4esn`][_usn3]}.@usn6?"), + octest_legacy:ct_string("Detach Delete @usn5 In 1e1,[$@usn6 Contains `7esn`,$_usn4[{``}..][1e1..]][..{usn1:0e0[0X0123456789ABCDEF..010][$@usn6..010]}][..usn2(Distinct 1e1[..01],$123456789 Is Not Null)] Union Create Unique #usn7=Allshortestpaths(((#usn8 :@usn5)<-[_usn3{@usn6:{7} Contains $123456789}]->(:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1}))),usn1=Shortestpath((`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})) Create #usn8=(:`5esn`:@usn5{usn1:$#usn7[`5esn`]})<-[?:`4esn`|:#usn7]->(_usn4 :#usn8{`5esn`})-[`4esn`?:_usn4|:usn1{@usn6:$#usn7 Ends With 0.12 Ends With {@usn6}}]->(#usn8 {usn1:$123456789 Starts With `5esn`}),Shortestpath((:`2esn`{`6esn`:@usn6[{0}..]})<-[usn2?:usn2|#usn7]->(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})) Union Create Unique (((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),_usn4=Allshortestpaths((usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})) Merge `3esn`=(`3esn` :`8esn`:@usn5{@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]}) On Match Set `7esn`+=False[..[`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]|\"d_str\" Contains @usn6 Contains 12.e12]][..Case 7 Is Null Is Null When usn1 Contains $7 Contains $`` Then 12e12 Is Not Null End],#usn8 =.e12[\"d_str\"..][.e1..]"), + octest_legacy:ct_string("Foreach(#usn8 In 0.0 Is Not Null| Optional Match #usn7=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Where #usn7 Starts With 1000 Starts With .e1 Match `5esn`=Shortestpath((_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null})<-[@usn5?:`8esn`|:_usn4 *0X0123456789ABCDEF{usn1:False Contains $#usn8 Contains 9e1}]->({@usn6:$usn1[0X7],`3esn`:$7[$`3esn`]})),`8esn`=((@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})) Using Index @usn5:usn2(`6esn`)) Create Unique usn1=((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})),`7esn`=(`3esn` :`4esn`:@usn6{`5esn`:$`2esn`[$usn2..][{``}..]})-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]-(#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[@usn6?:`2esn`]->(_usn4 :`6esn`:`8esn`$``) Union All Unwind Null[010..][{``}..] As `3esn` Remove Case #usn8[`7esn`..] When 0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] Then {0}[False..@usn5] End.usn1,None(_usn3 In {@usn5}[..#usn7] Where {@usn6} In {#usn7} In 12.e12).`8esn`,({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[?:@usn6|`` *1000]->(:_usn4{`8esn`:12e12 Starts With `1esn` Starts With usn2})-[`2esn`:`2esn`{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})._usn3! Remove Extract(_usn4 In `2esn` Where 123.654 Starts With $``).usn2 Union Merge `2esn`=Shortestpath(((_usn3 {usn1:0Xa[0e0..{#usn7}],`1esn`:.e0[True..Count ( * )][#usn7..0X7]})-[?:#usn7|`2esn` *0x0..]->(usn1 :#usn8{``:$7[{`1esn`}]})-[#usn7? *..0Xa{usn1:$`6esn`[`8esn`][0.0],`5esn`:$`6esn`[{`3esn`}..12]}]-(#usn7 :#usn8))) On Create Set {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}.`7esn`! =$usn1[False][999] On Match Set _usn3 ={#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null,Reduce(usn2=.e1[..\"d_str\"],#usn7 In 123.654 Starts With $``|0Xa[$1000..$123456789]).@usn6 ={`2esn`}[Count(*)],`2esn`+=[{usn2}[$`4esn`]] Starts With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null] With `7esn` Ends With $_usn3 Ends With usn2 As _usn4,1000 Is Null Is Null Order By \"d_str\"[Count ( * )..`6esn`] Desc Skip 9e1 Ends With $@usn5 Ends With $123456789 Limit $`8esn`[0e0..] Where {999} Starts With {_usn4} Starts With 00"), + octest_legacy:ct_string("Return *,Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where `7esn` Starts With 0X7 Starts With $`7esn`) Is Not Null As `2esn` Order By Null[010..][{``}..] Desc,`3esn`[_usn4..{0}][`5esn`..usn2] Desc,{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}[Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))..] Ascending Skip Null =~12e12 Union All Delete Shortestpath(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})))[[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7[`5esn`]|{_usn3}[{0}]]..],{`3esn`}[{`5esn`}] Create Unique #usn8=((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})),Shortestpath(((`1esn` :`4esn`:@usn6))) Union All Foreach(`3esn` In 's_str'[_usn4..0x0]| Optional Match Shortestpath((usn1 :usn1:_usn4)),`8esn`=Allshortestpaths(((`8esn` :@usn6))) Using Index #usn7:usn1(``) Using Scan #usn7:_usn3 Where $`` In 0 In {1000})"), + octest_legacy:ct_string("Delete $12 Starts With $`8esn` Foreach(@usn6 In 1.e1[0xabc..]| Delete .e1[@usn5]['s_str'],Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..] Unwind {12}[$`3esn`] As `6esn`) Union All Start `4esn`=Node:`4esn`(\"d_str\") Where {#usn8}[#usn7..{`2esn`}] Detach Delete $`` In \"d_str\",$12[{7}..0X0123456789ABCDEF] Foreach(#usn8 In _usn4[..``][..{``}]| Return Distinct *,{#usn7} Ends With Extract(`1esn` In 0.e0 =~`1esn` =~`6esn`|.e1 Ends With 0Xa Ends With .e1) As `5esn`,123456789 Is Not Null Is Not Null As #usn7 Skip {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Detach Delete Single(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2])[(_usn3 {usn1:0Xa[0e0..{#usn7}],`1esn`:.e0[True..Count ( * )][#usn7..0X7]})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1})..],`6esn`[00..][$123456789..],$usn2 Ends With $`5esn`)"), + octest_legacy:ct_string("Match _usn4=((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null})<-[usn2 *..01234567{`1esn`:@usn5 =~'s_str',`8esn`:{999} Starts With {_usn4} Starts With 00}]->(usn1 {`5esn`})<-[:`8esn`|:_usn4 *1000]->(`5esn` $`8esn`))),((({usn2:$`5esn`[`4esn`][_usn3]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})-[_usn3 *..01234567$`5esn`]->({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null}))) Using Index usn1:``(#usn7) Using Index `3esn`:#usn8(`2esn`) Where 7 Contains $`` Contains {`6esn`} Optional Match Allshortestpaths((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Optional Match _usn4=Allshortestpaths(((:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})-[?:#usn8|`2esn` *999{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({@usn6:#usn8[$0..False][$`1esn`..$#usn7]})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}))),`6esn`=Allshortestpaths(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})-[:`1esn`|:`3esn` *..01234567{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(#usn7 {``:0x0 =~123.654 =~{999}})) Union Remove Allshortestpaths((({#usn7:#usn8 =~{999}})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2}))).@usn6,_usn4:`8esn`:@usn5 Start #usn7=Relationship:usn2(_usn3='s_str') ,`4esn`=Node:`7esn`(``={usn2}) Match ((`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}})-[?:`1esn`|:`3esn` *999{usn1:0[{@usn5}..][7..],`7esn`:{``}[_usn4..$`1esn`]}]->(`3esn` :`8esn`:@usn5{@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})),(({`4esn`:_usn4 Is Null Is Null,@usn6:{`5esn`} Contains 's_str' Contains 9e1})-[`6esn`:`8esn`|:_usn4]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})) Using Scan `8esn`:#usn7 Using Scan `1esn`:`4esn` Union Detach Delete {@usn5}[..{_usn4}][..$@usn5],Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..] Optional Match Allshortestpaths(((({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2})<-[:_usn4|:usn1 *07]-(#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})))) Where 1000 Is Not Null Unwind $`` In `7esn` As `7esn`"), + octest_legacy:ct_string("Load Csv From Reduce(usn1=1e1 Contains usn2,`8esn` In $12[{7}..0X0123456789ABCDEF]|#usn7 =~{`4esn`} =~123456789) Contains `3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]) As @usn6 Fieldterminator 's_str' Union Unwind All(usn1 In 12.e12 In {0} In 9e1 Where {12}[usn2])[Reduce(``=$@usn5[..usn2][..$#usn7],`6esn` In Count(*) Ends With $`` Ends With {7}|{`4esn`}[$123456789..])..][{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]}..] As @usn6"), + octest_legacy:ct_string("Foreach(usn2 In usn2(Distinct 0Xa[..{1000}][..$#usn7])[Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000|\"d_str\"[{`8esn`}..])][(`4esn` :`1esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]->(#usn7 )]| With Distinct *,`7esn` Contains `5esn` Contains 0X7 As `1esn` Order By usn2 Ends With Count ( * ) Ends With $@usn6 Asc,.e1 Ends With 0Xa Ends With 00 Ascending Where 123.654 Starts With $``) Foreach(`4esn` In `6esn`[$0][#usn8]| Detach Delete $`` In `7esn`) Match #usn8=Allshortestpaths((({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))),Allshortestpaths((((:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})))) Using Scan `4esn`:_usn4 Union All Foreach(usn1 In {`2esn`}[@usn5..][{``}..]| Load Csv From {_usn3}[`3esn`..$#usn8] As `4esn` Fieldterminator 's_str') Union Remove `3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]).@usn6,Reduce(`4esn`=$`7esn` Contains {`1esn`} Contains 9e12,`` In {usn1} Ends With {`6esn`} Ends With 123456789|.e12[$7..][{`6esn`}..]).usn1?"), + octest_legacy:ct_string("With Distinct #usn7[..12e12] Limit {@usn5} Starts With 1.0 Starts With 00 Where $1000 Is Not Null Is Not Null Merge _usn4=Shortestpath(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})-[:`1esn`|:`3esn` *..01234567{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(#usn7 {``:0x0 =~123.654 =~{999}})) On Match Set usn2 =#usn7 Starts With $999,usn1+={@usn6}[True..{_usn3}] On Create Set @usn5+=$@usn6 Ends With 01 Ends With 999,`3esn` =0.e0 =~`1esn` =~`6esn` With Distinct {#usn7} Contains @usn5 Contains Count ( * ),01 Starts With {999} Starts With $`2esn`,$usn1[@usn6][#usn7] As `6esn` Order By Any(`6esn` In 00 Where 0X7 Starts With {999} Starts With 12e12) Starts With (`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}) Starts With {`8esn`:{#usn7} Contains @usn5 Contains Count ( * )} Ascending,`8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]] Desc Limit None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] Where {`1esn`} Starts With `4esn` Starts With {0} Union All Load Csv With Headers From @usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2) As @usn6 Union All Create `1esn`=((`4esn` :`2esn`{`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})-[:`1esn`|:`3esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->({`2esn`:#usn8 Is Null,`6esn`:123456789 Ends With usn1 Ends With usn2})<-[#usn8? *0X7..0Xa$`2esn`]-({`7esn`:123456789[0..]})),usn1=Allshortestpaths((`2esn` :`5esn`:@usn5)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}))"), + octest_legacy:ct_string("Foreach(@usn6 In (:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})-[`1esn`:`1esn`|:`3esn` *01..07{`3esn`:123456789 Is Not Null Is Not Null}]-(`1esn` {@usn5:$usn1 In 0.12 In $``})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Reduce(`5esn`=.e12[$#usn8..@usn6],usn1 In 12.e12 In {0} In 9e1|Count(*)[.e12])| Load Csv With Headers From $`3esn` In 9e12 In `` As `6esn` Fieldterminator 's_str' Detach Delete {usn2:{`1esn`} Is Not Null} Is Null,0.0 In `6esn` In $@usn5,[{usn2}[$`4esn`]] Starts With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null]) Create Unique @usn5=(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})<-[?:`6esn` *01..07]->(:usn2:`2esn`{`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})-[? *1000]->(`5esn` {usn2:$#usn7 Starts With 9e0 Starts With 2.12}) Union Optional Match `5esn`=Allshortestpaths(((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]}))) Using Index usn1:`3esn`(`3esn`) Using Scan `2esn`:`2esn` Where Count(*) Is Not Null"), + octest_legacy:ct_string("Unwind 9e1[$_usn4..0xabc] As `8esn` Create ``=((`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6)<-[#usn7]-(@usn6 )),`6esn`=Allshortestpaths(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})-[:`1esn`|:`3esn` *..01234567{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(#usn7 {``:0x0 =~123.654 =~{999}})) Return Distinct $@usn6 Ends With 01 Ends With 999 Skip {_usn3} Contains 9e0 Contains $999 Limit Allshortestpaths(((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}))) Starts With All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`)"), + octest_legacy:ct_string("Create ((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})-[:`5esn`]-({`7esn`:@usn5[..$@usn5][..0Xa]})-[@usn5? *0x0..{`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}]-(_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null})) Match Shortestpath((`7esn` {`3esn`:0.0 =~12.e12 =~1.0,`1esn`:$usn1 Starts With {_usn3}})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]-({`7esn`:123.654 Ends With usn2 Ends With 0})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})) Using Scan _usn3:`4esn` Using Scan `2esn`:`1esn` Where $123456789 Starts With $123456789 Starts With Count ( * ) Load Csv With Headers From 12[12e12] As _usn4 Fieldterminator \"d_str\" Union All Foreach(`6esn` In _usn3 =~123.654| Create Unique ((`5esn` :_usn3)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})),``=(_usn4 :#usn7{`8esn`:$999 Contains {7}}) Remove (usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[`7esn`? *0X0123456789ABCDEF{@usn6:12 Starts With {_usn4} Starts With $#usn8}]-(:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}})<-[``{`3esn`:{`3esn`}[{`5esn`}]}]-({@usn5:``[{123456789}..]}).`5esn`) Merge Allshortestpaths(((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0}))) On Create Set None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]).@usn6! =0X0123456789ABCDEF[$`5esn`..],(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[_usn3?:`1esn`|:`3esn`{`3esn`:$@usn6 Contains $`7esn` Contains 1e1,@usn5:True Starts With $`4esn` Starts With 12e12}]-(`3esn` :_usn3{_usn3:{_usn3} Contains 9e0 Contains $999,`2esn`:{_usn3}[$usn2..]})<-[`3esn`?*{#usn8:$`1esn`[..{_usn3}]}]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}).`8esn`? =$12 Is Not Null Create (((_usn3 :`3esn`:`6esn`)<-[`2esn`?{``:123.654 Starts With $``,``:{``} Ends With .e12 Ends With 0.e0}]-(:_usn3{0})<-[?:#usn8|`2esn` *01..07]->(:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]}))),`4esn`=((`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}})-[_usn4?:`3esn`|:@usn5]->(`4esn` {`7esn`:12.e12 In $0 In $0,@usn5:_usn4[Count(*)]})) Union All Start @usn6=Rel:usn1(@usn6=\"d_str\") Where @usn5 Is Not Null Is Not Null Create Unique ((({usn2:$`5esn`[`4esn`][_usn3]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})-[_usn3 *..01234567$`5esn`]->({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})))"), + octest_legacy:ct_string("Foreach(`` In Extract(`6esn` In 00 Where 9e1 Ends With $@usn5 Ends With $123456789) Ends With All(usn1 In 12.e12 In {0} In 9e1 Where {usn1} In Count ( * ))| Match _usn4=Shortestpath((`6esn` :`2esn`{`7esn`:#usn8 =~{999}})),(((usn2 :``)-[@usn5?:#usn7|`2esn`{`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}]->(`2esn` :@usn6{7})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`))) Using Index ``:`1esn`(_usn4) Using Index _usn3:_usn3(`6esn`) Where 123.654[1e1..][{#usn8}..]) Union All Merge usn2=Allshortestpaths((({`1esn`:{123456789}[12..][$12..]})<-[``{_usn4:.e1[..\"d_str\"]}]-({@usn5:Count ( * ) Is Null})<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4}))) On Create Set Any(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where `2esn` Starts With `` Starts With 1e1)._usn3! =$@usn6[$0..usn1][0X0123456789ABCDEF..$999],`4esn`+={#usn7} Ends With 12e12 Ends With {123456789} Delete $`1esn` Starts With 9e1 Starts With 1.e1,$@usn6[$0..usn1][0X0123456789ABCDEF..$999],[`6esn` In Count(*) Ends With $`` Ends With {7} Where {`3esn`} Ends With `1esn` Ends With $@usn6][None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where {`4esn`}[..{`4esn`}])..] Union With Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF) Ends With Case {`2esn`}[..{@usn6}][..1.e1] When Null Is Null Is Null Then #usn7 Contains {`3esn`} Contains $`6esn` When 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Then $usn1[..'s_str'][..$#usn8] End Ends With Filter(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789}),@usn6 Contains Null As `2esn`,00 =~0.e0 =~$`8esn` Order By `5esn`(0X0123456789ABCDEF[9e12])[[`8esn` In $12[{7}..0X0123456789ABCDEF] Where $``['s_str'..][0x0..]]..None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`8esn`}[0X7][$`3esn`])][Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000})..Case 7 Is Null Is Null When usn1 Contains $7 Contains $`` Then 12e12 Is Not Null End] Ascending,#usn7[9e0] Asc,{`5esn`} Starts With 12.0 Desc Limit {@usn5}[Count(*)..] Create Unique Allshortestpaths((@usn6 :usn1:_usn4)),(:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})"), + octest_legacy:ct_string("Merge Allshortestpaths((`` :``)-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})) On Match Set `6esn` ={_usn3}[usn1][0],Shortestpath((@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})).@usn5? =\"d_str\" Contains @usn6 Contains 12.e12,`7esn`+=`3esn`[..{_usn4}][..{@usn5}] On Create Set (@usn5 :usn1:_usn4)-[``?:#usn7|`2esn`{`5esn`:123456789 Starts With {@usn6} Starts With $12}]->(`7esn` {@usn6:{_usn4} Is Null}).`2esn`! =07[$#usn8],Case When $7 Ends With $`8esn` Then .e12 Contains $`1esn` Contains $@usn6 End.`8esn`! =$`6esn`['s_str'..][{_usn4}..],`2esn` ={usn1:$`8esn` In $`2esn` In {7},`7esn`:{`2esn`} In $123456789 In True}[..(:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})-[`3esn`:`` *123456789..0X7{#usn8:12 Starts With $#usn7}]-(`3esn` :`7esn`)-[?*..{`1esn`:$`1esn`[07..][9e12..],@usn6:{7} Starts With $usn1 Starts With 1.0}]->(:`3esn`:`6esn`)][..Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6)] Union With Distinct (@usn5 {`2esn`:1.e1 =~9e12 =~`4esn`})<-[@usn5?:usn1 *..010{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}]->(`8esn` :`1esn`{usn2:0.0 Is Not Null,usn2:0.12[Count(*)..][$#usn7..]})-[`5esn`{`7esn`:@usn5[..$@usn5][..0Xa]}]->(#usn7 :#usn8{_usn3:`1esn`[..00][..{7}]}) In Case When .e0[True..Count ( * )][#usn7..0X7] Then $@usn5[`6esn`..] When 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF Then $`1esn`[#usn8][$@usn5] End In @usn6(`` Ends With $`4esn` Ends With 0X0123456789ABCDEF),{`1esn`:{`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`],`5esn`:0.12 Contains 12.0} Ends With [{usn2},0.12[Count(*)..][$#usn7..]] Ends With {0},$`2esn` Ends With 0.12 Ends With .e1 As `` Order By Case $123456789[..$7][..$`6esn`] When 0.e0 Contains #usn7 Then {`6esn`} Contains 07 When {_usn4} In {1000} Then ``[..$#usn7] End[Shortestpath((usn1 :usn1:_usn4))..][Reduce(@usn6={`4esn`} Starts With $7 Starts With $``,`` In {usn1} Ends With {`6esn`} Ends With 123456789|$`6esn` Starts With 12.e12 Starts With $#usn7)..] Descending,'s_str'[_usn4..0x0] Descending Skip 12.e12 Starts With 1000 Starts With 's_str' Where $#usn7[`5esn`]"), + octest_legacy:ct_string("Load Csv With Headers From $`2esn`[{usn2}] As #usn8 Create `3esn`=Shortestpath((`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})),Allshortestpaths(((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0}))) Unwind Shortestpath((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})-[`7esn`?:`6esn`]->(`1esn` :_usn4)-[#usn8:_usn3|`8esn`{`6esn`:`5esn` Is Null Is Null}]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))[Extract(`1esn` In `3esn`[07..] Where 999 Starts With 's_str')][Case `8esn` Contains $`3esn` Contains {`4esn`} When 9e1 Ends With $@usn5 Ends With $123456789 Then usn2[True] When 0.e0 =~`1esn` =~`6esn` Then usn2 =~0X7 =~{#usn7} Else 1.e1[..12.e12][..$usn2] End] As #usn7"), + octest_legacy:ct_string("Create Unique (_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0}),`5esn`=Shortestpath(((#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null})<-[?:#usn7|`2esn`{@usn5:$0 Is Not Null}]-(`` {``:0x0 =~123.654 =~{999}}))) Merge Shortestpath((_usn4 :#usn7{`8esn`:$999 Contains {7}})) Union Create usn1=Allshortestpaths((`2esn` :#usn8{@usn6:`7esn` Ends With $_usn3 Ends With usn2,_usn4:{12} Starts With #usn8 Starts With 0e0})<-[:`6esn`{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},`6esn`:``[..$#usn7]}]->({_usn4:False[0Xa..$usn1]})),#usn7=Allshortestpaths((({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True}))) Create Unique `8esn`=(((`4esn` :usn2:`2esn`)-[`8esn`?:`4esn`|:#usn7]->({`3esn`:12 Starts With 0x0,`8esn`:0X7[0.e0][{`4esn`}]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})))"), + octest_legacy:ct_string("Load Csv With Headers From `3esn` Starts With Count(*) As `3esn` Load Csv From $@usn6[$0..usn1][0X0123456789ABCDEF..$999] As `1esn` Remove usn2(Distinct 1e1[..01],$123456789 Is Not Null).@usn6"), + octest_legacy:ct_string("Return *,None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12.e12[``..usn2][{#usn7}..@usn5]) In usn1({`1esn`} Starts With @usn6),$`8esn`[0e0..] As @usn5 Limit 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF"), + octest_legacy:ct_string("Using Periodic Commit 7 Load Csv From .e12[..{0}][..Null] As usn1 Fieldterminator \"d_str\" Merge `1esn`=Allshortestpaths((((:`7esn`{`1esn`:{1000} In {123456789},`4esn`:010 In `1esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)))) On Create Set [`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0}|#usn8 In `8esn` In 07].`6esn`? ={#usn8} Ends With 1.0 Ends With 12.0,`4esn` =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Foreach(#usn7 In $usn1[0X7]| With 's_str'[_usn3..] As `5esn`,{0}[False..@usn5] As `1esn` Order By {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Desc,01234567[{`7esn`}..] Descending,[{7} Contains $123456789,$``[..1.e1][..12],$`5esn`[..{`2esn`}][..{0}]] =~`3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]) =~{`6esn`:{`3esn`} Ends With `1esn` Ends With $@usn6,@usn6:$usn1 In 0.12 In $``} Descending Skip .e0[..{`5esn`}][..999] Limit {`8esn`:`2esn` Starts With `` Starts With 1e1} In [usn1 In 00 In {_usn3}] In Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) Where $`6esn` Starts With 12.e12 Starts With $#usn7 With Distinct $#usn8 Is Null Is Null,Shortestpath((_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]) In Shortestpath(((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}))),{7} Is Null As `7esn` Order By [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null Asc,{@usn5} =~_usn4 =~0.12 Desc Limit #usn7 Contains {`3esn`} Contains $`6esn` Where 12e12 Ends With `6esn` Ends With {`3esn`})"), + octest_legacy:ct_string("Detach Delete $`1esn` Ends With {12} Ends With 0xabc,7 Is Null Is Null,`4esn`[{1000}][{`5esn`}] Foreach(`3esn` In `3esn`[07..]| With *,0e0 Starts With $@usn6 Starts With $`6esn` As `7esn` Skip 0X7 Is Not Null Is Not Null Limit `` =~`6esn` =~usn1 Where 0e0[0X0123456789ABCDEF..010][$@usn6..010] Delete 1e1[..$1000][..999],Reduce(usn1=``[00..$7],`5esn` In $`2esn`[12.e12][$@usn5]|12 Starts With 0x0)[Any(#usn7 In 123.654 Starts With $`` Where 's_str'[_usn4..0x0])][Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where True[True..]|$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF)]) Load Csv With Headers From $usn1 In 01234567 In .e1 As @usn6 Fieldterminator 's_str'"), + octest_legacy:ct_string("Return #usn7 Starts With $999,1e1[..`1esn`][..0e0] Limit (:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})-[`1esn`:`1esn`|:`3esn` *01..07{`3esn`:123456789 Is Not Null Is Not Null}]-(`1esn` {@usn5:$usn1 In 0.12 In $``})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Reduce(`5esn`=.e12[$#usn8..@usn6],usn1 In 12.e12 In {0} In 9e1|Count(*)[.e12]) Foreach(`8esn` In Extract(#usn7 In 123.654 Starts With $`` Where #usn8[`7esn`..]|0.0[..{999}][..0.0])[..Extract(`1esn` In `3esn`[07..] Where 00[07..]|$#usn7 Starts With 9e0 Starts With 2.12)][..None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])]| Unwind `5esn`[..9e0][..01234567] As @usn5 Remove Filter(`6esn` In 00 Where 0.12[..$`6esn`][..$1000]).#usn8!,[999 Ends With .e12 Ends With .e1,{_usn3}[..$`8esn`]].@usn6?) Union All Merge _usn4=((`8esn` :@usn6)) Union All Unwind 123456789 Starts With {@usn6} Starts With $12 As `8esn` Start _usn3=Node(01,0x0,0X7,0X7) ,`2esn`=Relationship:_usn4(usn1={_usn4})Where $`8esn`[..$999][..0] Remove {usn2:123.654[{`7esn`}][{7}],#usn8:$0[..{usn2}][..$usn1]}.usn2?"), + octest_legacy:ct_string("Unwind Reduce(_usn4={123456789} =~01234567 =~`3esn`,_usn3 In True[7][$999]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]) Ends With @usn5(Distinct {0} Is Null) Ends With {`6esn`:`3esn`[..{_usn4}][..{@usn5}],`2esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]} As _usn4 Remove {`8esn`:False Ends With $``}.`3esn`,Case {usn1}[$7..0x0] When {``}[010] Then True =~_usn3 =~123456789 When @usn6[$12] Then {`4esn`} Starts With $7 Starts With $`` End.`7esn`!"), + octest_legacy:ct_string("With Distinct 12.e12[$`8esn`..{`8esn`}] As `7esn` Order By 07[$`2esn`..0x0] Ascending,$`8esn` Is Null Is Null Desc,`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}] Asc Limit .e1[..{`7esn`}][..{_usn3}] Load Csv With Headers From None(`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}])[[123.654[1e1..][{#usn8}..],$#usn7[123.654]]] As `8esn` Fieldterminator 's_str' Start `5esn`=Rel( {_usn4}) "), + octest_legacy:ct_string("Create #usn8=Allshortestpaths((({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))),@usn6=((usn2 :_usn3)-[`8esn`?{@usn5:Null Is Null Is Null}]->({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})-[_usn3 *..01234567$`5esn`]->({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})) Start `6esn`=Relationship:usn2({`5esn`}) Where `7esn`[0..$usn2][{usn2}..0.e0] Create Unique usn1=(((usn2 )<-[ *0xabc..7]->(:`4esn`:@usn6)<-[usn2?:usn2|#usn7]->(`3esn` :_usn4))),`4esn`=(`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})-[?:@usn6|`` *..0Xa]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})"), + octest_legacy:ct_string("Using Periodic Commit 0X7 Load Csv With Headers From All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.e12[$`8esn`..{`8esn`}]) Is Null As usn2 Foreach(_usn3 In {`3esn`} =~$7| Delete {1000}[{``}][999],`4esn`[{1000}][{`5esn`}]) With Distinct `7esn` Ends With $_usn3 Ends With usn2 As _usn4,1000 Is Null Is Null Order By @usn6[$usn2..#usn7] Ascending,{`3esn`} Ends With 0 Ends With 9e1 Desc Limit {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}[..({``:.e1 Contains $`3esn`})<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})]"), + octest_legacy:ct_string("Unwind 9e12 Is Not Null Is Not Null As @usn5 Create (({@usn5:``[{123456789}..]})-[`3esn`:`6esn`{`3esn`}]-({`1esn`:$123456789[..$7][..$`6esn`]})<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`)) Merge ((`5esn` :@usn6)<-[`2esn`?:@usn6|``]->(`1esn` {_usn4:{1000} Ends With {`8esn`}})<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})) On Create Set _usn4+=Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where 12e12 Is Not Null)[..Reduce(`1esn`=$`3esn` In 9e12 In ``,`2esn` In {999} Is Not Null|$@usn5[..usn2][..$#usn7])],Shortestpath(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))).`7esn`! =1e1[{_usn4}..123.654] On Match Set `1esn`+=`2esn` Starts With `` Starts With 1e1,Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End.`3esn` =$0 Ends With False Ends With $_usn4"), + octest_legacy:ct_string("Remove [_usn3 In {@usn5}[..#usn7] Where True Is Null Is Null|Count(*) Ends With $`` Ends With {7}].`3esn`?,{@usn5:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12],@usn6:Count(*)[.e12..]}.`2esn`? Union Load Csv With Headers From $1000[{`6esn`}..] As _usn3 Fieldterminator 's_str' Detach Delete {999}[$123456789..][12..],$`6esn`[..1.e1][..1e1]"), + octest_legacy:ct_string("Create _usn4=Allshortestpaths((@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})),((`2esn` :#usn8)<-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` :`8esn`:@usn5)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})) Detach Delete Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`])[(`3esn` :#usn7{`6esn`:{_usn4} Is Null,usn2:{`2esn`} Starts With @usn6})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`8esn`:@usn5)<-[@usn6?:`7esn`]->(:`2esn`{#usn7:#usn8 =~{999}})..Shortestpath((`8esn` {_usn4:{usn1} In Count ( * )})<-[`6esn`?]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})<-[@usn6?:`7esn`]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1}))][Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0[$#usn8...e12])..[`1esn` In $12 Is Not Null Where {usn1} In Count ( * )|$`3esn`[{``}..]]],{usn2}[`6esn`..01234567],All(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7]) Contains Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End Contains Reduce(`6esn`={_usn4} In {1000},usn1 In 12.e12 In {0} In 9e1|{`4esn`} Starts With $7 Starts With $``) Create Unique Allshortestpaths((:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})),#usn8=Allshortestpaths((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null}))) Union Detach Delete `` Is Null Is Null,{`4esn`}[{`1esn`}][{1000}] Optional Match #usn7=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Where #usn7 Starts With 1000 Starts With .e1 Create Unique `5esn`=((`3esn` :`6esn`:`8esn`{`8esn`:{``} Is Null Is Null,`3esn`:123456789 Is Not Null Is Not Null})<-[_usn4?:usn2|#usn7{_usn4:{`1esn`} In 12.e12 In 9e1}]-(:usn2:`2esn`)),((#usn8 :usn1:_usn4)<-[usn1:usn1{`3esn`:\"d_str\" Ends With False Ends With {@usn6},`5esn`:`4esn` Contains #usn8 Contains 7}]->(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(`2esn` :#usn8{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}}))"), + octest_legacy:ct_string("Create Unique _usn3=Allshortestpaths((((:`3esn`:`6esn`)-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})-[:`8esn`|:_usn4 *999{_usn3:9e1 =~999}]->(:#usn7{usn2:{`8esn`}[0X7][$`3esn`]})))),Allshortestpaths((((:`7esn`{`1esn`:@usn5 =~'s_str',`8esn`:{999} Starts With {_usn4} Starts With 00})<-[@usn5:`8esn`|:_usn4]->(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]})<-[?:_usn3|`8esn` *1000]-(:``)))) Detach Delete False[1000][{`7esn`}] Union Optional Match @usn5=Allshortestpaths((@usn6 :usn1:_usn4)<-[?:@usn6|`` *..01234567]->(#usn8 {usn1:$123456789 Starts With `5esn`})-[? *01..07]->(`8esn` :#usn7)),`8esn`=Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Using Scan usn2:`5esn` Where 123.654[{@usn5}..123.654][1.0..$12] Load Csv With Headers From 0X0123456789ABCDEF Is Null Is Null As `` Union All With {`3esn`} =~[1.e1 =~$usn2] =~Filter(`6esn` In 00 Where `5esn`[..9e0][..01234567]) Limit {#usn8} =~{999} =~{#usn7} Where $_usn3[010..False]"), + octest_legacy:ct_string("Delete #usn7 =~00 Start #usn8=Node:``(`1esn`={`2esn`}) Foreach(`5esn` In Extract(_usn4 In `2esn` Where 1.0[{999}][$999]|$`8esn` In $`2esn` In {7})[[{`8esn`}[0X7][$`3esn`]]][(`5esn` :`3esn`:`6esn`)-[`8esn`?:`4esn`|:#usn7{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-({`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF})]| Create (`2esn` :@usn6{7})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]})<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`),(((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]})))) Union All Remove {#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}.#usn8"), + octest_legacy:ct_string("Unwind $`3esn`[..$`2esn`][..123.654] As `1esn` Foreach(#usn8 In 12 In 0e0| Unwind {`4esn`}[{`1esn`}][{1000}] As #usn7 Delete $`7esn` In 12) Unwind False Starts With 010 As @usn5"), + octest_legacy:ct_string("Start #usn7=Node:#usn7('s_str') Where {12}[00..{@usn6}][1.e1..0] Union All With Distinct $@usn6 Ends With 01 Ends With 999 Skip {_usn3} Contains 9e0 Contains $999 Limit Allshortestpaths(((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}))) Starts With All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Where 12.e12[`7esn`] Remove [`1esn` In $12 Is Not Null].`6esn`? Union All Create Unique usn2=Allshortestpaths((({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]}))) Start `1esn`=Rel:@usn5({usn1}) Where 7[$0..][{_usn4}..] Foreach(usn2 In {`7esn`}[..9e12][..0.0]| Load Csv From $@usn6[$0..usn1][0X0123456789ABCDEF..$999] As `1esn` Delete {@usn5}[..@usn6],0e0 Contains `3esn` Contains `7esn`,1.e1 Ends With 0 Ends With $usn1)"), + octest_legacy:ct_string("Detach Delete False Ends With $``,{_usn4}[..$#usn7] Start _usn3=Relationship:#usn7({`4esn`}) Where ``[..0X0123456789ABCDEF]"), + octest_legacy:ct_string("Detach Delete $usn2 Is Null Is Null,`3esn` =~9e0 =~@usn6,None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False) Is Null Union Remove Allshortestpaths(((_usn3 :#usn8{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(:`2esn`{`2esn`:123456789[0..]}))).`8esn`! Remove Shortestpath((({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`))).#usn8!,({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})-[? *01..07]->({_usn4:{usn1} =~123.654 =~\"d_str\"}).`5esn`?,[{`6esn`}[..{`2esn`}],$`8esn`[..$999][..0],`3esn` Is Not Null Is Not Null].`1esn`? Return Distinct *,010 Is Not Null Is Not Null As #usn7,123456789[12..$`4esn`] As `7esn` Order By $_usn3[..$`2esn`][..\"d_str\"] Desc Limit `` Is Null Is Null Union Load Csv With Headers From Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000) Contains [0x0[$`8esn`.._usn3]] Contains count({`1esn`} Is Not Null,$`2esn` Ends With 0.12 Ends With .e1) As `2esn` Fieldterminator \"d_str\" Remove (:@usn5)-[`8esn`?{`3esn`:'s_str'[..0X7]}]-(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}).`4esn`!,Extract(`6esn` In 00 Where 12e12 Is Not Null Is Not Null|`1esn`[Null..]).usn1"), + octest_legacy:ct_string("Remove [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $#usn7[$`4esn`]].@usn5,[`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`|$7 Is Null].@usn5!,_usn3:`2esn` Union All Detach Delete $``[01],{999} In 0.0 In {0}"), + octest_legacy:ct_string("Remove [{usn1} Ends With {`6esn`} Ends With 123456789,$usn1[@usn6][#usn7]].`2esn`!,Reduce(`4esn`=$1000 Starts With $`8esn` Starts With {`5esn`},`` In {usn1} Ends With {`6esn`} Ends With 123456789|{`8esn`}[True..][.e1..]).`3esn`! Create Unique #usn8=Shortestpath(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]}))) Union All Remove None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000).`2esn`? With Distinct {#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null As `8esn`,Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4])[Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End] As `7esn`,{_usn4} In {1000} As `1esn` Order By $@usn5[`1esn`..] Desc Limit #usn8['s_str'..][123.654..] Where 's_str' Starts With 12e12 Starts With $_usn4"), + octest_legacy:ct_string("Foreach(#usn7 In 9e12 Is Not Null Is Not Null| Remove [{#usn8}[#usn7..{`2esn`}],{1000},{@usn5}[1e1..][9e1..]].@usn6,[`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]].`6esn`?) Create _usn3=Shortestpath((:_usn3{`3esn`:{0} Is Null,#usn7:{0} Is Null})-[:_usn4|:usn1 *0X7..0Xa{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]}]-({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5)),Shortestpath(((`6esn` :@usn5)<-[`7esn`?:`2esn` *..0Xa{usn1:.e1 Ends With {7} Ends With $usn1}]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}))) Union Start #usn7=Node:`1esn`(\"d_str\") Where $_usn3[010..False] Foreach(#usn7 In {@usn6} Contains 123.654 Contains 01| Remove [0.0[..{999}][..0.0],12.e12[2.12..][0xabc..],True[7][$999]].@usn6 Delete Filter(#usn7 In 123.654 Starts With $`` Where Count(*)[010..][#usn7..])[None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $999 Ends With {0})..])"), + octest_legacy:ct_string("Return Distinct *,{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] As `4esn` Skip `2esn`[usn2..][$7..] Union Remove Allshortestpaths(((:`8esn`:@usn5{@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2],``:{`7esn`} Is Not Null Is Not Null})-[?:#usn7|`2esn` *123456789..0X7{@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`}]->(`8esn` ))).usn1! Remove [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12].`2esn`,[usn1 Contains $7 Contains $``,$@usn5 In 's_str' In $12,$`1esn` Is Not Null Is Not Null].usn2!,All(`1esn` In `3esn`[07..] Where 999 Starts With 's_str').#usn8! Remove (`1esn` :usn2:`2esn`{`1esn`:{_usn3}[$usn2..],_usn3:$@usn6 Starts With $@usn5})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})._usn3?,(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}).usn2!,[$usn1[0X7],7[1000.._usn3][9e0..\"d_str\"],0X7 Starts With {999} Starts With 12e12].`7esn`!"), + octest_legacy:ct_string("Remove None(_usn4 In `2esn` Where 9e12 Ends With 123456789).`7esn`! Return Shortestpath(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})))[[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7[`5esn`]|{_usn3}[{0}]]..],0e0[{_usn3}..],.e1[..{`7esn`}][..{_usn3}] Skip {`2esn`}[12..][{_usn3}..] Create Unique usn2=((:#usn8{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})-[ *0X7..0Xa]->(@usn6 :`2esn`)<-[`2esn`?:@usn6|`` *..00]->({_usn3})),`8esn`=Allshortestpaths((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Union Return Distinct 0X0123456789ABCDEF[0X7..] As `4esn`,7 Contains 9e0 As `4esn`,0x0 Ends With {``} As `7esn` Skip 1.e1 Is Null Limit 0Xa[1000.._usn4] Start usn2=Relationship( {#usn7}) "), + octest_legacy:ct_string("With *,[`2esn`,{`2esn`} Starts With @usn6,9e1 =~999] In Any(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3} Contains 9e0 Contains $999),Count(*) Starts With $usn1 Starts With {usn2} As @usn6 Limit Reduce(`6esn`=7[$0..][{_usn4}..],_usn3 In {`2esn`} Ends With {12} Ends With 7|{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`)[[$#usn7[`5esn`],Count(*) Ends With 123.654 Ends With $12,$#usn7[..@usn6][..$0]]] Where $_usn4 Is Not Null Is Not Null With *,{#usn7} Ends With Extract(`1esn` In 0.e0 =~`1esn` =~`6esn`|.e1 Ends With 0Xa Ends With .e1) As `5esn`,123456789 Is Not Null Is Not Null As #usn7 Skip {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Where $``['s_str'..][0x0..] Create #usn8=(`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`) Union Unwind 0e0 Starts With $@usn6 Starts With $`6esn` As _usn4 Union Start @usn5=Node:``(#usn7=\"d_str\") ,`3esn`=Node:usn1('s_str')Where {`3esn`}[{`5esn`}] Create Shortestpath(((`4esn` :`2esn`)<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})))"), + octest_legacy:ct_string("Merge Shortestpath((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})<-[#usn7?:#usn8|`2esn`]-(usn2 {`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})) On Create Set `1esn`+=010 In $`5esn` In 0,[_usn3 In True[7][$999] Where 12e12 Is Not Null Is Not Null].@usn6? ={@usn6} Contains 123.654 Contains 01,@usn5 =$#usn7 =~{12} =~False On Create Set usn1+={usn1}[{`5esn`}..],Case {0} Is Null When $0 Is Not Null Then #usn8 Is Not Null When 12.e12[{@usn5}..][9e1..] Then `2esn`[$1000..9e12][{#usn8}..{7}] End.`6esn` =#usn8 =~{_usn3} =~``,`7esn`+=12e12 Ends With `4esn` Ends With 123456789 Delete $0 Starts With `2esn`"), + octest_legacy:ct_string("Create Unique usn1=(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(:`2esn`{`2esn`:123456789[0..]})-[`3esn`:`6esn`{`3esn`}]-(@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]}) Union Start _usn4=Rel:_usn3('s_str') Foreach(_usn4 In `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]]| Create (((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})-[`4esn`?:``{usn2:12e12 Ends With `4esn` Ends With 123456789}]->(:`7esn`{usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))),(((#usn8 )-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))))"), + octest_legacy:ct_string("Create `6esn`=((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[:`2esn` *07]-(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]->({``:.e1 Contains $`3esn`})) Union Match `1esn`=((`4esn` :`2esn`{`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})-[:`1esn`|:`3esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->({`2esn`:#usn8 Is Null,`6esn`:123456789 Ends With usn1 Ends With usn2})<-[#usn8? *0X7..0Xa$`2esn`]-({`7esn`:123456789[0..]})),usn1=Allshortestpaths((`2esn` :`5esn`:@usn5)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})) Using Index @usn6:#usn8(_usn4) Using Join On _usn3,`` Where $`1esn`[#usn8][$@usn5] Start @usn5=Node:_usn4(``=\"d_str\") Where 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF"), + octest_legacy:ct_string("Create Unique `7esn`=({#usn7:#usn8 =~{999}}) Optional Match ((`2esn` {_usn4:`4esn`[usn1]})<-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(:_usn4)) Where {usn1} Ends With {`6esn`} Ends With 123456789 Union Match Shortestpath(((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))),`5esn`=Allshortestpaths(((:`7esn`{usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})<-[`8esn`?:`4esn`|:#usn7]->({`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]})-[usn2 *07{usn1:07 =~@usn5}]->({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True}))) Using Scan `1esn`:`3esn` Using Index @usn5:usn1(_usn3) Where {@usn5}[..{12}][..0x0] Delete {`3esn`} Ends With `1esn` Ends With $@usn6,{12} =~0.e0 =~{_usn3},[_usn4 In 0.0[..{999}][..0.0] Where ``[..0X0123456789ABCDEF]][Reduce(``=`6esn` Is Null Is Null,`2esn` In {999} Is Not Null|{12}[999][{_usn3}])..[_usn4 In `2esn` Where 0X0123456789ABCDEF[$`5esn`..]]] Match (((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),_usn4=Allshortestpaths((usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})) Using Scan `2esn`:#usn7 Where {#usn8} =~{999} =~{#usn7} Union Create Shortestpath((usn1 :usn1:_usn4)),Shortestpath((((#usn8 :@usn6)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4})-[:`3esn`|:@usn5]-(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})))) Create (((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4})))"), + octest_legacy:ct_string("Create Unique Allshortestpaths((:usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null})),_usn3=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]}) Remove Allshortestpaths(((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7))).@usn6?,Reduce(`6esn`={usn2} =~@usn6 =~{`4esn`},_usn3 In {`2esn`} Ends With {12} Ends With 7|{_usn3} Contains True Contains 0X7)._usn3?,All(`6esn` In 00 Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12]).`5esn` Remove [$7 Is Not Null,Count(*) Ends With 123.654 Ends With $12,$`1esn`[07]]._usn3,[9e12 Ends With 123456789].`1esn`!,[999 Ends With .e12 Ends With .e1,{_usn3}[..$`8esn`]].@usn6? Union With Distinct 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0],_usn4(Distinct 9e12[$`5esn`],$_usn4[$`4esn`..$12]) Starts With [`` In {`1esn`} Starts With @usn6 Where {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]|$`` In 0 In {1000}] Starts With [_usn4 In 0.0[..{999}][..0.0] Where Count(*) In {``}] As `4esn` Order By @usn6[{0}..] Ascending Limit 9e12[$`5esn`] Where `1esn`[..\"d_str\"][..$`5esn`] Foreach(`` In $`2esn` Ends With `` Ends With {12}| Remove Case 1.0[{999}][$999] When 12 Starts With {_usn4} Starts With $#usn8 Then Count(*) Is Not Null Else 1000 Starts With `7esn` End.`1esn`,{`1esn`:$@usn6 Starts With {`1esn`} Starts With 12,usn2:$`5esn`[..{`2esn`}][..{0}]}.``!,{`5esn`:{#usn7} In Count ( * ) In $#usn8}.`7esn`! Match usn1=((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})),`8esn`=(`6esn` {``:`4esn`[usn1]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]->(#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``}) Using Scan `4esn`:#usn8) Union Start usn1=Node:`6esn`(#usn8={@usn5}) ,`3esn`=Node:`4esn`({#usn8})Where $`2esn`[12.e12][$@usn5]"), + octest_legacy:ct_string("Remove Filter(`2esn` In {999} Is Not Null Where $usn1[$123456789..0][{`1esn`}..12.0]).`1esn`!,{usn2:_usn4 Is Null}.`7esn`,(:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})-[@usn6:@usn6|``*{#usn8:{@usn5}[12.0..1000][{`3esn`}..{7}],`8esn`:07[..`6esn`][..'s_str']}]->(`1esn` {_usn4:{1000} Ends With {`8esn`}})<-[? *0xabc..7]->(`3esn` :`3esn`:`6esn`).usn2? Unwind ({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..Case $1000 =~{1000} =~`5esn` When 9e1[9e1...e0] Then 00 Starts With $`6esn` When 123.654[1e1..][{#usn8}..] Then $`3esn`[{``}..] End] As `8esn` Remove Shortestpath((:_usn3{#usn7:#usn8 =~{999}})).#usn8,Any(#usn7 In 0Xa[@usn5][{`7esn`}]).`4esn`,Case When {1000}[{``}][999] Then `1esn` Is Null Is Null When Count(*)[.e12..] Then $#usn7[123.654] Else $1000 Starts With $`8esn` Starts With {`5esn`} End.usn1 Union All With Distinct Count ( * ) =~{`5esn`} =~{_usn4} As _usn3,Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999)[..Reduce(``={`8esn`}[True..][.e1..],#usn7 In 123.654 Starts With $``|{usn1}[$`8esn`..0.0])][..Any(`1esn` In $12 Is Not Null Where $12 Is Not Null Is Not Null)] As #usn8 Where {`3esn`} Ends With `1esn` Ends With $@usn6"), + octest_legacy:ct_string("Remove Case When $7 Ends With 0X7 Then Count(*)[.e12..] Else 00 Ends With `8esn` End.``?,(_usn3 {usn1:0Xa[0e0..{#usn7}],`1esn`:.e0[True..Count ( * )][#usn7..0X7]})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1}).`3esn`?,Filter(_usn4 In `2esn` Where `3esn` Is Not Null Is Not Null).`8esn`! Start `4esn`=Node(01234567,0Xa,07) Merge (:``$_usn4)<-[:`1esn`|:`3esn` *1000]->(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})-[#usn8:`` *..0{@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}}) On Match Set #usn8 =(`8esn` :`5esn`:@usn5)<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5) Starts With None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]),@usn5 =$_usn4 Is Null Is Null Union All Detach Delete 07[`8esn`],Extract(@usn5 In Null =~12e12 Where $`5esn`[`1esn`][0X0123456789ABCDEF])[Shortestpath((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})))..All(#usn7 In 123.654 Starts With $`` Where $`5esn`[..{`2esn`}][..{0}])][Shortestpath((:`5esn`:@usn5{``:.e12 =~$_usn4})-[_usn3?:usn1 *12..{#usn7:0e0 Contains `3esn` Contains `7esn`}]-(`5esn` $`8esn`)<-[@usn5:_usn4|:usn1*]->(:@usn5))..All(`1esn` In $12 Is Not Null Where {``} Is Null Is Null)]"), + octest_legacy:ct_string("Using Periodic Commit 07 Load Csv From {12}[999][{_usn3}] As usn2 With $999[07..{#usn7}][1e1..0xabc] As #usn8,{1000}[{#usn8}] As `2esn` Skip `3esn` Contains $`6esn` Contains `8esn` Where 0.e0 =~`1esn` =~`6esn`"), + octest_legacy:ct_string("Create Unique Allshortestpaths((@usn6 :usn1:_usn4)),(:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}) Load Csv From 0Xa In {usn1} In Null As `3esn` Fieldterminator 's_str' Union Load Csv From {1000} Ends With 0.12 As usn2 Fieldterminator \"d_str\" Union All Load Csv With Headers From Case When {1000}[{``}][999] Then `1esn` Is Null Is Null When Count(*)[.e12..] Then $#usn7[123.654] Else $1000 Starts With $`8esn` Starts With {`5esn`} End Ends With All(_usn4 In 0.0[..{999}][..0.0] Where #usn7 =~{`4esn`} =~123456789) Ends With [$#usn7 =~{12} =~False,@usn5[$12..\"d_str\"]] As `1esn` Fieldterminator \"d_str\" Create Unique ``=Allshortestpaths(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(usn1 :`8esn`:@usn5)-[? *0x0..{`6esn`:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-({`2esn`})),#usn8=Allshortestpaths((((_usn3 :`3esn`:`6esn`)<-[`2esn`?{``:123.654 Starts With $``,``:{``} Ends With .e12 Ends With 0.e0}]-(:_usn3{0})<-[?:#usn8|`2esn` *01..07]->(:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})))) Merge Shortestpath((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})<-[#usn7?:#usn8|`2esn`]-(usn2 {`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})) On Create Set Case {`2esn`} Ends With {12} Ends With 7 When `8esn` Starts With {123456789} Then {`1esn`} Is Not Null Else {usn2}[$`4esn`] End.usn2 =12[..$@usn6],`6esn`+=$7[$`3esn`],#usn7 =``[$0..][`1esn`..] On Create Set `2esn` =Count(*) Ends With 0x0 Ends With 9e0"), + octest_legacy:ct_string("Merge ((`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})) On Create Set `4esn` ={999} Ends With {`5esn`} Ends With {0} Merge ((:`3esn`:`6esn`{`1esn`:12 Starts With 0x0})) On Match Set _usn3 =$`` Starts With 12 Starts With $usn2,@usn5+=$@usn6[$`8esn`..][7..] With Distinct *,#usn8 Is Not Null,$usn2 Starts With $@usn6 Starts With 010 As _usn4 Where $`1esn` Is Not Null Is Not Null Union Load Csv From .e12[$#usn8..@usn6] As usn2 Fieldterminator \"d_str\" Union Optional Match ((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})-[:`5esn`]-({`7esn`:@usn5[..$@usn5][..0Xa]})-[@usn5? *0x0..{`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}]-(_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null})) With Distinct Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..],`` =~`6esn` =~usn1 As `2esn` Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,1.e1 =~$`1esn` Ascending,12.e12[..1e1] Asc Limit 0X0123456789ABCDEF[0X7..] Where $123456789[..$7][..$`6esn`] Foreach(`8esn` In (:`4esn`:@usn6{usn1:$7[{`1esn`}],#usn8:\"d_str\"[..0.e0]})<-[`4esn`:@usn6|``{_usn4:Count ( * ) Starts With 010 Starts With 0x0,`2esn`:1.0 In 9e1 In {`7esn`}}]->(usn2 {usn1:{`4esn`}[..07][..$`6esn`],`5esn`:'s_str'[..0X7]})-[? *0X0123456789ABCDEF]-(_usn3 :`5esn`:@usn5)[Reduce(usn2={`6esn`}[..{`2esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|1e1[..01])..]| Start @usn6=Node(0x0) ,@usn5=Rel:`8esn`(`6esn`='s_str'))"), + octest_legacy:ct_string("Foreach(@usn6 In {`5esn`}[1000..]| Remove Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999]|$_usn3[010..False]).`2esn`? Remove {`3esn`:@usn5[12.0][{1000}]}.`2esn`?,Single(`1esn` In $12 Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]).`2esn`?,``:`4esn`:@usn6) Remove {_usn4:0Xa Contains $``,@usn6:@usn6[$_usn4]}.@usn5,Filter(`1esn` In `3esn`[07..] Where 9e1[$_usn4..0xabc]).`5esn`!"), + octest_legacy:ct_string("Start `5esn`=Relationship:`4esn`(#usn8=\"d_str\") Delete 0X0123456789ABCDEF[`5esn`..][$#usn8..],`3esn` Is Not Null Is Not Null,0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] With Distinct *,{`8esn`}[..$`6esn`][..123.654],None(@usn5 In Null =~12e12 Where #usn8[`7esn`..])[{123456789}..][All(`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0})..] Order By $0 Ends With False Ends With $_usn4 Descending,[0.12[..$`6esn`][..$1000],0.12 Starts With 9e12 Starts With $`1esn`,\"d_str\" Contains @usn6 Contains 12.e12] Is Null Desc Limit `1esn`[`3esn`..True] Where {12} Contains `7esn` Contains $_usn3"), + octest_legacy:ct_string("Optional Match Allshortestpaths(({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})),Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Where `1esn`[..00][..{7}] Create (:`5esn`:@usn5{usn1:$#usn7[`5esn`]})<-[?:`4esn`|:#usn7]->(_usn4 :#usn8{`5esn`})-[`4esn`?:_usn4|:usn1{@usn6:$#usn7 Ends With 0.12 Ends With {@usn6}}]->(#usn8 {usn1:$123456789 Starts With `5esn`})"), + octest_legacy:ct_string("Optional Match Shortestpath((({``:$7[{`1esn`}]})-[`8esn`?:`5esn` *12..{#usn7:$1000 Is Not Null Is Not Null}]-(:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]}))),Allshortestpaths(()) Using Join On `1esn`,`7esn`,usn2 Using Scan `8esn`:#usn7 Where $_usn3[010..False] Union All Remove {usn2:123.654[{`7esn`}][{7}],#usn8:$0[..{usn2}][..$usn1]}.usn2? Delete {12} Contains `7esn` Contains $_usn3 Merge `1esn`=((:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn7{usn1:1.0[{999}][$999]}]->(:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})) Union Detach Delete {usn2:{`1esn`} Is Not Null} Is Null,0.0 In `6esn` In $@usn5,[{usn2}[$`4esn`]] Starts With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null]"), + octest_legacy:ct_string("Start @usn5=Node:``(#usn7=\"d_str\") Merge Shortestpath((`7esn` :`1esn`)<-[`1esn`?:`4esn`|:#usn7 *..01234567]-({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6})) On Match Set `4esn` ={`5esn`}[$`8esn`..$`1esn`][0.12..0.12],`3esn` =[`8esn` In $12[{7}..0X0123456789ABCDEF] Where 2.12 In $`8esn` In {`7esn`}|12e12 Starts With `1esn` Starts With usn2] Contains Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 9e0[#usn8]) Contains #usn7({`7esn`}[9e1..][@usn6..],{usn2}[$`4esn`]) Union With Distinct {#usn7} Contains @usn5 Contains Count ( * ),01 Starts With {999} Starts With $`2esn`,$usn1[@usn6][#usn7] As `6esn` Order By Any(`6esn` In 00 Where 0X7 Starts With {999} Starts With 12e12) Starts With (`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}) Starts With {`8esn`:{#usn7} Contains @usn5 Contains Count ( * )} Ascending,`8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]] Desc Limit None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] Where {`1esn`} Starts With `4esn` Starts With {0} Merge ((_usn4 :`8esn`:@usn5)) With Distinct 0x0[{7}..] As `7esn`,$`5esn`[@usn5..][$``..],Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF)[Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6)..Shortestpath(((_usn3 {@usn5:.e12 =~.e0})-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})-[`5esn`?:@usn5|:`7esn`]-(:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01})))][Shortestpath(((`6esn` :`7esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})))..Reduce(usn2=Null In .e0,_usn3 In {`2esn`} Ends With {12} Ends With 7|{0}[..{`7esn`}])] As usn2 Order By $_usn3[{999}] Ascending,1.e1 Ends With 0 Ends With $usn1 Descending,$0[..{usn2}][..$usn1] Desc Skip Count ( * ) Starts With 010 Starts With 0x0"), + octest_legacy:ct_string("Delete 0Xa In {`7esn`}"), + octest_legacy:ct_string("With $`2esn`[12.e12][$@usn5],12 Starts With $#usn7,(#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..] Order By @usn5 In 1e1 Asc Limit {_usn4}[...e12][..0xabc] Where True Is Null Is Null Union Return Distinct *,.e0 =~{`8esn`} =~$999 As #usn7 Skip 1000 Is Not Null Limit Count(*)[..``][..#usn8] Unwind [1.e1 =~$usn2,@usn6[{0}..],@usn5[12.0][{1000}]][@usn6()..Case {@usn5}[..@usn6] When $`2esn` Starts With {`8esn`} Starts With {usn1} Then {``} Is Null Is Null Else 123456789 Ends With usn1 Ends With usn2 End] As `3esn` Start #usn7=Relationship:usn2(_usn3='s_str') ,`4esn`=Node:`7esn`(``={usn2})"), + octest_legacy:ct_string("Start @usn6=Rel:usn1(@usn6=\"d_str\") Where @usn5 Is Not Null Is Not Null Create Unique ((({usn2:$`5esn`[`4esn`][_usn3]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})-[_usn3 *..01234567$`5esn`]->({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null}))) Union All Detach Delete $usn1 Contains {`8esn`} Contains $123456789 Union All Foreach(@usn5 In $123456789[..$7][..$`6esn`]| Detach Delete Case True[$123456789][`8esn`] When 12.e12[{@usn5}..][9e1..] Then 12.e12[`7esn`] Else {`2esn`}[Count(*)] End Ends With (`` :`7esn`)<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]}) Ends With None(`1esn` In `3esn`[07..]),[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]][[9e0 Starts With .e0 Starts With \"d_str\",`3esn`[..{_usn4}][..{@usn5}],1.e1 =~`2esn`]..Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where `6esn` Ends With 2.12 Ends With @usn6)],{`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]} Starts With Allshortestpaths((`2esn` :@usn6{7})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]})<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`)) Starts With All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {7} Contains $123456789) Delete 12.e12[{@usn5}..][9e1..],Extract(_usn3 In True[7][$999] Where $`3esn`[{``}..]) Is Not Null Is Not Null,0.0 Contains $_usn4 Contains {`2esn`})"), + octest_legacy:ct_string("Create Unique Allshortestpaths((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(@usn5 :`8esn`:@usn5)<-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(:`6esn`:`8esn`{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})),Shortestpath((((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})<-[`5esn`?:`7esn`]->({@usn5:Count ( * ) Is Null})<-[#usn8?:``]-(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})))) Return *,$_usn4[$`4esn`..$12],{`5esn`} Starts With 12.0 Order By @usn5 =~`` Asc"), + octest_legacy:ct_string("Merge _usn3=((:_usn4{`8esn`:12e12 Starts With `1esn` Starts With usn2})<-[@usn6?]->(`3esn` :`4esn`:@usn6{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]})) On Match Set _usn4 =9e0 Starts With .e0 Starts With \"d_str\",`4esn` =Shortestpath((_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]) In Shortestpath(((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}))),@usn6+={999} Starts With {_usn4} Starts With 00 Match usn1=((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})),`8esn`=(`6esn` {``:`4esn`[usn1]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]->(#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``}) Using Scan `4esn`:#usn8 Union All Start `4esn`=Node:_usn3({123456789}) Where $@usn5[$`4esn`][$@usn6] Unwind `5esn` In 12e12 In `8esn` As #usn7"), + octest_legacy:ct_string("Merge (({`6esn`:{`3esn`} Ends With `1esn` Ends With $@usn6,@usn6:$usn1 In 0.12 In $``})) Create Unique ((usn2 :_usn3)<-[?:_usn4|:usn1 *..00{`1esn`:{#usn8}[2.12]}]->(:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn8:#usn7|`2esn`]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})),`5esn`=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]}) Load Csv With Headers From (#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..] As usn1 Union All Optional Match usn2=Allshortestpaths((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}))),((usn1 :@usn5)<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]})<-[`1esn`?:`3esn`|:@usn5{usn2:Count ( * )[..12][..{@usn6}]}]-(@usn5 {``:`3esn` =~9e0 =~@usn6})) Create Unique `2esn`=Allshortestpaths((:`3esn`:`6esn`{999})),`8esn`=((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)) With *,`3esn` Ends With .e0 Ends With $`7esn` As @usn5,(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) Order By 0.12 In 0X7 Descending Skip @usn6[$12] Limit $999 Ends With $`2esn` Where {#usn8}[12.0][$@usn6]"), + octest_legacy:ct_string("Remove Case When $1000[..$999] Then 0x0 Ends With {``} When 0[$`6esn`...e1][`1esn`..$`7esn`] Then $#usn7 Starts With False Starts With {`6esn`} End._usn3,Extract(`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}]).@usn6,_usn3.`5esn`! Merge ((#usn8 {`8esn`:{7} Contains $123456789})) On Match Set #usn8+=$`5esn` Is Not Null,`5esn`._usn3! =Reduce(@usn6=$7 Is Null,`6esn` In 00|`6esn`[..{999}]) =~[$12 Is Not Null,07 =~@usn5] =~Reduce(`6esn`=9e12 Ends With 123456789,`8esn` In $12[{7}..0X0123456789ABCDEF]|$#usn7[..@usn6][..$0]) Remove `5esn`:_usn4,Shortestpath((({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`))).#usn8! Union Detach Delete Case Count(*) Ends With 123.654 Ends With $12 When $@usn6[$0..usn1][0X0123456789ABCDEF..$999] Then {`6esn`}[..{`2esn`}] End In Reduce(`4esn`={@usn6} In {#usn7} In 12.e12,usn1 In 12.e12 In {0} In 9e1|\"d_str\"[..0.e0]) In [_usn4 In `2esn` Where 9e12 Ends With 123456789|$999 Is Null] Delete 01234567[..$`5esn`],{`8esn`}[True..][.e1..],(`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[?:`8esn`|:_usn4{usn1:999[12.0..][#usn7..],@usn5:123.654[$`1esn`..Null][1000..{_usn3}]}]-(`5esn` :@usn6)<-[`7esn`?:@usn5|:`7esn`{`1esn`:{`6esn`} Contains {usn2} Contains $1000}]->(_usn3 :_usn4{`7esn`:00 Starts With $`6esn`,`6esn`:{12}[999][{_usn3}]}) Ends With [_usn4 In `2esn` Where {`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]] Ends With Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $7 In 1.0 In 1e1) Union All Return *,0Xa Contains $``,1000 Starts With 123.654 Starts With $_usn4 Order By {_usn4} In {`6esn`} In `1esn` Descending,_usn4 In $usn1 Desc With Distinct *,Single(`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`)[..[$_usn4 Contains {#usn7} Contains `1esn`,{123456789} =~01234567 =~`3esn`]][..{`5esn`:{999} Starts With {_usn4} Starts With 00,usn1:$``['s_str'..][0x0..]}] As #usn8 Order By `6esn` Is Null Is Null Descending,`1esn` Is Null Is Null Asc Limit {12} In $12 In 0xabc Where False Contains $#usn8 Contains 9e1"), + octest_legacy:ct_string("Create ``=(`` :``)-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(`2esn` :_usn3),Allshortestpaths((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(@usn5 :`8esn`:@usn5)<-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(:`6esn`:`8esn`{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})) Union With Distinct *,$`8esn` In $`2esn` In {7} As _usn3 Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,1.e1 =~$`1esn` Ascending,12.e12[..1e1] Asc Skip [$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]][..Case {#usn8}[#usn7..{`2esn`}] When $7 Is Not Null Then $@usn6[$`8esn`..][7..] When $`4esn`[..'s_str'][..`8esn`] Then `7esn` Contains {@usn5} Contains $123456789 Else 12.e12 In $0 In $0 End] Where {`5esn`} Contains 's_str' Contains 9e1 Detach Delete #usn8 Is Null,1e1 Starts With 9e1 Starts With {`4esn`} Return Distinct *,$_usn4[$`4esn`..$12],{`5esn`} Starts With 12.0 Order By @usn5 =~`` Asc"), + octest_legacy:ct_string("Remove Filter(`1esn` In `3esn`[07..] Where #usn8 =~{_usn3} =~``).@usn5!,[`5esn` Is Null Is Null,$1000 Is Not Null Is Not Null].@usn6! Merge Shortestpath((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})<-[#usn7?:#usn8|`2esn`]-(usn2 {`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})) On Create Set `1esn`+=010 In $`5esn` In 0,[_usn3 In True[7][$999] Where 12e12 Is Not Null Is Not Null].@usn6? ={@usn6} Contains 123.654 Contains 01,@usn5 =$#usn7 =~{12} =~False On Create Set usn1+={usn1}[{`5esn`}..],Case {0} Is Null When $0 Is Not Null Then #usn8 Is Not Null When 12.e12[{@usn5}..][9e1..] Then `2esn`[$1000..9e12][{#usn8}..{7}] End.`6esn` =#usn8 =~{_usn3} =~``,`7esn`+=12e12 Ends With `4esn` Ends With 123456789 Create `4esn`=Shortestpath(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))),((#usn8 {`8esn`:{7} Contains $123456789})) Union All Unwind $7 Is Not Null As `5esn` Create @usn6=(#usn8 :`7esn`)"), + octest_legacy:ct_string("Load Csv From _usn3[$usn2..0] As #usn7 Fieldterminator \"d_str\" Foreach(`6esn` In Count(*) In 0e0 In 9e1| Match usn1=Allshortestpaths((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})-[#usn8?:#usn8|`2esn` *0X7..0Xa{usn2:{1000},`6esn`:#usn8[`7esn`..]}]->(:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})))"), + octest_legacy:ct_string("Start `1esn`=Rel:usn2(`7esn`={7}) Unwind Reduce(`1esn`=12[..$@usn6],`` In {`1esn`} Starts With @usn6|00[..$123456789][..$`5esn`])[Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where {@usn5} Is Null)] As _usn3 Start #usn7=Node:#usn7('s_str') ,`6esn`=Node:@usn6({999})"), + octest_legacy:ct_string("Detach Delete $@usn5 In 's_str' In $12,Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]}))) Ends With Case When $``['s_str'..][0x0..] Then 9e12[..0X7] Else $1000[..$999] End,{`7esn`} Ends With `` Ends With {`8esn`}"), + octest_legacy:ct_string("Create Allshortestpaths((((`3esn` {`1esn`:$`6esn` Starts With 12.e12 Starts With $#usn7})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5)-[_usn4? *..010{`3esn`:$`3esn` In 9e12 In ``,@usn6:'s_str'[.._usn4][..``]}]->(:`6esn`:`8esn`{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})))) Create Shortestpath((({`2esn`:{7}[$7..],#usn7:`1esn` In 07})-[? *01..07]->({_usn4:{usn1} =~123.654 =~\"d_str\"}))),`1esn`=Allshortestpaths(((`8esn` {@usn6:12 Starts With {_usn4} Starts With $#usn8,`3esn`:.e1[@usn5]['s_str']}))) Union Delete Count(*)[.e12],All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,#usn7(01 =~$`1esn`) =~{@usn6:12.e12[$`8esn`..{`8esn`}],#usn8:#usn7 =~00} Load Csv From 9e1[$`2esn`..][`1esn`..] As `4esn` Return {1000} As `` Order By {1000}[1000][$usn1] Descending,$999[9e0..] Desc Skip Filter(`1esn` In `3esn`[07..] Where 12 Ends With 01)[..All(`3esn` In 123.654[1e1..][{#usn8}..] Where 0Xa Contains Count ( * ))]"), + octest_legacy:ct_string("Merge @usn6=((_usn4 :#usn8)<-[:#usn8|`2esn` *123456789..0X7{``:$#usn7 =~{12} =~False,`5esn`:{1000} In {123456789}}]->({`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF})<-[{``:\"d_str\"[{`8esn`}..]}]-(:#usn7{#usn7:$`8esn` In $`2esn` In {7}})) On Create Set _usn3 =1.e1[`4esn`..][$`6esn`..]"), + octest_legacy:ct_string("Start `1esn`=Relationship:usn1({999}) ,`4esn`=Node(01234567,0Xa,07)Where $usn1[$123456789..0][{`1esn`}..12.0] Union With *,[`2esn`,{`2esn`} Starts With @usn6,9e1 =~999] In Any(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3} Contains 9e0 Contains $999),Count(*) Starts With $usn1 Starts With {usn2} As @usn6 Limit Reduce(`6esn`=7[$0..][{_usn4}..],_usn3 In {`2esn`} Ends With {12} Ends With 7|{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`)[[$#usn7[`5esn`],Count(*) Ends With 123.654 Ends With $12,$#usn7[..@usn6][..$0]]] Where $_usn4 Is Not Null Is Not Null With *,{#usn7} Ends With Extract(`1esn` In 0.e0 =~`1esn` =~`6esn`|.e1 Ends With 0Xa Ends With .e1) As `5esn`,123456789 Is Not Null Is Not Null As #usn7 Skip {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Where $``['s_str'..][0x0..] Create #usn8=(`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`) Union All Load Csv With Headers From {`2esn`}[Count(*)] As usn2 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Unwind Count ( * )[00] As `3esn` Unwind 01[..{`7esn`}][..01234567] As @usn5 Start @usn6=Rel:`2esn`(`5esn`='s_str') ,_usn3=Relationship:`1esn`(#usn7=\"d_str\")Where 0.e0 Contains #usn7"), + octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From 0e0 Contains 9e12 As _usn3 Foreach(#usn8 In [`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7}|usn2[`7esn`..{`3esn`}][$7..{#usn7}]][..[`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]|9e12[..0X7]]][..[`2esn` Ends With $`4esn` Ends With {#usn7},'s_str'[..0X7],{#usn8} =~{999} =~{#usn7}]]| Create `6esn`=(({`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})),@usn5=((:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})<-[``:usn2|#usn7 *..0Xa]->(`1esn` {#usn8:$12 Contains 0Xa})) Remove {usn2:123.654[{`7esn`}][{7}],#usn8:$0[..{usn2}][..$usn1]}.usn2?)"), + octest_legacy:ct_string("Return {`4esn`}[$_usn4..][9e0..],0X7 Starts With {999} Starts With 12e12 As @usn5,$`2esn` Ends With 0.12 Ends With .e1 As `` Order By False[{`8esn`}] Asc,Reduce(usn2={`6esn`}[..{`2esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|1e1[..01]) Is Not Null Is Not Null Asc,{1000}[1000][$usn1] Ascending Union All Create Unique Shortestpath((`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})),(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]}) Union All Create `3esn`=Allshortestpaths((`7esn` :@usn6)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]}))"), + octest_legacy:ct_string("Using Periodic Commit 01234567 Load Csv From 7 Contains $`` Contains {`6esn`} As `8esn` Fieldterminator \"d_str\" Delete 12.e12[{@usn5}..][9e1..],Extract(_usn3 In True[7][$999] Where $`3esn`[{``}..]) Is Not Null Is Not Null,0.0 Contains $_usn4 Contains {`2esn`}"), + octest_legacy:ct_string("With 0.0 Is Not Null As `4esn` Order By $`8esn` Is Null Is Null Desc,[.e12 Ends With 1000 Ends With 010,Count(*)] Ends With {`7esn`:$_usn3 =~{_usn4} =~$`6esn`} Ends With Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]) Descending Remove {usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}.`7esn`?,Reduce(`1esn`=$`1esn`[#usn8][$@usn5],usn1 In 12.e12 In {0} In 9e1|.e12[$7..][{`6esn`}..]).`7esn`"), + octest_legacy:ct_string("Detach Delete Count ( * )[{12}..{@usn5}][{#usn8}..Null],(:_usn3{#usn7:#usn8 =~{999}})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07}) Contains None(_usn4 In 0.0[..{999}][..0.0] Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`) Contains Case When $`` Is Null Then 0.12 Ends With {1000} Ends With `6esn` When True[7][$999] Then 0Xa Contains Count ( * ) End Union All Start `1esn`=Relationship:usn1({999}) ,@usn5=Rel:usn1(@usn6=\"d_str\") Union All With *,`1esn`[Null..] As `2esn` Skip 's_str'[_usn4..0x0] Limit Allshortestpaths((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null}))) In {`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null} Where {7} Is Null Load Csv From {1000}[01234567..$_usn4][{@usn6}..$_usn3] As usn2 "), + octest_legacy:ct_string("Foreach(`6esn` In Reduce(`3esn`=#usn8 In `8esn` In 07,#usn7 In 123.654 Starts With $``|_usn3[$usn2..0])[..Any(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`])][..[$`1esn`[#usn8][$@usn5],\"d_str\" Ends With False Ends With {@usn6}]]| Create `5esn`=Shortestpath(((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))) Unwind {`1esn`:{123456789}[12..][$12..]} =~{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF} =~[`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`|_usn3[\"d_str\"]] As @usn6) Create Unique @usn5=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Union Match (`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}) Using Join On `6esn`,`1esn`,`` Load Csv From None(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) Ends With Case When 0x0[{999}..][{_usn4}..] Then Count(*)[.e12] When {_usn4}[...e12][..0xabc] Then Count(*) Ends With $`` Ends With {7} Else ``[{#usn8}] End Ends With Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where 's_str' Starts With 12e12 Starts With $_usn4|True Starts With $`4esn` Starts With 12e12) As usn1 Create ``=(:_usn3{`8esn`:9e1 =~999})"), + octest_legacy:ct_string("Remove (:@usn5)-[`8esn`?{`3esn`:'s_str'[..0X7]}]-(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}).`7esn`,All(#usn7 In 0Xa[@usn5][{`7esn`}] Where $@usn5 In $usn2 In {1000}).`6esn`!,{`7esn`:12e12 Ends With `4esn` Ends With 123456789}.usn2 Union All Start `3esn`=Rel:#usn8(\"d_str\") ,`3esn`=Node:`2esn`(@usn6={`4esn`}) Union All Merge Shortestpath((`6esn` {``:`4esn`[usn1]})<-[`7esn`?{_usn4:9e1 Ends With Count(*) Ends With False,#usn7:$_usn4 Ends With 0.e0 Ends With .e0}]->({`1esn`:$123456789[..$7][..$`6esn`]})-[_usn3:#usn7|`2esn`]-(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})) Remove Case 07[`8esn`] When {1000} Then {usn1} =~123.654 =~\"d_str\" Else Null Ends With 12 Ends With usn2 End._usn4?"), + octest_legacy:ct_string("Load Csv With Headers From 9e12 In 1e1 In .e12 As `5esn` With Distinct *,{999} Starts With {_usn4} Starts With 00 As `6esn`,(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As #usn7 Order By $@usn6 Starts With $123456789 Starts With 0X7 Desc Skip [`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]][..Reduce(`4esn`=@usn5[12.0][{1000}],_usn4 In `2esn`|0[$`6esn`...e1][`1esn`..$`7esn`])][..[7[010][00],$7[$`3esn`],#usn7 =~{`4esn`} =~123456789]] Limit $7 In 1.0 In 1e1 With 's_str'[_usn3..] As `5esn`,{0}[False..@usn5] As `1esn` Order By {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Desc,01234567[{`7esn`}..] Descending,[{7} Contains $123456789,$``[..1.e1][..12],$`5esn`[..{`2esn`}][..{0}]] =~`3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]) =~{`6esn`:{`3esn`} Ends With `1esn` Ends With $@usn6,@usn6:$usn1 In 0.12 In $``} Descending Skip .e0[..{`5esn`}][..999] Limit {`8esn`:`2esn` Starts With `` Starts With 1e1} In [usn1 In 00 In {_usn3}] In Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) Where $123456789[..$7][..$`6esn`]"), + octest_legacy:ct_string("Load Csv With Headers From 0e0 Contains 9e12 As _usn3 Remove Single(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn4} In {1000}).usn1 Union All Create Unique Allshortestpaths((:_usn4{`1esn`:{123456789}[12..][$12..]})) Load Csv With Headers From @usn5 Contains {0} Contains 9e12 As `` Union Start #usn8=Relationship( {`4esn`}) ,@usn6=Node:@usn6(_usn4={_usn4})Where `2esn` Merge ((`4esn` :usn2:`2esn`))"), + octest_legacy:ct_string("Using Periodic Commit 07 Load Csv With Headers From All(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[{#usn7:Count ( * )[$12..]}..][`5esn`(Distinct False Starts With 010)..] As @usn5 Fieldterminator 's_str' Remove (:`7esn`{999})<-[:`6esn`{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},`6esn`:``[..$#usn7]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]})<-[:`1esn`|:`3esn` *1000]->(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0}).`2esn`! Merge `7esn`=Allshortestpaths((#usn7 {``:0x0 =~123.654 =~{999}})) On Match Set `3esn`+=$`5esn`[$#usn7..][0xabc..],`4esn`+=$#usn7 =~9e1 =~$_usn4,`3esn`+=#usn8 =~`7esn`"), + octest_legacy:ct_string("Foreach(`4esn` In Reduce(`7esn`={@usn5} Is Null,#usn7 In 0Xa[@usn5][{`7esn`}]|0e0[0X0123456789ABCDEF..010][$@usn6..010])[Extract(_usn4 In `2esn` Where 123.654 Starts With $``|12.e12[``..usn2][{#usn7}..@usn5])]| Delete Shortestpath((@usn6 {``:.e12[\"d_str\"..][.e1..]}))[{`3esn`:#usn8 =~{999}}..[_usn3 In True[7][$999] Where 12e12 Is Not Null Is Not Null]],{@usn5} Is Null With {`4esn`}[$_usn4..][9e0..] Skip Reduce(_usn4=.e1 Starts With $_usn4 Starts With {`1esn`},`6esn` In 00|usn2[True])[..[9e12[..0X7]]][..$`1esn`] Where {`2esn`} Is Not Null Is Not Null) Union With $12 Is Not Null As `6esn`,(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Is Not Null Is Not Null As `2esn`,$`4esn` In Null Order By 2.12[`8esn`][1e1] Descending Skip $1000 Is Null Is Null Optional Match `8esn`=Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Using Scan `4esn`:_usn4"), + octest_legacy:ct_string("Start @usn6=Node:@usn6(_usn4={_usn4}) ,@usn5=Rel:@usn5({`3esn`})Where Count(*)[010..][#usn7..] Unwind [0X0123456789ABCDEF[$999..][@usn5..]] Contains Reduce(#usn7={12}[999][{_usn3}],`2esn` In {999} Is Not Null|$usn1 =~010 =~07) Contains None(`1esn` In `3esn`[07..]) As @usn5 Load Csv With Headers From {`7esn`:{999} Starts With {12},`3esn`:00} =~[0X0123456789ABCDEF[$`5esn`..],#usn7 Ends With $#usn7 Ends With {`8esn`}] =~[{12} =~0.e0 =~{_usn3},$#usn7 =~{12} =~False,1000 Is Null] As `6esn` Fieldterminator 's_str' Union Create Unique `5esn`=((`4esn` {`7esn`:12.e12 In $0 In $0,@usn5:_usn4[Count(*)]})<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})) Merge `5esn`=Allshortestpaths((((:#usn8{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})-[?:`` *..00{``:`3esn` =~9e0 =~@usn6}]-(:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})-[:_usn4|:usn1 *07]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})))) On Create Set _usn4+=0.12[Count(*)..][$#usn7..],None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]).@usn6! =[$`1esn`[$12][Count ( * )],9e1 Ends With $@usn5 Ends With $123456789] Is Not Null Is Not Null On Create Set {`3esn`:0X0123456789ABCDEF[$`2esn`..][`2esn`..]}.`4esn`? =`1esn`(Distinct $usn1 Starts With {_usn3},{#usn8}[$#usn7..]) Starts With [$_usn4[$`4esn`..$12]] Starts With [`6esn` In 00 Where 0.12 In 0X7|{999} Is Null],usn1:#usn7,Case When 1.e1[0xabc..] Then $@usn6 Starts With {`1esn`} Starts With 12 End.`2esn`! ={@usn5} Starts With 1.0 Starts With 00"), + octest_legacy:ct_string("Match (_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0}),`5esn`=Shortestpath(((#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null})<-[?:#usn7|`2esn`{@usn5:$0 Is Not Null}]-(`` {``:0x0 =~123.654 =~{999}}))) Using Index `6esn`:`7esn`(#usn8) Using Join On #usn8,usn2,#usn7 Where $_usn3[010..False] Union All Detach Delete Count ( * )[{12}..{@usn5}][{#usn8}..Null],(:_usn3{#usn7:#usn8 =~{999}})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07}) Contains None(_usn4 In 0.0[..{999}][..0.0] Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`) Contains Case When $`` Is Null Then 0.12 Ends With {1000} Ends With `6esn` When True[7][$999] Then 0Xa Contains Count ( * ) End"), + octest_legacy:ct_string("Remove (_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`3esn` {`1esn`:$`6esn` Starts With 12.e12 Starts With $#usn7})-[_usn4 *0x0..]-(:``$_usn4).#usn8!,Extract(_usn4 In 0.0[..{999}][..0.0] Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`|{`6esn`} Ends With 0e0 Ends With {``}).`1esn`! Foreach(`` In 00 Ends With `8esn`| Match _usn4=Shortestpath(((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))) Using Index `1esn`:`4esn`(`1esn`)) Unwind {`6esn`} Contains {usn2} Contains $1000 As `2esn` Union All Match (:``),`4esn`=(`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})-[?:@usn6|`` *..0Xa]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]}) Using Scan `7esn`:#usn8 Create Shortestpath((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Foreach(usn1 In `8esn`[..`4esn`][..$usn1]| Load Csv With Headers From {12}[00..{@usn6}][1.e1..0] As @usn6 ) Union All Start `8esn`=Node:`1esn`({@usn5}) Load Csv From [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null As `7esn` Fieldterminator 's_str' Foreach(`8esn` In 1.0 Ends With $`2esn` Ends With {`8esn`}| With Distinct *,Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End[None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])][count(Distinct $`5esn`[$#usn7..][0xabc..])] As `2esn`,12 Is Not Null Is Not Null As #usn8 Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}])[[#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}]..{`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}][Case When 2.12 =~0x0 =~_usn4 Then .e1[@usn5]['s_str'] When $@usn5 In $usn2 In {1000} Then {0}[False..@usn5] Else {@usn6}[True..{_usn3}] End..`1esn`()] Ascending)"), + octest_legacy:ct_string("Remove @usn5:``,(`6esn` :_usn3)<-[`1esn`? *0X0123456789ABCDEF{`5esn`:1.e1 Starts With $`2esn` Starts With $0}]->({_usn4:{usn1} =~123.654 =~\"d_str\"}).`2esn` Create Unique ((:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})) Union Start `8esn`=Node:#usn7(`5esn`=\"d_str\") ,`6esn`=Node:_usn4({`8esn`})Where 9e0[#usn8]"), + octest_legacy:ct_string("Foreach(`5esn` In Null Ends With 12 Ends With usn2| Create @usn6=((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1)),``=Shortestpath(((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})))) Union All Merge usn2=Allshortestpaths((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}))) On Match Set @usn5 =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Foreach(#usn7 In {@usn5} =~_usn4 =~0.12| Match #usn7=Allshortestpaths((:`5esn`:@usn5{#usn8:123.654[$`1esn`..Null][1000..{_usn3}],`6esn`:12.0 =~$#usn7 =~9e12})-[`1esn`:usn2|#usn7{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})),usn1=((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})) Where .e12[$7..][{`6esn`}..]) Union Detach Delete 0.0 =~12.e12 =~1.0,$`2esn`[{usn1}..]"), + octest_legacy:ct_string("Merge `7esn`=Allshortestpaths(((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1))) On Create Set `8esn`+=Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where 1.e1[12e12..{`6esn`}]|Count ( * )[..12][..{@usn6}]) Contains All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Contains Extract(_usn4 In `2esn` Where $999 Is Null),`8esn` ={#usn7} Starts With `3esn` Starts With {``},Single(_usn4 In 0.0[..{999}][..0.0] Where Count(*) In {``}).`1esn`! =0X0123456789ABCDEF =~@usn6 =~{0} Return *,Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6) Starts With [$_usn3[010..False],$123456789 =~`4esn`,$usn1[$123456789..0][{`1esn`}..12.0]] As `8esn`,12 Starts With 0x0 As `2esn` Order By All(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[{#usn7:Count ( * )[$12..]}..][`5esn`(Distinct False Starts With 010)..] Asc,All(usn1 In 12.e12 In {0} In 9e1)[[`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]|12.e12[$`8esn`..{`8esn`}]]..] Asc Limit 0Xa[07..] Union Load Csv From _usn4($123456789 =~`4esn`)[None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where Count(*) In {``})..][Any(`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7})..] As `3esn` Optional Match #usn7=Allshortestpaths(((:`5esn`:@usn5))),(((`5esn` :@usn6)<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5)<-[ *123456789..0X7]-(:`7esn`{``:.e1 Contains $`3esn`}))) Using Scan usn1:`1esn` Foreach(usn2 In $@usn6[$0..usn1][0X0123456789ABCDEF..$999]| With Distinct *,{@usn6} Is Not Null As `7esn` Order By usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3) Ascending,.e1 =~$`5esn` Desc,Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000|$@usn5 In $usn2 In {1000}) Is Not Null Ascending Skip #usn7[00] Limit $`7esn` Is Null Is Null)"), + octest_legacy:ct_string("Remove Reduce(usn1=12e12 Ends With `4esn` Ends With 123456789,`1esn` In 0.e0 =~`1esn` =~`6esn`|1.e1[0xabc..]).`4esn`!,[$@usn6[$0..usn1][0X0123456789ABCDEF..$999],0.0 Is Not Null Is Not Null,0Xa Contains $``].`7esn`? Union Start `4esn`=Node:`1esn`(#usn7=\"d_str\") Where $_usn3 Is Null Is Null Unwind `7esn`[0..$usn2][{usn2}..0.e0] As `1esn` Create `7esn`=((:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})<-[`2esn`?:@usn6|`` *..00]->({_usn3})) Union All Create usn1=(((:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})<-[:``]-(_usn3 :`7esn`)<-[ *0xabc..7]->({#usn7:123456789[0..]}))) Start ``=Node:`6esn`('s_str') Where #usn7 Ends With $#usn7 Ends With {`8esn`}"), + octest_legacy:ct_string("Match `5esn`=Shortestpath((_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null})<-[@usn5?:`8esn`|:_usn4 *0X0123456789ABCDEF{usn1:False Contains $#usn8 Contains 9e1}]->({@usn6:$usn1[0X7],`3esn`:$7[$`3esn`]})),`8esn`=((@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})) Using Index @usn5:usn2(`6esn`) With Distinct *,$`8esn` In $`2esn` In {7} As #usn8,$#usn8[{12}..] As `6esn` Skip Null In .e0 Limit 0e0[{_usn3}..] Where 9e1 =~`` =~{`7esn`} Union All Delete 0X0123456789ABCDEF[`5esn`..][$#usn8..],`3esn` Is Not Null Is Not Null,0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] Foreach(`` In $`6esn`[9e1]| Load Csv With Headers From Reduce(@usn5=0.e0 Contains #usn7,`` In {usn1} Ends With {`6esn`} Ends With 123456789|$999 In 999)[Allshortestpaths(({`4esn`:#usn8 Is Null})-[:usn1{_usn4:0[{usn2}..][usn1..],`3esn`:12 Starts With 7 Starts With $`5esn`}]-(`7esn` :`3esn`:`6esn`)<-[`6esn`?:#usn8|`2esn`*..{`5esn`:@usn5 =~'s_str'}]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}))..{@usn6:0.0 Is Not Null Is Not Null,#usn7:\"d_str\"[{`8esn`}..]}] As `3esn` Fieldterminator 's_str') Create Allshortestpaths((((:@usn5{@usn6:{7} Contains $123456789})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})-[`3esn`:`6esn`{`3esn`}]-(#usn8 :`6esn`:`8esn`{`1esn`:9e12 Is Not Null,_usn4:0X0123456789ABCDEF[$`2esn`..][`2esn`..]}))))"), + octest_legacy:ct_string("Create Unique Shortestpath((((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4})))),Shortestpath((usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})) Remove Reduce(`3esn`={usn1} In Count ( * ),`1esn` In `3esn`[07..]|$123456789 Starts With $123456789 Starts With Count ( * )).@usn6!,Shortestpath((:_usn3{#usn7:#usn8 =~{999}})).#usn8 Start `2esn`=Node:usn1({`7esn`}) ,@usn5=Rel( {`7esn`})Where 123.654[1e1..][{#usn8}..] Union Return $12 Is Not Null As `6esn`,(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Is Not Null Is Not Null As `2esn`,$`4esn` In Null Order By 2.12[`8esn`][1e1] Descending Skip $1000 Is Null Is Null Create Unique `2esn`=((_usn3 :`5esn`:@usn5)<-[`7esn`? *0xabc..7]->(:`6esn`:`8esn`{`3esn`:$`6esn`[{`3esn`}..12],_usn3:0[{@usn5}..][7..]})),@usn6=(((:_usn3{`8esn`:9e1 =~999})<-[@usn6?]->(`6esn` :_usn3)<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`))) Union Optional Match `8esn`=(@usn6 :`6esn`:`8esn`)<-[_usn4?:`7esn`{``:{_usn3} Contains $`1esn` Contains 12.0}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}),Shortestpath((`6esn` {``:`4esn`[usn1]})<-[`7esn`?{_usn4:9e1 Ends With Count(*) Ends With False,#usn7:$_usn4 Ends With 0.e0 Ends With .e0}]->({`1esn`:$123456789[..$7][..$`6esn`]})-[_usn3:#usn7|`2esn`]-(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})) Using Join On `7esn` Using Scan _usn4:#usn8 Where $12 Contains 0Xa Create (#usn8 :#usn8) Unwind `6esn` Contains {`1esn`} Contains 9e0 As `1esn`"), + octest_legacy:ct_string("Remove Extract(_usn4 In `2esn` Where 1.0[{999}][$999]|`4esn`[usn1]).#usn7! Union All Foreach(`8esn` In Shortestpath(((:@usn6{usn2:{#usn8}[12.0][$@usn6]})<-[{_usn4:{1000} Ends With {`8esn`}}]-(@usn5 :`7esn`{_usn3:{``}[_usn4..$`1esn`]})<-[#usn8? *..0Xa{`4esn`:$`2esn` Ends With 0.12 Ends With .e1,`4esn`:07 =~@usn5}]-(:`3esn`:`6esn`{999})))[..Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where Count(*) Ends With 123.654 Ends With $12|0Xa[$1000..$123456789])][..{@usn6:12 Starts With {_usn4} Starts With $#usn8}]| Match _usn3=(@usn6 :@usn6),usn2=((_usn4 :#usn7{`8esn`:$999 Contains {7}})<-[`4esn`:`4esn`|:#usn7{`2esn`:{`4esn`}[$_usn4..][9e0..]}]-(`6esn` )) Using Index `3esn`:#usn7(usn2))"), + octest_legacy:ct_string("Detach Delete Filter(`1esn` In `3esn`[07..] Where 07 =~$`8esn` =~9e1) Is Not Null,False Ends With $`` With Distinct {`8esn`}[..$`6esn`][..123.654],{@usn6} In {#usn7} In 12.e12 As usn1,0.12 Is Not Null Is Not Null Limit Reduce(`3esn`={_usn3} Is Not Null,usn1 In 12.e12 In {0} In 9e1|0[Count(*)][0e0])[`6esn`(``[..0X0123456789ABCDEF])..Single(`` In {`1esn`} Starts With @usn6 Where {_usn3}[$usn2..])] Load Csv From {`6esn`} Is Null As `8esn` Fieldterminator \"d_str\" Union All Merge `7esn`=(({@usn6:$`` Starts With 12 Starts With $usn2})) On Match Set (:_usn3$usn1)<-[`2esn`:`5esn` *0x0..{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})._usn4 =#usn7 Starts With $999 Create `3esn`=Shortestpath((`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})),Allshortestpaths(((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0}))) Start #usn8=Relationship:usn1({7}) "), + octest_legacy:ct_string("Unwind 0xabc[9e12][0X0123456789ABCDEF] As _usn4"), + octest_legacy:ct_string("Optional Match Shortestpath(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),((`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})) Where {@usn5} =~_usn4 =~0.12 Foreach(`1esn` In .e1 Contains $`3esn`| Create Unique @usn5=Allshortestpaths(({`8esn`:0[$`6esn`...e1][`1esn`..$`7esn`]})-[#usn8:#usn7|`2esn`]->(:@usn6{`2esn`:$999 In 999})),`1esn`=((`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})-[ *0xabc..7{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}]-({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})-[`2esn`:`3esn`|:@usn5 *..010{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->({`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]}))) Unwind Reduce(@usn6=@usn5[$12..\"d_str\"],`` In {`1esn`} Starts With @usn6|Count ( * ) =~{`5esn`} =~{_usn4}) Starts With None(`1esn` In $12 Is Not Null Where `7esn` Is Not Null Is Not Null) Starts With [$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null] As `2esn` Union All Create Unique `6esn`=((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[:`2esn` *07]-(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]->({``:.e1 Contains $`3esn`})) Load Csv With Headers From @usn5 Contains {0} Contains 9e12 As `` Remove [`3esn` In 123.654[1e1..][{#usn8}..] Where {@usn6} In {#usn7} In 12.e12|123.654 Contains $_usn3 Contains 0X0123456789ABCDEF].usn2?,None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12.e12[``..usn2][{#usn7}..@usn5])._usn3? Union All With {usn1}[$`8esn`..0.0] As #usn8 Skip {`2esn`} Ends With {12} Ends With 7 Limit .e1 Starts With $_usn4 Starts With {`1esn`} Where .e12 Contains $`1esn` Contains $@usn6 Match (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` )) Using Join On `8esn`,_usn4 Using Index `7esn`:`1esn`(`2esn`)"), + octest_legacy:ct_string("Remove Reduce(`4esn`={7} Contains $123456789,`1esn` In `3esn`[07..]|$@usn6 Contains $`7esn` Contains 1e1).usn2?,None(`1esn` In $12 Is Not Null Where .e1[@usn5]['s_str']).usn1!,Any(`` In {`1esn`} Starts With @usn6 Where \"d_str\"[{`8esn`}..])._usn4!"), + octest_legacy:ct_string("Load Csv With Headers From Shortestpath((@usn6 {``:.e12[\"d_str\"..][.e1..]}))[{`3esn`:#usn8 =~{999}}..[_usn3 In True[7][$999] Where 12e12 Is Not Null Is Not Null]] As `4esn` Unwind {``} Is Null Is Null As `3esn` Optional Match `1esn`=(usn1 :`8esn`:@usn5)<-[?:_usn4|:usn1 *..00{`1esn`:{#usn8}[2.12]}]->(:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00}) Using Index usn1:`3esn`(`3esn`) Using Join On usn1 Where $7[$`3esn`] Union Create Unique `7esn`=((`8esn` :@usn6)) Unwind {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn` As `5esn` Unwind {usn1:$`8esn` In $`2esn` In {7},`7esn`:{`2esn`} In $123456789 In True}[..(:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})-[`3esn`:`` *123456789..0X7{#usn8:12 Starts With $#usn7}]-(`3esn` :`7esn`)-[?*..{`1esn`:$`1esn`[07..][9e12..],@usn6:{7} Starts With $usn1 Starts With 1.0}]->(:`3esn`:`6esn`)][..Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6)] As `1esn`"), + octest_legacy:ct_string("Load Csv From ``(999 Starts With 's_str',1e1[1.e1..][123.654..]) =~[$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]] =~[#usn7 In 0Xa[@usn5][{`7esn`}] Where `5esn`[0xabc..]] As #usn8 Create `6esn`=Shortestpath(((:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}))),Shortestpath((usn2 :`5esn`:@usn5)<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(#usn7 {`7esn`:12e12 Ends With `4esn` Ends With 123456789})-[?:`7esn`]->(#usn7 :@usn6)) Start `4esn`=Node:``(\"d_str\") Union Load Csv With Headers From $1000[..12.0][..0e0] As `` Union Load Csv With Headers From $`1esn`[07..][9e12..] As `` Fieldterminator 's_str' Create `2esn`=Allshortestpaths(((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]})<-[:@usn5|:`7esn`{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->({#usn7:123456789[0..]}))) Return *,[#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null,{999}[9e1] As usn1 Order By {123456789} =~{@usn6} Desc,Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..] Desc,{`5esn`} Ends With \"d_str\" Desc Limit _usn4 =~0e0"), + octest_legacy:ct_string("Return Distinct {usn1}[{`5esn`}..] As _usn4,[$_usn4[9e0..]][`8esn`(Distinct {7} Starts With $usn1 Starts With 1.0)..Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} Starts With 1.0 Starts With 00|$#usn7[..@usn6][..$0])][Any(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{#usn8:{`7esn`} Is Not Null Is Not Null,`4esn`:12 Starts With 0x0}] As `1esn` Skip 07[$`2esn`..0x0] Limit {_usn4}[..$#usn7] Return Distinct Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..],`` =~`6esn` =~usn1 As `2esn` Order By .e12[$#usn8..@usn6] Desc,{usn1}[$`8esn`..0.0] Desc Limit None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False) Is Null Return Distinct {`3esn`}[{12}..][0.12..] As ``,$``[True..] Order By [`2esn` In {999} Is Not Null Where {@usn6}[True..{_usn3}]] =~None(#usn7 In 123.654 Starts With $`` Where {usn2}[$`4esn`]) =~Extract(`1esn` In $12 Is Not Null Where Null Is Null Is Null|$123456789 =~`4esn`) Ascending,{0}[False..@usn5] Desc Limit 12 In 999"), + octest_legacy:ct_string("Start `5esn`=Relationship(01,0x0,0X7,0X7) Where {@usn5}[1e1..][9e1..] Optional Match Shortestpath((`7esn` {@usn6:{_usn4} Is Null})<-[usn2? *0xabc..7{usn1:$123456789 Starts With `5esn`}]->(:`4esn`:@usn6{`1esn`:{12}[00..{@usn6}][1.e1..0],usn1:``[..0X0123456789ABCDEF]})-[`1esn`?:_usn4|:usn1*]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})) Using Scan `2esn`:@usn6 Return Distinct [.e12 Ends With 1000 Ends With 010,Count(*)] Ends With {`7esn`:$_usn3 =~{_usn4} =~$`6esn`} Ends With Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]) As @usn6,$123456789[$`5esn`][$_usn4] As `4esn` Order By Single(`8esn` In $12[{7}..0X0123456789ABCDEF])[Case 9e1[123456789..] When 12 Starts With 7 Starts With $`5esn` Then {_usn3} Contains True Contains 0X7 When `1esn`[..00][..{7}] Then 1.e1[12e12..{`6esn`}] End..] Descending"), + octest_legacy:ct_string("Optional Match ((()-[?:`3esn`|:@usn5 *0x0..{`3esn`:.e1[0.12],`7esn`:$123456789 Starts With .e12}]-(:`6esn`:`8esn`{@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]})-[?:usn2|#usn7]-(`1esn` {#usn7:Count ( * )[$12..]}))),((`4esn` {`1esn`:9e12 Is Not Null Is Not Null})-[?:`7esn` *999{@usn6:{``} Ends With .e12 Ends With 0.e0,`5esn`:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})) Using Index usn1:`7esn`(_usn3) Where 07 =~@usn5 Union Detach Delete 9e0 Starts With .e0 Starts With \"d_str\",(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) Union Match _usn3=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`)))"), + octest_legacy:ct_string("Delete $`1esn`[..{_usn3}],usn2[`7esn`..{`3esn`}][$7..{#usn7}],{`8esn`}[0X7][$`3esn`]"), + octest_legacy:ct_string("Load Csv With Headers From 's_str'[$usn2][Count(*)] As `5esn` Remove {`5esn`:01234567[..9e1]}.#usn8!,[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $`8esn`[..$999][..0]].@usn6!,None(#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}).`6esn` Union All Load Csv With Headers From ``(999 Starts With 's_str',1e1[1.e1..][123.654..]) =~[$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]] =~[#usn7 In 0Xa[@usn5][{`7esn`}] Where `5esn`[0xabc..]] As @usn5 Union All Return Distinct *,1.e1 Ends With 0 Ends With $usn1 As `` Order By $`1esn` =~$usn1 =~01234567 Asc,$`2esn` Ends With `` Ends With {12} Descending,$#usn7 =~9e1 =~$_usn4 Asc Skip Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))[All(`2esn` In {999} Is Not Null Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF)][Shortestpath((:_usn3{_usn3:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF,`5esn`:1.0 Is Null Is Null})<-[`3esn`:`6esn`{`3esn`}]-(_usn4 :#usn7{_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})<-[ *123456789..0X7]-(`2esn` :`2esn`{`3esn`:#usn8 =~{999}}))] Foreach(`` In 0X7[0X7..][Count ( * )..]| Unwind [`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*)] Starts With (`5esn` :`7esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`}) Starts With `6esn`(Distinct 12.e12[``..usn2][{#usn7}..@usn5],$`7esn` In 12) As @usn5)"), + octest_legacy:ct_string("Remove $`6esn`.`8esn`,Extract(@usn5 In Null =~12e12 Where 7 Is Not Null|True =~_usn3 =~123456789).usn1?,{`8esn`:1e1[{_usn4}..123.654],`2esn`:0X0123456789ABCDEF[$999..][@usn5..]}.`8esn`"), + octest_legacy:ct_string("Optional Match Allshortestpaths((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Detach Delete 0.12[Count(*)..][$#usn7..],0Xa[0e0..{#usn7}] Match ((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]})),(((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`}))) Using Join On `8esn`,_usn4 Where $`7esn` In 12"), + octest_legacy:ct_string("Load Csv From {`3esn`}[{123456789}..][{usn1}..] As `6esn` Optional Match Shortestpath((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Using Join On usn1,_usn4,`6esn` Using Index usn1:_usn3(``) Where {_usn3}[`3esn`..$#usn8] Return _usn4 Is Null Is Null,$`5esn` Is Not Null As _usn4 Order By Shortestpath((`6esn` :`7esn`)-[:_usn3|`8esn` *12..{`8esn`:Count(*)[.e12..],`5esn`:{#usn8}[12.0][$@usn6]}]-(`1esn` {_usn4:`3esn`[_usn4..{0}][`5esn`..usn2]})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`)) Contains Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) Ascending,({`8esn`:Null In .e0})-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}) =~None(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) =~(`6esn` :`2esn`{`7esn`:#usn8 =~{999}})<-[:#usn7|`2esn`]->(:#usn7{usn2:{`8esn`}[0X7][$`3esn`]}) Ascending Skip {`4esn`}[$123456789] Limit Single(`6esn` In 00 Where 0.12 In 0X7)[..{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] Union All With Distinct {`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] As `4esn`,123.654 Ends With usn2 Ends With 0 Skip .e0[0.12] Where 9e12 Ends With 123456789"), + octest_legacy:ct_string("Remove ({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6})-[`7esn`? *..0{`2esn`:07 =~$`8esn` =~9e1,``:`5esn`[0xabc..]}]->({`3esn`:{@usn5} Is Null,`5esn`:{`2esn`} Ends With {12} Ends With 7})._usn3!,Any(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null).``,None(`2esn` In {999} Is Not Null Where {1000}[1000][$usn1]).`4esn`? Return Distinct {#usn8}[12.0][$@usn6],$usn2 In 123.654 In .e0,{@usn6}[$`7esn`..][False..] Skip 1000 Is Null Limit $usn1 In 0.12 In $`` Union All Start usn1=Node:_usn4({`8esn`}) ,_usn3=Relationship:usn1('s_str') Load Csv From {_usn3}[`3esn`..$#usn8] As `4esn` Fieldterminator 's_str' Union Merge ((:`5esn`:@usn5{usn1:$#usn7[`5esn`]})-[@usn5{#usn7:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,#usn7:.e12[$#usn8..@usn6]}]->(`5esn` :@usn5)<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]-({`7esn`:123.654 Ends With usn2 Ends With 0})) On Create Set #usn8+=``(#usn8 =~{999})[Single(_usn3 In {@usn5}[..#usn7])..][Case $123456789 Is Not Null When .e1[0.12] Then {@usn5}[..{12}][..0x0] When @usn5 Is Not Null Is Not Null Then \"d_str\" Ends With False Ends With {@usn6} End..] On Match Set @usn6($@usn6 Contains `7esn`).@usn5! =$`5esn` Ends With 00 Ends With #usn7,Reduce(usn2=True[7][$999],`` In {`1esn`} Starts With @usn6|{`4esn`}[$_usn4..][9e0..]).`6esn` ={`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn` Start #usn7=Node:_usn4(``=\"d_str\") ,`4esn`=Node:_usn3({123456789}) Return *,`2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}],{#usn7} Starts With `3esn` Starts With {``} As `8esn` Order By (`4esn` :`1esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]->(#usn7 )[Single(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null)] Ascending,Reduce(@usn6=@usn5[$12..\"d_str\"],`` In {`1esn`} Starts With @usn6|Count ( * ) =~{`5esn`} =~{_usn4}) Starts With None(`1esn` In $12 Is Not Null Where `7esn` Is Not Null Is Not Null) Starts With [$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null] Descending Skip ``[$0..][`1esn`..]"), + octest_legacy:ct_string("Unwind $999 Contains 12e12 Contains {usn2} As #usn7 Remove Allshortestpaths((({#usn7:#usn8 =~{999}})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2}))).@usn6,_usn4:`8esn`:@usn5 Merge `7esn`=((:`2esn`))"), + octest_legacy:ct_string("Start `3esn`=Relationship:#usn8(_usn3={#usn7}) ,`8esn`=Rel( {`3esn`})Where $`2esn` Is Null Is Null Return *,{`4esn`:$`3esn` Contains 0 Contains 07}[Reduce(_usn4={123456789} =~01234567 =~`3esn`,_usn3 In True[7][$999]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`])][(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6)] As #usn7,_usn4 Is Null Is Null Order By {usn2} =~@usn6 =~{`4esn`} Asc,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Descending Skip `6esn` Starts With 123.654 Limit @usn6(`` Ends With $`4esn` Ends With 0X0123456789ABCDEF)[..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[:#usn8|`2esn` *0x0..{`3esn`:.e12[$7..][{`6esn`}..]}]->({usn1:1000 Is Null Is Null})] Unwind $999 Contains 12e12 Contains {usn2} As #usn7 Union All Delete {`8esn`} =~#usn8 =~$`3esn`,0Xa Contains {`7esn`} Contains $999,\"d_str\"[Count ( * )..`6esn`] Create _usn3=Shortestpath((`6esn` {``:`4esn`[usn1]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]-(#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]})),((:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]->(:`2esn`{`6esn`:@usn6[{0}..]})<-[`1esn`?:_usn4|:usn1*]->(usn2 :``)) Return {`7esn`}[0X7..][0x0..] As @usn6,@usn6[Count ( * )][True] Skip 7 Is Not Null Limit `8esn` Union Match Shortestpath((((:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})))) Using Index `4esn`:usn2(`4esn`) Match (({`8esn`:0[$`6esn`...e1][`1esn`..$`7esn`]}))"), + octest_legacy:ct_string("Load Csv With Headers From @usn5 Contains {0} Contains 9e12 As `` Remove Filter(`` In {`1esn`} Starts With @usn6 Where 12 Starts With 7 Starts With $`5esn`).``,Single(`1esn` In $12 Is Not Null Where {usn1} In Count ( * )).usn2?,Shortestpath((_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}})).#usn8? Foreach(`7esn` In usn2(Distinct 0Xa[..{1000}][..$#usn7])[Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000|\"d_str\"[{`8esn`}..])][(`4esn` :`1esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]->(#usn7 )]| With Distinct *,{@usn6} Contains 0e0,[`1esn` In $12 Is Not Null Where {`3esn`}[{`5esn`}]|True Is Not Null Is Not Null] Ends With Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End Ends With `3esn`(Distinct 1.e1 =~$usn2,0X0123456789ABCDEF Is Null Is Null) As `5esn` Order By @usn5 =~`` Asc Skip 07 =~$`8esn` =~9e1 Limit \"d_str\"[{`8esn`}..] Where `3esn` Is Not Null Is Not Null Create Unique @usn5=Allshortestpaths(({`8esn`:0[$`6esn`...e1][`1esn`..$`7esn`]})-[#usn8:#usn7|`2esn`]->(:@usn6{`2esn`:$999 In 999})),`1esn`=((`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})-[ *0xabc..7{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}]-({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})-[`2esn`:`3esn`|:@usn5 *..010{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->({`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]}))) Union All Load Csv From $`4esn` Starts With 9e12 As `3esn` Fieldterminator \"d_str\" Unwind @usn5[12.0][{1000}] As `8esn` Merge #usn8=Allshortestpaths((((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`})))) On Create Set [0X0123456789ABCDEF Contains $`1esn` Contains 1000].``! =1000[$7..$123456789] On Create Set Filter(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $7[{`1esn`}]).``! =$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,exists($`5esn`[`4esn`][_usn3]).@usn5 =$7[{`1esn`}],`2esn`({1000}[1000][$usn1]).`8esn`! =_usn4[['s_str'[..0X7],False Contains 0.e0 Contains Count(*)]..] Union Create (({`1esn`:{123456789}[12..][$12..]}))"), + octest_legacy:ct_string("Merge @usn6=((usn1 {`4esn`:1.0[{999}][$999],``:9e1[9e1...e0]})<-[? *0xabc..7]->(`3esn` :`3esn`:`6esn`)) On Create Set Filter(`5esn` In $`2esn`[12.e12][$@usn5] Where 12[..$@usn6]).`2esn`! =123456789 Starts With {999} Create Unique (:`2esn`$1000)-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`` {``:0x0 =~123.654 =~{999}})"), + octest_legacy:ct_string("Remove {`4esn`:`3esn` Is Not Null Is Not Null}.`2esn`! Unwind False Starts With 010 As #usn8 Return Distinct $#usn7 =~9e1 =~$_usn4 Union All Match usn1=(((:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})<-[:``]-(_usn3 :`7esn`)<-[ *0xabc..7]->({#usn7:123456789[0..]}))),(usn2 :`5esn`:@usn5)-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]}) Union Unwind #usn8['s_str'..][123.654..] As _usn4 Load Csv From $usn2 Ends With $`5esn` As #usn8 Create Unique Shortestpath((`1esn` :@usn5{_usn3:Null Is Null Is Null,``:True[True..]}))"), + octest_legacy:ct_string("Foreach(`` In {12} =~0.e0 =~{_usn3}| Detach Delete 12.e12 In {0} In 9e1,$``[01],0.0 In `6esn` In $@usn5 Create Unique #usn7=(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}),`6esn`=(({@usn6:Null =~12e12}))) Union All Load Csv With Headers From {`7esn`}[..9e12][..0.0] As @usn5 Fieldterminator 's_str' Remove Single(`2esn` In {999} Is Not Null Where $usn1[@usn6][#usn7]).#usn8? Return Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))) =~Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) As _usn4,7[..$`1esn`][..00],{12} Starts With #usn8 Starts With 0e0 Order By $0 Starts With `2esn` Desc,0.12 In 0X7 Descending,12.e12 In $0 In $0 Desc Limit `6esn` In Null Union Load Csv From [{`3esn`} Is Null,{@usn5} =~_usn4 =~0.12] =~Extract(_usn4 In `2esn` Where 1.0[{999}][$999]) As _usn3 Fieldterminator \"d_str\" Load Csv From {usn1} In Count ( * ) As usn1 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Foreach(#usn8 In Case 9e0 In usn1 When {@usn6} Contains 123.654 Contains 01 Then $@usn5 In 's_str' In $12 End In Allshortestpaths(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))) In Case {`7esn`}[9e1..][@usn6..] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" When {7}[{`4esn`}][`6esn`] Then 0xabc[$@usn5] Else 0e0 End| Start `4esn`=Node:``(\"d_str\") Start _usn3=Relationship:``(`1esn`={`2esn`}) Where 0[{usn2}..][usn1..]) Create Unique ``=((`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6)<-[#usn7]-(@usn6 )),`6esn`=Allshortestpaths(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})-[:`1esn`|:`3esn` *..01234567{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(#usn7 {``:0x0 =~123.654 =~{999}}))"), + octest_legacy:ct_string("Return Distinct Filter(`1esn` In `3esn`[07..] Where 12 Ends With 01)[..All(`3esn` In 123.654[1e1..][{#usn8}..] Where 0Xa Contains Count ( * ))] As usn2,{usn1}[01..7][{`3esn`}..`6esn`] Order By Reduce(`4esn`=@usn6[$_usn4],`8esn` In $12[{7}..0X0123456789ABCDEF]|0.12 Starts With 9e12 Starts With $`1esn`)[Reduce(usn2={`7esn`}[0X7..][0x0..],_usn3 In {`2esn`} Ends With {12} Ends With 7|01[..{`7esn`}][..01234567])][(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})-[_usn4 *0x0..]-(:#usn7{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})] Ascending,[.e12 Ends With 1000 Ends With 010,Count(*)] Ends With {`7esn`:$_usn3 =~{_usn4} =~$`6esn`} Ends With Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]) Descending Skip [`` In {`1esn`} Starts With @usn6 Where $123456789 Starts With $123456789 Starts With Count ( * )|{#usn8}[usn1][1.0]][Shortestpath((@usn6 {usn1:$#usn7 =~{12} =~False})-[`1esn`?:_usn3|`8esn` *0xabc..7]-(`4esn` :@usn6))..] Limit $`5esn`[`4esn`] Union Create Shortestpath(((_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]}))) Merge `4esn`=({`1esn`:$123456789[..$7][..$`6esn`]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]}) On Match Set {usn2:00[..$123456789][..$`5esn`],``:0.12[Count(*)..][$#usn7..]}.#usn7? =(`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] Create Unique (:``)"), + octest_legacy:ct_string("Using Periodic Commit 12 Load Csv With Headers From usn2(0.0 Is Not Null Is Not Null,{123456789} Is Not Null)[None(`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12])..[_usn4 In `2esn` Where False Ends With $``|9e0[#usn8]]][(`3esn` :`3esn`:`6esn`)-[]->(`7esn` :#usn8)..[0X0123456789ABCDEF Contains $`1esn` Contains 1000,0e0[$#usn8...e12],.e12 Is Null Is Null]] As _usn3 Create `7esn`=((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0}))"), + octest_legacy:ct_string("Foreach(_usn4 In 01234567[{`7esn`}..]| Delete $0 Starts With `2esn` Delete `6esn`[{`6esn`}..],$`1esn`[`6esn`..][00..]) Foreach(@usn6 In 0[{@usn5}..][7..]| Optional Match Shortestpath(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),((`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})) Where {@usn5} =~_usn4 =~0.12) Union With 0.0 Is Not Null As `4esn` Order By $`8esn` Is Null Is Null Desc,[.e12 Ends With 1000 Ends With 010,Count(*)] Ends With {`7esn`:$_usn3 =~{_usn4} =~$`6esn`} Ends With Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]) Descending Remove {usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}.`7esn`?,Reduce(`1esn`=$`1esn`[#usn8][$@usn5],usn1 In 12.e12 In {0} In 9e1|.e12[$7..][{`6esn`}..]).`7esn`"), + octest_legacy:ct_string("Using Periodic Commit 1000 Load Csv From Any(`6esn` In 00 Where 0X7 Starts With {999} Starts With 12e12) Starts With (`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}) Starts With {`8esn`:{#usn7} Contains @usn5 Contains Count ( * )} As `5esn` Start ``=Node:_usn3('s_str') Optional Match usn2=Allshortestpaths(((({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})<-[?:``]-(`1esn` :#usn7)-[?:`4esn`|:#usn7]->(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})))),@usn6=(`2esn` :#usn8)"), + octest_legacy:ct_string("Foreach(_usn3 In {12} =~0.e0 =~{_usn3}| Optional Match (usn2 :`5esn`:@usn5)-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]}) Create Unique `5esn`=(`8esn` :`5esn`:@usn5)-[`5esn`?:usn2|#usn7]->(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )}))"), + octest_legacy:ct_string("Start `3esn`=Rel:`5esn`({0}) ,`6esn`=Relationship:`1esn`({@usn5})Where $7[{`1esn`}] Create usn2=(((:#usn8{`2esn`:12e12 Is Not Null,_usn3:12.e12[2.12..][0xabc..]})-[:_usn4|:usn1{``:0 Contains $usn2 Contains 12e12}]-(`4esn` :`2esn`)<-[`7esn`?:_usn3|`8esn`*..]->(`2esn` :_usn3))),`6esn`=((@usn6 :`2esn`)) Merge ((:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(:`6esn`:`8esn`{`3esn`:$`6esn`[{`3esn`}..12],_usn3:0[{@usn5}..][7..]})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`1esn`)) On Match Set `2esn`+=Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})],`3esn` =$12 Starts With $`8esn`,@usn5 =Reduce(#usn8={`8esn`}[..$`6esn`][..123.654],usn1 In 12.e12 In {0} In 9e1|\"d_str\" =~`1esn` =~{`5esn`}) On Match Set `6esn` =[`2esn` In {999} Is Not Null Where {@usn6}[True..{_usn3}]] =~None(#usn7 In 123.654 Starts With $`` Where {usn2}[$`4esn`]) =~Extract(`1esn` In $12 Is Not Null Where Null Is Null Is Null|$123456789 =~`4esn`),usn1:`8esn`:@usn5 Union All With Distinct *,01234567[..9e1] Where $7 Is Null Is Null"), + octest_legacy:ct_string("Merge `1esn`=(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}) On Match Set Any(_usn4 In `2esn` Where 0X0123456789ABCDEF[9e12]).`5esn`! =(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) On Match Set `3esn`(Distinct 's_str' Starts With 12e12 Starts With $_usn4).`3esn` =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End Create `2esn`=Shortestpath((:`5esn`:@usn5{``:.e12 =~$_usn4})-[_usn3?:usn1 *12..{#usn7:0e0 Contains `3esn` Contains `7esn`}]-(`5esn` $`8esn`)<-[@usn5:_usn4|:usn1*]->(:@usn5)),`2esn`=((@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]})) Union All Load Csv With Headers From Case When 0.e0 Contains #usn7 Then $_usn4[{``}..][1e1..] When $`2esn`[12.e12][$@usn5] Then $usn1[0X7] End Ends With Extract(`1esn` In $12 Is Not Null Where {`3esn`}[{`5esn`}]) Ends With Case 0Xa[.._usn3][..$`6esn`] When {`4esn`}[$123456789..] Then {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] When {usn2}[$`4esn`] Then $1000 Starts With $`8esn` Starts With {`5esn`} Else @usn6[$_usn4] End As `8esn` Unwind Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where 1.e1[12e12..{`6esn`}]|Count ( * )[..12][..{@usn6}]) Contains All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Contains Extract(_usn4 In `2esn` Where $999 Is Null) As `2esn` Merge @usn5=Shortestpath(({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[{``:\"d_str\"[{`8esn`}..]}]-({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})) Union Load Csv With Headers From None(`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}])[[123.654[1e1..][{#usn8}..],$#usn7[123.654]]] As `8esn` Fieldterminator 's_str' Create Unique `8esn`=Allshortestpaths(((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(`1esn` :@usn6))),(:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}) Start `3esn`=Node:`2esn`(@usn6={`4esn`}) Where False[999]"), + octest_legacy:ct_string("Create Shortestpath(((`3esn` :usn2:`2esn`{``:{_usn3} Contains $`1esn` Contains 12.0}))),`8esn`=((#usn8 {`8esn`:{7} Contains $123456789})) Start _usn4=Relationship:@usn6(#usn7='s_str') Where 9e1 Ends With Count(*) Ends With False Union Optional Match usn1=Shortestpath(((:`1esn`{usn2:{`6esn`} Ends With 0e0 Ends With {``}}))) Using Scan usn2:@usn5 Start usn1=Node:#usn8(#usn8={``}) Where `4esn`[usn1] Union Merge `5esn`=Shortestpath(((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[:#usn7|`2esn`]-(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}}))) On Match Set `2esn`+=$999 =~0 =~{7},@usn5+=0X7[0.e0][{`4esn`}],Extract(`` In {`1esn`} Starts With @usn6 Where {`2esn`}[..{@usn6}][..1.e1]|True =~{`1esn`})._usn4! =All(usn1 In 12.e12 In {0} In 9e1)[[`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]|12.e12[$`8esn`..{`8esn`}]]..] Remove All(_usn4 In 0.0[..{999}][..0.0] Where 1e1[1.e1..][123.654..]).`3esn`! Merge (((`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})-[_usn3?*..{#usn7:#usn8 =~{999},`8esn`:{_usn3}[`3esn`..$#usn8]}]->({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})-[@usn6 *07{`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}]->({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]}))) On Match Set `4esn`+=$`8esn`[0xabc][Null],@usn5+=0.0 In `6esn` In $@usn5"), + octest_legacy:ct_string("Match _usn3=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`))) Union Delete 12e12 Ends With $999 Ends With 1e1,$`3esn`,1000 Merge usn1=(@usn6 :`2esn`)<-[ *..0Xa]->({`8esn`:Null In .e0}) On Create Set Allshortestpaths(((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]}))).`8esn`? =`6esn`[{`6esn`}..],@usn6+=Reduce(usn1=$#usn7 Ends With 0.12 Ends With {@usn6},_usn3 In {`2esn`} Ends With {12} Ends With 7|{0} Is Null) Is Not Null Is Not Null,Extract(usn1 In 12.e12 In {0} In 9e1 Where False Starts With 010|True Starts With $`4esn` Starts With 12e12).`7esn`? =0X0123456789ABCDEF Is Null Is Null"), + octest_legacy:ct_string("Merge @usn6=(((`2esn` {_usn4:`4esn`[usn1]})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00}))) On Match Set {#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]}.usn1 =(#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..],Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where `7esn` Starts With 0X7 Starts With $`7esn`).`4esn` =$@usn6[..123.654],_usn4:`4esn`:@usn6 On Match Set @usn5 =`2esn`[$1000..9e12][{#usn8}..{7}] With Distinct {@usn5},{0} Is Null As `6esn` Skip Null In .e0 Where True[..010]"), + octest_legacy:ct_string("Create (:`8esn`:@usn5)<-[?:`1esn`|:`3esn`{#usn8:$0 Is Not Null,``:True Is Null Is Null}]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0}),(:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}) Union Unwind [`1esn` In 0.e0 =~`1esn` =~`6esn` Where `8esn` Contains $`3esn` Contains {`4esn`}|{`4esn`}[..{`4esn`}]][Reduce(usn2={0}[False..@usn5],`1esn` In `3esn`[07..]|$@usn6 =~#usn8)][Extract(`1esn` In `3esn`[07..] Where 00[07..]|$#usn7 Starts With 9e0 Starts With 2.12)] As #usn7 Start `3esn`=Relationship:@usn6({`2esn`}) ,`8esn`=Node:`6esn`('s_str')Where $@usn6 =~#usn8 Merge _usn3=(((#usn8 :#usn7)-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})))"), + octest_legacy:ct_string("Delete $_usn4[{``}..][1e1..],[#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 In 01234567 In .e1|{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]] =~Extract(`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]|$usn1 In 0.12 In $``) =~Single(_usn3 In {@usn5}[..#usn7] Where {`4esn`}[..07][..$`6esn`]) Union Optional Match `5esn`=Allshortestpaths(((:_usn4)<-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]->(_usn4 {_usn3:`1esn`[..00][..{7}]}))),Allshortestpaths((:@usn5{@usn6:{7} Contains $123456789})<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}}))"), + octest_legacy:ct_string("Detach Delete $usn1[..{@usn5}][..'s_str'],$`7esn` Is Null Is Null,{``}[_usn4..$`1esn`] Foreach(`6esn` In .e12[\"d_str\"..][.e1..]| Start #usn7=Node( {usn2}) Return 0.e0 Ends With False As `` Skip Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*))[Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12)..]) Foreach(#usn8 In Case 9e0 In usn1 When {@usn6} Contains 123.654 Contains 01 Then $@usn5 In 's_str' In $12 End In Allshortestpaths(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))) In Case {`7esn`}[9e1..][@usn6..] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" When {7}[{`4esn`}][`6esn`] Then 0xabc[$@usn5] Else 0e0 End| Start `4esn`=Node:``(\"d_str\") Start _usn3=Relationship:``(`1esn`={`2esn`}) Where 0[{usn2}..][usn1..])"), + octest_legacy:ct_string("With *,Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*))[Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12)..] As `3esn`,123456789[12..$`4esn`] As `7esn` Skip 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF Where $`3esn` Ends With $999 Ends With 0X0123456789ABCDEF Foreach(#usn7 In {`1esn`}[`6esn`..12e12]| Delete $`1esn`[07],{`3esn`}[{`5esn`}],999 Optional Match `8esn`=(({#usn7:#usn8 =~{999}})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})),((@usn5 )<-[#usn8? *..01234567]-($_usn3)) Using Join On ``,`7esn`,#usn7 Where True[$`7esn`..{1000}]) Unwind {#usn8} Is Null Is Null As _usn4 Union Optional Match `5esn`=(((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4}))),`8esn`=Shortestpath((({`2esn`:{7}[$7..],#usn7:`1esn` In 07}))) Return Distinct [`6esn` In 00 Where 0.12 In 0X7|{999} Is Null][Allshortestpaths((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]}))][Case {999}[$123456789..][12..] When $@usn6 =~#usn8 Then $999 Contains {7} When False Starts With 010 Then `8esn` Starts With {123456789} Else True Is Not Null Is Not Null End] As usn1 Order By 7[010][00] Descending,False[{`8esn`}] Asc,1e1 =~#usn8 =~2.12 Ascending Skip Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))[All(`2esn` In {999} Is Not Null Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF)][Shortestpath((:_usn3{_usn3:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF,`5esn`:1.0 Is Null Is Null})<-[`3esn`:`6esn`{`3esn`}]-(_usn4 :#usn7{_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})<-[ *123456789..0X7]-(`2esn` :`2esn`{`3esn`:#usn8 =~{999}}))] Limit 00 Contains #usn8 Return Allshortestpaths((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})<-[`1esn`?]->(:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}}))[Case When 123.654[$`1esn`..Null][1000..{_usn3}] Then ``[$0..][`1esn`..] When 00 Ends With `8esn` Then $usn2 Is Null Is Null Else $999 Is Null End..``(999 Starts With 's_str',1e1[1.e1..][123.654..])][Single(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{usn2:{1000},`6esn`:#usn8[`7esn`..]}] As @usn5,#usn7[00] As `7esn`,False Contains $#usn8 Contains 9e1 Order By Count(*) Is Not Null Asc Skip usn1 Is Not Null Is Not Null"), + octest_legacy:ct_string("With Distinct *,9e1[9e1...e0] Order By 1e1[{_usn4}..123.654] Ascending,00[..$123456789][..$`5esn`] Asc Skip 7[1e1..#usn7] Limit [`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]][..{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}][..`4esn`(123.654[$`1esn`..Null][1000..{_usn3}])] Unwind $123456789 Starts With .e12 As _usn3 Union Merge usn1=Shortestpath(((:`1esn`{usn2:{`6esn`} Ends With 0e0 Ends With {``}}))) On Create Set All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {7}[$123456789..{1000}][$`3esn`..`7esn`]).``! =All(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $@usn6[01..@usn5][0x0..`4esn`]) Is Not Null Is Not Null,@usn5+=[12e12 Starts With `1esn` Starts With usn2,Count ( * ) Is Null][(#usn8 {``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})][Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))],#usn8 =$999[07..{#usn7}][1e1..0xabc]"), + octest_legacy:ct_string("Match `2esn`=Allshortestpaths((({`6esn`:1.e1[12e12..{`6esn`}]})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}))),usn2=Shortestpath(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))) Using Scan ``:`4esn` Using Index `7esn`:`1esn`(`2esn`) Create `4esn`=({`5esn`:0Xa[0e0..{#usn7}]})<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00}),#usn7=(:``{``:0x0 =~123.654 =~{999}})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}) Match `7esn`=(((:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})<-[`2esn`?{``:123.654 Starts With $``,``:{``} Ends With .e12 Ends With 0.e0}]-(:_usn3{0})<-[`3esn`?{`3esn`:1e1 Contains usn2}]->(:`3esn`:`6esn`))),`2esn`=Shortestpath((usn2 )-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})) Using Join On `1esn`,#usn8 Using Scan usn2:@usn5"), + octest_legacy:ct_string("Load Csv From Extract(usn1 In 12.e12 In {0} In 9e1 Where {_usn4} Is Null|{@usn5}[..{12}][..0x0]) Starts With (@usn6 )<-[?:`6esn`$usn1]->(_usn4 )<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00}) As usn2 Fieldterminator \"d_str\" Create `5esn`=((usn1 :``{_usn3:``[{#usn8}],`3esn`:{`3esn`} Is Null})-[?:`4esn`|:#usn7 *..0]-({`7esn`:{`1esn`} =~{_usn4}})),Shortestpath(((`5esn` :_usn3{`4esn`:12.e12[``..usn2][{#usn7}..@usn5]})<-[:`1esn`|:`3esn` *..01234567]-({`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF})-[``?:`4esn`|:#usn7 *07]-(_usn3 {@usn5:.e12 =~.e0}))) Union With Distinct 0e0[..1000] As #usn7,#usn8 Is Not Null As usn2 Order By 0.0[9e1..][Null..] Ascending,123.654[{@usn5}..123.654][1.0..$12] Descending,All(`5esn` In $`2esn`[12.e12][$@usn5] Where 12[..$@usn6]) =~(_usn4 :`7esn`)<-[{`2esn`:1000 Is Null Is Null}]->({`6esn`:7[010][00],#usn8:$usn1 =~010 =~07}) Desc Skip `8esn` Is Null Is Null Limit 12.0[#usn7]"), + octest_legacy:ct_string("Start `8esn`=Rel( {`7esn`}) ,`3esn`=Node:`2esn`(@usn6={`4esn`})Where 07 Is Null Load Csv With Headers From $`4esn` Starts With 0e0 As #usn8 Foreach(`3esn` In {_usn4:$0[$1000..00][{0}..{usn1}]}[{`2esn`:$``['s_str'..][0x0..]}..]| Optional Match `1esn`=Allshortestpaths(((($_usn3)<-[``?:`3esn`|:@usn5{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(:@usn5{#usn7:{#usn7} In Count ( * ) In $#usn8})-[? *01..07]->(`8esn` :#usn7)))) Using Join On ``,`7esn`,#usn7 Where $`1esn`[$12][Count ( * )] Remove [`6esn` In 00 Where 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF].@usn5!,{usn1:$123456789 Starts With `5esn`}.`6esn`) Union All Remove {`3esn`:0.0 =~12.e12 =~1.0,`1esn`:$usn1 Starts With {_usn3}}.`3esn` With Distinct 0x0[{999}..][{_usn4}..] As `6esn`,{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}[Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))..] As `6esn`,Case When $`6esn` Starts With 12.e12 Starts With $#usn7 Then #usn8[`7esn`..] When {`4esn`}[$123456789..] Then {_usn3} Contains 9e0 Contains $999 End As @usn6 Order By {@usn5} Ascending,Reduce(@usn5=$`8esn`[..$999][..0],`` In {`1esn`} Starts With @usn6|{@usn6} Contains 123.654 Contains 01) Contains [`1esn` In `3esn`[07..] Where {0} =~12.0] Contains (:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[`3esn`:_usn3|`8esn`]->(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null}) Descending,1000 Is Not Null Desc Skip Allshortestpaths(((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))) Starts With (`1esn` :_usn3{`5esn`:{`8esn`}[..$`6esn`][..123.654],`1esn`:1000 Starts With `7esn`})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Extract(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) Remove (:@usn5)-[`8esn`?{`3esn`:'s_str'[..0X7]}]-(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}).`4esn`!,Extract(`6esn` In 00 Where 12e12 Is Not Null Is Not Null|`1esn`[Null..]).usn1"), + octest_legacy:ct_string("Start _usn3=Node( {usn2}) ,@usn5=Node:`6esn`(#usn8={`5esn`}) Union Merge _usn4=(({`5esn`:0Xa[0e0..{#usn7}]})<-[?:``]-(`7esn` :`3esn`:`6esn`)) On Match Set `5esn`+=Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..],[`6esn` In Count(*) Ends With $`` Ends With {7} Where @usn5 =~'s_str'|{_usn3} Contains 9e0 Contains $999].usn2 =9e12 Is Null On Match Set `5esn` =True[..010],#usn8+=Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}),`3esn` =@usn6[$_usn4] Unwind `7esn` Is Not Null Is Not Null As `6esn` Load Csv From (:usn1:_usn4)<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[usn2?:`2esn`*..]-(:`5esn`:@usn5{``:0.12[..$`6esn`][..$1000]}) Starts With Reduce(`8esn`=00[..$123456789][..$`5esn`],`` In {`1esn`} Starts With @usn6|False[999]) Starts With [`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]] As `4esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Return $7 Ends With $`8esn` As `4esn` Skip {`4esn`:#usn7 =~00,@usn5:usn2[True]} =~`6esn`(Distinct #usn7 =~{`4esn`} =~123456789,1e1[1.e1..][123.654..]) =~Allshortestpaths(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))) Create #usn8=Allshortestpaths((_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})-[`1esn`?:_usn3|`8esn` *0xabc..7]->(@usn5 :`6esn`:`8esn`)) With Distinct 0xabc[$_usn3..],[$_usn4[9e0..]][`8esn`(Distinct {7} Starts With $usn1 Starts With 1.0)..Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} Starts With 1.0 Starts With 00|$#usn7[..@usn6][..$0])][Any(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{#usn8:{`7esn`} Is Not Null Is Not Null,`4esn`:12 Starts With 0x0}] As `1esn` Order By 1.0 Ends With 1000 Descending,Shortestpath((_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]) In Shortestpath(((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}))) Asc Skip {usn2}[$`4esn`] Limit {123456789} =~{@usn6} Union All Merge `1esn`=((:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn7{usn1:1.0[{999}][$999]}]->(:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]}))"), + octest_legacy:ct_string("Merge _usn4=Allshortestpaths(((`4esn` :`1esn`)-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6}))) On Create Set #usn8+=$1000 Is Not Null Is Not Null,`3esn` =Reduce(@usn6=@usn5[$12..\"d_str\"],`` In {`1esn`} Starts With @usn6|Count ( * ) =~{`5esn`} =~{_usn4}) Starts With None(`1esn` In $12 Is Not Null Where `7esn` Is Not Null Is Not Null) Starts With [$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null]"), + octest_legacy:ct_string("Load Csv With Headers From 1000 As `2esn` Fieldterminator \"d_str\" Create @usn6=((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1)),``=Shortestpath(((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))) Union All Remove [{usn1} Ends With {`6esn`} Ends With 123456789,$usn1[@usn6][#usn7]].`2esn`!,Reduce(`4esn`=$1000 Starts With $`8esn` Starts With {`5esn`},`` In {usn1} Ends With {`6esn`} Ends With 123456789|{`8esn`}[True..][.e1..]).`3esn`! Create Unique #usn8=Shortestpath(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]}))) Union All Unwind $`2esn` Ends With `` Ends With {12} As `6esn`"), + octest_legacy:ct_string("Start _usn3=Node:_usn3(_usn3='s_str') ,``=Relationship:#usn7(_usn3=\"d_str\")Where $_usn3[010..False] Match `2esn`=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`))),@usn5=(_usn3 :@usn5)-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}) Using Join On `6esn`,#usn7 Using Join On #usn7,@usn5 Union Merge (_usn3 :#usn8) On Create Set _usn3 =$`1esn` Ends With {`7esn`} Ends With $_usn3 Union All Unwind {123456789}[..'s_str'][..$@usn6] As `8esn` Remove [`3esn` In 123.654[1e1..][{#usn8}..] Where _usn3[\"d_str\"]|False Contains 0.e0 Contains Count(*)].`8esn`!,Filter(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`]).`3esn`!,Extract(_usn4 In `2esn` Where 1.0[{999}][$999]|`4esn`[usn1]).#usn7!"), + octest_legacy:ct_string("Load Csv With Headers From Case 0[{@usn5}..][7..] When {`4esn`} In _usn4 Then `1esn`[Null..] When ``[{#usn8}] Then {`4esn`} Starts With $7 Starts With $`` Else `8esn` Contains $`3esn` Contains {`4esn`} End In [{_usn4} In {1000}] In Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`4esn`} Starts With $7 Starts With $``|0Xa Contains {`7esn`} Contains $999) As _usn3 Fieldterminator \"d_str\" Create #usn8=Allshortestpaths((_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})-[`1esn`?:_usn3|`8esn` *0xabc..7]->(@usn5 :`6esn`:`8esn`)) Union With Distinct @usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2) As @usn5,$`` =~{``} =~0.e0 Skip Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Starts With (usn2 :``)<-[#usn7? *0X0123456789ABCDEF{usn1:.e1[@usn5]['s_str'],`2esn`:$`7esn` Is Null Is Null}]->({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}) Where {_usn3} Contains True Contains 0X7 Create ((#usn8 :`8esn`:@usn5)-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]-(:usn1:_usn4{`4esn`:01234567 In $123456789})-[?:`8esn`|:_usn4{usn1:999[12.0..][#usn7..],@usn5:123.654[$`1esn`..Null][1000..{_usn3}]}]-(`8esn` {@usn6:12 Starts With {_usn4} Starts With $#usn8,`3esn`:.e1[@usn5]['s_str']})),@usn6=Allshortestpaths((:`2esn`{`2esn`:`5esn` Is Null Is Null})) Union Unwind None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False) Is Null As `2esn` Merge (`3esn` :`1esn`)-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]}) On Match Set `7esn` =$999[{_usn4}] On Match Set `5esn`+=$`3esn` Contains 0 Contains 07,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $#usn7[..@usn6][..$0]).`1esn`? =$1000[0.12..0.12] Detach Delete Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`])[(`3esn` :#usn7{`6esn`:{_usn4} Is Null,usn2:{`2esn`} Starts With @usn6})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`8esn`:@usn5)<-[@usn6?:`7esn`]->(:`2esn`{#usn7:#usn8 =~{999}})..Shortestpath((`8esn` {_usn4:{usn1} In Count ( * )})<-[`6esn`?]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})<-[@usn6?:`7esn`]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1}))][Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0[$#usn8...e12])..[`1esn` In $12 Is Not Null Where {usn1} In Count ( * )|$`3esn`[{``}..]]],{usn2}[`6esn`..01234567],All(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7]) Contains Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End Contains Reduce(`6esn`={_usn4} In {1000},usn1 In 12.e12 In {0} In 9e1|{`4esn`} Starts With $7 Starts With $``)"), + octest_legacy:ct_string("Load Csv From usn1(``[..$#usn7]) Ends With Reduce(#usn8=`1esn`[..01],_usn4 In 0.0[..{999}][..0.0]|``[00..$7]) Ends With Extract(_usn3 In True[7][$999] Where {`2esn`}[Count(*)]|{`7esn`}[``..]) As `3esn` Fieldterminator 's_str' Optional Match _usn3=Allshortestpaths(((`` {`1esn`:{@usn5}[1e1..][9e1..],`2esn`:$`7esn` Contains {`1esn`} Contains 9e12})<-[`3esn`? *0x0..{_usn3:0.0[9e1..][Null..],#usn7:{`3esn`} Is Not Null Is Not Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-(`3esn` :`6esn`:`8esn`{`8esn`:{``} Is Null Is Null,`3esn`:123456789 Is Not Null Is Not Null}))) Using Index `3esn`:#usn8(`2esn`) Using Scan usn1:usn2 Where $@usn6[01..@usn5][0x0..`4esn`]"), + octest_legacy:ct_string("Create `1esn`=(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[#usn8? *..0Xa{`4esn`:$`2esn` Ends With 0.12 Ends With .e1,`4esn`:07 =~@usn5}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}),Shortestpath((({_usn4:False[0Xa..$usn1]}))) Union All Unwind {`4esn`} In _usn4 As usn2 Merge ((usn2 :_usn3)<-[?:_usn4|:usn1 *..00{`1esn`:{#usn8}[2.12]}]->(:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn8:#usn7|`2esn`]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)}))"), + octest_legacy:ct_string("Foreach(`2esn` In 07 =~$`8esn` =~9e1| Optional Match @usn5=((`1esn` :`4esn`:@usn6)),(#usn8 :#usn8) Where 9e1 Ends With Count(*) Ends With False) Foreach(`2esn` In #usn7[00]| Unwind $_usn4 As `8esn`) Union Load Csv With Headers From All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.e12[$`8esn`..{`8esn`}]) Is Null As usn2 Start `3esn`=Rel:``(usn1={`4esn`}) Match ``=((_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[ *0xabc..7]->(:`4esn`:@usn6)-[?{`7esn`:{``} Ends With .e12 Ends With 0.e0}]-(`4esn` {`2esn`:12 Starts With 7 Starts With $`5esn`})) Using Index `6esn`:usn2(@usn5) Using Join On ``,`2esn`,`8esn` Union All Create ``=((:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn7{usn1:1.0[{999}][$999]}]->(:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})),((`2esn` :@usn5{`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})<-[?:`6esn` *07]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[{#usn7:'s_str'[_usn4..0x0]}]-({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}))"), + octest_legacy:ct_string("Unwind Single(`6esn` In 00 Where 0.12 In 0X7)[..{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] As `4esn` Create Unique _usn3=(usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}),@usn6=({_usn4:False[0Xa..$usn1]})<-[:_usn3|`8esn` *0x0..{`5esn`:0.e0[12.e12]}]-(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]}) Start _usn3=Relationship:usn1('s_str') Where {_usn4} In {1000} Union Match ((:#usn8{#usn8:`3esn` Is Not Null Is Not Null})),Allshortestpaths((#usn8 :`7esn`)) Using Index @usn5:usn2(`7esn`) Using Join On @usn5,usn2,_usn3 Unwind 01[..{`7esn`}][..01234567] As @usn5"), + octest_legacy:ct_string("Using Periodic Commit 0X0123456789ABCDEF Load Csv With Headers From 12.e12 In {0} In 9e1 As `4esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Unwind $`1esn`[#usn8][$@usn5] As `1esn` Create Unique #usn8=(`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`),``=((`8esn` :@usn6)-[@usn5? *0x0..{`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}]-({`7esn`:{usn1}[$`8esn`..0.0]})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))"), + octest_legacy:ct_string("Optional Match @usn5=Allshortestpaths((@usn6 :usn1:_usn4)<-[?:@usn6|`` *..01234567]->(#usn8 {usn1:$123456789 Starts With `5esn`})-[? *01..07]->(`8esn` :#usn7)),`8esn`=Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Using Scan usn2:`5esn` Where 123.654[{@usn5}..123.654][1.0..$12] Load Csv With Headers From 0X0123456789ABCDEF Is Null Is Null As `` "), + octest_legacy:ct_string("Return Distinct {`8esn`:{#usn8}[$#usn7..]}[Case 12.e12[``..usn2][{#usn7}..@usn5] When `3esn` Is Not Null Is Not Null Then 7 Contains `2esn` Contains $`8esn` Else $``[..1.e1][..12] End..] As `2esn` With Distinct *,(usn1 {`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]})<-[`4esn`:#usn7|`2esn` *0X7..0Xa]-(`3esn` :`8esn`:@usn5{@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]}) Is Not Null,Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End[None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])][count(Distinct $`5esn`[$#usn7..][0xabc..])] Skip @usn5[$@usn5][{0}] Limit None(_usn3 In {@usn5}[..#usn7] Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000) Is Null Is Null Unwind {@usn5}[..#usn7] As `1esn` Union All Unwind {7}[$123456789..{1000}][$`3esn`..`7esn`] As #usn7 Load Csv From Case When .e1[@usn5]['s_str'] Then 123456789 Starts With {@usn6} Starts With $12 End Contains [`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`] Contains {@usn5:12 Is Not Null,`2esn`:$999 In 999} As `1esn` Remove [#usn7 In 123.654 Starts With $`` Where #usn8[`7esn`..]|{_usn3}[{0}]].usn2,``(True[True..],$_usn4).`5esn`? Union Create Unique `5esn`=Shortestpath(((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null})<-[usn2 *..01234567{`1esn`:@usn5 =~'s_str',`8esn`:{999} Starts With {_usn4} Starts With 00}]->(usn1 {`5esn`})<-[:`8esn`|:_usn4 *1000]->(`5esn` $`8esn`))))"), + octest_legacy:ct_string("Return {@usn5} Is Null,``[$0..][`1esn`..] As `4esn` Order By 0Xa[07..] Ascending Limit 's_str'[.._usn4][..``]"), + octest_legacy:ct_string("Detach Delete [`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]][Reduce(_usn4=$0 Is Not Null,`2esn` In {999} Is Not Null|12.e12[2.12..][0xabc..])..][None(`6esn` In 00 Where {@usn5} Starts With 1.0 Starts With 00)..],{``}[_usn4..$`1esn`] Remove (:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}).``? With True Is Not Null As @usn5 Order By {`2esn`} In $123456789 In True Ascending,Reduce(#usn7={`1esn`} Starts With `4esn` Starts With {0},`3esn` In 123.654[1e1..][{#usn8}..]|9e12[$`5esn`]) Desc Skip 0Xa In {`7esn`} Limit 9e0 =~0.0 =~$`5esn` Union Match ``=Shortestpath(((`` {``:0x0 =~123.654 =~{999}})-[`6esn`?{#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}]-({`3esn`:9e1 =~999}))) Using Scan `8esn`:_usn3 Using Index usn2:usn1(`8esn`)"), + octest_legacy:ct_string("Merge `7esn`=Shortestpath((((`6esn` {``:`4esn`[usn1]})<-[:`6esn`{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},`6esn`:``[..$#usn7]}]->({_usn4:False[0Xa..$usn1]})-[`8esn`?{`3esn`:'s_str'[..0X7]}]-(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]})))) On Match Set `4esn`+=$`8esn`[0xabc][Null],@usn5+=0.0 In `6esn` In $@usn5 Union All Detach Delete $#usn7[`2esn`][010],`7esn` =~.e12 =~$#usn7,$`2esn` In {123456789} Remove Shortestpath((((_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )})-[?:usn2|#usn7]-(`1esn` {#usn7:Count ( * )[$12..]})<-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]->(_usn4 {_usn3:`1esn`[..00][..{7}]})))).`3esn`?,``:`6esn`:`8esn`,Case Count(*) Is Not Null When {`4esn`} Starts With $7 Starts With $`` Then {`4esn`} Starts With $7 Starts With $`` Else 0X0123456789ABCDEF[`5esn`..][$#usn8..] End.usn2 Union Merge Shortestpath(((`6esn` :_usn3{#usn7:$@usn6[01..@usn5][0x0..`4esn`],_usn4:9e12 =~123456789 =~$999})<-[usn1? *01..07]->({`1esn`:$123456789[..$7][..$`6esn`]}))) On Create Set #usn8 =(`8esn` :`5esn`:@usn5)<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5) Starts With None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]),@usn5 =$_usn4 Is Null Is Null"), + octest_legacy:ct_string("Unwind 9e1[9e1...e0] As #usn7 With {_usn3} Is Not Null As `` Limit $#usn7[..{`4esn`}][..9e1] Where 1e1[..01] Foreach(@usn5 In 010 In `1esn`| Start #usn7=Relationship:usn2(_usn3='s_str') Where 0x0[{999}..][{_usn4}..]) Union Start @usn5=Node:``(#usn7=\"d_str\") Where $`6esn` Starts With 12.e12 Starts With $#usn7 Detach Delete 0.e0 Ends With False"), + octest_legacy:ct_string("Remove Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 123456789 Is Not Null Is Not Null).`2esn`!,(usn1 {usn2:#usn8 =~{_usn3} =~``})-[?{`2esn`:0X0123456789ABCDEF[9e12],`7esn`:{`4esn`}[..07][..$`6esn`]}]->(`1esn` {@usn5:$usn1 In 0.12 In $``}).`6esn`!,Shortestpath((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]})).`1esn`? Union All Create Unique (@usn5 :`8esn`:@usn5)<-[?:`1esn`|:`3esn`*]->({_usn4:{usn1} =~123.654 =~\"d_str\"}) Merge ((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`)) On Match Set @usn5 =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) With [`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]][..Reduce(`4esn`=@usn5[12.0][{1000}],_usn4 In `2esn`|0[$`6esn`...e1][`1esn`..$`7esn`])][..[7[010][00],$7[$`3esn`],#usn7 =~{`4esn`} =~123456789]],$1000[..12.0][..0e0] Where $12 Contains 0Xa Union All Detach Delete Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))) =~Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}),{7} Starts With $usn1 Starts With 1.0"), + octest_legacy:ct_string("Return Distinct $@usn6 Ends With 01 Ends With 999 Skip {_usn3} Contains 9e0 Contains $999 Limit Allshortestpaths(((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}))) Starts With All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Foreach(`2esn` In $`3esn`[..$`2esn`][..123.654]| Create `5esn`=Shortestpath(((_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->(`` {``:0x0 =~123.654 =~{999}})-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->(:`3esn`:`6esn`{@usn5:.e12 =~.e0}))),#usn8=Allshortestpaths((_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})-[`1esn`?:_usn3|`8esn` *0xabc..7]->(@usn5 :`6esn`:`8esn`)))"), + octest_legacy:ct_string("Match _usn4=Allshortestpaths((@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})),((`2esn` :#usn8)<-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` :`8esn`:@usn5)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})) Using Index @usn6:#usn8(_usn4) Using Scan _usn4:`2esn` Where 1.e1[{#usn8}] Remove {`1esn`:9e12 Is Not Null Is Not Null}._usn3!,Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]).#usn8,Extract(`1esn` In `3esn`[07..] Where 999 Starts With 's_str'|{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]).@usn6 Detach Delete [$`1esn`[$12][Count ( * )],9e1 Ends With $@usn5 Ends With $123456789] Is Not Null Is Not Null,$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],$usn1 Is Not Null Is Not Null"), + octest_legacy:ct_string("Using Periodic Commit 0X7 Load Csv With Headers From False Ends With $`` As `6esn` Foreach(`8esn` In `1esn` Is Null Is Null| Unwind Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Is Null Is Null As #usn8)"), + octest_legacy:ct_string("Optional Match _usn4=Allshortestpaths((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})),`3esn`=((_usn4 :#usn8{`5esn`})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5)-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->({`7esn`:123456789[0..]})) Using Scan `4esn`:`` Using Index usn1:@usn5(`7esn`) Where {@usn5}[12.0..1000][{`3esn`}..{7}] Optional Match ((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})-[:`5esn`]-({`7esn`:@usn5[..$@usn5][..0Xa]})-[@usn5? *0x0..{`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}]-(_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null}))"), + octest_legacy:ct_string("Create (((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4}))) Match `2esn`=(`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4),`5esn`=(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}) Where $`8esn` In $`2esn` In {7}"), + octest_legacy:ct_string("Match @usn6=Allshortestpaths((:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}})),(:``) Using Index usn1:_usn3(``) Using Scan `1esn`:`3esn` Where 1e1[1.e1..][123.654..] Union Foreach(@usn6 In Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999)[..Reduce(``={`8esn`}[True..][.e1..],#usn7 In 123.654 Starts With $``|{usn1}[$`8esn`..0.0])][..Any(`1esn` In $12 Is Not Null Where $12 Is Not Null Is Not Null)]| Create usn1=Allshortestpaths(((:`6esn`:`8esn`{`5esn`:{@usn5} Is Null,`8esn`:True[..010]}))),((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null})<-[usn2 *..01234567{`1esn`:@usn5 =~'s_str',`8esn`:{999} Starts With {_usn4} Starts With 00}]->(usn1 {`5esn`})<-[:`8esn`|:_usn4 *1000]->(`5esn` $`8esn`)))) Unwind $``['s_str'..][0x0..] As #usn7 Union All Merge @usn6=Allshortestpaths((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(@usn5 :`8esn`:@usn5)<-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(:`6esn`:`8esn`{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})) On Match Set @usn6($@usn6 Contains `7esn`).@usn5! =$`5esn` Ends With 00 Ends With #usn7,Reduce(usn2=True[7][$999],`` In {`1esn`} Starts With @usn6|{`4esn`}[$_usn4..][9e0..]).`6esn` ={`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn` On Create Set usn1+={usn1}[{`5esn`}..],Case {0} Is Null When $0 Is Not Null Then #usn8 Is Not Null When 12.e12[{@usn5}..][9e1..] Then `2esn`[$1000..9e12][{#usn8}..{7}] End.`6esn` =#usn8 =~{_usn3} =~``,`7esn`+=12e12 Ends With `4esn` Ends With 123456789"), + octest_legacy:ct_string("Unwind #usn7[9e0] As usn2 Union With Distinct {@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}[Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))..] As `6esn`,Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123456789 Is Not Null Is Not Null) Starts With Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999) Starts With Reduce(usn2=1.e1 =~`2esn`,@usn5 In Null =~12e12|Count(*)[..``][..#usn8]) As `1esn` Order By 0x0[{999}..`1esn`][0Xa..False] Descending,{_usn4}[..$#usn7] Ascending Skip @usn6 Contains Null Merge `7esn`=Shortestpath((((`6esn` {``:`4esn`[usn1]})<-[:`6esn`{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},`6esn`:``[..$#usn7]}]->({_usn4:False[0Xa..$usn1]})-[`8esn`?{`3esn`:'s_str'[..0X7]}]-(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]})))) On Match Set `4esn`+=$`8esn`[0xabc][Null],@usn5+=0.0 In `6esn` In $@usn5 Union Remove #usn8:#usn8,Single(_usn4 In `2esn` Where 0X0123456789ABCDEF[9e12]).`1esn`! Foreach(`1esn` In All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Contains `4esn`(999 Starts With 's_str') Contains (`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})| Create (#usn8 :`7esn`),`3esn`=Shortestpath((:_usn4)-[`6esn`?{#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}]-({`3esn`:9e1 =~999})-[`3esn`? *01..07]->({`7esn`:@usn5[..$@usn5][..0Xa]})) Detach Delete Reduce(@usn5={`1esn`} In 12.e12 In 9e1,`5esn` In $`2esn`[12.e12][$@usn5]|$`6esn` Ends With {0} Ends With {`7esn`}) Is Null,``[..0X0123456789ABCDEF],{`1esn`}[$`4esn`..][False..])"), + octest_legacy:ct_string("Using Periodic Commit 01234567 Load Csv With Headers From 's_str'[$usn2][Count(*)] As usn2 Fieldterminator \"d_str\" Return 9e12[{123456789}..][$`2esn`..] As `1esn`,010 Is Not Null Is Not Null As #usn7,{7} Is Null Order By $12 Contains 0Xa Descending Skip $12 Contains 0Xa Create Unique usn1=(((usn2 )<-[ *0xabc..7]->(:`4esn`:@usn6)<-[usn2?:usn2|#usn7]->(`3esn` :_usn4))),`4esn`=(`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})-[?:@usn6|`` *..0Xa]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})"), + octest_legacy:ct_string("Load Csv From 123456789[12..$`4esn`] As _usn3 "), + octest_legacy:ct_string("Merge ((`2esn` {_usn4:`4esn`[usn1]})<-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(:_usn4)) On Match Set `6esn` ={1000},`` =All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.e12[$`8esn`..{`8esn`}]) Is Null,All(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]).`4esn`! =01234567[{`7esn`}..]"), + octest_legacy:ct_string("Merge `3esn`=Allshortestpaths((usn1 :usn1:_usn4)) On Match Set _usn3 ={#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null,Reduce(usn2=.e1[..\"d_str\"],#usn7 In 123.654 Starts With $``|0Xa[$1000..$123456789]).@usn6 ={`2esn`}[Count(*)],`2esn`+=[{usn2}[$`4esn`]] Starts With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null] On Match Set `6esn` =Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000) Contains [0x0[$`8esn`.._usn3]] Contains count({`1esn`} Is Not Null,$`2esn` Ends With 0.12 Ends With .e1),`3esn` =0.0 Contains $_usn4 Contains {`2esn`},(`4esn` {_usn4:12 Starts With {_usn4} Starts With $#usn8,_usn4:$@usn5[$`4esn`][$@usn6]})-[{`1esn`:@usn6[$usn2..#usn7]}]->({`3esn`:$usn1 In 01234567 In .e1,``:False[999]}).``? =\"d_str\" Ends With 1.0 Ends With 0e0 Union Remove Case When $1000[..12.0][..0e0] Then $_usn3 Is Null Is Null When `3esn` Is Not Null Is Not Null Then 7 Contains `2esn` Contains $`8esn` Else {`4esn`}[..{`4esn`}] End.usn2!,`7esn`:`4esn`:@usn6,Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[{999}..][{_usn4}..]|$`1esn`[$12][Count ( * )]).`5esn`! Return *,(usn1 :@usn5)<-[_usn4?:usn2|#usn7{_usn4:{`1esn`} In 12.e12 In 9e1}]-(:usn2:`2esn`)[Extract(`1esn` In $12 Is Not Null Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`|12.0 =~$#usn7 =~9e12)],[00[..$123456789][..$`5esn`],{_usn3} Contains $`1esn` Contains 12.0][..[0.e0 =~`1esn` =~`6esn`,12.0[2.12..][{`5esn`}..],1.e1[0X0123456789ABCDEF..]]][..Filter(_usn3 In True[7][$999] Where 's_str'[..0X7])] As #usn7 Order By Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..])[..{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}][..Filter(`2esn` In {999} Is Not Null Where 010 In `1esn`)] Desc,\"d_str\"[..0.e0] Ascending,$7[{`1esn`}] Descending Limit $`5esn`[`1esn`..$123456789]"), + octest_legacy:ct_string("Remove {``:00[07..],#usn7:$`3esn` In 9e12 In ``}.usn1?,{usn2:123.654[{`7esn`}][{7}],#usn8:$0[..{usn2}][..$usn1]}.usn2? Unwind $`8esn` In 0.0 In `1esn` As `6esn` Union All Detach Delete 07 =~$`8esn` =~9e1 Return *,[#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null,{999}[9e1] As usn1 Order By {123456789} =~{@usn6} Desc,Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..] Desc,{`5esn`} Ends With \"d_str\" Desc Limit _usn4 =~0e0 Union Delete #usn7[..12e12] Foreach(`6esn` In {_usn3}[{0}]| Detach Delete 12.e12 In {0} In 9e1,$``[01],0.0 In `6esn` In $@usn5 Start @usn5=Relationship:usn2({`5esn`}) ,@usn5=Node:@usn5(\"d_str\"))"), + octest_legacy:ct_string("Remove Case 12.e12[$`8esn`..{`8esn`}] When {``} Starts With 123456789 Starts With usn2 Then 12.e12[{7}..7] End.`7esn`,usn1:`3esn`:`6esn`,Filter(#usn7 In 0Xa[@usn5][{`7esn`}] Where #usn7 Starts With $999).usn1! Union Merge usn1=Allshortestpaths(((:`6esn`:`8esn`{`5esn`:{@usn5} Is Null,`8esn`:True[..010]}))) Merge `5esn`=({_usn4:0.e0[{999}][{`1esn`}]})-[`2esn`:`3esn`|:@usn5 *..010{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->({`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]}) Return Distinct All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,1000 As `1esn`,12e12[{usn2}..][`8esn`..] Order By Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where 1.e1[12e12..{`6esn`}]|Count ( * )[..12][..{@usn6}]) Contains All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Contains Extract(_usn4 In `2esn` Where $999 Is Null) Ascending,[False Contains 0.e0 Contains Count(*)][Any(@usn5 In Null =~12e12 Where 0[`4esn`][12.e12])..[$_usn4 Is Not Null Is Not Null,`7esn` Is Not Null Is Not Null]] Descending,(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-({#usn7:#usn8 =~{999}}) In Shortestpath(((:`1esn`)<-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})-[`7esn`? *123456789..0X7{`6esn`:{0}[..{`7esn`}]}]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999}))) Desc"), + octest_legacy:ct_string("Foreach(`2esn` In {`3esn`} Is Null| Create Unique ((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]})),(((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`}))) Unwind \"d_str\" Starts With $`8esn` Starts With {usn1} As `7esn`) Foreach(usn2 In `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]]| Start #usn8=Relationship:usn1({7}) ,`5esn`=Relationship:_usn4(usn1={_usn4})Where .e12 Ends With 1000 Ends With 010) Start _usn4=Relationship:@usn6(#usn7='s_str') Where 9e1 Ends With Count(*) Ends With False"), + octest_legacy:ct_string("With *,#usn8 Is Not Null,$usn2 Starts With $@usn6 Starts With 010 As _usn4 Order By 12.e12[$`4esn`..] Descending Skip 00 Limit 0X0123456789ABCDEF[.e1..] Where \"d_str\" Ends With False Ends With {@usn6} Merge `8esn`=(`6esn` {``:`4esn`[usn1]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]->(#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``}) On Create Set @usn6+={7}[$123456789..{1000}][$`3esn`..`7esn`],Extract(#usn7 In 0Xa[@usn5][{`7esn`}] Where $@usn5 In $usn2 In {1000}|{`2esn`}[..{@usn6}][..1.e1]).`3esn`! =$@usn6[$0..usn1][0X0123456789ABCDEF..$999] On Create Set Extract(usn1 In 12.e12 In {0} In 9e1 Where False Starts With 010|True Starts With $`4esn` Starts With 12e12).`7esn`? =0X0123456789ABCDEF Is Null Is Null,`4esn` =`3esn` In {@usn6} Union All Merge `2esn`=(@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]}) On Create Set #usn8 =(`8esn` :`5esn`:@usn5)<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5) Starts With None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]),@usn5 =$_usn4 Is Null Is Null On Create Set #usn8+=1e1 =~#usn8 =~2.12,#usn7:`2esn`,`1esn` =Count ( * )[..12][..{@usn6}] Unwind 01 Starts With {999} Starts With $`2esn` As #usn8"), + octest_legacy:ct_string("Match #usn8=Allshortestpaths((({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))),@usn6=((usn2 :_usn3)-[`8esn`?{@usn5:Null Is Null Is Null}]->({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})-[_usn3 *..01234567$`5esn`]->({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})) Using Join On `5esn`,``,usn1 Using Join On #usn8,usn2,#usn7 Where 0X7[0X7..][Count ( * )..]"), + octest_legacy:ct_string("Unwind 1e1 Is Not Null Is Not Null As `6esn` Start #usn8=Relationship:usn1({7}) ,`2esn`=Node(123456789,01234567,01234567)Where $12 Is Not Null With Distinct Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..],`` =~`6esn` =~usn1 As `2esn` Order By $_usn4 Starts With 's_str' Starts With {7} Desc,123456789 In $`6esn` In _usn3 Ascending Where 0.12[Count(*)..][$#usn7..]"), + octest_legacy:ct_string("With Distinct .e0 =~{`8esn`} =~$999 As #usn7,$12 Is Not Null As `7esn`,{``} Is Null Is Null Limit {_usn4}[..$#usn7] Where {999} Is Null Create (((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}))),(((`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})-[_usn3?*..{#usn7:#usn8 =~{999},`8esn`:{_usn3}[`3esn`..$#usn8]}]->({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})-[@usn6 *07{`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}]->({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]}))) Merge (usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})"), + octest_legacy:ct_string("Create Unique ((`7esn` {`4esn`:#usn8 =~{999},`2esn`:9e1 =~`` =~{`7esn`}})) Match #usn8=Allshortestpaths((({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))),@usn6=((usn2 :_usn3)-[`8esn`?{@usn5:Null Is Null Is Null}]->({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})-[_usn3 *..01234567$`5esn`]->({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})) Using Join On `5esn`,``,usn1 Using Join On #usn8,usn2,#usn7 Where 0X7[0X7..][Count ( * )..]"), + octest_legacy:ct_string("Optional Match `6esn`=(((:#usn8{`2esn`:12e12 Is Not Null,_usn3:12.e12[2.12..][0xabc..]})-[:_usn4|:usn1{``:0 Contains $usn2 Contains 12e12}]-(`4esn` :`2esn`)<-[`7esn`?:_usn3|`8esn`*..]->(`2esn` :_usn3))),@usn5=(({`5esn`:0Xa[0e0..{#usn7}]})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]-(:#usn7)-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})) Remove [01 =~$`1esn`,1.e1[12e12..{`6esn`}],`8esn`].`1esn` Foreach(`6esn` In Filter(#usn7 In 123.654 Starts With $`` Where Count(*)[010..][#usn7..])[None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $999 Ends With {0})..]| With Distinct *,{1000}[7..$usn2] As @usn5,[12e12 Starts With `1esn` Starts With usn2,Count ( * ) Is Null][(#usn8 {``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})][Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))] As `1esn` Where {_usn4}[{``}..])"), + octest_legacy:ct_string("Foreach(`5esn` In $usn1 Is Not Null Is Not Null| Return Distinct [`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]][..{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}][..`4esn`(123.654[$`1esn`..Null][1000..{_usn3}])] As `6esn` Order By @usn6[$usn2..#usn7] Ascending,{`3esn`} Ends With 0 Ends With 9e1 Desc) Load Csv With Headers From Filter(`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0}) =~({`1esn`:{123456789}[12..][$12..]})-[?:`1esn`|:`3esn`{@usn5:{`6esn`} Ends With 0e0 Ends With {``},@usn5:{`1esn`} Starts With `4esn` Starts With {0}}]->(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[`5esn`?:`7esn`]->({@usn5:Count ( * ) Is Null}) As `1esn` Fieldterminator \"d_str\" Delete 00[0.12..],{999} Starts With {12},1.e1 =~$usn2"), + octest_legacy:ct_string("Using Periodic Commit 123456789 Load Csv From Case {7} Contains $123456789 When {0} Is Null Then 0.0 Is Not Null Is Not Null Else {usn1} =~123.654 =~\"d_str\" End Starts With `1esn`(Distinct $@usn5[`6esn`..],9e12[..0X7]) As `4esn` Foreach(`4esn` In Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3]..`1esn`(Distinct $@usn5[`6esn`..],9e12[..0X7])][Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}))..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]})]| Delete Extract(_usn4 In `2esn` Where $999 Is Null) Starts With Reduce(`5esn`=00,`2esn` In {999} Is Not Null|{`4esn`}[..07][..$`6esn`]) Starts With [`8esn`[..`4esn`][..$usn1],{#usn8}[2.12]],[1.e1 =~$usn2,@usn6[{0}..],@usn5[12.0][{1000}]][@usn6()..Case {@usn5}[..@usn6] When $`2esn` Starts With {`8esn`} Starts With {usn1} Then {``} Is Null Is Null Else 123456789 Ends With usn1 Ends With usn2 End],Case {1000}[{#usn8}] When `7esn` Contains `5esn` Contains 0X7 Then True[..010] When {#usn8} =~{999} =~{#usn7} Then `1esn`[..\"d_str\"][..$`5esn`] Else `6esn`[..{999}] End In Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where `3esn`[..{_usn4}][..{@usn5}]) Detach Delete 1.0 Is Null,{`6esn`} Ends With 0e0 Ends With {``})"), + octest_legacy:ct_string("Create Unique (({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]})),Allshortestpaths((((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})))) Return {`8esn`}[@usn5..][01..],All(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) In Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4]) In [``[00..$7],.e1 Contains $`3esn`,{``} Starts With 123456789 Starts With usn2] As `5esn` Order By [#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}][..[$`6esn`[`8esn`][0.0],$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,True[$`7esn`..{1000}]]][..None(`2esn` In {999} Is Not Null Where {``} Ends With .e12 Ends With 0.e0)] Desc,{@usn5}[Count(*)..] Asc,None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False)[Shortestpath(((({``:$7[{`1esn`}]})<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`)<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(#usn7 :@usn6))))..Extract(_usn3 In True[7][$999] Where $7 Is Null Is Null)][{`4esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:.e12 Is Null Is Null}..[`6esn` In Count(*) Ends With $`` Ends With {7} Where `1esn` =~1000 =~1000]] Descending Limit $`8esn` =~0x0 =~usn2 Union All With $`2esn`[{usn2}],`7esn` Ends With $_usn3 Ends With usn2 Skip .e1 Ends With 0Xa Ends With 00 Where `1esn`[..01] Create @usn5=Allshortestpaths((`2esn` :`5esn`:@usn5)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})),`2esn`=((@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]}))"), + octest_legacy:ct_string("Create #usn8=Allshortestpaths((_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})-[`1esn`?:_usn3|`8esn` *0xabc..7]->(@usn5 :`6esn`:`8esn`)) Load Csv With Headers From 9e12 In 1e1 In .e12 As `5esn` Union All Optional Match ((:`5esn`:@usn5)-[?:`1esn`|:`3esn` *999]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]})) Using Scan usn1:`3esn` Using Index usn2:#usn7(usn2) Where 123456789[0..] Match `2esn`=(@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]}),Shortestpath((({_usn4:False[0Xa..$usn1]})))"), + octest_legacy:ct_string("Load Csv From {`7esn`} Ends With `` Ends With {`8esn`} As `3esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Remove {`8esn`:$@usn6 Starts With {`1esn`} Starts With 12,_usn3:@usn6[$_usn4]}.`2esn` Load Csv With Headers From {_usn3}[$usn2..] As `` Fieldterminator 's_str'"), + octest_legacy:ct_string("Remove [`5esn` In $`2esn`[12.e12][$@usn5] Where False[0Xa..$usn1]|$usn1[$123456789..0][{`1esn`}..12.0]].@usn6! Union Merge _usn3=((_usn3 :`1esn`)) Delete 12e12 Ends With `6esn` Ends With {`3esn`} Load Csv From $@usn6[$0..usn1][0X0123456789ABCDEF..$999] As usn1 Fieldterminator \"d_str\" Union Load Csv With Headers From 1.e1[1.0] As `3esn` Unwind `` Ends With {usn1} As `1esn`"), + octest_legacy:ct_string("Optional Match `8esn`=Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Using Scan `4esn`:_usn4 Load Csv With Headers From 12.e12[..1e1] As `2esn` Merge Allshortestpaths((usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})<-[?:`6esn` *07]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}))"), + octest_legacy:ct_string("Remove [{_usn3}[$usn2..],`5esn` Is Null Is Null,0.12 Contains 12.0].`3esn`,Shortestpath((@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})).``! Unwind {#usn8} Is Null Is Null As _usn4 Union With $`2esn`[{usn2}] Order By 07 Is Null Ascending Where {7}[{`4esn`}][`6esn`] Create Unique _usn4=Allshortestpaths(((({_usn4})<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})-[@usn6?:`2esn`]->(`7esn` )))),((:``{``:0x0 =~123.654 =~{999}})<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]}))"), + octest_legacy:ct_string("Start `7esn`=Node:`4esn`(``='s_str') ,@usn6=Node:`5esn`({0}) Merge (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}) Unwind All(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) In Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4]) In [``[00..$7],.e1 Contains $`3esn`,{``} Starts With 123456789 Starts With usn2] As `` Union All With Distinct *,`7esn`[{7}..@usn5],$`5esn`[`1esn`..$123456789] Order By $999 Contains {7} Desc,Shortestpath(((usn1 {``:.e12 =~$_usn4})))[`6esn`(_usn3 Contains .e0 Contains {usn2},`3esn`[07..])][[.e12 Ends With 1000 Ends With 010,Count(*)]] Asc Skip $`6esn`[..1.e1][..1e1] Limit All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Contains `4esn`(999 Starts With 's_str') Contains (`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Match Allshortestpaths((#usn8 :`7esn`)) Using Join On usn1 Using Join On `6esn`,_usn4"), + octest_legacy:ct_string("Merge Shortestpath((((usn1 :@usn5)-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[#usn7? *999{usn2:{1000}[{``}][999]}]-({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})))) On Create Set `8esn`+=Case #usn7 Ends With $#usn7 Ends With {`8esn`} When Count(*) Ends With 123.654 Ends With $12 Then $`3esn` Contains 0 Contains 07 When 0.e0 Ends With False Then {@usn6}[True..{_usn3}] Else 9e1 Ends With Count(*) Ends With False End Starts With [$usn1 In 01234567 In .e1,9e1 =~999,$0[$1000..00][{0}..{usn1}]] Starts With Allshortestpaths((`5esn` $`8esn`)<-[``:usn2|#usn7 *..0Xa]->(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]})-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})),Single(`3esn` In 123.654[1e1..][{#usn8}..] Where $7 Is Not Null).`8esn`? =$7 In @usn5 In {@usn5} Optional Match Shortestpath((@usn6 :`2esn`)<-[ *..0Xa]->({`8esn`:Null In .e0})) Using Index ``:`6esn`(usn1) Where 0e0 Contains `3esn` Contains `7esn`"), + octest_legacy:ct_string("Foreach(`` In Single(`8esn` In $12[{7}..0X0123456789ABCDEF])[Case 9e1[123456789..] When 12 Starts With 7 Starts With $`5esn` Then {_usn3} Contains True Contains 0X7 When `1esn`[..00][..{7}] Then 1.e1[12e12..{`6esn`}] End..]| With Distinct *,Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End[None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])][count(Distinct $`5esn`[$#usn7..][0xabc..])] As `2esn`,12 Is Not Null Is Not Null As #usn8 Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}])[[#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}]..{`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}][Case When 2.12 =~0x0 =~_usn4 Then .e1[@usn5]['s_str'] When $@usn5 In $usn2 In {1000} Then {0}[False..@usn5] Else {@usn6}[True..{_usn3}] End..`1esn`()] Ascending) Return 0.e0 Ends With False As `` Skip Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*))[Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12)..] Optional Match usn1=(@usn6 :`2esn`)<-[ *..0Xa]->({`8esn`:Null In .e0}) Using Scan _usn4:`2esn` Using Scan `2esn`:`1esn` Where 12.e12[`7esn`] Union All Create #usn7=(_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}) Unwind $@usn5[$`4esn`][$@usn6] As usn2"), + octest_legacy:ct_string("With Distinct *,Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 07[..`6esn`][..'s_str']) In [$`2esn`[$usn2..][{``}..],0.e0 Ends With False] In (:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})-[`2esn`?$_usn4]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)}) Order By {#usn7}[{#usn7}..][$`4esn`..] Ascending,_usn4(Distinct 9e12[$`5esn`],$_usn4[$`4esn`..$12]) Starts With [`` In {`1esn`} Starts With @usn6 Where {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]|$`` In 0 In {1000}] Starts With [_usn4 In 0.0[..{999}][..0.0] Where Count(*) In {``}] Desc,1000 Starts With 123.654 Starts With $_usn4 Asc Where Count(*) Starts With $usn1 Starts With {usn2} Union With .e0 =~{`8esn`} =~$999 As #usn7,$12 Is Not Null As `7esn`,{``} Is Null Is Null Limit All(_usn3 In {@usn5}[..#usn7] Where $`2esn` Starts With {`8esn`} Starts With {usn1}) Starts With {usn2:{`1esn`} Is Not Null}"), + octest_legacy:ct_string("Return *,Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000)[[_usn4 In `2esn` Where `3esn` Is Not Null Is Not Null]..All(`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999])][(_usn4 {_usn3:9e1 =~999})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})..{`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}] As _usn3,Reduce(_usn4=.e1 Starts With $_usn4 Starts With {`1esn`},`6esn` In 00|usn2[True])[..[9e12[..0X7]]][..$`1esn`] Skip 0e0[..$@usn5][..$`8esn`] Limit Reduce(`3esn`={_usn3} Is Not Null,usn1 In 12.e12 In {0} In 9e1|0[Count(*)][0e0])[`6esn`(``[..0X0123456789ABCDEF])..Single(`` In {`1esn`} Starts With @usn6 Where {_usn3}[$usn2..])] Start `8esn`=Relationship:`4esn`(``='s_str') ,`8esn`=Rel( {`7esn`}) Union All Foreach(@usn5 In ({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..`2esn`(Distinct #usn8[`7esn`..])][..[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]]]| Create Unique Allshortestpaths((`` :``)-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})) Optional Match Allshortestpaths((usn2 :`5esn`:@usn5)),Allshortestpaths((((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]-({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})-[#usn8:`` *..0{@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}}))))) Return Distinct [`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]][..{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}][..`4esn`(123.654[$`1esn`..Null][1000..{_usn3}])] As `6esn` Order By @usn6[$usn2..#usn7] Ascending,{`3esn`} Ends With 0 Ends With 9e1 Desc"), + octest_legacy:ct_string("Unwind $@usn5 Is Not Null Is Not Null As #usn7 Union With {usn2} Starts With `` Starts With {0},@usn6[2.12..$#usn8][`3esn`..{`5esn`}] As `8esn` Order By ({usn1:0[{@usn5}..][7..],`7esn`:{``}[_usn4..$`1esn`]})<-[@usn5:`8esn`|:_usn4]->(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(_usn4 :_usn4) In (`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})<-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]->(`4esn` :#usn7)<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}) In Allshortestpaths((((:`7esn`{`1esn`:{1000} In {123456789},`4esn`:010 In `1esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)))) Desc,{_usn4}[{usn1}..$_usn3] Asc Skip {`3esn`}[$1000] Detach Delete {`2esn`} Ends With {12} Ends With 7,1e1[7..][.e1..],#usn7(Distinct)[usn2(Distinct)..{#usn7:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:#usn8[$0..False][$`1esn`..$#usn7]}][Case When {`4esn`}[..{`4esn`}] Then {`7esn`}[0X7..][0x0..] When {@usn6} Contains 123.654 Contains 01 Then #usn8 Is Not Null End..[9e12 Ends With 123456789]]"), + octest_legacy:ct_string("Unwind #usn8 =~{usn1} =~00 As _usn4 Create Unique `3esn`=(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]}),Shortestpath(((:#usn8{`2esn`:12e12 Is Not Null,_usn3:12.e12[2.12..][0xabc..]})<-[#usn8? *..0Xa{`4esn`:$`2esn` Ends With 0.12 Ends With .e1,`4esn`:07 =~@usn5}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})<-[@usn5:`3esn`|:@usn5 *01..07{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}]->(usn1 :``{_usn3:``[{#usn8}],`3esn`:{`3esn`} Is Null}))) Remove [{#usn8}[#usn7..{`2esn`}],{1000},{@usn5}[1e1..][9e1..]]._usn4!,Allshortestpaths(((`` {``:$0[..{usn2}][..$usn1]})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))).@usn5!,Reduce(#usn7=9e0[#usn8],_usn3 In True[7][$999]|{`2esn`}[Count(*)]).`8esn`?"), + octest_legacy:ct_string("Remove Any(#usn7 In 0Xa[@usn5][{`7esn`}]).`4esn`"), + octest_legacy:ct_string("Optional Match Shortestpath((((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4})))),_usn4=Allshortestpaths(((usn1 :#usn7))) Where $1000[{`6esn`}..] Remove [`5esn` Is Null Is Null,$1000 Is Not Null Is Not Null].@usn6!,Single(_usn4 In 0.0[..{999}][..0.0] Where 1e1[1.e1..][123.654..]).`5esn`?,`4esn`:usn1:_usn4"), + octest_legacy:ct_string("Remove Case When 00 =~0.e0 =~$`8esn` Then `5esn`[..9e0][..01234567] When 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Then {999} Starts With {12} End.`8esn`?,Filter(`1esn` In `3esn`[07..] Where 07 Is Null).@usn5!,#usn7(Distinct `2esn`[$1000..9e12][{#usn8}..{7}]).`7esn` Union Unwind #usn7 Starts With $999 As #usn7 Optional Match Shortestpath((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Using Join On usn1,_usn4,`6esn` Using Index usn1:_usn3(``) Where {_usn3}[`3esn`..$#usn8] Union All Return Distinct [`` In {`1esn`} Starts With @usn6 Where 0Xa[$1000..$123456789]] Starts With (`7esn` )-[:_usn4|:usn1 *0X7..0Xa{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]}]-({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null}) Starts With Allshortestpaths((`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})),$`2esn` Ends With `` Ends With {12} As usn1 Order By `2esn`(Null In .e0)[_usn3(Distinct {@usn6}[$`7esn`..][False..])..[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]]] Asc,12 Is Not Null Is Not Null Desc Skip ``(#usn8 =~{999})[Single(_usn3 In {@usn5}[..#usn7])..][Case $123456789 Is Not Null When .e1[0.12] Then {@usn5}[..{12}][..0x0] When @usn5 Is Not Null Is Not Null Then \"d_str\" Ends With False Ends With {@usn6} End..] Unwind .e1[..$`4esn`][..$`6esn`] As `7esn` Create (@usn6 {usn1:$#usn7 =~{12} =~False})-[`1esn`?:_usn3|`8esn` *0xabc..7]-(`4esn` :@usn6)"), + octest_legacy:ct_string("With *,$usn1 In 01234567 In .e1 Order By Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6) Starts With [$_usn3[010..False],$123456789 =~`4esn`,$usn1[$123456789..0][{`1esn`}..12.0]] Descending,{#usn7:`5esn`[..9e0][..01234567]} In Case 1e1[1.e1..][123.654..] When 7[1000.._usn3][9e0..\"d_str\"] Then 12.e12[``..usn2][{#usn7}..@usn5] When 1.e1[0xabc..] Then 1.e1 Starts With $`2esn` Starts With $0 End In Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null) Desc,{7}[$7..] Desc Skip \"d_str\"[{999}..] Limit @usn5[$12..\"d_str\"] Where .e1 Contains $`3esn`"), + octest_legacy:ct_string("Foreach(`3esn` In {@usn5} Starts With 1.0 Starts With 00| Detach Delete True Starts With $`2esn` Starts With {@usn6},.e12[\"d_str\"..][.e1..],$_usn3[..$`2esn`][..\"d_str\"]) Union All Remove Reduce(`4esn`=_usn4 Is Null Is Null,_usn3 In {@usn5}[..#usn7]|$@usn6[$`8esn`..][7..])._usn4? Optional Match (usn2 :`5esn`:@usn5)-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})"), + octest_legacy:ct_string("Unwind {`6esn`}[All(`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0])..][{`3esn`:{``}[010],`4esn`:$123456789 Starts With `5esn`}..] As `2esn` Return Distinct *,{@usn6} Contains 0e0,[`1esn` In $12 Is Not Null Where {`3esn`}[{`5esn`}]|True Is Not Null Is Not Null] Ends With Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End Ends With `3esn`(Distinct 1.e1 =~$usn2,0X0123456789ABCDEF Is Null Is Null) As `5esn` Order By 0Xa[..07] Ascending,False[999] Descending,'s_str'[_usn3..] Ascending Skip Single(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2])[(_usn3 {usn1:0Xa[0e0..{#usn7}],`1esn`:.e0[True..Count ( * )][#usn7..0X7]})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1})..] Limit {999}[$123456789..][12..] Return Distinct $@usn6[1.e1..`8esn`][Null..123456789] As `2esn` Order By $7 Is Not Null Descending Skip ({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]})<-[`5esn`?:`7esn`]->(:@usn5)<-[`4esn`:`4esn`|:#usn7{`2esn`:{`4esn`}[$_usn4..][9e0..]}]-({usn2:`1esn` In 07}) =~Reduce(@usn6=`3esn` =~9e0 =~@usn6,_usn3 In True[7][$999]|$`8esn`[..$999][..0]) =~{@usn5:12 Is Not Null,`2esn`:$999 In 999} Limit `6esn` Starts With 123.654 Union All Foreach(`8esn` In $`7esn` Contains {`1esn`} Contains 9e12| Remove (#usn7 :@usn6{`8esn`:{@usn6}[True..{_usn3}],`1esn`:07 Is Null})-[`3esn`:`6esn`{`3esn`}]-(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[`1esn`?:_usn3|`8esn` *0xabc..7]-(`4esn` :@usn6).@usn6) Optional Match #usn7=Allshortestpaths(((:`5esn`:@usn5))),@usn5=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Where _usn4[Count(*)] Foreach(`6esn` In _usn3 =~123.654| Create Unique ((`5esn` :_usn3)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})),``=(_usn4 :#usn7{`8esn`:$999 Contains {7}}) Remove (usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[`7esn`? *0X0123456789ABCDEF{@usn6:12 Starts With {_usn4} Starts With $#usn8}]-(:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}})<-[``{`3esn`:{`3esn`}[{`5esn`}]}]-({@usn5:``[{123456789}..]}).`5esn`) Union All Remove `7esn`(Distinct {999} Starts With {12},999 Ends With .e12 Ends With .e1).@usn5"), + octest_legacy:ct_string("Remove Case 0.12 Starts With 9e12 Starts With $`1esn` When $`5esn`[`1esn`][0X0123456789ABCDEF] Then 9e12 Is Not Null Is Not Null Else {`2esn`} Ends With {12} Ends With 7 End.usn1 Load Csv With Headers From $usn1[0X7] As `6esn` Fieldterminator 's_str' Foreach(@usn6 In $`` Contains 1.e1| Create Unique #usn8=Allshortestpaths((`5esn` :_usn4)<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]})),Shortestpath((((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[`6esn`?]-(`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}))))) Union All Delete 12e12 =~{#usn7} =~$`3esn` With {`3esn`}[{12}..][0.12..] As ``,$``[True..] Order By [`2esn` In {999} Is Not Null Where {@usn6}[True..{_usn3}]] =~None(#usn7 In 123.654 Starts With $`` Where {usn2}[$`4esn`]) =~Extract(`1esn` In $12 Is Not Null Where Null Is Null Is Null|$123456789 =~`4esn`) Ascending,{0}[False..@usn5] Desc Limit 12 In 999 Where Count(*)[..``][..#usn8]"), + octest_legacy:ct_string("Start `8esn`=Relationship:`7esn`({usn1}) ,@usn6=Node:`1esn`(\"d_str\")Where @usn6[$_usn4]"), + octest_legacy:ct_string("With *,$7 In 1.0 In 1e1,0X7 Starts With {999} Starts With 12e12 As @usn5 Skip {usn1}[$7..0x0] Return *,.e1 Contains $`3esn` As _usn3 Skip Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3]..`1esn`(Distinct $@usn5[`6esn`..],9e12[..0X7])][Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}))..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]})] Limit #usn7 Starts With 1000 Starts With .e1 Union Remove Single(`1esn` In $12 Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]).#usn7,Single(_usn4 In `2esn` Where False Ends With $``).`1esn`! Union All Merge ``=(usn2 :`4esn`:@usn6)<-[_usn3?:@usn6|``]->(usn1 :`5esn`:@usn5) On Match Set `6esn` ={_usn3}[usn1][0],Shortestpath((@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})).@usn5? =\"d_str\" Contains @usn6 Contains 12.e12,`7esn`+=`3esn`[..{_usn4}][..{@usn5}] On Match Set ``+=$@usn6 Contains `7esn`,_usn4:`5esn`:@usn5"), + octest_legacy:ct_string("Using Periodic Commit 12 Load Csv From (`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->({_usn3})[Reduce(usn1=0x0[$`8esn`.._usn3],_usn4 In `2esn`|{123456789} Is Not Null)..Reduce(usn1=12.0[2.12..][{`5esn`}..],_usn3 In {@usn5}[..#usn7]|1000[$7..$123456789])][[_usn4 In `2esn` Where 9e12 Ends With 123456789|07 =~$`8esn` =~9e1]..(:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->()] As @usn5 "), + octest_legacy:ct_string("Using Periodic Commit 00 Load Csv With Headers From {@usn6} Starts With @usn5 Starts With @usn6 As `6esn` "), + octest_legacy:ct_string("Foreach(_usn3 In 12 In 999| With Distinct `7esn`[{7}..@usn5] As `6esn`,[`1esn` In $12 Is Not Null Where {`3esn`}[{`5esn`}]|True Is Not Null Is Not Null] Ends With Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End Ends With `3esn`(Distinct 1.e1 =~$usn2,0X0123456789ABCDEF Is Null Is Null) As `5esn`,$999 Is Not Null Is Not Null As `3esn` With Distinct `2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] Limit `` =~`6esn` =~usn1 Where @usn5[12.0][{1000}]) Remove `1esn`:`4esn`:@usn6,{@usn6:12 Starts With {_usn4} Starts With $#usn8,`3esn`:.e1[@usn5]['s_str']}.#usn7? Union Unwind 9e0 Contains @usn6 Contains {#usn7} As `` Create #usn8=(`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})<-[? *0X7..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Load Csv With Headers From {999} Starts With {_usn4} Starts With 00 As `8esn` Fieldterminator \"d_str\" Union Return 999[12.0..][#usn7..],7[010][00] Limit `4esn` Contains #usn8 Contains 7 Create Unique `3esn`=(((`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[usn1?:`4esn`|:#usn7 *0X7..0Xa]->({_usn4:01234567[..9e1]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}))) Remove None(_usn3 In {@usn5}[..#usn7] Where $`` In 0 In {1000}).`5esn`,[@usn5 In Null =~12e12 Where 0[{usn2}..][usn1..]|_usn3[\"d_str\"]].`3esn`?,Extract(`1esn` In `3esn`[07..] Where 12 Ends With 01|{#usn7}[Count ( * )..12][$`2esn`..`4esn`]).usn1?"), + octest_legacy:ct_string("Return 1.0 In 9e1 In {`7esn`},$12 Is Not Null As `6esn`,01234567[$7..{12}] Order By False[1000][{`7esn`}] Asc,Count(*) Ends With $`` Ends With {7} Asc Skip 9e12 Contains $`7esn` Limit #usn7 Ends With $#usn7 Ends With {`8esn`} Return 1.e1 Is Null Skip $`2esn`[{``}..{1000}][#usn8..`2esn`] Limit $123456789[..$7][..$`6esn`] Union All Create @usn6=Shortestpath(((_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]}))),`8esn`=Shortestpath((({`7esn`:{`1esn`} =~{_usn4}})-[_usn3?:usn1 *12..{#usn7:0e0 Contains `3esn` Contains `7esn`}]-(`5esn` $`8esn`))) Return *,1.e1 Starts With $`2esn` Starts With $0 Union Create Unique usn1=Allshortestpaths((`2esn` :#usn8{@usn6:`7esn` Ends With $_usn3 Ends With usn2,_usn4:{12} Starts With #usn8 Starts With 0e0})<-[:`6esn`{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},`6esn`:``[..$#usn7]}]->({_usn4:False[0Xa..$usn1]})),#usn7=Allshortestpaths((({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True}))) Delete 0.0 In `6esn` In $@usn5,9e12 In 1e1 In .e12,1.0[..`4esn`][..{0}] Foreach(`1esn` In $#usn7[`5esn`]| Start ``=Rel:_usn4({`2esn`}) ,`7esn`=Node:`4esn`(``='s_str')Where 1000 Is Not Null)"), + octest_legacy:ct_string("Unwind $123456789 Contains [True Starts With $`2esn` Starts With {@usn6}] Contains {@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]} As `2esn` Union All Unwind None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] As _usn3 Start `4esn`=Rel:`7esn`(usn2='s_str') Create Unique _usn3=(((`7esn` :#usn7{`5esn`:_usn4 Is Null Is Null})-[`2esn`:`2esn`{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})-[{``:\"d_str\"[{`8esn`}..]}]-(:`4esn`:@usn6{@usn6:Count(*)[..``][..#usn8]}))),#usn8=(((:@usn5{@usn6:{7} Contains $123456789})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})-[`3esn`:`6esn`{`3esn`}]-(#usn8 :`6esn`:`8esn`{`1esn`:9e12 Is Not Null,_usn4:0X0123456789ABCDEF[$`2esn`..][`2esn`..]}))) Union All Create (usn1 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`) Merge Allshortestpaths((`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})-[``:usn2|#usn7 *..0Xa]->(:`4esn`:@usn6{usn1:$7[{`1esn`}],#usn8:\"d_str\"[..0.e0]})) On Create Set Extract(`1esn` In $12 Is Not Null Where 1e1[..$1000][..999]|True Starts With $`2esn` Starts With {@usn6}).``? =[$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null][(`1esn` :#usn7)<-[? *0X0123456789ABCDEF]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]})..[{_usn3}[$usn2..],$`3esn`[..$`2esn`][..123.654],12.e12[`7esn`]]],usn1 ={usn2} =~`7esn` =~07,usn1+=usn2[999..] On Match Set [#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}]].@usn5 =Reduce(#usn8=$7[{`1esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|$12 Contains 0Xa) Is Null Is Null,Reduce(`7esn`=$0[`7esn`],`6esn` In Count(*) Ends With $`` Ends With {7}|$7 Ends With 0X7).`5esn` =$0 Is Not Null,`1esn`+=`2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}]"), + octest_legacy:ct_string("Create (@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}),_usn4=(@usn6 :@usn6{`5esn`:@usn5[$12..\"d_str\"],usn2:1.e1[0X0123456789ABCDEF..]}) Remove None(_usn4 In `2esn` Where `3esn`[..{_usn4}][..{@usn5}]).`1esn`,[999 Ends With .e12 Ends With .e1,{_usn3}[..$`8esn`]].@usn6? Merge @usn6=Allshortestpaths((@usn6 :@usn5{usn2:{`6esn`} Ends With 0e0 Ends With {``}})) On Create Set Reduce(`4esn`=1000,`5esn` In $`2esn`[12.e12][$@usn5]|True Starts With $`2esn` Starts With {@usn6}).`6esn`! =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,All(`` In {`1esn`} Starts With @usn6 Where #usn7[$`5esn`..])._usn3? ={999} In 0.0 In {0},@usn5+=[12e12 Starts With `1esn` Starts With usn2,Count ( * ) Is Null][(#usn8 {``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})][Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))]"), + octest_legacy:ct_string("Unwind 01234567['s_str'] As usn2 Start usn1=Node:`7esn`(`5esn`={usn2}) ,_usn3=Node:`2esn`(#usn7={usn1}) Load Csv With Headers From Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Is Null Is Null As `2esn` Fieldterminator 's_str' Union All Detach Delete $999 In 999,`2esn`[usn2..][$7..] Union All Create _usn4=Allshortestpaths(((({_usn4})<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})-[@usn6?:`2esn`]->(`7esn` )))),((:``{``:0x0 =~123.654 =~{999}})<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]})) Return *,(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As #usn7,.e1 Ends With 0Xa Ends With 00 As _usn3"), + octest_legacy:ct_string("Create Unique ``=(({`4esn`:1000 Is Null Is Null})),Allshortestpaths((((@usn6 {usn1:$#usn7 =~{12} =~False})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})))) Foreach(usn1 In 999| With {@usn5},{0} Is Null As `6esn` Skip Null In .e0) Union All Create Unique ((`1esn` :_usn3{`5esn`:{`8esn`}[..$`6esn`][..123.654],`1esn`:1000 Starts With `7esn`})),`4esn`=Shortestpath((({@usn5:``[{123456789}..]})-[`3esn`:`6esn`{`3esn`}]-({`1esn`:$123456789[..$7][..$`6esn`]})<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`))) Foreach(`6esn` In {``} Starts With 123456789 Starts With usn2| Return Distinct True[..010],`1esn` =~1000 =~1000 As `8esn` Order By 0.0[9e1..][Null..] Descending,Reduce(`6esn`={@usn5} Starts With 1.0 Starts With 00,usn1 In 12.e12 In {0} In 9e1|123456789 Ends With usn1 Ends With usn2) In (_usn3 :_usn3)<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)-[`7esn`?:`` *0xabc..7]-(usn2 ) Descending Skip Reduce(#usn8=``[00..$7],_usn4 In 0.0[..{999}][..0.0]|12 Starts With $#usn7) =~usn1() =~Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where 999 Ends With .e12 Ends With .e1|0[`4esn`][12.e12]) Limit $`7esn`[$0..][{`4esn`}..])"), + octest_legacy:ct_string("Remove {@usn6:`7esn` Ends With $_usn3 Ends With usn2,_usn4:{12} Starts With #usn8 Starts With 0e0}.#usn7! With [`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]][..Reduce(`4esn`=@usn5[12.0][{1000}],_usn4 In `2esn`|0[$`6esn`...e1][`1esn`..$`7esn`])][..[7[010][00],$7[$`3esn`],#usn7 =~{`4esn`} =~123456789]],$1000[..12.0][..0e0] Where $12 Contains 0Xa Union Load Csv With Headers From `2esn` As `` "), + octest_legacy:ct_string("Create Unique ((({_usn4})<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})-[@usn6?:`2esn`]->(`7esn` ))),``=(({usn1:{usn2} =~@usn6 =~{`4esn`},usn1:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[``?:`6esn` *07{`5esn`:{12} Contains `7esn` Contains $_usn3,_usn4:$`3esn` In 9e12 In ``}]-(:@usn6)-[#usn7{usn1:1.0[{999}][$999]}]->(:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]}))"), + octest_legacy:ct_string("Foreach(#usn8 In $1000 =~{1000} =~`5esn`| Unwind Single(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7])[..{@usn5:_usn4[Count(*)],`6esn`:$`3esn` Contains 0 Contains 07}][..Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`])] As #usn7) Union Delete All(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $@usn6[01..@usn5][0x0..`4esn`]) Is Not Null Is Not Null,[`1esn` In $12 Is Not Null Where 07 =~@usn5][..Reduce(#usn8=``[00..$7],_usn4 In 0.0[..{999}][..0.0]|12 Starts With $#usn7)][..Filter(`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0})],0Xa In {`7esn`} Remove @usn5(Distinct 0.e0 Contains #usn7).`8esn`!,({usn2:`1esn` In 07})<-[?]-(:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01}).#usn7 Union Unwind 0.12[010..][{0}..] As #usn8 With Distinct Count ( * ) =~{`5esn`} =~{_usn4} As _usn3,Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999)[..Reduce(``={`8esn`}[True..][.e1..],#usn7 In 123.654 Starts With $``|{usn1}[$`8esn`..0.0])][..Any(`1esn` In $12 Is Not Null Where $12 Is Not Null Is Not Null)] As #usn8 Where {`3esn`} Ends With `1esn` Ends With $@usn6 Foreach(#usn8 In $usn1 =~010 =~07| Optional Match Shortestpath(({``:.e1 Contains $`3esn`})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})),Allshortestpaths((:usn1:_usn4{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[`8esn`? *999]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})) Using Scan `2esn`:@usn6)"), + octest_legacy:ct_string("Return Distinct @usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2) As @usn5,$`` =~{``} =~0.e0 Skip Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Starts With (usn2 :``)<-[#usn7? *0X0123456789ABCDEF{usn1:.e1[@usn5]['s_str'],`2esn`:$`7esn` Is Null Is Null}]->({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}) Merge ((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`)) On Match Set @usn5 =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Union All Delete `3esn`[..0.e0][..$usn1],$#usn7[.e1..{`7esn`}][{`6esn`}..$_usn4] Return Distinct #usn7 Starts With $999 As `6esn`,{7}[$123456789..{1000}][$`3esn`..`7esn`] Skip $123456789 Contains [True Starts With $`2esn` Starts With {@usn6}] Contains {@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]} Limit None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])]"), + octest_legacy:ct_string("Load Csv With Headers From .e0[0.12] As usn1 Fieldterminator \"d_str\" Foreach(`1esn` In `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]]| With Distinct *,0X0123456789ABCDEF Contains {usn1} As @usn5 Order By (:usn1:_usn4)<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[usn2?:`2esn`*..]-(:`5esn`:@usn5{``:0.12[..$`6esn`][..$1000]}) Starts With Reduce(`8esn`=00[..$123456789][..$`5esn`],`` In {`1esn`} Starts With @usn6|False[999]) Starts With [`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]] Descending,`2esn`(Null In .e0)[_usn3(Distinct {@usn6}[$`7esn`..][False..])..[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]]] Asc,(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[#usn7?:@usn6|``{123456789}]->(usn1 :`8esn`:@usn5)<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})[..[12.e12 In {0} In 9e1,9e1 =~`` =~{`7esn`},0X0123456789ABCDEF[0X7..]]][..All(`1esn` In `3esn`[07..] Where `7esn`[0..$usn2][{usn2}..0.e0])] Asc Skip #usn7[00] Limit Shortestpath(((usn1 {``:.e12 =~$_usn4})))[`6esn`(_usn3 Contains .e0 Contains {usn2},`3esn`[07..])][[.e12 Ends With 1000 Ends With 010,Count(*)]]) Optional Match `6esn`=Allshortestpaths((@usn6 :usn1:_usn4)),@usn6=Shortestpath(((:#usn8{#usn8:`3esn` Is Not Null Is Not Null}))) Union Remove None(_usn4 In 0.0[..{999}][..0.0] Where {`7esn`} Is Not Null Is Not Null).`3esn`? Delete {`3esn`} Ends With `1esn` Ends With $@usn6,{12} =~0.e0 =~{_usn3},[_usn4 In 0.0[..{999}][..0.0] Where ``[..0X0123456789ABCDEF]][Reduce(``=`6esn` Is Null Is Null,`2esn` In {999} Is Not Null|{12}[999][{_usn3}])..[_usn4 In `2esn` Where 0X0123456789ABCDEF[$`5esn`..]]]"), + octest_legacy:ct_string("Detach Delete {`2esn`} Ends With {12} Ends With 7,1e1[7..][.e1..],#usn7(Distinct)[usn2(Distinct)..{#usn7:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:#usn8[$0..False][$`1esn`..$#usn7]}][Case When {`4esn`}[..{`4esn`}] Then {`7esn`}[0X7..][0x0..] When {@usn6} Contains 123.654 Contains 01 Then #usn8 Is Not Null End..[9e12 Ends With 123456789]] Return None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12.e12[``..usn2][{#usn7}..@usn5]) Is Null Is Null As @usn5,Reduce(#usn8={`8esn`}[..$`6esn`][..123.654],usn1 In 12.e12 In {0} In 9e1|\"d_str\" =~`1esn` =~{`5esn`}) As ``,None(`3esn` In 123.654[1e1..][{#usn8}..] Where 7[$0..][{_usn4}..])[All(`` In {`1esn`} Starts With @usn6 Where Null[{_usn4}..])..(:_usn3{0})-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]->({@usn5:``[{123456789}..]})<-[`4esn`:`3esn`|:@usn5 *..010]->({`4esn`:12 Starts With {_usn4} Starts With $#usn8})] Skip {``}[_usn4..$`1esn`] Foreach(`3esn` In {`5esn`} Contains 123456789 Contains 9e12| With `7esn` =~.e12 =~$#usn7 As `3esn`,$`8esn` Is Null Is Null As `6esn` Order By False[{`8esn`}] Asc,Reduce(usn2={`6esn`}[..{`2esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|1e1[..01]) Is Not Null Is Not Null Asc,{1000}[1000][$usn1] Ascending Skip $#usn8[{12}..]) Union Merge ((`5esn` :@usn6)<-[`2esn`?:@usn6|``]->(`1esn` {_usn4:{1000} Ends With {`8esn`}})<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})) On Create Set _usn4+=Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where 12e12 Is Not Null)[..Reduce(`1esn`=$`3esn` In 9e12 In ``,`2esn` In {999} Is Not Null|$@usn5[..usn2][..$#usn7])],Shortestpath(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))).`7esn`! =1e1[{_usn4}..123.654] On Match Set `1esn`+=`2esn` Starts With `` Starts With 1e1,Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End.`3esn` =$0 Ends With False Ends With $_usn4 Load Csv With Headers From Any(`5esn` In $`2esn`[12.e12][$@usn5] Where {999} Starts With {12})[Reduce(#usn7={_usn3}[`3esn`..$#usn8],`3esn` In 123.654[1e1..][{#usn8}..]|{999} Starts With {_usn4} Starts With 00)..Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0.12[..$`6esn`][..$1000])][All(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])..[$_usn3 Is Null Is Null,`5esn` Is Null Is Null,7 Is Null Is Null]] As `2esn` "), + octest_legacy:ct_string("Return Extract(#usn7 In 123.654 Starts With $`` Where #usn8[`7esn`..]|0.0[..{999}][..0.0])[..Extract(`1esn` In `3esn`[07..] Where 00[07..]|$#usn7 Starts With 9e0 Starts With 2.12)][..None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])],All(usn1 In 12.e12 In {0} In 9e1 Where {12}[usn2])[Reduce(``=$@usn5[..usn2][..$#usn7],`6esn` In Count(*) Ends With $`` Ends With {7}|{`4esn`}[$123456789..])..][{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]}..] Skip [{999} Starts With {12},9e1 Ends With Count(*) Ends With False,0X0123456789ABCDEF[`5esn`..][$#usn8..]] In Single(`6esn` In 00 Where 0X0123456789ABCDEF Is Null Is Null) Limit (:``{`1esn`:#usn8 Is Not Null,`5esn`:$@usn6[$0..usn1][0X0123456789ABCDEF..$999]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})-[?:_usn3|`8esn` *12..{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}]-(`6esn` :`2esn`{`7esn`:#usn8 =~{999}}) Ends With `6esn`() Ends With Shortestpath(((`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})-[:#usn8|`2esn`]->(:`3esn`:`6esn`)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))) Start #usn7=Node(0,0X7) Where True Is Not Null Is Not Null Return 's_str'[_usn3..] As `5esn`,{0}[False..@usn5] As `1esn` Skip 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF Union Foreach(`4esn` In Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3]..`1esn`(Distinct $@usn5[`6esn`..],9e12[..0X7])][Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}))..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]})]| Delete Extract(_usn4 In `2esn` Where $999 Is Null) Starts With Reduce(`5esn`=00,`2esn` In {999} Is Not Null|{`4esn`}[..07][..$`6esn`]) Starts With [`8esn`[..`4esn`][..$usn1],{#usn8}[2.12]],[1.e1 =~$usn2,@usn6[{0}..],@usn5[12.0][{1000}]][@usn6()..Case {@usn5}[..@usn6] When $`2esn` Starts With {`8esn`} Starts With {usn1} Then {``} Is Null Is Null Else 123456789 Ends With usn1 Ends With usn2 End],Case {1000}[{#usn8}] When `7esn` Contains `5esn` Contains 0X7 Then True[..010] When {#usn8} =~{999} =~{#usn7} Then `1esn`[..\"d_str\"][..$`5esn`] Else `6esn`[..{999}] End In Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where `3esn`[..{_usn4}][..{@usn5}]) Detach Delete 1.0 Is Null,{`6esn`} Ends With 0e0 Ends With {``}) Union All Merge `8esn`=((`5esn` )) On Match Set (:usn1:_usn4{`4esn`:#usn7 Starts With 1000 Starts With .e1})-[`7esn`]->(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}).``? =$`2esn`[{usn1}..],None(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e12 =~$_usn4).`7esn`! =Reduce(@usn5=True[7][$999],usn1 In 12.e12 In {0} In 9e1|.e12 =~$_usn4)[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])][[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]]] On Create Set _usn4+=0.12[Count(*)..][$#usn7..],None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]).@usn6! =[$`1esn`[$12][Count ( * )],9e1 Ends With $@usn5 Ends With $123456789] Is Not Null Is Not Null Start @usn6=Node:@usn5({usn1}) ,#usn8=Node:`6esn`(#usn8={@usn5})Where {7} Starts With $usn1 Starts With 1.0"), + octest_legacy:ct_string("Return Distinct *,.e0 =~{`8esn`} =~$999 As #usn7,010 In $`5esn` In 0 As `6esn` Order By $usn1 In 0.12 In $`` Descending,Count ( * ) Contains 12 Descending Skip $`` In `7esn` Limit [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]][Shortestpath(((`1esn` :`7esn`)<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})))..] Foreach(@usn5 In 010 In `1esn`| Start #usn7=Relationship:usn2(_usn3='s_str') Where 0x0[{999}..][{_usn4}..]) Union Create `6esn`=Allshortestpaths(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(:`2esn`{`6esn`:@usn6[{0}..]}))),`8esn`=({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]->(usn1 :`8esn`:@usn5{`1esn`:{#usn7} Contains 0.0 Contains $0,`2esn`:.e12[010..$123456789]})<-[_usn3?:@usn6|`` *0x0..{`3esn`}]-(@usn6 {`1esn`:01234567 In $123456789,`1esn`:{`6esn`}[..{`2esn`}]}) Load Csv With Headers From `3esn` Starts With Count(*) As `3esn` With *,$`1esn`[`6esn`..][00..],$1000 =~{1000} =~`5esn` As @usn6 Order By {#usn8}[usn1][1.0] Asc,`7esn`[{usn1}][999] Descending Skip Null In .e0 Where {999} Is Null Union Optional Match Shortestpath(((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0}))),Shortestpath((`6esn` :`8esn`:@usn5)<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})) Using Scan `8esn`:#usn7"), + octest_legacy:ct_string("Delete $123456789 Contains [True Starts With $`2esn` Starts With {@usn6}] Contains {@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]} Load Csv With Headers From 7[$0..][{_usn4}..] As usn1 Start `7esn`=Node:`4esn`(``='s_str') Where 01 =~$`1esn`"), + octest_legacy:ct_string("Load Csv From (#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As `` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Start `4esn`=Node:`1esn`(#usn7=\"d_str\") Where $_usn3 Is Null Is Null Unwind `7esn`[0..$usn2][{usn2}..0.e0] As `1esn` Create `7esn`=((:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})<-[`2esn`?:@usn6|`` *..00]->({_usn3})) Union All Unwind 123.654 Contains $#usn8 Contains .e1 As usn2 Merge _usn4=(({`5esn`:0Xa[0e0..{#usn7}]})<-[?:``]-(`7esn` :`3esn`:`6esn`)) On Match Set `5esn`+=Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..],[`6esn` In Count(*) Ends With $`` Ends With {7} Where @usn5 =~'s_str'|{_usn3} Contains 9e0 Contains $999].usn2 =9e12 Is Null On Match Set `5esn` =True[..010],#usn8+=Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}),`3esn` =@usn6[$_usn4] Load Csv From Shortestpath((((`6esn` :`7esn`)-[_usn4 *0x0..]-(:``$_usn4)<-[#usn8?:``]-({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]})))) Starts With Case 0.0 =~12.e12 =~1.0 When 0.e0 Ends With False Then 00[..$123456789][..$`5esn`] Else _usn3[$usn2..0] End Starts With [True[7][$999],{`8esn`}[0X7][$`3esn`]] As `3esn` Fieldterminator \"d_str\" Union All Merge (({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})) Optional Match Shortestpath((_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})-[? *1000]->(`5esn` {usn2:$#usn7 Starts With 9e0 Starts With 2.12})),`7esn`=(((`8esn` {@usn6:12 Starts With {_usn4} Starts With $#usn8,`3esn`:.e1[@usn5]['s_str']})-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(:`2esn`{`6esn`:@usn6[{0}..]})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:``{`2esn`:Null In .e0,usn1:01234567[..9e1]}))) Using Index usn2:``(#usn8) Using Index usn1:`3esn`(`3esn`) Where Count ( * ) Starts With 010 Starts With 0x0"), + octest_legacy:ct_string("Create usn2=(((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[{#usn7:'s_str'[_usn4..0x0]}]-(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``}))),`7esn`=Allshortestpaths(((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]->(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}))) Remove Reduce(`2esn`={1000},_usn3 In {@usn5}[..#usn7]|00).`6esn`! Create Unique #usn7=((_usn3 :`7esn`)<-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})),@usn5=(({`5esn`:0Xa[0e0..{#usn7}]})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]-(:#usn7)-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})) Union Create Unique `5esn`=Allshortestpaths((usn2 :`5esn`:@usn5)),@usn5=(({_usn4:False[0Xa..$usn1]})) Foreach(`1esn` In True[$`7esn`..{1000}]| Create (((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4}))) Unwind `3esn`[$@usn5..@usn5][9e1..$``] As #usn8) Load Csv With Headers From {`4esn`}[{`1esn`}][{1000}] As `6esn` Fieldterminator \"d_str\" Union Detach Delete 2.12 In $`8esn` In {`7esn`},12.e12[``..usn2][{#usn7}..@usn5],Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where 12e12 Is Not Null)[..Reduce(`1esn`=$`3esn` In 9e12 In ``,`2esn` In {999} Is Not Null|$@usn5[..usn2][..$#usn7])]"), + octest_legacy:ct_string("Load Csv From .e1[..{`7esn`}][..{_usn3}] As usn1 Fieldterminator \"d_str\" Merge usn1=((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]})) Union All Merge (:`5esn`:@usn5{``:0.12[..$`6esn`][..$1000]}) Union Unwind {999} Is Not Null As `6esn` Return Distinct Count(*) Is Not Null,{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] Order By [0.12[..$`6esn`][..$1000],0.12 Starts With 9e12 Starts With $`1esn`,\"d_str\" Contains @usn6 Contains 12.e12] Is Null Ascending,{1000}[{``}][999] Asc Foreach(_usn3 In .e1 Contains $`3esn`| Optional Match Allshortestpaths(((`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999}))),`1esn`=(`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4) Using Scan `4esn`:_usn4)"), + octest_legacy:ct_string("Create `4esn`=Shortestpath(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))),((#usn8 {`8esn`:{7} Contains $123456789})) Merge `4esn`=Shortestpath((`3esn` {@usn6:12 Starts With {_usn4} Starts With $#usn8})) On Match Set `5esn`+=Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..],[`6esn` In Count(*) Ends With $`` Ends With {7} Where @usn5 =~'s_str'|{_usn3} Contains 9e0 Contains $999].usn2 =9e12 Is Null Remove usn1:`4esn`:@usn6,`3esn`:`1esn`,({usn2:`1esn` In 07})<-[usn2? *0xabc..7{usn1:$123456789 Starts With `5esn`}]->(:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})-[`6esn`?:_usn3|`8esn`]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]}).@usn6 Union Unwind #usn7[9e0] As `` Union Return Distinct *,0 Contains $usn2 Contains 12e12 Order By $_usn4 Contains {#usn7} Contains `1esn` Descending,$`1esn`[#usn8][$@usn5] Asc,0e0 Contains `3esn` Contains `7esn` Descending Skip ``(#usn8 =~{999})[Single(_usn3 In {@usn5}[..#usn7])..][Case $123456789 Is Not Null When .e1[0.12] Then {@usn5}[..{12}][..0x0] When @usn5 Is Not Null Is Not Null Then \"d_str\" Ends With False Ends With {@usn6} End..] Create Unique @usn5=(`6esn` :`8esn`:@usn5),usn1=((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)) Create _usn3=(`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})<-[usn2 *07{usn1:07 =~@usn5}]->(_usn4 {`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}),@usn5=({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})"), + octest_legacy:ct_string("Foreach(`8esn` In {@usn5}[12.0..1000][{`3esn`}..{7}]| Optional Match @usn5=((@usn5 :`8esn`:@usn5)<-[:`1esn`|:`3esn` *07{@usn6:$#usn7 Ends With 0.12 Ends With {@usn6}}]-(`6esn` {``:`4esn`[usn1]})<-[@usn6?:`8esn`|:_usn4 *0X7..0Xa{`3esn`:9e1 =~999}]-(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]})),Allshortestpaths(({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]}))) Match Allshortestpaths(({`5esn`:0Xa[0e0..{#usn7}]})<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})),usn2=((`4esn` :`7esn`))"), + octest_legacy:ct_string("Optional Match Shortestpath(({``:.e1 Contains $`3esn`})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})),Shortestpath((:_usn3{0})-[usn2 *12..]->(:``)) Using Join On usn2,`6esn` Using Index usn1:`7esn`(_usn3) Where 1000 Load Csv With Headers From usn1[_usn4][{#usn8}] As `2esn` Fieldterminator \"d_str\" Union Detach Delete $`2esn`[{usn1}..] Foreach(_usn4 In ``(#usn8 =~{999})[Single(_usn3 In {@usn5}[..#usn7])..][Case $123456789 Is Not Null When .e1[0.12] Then {@usn5}[..{12}][..0x0] When @usn5 Is Not Null Is Not Null Then \"d_str\" Ends With False Ends With {@usn6} End..]| Create `2esn`=((#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]})-[? *07{#usn7:`5esn`[..9e0][..01234567]}]-({#usn8:0Xa Contains Count ( * ),`8esn`:Null Is Null Is Null})) Start `6esn`=Node:``(usn1={`4esn`}) ) Union Return *,$`8esn` In $`2esn` In {7} As _usn3 Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,1.e1 =~$`1esn` Ascending,12.e12[..1e1] Asc Skip [$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]][..Case {#usn8}[#usn7..{`2esn`}] When $7 Is Not Null Then $@usn6[$`8esn`..][7..] When $`4esn`[..'s_str'][..`8esn`] Then `7esn` Contains {@usn5} Contains $123456789 Else 12.e12 In $0 In $0 End] Unwind Reduce(@usn5=True =~{`1esn`},_usn4 In 0.0[..{999}][..0.0]|7[$0..][{_usn4}..]) In Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`) In All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) As usn2 Detach Delete Single(`2esn` In {999} Is Not Null Where 123.654 Ends With usn2 Ends With 0) =~{#usn8:Count(*)[010..][#usn7..]} =~Reduce(`8esn`=True Starts With $`2esn` Starts With {@usn6},`5esn` In $`2esn`[12.e12][$@usn5]|999 Ends With .e12 Ends With .e1)"), + octest_legacy:ct_string("Unwind $_usn4[$`4esn`..$12] As _usn3 Foreach(`2esn` In $usn2 In 123.654 In .e0| Remove {@usn6:.e12 Is Null Is Null}.``?,Shortestpath((:_usn3{@usn5:.e1[..\"d_str\"],#usn8:{`1esn`}[`6esn`..12e12]})<-[`7esn`?*..]-(usn1 :`1esn`{#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]})).@usn5? Create `5esn`=Allshortestpaths(((:`7esn`{usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})<-[`8esn`?:`4esn`|:#usn7]->({`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]})-[usn2 *07{usn1:07 =~@usn5}]->({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True}))),((:#usn8{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})-[``?:usn2|#usn7 *0x0..]-(@usn5 :usn1:_usn4)-[:`5esn`]->(:@usn6{`2esn`:$999 In 999}))) Remove Filter(_usn4 In 0.0[..{999}][..0.0] Where True Starts With $`4esn` Starts With 12e12).@usn5!,(usn2 {_usn3:$0 In _usn4})-[_usn4? *07{1000}]-(`` )-[?:`6esn` *07]-(#usn7 :_usn3{`2esn`}).#usn7?,None(`2esn` In {999} Is Not Null Where {``} Ends With .e12 Ends With 0.e0).usn2 Union All Create ({#usn7:#usn8 =~{999}}) Start ``=Node:`6esn`(usn2={`8esn`}) Return Distinct Allshortestpaths((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})<-[`1esn`?]->(:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}}))[Case When 123.654[$`1esn`..Null][1000..{_usn3}] Then ``[$0..][`1esn`..] When 00 Ends With `8esn` Then $usn2 Is Null Is Null Else $999 Is Null End..``(999 Starts With 's_str',1e1[1.e1..][123.654..])][Single(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{usn2:{1000},`6esn`:#usn8[`7esn`..]}],$#usn8[{12}..] As `6esn`,None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False)[[9e1[$_usn4..0xabc],{@usn6}[$`7esn`..][False..],#usn8 In `8esn` In 07]..Any(_usn4 In `2esn` Where $999 Is Null)] Skip Count(*)[.e12]"), + octest_legacy:ct_string("Foreach(#usn8 In Case Count(*) Ends With 123.654 Ends With $12 When $@usn6[$0..usn1][0X0123456789ABCDEF..$999] Then {`6esn`}[..{`2esn`}] End In Reduce(`4esn`={@usn6} In {#usn7} In 12.e12,usn1 In 12.e12 In {0} In 9e1|\"d_str\"[..0.e0]) In [_usn4 In `2esn` Where 9e12 Ends With 123456789|$999 Is Null]| Remove usn2:@usn5,Case 0.0 =~12.e12 =~1.0 When 0.e0 Ends With False Then 00[..$123456789][..$`5esn`] Else _usn3[$usn2..0] End.#usn8!,`8esn`:_usn3) Return *,{`4esn`:$`3esn` Contains 0 Contains 07}[Reduce(_usn4={123456789} =~01234567 =~`3esn`,_usn3 In True[7][$999]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`])][(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6)] As #usn7,_usn4 Is Null Is Null Order By {usn2} =~@usn6 =~{`4esn`} Asc,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Descending Skip `6esn` Starts With 123.654 Limit @usn6(`` Ends With $`4esn` Ends With 0X0123456789ABCDEF)[..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[:#usn8|`2esn` *0x0..{`3esn`:.e12[$7..][{`6esn`}..]}]->({usn1:1000 Is Null Is Null})]"), + octest_legacy:ct_string("Start `6esn`=Relationship:`7esn`({usn1}) Load Csv With Headers From [{`3esn`} Is Null,{@usn5} =~_usn4 =~0.12] =~Extract(_usn4 In `2esn` Where 1.0[{999}][$999]) As `2esn` Fieldterminator 's_str' Union Create Unique usn1=(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(:`2esn`{`2esn`:123456789[0..]})-[`3esn`:`6esn`{`3esn`}]-(@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]}) Union Match ((:`6esn`:`8esn`)),`1esn`=(((#usn8 {#usn7:$1000 Is Not Null Is Not Null})<-[`2esn`?:@usn6|``]->(`1esn` {_usn4:{1000} Ends With {`8esn`}})<-[`3esn`:usn1 *0X7..0Xa]->(:#usn7{#usn7:$`8esn` In $`2esn` In {7}}))) Where {@usn6}[$`7esn`..][False..] Create Unique `3esn`=(((`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[usn1?:`4esn`|:#usn7 *0X7..0Xa]->({_usn4:01234567[..9e1]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}))) Foreach(`5esn` In 0Xa[0e0..{#usn7}]| Optional Match Allshortestpaths(((`5esn` :@usn6)<-[`2esn`?:@usn6|``]->(`1esn` {_usn4:{1000} Ends With {`8esn`}})<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}}))),@usn6=Allshortestpaths((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(@usn5 :`8esn`:@usn5)<-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(:`6esn`:`8esn`{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})))"), + octest_legacy:ct_string("Match ((`3esn` :`4esn`:@usn6{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]})-[`8esn`?:``]->(`` {`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]})),`3esn`=((:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})) Using Scan ``:usn2"), + octest_legacy:ct_string("Match Shortestpath((((:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})))) Using Index `4esn`:usn2(`4esn`) Match (({`8esn`:0[$`6esn`...e1][`1esn`..$`7esn`]})) Union All Create `4esn`=((`7esn` {`4esn`:#usn8 =~{999},`2esn`:9e1 =~`` =~{`7esn`}})-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-({`1esn`:$123456789[..$7][..$`6esn`]})) Foreach(_usn4 In $`` In \"d_str\"| Load Csv From `4esn` Is Not Null Is Not Null As `7esn` Fieldterminator \"d_str\" Return ``[{#usn8}]) Load Csv With Headers From {#usn8} Is Null Is Null As usn2 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Load Csv With Headers From 1.e1[1.0] As `3esn` Unwind `` Ends With {usn1} As `1esn` Union All Detach Delete ``[..$#usn7],{123456789}[..'s_str'][..$@usn6] Merge @usn6=Allshortestpaths(((`6esn` :_usn3{#usn7:$@usn6[01..@usn5][0x0..`4esn`],_usn4:9e12 =~123456789 =~$999})<-[usn1? *01..07]->({`1esn`:$123456789[..$7][..$`6esn`]}))) On Create Set None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]).@usn6! =0X0123456789ABCDEF[$`5esn`..],(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[_usn3?:`1esn`|:`3esn`{`3esn`:$@usn6 Contains $`7esn` Contains 1e1,@usn5:True Starts With $`4esn` Starts With 12e12}]-(`3esn` :_usn3{_usn3:{_usn3} Contains 9e0 Contains $999,`2esn`:{_usn3}[$usn2..]})<-[`3esn`?*{#usn8:$`1esn`[..{_usn3}]}]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}).`8esn`? =$12 Is Not Null On Match Set `7esn`+=Reduce(@usn5=True =~{`1esn`},_usn4 In 0.0[..{999}][..0.0]|7[$0..][{_usn4}..]) In Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`) In All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Merge Allshortestpaths((((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))))"), + octest_legacy:ct_string("Merge ``=(_usn4 :#usn7{`8esn`:$999 Contains {7}}) On Match Set _usn4 =9e0 Starts With .e0 Starts With \"d_str\",`4esn` =Shortestpath((_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]) In Shortestpath(((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}))),@usn6+={999} Starts With {_usn4} Starts With 00 Optional Match @usn6=((`4esn` :usn2:`2esn`)) Using Join On @usn5,`3esn` Using Scan `8esn`:#usn8 Where 9e12 Is Not Null"), + octest_legacy:ct_string("Foreach(`` In _usn4(Distinct 9e12[$`5esn`],$_usn4[$`4esn`..$12]) Starts With [`` In {`1esn`} Starts With @usn6 Where {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]|$`` In 0 In {1000}] Starts With [_usn4 In 0.0[..{999}][..0.0] Where Count(*) In {``}]| Load Csv From 12 In 999 As `8esn` Fieldterminator \"d_str\" Load Csv From None(`` In {`1esn`} Starts With @usn6 Where {12}[00..{@usn6}][1.e1..0])[Filter(_usn3 In True[7][$999] Where 12e12 Ends With `6esn` Ends With {`3esn`})] As _usn3 Fieldterminator \"d_str\") Start #usn8=Node:usn2(_usn3='s_str') Where 9e12 Ends With 123456789"), + octest_legacy:ct_string("With Distinct {`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] As `4esn`,{usn1}[$`8esn`..0.0] As `2esn`,{_usn4} In {`6esn`} In `1esn` Skip $@usn6 Starts With {`1esn`} Starts With 12 Where `4esn`[usn1] Union All Start `8esn`=Node:`4esn`(`1esn`=\"d_str\") ,#usn8=Relationship:usn1({7})Where @usn6[$12] Return Distinct Reduce(usn1=$#usn7 Ends With 0.12 Ends With {@usn6},_usn3 In {`2esn`} Ends With {12} Ends With 7|{0} Is Null) Is Not Null Is Not Null,.e1 Ends With {7} Ends With $usn1 As ``,_usn4[['s_str'[..0X7],False Contains 0.e0 Contains Count(*)]..] Union Load Csv With Headers From $`8esn` Starts With 0xabc Starts With {usn2} As `1esn` Foreach(`5esn` In 9e1['s_str'..0xabc]| Detach Delete $@usn5 In 's_str' In $12,Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]}))) Ends With Case When $``['s_str'..][0x0..] Then 9e12[..0X7] Else $1000[..$999] End,{`7esn`} Ends With `` Ends With {`8esn`} Create `5esn`=Allshortestpaths(((({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2})<-[:_usn4|:usn1 *07]-(#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})))),`8esn`=(({`1esn`:12 Starts With 0x0})<-[`5esn`{`6esn`:12 Is Not Null Is Not Null,`8esn`:`3esn` Is Not Null Is Not Null}]->(_usn3 {@usn5:.e12 =~.e0}))) Load Csv With Headers From {_usn4} Is Null As `` "), + octest_legacy:ct_string("With Distinct Null Ends With 12 Ends With usn2,010 In `1esn`,07 =~$`8esn` =~9e1 As _usn4 Skip Reduce(@usn6=#usn8 Is Not Null,#usn7 In 0Xa[@usn5][{`7esn`}]|{7}[{`4esn`}][`6esn`])[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])] Limit #usn8 In `8esn` In 07 Union All Unwind {#usn7}[{#usn7}..][$`4esn`..] As `5esn` Merge Shortestpath(({usn2:#usn8 =~{_usn3} =~``})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})-[?:`1esn`|:`3esn` *999]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})) Union All Delete Shortestpath(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})))[[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7[`5esn`]|{_usn3}[{0}]]..],{`3esn`}[{`5esn`}] Create Unique #usn8=((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})),Shortestpath(((`1esn` :`4esn`:@usn6)))"), + octest_legacy:ct_string("Return Distinct *,`5esn` Contains {`7esn`} Contains $7 Skip All(`5esn` In $`2esn`[12.e12][$@usn5] Where False[0Xa..$usn1])[Case When {usn2} Then $1000 Starts With $`8esn` Starts With {`5esn`} When {`6esn`}[..{`2esn`}] Then 12.e12[``..usn2][{#usn7}..@usn5] Else False[0Xa..$usn1] End][[`6esn` In Count(*) Ends With $`` Ends With {7} Where 0Xa[..{1000}][..$#usn7]]]"), + octest_legacy:ct_string("Return *,Any(_usn4 In 0.0[..{999}][..0.0] Where Count(*) In {``})[..[$#usn7[`5esn`],.e1[@usn5]['s_str'],Count(*) Starts With $usn1 Starts With {usn2}]][..{usn2:$7 In @usn5 In {@usn5},`7esn`:{#usn7} Contains @usn5 Contains Count ( * )}] Order By $`4esn` In Null Descending,#usn8 =~{999} Asc Skip Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $#usn7[$`4esn`])[(usn1 :`6esn`:`8esn`)<-[_usn4?:`6esn` *0xabc..7$_usn3]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})][Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))] Load Csv From (:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) As `1esn` Fieldterminator 's_str' Start `2esn`=Node:`8esn`(`6esn`='s_str') ,`3esn`=Node:`4esn`({#usn8}) Union All With Distinct _usn3[\"d_str\"],None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12.e12[``..usn2][{#usn7}..@usn5]) Is Null Is Null Order By 0Xa[1000.._usn4] Asc,$0[..{usn2}][..$usn1] Desc Skip {#usn8}[12.0][$@usn6]"), + octest_legacy:ct_string("With #usn8 Is Not Null As #usn8 Order By {`3esn`} Is Null Descending,[{0}[False..@usn5]] Starts With {`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]} Starts With Shortestpath((:_usn3{0})-[usn2 *12..]->(:``)) Ascending,{`2esn`}[Count(*)] Descending Where 0.12 Ends With {1000} Ends With `6esn` Start usn1=Node:_usn4({`8esn`}) ,_usn3=Relationship:usn1('s_str') Union Optional Match @usn6=(`2esn` :`3esn`:`6esn`),`8esn`=(@usn6 :`6esn`:`8esn`)<-[_usn4?:`7esn`{``:{_usn3} Contains $`1esn` Contains 12.0}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}) Using Join On _usn4,_usn4,@usn6 Where 0.12 Starts With 9e12 Starts With $`1esn` Remove (:`3esn`:`6esn`{usn1:{usn2} =~@usn6 =~{`4esn`},usn1:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})<-[_usn3?*]-(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}).`4esn`?,Reduce(usn2=.e1[..\"d_str\"],#usn7 In 123.654 Starts With $``|0Xa[$1000..$123456789]).`8esn`? Union All Remove [_usn3 In {@usn5}[..#usn7] Where True Is Null Is Null|Count(*) Ends With $`` Ends With {7}].`3esn`?,{@usn5:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12],@usn6:Count(*)[.e12..]}.`2esn`?"), + octest_legacy:ct_string("Load Csv From 12.e12[2.12..][0xabc..] As `6esn` Merge usn2=Allshortestpaths((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}))) On Match Set @usn5 =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Merge (({`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}}))"), + octest_legacy:ct_string("Unwind [{999} Starts With {12},9e1 Ends With Count(*) Ends With False,0X0123456789ABCDEF[`5esn`..][$#usn8..]] In Single(`6esn` In 00 Where 0X0123456789ABCDEF Is Null Is Null) As `1esn` Load Csv With Headers From 0e0 As `8esn` Fieldterminator 's_str' Union All Delete {123456789}[{_usn3}][False],0Xa[.._usn3][..$`6esn`],Allshortestpaths((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null}))) In {`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null} Foreach(usn1 In All(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3} Contains 9e0 Contains $999) Is Not Null| Detach Delete ({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01})[(`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(usn2 )],{123456789} =~usn1 =~{usn1}) Merge ((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})) On Create Set [1.e1 =~$usn2,$`5esn`[`1esn`][0X0123456789ABCDEF],$0[`7esn`]].`5esn`? =@usn5[$12..\"d_str\"],_usn3+=$`1esn`[$12][Count ( * )] Union Unwind 7[123456789..$123456789][``..00] As `6esn` Unwind {999} Is Null As `6esn` With {`3esn`}[{12}..][0.12..] As ``,$``[True..] Order By [`2esn` In {999} Is Not Null Where {@usn6}[True..{_usn3}]] =~None(#usn7 In 123.654 Starts With $`` Where {usn2}[$`4esn`]) =~Extract(`1esn` In $12 Is Not Null Where Null Is Null Is Null|$123456789 =~`4esn`) Ascending,{0}[False..@usn5] Desc Limit 12 In 999 Where Count(*)[..``][..#usn8]"), + octest_legacy:ct_string("Start @usn6=Rel:``(usn1={`4esn`}) ,``=Relationship( {usn1}) Union Create Shortestpath(((_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]}))) Merge `4esn`=({`1esn`:$123456789[..$7][..$`6esn`]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]}) On Match Set {usn2:00[..$123456789][..$`5esn`],``:0.12[Count(*)..][$#usn7..]}.#usn7? =(`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] Create Unique (:``) Union All Remove Allshortestpaths((_usn3 {`4esn`:`8esn` Contains 1e1,#usn7:{`2esn`}[..{@usn6}][..1.e1]})-[#usn7?:usn1 *01..07{`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}]->({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]})).`5esn`,`7esn`:@usn5 Match (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` )) Using Join On `8esn`,_usn4 Using Index `7esn`:`1esn`(`2esn`)"), + octest_legacy:ct_string("Create Unique #usn8=Shortestpath(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]}))) Union All Create ``=((`` {``:$0[..{usn2}][..$usn1]})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})) Return *,.e1 Contains $`3esn` As _usn3 Skip Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3]..`1esn`(Distinct $@usn5[`6esn`..],9e12[..0X7])][Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}))..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]})] Limit #usn7 Starts With 1000 Starts With .e1 Create Unique @usn6=(((`2esn` {_usn4:`4esn`[usn1]})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})))"), + octest_legacy:ct_string("Load Csv From {#usn8}[usn2][{0}] As `2esn` Fieldterminator \"d_str\" Merge ((usn1 :usn1:_usn4)-[`6esn`?:@usn5|:`7esn`]->(`2esn` :@usn5{@usn5:{`2esn`} Is Not Null Is Not Null})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(:`2esn`{`2esn`:123456789[0..]})) On Match Set `5esn`+=Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 9e0[#usn8])[{`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]}..None(`` In {`1esn`} Starts With @usn6 Where $usn1[@usn6][#usn7])][Extract(_usn4 In `2esn` Where $999 Is Null|00[07..])..Shortestpath(({`3esn`:0.e0[{999}][{`1esn`}],`1esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[:usn2|#usn7 *0X7..0Xa]->(#usn7 :@usn5))],`2esn`+=0xabc[$999..][{#usn7}..],`5esn`+=123.654 Contains $#usn8 Contains .e1 On Create Set `8esn` =usn2(0.0 Is Not Null Is Not Null,{123456789} Is Not Null)[None(`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12])..[_usn4 In `2esn` Where False Ends With $``|9e0[#usn8]]][(`3esn` :`3esn`:`6esn`)-[]->(`7esn` :#usn8)..[0X0123456789ABCDEF Contains $`1esn` Contains 1000,0e0[$#usn8...e12],.e12 Is Null Is Null]],@usn6+=$@usn5[..usn2][..$#usn7] Union Merge ((`4esn` :usn2:`2esn`)) Start `1esn`=Rel:@usn5({usn1}) Merge (({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True}))"), + octest_legacy:ct_string("Using Periodic Commit 0X0123456789ABCDEF Load Csv With Headers From {`5esn`} =~Reduce(`5esn`=00,`2esn` In {999} Is Not Null|{`4esn`}[..07][..$`6esn`]) =~_usn4(Distinct #usn8 =~{999},``[00..$7]) As `` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Start `3esn`=Rel:#usn8(\"d_str\") Load Csv With Headers From $`4esn` Starts With 0e0 As `6esn` Fieldterminator 's_str' Optional Match #usn8=Allshortestpaths((`5esn` :_usn4)<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]})),Shortestpath((((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[`6esn`?]-(`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})))) Where #usn8 =~{_usn3} =~``"), + octest_legacy:ct_string("Create Unique `2esn`=((_usn3 :`5esn`:@usn5)<-[`7esn`? *0xabc..7]->(:`6esn`:`8esn`{`3esn`:$`6esn`[{`3esn`}..12],_usn3:0[{@usn5}..][7..]})),@usn6=(((:_usn3{`8esn`:9e1 =~999})<-[@usn6?]->(`6esn` :_usn3)<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`))) Load Csv From {#usn7} Ends With 12e12 Ends With {123456789} As `7esn` Start `8esn`=Node:#usn7(\"d_str\") ,#usn7=Node( {usn2})Where 0x0 Ends With {``}"), + octest_legacy:ct_string("Using Periodic Commit 0Xa Load Csv From .e1 =~$`5esn` As _usn4 "), + octest_legacy:ct_string("Foreach(`2esn` In @usn5 Is Null| Return 9e12 Is Not Null,(`8esn` :`8esn`:@usn5)<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]->(#usn7 :`2esn`)-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Is Null Is Null Order By Count ( * )[00] Ascending Skip True[..010] Limit 0e0 Starts With $@usn6 Starts With $`6esn`) Detach Delete All(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) In Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4]) In [``[00..$7],.e1 Contains $`3esn`,{``} Starts With 123456789 Starts With usn2],[`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7}|usn2[`7esn`..{`3esn`}][$7..{#usn7}]][..[`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]|9e12[..0X7]]][..[`2esn` Ends With $`4esn` Ends With {#usn7},'s_str'[..0X7],{#usn8} =~{999} =~{#usn7}]] Create #usn8=(`8esn` :`5esn`:@usn5)-[`5esn`?:usn2|#usn7]->(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )}),`1esn`=Allshortestpaths((_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}))"), + octest_legacy:ct_string("Create Shortestpath((:`2esn`{`4esn`:`3esn` Is Not Null Is Not Null})<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(usn1 {`4esn`:1.0[{999}][$999],``:9e1[9e1...e0]})) Create ((usn1 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})) Load Csv With Headers From Count(*)[.e12..] As _usn4 Fieldterminator \"d_str\" Union All Detach Delete $`3esn`[{``}..] Start `6esn`=Node:@usn6(`3esn`='s_str') Where True Is Not Null Union Unwind $#usn7 =~9e1 =~$_usn4 As _usn4"), + octest_legacy:ct_string("Unwind 9e0 Contains @usn6 Contains {#usn7} As `` Create #usn8=(`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})<-[? *0X7..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Load Csv With Headers From {999} Starts With {_usn4} Starts With 00 As `8esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Delete `2esn` Starts With `` Starts With 1e1,$@usn6[01..@usn5][0x0..`4esn`] Create Unique #usn7=Allshortestpaths(((`5esn` :`2esn`{#usn8:True[$`7esn`..{1000}]})<-[usn1?:`6esn` *12..{`6esn`:999 Starts With $123456789 Starts With {``}}]->({_usn4}))),((:#usn7{#usn7:$`8esn` In $`2esn` In {7}}))"), + octest_legacy:ct_string("Remove [#usn7 In 123.654 Starts With $`` Where #usn8[`7esn`..]|{_usn3}[{0}]].usn2,``(True[True..],$_usn4).`5esn`? Create Unique (`4esn` :#usn7)<-[@usn6?:usn2|#usn7]->(`1esn` )-[`6esn`?*..{`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}]->({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6}),_usn4=Allshortestpaths((_usn3 {`4esn`:`8esn` Contains 1e1,#usn7:{`2esn`}[..{@usn6}][..1.e1]})-[#usn7?:usn1 *01..07{`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}]->({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]}))"), + octest_legacy:ct_string("Using Periodic Commit Load Csv From Single(_usn3 In {@usn5}[..#usn7] Where {@usn6} In {#usn7} In 12.e12)[(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[*{`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]}]->(:`2esn`{#usn8:`6esn` Ends With 2.12 Ends With @usn6,`1esn`:{`8esn`}[True..][.e1..]})<-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` :`8esn`:@usn5)] As @usn6 Fieldterminator 's_str' Delete [#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 In 01234567 In .e1|{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]] =~Extract(`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]|$usn1 In 0.12 In $``) =~Single(_usn3 In {@usn5}[..#usn7] Where {`4esn`}[..07][..$`6esn`])"), + octest_legacy:ct_string("Foreach(`` In (`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[{_usn4:{1000} Ends With {`8esn`}}]-(@usn5 :`7esn`{_usn3:{``}[_usn4..$`1esn`]})<-[`2esn`?*]->({#usn7:1e1[1.e1..][123.654..],`3esn`:True Starts With $`4esn` Starts With 12e12})[Shortestpath((((:`1esn`{`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[`6esn`?:_usn4|:usn1 *07{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}]-(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )})<-[`7esn`? *0X0123456789ABCDEF{@usn6:12 Starts With {_usn4} Starts With $#usn8}]-(`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}}))))..][(`1esn` :@usn6)<-[@usn5:_usn4|:usn1*]->(:@usn5)<-[`2esn`:#usn8|`2esn` *0xabc..7]-(usn1 :#usn8)..]| Remove {usn2:7 In 1.e1 In $usn1}.`4esn`!,All(_usn4 In 0.0[..{999}][..0.0] Where #usn8 Is Null).`8esn`? Create `5esn`=Shortestpath(((_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->(`` {``:0x0 =~123.654 =~{999}})-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->(:`3esn`:`6esn`{@usn5:.e12 =~.e0}))),#usn8=Allshortestpaths((_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})-[`1esn`?:_usn3|`8esn` *0xabc..7]->(@usn5 :`6esn`:`8esn`))) Create `6esn`=((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[:`2esn` *07]-(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]->({``:.e1 Contains $`3esn`}))"), + octest_legacy:ct_string("With *,_usn4($123456789 =~`4esn`)[None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where Count(*) In {``})..][Any(`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7})..] As `3esn`,{`7esn`}[..9e12][..0.0] Limit Case 0xabc[$@usn5] When 9e1[$_usn4..0xabc] Then $12[{7}..0X0123456789ABCDEF] When 01 =~$`1esn` Then {1000}[\"d_str\"..{@usn5}][$1000..$#usn8] Else 1.e1[_usn4..][07..] End Is Not Null Where 123.654[1e1..][{#usn8}..] Start ``=Relationship( {``}) Where {`1esn`} =~{_usn4} Union Match (((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),_usn4=Allshortestpaths((usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})) Using Scan `2esn`:#usn7 Where {#usn8} =~{999} =~{#usn7}"), + octest_legacy:ct_string("Optional Match (`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})-[``:usn2|#usn7 *..0Xa]->(:`4esn`:@usn6{usn1:$7[{`1esn`}],#usn8:\"d_str\"[..0.e0]}),`3esn`=Allshortestpaths((:`3esn`:`6esn`{_usn4:{usn1} In Count ( * )})) Using Index @usn6:#usn8(_usn4) Using Join On `6esn`,usn2,`5esn` Create Unique `5esn`=Shortestpath(((#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]}))),`8esn`=Allshortestpaths(((#usn8 {`8esn`:{7} Contains $123456789})))"), + octest_legacy:ct_string("Start ``=Rel:`2esn`(`5esn`='s_str') Create `2esn`=(:_usn3{#usn7:#usn8 =~{999}}),Shortestpath(((:#usn8{``:12.e12[$`4esn`..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]}))) Detach Delete Count ( * ) =~{`5esn`} =~{_usn4},{`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}[Case When 1.e1[0X0123456789ABCDEF..] Then `6esn`[..{999}] When {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`] Then $#usn7 Ends With 0.12 Ends With {@usn6} End..Filter(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null)],None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12.e12[``..usn2][{#usn7}..@usn5]) In usn1({`1esn`} Starts With @usn6) Union Start `2esn`=Node:`8esn`(`6esn`='s_str') ,`4esn`=Node:`1esn`(#usn7=\"d_str\") Create Unique ((@usn6 {@usn5:0X0123456789ABCDEF[$999..][@usn5..]})<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})),#usn7=(`3esn` :`8esn`:@usn5{@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]}) Union All Start _usn3=Node:``({`1esn`}) ,`3esn`=Rel:`8esn`(@usn6='s_str')"), + octest_legacy:ct_string("Create Unique #usn7=(`4esn` :usn2:`2esn`) Remove [@usn5 In Null =~12e12 Where _usn4 In $usn1].`6esn`?,Reduce(`4esn`=`3esn`[..{_usn4}][..{@usn5}],`2esn` In {999} Is Not Null|123456789 Starts With {@usn6} Starts With $12).usn2,Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3).`3esn` Start `7esn`=Node:usn1(@usn5={12}) ,usn1=Node:_usn3(_usn3='s_str')Where _usn4 In $usn1 Union All With 123456789 Starts With {@usn6} Starts With $12,(_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Is Null As `1esn` Order By $`2esn`[{usn2}] Descending,1.e1 In 0Xa In $#usn8 Desc,{@usn6} Starts With @usn5 Starts With @usn6 Desc Skip [_usn4 In 0.0[..{999}][..0.0] Where ``[..0X0123456789ABCDEF]][Reduce(``=`6esn` Is Null Is Null,`2esn` In {999} Is Not Null|{12}[999][{_usn3}])..[_usn4 In `2esn` Where 0X0123456789ABCDEF[$`5esn`..]]] Limit `7esn` Contains `5esn` Contains 0X7 Where 0.12 Starts With 9e12 Starts With $`1esn` Remove {`8esn`:False Ends With $``}.`3esn`,Case {usn1}[$7..0x0] When {``}[010] Then True =~_usn3 =~123456789 When @usn6[$12] Then {`4esn`} Starts With $7 Starts With $`` End.`7esn`! Return Distinct *,[False Starts With 010] Contains Extract(_usn3 In True[7][$999] Where 0e0[$#usn8...e12]|12 Is Not Null Is Not Null) Contains [`1esn` In $12 Is Not Null] As `2esn`,Filter(`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0}) =~({`1esn`:{123456789}[12..][$12..]})-[?:`1esn`|:`3esn`{@usn5:{`6esn`} Ends With 0e0 Ends With {``},@usn5:{`1esn`} Starts With `4esn` Starts With {0}}]->(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[`5esn`?:`7esn`]->({@usn5:Count ( * ) Is Null}) Order By Reduce(@usn5=$`8esn`[..$999][..0],`` In {`1esn`} Starts With @usn6|{@usn6} Contains 123.654 Contains 01) Contains [`1esn` In `3esn`[07..] Where {0} =~12.0] Contains (:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[`3esn`:_usn3|`8esn`]->(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null}) Descending,.e1[..\"d_str\"] Asc Skip $`6esn`[{`3esn`}..12]"), + octest_legacy:ct_string("Create (@usn5 :`8esn`:@usn5)<-[?:`1esn`|:`3esn`*]->({_usn4:{usn1} =~123.654 =~\"d_str\"}) Union With Distinct `2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] Limit `` =~`6esn` =~usn1 Where @usn5[12.0][{1000}] Optional Match (:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]}),@usn5=(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})<-[?:`6esn` *01..07]->(:usn2:`2esn`{`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})-[? *1000]->(`5esn` {usn2:$#usn7 Starts With 9e0 Starts With 2.12}) Using Index `8esn`:``(@usn5) Using Scan #usn7:_usn3 Unwind 1e1 Is Not Null Is Not Null As `6esn` Union Foreach(usn2 In {`7esn`}[..9e12][..0.0]| Load Csv From $@usn6[$0..usn1][0X0123456789ABCDEF..$999] As `1esn` Delete {@usn5}[..@usn6],0e0 Contains `3esn` Contains `7esn`,1.e1 Ends With 0 Ends With $usn1) Return *,@usn6[Count ( * )][True]"), + octest_legacy:ct_string("Return Distinct `7esn` =~.e12 =~$#usn7 As `3esn`,$`8esn` Is Null Is Null As `6esn` Order By {`8esn`}[0X7][$`3esn`] Descending Skip Any(`2esn` In {999} Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e12 Is Not Null]..][$`6esn`..] Return *,{usn1} =~123.654 =~\"d_str\" Order By {`4esn`} In _usn4 Desc Limit {0}[..{`7esn`}] Union Load Csv With Headers From {7}[$_usn4..Count ( * )] As `7esn` Fieldterminator \"d_str\" Start `3esn`=Relationship:#usn8(_usn3={#usn7}) ,`3esn`=Node:``({`1esn`})"), + octest_legacy:ct_string("Remove Shortestpath(((@usn6 :`4esn`:@usn6{#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[:#usn7|`2esn` *0x0..]-({`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}))).#usn7!,Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where _usn4 Is Null Is Null).``! Merge `4esn`=({`7esn`:{@usn5}[..#usn7],@usn6:{_usn3}[`3esn`..$#usn8]})-[@usn5{#usn7:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,#usn7:.e12[$#usn8..@usn6]}]->(`5esn` :@usn5) On Create Set [1.e1 =~$usn2,$`5esn`[`1esn`][0X0123456789ABCDEF],$0[`7esn`]].`5esn`? =@usn5[$12..\"d_str\"],_usn3+=$`1esn`[$12][Count ( * )] On Create Set {#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]}.usn1 =(#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..],Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where `7esn` Starts With 0X7 Starts With $`7esn`).`4esn` =$@usn6[..123.654],_usn4:`4esn`:@usn6 Union All With *,{_usn3}[$usn2..] As `6esn` Limit Count ( * )[{12}..{@usn5}][{#usn8}..Null] Where 0X0123456789ABCDEF[9e12] With Distinct [`1esn` In `3esn`[07..] Where @usn6[{0}..]|0.e0[12.e12]] Contains {usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF} As @usn6,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $`5esn`[$#usn7..][0xabc..]) Contains All(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}]) As #usn8 Order By {#usn8} Contains 1000 Contains $`4esn` Ascending,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Ascending Union All Create `5esn`=((#usn7 :_usn3{`2esn`})<-[@usn6?:`1esn`|:`3esn` *..0Xa{`1esn`:12 Starts With 0x0}]->(#usn7 :_usn3{`2esn`})<-[?:`1esn`|:`3esn`{#usn8:$0 Is Not Null,``:True Is Null Is Null}]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0}))"), + octest_legacy:ct_string("Merge `4esn`=(((#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]})<-[`2esn`?:@usn6|`` *..00]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[`8esn`?{`6esn`:$#usn7 =~{12} =~False}]->(`3esn` :_usn3{_usn3:{_usn3} Contains 9e0 Contains $999,`2esn`:{_usn3}[$usn2..]}))) Create Shortestpath((((usn2 )<-[ *0xabc..7]->(:`4esn`:@usn6)<-[usn2?:usn2|#usn7]->(`3esn` :_usn4)))) Detach Delete None(usn1 In 12.e12 In {0} In 9e1 Where Count(*) In 0e0 In 9e1)[Case 0Xa[.._usn3][..$`6esn`] When {`4esn`}[$123456789..] Then {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] When {usn2}[$`4esn`] Then $1000 Starts With $`8esn` Starts With {`5esn`} Else @usn6[$_usn4] End..][@usn5($`7esn` Is Null Is Null)..]"), + octest_legacy:ct_string("Return *,Case $1000 =~{1000} =~`5esn` When 9e1[9e1...e0] Then 00 Starts With $`6esn` When 123.654[1e1..][{#usn8}..] Then $`3esn`[{``}..] End In [`6esn` In Count(*) Ends With $`` Ends With {7} Where 0Xa[..{1000}][..$#usn7]] As `5esn` Limit {#usn8}[2.12] Union With Distinct *,$`8esn` In $`2esn` In {7} As _usn3 Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,1.e1 =~$`1esn` Ascending,12.e12[..1e1] Asc Skip [$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]][..Case {#usn8}[#usn7..{`2esn`}] When $7 Is Not Null Then $@usn6[$`8esn`..][7..] When $`4esn`[..'s_str'][..`8esn`] Then `7esn` Contains {@usn5} Contains $123456789 Else 12.e12 In $0 In $0 End] Where {`5esn`} Contains 's_str' Contains 9e1 Detach Delete #usn8 Is Null,1e1 Starts With 9e1 Starts With {`4esn`} Return Distinct *,$_usn4[$`4esn`..$12],{`5esn`} Starts With 12.0 Order By @usn5 =~`` Asc"), + octest_legacy:ct_string("Merge ({usn1:0[{@usn5}..][7..],`7esn`:{``}[_usn4..$`1esn`]}) Unwind $``[.e12..] As `3esn`"), + octest_legacy:ct_string("Detach Delete 0.12 Ends With {1000} Ends With `6esn`,$@usn5[usn2..][$0..] Load Csv With Headers From $0 Is Not Null As #usn8 Fieldterminator \"d_str\" Union All Foreach(@usn6 In .e1 =~$`5esn`| Unwind $`2esn`[{usn1}..] As `3esn`) Return Distinct 0X0123456789ABCDEF[$999..][@usn5..] Union Create _usn3=(@usn6 :@usn6),usn2=((_usn4 :#usn7{`8esn`:$999 Contains {7}})<-[`4esn`:`4esn`|:#usn7{`2esn`:{`4esn`}[$_usn4..][9e0..]}]-(`6esn` )) Create Unique `8esn`=((:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *..00{#usn7:`4esn`[usn1]}]-(:@usn5{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12})),_usn4=(((#usn8 )-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]})))"), + octest_legacy:ct_string("Load Csv From Reduce(@usn5=True[7][$999],usn1 In 12.e12 In {0} In 9e1|.e12 =~$_usn4)[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])][[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]]] As `2esn` Fieldterminator \"d_str\" Foreach(usn1 In #usn7[$`5esn`..]| Unwind {`7esn`} Ends With `` Ends With {`8esn`} As _usn3 Optional Match `8esn`=(@usn6 :`6esn`:`8esn`)<-[_usn4?:`7esn`{``:{_usn3} Contains $`1esn` Contains 12.0}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}),Shortestpath((`6esn` {``:`4esn`[usn1]})<-[`7esn`?{_usn4:9e1 Ends With Count(*) Ends With False,#usn7:$_usn4 Ends With 0.e0 Ends With .e0}]->({`1esn`:$123456789[..$7][..$`6esn`]})-[_usn3:#usn7|`2esn`]-(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})) Using Join On `7esn` Using Scan _usn4:#usn8 Where $12 Contains 0Xa) Foreach(`4esn` In Count ( * )[$12..]| Create Shortestpath((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))) Union Detach Delete {_usn3}[$usn2..] Union All Merge (#usn7 :_usn3{`2esn`})-[`8esn`?:`2esn`{`2esn`:{#usn8} =~{999} =~{#usn7}}]->(@usn6 :`7esn`) Optional Match `8esn`=Allshortestpaths(((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(`1esn` :@usn6))),(:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}) Using Index usn1:`3esn`(`3esn`) Using Scan usn1:`3esn` Where $`6esn`[`8esn`][0.0]"), + octest_legacy:ct_string("Delete $`1esn` Starts With 9e1 Starts With 1.e1,$@usn6[$0..usn1][0X0123456789ABCDEF..$999],[`6esn` In Count(*) Ends With $`` Ends With {7} Where {`3esn`} Ends With `1esn` Ends With $@usn6][None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where {`4esn`}[..{`4esn`}])..] With Distinct *,{`8esn`}[..$`6esn`][..123.654],None(@usn5 In Null =~12e12 Where #usn8[`7esn`..])[{123456789}..][All(`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0})..] Order By $0 Ends With False Ends With $_usn4 Descending,[0.12[..$`6esn`][..$1000],0.12 Starts With 9e12 Starts With $`1esn`,\"d_str\" Contains @usn6 Contains 12.e12] Is Null Desc Limit `1esn`[`3esn`..True] Where {12} Contains `7esn` Contains $_usn3 Union All Optional Match `4esn`=Allshortestpaths((((@usn6 {_usn3:{`8esn`}[0X7][$`3esn`],_usn4:$_usn4[9e0..]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-({`6esn`:1000,#usn8:$`5esn`[$#usn7..][0xabc..]})-[?:`8esn`|:_usn4 *12..]->(@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})))),Allshortestpaths(((`4esn` :`1esn`)-[`6esn`?*..{`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}]->({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6}))) Using Scan _usn3:`` Using Index `8esn`:``(@usn5) Optional Match `8esn`=(({#usn7:#usn8 =~{999}})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})),((@usn5 )<-[#usn8? *..01234567]-($_usn3)) Using Join On ``,`7esn`,#usn7 Where True[$`7esn`..{1000}] Union Create #usn7=Allshortestpaths(((:`5esn`:@usn5))),@usn5=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Create _usn4=Shortestpath((`6esn` :`2esn`{`7esn`:#usn8 =~{999}})),`7esn`=(({@usn6:$`` Starts With 12 Starts With $usn2}))"), + octest_legacy:ct_string("Create (`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})-[``:usn2|#usn7 *..0Xa]->(:`4esn`:@usn6{usn1:$7[{`1esn`}],#usn8:\"d_str\"[..0.e0]}),`3esn`=Allshortestpaths((:`3esn`:`6esn`{_usn4:{usn1} In Count ( * )})) Start `2esn`=Rel:#usn7(`6esn`=\"d_str\") ,`3esn`=Node:``(_usn3={0})Where #usn8 =~{999} Start @usn5=Relationship(999) ,``=Relationship( {``}) Union Unwind {@usn6} In {#usn7} In 12.e12 As `8esn` Union All Optional Match Allshortestpaths((`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})),Shortestpath((:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})) Using Join On _usn4,@usn6 Remove All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0.12[..$`6esn`][..$1000]).@usn6?,{usn2:$`5esn`[`4esn`][_usn3]}.@usn6?"), + octest_legacy:ct_string("Using Periodic Commit 12 Load Csv With Headers From None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] As #usn8 Fieldterminator 's_str'"), + octest_legacy:ct_string("Foreach(@usn6 In {999} Ends With 123456789 Ends With {@usn5}| Return Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))) =~Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) As _usn4,7[..$`1esn`][..00],{12} Starts With #usn8 Starts With 0e0 Order By $0 Starts With `2esn` Desc,0.12 In 0X7 Descending,12.e12 In $0 In $0 Desc Limit `6esn` In Null) Remove All(`1esn` In $12 Is Not Null Where {usn1} In Count ( * )).usn1,Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where _usn3[\"d_str\"]|$_usn4 Is Not Null Is Not Null).`1esn`? Foreach(`6esn` In _usn3 =~123.654| Create Unique ((`5esn` :_usn3)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})),``=(_usn4 :#usn7{`8esn`:$999 Contains {7}}) Remove (usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[`7esn`? *0X0123456789ABCDEF{@usn6:12 Starts With {_usn4} Starts With $#usn8}]-(:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}})<-[``{`3esn`:{`3esn`}[{`5esn`}]}]-({@usn5:``[{123456789}..]}).`5esn`) Union Optional Match ((@usn6 :#usn7{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})<-[?:#usn7|`2esn` *0x0..]->({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})),`5esn`=Allshortestpaths(((`` {``:$0[..{usn2}][..$usn1]}))) Where {@usn5}[12.0..1000][{`3esn`}..{7}] Foreach(`` In Reduce(usn2={`6esn`}[..{`2esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|1e1[..01]) Is Not Null Is Not Null| Load Csv From 0.0 Is Not Null As `5esn` Remove {_usn4:{1000} Ends With {`8esn`}}.usn1) With *,9e12[{123456789}..][$`2esn`..] As `2esn` Skip 9e12 Is Null Is Null Where 00 Union All Start `7esn`=Rel:`4esn`(#usn7={@usn5}) ,_usn3=Relationship:usn1('s_str')"), + octest_legacy:ct_string("With usn2[`7esn`..{`3esn`}][$7..{#usn7}],Case When $`6esn` Starts With 12.e12 Starts With $#usn7 Then #usn8[`7esn`..] When {`4esn`}[$123456789..] Then {_usn3} Contains 9e0 Contains $999 End As @usn6 Order By 1.e1 Ends With 0 Ends With $usn1 Descending,[_usn4 In `2esn` Where 0X0123456789ABCDEF[$`5esn`..]] Ends With {``:{usn1} Ends With {`6esn`} Ends With 123456789,`5esn`:{999} Is Null} Ascending Limit $`1esn`[`4esn`..][{``}..] Where {12}[00..{@usn6}][1.e1..0] Union All Foreach(`7esn` In True Is Not Null Is Not Null| Detach Delete `2esn`[Null]) Remove #usn7._usn4!,_usn3($``['s_str'..][0x0..]).`6esn`"), + octest_legacy:ct_string("Create Unique `5esn`=((`3esn` :`6esn`:`8esn`{`8esn`:{``} Is Null Is Null,`3esn`:123456789 Is Not Null Is Not Null})<-[_usn4?:usn2|#usn7{_usn4:{`1esn`} In 12.e12 In 9e1}]-(:usn2:`2esn`)),((#usn8 :usn1:_usn4)<-[usn1:usn1{`3esn`:\"d_str\" Ends With False Ends With {@usn6},`5esn`:`4esn` Contains #usn8 Contains 7}]->(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(`2esn` :#usn8{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})) Remove {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]}.@usn6 Remove Extract(#usn7 In 0Xa[@usn5][{`7esn`}] Where 's_str'[_usn4..0x0]).`5esn`?,Reduce(`4esn`=`3esn`[..{_usn4}][..{@usn5}],`2esn` In {999} Is Not Null|123456789 Starts With {@usn6} Starts With $12).usn1? Union Foreach(#usn8 In Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null)[[{_usn3}[$usn2..],$`3esn`[..$`2esn`][..123.654],12.e12[`7esn`]]..]| Remove Filter(`1esn` In 0.e0 =~`1esn` =~`6esn` Where True[True..]).@usn6,Shortestpath(((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` ))).`2esn`,[7[010][00],$7[$`3esn`],#usn7 =~{`4esn`} =~123456789].#usn8 Create Unique `2esn`=Allshortestpaths((({`6esn`:1.e1[12e12..{`6esn`}]})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}))),usn2=Shortestpath(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`)))) Union All Remove (`1esn` :usn2:`2esn`{`1esn`:{_usn3}[$usn2..],_usn3:$@usn6 Starts With $@usn5})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})._usn3?"), + octest_legacy:ct_string("Create Shortestpath((:`2esn`{`4esn`:`3esn` Is Not Null Is Not Null})<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(usn1 {`4esn`:1.0[{999}][$999],``:9e1[9e1...e0]})),#usn7=Allshortestpaths((`6esn` {``:`4esn`[usn1]})<-[`7esn`?{_usn4:9e1 Ends With Count(*) Ends With False,#usn7:$_usn4 Ends With 0.e0 Ends With .e0}]->({`1esn`:$123456789[..$7][..$`6esn`]})-[_usn3:#usn7|`2esn`]-(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})) Union All Delete Shortestpath(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})))[[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7[`5esn`]|{_usn3}[{0}]]..],Reduce(usn1=$usn1[..'s_str'][..$#usn8],`8esn` In $12[{7}..0X0123456789ABCDEF]|.e1[0.12])[[@usn5 In Null =~12e12 Where {_usn4} In {1000}|12.e12[``..usn2][{#usn7}..@usn5]]..All(_usn3 In {@usn5}[..#usn7] Where $`2esn` Starts With {`8esn`} Starts With {usn1})],Count ( * )[\"d_str\"][_usn3] Start @usn5=Node:``(#usn7=\"d_str\") Where $`6esn` Starts With 12.e12 Starts With $#usn7 Create Unique usn2=((`4esn` :`4esn`:@usn6)<-[{``:\"d_str\"[{`8esn`}..]}]-({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})),((usn1 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}))"), + octest_legacy:ct_string("With Distinct $usn2[..9e0],{12}[010..{1000}][1e1...e1] Where 12e12 Is Not Null Is Not Null Merge @usn6=Shortestpath((:``{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})-[?:`4esn`|:#usn7]->(`1esn` :@usn6)<-[`1esn`?]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})) On Match Set `5esn` =Filter(`5esn` In $`2esn`[12.e12][$@usn5] Where 's_str'[.._usn4][..``]),{usn2:{`6esn`} Ends With 0e0 Ends With {``}}.``? =`7esn`[{7}..@usn5],`3esn`+={#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null Create (`3esn` :`1esn`)-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]}),`1esn`=Allshortestpaths((usn2 :`5esn`:@usn5)) Union Create Allshortestpaths((`4esn` :usn2:`2esn`)<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})-[{#usn7:'s_str'[_usn4..0x0]}]-(`8esn` {@usn6:12 Starts With {_usn4} Starts With $#usn8,`3esn`:.e1[@usn5]['s_str']})) Optional Match Allshortestpaths(((`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999}))) Using Scan `4esn`:`` Using Join On `8esn`,#usn8 Unwind 1.e1 Ends With 0 Ends With $usn1 As `7esn` Union All Remove Reduce(usn2={`4esn`} In _usn4,usn1 In 12.e12 In {0} In 9e1|7 In 1.e1 In $usn1).@usn6? Remove {_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}.#usn7!,Extract(_usn3 In {@usn5}[..#usn7]).`4esn`?"), + octest_legacy:ct_string("Merge Allshortestpaths(({`4esn`:#usn8 Is Null})-[:usn1{_usn4:0[{usn2}..][usn1..],`3esn`:12 Starts With 7 Starts With $`5esn`}]-(`7esn` :`3esn`:`6esn`)<-[`6esn`?:#usn8|`2esn`*..{`5esn`:@usn5 =~'s_str'}]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})) On Match Set `4esn` =Filter(_usn4 In 0.0[..{999}][..0.0] Where #usn7 =~{`4esn`} =~123456789) Is Not Null Is Not Null,_usn3 =`1esn`(Distinct $usn1 Starts With {_usn3},{#usn8}[$#usn7..]) In Shortestpath((({_usn4:0.12 Starts With 9e12 Starts With $`1esn`}))) In All(`1esn` In $12 Is Not Null Where 12.e12[{@usn5}..][9e1..]) On Create Set #usn8 =$`1esn` =~$`1esn` =~{`6esn`},`2esn` =@usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2),`6esn` =`6esn` In Null"), + octest_legacy:ct_string("Merge Allshortestpaths((((usn2 :_usn3)<-[#usn7{#usn8:{`1esn`} Is Not Null}]->(`8esn` {`3esn`:'s_str'[..0X7]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6)))) On Match Set usn1 =1.0 Is Null Is Null On Match Set `6esn`+={`8esn`}[Null..][{`8esn`}..],_usn4+={#usn8} =~{999} =~{#usn7} Match `6esn`=Allshortestpaths(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(:`2esn`{`6esn`:@usn6[{0}..]}))),`8esn`=({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]->(usn1 :`8esn`:@usn5{`1esn`:{#usn7} Contains 0.0 Contains $0,`2esn`:.e12[010..$123456789]})<-[_usn3?:@usn6|`` *0x0..{`3esn`}]-(@usn6 {`1esn`:01234567 In $123456789,`1esn`:{`6esn`}[..{`2esn`}]}) Using Index usn2:``(#usn8) Using Scan @usn6:`5esn`"), + octest_legacy:ct_string("Remove (`3esn` :_usn3{_usn3:{_usn3} Contains 9e0 Contains $999,`2esn`:{_usn3}[$usn2..]})<-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(`` :`7esn`).usn2?,[0X0123456789ABCDEF[$`5esn`..],.e1 Contains $`3esn`,_usn4 In $usn1].`8esn`? Union All Load Csv From usn2 =~0X7 =~{#usn7} As `` Foreach(usn1 In {usn2}[$`4esn`]| Start `3esn`=Relationship:#usn8(_usn3={#usn7}) Where {999} Is Null Create (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` ))) Union All Unwind $`3esn`[..$`2esn`][..123.654] As `1esn` Foreach(#usn8 In 12 In 0e0| Unwind {`4esn`}[{`1esn`}][{1000}] As #usn7 Delete $`7esn` In 12) Unwind False Starts With 010 As @usn5"), + octest_legacy:ct_string("With $`7esn` Contains {`1esn`} Contains 9e12 As usn1,Reduce(usn2=00[Count(*)...e0][$#usn7..0X0123456789ABCDEF],usn1 In 12.e12 In {0} In 9e1|{`7esn`}[0X7..][0x0..]) Starts With [_usn4 In `2esn`] Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Where {@usn5}[..{12}][..0x0]"), + octest_legacy:ct_string("Create Unique ((usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[#usn7? *999{usn2:{1000}[{``}][999]}]-({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`)) Create `5esn`=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]}) Union All Unwind 010 Ends With 01 Ends With {_usn3} As #usn7 Detach Delete $@usn5 Is Not Null Is Not Null,{`8esn`}[..$`6esn`][..123.654],Allshortestpaths(((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))) Starts With (`1esn` :_usn3{`5esn`:{`8esn`}[..$`6esn`][..123.654],`1esn`:1000 Starts With `7esn`})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Extract(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) Foreach(usn1 In {`4esn`}[{`4esn`}..999]| Create (`4esn` :`4esn`:@usn6) With Distinct 0Xa Contains #usn8 Contains 1000 Order By {#usn8} Contains 1000 Contains $`4esn` Ascending,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Ascending Skip ({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..`2esn`(Distinct #usn8[`7esn`..])][..[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]]])"), + octest_legacy:ct_string("Optional Match `2esn`=Shortestpath((((`1esn` {usn2:12 Is Not Null,`4esn`:`1esn`[..01]})-[_usn3?:@usn6|``]-(usn1 :@usn5)-[``?:usn2|#usn7 *0x0..]-(@usn5 :usn1:_usn4)))),``=({#usn7:#usn8 =~{999}})-[{`7esn`:01234567 In $123456789}]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Using Index @usn6:`4esn`(`6esn`) Using Scan _usn4:#usn8 Where 1.e1[_usn4..][07..] Foreach(@usn6 In $`` Contains 1.e1| Create Unique #usn8=Allshortestpaths((`5esn` :_usn4)<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]})),Shortestpath((((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[`6esn`?]-(`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}))))) Union Return {@usn6}[True..{_usn3}] As `3esn`,Shortestpath((((`1esn` {#usn7:Count ( * )[$12..]})<-[#usn8:`7esn`]-({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})-[#usn8:#usn7|`2esn`]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)}))))[..Case {`1esn`} In 12.e12 In 9e1 When 12 Starts With {_usn4} Starts With $#usn8 Then Count(*) Is Not Null Else 12.e12 In $0 In $0 End][..#usn8],1.e1 =~$`1esn` As `8esn` Order By `1esn`[$123456789..] Desc,{#usn7:`5esn`[..9e0][..01234567]} In Case 1e1[1.e1..][123.654..] When 7[1000.._usn3][9e0..\"d_str\"] Then 12.e12[``..usn2][{#usn7}..@usn5] When 1.e1[0xabc..] Then 1.e1 Starts With $`2esn` Starts With $0 End In Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null) Desc,.e1 Ends With 0Xa Ends With 00 Ascending Skip 0xabc =~12 =~0x0 Limit 0e0[0X0123456789ABCDEF..010][$@usn6..010] Union Load Csv From $`6esn`[{`3esn`}..12] As @usn5 Fieldterminator 's_str'"), + octest_legacy:ct_string("Unwind `6esn`[{`6esn`}..] As usn2 Merge `3esn`=Allshortestpaths((`7esn` :@usn6)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]})) On Create Set usn1 =#usn8 In `8esn` In 07 On Match Set [\"d_str\"[{`8esn`}..]].#usn8? =$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]"), + octest_legacy:ct_string("With Distinct Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*))[Shortestpath(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(:#usn8)<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})))..],_usn4($123456789 =~`4esn`)[None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where Count(*) In {``})..][Any(`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7})..] As #usn8 Order By $123456789 Is Not Null Asc Limit 0Xa Is Not Null Is Not Null Where {`3esn`}[{`5esn`}] Remove Any(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`]).`2esn`? Unwind 9e12 Is Not Null Is Not Null As @usn5"), + octest_legacy:ct_string("Optional Match (:_usn3{`3esn`:{0} Is Null,#usn7:{0} Is Null})-[:_usn4|:usn1 *0X7..0Xa{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]}]-({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Create Shortestpath(((`3esn` :usn2:`2esn`{``:{_usn3} Contains $`1esn` Contains 12.0}))),`8esn`=((#usn8 {`8esn`:{7} Contains $123456789})) Return Distinct *,@usn5 Is Not Null Is Not Null As `` Skip Reduce(#usn8=0X7 Starts With {999} Starts With 12e12,_usn4 In `2esn`|usn2[True]) Starts With [01234567[..9e1]] Starts With Reduce(@usn5=.e1 Ends With {7} Ends With $usn1,`` In {usn1} Ends With {`6esn`} Ends With 123456789|{`2esn`} In 0Xa In {_usn3}) Union All Delete 0x0 =~123.654 =~{999} Remove Reduce(usn1=1.e1[0xabc..],#usn7 In 0Xa[@usn5][{`7esn`}]|12 Starts With $#usn7).``? Create Unique (({`7esn`:123456789[0..]})) Union Start `3esn`=Rel:`5esn`({0}) ,`6esn`=Relationship:`1esn`({@usn5})Where $7[{`1esn`}] Create usn2=(((:#usn8{`2esn`:12e12 Is Not Null,_usn3:12.e12[2.12..][0xabc..]})-[:_usn4|:usn1{``:0 Contains $usn2 Contains 12e12}]-(`4esn` :`2esn`)<-[`7esn`?:_usn3|`8esn`*..]->(`2esn` :_usn3))),`6esn`=((@usn6 :`2esn`)) Merge ((:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(:`6esn`:`8esn`{`3esn`:$`6esn`[{`3esn`}..12],_usn3:0[{@usn5}..][7..]})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`1esn`)) On Match Set `2esn`+=Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})],`3esn` =$12 Starts With $`8esn`,@usn5 =Reduce(#usn8={`8esn`}[..$`6esn`][..123.654],usn1 In 12.e12 In {0} In 9e1|\"d_str\" =~`1esn` =~{`5esn`}) On Match Set `6esn` =[`2esn` In {999} Is Not Null Where {@usn6}[True..{_usn3}]] =~None(#usn7 In 123.654 Starts With $`` Where {usn2}[$`4esn`]) =~Extract(`1esn` In $12 Is Not Null Where Null Is Null Is Null|$123456789 =~`4esn`),usn1:`8esn`:@usn5"), + octest_legacy:ct_string("Start `4esn`=Node:``(\"d_str\") Where 9e12 Is Not Null Is Not Null Union All Start _usn4=Node:`4esn`(`2esn`={``}) Where False Starts With 010 Create Unique `6esn`=((({`1esn`:$123456789[..$7][..$`6esn`]})<-[:`2esn` *1000{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]-(#usn8 :`8esn`:@usn5)-[?:`8esn`|:_usn4 *12..]->(@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]}))),(((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[{#usn7:'s_str'[_usn4..0x0]}]-(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``}))) Union Foreach(usn2 In 2.12[..$_usn4]| Remove Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn1 Starts With {_usn3}|{123456789}[12..][$12..]).usn1?,[$``[..1.e1][..12],7 Contains $`` Contains {`6esn`}].`7esn`! Match #usn8=Allshortestpaths((({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))),Allshortestpaths((((:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})))) Using Scan `4esn`:_usn4)"), + octest_legacy:ct_string("Optional Match #usn7=Allshortestpaths((:`5esn`:@usn5{#usn8:123.654[$`1esn`..Null][1000..{_usn3}],`6esn`:12.0 =~$#usn7 =~9e12})-[`1esn`:usn2|#usn7{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})),(({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]})) Using Scan _usn4:_usn3 Using Index usn1:@usn5(`7esn`)"), + octest_legacy:ct_string("Match `2esn`=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`))),@usn5=(_usn3 :@usn5)-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}) Using Join On `6esn`,#usn7 Using Join On #usn7,@usn5 Union With Distinct $`` =~{``} =~0.e0,{`3esn`}[{`5esn`}] As `6esn` Order By 12.e12[$`4esn`..] Descending,{`2esn`}[@usn5..][{``}..] Descending Skip 0.0[..{999}][..0.0] Where _usn4 In $usn1 Union Delete $0 Starts With `2esn` Create Unique `8esn`=(({`1esn`:12 Starts With 0x0})<-[`5esn`{`6esn`:12 Is Not Null Is Not Null,`8esn`:`3esn` Is Not Null Is Not Null}]->(_usn3 {@usn5:.e12 =~.e0}))"), + octest_legacy:ct_string("Using Periodic Commit 01 Load Csv With Headers From [.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]] Is Not Null As usn1 Fieldterminator 's_str' Create Unique (`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})"), + octest_legacy:ct_string("Match @usn6=Allshortestpaths(((:#usn8{#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})-[_usn4 *0x0..]-(:#usn7{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})))"), + octest_legacy:ct_string("With Distinct *,1000 As `5esn` Limit {`1esn`} In 12.e12 In 9e1 Where `8esn` Contains $`3esn` Contains {`4esn`} Union All Unwind `4esn`[usn1] As _usn4 Union All Unwind $`7esn` Is Null Is Null As `8esn` Remove Case @usn5[..$@usn5][..0Xa] When $@usn6 Starts With {`1esn`} Starts With 12 Then $1000[..12.0][..0e0] Else 's_str'[..0X7] End.`8esn` Create Unique Shortestpath((`1esn` :@usn5{_usn3:Null Is Null Is Null,``:True[True..]}))"), + octest_legacy:ct_string("With *,7[1000.._usn3][9e0..\"d_str\"],(`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})-[`4esn`?:_usn4|:usn1 *999{_usn4:{7} Starts With $usn1 Starts With 1.0,#usn7:$1000[..12.0][..0e0]}]-(#usn7 :`2esn`)-[?:`8esn`|:_usn4 *12..]->(@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]}) In {`3esn`:1e1 Contains usn2} Order By Count ( * )[00] Asc,$#usn7 Contains True Contains _usn4 Descending Skip 9e0[#usn8] Limit 123456789 Is Null Is Null Where #usn7 =~{`4esn`} =~123456789 Start _usn4=Node:`4esn`(_usn4={``}) Where {`2esn`} In 0Xa In {_usn3} Union All Remove Case @usn5[..$@usn5][..0Xa] When $@usn6 Starts With {`1esn`} Starts With 12 Then $1000[..12.0][..0e0] Else 's_str'[..0X7] End.`8esn` Foreach(`4esn` In Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Starts With (usn2 :``)<-[#usn7? *0X0123456789ABCDEF{usn1:.e1[@usn5]['s_str'],`2esn`:$`7esn` Is Null Is Null}]->({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]})| Create @usn5=(`4esn` :#usn7)<-[@usn6?:usn2|#usn7]->(`1esn` )-[`6esn`?*..{`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}]->({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6}),(usn2 {usn1:{`4esn`}[..07][..$`6esn`],`5esn`:'s_str'[..0X7]})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]->({_usn4})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`) Remove [`6esn` In Count(*) Ends With $`` Ends With {7} Where `1esn` =~1000 =~1000|0xabc[$@usn5]].usn1,Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000|\"d_str\"[{`8esn`}..])._usn3) Union Unwind 12 Starts With {_usn4} Starts With $#usn8 As usn1 With [`1esn` In `3esn`[07..] Where @usn6[{0}..]|0.e0[12.e12]] Contains {usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF} As @usn6,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $`5esn`[$#usn7..][0xabc..]) Contains All(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}]) As #usn8 Merge Allshortestpaths((:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[_usn4? *07{1000}]-(`` )<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})) On Create Set ['s_str'[..0X7],False Contains 0.e0 Contains Count(*)].``? =$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]"), + octest_legacy:ct_string("Unwind $0[..{usn2}][..$usn1] As `` Detach Delete `` Is Null Is Null,`2esn`[$usn1..{123456789}],$#usn7[.e1..{`7esn`}][{`6esn`}..$_usn4] Union Foreach(`7esn` In @usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2)| Detach Delete .e1 Ends With _usn3,Single(`8esn` In $12[{7}..0X0123456789ABCDEF])[Case 9e1[123456789..] When 12 Starts With 7 Starts With $`5esn` Then {_usn3} Contains True Contains 0X7 When `1esn`[..00][..{7}] Then 1.e1[12e12..{`6esn`}] End..]) Detach Delete [`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*)][Extract(`` In {`1esn`} Starts With @usn6 Where $`7esn`[$``..][999..]|.e1 Contains $`3esn`)..Case When 's_str'[.._usn4][..``] Then 123.654 Starts With $`` Else 0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] End] Union Load Csv From 9e0 Starts With .e0 Starts With \"d_str\" As `5esn` "), + octest_legacy:ct_string("Return {#usn7} Contains @usn5 Contains Count ( * ),01 Starts With {999} Starts With $`2esn`,$usn1[@usn6][#usn7] As `6esn`"), + octest_legacy:ct_string("Match (:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}),_usn4=Allshortestpaths((((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})))) Using Scan usn1:usn2 Using Index _usn3:``(#usn7) Where 12.e12[``..usn2][{#usn7}..@usn5] Remove All(`6esn` In 00 Where `5esn`[..9e0][..01234567]).`4esn`,(_usn4 :#usn8{`5esn`})-[?*..{`1esn`:$`1esn`[07..][9e12..],@usn6:{7} Starts With $usn1 Starts With 1.0}]->(:`3esn`:`6esn`).usn2?,None(_usn4 In 0.0[..{999}][..0.0] Where {`7esn`} Is Not Null Is Not Null).`3esn`? Create `2esn`=((`4esn` :`2esn`)),Allshortestpaths(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})))"), + octest_legacy:ct_string("Remove Allshortestpaths((((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]})-[_usn4 *0x0..]-(:``$_usn4)))).`5esn`? Remove usn2:@usn5,Case 0.0 =~12.e12 =~1.0 When 0.e0 Ends With False Then 00[..$123456789][..$`5esn`] Else _usn3[$usn2..0] End.#usn8!,`8esn`:_usn3"), + octest_legacy:ct_string("Start @usn6=Node:`4esn`(``='s_str') ,`2esn`=Rel:#usn7(`6esn`=\"d_str\")Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn` Merge Allshortestpaths((@usn6 :usn1:_usn4)) On Match Set usn1 =Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))) =~Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) Create Allshortestpaths((((@usn5 :@usn5)-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(_usn4 :_usn4)<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})))),`2esn`=Allshortestpaths((((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[{#usn7:'s_str'[_usn4..0x0]}]-(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})))) Union All Create `6esn`=(_usn3 {@usn5:.e12 =~.e0})-[?:`7esn`]-(usn2 :`4esn`:@usn6)-[?:@usn6|`` *1000]-(`5esn` :`7esn`),@usn5=((({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})<-[?:``]-(`1esn` :#usn7)-[?:`4esn`|:#usn7]->(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})))"), + octest_legacy:ct_string("Match `2esn`=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`))),@usn5=(_usn3 :@usn5)-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}) Using Index ``:`6esn`(usn1) Where 1.e1[12e12..{`6esn`}] Union Remove {@usn6:$usn1[0X7],`3esn`:$7[$`3esn`]}.`6esn`? Detach Delete 0.12 Contains 12.0,{999}[$123456789..][12..] Load Csv From [1.e1 =~$usn2,@usn6[{0}..],@usn5[12.0][{1000}]][@usn6()..Case {@usn5}[..@usn6] When $`2esn` Starts With {`8esn`} Starts With {usn1} Then {``} Is Null Is Null Else 123456789 Ends With usn1 Ends With usn2 End] As `6esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Unwind Reduce(``=12 Starts With $#usn7,`6esn` In 00|False Contains $#usn8 Contains 9e1)[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {7} Contains $123456789|12e12 Is Not Null Is Not Null]][All(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4)] As @usn5 Merge usn1=Allshortestpaths(((:`6esn`:`8esn`{`5esn`:{@usn5} Is Null,`8esn`:True[..010]}))) Remove [_usn3 Contains .e0 Contains {usn2},12.e12[2.12..][0xabc..]].`7esn`!,Extract(`8esn` In $12[{7}..0X0123456789ABCDEF]).usn2! Union All Load Csv From {@usn5}[..{_usn4}][..$@usn5] As `3esn` Fieldterminator 's_str' Match `5esn`=(#usn8 :`6esn`:`8esn`{`1esn`:9e12 Is Not Null,_usn4:0X0123456789ABCDEF[$`2esn`..][`2esn`..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(_usn4 :_usn4)-[_usn3?:`8esn`|:_usn4{@usn6:{`1esn`}[`6esn`..12e12]}]-({``:.e1 Contains $`3esn`}),Allshortestpaths((((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`})))) Using Index usn2:usn1(`8esn`) Using Scan `2esn`:@usn6 Where .e1 Ends With {7} Ends With $usn1"), + octest_legacy:ct_string("Start `3esn`=Rel:_usn3(_usn3='s_str') ,usn1=Node:#usn8(#usn8={``}) Remove Allshortestpaths(((:#usn7{#usn7:$`8esn` In $`2esn` In {7}}))).`1esn` Create Unique _usn4=((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null})<-[usn2 *..01234567{`1esn`:@usn5 =~'s_str',`8esn`:{999} Starts With {_usn4} Starts With 00}]->(usn1 {`5esn`})<-[:`8esn`|:_usn4 *1000]->(`5esn` $`8esn`))),(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})<-[?:`6esn` *07]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}) Union With Distinct $123456789 Starts With $123456789 Starts With Count ( * ),$`4esn` In Null,None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False)[[9e1[$_usn4..0xabc],{@usn6}[$`7esn`..][False..],#usn8 In `8esn` In 07]..Any(_usn4 In `2esn` Where $999 Is Null)] Limit Case When {`4esn`}[..{`4esn`}] Then {`7esn`}[0X7..][0x0..] When {@usn6} Contains 123.654 Contains 01 Then #usn8 Is Not Null End Contains {#usn7:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,#usn7:.e12[$#usn8..@usn6]} Contains All(`2esn` In {999} Is Not Null Where {@usn6}[True..{_usn3}]) Remove {`5esn`:@usn5[$12..\"d_str\"],usn2:1.e1[0X0123456789ABCDEF..]}.`6esn`! Load Csv With Headers From Shortestpath((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})-[`7esn`?:`6esn`]->(`1esn` :_usn4)-[#usn8:_usn3|`8esn`{`6esn`:`5esn` Is Null Is Null}]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))[Extract(`1esn` In `3esn`[07..] Where 999 Starts With 's_str')][Case `8esn` Contains $`3esn` Contains {`4esn`} When 9e1 Ends With $@usn5 Ends With $123456789 Then usn2[True] When 0.e0 =~`1esn` =~`6esn` Then usn2 =~0X7 =~{#usn7} Else 1.e1[..12.e12][..$usn2] End] As `5esn` Union Foreach(usn1 In 999| With {@usn5},{0} Is Null As `6esn` Skip Null In .e0)"), + octest_legacy:ct_string("Match `7esn`=(({@usn6:$`` Starts With 12 Starts With $usn2})) Using Join On `3esn`,`8esn`,`5esn` Unwind $1000[..$999] As `2esn` Match @usn5=($`5esn`)-[?:`3esn`|:@usn5]-(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Using Scan usn2:@usn5 Where True Is Null Is Null Union Unwind #usn7 Starts With $999 As #usn7 Optional Match Shortestpath((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Using Join On usn1,_usn4,`6esn` Using Index usn1:_usn3(``) Where {_usn3}[`3esn`..$#usn8]"), + octest_legacy:ct_string("Unwind 12e12 Starts With `1esn` Starts With usn2 As `4esn` Remove Case {`2esn`}[..{@usn6}][..1.e1] When Null Is Null Is Null Then #usn7 Contains {`3esn`} Contains $`6esn` When 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Then $usn1[..'s_str'][..$#usn8] End.``,All(`6esn` In Count(*) Ends With $`` Ends With {7} Where True Starts With $`2esn` Starts With {@usn6}).`7esn`!,Case 1e1[{_usn4}..123.654] When $123456789 =~`4esn` Then $`` Starts With 12 Starts With $usn2 When {`5esn`}[$`8esn`..$`1esn`][0.12..0.12] Then 0.e0[12.e12] Else 1.e1 =~`2esn` End.#usn8!"), + octest_legacy:ct_string("Detach Delete Filter(#usn7 In 0Xa[@usn5][{`7esn`}] Where {1000}[\"d_str\"..{@usn5}][$1000..$#usn8]) Starts With All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $`5esn`[$#usn7..][0xabc..]) Starts With [#usn7 Contains {`3esn`} Contains $`6esn`],{12}[$`3esn`]"), + octest_legacy:ct_string("Unwind (:``{`1esn`:#usn8 Is Not Null,`5esn`:$@usn6[$0..usn1][0X0123456789ABCDEF..$999]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})-[?:_usn3|`8esn` *12..{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}]-(`6esn` :`2esn`{`7esn`:#usn8 =~{999}}) Ends With `6esn`() Ends With Shortestpath(((`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})-[:#usn8|`2esn`]->(:`3esn`:`6esn`)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))) As #usn8 Create Unique _usn3=((`5esn` :`3esn`:`6esn`)) Union All Create Unique Allshortestpaths((({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2})<-[_usn3{@usn6:{7} Contains $123456789}]->(:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]}))),Allshortestpaths((({#usn7:#usn8 =~{999}})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2}))) Remove All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0.12[..$`6esn`][..$1000]).@usn6?,{usn2:$`5esn`[`4esn`][_usn3]}.@usn6?"), + octest_legacy:ct_string("Start `7esn`=Relationship:`2esn`(@usn5={#usn7}) Remove [@usn5 In Null =~12e12 Where _usn4 In $usn1].`6esn`?,Reduce(`4esn`=`3esn`[..{_usn4}][..{@usn5}],`2esn` In {999} Is Not Null|123456789 Starts With {@usn6} Starts With $12).usn2,Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3).`3esn` Create `3esn`=Shortestpath((({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))),((`2esn` :@usn5{`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})<-[?:`6esn` *07]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[{#usn7:'s_str'[_usn4..0x0]}]-({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]})) Union Load Csv With Headers From {#usn8} =~{7} As `3esn` Fieldterminator \"d_str\" Remove usn2($@usn6[$0..usn1][0X0123456789ABCDEF..$999]).`1esn`?,Allshortestpaths(((_usn4 :`6esn`:`8esn`$``))).usn1! Union All Remove Allshortestpaths((((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]})-[_usn4 *0x0..]-(:``$_usn4)))).`5esn`? Remove usn2:@usn5,Case 0.0 =~12.e12 =~1.0 When 0.e0 Ends With False Then 00[..$123456789][..$`5esn`] Else _usn3[$usn2..0] End.#usn8!,`8esn`:_usn3"), + octest_legacy:ct_string("Start @usn6=Rel:usn1(@usn6=\"d_str\") Where 0.e0 =~`1esn` =~`6esn` With {1000}[\"d_str\"..{@usn5}][$1000..$#usn8] Order By 0.12[999][$#usn8] Descending,`7esn`[..$`5esn`][..{`5esn`}] Desc Limit {`1esn`:{123456789}[12..][$12..]} =~{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF} =~[`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`|_usn3[\"d_str\"]] Where 1.0 Is Null Is Null With {1000}[\"d_str\"..{@usn5}][$1000..$#usn8] Order By 0.12[999][$#usn8] Descending,`7esn`[..$`5esn`][..{`5esn`}] Desc Limit {`1esn`:{123456789}[12..][$12..]} =~{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF} =~[`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`|_usn3[\"d_str\"]] Where 1.0 Is Null Is Null Union All Unwind {12}[999][{_usn3}] As `3esn` Foreach(`1esn` In `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]]| With Distinct *,0X0123456789ABCDEF Contains {usn1} As @usn5 Order By (:usn1:_usn4)<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[usn2?:`2esn`*..]-(:`5esn`:@usn5{``:0.12[..$`6esn`][..$1000]}) Starts With Reduce(`8esn`=00[..$123456789][..$`5esn`],`` In {`1esn`} Starts With @usn6|False[999]) Starts With [`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]] Descending,`2esn`(Null In .e0)[_usn3(Distinct {@usn6}[$`7esn`..][False..])..[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]]] Asc,(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[#usn7?:@usn6|``{123456789}]->(usn1 :`8esn`:@usn5)<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})[..[12.e12 In {0} In 9e1,9e1 =~`` =~{`7esn`},0X0123456789ABCDEF[0X7..]]][..All(`1esn` In `3esn`[07..] Where `7esn`[0..$usn2][{usn2}..0.e0])] Asc Skip #usn7[00] Limit Shortestpath(((usn1 {``:.e12 =~$_usn4})))[`6esn`(_usn3 Contains .e0 Contains {usn2},`3esn`[07..])][[.e12 Ends With 1000 Ends With 010,Count(*)]])"), + octest_legacy:ct_string("Match Allshortestpaths(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),_usn4=({`7esn`:123.654 Ends With usn2 Ends With 0})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->(:#usn8{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000}) Using Index #usn7:`8esn`(@usn6) Where 0Xa Contains $`` Union All Load Csv With Headers From $0 Is Not Null As #usn8 Fieldterminator \"d_str\" Match @usn6=Shortestpath((:``{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})-[?:`4esn`|:#usn7]->(`1esn` :@usn6)<-[`1esn`?]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})),(((`4esn` :usn2:`2esn`)-[`8esn`?:`4esn`|:#usn7]->({`3esn`:12 Starts With 0x0,`8esn`:0X7[0.e0][{`4esn`}]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]}))) Using Index usn2:`8esn`(`5esn`) Where _usn4[Count(*)]"), + octest_legacy:ct_string("Using Periodic Commit 1000 Load Csv From {#usn8}[$#usn7..] As `8esn` Fieldterminator \"d_str\" Create usn2=((@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]})),(:`4esn`:@usn6{usn1:$7[{`1esn`}],#usn8:\"d_str\"[..0.e0]}) Start `5esn`=Relationship:`4esn`(#usn8=\"d_str\") "), + octest_legacy:ct_string("Load Csv From {`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]} Starts With Allshortestpaths((`2esn` :@usn6{7})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]})<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`)) Starts With All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {7} Contains $123456789) As `3esn` Fieldterminator 's_str' Create Unique `7esn`=((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})),Shortestpath((usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`)) Union Delete {#usn7:`5esn`[..9e0][..01234567]} In Case 1e1[1.e1..][123.654..] When 7[1000.._usn3][9e0..\"d_str\"] Then 12.e12[``..usn2][{#usn7}..@usn5] When 1.e1[0xabc..] Then 1.e1 Starts With $`2esn` Starts With $0 End In Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null),$`5esn`[`1esn`..$123456789]"), + octest_legacy:ct_string("Start @usn6=Node:`1esn`(#usn7=\"d_str\") Where 0X0123456789ABCDEF[$`5esn`..] Union All Foreach(`8esn` In Shortestpath(((:@usn6{usn2:{#usn8}[12.0][$@usn6]})<-[{_usn4:{1000} Ends With {`8esn`}}]-(@usn5 :`7esn`{_usn3:{``}[_usn4..$`1esn`]})<-[#usn8? *..0Xa{`4esn`:$`2esn` Ends With 0.12 Ends With .e1,`4esn`:07 =~@usn5}]-(:`3esn`:`6esn`{999})))[..Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where Count(*) Ends With 123.654 Ends With $12|0Xa[$1000..$123456789])][..{@usn6:12 Starts With {_usn4} Starts With $#usn8}]| Match _usn3=(@usn6 :@usn6),usn2=((_usn4 :#usn7{`8esn`:$999 Contains {7}})<-[`4esn`:`4esn`|:#usn7{`2esn`:{`4esn`}[$_usn4..][9e0..]}]-(`6esn` )) Using Index `3esn`:#usn7(usn2)) Union All Remove Any(`6esn` In 00 Where 0X7 Starts With {999} Starts With 12e12).`1esn`!,Case `6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}] When 1.e1[..12.e12][..$usn2] Then $_usn3[{999}] When $7 Is Null Then `1esn` =~1000 =~1000 Else 9e12[$`5esn`] End._usn3,#usn7:_usn3"), + octest_legacy:ct_string("Unwind Single(`` In {`1esn`} Starts With @usn6 Where Null[{_usn4}..])[Extract(`1esn` In `3esn`[07..] Where {0} =~12.0|`8esn` Contains 1e1)][None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12[..$@usn6])] As `2esn` Return Distinct *,(usn1 :@usn5)<-[_usn4?:usn2|#usn7{_usn4:{`1esn`} In 12.e12 In 9e1}]-(:usn2:`2esn`)[Extract(`1esn` In $12 Is Not Null Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`|12.0 =~$#usn7 =~9e12)],[00[..$123456789][..$`5esn`],{_usn3} Contains $`1esn` Contains 12.0][..[0.e0 =~`1esn` =~`6esn`,12.0[2.12..][{`5esn`}..],1.e1[0X0123456789ABCDEF..]]][..Filter(_usn3 In True[7][$999] Where 's_str'[..0X7])] As #usn7 Order By {#usn8}[Null] Descending,Shortestpath((`6esn` :`7esn`)-[:_usn3|`8esn` *12..{`8esn`:Count(*)[.e12..],`5esn`:{#usn8}[12.0][$@usn6]}]-(`1esn` {_usn4:`3esn`[_usn4..{0}][`5esn`..usn2]})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`)) Contains Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) Ascending,Case When #usn8 In `8esn` In 07 Then 00[Count(*)...e0][$#usn7..0X0123456789ABCDEF] Else 12.e12[{7}..7] End In Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]})) In Reduce(`3esn`=00 Ends With `8esn`,usn1 In 12.e12 In {0} In 9e1|True Starts With $`4esn` Starts With 12e12) Ascending Skip $@usn5[`1esn`..] Limit @usn5[..$@usn5][..0Xa] Match `2esn`=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`))),@usn5=(_usn3 :@usn5)-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}) Using Join On `6esn`,#usn7 Using Join On #usn7,@usn5 Union Unwind {12}[usn2] As `2esn` Foreach(@usn6 In 1.e1[0xabc..]| Delete .e1[@usn5]['s_str'],Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..] Unwind {12}[$`3esn`] As `6esn`) Foreach(_usn4 In Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`4esn`} Starts With $7 Starts With $``|0Xa Contains {`7esn`} Contains $999) Contains {`4esn`:0X0123456789ABCDEF[$999..][@usn5..],@usn5:{_usn3}[{0}]}| Create usn1=((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]})),#usn8=Allshortestpaths((:`5esn`:@usn5{usn1:$#usn7[`5esn`]})<-[?:`4esn`|:#usn7]->(_usn4 :#usn8{`5esn`})-[`4esn`?:_usn4|:usn1{@usn6:$#usn7 Ends With 0.12 Ends With {@usn6}}]->(#usn8 {usn1:$123456789 Starts With `5esn`})) With Distinct *,$1000[..{`7esn`}][..#usn7] Order By [1.e1 =~$usn2,1000][[_usn4 In 0.0[..{999}][..0.0] Where 12.e12[{7}..7]]..][All(_usn4 In `2esn` Where $0[`7esn`])..] Asc,`3esn`[$@usn5..@usn5][9e1..$``] Desc,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Descending Skip `2esn`[$1000..9e12][{#usn8}..{7}] Limit [`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]][Reduce(_usn4=$0 Is Not Null,`2esn` In {999} Is Not Null|12.e12[2.12..][0xabc..])..][None(`6esn` In 00 Where {@usn5} Starts With 1.0 Starts With 00)..])"), + octest_legacy:ct_string("Return \"d_str\" Ends With 1.0 Ends With 0e0 As `3esn` Merge _usn3=(`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})<-[usn2 *07{usn1:07 =~@usn5}]->(_usn4 {`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}) Merge ((:`5esn`:@usn5{usn1:$#usn7[`5esn`]})-[@usn5{#usn7:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,#usn7:.e12[$#usn8..@usn6]}]->(`5esn` :@usn5)<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]-({`7esn`:123.654 Ends With usn2 Ends With 0})) On Create Set #usn8+=``(#usn8 =~{999})[Single(_usn3 In {@usn5}[..#usn7])..][Case $123456789 Is Not Null When .e1[0.12] Then {@usn5}[..{12}][..0x0] When @usn5 Is Not Null Is Not Null Then \"d_str\" Ends With False Ends With {@usn6} End..] On Match Set @usn6($@usn6 Contains `7esn`).@usn5! =$`5esn` Ends With 00 Ends With #usn7,Reduce(usn2=True[7][$999],`` In {`1esn`} Starts With @usn6|{`4esn`}[$_usn4..][9e0..]).`6esn` ={`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`"), + octest_legacy:ct_string("Unwind $`5esn`[$#usn7..][0xabc..] As usn2 Merge `4esn`=({`1esn`:$123456789[..$7][..$`6esn`]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]}) On Match Set {usn2:00[..$123456789][..$`5esn`],``:0.12[Count(*)..][$#usn7..]}.#usn7? =(`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] Detach Delete {12}[00..{@usn6}][1.e1..0],`1esn`(Distinct $usn1 Starts With {_usn3},{#usn8}[$#usn7..]) Starts With [$_usn4[$`4esn`..$12]] Starts With [`6esn` In 00 Where 0.12 In 0X7|{999} Is Null]"), + octest_legacy:ct_string("Load Csv With Headers From $`8esn` Starts With 0xabc Starts With {usn2} As `1esn` Foreach(`5esn` In 9e1['s_str'..0xabc]| Detach Delete $@usn5 In 's_str' In $12,Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]}))) Ends With Case When $``['s_str'..][0x0..] Then 9e12[..0X7] Else $1000[..$999] End,{`7esn`} Ends With `` Ends With {`8esn`} Create `5esn`=Allshortestpaths(((({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2})<-[:_usn4|:usn1 *07]-(#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})))),`8esn`=(({`1esn`:12 Starts With 0x0})<-[`5esn`{`6esn`:12 Is Not Null Is Not Null,`8esn`:`3esn` Is Not Null Is Not Null}]->(_usn3 {@usn5:.e12 =~.e0}))) Load Csv With Headers From {_usn4} Is Null As `` "), + octest_legacy:ct_string("Foreach(`5esn` In $_usn4 Is Null Is Null| Create _usn4=((`2esn` :@usn6)-[_usn3?:@usn6|``]-(usn2 )<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})),`5esn`=Allshortestpaths(((:_usn4)<-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]->(_usn4 {_usn3:`1esn`[..00][..{7}]}))) Remove (`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]}).`1esn`?,[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000].usn1?,{`4esn`:0.12 In 0X7}._usn4!) Remove Shortestpath(((@usn6 :`4esn`:@usn6{#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[:#usn7|`2esn` *0x0..]-({`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}))).#usn7!,Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where _usn4 Is Null Is Null).``! Union Remove None(#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}).`6esn`,{`1esn`}.`6esn`? Merge `1esn`=({`4esn`:#usn8 Is Null}) On Match Set @usn5+=usn2 =~0X7 =~{#usn7},usn1 =[False Starts With 010] Contains Extract(_usn3 In True[7][$999] Where 0e0[$#usn8...e12]|12 Is Not Null Is Not Null) Contains [`1esn` In $12 Is Not Null],usn2 =$`4esn` Starts With 9e12 On Match Set [$1000 Is Not Null Is Not Null].``? =7 In 1.e1 In $usn1,`4esn`(Distinct 00[Count(*)...e0][$#usn7..0X0123456789ABCDEF],`3esn`[..{_usn4}][..{@usn5}]).`8esn` =$`6esn`[`8esn`][$`5esn`],Any(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $7[{`1esn`}]).usn2! =Null[010..][{``}..] Remove `7esn`(Distinct {999} Starts With {12},999 Ends With .e12 Ends With .e1).@usn5"), + octest_legacy:ct_string("Create `6esn`=(((:#usn8{`2esn`:12e12 Is Not Null,_usn3:12.e12[2.12..][0xabc..]})-[:_usn4|:usn1{``:0 Contains $usn2 Contains 12e12}]-(`4esn` :`2esn`)<-[`7esn`?:_usn3|`8esn`*..]->(`2esn` :_usn3))),@usn5=(({`5esn`:0Xa[0e0..{#usn7}]})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]-(:#usn7)-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})) Unwind (`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->({_usn3})[Reduce(usn1=0x0[$`8esn`.._usn3],_usn4 In `2esn`|{123456789} Is Not Null)..Reduce(usn1=12.0[2.12..][{`5esn`}..],_usn3 In {@usn5}[..#usn7]|1000[$7..$123456789])][[_usn4 In `2esn` Where 9e12 Ends With 123456789|07 =~$`8esn` =~9e1]..(:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->()] As `7esn`"), + octest_legacy:ct_string("Return Distinct *,`1esn`[Null..] As `2esn` Order By $7 Is Not Null Descending,Single(`8esn` In $12[{7}..0X0123456789ABCDEF])[Case 9e1[123456789..] When 12 Starts With 7 Starts With $`5esn` Then {_usn3} Contains True Contains 0X7 When `1esn`[..00][..{7}] Then 1.e1[12e12..{`6esn`}] End..] Descending Limit Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..]) Starts With [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]|Count ( * )[..12][..{@usn6}]] Starts With Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where True Starts With $`2esn` Starts With {@usn6}) Start #usn8=Node:``(#usn7=\"d_str\") "), + octest_legacy:ct_string("Return Distinct {`2esn`} In $123456789 In True As `7esn`,$7 Ends With $`8esn` As `4esn`,(:`7esn`{``:.e1 Contains $`3esn`})<-[?:usn2|#usn7]->(#usn8 :#usn7) As #usn8 Union Remove [#usn7 In 0Xa[@usn5][{`7esn`}] Where $0 In _usn4].#usn7,Any(`1esn` In $12 Is Not Null Where Count(*)[..``][..#usn8]).#usn7,Case When {`3esn`}[{`5esn`}] Then \"d_str\" Contains @usn6 Contains 12.e12 When $`5esn`[..{`2esn`}][..{0}] Then {_usn3}[$usn2..] End.@usn6!"), + octest_legacy:ct_string("Remove All(_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``).`3esn`?,`7esn`(Count(*)[.e12]).@usn5!,`8esn`:@usn5"), + octest_legacy:ct_string("Return *,1000 As ``,{usn2:$#usn7 Starts With 9e0 Starts With 2.12}[Single(#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 In 01234567 In .e1)..][[.e0[True..Count ( * )][#usn7..0X7],$`` Is Null]..] Order By 07 =~$`8esn` =~9e1 Asc,$`7esn` Is Null Is Null Asc,$`5esn`[`1esn`][0X0123456789ABCDEF] Ascending Limit {usn2} Load Csv With Headers From None(_usn3 In {@usn5}[..#usn7] Where `2esn` Starts With `` Starts With 1e1) Contains Reduce(`1esn`={999} Ends With 123456789 Ends With {@usn5},_usn4 In 0.0[..{999}][..0.0]|$1000 =~{1000} =~`5esn`) Contains `6esn`(Distinct {1000}[{#usn8}],$#usn7[123.654]) As @usn5 Fieldterminator 's_str' Return Distinct $@usn5[{_usn3}][$#usn7],123.654[{`7esn`}][{7}] As @usn5,9e0 =~0.0 =~$`5esn` Skip None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] Limit @usn6(`` Ends With $`4esn` Ends With 0X0123456789ABCDEF)[..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[:#usn8|`2esn` *0x0..{`3esn`:.e12[$7..][{`6esn`}..]}]->({usn1:1000 Is Null Is Null})] Union All Unwind $7[$`6esn`] As `8esn` Load Csv From {#usn8} Ends With 1.0 Ends With 12.0 As `2esn` Fieldterminator 's_str' Union Remove Shortestpath((({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`))).#usn8!,({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})-[? *01..07]->({_usn4:{usn1} =~123.654 =~\"d_str\"}).`5esn`?,[{`6esn`}[..{`2esn`}],$`8esn`[..$999][..0],`3esn` Is Not Null Is Not Null].`1esn`? Merge `8esn`=((@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})) On Match Set `8esn`+=$`4esn` In Null Start `3esn`=Relationship:#usn8(_usn3={#usn7}) ,`8esn`=Rel( {`3esn`})Where $`2esn` Is Null Is Null"), + octest_legacy:ct_string("Remove [$0[`7esn`],0.12 Contains 12.0,True Is Null Is Null].``?,[`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]].`2esn`! Load Csv With Headers From Reduce(_usn4={123456789} =~01234567 =~`3esn`,_usn3 In True[7][$999]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]) Ends With @usn5(Distinct {0} Is Null) Ends With {`6esn`:`3esn`[..{_usn4}][..{@usn5}],`2esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]} As _usn4 Fieldterminator \"d_str\" Unwind $0 Is Not Null As usn2"), + octest_legacy:ct_string("Optional Match `5esn`=Allshortestpaths(((:_usn4)<-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]->(_usn4 {_usn3:`1esn`[..00][..{7}]}))),Allshortestpaths((:@usn5{@usn6:{7} Contains $123456789})<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})) Union With *,$`7esn`[$0..][{`4esn`}..] Where {`3esn`} Is Null Start @usn5=Node:@usn5(\"d_str\") ,_usn3=Relationship:usn1('s_str') Load Csv With Headers From {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}[Any(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3}[..$`8esn`])] As _usn4 Fieldterminator 's_str' Union Merge ((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]})) Match ((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]})),(((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`}))) Using Index `6esn`:`2esn`(`1esn`) Create Unique ``=Shortestpath(((usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}))),usn1=Allshortestpaths(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]})))"), + octest_legacy:ct_string("Foreach(#usn8 In $usn1 =~010 =~07| Optional Match Shortestpath(({``:.e1 Contains $`3esn`})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})),Allshortestpaths((:usn1:_usn4{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[`8esn`? *999]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})) Using Scan `2esn`:@usn6) Union Merge Allshortestpaths(((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}))) Start ``=Relationship:`1esn`({@usn5}) Where 1000[$7..$123456789]"), + octest_legacy:ct_string("Start usn1=Node:`6esn`({`8esn`}) ,`3esn`=Rel:`5esn`({0}) Unwind `6esn` Is Not Null Is Not Null As _usn3 Load Csv With Headers From 9e1['s_str'..0xabc] As usn2 Union Delete $`2esn`[{usn1}..],None(_usn4 In 0.0[..{999}][..0.0] Where 01234567[..9e1]) Ends With Case $`1esn`[07] When _usn4 Is Null Is Null Then 12.0 =~$#usn7 =~9e12 When {#usn7} Contains 0.0 Contains $0 Then 1.e1[..12.e12][..$usn2] Else 010 In `1esn` End,Case Count(*) Ends With 123.654 Ends With $12 When $@usn6[$0..usn1][0X0123456789ABCDEF..$999] Then {`6esn`}[..{`2esn`}] End In Reduce(`4esn`={@usn6} In {#usn7} In 12.e12,usn1 In 12.e12 In {0} In 9e1|\"d_str\"[..0.e0]) In [_usn4 In `2esn` Where 9e12 Ends With 123456789|$999 Is Null] Return *,$`4esn` Starts With 0e0 As `` Order By {#usn7}[{`4esn`}..][0X7..] Desc,Filter(`1esn` In $12 Is Not Null Where Count(*)[..``][..#usn8]) Ends With Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}]) Ends With {`2esn`:usn1 Is Null Is Null,usn2:0.e0 =~`1esn` =~`6esn`} Desc Skip $12 Is Not Null"), + octest_legacy:ct_string("Unwind 00 Ends With `8esn` As usn1"), + octest_legacy:ct_string("Return $usn1 =~010 =~07 As usn2 Skip 123.654[{@usn5}..123.654][1.0..$12] Limit [@usn5[..$@usn5][..0Xa],{`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`]] In Filter(_usn4 In 0.0[..{999}][..0.0] Where True Starts With $`4esn` Starts With 12e12) Union All Foreach(#usn8 In $_usn4 Is Not Null Is Not Null| Create Unique #usn8=Allshortestpaths((`5esn` :_usn4)<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]})),Shortestpath((((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[`6esn`?]-(`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})))) Load Csv With Headers From 12[12e12] As _usn4 Fieldterminator \"d_str\")"), + octest_legacy:ct_string("Remove [$usn1 In 01234567 In .e1,$@usn5[..usn2][..$#usn7],True Is Not Null].`4esn`,[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]|1000 Is Not Null]._usn3?,None(`1esn` In $12 Is Not Null Where Null Is Null Is Null).``! Start @usn6=Node:`1esn`(\"d_str\") Union Start _usn3=Relationship:``(`1esn`={`2esn`}) ,_usn3=Relationship:_usn4(usn1={_usn4})Where $999 Contains {7} Remove Reduce(usn1=12e12 Ends With `4esn` Ends With 123456789,`1esn` In 0.e0 =~`1esn` =~`6esn`|1.e1[0xabc..]).`4esn`!,[$@usn6[$0..usn1][0X0123456789ABCDEF..$999],0.0 Is Not Null Is Not Null,0Xa Contains $``].`7esn`? Union All Optional Match _usn3=Allshortestpaths((`2esn` :#usn8{@usn6:`7esn` Ends With $_usn3 Ends With usn2,_usn4:{12} Starts With #usn8 Starts With 0e0})<-[:`6esn`{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},`6esn`:``[..$#usn7]}]->({_usn4:False[0Xa..$usn1]})) Using Scan usn2:#usn7"), + octest_legacy:ct_string("Delete 0Xa[{``}] Create Unique Shortestpath((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->({_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})),Allshortestpaths((#usn7 {``:0x0 =~123.654 =~{999}})) Start @usn5=Rel:_usn4(\"d_str\") Where $12[{7}..0X0123456789ABCDEF] Union All Create Unique Allshortestpaths((:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})),#usn8=Allshortestpaths((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null})))"), + octest_legacy:ct_string("With Distinct *,Null[010..][{``}..] Where `5esn`[..9e0][..01234567] Create (_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Return *,(usn1 {`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]})<-[`4esn`:#usn7|`2esn` *0X7..0Xa]-(`3esn` :`8esn`:@usn5{@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]}) Is Not Null,$_usn3[..$`2esn`][..\"d_str\"] Skip $999 In 999 Limit Filter(`1esn` In `3esn`[07..] Where 12 Ends With 01)[..All(`3esn` In 123.654[1e1..][{#usn8}..] Where 0Xa Contains Count ( * ))] Union Create Allshortestpaths((_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})-[? *1000]->(`5esn` {usn2:$#usn7 Starts With 9e0 Starts With 2.12})) Delete @usn6[$12],None(`5esn` In $`2esn`[12.e12][$@usn5] Where `6esn`[{`6esn`}..]) =~Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}]),{`8esn`} Is Not Null Is Not Null Union All Unwind [{999} Starts With {12},9e1 Ends With Count(*) Ends With False,0X0123456789ABCDEF[`5esn`..][$#usn8..]] In Single(`6esn` In 00 Where 0X0123456789ABCDEF Is Null Is Null) As `1esn` Load Csv With Headers From 0e0 As `8esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Merge `4esn`=({`7esn`:{@usn5}[..#usn7],@usn6:{_usn3}[`3esn`..$#usn8]})-[@usn5{#usn7:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,#usn7:.e12[$#usn8..@usn6]}]->(`5esn` :@usn5) On Create Set [1.e1 =~$usn2,$`5esn`[`1esn`][0X0123456789ABCDEF],$0[`7esn`]].`5esn`? =@usn5[$12..\"d_str\"],_usn3+=$`1esn`[$12][Count ( * )] On Create Set {#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]}.usn1 =(#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..],Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where `7esn` Starts With 0X7 Starts With $`7esn`).`4esn` =$@usn6[..123.654],_usn4:`4esn`:@usn6 With Distinct *,Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 9e12 Is Not Null) =~Case When False[0Xa..$usn1] Then {123456789}[12..][$12..] Else 0e0 Contains 9e12 End As usn2 Order By $`7esn` Contains {`1esn`} Contains 9e12 Asc,usn1 Is Null Is Null Descending Limit `5esn` Is Not Null Is Not Null Union Load Csv With Headers From All(#usn7 In 123.654 Starts With $`` Where 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF) =~[`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]|{#usn8}[2.12]] =~Reduce(usn1=12.0[2.12..][{`5esn`}..],_usn3 In {@usn5}[..#usn7]|1000[$7..$123456789]) As `4esn` Union Create ((:``)-[:``]->({`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})) Start #usn8=Node:`2esn`(#usn7={usn1}) ,``=Node:`5esn`(#usn7=\"d_str\")Where {``}[_usn4..$`1esn`] Start usn2=Node:usn1(`5esn`={_usn4}) ,_usn3=Relationship:``(_usn3={0})Where 1.0[{999}][$999]"), + octest_legacy:ct_string("Create (@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]}) Foreach(`5esn` In `1esn` Is Null Is Null| Unwind {`3esn`:'s_str'[..0X7]}[(@usn5 :@usn5)<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]->(:`5esn`:@usn5{``:.e12 =~$_usn4})] As `1esn`) Unwind 12.e12[`7esn`] As usn1 Union All Load Csv From 12.e12[$`8esn`..{`8esn`}] As `` Fieldterminator 's_str' Load Csv From Count ( * )[Count ( * )][12] As #usn7 Union All Create ``=(`1esn` :`1esn`{`7esn`:{1000}[{usn1}][Null],`3esn`:7[$0..][{_usn4}..]})<-[`2esn`:usn2|#usn7 *0X0123456789ABCDEF]-(@usn6 {`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]})<-[@usn6?:`2esn`]->(_usn4 :`6esn`:`8esn`$``) Remove All(_usn4 In `2esn` Where Count(*)[..``][..#usn8])._usn3,(:usn1:_usn4{@usn5:1000 Is Null Is Null})<-[ *..01234567{`3esn`:$#usn7 =~{12} =~False,usn2:$@usn6[$`8esn`..][7..]}]->(#usn8 :usn2:`2esn`).usn2!,Case When 0X0123456789ABCDEF[9e12] Then 1000 Starts With `7esn` When 999[12.0..][#usn7..] Then `1esn` =~1000 =~1000 Else {_usn4} Is Null End.usn1? Foreach(@usn5 In 9e12 Is Not Null| Unwind 0.12[010..][{0}..] As #usn8 Load Csv With Headers From 12 Starts With $#usn7 As `3esn` )"), + octest_legacy:ct_string("Remove Filter(`` In {`1esn`} Starts With @usn6).@usn5? Union All Delete {`3esn`} Ends With `1esn` Ends With $@usn6,{usn2}[`6esn`..01234567] Return Distinct #usn7[..12e12] As `1esn`,Single(_usn3 In {@usn5}[..#usn7] Where {@usn6} In {#usn7} In 12.e12)[(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[*{`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]}]->(:`2esn`{#usn8:`6esn` Ends With 2.12 Ends With @usn6,`1esn`:{`8esn`}[True..][.e1..]})<-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` :`8esn`:@usn5)],12[12e12] Order By [Null Is Null Is Null,12e12 Ends With `4esn` Ends With 123456789,{@usn6} Is Not Null][Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[{999}..][{_usn4}..])..] Descending,Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789}|{1000}[{#usn8}]) =~All(#usn7 In 123.654 Starts With $`` Where $`5esn`[..{`2esn`}][..{0}]) =~Case _usn4 Is Not Null Is Not Null When .e1[..\"d_str\"] Then $#usn7 =~{12} =~False When {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`] Then $#usn7 Ends With 0.12 Ends With {@usn6} Else 9e12[$`5esn`] End Desc Skip @usn6[$12] Return {#usn7} Contains @usn5 Contains Count ( * ),01 Starts With {999} Starts With $`2esn`,$usn1[@usn6][#usn7] As `6esn`"), + octest_legacy:ct_string("Create @usn5=Allshortestpaths(((:`2esn`))),Allshortestpaths((((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})))) Foreach(_usn3 In 12 In 999| With Distinct `7esn`[{7}..@usn5] As `6esn`,[`1esn` In $12 Is Not Null Where {`3esn`}[{`5esn`}]|True Is Not Null Is Not Null] Ends With Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End Ends With `3esn`(Distinct 1.e1 =~$usn2,0X0123456789ABCDEF Is Null Is Null) As `5esn`,$999 Is Not Null Is Not Null As `3esn` With Distinct `2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] Limit `` =~`6esn` =~usn1 Where @usn5[12.0][{1000}]) Start _usn3=Node(07,123456789,123456789) ,`7esn`=Relationship:`2esn`(@usn5={#usn7})Where `5esn`[0xabc..] Union Foreach(@usn5 In [1e1[{_usn4}..123.654]] In Reduce(`5esn`=9e1 Ends With Count(*) Ends With False,`1esn` In $12 Is Not Null|123.654[{`7esn`}][{7}]) In [usn2[True],{`3esn`}[{`5esn`}]]| Unwind Reduce(usn2={`6esn`}[..{`2esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|1e1[..01]) Is Not Null Is Not Null As `1esn` Load Csv From $`5esn`[`1esn`..$123456789] As #usn7 ) Match ((()-[?:`3esn`|:@usn5 *0x0..{`3esn`:.e1[0.12],`7esn`:$123456789 Starts With .e12}]-(:`6esn`:`8esn`{@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]})-[?:usn2|#usn7]-(`1esn` {#usn7:Count ( * )[$12..]}))),(((#usn8 )-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))) Where 0Xa[@usn5][{`7esn`}] Remove [0.0[..{999}][..0.0],12.e12[2.12..][0xabc..],True[7][$999]].@usn6"), + octest_legacy:ct_string("Load Csv With Headers From $usn1 =~010 =~07 As _usn4 "), + octest_legacy:ct_string("Create usn1=(((`5esn` :@usn6)<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5)<-[ *123456789..0X7]-(:`7esn`{``:.e1 Contains $`3esn`})))"), + octest_legacy:ct_string("Delete @usn5 In 1e1,Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3]..`1esn`(Distinct $@usn5[`6esn`..],9e12[..0X7])][Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}))..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]})],usn1 In 00 In {_usn3} Merge Shortestpath((:`2esn`{`4esn`:`3esn` Is Not Null Is Not Null})<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(usn1 {`4esn`:1.0[{999}][$999],``:9e1[9e1...e0]})) Load Csv With Headers From {`2esn`:`8esn`[..`4esn`][..$usn1],@usn6:{123456789}[12..][$12..]} In [$0 Is Not Null,#usn7 Starts With $999,$`6esn`[`8esn`][0.0]] In [$999 Is Null,{``}[010]] As `3esn` Union With Distinct {@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}[Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))..] As `6esn`,Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123456789 Is Not Null Is Not Null) Starts With Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999) Starts With Reduce(usn2=1.e1 =~`2esn`,@usn5 In Null =~12e12|Count(*)[..``][..#usn8]) As `1esn` Order By 0x0[{999}..`1esn`][0Xa..False] Descending,{_usn4}[..$#usn7] Ascending Skip @usn6 Contains Null Merge `7esn`=Shortestpath((((`6esn` {``:`4esn`[usn1]})<-[:`6esn`{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},`6esn`:``[..$#usn7]}]->({_usn4:False[0Xa..$usn1]})-[`8esn`?{`3esn`:'s_str'[..0X7]}]-(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]})))) On Match Set `4esn`+=$`8esn`[0xabc][Null],@usn5+=0.0 In `6esn` In $@usn5"), + octest_legacy:ct_string("With *,`7esn`[0..$usn2][{usn2}..0.e0],[9e1[123456789..]] In Reduce(`1esn`=12[..$@usn6],`` In {`1esn`} Starts With @usn6|00[..$123456789][..$`5esn`]) In Case When {``}[010] Then {`3esn`} Is Null End As _usn4 Order By 9e0 In usn1 Ascending Limit True[..010] Merge `8esn`=(`6esn` {``:`4esn`[usn1]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]->(#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``}) On Create Set @usn6+={7}[$123456789..{1000}][$`3esn`..`7esn`],Extract(#usn7 In 0Xa[@usn5][{`7esn`}] Where $@usn5 In $usn2 In {1000}|{`2esn`}[..{@usn6}][..1.e1]).`3esn`! =$@usn6[$0..usn1][0X0123456789ABCDEF..$999] On Create Set Extract(usn1 In 12.e12 In {0} In 9e1 Where False Starts With 010|True Starts With $`4esn` Starts With 12e12).`7esn`? =0X0123456789ABCDEF Is Null Is Null,`4esn` =`3esn` In {@usn6} Foreach(`7esn` In All(#usn7 In 123.654 Starts With $`` Where 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF) =~[`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]|{#usn8}[2.12]] =~Reduce(usn1=12.0[2.12..][{`5esn`}..],_usn3 In {@usn5}[..#usn7]|1000[$7..$123456789])| Return {`8esn`}[0X7][$`3esn`] As `6esn`,{`4esn`:12 Starts With {_usn4} Starts With $#usn8} =~Reduce(@usn5=$@usn6 =~#usn8,`5esn` In $`2esn`[12.e12][$@usn5]|{`1esn`} In 12.e12 In 9e1) As #usn7,``[$0..][`1esn`..] As `4esn` Skip None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False)[Shortestpath(((({``:$7[{`1esn`}]})<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`)<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(#usn7 :@usn6))))..Extract(_usn3 In True[7][$999] Where $7 Is Null Is Null)][{`4esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:.e12 Is Null Is Null}..[`6esn` In Count(*) Ends With $`` Ends With {7} Where `1esn` =~1000 =~1000]] Return $1000[\"d_str\"..$999][$`3esn`..{`3esn`}] As `6esn` Skip `8esn` Limit 9e1[9e1...e0])"), + octest_legacy:ct_string("Foreach(@usn5 In {`1esn`}[`6esn`..12e12]| Delete 123456789 Starts With {999},{_usn4}[{``}..],{``}[_usn4..$`1esn`]) Optional Match ((:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})<-[? *..0Xa]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[?:`6esn`$usn1]->(_usn4 )),@usn5=((@usn5 :`8esn`:@usn5)<-[:`1esn`|:`3esn` *07{@usn6:$#usn7 Ends With 0.12 Ends With {@usn6}}]-(`6esn` {``:`4esn`[usn1]})<-[@usn6?:`8esn`|:_usn4 *0X7..0Xa{`3esn`:9e1 =~999}]-(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]})) Using Scan `3esn`:_usn3 Using Join On `3esn` Where {0}[False..@usn5] Return Distinct *,$1000[..{`7esn`}][..#usn7] Order By [1.e1 =~$usn2,1000][[_usn4 In 0.0[..{999}][..0.0] Where 12.e12[{7}..7]]..][All(_usn4 In `2esn` Where $0[`7esn`])..] Asc,`3esn`[$@usn5..@usn5][9e1..$``] Desc,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Descending Skip `2esn`[$1000..9e12][{#usn8}..{7}] Limit [`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]][Reduce(_usn4=$0 Is Not Null,`2esn` In {999} Is Not Null|12.e12[2.12..][0xabc..])..][None(`6esn` In 00 Where {@usn5} Starts With 1.0 Starts With 00)..] Union All Load Csv With Headers From 12[12e12] As _usn4 Fieldterminator \"d_str\" Optional Match ((usn2 :_usn3)<-[?:_usn4|:usn1 *..00{`1esn`:{#usn8}[2.12]}]->(:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn8:#usn7|`2esn`]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})),((`8esn` :`8esn`:@usn5)<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})) Where {`3esn`} Is Null"), + octest_legacy:ct_string("Unwind \"d_str\"[{999}..] As usn1 Union Unwind [12e12,123.654 Starts With $``,`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]][Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where `3esn`[..{_usn4}][..{@usn5}])..] As `7esn` Match `7esn`=Shortestpath((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}))),`6esn`=Allshortestpaths((usn2 )-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})) Using Index ``:#usn7(`1esn`) Return Distinct *,Case 0xabc[$@usn5] When 9e1[$_usn4..0xabc] Then $12[{7}..0X0123456789ABCDEF] When 01 =~$`1esn` Then {1000}[\"d_str\"..{@usn5}][$1000..$#usn8] Else 1.e1[_usn4..][07..] End Is Not Null As usn2 Skip {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] Limit 0Xa[.._usn3][..$`6esn`]"), + octest_legacy:ct_string("Merge ((`4esn` :usn2:`2esn`)) Start `1esn`=Rel:@usn5({usn1}) Merge (({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})) Union Merge @usn6=((usn1 :`5esn`:@usn5)-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:usn2:`2esn`{usn1:$7 Is Null Is Null})-[? *01..07]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]})) On Create Set (`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]})<-[`7esn`?:#usn7|`2esn` *01..07]-(`1esn` :usn2:`2esn`{`1esn`:{_usn3}[$usn2..],_usn3:$@usn6 Starts With $@usn5})<-[`6esn`?:@usn6|`` *01..07{usn2:usn1 Contains $7 Contains $``,@usn6:`7esn` Starts With 0X7 Starts With $`7esn`}]-(`` :_usn4)._usn4! =Filter(`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0}) =~({`1esn`:{123456789}[12..][$12..]})-[?:`1esn`|:`3esn`{@usn5:{`6esn`} Ends With 0e0 Ends With {``},@usn5:{`1esn`} Starts With `4esn` Starts With {0}}]->(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[`5esn`?:`7esn`]->({@usn5:Count ( * ) Is Null}) With 9e12 Is Not Null,(`8esn` :`8esn`:@usn5)<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]->(#usn7 :`2esn`)-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Is Null Is Null Order By Count ( * )[00] Ascending Skip True[..010] Limit 0e0 Starts With $@usn6 Starts With $`6esn`"), + octest_legacy:ct_string("Return Distinct Case $1000[..12.0][..0e0] When `3esn` Is Not Null Is Not Null Then 12.e12[{7}..7] When Count(*) In {``} Then 12[..$@usn6] End[..All(#usn7 In 0Xa[@usn5][{`7esn`}] Where 1e1[1.e1..][123.654..])][..[0.0 =~12.e12 =~1.0,$`7esn` Is Null Is Null,``[..$#usn7]]],[usn1 In 12.e12 In {0} In 9e1 Where Count(*) In 0e0 In 9e1] Is Null As _usn3,`1esn`[..\"d_str\"][..$`5esn`] As `6esn` Order By Case True[$123456789][`8esn`] When 12.e12[{@usn5}..][9e1..] Then 12.e12[`7esn`] Else {`2esn`}[Count(*)] End Ends With (`` :`7esn`)<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]}) Ends With None(`1esn` In `3esn`[07..]) Descending,0X0123456789ABCDEF[7...e0][`1esn`..usn2] Asc Limit {999} Is Not Null Unwind 9e12 Is Not Null Is Not Null As @usn5 Optional Match (((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`}))),#usn7=(($`5esn`)) Using Scan #usn7:_usn3 Using Index `6esn`:`7esn`(#usn8)"), + octest_legacy:ct_string("Return Distinct ``[$0..][`1esn`..] Limit usn1[0] Union Merge ((`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})) On Create Set `4esn` ={999} Ends With {`5esn`} Ends With {0} Merge ((:`3esn`:`6esn`{`1esn`:12 Starts With 0x0})) On Match Set _usn3 =$`` Starts With 12 Starts With $usn2,@usn5+=$@usn6[$`8esn`..][7..] With Distinct *,#usn8 Is Not Null,$usn2 Starts With $@usn6 Starts With 010 As _usn4 Where $`1esn` Is Not Null Is Not Null"), + octest_legacy:ct_string("With Distinct *,$`8esn` In $`2esn` In {7} As _usn3 Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,1.e1 =~$`1esn` Ascending,12.e12[..1e1] Asc Skip [$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]][..Case {#usn8}[#usn7..{`2esn`}] When $7 Is Not Null Then $@usn6[$`8esn`..][7..] When $`4esn`[..'s_str'][..`8esn`] Then `7esn` Contains {@usn5} Contains $123456789 Else 12.e12 In $0 In $0 End] Where {`5esn`} Contains 's_str' Contains 9e1 Detach Delete #usn8 Is Null,1e1 Starts With 9e1 Starts With {`4esn`} Return Distinct *,$_usn4[$`4esn`..$12],{`5esn`} Starts With 12.0 Order By @usn5 =~`` Asc Union Match Allshortestpaths(((:`8esn`:@usn5{`5esn`:$`8esn`[..$999][..0],#usn7:$1000 =~{1000} =~`5esn`}))) Using Index `6esn`:`2esn`(`1esn`) Return Distinct $999[07..{#usn7}][1e1..0xabc] As #usn8,{1000}[{#usn8}] As `2esn` Limit Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..]) Starts With [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]|Count ( * )[..12][..{@usn6}]] Starts With Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where True Starts With $`2esn` Starts With {@usn6}) Delete [`3esn` =~9e0 =~@usn6] In Shortestpath((:_usn4{`4esn`:#usn7 Starts With 1000 Starts With .e1})) In Filter(_usn4 In `2esn` Where #usn8[`7esn`..]),`5esn` In 12e12 In `8esn`"), + octest_legacy:ct_string("Return Distinct $@usn5[{_usn3}][$#usn7] Order By Case True[$123456789][`8esn`] When 12.e12[{@usn5}..][9e1..] Then 12.e12[`7esn`] Else {`2esn`}[Count(*)] End Ends With (`` :`7esn`)<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]}) Ends With None(`1esn` In `3esn`[07..]) Descending,`3esn`[..0.e0][..$usn1] Descending,Shortestpath((_usn3 :@usn5)) Is Not Null Desc Skip {_usn3}[`3esn`..$#usn8] Create usn2=Allshortestpaths((({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]}))),(((`2esn` :@usn5{`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]-(:usn1:_usn4{`4esn`:01234567 In $123456789})-[`8esn`?]->({@usn6:$`` Starts With 12 Starts With $usn2}))) Union Create Unique usn2=(((:`2esn`{`4esn`:`3esn` Is Not Null Is Not Null})-[?:#usn7|`2esn` *0x0..]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5))) Match @usn6=((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1))"), + octest_legacy:ct_string("Foreach(_usn4 In 07 Starts With True Starts With 's_str'| Optional Match (:`5esn`:@usn5{`5esn`:`2esn`[$1000..9e12][{#usn8}..{7}]}),`1esn`=(((#usn8 :#usn7)-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000}))) Using Join On `6esn`,_usn4 Where $7 In @usn5 In {@usn5} With {#usn8} Is Null Is Null As `1esn`,$7 In @usn5 In {@usn5},`1esn`[Null..] As `2esn` Order By ({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]})<-[`5esn`?:`7esn`]->(:@usn5)<-[`4esn`:`4esn`|:#usn7{`2esn`:{`4esn`}[$_usn4..][9e0..]}]-({usn2:`1esn` In 07}) =~Reduce(@usn6=`3esn` =~9e0 =~@usn6,_usn3 In True[7][$999]|$`8esn`[..$999][..0]) =~{@usn5:12 Is Not Null,`2esn`:$999 In 999} Descending,{`4esn`}[..07][..$`6esn`] Ascending Limit (`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-({#usn7:#usn8 =~{999}}) In Shortestpath(((:`1esn`)<-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})-[`7esn`? *123456789..0X7{`6esn`:{0}[..{`7esn`}]}]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})))) Load Csv From $`5esn` =~.e12 =~2.12 As _usn4 Start `2esn`=Relationship:_usn4(usn1={_usn4}) Where {`7esn`}[0X7..][0x0..] Union All Unwind {7} Starts With $usn1 Starts With 1.0 As #usn7 Union All Unwind Reduce(`1esn`=12[..$@usn6],`` In {`1esn`} Starts With @usn6|00[..$123456789][..$`5esn`])[Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where {@usn5} Is Null)] As _usn3"), + octest_legacy:ct_string("Using Periodic Commit 0X0123456789ABCDEF Load Csv With Headers From @usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2) As @usn6 Match #usn7=Allshortestpaths((:`5esn`:@usn5{#usn8:123.654[$`1esn`..Null][1000..{_usn3}],`6esn`:12.0 =~$#usn7 =~9e12})-[`1esn`:usn2|#usn7{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})) Where {#usn8}[$#usn7..] Match _usn3=(@usn6 :@usn6),usn2=((_usn4 :#usn7{`8esn`:$999 Contains {7}})<-[`4esn`:`4esn`|:#usn7{`2esn`:{`4esn`}[$_usn4..][9e0..]}]-(`6esn` )) Using Index `3esn`:#usn7(usn2)"), + octest_legacy:ct_string("Merge _usn4=((@usn5 {``:`3esn` =~9e0 =~@usn6})<-[`2esn`? *..010]-(`6esn` :usn2:`2esn`{`3esn`:{@usn5} =~_usn4 =~0.12,`7esn`:0e0 Contains `3esn` Contains `7esn`})) Create Unique ``=Shortestpath((((`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})))),`6esn`=(({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})) Union Merge #usn8=Allshortestpaths((((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`})))) On Create Set [0X0123456789ABCDEF Contains $`1esn` Contains 1000].``! =1000[$7..$123456789] On Create Set Filter(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $7[{`1esn`}]).``! =$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,exists($`5esn`[`4esn`][_usn3]).@usn5 =$7[{`1esn`}],`2esn`({1000}[1000][$usn1]).`8esn`! =_usn4[['s_str'[..0X7],False Contains 0.e0 Contains Count(*)]..]"), + octest_legacy:ct_string("Create Shortestpath((`8esn` :_usn3)<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]->(`4esn` {_usn4:@usn5 Is Not Null Is Not Null})-[{``:\"d_str\"[{`8esn`}..]}]-(`2esn` :#usn8{@usn6:`7esn` Ends With $_usn3 Ends With usn2,_usn4:{12} Starts With #usn8 Starts With 0e0})),(((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[`6esn`?]-(`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}))) Union All Detach Delete {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}[Any(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3}[..$`8esn`])],$123456789 Contains [True Starts With $`2esn` Starts With {@usn6}] Contains {@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]},.e12[{_usn4}..] Union With 0.12 Starts With 9e12 Starts With $`1esn`,{`2esn`} Starts With @usn6 As `3esn` Order By 07[$#usn8] Descending,Case True[$123456789][`8esn`] When 12.e12[{@usn5}..][9e1..] Then 12.e12[`7esn`] Else {`2esn`}[Count(*)] End Ends With (`` :`7esn`)<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]}) Ends With None(`1esn` In `3esn`[07..]) Descending Limit \"d_str\" Starts With $`8esn` Starts With {usn1} Where 123.654[{`7esn`}][{7}] Return `3esn`(Distinct 12.e12[``..usn2][{#usn7}..@usn5],1000 Is Not Null) In {`1esn`:@usn6[$usn2..#usn7]},{123456789}[..'s_str'][..$@usn6] As #usn7 Skip ({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01})[(`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(usn2 )] Limit Reduce(#usn8=``[00..$7],_usn4 In 0.0[..{999}][..0.0]|12 Starts With $#usn7) =~usn1() =~Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where 999 Ends With .e12 Ends With .e1|0[`4esn`][12.e12])"), + octest_legacy:ct_string("Create Unique (_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})-[:_usn4|:usn1{`6esn`}]->(`8esn` :`7esn`),Shortestpath(((:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})-[?:`1esn`|:`3esn` *999{usn1:0[{@usn5}..][7..],`7esn`:{``}[_usn4..$`1esn`]}]->(`3esn` :`8esn`:@usn5{@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]}))) Union All Detach Delete 07 Is Null,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Match `8esn`=((@usn6 :#usn7{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})<-[?:#usn7|`2esn` *0x0..]->({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) Using Scan #usn7:usn2 Using Scan `7esn`:#usn8 Foreach(`6esn` In Count(*) Is Not Null| Unwind [0X0123456789ABCDEF[$999..][@usn5..]] Contains Reduce(#usn7={12}[999][{_usn3}],`2esn` In {999} Is Not Null|$usn1 =~010 =~07) Contains None(`1esn` In `3esn`[07..]) As @usn5) Union All Return Distinct *,0x0[$`8esn`.._usn3],True[$123456789][`8esn`] As @usn5 Skip 0.0[9e1..][Null..]"), + octest_legacy:ct_string("With 's_str'[_usn3..] As `5esn`,{0}[False..@usn5] As `1esn` Order By {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Desc,01234567[{`7esn`}..] Descending,[{7} Contains $123456789,$``[..1.e1][..12],$`5esn`[..{`2esn`}][..{0}]] =~`3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]) =~{`6esn`:{`3esn`} Ends With `1esn` Ends With $@usn6,@usn6:$usn1 In 0.12 In $``} Descending Skip .e0[..{`5esn`}][..999] Limit {`8esn`:`2esn` Starts With `` Starts With 1e1} In [usn1 In 00 In {_usn3}] In Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) Where $`6esn` Starts With 12.e12 Starts With $#usn7 Union Optional Match `5esn`=((`8esn` :@usn6)),`8esn`=Shortestpath(({`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})) Using Scan @usn6:@usn6 Foreach(#usn7 In `1esn` Is Null Is Null| Start @usn6=Node( {`8esn`}) Where `4esn`[usn1]) Unwind {`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1}[Reduce(`6esn`=$12 Contains 0Xa,`6esn` In 00|$`4esn`[..'s_str'][..`8esn`])][Shortestpath(((:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})-[:usn2|#usn7 *0X7..0Xa]->(#usn7 :@usn5)-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})))] As usn1"), + octest_legacy:ct_string("Using Periodic Commit 12 Load Csv From `1esn` In 07 As @usn5 Fieldterminator 's_str' Load Csv With Headers From #usn7 Contains {`3esn`} Contains $`6esn` As `` "), + octest_legacy:ct_string("With Distinct _usn4 Is Null Is Null,$`5esn` Is Not Null As _usn4 Order By Shortestpath((`6esn` :`7esn`)-[:_usn3|`8esn` *12..{`8esn`:Count(*)[.e12..],`5esn`:{#usn8}[12.0][$@usn6]}]-(`1esn` {_usn4:`3esn`[_usn4..{0}][`5esn`..usn2]})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`)) Contains Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) Ascending,({`8esn`:Null In .e0})-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}) =~None(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) =~(`6esn` :`2esn`{`7esn`:#usn8 =~{999}})<-[:#usn7|`2esn`]->(:#usn7{usn2:{`8esn`}[0X7][$`3esn`]}) Ascending Skip {`4esn`}[$123456789] Limit Single(`6esn` In 00 Where 0.12 In 0X7)[..{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] Where 0.12 Ends With {1000} Ends With `6esn` Load Csv From 00 As _usn4 Union All Start usn1=Node:_usn4({`8esn`}) ,_usn3=Relationship:#usn8('s_str') Load Csv From usn2 Ends With Count ( * ) Ends With $@usn6 As @usn5 Fieldterminator 's_str'"), + octest_legacy:ct_string("Load Csv With Headers From 12[12e12] As _usn4 Fieldterminator \"d_str\" Optional Match ((usn2 :_usn3)<-[?:_usn4|:usn1 *..00{`1esn`:{#usn8}[2.12]}]->(:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn8:#usn7|`2esn`]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})),((`8esn` :`8esn`:@usn5)<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})) Where {`3esn`} Is Null Union All Merge ((`2esn` {_usn4:`4esn`[usn1]})<-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(:_usn4)) On Match Set `6esn` ={1000},`` =All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.e12[$`8esn`..{`8esn`}]) Is Null,All(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]).`4esn`! =01234567[{`7esn`}..]"), + octest_legacy:ct_string("With *,_usn3(Distinct 07[..`6esn`][..'s_str'],123456789 Starts With {@usn6} Starts With $12) Is Null,[@usn5[..$@usn5][..0Xa],{`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`]] In Filter(_usn4 In 0.0[..{999}][..0.0] Where True Starts With $`4esn` Starts With 12e12) As `8esn` Skip [`6esn` In 00 Where 0.12 In 0X7|{999} Is Null][Allshortestpaths((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]}))][Case {999}[$123456789..][12..] When $@usn6 =~#usn8 Then $999 Contains {7} When False Starts With 010 Then `8esn` Starts With {123456789} Else True Is Not Null Is Not Null End] Where .e1[..{`7esn`}][..{_usn3}] Load Csv With Headers From 010 Ends With 01 Ends With {_usn3} As #usn8 Fieldterminator 's_str' Delete False Contains $#usn8 Contains 9e1,0xabc[9e12][0X0123456789ABCDEF],12.e12[{@usn5}..][9e1..] Union All Merge @usn6=((_usn4 :#usn8)<-[:#usn8|`2esn` *123456789..0X7{``:$#usn7 =~{12} =~False,`5esn`:{1000} In {123456789}}]->({`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF})<-[{``:\"d_str\"[{`8esn`}..]}]-(:#usn7{#usn7:$`8esn` In $`2esn` In {7}})) Detach Delete $@usn5 In 's_str' In $12,Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]}))) Ends With Case When $``['s_str'..][0x0..] Then 9e12[..0X7] Else $1000[..$999] End,{`7esn`} Ends With `` Ends With {`8esn`} Union Start #usn8=Relationship:usn1({7}) ,`5esn`=Relationship:_usn4(usn1={_usn4})Where .e12 Ends With 1000 Ends With 010 Remove Reduce(_usn4=$0 Is Not Null,`2esn` In {999} Is Not Null|12.e12[2.12..][0xabc..]).``! Delete $`7esn` Contains {`1esn`} Contains 9e12,2.12[..$_usn4]"), + octest_legacy:ct_string("Unwind `8esn` As `5esn` Foreach(`5esn` In $_usn4 Is Null Is Null| Create _usn4=((`2esn` :@usn6)-[_usn3?:@usn6|``]-(usn2 )<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})),`5esn`=Allshortestpaths(((:_usn4)<-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]->(_usn4 {_usn3:`1esn`[..00][..{7}]}))) Remove (`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]}).`1esn`?,[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000].usn1?,{`4esn`:0.12 In 0X7}._usn4!) Create `2esn`=Shortestpath((((`1esn` {usn2:12 Is Not Null,`4esn`:`1esn`[..01]})-[_usn3?:@usn6|``]-(usn1 :@usn5)-[``?:usn2|#usn7 *0x0..]-(@usn5 :usn1:_usn4)))),``=({#usn7:#usn8 =~{999}})-[{`7esn`:01234567 In $123456789}]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Union Merge (((`8esn` {_usn4:{usn1} In Count ( * )})<-[``?:`3esn`|:@usn5{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(:`5esn`:@usn5)<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07}))) Match @usn6=((`8esn` :`5esn`:@usn5)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null})),`4esn`=(`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})-[?:@usn6|`` *..0Xa]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]}) Where .e12[$#usn8..@usn6]"), + octest_legacy:ct_string("Optional Match `3esn`=Allshortestpaths((`7esn` :@usn6)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]})),usn1=(({`3esn`:12 Starts With 0x0,`8esn`:0X7[0.e0][{`4esn`}]})-[`5esn` *0x0..]->(`8esn` :#usn7)) Using Index `3esn`:#usn8(`2esn`) Where $`2esn` In {123456789}"), + octest_legacy:ct_string("Using Periodic Commit 01 Load Csv With Headers From {_usn4} Is Null As `` Start `4esn`=Rel:`1esn`(@usn5={`5esn`}) Where True[7][$999]"), + octest_legacy:ct_string("Start `5esn`=Node:`6esn`(usn2={`8esn`}) "), + octest_legacy:ct_string("Create Unique (:`5esn`:@usn5{`5esn`:`2esn`[$1000..9e12][{#usn8}..{7}]}) Union All Detach Delete $`3esn`[{``}..] Start `6esn`=Node:@usn6(`3esn`='s_str') Where True Is Not Null Union All Unwind {`5esn`}['s_str'..] As `2esn` Delete Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF)[Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6)..Shortestpath(((_usn3 {@usn5:.e12 =~.e0})-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})-[`5esn`?:@usn5|:`7esn`]-(:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01})))][Shortestpath(((`6esn` :`7esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})))..Reduce(usn2=Null In .e0,_usn3 In {`2esn`} Ends With {12} Ends With 7|{0}[..{`7esn`}])]"), + octest_legacy:ct_string("Unwind _usn4 Contains 0X0123456789ABCDEF Contains {_usn4} As `2esn` Start `4esn`=Node(01234567,0Xa,07) Union All Foreach(usn1 In {`4esn`}[{`4esn`}..999]| Create (`4esn` :`4esn`:@usn6) With Distinct 0Xa Contains #usn8 Contains 1000 Order By {#usn8} Contains 1000 Contains $`4esn` Ascending,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Ascending Skip ({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..`2esn`(Distinct #usn8[`7esn`..])][..[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]]]) Match ((()-[?:`3esn`|:@usn5 *0x0..{`3esn`:.e1[0.12],`7esn`:$123456789 Starts With .e12}]-(:`6esn`:`8esn`{@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]})-[?:usn2|#usn7]-(`1esn` {#usn7:Count ( * )[$12..]}))),((`4esn` {`1esn`:9e12 Is Not Null Is Not Null})-[?:`7esn` *999{@usn6:{``} Ends With .e12 Ends With 0.e0,`5esn`:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})) Using Scan #usn7:`3esn` Return Distinct *,1.e1 =~$usn2 Skip Allshortestpaths((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})<-[`1esn`?]->(:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}}))[Case When 123.654[$`1esn`..Null][1000..{_usn3}] Then ``[$0..][`1esn`..] When 00 Ends With `8esn` Then $usn2 Is Null Is Null Else $999 Is Null End..``(999 Starts With 's_str',1e1[1.e1..][123.654..])][Single(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{usn2:{1000},`6esn`:#usn8[`7esn`..]}] Union All Unwind {usn2} =~@usn6 =~{`4esn`} As `1esn` Match `2esn`=Allshortestpaths((({`6esn`:1.e1[12e12..{`6esn`}]})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}))) Using Scan `8esn`:`8esn` Return Distinct .e1 Ends With {7} Ends With $usn1 As `` Skip Extract(_usn3 In {@usn5}[..#usn7] Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000|$`1esn`[#usn8][$@usn5]) Is Not Null Limit `8esn` Contains 1e1"), + octest_legacy:ct_string("Detach Delete `4esn` Is Not Null Is Not Null"), + octest_legacy:ct_string("Return {usn1}[{`5esn`}..] As @usn5,12 Starts With {_usn4} Starts With $#usn8,False Contains $#usn8 Contains 9e1 As _usn3 Order By {`8esn`} Is Not Null Is Not Null Ascending,_usn3 =~123.654 Asc,$1000 Is Null Is Null Asc Skip 1e1[..$1000][..999] Merge `5esn`=(`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})<-[usn2 *07{usn1:07 =~@usn5}]->(_usn4 {`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}) With Distinct _usn4 Is Null Is Null,$`5esn` Is Not Null As _usn4 Order By Shortestpath((`6esn` :`7esn`)-[:_usn3|`8esn` *12..{`8esn`:Count(*)[.e12..],`5esn`:{#usn8}[12.0][$@usn6]}]-(`1esn` {_usn4:`3esn`[_usn4..{0}][`5esn`..usn2]})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`)) Contains Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) Ascending,({`8esn`:Null In .e0})-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}) =~None(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) =~(`6esn` :`2esn`{`7esn`:#usn8 =~{999}})<-[:#usn7|`2esn`]->(:#usn7{usn2:{`8esn`}[0X7][$`3esn`]}) Ascending Skip {`4esn`}[$123456789] Limit Single(`6esn` In 00 Where 0.12 In 0X7)[..{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] Where 0.12 Ends With {1000} Ends With `6esn` Union Load Csv With Headers From 999 As `4esn` Fieldterminator 's_str' Create Unique (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` )) Merge Allshortestpaths((@usn6 :usn1:_usn4)) On Match Set usn1 =Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))) =~Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) Union All Load Csv With Headers From 9e1['s_str'..0xabc] As usn2 "), + octest_legacy:ct_string("Foreach(@usn5 In 0Xa[Reduce(`7esn`={@usn5} Is Null,#usn7 In 0Xa[@usn5][{`7esn`}]|0e0[0X0123456789ABCDEF..010][$@usn6..010])..$#usn7]| Return Distinct usn1[0] As ``,9e12 Is Not Null Is Not Null Order By {`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] Desc Limit 9e0 In usn1 With Distinct *,0X0123456789ABCDEF Contains {usn1} As @usn5 Order By (:usn1:_usn4)<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[usn2?:`2esn`*..]-(:`5esn`:@usn5{``:0.12[..$`6esn`][..$1000]}) Starts With Reduce(`8esn`=00[..$123456789][..$`5esn`],`` In {`1esn`} Starts With @usn6|False[999]) Starts With [`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]] Descending,`2esn`(Null In .e0)[_usn3(Distinct {@usn6}[$`7esn`..][False..])..[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]]] Asc,(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[#usn7?:@usn6|``{123456789}]->(usn1 :`8esn`:@usn5)<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})[..[12.e12 In {0} In 9e1,9e1 =~`` =~{`7esn`},0X0123456789ABCDEF[0X7..]]][..All(`1esn` In `3esn`[07..] Where `7esn`[0..$usn2][{usn2}..0.e0])] Asc Skip #usn7[00] Limit Shortestpath(((usn1 {``:.e12 =~$_usn4})))[`6esn`(_usn3 Contains .e0 Contains {usn2},`3esn`[07..])][[.e12 Ends With 1000 Ends With 010,Count(*)]])"), + octest_legacy:ct_string("Foreach(`8esn` In {`2esn`}[..{@usn6}][..1.e1]| Return Distinct *,0X7[0.e0][{`4esn`}],usn1 Contains $7 Contains $`` Limit usn2 In `2esn` In $`7esn`) Merge (`` :``)-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(`2esn` :_usn3) On Match Set {#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]}.usn1 =(#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..],Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where `7esn` Starts With 0X7 Starts With $`7esn`).`4esn` =$@usn6[..123.654],_usn4:`4esn`:@usn6 With {_usn3} Contains $`1esn` Contains 12.0 Order By 1e1[..01] Descending,Any(`1esn` In `3esn`[07..] Where .e1 Starts With $_usn4 Starts With {`1esn`}) Starts With 0x0 Descending Skip $@usn5[usn2..][$0..] Limit ({usn1:0[{@usn5}..][7..],`7esn`:{``}[_usn4..$`1esn`]})<-[@usn5:`8esn`|:_usn4]->(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(_usn4 :_usn4) In (`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})<-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]->(`4esn` :#usn7)<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}) In Allshortestpaths((((:`7esn`{`1esn`:{1000} In {123456789},`4esn`:010 In `1esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)))) Where $``['s_str'..][0x0..] Union Load Csv With Headers From {_usn4}[{usn1}..$_usn3] As `3esn` Fieldterminator 's_str' Union All Start ``=Relationship:usn1({999}) "), + octest_legacy:ct_string("Merge `4esn`=Allshortestpaths(((`4esn` :`1esn`)-[`6esn`?*..{`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}]->({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6}))) Union All With Distinct *,Shortestpath(((usn1 {``:.e12 =~$_usn4})))[`6esn`(_usn3 Contains .e0 Contains {usn2},`3esn`[07..])][[.e12 Ends With 1000 Ends With 010,Count(*)]] As #usn8 Skip {_usn4}[{``}..] Union Unwind 0xabc[9e12][0X0123456789ABCDEF] As _usn4"), + octest_legacy:ct_string("Create (({@usn5:``[{123456789}..]})-[`3esn`:`6esn`{`3esn`}]-({`1esn`:$123456789[..$7][..$`6esn`]})<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`)) Match Shortestpath((`7esn` {`3esn`:0.0 =~12.e12 =~1.0,`1esn`:$usn1 Starts With {_usn3}})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]-({`7esn`:123.654 Ends With usn2 Ends With 0})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})) Using Scan _usn3:`4esn` Using Scan `2esn`:`1esn` Where $123456789 Starts With $123456789 Starts With Count ( * ) With Distinct None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False)[[9e1[$_usn4..0xabc],{@usn6}[$`7esn`..][False..],#usn8 In `8esn` In 07]..Any(_usn4 In `2esn` Where $999 Is Null)] As `3esn`,`7esn`[{7}..@usn5],usn1 Is Null Is Null Order By `6esn` Is Null Is Null Asc,1e1 =~#usn8 =~2.12 Ascending,1e1[{_usn4}..123.654] Asc"), + octest_legacy:ct_string("Return Reduce(`4esn`=$0[$1000..00][{0}..{usn1}],@usn5 In Null =~12e12|_usn4 Is Null) Is Not Null Is Not Null Limit $_usn4[9e0..]"), + octest_legacy:ct_string("Remove [#usn7 In 0Xa[@usn5][{`7esn`}] Where 0[`4esn`][12.e12]].@usn6,Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 1.e1[0X0123456789ABCDEF..]).#usn7?"), + octest_legacy:ct_string("Unwind Reduce(@usn6=@usn5[$12..\"d_str\"],`` In {`1esn`} Starts With @usn6|Count ( * ) =~{`5esn`} =~{_usn4}) Starts With None(`1esn` In $12 Is Not Null Where `7esn` Is Not Null Is Not Null) Starts With [$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null] As `2esn`"), + octest_legacy:ct_string("Remove ``(Distinct 1.e1 Starts With $`2esn` Starts With $0).`7esn`?,[{7}[$7..],``[..$#usn7],01234567[$7..{12}]].`` Create Unique `7esn`=(({@usn6:$`` Starts With 12 Starts With $usn2})) Create ((_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->(`` {``:0x0 =~123.654 =~{999}})-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->(:`3esn`:`6esn`{@usn5:.e12 =~.e0})),(((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4})))"), + octest_legacy:ct_string("Return Distinct {#usn8}[12.0][$@usn6],$usn2 In 123.654 In .e0,{@usn6}[$`7esn`..][False..] Skip .e12[$7..][{`6esn`}..] Limit $12 Is Not Null Foreach(`1esn` In Allshortestpaths(((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}))) Starts With All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`)| Load Csv With Headers From 12[12e12] As _usn4 Fieldterminator \"d_str\")"), + octest_legacy:ct_string("Match Allshortestpaths(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}) Using Scan `1esn`:_usn4 Merge `2esn`=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`))) On Match Set `6esn`+={`8esn`}[Null..][{`8esn`}..],_usn4+={#usn8} =~{999} =~{#usn7} On Match Set usn1 =[usn1 In 12.e12 In {0} In 9e1 Where {usn1} In Count ( * )][{_usn3:.e1 Ends With 0Xa Ends With .e1,`2esn`:12e12 Starts With `1esn` Starts With usn2}..] Union Merge (usn1 :usn2:`2esn`{`1esn`:{123456789}[12..][$12..]}) On Create Set usn2 =_usn4 Contains 0X0123456789ABCDEF Contains {_usn4},Shortestpath((({_usn4:0.12 Starts With 9e12 Starts With $`1esn`})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})<-[@usn6?:#usn7|`2esn` *12..{#usn8:12 Starts With 7 Starts With $`5esn`}]->(usn2 {_usn3:$0 In _usn4}))).@usn5? ={123456789}[{12}..],`2esn` =[`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*)][Extract(`` In {`1esn`} Starts With @usn6 Where $`7esn`[$``..][999..]|.e1 Contains $`3esn`)..Case When 's_str'[.._usn4][..``] Then 123.654 Starts With $`` Else 0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] End] On Match Set usn1 =1e1 =~#usn8 =~2.12,@usn6 =0e0[..1000] With Distinct {`5esn`}['s_str'..] As ``,Extract(_usn4 In `2esn` Where $999 Is Null) Starts With Reduce(`5esn`=00,`2esn` In {999} Is Not Null|{`4esn`}[..07][..$`6esn`]) Starts With [`8esn`[..`4esn`][..$usn1],{#usn8}[2.12]] As usn2,{#usn8} Is Null Is Null As `1esn` Order By ({usn1:0[{@usn5}..][7..],`7esn`:{``}[_usn4..$`1esn`]})<-[@usn5:`8esn`|:_usn4]->(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(_usn4 :_usn4) In (`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})<-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]->(`4esn` :#usn7)<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}) In Allshortestpaths((((:`7esn`{`1esn`:{1000} In {123456789},`4esn`:010 In `1esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)))) Desc,{_usn4}[{usn1}..$_usn3] Asc Skip $@usn5[$`4esn`][$@usn6] Limit $#usn7 Starts With 9e0 Starts With 2.12 Where $0 Is Not Null Create usn1=(({`7esn`:123456789[0..]})),`4esn`=Shortestpath((usn2 {_usn3:$0 In _usn4})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[{`2esn`:1000 Is Null Is Null}]->(:_usn4{`4esn`:`8esn` Contains $`3esn` Contains {`4esn`},_usn3:$12[{7}..0X0123456789ABCDEF]}))"), + octest_legacy:ct_string("Merge `5esn`=(`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})<-[usn2 *07{usn1:07 =~@usn5}]->(_usn4 {`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}) Optional Match Allshortestpaths((usn1 {usn2:#usn8 =~{_usn3} =~``})-[`5esn`?{`2esn`:`3esn`[07..],_usn3:{``} Is Null Is Null}]-(@usn5 )),Shortestpath((((#usn7 :@usn6{`8esn`:{@usn6}[True..{_usn3}],`1esn`:07 Is Null})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[`5esn`?:@usn5|:`7esn`]-(:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01})))) Where \"d_str\" Ends With False Ends With {@usn6} Load Csv With Headers From None(`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}])[[123.654[1e1..][{#usn8}..],$#usn7[123.654]]] As `8esn` Fieldterminator 's_str' Union All Load Csv With Headers From $1000[_usn4..$0][9e12..`3esn`] As @usn5 Match ({`4esn`:_usn4 Is Null Is Null,@usn6:{`5esn`} Contains 's_str' Contains 9e1})<-[? *0xabc..7]->(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6}) Using Scan `1esn`:`7esn` Using Join On `8esn`,`3esn`"), + octest_legacy:ct_string("Unwind 1e1[1.e1..][123.654..] As `7esn` Union All Optional Match _usn3=(({_usn4})),(((_usn3 :`3esn`:`6esn`)<-[`2esn`?{``:123.654 Starts With $``,``:{``} Ends With .e12 Ends With 0.e0}]-(:_usn3{0})<-[?:#usn8|`2esn` *01..07]->(:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]}))) Where {_usn3} Contains $`1esn` Contains 12.0 Load Csv With Headers From $0 In _usn4 As `6esn` Optional Match ((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})-[:`5esn`]-({`7esn`:@usn5[..$@usn5][..0Xa]})-[@usn5? *0x0..{`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}]-(_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null})),_usn3=Allshortestpaths(((_usn4 :#usn8))) Using Join On _usn3,`` Using Index usn1:@usn6(`3esn`)"), + octest_legacy:ct_string("Create Unique (`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`)"), + octest_legacy:ct_string("Start `6esn`=Node:_usn4('s_str') ,#usn8=Node:`2esn`({_usn3}) Create `3esn`=Allshortestpaths(((_usn3 {usn2:_usn3[$usn2..0]}))) Load Csv From 12 In 0e0 As _usn4 Fieldterminator \"d_str\" Union All Remove None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000).`2esn`? With Distinct {#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null As `8esn`,Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4])[Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End] As `7esn`,{_usn4} In {1000} As `1esn` Order By $@usn5[`1esn`..] Desc Limit #usn8['s_str'..][123.654..] Where 's_str' Starts With 12e12 Starts With $_usn4"), + octest_legacy:ct_string("Return *,{7}[$123456789..{1000}][$`3esn`..`7esn`] Limit $123456789[..$7][..$`6esn`] Start _usn4=Rel:_usn3(`1esn`='s_str') Where 12.e12[``..usn2][{#usn7}..@usn5] Start usn2=Relationship( {#usn7}) "), + octest_legacy:ct_string("Detach Delete 12 Contains 1.0 Contains 999 Remove Reduce(@usn6=0.e0[12.e12],_usn4 In `2esn`|True Starts With $`4esn` Starts With 12e12).@usn6? Unwind 9e12[$`5esn`] As @usn6 Union Merge Shortestpath(({`8esn`:0[$`6esn`...e1][`1esn`..$`7esn`]})-[#usn8:#usn7|`2esn`]->(:@usn6{`2esn`:$999 In 999})) On Match Set `7esn`+=Reduce(@usn5=True =~{`1esn`},_usn4 In 0.0[..{999}][..0.0]|7[$0..][{_usn4}..]) In Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`) In All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) On Match Set `6esn` ={_usn3}[usn1][0],Shortestpath((@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})).@usn5? =\"d_str\" Contains @usn6 Contains 12.e12,`7esn`+=`3esn`[..{_usn4}][..{@usn5}]"), + octest_legacy:ct_string("Delete {7}[$123456789..{1000}][$`3esn`..`7esn`],.e12 =~{`3esn`} =~{`7esn`}"), + octest_legacy:ct_string("Foreach(#usn8 In {1000}| Create Unique _usn4=((`2esn` :@usn6)-[_usn3?:@usn6|``]-(usn2 )<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}))) Match `5esn`=Shortestpath((_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null})<-[@usn5?:`8esn`|:_usn4 *0X0123456789ABCDEF{usn1:False Contains $#usn8 Contains 9e1}]->({@usn6:$usn1[0X7],`3esn`:$7[$`3esn`]})),`8esn`=((@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})) Using Index @usn5:usn2(`6esn`) Union All Remove (#usn7 :@usn6{`8esn`:{@usn6}[True..{_usn3}],`1esn`:07 Is Null})-[`3esn`:`6esn`{`3esn`}]-(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[`1esn`?:_usn3|`8esn` *0xabc..7]-(`4esn` :@usn6).@usn6 Delete .e1[..\"d_str\"],[0X0123456789ABCDEF[$999..][@usn5..]] Contains Reduce(#usn7={12}[999][{_usn3}],`2esn` In {999} Is Not Null|$usn1 =~010 =~07) Contains None(`1esn` In `3esn`[07..]) Match Allshortestpaths(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),_usn4=({`7esn`:123.654 Ends With usn2 Ends With 0})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->(:#usn8{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000}) Using Index #usn7:`8esn`(@usn6) Where 0Xa Contains $``"), + octest_legacy:ct_string("Match `3esn`=(usn1 {`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]}),($`5esn`)-[?:`3esn`|:@usn5]-(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Where $_usn4 Starts With 's_str' Starts With {7} Unwind .e12 Is Null Is Null As _usn4 Detach Delete 9e12 =~123456789 =~$999 Union All Match ({`4esn`:_usn4 Is Null Is Null,@usn6:{`5esn`} Contains 's_str' Contains 9e1})<-[? *0xabc..7]->(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6}) Using Scan `1esn`:`7esn` Using Join On `8esn`,`3esn` Start `5esn`=Node:`6esn`(usn2={`8esn`}) ,usn1=Node:`6esn`({`8esn`})Where {#usn7} Contains 0.0 Contains $0 Create _usn3=(({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})) Union Optional Match ({_usn4:0.e0[{999}][{`1esn`}]})<-[:`1esn`|:`3esn` *..0]->(:@usn5) Where \"d_str\" Is Null Is Null Remove Allshortestpaths(((:usn1:_usn4)-[`1esn`:`1esn`|:`3esn` *01..07{`3esn`:123456789 Is Not Null Is Not Null}]-(`1esn` {@usn5:$usn1 In 0.12 In $``})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`)))._usn4,All(`3esn` In 123.654[1e1..][{#usn8}..] Where .e1[0.12]).`6esn`!"), + octest_legacy:ct_string("Create Shortestpath((usn1 :usn1:_usn4)),Shortestpath((((#usn8 :@usn6)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4})-[:`3esn`|:@usn5]-(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})))) Create (((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4}))) Union All Foreach(@usn6 In 0Xa Contains Count ( * )| With Distinct {`5esn`} Starts With 12.0,Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End[None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])][count(Distinct $`5esn`[$#usn7..][0xabc..])] As `2esn`,0.e0 Contains .e0 Contains $@usn6 Order By $#usn7 Is Null Is Null Descending,Case When 0X0123456789ABCDEF[7...e0][`1esn`..usn2] Then $1000 Starts With $`8esn` Starts With {`5esn`} When usn2 =~0X7 =~{#usn7} Then {`2esn`} In $123456789 In True End[Single(_usn3 In True[7][$999] Where {usn2})][Any(_usn4 In 0.0[..{999}][..0.0] Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`)] Ascending Limit {usn2:_usn4 Is Null}[[True =~_usn3 =~123456789,0Xa[@usn5][{`7esn`}],{`1esn`} Starts With `4esn` Starts With {0}]..] Where {_usn3}[..$`8esn`] Create ``=(({`4esn`:1000 Is Null Is Null})),Allshortestpaths((((@usn6 {usn1:$#usn7 =~{12} =~False})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))))) Remove Shortestpath((:_usn3{@usn5:.e1[..\"d_str\"],#usn8:{`1esn`}[`6esn`..12e12]})<-[`7esn`?*..]-(usn1 :`1esn`{#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]})).`6esn`!,Case 12.e12[..1e1] When {1000}[{#usn8}] Then $@usn5[$`4esn`][$@usn6] Else 123456789 Ends With usn1 Ends With usn2 End.`5esn`"), + octest_legacy:ct_string("Start _usn3=Relationship:`1esn`(#usn7=\"d_str\") Union Detach Delete #usn7 Starts With $0 Starts With .e12,$_usn4[$`4esn`..$12],Reduce(@usn5=$`8esn`[..$999][..0],`` In {`1esn`} Starts With @usn6|{@usn6} Contains 123.654 Contains 01) Contains [`1esn` In `3esn`[07..] Where {0} =~12.0] Contains (:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[`3esn`:_usn3|`8esn`]->(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})"), + octest_legacy:ct_string("Start `2esn`=Node:`8esn`(`6esn`='s_str') Merge (((usn2 :_usn3)<-[#usn7{#usn8:{`1esn`} Is Not Null}]->(`8esn` {`3esn`:'s_str'[..0X7]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6))) Create Unique `7esn`=Shortestpath((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}))),`6esn`=Allshortestpaths((usn2 )-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})) Union All Foreach(`1esn` In 00| With *,None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12.e12[``..usn2][{#usn7}..@usn5]) In usn1({`1esn`} Starts With @usn6),$`8esn`[0e0..] As @usn5 Skip 0xabc[$999..][{#usn7}..] Limit $usn1 In 0.12 In $`` Remove {``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}}.`7esn`,(:usn2:`2esn`)<-[:@usn5|:`7esn`{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]}).`7esn`!,{`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}}.`3esn`?) Load Csv With Headers From {7}[$_usn4..Count ( * )] As `7esn` Fieldterminator \"d_str\" Optional Match Shortestpath((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Using Join On usn1,_usn4,`6esn` Using Index usn1:_usn3(``) Where {_usn3}[`3esn`..$#usn8] Union All Create Unique Allshortestpaths((:``{``:0x0 =~123.654 =~{999}})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})),_usn4=(usn2 {_usn3:$0 In _usn4})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[{`2esn`:1000 Is Null Is Null}]->(:_usn4{`4esn`:`8esn` Contains $`3esn` Contains {`4esn`},_usn3:$12[{7}..0X0123456789ABCDEF]}) Create Unique (`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})"), + octest_legacy:ct_string("Load Csv From {@usn5}[..{_usn4}][..$@usn5] As `3esn` Fieldterminator 's_str' Match `5esn`=(#usn8 :`6esn`:`8esn`{`1esn`:9e12 Is Not Null,_usn4:0X0123456789ABCDEF[$`2esn`..][`2esn`..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(_usn4 :_usn4)-[_usn3?:`8esn`|:_usn4{@usn6:{`1esn`}[`6esn`..12e12]}]-({``:.e1 Contains $`3esn`}),Allshortestpaths((((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`})))) Using Index usn2:usn1(`8esn`) Using Scan `2esn`:@usn6 Where .e1 Ends With {7} Ends With $usn1"), + octest_legacy:ct_string("Return *,Count(*) Ends With $`` Ends With {7} As _usn3 Skip All(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[{#usn7:Count ( * )[$12..]}..][`5esn`(Distinct False Starts With 010)..] Union Load Csv With Headers From $`2esn`[{usn2}] As #usn8 Create `3esn`=Shortestpath((`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})),Allshortestpaths(((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0}))) Unwind Shortestpath((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})-[`7esn`?:`6esn`]->(`1esn` :_usn4)-[#usn8:_usn3|`8esn`{`6esn`:`5esn` Is Null Is Null}]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))[Extract(`1esn` In `3esn`[07..] Where 999 Starts With 's_str')][Case `8esn` Contains $`3esn` Contains {`4esn`} When 9e1 Ends With $@usn5 Ends With $123456789 Then usn2[True] When 0.e0 =~`1esn` =~`6esn` Then usn2 =~0X7 =~{#usn7} Else 1.e1[..12.e12][..$usn2] End] As #usn7"), + octest_legacy:ct_string("Unwind 0x0[{7}..] As #usn7 Start _usn3=Node( {usn2}) ,`8esn`=Rel( {`7esn`})Where {0} Is Null"), + octest_legacy:ct_string("Match usn1=Shortestpath((:_usn3{@usn5:.e1[..\"d_str\"],#usn8:{`1esn`}[`6esn`..12e12]})<-[`7esn`?*..]-(usn1 :`1esn`{#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]})),`5esn`=Shortestpath((((:`7esn`{``:.e1 Contains $`3esn`})-[:_usn4|:usn1{`6esn`}]->(`8esn` :`7esn`)<-[`2esn`:#usn8|`2esn` *0xabc..7]-(usn1 :#usn8)))) Using Join On `5esn`,``,usn1 Where .e1 Ends With {7} Ends With $usn1 Union All Match #usn8=(:`5esn`:@usn5{usn1:$#usn7[`5esn`]})<-[?:`4esn`|:#usn7]->(_usn4 :#usn8{`5esn`})-[`4esn`?:_usn4|:usn1{@usn6:$#usn7 Ends With 0.12 Ends With {@usn6}}]->(#usn8 {usn1:$123456789 Starts With `5esn`}),Shortestpath((:`2esn`{`6esn`:@usn6[{0}..]})<-[usn2?:usn2|#usn7]->(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})) Where 12e12 Starts With `1esn` Starts With usn2"), + octest_legacy:ct_string("Load Csv From $`2esn` Starts With {`8esn`} Starts With {usn1} As #usn7 Fieldterminator \"d_str\" Union All Unwind Count(*) In {``} As `3esn` Merge _usn4=((`8esn` :@usn6))"), + octest_legacy:ct_string("Foreach(usn2 In {_usn3} Contains 9e0 Contains $999| With Distinct *,All(usn1 In 12.e12 In {0} In 9e1 Where {12}[usn2])[Reduce(``=$@usn5[..usn2][..$#usn7],`6esn` In Count(*) Ends With $`` Ends With {7}|{`4esn`}[$123456789..])..][{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]}..],$`2esn` Is Null Is Null Where _usn4[Count(*)] Create (`2esn` {@usn6:True Is Null Is Null})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)-[_usn3?:@usn6|`` *0x0..{`3esn`}]->(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}})) Unwind [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]][Shortestpath(((`1esn` :`7esn`)<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})))..] As #usn8 Start `8esn`=Rel( {`7esn`}) ,`3esn`=Node:`2esn`(@usn6={`4esn`})Where 07 Is Null Union Foreach(@usn5 In [1e1[{_usn4}..123.654]] In Reduce(`5esn`=9e1 Ends With Count(*) Ends With False,`1esn` In $12 Is Not Null|123.654[{`7esn`}][{7}]) In [usn2[True],{`3esn`}[{`5esn`}]]| Unwind Reduce(usn2={`6esn`}[..{`2esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|1e1[..01]) Is Not Null Is Not Null As `1esn` Load Csv From $`5esn`[`1esn`..$123456789] As #usn7 ) Match ((()-[?:`3esn`|:@usn5 *0x0..{`3esn`:.e1[0.12],`7esn`:$123456789 Starts With .e12}]-(:`6esn`:`8esn`{@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]})-[?:usn2|#usn7]-(`1esn` {#usn7:Count ( * )[$12..]}))),(((#usn8 )-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))) Where 0Xa[@usn5][{`7esn`}] Remove [0.0[..{999}][..0.0],12.e12[2.12..][0xabc..],True[7][$999]].@usn6"), + octest_legacy:ct_string("Return Distinct *,Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*))[Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12)..] As `3esn`,123456789[12..$`4esn`] As `7esn` Skip 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF Create Unique `2esn`=Allshortestpaths((({`6esn`:1.e1[12e12..{`6esn`}]})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}))),usn2=Shortestpath(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))) Union Load Csv With Headers From 12.e12 In {0} In 9e1 As `4esn` Fieldterminator 's_str' Union All Optional Match _usn3=Allshortestpaths((`2esn` :#usn8{@usn6:`7esn` Ends With $_usn3 Ends With usn2,_usn4:{12} Starts With #usn8 Starts With 0e0})<-[:`6esn`{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},`6esn`:``[..$#usn7]}]->({_usn4:False[0Xa..$usn1]})) Using Scan usn2:#usn7"), + octest_legacy:ct_string("Merge (((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`}))) On Match Set Reduce(usn2=True[7][$999],`` In {`1esn`} Starts With @usn6|{`4esn`}[$_usn4..][9e0..]).`6esn` ={`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`,#usn8+=$@usn5 In 's_str' In $12,@usn5 =$@usn5 On Create Set `4esn` =$#usn7 Contains True Contains _usn4 Merge #usn7=Allshortestpaths((((:`7esn`{`1esn`:@usn5 =~'s_str',`8esn`:{999} Starts With {_usn4} Starts With 00})<-[@usn5:`8esn`|:_usn4]->(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]})<-[?:_usn3|`8esn` *1000]-(:``)))) On Match Set `8esn` =usn2(0.0 Is Not Null Is Not Null,{123456789} Is Not Null)[None(`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12])..[_usn4 In `2esn` Where False Ends With $``|9e0[#usn8]]][(`3esn` :`3esn`:`6esn`)-[]->(`7esn` :#usn8)..[0X0123456789ABCDEF Contains $`1esn` Contains 1000,0e0[$#usn8...e12],.e12 Is Null Is Null]],@usn6+=$@usn5[..usn2][..$#usn7] On Create Set (@usn5 :usn1:_usn4)-[``?:#usn7|`2esn`{`5esn`:123456789 Starts With {@usn6} Starts With $12}]->(`7esn` {@usn6:{_usn4} Is Null}).`2esn`! =07[$#usn8],Case When $7 Ends With $`8esn` Then .e12 Contains $`1esn` Contains $@usn6 End.`8esn`! =$`6esn`['s_str'..][{_usn4}..],`2esn` ={usn1:$`8esn` In $`2esn` In {7},`7esn`:{`2esn`} In $123456789 In True}[..(:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})-[`3esn`:`` *123456789..0X7{#usn8:12 Starts With $#usn7}]-(`3esn` :`7esn`)-[?*..{`1esn`:$`1esn`[07..][9e12..],@usn6:{7} Starts With $usn1 Starts With 1.0}]->(:`3esn`:`6esn`)][..Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6)] Union All Remove {`7esn`:{12}[00..{@usn6}][1.e1..0],``:$123456789 Starts With $123456789 Starts With Count ( * )}.`8esn`?,({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]})<-[?:#usn7|`2esn`{@usn5:$0 Is Not Null}]-(:#usn7{usn2:{`8esn`}[0X7][$`3esn`]}).#usn8?,Shortestpath((@usn6 :@usn6)).#usn8? Create usn1=Allshortestpaths(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))),`4esn`=(:_usn3{`3esn`:{0} Is Null,#usn7:{0} Is Null})-[:_usn4|:usn1 *0X7..0Xa{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]}]-({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Merge Allshortestpaths((:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[_usn4? *07{1000}]-(`` )<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})) On Create Set ['s_str'[..0X7],False Contains 0.e0 Contains Count(*)].``? =$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]"), + octest_legacy:ct_string("Remove Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999]|$_usn3[010..False]).usn2? Foreach(_usn3 In {`4esn`:$`8esn` In $`2esn` In {7},`8esn`:00[..$123456789][..$`5esn`]} Ends With Any(_usn4 In `2esn` Where $`2esn`[123.654][1e1]) Ends With Single(_usn3 In True[7][$999] Where Count(*) Is Not Null)| Start usn2=Rel:#usn8(#usn7='s_str') ,`8esn`=Rel:_usn3(`2esn`={`2esn`})Where @usn5 In 1e1 Remove [0x0[$`8esn`.._usn3],`5esn`[0xabc..],{`1esn`}[$`4esn`..][False..]].`1esn`!,(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5).``!,[`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999]|12.e12[{@usn5}..][9e1..]].`5esn`) Union Merge `1esn`=(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF})-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(usn1 :`6esn`:`8esn`) On Match Set `1esn` =12e12 Starts With `1esn` Starts With usn2 On Create Set `8esn` =usn2(0.0 Is Not Null Is Not Null,{123456789} Is Not Null)[None(`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12])..[_usn4 In `2esn` Where False Ends With $``|9e0[#usn8]]][(`3esn` :`3esn`:`6esn`)-[]->(`7esn` :#usn8)..[0X0123456789ABCDEF Contains $`1esn` Contains 1000,0e0[$#usn8...e12],.e12 Is Null Is Null]],@usn6+=$@usn5[..usn2][..$#usn7] Create Allshortestpaths((_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})-[? *1000]->(`5esn` {usn2:$#usn7 Starts With 9e0 Starts With 2.12})) Union All Unwind {usn1:$`8esn` In $`2esn` In {7},`7esn`:{`2esn`} In $123456789 In True}[..(:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})-[`3esn`:`` *123456789..0X7{#usn8:12 Starts With $#usn7}]-(`3esn` :`7esn`)-[?*..{`1esn`:$`1esn`[07..][9e12..],@usn6:{7} Starts With $usn1 Starts With 1.0}]->(:`3esn`:`6esn`)][..Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6)] As `1esn`"), + octest_legacy:ct_string("Merge `6esn`=(`3esn` :#usn7)-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}) Foreach(`` In Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..]| Start _usn3=Rel:`4esn`(`1esn`=\"d_str\") ,_usn4=Node:`5esn`(`5esn`={999})Where $`6esn` Ends With {0} Ends With {`7esn`}) Union Remove [Count ( * )[$12..]].usn1!,[$usn1 In 0.12 In $``].`8esn`?,[#usn7 In 0Xa[@usn5][{`7esn`}] Where 0x0 Ends With {``}].`1esn`! Load Csv From `3esn`[_usn4..{0}][`5esn`..usn2] As usn1 Fieldterminator 's_str' Create Unique #usn8=Allshortestpaths((({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})))"), + octest_legacy:ct_string("Remove [`5esn` In $`2esn`[12.e12][$@usn5] Where 12[..$@usn6]].`3esn` Unwind Reduce(`4esn`=@usn6[$_usn4],`8esn` In $12[{7}..0X0123456789ABCDEF]|0.12 Starts With 9e12 Starts With $`1esn`)[Reduce(usn2={`7esn`}[0X7..][0x0..],_usn3 In {`2esn`} Ends With {12} Ends With 7|01[..{`7esn`}][..01234567])][(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})-[_usn4 *0x0..]-(:#usn7{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})] As `` Match _usn3=(((`6esn` {``:`4esn`[usn1]})<-[:`6esn`{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},`6esn`:``[..$#usn7]}]->({_usn4:False[0Xa..$usn1]})-[`8esn`?{`3esn`:'s_str'[..0X7]}]-(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}))),Allshortestpaths(((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}))) Using Index @usn5:usn2(`7esn`) Union All Load Csv With Headers From $`2esn` In .e1 In .e0 As @usn6 Fieldterminator 's_str'"), + octest_legacy:ct_string("Remove All(_usn4 In `2esn` Where 0Xa Contains {`7esn`} Contains $999).`8esn`,None(`3esn` In 123.654[1e1..][{#usn8}..] Where $`2esn`[12.e12][$@usn5])._usn4?,``:_usn3 Union Unwind Filter(`1esn` In $12 Is Not Null Where Count(*)[..``][..#usn8]) Ends With Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}]) Ends With {`2esn`:usn1 Is Null Is Null,usn2:0.e0 =~`1esn` =~`6esn`} As _usn3 Load Csv With Headers From {``} Starts With 123456789 Starts With usn2 As `3esn` "), + octest_legacy:ct_string("Unwind {_usn4:{`6esn`} Ends With 0e0 Ends With {``}} In Shortestpath(((#usn8 {`8esn`:{7} Contains $123456789}))) As `4esn` Remove [0.0[..{999}][..0.0],12.e12[2.12..][0xabc..],True[7][$999]].@usn6 Union All Start #usn7=Relationship:usn2(_usn3='s_str') ,`4esn`=Node:`7esn`(``={usn2}) Optional Match `1esn`=Shortestpath(((`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6)<-[#usn7]-(@usn6 ))),#usn8=(:`5esn`:@usn5{usn1:$#usn7[`5esn`]})<-[?:`4esn`|:#usn7]->(_usn4 :#usn8{`5esn`})-[`4esn`?:_usn4|:usn1{@usn6:$#usn7 Ends With 0.12 Ends With {@usn6}}]->(#usn8 {usn1:$123456789 Starts With `5esn`}) Using Join On #usn8,usn2,#usn7 Using Join On #usn8,#usn8 Where Null[{_usn4}..] Remove Case @usn5[..$@usn5][..0Xa] When $@usn6 Starts With {`1esn`} Starts With 12 Then $1000[..12.0][..0e0] Else 's_str'[..0X7] End.`8esn` Union All Merge `2esn`=((`7esn` {`4esn`:#usn8 =~{999},`2esn`:9e1 =~`` =~{`7esn`}})) On Create Set _usn4:usn1:_usn4,`7esn` =#usn7[00],``:@usn6 On Match Set `5esn`+=$`3esn` Contains 0 Contains 07,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $#usn7[..@usn6][..$0]).`1esn`? =$1000[0.12..0.12] Create #usn7=Allshortestpaths(((:`5esn`:@usn5))),(((`5esn` :@usn6)<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5)<-[ *123456789..0X7]-(:`7esn`{``:.e1 Contains $`3esn`})))"), + octest_legacy:ct_string("Delete `4esn`[{1000}][{`5esn`}],Shortestpath((`6esn` :`7esn`)-[:_usn3|`8esn` *12..{`8esn`:Count(*)[.e12..],`5esn`:{#usn8}[12.0][$@usn6]}]-(`1esn` {_usn4:`3esn`[_usn4..{0}][`5esn`..usn2]})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`)) Contains Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}),(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->({_usn3}) Is Null Union All Merge `5esn`=Allshortestpaths((((:#usn8{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})-[?:`` *..00{``:`3esn` =~9e0 =~@usn6}]-(:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})-[:_usn4|:usn1 *07]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})))) On Create Set _usn4+=0.12[Count(*)..][$#usn7..],None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]).@usn6! =[$`1esn`[$12][Count ( * )],9e1 Ends With $@usn5 Ends With $123456789] Is Not Null Is Not Null On Create Set {`3esn`:0X0123456789ABCDEF[$`2esn`..][`2esn`..]}.`4esn`? =`1esn`(Distinct $usn1 Starts With {_usn3},{#usn8}[$#usn7..]) Starts With [$_usn4[$`4esn`..$12]] Starts With [`6esn` In 00 Where 0.12 In 0X7|{999} Is Null],usn1:#usn7,Case When 1.e1[0xabc..] Then $@usn6 Starts With {`1esn`} Starts With 12 End.`2esn`! ={@usn5} Starts With 1.0 Starts With 00"), + octest_legacy:ct_string("Remove `2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0).@usn6 Union All Unwind ``[..0X0123456789ABCDEF] As @usn5"), + octest_legacy:ct_string("Merge Shortestpath((`7esn` :`1esn`)<-[`1esn`?:`4esn`|:#usn7 *..01234567]-({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6})) On Match Set `4esn` ={`5esn`}[$`8esn`..$`1esn`][0.12..0.12],`3esn` =[`8esn` In $12[{7}..0X0123456789ABCDEF] Where 2.12 In $`8esn` In {`7esn`}|12e12 Starts With `1esn` Starts With usn2] Contains Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 9e0[#usn8]) Contains #usn7({`7esn`}[9e1..][@usn6..],{usn2}[$`4esn`])"), + octest_legacy:ct_string("Create Unique Shortestpath((((usn1 :@usn5)-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[#usn7? *999{usn2:{1000}[{``}][999]}]-({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})))) Union All Merge @usn6=((usn1 {`4esn`:1.0[{999}][$999],``:9e1[9e1...e0]})<-[? *0xabc..7]->(`3esn` :`3esn`:`6esn`)) On Create Set Filter(`5esn` In $`2esn`[12.e12][$@usn5] Where 12[..$@usn6]).`2esn`! =123456789 Starts With {999} Create Unique (:`2esn`$1000)-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`` {``:0x0 =~123.654 =~{999}})"), + octest_legacy:ct_string("Unwind [#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 Starts With {_usn3}|@usn6[$12]] Ends With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null] Ends With Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) As `8esn` Unwind None(`6esn` In 00 Where 0.12[..$`6esn`][..$1000])[Case _usn4 Is Null Is Null When 07 Is Null Then False Contains $#usn8 Contains 9e1 End..`2esn`(Distinct #usn8[`7esn`..])][[_usn4 In 0.0[..{999}][..0.0] Where 12 Ends With 01|0.0 Is Not Null Is Not Null]..[Null Is Null Is Null,12e12 Ends With `4esn` Ends With 123456789,{@usn6} Is Not Null]] As _usn4"), + octest_legacy:ct_string("Start `8esn`=Relationship:`8esn`({`1esn`}) Detach Delete `5esn`[..9e0][..01234567],01234567[..$`5esn`],{`1esn`:{`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`],`5esn`:0.12 Contains 12.0} Ends With [{usn2},0.12[Count(*)..][$#usn7..]] Ends With {0}"), + octest_legacy:ct_string("Optional Match `5esn`=(`8esn` :`5esn`:@usn5)-[`5esn`?:usn2|#usn7]->(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )}) Using Join On `4esn` Using Join On `1esn`,`7esn`,usn2 Where 00 With `7esn`[{usn1}][999] As `7esn`,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..]) Starts With [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]|Count ( * )[..12][..{@usn6}]] Starts With Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where True Starts With $`2esn` Starts With {@usn6}) Order By @usn5 =~$`3esn` =~0X7 Descending Skip {usn1}[01..7][{`3esn`}..`6esn`] Start `2esn`=Rel:usn2(`2esn`={`7esn`}) ,`1esn`=Relationship( {@usn6})Where {`7esn`} Is Not Null Is Not Null"), + octest_legacy:ct_string("Foreach(`` In `6esn` Starts With 123.654| Create Unique `1esn`=(({`3esn`:@usn5[12.0][{1000}]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]->(`2esn` :@usn5{`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})) Unwind Reduce(@usn6=12 Is Not Null,`` In {usn1} Ends With {`6esn`} Ends With 123456789|.e1 Ends With {7} Ends With $usn1)[Case {12} Contains `7esn` Contains $_usn3 When 0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] Then Count ( * ) Starts With 010 Starts With 0x0 When $7 Ends With 0X7 Then {#usn8}[2.12] Else $7 In 1.0 In 1e1 End..][_usn4(Distinct 0.12 Ends With {1000} Ends With `6esn`,$_usn3 =~{_usn4} =~$`6esn`)..] As _usn3) Create (`4esn` :`4esn`:@usn6)"), + octest_legacy:ct_string("Remove Extract(`2esn` In {999} Is Not Null Where {#usn7} In Count ( * ) In $#usn8|{usn1} =~123.654 =~\"d_str\").@usn5?,Case .e12[$#usn8..@usn6] When {12} =~0.e0 =~{_usn3} Then $7 In 1.0 In 1e1 End.`4esn`?"), + octest_legacy:ct_string("Optional Match (:``{``:0x0 =~123.654 =~{999}})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]}),Allshortestpaths((:@usn6{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]})) Using Scan `6esn`:`` Return *,(usn1 {`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]})<-[`4esn`:#usn7|`2esn` *0X7..0Xa]-(`3esn` :`8esn`:@usn5{@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]}) Is Not Null,$_usn3[..$`2esn`][..\"d_str\"] Skip $999 In 999 Limit Filter(`1esn` In `3esn`[07..] Where 12 Ends With 01)[..All(`3esn` In 123.654[1e1..][{#usn8}..] Where 0Xa Contains Count ( * ))] Create Shortestpath((((`8esn` {_usn4:{usn1} In Count ( * )})<-[``?:`3esn`|:@usn5{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(:`5esn`:@usn5)<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})))),Shortestpath((@usn6 :`2esn`)<-[ *..0Xa]->({`8esn`:Null In .e0})) Union Load Csv From `3esn`[..{_usn4}][..{@usn5}] As `8esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("With Distinct 010 In $`5esn` In 0,{_usn3}[`3esn`..$#usn8] As `1esn` Order By $@usn5[usn2..][$0..] Ascending,.e12 Ends With 1000 Ends With 010 Descending Limit 0xabc[$_usn3..] Where 0.12 Ends With {1000} Ends With `6esn` Optional Match @usn6=((`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[`5esn`:`5esn`]-(:usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})) Where {_usn3} Is Not Null Merge _usn4=Shortestpath(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})-[:`1esn`|:`3esn` *..01234567{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(#usn7 {``:0x0 =~123.654 =~{999}})) On Match Set usn2 =#usn7 Starts With $999,usn1+={@usn6}[True..{_usn3}] On Create Set @usn5+=$@usn6 Ends With 01 Ends With 999,`3esn` =0.e0 =~`1esn` =~`6esn` Union Return Distinct `7esn` Is Not Null Is Not Null As @usn5 Order By Shortestpath((@usn6 {``:.e12[\"d_str\"..][.e1..]}))[{`3esn`:#usn8 =~{999}}..[_usn3 In True[7][$999] Where 12e12 Is Not Null Is Not Null]] Asc,{@usn5}[..{12}][..0x0] Desc Skip $12 Starts With $`8esn` With $@usn5 As @usn6,[{@usn5}[..@usn6],$7[{`1esn`}]] Is Null Is Null As `5esn`,All(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) In Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4]) In [``[00..$7],.e1 Contains $`3esn`,{``} Starts With 123456789 Starts With usn2] As _usn4 Order By $usn1 In 0.12 In $`` Desc,Case When {@usn6} Contains 123.654 Contains 01 Then usn2 Ends With Count ( * ) Ends With $@usn6 End Is Not Null Is Not Null Desc Skip Case When 0X0123456789ABCDEF[7...e0][`1esn`..usn2] Then $1000 Starts With $`8esn` Starts With {`5esn`} When usn2 =~0X7 =~{#usn7} Then {`2esn`} In $123456789 In True End[Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`)] Limit {`1esn`:{`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`],`5esn`:0.12 Contains 12.0} Ends With [{usn2},0.12[Count(*)..][$#usn7..]] Ends With {0} Where 0.e0[{999}][{`1esn`}] Load Csv From {@usn5}[..{_usn4}][..$@usn5] As `3esn` Fieldterminator 's_str' Union All Create Unique @usn5=Shortestpath(((_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]}))),Allshortestpaths(((`4esn` :_usn4{`2esn`:#usn7 =~00})<-[usn2 *07{usn1:07 =~@usn5}]->(_usn4 {`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]})-[?:`3esn`|:@usn5]-(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}))) Unwind {`8esn`:`2esn` Starts With `` Starts With 1e1} In [usn1 In 00 In {_usn3}] In Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) As usn2"), + octest_legacy:ct_string("Create `5esn`=Shortestpath(((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[:#usn7|`2esn`]-(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}}))) Merge Shortestpath(((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}))) Union All Load Csv From $`4esn` Starts With 9e12 As `3esn` Fieldterminator \"d_str\" Unwind @usn5[12.0][{1000}] As `8esn` Merge #usn8=Allshortestpaths((((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`})))) On Create Set [0X0123456789ABCDEF Contains $`1esn` Contains 1000].``! =1000[$7..$123456789] On Create Set Filter(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $7[{`1esn`}]).``! =$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,exists($`5esn`[`4esn`][_usn3]).@usn5 =$7[{`1esn`}],`2esn`({1000}[1000][$usn1]).`8esn`! =_usn4[['s_str'[..0X7],False Contains 0.e0 Contains Count(*)]..]"), + octest_legacy:ct_string("With *,$usn1 In 01234567 In .e1 Order By Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6) Starts With [$_usn3[010..False],$123456789 =~`4esn`,$usn1[$123456789..0][{`1esn`}..12.0]] Descending,{#usn7:`5esn`[..9e0][..01234567]} In Case 1e1[1.e1..][123.654..] When 7[1000.._usn3][9e0..\"d_str\"] Then 12.e12[``..usn2][{#usn7}..@usn5] When 1.e1[0xabc..] Then 1.e1 Starts With $`2esn` Starts With $0 End In Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null) Desc,{7}[$7..] Desc Skip \"d_str\"[{999}..] Limit @usn5[$12..\"d_str\"] Union All Return Distinct *,7[1000.._usn3][9e0..\"d_str\"],(`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})-[`4esn`?:_usn4|:usn1 *999{_usn4:{7} Starts With $usn1 Starts With 1.0,#usn7:$1000[..12.0][..0e0]}]-(#usn7 :`2esn`)-[?:`8esn`|:_usn4 *12..]->(@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]}) In {`3esn`:1e1 Contains usn2} Order By `4esn`({`2esn`} Starts With @usn6,{`2esn`}[..{@usn6}][..1.e1]) Ends With Any(`2esn` In {999} Is Not Null Where #usn8 =~{_usn3} =~``) Desc,None(`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}])[[123.654[1e1..][{#usn8}..],$#usn7[123.654]]] Descending,{_usn4} In {`6esn`} In `1esn` Descending Skip $usn1[False][999] Match _usn3=(@usn6 :@usn6),usn2=((_usn4 :#usn7{`8esn`:$999 Contains {7}})<-[`4esn`:`4esn`|:#usn7{`2esn`:{`4esn`}[$_usn4..][9e0..]}]-(`6esn` )) Using Index `3esn`:#usn7(usn2) Create `7esn`=((`1esn` :#usn7))"), + octest_legacy:ct_string("Optional Match Shortestpath(($`5esn`)-[?:`3esn`|:@usn5]-(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null})) With Distinct 0Xa[07..] Limit $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`] Where `4esn` Contains #usn8 Contains 7 Remove Case 0x0 =~123.654 =~{999} When $7 Is Null Then {`1esn`} =~{_usn4} When {`3esn`}[{`5esn`}] Then usn1 Contains $7 Contains $`` End.usn2,None(#usn7 In 123.654 Starts With $`` Where $999 In 999).`5esn`!,({_usn4:{usn1} =~123.654 =~\"d_str\"})-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}}).`8esn`? Union Create _usn3=(`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})<-[usn2 *07{usn1:07 =~@usn5}]->(_usn4 {`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}) Load Csv From Extract(`` In {`1esn`} Starts With @usn6 Where $usn1[@usn6][#usn7]) Contains [`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0}|#usn8 In `8esn` In 07] As `4esn` Create (((usn2 :``)-[@usn5?:#usn7|`2esn`{`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}]->(`2esn` :@usn6{7})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`)))"), + octest_legacy:ct_string("Delete $#usn7[`2esn`][010],{`7esn`} Is Not Null Is Not Null Start usn1=Node:`8esn`('s_str') ,`5esn`=Rel:`6esn`(`3esn`={12})Where 0x0[$`8esn`.._usn3]"), + octest_legacy:ct_string("Load Csv From $`1esn` =~$`1esn` =~{`6esn`} As `7esn` Optional Match Allshortestpaths(((({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2})<-[:_usn4|:usn1 *07]-(#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})))) Using Join On #usn8,`5esn`,`1esn`"), + octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From Allshortestpaths((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null}))) In {`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null} As _usn3 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Unwind {`4esn`}[$123456789..] As usn1 Union Merge ((:`1esn`{usn2:{`6esn`} Ends With 0e0 Ends With {``}})) Create Unique Shortestpath((`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})),(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]}) Create Unique Shortestpath((`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})),@usn6=((`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]})<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)<-[`1esn`?:`4esn`|:#usn7 *..01234567]-(#usn8 {#usn7:$1000 Is Not Null Is Not Null})) Union All With Distinct *,1.e1 Ends With 0 Ends With $usn1 As `` Order By 0.12[Count(*)..][$#usn7..] Descending,`3esn` =~`7esn` =~\"d_str\" Desc Limit {1000}[{#usn8}] Where 1.0[{999}][$999] Unwind $`4esn` In Null As `5esn`"), + octest_legacy:ct_string("Create (((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}))),#usn8=((`2esn` :@usn6)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)<-[`1esn`:`8esn`|:_usn4 *123456789..0X7$12]->(:`1esn`{`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})) Match #usn7=Allshortestpaths(((:`5esn`:@usn5))),(((`5esn` :@usn6)<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5)<-[ *123456789..0X7]-(:`7esn`{``:.e1 Contains $`3esn`}))) Where $`7esn` In 12 Union Foreach(_usn3 In (:usn1:_usn4)<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[usn2?:`2esn`*..]-(:`5esn`:@usn5{``:0.12[..$`6esn`][..$1000]}) Starts With Reduce(`8esn`=00[..$123456789][..$`5esn`],`` In {`1esn`} Starts With @usn6|False[999]) Starts With [`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]]| Create usn2=((@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]})),(:`4esn`:@usn6{usn1:$7[{`1esn`}],#usn8:\"d_str\"[..0.e0]}) Unwind [`2esn`,{`2esn`} Starts With @usn6,9e1 =~999] In Any(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3} Contains 9e0 Contains $999) As #usn8) Remove Shortestpath((_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}})).#usn8? Merge `5esn`=(`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})<-[usn2 *07{usn1:07 =~@usn5}]->(_usn4 {`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]})"), + octest_legacy:ct_string("Return *,({`8esn`:Null In .e0})-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}) =~None(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) =~(`6esn` :`2esn`{`7esn`:#usn8 =~{999}})<-[:#usn7|`2esn`]->(:#usn7{usn2:{`8esn`}[0X7][$`3esn`]}) As `7esn` Order By {12} Contains 9e0 Descending,`5esn`(0X0123456789ABCDEF[9e12])[[`8esn` In $12[{7}..0X0123456789ABCDEF] Where $``['s_str'..][0x0..]]..None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`8esn`}[0X7][$`3esn`])][Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000})..Case 7 Is Null Is Null When usn1 Contains $7 Contains $`` Then 12e12 Is Not Null End] Descending Skip $`8esn`[0xabc][Null] Union Create `5esn`=Allshortestpaths(((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]}))),`6esn`=Allshortestpaths((`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})) Load Csv From {`1esn`} Starts With `4esn` Starts With {0} As `1esn` Fieldterminator 's_str' Foreach(_usn3 In $#usn8 Is Null Is Null| Create `5esn`=((#usn7 :_usn3{`2esn`})<-[@usn6?:`1esn`|:`3esn` *..0Xa{`1esn`:12 Starts With 0x0}]->(#usn7 :_usn3{`2esn`})<-[?:`1esn`|:`3esn`{#usn8:$0 Is Not Null,``:True Is Null Is Null}]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})),Shortestpath((:`8esn`:@usn5)<-[?:`1esn`|:`3esn`{#usn8:$0 Is Not Null,``:True Is Null Is Null}]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})) Create @usn6=(_usn3 {`4esn`:`8esn` Contains 1e1,#usn7:{`2esn`}[..{@usn6}][..1.e1]})-[#usn7?:usn1 *01..07{`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}]->({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]})) Union All Create Shortestpath((((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4})))) Delete {1000} Ends With {`8esn`},$12[{7}..0X0123456789ABCDEF] Load Csv With Headers From False Ends With $`` As `6esn` "), + octest_legacy:ct_string("Match ((_usn4 :#usn7{_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})),#usn7=(({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})) Merge Allshortestpaths((usn2 :`5esn`:@usn5)) On Match Set @usn6($@usn6 Contains `7esn`).@usn5! =$`5esn` Ends With 00 Ends With #usn7,Reduce(usn2=True[7][$999],`` In {`1esn`} Starts With @usn6|{`4esn`}[$_usn4..][9e0..]).`6esn` ={`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn` Union All Start usn1=Node:`8esn`('s_str') ,#usn7=Node:#usn7('s_str') Load Csv With Headers From Filter(`1esn` In $12 Is Not Null Where {@usn5}[1e1..][9e1..]) In [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 12 Starts With {_usn4} Starts With $#usn8] In Filter(`2esn` In {999} Is Not Null Where $7 Ends With 0X7) As _usn4 "), + octest_legacy:ct_string("Match _usn3=(@usn6 :@usn6),usn2=((_usn4 :#usn7{`8esn`:$999 Contains {7}})<-[`4esn`:`4esn`|:#usn7{`2esn`:{`4esn`}[$_usn4..][9e0..]}]-(`6esn` )) Using Index `7esn`:`1esn`(`2esn`) Using Scan `3esn`:`3esn` Create ``=Shortestpath(((@usn6 :`4esn`:@usn6{#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[:#usn7|`2esn` *0x0..]-({`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}))) Unwind $7 Ends With $`8esn` As `3esn` Union All Load Csv From .e12 Is Null Is Null As `5esn` "), + octest_legacy:ct_string("With Distinct *,$#usn8 Is Null Is Null Order By $`6esn`[`8esn`][$`5esn`] Desc,Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {7} Contains $123456789) Is Not Null Ascending Skip 0X7 Is Null Unwind Single(usn1 In 12.e12 In {0} In 9e1 Where `4esn` Contains #usn8 Contains 7) Ends With [123.654[$`1esn`..Null][1000..{_usn3}],#usn8[`7esn`..],$@usn6 Starts With {`1esn`} Starts With 12] Ends With {`4esn`:{usn1} In Count ( * )} As `4esn` Foreach(_usn3 In ({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..`2esn`(Distinct #usn8[`7esn`..])][..[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]]]| Unwind {999} Is Null As `6esn`) Union All Create Unique `8esn`=Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Unwind #usn8 =~{usn1} =~00 As _usn4 Union All With Distinct *,{`7esn`:{999} Starts With {12},`3esn`:00} =~[0X0123456789ABCDEF[$`5esn`..],#usn7 Ends With $#usn7 Ends With {`8esn`}] =~[{12} =~0.e0 =~{_usn3},$#usn7 =~{12} =~False,1000 Is Null] As `8esn` Order By $999 Contains {7} Ascending,None(`6esn` In 00 Where 0.12[..$`6esn`][..$1000])[Case _usn4 Is Null Is Null When 07 Is Null Then False Contains $#usn8 Contains 9e1 End..`2esn`(Distinct #usn8[`7esn`..])][[_usn4 In 0.0[..{999}][..0.0] Where 12 Ends With 01|0.0 Is Not Null Is Not Null]..[Null Is Null Is Null,12e12 Ends With `4esn` Ends With 123456789,{@usn6} Is Not Null]] Desc Limit usn1 In 00 In {_usn3} Unwind 9e0[#usn8] As `2esn` Unwind $@usn5[usn2..][$0..] As @usn6"), + octest_legacy:ct_string("Create #usn8=Allshortestpaths((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null}))) Foreach(_usn3 In Reduce(`8esn`={`2esn`} Starts With @usn6,`3esn` In 123.654[1e1..][{#usn8}..]|0X0123456789ABCDEF[$999..][@usn5..]) Is Null Is Null| Return {`2esn`} In $123456789 In True As `7esn`,$7 Ends With $`8esn` As `4esn`,(:`7esn`{``:.e1 Contains $`3esn`})<-[?:usn2|#usn7]->(#usn8 :#usn7) As #usn8 Start #usn8=Relationship(0,0X7) ) Delete _usn3[$usn2..0] Union Unwind False Ends With $`` As _usn4 Create Allshortestpaths((({`7esn`:123.654 Ends With usn2 Ends With 0})<-[@usn6?:`7esn` *07{123456789}]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}))) Return Distinct *,$_usn4[$`4esn`..$12],{`5esn`} Starts With 12.0 Order By @usn5 =~`` Asc Union With Distinct Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))) =~Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) As _usn4,7[..$`1esn`][..00],{12} Starts With #usn8 Starts With 0e0 Order By $0 Starts With `2esn` Desc,0.12 In 0X7 Descending,12.e12 In $0 In $0 Desc Limit `6esn` In Null Where False Contains 0.e0 Contains Count(*) Create Unique usn2=(`4esn` {_usn4:12 Starts With {_usn4} Starts With $#usn8,_usn4:$@usn5[$`4esn`][$@usn6]})<-[? *0X7..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) With `7esn` Ends With $_usn3 Ends With usn2 As _usn4,1000 Is Null Is Null Order By \"d_str\"[Count ( * )..`6esn`] Desc Skip 9e1 Ends With $@usn5 Ends With $123456789 Limit $`8esn`[0e0..] Where {999} Starts With {_usn4} Starts With 00"), + octest_legacy:ct_string("Foreach(#usn8 In $``[.e12..]| With 1.e1 Is Null Skip $`2esn`[{``}..{1000}][#usn8..`2esn`] Limit $123456789[..$7][..$`6esn`] Match `5esn`=(:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})-[`5esn`{`7esn`:@usn5[..$@usn5][..0Xa]}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})<-[#usn8? *..01234567]-($_usn3),((@usn6 :@usn5{usn2:{`6esn`} Ends With 0e0 Ends With {``}})-[? *0x0..{`6esn`:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]->(`1esn` {#usn8:$12 Contains 0Xa})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]->(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})) Using Join On #usn8,`5esn`,`1esn` Using Join On _usn4,@usn6)"), + octest_legacy:ct_string("Start `8esn`=Node:`4esn`(\"d_str\") ,#usn8=Relationship:`4esn`(``='s_str') Union All Unwind [`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]][[9e0 Starts With .e0 Starts With \"d_str\",`3esn`[..{_usn4}][..{@usn5}],1.e1 =~`2esn`]..Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where `6esn` Ends With 2.12 Ends With @usn6)] As @usn6 Load Csv With Headers From $usn1 Contains {`8esn`} Contains $123456789 As @usn6 Fieldterminator \"d_str\" Start #usn7=Node:usn2({@usn5}) ,``=Node:``(@usn6='s_str')Where {0}[..{`7esn`}] Union All Foreach(`2esn` In Single(`` In {`1esn`} Starts With @usn6 Where Null[{_usn4}..])[Extract(`1esn` In `3esn`[07..] Where {0} =~12.0|`8esn` Contains 1e1)][None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12[..$@usn6])]| Match `5esn`=Shortestpath(((#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]}))),@usn6=((usn1 :`8esn`:@usn5{`1esn`:{#usn7} Contains 0.0 Contains $0,`2esn`:.e12[010..$123456789]})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})<-[?:usn2|#usn7]->(#usn8 :#usn7)) Using Index usn2:``(#usn8) Using Join On ``,usn1,usn2 Where @usn5 In 1e1 Match ``=(`` :``)-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(`2esn` :_usn3),Allshortestpaths((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(@usn5 :`8esn`:@usn5)<-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(:`6esn`:`8esn`{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})) Using Scan `6esn`:`` Using Scan `1esn`:_usn4) Unwind {usn1}[$`8esn`..0.0] As `` Load Csv From 0X0123456789ABCDEF[$`2esn`..][`2esn`..] As `8esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Using Periodic Commit 0X7 Load Csv From {@usn5}[..{_usn4}][..$@usn5] As `3esn` Fieldterminator 's_str' Merge Allshortestpaths(((`4esn` :_usn4{`2esn`:#usn7 =~00})<-[usn2 *07{usn1:07 =~@usn5}]->(_usn4 {`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]})-[?:`3esn`|:@usn5]-(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}))) On Match Set `6esn`+=`1esn`(Distinct $usn1 Starts With {_usn3},{#usn8}[$#usn7..]) In Shortestpath((({_usn4:0.12 Starts With 9e12 Starts With $`1esn`}))) In All(`1esn` In $12 Is Not Null Where 12.e12[{@usn5}..][9e1..]),All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $#usn7[..@usn6][..$0]).`1esn`? =$1000[0.12..0.12],`2esn`+=0.0 In `6esn` In $@usn5 On Create Set #usn7(Distinct 7[$0..][{_usn4}..],Count(*)[.e12..]).`2esn`! =$usn1 In 0.12 In $`` Foreach(_usn4 In 1e1[..`1esn`][..0e0]| Start #usn7=Rel( {_usn4}) ,`1esn`=Relationship:`6esn`({999})Where $`4esn` Starts With 0e0)"), + octest_legacy:ct_string("Unwind (:``{`1esn`:#usn8 Is Not Null,`5esn`:$@usn6[$0..usn1][0X0123456789ABCDEF..$999]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})-[?:_usn3|`8esn` *12..{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}]-(`6esn` :`2esn`{`7esn`:#usn8 =~{999}}) Ends With `6esn`() Ends With Shortestpath(((`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})-[:#usn8|`2esn`]->(:`3esn`:`6esn`)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))) As _usn4"), + octest_legacy:ct_string("Optional Match Allshortestpaths(((`` {``:0x0 =~123.654 =~{999}})-[{`2esn`:``[{123456789}..]}]->(#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]}))) Using Join On `5esn`,``,usn1 Where {@usn5}[Count(*)..] Foreach(`7esn` In 01 Starts With {999} Starts With $`2esn`| With `8esn`(False Contains 0.e0 Contains Count(*)) Is Null Is Null Skip {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]]) With *,None(`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}])[[123.654[1e1..][{#usn8}..],$#usn7[123.654]]] As `1esn` Order By None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] Desc,Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 9e12 Is Not Null Is Not Null) Is Null Is Null Descending Skip Single(_usn3 In True[7][$999]) Is Not Null Is Not Null Limit $1000[..12.0][..0e0] Union Remove {``:0.12[..$`6esn`][..$1000]}.`1esn`?,Extract(_usn3 In True[7][$999] Where $usn1[$123456789..0][{`1esn`}..12.0]).#usn7,Allshortestpaths((`7esn` :@usn6)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]})).usn1 With Distinct [1.e1[0X0123456789ABCDEF..],Null In .e0][`8esn`(Distinct {#usn8}[$#usn7..],`3esn`[$@usn5..@usn5][9e1..$``])..][Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where $0[$1000..00][{0}..{usn1}])..] As #usn7,`8esn` Contains $`3esn` Contains {`4esn`},`1esn`[$123456789..] Order By Filter(`5esn` In $`2esn`[12.e12][$@usn5] Where 9e1[9e1...e0]) Is Not Null Asc,{`3esn`} Ends With `1esn` Ends With $@usn6 Descending Skip `8esn`[..`4esn`][..$usn1] Where $@usn6[$`8esn`..][7..] Load Csv With Headers From ({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..`2esn`(Distinct #usn8[`7esn`..])][..[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]]] As usn1 Fieldterminator 's_str' Union All With Distinct 1e1[{_usn4}..123.654],{_usn4}[...e12][..0xabc] As `3esn`,.e1[..{`7esn`}][..{_usn3}] As `5esn` Order By Case {`1esn`} Is Not Null When 9e12 =~123456789 =~$999 Then 999[12.0..][#usn7..] When `4esn` Contains #usn8 Contains 7 Then `2esn` Starts With `` Starts With 1e1 Else Count(*) Ends With $`` Ends With {7} End In Reduce(`8esn`=00[..$123456789][..$`5esn`],`` In {`1esn`} Starts With @usn6|False[999]) In Reduce(``=12 Starts With $#usn7,`6esn` In 00|False Contains $#usn8 Contains 9e1) Asc,$`2esn` Descending,`1esn`[$123456789..] Desc Limit $0 Starts With `2esn` Where #usn8 =~{_usn3} =~``"), + octest_legacy:ct_string("Create Unique `6esn`=((`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[`5esn`:`5esn`]-(:usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})) Union All Optional Match ((`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}})-[?:`1esn`|:`3esn` *999{usn1:0[{@usn5}..][7..],`7esn`:{``}[_usn4..$`1esn`]}]->(`3esn` :`8esn`:@usn5{@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})),Allshortestpaths((:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})<-[:``]-(`2esn` :`5esn`:@usn5{_usn4:{`2esn`} Is Not Null Is Not Null,usn2:{`4esn`} In _usn4})) Using Scan `2esn`:@usn6 Create Unique `8esn`=((:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *..00{#usn7:`4esn`[usn1]}]-(:@usn5{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12})),_usn4=(((#usn8 )-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))) Remove Reduce(usn1=0.e0[{999}][{`1esn`}],`` In {`1esn`} Starts With @usn6|{`3esn`} Ends With `1esn` Ends With $@usn6)._usn3! Union All Unwind $`2esn`[{usn1}..] As _usn4 Delete 9e12 In 1e1 In .e12,`3esn`[_usn4..{0}][`5esn`..usn2]"), + octest_legacy:ct_string("Create Unique (((#usn7 :#usn8{_usn3:`1esn`[..00][..{7}]})<-[`2esn`?{`3esn`:$7 In 1.0 In 1e1,@usn5:{@usn6} Contains 123.654 Contains 01}]->(:`1esn`{_usn4:{`6esn`} Ends With 0e0 Ends With {``}})-[`8esn`?{@usn5:Null Is Null Is Null}]->({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null}))) Start ``=Relationship:`8esn`({#usn8}) ,@usn5=Relationship:usn1({7})Where 12.e12 In {0} In 9e1 Union All Merge @usn5=Shortestpath(({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[{``:\"d_str\"[{`8esn`}..]}]-({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})) On Match Set Extract(`2esn` In {999} Is Not Null Where {1000}[1000][$usn1]|{7} Is Null).`3esn`! =$#usn7[123.654],`1esn` =9e12 Is Null,@usn5+=0Xa[07..] Merge ``=((`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6)<-[#usn7]-(@usn6 )) On Match Set `6esn` ={_usn3}[usn1][0],Shortestpath((@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})).@usn5? =\"d_str\" Contains @usn6 Contains 12.e12,`7esn`+=`3esn`[..{_usn4}][..{@usn5}] On Match Set Allshortestpaths((`2esn` :#usn8{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})-[:`3esn`|:@usn5]-(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})-[`2esn`?$_usn4]->({_usn4:0.12 Starts With 9e12 Starts With $`1esn`})).``! =``[{#usn8}..9e0][12.e12..0xabc]"), + octest_legacy:ct_string("Detach Delete {usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}[Reduce(`1esn`={usn1} In Count ( * ),`` In {usn1} Ends With {`6esn`} Ends With 123456789|0[{usn2}..][usn1..])][[`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12]|{``} Starts With 123456789 Starts With usn2]],{999} Starts With {_usn4} Starts With 00,{`5esn`:2.12 =~0x0 =~_usn4,`3esn`:$@usn6 Contains `7esn`}[..(#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]})<-[`7esn`?:`7esn` *..7{`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})][..Any(_usn3 In {`2esn`} Ends With {12} Ends With 7)] With Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF) Ends With Case {`2esn`}[..{@usn6}][..1.e1] When Null Is Null Is Null Then #usn7 Contains {`3esn`} Contains $`6esn` When 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Then $usn1[..'s_str'][..$#usn8] End Ends With Filter(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789}),@usn6 Contains Null As `2esn`,00 =~0.e0 =~$`8esn` Order By `5esn`(0X0123456789ABCDEF[9e12])[[`8esn` In $12[{7}..0X0123456789ABCDEF] Where $``['s_str'..][0x0..]]..None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`8esn`}[0X7][$`3esn`])][Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000})..Case 7 Is Null Is Null When usn1 Contains $7 Contains $`` Then 12e12 Is Not Null End] Ascending,#usn7[9e0] Asc,{`5esn`} Starts With 12.0 Desc Limit {@usn5}[Count(*)..] Detach Delete `` Is Null Is Null,07 =~@usn5"), + octest_legacy:ct_string("Create Unique (#usn8 :#usn8) Union All Return Distinct *,[`1esn` In `3esn`[07..] Where @usn6[{0}..]|0.e0[12.e12]] Contains {usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF} As @usn6 Limit Allshortestpaths((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null}))) In {`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null} Remove Shortestpath(({`4esn`:12 Starts With {_usn4} Starts With $#usn8})<-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})-[_usn3?:`8esn`|:_usn4{@usn6:{`1esn`}[`6esn`..12e12]}]-(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})).`6esn`,Case `6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}] When 1.e1[..12.e12][..$usn2] Then $_usn3[{999}] When $7 Is Null Then `1esn` =~1000 =~1000 Else 9e12[$`5esn`] End.`3esn`? Load Csv With Headers From @usn6 Contains Null As `6esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Foreach(`1esn` In {@usn5}[..@usn6]| Match _usn4=Allshortestpaths(((:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})-[?:#usn8|`2esn` *999{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({@usn6:#usn8[$0..False][$`1esn`..$#usn7]})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}))) Using Join On _usn3 Using Scan `6esn`:``) Union All Load Csv With Headers From Extract(`` In {`1esn`} Starts With @usn6 Where Null[{_usn4}..]|0Xa Contains {`7esn`} Contains $999)[..None(`1esn` In $12 Is Not Null Where $`2esn`[{``}..{1000}][#usn8..`2esn`])] As usn1 Merge `3esn`=((`3esn` :`6esn`:`8esn`))"), + octest_legacy:ct_string("Detach Delete $`2esn`[$usn2..][{``}..] Start `5esn`=Relationship:@usn6(_usn4={_usn4}) ,#usn8=Relationship( {`4esn`})Where {@usn6}[$`7esn`..][False..] Union Load Csv With Headers From $`1esn`[07..][9e12..] As `` Fieldterminator 's_str' Create `2esn`=Allshortestpaths(((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]})<-[:@usn5|:`7esn`{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->({#usn7:123456789[0..]}))) Return *,[#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null,{999}[9e1] As usn1 Order By {123456789} =~{@usn6} Desc,Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..] Desc,{`5esn`} Ends With \"d_str\" Desc Limit _usn4 =~0e0 Union Start `6esn`=Relationship:usn2({`5esn`}) Where #usn8 In `8esn` In 07 Delete Any(@usn5 In Null =~12e12 Where 0[`4esn`][12.e12]) Is Null,Count ( * )[9e1..{@usn5}],{`3esn`} Is Not Null Is Not Null"), + octest_legacy:ct_string("Create Allshortestpaths(((`2esn` :@usn6)<-[:#usn7|`2esn`]->(`1esn` :`6esn`:`8esn`{usn2:Count ( * )[..12][..{@usn6}]}))),#usn8=(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[?:`6esn` *01..07]->(#usn7 :#usn8{_usn3:`1esn`[..00][..{7}]})<-[:`1esn`|:`3esn` *1000]-($12) Start _usn3=Relationship:usn1('s_str') ,usn2=Node:usn1(#usn8='s_str')Where 0e0[..$@usn5][..$`8esn`]"), + octest_legacy:ct_string("Using Periodic Commit 0X0123456789ABCDEF Load Csv With Headers From $usn1 Contains {`8esn`} Contains $123456789 As @usn6 Fieldterminator \"d_str\" Create usn1=(({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]}))"), + octest_legacy:ct_string("Unwind $7 Is Not Null As `4esn`"), + octest_legacy:ct_string("Return Distinct {`5esn`}['s_str'..] As ``,{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]} =~(`7esn` {`3esn`:0.0 =~12.e12 =~1.0,`1esn`:$usn1 Starts With {_usn3}})-[ *..0{`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null}]->(:usn1:_usn4{`4esn`:01234567 In $123456789}) =~01 As `3esn`,{#usn7}[{`4esn`}..][0X7..] As @usn6 Order By 1.0 Ends With 1000 Descending,Shortestpath((_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]) In Shortestpath(((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}))) Asc Skip Reduce(#usn7={`1esn`} Starts With `4esn` Starts With {0},`3esn` In 123.654[1e1..][{#usn8}..]|9e12[$`5esn`]) Match @usn5=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]})"), + octest_legacy:ct_string("Return Distinct {usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}[..None(`1esn` In `3esn`[07..] Where 0X0123456789ABCDEF[`5esn`..][$#usn8..])] Order By {usn2} Descending Skip $usn1 In 01234567 In .e1 Limit Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null)[[{_usn3}[$usn2..],$`3esn`[..$`2esn`][..123.654],12.e12[`7esn`]]..] Return Distinct *,`3esn` Ends With .e0 Ends With $`7esn` As @usn5,(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) Order By 0.12 In 0X7 Descending Skip @usn6[$12] Limit $999 Ends With $`2esn` Create `1esn`=(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[#usn8? *..0Xa{`4esn`:$`2esn` Ends With 0.12 Ends With .e1,`4esn`:07 =~@usn5}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}),Shortestpath((({_usn4:False[0Xa..$usn1]}))) Union All Unwind Null[010..][{``}..] As `3esn` Remove Case #usn8[`7esn`..] When 0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] Then {0}[False..@usn5] End.usn1,None(_usn3 In {@usn5}[..#usn7] Where {@usn6} In {#usn7} In 12.e12).`8esn`,({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[?:@usn6|`` *1000]->(:_usn4{`8esn`:12e12 Starts With `1esn` Starts With usn2})-[`2esn`:`2esn`{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})._usn3! Remove Extract(_usn4 In `2esn` Where 123.654 Starts With $``).usn2 Union All Start @usn5=Node:usn1(@usn5={12}) With Distinct Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000)[[_usn4 In `2esn` Where `3esn` Is Not Null Is Not Null]..All(`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999])][(_usn4 {_usn3:9e1 =~999})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})..{`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}] As _usn3,0.12 Starts With 9e12 Starts With $`1esn`,$`2esn` Ends With 0.12 Ends With .e1 Order By Filter(usn1 In 12.e12 In {0} In 9e1 Where 123.654[$`1esn`..Null][1000..{_usn3}]) Is Null Is Null Asc,$@usn6 Ends With 01 Ends With 999 Asc Where 9e0 =~0.0 =~$`5esn`"), + octest_legacy:ct_string("With *,(:`7esn`{``:.e1 Contains $`3esn`})<-[?:usn2|#usn7]->(#usn8 :#usn7) As #usn8 Order By `6esn` Is Null Is Null Desc Detach Delete 9e12 =~123456789 =~$999 Union Create Unique Allshortestpaths(((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[usn1?:usn2|#usn7 *01..07]-(@usn6 {`5esn`:\"d_str\" =~`1esn` =~{`5esn`}})-[`3esn`? *01..07]->({`7esn`:@usn5[..$@usn5][..0Xa]}))),usn1=(((`5esn` :@usn6)<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5)<-[ *123456789..0X7]-(:`7esn`{``:.e1 Contains $`3esn`}))) Start `6esn`=Relationship:`1esn`({@usn5}) Where 12 Is Not Null Is Not Null Return Distinct *,0x0 Is Not Null Is Not Null Order By {7} Contains $123456789 Ascending Skip [`` In {`1esn`} Starts With @usn6 Where $123456789 Starts With $123456789 Starts With Count ( * )|{#usn8}[usn1][1.0]][Shortestpath((@usn6 {usn1:$#usn7 =~{12} =~False})-[`1esn`?:_usn3|`8esn` *0xabc..7]-(`4esn` :@usn6))..] Limit #usn8['s_str'..][123.654..] Union All Remove None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $`5esn`[$#usn7..][0xabc..]).`2esn`,{`5esn`:usn2 =~0X7 =~{#usn7}}.`3esn`? With Distinct {@usn5} Is Null,``[$0..][`1esn`..] As `4esn` Order By 0Xa[07..] Ascending Limit 's_str'[.._usn4][..``] Create Unique (((`4esn` :@usn6)<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`)-[ *0x0..{@usn6:'s_str'[_usn4..0x0],`4esn`:_usn4 In $usn1}]->(:#usn7{usn2:{`8esn`}[0X7][$`3esn`]}))),usn2=(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})"), + octest_legacy:ct_string("Start #usn7=Node:usn2({@usn5}) Where \"d_str\" Contains @usn6 Contains 12.e12 Create @usn6=(_usn3 {`4esn`:`8esn` Contains 1e1,#usn7:{`2esn`}[..{@usn6}][..1.e1]})-[#usn7?:usn1 *01..07{`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}]->({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]}) With Distinct *,$`3esn`[..$`2esn`][..123.654] Where {`5esn`} Contains 's_str' Contains 9e1 Union Load Csv From Single(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7])[..{@usn5:_usn4[Count(*)],`6esn`:$`3esn` Contains 0 Contains 07}][..Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`])] As `6esn` Create usn1=(((`5esn` :@usn6)<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5)<-[ *123456789..0X7]-(:`7esn`{``:.e1 Contains $`3esn`}))),((`4esn` {`7esn`:12.e12 In $0 In $0,@usn5:_usn4[Count(*)]})<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})) Union All Foreach(usn2 In [123456789[0..]] Ends With Any(`1esn` In $12 Is Not Null) Ends With @usn5(Distinct 1.e1[{#usn8}],123.654 Ends With usn2 Ends With 0)| With `7esn` Ends With $_usn3 Ends With usn2 As _usn4,1000 Is Null Is Null Order By \"d_str\"[Count ( * )..`6esn`] Desc Skip 9e1 Ends With $@usn5 Ends With $123456789 Limit $`8esn`[0e0..] Where {999} Starts With {_usn4} Starts With 00 Return $1000[\"d_str\"..$999][$`3esn`..{`3esn`}] As `6esn` Skip `8esn` Limit 9e1[9e1...e0]) Load Csv From [{usn2}[$`4esn`]] Starts With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null] As #usn7 "), + octest_legacy:ct_string("Detach Delete usn2[999..],$7 Ends With 0X7 Start usn1=Node:_usn3(_usn3='s_str') ,`3esn`=Node:``(_usn3={0}) Union Foreach(`6esn` In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000|$@usn5 In $usn2 In {1000}) Is Not Null| Create Unique @usn6=((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})<-[``?:#usn8|`2esn`]->(:`8esn`:@usn5)<-[#usn7]-(`3esn` :#usn7)),((#usn8 :usn1:_usn4)<-[usn1:usn1{`3esn`:\"d_str\" Ends With False Ends With {@usn6},`5esn`:`4esn` Contains #usn8 Contains 7}]->(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(`2esn` :#usn8{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})) Delete Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where 1.e1[12e12..{`6esn`}]|Count ( * )[..12][..{@usn6}]) Contains All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Contains Extract(_usn4 In `2esn` Where $999 Is Null),[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]] Is Not Null,Single(_usn3 In True[7][$999]) Is Not Null Is Not Null) Merge ((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})) On Match Set Reduce(#usn8=Count ( * )[..12][..{@usn6}],`` In {`1esn`} Starts With @usn6|@usn6[{0}..]).@usn5 =$#usn7 =~{12} =~False On Match Set [`6esn` In 00 Where $`1esn`[$12][Count ( * )]].`5esn`? =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,_usn4 =Reduce(@usn5=True[7][$999],usn1 In 12.e12 In {0} In 9e1|.e12 =~$_usn4)[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])][[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]]] Union Merge Shortestpath((usn2 )-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null}))"), + octest_legacy:ct_string("Foreach(`4esn` In Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Starts With (usn2 :``)<-[#usn7? *0X0123456789ABCDEF{usn1:.e1[@usn5]['s_str'],`2esn`:$`7esn` Is Null Is Null}]->({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]})| Create @usn5=(`4esn` :#usn7)<-[@usn6?:usn2|#usn7]->(`1esn` )-[`6esn`?*..{`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}]->({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6}),(usn2 {usn1:{`4esn`}[..07][..$`6esn`],`5esn`:'s_str'[..0X7]})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]->({_usn4})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`) Remove [`6esn` In Count(*) Ends With $`` Ends With {7} Where `1esn` =~1000 =~1000|0xabc[$@usn5]].usn1,Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000|\"d_str\"[{`8esn`}..])._usn3) Foreach(_usn4 In 999 Ends With {`2esn`}| With Distinct $`6esn` Starts With 12.e12 Starts With $#usn7 As @usn6 Skip 07 =~$`8esn` =~9e1)"), + octest_legacy:ct_string("Optional Match ``=Allshortestpaths((((:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})-[#usn8? *..0Xa{`4esn`:$`2esn` Ends With 0.12 Ends With .e1,`4esn`:07 =~@usn5}]-(usn2 :`4esn`:@usn6)-[`8esn`?:``]->(`` {`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]})))) Where `6esn`[..{999}] Load Csv With Headers From Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})] As @usn5 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Foreach(usn1 In Reduce(@usn5={`1esn`} In 12.e12 In 9e1,`5esn` In $`2esn`[12.e12][$@usn5]|$`6esn` Ends With {0} Ends With {`7esn`}) Is Null| Delete `3esn`(Distinct 12.e12[``..usn2][{#usn7}..@usn5],1000 Is Not Null) In {`1esn`:@usn6[$usn2..#usn7]},[`6esn` In 00 Where 0.12 In 0X7|{999} Is Null] Is Null) Match @usn5=Allshortestpaths(((:`2esn`))),Allshortestpaths((((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})))) Using Join On ``,@usn5 Where `7esn` Contains {@usn5} Contains $123456789 Merge (#usn8 :`8esn`:@usn5) On Create Set Single(_usn4 In `2esn` Where 9e12 Is Not Null Is Not Null).@usn5 =Allshortestpaths(((`6esn` :`8esn`:@usn5)<-[`2esn`?:#usn7|`2esn` *..01234567{``:{usn1} Ends With {`6esn`} Ends With 123456789,`5esn`:{999} Is Null}]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[usn1:usn1{`3esn`:\"d_str\" Ends With False Ends With {@usn6},`5esn`:`4esn` Contains #usn8 Contains 7}]->(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})))[{`2esn`:`5esn` Is Null Is Null}] Union All With Distinct {`5esn`} Starts With 12.0,Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End[None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])][count(Distinct $`5esn`[$#usn7..][0xabc..])] As `2esn`,0.e0 Contains .e0 Contains $@usn6 Skip Reduce(#usn8=0X7 Starts With {999} Starts With 12e12,_usn4 In `2esn`|usn2[True]) Starts With [01234567[..9e1]] Starts With Reduce(@usn5=.e1 Ends With {7} Ends With $usn1,`` In {usn1} Ends With {`6esn`} Ends With 123456789|{`2esn`} In 0Xa In {_usn3}) Limit 0.e0 Ends With False Where Null[{_usn4}..] Load Csv With Headers From Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})] As @usn5 Fieldterminator \"d_str\" Union Start _usn4=Node:`1esn`({@usn5}) ,#usn7=Relationship:#usn7(`7esn`={usn2}) Foreach(`` In [$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null][(`1esn` :#usn7)<-[? *0X0123456789ABCDEF]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]})..[{_usn3}[$usn2..],$`3esn`[..$`2esn`][..123.654],12.e12[`7esn`]]]| Optional Match ``=Allshortestpaths((((:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})-[#usn8? *..0Xa{`4esn`:$`2esn` Ends With 0.12 Ends With .e1,`4esn`:07 =~@usn5}]-(usn2 :`4esn`:@usn6)-[`8esn`?:``]->(`` {`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]})))) Where `6esn`[..{999}] With 12.0[010],{@usn5} Is Null Order By `3esn`[$@usn5..@usn5][9e1..$``] Desc,Extract(_usn4 In `2esn` Where $999 Is Null) Starts With Reduce(`5esn`=00,`2esn` In {999} Is Not Null|{`4esn`}[..07][..$`6esn`]) Starts With [`8esn`[..`4esn`][..$usn1],{#usn8}[2.12]] Descending,.e1 =~$`5esn` Desc Skip Count ( * ) Contains 12 Limit Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000) Contains [0x0[$`8esn`.._usn3]] Contains count({`1esn`} Is Not Null,$`2esn` Ends With 0.12 Ends With .e1))"), + octest_legacy:ct_string("Create Unique @usn5=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Union Foreach(`2esn` In None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False)[[9e1[$_usn4..0xabc],{@usn6}[$`7esn`..][False..],#usn8 In `8esn` In 07]..Any(_usn4 In `2esn` Where $999 Is Null)]| Create Unique @usn6=((`4esn` :usn2:`2esn`)) Load Csv From Single(_usn3 In {@usn5}[..#usn7] Where {@usn6} In {#usn7} In 12.e12)[(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[*{`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]}]->(:`2esn`{#usn8:`6esn` Ends With 2.12 Ends With @usn6,`1esn`:{`8esn`}[True..][.e1..]})<-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` :`8esn`:@usn5)] As @usn6 Fieldterminator 's_str') Unwind All(_usn4 In 0.0[..{999}][..0.0] Where 12 Ends With 01)[Allshortestpaths((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}))..] As @usn5 With {`5esn`:2.12 =~0x0 =~_usn4,`3esn`:$@usn6 Contains `7esn`}[..(#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]})<-[`7esn`?:`7esn` *..7{`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})][..Any(_usn3 In {`2esn`} Ends With {12} Ends With 7)] As #usn8,{`1esn`:{`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`],`5esn`:0.12 Contains 12.0} Ends With [{usn2},0.12[Count(*)..][$#usn7..]] Ends With {0} As #usn8 Limit All(usn1 In 12.e12 In {0} In 9e1 Where {12}[usn2])[Reduce(``=$@usn5[..usn2][..$#usn7],`6esn` In Count(*) Ends With $`` Ends With {7}|{`4esn`}[$123456789..])..][{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]}..] Union Remove Single(`1esn` In $12 Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]).#usn7,Single(_usn4 In `2esn` Where False Ends With $``).`1esn`!"), + octest_legacy:ct_string("Foreach(@usn6 In {`3esn`} =~[1.e1 =~$usn2] =~Filter(`6esn` In 00 Where `5esn`[..9e0][..01234567])| Delete {`8esn`} =~#usn8 =~$`3esn`,0Xa Contains {`7esn`} Contains $999,\"d_str\"[Count ( * )..`6esn`] Delete Shortestpath((@usn6 {``:.e12[\"d_str\"..][.e1..]}))[{`3esn`:#usn8 =~{999}}..[_usn3 In True[7][$999] Where 12e12 Is Not Null Is Not Null]],{@usn5} Is Null)"), + octest_legacy:ct_string("Merge `2esn`=((`7esn` {`4esn`:#usn8 =~{999},`2esn`:9e1 =~`` =~{`7esn`}})) On Create Set _usn4:usn1:_usn4,`7esn` =#usn7[00],``:@usn6 On Match Set `5esn`+=$`3esn` Contains 0 Contains 07,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $#usn7[..@usn6][..$0]).`1esn`? =$1000[0.12..0.12] Create #usn7=Allshortestpaths(((:`5esn`:@usn5))),(((`5esn` :@usn6)<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5)<-[ *123456789..0X7]-(:`7esn`{``:.e1 Contains $`3esn`}))) Union Start @usn5=Relationship:#usn7({`4esn`}) ,@usn5=Node:`7esn`(@usn5=\"d_str\") Union All Create Unique `2esn`=(@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]}),Allshortestpaths(((:`7esn`{usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})<-[`8esn`?:`4esn`|:#usn7]->({`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]})-[usn2 *07{usn1:07 =~@usn5}]->({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True}))) Load Csv With Headers From {usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]} Is Null Is Null As usn1 Create Unique #usn8=((:`8esn`:@usn5{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[#usn7{usn1:1.0[{999}][$999]}]->(:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})),`5esn`=(((_usn4 :#usn8)-[`5esn`{`7esn`:@usn5[..$@usn5][..0Xa]}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})<-[? *0X0123456789ABCDEF]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]})))"), + octest_legacy:ct_string("Load Csv From `5esn` Is Not Null Is Not Null As usn1 Union Create Unique `3esn`=Allshortestpaths((`7esn` :@usn6)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]})),usn1=(({`3esn`:12 Starts With 0x0,`8esn`:0X7[0.e0][{`4esn`}]})-[`5esn` *0x0..]->(`8esn` :#usn7)) Return Distinct $`2esn`[{usn2}] Limit Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..]) Starts With [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]|Count ( * )[..12][..{@usn6}]] Starts With Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where True Starts With $`2esn` Starts With {@usn6}) With Distinct @usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2) As @usn5,$`` =~{``} =~0.e0 Skip Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Starts With (usn2 :``)<-[#usn7? *0X0123456789ABCDEF{usn1:.e1[@usn5]['s_str'],`2esn`:$`7esn` Is Null Is Null}]->({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}) Where {_usn3} Contains True Contains 0X7"), + octest_legacy:ct_string("Create Unique usn2=((:#usn8{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})-[ *0X7..0Xa]->(@usn6 :`2esn`)<-[`2esn`?:@usn6|`` *..00]->({_usn3})),`8esn`=Allshortestpaths((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Start @usn5=Node:``(#usn7=\"d_str\") Where {`8esn`}[..$`6esn`][..123.654] Create (((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})))"), + octest_legacy:ct_string("Match #usn7=(:``{``:0x0 =~123.654 =~{999}})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}),#usn8=Allshortestpaths((:`5esn`:@usn5{usn1:$#usn7[`5esn`]})<-[?:`4esn`|:#usn7]->(_usn4 :#usn8{`5esn`})-[`4esn`?:_usn4|:usn1{@usn6:$#usn7 Ends With 0.12 Ends With {@usn6}}]->(#usn8 {usn1:$123456789 Starts With `5esn`})) Using Index #usn7:`8esn`(@usn6) Using Index usn2:``(#usn8) Unwind $_usn4[$`4esn`..$12] As _usn3 Return Distinct Filter(`1esn` In $12 Is Not Null Where Count(*)[..``][..#usn8]) Ends With Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}]) Ends With {`2esn`:usn1 Is Null Is Null,usn2:0.e0 =~`1esn` =~`6esn`} As usn2,$999 Is Not Null Is Not Null As `3esn` Skip _usn4 Is Not Null Is Not Null Union All Create Unique (((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`}))),#usn8=(((usn2 )<-[ *0xabc..7]->(:`4esn`:@usn6)<-[usn2?:usn2|#usn7]->(`3esn` :_usn4))) Load Csv With Headers From [{`3esn`} Is Null,{@usn5} =~_usn4 =~0.12] =~Extract(_usn4 In `2esn` Where 1.0[{999}][$999]) As `2esn` Fieldterminator 's_str' Unwind $usn2 As `5esn`"), + octest_legacy:ct_string("Detach Delete {`2esn`}[12..][{_usn3}..],07 =~@usn5,`6esn` Is Not Null Is Not Null Unwind 12e12 Is Not Null Is Not Null As `6esn` Union Merge `2esn`=Shortestpath((((usn2 :``)-[@usn5?:#usn7|`2esn`{`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}]->(`2esn` :@usn6{7})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`)))) Union Unwind (:``{`1esn`:#usn8 Is Not Null,`5esn`:$@usn6[$0..usn1][0X0123456789ABCDEF..$999]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})-[?:_usn3|`8esn` *12..{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}]-(`6esn` :`2esn`{`7esn`:#usn8 =~{999}}) Ends With `6esn`() Ends With Shortestpath(((`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})-[:#usn8|`2esn`]->(:`3esn`:`6esn`)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))) As #usn8 Create Unique _usn3=((`5esn` :`3esn`:`6esn`))"), + octest_legacy:ct_string("Detach Delete 2.12 =~_usn3 =~0.e0 Foreach(#usn8 In 0 Contains $usn2 Contains 12e12| Create ``=(((:`5esn`:@usn5)-[:`7esn`]-(:usn1:_usn4)-[`4esn`?:_usn4|:usn1{@usn6:$#usn7 Ends With 0.12 Ends With {@usn6}}]->(#usn8 {usn1:$123456789 Starts With `5esn`}))),usn1=(({`1esn`:12 Starts With 0x0})<-[`5esn`{`6esn`:12 Is Not Null Is Not Null,`8esn`:`3esn` Is Not Null Is Not Null}]->(_usn3 {@usn5:.e12 =~.e0}))) Union All Unwind {7} Starts With $usn1 Starts With 1.0 As #usn7"), + octest_legacy:ct_string("Start `2esn`=Node:`8esn`(`6esn`='s_str') ,`3esn`=Node:`4esn`({#usn8})"), + octest_legacy:ct_string("Using Periodic Commit 123456789 Load Csv From 12.e12[`7esn`] As `5esn` Fieldterminator \"d_str\" Create @usn5=Shortestpath(({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[{``:\"d_str\"[{`8esn`}..]}]-({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})),`7esn`=((usn1 )<-[`7esn`]->(@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]})<-[{`2esn`:``[{123456789}..]}]->(@usn6 :`6esn`:`8esn`)) Unwind Reduce(#usn8=0X7 Starts With {999} Starts With 12e12,_usn4 In `2esn`|usn2[True]) Starts With [01234567[..9e1]] Starts With Reduce(@usn5=.e1 Ends With {7} Ends With $usn1,`` In {usn1} Ends With {`6esn`} Ends With 123456789|{`2esn`} In 0Xa In {_usn3}) As #usn8"), + octest_legacy:ct_string("Foreach(`6esn` In #usn8 Is Not Null| Load Csv From 12.e12[$`4esn`..] As usn1 ) Load Csv With Headers From [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 2.12 In $`8esn` In {`7esn`}|12e12 Starts With `1esn` Starts With usn2] Contains Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 9e0[#usn8]) Contains #usn7({`7esn`}[9e1..][@usn6..],{usn2}[$`4esn`]) As _usn4 Load Csv With Headers From `2esn` As `4esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("With 's_str'[_usn3..] As `5esn`,{0}[False..@usn5] As `1esn` Skip 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF Return {`8esn`}[@usn5..][01..] Optional Match _usn3=Allshortestpaths(((`` {`1esn`:{@usn5}[1e1..][9e1..],`2esn`:$`7esn` Contains {`1esn`} Contains 9e12})<-[`3esn`? *0x0..{_usn3:0.0[9e1..][Null..],#usn7:{`3esn`} Is Not Null Is Not Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-(`3esn` :`6esn`:`8esn`{`8esn`:{``} Is Null Is Null,`3esn`:123456789 Is Not Null Is Not Null}))) Using Index `3esn`:#usn8(`2esn`) Using Scan usn1:usn2 Where $@usn6[01..@usn5][0x0..`4esn`] Union Foreach(`4esn` In Case True[$123456789][`8esn`] When 12.e12[{@usn5}..][9e1..] Then 12.e12[`7esn`] Else {`2esn`}[Count(*)] End Ends With (`` :`7esn`)<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]}) Ends With None(`1esn` In `3esn`[07..])| With {#usn8} Is Null Is Null As `1esn`,$7 In @usn5 In {@usn5},`1esn`[Null..] As `2esn` Order By ({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]})<-[`5esn`?:`7esn`]->(:@usn5)<-[`4esn`:`4esn`|:#usn7{`2esn`:{`4esn`}[$_usn4..][9e0..]}]-({usn2:`1esn` In 07}) =~Reduce(@usn6=`3esn` =~9e0 =~@usn6,_usn3 In True[7][$999]|$`8esn`[..$999][..0]) =~{@usn5:12 Is Not Null,`2esn`:$999 In 999} Descending,{`4esn`}[..07][..$`6esn`] Ascending Limit (`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-({#usn7:#usn8 =~{999}}) In Shortestpath(((:`1esn`)<-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})-[`7esn`? *123456789..0X7{`6esn`:{0}[..{`7esn`}]}]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999}))) Delete 0X0123456789ABCDEF[`5esn`..][$#usn8..],`3esn` Is Not Null Is Not Null,0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]) Create Unique usn2=Allshortestpaths((#usn8 :`6esn`:`8esn`{`1esn`:9e12 Is Not Null,_usn4:0X0123456789ABCDEF[$`2esn`..][`2esn`..]})<-[ *123456789..0X7]-(:`7esn`{``:.e1 Contains $`3esn`})),((`6esn` {#usn8:$123456789[..$7][..$`6esn`],usn1:$7 In 1.0 In 1e1})) Create Unique `5esn`=Shortestpath(((@usn6 :usn1:_usn4)-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)<-[``?:`4esn`|:#usn7{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]}]->({`1esn`:$123456789[..$7][..$`6esn`]})))"), + octest_legacy:ct_string("Unwind count(Distinct 999[12.0..][#usn7..]) =~Allshortestpaths(((usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}))) =~@usn6(`8esn` Starts With {123456789},$`` Starts With 12 Starts With $usn2) As `2esn` Create (`` {``:0x0 =~123.654 =~{999}}) Remove {usn1:usn2 =~0X7 =~{#usn7}}.usn1?,@usn5:@usn6 Union Unwind 0xabc[9e12][0X0123456789ABCDEF] As _usn3 Remove Single(`2esn` In {999} Is Not Null Where $usn1[@usn6][#usn7]).#usn8? Remove ({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[?:@usn6|`` *1000]->(:_usn4{`8esn`:12e12 Starts With `1esn` Starts With usn2})-[`2esn`:`2esn`{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})._usn3! Union All With $@usn6 Ends With 01 Ends With 999 Skip {_usn3} Contains 9e0 Contains $999 Limit Allshortestpaths(((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}))) Starts With All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Where 12.e12[`7esn`] Match _usn4=Allshortestpaths(((:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})-[?:#usn8|`2esn` *999{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({@usn6:#usn8[$0..False][$`1esn`..$#usn7]})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}))) Using Join On _usn3 Using Scan `6esn`:`` Match (#usn7 :#usn8)-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0}),@usn6=Allshortestpaths(((`3esn` {`1esn`:$`6esn` Starts With 12.e12 Starts With $#usn7})-[`6esn`:`8esn`|:_usn4]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}))) Using Index `6esn`:usn2(@usn5)"), + octest_legacy:ct_string("With {`8esn`}[@usn5..][01..] Where _usn4 Is Not Null Is Not Null Union Unwind @usn5[$12..\"d_str\"] As `6esn`"), + octest_legacy:ct_string("Start _usn4=Node:`4esn`(`2esn`={``}) Where False Starts With 010 Create Unique `6esn`=((({`1esn`:$123456789[..$7][..$`6esn`]})<-[:`2esn` *1000{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]-(#usn8 :`8esn`:@usn5)-[?:`8esn`|:_usn4 *12..]->(@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]}))),(((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[{#usn7:'s_str'[_usn4..0x0]}]-(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})))"), + octest_legacy:ct_string("Unwind 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF As _usn3 With Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000)[[_usn4 In `2esn` Where `3esn` Is Not Null Is Not Null]..All(`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999])][(_usn4 {_usn3:9e1 =~999})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})..{`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}] As _usn3,0.12 Starts With 9e12 Starts With $`1esn`,$`2esn` Ends With 0.12 Ends With .e1 Order By Filter(usn1 In 12.e12 In {0} In 9e1 Where 123.654[$`1esn`..Null][1000..{_usn3}]) Is Null Is Null Asc,$@usn6 Ends With 01 Ends With 999 Asc"), + octest_legacy:ct_string("With Distinct 9e12[..0X7] As _usn3,None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False) Is Null As usn2 Limit Case When 0X0123456789ABCDEF[7...e0][`1esn`..usn2] Then $1000 Starts With $`8esn` Starts With {`5esn`} When usn2 =~0X7 =~{#usn7} Then {`2esn`} In $123456789 In True End[Single(_usn3 In True[7][$999] Where {usn2})][Any(_usn4 In 0.0[..{999}][..0.0] Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`)] Where $@usn5[..usn2][..$#usn7] Match `1esn`=((`4esn` :`2esn`{`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})-[:`1esn`|:`3esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->({`2esn`:#usn8 Is Null,`6esn`:123456789 Ends With usn1 Ends With usn2})<-[#usn8? *0X7..0Xa$`2esn`]-({`7esn`:123456789[0..]})),usn1=Allshortestpaths((`2esn` :`5esn`:@usn5)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})) Using Index @usn6:#usn8(_usn4) Using Join On _usn3,`` Where $`1esn`[#usn8][$@usn5] Unwind 0X0123456789ABCDEF[`5esn`..][$#usn8..] As _usn4 Union Remove Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 9e12 Is Not Null Is Not Null).`1esn`!,(`3esn` :usn2:`2esn`{``:{_usn3} Contains $`1esn` Contains 12.0})-[`3esn`?:#usn7|`2esn`]->(usn1 :`6esn`:`8esn`).#usn7 Return Reduce(`4esn`=$0[$1000..00][{0}..{usn1}],@usn5 In Null =~12e12|_usn4 Is Null) Is Not Null Is Not Null Limit $_usn4[9e0..] Return Distinct *,$#usn7 =~{12} =~False Order By [`2esn` In {999} Is Not Null Where {@usn6}[True..{_usn3}]] =~None(#usn7 In 123.654 Starts With $`` Where {usn2}[$`4esn`]) =~Extract(`1esn` In $12 Is Not Null Where Null Is Null Is Null|$123456789 =~`4esn`) Ascending,9e12[..0X7] Descending Skip Any(`6esn` In 00 Where 0X7 Starts With {999} Starts With 12e12) Starts With (`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}) Starts With {`8esn`:{#usn7} Contains @usn5 Contains Count ( * )} Union All Create ((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})-[:`5esn`]-({`7esn`:@usn5[..$@usn5][..0Xa]})-[@usn5? *0x0..{`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}]-(_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null})) Match Shortestpath((`7esn` {`3esn`:0.0 =~12.e12 =~1.0,`1esn`:$usn1 Starts With {_usn3}})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]-({`7esn`:123.654 Ends With usn2 Ends With 0})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})) Using Scan _usn3:`4esn` Using Scan `2esn`:`1esn` Where $123456789 Starts With $123456789 Starts With Count ( * ) Load Csv With Headers From 12[12e12] As _usn4 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Create `6esn`=Shortestpath(((:#usn8{#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})-[_usn4 *0x0..]-(:#usn7{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}}))),`4esn`=Shortestpath((`8esn` :`7esn`)<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})) Start #usn7=Rel( {_usn4}) "), + octest_legacy:ct_string("Detach Delete 0xabc[$999..][{#usn7}..],$12 Contains 0Xa,.e0[0.e0..][{0}..] Union Load Csv From $12 Is Not Null As @usn6 With *,0.e0 Contains #usn7 Order By $_usn4[9e0..] Asc,12 In 999 Descending Limit {`2esn`} Starts With @usn6 Load Csv With Headers From 0Xa In {`7esn`} As usn1 Fieldterminator \"d_str\" Union Create Unique (({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})-[:#usn7|`2esn` *01..07]->(`1esn` {#usn7:Count ( * )[$12..]})-[:`2esn` *07]-(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})),usn2=Allshortestpaths(({`5esn`:0Xa[0e0..{#usn7}]})<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})) Unwind usn2[999..] As `1esn` Create `4esn`=Shortestpath((((`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})))),Allshortestpaths((@usn6 :`7esn`{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12})-[_usn3?:``]-(@usn5 {_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000}))"), + octest_legacy:ct_string("Create `2esn`=Allshortestpaths(((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]})<-[:@usn5|:`7esn`{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->({#usn7:123456789[0..]}))) Union Load Csv From 999 Ends With {`2esn`} As `1esn` Union All Remove [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12].`2esn`,[usn1 Contains $7 Contains $``,$@usn5 In 's_str' In $12,$`1esn` Is Not Null Is Not Null].usn2!,All(`1esn` In `3esn`[07..] Where 999 Starts With 's_str').#usn8! Remove Extract(`` In {`1esn`} Starts With @usn6 Where Null[{_usn4}..]|0Xa Contains {`7esn`} Contains $999).`5esn`!,All(`5esn` In $`2esn`[12.e12][$@usn5] Where {999} Starts With {12}).`2esn`,Reduce(`3esn`={7} Starts With $usn1 Starts With 1.0,_usn3 In True[7][$999]|123.654[{@usn5}..123.654][1.0..$12]).#usn8 Foreach(`` In {123456789} =~01234567 =~`3esn`| With (`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] Order By `1esn`[..00][..{7}] Ascending,`6esn` In Null Descending,{`3esn`} Is Null Descending Skip Case When .e1[@usn5]['s_str'] Then 123456789 Starts With {@usn6} Starts With $12 End Contains [`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`] Contains {@usn5:12 Is Not Null,`2esn`:$999 In 999} Where $``[..1.e1][..12] Start @usn5=Node:``(#usn7=\"d_str\") ,#usn8=Relationship:`4esn`(``='s_str')Where $``[..1.e1][..12])"), + octest_legacy:ct_string("Start usn1=Rel(12,1000,1000,0X7) Union Foreach(usn1 In 9e1[$_usn4..0xabc]| Create Unique `1esn`=(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}),Allshortestpaths((((:#usn7{#usn7:$`8esn` In $`2esn` In {7}})-[`7esn`? *..0{`2esn`:07 =~$`8esn` =~9e1,``:`5esn`[0xabc..]}]->({`3esn`:{@usn5} Is Null,`5esn`:{`2esn`} Ends With {12} Ends With 7})-[? *01..07]->(`3esn` {`1esn`:$`6esn` Starts With 12.e12 Starts With $#usn7}))))) Start ``=Relationship( {usn1}) Where {@usn6} In {#usn7} In 12.e12 Union Start _usn4=Rel:`2esn`({_usn3}) "), + octest_legacy:ct_string("With {_usn3}[`3esn`..$#usn8] As `1esn`,12 Starts With 7 Starts With $`5esn`,$#usn7 Contains True Contains _usn4 As `4esn` Skip $@usn6[..123.654] Start `3esn`=Rel:#usn8(\"d_str\") ,`3esn`=Node:`2esn`(@usn6={`4esn`}) Foreach(@usn5 In {`1esn`}[`6esn`..12e12]| Delete 123456789 Starts With {999},{_usn4}[{``}..],{``}[_usn4..$`1esn`]) Union All Merge `2esn`=(_usn4 :#usn7{_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]}) On Create Set `7esn`+=Reduce(@usn5=True =~{`1esn`},_usn4 In 0.0[..{999}][..0.0]|7[$0..][{_usn4}..]) In Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`) In All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) With Distinct *,01234567[..9e1] Where $7 Is Null Is Null Load Csv With Headers From $@usn6 Ends With 01 Ends With 999 As `` Fieldterminator 's_str' Union All Unwind $`7esn` Is Null Is Null As `8esn` Remove Case @usn5[..$@usn5][..0Xa] When $@usn6 Starts With {`1esn`} Starts With 12 Then $1000[..12.0][..0e0] Else 's_str'[..0X7] End.`8esn` Create Unique Shortestpath((`1esn` :@usn5{_usn3:Null Is Null Is Null,``:True[True..]}))"), + octest_legacy:ct_string("With Distinct *,All(`6esn` In Count(*) Ends With $`` Ends With {7}) In (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}) Skip [`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7}|usn2[`7esn`..{`3esn`}][$7..{#usn7}]][..[`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]|9e12[..0X7]]][..[`2esn` Ends With $`4esn` Ends With {#usn7},'s_str'[..0X7],{#usn8} =~{999} =~{#usn7}]]"), + octest_legacy:ct_string("Merge `3esn`=({`3esn`:9e1 =~999})-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]-(#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]}) Merge (_usn4 :#usn7{_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]}) On Match Set ``+=[#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 In 01234567 In .e1|{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]] =~Extract(`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]|$usn1 In 0.12 In $``) =~Single(_usn3 In {@usn5}[..#usn7] Where {`4esn`}[..07][..$`6esn`]),Allshortestpaths(((:usn1:_usn4)-[`1esn`:`1esn`|:`3esn` *01..07{`3esn`:123456789 Is Not Null Is Not Null}]-(`1esn` {@usn5:$usn1 In 0.12 In $``})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`))).usn2? =1.e1[`4esn`..][$`6esn`..] On Match Set `5esn` =@usn5 In 1e1"), + octest_legacy:ct_string("Start #usn7=Node(999) Remove {usn1:0e0[0X0123456789ABCDEF..010][$@usn6..010]}.`1esn`?,@usn6:`2esn`,[9e1[9e1...e0]].#usn7? Merge @usn5=(_usn3 :@usn5)-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}) Union All Detach Delete `2esn`[Null] With Distinct *,Case 0xabc[$@usn5] When 9e1[$_usn4..0xabc] Then $12[{7}..0X0123456789ABCDEF] When 01 =~$`1esn` Then {1000}[\"d_str\"..{@usn5}][$1000..$#usn8] Else 1.e1[_usn4..][07..] End Is Not Null As usn2 Skip {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] Limit 0Xa[.._usn3][..$`6esn`] Where 12 Starts With 7 Starts With $`5esn` Union All Foreach(`5esn` In Extract(_usn4 In `2esn` Where 1.0[{999}][$999]|$`8esn` In $`2esn` In {7})[[{`8esn`}[0X7][$`3esn`]]][(`5esn` :`3esn`:`6esn`)-[`8esn`?:`4esn`|:#usn7{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-({`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF})]| Create (`2esn` :@usn6{7})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]})<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`),(((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]})))) Return *,Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where `7esn` Starts With 0X7 Starts With $`7esn`) Is Not Null As `2esn` Order By Null[010..][{``}..] Desc,`3esn`[_usn4..{0}][`5esn`..usn2] Desc,{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}[Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))..] Ascending Skip Null =~12e12"), + octest_legacy:ct_string("Using Periodic Commit 0 Load Csv From {_usn3} Starts With $12 Starts With {`8esn`} As usn2 Create Unique _usn3=((`5esn` :`3esn`:`6esn`))"), + octest_legacy:ct_string("Remove [0X0123456789ABCDEF[$`5esn`..],$999 Is Null,{`4esn`}[{`4esn`}..999]].`2esn`!,Any(@usn5 In Null =~12e12 Where $``[..1.e1][..12]).`2esn`?,[{`4esn`}[$_usn4..][9e0..],{@usn5} =~_usn4 =~0.12,`7esn` Ends With $_usn3 Ends With usn2].usn2?"), + octest_legacy:ct_string("Create (({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})) Return Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 9e12 Is Not Null) =~Case When False[0Xa..$usn1] Then {123456789}[12..][$12..] Else 0e0 Contains 9e12 End As usn2,{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}[Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))..] As `6esn` Order By {#usn7}[{#usn7}..][$`4esn`..] Ascending,{`4esn`}[..07][..$`6esn`] Ascending Limit 12 Starts With 7 Starts With $`5esn` With Distinct 's_str' Starts With 12e12 Starts With $_usn4 As `6esn` Limit 0e0[$#usn8...e12] Where {usn2} =~@usn6 =~{`4esn`} Union All Return Distinct *,Case 0xabc[$@usn5] When 9e1[$_usn4..0xabc] Then $12[{7}..0X0123456789ABCDEF] When 01 =~$`1esn` Then {1000}[\"d_str\"..{@usn5}][$1000..$#usn8] Else 1.e1[_usn4..][07..] End Is Not Null As usn2 Skip {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] Limit 0Xa[.._usn3][..$`6esn`] Union Create Unique #usn7=Allshortestpaths((({`7esn`:123456789[0..]})-[#usn8:`` *..0{@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}]->(`7esn` {`3esn`:0.0 =~12.e12 =~1.0,`1esn`:$usn1 Starts With {_usn3}})-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]->(:#usn8{#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000}))) Return *,Reduce(`5esn`=#usn7 Starts With $999,`3esn` In 123.654[1e1..][{#usn8}..]|12 Is Not Null Is Not Null) =~{@usn6:`8esn` Contains 1e1} =~(_usn4 :`5esn`:@usn5)<-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(:`4esn`:@usn6{usn1:$7[{`1esn`}],#usn8:\"d_str\"[..0.e0]})<-[#usn8?{`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00}),$12 Is Not Null As `6esn` Skip (`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->({_usn3}) Is Null"), + octest_legacy:ct_string("Match Shortestpath((`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})),@usn6=((`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]})<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)<-[`1esn`?:`4esn`|:#usn7 *..01234567]-(#usn8 {#usn7:$1000 Is Not Null Is Not Null})) Using Join On `2esn`,`2esn`,_usn4 Using Join On `5esn`,``,usn1 Where _usn3 Contains .e0 Contains {usn2} Remove Filter(`` In {`1esn`} Starts With @usn6 Where 12 Starts With 7 Starts With $`5esn`).``,Single(`1esn` In $12 Is Not Null Where {usn1} In Count ( * )).usn2?,Shortestpath((_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}})).#usn8? Union All Return Distinct $`8esn`[..0x0][..``] As `3esn` Order By All(`6esn` In Count(*) Ends With $`` Ends With {7}) In (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}) Desc Skip Allshortestpaths((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})<-[`1esn`?]->(:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}}))[Case When 123.654[$`1esn`..Null][1000..{_usn3}] Then ``[$0..][`1esn`..] When 00 Ends With `8esn` Then $usn2 Is Null Is Null Else $999 Is Null End..``(999 Starts With 's_str',1e1[1.e1..][123.654..])][Single(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{usn2:{1000},`6esn`:#usn8[`7esn`..]}] Create `3esn`=Allshortestpaths(((_usn3 {usn2:_usn3[$usn2..0]}))) Remove `8esn`(9e1 =~999,{``} Is Null Is Null).`3esn`!"), + octest_legacy:ct_string("Optional Match `3esn`=((_usn4 :#usn8{`5esn`})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5)-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->({`7esn`:123456789[0..]})) Using Scan `3esn`:`3esn` Return {#usn7} Contains @usn5 Contains Count ( * ),01 Starts With {999} Starts With $`2esn`,$usn1[@usn6][#usn7] As `6esn` Load Csv From `` Ends With $`4esn` Ends With 0X0123456789ABCDEF As usn2 "), + octest_legacy:ct_string("Create Unique #usn8=(`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`),``=((`8esn` :@usn6)-[@usn5? *0x0..{`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}]-({`7esn`:{usn1}[$`8esn`..0.0]})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})) Union All Create Unique ``=Shortestpath(((usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}))),usn1=Allshortestpaths(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]}))) Unwind (:`4esn`:@usn6{usn1:$7[{`1esn`}],#usn8:\"d_str\"[..0.e0]})<-[`4esn`:@usn6|``{_usn4:Count ( * ) Starts With 010 Starts With 0x0,`2esn`:1.0 In 9e1 In {`7esn`}}]->(usn2 {usn1:{`4esn`}[..07][..$`6esn`],`5esn`:'s_str'[..0X7]})-[? *0X0123456789ABCDEF]-(_usn3 :`5esn`:@usn5)[Reduce(usn2={`6esn`}[..{`2esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|1e1[..01])..] As `5esn` Load Csv With Headers From {#usn7} Is Null Is Null As `` Fieldterminator 's_str' Union All Merge Allshortestpaths((#usn8 :`6esn`:`8esn`{`1esn`:9e12 Is Not Null,_usn4:0X0123456789ABCDEF[$`2esn`..][`2esn`..]})<-[ *123456789..0X7]-(:`7esn`{``:.e1 Contains $`3esn`})) On Match Set #usn8 =$`1esn` =~$`1esn` =~{`6esn`},`2esn` =@usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2),`6esn` =`6esn` In Null On Create Set _usn4 =Filter(`1esn` In $12 Is Not Null Where {@usn5}[1e1..][9e1..]) In [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 12 Starts With {_usn4} Starts With $#usn8] In Filter(`2esn` In {999} Is Not Null Where $7 Ends With 0X7),#usn8 =0Xa[@usn5][{`7esn`}] Create Unique Allshortestpaths((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(@usn5 :`8esn`:@usn5)<-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(:`6esn`:`8esn`{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})),Shortestpath((((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})<-[`5esn`?:`7esn`]->({@usn5:Count ( * ) Is Null})<-[#usn8?:``]-(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})))) Remove [{usn1} Ends With {`6esn`} Ends With 123456789,$usn1[@usn6][#usn7]].`2esn`!,Reduce(`4esn`=$1000 Starts With $`8esn` Starts With {`5esn`},`` In {usn1} Ends With {`6esn`} Ends With 123456789|{`8esn`}[True..][.e1..]).`3esn`!"), + octest_legacy:ct_string("Using Periodic Commit 0xabc Load Csv From $12 Is Not Null As @usn6 Foreach(usn1 In {`4esn`}[{`4esn`}..999]| Create (`4esn` :`4esn`:@usn6) With Distinct 0Xa Contains #usn8 Contains 1000 Order By {#usn8} Contains 1000 Contains $`4esn` Ascending,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Ascending Skip ({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..`2esn`(Distinct #usn8[`7esn`..])][..[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]]])"), + octest_legacy:ct_string("Detach Delete Reduce(_usn3=12 Starts With 0x0,_usn4 In 0.0[..{999}][..0.0]|$usn1[..'s_str'][..$#usn8]) Is Null Is Null,{usn1}[01..7][{`3esn`}..`6esn`]"), + octest_legacy:ct_string("Unwind None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False)[Shortestpath(((({``:$7[{`1esn`}]})<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`)<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(#usn7 :@usn6))))..Extract(_usn3 In True[7][$999] Where $7 Is Null Is Null)][{`4esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:.e12 Is Null Is Null}..[`6esn` In Count(*) Ends With $`` Ends With {7} Where `1esn` =~1000 =~1000]] As _usn4 Detach Delete $#usn7 Starts With 9e0 Starts With 2.12,'s_str'[..0X7] Detach Delete Reduce(`8esn`=00[..$123456789][..$`5esn`],`` In {`1esn`} Starts With @usn6|False[999]) Is Not Null,0.0[9e1..][Null..] Union All Create `5esn`=((`8esn` :@usn6)),`8esn`=Shortestpath(({`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})) Start ``=Relationship( {``}) ,`7esn`=Relationship(07,123456789,123456789)Where 12.e12[{@usn5}..][9e1..] Union Start @usn6=Node:_usn4(``=\"d_str\") ,@usn5=Node:`1esn`(_usn4='s_str')Where 9e1[9e1...e0]"), + octest_legacy:ct_string("Return Distinct Any(`6esn` In 00 Where 0X7 Starts With {999} Starts With 12e12) Starts With (`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}) Starts With {`8esn`:{#usn7} Contains @usn5 Contains Count ( * )} As #usn7,0X0123456789ABCDEF Contains {usn1} As @usn5,{999} Starts With {_usn4} Starts With 00 As _usn4 Skip {_usn4}[{``}..] Foreach(#usn8 In $``[.e12..]| With 1.e1 Is Null Skip $`2esn`[{``}..{1000}][#usn8..`2esn`] Limit $123456789[..$7][..$`6esn`] Match `5esn`=(:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})-[`5esn`{`7esn`:@usn5[..$@usn5][..0Xa]}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})<-[#usn8? *..01234567]-($_usn3),((@usn6 :@usn5{usn2:{`6esn`} Ends With 0e0 Ends With {``}})-[? *0x0..{`6esn`:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]->(`1esn` {#usn8:$12 Contains 0Xa})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]->(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})) Using Join On #usn8,`5esn`,`1esn` Using Join On _usn4,@usn6) Load Csv From Case When 0X0123456789ABCDEF[7...e0][`1esn`..usn2] Then $1000 Starts With $`8esn` Starts With {`5esn`} When usn2 =~0X7 =~{#usn7} Then {`2esn`} In $123456789 In True End[Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`)] As usn1 Union Start _usn4=Node:`4esn`(_usn4={``}) "), + octest_legacy:ct_string("Start `3esn`=Relationship:@usn6({`2esn`}) ,`8esn`=Node:`6esn`('s_str')Where $@usn6 =~#usn8 Union All Create `5esn`=(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}) Return Case 00 Starts With $`6esn` When $@usn5 In 's_str' In $12 Then Count(*)[010..][#usn7..] When Count ( * )[Count ( * )][12] Then True[7][$999] Else `4esn` Contains #usn8 Contains 7 End =~Allshortestpaths(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]}))) As `4esn`,All(_usn4 In 0.0[..{999}][..0.0] Where Count(*)[.e12]) Starts With _usn4(Distinct 0.12 Ends With {1000} Ends With `6esn`,$_usn3 =~{_usn4} =~$`6esn`) Starts With {_usn4:False Contains 0.e0 Contains Count(*),`2esn`:1e1[{_usn4}..123.654]} As `5esn`,1000 As `5esn` Order By `1esn`[..00][..{7}] Ascending Skip .e12 Is Null Is Null"), + octest_legacy:ct_string("Create Unique Allshortestpaths(((_usn4 :#usn8))),(({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]})) Merge ((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})) On Create Set Case $`1esn`[07] When Null =~12e12 Then $``['s_str'..][0x0..] Else Null Is Null Is Null End.usn2? =0X0123456789ABCDEF[9e12],`4esn`+=12.e12[$`4esn`..],`8esn` =$usn1[0X7] On Match Set `6esn` =Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000) Contains [0x0[$`8esn`.._usn3]] Contains count({`1esn`} Is Not Null,$`2esn` Ends With 0.12 Ends With .e1),`3esn` =0.0 Contains $_usn4 Contains {`2esn`},(`4esn` {_usn4:12 Starts With {_usn4} Starts With $#usn8,_usn4:$@usn5[$`4esn`][$@usn6]})-[{`1esn`:@usn6[$usn2..#usn7]}]->({`3esn`:$usn1 In 01234567 In .e1,``:False[999]}).``? =\"d_str\" Ends With 1.0 Ends With 0e0 Create #usn7=(`4esn` :usn2:`2esn`)"), + octest_legacy:ct_string("Merge Allshortestpaths((((`3esn` {`1esn`:$`6esn` Starts With 12.e12 Starts With $#usn7})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5)-[_usn4? *..010{`3esn`:$`3esn` In 9e12 In ``,@usn6:'s_str'[.._usn4][..``]}]->(:`6esn`:`8esn`{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})))) On Match Set None(`6esn` In 00 Where {12} Starts With #usn8 Starts With 0e0).`1esn` =Count(*) In 0e0 In 9e1 On Match Set Reduce(`3esn`={123456789}[12..][$12..],#usn7 In 0Xa[@usn5][{`7esn`}]|123.654[$`1esn`..Null][1000..{_usn3}]).`8esn`? =#usn8 =~{999},`5esn`+=`6esn`[$0][#usn8] Merge `3esn`=(`5esn` :_usn4)<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]}) On Create Set (#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"})<-[`3esn`:`` *123456789..0X7{#usn8:12 Starts With $#usn7}]->(@usn5 {#usn7:$`7esn` In 12}).`4esn` =[{@usn5}[..@usn6],$7[{`1esn`}]] Is Null Is Null,Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12]).usn1! =[`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]][..Reduce(`4esn`=@usn5[12.0][{1000}],_usn4 In `2esn`|0[$`6esn`...e1][`1esn`..$`7esn`])][..[7[010][00],$7[$`3esn`],#usn7 =~{`4esn`} =~123456789]] On Match Set `7esn` =$999[{_usn4}]"), + octest_legacy:ct_string("Remove None(#usn7 In 123.654 Starts With $`` Where $_usn4 Is Not Null Is Not Null).usn2!,Reduce(usn2=00[Count(*)...e0][$#usn7..0X0123456789ABCDEF],usn1 In 12.e12 In {0} In 9e1|{`7esn`}[0X7..][0x0..]).@usn5?,{#usn7:$`3esn`[..$`2esn`][..123.654],@usn6:True Starts With $`4esn` Starts With 12e12}.`1esn`? Load Csv With Headers From $@usn5[`1esn`..] As @usn6 Fieldterminator \"d_str\" Unwind Single(usn1 In 12.e12 In {0} In 9e1 Where `4esn` Contains #usn8 Contains 7) Ends With [123.654[$`1esn`..Null][1000..{_usn3}],#usn8[`7esn`..],$@usn6 Starts With {`1esn`} Starts With 12] Ends With {`4esn`:{usn1} In Count ( * )} As `4esn` Union All Load Csv From 1e1 Starts With 9e1 Starts With {`4esn`} As `2esn` Merge Allshortestpaths((((usn2 :_usn3)<-[#usn7{#usn8:{`1esn`} Is Not Null}]->(`8esn` {`3esn`:'s_str'[..0X7]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6)))) On Match Set [#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}]].@usn5 =Reduce(#usn8=$7[{`1esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|$12 Contains 0Xa) Is Null Is Null,Reduce(`7esn`=$0[`7esn`],`6esn` In Count(*) Ends With $`` Ends With {7}|$7 Ends With 0X7).`5esn` =$0 Is Not Null,`1esn`+=`2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] On Create Set [$1000 Is Not Null Is Not Null].``? =7 In 1.e1 In $usn1,`4esn`(Distinct 00[Count(*)...e0][$#usn7..0X0123456789ABCDEF],`3esn`[..{_usn4}][..{@usn5}]).`8esn` =$`6esn`[`8esn`][$`5esn`],Any(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $7[{`1esn`}]).usn2! =Null[010..][{``}..]"), + octest_legacy:ct_string("Using Periodic Commit 999 Load Csv With Headers From $@usn6[01..@usn5][0x0..`4esn`] As usn2 Detach Delete {123456789} =~{@usn6},12 Starts With 9e0 Starts With `7esn` Foreach(#usn7 In 9e12 Is Not Null Is Not Null| Remove [{#usn8}[#usn7..{`2esn`}],{1000},{@usn5}[1e1..][9e1..]].@usn6,[`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]].`6esn`?)"), + octest_legacy:ct_string("Create ``=(({`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[ *0xabc..7]->(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]})) Load Csv With Headers From {_usn3}[$usn2..] As `` Fieldterminator 's_str' Unwind {usn2}[`6esn`..01234567] As _usn3 Union Start `4esn`=Node:@usn6(`5esn`={1000}) ,``=Node:`6esn`('s_str')"), + octest_legacy:ct_string("Create usn2=((`4esn` :`4esn`:@usn6)<-[{``:\"d_str\"[{`8esn`}..]}]-({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null}))"), + octest_legacy:ct_string("Merge `8esn`=(@usn6 :usn1:_usn4) On Create Set `5esn`+=`2esn`[usn2..][$7..],(:usn1:_usn4{`4esn`:#usn7 Starts With 1000 Starts With .e1})-[`7esn`]->(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}).``? =$`2esn`[{usn1}..],`6esn` =$`1esn`[`6esn`..][00..] On Match Set `7esn` =$1000[0.12..0.12] Create (((_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )})-[?:usn2|#usn7]-(`1esn` {#usn7:Count ( * )[$12..]})<-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]->(_usn4 {_usn3:`1esn`[..00][..{7}]}))),`3esn`=(:`3esn`:`6esn`{_usn4:{usn1} In Count ( * )}) Union Return Reduce(`8esn`=True Starts With $`2esn` Starts With {@usn6},`5esn` In $`2esn`[12.e12][$@usn5]|999 Ends With .e12 Ends With .e1)[..Case 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0] When `4esn` Contains #usn8 Contains 7 Then 12 Ends With 01 When {999}[$123456789..][12..] Then {`4esn`} In _usn4 Else {#usn7}[Count ( * )..12][$`2esn`..`4esn`] End],Case 9e0 In usn1 When {@usn6} Contains 123.654 Contains 01 Then $@usn5 In 's_str' In $12 End In Allshortestpaths(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))) In Case {`7esn`}[9e1..][@usn6..] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" When {7}[{`4esn`}][`6esn`] Then 0xabc[$@usn5] Else 0e0 End Order By $@usn5[{_usn3}][$#usn7] Ascending,Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))) Contains {`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]} Contains Any(@usn5 In Null =~12e12 Where 0[`4esn`][12.e12]) Ascending Skip {7}[{`4esn`}][`6esn`] Limit {#usn8}[2.12] Union All Create `3esn`=Allshortestpaths((:@usn6{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]})) Optional Match (((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}))),#usn8=((`2esn` :@usn6)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)<-[`1esn`:`8esn`|:_usn4 *123456789..0X7$12]->(:`1esn`{`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})) Using Scan `3esn`:`3esn`"), + octest_legacy:ct_string("Match ``=Shortestpath((`7esn` :`5esn`:@usn5{`2esn`:12 Starts With $#usn7})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(`4esn` :_usn4{`2esn`:#usn7 =~00})) Using Scan `1esn`:`7esn` Using Join On `7esn` Return Distinct *,{`7esn`:{999} Starts With {12},`3esn`:00} =~[0X0123456789ABCDEF[$`5esn`..],#usn7 Ends With $#usn7 Ends With {`8esn`}] =~[{12} =~0.e0 =~{_usn3},$#usn7 =~{12} =~False,1000 Is Null] As `8esn` Order By $999 Contains {7} Ascending,None(`6esn` In 00 Where 0.12[..$`6esn`][..$1000])[Case _usn4 Is Null Is Null When 07 Is Null Then False Contains $#usn8 Contains 9e1 End..`2esn`(Distinct #usn8[`7esn`..])][[_usn4 In 0.0[..{999}][..0.0] Where 12 Ends With 01|0.0 Is Not Null Is Not Null]..[Null Is Null Is Null,12e12 Ends With `4esn` Ends With 123456789,{@usn6} Is Not Null]] Desc Limit usn1 In 00 In {_usn3} Load Csv From #usn8 =~`7esn` As #usn7 Fieldterminator \"d_str\" Union All Start `3esn`=Node:``({`1esn`}) ,``=Rel:`2esn`(`5esn`='s_str')Where $#usn7 =~{12} =~False Optional Match `2esn`=Allshortestpaths(((_usn4 :#usn8))),`2esn`=({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->({`7esn`:123456789[0..]}) Foreach(`4esn` In Reduce(`7esn`={@usn5} Is Null,#usn7 In 0Xa[@usn5][{`7esn`}]|0e0[0X0123456789ABCDEF..010][$@usn6..010])[Extract(_usn4 In `2esn` Where 123.654 Starts With $``|12.e12[``..usn2][{#usn7}..@usn5])]| Delete Shortestpath((@usn6 {``:.e12[\"d_str\"..][.e1..]}))[{`3esn`:#usn8 =~{999}}..[_usn3 In True[7][$999] Where 12e12 Is Not Null Is Not Null]],{@usn5} Is Null With {`4esn`}[$_usn4..][9e0..] Skip Reduce(_usn4=.e1 Starts With $_usn4 Starts With {`1esn`},`6esn` In 00|usn2[True])[..[9e12[..0X7]]][..$`1esn`] Where {`2esn`} Is Not Null Is Not Null) Union Start `8esn`=Relationship(07,123456789,123456789) ,usn2=Relationship( {123456789})Where $0[$1000..00][{0}..{usn1}] Create Unique `8esn`=Shortestpath((({`2esn`:{7}[$7..],#usn7:`1esn` In 07}))) Return $7 Ends With $`8esn` As `4esn` Order By {#usn8}[usn2][{0}] Ascending,00 Contains #usn8 Desc Skip 1e1 Is Not Null Is Not Null"), + octest_legacy:ct_string("Remove Reduce(`2esn`={1000},_usn3 In {@usn5}[..#usn7]|00).`6esn`! Merge usn2=Allshortestpaths((({``:$7[{`1esn`}]})-[`8esn`?:`5esn` *12..{#usn7:$1000 Is Not Null Is Not Null}]-(:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]}))) On Match Set `4esn`+=Any(`6esn` In Count(*) Ends With $`` Ends With {7} Where 1000 Is Null) Is Not Null Is Not Null,{`6esn`:7 Is Not Null}.`5esn` =$`6esn`[`8esn`][$`5esn`],`2esn`+=Reduce(`3esn`=#usn8 In `8esn` In 07,#usn7 In 123.654 Starts With $``|_usn3[$usn2..0])[..Any(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`])][..[$`1esn`[#usn8][$@usn5],\"d_str\" Ends With False Ends With {@usn6}]]"), + octest_legacy:ct_string("Load Csv With Headers From (#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As usn2 Fieldterminator \"d_str\" Create Unique `2esn`=(_usn3 :@usn5),(@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})"), + octest_legacy:ct_string("Using Periodic Commit 010 Load Csv From 999 Ends With {`2esn`} As `1esn` Unwind 9e1 Ends With $@usn5 Ends With $123456789 As ``"), + octest_legacy:ct_string("Using Periodic Commit 1000 Load Csv With Headers From {_usn4}[{usn1}..$_usn3] As `3esn` Fieldterminator 's_str' Create _usn3=(@usn6 :@usn6),usn2=((_usn4 :#usn7{`8esn`:$999 Contains {7}})<-[`4esn`:`4esn`|:#usn7{`2esn`:{`4esn`}[$_usn4..][9e0..]}]-(`6esn` ))"), + octest_legacy:ct_string("Using Periodic Commit 01 Load Csv From 1e1[..`1esn`][..0e0] As @usn5 Merge @usn6=((`4esn` :usn2:`2esn`)) On Create Set `3esn` =9e0[Count ( * )] Merge (#usn7 :_usn3{`2esn`})-[`8esn`?:`2esn`{`2esn`:{#usn8} =~{999} =~{#usn7}}]->(@usn6 :`7esn`)"), + octest_legacy:ct_string("With Distinct *,{@usn6} Contains 0e0,[`1esn` In $12 Is Not Null Where {`3esn`}[{`5esn`}]|True Is Not Null Is Not Null] Ends With Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End Ends With `3esn`(Distinct 1.e1 =~$usn2,0X0123456789ABCDEF Is Null Is Null) As `5esn` Order By @usn5 =~`` Asc Skip 07 =~$`8esn` =~9e1 Limit \"d_str\"[{`8esn`}..] Where `3esn` Is Not Null Is Not Null"), + octest_legacy:ct_string("Using Periodic Commit 1000 Load Csv From 9e12 Is Not Null Is Not Null As usn2 Fieldterminator \"d_str\" Load Csv From `7esn` Starts With 0X7 Starts With $`7esn` As #usn7 Fieldterminator 's_str' Match `6esn`=Shortestpath(((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1)))"), + octest_legacy:ct_string("Start `4esn`=Node:_usn3({123456789}) Where $@usn5[$`4esn`][$@usn6] Unwind `5esn` In 12e12 In `8esn` As #usn7 Union Unwind {`7esn`} Ends With `` Ends With {`8esn`} As _usn3 Unwind $`5esn` Ends With 00 Ends With #usn7 As usn1"), + octest_legacy:ct_string("Start @usn6=Rel:`2esn`(`5esn`='s_str') ,`1esn`=Node(00)Where $usn2 =~\"d_str\" =~_usn3 Create @usn5=Allshortestpaths(((:`2esn`))),Allshortestpaths((((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})))) Union All With Distinct Null Ends With 12 Ends With usn2,010 In `1esn`,07 =~$`8esn` =~9e1 As _usn4 Skip Reduce(@usn6=#usn8 Is Not Null,#usn7 In 0Xa[@usn5][{`7esn`}]|{7}[{`4esn`}][`6esn`])[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])] Limit #usn8 In `8esn` In 07"), + octest_legacy:ct_string("Unwind 0Xa Contains $`` As `4esn` Load Csv With Headers From Reduce(usn1=$#usn7 Ends With 0.12 Ends With {@usn6},_usn3 In {`2esn`} Ends With {12} Ends With 7|{0} Is Null) Is Not Null Is Not Null As `2esn` Fieldterminator \"d_str\" Create `6esn`=(((:`6esn`:`8esn`{`5esn`:{@usn5} Is Null,`8esn`:True[..010]})-[?:@usn6|`` *1000]-(`5esn` :`7esn`)<-[@usn5:`3esn`|:@usn5 *01..07{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}]->(usn1 :``{_usn3:``[{#usn8}],`3esn`:{`3esn`} Is Null}))) Union Unwind 12.e12 In {0} In 9e1 As #usn8 With Distinct {@usn6} Contains 0e0,$_usn4[$`4esn`..$12],0e0[..$@usn5][..$`8esn`] As `2esn` Order By 0Xa[$1000..$123456789] Desc Skip 1000 Is Not Null Limit $_usn4 Is Null Is Null Where $@usn5[`6esn`..] Match Allshortestpaths(((`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999}))) Using Scan _usn3:`4esn` Using Join On ``,`7esn`,#usn7 Where $0[_usn4..{`3esn`}][$#usn7..$#usn7]"), + octest_legacy:ct_string("Foreach(#usn7 In Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999)[..Reduce(``={`8esn`}[True..][.e1..],#usn7 In 123.654 Starts With $``|{usn1}[$`8esn`..0.0])][..Any(`1esn` In $12 Is Not Null Where $12 Is Not Null Is Not Null)]| With *,1.e1[`4esn`..][$`6esn`..] As @usn5,Count ( * ) =~{`5esn`} =~{_usn4} As _usn3 Where _usn3[\"d_str\"]) Union All Create Unique (`1esn` :@usn6)<-[{``:\"d_str\"[{`8esn`}..]}]-(:#usn7{#usn7:$`8esn` In $`2esn` In {7}})<-[{``:\"d_str\"[{`8esn`}..]}]-({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null}),_usn4=Allshortestpaths((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})) Foreach(#usn7 In Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12) Contains {`1esn`:$999 Ends With {0}} Contains (`5esn` :_usn3{`4esn`:12.e12[``..usn2][{#usn7}..@usn5]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(`4esn` :`2esn`{`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})| Delete 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF,$7 Is Not Null,0X0123456789ABCDEF[$`5esn`..]) Create `2esn`=Shortestpath((:`5esn`:@usn5{``:.e12 =~$_usn4})-[_usn3?:usn1 *12..{#usn7:0e0 Contains `3esn` Contains `7esn`}]-(`5esn` $`8esn`)<-[@usn5:_usn4|:usn1*]->(:@usn5)),`2esn`=((@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]})) Union Merge @usn6=((`6esn` :`7esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})) On Create Set #usn7 =9e1['s_str'..0xabc]"), + octest_legacy:ct_string("Return Distinct {usn1}[{`5esn`}..] As _usn4,[$_usn4[9e0..]][`8esn`(Distinct {7} Starts With $usn1 Starts With 1.0)..Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} Starts With 1.0 Starts With 00|$#usn7[..@usn6][..$0])][Any(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{#usn8:{`7esn`} Is Not Null Is Not Null,`4esn`:12 Starts With 0x0}] As `1esn` Order By 0.12[999][$#usn8] Descending,`7esn`[..$`5esn`][..{`5esn`}] Desc Create Unique _usn3=((:@usn5{`3esn`:@usn5 =~'s_str',`1esn`:$`7esn` Contains {`1esn`} Contains 9e12})) Remove Extract(_usn4 In 0.0[..{999}][..0.0] Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`|{`6esn`} Ends With 0e0 Ends With {``}).`1esn`! Union All Delete $`7esn` Contains {`1esn`} Contains 9e12,2.12[..$_usn4]"), + octest_legacy:ct_string("Merge `2esn`=Allshortestpaths((((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})<-[_usn4?:usn2|#usn7{_usn4:{`1esn`} In 12.e12 In 9e1}]-(:usn2:`2esn`)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]})))) On Create Set Case $`1esn`[07] When Null =~12e12 Then $``['s_str'..][0x0..] Else Null Is Null Is Null End.usn2? =0X0123456789ABCDEF[9e12],`4esn`+=12.e12[$`4esn`..],`8esn` =$usn1[0X7] On Match Set [1.e1 =~$usn2,$`5esn`[`1esn`][0X0123456789ABCDEF],$0[`7esn`]].`5esn`? =@usn5[$12..\"d_str\"],_usn3+=$`1esn`[$12][Count ( * )] Union All Merge `2esn`=(:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}}) Load Csv With Headers From $`6esn`['s_str'..][{_usn4}..] As `6esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Using Periodic Commit 0X7 Load Csv From $usn1 In 01234567 In .e1 As `` Create Unique _usn4=(({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]}))"), + octest_legacy:ct_string("Return {@usn6}[True..{_usn3}] As `3esn`,Shortestpath((((`1esn` {#usn7:Count ( * )[$12..]})<-[#usn8:`7esn`]-({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})-[#usn8:#usn7|`2esn`]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)}))))[..Case {`1esn`} In 12.e12 In 9e1 When 12 Starts With {_usn4} Starts With $#usn8 Then Count(*) Is Not Null Else 12.e12 In $0 In $0 End][..#usn8],1.e1 =~$`1esn` As `8esn` Order By `1esn`[$123456789..] Desc,{#usn7:`5esn`[..9e0][..01234567]} In Case 1e1[1.e1..][123.654..] When 7[1000.._usn3][9e0..\"d_str\"] Then 12.e12[``..usn2][{#usn7}..@usn5] When 1.e1[0xabc..] Then 1.e1 Starts With $`2esn` Starts With $0 End In Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null) Desc,.e1 Ends With 0Xa Ends With 00 Ascending Skip 0xabc =~12 =~0x0 Limit 0e0[0X0123456789ABCDEF..010][$@usn6..010] Union All Create (#usn7 :#usn8)-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0}),`3esn`=Shortestpath(((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[:#usn7|`2esn`]-(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}}))) Remove [`6esn` In Count(*) Ends With $`` Ends With {7} Where `1esn` =~1000 =~1000|0xabc[$@usn5]].usn1,Allshortestpaths((((`2esn` {_usn4:`4esn`[usn1]})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})))).#usn7 Start @usn6=Node:_usn4(``=\"d_str\") ,_usn3=Relationship:_usn4(usn1={_usn4}) Union All Detach Delete [`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*)][Extract(`` In {`1esn`} Starts With @usn6 Where $`7esn`[$``..][999..]|.e1 Contains $`3esn`)..Case When 's_str'[.._usn4][..``] Then 123.654 Starts With $`` Else 0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] End] Remove `5esn`(Distinct $999 Is Null,0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]).`3esn`? Remove {#usn8:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]}.usn1"), + octest_legacy:ct_string("Create Unique (((#usn8 )-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))),`2esn`=((`1esn` :@usn5{_usn3:Null Is Null Is Null,``:True[True..]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(#usn7 {`7esn`:12e12 Ends With `4esn` Ends With 123456789})-[:_usn4|:usn1 *07]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})) Detach Delete {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}[Any(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3}[..$`8esn`])],$123456789 Contains [True Starts With $`2esn` Starts With {@usn6}] Contains {@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]},.e12[{_usn4}..] Union All Optional Match (((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`}))),#usn7=(($`5esn`)) Using Scan #usn7:_usn3 Using Index `6esn`:`7esn`(#usn8) Merge `8esn`=Shortestpath((@usn6 {``:.e12[\"d_str\"..][.e1..]})) Union All Remove Allshortestpaths((((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]})-[_usn4 *0x0..]-(:``$_usn4)))).`5esn`? Remove usn2:@usn5,Case 0.0 =~12.e12 =~1.0 When 0.e0 Ends With False Then 00[..$123456789][..$`5esn`] Else _usn3[$usn2..0] End.#usn8!,`8esn`:_usn3"), + octest_legacy:ct_string("Foreach(`6esn` In _usn3 =~123.654| Create Unique ((`5esn` :_usn3)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})),``=(_usn4 :#usn7{`8esn`:$999 Contains {7}}) Remove (usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[`7esn`? *0X0123456789ABCDEF{@usn6:12 Starts With {_usn4} Starts With $#usn8}]-(:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}})<-[``{`3esn`:{`3esn`}[{`5esn`}]}]-({@usn5:``[{123456789}..]}).`5esn`) Merge Allshortestpaths(((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0}))) On Create Set None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]).@usn6! =0X0123456789ABCDEF[$`5esn`..],(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[_usn3?:`1esn`|:`3esn`{`3esn`:$@usn6 Contains $`7esn` Contains 1e1,@usn5:True Starts With $`4esn` Starts With 12e12}]-(`3esn` :_usn3{_usn3:{_usn3} Contains 9e0 Contains $999,`2esn`:{_usn3}[$usn2..]})<-[`3esn`?*{#usn8:$`1esn`[..{_usn3}]}]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}).`8esn`? =$12 Is Not Null Create (((_usn3 :`3esn`:`6esn`)<-[`2esn`?{``:123.654 Starts With $``,``:{``} Ends With .e12 Ends With 0.e0}]-(:_usn3{0})<-[?:#usn8|`2esn` *01..07]->(:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]}))),`4esn`=((`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}})-[_usn4?:`3esn`|:@usn5]->(`4esn` {`7esn`:12.e12 In $0 In $0,@usn5:_usn4[Count(*)]}))"), + octest_legacy:ct_string("Delete .e0[0X7..{`1esn`}][0xabc..$`7esn`],{`7esn`} Is Not Null Is Not Null Match @usn6=((`8esn` :`5esn`:@usn5)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null})),`4esn`=(`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})-[?:@usn6|`` *..0Xa]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]}) Where .e12[$#usn8..@usn6]"), + octest_legacy:ct_string("Delete `7esn`[0..$usn2][{usn2}..0.e0],07[..`6esn`][..'s_str'],Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF)[Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6)..Shortestpath(((_usn3 {@usn5:.e12 =~.e0})-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})-[`5esn`?:@usn5|:`7esn`]-(:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01})))][Shortestpath(((`6esn` :`7esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})))..Reduce(usn2=Null In .e0,_usn3 In {`2esn`} Ends With {12} Ends With 7|{0}[..{`7esn`}])] Start usn1=Node:_usn4({`8esn`}) ,_usn3=Relationship:usn1('s_str') Delete `2esn` Starts With `` Starts With 1e1,{_usn4:{`6esn`} Ends With 0e0 Ends With {``}} In Shortestpath(((#usn8 {`8esn`:{7} Contains $123456789})))"), + octest_legacy:ct_string("With {usn2} Starts With `` Starts With {0},@usn6[2.12..$#usn8][`3esn`..{`5esn`}] As `8esn` Order By ({usn1:0[{@usn5}..][7..],`7esn`:{``}[_usn4..$`1esn`]})<-[@usn5:`8esn`|:_usn4]->(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(_usn4 :_usn4) In (`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})<-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]->(`4esn` :#usn7)<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}) In Allshortestpaths((((:`7esn`{`1esn`:{1000} In {123456789},`4esn`:010 In `1esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)))) Desc,{_usn4}[{usn1}..$_usn3] Asc Skip {`3esn`}[$1000] Detach Delete {`2esn`} Ends With {12} Ends With 7,1e1[7..][.e1..],#usn7(Distinct)[usn2(Distinct)..{#usn7:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:#usn8[$0..False][$`1esn`..$#usn7]}][Case When {`4esn`}[..{`4esn`}] Then {`7esn`}[0X7..][0x0..] When {@usn6} Contains 123.654 Contains 01 Then #usn8 Is Not Null End..[9e12 Ends With 123456789]] Union With Distinct {`4esn`:#usn7 =~00,@usn5:usn2[True]} =~`6esn`(Distinct #usn7 =~{`4esn`} =~123456789,1e1[1.e1..][123.654..]) =~Allshortestpaths(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))) As @usn6,{`3esn`}[{123456789}..][{usn1}..],1.e1[12e12..{`6esn`}] As `1esn` Skip (#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) Limit 0Xa Contains Count ( * ) Where {`2esn`} Starts With @usn6 With 0.12 Starts With 9e12 Starts With $`1esn`,{`2esn`} Starts With @usn6 As `3esn` Order By $999 Contains {7} Desc,Shortestpath(((usn1 {``:.e12 =~$_usn4})))[`6esn`(_usn3 Contains .e0 Contains {usn2},`3esn`[07..])][[.e12 Ends With 1000 Ends With 010,Count(*)]] Asc Skip `7esn` Contains {@usn5} Contains $123456789 Union Remove #usn8:#usn8,Single(_usn4 In `2esn` Where 0X0123456789ABCDEF[9e12]).`1esn`! Foreach(`1esn` In All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Contains `4esn`(999 Starts With 's_str') Contains (`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})| Create (#usn8 :`7esn`),`3esn`=Shortestpath((:_usn4)-[`6esn`?{#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}]-({`3esn`:9e1 =~999})-[`3esn`? *01..07]->({`7esn`:@usn5[..$@usn5][..0Xa]})) Detach Delete Reduce(@usn5={`1esn`} In 12.e12 In 9e1,`5esn` In $`2esn`[12.e12][$@usn5]|$`6esn` Ends With {0} Ends With {`7esn`}) Is Null,``[..0X0123456789ABCDEF],{`1esn`}[$`4esn`..][False..])"), + octest_legacy:ct_string("Unwind 1.e1[0xabc..] As usn1 Match Shortestpath(((_usn3 :`5esn`:@usn5)<-[`7esn`? *0xabc..7]->(:`6esn`:`8esn`{`3esn`:$`6esn`[{`3esn`}..12],_usn3:0[{@usn5}..][7..]}))),usn1=((`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})) Using Scan `3esn`:`3esn` Unwind [{999} Starts With {12},9e1 Ends With Count(*) Ends With False,0X0123456789ABCDEF[`5esn`..][$#usn8..]] In Single(`6esn` In 00 Where 0X0123456789ABCDEF Is Null Is Null) As @usn6 Union Unwind 2.12 In 123456789 In usn1 As usn2 Create Unique Shortestpath((usn2 )-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})),``=(({`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[ *0xabc..7]->(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]})) Merge `1esn`=Allshortestpaths((((:`7esn`{`1esn`:{1000} In {123456789},`4esn`:010 In `1esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)))) On Create Set [`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0}|#usn8 In `8esn` In 07].`6esn`? ={#usn8} Ends With 1.0 Ends With 12.0,`4esn` =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Union Remove `1esn`:`4esn`:@usn6,{@usn6:12 Starts With {_usn4} Starts With $#usn8,`3esn`:.e1[@usn5]['s_str']}.#usn7? Optional Match usn1=(@usn6 :`2esn`)<-[ *..0Xa]->({`8esn`:Null In .e0}) Using Scan _usn4:`2esn` Using Scan `2esn`:`1esn` Where 12.e12[`7esn`] Create `5esn`=((usn1 :``{_usn3:``[{#usn8}],`3esn`:{`3esn`} Is Null})-[?:`4esn`|:#usn7 *..0]-({`7esn`:{`1esn`} =~{_usn4}})),Shortestpath(((`5esn` :_usn3{`4esn`:12.e12[``..usn2][{#usn7}..@usn5]})<-[:`1esn`|:`3esn` *..01234567]-({`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF})-[``?:`4esn`|:#usn7 *07]-(_usn3 {@usn5:.e12 =~.e0})))"), + octest_legacy:ct_string("Start _usn3=Rel:`4esn`(`1esn`=\"d_str\") ,_usn4=Node:`5esn`(`5esn`={999})Where $`6esn` Ends With {0} Ends With {`7esn`}"), + octest_legacy:ct_string("Remove Reduce(#usn7=$`7esn` Is Null Is Null,`1esn` In `3esn`[07..]|1000 Is Not Null)._usn3!,All(`2esn` In {999} Is Not Null Where {``} Ends With .e12 Ends With 0.e0).`1esn`! Start usn2=Relationship( {#usn7}) Load Csv From Null Is Null Is Null As `` Fieldterminator 's_str'"), + octest_legacy:ct_string("Unwind {1000}[{#usn8}] As #usn8 Union All Return Distinct 9e12[{123456789}..][$`2esn`..] As `1esn`,010 Is Not Null Is Not Null As #usn7,{7} Is Null Order By $12 Contains 0Xa Descending Skip $12 Contains 0Xa Load Csv With Headers From {999} Is Not Null As _usn4 Fieldterminator \"d_str\" With Distinct $0 Starts With `2esn`,count(Distinct 999[12.0..][#usn7..]) =~Allshortestpaths(((usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}))) =~@usn6(`8esn` Starts With {123456789},$`` Starts With 12 Starts With $usn2) Order By $1000[..12.0][..0e0] Ascending,[`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*)] Starts With (`5esn` :`7esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`}) Starts With `6esn`(Distinct 12.e12[``..usn2][{#usn7}..@usn5],$`7esn` In 12) Descending,Any(`2esn` In {999} Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e12 Is Not Null]..][$`6esn`..] Desc Skip $#usn7 Starts With False Starts With {`6esn`} Limit `6esn` Starts With 123.654 Where 00[07..] Union With `7esn`[{7}..@usn5],{@usn6} Contains 0e0,[$_usn4[9e0..]][`8esn`(Distinct {7} Starts With $usn1 Starts With 1.0)..Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} Starts With 1.0 Starts With 00|$#usn7[..@usn6][..$0])][Any(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{#usn8:{`7esn`} Is Not Null Is Not Null,`4esn`:12 Starts With 0x0}] As `1esn` Limit $#usn7[.e1..{7}] Where 0X0123456789ABCDEF[$`2esn`..][`2esn`..]"), + octest_legacy:ct_string("Foreach(`8esn` In _usn3[\"d_str\"]| Start usn2=Rel(123456789,01234567,01234567) Where ``[{123456789}..]) Create Allshortestpaths((_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}})),`3esn`=Shortestpath((({@usn5:``[{123456789}..]})-[`3esn`:`6esn`{`3esn`}]-({`1esn`:$123456789[..$7][..$`6esn`]})<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`))) Optional Match (((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))) Using Scan #usn7:usn2 Using Join On `1esn`,#usn8 Union All Merge ((`` :`6esn`:`8esn`)<-[`4esn`?{usn2:{#usn8}[$#usn7..],@usn5:{@usn5}[..@usn6]}]-(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]})<-[{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]}]-(`` :`4esn`:@usn6{``:.e12 =~$_usn4})) On Match Set `5esn` =True[..010],#usn8+=Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}),`3esn` =@usn6[$_usn4] On Match Set Allshortestpaths((#usn8 :#usn8)).`3esn`! ={#usn8}[usn1][1.0],usn2 =$`5esn`[`4esn`][_usn3] Optional Match Allshortestpaths((((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]-({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})-[#usn8:`` *..0{@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})))),`7esn`=(:_usn3{_usn3:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF,`5esn`:1.0 Is Null Is Null})<-[`3esn`:`6esn`{`3esn`}]-(_usn4 :#usn7{_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})<-[ *123456789..0X7]-(`2esn` :`2esn`{`3esn`:#usn8 =~{999}}) Create Unique usn2=(((:`2esn`{`4esn`:`3esn` Is Not Null Is Not Null})-[?:#usn7|`2esn` *0x0..]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5))) Union Delete $``[..1.e1][..12] Detach Delete Any(`6esn` In 00 Where 0X7 Starts With {999} Starts With 12e12) Starts With (`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}) Starts With {`8esn`:{#usn7} Contains @usn5 Contains Count ( * )},Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Is Null Is Null,$`2esn` Is Null Is Null Create Unique (((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),Allshortestpaths((`2esn` :`5esn`:@usn5)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}))"), + octest_legacy:ct_string("With Distinct {#usn7} Contains @usn5 Contains Count ( * ),01 Starts With {999} Starts With $`2esn`,$usn1[@usn6][#usn7] As `6esn` Order By Any(`6esn` In 00 Where 0X7 Starts With {999} Starts With 12e12) Starts With (`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}) Starts With {`8esn`:{#usn7} Contains @usn5 Contains Count ( * )} Ascending,`8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]] Desc Limit None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] Where {`1esn`} Starts With `4esn` Starts With {0} Merge ((_usn4 :`8esn`:@usn5)) With Distinct 0x0[{7}..] As `7esn`,$`5esn`[@usn5..][$``..],Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF)[Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6)..Shortestpath(((_usn3 {@usn5:.e12 =~.e0})-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})-[`5esn`?:@usn5|:`7esn`]-(:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01})))][Shortestpath(((`6esn` :`7esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})))..Reduce(usn2=Null In .e0,_usn3 In {`2esn`} Ends With {12} Ends With 7|{0}[..{`7esn`}])] As usn2 Order By $_usn3[{999}] Ascending,1.e1 Ends With 0 Ends With $usn1 Descending,$0[..{usn2}][..$usn1] Desc Skip Count ( * ) Starts With 010 Starts With 0x0 Union All Start `8esn`=Node:`1esn`({@usn5}) Load Csv From [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null As `7esn` Fieldterminator 's_str' Foreach(`8esn` In 1.0 Ends With $`2esn` Ends With {`8esn`}| With Distinct *,Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End[None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])][count(Distinct $`5esn`[$#usn7..][0xabc..])] As `2esn`,12 Is Not Null Is Not Null As #usn8 Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}])[[#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}]..{`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}][Case When 2.12 =~0x0 =~_usn4 Then .e1[@usn5]['s_str'] When $@usn5 In $usn2 In {1000} Then {0}[False..@usn5] Else {@usn6}[True..{_usn3}] End..`1esn`()] Ascending) Union All Create Unique (#usn8 :#usn8)"), + octest_legacy:ct_string("Detach Delete Null[{_usn4}..],``[{#usn8}..9e0][12.e12..0xabc] Create Unique (((`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]})-[]->(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )})<-[@usn6?]->(`8esn` :``))),usn2=Allshortestpaths(((({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})<-[?:``]-(`1esn` :#usn7)-[?:`4esn`|:#usn7]->(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]}))))"), + octest_legacy:ct_string("Create Shortestpath((((usn2 {`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})<-[`2esn`?:@usn6|``]->(`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})))),({`3esn`:{@usn5} Is Null,`5esn`:{`2esn`} Ends With {12} Ends With 7}) Return `7esn` =~.e12 =~$#usn7 As `3esn`,$`8esn` Is Null Is Null As `6esn` Order By False[{`8esn`}] Asc,Reduce(usn2={`6esn`}[..{`2esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|1e1[..01]) Is Not Null Is Not Null Asc,{1000}[1000][$usn1] Ascending Skip $#usn8[{12}..] Load Csv With Headers From {1000}[01234567..$_usn4][{@usn6}..$_usn3] As `2esn` Fieldterminator 's_str' Union Merge ((:`3esn`:`6esn`{`1esn`:12 Starts With 0x0})) On Match Set _usn3 =$`` Starts With 12 Starts With $usn2,@usn5+=$@usn6[$`8esn`..][7..] Unwind $`1esn` Ends With {12} Ends With 0xabc As `3esn` Create Unique ((usn2 :_usn3)<-[?:_usn4|:usn1 *..00{`1esn`:{#usn8}[2.12]}]->(:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn8:#usn7|`2esn`]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})),`5esn`=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]}) Union Match usn2=((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) Using Scan _usn3:`` Using Index @usn5:usn2(`6esn`)"), + octest_legacy:ct_string("Using Periodic Commit 0Xa Load Csv From 9e0 Starts With .e0 Starts With \"d_str\" As `5esn` Start #usn7=Node:#usn7('s_str') ,`6esn`=Node:@usn6({999}) Optional Match `8esn`=Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Using Scan `4esn`:_usn4"), + octest_legacy:ct_string("Create (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` ))"), + octest_legacy:ct_string("Create usn1=Allshortestpaths(((:`6esn`:`8esn`{`5esn`:{@usn5} Is Null,`8esn`:True[..010]}))),((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null})<-[usn2 *..01234567{`1esn`:@usn5 =~'s_str',`8esn`:{999} Starts With {_usn4} Starts With 00}]->(usn1 {`5esn`})<-[:`8esn`|:_usn4 *1000]->(`5esn` $`8esn`))) Merge ((:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01})<-[`8esn`? *..7{`8esn`:{7}[{`4esn`}][`6esn`]}]->(:`6esn`:`8esn`{`3esn`:$`6esn`[{`3esn`}..12],_usn3:0[{@usn5}..][7..]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->(:`6esn`:`8esn`$usn2)) On Match Set Allshortestpaths(((#usn8 :@usn5)<-[_usn3{@usn6:{7} Contains $123456789}]->(:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1}))).`3esn`! =[{@usn6}[True..{_usn3}]] Starts With [$`2esn`[$usn2..][{``}..],{1000}[\"d_str\"..{@usn5}][$1000..$#usn8],12.e12[$`4esn`..]] Starts With Case When $0[`7esn`] Then 1000 Is Null Is Null Else Count(*)[010..][#usn7..] End,@usn5+=0X7[01..],[`2esn` In {999} Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]].@usn6 =Shortestpath(((:@usn6{usn2:{#usn8}[12.0][$@usn6]})<-[{_usn4:{1000} Ends With {`8esn`}}]-(@usn5 :`7esn`{_usn3:{``}[_usn4..$`1esn`]})<-[#usn8? *..0Xa{`4esn`:$`2esn` Ends With 0.12 Ends With .e1,`4esn`:07 =~@usn5}]-(:`3esn`:`6esn`{999})))[..Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where Count(*) Ends With 123.654 Ends With $12|0Xa[$1000..$123456789])][..{@usn6:12 Starts With {_usn4} Starts With $#usn8}] Create Unique ((({_usn4})<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})-[@usn6?:`2esn`]->(`7esn` ))),``=(({usn1:{usn2} =~@usn6 =~{`4esn`},usn1:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[``?:`6esn` *07{`5esn`:{12} Contains `7esn` Contains $_usn3,_usn4:$`3esn` In 9e12 In ``}]-(:@usn6)-[#usn7{usn1:1.0[{999}][$999]}]->(:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]}))"), + octest_legacy:ct_string("Remove (`1esn` :usn2:`2esn`{`1esn`:{_usn3}[$usn2..],_usn3:$@usn6 Starts With $@usn5})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})._usn3?,(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}).usn2!,[$usn1[0X7],7[1000.._usn3][9e0..\"d_str\"],0X7 Starts With {999} Starts With 12e12].`7esn`! Unwind `` Ends With {usn1} As `1esn` Union All Load Csv From 12.e12[$`4esn`..] As usn1 "), + octest_legacy:ct_string("Start `1esn`=Node:usn1(\"d_str\") Where $`2esn`[{``}..{1000}][#usn8..`2esn`] Start _usn4=Rel:`2esn`({_usn3}) Load Csv From 123456789[0..] As _usn3 Union All Create Unique Allshortestpaths((((:#usn7{#usn7:$`8esn` In $`2esn` In {7}})-[`7esn`? *..0{`2esn`:07 =~$`8esn` =~9e1,``:`5esn`[0xabc..]}]->({`3esn`:{@usn5} Is Null,`5esn`:{`2esn`} Ends With {12} Ends With 7})-[? *01..07]->(`3esn` {`1esn`:$`6esn` Starts With 12.e12 Starts With $#usn7})))),_usn3=Allshortestpaths(((({usn2:$`5esn`[`4esn`][_usn3]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})-[_usn3 *..01234567$`5esn`]->({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null}))))"), + octest_legacy:ct_string("Optional Match _usn3=Shortestpath((`6esn` {``:`4esn`[usn1]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]-(#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]})),((:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]->(:`2esn`{`6esn`:@usn6[{0}..]})<-[`1esn`?:_usn4|:usn1*]->(usn2 :``)) Using Index #usn8:`7esn`(`2esn`) Using Join On `7esn` Where {0} =~12.0"), + octest_legacy:ct_string("Start #usn7=Node(0,0X7) Where True Is Not Null Is Not Null Start `3esn`=Relationship:#usn8(_usn3={#usn7}) Where {999} Is Null With Distinct 1.e1 =~9e12 =~`4esn` As `7esn`,0 Contains $usn2 Contains 12e12 Order By {@usn6} Is Not Null Asc Where $123456789 Starts With .e12 Union All Create Unique #usn8=((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})),Shortestpath(((`1esn` :`4esn`:@usn6))) Return Distinct [`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]][..Reduce(`4esn`=@usn5[12.0][{1000}],_usn4 In `2esn`|0[$`6esn`...e1][`1esn`..$`7esn`])][..[7[010][00],$7[$`3esn`],#usn7 =~{`4esn`} =~123456789]],$1000[..12.0][..0e0]"), + octest_legacy:ct_string("Create ``=(:_usn3{`8esn`:9e1 =~999}) Merge ((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})) Detach Delete Single(`1esn` In $12 Is Not Null Where 0Xa Contains Count ( * ))[Any(`6esn` In 00)..Allshortestpaths((((:`4esn`:@usn6{@usn6:Count(*)[..``][..#usn8]})<-[``:usn2|#usn7 *..0Xa]->(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]})-[:#usn8|`2esn`]->(`` :usn2:`2esn`))))],@usn6[2.12..$#usn8][`3esn`..{`5esn`}]"), + octest_legacy:ct_string("Unwind 9e12[..0X7] As `2esn`"), + octest_legacy:ct_string("Load Csv With Headers From All(#usn7 In 123.654 Starts With $`` Where 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF) =~[`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]|{#usn8}[2.12]] =~Reduce(usn1=12.0[2.12..][{`5esn`}..],_usn3 In {@usn5}[..#usn7]|1000[$7..$123456789]) As `4esn` Union All Unwind 123.654 Contains $#usn8 Contains .e1 As usn2 Merge _usn4=(({`5esn`:0Xa[0e0..{#usn7}]})<-[?:``]-(`7esn` :`3esn`:`6esn`)) On Match Set `5esn`+=Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..],[`6esn` In Count(*) Ends With $`` Ends With {7} Where @usn5 =~'s_str'|{_usn3} Contains 9e0 Contains $999].usn2 =9e12 Is Null On Match Set `5esn` =True[..010],#usn8+=Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}),`3esn` =@usn6[$_usn4] Load Csv From Shortestpath((((`6esn` :`7esn`)-[_usn4 *0x0..]-(:``$_usn4)<-[#usn8?:``]-({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]})))) Starts With Case 0.0 =~12.e12 =~1.0 When 0.e0 Ends With False Then 00[..$123456789][..$`5esn`] Else _usn3[$usn2..0] End Starts With [True[7][$999],{`8esn`}[0X7][$`3esn`]] As `3esn` Fieldterminator \"d_str\" Union All Merge `5esn`=(((_usn4 :#usn8)-[`5esn`{`7esn`:@usn5[..$@usn5][..0Xa]}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})<-[? *0X0123456789ABCDEF]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}))) Load Csv With Headers From Single(_usn3 In {@usn5}[..#usn7] Where {@usn6} In {#usn7} In 12.e12)[(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[*{`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]}]->(:`2esn`{#usn8:`6esn` Ends With 2.12 Ends With @usn6,`1esn`:{`8esn`}[True..][.e1..]})<-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` :`8esn`:@usn5)] As usn2 Fieldterminator \"d_str\" Match _usn4=Allshortestpaths(((:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})-[?:#usn8|`2esn` *999{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({@usn6:#usn8[$0..False][$`1esn`..$#usn7]})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}))),`6esn`=Allshortestpaths(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})-[:`1esn`|:`3esn` *..01234567{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(#usn7 {``:0x0 =~123.654 =~{999}})) Using Scan `5esn`:#usn8 Using Join On `1esn`"), + octest_legacy:ct_string("Load Csv From {usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}[..None(`1esn` In `3esn`[07..] Where 0X0123456789ABCDEF[`5esn`..][$#usn8..])] As `3esn` Fieldterminator 's_str' Union Foreach(`8esn` In $`6esn`[`8esn`][0.0]| Unwind {`4esn`}[$123456789] As usn1) Foreach(`` In {`7esn`}[0X7..][0x0..]| Load Csv With Headers From 12.e12[`7esn`] As `1esn` With `7esn`[{usn1}][999] As `7esn`,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..]) Starts With [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]|Count ( * )[..12][..{@usn6}]] Starts With Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where True Starts With $`2esn` Starts With {@usn6}) Order By @usn5 =~$`3esn` =~0X7 Descending Skip {usn1}[01..7][{`3esn`}..`6esn`]) Union All Merge `2esn`=Allshortestpaths((((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[{#usn7:'s_str'[_usn4..0x0]}]-(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})))) Create Allshortestpaths((_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})<-[*{`8esn`:0Xa[.._usn3][..$`6esn`]}]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})) Merge usn1=((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]})) On Create Set {`5esn`:$7 Ends With $`8esn`,`3esn`:`4esn` Contains #usn8 Contains 7}._usn4 =_usn4 Is Null Is Null,Reduce(`8esn`=`2esn` Starts With `` Starts With 1e1,`` In {`1esn`} Starts With @usn6|$@usn6 Contains `7esn`).`8esn`! =All(`6esn` In Count(*) Ends With $`` Ends With {7}) In (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null})"), + octest_legacy:ct_string("Create Shortestpath((((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4})))) Delete {1000} Ends With {`8esn`},$12[{7}..0X0123456789ABCDEF] Load Csv With Headers From False Ends With $`` As `6esn` Union All Create Unique `5esn`=(`8esn` :`5esn`:@usn5)-[`5esn`?:usn2|#usn7]->(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )}) Start @usn6=Node:@usn6(_usn4={_usn4}) ,@usn5=Rel:@usn5({`3esn`})Where Count(*)[010..][#usn7..] Merge `5esn`=(((_usn4 :#usn8)-[`5esn`{`7esn`:@usn5[..$@usn5][..0Xa]}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})<-[? *0X0123456789ABCDEF]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}))) Union Start usn2=Rel:#usn8(\"d_str\") ,#usn8=Node:``(#usn7=\"d_str\")Where $usn2 Ends With $`5esn`"), + octest_legacy:ct_string("Remove Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 9e12 Is Not Null Is Not Null).`1esn`!,(`3esn` :usn2:`2esn`{``:{_usn3} Contains $`1esn` Contains 12.0})-[`3esn`?:#usn7|`2esn`]->(usn1 :`6esn`:`8esn`).#usn7 Return Reduce(`4esn`=$0[$1000..00][{0}..{usn1}],@usn5 In Null =~12e12|_usn4 Is Null) Is Not Null Is Not Null Limit $_usn4[9e0..] Return Distinct *,$#usn7 =~{12} =~False Order By [`2esn` In {999} Is Not Null Where {@usn6}[True..{_usn3}]] =~None(#usn7 In 123.654 Starts With $`` Where {usn2}[$`4esn`]) =~Extract(`1esn` In $12 Is Not Null Where Null Is Null Is Null|$123456789 =~`4esn`) Ascending,9e12[..0X7] Descending Skip Any(`6esn` In 00 Where 0X7 Starts With {999} Starts With 12e12) Starts With (`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}) Starts With {`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}"), + octest_legacy:ct_string("Using Periodic Commit 0xabc Load Csv From 12.e12 Starts With 1000 Starts With 's_str' As usn2 Return Case 00 Starts With $`6esn` When $@usn5 In 's_str' In $12 Then Count(*)[010..][#usn7..] When Count ( * )[Count ( * )][12] Then True[7][$999] Else `4esn` Contains #usn8 Contains 7 End =~Allshortestpaths(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]}))) As `4esn`,All(_usn4 In 0.0[..{999}][..0.0] Where Count(*)[.e12]) Starts With _usn4(Distinct 0.12 Ends With {1000} Ends With `6esn`,$_usn3 =~{_usn4} =~$`6esn`) Starts With {_usn4:False Contains 0.e0 Contains Count(*),`2esn`:1e1[{_usn4}..123.654]} As `5esn`,1000 As `5esn` Order By `1esn`[..00][..{7}] Ascending Skip .e12 Is Null Is Null Unwind _usn4 =~0e0 As ``"), + octest_legacy:ct_string("Start `6esn`=Rel:`2esn`({_usn3}) ,@usn5=Relationship:`2esn`(#usn7=\"d_str\")Where {`1esn`} In 12.e12 In 9e1 Merge Shortestpath((`6esn` {``:`4esn`[usn1]})<-[`7esn`?{_usn4:9e1 Ends With Count(*) Ends With False,#usn7:$_usn4 Ends With 0.e0 Ends With .e0}]->({`1esn`:$123456789[..$7][..$`6esn`]})-[_usn3:#usn7|`2esn`]-(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]}))"), + octest_legacy:ct_string("Remove Shortestpath(((#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]}))).@usn5,Extract(usn1 In 12.e12 In {0} In 9e1 Where 123.654[$`1esn`..Null][1000..{_usn3}]|$`5esn`[`4esn`][_usn3]).#usn7!,Extract(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where Count ( * )[$12..]|$123456789 Starts With .e12).`2esn`"), + octest_legacy:ct_string("Remove Any(`` In {`1esn`} Starts With @usn6 Where $usn1[@usn6][#usn7]).`7esn`! With Distinct {`5esn`} Starts With 12.0 Order By $`1esn` =~$usn1 =~01234567 Desc,`7esn`[{usn1}][999] Descending Skip usn1[0] Load Csv From 12 Starts With {_usn4} Starts With $#usn8 As #usn8 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Remove Reduce(@usn5=12.e12[``..usn2][{#usn7}..@usn5],#usn7 In 0Xa[@usn5][{`7esn`}]|$`2esn`[$usn2..][{``}..]).`7esn`?,Allshortestpaths((:`5esn`:@usn5{#usn8:$12 Contains 0Xa})<-[ *123456789..0X7]-(:`7esn`{``:.e1 Contains $`3esn`})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7}))._usn4?,Case 12.e12[2.12..][0xabc..] When .e12[010..$123456789] Then 0X0123456789ABCDEF[$999..][@usn5..] End.`6esn`? Load Csv With Headers From 9e12 In 1e1 In .e12 As `5esn` Unwind $@usn5[$`4esn`][$@usn6] As usn2 Union All Optional Match (({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]})),Allshortestpaths((((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})))) Using Join On ``,usn1,usn2 Where $1000 Starts With $`8esn` Starts With {`5esn`} Create Unique ((@usn6 :#usn7{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})-[`2esn`?:`` *999{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12}]-(usn2 {`7esn`:{usn1}[$`8esn`..0.0]})) Match Allshortestpaths(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}) Using Scan `1esn`:_usn4 Union Delete {#usn7}[{#usn7}..][$`4esn`..] Match `4esn`=((:#usn8{#usn8:`3esn` Is Not Null Is Not Null})),`5esn`=Allshortestpaths(((`` {``:$0[..{usn2}][..$usn1]}))) Using Scan usn2:@usn5 Load Csv From _usn4($123456789 =~`4esn`)[None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where Count(*) In {``})..][Any(`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7})..] As `3esn` "), + octest_legacy:ct_string("Create Allshortestpaths(((`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->(`4esn` {`2esn`:@usn5[$12..\"d_str\"]}))) Create #usn8=Allshortestpaths((((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})))) Load Csv With Headers From $`7esn` Is Null Is Null As usn1 Fieldterminator 's_str' Union All Return Distinct $`2esn`[{usn2}],$`5esn`[$#usn7..][0xabc..] Order By [0.12[..$`6esn`][..$1000],0.12 Starts With 9e12 Starts With $`1esn`,\"d_str\" Contains @usn6 Contains 12.e12] Is Null Ascending,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..])[..{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}][..Filter(`2esn` In {999} Is Not Null Where 010 In `1esn`)] Desc,{999} Ends With 123456789 Ends With {@usn5} Descending Limit $usn1 Contains {`8esn`} Contains $123456789 Union All Detach Delete 2.12 In $`8esn` In {`7esn`}"), + octest_legacy:ct_string("Create `6esn`=(_usn3 {@usn5:.e12 =~.e0})-[?:`7esn`]-(usn2 :`4esn`:@usn6)-[?:@usn6|`` *1000]-(`5esn` :`7esn`),@usn5=((({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})<-[?:``]-(`1esn` :#usn7)-[?:`4esn`|:#usn7]->(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})))"), + octest_legacy:ct_string("Start `8esn`=Rel:@usn6(`3esn`={`8esn`}) "), + octest_legacy:ct_string("Return Single(_usn3 In {@usn5}[..#usn7] Where {@usn6} In {#usn7} In 12.e12)[(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[*{`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]}]->(:`2esn`{#usn8:`6esn` Ends With 2.12 Ends With @usn6,`1esn`:{`8esn`}[True..][.e1..]})<-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` :`8esn`:@usn5)] As `5esn`,$@usn6[$`8esn`..][7..] As `4esn`,[`2esn`,{`2esn`} Starts With @usn6,9e1 =~999] In Any(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3} Contains 9e0 Contains $999) As _usn4 Order By {`6esn`} Is Null Desc Skip `8esn` Limit {`2esn`} In 0Xa In {_usn3} Merge usn1=((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]})) Union Merge `7esn`=Shortestpath((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}))) On Create Set `` =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) On Match Set `8esn`+={12} In $12 In 0xabc,`2esn` ={`2esn`} In $123456789 In True,@usn5+=0.0 In `6esn` In $@usn5 Union Return Distinct {#usn8}[12.0][$@usn6],$usn2 In 123.654 In .e0,{@usn6}[$`7esn`..][False..] Order By \"d_str\" Starts With $`8esn` Starts With {usn1} Desc,$`1esn`[`4esn`..][{``}..] Desc,Reduce(usn2={`6esn`}[..{`2esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|1e1[..01]) Is Not Null Is Not Null Asc Return Distinct {@usn5} Is Null,``[$0..][`1esn`..] As `4esn` Order By _usn4(Distinct 9e12[$`5esn`],$_usn4[$`4esn`..$12]) Starts With [`` In {`1esn`} Starts With @usn6 Where {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]|$`` In 0 In {1000}] Starts With [_usn4 In 0.0[..{999}][..0.0] Where Count(*) In {``}] Ascending,{`3esn`:'s_str'[..0X7]}[(@usn5 :@usn5)<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]->(:`5esn`:@usn5{``:.e12 =~$_usn4})] Asc,123.654[{@usn5}..123.654][1.0..$12] Ascending Skip Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..] Limit #usn8['s_str'..][123.654..]"), + octest_legacy:ct_string("Start `8esn`=Rel:`5esn`({0}) Where {@usn5}[1e1..][9e1..] Union Unwind Shortestpath((((`1esn` {#usn7:Count ( * )[$12..]})<-[#usn8:`7esn`]-({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})-[#usn8:#usn7|`2esn`]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)}))))[..Case {`1esn`} In 12.e12 In 9e1 When 12 Starts With {_usn4} Starts With $#usn8 Then Count(*) Is Not Null Else 12.e12 In $0 In $0 End][..#usn8] As _usn4 Unwind [`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]][[9e0 Starts With .e0 Starts With \"d_str\",`3esn`[..{_usn4}][..{@usn5}],1.e1 =~`2esn`]..Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where `6esn` Ends With 2.12 Ends With @usn6)] As @usn6"), + octest_legacy:ct_string("Match @usn5=((`4esn` :`2esn`{`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})<-[@usn5{`7esn`:123456789[0..]}]->(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})),(((:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})-[#usn8? *..0Xa{`4esn`:$`2esn` Ends With 0.12 Ends With .e1,`4esn`:07 =~@usn5}]-(usn2 :`4esn`:@usn6)-[`8esn`?:``]->(`` {`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}))) Using Join On usn1,_usn4,`6esn` Using Index @usn5:`2esn`(`8esn`) Unwind (:``{`1esn`:#usn8 Is Not Null,`5esn`:$@usn6[$0..usn1][0X0123456789ABCDEF..$999]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})-[?:_usn3|`8esn` *12..{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}]-(`6esn` :`2esn`{`7esn`:#usn8 =~{999}}) Ends With `6esn`() Ends With Shortestpath(((`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})-[:#usn8|`2esn`]->(:`3esn`:`6esn`)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))) As _usn4 Union Detach Delete 0.e0 Ends With False With Null Ends With 12 Ends With usn2,010 In `1esn`,07 =~$`8esn` =~9e1 As _usn4 Skip Reduce(@usn6=#usn8 Is Not Null,#usn7 In 0Xa[@usn5][{`7esn`}]|{7}[{`4esn`}][`6esn`])[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])] Limit #usn8 In `8esn` In 07"), + octest_legacy:ct_string("Merge `3esn`=(((:_usn3{`8esn`:9e1 =~999})<-[@usn6?]->(`6esn` :_usn3)<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`))) On Match Set ``+=`1esn`[..00][..{7}],Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 07[..`6esn`][..'s_str']).`8esn`? =Reduce(#usn8=0X7 Starts With {999} Starts With 12e12,_usn4 In `2esn`|usn2[True]) Starts With [01234567[..9e1]] Starts With Reduce(@usn5=.e1 Ends With {7} Ends With $usn1,`` In {usn1} Ends With {`6esn`} Ends With 123456789|{`2esn`} In 0Xa In {_usn3}) On Match Set (:_usn3$usn1)<-[`2esn`:`5esn` *0x0..{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})._usn4 =#usn7 Starts With $999 Foreach(`5esn` In Null Ends With 12 Ends With usn2| Create @usn6=((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1)),``=Shortestpath(((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))))"), + octest_legacy:ct_string("Optional Match (:`5esn`:@usn5{usn1:$#usn7[`5esn`]})<-[?:`4esn`|:#usn7]->(_usn4 :#usn8{`5esn`})-[`4esn`?:_usn4|:usn1{@usn6:$#usn7 Ends With 0.12 Ends With {@usn6}}]->(#usn8 {usn1:$123456789 Starts With `5esn`}) Using Index usn2:@usn6(`2esn`) Where 's_str'[.._usn4][..``] Match (_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Using Index @usn6:#usn8(_usn4) Using Index usn1:``(#usn7) Where 0X7[0X7..][Count ( * )..] Foreach(#usn7 In #usn8 =~{usn1} =~00| Unwind 0x0[{7}..] As `3esn`) Union With Distinct Reduce(`8esn`=True Starts With $`2esn` Starts With {@usn6},`5esn` In $`2esn`[12.e12][$@usn5]|999 Ends With .e12 Ends With .e1)[..Case 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0] When `4esn` Contains #usn8 Contains 7 Then 12 Ends With 01 When {999}[$123456789..][12..] Then {`4esn`} In _usn4 Else {#usn7}[Count ( * )..12][$`2esn`..`4esn`] End],Case 9e0 In usn1 When {@usn6} Contains 123.654 Contains 01 Then $@usn5 In 's_str' In $12 End In Allshortestpaths(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))) In Case {`7esn`}[9e1..][@usn6..] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" When {7}[{`4esn`}][`6esn`] Then 0xabc[$@usn5] Else 0e0 End Skip {7}[$123456789..{1000}][$`3esn`..`7esn`]"), + octest_legacy:ct_string("Return 's_str'[_usn4..0x0] As #usn8,Case When $`6esn` Starts With 12.e12 Starts With $#usn7 Then #usn8[`7esn`..] When {`4esn`}[$123456789..] Then {_usn3} Contains 9e0 Contains $999 End As @usn6,{_usn3} Contains $`1esn` Contains 12.0 Order By {`2esn`} Is Not Null Is Not Null Descending,123.654 Ends With usn2 Ends With 0 Ascending,$`3esn`[..{`2esn`}][..``] Ascending Limit $usn2 Starts With $`5esn` Union Unwind 0[{@usn5}..][7..] As usn1 Union All Merge `5esn`=((`3esn` :`6esn`:`8esn`{`8esn`:{``} Is Null Is Null,`3esn`:123456789 Is Not Null Is Not Null})<-[_usn4?:usn2|#usn7{_usn4:{`1esn`} In 12.e12 In 9e1}]-(:usn2:`2esn`)) On Create Set `3esn`+=(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->({_usn3})[Reduce(usn1=0x0[$`8esn`.._usn3],_usn4 In `2esn`|{123456789} Is Not Null)..Reduce(usn1=12.0[2.12..][{`5esn`}..],_usn3 In {@usn5}[..#usn7]|1000[$7..$123456789])][[_usn4 In `2esn` Where 9e12 Ends With 123456789|07 =~$`8esn` =~9e1]..(:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->()],@usn5 =0X0123456789ABCDEF =~@usn6 =~{0},#usn7+={`6esn`} Load Csv With Headers From #usn7 Contains {`3esn`} Contains $`6esn` As `` Detach Delete 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF,#usn8[1.0..]"), + octest_legacy:ct_string("Create Unique ((`7esn` :#usn7{`3esn`:{`2esn`} Starts With @usn6})<-[`8esn`:``]->(:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})) Unwind $`2esn`[$usn2..][{``}..] As usn1 Union All Foreach(@usn6 In 12.0[.e12]| Return Distinct Reduce(usn1=$#usn7 Ends With 0.12 Ends With {@usn6},_usn3 In {`2esn`} Ends With {12} Ends With 7|{0} Is Null) Is Not Null Is Not Null,.e1 Ends With {7} Ends With $usn1 As ``,_usn4[['s_str'[..0X7],False Contains 0.e0 Contains Count(*)]..] Start `4esn`=Rel:`8esn`(@usn6='s_str') Where `4esn` Contains #usn8 Contains 7) Unwind 12.e12[..1e1] As usn1 Foreach(`7esn` In $`2esn`[{`6esn`}][0.0]| Return $usn1 In 01234567 In .e1 As `7esn`) Union All Unwind {999} Is Null As `6esn` Create ``=Allshortestpaths((((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})-[`4esn`?:``{usn2:12e12 Ends With `4esn` Ends With 123456789}]->(:`7esn`{usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})))) Detach Delete All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.e12[$`8esn`..{`8esn`}]) Is Null,`3esn` Starts With Count(*),{#usn7}[..{12}][..12.e12]"), + octest_legacy:ct_string("Remove {``:$#usn7 =~{12} =~False,`5esn`:{1000} In {123456789}}.`1esn`?"), + octest_legacy:ct_string("Optional Match usn2=Allshortestpaths((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}))),((usn1 :@usn5)<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]})<-[`1esn`?:`3esn`|:@usn5{usn2:Count ( * )[..12][..{@usn6}]}]-(@usn5 {``:`3esn` =~9e0 =~@usn6})) Create Unique `2esn`=Allshortestpaths((:`3esn`:`6esn`{999})),`8esn`=((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)) With *,`3esn` Ends With .e0 Ends With $`7esn` As @usn5,(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) Order By 0.12 In 0X7 Descending Skip @usn6[$12] Limit $999 Ends With $`2esn` Where {#usn8}[12.0][$@usn6] Union Create Unique usn2=((:#usn8{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})-[ *0X7..0Xa]->(@usn6 :`2esn`)<-[`2esn`?:@usn6|`` *..00]->({_usn3})),`8esn`=Allshortestpaths((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Start @usn5=Node:``(#usn7=\"d_str\") Where {`8esn`}[..$`6esn`][..123.654] Create (((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))) Union All Merge `3esn`=Allshortestpaths((((`1esn` {#usn7:Count ( * )[$12..]})<-[#usn8:`7esn`]-({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})-[#usn8:#usn7|`2esn`]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})))) On Match Set usn1 =[usn1 In 12.e12 In {0} In 9e1 Where {usn1} In Count ( * )][{_usn3:.e1 Ends With 0Xa Ends With .e1,`2esn`:12e12 Starts With `1esn` Starts With usn2}..] On Create Set `5esn` =0Xa[..{1000}][..$#usn7],Shortestpath(((_usn4 :`8esn`:@usn5))).`7esn` =$999 Contains {7},#usn8 =$``[True..] Merge usn1=((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]})) Delete $#usn7 =~{12} =~False,`4esn`[{1000}][{`5esn`}]"), + octest_legacy:ct_string("Remove {#usn7:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,``:$0 Is Not Null}.@usn6? Remove `3esn`:`8esn`:@usn5,All(`1esn` In `3esn`[07..] Where @usn6[{0}..]).``? Start usn1=Node:#usn8(#usn8={``}) Where $usn1 Starts With $999 Starts With {@usn5} Union All With $@usn5 As @usn6,[{@usn5}[..@usn6],$7[{`1esn`}]] Is Null Is Null As `5esn`,All(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) In Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4]) In [``[00..$7],.e1 Contains $`3esn`,{``} Starts With 123456789 Starts With usn2] As _usn4 Order By $usn1 In 0.12 In $`` Desc,Case When {@usn6} Contains 123.654 Contains 01 Then usn2 Ends With Count ( * ) Ends With $@usn6 End Is Not Null Is Not Null Desc Skip Case When 0X0123456789ABCDEF[7...e0][`1esn`..usn2] Then $1000 Starts With $`8esn` Starts With {`5esn`} When usn2 =~0X7 =~{#usn7} Then {`2esn`} In $123456789 In True End[Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`)] Limit {`1esn`:{`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`],`5esn`:0.12 Contains 12.0} Ends With [{usn2},0.12[Count(*)..][$#usn7..]] Ends With {0} Where 0.e0[{999}][{`1esn`}] With Distinct {`5esn`} Starts With 12.0,Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End[None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])][count(Distinct $`5esn`[$#usn7..][0xabc..])] As `2esn`,0.e0 Contains .e0 Contains $@usn6 Order By $999[07..{#usn7}][1e1..0xabc] Ascending,2.12[`8esn`][1e1] Ascending,$7 In @usn5 In {@usn5} Desc Limit $usn1 In 0.12 In $`` Where {`6esn`} Contains 07 Union With *,1.e1 =~$usn2 Skip Allshortestpaths((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})<-[`1esn`?]->(:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}}))[Case When 123.654[$`1esn`..Null][1000..{_usn3}] Then ``[$0..][`1esn`..] When 00 Ends With `8esn` Then $usn2 Is Null Is Null Else $999 Is Null End..``(999 Starts With 's_str',1e1[1.e1..][123.654..])][Single(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{usn2:{1000},`6esn`:#usn8[`7esn`..]}] Where $usn1 =~010 =~07 Start usn2=Rel:`4esn`(@usn5=\"d_str\") ,`2esn`=Node:`8esn`(`6esn`='s_str')Where {999} Starts With {_usn4} Starts With 00"), + octest_legacy:ct_string("Start `4esn`=Node:``(\"d_str\") Where 00 Starts With $`6esn` Unwind {_usn4:{`6esn`} Ends With 0e0 Ends With {``}} In Shortestpath(((#usn8 {`8esn`:{7} Contains $123456789}))) As `4esn` Union Create Unique (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` )) Optional Match _usn4=Allshortestpaths((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})),`3esn`=((_usn4 :#usn8{`5esn`})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5)-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->({`7esn`:123456789[0..]})) Using Scan `4esn`:`` Using Index usn1:@usn5(`7esn`) Where {@usn5}[12.0..1000][{`3esn`}..{7}] Start `1esn`=Relationship:`6esn`({999}) "), + octest_legacy:ct_string("Create #usn8=((`` {`1esn`:{@usn5}[1e1..][9e1..],`2esn`:$`7esn` Contains {`1esn`} Contains 9e12})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null})),@usn6=Allshortestpaths(((:#usn8{#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})-[_usn4 *0x0..]-(:#usn7{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}}))) Foreach(`2esn` In None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False)[[9e1[$_usn4..0xabc],{@usn6}[$`7esn`..][False..],#usn8 In `8esn` In 07]..Any(_usn4 In `2esn` Where $999 Is Null)]| Create Unique @usn6=((`4esn` :usn2:`2esn`)) Load Csv From Single(_usn3 In {@usn5}[..#usn7] Where {@usn6} In {#usn7} In 12.e12)[(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[*{`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]}]->(:`2esn`{#usn8:`6esn` Ends With 2.12 Ends With @usn6,`1esn`:{`8esn`}[True..][.e1..]})<-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` :`8esn`:@usn5)] As @usn6 Fieldterminator 's_str') Delete @usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2)"), + octest_legacy:ct_string("Start #usn7=Node(0,0X7) Where 999 Starts With 's_str' Load Csv With Headers From $`8esn` Starts With 0xabc Starts With {usn2} As `1esn` With *,$usn1 In 01234567 In .e1 Order By Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6) Starts With [$_usn3[010..False],$123456789 =~`4esn`,$usn1[$123456789..0][{`1esn`}..12.0]] Descending,{#usn7:`5esn`[..9e0][..01234567]} In Case 1e1[1.e1..][123.654..] When 7[1000.._usn3][9e0..\"d_str\"] Then 12.e12[``..usn2][{#usn7}..@usn5] When 1.e1[0xabc..] Then 1.e1 Starts With $`2esn` Starts With $0 End In Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null) Desc,{7}[$7..] Desc Skip \"d_str\"[{999}..] Limit @usn5[$12..\"d_str\"] Where Count ( * ) =~{`5esn`} =~{_usn4}"), + octest_legacy:ct_string("Unwind {#usn8} Is Null Is Null As _usn4 Create Unique Allshortestpaths(((`2esn` :@usn6)<-[:#usn7|`2esn`]->(`1esn` :`6esn`:`8esn`{usn2:Count ( * )[..12][..{@usn6}]}))),#usn8=(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[?:`6esn` *01..07]->(#usn7 :#usn8{_usn3:`1esn`[..00][..{7}]})<-[:`1esn`|:`3esn` *1000]-($12) With Distinct {@usn5},{0} Is Null As `6esn` Skip Null In .e0 Where True[..010] Union All Optional Match (((usn2 :``)-[@usn5?:#usn7|`2esn`{`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}]->(`2esn` :@usn6{7})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`))) Using Scan #usn7:_usn3 Using Scan _usn4:_usn3 Where {@usn5}[Count(*)..]"), + octest_legacy:ct_string("Foreach(@usn6 In 0Xa Contains Count ( * )| With Distinct {`5esn`} Starts With 12.0,Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End[None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])][count(Distinct $`5esn`[$#usn7..][0xabc..])] As `2esn`,0.e0 Contains .e0 Contains $@usn6 Order By $#usn7 Is Null Is Null Descending,Case When 0X0123456789ABCDEF[7...e0][`1esn`..usn2] Then $1000 Starts With $`8esn` Starts With {`5esn`} When usn2 =~0X7 =~{#usn7} Then {`2esn`} In $123456789 In True End[Single(_usn3 In True[7][$999] Where {usn2})][Any(_usn4 In 0.0[..{999}][..0.0] Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`)] Ascending Limit {usn2:_usn4 Is Null}[[True =~_usn3 =~123456789,0Xa[@usn5][{`7esn`}],{`1esn`} Starts With `4esn` Starts With {0}]..] Where {_usn3}[..$`8esn`] Create ``=(({`4esn`:1000 Is Null Is Null})),Allshortestpaths((((@usn6 {usn1:$#usn7 =~{12} =~False})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))))) Remove Shortestpath((:_usn3{@usn5:.e1[..\"d_str\"],#usn8:{`1esn`}[`6esn`..12e12]})<-[`7esn`?*..]-(usn1 :`1esn`{#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]})).`6esn`!,Case 12.e12[..1e1] When {1000}[{#usn8}] Then $@usn5[$`4esn`][$@usn6] Else 123456789 Ends With usn1 Ends With usn2 End.`5esn`"), + octest_legacy:ct_string("Create Unique `6esn`=(`1esn` :_usn3{`5esn`:{`8esn`}[..$`6esn`][..123.654],`1esn`:1000 Starts With `7esn`})<-[?:`1esn`|:`3esn`{#usn8:$0 Is Not Null,``:True Is Null Is Null}]->({usn1:{123456789} =~01234567 =~`3esn`})"), + octest_legacy:ct_string("Return Distinct *,`7esn` Is Not Null Is Not Null As @usn5,`1esn`[Null..] As `2esn` Order By Extract(_usn4 In `2esn` Where $999 Is Null) In Case `8esn` Contains $`3esn` Contains {`4esn`} When 9e1 Ends With $@usn5 Ends With $123456789 Then usn2[True] When 0.e0 =~`1esn` =~`6esn` Then usn2 =~0X7 =~{#usn7} Else 1.e1[..12.e12][..$usn2] End In Any(`6esn` In 00 Where `5esn`[..9e0][..01234567]) Asc Limit `6esn`[{`6esn`}..] Detach Delete Case Count(*) Ends With 123.654 Ends With $12 When $@usn6[$0..usn1][0X0123456789ABCDEF..$999] Then {`6esn`}[..{`2esn`}] End In Reduce(`4esn`={@usn6} In {#usn7} In 12.e12,usn1 In 12.e12 In {0} In 9e1|\"d_str\"[..0.e0]) In [_usn4 In `2esn` Where 9e12 Ends With 123456789|$999 Is Null] Detach Delete $`1esn` Ends With {12} Ends With 0xabc,7 Is Null Is Null,`4esn`[{1000}][{`5esn`}] Union Start `6esn`=Node:_usn4('s_str') ,#usn8=Node:`2esn`({_usn3}) Create `3esn`=Allshortestpaths(((_usn3 {usn2:_usn3[$usn2..0]}))) Load Csv From 12 In 0e0 As _usn4 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Merge #usn8=(`3esn` :usn2:`2esn`{``:{_usn3} Contains $`1esn` Contains 12.0}) Foreach(`7esn` In Count ( * ) =~{`5esn`} =~{_usn4}| Create @usn6=Shortestpath(((usn1 :`5esn`:@usn5)-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:usn2:`2esn`{usn1:$7 Is Null Is Null})-[? *01..07]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}))),(`2esn` :`5esn`:@usn5{_usn4:{`2esn`} Is Not Null Is Not Null,usn2:{`4esn`} In _usn4})<-[#usn7?:#usn8|`2esn`]->(#usn7 {usn1:$#usn7 =~{12} =~False,#usn7:0x0 =~123.654 =~{999}})-[`8esn`?]->(`3esn` :`6esn`:`8esn`)) Union Delete Case {`7esn`}[9e1..][@usn6..] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" When $123456789 Is Not Null Then $_usn4 Is Not Null Is Not Null End[Case When #usn8 In `8esn` In 07 Then 00[Count(*)...e0][$#usn7..0X0123456789ABCDEF] Else 12.e12[{7}..7] End..Case {12} Contains 9e0 When $1000[..12.0][..0e0] Then $_usn3 Is Null Is Null When $@usn6[$0..usn1][0X0123456789ABCDEF..$999] Then {7}[{`4esn`}][`6esn`] Else usn2[`7esn`..{`3esn`}][$7..{#usn7}] End],[`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]][..{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}][..`4esn`(123.654[$`1esn`..Null][1000..{_usn3}])] Create Unique (((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`}))) Start `5esn`=Node:`6esn`(usn2={`8esn`}) "), + octest_legacy:ct_string("Using Periodic Commit 999 Load Csv From 123456789[0..] As _usn3 With Distinct _usn3[\"d_str\"],None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12.e12[``..usn2][{#usn7}..@usn5]) Is Null Is Null Order By 0Xa[1000.._usn4] Asc,$0[..{usn2}][..$usn1] Desc Skip {#usn8}[12.0][$@usn6]"), + octest_legacy:ct_string("Foreach(`1esn` In (`8esn` :`8esn`:@usn5)<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]->(#usn7 :`2esn`)-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Is Null Is Null| Return *,Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000)[[_usn4 In `2esn` Where `3esn` Is Not Null Is Not Null]..All(`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999])][(_usn4 {_usn3:9e1 =~999})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})..{`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}] As _usn3,Reduce(_usn4=.e1 Starts With $_usn4 Starts With {`1esn`},`6esn` In 00|usn2[True])[..[9e12[..0X7]]][..$`1esn`] Skip 0e0[..$@usn5][..$`8esn`] Limit Reduce(`3esn`={_usn3} Is Not Null,usn1 In 12.e12 In {0} In 9e1|0[Count(*)][0e0])[`6esn`(``[..0X0123456789ABCDEF])..Single(`` In {`1esn`} Starts With @usn6 Where {_usn3}[$usn2..])] Delete `6esn`[$0][#usn8],00,[#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 Starts With {_usn3}|@usn6[$12]] Ends With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null] Ends With Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))) Optional Match Allshortestpaths((usn2 :`5esn`:@usn5)),Allshortestpaths((((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]-({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})-[#usn8:`` *..0{@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}}))))"), + octest_legacy:ct_string("Create `8esn`=((#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null})<-[?:#usn7|`2esn`{@usn5:$0 Is Not Null}]-(`` {``:0x0 =~123.654 =~{999}})),(({`1esn`:{123456789}[12..][$12..]}))"), + octest_legacy:ct_string("Return `6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}],{12}[010..{1000}][1e1...e1] Order By All(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`8esn`}[0X7][$`3esn`])[[9e1[123456789..]]] Desc,1.0[..`4esn`][..{0}] Asc,{`3esn`} Is Not Null Is Not Null Asc Skip 12.e12 In {0} In 9e1 Limit {#usn7}[Count ( * )..12][$`2esn`..`4esn`] Union Start `6esn`=Node:_usn4('s_str') ,#usn8=Node:`2esn`({_usn3}) Create `3esn`=Allshortestpaths(((_usn3 {usn2:_usn3[$usn2..0]}))) Load Csv From 12 In 0e0 As _usn4 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Delete {`4esn`}[{`1esn`}][{1000}] Create Unique `5esn`=(usn2 :`5esn`:@usn5)<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(#usn7 {`7esn`:12e12 Ends With `4esn` Ends With 123456789})-[?:`7esn`]->(#usn7 :@usn6) Union With *,Case 0xabc[$@usn5] When 9e1[$_usn4..0xabc] Then $12[{7}..0X0123456789ABCDEF] When 01 =~$`1esn` Then {1000}[\"d_str\"..{@usn5}][$1000..$#usn8] Else 1.e1[_usn4..][07..] End Is Not Null As usn2 Skip {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] Limit 0Xa[.._usn3][..$`6esn`] Foreach(#usn7 In {_usn4:$0[$1000..00][{0}..{usn1}]}[{`2esn`:$``['s_str'..][0x0..]}..]| Create Unique usn1=((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})),Allshortestpaths(((`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->(`4esn` {`2esn`:@usn5[$12..\"d_str\"]})))) Foreach(#usn8 In `4esn` Starts With $#usn7| Load Csv With Headers From 12.0[#usn7] As `3esn` ) Union Start usn2=Node:usn1(#usn8='s_str') Where 7 Contains `2esn` Contains $`8esn`"), + octest_legacy:ct_string("Merge `2esn`=Shortestpath((((usn2 :``)-[@usn5?:#usn7|`2esn`{`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}]->(`2esn` :@usn6{7})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`)))) On Create Set [`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0}|#usn8 In `8esn` In 07].`6esn`? ={#usn8} Ends With 1.0 Ends With 12.0,`4esn` =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) On Match Set `2esn`+=Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})],`3esn` =$12 Starts With $`8esn`,@usn5 =Reduce(#usn8={`8esn`}[..$`6esn`][..123.654],usn1 In 12.e12 In {0} In 9e1|\"d_str\" =~`1esn` =~{`5esn`}) Return *,$7 In 1.0 In 1e1,0X7 Starts With {999} Starts With 12e12 As @usn5 Skip `6esn` Ends With 2.12 Ends With @usn6 Create `5esn`=Shortestpath(((_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->(`` {``:0x0 =~123.654 =~{999}})-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->(:`3esn`:`6esn`{@usn5:.e12 =~.e0}))),#usn8=Allshortestpaths((_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})-[`1esn`?:_usn3|`8esn` *0xabc..7]->(@usn5 :`6esn`:`8esn`)) Union All Foreach(_usn3 In 123456789[12..$`4esn`]| Detach Delete {`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}[Case When 1.e1[0X0123456789ABCDEF..] Then `6esn`[..{999}] When {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`] Then $#usn7 Ends With 0.12 Ends With {@usn6} End..Filter(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null)],Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})]) Unwind `5esn`[..9e0][..01234567] As @usn5 Create Unique @usn6=Shortestpath(((usn1 :`5esn`:@usn5)-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:usn2:`2esn`{usn1:$7 Is Null Is Null})-[? *01..07]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}))),((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]})) Union Remove Shortestpath((:_usn3{#usn7:#usn8 =~{999}})).@usn5?"), + octest_legacy:ct_string("Create Unique (({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})-[:#usn7|`2esn` *01..07]->(`1esn` {#usn7:Count ( * )[$12..]})-[:`2esn` *07]-(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})) Return `7esn` Ends With $_usn3 Ends With usn2 As _usn4,1000 Is Null Is Null Order By @usn6[$usn2..#usn7] Ascending,{`3esn`} Ends With 0 Ends With 9e1 Desc Limit {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}[..({``:.e1 Contains $`3esn`})<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})] Unwind (:``{`1esn`:#usn8 Is Not Null,`5esn`:$@usn6[$0..usn1][0X0123456789ABCDEF..$999]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})-[?:_usn3|`8esn` *12..{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}]-(`6esn` :`2esn`{`7esn`:#usn8 =~{999}}) Ends With `6esn`() Ends With Shortestpath(((`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})-[:#usn8|`2esn`]->(:`3esn`:`6esn`)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))) As #usn8"), + octest_legacy:ct_string("Remove Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))).@usn5 Foreach(#usn7 In $`1esn`[#usn8][$@usn5]| With Distinct Filter(`1esn` In `3esn`[07..] Where 12 Ends With 01)[..All(`3esn` In 123.654[1e1..][{#usn8}..] Where 0Xa Contains Count ( * ))] As usn2,{usn1}[01..7][{`3esn`}..`6esn`] Limit Reduce(`6esn`=7[$0..][{_usn4}..],_usn3 In {`2esn`} Ends With {12} Ends With 7|{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`)[[$#usn7[`5esn`],Count(*) Ends With 123.654 Ends With $12,$#usn7[..@usn6][..$0]]] Where 0.e0 =~`1esn` =~`6esn` Create Unique usn1=Allshortestpaths(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]})))) Create Unique Allshortestpaths((((:#usn7{#usn7:$`8esn` In $`2esn` In {7}})-[`7esn`? *..0{`2esn`:07 =~$`8esn` =~9e1,``:`5esn`[0xabc..]}]->({`3esn`:{@usn5} Is Null,`5esn`:{`2esn`} Ends With {12} Ends With 7})-[? *01..07]->(`3esn` {`1esn`:$`6esn` Starts With 12.e12 Starts With $#usn7})))),_usn3=Allshortestpaths(((({usn2:$`5esn`[`4esn`][_usn3]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})-[_usn3 *..01234567$`5esn`]->({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})))) Union Foreach(#usn8 In $usn1 =~010 =~07| Optional Match Shortestpath(({``:.e1 Contains $`3esn`})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})),Allshortestpaths((:usn1:_usn4{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[`8esn`? *999]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})) Using Scan `2esn`:@usn6)"), + octest_legacy:ct_string("Return Distinct 0Xa Contains #usn8 Contains 1000 Order By `8esn` Is Null Is Null Desc,Reduce(usn1=1e1 Contains usn2,`8esn` In $12[{7}..0X0123456789ABCDEF]|#usn7 =~{`4esn`} =~123456789) Contains `3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]) Descending,{`1esn`:{`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`],`5esn`:0.12 Contains 12.0} Ends With [{usn2},0.12[Count(*)..][$#usn7..]] Ends With {0} Asc Limit Single(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2])[(_usn3 {usn1:0Xa[0e0..{#usn7}],`1esn`:.e0[True..Count ( * )][#usn7..0X7]})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1})..] Return Distinct *,(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As #usn7,.e1 Ends With 0Xa Ends With 00 As _usn3 Order By usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3) Ascending,.e1 =~$`5esn` Desc,Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000|$@usn5 In $usn2 In {1000}) Is Not Null Ascending Limit 12 Starts With 7 Starts With $`5esn` Union Create `8esn`=({`2esn`:{7}[$7..],#usn7:`1esn` In 07})-[:_usn4|:usn1 *07]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}),usn1=(((:`2esn`{`4esn`:`3esn` Is Not Null Is Not Null})-[?:#usn7|`2esn` *0x0..]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5))) Union Return `7esn` Is Not Null Is Not Null,Reduce(#usn7={`1esn`} Starts With `4esn` Starts With {0},`3esn` In 123.654[1e1..][{#usn8}..]|9e12[$`5esn`]),Allshortestpaths((({_usn4:0.12 Starts With 9e12 Starts With $`1esn`})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})<-[@usn6?:#usn7|`2esn` *12..{#usn8:12 Starts With 7 Starts With $`5esn`}]->(usn2 {_usn3:$0 In _usn4}))) Is Null Limit [{usn2}[$`4esn`]] Starts With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null] Create Unique Shortestpath((`7esn` :`1esn`)<-[`1esn`?:`4esn`|:#usn7 *..01234567]-({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6})) Match Allshortestpaths((usn2 :`5esn`:@usn5)),Shortestpath(((`5esn` :_usn3{`4esn`:12.e12[``..usn2][{#usn7}..@usn5]})<-[:`1esn`|:`3esn` *..01234567]-({`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF})-[``?:`4esn`|:#usn7 *07]-(_usn3 {@usn5:.e12 =~.e0}))) Using Index usn2:``(usn1)"), + octest_legacy:ct_string("Unwind {12}[$`3esn`] As `6esn` Unwind {`7esn`}[..9e12][..0.0] As #usn7 Create #usn7=Shortestpath((:`5esn`:@usn5{``:0.12[..$`6esn`][..$1000]})),`7esn`=Allshortestpaths(((:@usn6{`2esn`:$999 In 999}))) Union Create `7esn`=((`5esn` :`7esn`)),({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(`4esn` :`2esn`{`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})<-[:`1esn`|:`3esn` *1000]->(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0}) Match usn1=Allshortestpaths(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]}))) Using Index usn2:``(usn1) Where @usn6[$usn2..#usn7] Union Unwind {`7esn`} Ends With `` Ends With {`8esn`} As _usn3 Unwind $`5esn` Ends With 00 Ends With #usn7 As usn1"), + octest_legacy:ct_string("With Distinct 01 =~$`1esn`,$usn1 Is Not Null Is Not Null As usn2 Order By {123456789}[12..][$12..] Desc Skip #usn8 =~{999} Limit Reduce(_usn4={123456789} =~01234567 =~`3esn`,_usn3 In True[7][$999]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]) Ends With @usn5(Distinct {0} Is Null) Ends With {`6esn`:`3esn`[..{_usn4}][..{@usn5}],`2esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]} Where {`8esn`}[..$`6esn`][..123.654] Detach Delete `` Is Null Is Null,{`4esn`}[{`1esn`}][{1000}] Merge `7esn`=(({@usn6:$`` Starts With 12 Starts With $usn2})) On Match Set (:_usn3$usn1)<-[`2esn`:`5esn` *0x0..{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})._usn4 =#usn7 Starts With $999 Union All Create (((_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )})-[?:usn2|#usn7]-(`1esn` {#usn7:Count ( * )[$12..]})<-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]->(_usn4 {_usn3:`1esn`[..00][..{7}]}))),`3esn`=(:`3esn`:`6esn`{_usn4:{usn1} In Count ( * )})"), + octest_legacy:ct_string("Using Periodic Commit 0x0 Load Csv With Headers From $#usn7 Is Null Is Null As _usn4 Fieldterminator \"d_str\" Match ``=((_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[ *0xabc..7]->(:`4esn`:@usn6)-[?{`7esn`:{``} Ends With .e12 Ends With 0.e0}]-(`4esn` {`2esn`:12 Starts With 7 Starts With $`5esn`})) Using Index `6esn`:usn2(@usn5) Using Join On ``,`2esn`,`8esn`"), + octest_legacy:ct_string("Using Periodic Commit 999 Load Csv With Headers From 0.12[999][$#usn8] As usn1 Start #usn7=Relationship:usn2(_usn3='s_str') ,`4esn`=Node:`7esn`(``={usn2})"), + octest_legacy:ct_string("Load Csv From 123456789 Starts With {999} As usn2 "), + octest_legacy:ct_string("Create Unique `3esn`=Allshortestpaths((`7esn` :@usn6)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]})),usn1=(({`3esn`:12 Starts With 0x0,`8esn`:0X7[0.e0][{`4esn`}]})-[`5esn` *0x0..]->(`8esn` :#usn7)) Return Distinct $`2esn`[{usn2}] Limit Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..]) Starts With [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]|Count ( * )[..12][..{@usn6}]] Starts With Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where True Starts With $`2esn` Starts With {@usn6}) With Distinct @usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2) As @usn5,$`` =~{``} =~0.e0 Skip Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Starts With (usn2 :``)<-[#usn7? *0X0123456789ABCDEF{usn1:.e1[@usn5]['s_str'],`2esn`:$`7esn` Is Null Is Null}]->({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}) Where {_usn3} Contains True Contains 0X7 Union All With 12.0[010],{@usn5} Is Null Order By `3esn`[$@usn5..@usn5][9e1..$``] Desc,Extract(_usn4 In `2esn` Where $999 Is Null) Starts With Reduce(`5esn`=00,`2esn` In {999} Is Not Null|{`4esn`}[..07][..$`6esn`]) Starts With [`8esn`[..`4esn`][..$usn1],{#usn8}[2.12]] Descending,.e1 =~$`5esn` Desc Skip Count ( * ) Contains 12 Limit Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000) Contains [0x0[$`8esn`.._usn3]] Contains count({`1esn`} Is Not Null,$`2esn` Ends With 0.12 Ends With .e1) Create Shortestpath((:`2esn`{`4esn`:`3esn` Is Not Null Is Not Null})<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(usn1 {`4esn`:1.0[{999}][$999],``:9e1[9e1...e0]})),#usn7=Allshortestpaths((`6esn` {``:`4esn`[usn1]})<-[`7esn`?{_usn4:9e1 Ends With Count(*) Ends With False,#usn7:$_usn4 Ends With 0.e0 Ends With .e0}]->({`1esn`:$123456789[..$7][..$`6esn`]})-[_usn3:#usn7|`2esn`]-(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})) Return Distinct *,.e1 =~$`5esn` As @usn6,Count(*) Ends With 0x0 Ends With 9e0 As `2esn` Order By Any(`1esn` In `3esn`[07..] Where .e1 Starts With $_usn4 Starts With {`1esn`}) Starts With 0x0 Descending,Case $`2esn`[{``}..{1000}][#usn8..`2esn`] When #usn8 Is Not Null Then 12.e12 In $0 In $0 When usn2 =~0X7 =~{#usn7} Then {12}[usn2] End[..Extract(`6esn` In 00 Where 9e1 Ends With $@usn5 Ends With $123456789)][..(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})<-[@usn6?:`8esn`|:_usn4 *0X7..0Xa{`3esn`:9e1 =~999}]-(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]})-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-(:`7esn`{``:.e1 Contains $`3esn`})] Ascending,1.0 Ends With `8esn` Ends With {@usn6} Desc Skip {_usn3}[{0}]"), + octest_legacy:ct_string("Unwind `7esn` Starts With 0X7 Starts With $`7esn` As `1esn` Create `3esn`=Shortestpath((:_usn4)-[`6esn`?{#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}]-({`3esn`:9e1 =~999})-[`3esn`? *01..07]->({`7esn`:@usn5[..$@usn5][..0Xa]})),_usn3=((`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->(`4esn` {`2esn`:@usn5[$12..\"d_str\"]})) Remove Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where _usn4 Is Null Is Null).``!,Case 7 Contains $`` Contains {`6esn`} When {#usn8}[2.12] Then $``['s_str'..][0x0..] When $7 Ends With $`8esn` Then {`7esn`}[``..] Else {123456789}[12..][$12..] End.`6esn`! Union Unwind 2.12 In 123456789 In usn1 As usn2 Create Unique Shortestpath((usn2 )-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})),``=(({`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[ *0xabc..7]->(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]})) Merge `1esn`=Allshortestpaths((((:`7esn`{`1esn`:{1000} In {123456789},`4esn`:010 In `1esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)))) On Create Set [`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0}|#usn8 In `8esn` In 07].`6esn`? ={#usn8} Ends With 1.0 Ends With 12.0,`4esn` =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})"), + octest_legacy:ct_string("Start ``=Rel:`4esn`(#usn8='s_str') ,_usn3=Node(01,0x0,0X7,0X7)Where `2esn` Ends With $`4esn` Ends With {#usn7} Create `8esn`=(@usn6 :#usn7)<-[`6esn`?]-(`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}}),#usn7=(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}) Union All Match #usn7=Allshortestpaths((:`5esn`:@usn5{#usn8:123.654[$`1esn`..Null][1000..{_usn3}],`6esn`:12.0 =~$#usn7 =~9e12})-[`1esn`:usn2|#usn7{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})) Where {#usn8}[$#usn7..] Union All With *,usn1 Is Not Null Is Not Null As #usn8,12 Is Not Null Is Not Null As _usn4 Order By {`7esn`} =~1e1 Asc,1000 Starts With `7esn` Descending,{`4esn`:`7esn` Contains `5esn` Contains 0X7} Ends With Allshortestpaths((`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4)) Descending Unwind Shortestpath((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})-[`7esn`?:`6esn`]->(`1esn` :_usn4)-[#usn8:_usn3|`8esn`{`6esn`:`5esn` Is Null Is Null}]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))[Extract(`1esn` In `3esn`[07..] Where 999 Starts With 's_str')][Case `8esn` Contains $`3esn` Contains {`4esn`} When 9e1 Ends With $@usn5 Ends With $123456789 Then usn2[True] When 0.e0 =~`1esn` =~`6esn` Then usn2 =~0X7 =~{#usn7} Else 1.e1[..12.e12][..$usn2] End] As #usn7 Load Csv From None(`1esn` In $12 Is Not Null Where Null Is Null Is Null) Contains $`6esn` Contains exists(Distinct {`3esn`} Is Null) As `2esn` "), + octest_legacy:ct_string("Create `4esn`=((`7esn` {`4esn`:#usn8 =~{999},`2esn`:9e1 =~`` =~{`7esn`}})-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-({`1esn`:$123456789[..$7][..$`6esn`]})) Foreach(_usn4 In $`` In \"d_str\"| Load Csv From `4esn` Is Not Null Is Not Null As `7esn` Fieldterminator \"d_str\" Return ``[{#usn8}]) Load Csv With Headers From {#usn8} Is Null Is Null As usn2 Fieldterminator \"d_str\" Union Optional Match Allshortestpaths(((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[usn1?:usn2|#usn7 *01..07]-(@usn6 {`5esn`:\"d_str\" =~`1esn` =~{`5esn`}})-[`3esn`? *01..07]->({`7esn`:@usn5[..$@usn5][..0Xa]}))) Using Index `4esn`:`3esn`(`3esn`) Merge (`6esn` :`2esn`{`7esn`:#usn8 =~{999}}) On Create Set @usn5+={#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null,usn1 =\"d_str\" Is Null Is Null"), + octest_legacy:ct_string("Create Unique ``=Shortestpath((:_usn4{`4esn`:#usn7 Starts With 1000 Starts With .e1})) Return Distinct *,7[1000.._usn3][9e0..\"d_str\"],(`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})-[`4esn`?:_usn4|:usn1 *999{_usn4:{7} Starts With $usn1 Starts With 1.0,#usn7:$1000[..12.0][..0e0]}]-(#usn7 :`2esn`)-[?:`8esn`|:_usn4 *12..]->(@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]}) In {`3esn`:1e1 Contains usn2} Order By `4esn`({`2esn`} Starts With @usn6,{`2esn`}[..{@usn6}][..1.e1]) Ends With Any(`2esn` In {999} Is Not Null Where #usn8 =~{_usn3} =~``) Desc,None(`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}])[[123.654[1e1..][{#usn8}..],$#usn7[123.654]]] Descending,{_usn4} In {`6esn`} In `1esn` Descending Skip $usn1[False][999] Merge usn1=Allshortestpaths((:_usn3{`8esn`:9e1 =~999}))"), + octest_legacy:ct_string("Create @usn5=Shortestpath(({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[{``:\"d_str\"[{`8esn`}..]}]-({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})),`7esn`=((usn1 )<-[`7esn`]->(@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]})<-[{`2esn`:``[{123456789}..]}]->(@usn6 :`6esn`:`8esn`)) Union Merge ``=Shortestpath((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})-[#usn8?:#usn8|`2esn` *0X7..0Xa{usn2:{1000},`6esn`:#usn8[`7esn`..]}]->(:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})) On Match Set {`5esn`:#usn8 In `8esn` In 07,`5esn`:.e1[..\"d_str\"]}.usn1! ={0} =~12.0,Reduce(`3esn`={7} Starts With $usn1 Starts With 1.0,_usn3 In True[7][$999]|123.654[{@usn5}..123.654][1.0..$12]).#usn8 ={_usn4:{`6esn`} Ends With 0e0 Ends With {``}} In Shortestpath(((#usn8 {`8esn`:{7} Contains $123456789}))),`5esn` =0Xa[1000.._usn4] Remove Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where $usn1 In 0.12 In $``|Null =~12e12).`7esn`!,{#usn8:12.0 =~$#usn7 =~9e12}.@usn6!,Reduce(_usn3=12 Starts With 0x0,_usn4 In 0.0[..{999}][..0.0]|$usn1[..'s_str'][..$#usn8]).`6esn`! Unwind `7esn` Is Not Null Is Not Null As `6esn` Union All Remove `1esn`:usn1:_usn4,{#usn8:123.654[$`1esn`..Null][1000..{_usn3}],`6esn`:12.0 =~$#usn7 =~9e12}.@usn6,Reduce(@usn6=#usn8 Is Null,`2esn` In {999} Is Not Null|{_usn3} Is Not Null).`6esn` Foreach(`1esn` In {12}[$`3esn`]| Remove {usn2:{`6esn`} Ends With 0e0 Ends With {``}}.``?) Merge `4esn`=(((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 :`4esn`:@usn6)<-[:`6esn` *0xabc..7{`8esn`:0X7[0X7..][Count ( * )..]}]-(#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"})))"), + octest_legacy:ct_string("Return 's_str'[_usn3..] As `5esn`,{0}[False..@usn5] As `1esn` Skip 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF Delete True[7][$999],Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]}))) Foreach(#usn8 In {123456789}[12..][$12..]| Remove Case When $`3esn` In 9e12 In `` Then 9e0[#usn8] When {999} Starts With {12} Then 7 Is Null Is Null End._usn4!,{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}.#usn8 Remove {@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]}.`2esn`!) Union With Distinct *,All(`6esn` In Count(*) Ends With $`` Ends With {7}) In (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}) Skip [`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7}|usn2[`7esn`..{`3esn`}][$7..{#usn7}]][..[`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]|9e12[..0X7]]][..[`2esn` Ends With $`4esn` Ends With {#usn7},'s_str'[..0X7],{#usn8} =~{999} =~{#usn7}]] Union Create Unique usn1=Allshortestpaths((`2esn` :#usn8{@usn6:`7esn` Ends With $_usn3 Ends With usn2,_usn4:{12} Starts With #usn8 Starts With 0e0})<-[:`6esn`{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},`6esn`:``[..$#usn7]}]->({_usn4:False[0Xa..$usn1]})),#usn7=Allshortestpaths((({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True}))) Delete 0.0 In `6esn` In $@usn5,9e12 In 1e1 In .e12,1.0[..`4esn`][..{0}] Foreach(`1esn` In $#usn7[`5esn`]| Start ``=Rel:_usn4({`2esn`}) ,`7esn`=Node:`4esn`(``='s_str')Where 1000 Is Not Null)"), + octest_legacy:ct_string("Remove Shortestpath(((usn2 :_usn3{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000}))).@usn6? Union All Unwind Case #usn7 Ends With $#usn7 Ends With {`8esn`} When Count(*) Ends With 123.654 Ends With $12 Then $`3esn` Contains 0 Contains 07 When 0.e0 Ends With False Then {@usn6}[True..{_usn3}] Else 9e1 Ends With Count(*) Ends With False End Starts With [$usn1 In 01234567 In .e1,9e1 =~999,$0[$1000..00][{0}..{usn1}]] Starts With Allshortestpaths((`5esn` $`8esn`)<-[``:usn2|#usn7 *..0Xa]->(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]})-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})) As `5esn`"), + octest_legacy:ct_string("Unwind Count ( * )[..12][..{@usn6}] As @usn5 Optional Match ((:_usn3{`8esn`:9e1 =~999})-[@usn5:usn2|#usn7 *..7]-($_usn3)<-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(`3esn` :#usn7)) Using Scan `8esn`:#usn7 Using Scan `2esn`:#usn7 Start `6esn`=Node:_usn4({`8esn`}) Where 12.0 =~$#usn7 =~9e12 Union Foreach(#usn7 In {@usn6} Contains 123.654 Contains 01| Remove [0.0[..{999}][..0.0],12.e12[2.12..][0xabc..],True[7][$999]].@usn6 Delete Filter(#usn7 In 123.654 Starts With $`` Where Count(*)[010..][#usn7..])[None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $999 Ends With {0})..])"), + octest_legacy:ct_string("With Distinct *,$999 Is Not Null Is Not Null As `3esn`,[00[..$123456789][..$`5esn`],{_usn3} Contains $`1esn` Contains 12.0][..[0.e0 =~`1esn` =~`6esn`,12.0[2.12..][{`5esn`}..],1.e1[0X0123456789ABCDEF..]]][..Filter(_usn3 In True[7][$999] Where 's_str'[..0X7])] As #usn7 Order By $`2esn` Ascending,$`1esn`[..{_usn3}] Desc,$`1esn`[07] Desc Skip 9e12 Ends With 123456789 Union All Unwind _usn4 Contains 0X0123456789ABCDEF Contains {_usn4} As `2esn` Start `4esn`=Node(01234567,0Xa,07) Union All Create Unique _usn4=Allshortestpaths(((`` {`1esn`:{@usn5}[1e1..][9e1..],`2esn`:$`7esn` Contains {`1esn`} Contains 9e12})<-[`3esn`? *0x0..{_usn3:0.0[9e1..][Null..],#usn7:{`3esn`} Is Not Null Is Not Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-(`3esn` :`6esn`:`8esn`{`8esn`:{``} Is Null Is Null,`3esn`:123456789 Is Not Null Is Not Null}))),``=Shortestpath((`7esn` :`5esn`:@usn5{`2esn`:12 Starts With $#usn7})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(`4esn` :_usn4{`2esn`:#usn7 =~00}))"), + octest_legacy:ct_string("Remove Extract(_usn4 In 0.0[..{999}][..0.0] Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`|{`6esn`} Ends With 0e0 Ends With {``}).`1esn`! Union All Unwind {12}[999][{_usn3}] As `3esn` Foreach(`1esn` In `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]]| With Distinct *,0X0123456789ABCDEF Contains {usn1} As @usn5 Order By (:usn1:_usn4)<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[usn2?:`2esn`*..]-(:`5esn`:@usn5{``:0.12[..$`6esn`][..$1000]}) Starts With Reduce(`8esn`=00[..$123456789][..$`5esn`],`` In {`1esn`} Starts With @usn6|False[999]) Starts With [`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]] Descending,`2esn`(Null In .e0)[_usn3(Distinct {@usn6}[$`7esn`..][False..])..[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]]] Asc,(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[#usn7?:@usn6|``{123456789}]->(usn1 :`8esn`:@usn5)<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})[..[12.e12 In {0} In 9e1,9e1 =~`` =~{`7esn`},0X0123456789ABCDEF[0X7..]]][..All(`1esn` In `3esn`[07..] Where `7esn`[0..$usn2][{usn2}..0.e0])] Asc Skip #usn7[00] Limit Shortestpath(((usn1 {``:.e12 =~$_usn4})))[`6esn`(_usn3 Contains .e0 Contains {usn2},`3esn`[07..])][[.e12 Ends With 1000 Ends With 010,Count(*)]])"), + octest_legacy:ct_string("Create usn2=(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}),((({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})<-[?:``]-(`1esn` :#usn7)-[?:`4esn`|:#usn7]->(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]}))) Union Unwind [usn1 In 12.e12 In {0} In 9e1 Where {usn1} In Count ( * )][{_usn3:.e1 Ends With 0Xa Ends With .e1,`2esn`:12e12 Starts With `1esn` Starts With usn2}..] As `2esn` Match ``=Shortestpath(((@usn6 :`4esn`:@usn6{#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[:#usn7|`2esn` *0x0..]-({`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}))) Using Scan ``:usn2 Using Join On #usn7,@usn5 Where #usn8[$0..False][$`1esn`..$#usn7] Union All Remove Case 12.e12[$`8esn`..{`8esn`}] When {``} Starts With 123456789 Starts With usn2 Then 12.e12[{7}..7] End.`7esn`,usn1:`3esn`:`6esn`,Filter(#usn7 In 0Xa[@usn5][{`7esn`}] Where #usn7 Starts With $999).usn1!"), + octest_legacy:ct_string("Return Distinct usn1[0] As ``,9e12 Is Not Null Is Not Null Order By {`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] Desc Limit 9e0 In usn1 Create Unique ((_usn4 :#usn7{_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})),(`1esn` :`7esn`)-[@usn5?:@usn5|:`7esn`]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}) Union Detach Delete {_usn4}[{``}..] Union Remove Reduce(_usn4=$0 Is Not Null,`2esn` In {999} Is Not Null|12.e12[2.12..][0xabc..]).``!"), + octest_legacy:ct_string("Load Csv With Headers From {`6esn`} Contains {usn2} Contains $1000 As `3esn` Fieldterminator 's_str' Merge _usn4=(({`5esn`:0Xa[0e0..{#usn7}]})<-[?:``]-(`7esn` :`3esn`:`6esn`)) On Match Set `5esn`+=Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..],[`6esn` In Count(*) Ends With $`` Ends With {7} Where @usn5 =~'s_str'|{_usn3} Contains 9e0 Contains $999].usn2 =9e12 Is Null On Match Set `5esn` =True[..010],#usn8+=Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}),`3esn` =@usn6[$_usn4] Remove Case When {`1esn`}[$`4esn`..][False..] Then $usn2 Is Null Is Null End.`5esn`?,All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $999 Ends With {0}).`8esn`? Union All Create #usn7=Allshortestpaths(((:`5esn`:@usn5))),(((`5esn` :@usn6)<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5)<-[ *123456789..0X7]-(:`7esn`{``:.e1 Contains $`3esn`}))) Union All Merge Shortestpath((({`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]->(`2esn` :``)<-[`1esn`?:_usn4|:usn1*]->(usn2 :``))) On Create Set usn1 =#usn8 In `8esn` In 07"), + octest_legacy:ct_string("With Distinct Reduce(`8esn`=True Starts With $`2esn` Starts With {@usn6},`5esn` In $`2esn`[12.e12][$@usn5]|999 Ends With .e12 Ends With .e1)[..Case 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0] When `4esn` Contains #usn8 Contains 7 Then 12 Ends With 01 When {999}[$123456789..][12..] Then {`4esn`} In _usn4 Else {#usn7}[Count ( * )..12][$`2esn`..`4esn`] End],Case 9e0 In usn1 When {@usn6} Contains 123.654 Contains 01 Then $@usn5 In 's_str' In $12 End In Allshortestpaths(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))) In Case {`7esn`}[9e1..][@usn6..] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" When {7}[{`4esn`}][`6esn`] Then 0xabc[$@usn5] Else 0e0 End Skip {7}[$123456789..{1000}][$`3esn`..`7esn`]"), + octest_legacy:ct_string("Start @usn6=Rel:_usn4(``=\"d_str\") Where 12 Starts With 0x0 Delete 9e12 Ends With 123456789,0X0123456789ABCDEF[$`5esn`..],{`3esn`} =~[1.e1 =~$usn2] =~Filter(`6esn` In 00 Where `5esn`[..9e0][..01234567]) Union All Create Unique `5esn`=Allshortestpaths(((({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2})<-[:_usn4|:usn1 *07]-(#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})))),`8esn`=(({`1esn`:12 Starts With 0x0})<-[`5esn`{`6esn`:12 Is Not Null Is Not Null,`8esn`:`3esn` Is Not Null Is Not Null}]->(_usn3 {@usn5:.e12 =~.e0})) Match `8esn`=Shortestpath((@usn6 {``:.e12[\"d_str\"..][.e1..]})) Using Scan `6esn`:#usn8 Using Index `7esn`:`1esn`(`2esn`) Where {`4esn`} In _usn4 Start @usn5=Node:`6esn`(#usn8={`5esn`}) ,usn1=Rel(12,1000,1000,0X7)Where 1.e1 Starts With $`2esn` Starts With $0"), + octest_legacy:ct_string("Delete $_usn3[..$`2esn`][..\"d_str\"],{`3esn`}[{123456789}..][{usn1}..],True Starts With $`4esn` Starts With 12e12 Match `6esn`=((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[:`2esn` *07]-(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]->({``:.e1 Contains $`3esn`})),Allshortestpaths(((`` {``:$0[..{usn2}][..$usn1]})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))) Using Join On `6esn`,#usn7 Using Scan `1esn`:`3esn` Union Merge _usn3=((:_usn4{`8esn`:12e12 Starts With `1esn` Starts With usn2})<-[@usn6?]->(`3esn` :`4esn`:@usn6{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]})) On Match Set _usn4 =9e0 Starts With .e0 Starts With \"d_str\",`4esn` =Shortestpath((_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]) In Shortestpath(((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}))),@usn6+={999} Starts With {_usn4} Starts With 00 Match usn1=((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})),`8esn`=(`6esn` {``:`4esn`[usn1]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]->(#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``}) Using Scan `4esn`:#usn8 Union All Start @usn6=Rel:`2esn`(`5esn`='s_str') Merge Shortestpath(((_usn3 :`6esn`:`8esn`{`4esn`:$usn1 Starts With $999 Starts With {@usn5},`7esn`:``[..$#usn7]}))) On Create Set `3esn`+=2.12 In $`8esn` In {`7esn`},_usn4 ={`2esn`} Ends With {#usn7} Create _usn4=Allshortestpaths((@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})),((`2esn` :#usn8)<-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` :`8esn`:@usn5)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`}))"), + octest_legacy:ct_string("Start _usn3=Relationship:#usn7({`4esn`}) Where ``[..0X0123456789ABCDEF] Union All Create Unique ``=Shortestpath(((usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}))),usn1=Allshortestpaths(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]}))) Unwind (:`4esn`:@usn6{usn1:$7[{`1esn`}],#usn8:\"d_str\"[..0.e0]})<-[`4esn`:@usn6|``{_usn4:Count ( * ) Starts With 010 Starts With 0x0,`2esn`:1.0 In 9e1 In {`7esn`}}]->(usn2 {usn1:{`4esn`}[..07][..$`6esn`],`5esn`:'s_str'[..0X7]})-[? *0X0123456789ABCDEF]-(_usn3 :`5esn`:@usn5)[Reduce(usn2={`6esn`}[..{`2esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|1e1[..01])..] As `5esn` Load Csv With Headers From {#usn7} Is Null Is Null As `` Fieldterminator 's_str' Union All Load Csv From {@usn5}[1e1..][9e1..] As `8esn` "), + octest_legacy:ct_string("Optional Match usn2=((@usn6 :#usn7{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})<-[?:#usn7|`2esn` *0x0..]->({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) Using Scan _usn4:`2esn` Where 00[Count(*)...e0][$#usn7..0X0123456789ABCDEF] Detach Delete `1esn`(Distinct $usn1 Starts With {_usn3},{#usn8}[$#usn7..]) Starts With [$_usn4[$`4esn`..$12]] Starts With [`6esn` In 00 Where 0.12 In 0X7|{999} Is Null] Load Csv From `` Ends With $`4esn` Ends With 0X0123456789ABCDEF As usn2 "), + octest_legacy:ct_string("Load Csv With Headers From {#usn7} Is Null Is Null As `` Fieldterminator 's_str' Load Csv With Headers From ``[{123456789}..] As `3esn` Create Unique Shortestpath((((:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})))) Union With Distinct *,1.e1[`4esn`..][$`6esn`..] As @usn5 Skip `3esn`(Distinct 12.e12[``..usn2][{#usn7}..@usn5],1000 Is Not Null) In {`1esn`:@usn6[$usn2..#usn7]} Where 12.e12[{@usn5}..][9e1..] Load Csv With Headers From [`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]][..{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}][..`4esn`(123.654[$`1esn`..Null][1000..{_usn3}])] As @usn5 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Load Csv With Headers From {@usn5}[..#usn7] As `8esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Merge #usn8=(`8esn` :`5esn`:@usn5)-[`5esn`?:usn2|#usn7]->(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )}) Union Load Csv With Headers From All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.e12[$`8esn`..{`8esn`}]) Is Null As usn2 Start `3esn`=Rel:``(usn1={`4esn`}) Match ``=((_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[ *0xabc..7]->(:`4esn`:@usn6)-[?{`7esn`:{``} Ends With .e12 Ends With 0.e0}]-(`4esn` {`2esn`:12 Starts With 7 Starts With $`5esn`})) Using Index `6esn`:usn2(@usn5) Using Join On ``,`2esn`,`8esn`"), + octest_legacy:ct_string("Load Csv From 0.0 In `6esn` In $@usn5 As `4esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Load Csv From `1esn` In 07 As @usn5 Fieldterminator 's_str' Union All Foreach(_usn3 In (`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->({_usn3}) Is Null| Start #usn7=Node:usn2({@usn5}) ,``=Node:``(@usn6='s_str')Where {0}[..{`7esn`}]) Union All Match Shortestpath((usn2 :`5esn`:@usn5)<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(#usn7 {`7esn`:12e12 Ends With `4esn` Ends With 123456789})-[?:`7esn`]->(#usn7 :@usn6)) Using Join On usn2,`6esn` Where 9e12 =~123456789 =~$999"), + octest_legacy:ct_string("Merge (`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})<-[? *0X7..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) On Create Set {``:.e12 =~$_usn4}._usn4? =@usn6 Contains Null On Match Set [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0[$#usn8...e12]].#usn8 =Allshortestpaths(((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))) Starts With (`1esn` :_usn3{`5esn`:{`8esn`}[..$`6esn`][..123.654],`1esn`:1000 Starts With `7esn`})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Extract(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]),Case When Count ( * ) Starts With 010 Starts With 0x0 Then 9e12[$`5esn`] When {999}[$123456789..][12..] Then {@usn5}[..{12}][..0x0] End.`8esn`? =$`6esn`[{`3esn`}..12],`6esn` =9e0 Contains @usn6 Contains {#usn7} Start `2esn`=Node:usn1({`7esn`}) ,@usn5=Rel( {`7esn`})Where 123.654[1e1..][{#usn8}..] Union All With Distinct `6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}],{12}[010..{1000}][1e1...e1] Order By All(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`8esn`}[0X7][$`3esn`])[[9e1[123456789..]]] Desc,1.0[..`4esn`][..{0}] Asc,{`3esn`} Is Not Null Is Not Null Asc Skip 12.e12 In {0} In 9e1 Limit {#usn7}[Count ( * )..12][$`2esn`..`4esn`] Delete Reduce(usn1=$#usn7 Ends With 0.12 Ends With {@usn6},_usn3 In {`2esn`} Ends With {12} Ends With 7|{0} Is Null) Is Not Null Is Not Null,`1esn`[..\"d_str\"][..$`5esn`],9e12 Is Null With Distinct (`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] As usn2 Order By All(`6esn` In Count(*) Ends With $`` Ends With {7}) In (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}) Desc Skip `7esn` =~.e12 =~$#usn7"), + octest_legacy:ct_string("Start usn1=Node:_usn3(_usn3='s_str') ,`8esn`=Node(07,123456789,123456789)Where $`4esn`[..'s_str'][..`8esn`] Return *,$999 Is Not Null Is Not Null As `3esn`,[00[..$123456789][..$`5esn`],{_usn3} Contains $`1esn` Contains 12.0][..[0.e0 =~`1esn` =~`6esn`,12.0[2.12..][{`5esn`}..],1.e1[0X0123456789ABCDEF..]]][..Filter(_usn3 In True[7][$999] Where 's_str'[..0X7])] As #usn7 Order By $`2esn` Ascending,$`1esn`[..{_usn3}] Desc,$`1esn`[07] Desc Skip 9e12 Ends With 123456789 Union Optional Match @usn5=((`1esn` :`4esn`:@usn6)),(#usn8 :#usn8) Where 9e1 Ends With Count(*) Ends With False Create Unique Allshortestpaths((:_usn4{`1esn`:{123456789}[12..][$12..]})) Start _usn4=Node:`4esn`(_usn4={``}) Where {`2esn`} In 0Xa In {_usn3} Union All Delete 0e0[..$@usn5][..$`8esn`] With Distinct *,$123456789[..$7][..$`6esn`],Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF) Ends With Case {`2esn`}[..{@usn6}][..1.e1] When Null Is Null Is Null Then #usn7 Contains {`3esn`} Contains $`6esn` When 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Then $usn1[..'s_str'][..$#usn8] End Ends With Filter(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789}) Skip Count(*)[..``][..#usn8] Limit 9e12[{123456789}..][$`2esn`..] Where 0X0123456789ABCDEF[$999..][@usn5..]"), + octest_legacy:ct_string("Create Unique #usn7=((@usn6 :`2esn`)) Union Remove Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where 0X7[0.e0][{`4esn`}]|``[00..$7]).`5esn`! Load Csv From Single(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7])[..{@usn5:_usn4[Count(*)],`6esn`:$`3esn` Contains 0 Contains 07}][..Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`])] As `6esn` Foreach(@usn6 In 0Xa Contains Count ( * )| With Distinct {`5esn`} Starts With 12.0,Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End[None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])][count(Distinct $`5esn`[$#usn7..][0xabc..])] As `2esn`,0.e0 Contains .e0 Contains $@usn6 Order By $#usn7 Is Null Is Null Descending,Case When 0X0123456789ABCDEF[7...e0][`1esn`..usn2] Then $1000 Starts With $`8esn` Starts With {`5esn`} When usn2 =~0X7 =~{#usn7} Then {`2esn`} In $123456789 In True End[Single(_usn3 In True[7][$999] Where {usn2})][Any(_usn4 In 0.0[..{999}][..0.0] Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`)] Ascending Limit {usn2:_usn4 Is Null}[[True =~_usn3 =~123456789,0Xa[@usn5][{`7esn`}],{`1esn`} Starts With `4esn` Starts With {0}]..] Where {_usn3}[..$`8esn`] Create ``=(({`4esn`:1000 Is Null Is Null})),Allshortestpaths((((@usn6 {usn1:$#usn7 =~{12} =~False})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})))))"), + octest_legacy:ct_string("Return Distinct Allshortestpaths((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})<-[`1esn`?]->(:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}}))[Case When 123.654[$`1esn`..Null][1000..{_usn3}] Then ``[$0..][`1esn`..] When 00 Ends With `8esn` Then $usn2 Is Null Is Null Else $999 Is Null End..``(999 Starts With 's_str',1e1[1.e1..][123.654..])][Single(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{usn2:{1000},`6esn`:#usn8[`7esn`..]}],$#usn8[{12}..] As `6esn`,None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False)[[9e1[$_usn4..0xabc],{@usn6}[$`7esn`..][False..],#usn8 In `8esn` In 07]..Any(_usn4 In `2esn` Where $999 Is Null)] Skip Count(*)[.e12]"), + octest_legacy:ct_string("Load Csv From Allshortestpaths((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})<-[`1esn`?]->(:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}}))[Case When 123.654[$`1esn`..Null][1000..{_usn3}] Then ``[$0..][`1esn`..] When 00 Ends With `8esn` Then $usn2 Is Null Is Null Else $999 Is Null End..``(999 Starts With 's_str',1e1[1.e1..][123.654..])][Single(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{usn2:{1000},`6esn`:#usn8[`7esn`..]}] As `3esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Remove Reduce(usn2=$7 In 1.0 In 1e1,@usn5 In Null =~12e12|.e12[$7..][{`6esn`}..]).`4esn`,(:@usn5)<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})-[`3esn`:`6esn`{`3esn`}]-(@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]}).`5esn`?,Case When {usn1} =~123.654 =~\"d_str\" Then 9e1[$_usn4..0xabc] Else {`4esn`} In _usn4 End.@usn5! Foreach(#usn8 In Case Count(*) Ends With 123.654 Ends With $12 When $@usn6[$0..usn1][0X0123456789ABCDEF..$999] Then {`6esn`}[..{`2esn`}] End In Reduce(`4esn`={@usn6} In {#usn7} In 12.e12,usn1 In 12.e12 In {0} In 9e1|\"d_str\"[..0.e0]) In [_usn4 In `2esn` Where 9e12 Ends With 123456789|$999 Is Null]| Remove usn2:@usn5,Case 0.0 =~12.e12 =~1.0 When 0.e0 Ends With False Then 00[..$123456789][..$`5esn`] Else _usn3[$usn2..0] End.#usn8!,`8esn`:_usn3) Return 123456789 Is Null Is Null As `3esn` Skip {7}[`4esn`..1.e1][`4esn`..{`6esn`}] Union With Distinct 1e1[{_usn4}..123.654] Order By Case When 0X0123456789ABCDEF[7...e0][`1esn`..usn2] Then $1000 Starts With $`8esn` Starts With {`5esn`} When usn2 =~0X7 =~{#usn7} Then {`2esn`} In $123456789 In True End[Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`)] Ascending,Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..] Asc,usn1 Is Null Is Null Descending Start usn2=Node:usn1(`5esn`={_usn4}) ,_usn3=Relationship:``(_usn3={0})Where 1.0[{999}][$999] Union Load Csv From 0.12[010..][{0}..] As _usn4 "), + octest_legacy:ct_string("Merge ``=(usn2 :`4esn`:@usn6)<-[_usn3?:@usn6|``]->(usn1 :`5esn`:@usn5) On Match Set `6esn` ={_usn3}[usn1][0],Shortestpath((@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})).@usn5? =\"d_str\" Contains @usn6 Contains 12.e12,`7esn`+=`3esn`[..{_usn4}][..{@usn5}] On Match Set ``+=$@usn6 Contains `7esn`,_usn4:`5esn`:@usn5"), + octest_legacy:ct_string("Load Csv With Headers From 010 Ends With 01 Ends With {_usn3} As #usn8 Fieldterminator 's_str' Optional Match `7esn`=Shortestpath((((`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})-[_usn3?*..{#usn7:#usn8 =~{999},`8esn`:{_usn3}[`3esn`..$#usn8]}]->({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})-[@usn6 *07{`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}]->({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]})))),`6esn`=Shortestpath(((:#usn8{#usn8:`3esn` Is Not Null Is Not Null}))) Where {0} =~12.0 Union All Match `6esn`=Allshortestpaths((@usn6 :usn1:_usn4)),@usn6=Shortestpath(((:#usn8{#usn8:`3esn` Is Not Null Is Not Null}))) Using Index usn1:`3esn`(`3esn`) Using Join On usn2,`6esn` Union Load Csv From `4esn` Is Not Null Is Not Null As `7esn` Fieldterminator \"d_str\" Create Unique _usn4=Shortestpath(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})-[:`1esn`|:`3esn` *..01234567{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(#usn7 {``:0x0 =~123.654 =~{999}})),#usn8=((`2esn` :@usn6)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)<-[`1esn`:`8esn`|:_usn4 *123456789..0X7$12]->(:`1esn`{`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})) Load Csv From `1esn` In 07 As `8esn` "), + octest_legacy:ct_string("Remove None(#usn7 In 0Xa[@usn5][{`7esn`}] Where $#usn7 Ends With 0.12 Ends With {@usn6}).`2esn`,Filter(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {1000}[01234567..$_usn4][{@usn6}..$_usn3]).@usn5! With Distinct {`5esn`}['s_str'..] As ``,Extract(_usn4 In `2esn` Where $999 Is Null) Starts With Reduce(`5esn`=00,`2esn` In {999} Is Not Null|{`4esn`}[..07][..$`6esn`]) Starts With [`8esn`[..`4esn`][..$usn1],{#usn8}[2.12]] As usn2,{#usn8} Is Null Is Null As `1esn` Order By 12 In 999 Descending,[{0}[False..@usn5]] Starts With {`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]} Starts With Shortestpath((:_usn3{0})-[usn2 *12..]->(:``)) Desc,[$_usn4[9e0..]][`8esn`(Distinct {7} Starts With $usn1 Starts With 1.0)..Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} Starts With 1.0 Starts With 00|$#usn7[..@usn6][..$0])][Any(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{#usn8:{`7esn`} Is Not Null Is Not Null,`4esn`:12 Starts With 0x0}] Asc Skip 0Xa Contains #usn8 Contains 1000 Where {`4esn`} Starts With $7 Starts With $`` Create `2esn`=((`1esn` :@usn5{_usn3:Null Is Null Is Null,``:True[True..]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(#usn7 {`7esn`:12e12 Ends With `4esn` Ends With 123456789})-[:_usn4|:usn1 *07]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})) Union All Load Csv From {#usn8}[$#usn7..] As `8esn` Fieldterminator \"d_str\" Start _usn4=Node:`4esn`(`2esn`={``}) Where False Starts With 010 Create Unique ((_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->(`` {``:0x0 =~123.654 =~{999}})-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->(:`3esn`:`6esn`{@usn5:.e12 =~.e0})),``=Shortestpath(((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})))"), + octest_legacy:ct_string("Using Periodic Commit 0x0 Load Csv From {usn1}[$`8esn`..0.0] As `1esn` "), + octest_legacy:ct_string("Load Csv With Headers From All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.e12[$`8esn`..{`8esn`}]) Is Null As usn2 Start `3esn`=Rel:``(usn1={`4esn`}) Match ``=((_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[ *0xabc..7]->(:`4esn`:@usn6)-[?{`7esn`:{``} Ends With .e12 Ends With 0.e0}]-(`4esn` {`2esn`:12 Starts With 7 Starts With $`5esn`})) Using Index `6esn`:usn2(@usn5) Using Join On ``,`2esn`,`8esn` Union With Distinct *,#usn8 Is Not Null,$usn2 Starts With $@usn6 Starts With 010 As _usn4 Where $`1esn` Is Not Null Is Not Null"), + octest_legacy:ct_string("Optional Match (({@usn5:``[{123456789}..]})-[`3esn`:`6esn`{`3esn`}]-({`1esn`:$123456789[..$7][..$`6esn`]})<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`)),_usn3=Shortestpath(((`` {``:0x0 =~123.654 =~{999}})-[`6esn`?{#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}]-({`3esn`:9e1 =~999}))) Using Scan _usn4:`4esn` Where $@usn5[`1esn`..] Remove Reduce(_usn4=$0 Is Not Null,`2esn` In {999} Is Not Null|12.e12[2.12..][0xabc..]).``! Union Merge ({_usn4:0.e0[{999}][{`1esn`}]})-[`2esn`:`3esn`|:@usn5 *..010{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->({`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]}) On Match Set #usn7 =`4esn`[usn1],{`2esn`:9e12 Is Not Null Is Not Null}.usn2? =Single(`1esn` In $12 Is Not Null Where 0Xa Contains Count ( * ))[Any(`6esn` In 00)..Allshortestpaths((((:`4esn`:@usn6{@usn6:Count(*)[..``][..#usn8]})<-[``:usn2|#usn7 *..0Xa]->(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]})-[:#usn8|`2esn`]->(`` :usn2:`2esn`))))],``(True[True..],$_usn4).`5esn`? =`4esn` =~12.0 =~{`3esn`} Unwind {_usn4:{`6esn`} Ends With 0e0 Ends With {``}} In Shortestpath(((#usn8 {`8esn`:{7} Contains $123456789}))) As `4esn` Load Csv With Headers From Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})] As @usn5 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Create ((:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01})<-[`8esn`? *..7{`8esn`:{7}[{`4esn`}][`6esn`]}]->(:`6esn`:`8esn`{`3esn`:$`6esn`[{`3esn`}..12],_usn3:0[{@usn5}..][7..]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->(:`6esn`:`8esn`$usn2)),_usn3=Shortestpath((`6esn` {``:`4esn`[usn1]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]-(#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]})) Optional Match Allshortestpaths((({_usn4}))),`7esn`=({#usn7:#usn8 =~{999}}) Where $@usn6 Starts With {`1esn`} Starts With 12"), + octest_legacy:ct_string("With Distinct *,Shortestpath(((usn1 {``:.e12 =~$_usn4})))[`6esn`(_usn3 Contains .e0 Contains {usn2},`3esn`[07..])][[.e12 Ends With 1000 Ends With 010,Count(*)]] As #usn8 Skip {_usn4}[{``}..]"), + octest_legacy:ct_string("Remove Allshortestpaths(((:usn1:_usn4)-[`1esn`:`1esn`|:`3esn` *01..07{`3esn`:123456789 Is Not Null Is Not Null}]-(`1esn` {@usn5:$usn1 In 0.12 In $``})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`)))._usn4 Foreach(`4esn` In Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]}))) Ends With Case When $``['s_str'..][0x0..] Then 9e12[..0X7] Else $1000[..$999] End| Create (({`4esn`:1000 Is Null Is Null})),#usn8=(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[?:`6esn` *01..07]->(#usn7 :#usn8{_usn3:`1esn`[..00][..{7}]})<-[:`1esn`|:`3esn` *1000]-($12) Create Unique `4esn`=((#usn8 :usn1:_usn4))) Load Csv With Headers From Case 0xabc[$@usn5] When 9e1[$_usn4..0xabc] Then $12[{7}..0X0123456789ABCDEF] When 01 =~$`1esn` Then {1000}[\"d_str\"..{@usn5}][$1000..$#usn8] Else 1.e1[_usn4..][07..] End Is Not Null As `7esn` "), + octest_legacy:ct_string("Remove usn2(Distinct 1e1[..01],$123456789 Is Not Null)._usn3? With Distinct *,Single(`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`)[..[$_usn4 Contains {#usn7} Contains `1esn`,{123456789} =~01234567 =~`3esn`]][..{`5esn`:{999} Starts With {_usn4} Starts With 00,usn1:$``['s_str'..][0x0..]}] As #usn8 Order By `6esn` Is Null Is Null Descending,`1esn` Is Null Is Null Asc Limit {12} In $12 In 0xabc Where False Contains $#usn8 Contains 9e1 Foreach(`2esn` In `` Ends With {usn1}| Detach Delete {#usn8}[usn1][1.0],1.e1[0X0123456789ABCDEF..],0e0[..{999}] Optional Match Allshortestpaths((usn2 :`5esn`:@usn5)),Allshortestpaths((((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]-({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})-[#usn8:`` *..0{@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}}))))) Union All Start `6esn`=Node:_usn4({`8esn`}) Where 12.0 =~$#usn7 =~9e12 Remove [$0[`7esn`],0.12 Contains 12.0,True Is Null Is Null].``?,[`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]].`2esn`! Load Csv From {#usn7} Ends With 12e12 Ends With {123456789} As `7esn` Union Merge #usn8=(`8esn` :`5esn`:@usn5)-[`5esn`?:usn2|#usn7]->(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )})"), + octest_legacy:ct_string("Create `5esn`=Allshortestpaths(((({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2})<-[:_usn4|:usn1 *07]-(#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})))),`8esn`=(({`1esn`:12 Starts With 0x0})<-[`5esn`{`6esn`:12 Is Not Null Is Not Null,`8esn`:`3esn` Is Not Null Is Not Null}]->(_usn3 {@usn5:.e12 =~.e0})) Return *,(:`7esn`{``:.e1 Contains $`3esn`})<-[?:usn2|#usn7]->(#usn8 :#usn7) As #usn8 Order By `6esn` Is Null Is Null Desc Union All Create Unique ((({usn2:$`5esn`[`4esn`][_usn3]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})-[_usn3 *..01234567$`5esn`]->({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null}))) Union All Merge ({usn1:0[{@usn5}..][7..],`7esn`:{``}[_usn4..$`1esn`]})-[_usn4? *07{1000}]-(`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]}) On Match Set [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 07[..`6esn`][..'s_str']|\"d_str\"[{999}..]].@usn6? =Shortestpath((`6esn` :`7esn`)-[:_usn3|`8esn` *12..{`8esn`:Count(*)[.e12..],`5esn`:{#usn8}[12.0][$@usn6]}]-(`1esn` {_usn4:`3esn`[_usn4..{0}][`5esn`..usn2]})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`)) Contains Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) On Match Set _usn3+=_usn4[Count(*)],usn1 =010 Ends With 01 Ends With {_usn3},@usn6+=\"d_str\"[{`8esn`}..] Start usn1=Node:_usn4({`8esn`}) ,_usn3=Relationship:#usn8('s_str')"), + octest_legacy:ct_string("Match Shortestpath((`7esn` {`3esn`:0.0 =~12.e12 =~1.0,`1esn`:$usn1 Starts With {_usn3}})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]-({`7esn`:123.654 Ends With usn2 Ends With 0})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})) Using Scan _usn3:`4esn` Using Scan `2esn`:`1esn` Where $123456789 Starts With $123456789 Starts With Count ( * ) Union All Remove Filter(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`8esn`}[0X7][$`3esn`]).`3esn` Foreach(`7esn` In ({`8esn`:Null In .e0})-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}) =~None(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) =~(`6esn` :`2esn`{`7esn`:#usn8 =~{999}})<-[:#usn7|`2esn`]->(:#usn7{usn2:{`8esn`}[0X7][$`3esn`]})| Unwind {`3esn`} Ends With `1esn` Ends With $@usn6 As `2esn`)"), + octest_legacy:ct_string("Remove Extract(`` In {`1esn`} Starts With @usn6 Where .e0[..{`5esn`}][..999]|$`3esn`[..$`2esn`][..123.654]).`4esn`!,count({@usn5}[..#usn7]).`1esn`,None(`5esn` In $`2esn`[12.e12][$@usn5] Where 9e1[9e1...e0]).`8esn` Union All Remove `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null).`3esn`! Delete 0e0[..$@usn5][..$`8esn`] Union Load Csv From $0[..{usn2}][..$usn1] As _usn4 Fieldterminator 's_str' Create Unique `5esn`=Allshortestpaths(((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]}))),`6esn`=Allshortestpaths((`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]}))"), + octest_legacy:ct_string("Remove [{`1esn`} In 12.e12 In 9e1,usn1 In 00 In {_usn3},`8esn` Starts With {123456789}].`7esn`,Case 0.e0 =~`1esn` =~`6esn` When $`1esn`[$12][Count ( * )] Then 0Xa Contains {`7esn`} Contains $999 Else 0.12[..$`6esn`][..$1000] End.`1esn`! Load Csv From 12 Starts With 7 Starts With $`5esn` As `3esn` Create Unique `5esn`=((`3esn` :`6esn`:`8esn`{`8esn`:{``} Is Null Is Null,`3esn`:123456789 Is Not Null Is Not Null})<-[_usn4?:usn2|#usn7{_usn4:{`1esn`} In 12.e12 In 9e1}]-(:usn2:`2esn`)),((#usn8 :usn1:_usn4)<-[usn1:usn1{`3esn`:\"d_str\" Ends With False Ends With {@usn6},`5esn`:`4esn` Contains #usn8 Contains 7}]->(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(`2esn` :#usn8{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})) Union All Detach Delete 2.12 In $`8esn` In {`7esn`} Union All Remove ({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})<-[?{#usn7:1e1[1.e1..][123.654..],`3esn`:True Starts With $`4esn` Starts With 12e12}]-(`1esn` :`6esn`:`8esn`{usn2:Count ( * )[..12][..{@usn6}]})<-[:#usn7|`2esn` *0x0..]-({`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}).#usn8!,Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where `6esn`[..{999}]).#usn8? Start #usn7=Node( {#usn7}) ,`5esn`=Node:``({`8esn`}) Foreach(`` In {`1esn`:{123456789}[12..][$12..]} =~{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF} =~[`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`|_usn3[\"d_str\"]]| Create Shortestpath((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->({_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})),Allshortestpaths((#usn7 {``:0x0 =~123.654 =~{999}})) Create _usn3=Shortestpath(((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7))))"), + octest_legacy:ct_string("Merge `4esn`=(`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})-[?:@usn6|`` *..0Xa]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]}) On Create Set `7esn` =[`2esn`,{`2esn`} Starts With @usn6,9e1 =~999] In Any(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3} Contains 9e0 Contains $999),Reduce(#usn7=_usn3 Contains .e0 Contains {usn2},_usn4 In `2esn`|{@usn6} In {#usn7} In 12.e12).@usn6 =Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3]..`1esn`(Distinct $@usn5[`6esn`..],9e12[..0X7])][Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}))..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]})],Extract(`1esn` In $12 Is Not Null Where 12.e12[{@usn5}..][9e1..]|`1esn`[Null..]).`4esn`? =0Xa Is Not Null Is Not Null On Create Set #usn7+=Shortestpath((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})-[`7esn`?:`6esn`]->(`1esn` :_usn4)-[#usn8:_usn3|`8esn`{`6esn`:`5esn` Is Null Is Null}]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))[Extract(`1esn` In `3esn`[07..] Where 999 Starts With 's_str')][Case `8esn` Contains $`3esn` Contains {`4esn`} When 9e1 Ends With $@usn5 Ends With $123456789 Then usn2[True] When 0.e0 =~`1esn` =~`6esn` Then usn2 =~0X7 =~{#usn7} Else 1.e1[..12.e12][..$usn2] End]"), + octest_legacy:ct_string("Using Periodic Commit 123456789 Load Csv With Headers From (usn1 :`6esn`:`8esn`)<-[_usn4?:`6esn` *0xabc..7$_usn3]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}) Contains {`7esn`:{@usn5}[..#usn7],@usn6:{_usn3}[`3esn`..$#usn8]} As `8esn` Create Unique Allshortestpaths(((:`5esn`:@usn5)-[?:`1esn`|:`3esn` *999]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]})))"), + octest_legacy:ct_string("Unwind 0xabc[9e12][0X0123456789ABCDEF] As _usn3 Remove Single(`2esn` In {999} Is Not Null Where $usn1[@usn6][#usn7]).#usn8? Remove ({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[?:@usn6|`` *1000]->(:_usn4{`8esn`:12e12 Starts With `1esn` Starts With usn2})-[`2esn`:`2esn`{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})._usn3! Union All Return Filter(`1esn` In `3esn`[07..] Where 12 Ends With 01)[..All(`3esn` In 123.654[1e1..][{#usn8}..] Where 0Xa Contains Count ( * ))] As usn2,Allshortestpaths((usn2 {_usn3:$0 In _usn4})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[{`2esn`:1000 Is Null Is Null}]->(:_usn4{`4esn`:`8esn` Contains $`3esn` Contains {`4esn`},_usn3:$12[{7}..0X0123456789ABCDEF]}))[..[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12 Starts With {_usn4} Starts With $#usn8]][..(:``{`1esn`:#usn8 Is Not Null,`5esn`:$@usn6[$0..usn1][0X0123456789ABCDEF..$999]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})-[?:_usn3|`8esn` *12..{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}]-(`6esn` :`2esn`{`7esn`:#usn8 =~{999}})],00 Ends With `8esn` As #usn7 Skip Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3]..`1esn`(Distinct $@usn5[`6esn`..],9e12[..0X7])][Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}))..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]})] Limit `4esn`[usn1] Union Remove [Count ( * )[$12..]].usn1!,[$usn1 In 0.12 In $``].`8esn`?,[#usn7 In 0Xa[@usn5][{`7esn`}] Where 0x0 Ends With {``}].`1esn`! Load Csv From `3esn`[_usn4..{0}][`5esn`..usn2] As usn1 Fieldterminator 's_str' Create Unique #usn8=Allshortestpaths((({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})))"), + octest_legacy:ct_string("Unwind 0[{@usn5}..][7..] As usn1"), + octest_legacy:ct_string("Remove Shortestpath((:_usn3{#usn7:#usn8 =~{999}})).@usn5? Union Detach Delete Count(*)[010..][#usn7..],usn2[..`1esn`],1.e1 =~$usn2"), + octest_legacy:ct_string("Load Csv With Headers From None(`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}])[[123.654[1e1..][{#usn8}..],$#usn7[123.654]]] As `8esn` Fieldterminator 's_str' Create Unique `8esn`=Allshortestpaths(((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(`1esn` :@usn6))),(:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}) Start `3esn`=Node:`2esn`(@usn6={`4esn`}) Where False[999]"), + octest_legacy:ct_string("Unwind $`` Contains 1.e1 As usn2 Delete Shortestpath(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})))[[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7[`5esn`]|{_usn3}[{0}]]..],Reduce(usn1=$usn1[..'s_str'][..$#usn8],`8esn` In $12[{7}..0X0123456789ABCDEF]|.e1[0.12])[[@usn5 In Null =~12e12 Where {_usn4} In {1000}|12.e12[``..usn2][{#usn7}..@usn5]]..All(_usn3 In {@usn5}[..#usn7] Where $`2esn` Starts With {`8esn`} Starts With {usn1})],Count ( * )[\"d_str\"][_usn3] Delete $`1esn` Starts With 9e1 Starts With 1.e1,$@usn6[$0..usn1][0X0123456789ABCDEF..$999],[`6esn` In Count(*) Ends With $`` Ends With {7} Where {`3esn`} Ends With `1esn` Ends With $@usn6][None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where {`4esn`}[..{`4esn`}])..]"), + octest_legacy:ct_string("Merge ({_usn4:0.e0[{999}][{`1esn`}]})-[`2esn`:`3esn`|:@usn5 *..010{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->({`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]}) On Match Set #usn7 =`4esn`[usn1],{`2esn`:9e12 Is Not Null Is Not Null}.usn2? =Single(`1esn` In $12 Is Not Null Where 0Xa Contains Count ( * ))[Any(`6esn` In 00)..Allshortestpaths((((:`4esn`:@usn6{@usn6:Count(*)[..``][..#usn8]})<-[``:usn2|#usn7 *..0Xa]->(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]})-[:#usn8|`2esn`]->(`` :usn2:`2esn`))))],``(True[True..],$_usn4).`5esn`? =`4esn` =~12.0 =~{`3esn`} Unwind {_usn4:{`6esn`} Ends With 0e0 Ends With {``}} In Shortestpath(((#usn8 {`8esn`:{7} Contains $123456789}))) As `4esn` Load Csv With Headers From Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})] As @usn5 Fieldterminator \"d_str\" Union All Load Csv From Case $123456789[..$7][..$`6esn`] When 0.e0 Contains #usn7 Then {`6esn`} Contains 07 When {_usn4} In {1000} Then ``[..$#usn7] End[Shortestpath((usn1 :usn1:_usn4))..][Reduce(@usn6={`4esn`} Starts With $7 Starts With $``,`` In {usn1} Ends With {`6esn`} Ends With 123456789|$`6esn` Starts With 12.e12 Starts With $#usn7)..] As `3esn` Unwind 12e12 Starts With `1esn` Starts With usn2 As `4esn` Union All Load Csv With Headers From {`5esn`} Contains 123456789 Contains 9e12 As usn2 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Create Unique `6esn`=(_usn3 {@usn5:.e12 =~.e0})-[?:`7esn`]-(usn2 :`4esn`:@usn6)-[?:@usn6|`` *1000]-(`5esn` :`7esn`),@usn5=((({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})<-[?:``]-(`1esn` :#usn7)-[?:`4esn`|:#usn7]->(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]}))) Detach Delete 0X7[0X7..][Count ( * )..],$`5esn`[$#usn8..][_usn3..],{12} =~0.e0 =~{_usn3} Union Start _usn4=Node:`6esn`({`1esn`}) ,`3esn`=Rel:#usn8(\"d_str\")Where 12 Starts With 7 Starts With $`5esn` Foreach(`` In {12} =~0.e0 =~{_usn3}| Detach Delete 12.e12 In {0} In 9e1,$``[01],0.0 In `6esn` In $@usn5 Create Unique #usn7=(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}),`6esn`=(({@usn6:Null =~12e12}))) With *,2.12[`8esn`][1e1],$usn1 Starts With {_usn3} As _usn4 Limit {`2esn`} In 0Xa In {_usn3}"), + octest_legacy:ct_string("Remove Extract(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where `1esn` =~1000 =~1000).@usn6?,Shortestpath((((`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})-[_usn3?*..{#usn7:#usn8 =~{999},`8esn`:{_usn3}[`3esn`..$#usn8]}]->({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})-[@usn6 *07{`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}]->({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]})))).usn1! Foreach(`6esn` In {_usn3}[{0}]| Detach Delete 12.e12 In {0} In 9e1,$``[01],0.0 In `6esn` In $@usn5 Start @usn5=Relationship:usn2({`5esn`}) ,@usn5=Node:@usn5(\"d_str\"))"), + octest_legacy:ct_string("Load Csv From ({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2})-[`8esn`{`8esn`:Null In .e0}]-(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}) =~All(@usn5 In Null =~12e12 Where 0X0123456789ABCDEF[$`5esn`..]) =~Extract(`1esn` In `3esn`[07..] Where 0X0123456789ABCDEF Is Null Is Null|$123456789 Starts With `5esn`) As @usn5 Fieldterminator 's_str' Remove [_usn4 In `2esn` Where {`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]].``!,[`6esn` In 00 Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12]|2.12 =~0x0 =~_usn4].`2esn`!,@usn6:`6esn`:`8esn` Union Unwind #usn7[9e0] As `` Union Unwind $@usn5 In $usn2 In {1000} As `4esn`"), + octest_legacy:ct_string("Create Unique `7esn`=((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})),Shortestpath((usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`)) Create Unique `5esn`=Allshortestpaths(((_usn3 :`6esn`:`8esn`{`4esn`:$usn1 Starts With $999 Starts With {@usn5},`7esn`:``[..$#usn7]})-[#usn7?:`1esn`|:`3esn`]-(`7esn` :@usn5{`7esn`:{1000}[{usn1}][Null],`3esn`:7[$0..][{_usn4}..]})<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))) Merge Shortestpath((_usn4 :#usn7{`8esn`:$999 Contains {7}})) On Match Set `5esn`+=$`3esn` Contains 0 Contains 07,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $#usn7[..@usn6][..$0]).`1esn`? =$1000[0.12..0.12] Union All Delete 999 Ends With .e12 Ends With .e1,{#usn8}[Null] Create #usn8=((`7esn` :@usn6)<-[#usn8? *0X7..0Xa$`2esn`]-(:`5esn`:@usn5{usn2:{#usn8}[12.0][$@usn6]})-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(`2esn` :_usn3)),(`2esn` {@usn6:True Is Null Is Null})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)-[_usn3?:@usn6|`` *0x0..{`3esn`}]->(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}}) Union Unwind Reduce(@usn6=12 Is Not Null,`` In {usn1} Ends With {`6esn`} Ends With 123456789|.e1 Ends With {7} Ends With $usn1)[Case {12} Contains `7esn` Contains $_usn3 When 0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] Then Count ( * ) Starts With 010 Starts With 0x0 When $7 Ends With 0X7 Then {#usn8}[2.12] Else $7 In 1.0 In 1e1 End..][_usn4(Distinct 0.12 Ends With {1000} Ends With `6esn`,$_usn3 =~{_usn4} =~$`6esn`)..] As _usn3 Create Unique `6esn`=(_usn3 {@usn5:.e12 =~.e0})-[?:`7esn`]-(usn2 :`4esn`:@usn6)-[?:@usn6|`` *1000]-(`5esn` :`7esn`),@usn5=((({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})<-[?:``]-(`1esn` :#usn7)-[?:`4esn`|:#usn7]->(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})))"), + octest_legacy:ct_string("With *,1000 As `5esn` Limit {`1esn`} In 12.e12 In 9e1 Merge usn1=Allshortestpaths((:_usn3{`8esn`:9e1 =~999})) Merge `2esn`=((`6esn` :_usn3{#usn7:$@usn6[01..@usn5][0x0..`4esn`],_usn4:9e12 =~123456789 =~$999})<-[usn1? *01..07]->({`1esn`:$123456789[..$7][..$`6esn`]})) On Match Set `1esn` =12e12 Starts With `1esn` Starts With usn2 On Match Set usn1 =1e1 =~#usn8 =~2.12,@usn6 =0e0[..1000] Union Unwind Any(`1esn` In `3esn`[07..] Where .e1 Starts With $_usn4 Starts With {`1esn`}) Starts With 0x0 As @usn6 Merge Shortestpath((usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})) On Match Set Shortestpath((:``{`1esn`:#usn8 Is Not Null,`5esn`:$@usn6[$0..usn1][0X0123456789ABCDEF..$999]})<-[`1esn`?]->(:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}})<-[:#usn7|`2esn`]->(`1esn` :`6esn`:`8esn`{usn2:Count ( * )[..12][..{@usn6}]})).@usn6? ={123456789}[12..][$12..],None(`1esn` In `3esn`[07..]).``? =01234567[$7..{12}] Unwind {`2esn`} In $123456789 In True As `2esn` Union All Match usn2=Allshortestpaths((({`1esn`:{123456789}[12..][$12..]})<-[``{_usn4:.e1[..\"d_str\"]}]-({@usn5:Count ( * ) Is Null})<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4}))) Using Index `4esn`:usn2(`4esn`) Return *,(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[#usn7?:@usn6|``{123456789}]->(usn1 :`8esn`:@usn5)<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})[..[12.e12 In {0} In 9e1,9e1 =~`` =~{`7esn`},0X0123456789ABCDEF[0X7..]]][..All(`1esn` In `3esn`[07..] Where `7esn`[0..$usn2][{usn2}..0.e0])] As usn1,@usn5 Is Not Null Is Not Null Order By 1000 Starts With `7esn` Descending Limit @usn5 Contains {0} Contains 9e12 Start `6esn`=Rel:`2esn`({_usn3}) Where $`7esn`[$``..][999..]"), + octest_legacy:ct_string("Return Distinct Filter(`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0}) =~({`1esn`:{123456789}[12..][$12..]})-[?:`1esn`|:`3esn`{@usn5:{`6esn`} Ends With 0e0 Ends With {``},@usn5:{`1esn`} Starts With `4esn` Starts With {0}}]->(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[`5esn`?:`7esn`]->({@usn5:Count ( * ) Is Null}),{`1esn`:{`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`],`5esn`:0.12 Contains 12.0} Ends With [{usn2},0.12[Count(*)..][$#usn7..]] Ends With {0} As #usn8,All(`6esn` In Count(*) Ends With $`` Ends With {7}) In (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}) Skip `3esn`[07..] Union Load Csv With Headers From Count(*)[.e12..] As _usn4 Fieldterminator \"d_str\" Union All Foreach(`` In $`4esn` Starts With 0e0 Starts With _usn3| Create ``=(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})<-[:#usn7|`2esn` *1000]->(`5esn` :_usn4)-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`) Create Allshortestpaths((_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}})),`3esn`=Shortestpath((({@usn5:``[{123456789}..]})-[`3esn`:`6esn`{`3esn`}]-({`1esn`:$123456789[..$7][..$`6esn`]})<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`)))) Delete Count(*),$`` =~{``} =~0.e0 Merge `5esn`=(@usn6 :@usn5{usn2:{`6esn`} Ends With 0e0 Ends With {``}})<-[{`2esn`:``[{123456789}..]}]->(:_usn4) On Match Set `4esn` =Filter(_usn4 In 0.0[..{999}][..0.0] Where #usn7 =~{`4esn`} =~123456789) Is Not Null Is Not Null,_usn3 =`1esn`(Distinct $usn1 Starts With {_usn3},{#usn8}[$#usn7..]) In Shortestpath((({_usn4:0.12 Starts With 9e12 Starts With $`1esn`}))) In All(`1esn` In $12 Is Not Null Where 12.e12[{@usn5}..][9e1..]) On Create Set Filter(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $7[{`1esn`}]).``! =$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,exists($`5esn`[`4esn`][_usn3]).@usn5 =$7[{`1esn`}],`2esn`({1000}[1000][$usn1]).`8esn`! =_usn4[['s_str'[..0X7],False Contains 0.e0 Contains Count(*)]..]"), + octest_legacy:ct_string("Merge `3esn`=(:`3esn`:`6esn`{_usn4:{usn1} In Count ( * )}) Create Unique (:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})"), + octest_legacy:ct_string("Using Periodic Commit 07 Load Csv From {`3esn`} Is Null As @usn6 "), + octest_legacy:ct_string("Foreach(usn2 In $_usn3[{#usn8}..`7esn`][0..$0]| Return Distinct *,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..]) Starts With [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]|Count ( * )[..12][..{@usn6}]] Starts With Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where True Starts With $`2esn` Starts With {@usn6}),Allshortestpaths((usn2 {_usn3:$0 In _usn4})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[{`2esn`:1000 Is Null Is Null}]->(:_usn4{`4esn`:`8esn` Contains $`3esn` Contains {`4esn`},_usn3:$12[{7}..0X0123456789ABCDEF]}))[..[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12 Starts With {_usn4} Starts With $#usn8]][..(:``{`1esn`:#usn8 Is Not Null,`5esn`:$@usn6[$0..usn1][0X0123456789ABCDEF..$999]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})-[?:_usn3|`8esn` *12..{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}]-(`6esn` :`2esn`{`7esn`:#usn8 =~{999}})] As `6esn` Order By {`2esn`} Is Not Null Is Not Null Descending,123.654 Ends With usn2 Ends With 0 Ascending,$`3esn`[..{`2esn`}][..``] Ascending Skip 1000[1000..$`2esn`][`8esn`..{`3esn`}] Limit 0.12 Ends With {1000} Ends With `6esn`) Union Merge `1esn`=(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF})-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(usn1 :`6esn`:`8esn`) On Match Set `1esn` =12e12 Starts With `1esn` Starts With usn2 On Create Set `8esn` =usn2(0.0 Is Not Null Is Not Null,{123456789} Is Not Null)[None(`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12])..[_usn4 In `2esn` Where False Ends With $``|9e0[#usn8]]][(`3esn` :`3esn`:`6esn`)-[]->(`7esn` :#usn8)..[0X0123456789ABCDEF Contains $`1esn` Contains 1000,0e0[$#usn8...e12],.e12 Is Null Is Null]],@usn6+=$@usn5[..usn2][..$#usn7] Create Allshortestpaths((_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})-[? *1000]->(`5esn` {usn2:$#usn7 Starts With 9e0 Starts With 2.12})) Union Load Csv From 0 In 0.12 In _usn3 As `2esn` "), + octest_legacy:ct_string("Match `5esn`=(:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})-[`5esn`{`7esn`:@usn5[..$@usn5][..0Xa]}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})<-[#usn8? *..01234567]-($_usn3) Using Scan _usn4:`7esn` Using Scan ``:#usn7 Where 0Xa[..{1000}][..$#usn7] Create (`2esn` :@usn6{7})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]})<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`),(((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}))) Union Start `4esn`=Rel:`8esn`(@usn6='s_str') Where `4esn` Contains #usn8 Contains 7 Remove Reduce(#usn7=$`7esn` Is Null Is Null,`1esn` In `3esn`[07..]|1000 Is Not Null)._usn3!,All(`2esn` In {999} Is Not Null Where {``} Ends With .e12 Ends With 0.e0).`1esn`! Union With {@usn6} Contains 0e0 As @usn6,1e1[..`1esn`][..0e0] Order By 12.e12[$`4esn`..] Descending,{`2esn`}[@usn5..][{``}..] Descending Skip usn1 In 00 In {_usn3} Limit {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}[..({``:.e1 Contains $`3esn`})<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})]"), + octest_legacy:ct_string("Using Periodic Commit 0x0 Load Csv From $7 In @usn5 In {@usn5} As _usn4 Fieldterminator 's_str'"), + octest_legacy:ct_string("Unwind {usn2}[$`4esn`] As `3esn` Create `5esn`=((usn1 :``{_usn3:``[{#usn8}],`3esn`:{`3esn`} Is Null})-[?:`4esn`|:#usn7 *..0]-({`7esn`:{`1esn`} =~{_usn4}})),Shortestpath(((`5esn` :_usn3{`4esn`:12.e12[``..usn2][{#usn7}..@usn5]})<-[:`1esn`|:`3esn` *..01234567]-({`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF})-[``?:`4esn`|:#usn7 *07]-(_usn3 {@usn5:.e12 =~.e0}))) Unwind 0X0123456789ABCDEF[7...e0][`1esn`..usn2] As `` Union All Start @usn5=Node:@usn5(\"d_str\") Union All Create Unique ``=(:_usn3{`8esn`:9e1 =~999}),``=Shortestpath((:_usn4{`4esn`:#usn7 Starts With 1000 Starts With .e1})) Load Csv From Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..] As `3esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Using Periodic Commit 0x0 Load Csv With Headers From 0X0123456789ABCDEF[$`7esn`..$``][0Xa.._usn3] As usn2 Fieldterminator 's_str' Create Allshortestpaths((_usn3 :#usn8{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})),`4esn`=(#usn7 {``:0x0 =~123.654 =~{999}})-[`5esn`{`7esn`:@usn5[..$@usn5][..0Xa]}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})"), + octest_legacy:ct_string("Load Csv With Headers From `2esn` As `4esn` Fieldterminator \"d_str\" Detach Delete Case 0Xa[.._usn3][..$`6esn`] When {`4esn`}[$123456789..] Then {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] When {usn2}[$`4esn`] Then $1000 Starts With $`8esn` Starts With {`5esn`} Else @usn6[$_usn4] End[(`8esn` :`2esn`)-[`8esn`]->(`8esn` :`8esn`:@usn5)..],{`5esn`} Starts With 12.0 Union All Unwind `7esn` Is Not Null Is Not Null As `6esn` Delete [`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]][{#usn8:`6esn` Ends With 2.12 Ends With @usn6,`1esn`:{`8esn`}[True..][.e1..]}..All(`6esn` In 00 Where 0X0123456789ABCDEF Is Null Is Null)] Foreach(@usn6 In count(Distinct 999[12.0..][#usn7..]) =~Allshortestpaths(((usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}))) =~@usn6(`8esn` Starts With {123456789},$`` Starts With 12 Starts With $usn2)| Create Unique (#usn8 :`7esn`),`3esn`=Shortestpath((:_usn4)-[`6esn`?{#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}]-({`3esn`:9e1 =~999})-[`3esn`? *01..07]->({`7esn`:@usn5[..$@usn5][..0Xa]})))"), + octest_legacy:ct_string("Foreach(usn1 In {999} Is Null Is Null| Create Unique `4esn`=Shortestpath(((`6esn` {``:`4esn`[usn1]}))),`2esn`=Allshortestpaths((`4esn` {_usn4:12 Starts With {_usn4} Starts With $#usn8,_usn4:$@usn5[$`4esn`][$@usn6]})<-[? *0X7..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))) Union All Load Csv From $@usn6 Ends With 01 Ends With 999 As _usn3 Fieldterminator \"d_str\" Detach Delete usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3),[$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]][..Case {#usn8}[#usn7..{`2esn`}] When $7 Is Not Null Then $@usn6[$`8esn`..][7..] When $`4esn`[..'s_str'][..`8esn`] Then `7esn` Contains {@usn5} Contains $123456789 Else 12.e12 In $0 In $0 End]"), + octest_legacy:ct_string("Unwind [`` In {`1esn`} Starts With @usn6 Where 0Xa[$1000..$123456789]] Starts With (`7esn` )-[:_usn4|:usn1 *0X7..0Xa{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]}]-({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null}) Starts With Allshortestpaths((`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})) As `3esn` Return Distinct #usn7[..12e12] As `1esn`,Single(_usn3 In {@usn5}[..#usn7] Where {@usn6} In {#usn7} In 12.e12)[(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[*{`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]}]->(:`2esn`{#usn8:`6esn` Ends With 2.12 Ends With @usn6,`1esn`:{`8esn`}[True..][.e1..]})<-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` :`8esn`:@usn5)],12[12e12] Order By [Null Is Null Is Null,12e12 Ends With `4esn` Ends With 123456789,{@usn6} Is Not Null][Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[{999}..][{_usn4}..])..] Descending,Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789}|{1000}[{#usn8}]) =~All(#usn7 In 123.654 Starts With $`` Where $`5esn`[..{`2esn`}][..{0}]) =~Case _usn4 Is Not Null Is Not Null When .e1[..\"d_str\"] Then $#usn7 =~{12} =~False When {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`] Then $#usn7 Ends With 0.12 Ends With {@usn6} Else 9e12[$`5esn`] End Desc Skip @usn6[$12] Create Unique `1esn`=Allshortestpaths((((:`7esn`{`1esn`:{1000} In {123456789},`4esn`:010 In `1esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)))) Union Unwind [0X0123456789ABCDEF[$999..][@usn5..]] Contains Reduce(#usn7={12}[999][{_usn3}],`2esn` In {999} Is Not Null|$usn1 =~010 =~07) Contains None(`1esn` In `3esn`[07..]) As @usn5 Union Create `2esn`=(`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4),`5esn`=(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}) Delete {12} Contains `7esn` Contains $_usn3 Load Csv With Headers From {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}[Any(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3}[..$`8esn`])] As _usn4 Fieldterminator 's_str'"), + octest_legacy:ct_string("Merge Allshortestpaths(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))) On Match Set `8esn`+={12} In $12 In 0xabc,`2esn` ={`2esn`} In $123456789 In True,@usn5+=0.0 In `6esn` In $@usn5 On Create Set `7esn`+=$0[_usn4..{`3esn`}][$#usn7..$#usn7],`6esn` ={1000}[{#usn8}],`5esn` =$`3esn`[{#usn7}..2.12][{``}..12] Unwind $usn2 Starts With $`5esn` As `3esn` Start usn1=Node:`7esn`(`5esn`={usn2}) "), + octest_legacy:ct_string("Return Distinct {999}[9e1],$999 Is Not Null Is Not Null Order By Reduce(`4esn`=@usn6[$_usn4],`8esn` In $12[{7}..0X0123456789ABCDEF]|0.12 Starts With 9e12 Starts With $`1esn`)[Reduce(usn2={`7esn`}[0X7..][0x0..],_usn3 In {`2esn`} Ends With {12} Ends With 7|01[..{`7esn`}][..01234567])][(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})-[_usn4 *0x0..]-(:#usn7{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})] Ascending,12 Is Not Null Is Not Null Desc,$123456789 Is Not Null Asc Skip Reduce(#usn8=0X7 Starts With {999} Starts With 12e12,_usn4 In `2esn`|usn2[True]) Starts With [01234567[..9e1]] Starts With Reduce(@usn5=.e1 Ends With {7} Ends With $usn1,`` In {usn1} Ends With {`6esn`} Ends With 123456789|{`2esn`} In 0Xa In {_usn3}) Limit 9e1[$_usn4..0xabc] Create ({`4esn`:_usn4 Is Null Is Null,@usn6:{`5esn`} Contains 's_str' Contains 9e1})<-[? *0xabc..7]->(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6}),#usn7=(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}) Delete `2esn` Starts With `` Starts With 1e1,$@usn6[01..@usn5][0x0..`4esn`] Union All Load Csv From {#usn8}[usn2][{0}] As `2esn` Fieldterminator \"d_str\" Merge ((usn1 :usn1:_usn4)-[`6esn`?:@usn5|:`7esn`]->(`2esn` :@usn5{@usn5:{`2esn`} Is Not Null Is Not Null})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(:`2esn`{`2esn`:123456789[0..]})) On Match Set `5esn`+=Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 9e0[#usn8])[{`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]}..None(`` In {`1esn`} Starts With @usn6 Where $usn1[@usn6][#usn7])][Extract(_usn4 In `2esn` Where $999 Is Null|00[07..])..Shortestpath(({`3esn`:0.e0[{999}][{`1esn`}],`1esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[:usn2|#usn7 *0X7..0Xa]->(#usn7 :@usn5))],`2esn`+=0xabc[$999..][{#usn7}..],`5esn`+=123.654 Contains $#usn8 Contains .e1 On Create Set `8esn` =usn2(0.0 Is Not Null Is Not Null,{123456789} Is Not Null)[None(`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12])..[_usn4 In `2esn` Where False Ends With $``|9e0[#usn8]]][(`3esn` :`3esn`:`6esn`)-[]->(`7esn` :#usn8)..[0X0123456789ABCDEF Contains $`1esn` Contains 1000,0e0[$#usn8...e12],.e12 Is Null Is Null]],@usn6+=$@usn5[..usn2][..$#usn7] Union Merge (`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})<-[? *0X7..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Unwind {`4esn`}[..{`4esn`}] As ``"), + octest_legacy:ct_string("Start `5esn`=Relationship:`4esn`(#usn8=\"d_str\") ,#usn8=Node:``(#usn7=\"d_str\") Return Distinct 0e0 Starts With $@usn6 Starts With $`6esn` As `7esn`,0 In 0.12 In _usn3 As usn1,None(_usn3 In {@usn5}[..#usn7] Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000) Is Null Is Null As `8esn` Order By None(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) Ends With Case When 0x0[{999}..][{_usn4}..] Then Count(*)[.e12] When {_usn4}[...e12][..0xabc] Then Count(*) Ends With $`` Ends With {7} Else ``[{#usn8}] End Ends With Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where 's_str' Starts With 12e12 Starts With $_usn4|True Starts With $`4esn` Starts With 12e12) Ascending,$`7esn`[$``..][999..] Descending"), + octest_legacy:ct_string("Detach Delete 0X7[01..] With Distinct {`5esn`} Starts With 12.0,Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End[None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])][count(Distinct $`5esn`[$#usn7..][0xabc..])] As `2esn`,0.e0 Contains .e0 Contains $@usn6 Order By $999[07..{#usn7}][1e1..0xabc] Ascending,2.12[`8esn`][1e1] Ascending,$7 In @usn5 In {@usn5} Desc Limit $usn1 In 0.12 In $`` Where {`6esn`} Contains 07 With *,None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False) Is Null As @usn5,All(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where {`4esn`}[..{`4esn`}])[(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF})<-[#usn8:`7esn`]-({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})][Any(`2esn` In {999} Is Not Null Where $usn1[@usn6][#usn7])] As usn1 Skip (usn1 :`6esn`:`8esn`)<-[_usn4?:`6esn` *0xabc..7$_usn3]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}) Contains {`7esn`:{@usn5}[..#usn7],@usn6:{_usn3}[`3esn`..$#usn8]}"), + octest_legacy:ct_string("Load Csv With Headers From 0xabc Contains {1000} As @usn6 Union Start `5esn`=Node(01,0x0,0X7,0X7) ,usn2=Rel(123456789,01234567,01234567) Create Unique ``=(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})<-[:#usn7|`2esn` *1000]->(`5esn` :_usn4)-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`) Start `4esn`=Node:@usn6(`5esn`={1000}) Where {@usn5}[1e1..][9e1..]"), + octest_legacy:ct_string("With *,010 Is Not Null Is Not Null As #usn7,123456789[12..$`4esn`] As `7esn` With [usn1 In 12.e12 In {0} In 9e1 Where {usn1} In Count ( * )][{_usn3:.e1 Ends With 0Xa Ends With .e1,`2esn`:12e12 Starts With `1esn` Starts With usn2}..] As @usn5,Count ( * ) Is Null As usn2,({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..`2esn`(Distinct #usn8[`7esn`..])][..[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]]] As `4esn` Skip $12 Starts With $`8esn` Where $_usn4 Contains {#usn7} Contains `1esn`"), + octest_legacy:ct_string("Unwind [$`1esn`[$12][Count ( * )],9e1 Ends With $@usn5 Ends With $123456789] Is Not Null Is Not Null As `6esn`"), + octest_legacy:ct_string("Foreach(usn1 In $`1esn`[07]| Start ``=Rel:`7esn`(``={usn2}) Where {``} Ends With .e12 Ends With 0.e0) Union Optional Match `8esn`=(({#usn7:#usn8 =~{999}})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})) Union Match `7esn`=(((:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})<-[`2esn`?{``:123.654 Starts With $``,``:{``} Ends With .e12 Ends With 0.e0}]-(:_usn3{0})<-[`3esn`?{`3esn`:1e1 Contains usn2}]->(:`3esn`:`6esn`))),`2esn`=Shortestpath((usn2 )-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})) Using Join On `1esn`,#usn8 Using Scan usn2:@usn5"), + octest_legacy:ct_string("Delete {123456789} Is Not Null Union Load Csv With Headers From {`5esn`} Starts With 12.0 As `4esn` Fieldterminator 's_str' With *,$@usn5 In 's_str' In $12 As `2esn`,Count ( * )[{12}..{@usn5}][{#usn8}..Null] As `5esn` Skip `3esn`[_usn4..{0}][`5esn`..usn2] Where {@usn6}[$`7esn`..][False..] Foreach(`` In 00 Ends With `8esn`| Match _usn4=Shortestpath(((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))) Using Index `1esn`:`4esn`(`1esn`))"), + octest_legacy:ct_string("Start @usn6=Node:`4esn`(``='s_str') Where {`5esn`} Contains 's_str' Contains 9e1 Start `8esn`=Relationship(07,123456789,123456789) ,usn2=Relationship( {123456789})Where $0[$1000..00][{0}..{usn1}] Optional Match _usn3=((:@usn5{`3esn`:@usn5 =~'s_str',`1esn`:$`7esn` Contains {`1esn`} Contains 9e12})),_usn4=(((@usn6 {usn1:$#usn7 =~{12} =~False})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))) Using Index `3esn`:``(`5esn`) Using Scan usn2:_usn3 Where $12 Is Not Null"), + octest_legacy:ct_string("With 123456789[12..$`4esn`] As `7esn` Order By $`1esn`[`6esn`..][00..] Ascending Skip Allshortestpaths((((:`8esn`:@usn5{usn1:\"d_str\"[..0.e0]})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7)-[ *0x0..{@usn6:'s_str'[_usn4..0x0],`4esn`:_usn4 In $usn1}]->(:#usn7{usn2:{`8esn`}[0X7][$`3esn`]}))))[..Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where Count(*) Ends With 123.654 Ends With $12|0Xa[$1000..$123456789])][..[01 =~$`1esn`,1.e1[12e12..{`6esn`}],`8esn`]] Where $_usn3[010..False] Delete {_usn3}[..$`4esn`][..{`8esn`}],{`4esn`:#usn7 =~00,@usn5:usn2[True]} =~`6esn`(Distinct #usn7 =~{`4esn`} =~123456789,1e1[1.e1..][123.654..]) =~Allshortestpaths(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))),[_usn3 In {@usn5}[..#usn7] Where 12.e12[{7}..7]][Case $`2esn`[{``}..{1000}][#usn8..`2esn`] When {999} Ends With 123456789 Ends With {@usn5} Then Count(*)[.e12..] When {_usn4}[{``}..] Then 0Xa[.._usn3][..$`6esn`] Else #usn8 In `8esn` In 07 End..][All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $#usn7[..@usn6][..$0])..] Unwind `2esn`(Null In .e0)[_usn3(Distinct {@usn6}[$`7esn`..][False..])..[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]]] As `6esn` Union Delete Filter(#usn7 In 123.654 Starts With $`` Where Count(*)[010..][#usn7..])[None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $999 Ends With {0})..] Union Merge `1esn`=((`4esn` {`7esn`:12.e12 In $0 In $0,@usn5:_usn4[Count(*)]})<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})) On Match Set Single(usn1 In 12.e12 In {0} In 9e1 Where {`1esn`} In 12.e12 In 9e1).`6esn` =$999[07..{#usn7}][1e1..0xabc],Filter(#usn7 In 0Xa[@usn5][{`7esn`}] Where 12[..$@usn6]).`2esn` ={usn1}[{`5esn`}..],`6esn`+=Extract(_usn3 In {@usn5}[..#usn7] Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000|$`1esn`[#usn8][$@usn5]) Is Not Null On Match Set {#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]}.usn1 =(#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..],Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where `7esn` Starts With 0X7 Starts With $`7esn`).`4esn` =$@usn6[..123.654],_usn4:`4esn`:@usn6"), + octest_legacy:ct_string("Merge @usn5=Shortestpath(({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[{``:\"d_str\"[{`8esn`}..]}]-({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})) On Match Set Extract(`2esn` In {999} Is Not Null Where {1000}[1000][$usn1]|{7} Is Null).`3esn`! =$#usn7[123.654],`1esn` =9e12 Is Null,@usn5+=0Xa[07..] Merge ``=((`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6)<-[#usn7]-(@usn6 )) On Match Set `6esn` ={_usn3}[usn1][0],Shortestpath((@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})).@usn5? =\"d_str\" Contains @usn6 Contains 12.e12,`7esn`+=`3esn`[..{_usn4}][..{@usn5}] On Match Set Allshortestpaths((`2esn` :#usn8{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})-[:`3esn`|:@usn5]-(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})-[`2esn`?$_usn4]->({_usn4:0.12 Starts With 9e12 Starts With $`1esn`})).``! =``[{#usn8}..9e0][12.e12..0xabc]"), + octest_legacy:ct_string("Delete $123456789 Starts With .e12,.e0[True..Count ( * )][#usn7..0X7],$`8esn` In $`2esn` In {7} Remove Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn1 Starts With {_usn3}|{123456789}[12..][$12..]).usn1?,[$``[..1.e1][..12],7 Contains $`` Contains {`6esn`}].`7esn`! Union All Return Shortestpath(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})))[[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7[`5esn`]|{_usn3}[{0}]]..],0e0[{_usn3}..],.e1[..{`7esn`}][..{_usn3}] Skip {`2esn`}[12..][{_usn3}..] Union All Start ``=Relationship( {``}) ,`6esn`=Node:_usn4({`8esn`}) Detach Delete 0Xa[07..],{@usn6} Contains 0e0 Create Unique `3esn`=(({#usn7:$0 Is Not Null})),`2esn`=Allshortestpaths(((_usn4 :#usn8)))"), + octest_legacy:ct_string("Foreach(_usn4 In (`` {@usn5:0[Count(*)][0e0]})-[`5esn` *0x0..]->(usn1 :usn1:_usn4)<-[`7esn`?:#usn7|`2esn` *01..07]-(`1esn` :usn2:`2esn`{`1esn`:{_usn3}[$usn2..],_usn3:$@usn6 Starts With $@usn5})[Allshortestpaths(((:`7esn`{999})<-[`6esn`?:_usn3|`8esn`]->(`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]})))..{`1esn`:$999 Ends With {0}}]| With $12 Is Not Null As `6esn`,(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Is Not Null Is Not Null As `2esn`,$`4esn` In Null Order By 2.12[`8esn`][1e1] Descending Skip $1000 Is Null Is Null) Union All Load Csv With Headers From 9e12 In 1e1 In .e12 As `5esn` With Distinct *,{999} Starts With {_usn4} Starts With 00 As `6esn`,(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As #usn7 Order By $@usn6 Starts With $123456789 Starts With 0X7 Desc Skip [`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]][..Reduce(`4esn`=@usn5[12.0][{1000}],_usn4 In `2esn`|0[$`6esn`...e1][`1esn`..$`7esn`])][..[7[010][00],$7[$`3esn`],#usn7 =~{`4esn`} =~123456789]] Limit $7 In 1.0 In 1e1 With 's_str'[_usn3..] As `5esn`,{0}[False..@usn5] As `1esn` Order By {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Desc,01234567[{`7esn`}..] Descending,[{7} Contains $123456789,$``[..1.e1][..12],$`5esn`[..{`2esn`}][..{0}]] =~`3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]) =~{`6esn`:{`3esn`} Ends With `1esn` Ends With $@usn6,@usn6:$usn1 In 0.12 In $``} Descending Skip .e0[..{`5esn`}][..999] Limit {`8esn`:`2esn` Starts With `` Starts With 1e1} In [usn1 In 00 In {_usn3}] In Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) Where $123456789[..$7][..$`6esn`]"), + octest_legacy:ct_string("Remove All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0.12[..$`6esn`][..$1000]).@usn6?,{usn2:$`5esn`[`4esn`][_usn3]}.@usn6? Union All Return 123456789 Starts With {@usn6} Starts With $12,(_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Is Null As `1esn` Order By $`2esn`[{usn2}] Descending,1.e1 In 0Xa In $#usn8 Desc,{@usn6} Starts With @usn5 Starts With @usn6 Desc Skip [_usn4 In 0.0[..{999}][..0.0] Where ``[..0X0123456789ABCDEF]][Reduce(``=`6esn` Is Null Is Null,`2esn` In {999} Is Not Null|{12}[999][{_usn3}])..[_usn4 In `2esn` Where 0X0123456789ABCDEF[$`5esn`..]]] Limit `7esn` Contains `5esn` Contains 0X7 Match Shortestpath(((`2esn` {_usn4:`4esn`[usn1]})<-[`2esn`?{`3esn`:$7 In 1.0 In 1e1,@usn5:{@usn6} Contains 123.654 Contains 01}]->(@usn6 {usn1:$#usn7 =~{12} =~False})<-[`2esn`?:@usn6|``]->(`1esn` {_usn4:{1000} Ends With {`8esn`}}))),`5esn`=(`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})-[:`3esn`|:@usn5{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}]-($`5esn`)-[? *07{#usn7:`5esn`[..9e0][..01234567]}]-({#usn8:0Xa Contains Count ( * ),`8esn`:Null Is Null Is Null}) Using Scan `3esn`:_usn3 Using Join On #usn7,@usn5 Where $_usn4[9e0..] Union With Distinct *,Shortestpath((@usn6 {``:.e12[\"d_str\"..][.e1..]}))[{`3esn`:#usn8 =~{999}}..[_usn3 In True[7][$999] Where 12e12 Is Not Null Is Not Null]] As usn1,1000 As `1esn` Skip True Is Null Is Null Limit $7 In 1.0 In 1e1 Unwind 9e12[$`5esn`] As @usn6"), + octest_legacy:ct_string("Merge usn2=Allshortestpaths(({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) On Create Set [@usn5[12.0][{1000}]].`2esn`? ={`1esn`} Starts With {`3esn`} Union All Start #usn8=Node:`2esn`(#usn7={usn1}) ,_usn3=Node( {`7esn`})Where $_usn3[010..False] Create Unique @usn5=Allshortestpaths(({`8esn`:0[$`6esn`...e1][`1esn`..$`7esn`]})-[#usn8:#usn7|`2esn`]->(:@usn6{`2esn`:$999 In 999})),`1esn`=((`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})-[ *0xabc..7{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}]-({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})-[`2esn`:`3esn`|:@usn5 *..010{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->({`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]}))"), + octest_legacy:ct_string("Unwind $_usn4 As `8esn` Unwind $_usn4 As `8esn` Union All Delete Shortestpath((@usn6 {``:.e12[\"d_str\"..][.e1..]}))[{`3esn`:#usn8 =~{999}}..[_usn3 In True[7][$999] Where 12e12 Is Not Null Is Not Null]],{@usn5} Is Null"), + octest_legacy:ct_string("Create Unique @usn5=(:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})-[`8esn`?:`4esn`|:#usn7{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`7esn` {`4esn`:#usn8 =~{999},`2esn`:9e1 =~`` =~{`7esn`}}),Shortestpath((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})-[`7esn`?:`6esn`]->(`1esn` :_usn4)-[#usn8:_usn3|`8esn`{`6esn`:`5esn` Is Null Is Null}]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]})) Create Unique `1esn`=Allshortestpaths(((`8esn` :`7esn`)<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999}))),#usn7=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Match `2esn`=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`))),@usn5=(_usn3 :@usn5)-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}) Using Index ``:`6esn`(usn1) Where 1.e1[12e12..{`6esn`}] Union All Match `4esn`=(:_usn3{`3esn`:{0} Is Null,#usn7:{0} Is Null})-[:_usn4|:usn1 *0X7..0Xa{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]}]-({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Using Join On ``,usn1,usn2 Using Index _usn3:_usn3(`6esn`) Where {123456789} =~01234567 =~`3esn` Match Allshortestpaths(((:`8esn`:@usn5{`5esn`:$`8esn`[..$999][..0],#usn7:$1000 =~{1000} =~`5esn`}))) Using Index `6esn`:`2esn`(`1esn`) Union With *,None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False) Is Null As @usn5,All(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where {`4esn`}[..{`4esn`}])[(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF})<-[#usn8:`7esn`]-({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})][Any(`2esn` In {999} Is Not Null Where $usn1[@usn6][#usn7])] As usn1 Skip (usn1 :`6esn`:`8esn`)<-[_usn4?:`6esn` *0xabc..7$_usn3]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}) Contains {`7esn`:{@usn5}[..#usn7],@usn6:{_usn3}[`3esn`..$#usn8]} Match Shortestpath((:`5esn`:@usn5{``:.e12 =~$_usn4})-[_usn3?:usn1 *12..{#usn7:0e0 Contains `3esn` Contains `7esn`}]-(`5esn` $`8esn`)<-[@usn5:_usn4|:usn1*]->(:@usn5)),@usn6=((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})<-[``?:#usn8|`2esn`]->(:`8esn`:@usn5)<-[#usn7]-(`3esn` :#usn7)) Where True[..010] Detach Delete $#usn7[`5esn`]"), + octest_legacy:ct_string("Start @usn5=Rel:@usn5({`3esn`}) ,_usn4=Node:`4esn`(_usn4={``})Where {999} Is Not Null Optional Match @usn6=((`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[`5esn`:`5esn`]-(:usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})),usn1=Allshortestpaths((:`2esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})) Using Scan `3esn`:_usn3 Using Scan usn2:_usn3 Union All Return Distinct 0Xa Contains {`7esn`} Contains $999 As ``,$#usn7[..{`4esn`}][..9e1] Create (((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),_usn4=Allshortestpaths((usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})) Detach Delete Single(`2esn` In {999} Is Not Null Where 123.654 Ends With usn2 Ends With 0) =~{#usn8:Count(*)[010..][#usn7..]} =~Reduce(`8esn`=True Starts With $`2esn` Starts With {@usn6},`5esn` In $`2esn`[12.e12][$@usn5]|999 Ends With .e12 Ends With .e1)"), + octest_legacy:ct_string("With Distinct `6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}],{12}[010..{1000}][1e1...e1] Order By All(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`8esn`}[0X7][$`3esn`])[[9e1[123456789..]]] Desc,1.0[..`4esn`][..{0}] Asc,{`3esn`} Is Not Null Is Not Null Asc Skip 12.e12 In {0} In 9e1 Limit {#usn7}[Count ( * )..12][$`2esn`..`4esn`] Delete Reduce(usn1=$#usn7 Ends With 0.12 Ends With {@usn6},_usn3 In {`2esn`} Ends With {12} Ends With 7|{0} Is Null) Is Not Null Is Not Null,`1esn`[..\"d_str\"][..$`5esn`],9e12 Is Null With Distinct (`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] As usn2 Order By All(`6esn` In Count(*) Ends With $`` Ends With {7}) In (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}) Desc Skip `7esn` =~.e12 =~$#usn7 Union Create (`2esn` {@usn6:True Is Null Is Null})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)-[_usn3?:@usn6|`` *0x0..{`3esn`}]->(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}}) Union With \"d_str\" Order By $1000[..$999] Descending,$`` In 0 In {1000} Asc,[{0}[False..@usn5]] Starts With {`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]} Starts With Shortestpath((:_usn3{0})-[usn2 *12..]->(:``)) Desc Skip {`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]} Starts With Allshortestpaths((`2esn` :@usn6{7})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]})<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`)) Starts With All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {7} Contains $123456789) Limit {12} Starts With #usn8 Starts With 0e0 Where $`1esn`[07] Optional Match Allshortestpaths(({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})),Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Where `1esn`[..00][..{7}] Create `1esn`=Shortestpath(((`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6)<-[#usn7]-(@usn6 )))"), + octest_legacy:ct_string("Using Periodic Commit 999 Load Csv With Headers From 1.e1[1.0] As `3esn` Delete Count(*) Ends With 0x0 Ends With 9e0,{123456789} =~usn1 =~{usn1} Start usn1=Node:`8esn`('s_str') Where `3esn`[..{_usn4}][..{@usn5}]"), + octest_legacy:ct_string("Load Csv From _usn4[['s_str'[..0X7],False Contains 0.e0 Contains Count(*)]..] As `` Remove {_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}.#usn7!,Extract(_usn3 In {@usn5}[..#usn7]).`4esn`? Remove `1esn`:_usn4,[_usn4 Is Null Is Null].usn1,{@usn6:True =~_usn3 =~123456789}._usn4 Union All Load Csv With Headers From #usn8['s_str'..][123.654..] As `4esn` Fieldterminator \"d_str\" With Distinct usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3) As usn1,$999 Contains {7},\"d_str\"[..0.e0] As #usn8 Order By $0 Ends With False Ends With $_usn4 Descending,Case Count(*) Ends With 123.654 Ends With $12 When $@usn6[$0..usn1][0X0123456789ABCDEF..$999] Then {`6esn`}[..{`2esn`}] End In Reduce(`4esn`={@usn6} In {#usn7} In 12.e12,usn1 In 12.e12 In {0} In 9e1|\"d_str\"[..0.e0]) In [_usn4 In `2esn` Where 9e12 Ends With 123456789|$999 Is Null] Desc,Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}])[[#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}]..{`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}][Case When 2.12 =~0x0 =~_usn4 Then .e1[@usn5]['s_str'] When $@usn5 In $usn2 In {1000} Then {0}[False..@usn5] Else {@usn6}[True..{_usn3}] End..`1esn`()] Descending Limit {`2esn`} Ends With {#usn7}"), + octest_legacy:ct_string("Detach Delete .e0[0.12],$`` =~{``} =~0.e0"), + octest_legacy:ct_string("Foreach(usn2 In {7}[$123456789..{1000}][$`3esn`..`7esn`]| Optional Match (({`8esn`:0[$`6esn`...e1][`1esn`..$`7esn`]})) Using Join On `3esn`,`8esn`,`5esn` Where $`8esn`[..$999][..0]) Remove Reduce(@usn6=1000 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|{`4esn`}[{`4esn`}..999]).`7esn` Union Optional Match `2esn`=((`4esn` :`2esn`)),Allshortestpaths(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )}))) Using Scan usn2:`2esn` Using Scan usn2:`2esn` Create @usn5=Allshortestpaths((`2esn` :`5esn`:@usn5)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})),`2esn`=((@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]})) Return *,{`8esn`}[..$`6esn`][..123.654],None(@usn5 In Null =~12e12 Where #usn8[`7esn`..])[{123456789}..][All(`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0})..] Order By $0 Ends With False Ends With $_usn4 Descending,[0.12[..$`6esn`][..$1000],0.12 Starts With 9e12 Starts With $`1esn`,\"d_str\" Contains @usn6 Contains 12.e12] Is Null Desc Limit `1esn`[`3esn`..True]"), + octest_legacy:ct_string("Start `6esn`=Rel:`2esn`({_usn3}) Where $`7esn`[$``..][999..] Union Start @usn6=Node( {`8esn`}) ,`3esn`=Relationship:@usn6({`2esn`}) Remove {usn2:7 In 1.e1 In $usn1}.`4esn`!,All(_usn4 In 0.0[..{999}][..0.0] Where #usn8 Is Null).`8esn`? Create #usn7=(`4esn` :usn2:`2esn`)"), + octest_legacy:ct_string("Remove Allshortestpaths(((:`8esn`:@usn5{@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2],``:{`7esn`} Is Not Null Is Not Null})-[?:#usn7|`2esn` *123456789..0X7{@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`}]->(`8esn` ))).usn1! Remove [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12].`2esn`,[usn1 Contains $7 Contains $``,$@usn5 In 's_str' In $12,$`1esn` Is Not Null Is Not Null].usn2!,All(`1esn` In `3esn`[07..] Where 999 Starts With 's_str').#usn8! Remove (`1esn` :usn2:`2esn`{`1esn`:{_usn3}[$usn2..],_usn3:$@usn6 Starts With $@usn5})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})._usn3?,(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}).usn2!,[$usn1[0X7],7[1000.._usn3][9e0..\"d_str\"],0X7 Starts With {999} Starts With 12e12].`7esn`! Union Remove .e12._usn4!,`7esn`(Distinct 12 Is Not Null Is Not Null).`8esn`! Unwind {12}[usn2] As `2esn` Union Foreach(_usn3 In {#usn7} In Count ( * ) In $#usn8| Match usn1=Shortestpath((:_usn3{@usn5:.e1[..\"d_str\"],#usn8:{`1esn`}[`6esn`..12e12]})<-[`7esn`?*..]-(usn1 :`1esn`{#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]})),`5esn`=Shortestpath((((:`7esn`{``:.e1 Contains $`3esn`})-[:_usn4|:usn1{`6esn`}]->(`8esn` :`7esn`)<-[`2esn`:#usn8|`2esn` *0xabc..7]-(usn1 :#usn8)))) Using Join On `5esn`,``,usn1 Where .e1 Ends With {7} Ends With $usn1)"), + octest_legacy:ct_string("Merge (((`8esn` {_usn4:{usn1} In Count ( * )})<-[``?:`3esn`|:@usn5{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(:`5esn`:@usn5)<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07}))) Match @usn6=((`8esn` :`5esn`:@usn5)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null})),`4esn`=(`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})-[?:@usn6|`` *..0Xa]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]}) Where .e12[$#usn8..@usn6]"), + octest_legacy:ct_string("Using Periodic Commit Load Csv From False[999] As `2esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Using Periodic Commit 010 Load Csv With Headers From {`4esn`} Contains $`1esn` Contains 01234567 As `8esn` Fieldterminator \"d_str\" With Distinct Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*))[Shortestpath(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(:#usn8)<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})))..],_usn4($123456789 =~`4esn`)[None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where Count(*) In {``})..][Any(`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7})..] As #usn8 Order By $123456789 Is Not Null Asc Limit 0Xa Is Not Null Is Not Null Where {`3esn`}[{`5esn`}]"), + octest_legacy:ct_string("Create Unique @usn6=((:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn7{usn1:1.0[{999}][$999]}]->(:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})) Union All Detach Delete `` Is Null Is Null,07 =~@usn5 Return Distinct *,$7 Ends With 0X7 Order By Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12]) Asc,Case When {@usn6} Contains 123.654 Contains 01 Then usn2 Ends With Count ( * ) Ends With $@usn6 End Is Not Null Is Not Null Desc Limit 0X0123456789ABCDEF Contains {usn1} Detach Delete _usn4($123456789 =~`4esn`)[None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where Count(*) In {``})..][Any(`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7})..],[_usn3 In {@usn5}[..#usn7] Where 12.e12[{7}..7]] Contains [$`2esn`[$usn2..][{``}..],0.e0 Ends With False] Union All Match `8esn`=((@usn6 :#usn7{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})<-[?:#usn7|`2esn` *0x0..]->({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) Using Scan #usn7:usn2 Using Scan `7esn`:#usn8 Foreach(_usn3 In $0[_usn4..{`3esn`}][$#usn7..$#usn7]| Delete All(usn1 In 12.e12 In {0} In 9e1)[[`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]|12.e12[$`8esn`..{`8esn`}]]..],$`4esn` In Null,0Xa[Reduce(`7esn`={@usn5} Is Null,#usn7 In 0Xa[@usn5][{`7esn`}]|0e0[0X0123456789ABCDEF..010][$@usn6..010])..$#usn7] Create `6esn`=(({`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})),@usn5=((:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})<-[``:usn2|#usn7 *..0Xa]->(`1esn` {#usn8:$12 Contains 0Xa}))) Return *,Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6) Starts With [$_usn3[010..False],$123456789 =~`4esn`,$usn1[$123456789..0][{`1esn`}..12.0]] As `8esn`,12 Starts With 0x0 As `2esn` Order By All(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[{#usn7:Count ( * )[$12..]}..][`5esn`(Distinct False Starts With 010)..] Asc,All(usn1 In 12.e12 In {0} In 9e1)[[`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]|12.e12[$`8esn`..{`8esn`}]]..] Asc Limit 0Xa[07..]"), + octest_legacy:ct_string("Load Csv With Headers From [00[..$123456789][..$`5esn`],{_usn3} Contains $`1esn` Contains 12.0][..[0.e0 =~`1esn` =~`6esn`,12.0[2.12..][{`5esn`}..],1.e1[0X0123456789ABCDEF..]]][..Filter(_usn3 In True[7][$999] Where 's_str'[..0X7])] As usn1 Return Reduce(`8esn`=True Starts With $`2esn` Starts With {@usn6},`5esn` In $`2esn`[12.e12][$@usn5]|999 Ends With .e12 Ends With .e1)[..Case 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0] When `4esn` Contains #usn8 Contains 7 Then 12 Ends With 01 When {999}[$123456789..][12..] Then {`4esn`} In _usn4 Else {#usn7}[Count ( * )..12][$`2esn`..`4esn`] End],Case 9e0 In usn1 When {@usn6} Contains 123.654 Contains 01 Then $@usn5 In 's_str' In $12 End In Allshortestpaths(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))) In Case {`7esn`}[9e1..][@usn6..] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" When {7}[{`4esn`}][`6esn`] Then 0xabc[$@usn5] Else 0e0 End Order By $@usn5[{_usn3}][$#usn7] Ascending,Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))) Contains {`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]} Contains Any(@usn5 In Null =~12e12 Where 0[`4esn`][12.e12]) Ascending Skip {7}[{`4esn`}][`6esn`] Limit {#usn8}[2.12] Union All Start `7esn`=Relationship:`2esn`(@usn5={#usn7}) Where 9e0[#usn8] With Filter(`3esn` In 123.654[1e1..][{#usn8}..] Where $7 Is Not Null) Is Null Is Null,12e12 Starts With 0.12 Starts With 9e12,Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 07[..`6esn`][..'s_str']) In [$`2esn`[$usn2..][{``}..],0.e0 Ends With False] In (:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})-[`2esn`?$_usn4]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)}) As `1esn` Order By 0Xa[..{1000}][..$#usn7] Asc Limit Allshortestpaths((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null}))) In {`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null} Merge usn1=((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]})) On Create Set {`5esn`:$7 Ends With $`8esn`,`3esn`:`4esn` Contains #usn8 Contains 7}._usn4 =_usn4 Is Null Is Null,Reduce(`8esn`=`2esn` Starts With `` Starts With 1e1,`` In {`1esn`} Starts With @usn6|$@usn6 Contains `7esn`).`8esn`! =All(`6esn` In Count(*) Ends With $`` Ends With {7}) In (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null})"), + octest_legacy:ct_string("Remove Shortestpath((:_usn3{@usn5:.e1[..\"d_str\"],#usn8:{`1esn`}[`6esn`..12e12]})<-[`7esn`?*..]-(usn1 :`1esn`{#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]})).`6esn`!,Case 12.e12[..1e1] When {1000}[{#usn8}] Then $@usn5[$`4esn`][$@usn6] Else 123456789 Ends With usn1 Ends With usn2 End.`5esn` Start `6esn`=Node:_usn4('s_str') Where $usn1 In 01234567 In .e1"), + octest_legacy:ct_string("Return {`5esn`} Starts With 12.0,$usn1 =~010 =~07 As usn2,$#usn7[..{`4esn`}][..9e1] Order By None(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) Ends With Case When 0x0[{999}..][{_usn4}..] Then Count(*)[.e12] When {_usn4}[...e12][..0xabc] Then Count(*) Ends With $`` Ends With {7} Else ``[{#usn8}] End Ends With Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where 's_str' Starts With 12e12 Starts With $_usn4|True Starts With $`4esn` Starts With 12e12) Desc,9e12 Is Null Ascending Skip @usn5[$@usn5][{0}] Limit `4esn` Is Not Null Is Not Null Merge (:`3esn`:`6esn`{999}) On Create Set `2esn` =Count(*) Ends With 0x0 Ends With 9e0 On Create Set #usn7 =9e1['s_str'..0xabc] Remove [`6esn` In 00 Where 0.12[..$`6esn`][..$1000]|Null =~12e12]._usn4?,[#usn7 In 123.654 Starts With $`` Where `1esn` In 07|0.0[..{999}][..0.0]].`7esn`!,Shortestpath(({`6esn`:$``['s_str'..][0x0..]})).`8esn` Union All Create ((@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})<-[_usn4{`7esn`:01234567[..9e1]}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})-[`6esn`?]->(:usn2:`2esn`{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null})),`1esn`=(((#usn8 {#usn7:$1000 Is Not Null Is Not Null})<-[`2esn`?:@usn6|``]->(`1esn` {_usn4:{1000} Ends With {`8esn`}})<-[`3esn`:usn1 *0X7..0Xa]->(:#usn7{#usn7:$`8esn` In $`2esn` In {7}}))) With Distinct {@usn5} Is Null,``[$0..][`1esn`..] As `4esn` Order By 0Xa[07..] Ascending Limit 's_str'[.._usn4][..``] Unwind Count(*) In {``} As `3esn` Union Start `4esn`=Node:``(\"d_str\") Where 00 Starts With $`6esn` Unwind {_usn4:{`6esn`} Ends With 0e0 Ends With {``}} In Shortestpath(((#usn8 {`8esn`:{7} Contains $123456789}))) As `4esn`"), + octest_legacy:ct_string("With Distinct *,Shortestpath((@usn6 {``:.e12[\"d_str\"..][.e1..]}))[{`3esn`:#usn8 =~{999}}..[_usn3 In True[7][$999] Where 12e12 Is Not Null Is Not Null]] As usn1,1000 As `1esn` Skip True Is Null Is Null Limit $7 In 1.0 In 1e1 Unwind 9e12[$`5esn`] As @usn6 Union All Start @usn6=Node:@usn6(_usn4={_usn4}) ,_usn4=Node:usn2(usn2='s_str')Where .e1[0.12] With Distinct *,Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 9e12 Is Not Null) =~Case When False[0Xa..$usn1] Then {123456789}[12..][$12..] Else 0e0 Contains 9e12 End As usn2 Order By $`7esn` Contains {`1esn`} Contains 9e12 Asc,usn1 Is Null Is Null Descending Limit `5esn` Is Not Null Is Not Null Start `8esn`=Rel:`5esn`({0}) "), + octest_legacy:ct_string("Create Unique (`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})-[``:usn2|#usn7 *..0Xa]->(:`4esn`:@usn6{usn1:$7[{`1esn`}],#usn8:\"d_str\"[..0.e0]}) Create #usn8=(`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`),``=((`8esn` :@usn6)-[@usn5? *0x0..{`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}]-({`7esn`:{usn1}[$`8esn`..0.0]})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})) With Distinct Reduce(``=12 Starts With $#usn7,`6esn` In 00|False Contains $#usn8 Contains 9e1)[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {7} Contains $123456789|12e12 Is Not Null Is Not Null]][All(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4)] Order By 00[0.12..] Desc Union All Start usn1=Node:`6esn`({`8esn`}) ,`5esn`=Relationship:@usn6(_usn4={_usn4}) Unwind Reduce(usn2={`6esn`}[..{`2esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|1e1[..01]) Is Not Null Is Not Null As `1esn` Merge `2esn`=Allshortestpaths((((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})<-[_usn4?:usn2|#usn7{_usn4:{`1esn`} In 12.e12 In 9e1}]-(:usn2:`2esn`)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]})))) On Create Set Case $`1esn`[07] When Null =~12e12 Then $``['s_str'..][0x0..] Else Null Is Null Is Null End.usn2? =0X0123456789ABCDEF[9e12],`4esn`+=12.e12[$`4esn`..],`8esn` =$usn1[0X7] On Match Set [1.e1 =~$usn2,$`5esn`[`1esn`][0X0123456789ABCDEF],$0[`7esn`]].`5esn`? =@usn5[$12..\"d_str\"],_usn3+=$`1esn`[$12][Count ( * )] Union All Return {1000} As `` Order By {1000}[1000][$usn1] Descending,$999[9e0..] Desc Skip Filter(`1esn` In `3esn`[07..] Where 12 Ends With 01)[..All(`3esn` In 123.654[1e1..][{#usn8}..] Where 0Xa Contains Count ( * ))]"), + octest_legacy:ct_string("Load Csv From Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where 1.e1[12e12..{`6esn`}]|Count ( * )[..12][..{@usn6}]) Contains All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Contains Extract(_usn4 In `2esn` Where $999 Is Null) As usn2 Fieldterminator 's_str' Create Unique (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` )) Load Csv With Headers From `3esn`[12.e12..] As `2esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Merge `2esn`=Allshortestpaths(((({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]})-[`5esn`{`7esn`:@usn5[..$@usn5][..0Xa]}]-(:`4esn`:@usn6)<-[`3esn`? *0x0..{_usn3:0.0[9e1..][Null..],#usn7:{`3esn`} Is Not Null Is Not Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})))) On Create Set _usn3+=_usn4[Count(*)],usn1 =010 Ends With 01 Ends With {_usn3},@usn6+=\"d_str\"[{`8esn`}..] On Create Set `1esn`:`` Return Distinct [`6esn` In 00 Where 0.12 In 0X7|{999} Is Null][Allshortestpaths((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]}))][Case {999}[$123456789..][12..] When $@usn6 =~#usn8 Then $999 Contains {7} When False Starts With 010 Then `8esn` Starts With {123456789} Else True Is Not Null Is Not Null End] As usn1 Order By 7[010][00] Descending,False[{`8esn`}] Asc,1e1 =~#usn8 =~2.12 Ascending Skip Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))[All(`2esn` In {999} Is Not Null Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF)][Shortestpath((:_usn3{_usn3:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF,`5esn`:1.0 Is Null Is Null})<-[`3esn`:`6esn`{`3esn`}]-(_usn4 :#usn7{_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})<-[ *123456789..0X7]-(`2esn` :`2esn`{`3esn`:#usn8 =~{999}}))] Limit 00 Contains #usn8 Union All Start _usn4=Rel:`4esn`(#usn8='s_str') ,`3esn`=Rel:``(usn1={`4esn`}) Union Return {`2esn`} In $123456789 In True As `7esn`,$7 Ends With $`8esn` As `4esn`,(:`7esn`{``:.e1 Contains $`3esn`})<-[?:usn2|#usn7]->(#usn8 :#usn7) As #usn8"), + octest_legacy:ct_string("Create @usn5=(`6esn` :`8esn`:@usn5),usn1=((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)) Create Unique _usn4=Allshortestpaths(((`` {`1esn`:{@usn5}[1e1..][9e1..],`2esn`:$`7esn` Contains {`1esn`} Contains 9e12})<-[`3esn`? *0x0..{_usn3:0.0[9e1..][Null..],#usn7:{`3esn`} Is Not Null Is Not Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-(`3esn` :`6esn`:`8esn`{`8esn`:{``} Is Null Is Null,`3esn`:123456789 Is Not Null Is Not Null}))),``=Shortestpath((`7esn` :`5esn`:@usn5{`2esn`:12 Starts With $#usn7})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(`4esn` :_usn4{`2esn`:#usn7 =~00}))"), + octest_legacy:ct_string("Using Periodic Commit 00 Load Csv With Headers From 7[123456789..$123456789][``..00] As #usn8 Fieldterminator \"d_str\" Foreach(usn2 In {`7esn`}[..9e12][..0.0]| Load Csv From $@usn6[$0..usn1][0X0123456789ABCDEF..$999] As `1esn` Delete {@usn5}[..@usn6],0e0 Contains `3esn` Contains `7esn`,1.e1 Ends With 0 Ends With $usn1) Foreach(`1esn` In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000|$@usn5 In $usn2 In {1000}) Is Not Null| With Distinct *,(:`7esn`{``:.e1 Contains $`3esn`})<-[?:usn2|#usn7]->(#usn8 :#usn7) As #usn8 Order By `6esn` Is Null Is Null Desc Where {@usn6}[$`7esn`..][False..])"), + octest_legacy:ct_string("Create usn2=Allshortestpaths((({`1esn`:{123456789}[12..][$12..]})<-[``{_usn4:.e1[..\"d_str\"]}]-({@usn5:Count ( * ) Is Null})<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4}))) Merge Allshortestpaths(((`5esn` :`2esn`{#usn8:True[$`7esn`..{1000}]})<-[usn1?:`6esn` *12..{`6esn`:999 Starts With $123456789 Starts With {``}}]->({_usn4}))) On Create Set `4esn`+={usn2:{`1esn`} Is Not Null} In {`3esn`:$#usn7 =~{12} =~False,usn2:$@usn6[$`8esn`..][7..]} In Allshortestpaths(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))) On Create Set ``+=(#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})-[:`2esn` *1000{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(_usn3 :#usn8)-[:``]->({`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}}) Ends With 01234567,usn1().`6esn`! =Reduce(``={usn2} =~@usn6 =~{`4esn`},`` In {`1esn`} Starts With @usn6|0[{@usn5}..][7..]) Contains [`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]] Contains [$999 Is Null,{``}[010]] Optional Match (#usn7 :`6esn`:`8esn`{``:@usn5 In 1e1})-[`3esn`:`` *123456789..0X7{#usn8:12 Starts With $#usn7}]-(`3esn` :`7esn`)<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}),`7esn`=Allshortestpaths(((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]->(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}))) Where {`1esn`}[$`4esn`..][False..] Union Remove Single(_usn4 In `2esn` Where $`2esn`[123.654][1e1]).usn1?,[0.0 =~12.e12 =~1.0].`8esn`!,All(#usn7 In 0Xa[@usn5][{`7esn`}] Where 1e1[1.e1..][123.654..]).`6esn`! Union All Delete 12 Starts With {_usn4} Starts With $#usn8,.e12 Ends With 1000 Ends With 010,[#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null"), + octest_legacy:ct_string("Return Distinct *,`` Ends With $`4esn` Ends With 0X0123456789ABCDEF As #usn7,False Contains 0.e0 Contains Count(*) Order By Reduce(usn1=12.0[2.12..][{`5esn`}..],_usn3 In {@usn5}[..#usn7]|1000[$7..$123456789]) Is Null Is Null Desc,[#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 Starts With {_usn3}|@usn6[$12]] Ends With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null] Ends With Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) Ascending Skip $@usn5[`6esn`..] Limit $`4esn`[..7][..{12}] Union Unwind $usn1[..'s_str'][..$#usn8] As `3esn` Unwind True[..010] As usn1"), + octest_legacy:ct_string("Load Csv With Headers From 0.12[999][$#usn8] As usn1 Load Csv From Case When 0.e0 Contains #usn7 Then $_usn4[{``}..][1e1..] When $`2esn`[12.e12][$@usn5] Then $usn1[0X7] End Ends With Extract(`1esn` In $12 Is Not Null Where {`3esn`}[{`5esn`}]) Ends With Case 0Xa[.._usn3][..$`6esn`] When {`4esn`}[$123456789..] Then {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] When {usn2}[$`4esn`] Then $1000 Starts With $`8esn` Starts With {`5esn`} Else @usn6[$_usn4] End As _usn3 "), + octest_legacy:ct_string("Start `6esn`=Rel:`2esn`({_usn3}) ,`2esn`=Rel:usn2(`2esn`={`7esn`})Where False Starts With 010"), + octest_legacy:ct_string("Merge (usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})-[`1esn`:`1esn`|:`3esn` *01..07{`3esn`:123456789 Is Not Null Is Not Null}]-(`1esn` {@usn5:$usn1 In 0.12 In $``})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]-(:usn1:_usn4{`4esn`:01234567 In $123456789}) On Match Set Reduce(`4esn`=1000,`5esn` In $`2esn`[12.e12][$@usn5]|True Starts With $`2esn` Starts With {@usn6}).`6esn`! =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,All(`` In {`1esn`} Starts With @usn6 Where #usn7[$`5esn`..])._usn3? ={999} In 0.0 In {0},@usn5+=[12e12 Starts With `1esn` Starts With usn2,Count ( * ) Is Null][(#usn8 {``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})][Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))] On Match Set @usn6+={7}[$123456789..{1000}][$`3esn`..`7esn`],Extract(#usn7 In 0Xa[@usn5][{`7esn`}] Where $@usn5 In $usn2 In {1000}|{`2esn`}[..{@usn6}][..1.e1]).`3esn`! =$@usn6[$0..usn1][0X0123456789ABCDEF..$999] Load Csv With Headers From 999 As usn2 Fieldterminator \"d_str\" Union All Create Unique ``=(:_usn3{`8esn`:9e1 =~999}),``=Shortestpath((:_usn4{`4esn`:#usn7 Starts With 1000 Starts With .e1})) Load Csv From Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..] As `3esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Remove [{`2esn`} In $123456789 In True,{1000}[{usn1}][Null]].`2esn`?,{`5esn`:$7 Ends With $`8esn`,`3esn`:`4esn` Contains #usn8 Contains 7}.`3esn`!,None(`1esn` In $12 Is Not Null Where {``} Is Null Is Null).`7esn` Load Csv From `6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}] As `7esn` Union All Create Unique `8esn`=Allshortestpaths((((:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})))),`5esn`=(_usn3 :`6esn`:`8esn`{`4esn`:$usn1 Starts With $999 Starts With {@usn5},`7esn`:``[..$#usn7]}) Start #usn7=Node:_usn4(``=\"d_str\") ,`4esn`=Node:_usn3({123456789}) Delete $_usn4[{``}..][1e1..],[#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 In 01234567 In .e1|{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]] =~Extract(`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]|$usn1 In 0.12 In $``) =~Single(_usn3 In {@usn5}[..#usn7] Where {`4esn`}[..07][..$`6esn`])"), + octest_legacy:ct_string("Remove All(_usn4 In 0.0[..{999}][..0.0] Where 12.e12[{7}..7]).`5esn`,Reduce(usn1=Count(*) Starts With $usn1 Starts With {usn2},`6esn` In Count(*) Ends With $`` Ends With {7}|`1esn`[..01]).@usn6!,usn1().`6esn`! Load Csv From \"d_str\" Is Null Is Null As @usn6 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Create _usn4=(((`2esn` :@usn5{`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]-(:usn1:_usn4{`4esn`:01234567 In $123456789})-[`8esn`?]->({@usn6:$`` Starts With 12 Starts With $usn2}))),`4esn`=Allshortestpaths((`5esn` )<-[`3esn` *..010]-(:@usn5{`2esn`:True[$123456789][`8esn`]})) Union Return [`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]][..Reduce(`4esn`=@usn5[12.0][{1000}],_usn4 In `2esn`|0[$`6esn`...e1][`1esn`..$`7esn`])][..[7[010][00],$7[$`3esn`],#usn7 =~{`4esn`} =~123456789]],$1000[..12.0][..0e0] Order By Single(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2])[(_usn3 {usn1:0Xa[0e0..{#usn7}],`1esn`:.e0[True..Count ( * )][#usn7..0X7]})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1})..] Descending,0.12 In 0X7 Descending Limit Count ( * )[9e1..{@usn5}] Union With .e0 =~{`8esn`} =~$999 As #usn7,$12 Is Not Null As `7esn`,{``} Is Null Is Null Limit All(_usn3 In {@usn5}[..#usn7] Where $`2esn` Starts With {`8esn`} Starts With {usn1}) Starts With {usn2:{`1esn`} Is Not Null}"), + octest_legacy:ct_string("Foreach(`` In Reduce(@usn5=True =~{`1esn`},_usn4 In 0.0[..{999}][..0.0]|7[$0..][{_usn4}..]) In Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`) In All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0])| Remove Reduce(#usn8=$@usn6[$0..usn1][0X0123456789ABCDEF..$999],`1esn` In 0.e0 =~`1esn` =~`6esn`|999[12.0..][#usn7..]).`4esn`?,(:_usn3)<-[usn2 *..01234567{`1esn`:@usn5 =~'s_str',`8esn`:{999} Starts With {_usn4} Starts With 00}]->(usn1 {`5esn`})-[:`5esn`]->(:@usn6{`2esn`:$999 In 999}).#usn7!,_usn4:_usn4 Create Unique ((@usn6 {@usn5:0X0123456789ABCDEF[$999..][@usn5..]})<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})),#usn7=(`3esn` :`8esn`:@usn5{@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})) Start _usn4=Node:`6esn`({_usn3}) Create (({`1esn`:{123456789}[12..][$12..]}))"), + octest_legacy:ct_string("Remove {`1esn`:9e12 Is Not Null Is Not Null}._usn3!,Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]).#usn8,Extract(`1esn` In `3esn`[07..] Where 999 Starts With 's_str'|{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]).@usn6 Create Unique Shortestpath((`7esn` {`3esn`:0.0 =~12.e12 =~1.0,`1esn`:$usn1 Starts With {_usn3}})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]-({`7esn`:123.654 Ends With usn2 Ends With 0})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})),`7esn`=((_usn3 :@usn5{`2esn`:@usn5[$12..\"d_str\"]})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})-[_usn3?:``]-(@usn5 {_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})) Union Unwind $123456789 Is Not Null As `3esn` Delete {`3esn`} Ends With `1esn` Ends With $@usn6,{usn2}[`6esn`..01234567] Create Unique #usn7=(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}),`6esn`=(({@usn6:Null =~12e12}))"), + octest_legacy:ct_string("Return Distinct *,{`7esn`}[9e1..][@usn6..],Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF) Ends With Case {`2esn`}[..{@usn6}][..1.e1] When Null Is Null Is Null Then #usn7 Contains {`3esn`} Contains $`6esn` When 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Then $usn1[..'s_str'][..$#usn8] End Ends With Filter(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789}) As `8esn` Union All Return Distinct Single(_usn3 In {@usn5}[..#usn7] Where {@usn6} In {#usn7} In 12.e12)[(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[*{`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]}]->(:`2esn`{#usn8:`6esn` Ends With 2.12 Ends With @usn6,`1esn`:{`8esn`}[True..][.e1..]})<-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` :`8esn`:@usn5)] As `5esn`,$@usn6[$`8esn`..][7..] As `4esn`,[`2esn`,{`2esn`} Starts With @usn6,9e1 =~999] In Any(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3} Contains 9e0 Contains $999) As _usn4 Order By {999} Starts With {_usn4} Starts With 00 Asc,{0}[False..@usn5] Desc,1e1[..`1esn`][..0e0] Asc Skip 's_str'[_usn4..0x0] Union Unwind 0xabc =~12 =~0x0 As @usn5 Match ``=(({`4esn`:1000 Is Null Is Null})),Allshortestpaths((((@usn6 {usn1:$#usn7 =~{12} =~False})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})))) Using Join On _usn3,`1esn`,`2esn` Using Join On `6esn`,_usn4 Foreach(@usn5 In {1000}[{#usn8}]| Create Unique `7esn`=((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})),Shortestpath((usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`)) Unwind Case {1000}[{#usn8}] When `7esn` Contains `5esn` Contains 0X7 Then True[..010] When {#usn8} =~{999} =~{#usn7} Then `1esn`[..\"d_str\"][..$`5esn`] Else `6esn`[..{999}] End In Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where `3esn`[..{_usn4}][..{@usn5}]) As `8esn`)"), + octest_legacy:ct_string("Start `4esn`=Rel:`8esn`(@usn6='s_str') Where #usn7 Starts With 1000 Starts With .e1"), + octest_legacy:ct_string("Foreach(`6esn` In {@usn5}[{`5esn`}][$12]| Load Csv From {1000}[01234567..$_usn4][{@usn6}..$_usn3] As usn2 Delete All(`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}])[Reduce(`2esn`=$@usn6[$0..usn1][0X0123456789ABCDEF..$999],`6esn` In 00|$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF)..],{`1esn`} Is Not Null,Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123456789 Is Not Null Is Not Null) Starts With Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999) Starts With Reduce(usn2=1.e1 =~`2esn`,@usn5 In Null =~12e12|Count(*)[..``][..#usn8])) Unwind 999 Starts With $123456789 Starts With {``} As `8esn` Merge Shortestpath(({usn2:#usn8 =~{_usn3} =~``})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})-[?:`1esn`|:`3esn` *999]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}))"), + octest_legacy:ct_string("Create Allshortestpaths(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]})))"), + octest_legacy:ct_string("Optional Match @usn6=(_usn3 {`4esn`:`8esn` Contains 1e1,#usn7:{`2esn`}[..{@usn6}][..1.e1]})-[#usn7?:usn1 *01..07{`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}]->({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]}) Using Index `7esn`:`1esn`(`2esn`) Using Index `8esn`:`6esn`(@usn5)"), + octest_legacy:ct_string("Start `3esn`=Rel:`6esn`(usn2={`8esn`}) ,usn1=Node:`6esn`({`8esn`})Where usn2 Ends With Count ( * ) Ends With $@usn6 Create Unique Shortestpath((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->({_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})),Allshortestpaths(({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}))"), + octest_legacy:ct_string("Load Csv From 1000[$7..$123456789] As `3esn` Union Load Csv From (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Is Null As usn1 Fieldterminator 's_str' Union All Unwind 1.e1[0xabc..] As usn1 Match Shortestpath(((_usn3 :`5esn`:@usn5)<-[`7esn`? *0xabc..7]->(:`6esn`:`8esn`{`3esn`:$`6esn`[{`3esn`}..12],_usn3:0[{@usn5}..][7..]}))),usn1=((`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})) Using Scan `3esn`:`3esn` Unwind [{999} Starts With {12},9e1 Ends With Count(*) Ends With False,0X0123456789ABCDEF[`5esn`..][$#usn8..]] In Single(`6esn` In 00 Where 0X0123456789ABCDEF Is Null Is Null) As @usn6"), + octest_legacy:ct_string("Create Unique @usn6=Shortestpath(((:#usn8{#usn8:`3esn` Is Not Null Is Not Null}))),`5esn`=Shortestpath((((:`7esn`{``:.e1 Contains $`3esn`})-[:_usn4|:usn1{`6esn`}]->(`8esn` :`7esn`)<-[`2esn`:#usn8|`2esn` *0xabc..7]-(usn1 :#usn8)))) With [usn1 In 12.e12 In {0} In 9e1 Where {usn1} In Count ( * )][{_usn3:.e1 Ends With 0Xa Ends With .e1,`2esn`:12e12 Starts With `1esn` Starts With usn2}..] As @usn5,Count ( * ) Is Null As usn2,({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..`2esn`(Distinct #usn8[`7esn`..])][..[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]]] As `4esn` Skip $12 Starts With $`8esn` Where $_usn4 Contains {#usn7} Contains `1esn` Unwind 0Xa[1000.._usn4] As `8esn` Union All Create `6esn`=Shortestpath(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})-[?:`8esn`|:_usn4{usn1:999[12.0..][#usn7..],@usn5:123.654[$`1esn`..Null][1000..{_usn3}]}]->(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}))),`4esn`=Allshortestpaths((((@usn6 {_usn3:{`8esn`}[0X7][$`3esn`],_usn4:$_usn4[9e0..]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-({`6esn`:1000,#usn8:$`5esn`[$#usn7..][0xabc..]})-[?:`8esn`|:_usn4 *12..]->(@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]}))))"), + octest_legacy:ct_string("Unwind 9e12[$`5esn`] As #usn7 Create Unique @usn6=Shortestpath(((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}))),(`6esn` :#usn8) With Distinct {`5esn`}['s_str'..] As ``,Extract(_usn4 In `2esn` Where $999 Is Null) Starts With Reduce(`5esn`=00,`2esn` In {999} Is Not Null|{`4esn`}[..07][..$`6esn`]) Starts With [`8esn`[..`4esn`][..$usn1],{#usn8}[2.12]] As usn2,{#usn8} Is Null Is Null As `1esn` Order By 12 In 999 Descending,[{0}[False..@usn5]] Starts With {`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]} Starts With Shortestpath((:_usn3{0})-[usn2 *12..]->(:``)) Desc,[$_usn4[9e0..]][`8esn`(Distinct {7} Starts With $usn1 Starts With 1.0)..Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} Starts With 1.0 Starts With 00|$#usn7[..@usn6][..$0])][Any(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{#usn8:{`7esn`} Is Not Null Is Not Null,`4esn`:12 Starts With 0x0}] Asc Skip 0Xa Contains #usn8 Contains 1000 Where {`4esn`} Starts With $7 Starts With $``"), + octest_legacy:ct_string("Merge `4esn`=((`2esn` :`3esn`:`6esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-(:`7esn`{``:.e1 Contains $`3esn`})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`8esn`:@usn5)) On Create Set `6esn` =`6esn` In Null,_usn3 =$`6esn`[`8esn`][0.0] Create (@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}),_usn4=(@usn6 :@usn6{`5esn`:@usn5[$12..\"d_str\"],usn2:1.e1[0X0123456789ABCDEF..]}) Union All Create (((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`}))),#usn7=(($`5esn`)) Union Merge ((`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})) On Match Set usn2+=$1000 =~{1000} =~`5esn`,Case #usn7 =~{`4esn`} =~123456789 When 1.e1 =~`2esn` Then 0Xa[$1000..$123456789] When $123456789 Starts With $123456789 Starts With Count ( * ) Then 07 Is Null Else $`6esn`[`8esn`][0.0] End.`8esn` =(`` {@usn5:0[Count(*)][0e0]})-[`5esn` *0x0..]->(usn1 :usn1:_usn4)<-[`7esn`?:#usn7|`2esn` *01..07]-(`1esn` :usn2:`2esn`{`1esn`:{_usn3}[$usn2..],_usn3:$@usn6 Starts With $@usn5})[Allshortestpaths(((:`7esn`{999})<-[`6esn`?:_usn3|`8esn`]->(`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]})))..{`1esn`:$999 Ends With {0}}] Create Unique _usn4=(({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]}))"), + octest_legacy:ct_string("Load Csv With Headers From $`6esn`[..1.e1][..1e1] As `5esn` Merge `8esn`=Shortestpath((:`2esn`{`4esn`:`3esn` Is Not Null Is Not Null})<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(usn1 {`4esn`:1.0[{999}][$999],``:9e1[9e1...e0]})) On Create Set `8esn` =usn2(0.0 Is Not Null Is Not Null,{123456789} Is Not Null)[None(`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12])..[_usn4 In `2esn` Where False Ends With $``|9e0[#usn8]]][(`3esn` :`3esn`:`6esn`)-[]->(`7esn` :#usn8)..[0X0123456789ABCDEF Contains $`1esn` Contains 1000,0e0[$#usn8...e12],.e12 Is Null Is Null]],@usn6+=$@usn5[..usn2][..$#usn7] Foreach(`1esn` In All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Contains `4esn`(999 Starts With 's_str') Contains (`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})| Create (#usn8 :`7esn`),`3esn`=Shortestpath((:_usn4)-[`6esn`?{#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}]-({`3esn`:9e1 =~999})-[`3esn`? *01..07]->({`7esn`:@usn5[..$@usn5][..0Xa]})) Detach Delete Reduce(@usn5={`1esn`} In 12.e12 In 9e1,`5esn` In $`2esn`[12.e12][$@usn5]|$`6esn` Ends With {0} Ends With {`7esn`}) Is Null,``[..0X0123456789ABCDEF],{`1esn`}[$`4esn`..][False..]) Union Remove {`1esn`:9e12 Is Not Null Is Not Null}._usn3!,Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]).#usn8,Extract(`1esn` In `3esn`[07..] Where 999 Starts With 's_str'|{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]).@usn6 Create Unique Shortestpath((`7esn` {`3esn`:0.0 =~12.e12 =~1.0,`1esn`:$usn1 Starts With {_usn3}})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]-({`7esn`:123.654 Ends With usn2 Ends With 0})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})),`7esn`=((_usn3 :@usn5{`2esn`:@usn5[$12..\"d_str\"]})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})-[_usn3?:``]-(@usn5 {_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})) Union All Start _usn4=Node:`7esn`(@usn5={`4esn`}) Load Csv With Headers From 9e12 In 1e1 In .e12 As `5esn` Foreach(_usn3 In {#usn7} In Count ( * ) In $#usn8| Match usn1=Shortestpath((:_usn3{@usn5:.e1[..\"d_str\"],#usn8:{`1esn`}[`6esn`..12e12]})<-[`7esn`?*..]-(usn1 :`1esn`{#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]})),`5esn`=Shortestpath((((:`7esn`{``:.e1 Contains $`3esn`})-[:_usn4|:usn1{`6esn`}]->(`8esn` :`7esn`)<-[`2esn`:#usn8|`2esn` *0xabc..7]-(usn1 :#usn8)))) Using Join On `5esn`,``,usn1 Where .e1 Ends With {7} Ends With $usn1)"), + octest_legacy:ct_string("Optional Match (usn1 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`) Where $`7esn`[$``..][999..] Union All Detach Delete {`4esn`}[..07][..$`6esn`],12 In 0e0,$999[07..{#usn7}][1e1..0xabc] Optional Match Allshortestpaths(((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[usn1?:usn2|#usn7 *01..07]-(@usn6 {`5esn`:\"d_str\" =~`1esn` =~{`5esn`}})-[`3esn`? *01..07]->({`7esn`:@usn5[..$@usn5][..0Xa]}))) Using Index usn2:usn1(`1esn`) Where 0.12[..$`6esn`][..$1000] Union Return {#usn8} Is Null Is Null As `1esn` Create Unique `1esn`=Shortestpath((({@usn5:``[{123456789}..]})-[`3esn`:`6esn`{`3esn`}]-({`1esn`:$123456789[..$7][..$`6esn`]})<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`))) Merge ((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]}))"), + octest_legacy:ct_string("Detach Delete $123456789[{_usn4}],{usn2} Contains .e0 Union All Detach Delete Null[{_usn4}..],``[{#usn8}..9e0][12.e12..0xabc] Create Unique (((`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]})-[]->(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )})<-[@usn6?]->(`8esn` :``))),usn2=Allshortestpaths(((({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})<-[?:``]-(`1esn` :#usn7)-[?:`4esn`|:#usn7]->(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]}))))"), + octest_legacy:ct_string("Create Unique `5esn`=Shortestpath(((@usn6 :usn1:_usn4)-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)<-[``?:`4esn`|:#usn7{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]}]->({`1esn`:$123456789[..$7][..$`6esn`]}))) Union All Delete `2esn`[Null] Foreach(`2esn` In Case `3esn` Is Not Null Is Not Null When _usn3 Contains .e0 Contains {usn2} Then 0.0 Contains $_usn4 Contains {`2esn`} When $@usn6 =~#usn8 Then $999 Contains {7} End Is Not Null| Return Distinct *,$usn1 =~010 =~07 As usn2,[1.e1 =~$usn2,@usn6[{0}..],@usn5[12.0][{1000}]][@usn6()..Case {@usn5}[..@usn6] When $`2esn` Starts With {`8esn`} Starts With {usn1} Then {``} Is Null Is Null Else 123456789 Ends With usn1 Ends With usn2 End] Limit (`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))]) Create _usn4=(({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]}))"), + octest_legacy:ct_string("Optional Match Allshortestpaths((((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`})))) Merge (:usn2:`2esn`{_usn4:0Xa Contains $``,@usn6:@usn6[$_usn4]})<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->({`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}) Union All Unwind 1.e1 Ends With 0 Ends With $usn1 As `1esn` Remove exists(Distinct 12.e12 In $0 In $0).usn2,Reduce(usn1=1.e1 Starts With $`2esn` Starts With $0,`3esn` In 123.654[1e1..][{#usn8}..]|{`3esn`} Is Not Null Is Not Null).`1esn`?,07.`2esn`! Return *,(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[#usn7?:@usn6|``{123456789}]->(usn1 :`8esn`:@usn5)<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})[..[12.e12 In {0} In 9e1,9e1 =~`` =~{`7esn`},0X0123456789ABCDEF[0X7..]]][..All(`1esn` In `3esn`[07..] Where `7esn`[0..$usn2][{usn2}..0.e0])] As usn1,@usn5 Is Not Null Is Not Null Order By 1000 Starts With `7esn` Descending Limit @usn5 Contains {0} Contains 9e12"), + octest_legacy:ct_string("Unwind `2esn`({999} Is Null,{``} Is Null Is Null) In `5esn`(0Xa Contains $``,$123456789 Starts With .e12) In {_usn4:.e1[..\"d_str\"]} As #usn7 Delete {12} Contains `7esn` Contains $_usn3,{_usn3} Starts With $12 Starts With {`8esn`} Union All Return $7 Ends With $`8esn` As `4esn` Skip {`4esn`:#usn7 =~00,@usn5:usn2[True]} =~`6esn`(Distinct #usn7 =~{`4esn`} =~123456789,1e1[1.e1..][123.654..]) =~Allshortestpaths(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))) Create #usn8=Allshortestpaths((_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})-[`1esn`?:_usn3|`8esn` *0xabc..7]->(@usn5 :`6esn`:`8esn`)) With Distinct 0xabc[$_usn3..],[$_usn4[9e0..]][`8esn`(Distinct {7} Starts With $usn1 Starts With 1.0)..Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} Starts With 1.0 Starts With 00|$#usn7[..@usn6][..$0])][Any(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{#usn8:{`7esn`} Is Not Null Is Not Null,`4esn`:12 Starts With 0x0}] As `1esn` Order By 1.0 Ends With 1000 Descending,Shortestpath((_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]) In Shortestpath(((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}))) Asc Skip {usn2}[$`4esn`] Limit {123456789} =~{@usn6} Union With Distinct {`5esn`} Starts With 12.0,Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End[None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])][count(Distinct $`5esn`[$#usn7..][0xabc..])] As `2esn`,0.e0 Contains .e0 Contains $@usn6 Order By $#usn7 Is Null Is Null Descending,Case When 0X0123456789ABCDEF[7...e0][`1esn`..usn2] Then $1000 Starts With $`8esn` Starts With {`5esn`} When usn2 =~0X7 =~{#usn7} Then {`2esn`} In $123456789 In True End[Single(_usn3 In True[7][$999] Where {usn2})][Any(_usn4 In 0.0[..{999}][..0.0] Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`)] Ascending Limit {usn2:_usn4 Is Null}[[True =~_usn3 =~123456789,0Xa[@usn5][{`7esn`}],{`1esn`} Starts With `4esn` Starts With {0}]..] Where {_usn3}[..$`8esn`] Load Csv With Headers From {usn2}[$`4esn`] As usn2 Fieldterminator \"d_str\" Create (((:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})<-[:``]-(_usn3 :`7esn`)<-[ *0xabc..7]->({#usn7:123456789[0..]}))),``=(`3esn` :usn2:`2esn`{``:{_usn3} Contains $`1esn` Contains 12.0})"), + octest_legacy:ct_string("Load Csv With Headers From Allshortestpaths(((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))) Starts With (`1esn` :_usn3{`5esn`:{`8esn`}[..$`6esn`][..123.654],`1esn`:1000 Starts With `7esn`})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Extract(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) As usn2 Load Csv From {#usn8}[usn2][{0}] As `2esn` Fieldterminator \"d_str\" Merge `7esn`=Shortestpath((((`6esn` {``:`4esn`[usn1]})<-[:`6esn`{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},`6esn`:``[..$#usn7]}]->({_usn4:False[0Xa..$usn1]})-[`8esn`?{`3esn`:'s_str'[..0X7]}]-(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]})))) On Match Set `4esn`+=$`8esn`[0xabc][Null],@usn5+=0.0 In `6esn` In $@usn5"), + octest_legacy:ct_string("Detach Delete {@usn5}[..{12}][..0x0],{#usn8}[#usn7..{`2esn`}] Start _usn3=Relationship:#usn7({`4esn`}) "), + octest_legacy:ct_string("Match (_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}),Shortestpath(((`1esn` :`4esn`:@usn6))) Optional Match usn1=(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})-[``:usn2|#usn7 *..0Xa]->(#usn8 {@usn5:_usn4 Is Null})<-[`1esn`?:`3esn`|:@usn5{usn2:Count ( * )[..12][..{@usn6}]}]-(@usn5 {``:`3esn` =~9e0 =~@usn6}),((`2esn` :@usn6)-[_usn3?:@usn6|``]-(usn2 )<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) Using Index `6esn`:`2esn`(`1esn`) Start @usn6=Node:@usn6(_usn4={_usn4}) ,_usn4=Node:usn2(usn2='s_str')Where .e1[0.12] Union All Load Csv From _usn4[Count(*)] As _usn3 Fieldterminator 's_str'"), + octest_legacy:ct_string("Load Csv With Headers From 0.12[999][$#usn8] As #usn7 Merge @usn5=Shortestpath(((_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]}))) On Create Set Filter(`5esn` In $`2esn`[12.e12][$@usn5] Where 12[..$@usn6]).`2esn`! =123456789 Starts With {999} Union Foreach(_usn4 In {usn2} Starts With $`5esn` Starts With {@usn6}| Unwind $`1esn`[#usn8][$@usn5] As _usn4 Start #usn7=Node:_usn4(``=\"d_str\") ,`4esn`=Node:_usn3({123456789}))"), + octest_legacy:ct_string("Remove {``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}}.`7esn`,(:usn2:`2esn`)<-[:@usn5|:`7esn`{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]}).`7esn`!,{`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}}.`3esn`?"), + octest_legacy:ct_string("Start usn1=Rel:_usn4({@usn6}) ,_usn4=Node:@usn5({`3esn`})Where True =~_usn3 =~123456789 Detach Delete 1e1[..$1000][..999],Count(*)[.e12..] Union Match `2esn`=Allshortestpaths((({`6esn`:1.e1[12e12..{`6esn`}]})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}))) Using Scan `8esn`:`8esn`"), + octest_legacy:ct_string("Detach Delete $1000[_usn4..$0][9e12..`3esn`] Return Distinct .e1[0.12] As @usn6 Order By {usn2} Contains .e0 Desc Limit 1e1 Contains usn2 Union All Create Unique `6esn`=((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[:`2esn` *07]-(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]->({``:.e1 Contains $`3esn`})) Load Csv With Headers From @usn5 Contains {0} Contains 9e12 As `` Remove [`3esn` In 123.654[1e1..][{#usn8}..] Where {@usn6} In {#usn7} In 12.e12|123.654 Contains $_usn3 Contains 0X0123456789ABCDEF].usn2?,None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12.e12[``..usn2][{#usn7}..@usn5])._usn3? Union Detach Delete {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}[Any(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3}[..$`8esn`])],{#usn8}[$#usn7..],0xabc[$_usn3..]"), + octest_legacy:ct_string("With *,{999}[9e1] As usn1,{`6esn`} Is Null As `2esn` Skip Allshortestpaths(((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}))) Starts With All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Limit $`3esn` Ends With $999 Ends With 0X0123456789ABCDEF Create (@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}),_usn4=(@usn6 :@usn6{`5esn`:@usn5[$12..\"d_str\"],usn2:1.e1[0X0123456789ABCDEF..]}) Union All Create usn2=Allshortestpaths((({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]}))),(((`2esn` :@usn5{`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]-(:usn1:_usn4{`4esn`:01234567 In $123456789})-[`8esn`?]->({@usn6:$`` Starts With 12 Starts With $usn2}))) Union Merge _usn3=((_usn3 :`1esn`)) Delete 12e12 Ends With `6esn` Ends With {`3esn`} Load Csv From $@usn6[$0..usn1][0X0123456789ABCDEF..$999] As usn1 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Return Distinct {`4esn`:#usn7 =~00,@usn5:usn2[True]} =~`6esn`(Distinct #usn7 =~{`4esn`} =~123456789,1e1[1.e1..][123.654..]) =~Allshortestpaths(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))) As @usn6,{`3esn`}[{123456789}..][{usn1}..],1.e1[12e12..{`6esn`}] As `1esn` Order By 1000 Is Not Null Desc,Allshortestpaths(((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))) Starts With (`1esn` :_usn3{`5esn`:{`8esn`}[..$`6esn`][..123.654],`1esn`:1000 Starts With `7esn`})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Extract(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) Descending,`1esn`(Distinct $usn1 Starts With {_usn3},{#usn8}[$#usn7..]) In Shortestpath((({_usn4:0.12 Starts With 9e12 Starts With $`1esn`}))) In All(`1esn` In $12 Is Not Null Where 12.e12[{@usn5}..][9e1..]) Ascending Limit Extract(usn1 In 12.e12 In {0} In 9e1 Where {_usn4} Is Null|{@usn5}[..{12}][..0x0]) Starts With (@usn6 )<-[?:`6esn`$usn1]->(_usn4 )<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00}) Detach Delete [$`1esn`[$12][Count ( * )],9e1 Ends With $@usn5 Ends With $123456789] Is Not Null Is Not Null,$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],$usn1 Is Not Null Is Not Null Union Delete $usn1[0X7] Union Foreach(#usn8 In Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null)[[{_usn3}[$usn2..],$`3esn`[..$`2esn`][..123.654],12.e12[`7esn`]]..]| Remove Filter(`1esn` In 0.e0 =~`1esn` =~`6esn` Where True[True..]).@usn6,Shortestpath(((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` ))).`2esn`,[7[010][00],$7[$`3esn`],#usn7 =~{`4esn`} =~123456789].#usn8 Create Unique `2esn`=Allshortestpaths((({`6esn`:1.e1[12e12..{`6esn`}]})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}))),usn2=Shortestpath(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))))"), + octest_legacy:ct_string("Using Periodic Commit 7 Load Csv From 0.12[010..][{0}..] As _usn4 Unwind True[..010] As usn1 Create Unique (((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),_usn4=Allshortestpaths((usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}))"), + octest_legacy:ct_string("Create Allshortestpaths((:`8esn`:@usn5{usn2:{1000} Ends With {`8esn`}})<-[#usn7?:usn1 *01..07{`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}]-(:#usn8{`2esn`:12e12 Is Not Null,_usn3:12.e12[2.12..][0xabc..]})),_usn3=Shortestpath((@usn5 {#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(`2esn` :#usn8{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}}))"), + octest_legacy:ct_string("With Distinct {`4esn`:#usn7 =~00,@usn5:usn2[True]} =~`6esn`(Distinct #usn7 =~{`4esn`} =~123456789,1e1[1.e1..][123.654..]) =~Allshortestpaths(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))) As @usn6,{`3esn`}[{123456789}..][{usn1}..],1.e1[12e12..{`6esn`}] As `1esn` Skip (#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) Limit 0Xa Contains Count ( * ) Where {`2esn`} Starts With @usn6 With 0.12 Starts With 9e12 Starts With $`1esn`,{`2esn`} Starts With @usn6 As `3esn` Order By $999 Contains {7} Desc,Shortestpath(((usn1 {``:.e12 =~$_usn4})))[`6esn`(_usn3 Contains .e0 Contains {usn2},`3esn`[07..])][[.e12 Ends With 1000 Ends With 010,Count(*)]] Asc Skip `7esn` Contains {@usn5} Contains $123456789 Union Merge _usn3=((`5esn` :`3esn`:`6esn`)) On Create Set `4esn`+=$`8esn`[0xabc][Null],@usn5+=0.0 In `6esn` In $@usn5 On Create Set #usn7 =`4esn`[usn1],{`2esn`:9e12 Is Not Null Is Not Null}.usn2? =Single(`1esn` In $12 Is Not Null Where 0Xa Contains Count ( * ))[Any(`6esn` In 00)..Allshortestpaths((((:`4esn`:@usn6{@usn6:Count(*)[..``][..#usn8]})<-[``:usn2|#usn7 *..0Xa]->(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]})-[:#usn8|`2esn`]->(`` :usn2:`2esn`))))],``(True[True..],$_usn4).`5esn`? =`4esn` =~12.0 =~{`3esn`} Return Distinct .e1 Starts With {`1esn`} Starts With $_usn3,`2esn` Ends With 12.e12 Ends With `2esn`,@usn6[2.12..$#usn8][`3esn`..{`5esn`}] As `8esn` Skip 07[..`6esn`][..'s_str'] Limit {@usn5}[..{12}][..0x0] Load Csv With Headers From {`2esn`:`8esn`[..`4esn`][..$usn1],@usn6:{123456789}[12..][$12..]} In [$0 Is Not Null,#usn7 Starts With $999,$`6esn`[`8esn`][0.0]] In [$999 Is Null,{``}[010]] As `3esn` Union Load Csv From 0Xa In {usn1} In Null As `3esn` Fieldterminator 's_str' Load Csv With Headers From {7}[$_usn4..Count ( * )] As `7esn` Fieldterminator \"d_str\" Merge @usn5=Allshortestpaths(((:`2esn`)))"), + octest_legacy:ct_string("Foreach(`5esn` In $usn1[False][999]| Detach Delete Single(`1esn` In $12 Is Not Null Where 0Xa Contains Count ( * ))[Any(`6esn` In 00)..Allshortestpaths((((:`4esn`:@usn6{@usn6:Count(*)[..``][..#usn8]})<-[``:usn2|#usn7 *..0Xa]->(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]})-[:#usn8|`2esn`]->(`` :usn2:`2esn`))))],@usn6[2.12..$#usn8][`3esn`..{`5esn`}] Optional Match @usn6=((`4esn` :usn2:`2esn`)) Using Join On @usn5,`3esn` Using Scan `8esn`:#usn8 Where 9e12 Is Not Null) Union All Load Csv With Headers From _usn4[Count(*)] As _usn3 Fieldterminator \"d_str\" With 0Xa Contains #usn8 Contains 1000 Order By 2.12[..$_usn4] Desc,{usn2:$#usn7 Starts With 9e0 Starts With 2.12}[Single(#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 In 01234567 In .e1)..][[.e0[True..Count ( * )][#usn7..0X7],$`` Is Null]..] Descending,{1000} Ends With 0.12 Ascending Skip 1.e1 Ends With 0 Ends With $usn1 Limit $`3esn`[1.0..] Union All Create Unique Shortestpath(((:#usn8{`2esn`:12e12 Is Not Null,_usn3:12.e12[2.12..][0xabc..]})<-[#usn8? *..0Xa{`4esn`:$`2esn` Ends With 0.12 Ends With .e1,`4esn`:07 =~@usn5}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})<-[@usn5:`3esn`|:@usn5 *01..07{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}]->(usn1 :``{_usn3:``[{#usn8}],`3esn`:{`3esn`} Is Null}))) Delete Case When 0.e0 Contains #usn7 Then $_usn4[{``}..][1e1..] When $`2esn`[12.e12][$@usn5] Then $usn1[0X7] End Ends With Extract(`1esn` In $12 Is Not Null Where {`3esn`}[{`5esn`}]) Ends With Case 0Xa[.._usn3][..$`6esn`] When {`4esn`}[$123456789..] Then {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] When {usn2}[$`4esn`] Then $1000 Starts With $`8esn` Starts With {`5esn`} Else @usn6[$_usn4] End,[`8esn` In $12[{7}..0X0123456789ABCDEF] Where 2.12 In $`8esn` In {`7esn`}|12e12 Starts With `1esn` Starts With usn2] Contains Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 9e0[#usn8]) Contains #usn7({`7esn`}[9e1..][@usn6..],{usn2}[$`4esn`]) Create (({`1esn`:{123456789}[12..][$12..]}))"), + octest_legacy:ct_string("Create Unique `8esn`=Allshortestpaths(((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(`1esn` :@usn6))),(:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}) Return Distinct $`2esn`[{usn2}],$`5esn`[$#usn7..][0xabc..] Order By [0.12[..$`6esn`][..$1000],0.12 Starts With 9e12 Starts With $`1esn`,\"d_str\" Contains @usn6 Contains 12.e12] Is Null Ascending,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..])[..{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}][..Filter(`2esn` In {999} Is Not Null Where 010 In `1esn`)] Desc,{999} Ends With 123456789 Ends With {@usn5} Descending Limit $usn1 Contains {`8esn`} Contains $123456789"), + octest_legacy:ct_string("Remove [@usn5 In Null =~12e12 Where _usn4 In $usn1].`6esn`?,Reduce(`4esn`=`3esn`[..{_usn4}][..{@usn5}],`2esn` In {999} Is Not Null|123456789 Starts With {@usn6} Starts With $12).usn2,Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3).`3esn` Foreach(`3esn` In 01234567[$7..{12}]| Create Shortestpath((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Return Distinct *,`` Ends With $`4esn` Ends With 0X0123456789ABCDEF As #usn7,False Contains 0.e0 Contains Count(*) Order By Reduce(usn1=12.0[2.12..][{`5esn`}..],_usn3 In {@usn5}[..#usn7]|1000[$7..$123456789]) Is Null Is Null Desc,[#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 Starts With {_usn3}|@usn6[$12]] Ends With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null] Ends With Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) Ascending Skip $@usn5[`6esn`..] Limit $`4esn`[..7][..{12}]) Start #usn7=Node(999) Union Delete `3esn`(Distinct 12.e12[``..usn2][{#usn7}..@usn5],1000 Is Not Null) In {`1esn`:@usn6[$usn2..#usn7]},0.12[..$`6esn`][..$1000],0X7[{``}..][usn1..] Remove @usn5:``,(`6esn` :_usn3)<-[`1esn`? *0X0123456789ABCDEF{`5esn`:1.e1 Starts With $`2esn` Starts With $0}]->({_usn4:{usn1} =~123.654 =~\"d_str\"}).`2esn` Remove (`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]}).`1esn`?,[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000].usn1?,{`4esn`:0.12 In 0X7}._usn4!"), + octest_legacy:ct_string("Merge _usn3=Shortestpath((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})) On Match Set [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[$`8esn`.._usn3]|{#usn8}[usn1][1.0]]._usn3 ={`1esn`} =~{_usn4},#usn8+=$`5esn`[@usn5..][$``..],Case 12 Starts With $#usn7 When {`4esn`}[{`4esn`}..999] Then 1.e1[12e12..{`6esn`}] When {#usn7} Contains 0.0 Contains $0 Then `3esn` =~9e0 =~@usn6 End.`7esn`? =[$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null][(`1esn` :#usn7)<-[? *0X0123456789ABCDEF]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]})..[{_usn3}[$usn2..],$`3esn`[..$`2esn`][..123.654],12.e12[`7esn`]]] On Create Set #usn7+={`3esn`} Is Null Load Csv With Headers From 0.0 Is Not Null As `6esn` Unwind Extract(@usn5 In Null =~12e12 Where #usn7[$`5esn`..]) Contains {usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1} Contains [_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]] As @usn6 Union Delete 00 =~0.e0 =~$`8esn`,0[{@usn5}..][7..],$`8esn` =~0x0 =~usn2"), + octest_legacy:ct_string("Optional Match `5esn`=Allshortestpaths(((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]}))) Using Index usn1:`3esn`(`3esn`) Using Scan `2esn`:`2esn` Where Count(*) Is Not Null"), + octest_legacy:ct_string("Unwind Null[010..][{``}..] As `3esn` Remove Case #usn8[`7esn`..] When 0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] Then {0}[False..@usn5] End.usn1,None(_usn3 In {@usn5}[..#usn7] Where {@usn6} In {#usn7} In 12.e12).`8esn`,({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[?:@usn6|`` *1000]->(:_usn4{`8esn`:12e12 Starts With `1esn` Starts With usn2})-[`2esn`:`2esn`{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})._usn3! Remove Extract(_usn4 In `2esn` Where 123.654 Starts With $``).usn2 Union Optional Match `7esn`=Shortestpath((((`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})-[_usn3?*..{#usn7:#usn8 =~{999},`8esn`:{_usn3}[`3esn`..$#usn8]}]->({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})-[@usn6 *07{`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}]->({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]})))),`6esn`=Shortestpath(((:#usn8{#usn8:`3esn` Is Not Null Is Not Null}))) Where {0} =~12.0 Start usn1=Relationship:`8esn`(`8esn`={12}) Load Csv From `1esn` In 07 As `8esn` "), + octest_legacy:ct_string("Using Periodic Commit 0Xa Load Csv From `7esn` Contains {@usn5} Contains $123456789 As `6esn` "), + octest_legacy:ct_string("Create _usn4=((`8esn` :@usn6))"), + octest_legacy:ct_string("Load Csv From {#usn8} Ends With 1.0 Ends With 12.0 As `2esn` Fieldterminator 's_str' Unwind 9e0 Contains @usn6 Contains {#usn7} As `` Match ((()-[?:`3esn`|:@usn5 *0x0..{`3esn`:.e1[0.12],`7esn`:$123456789 Starts With .e12}]-(:`6esn`:`8esn`{@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]})-[?:usn2|#usn7]-(`1esn` {#usn7:Count ( * )[$12..]}))),((`4esn` {`1esn`:9e12 Is Not Null Is Not Null})-[?:`7esn` *999{@usn6:{``} Ends With .e12 Ends With 0.e0,`5esn`:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})) Using Scan #usn7:`3esn` Union All Create `3esn`=Allshortestpaths((`7esn` :@usn6)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]})) Union All Remove `5esn`($`7esn` Contains {`1esn`} Contains 9e12).`7esn`!,({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]-(#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})._usn3"), + octest_legacy:ct_string("Merge `2esn`=((`1esn` :@usn5{_usn3:Null Is Null Is Null,``:True[True..]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(#usn7 {`7esn`:12e12 Ends With `4esn` Ends With 123456789})-[:_usn4|:usn1 *07]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})) On Match Set `5esn` =123456789 Is Not Null Is Not Null,`6esn` ={@usn5}[{`5esn`}][$12] Load Csv From $1000 Starts With $`8esn` Starts With {`5esn`} As `` Fieldterminator \"d_str\" Return 010 In $`5esn` In 0 As `6esn` Limit 9e12[$`5esn`]"), + octest_legacy:ct_string("With Distinct (`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] As usn2 Order By All(`6esn` In Count(*) Ends With $`` Ends With {7}) In (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}) Desc Skip `7esn` =~.e12 =~$#usn7 Optional Match @usn6=({`1esn`:$123456789[..$7][..$`6esn`]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]}),`7esn`=(((`8esn` {@usn6:12 Starts With {_usn4} Starts With $#usn8,`3esn`:.e1[@usn5]['s_str']})-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(:`2esn`{`6esn`:@usn6[{0}..]})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:``{`2esn`:Null In .e0,usn1:01234567[..9e1]}))) Where $7[{`1esn`}] Foreach(`` In 9e0 In .e1 In 1.e1| With _usn4 Is Null Is Null,$`5esn` Is Not Null As _usn4 Limit 00 Contains #usn8 Unwind $``[..1.e1][..12] As @usn5) Union Detach Delete {_usn4}[{``}..],All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,9e1[123456789..] Match #usn7=Allshortestpaths(((:`6esn`:`8esn`))),usn1=Allshortestpaths(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))) Using Index @usn5:usn2(`2esn`) Where $0[$1000..00][{0}..{usn1}] Create (:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]}),`4esn`=(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})<-[?:@usn5|:`7esn`]->({`4esn`:_usn4 Is Null Is Null,@usn6:{`5esn`} Contains 's_str' Contains 9e1})"), + octest_legacy:ct_string("Load Csv From `4esn` Starts With $#usn7 As #usn7 Start usn1=Relationship:`8esn`(`8esn`={12}) Where {@usn5}[..#usn7] Union All Create Unique @usn5=Shortestpath(((_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]}))),Allshortestpaths(((`4esn` :_usn4{`2esn`:#usn7 =~00})<-[usn2 *07{usn1:07 =~@usn5}]->(_usn4 {`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]})-[?:`3esn`|:@usn5]-(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}))) Unwind {`8esn`:`2esn` Starts With `` Starts With 1e1} In [usn1 In 00 In {_usn3}] In Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) As usn2"), + octest_legacy:ct_string("Match ((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})-[:`5esn`]-({`7esn`:@usn5[..$@usn5][..0Xa]})-[@usn5? *0x0..{`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}]-(_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null})) Where $1000 =~{1000} =~`5esn` Create #usn8=(@usn6 {``:.e12[\"d_str\"..][.e1..]}) Union All Start `4esn`=Rel:`7esn`(usn2='s_str') Load Csv With Headers From `` Starts With $@usn5 As _usn3 Load Csv From {7}[$_usn3] As _usn3 "), + octest_legacy:ct_string("Merge ((`5esn` )) On Create Set usn2 =_usn4 Contains 0X0123456789ABCDEF Contains {_usn4},Shortestpath((({_usn4:0.12 Starts With 9e12 Starts With $`1esn`})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})<-[@usn6?:#usn7|`2esn` *12..{#usn8:12 Starts With 7 Starts With $`5esn`}]->(usn2 {_usn3:$0 In _usn4}))).@usn5? ={123456789}[{12}..],`2esn` =[`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*)][Extract(`` In {`1esn`} Starts With @usn6 Where $`7esn`[$``..][999..]|.e1 Contains $`3esn`)..Case When 's_str'[.._usn4][..``] Then 123.654 Starts With $`` Else 0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] End] On Match Set ({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]-(#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``}).`8esn`? =Allshortestpaths(((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8?:``]-(`1esn` :`1esn`{`7esn`:{1000}[{usn1}][Null],`3esn`:7[$0..][{_usn4}..]})<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(usn1 {`4esn`:1.0[{999}][$999],``:9e1[9e1...e0]}))) Starts With (`7esn` )-[:_usn4|:usn1 *0X7..0Xa{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]}]-({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null}),`5esn`+=``[..$#usn7] Union All Create (((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})-[`4esn`?:``{usn2:12e12 Ends With `4esn` Ends With 123456789}]->(:`7esn`{usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))),(((#usn8 )-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]})))"), + octest_legacy:ct_string("Create #usn8=Allshortestpaths((({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))) Create (`6esn` :#usn8),Shortestpath(((({`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1})-[`3esn`:`6esn`{`3esn`}]-(#usn8 :`6esn`:`8esn`{`1esn`:9e12 Is Not Null,_usn4:0X0123456789ABCDEF[$`2esn`..][`2esn`..]})<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})))) Union Start _usn4=Rel:_usn4({`2esn`}) ,`5esn`=Node:_usn3(`1esn`='s_str') With {`5esn`:2.12 =~0x0 =~_usn4,`3esn`:$@usn6 Contains `7esn`}[..(#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]})<-[`7esn`?:`7esn` *..7{`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})][..Any(_usn3 In {`2esn`} Ends With {12} Ends With 7)] As #usn8,{`1esn`:{`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`],`5esn`:0.12 Contains 12.0} Ends With [{usn2},0.12[Count(*)..][$#usn7..]] Ends With {0} As #usn8 Limit All(usn1 In 12.e12 In {0} In 9e1 Where {12}[usn2])[Reduce(``=$@usn5[..usn2][..$#usn7],`6esn` In Count(*) Ends With $`` Ends With {7}|{`4esn`}[$123456789..])..][{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]}..] Union Unwind $`3esn`[1.0..] As _usn4 Merge ((`5esn` :@usn6)<-[`2esn`?:@usn6|``]->(`1esn` {_usn4:{1000} Ends With {`8esn`}})<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})) On Create Set _usn4+=Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where 12e12 Is Not Null)[..Reduce(`1esn`=$`3esn` In 9e12 In ``,`2esn` In {999} Is Not Null|$@usn5[..usn2][..$#usn7])],Shortestpath(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))).`7esn`! =1e1[{_usn4}..123.654] On Match Set `1esn`+=`2esn` Starts With `` Starts With 1e1,Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End.`3esn` =$0 Ends With False Ends With $_usn4 Create Unique ((#usn8 :@usn5)<-[_usn3{@usn6:{7} Contains $123456789}]->(:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1}))"), + octest_legacy:ct_string("Foreach(`3esn` In [12e12,123.654 Starts With $``,`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]][Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where `3esn`[..{_usn4}][..{@usn5}])..]| Match @usn5=((({`6esn`:$``['s_str'..][0x0..]})-[_usn3?:`8esn`|:_usn4{@usn6:{`1esn`}[`6esn`..12e12]}]-({``:.e1 Contains $`3esn`})-[`2esn`?:`6esn`]-(:`3esn`:`6esn`{999}))),Shortestpath(((`6esn` {``:`4esn`[usn1]}))) Using Scan _usn4:#usn8 Using Index @usn5:usn1(_usn3) Create (:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]}),`4esn`=(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})<-[?:@usn5|:`7esn`]->({`4esn`:_usn4 Is Null Is Null,@usn6:{`5esn`} Contains 's_str' Contains 9e1})) Union With *,2.12[`8esn`][1e1],$usn1 Starts With {_usn3} As _usn4 Limit {`2esn`} In 0Xa In {_usn3} Delete 01234567[..$`5esn`],{`8esn`}[True..][.e1..],(`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[?:`8esn`|:_usn4{usn1:999[12.0..][#usn7..],@usn5:123.654[$`1esn`..Null][1000..{_usn3}]}]-(`5esn` :@usn6)<-[`7esn`?:@usn5|:`7esn`{`1esn`:{`6esn`} Contains {usn2} Contains $1000}]->(_usn3 :_usn4{`7esn`:00 Starts With $`6esn`,`6esn`:{12}[999][{_usn3}]}) Ends With [_usn4 In `2esn` Where {`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]] Ends With Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $7 In 1.0 In 1e1) Remove (`1esn` :usn2:`2esn`{`1esn`:{_usn3}[$usn2..],_usn3:$@usn6 Starts With $@usn5})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})._usn3? Union All With {`3esn`} =~[1.e1 =~$usn2] =~Filter(`6esn` In 00 Where `5esn`[..9e0][..01234567]) Limit {#usn8} =~{999} =~{#usn7} Where $_usn3[010..False]"), + octest_legacy:ct_string("Load Csv With Headers From $`8esn`[0xabc][Null] As @usn5 Delete {_usn3} Contains $`1esn` Contains 12.0 Union Unwind {`3esn`} Ends With `1esn` Ends With $@usn6 As `2esn` Optional Match Shortestpath((({`1esn`:12 Starts With 0x0})<-[`5esn`{`6esn`:12 Is Not Null Is Not Null,`8esn`:`3esn` Is Not Null Is Not Null}]->(_usn3 {@usn5:.e12 =~.e0}))),`6esn`=(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}) Using Scan `2esn`:@usn6 Using Join On _usn3,`1esn`,`2esn` Where 0X0123456789ABCDEF[0X7..] Union Remove Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999).usn1?,`5esn`($`7esn` Contains {`1esn`} Contains 9e12).`7esn`!,#usn7(Distinct 12[..$@usn6],{0}[False..@usn5]).`1esn` Create (`6esn` :#usn8),Shortestpath(((({`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1})-[`3esn`:`6esn`{`3esn`}]-(#usn8 :`6esn`:`8esn`{`1esn`:9e12 Is Not Null,_usn4:0X0123456789ABCDEF[$`2esn`..][`2esn`..]})<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})))) Foreach(_usn3 In {`3esn`} =~$7| Delete {1000}[{``}][999],`4esn`[{1000}][{`5esn`}])"), + octest_legacy:ct_string("Start #usn7=Node:#usn7('s_str') ,`6esn`=Node:@usn6({999})"), + octest_legacy:ct_string("Using Periodic Commit Load Csv From None(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) Ends With Case When 0x0[{999}..][{_usn4}..] Then Count(*)[.e12] When {_usn4}[...e12][..0xabc] Then Count(*) Ends With $`` Ends With {7} Else ``[{#usn8}] End Ends With Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where 's_str' Starts With 12e12 Starts With $_usn4|True Starts With $`4esn` Starts With 12e12) As usn1 With *,$1000[..{`7esn`}][..#usn7] Order By [1.e1 =~$usn2,1000][[_usn4 In 0.0[..{999}][..0.0] Where 12.e12[{7}..7]]..][All(_usn4 In `2esn` Where $0[`7esn`])..] Asc,`3esn`[$@usn5..@usn5][9e1..$``] Desc,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Descending Skip `2esn`[$1000..9e12][{#usn8}..{7}] Limit [`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]][Reduce(_usn4=$0 Is Not Null,`2esn` In {999} Is Not Null|12.e12[2.12..][0xabc..])..][None(`6esn` In 00 Where {@usn5} Starts With 1.0 Starts With 00)..] Start @usn6=Relationship:`1esn`({@usn5}) "), + octest_legacy:ct_string("Delete 7[1000.._usn3][9e0..\"d_str\"],$`8esn` Is Null Is Null Unwind 12e12 Starts With `1esn` Starts With usn2 As `4esn` Foreach(_usn4 In Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`4esn`} Starts With $7 Starts With $``|0Xa Contains {`7esn`} Contains $999) Contains {`4esn`:0X0123456789ABCDEF[$999..][@usn5..],@usn5:{_usn3}[{0}]}| Create usn1=((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]})),#usn8=Allshortestpaths((:`5esn`:@usn5{usn1:$#usn7[`5esn`]})<-[?:`4esn`|:#usn7]->(_usn4 :#usn8{`5esn`})-[`4esn`?:_usn4|:usn1{@usn6:$#usn7 Ends With 0.12 Ends With {@usn6}}]->(#usn8 {usn1:$123456789 Starts With `5esn`})) With Distinct *,$1000[..{`7esn`}][..#usn7] Order By [1.e1 =~$usn2,1000][[_usn4 In 0.0[..{999}][..0.0] Where 12.e12[{7}..7]]..][All(_usn4 In `2esn` Where $0[`7esn`])..] Asc,`3esn`[$@usn5..@usn5][9e1..$``] Desc,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Descending Skip `2esn`[$1000..9e12][{#usn8}..{7}] Limit [`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]][Reduce(_usn4=$0 Is Not Null,`2esn` In {999} Is Not Null|12.e12[2.12..][0xabc..])..][None(`6esn` In 00 Where {@usn5} Starts With 1.0 Starts With 00)..]) Union All With Distinct *,$`1esn` Ends With {`7esn`} Ends With $_usn3 As `7esn`,{1000} As `` Load Csv With Headers From 01234567[{`7esn`}..] As `7esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("With Distinct *,@usn5 Contains {0} Contains 9e12 Order By {usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}[Reduce(`1esn`={usn1} In Count ( * ),`` In {usn1} Ends With {`6esn`} Ends With 123456789|0[{usn2}..][usn1..])][[`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12]|{``} Starts With 123456789 Starts With usn2]] Ascending,Reduce(usn1=1e1 Contains usn2,`8esn` In $12[{7}..0X0123456789ABCDEF]|#usn7 =~{`4esn`} =~123456789) Contains `3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]) Asc,[False Starts With 010] Contains Extract(_usn3 In True[7][$999] Where 0e0[$#usn8...e12]|12 Is Not Null Is Not Null) Contains [`1esn` In $12 Is Not Null] Asc Limit All(#usn7 In 123.654 Starts With $`` Where 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF) =~[`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]|{#usn8}[2.12]] =~Reduce(usn1=12.0[2.12..][{`5esn`}..],_usn3 In {@usn5}[..#usn7]|1000[$7..$123456789]) Where 1.e1 =~$usn2 Union Match ((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` )),#usn7=((`4esn` :`1esn`)-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})) Using Index _usn3:_usn3(`6esn`) Load Csv With Headers From 0.12[999][$#usn8] As usn1 Union All Merge `2esn`=((`4esn` :`2esn`)) On Create Set `6esn`({`6esn`}[..{`2esn`}]).`7esn` =`4esn` Is Not Null Is Not Null,`6esn` ={_usn3}[usn1][0],Single(`2esn` In {999} Is Not Null Where $7[{`1esn`}]).usn2? ={@usn6}[0Xa..$@usn6][0..`5esn`] Create `6esn`=Allshortestpaths((((@usn6 {usn1:$#usn7 =~{12} =~False})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})))),#usn7=Allshortestpaths((:`5esn`:@usn5{#usn8:123.654[$`1esn`..Null][1000..{_usn3}],`6esn`:12.0 =~$#usn7 =~9e12})-[`1esn`:usn2|#usn7{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]}))"), + octest_legacy:ct_string("Create Unique Allshortestpaths((:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})),#usn8=Allshortestpaths((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null}))) Union Foreach(`8esn` In {7} Starts With $usn1 Starts With 1.0| Unwind Case When 0X0123456789ABCDEF[7...e0][`1esn`..usn2] Then $1000 Starts With $`8esn` Starts With {`5esn`} When usn2 =~0X7 =~{#usn7} Then {`2esn`} In $123456789 In True End[Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`)] As `8esn`) With Distinct Extract(`` In {`1esn`} Starts With @usn6 Where $usn1[@usn6][#usn7]) Contains [`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0}|#usn8 In `8esn` In 07] Order By 01234567['s_str'] Descending,{#usn8} Is Null Is Null Ascending Skip Reduce(`5esn`=#usn7 Starts With $999,`3esn` In 123.654[1e1..][{#usn8}..]|12 Is Not Null Is Not Null) =~{@usn6:`8esn` Contains 1e1} =~(_usn4 :`5esn`:@usn5)<-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(:`4esn`:@usn6{usn1:$7[{`1esn`}],#usn8:\"d_str\"[..0.e0]})<-[#usn8?{`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00}) Where 12.e12[{@usn5}..][9e1..] Start `2esn`=Relationship:usn1(@usn5={1000}) ,@usn5=Node:_usn3({123456789})Where $0 Starts With `2esn` Union All Load Csv From {_usn3}[`3esn`..$#usn8] As `4esn` Fieldterminator 's_str' Remove Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]).#usn7 Load Csv From {_usn4}[{``}..] As #usn8 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Optional Match ((usn2 :_usn3)<-[?:_usn4|:usn1 *..00{`1esn`:{#usn8}[2.12]}]->(:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn8:#usn7|`2esn`]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})),((`8esn` :`8esn`:@usn5)<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})) Where {`3esn`} Is Null Union All Optional Match #usn7=(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}),`6esn`=(({@usn6:Null =~12e12})) Using Index `8esn`:``(@usn5) Using Scan `6esn`:#usn8 Where 00 Union Remove Extract(_usn3 In True[7][$999] Where $usn1[$123456789..0][{`1esn`}..12.0]).`1esn`,(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})-[_usn3?:`8esn`|:_usn4{@usn6:{`1esn`}[`6esn`..12e12]}]-(@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]}).`8esn`! Unwind Extract(@usn5 In Null =~12e12 Where #usn7[$`5esn`..]) Contains {usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1} Contains [_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]] As @usn6 Create ((:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01})<-[`8esn`? *..7{`8esn`:{7}[{`4esn`}][`6esn`]}]->(:`6esn`:`8esn`{`3esn`:$`6esn`[{`3esn`}..12],_usn3:0[{@usn5}..][7..]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->(:`6esn`:`8esn`$usn2)),_usn3=Shortestpath((`6esn` {``:`4esn`[usn1]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]-(#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]}))"), + octest_legacy:ct_string("With Distinct Count ( * ) =~{`5esn`} =~{_usn4} As _usn3,Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999)[..Reduce(``={`8esn`}[True..][.e1..],#usn7 In 123.654 Starts With $``|{usn1}[$`8esn`..0.0])][..Any(`1esn` In $12 Is Not Null Where $12 Is Not Null Is Not Null)] As #usn8 Where {`3esn`} Ends With `1esn` Ends With $@usn6 Union All Return Distinct 12.e12[$`8esn`..{`8esn`}] As `7esn`,{`6esn`}[..{`2esn`}],{123456789}[{12}..] As @usn6 With *,Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*))[Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12)..] As `3esn`,123456789[12..$`4esn`] As `7esn` Skip 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF Where $`3esn` Ends With $999 Ends With 0X0123456789ABCDEF Merge `6esn`=Shortestpath((((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4})))) On Create Set `7esn`+=Reduce(@usn5=True =~{`1esn`},_usn4 In 0.0[..{999}][..0.0]|7[$0..][{_usn4}..]) In Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`) In All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) On Create Set _usn3 ={`1esn`}[$`4esn`..][False..],``+=True =~_usn3 =~123456789 Union Create Unique Allshortestpaths(({`4esn`:#usn8 Is Null})) Return {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}[Any(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3}[..$`8esn`])] As #usn7,(:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})<-[`7esn`?:`6esn`]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})<-[``? *1000]-(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}) In [_usn4 In 0.0[..{999}][..0.0] Where False[999]],{`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]} Ends With {#usn7:$`5esn`[..{`2esn`}][..{0}],@usn6:123.654[1e1..][{#usn8}..]} Ends With Any(_usn4 In `2esn` Where $`2esn`[123.654][1e1]) Order By {123456789}[..'s_str'][..$@usn6] Asc Skip {999} Is Null"), + octest_legacy:ct_string("Foreach(#usn7 In 0Xa Contains {7} Contains {0}| Return 2.12 =~0x0 =~_usn4,.e12 Contains $`1esn` Contains $@usn6) Foreach(_usn3 In Count(*)[.e12..]| Match `8esn`=(({`1esn`:12 Starts With 0x0})<-[`5esn`{`6esn`:12 Is Not Null Is Not Null,`8esn`:`3esn` Is Not Null Is Not Null}]->(_usn3 {@usn5:.e12 =~.e0})),`4esn`=Allshortestpaths(((`4esn` :`1esn`)-[`6esn`?*..{`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}]->({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6}))) Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]) Union All Delete .e1[..\"d_str\"],[0X0123456789ABCDEF[$999..][@usn5..]] Contains Reduce(#usn7={12}[999][{_usn3}],`2esn` In {999} Is Not Null|$usn1 =~010 =~07) Contains None(`1esn` In `3esn`[07..])"), + octest_legacy:ct_string("With *,None(`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}])[[123.654[1e1..][{#usn8}..],$#usn7[123.654]]] As `1esn` Order By None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] Desc,Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 9e12 Is Not Null Is Not Null) Is Null Is Null Descending Skip Single(_usn3 In True[7][$999]) Is Not Null Is Not Null Limit $1000[..12.0][..0e0]"), + octest_legacy:ct_string("Remove usn2(Distinct 1e1[..01],$123456789 Is Not Null).@usn6 Union Create ((usn1 :usn1:_usn4)-[`6esn`?:@usn5|:`7esn`]->(`2esn` :@usn5{@usn5:{`2esn`} Is Not Null Is Not Null})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(:`2esn`{`2esn`:123456789[0..]})),usn1=((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7))"), + octest_legacy:ct_string("Detach Delete $`5esn` Is Not Null Delete 0Xa[..07] Union Foreach(`7esn` In Reduce(@usn5={`1esn`} In 12.e12 In 9e1,`5esn` In $`2esn`[12.e12][$@usn5]|$`6esn` Ends With {0} Ends With {`7esn`}) Is Null| Delete Count(*)[.e12],All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,#usn7(01 =~$`1esn`) =~{@usn6:12.e12[$`8esn`..{`8esn`}],#usn8:#usn7 =~00} Load Csv With Headers From \"d_str\" Ends With False Ends With {@usn6} As usn1 Fieldterminator 's_str') Load Csv From 0e0[..{999}] As _usn4 Return 0.e0 Ends With False As `` Skip Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*))[Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12)..]"), + octest_legacy:ct_string("Merge `4esn`=(((#usn7 :#usn8{_usn3:`1esn`[..00][..{7}]})<-[`2esn`?{`3esn`:$7 In 1.0 In 1e1,@usn5:{@usn6} Contains 123.654 Contains 01}]->(:`1esn`{_usn4:{`6esn`} Ends With 0e0 Ends With {``}})-[`8esn`?{@usn5:Null Is Null Is Null}]->({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null}))) With Distinct 1.e1[12e12..{`6esn`}] As @usn5,12[12e12] Order By {`4esn`} In _usn4 Desc,Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}])[[#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}]..{`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}][Case When 2.12 =~0x0 =~_usn4 Then .e1[@usn5]['s_str'] When $@usn5 In $usn2 In {1000} Then {0}[False..@usn5] Else {@usn6}[True..{_usn3}] End..`1esn`()] Ascending,999 Starts With 's_str' Desc Skip {@usn6} Contains 123.654 Contains 01 Where {#usn8}[usn1][1.0] Detach Delete {12}[00..{@usn6}][1.e1..0],`1esn`(Distinct $usn1 Starts With {_usn3},{#usn8}[$#usn7..]) Starts With [$_usn4[$`4esn`..$12]] Starts With [`6esn` In 00 Where 0.12 In 0X7|{999} Is Null] Union All Remove Reduce(`4esn`=_usn4 Is Null Is Null,_usn3 In {@usn5}[..#usn7]|$@usn6[$`8esn`..][7..])._usn4? Optional Match (usn2 :`5esn`:@usn5)-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})"), + octest_legacy:ct_string("Load Csv From 12 In 999 As `8esn` Fieldterminator \"d_str\" Match Shortestpath((({`2esn`:{7}[$7..],#usn7:`1esn` In 07})-[? *01..07]->({_usn4:{usn1} =~123.654 =~\"d_str\"}))),usn1=Allshortestpaths(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]}))) Where .e12 =~$_usn4"), + octest_legacy:ct_string("Merge (({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})) On Match Set ({``:$7[{`1esn`}]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(:`6esn`:`8esn`{`3esn`:$`6esn`[{`3esn`}..12],_usn3:0[{@usn5}..][7..]}).`3esn` ={7} Starts With $usn1 Starts With 1.0,(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->({_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}).#usn8? =`3esn`[..{_usn4}][..{@usn5}],Case When #usn8 Is Not Null Then 12.e12 In $0 In $0 Else $`8esn`[..$999][..0] End.`5esn`? =Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..] Union All Merge `2esn`=Shortestpath((((usn2 :``)-[@usn5?:#usn7|`2esn`{`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}]->(`2esn` :@usn6{7})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`)))) On Create Set [`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0}|#usn8 In `8esn` In 07].`6esn`? ={#usn8} Ends With 1.0 Ends With 12.0,`4esn` =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) On Match Set `2esn`+=Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})],`3esn` =$12 Starts With $`8esn`,@usn5 =Reduce(#usn8={`8esn`}[..$`6esn`][..123.654],usn1 In 12.e12 In {0} In 9e1|\"d_str\" =~`1esn` =~{`5esn`}) Return *,$7 In 1.0 In 1e1,0X7 Starts With {999} Starts With 12e12 As @usn5 Skip `6esn` Ends With 2.12 Ends With @usn6 Create `5esn`=Shortestpath(((_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->(`` {``:0x0 =~123.654 =~{999}})-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->(:`3esn`:`6esn`{@usn5:.e12 =~.e0}))),#usn8=Allshortestpaths((_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})-[`1esn`?:_usn3|`8esn` *0xabc..7]->(@usn5 :`6esn`:`8esn`))"), + octest_legacy:ct_string("Create `5esn`=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]}) Return Distinct ``[$0..][`1esn`..] As `4esn`,Allshortestpaths((usn2 {_usn3:$0 In _usn4})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[{`2esn`:1000 Is Null Is Null}]->(:_usn4{`4esn`:`8esn` Contains $`3esn` Contains {`4esn`},_usn3:$12[{7}..0X0123456789ABCDEF]}))[..[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12 Starts With {_usn4} Starts With $#usn8]][..(:``{`1esn`:#usn8 Is Not Null,`5esn`:$@usn6[$0..usn1][0X0123456789ABCDEF..$999]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})-[?:_usn3|`8esn` *12..{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}]-(`6esn` :`2esn`{`7esn`:#usn8 =~{999}})] Order By {12} Starts With #usn8 Starts With 0e0 Descending,0.0 Is Null Asc Skip All(`5esn` In $`2esn`[12.e12][$@usn5] Where 12[..$@usn6]) =~(_usn4 :`7esn`)<-[{`2esn`:1000 Is Null Is Null}]->({`6esn`:7[010][00],#usn8:$usn1 =~010 =~07}) Limit [_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]|0[Count(*)][0e0]] Contains Extract(`` In {`1esn`} Starts With @usn6 Where .e0[..{`5esn`}][..999]|$`3esn`[..$`2esn`][..123.654]) Contains Reduce(`2esn`=$usn1[0X7],@usn5 In Null =~12e12|#usn7 =~{`4esn`} =~123456789)"), + octest_legacy:ct_string("Merge _usn4=Allshortestpaths(((:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})-[?:#usn8|`2esn` *999{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({@usn6:#usn8[$0..False][$`1esn`..$#usn7]})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}))) On Create Set `5esn` =@usn5 In 1e1 Create Allshortestpaths(((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]})<-[:@usn5|:`7esn`{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->({#usn7:123456789[0..]}))),_usn3=(:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})-[`7esn`?:`6esn`]->(`1esn` :_usn4)-[#usn8:_usn3|`8esn`{`6esn`:`5esn` Is Null Is Null}]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]})"), + octest_legacy:ct_string("Merge `2esn`=Shortestpath(((({`7esn`:{@usn5}[..#usn7],@usn6:{_usn3}[`3esn`..$#usn8]})-[?:#usn7|`2esn` *0x0..]->(usn1 :#usn8{``:$7[{`1esn`}]})-[`6esn`?{#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}]-({`3esn`:9e1 =~999})))) On Create Set @usn5+=$@usn6 Ends With 01 Ends With 999,`3esn` =0.e0 =~`1esn` =~`6esn` On Create Set usn1+=[`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]][Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))..],Case {@usn6}[$`7esn`..][False..] When {_usn3} Contains True Contains 0X7 Then $#usn7 =~{12} =~False When $123456789 Is Not Null Then #usn8 =~{999} End.`6esn` =07 Starts With True Starts With 's_str' Delete 0x0 =~123.654 =~{999} Detach Delete $``[01],{999} In 0.0 In {0} Union Start `5esn`=Node:``({`8esn`}) Where {@usn6}[0Xa..$@usn6][0..`5esn`] Return `7esn` Ends With $_usn3 Ends With usn2 As _usn4,1000 Is Null Is Null Order By @usn6[$usn2..#usn7] Ascending,{`3esn`} Ends With 0 Ends With 9e1 Desc Limit {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}[..({``:.e1 Contains $`3esn`})<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})] Foreach(#usn8 In {123456789}[12..][$12..]| Remove Case When $`3esn` In 9e12 In `` Then 9e0[#usn8] When {999} Starts With {12} Then 7 Is Null Is Null End._usn4!,{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}.#usn8 Remove {@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]}.`2esn`!)"), + octest_legacy:ct_string("Merge ({usn1:0[{@usn5}..][7..],`7esn`:{``}[_usn4..$`1esn`]})-[_usn4? *07{1000}]-(`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]}) On Match Set [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 07[..`6esn`][..'s_str']|\"d_str\"[{999}..]].@usn6? =Shortestpath((`6esn` :`7esn`)-[:_usn3|`8esn` *12..{`8esn`:Count(*)[.e12..],`5esn`:{#usn8}[12.0][$@usn6]}]-(`1esn` {_usn4:`3esn`[_usn4..{0}][`5esn`..usn2]})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`)) Contains Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) On Match Set _usn3+=_usn4[Count(*)],usn1 =010 Ends With 01 Ends With {_usn3},@usn6+=\"d_str\"[{`8esn`}..] Start usn1=Node:_usn4({`8esn`}) ,_usn3=Relationship:#usn8('s_str')"), + octest_legacy:ct_string("Unwind $@usn5[$`4esn`][$@usn6] As usn2 Unwind [1.e1 =~$usn2,@usn6[{0}..],@usn5[12.0][{1000}]][@usn6()..Case {@usn5}[..@usn6] When $`2esn` Starts With {`8esn`} Starts With {usn1} Then {``} Is Null Is Null Else 123456789 Ends With usn1 Ends With usn2 End] As `3esn` Create `4esn`=((:#usn8{#usn8:`3esn` Is Not Null Is Not Null})),``=Shortestpath((((`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})))) Union All Optional Match (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` )) Merge `3esn`=Allshortestpaths((usn1 :usn1:_usn4)) On Create Set Single(_usn4 In `2esn` Where 9e12 Is Not Null Is Not Null).@usn5 =Allshortestpaths(((`6esn` :`8esn`:@usn5)<-[`2esn`?:#usn7|`2esn` *..01234567{``:{usn1} Ends With {`6esn`} Ends With 123456789,`5esn`:{999} Is Null}]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[usn1:usn1{`3esn`:\"d_str\" Ends With False Ends With {@usn6},`5esn`:`4esn` Contains #usn8 Contains 7}]->(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})))[{`2esn`:`5esn` Is Null Is Null}] Unwind Reduce(`8esn`={`2esn`} Starts With @usn6,`3esn` In 123.654[1e1..][{#usn8}..]|0X0123456789ABCDEF[$999..][@usn5..]) Is Null Is Null As _usn4"), + octest_legacy:ct_string("Foreach(`5esn` In 0Xa[0e0..{#usn7}]| Optional Match Allshortestpaths(((`5esn` :@usn6)<-[`2esn`?:@usn6|``]->(`1esn` {_usn4:{1000} Ends With {`8esn`}})<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}}))),@usn6=Allshortestpaths((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(@usn5 :`8esn`:@usn5)<-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(:`6esn`:`8esn`{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}}))) Union All Merge usn1=((:`2esn`$1000)-[_usn3?:`8esn`|:_usn4{@usn6:{`1esn`}[`6esn`..12e12]}]-(@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})) On Match Set `8esn` =[`` In {`1esn`} Starts With @usn6 Where 0Xa[$1000..$123456789]] Starts With (`7esn` )-[:_usn4|:usn1 *0X7..0Xa{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]}]-({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null}) Starts With Allshortestpaths((`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})),[$0[`7esn`],0.12 Contains 12.0,True Is Null Is Null].`3esn`? =`2esn` Ends With $`4esn` Ends With {#usn7} Create ((`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]-(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->({_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})) With Distinct *,{`7esn`:{999} Starts With {12},`3esn`:00} =~[0X0123456789ABCDEF[$`5esn`..],#usn7 Ends With $#usn7 Ends With {`8esn`}] =~[{12} =~0.e0 =~{_usn3},$#usn7 =~{12} =~False,1000 Is Null] As `8esn` Order By $999 Contains {7} Ascending,None(`6esn` In 00 Where 0.12[..$`6esn`][..$1000])[Case _usn4 Is Null Is Null When 07 Is Null Then False Contains $#usn8 Contains 9e1 End..`2esn`(Distinct #usn8[`7esn`..])][[_usn4 In 0.0[..{999}][..0.0] Where 12 Ends With 01|0.0 Is Not Null Is Not Null]..[Null Is Null Is Null,12e12 Ends With `4esn` Ends With 123456789,{@usn6} Is Not Null]] Desc Limit usn1 In 00 In {_usn3} Union Delete {`4esn`:#usn7 Starts With 1000 Starts With .e1}[Reduce(`4esn`=Count(*) In 0e0 In 9e1,`1esn` In 0.e0 =~`1esn` =~`6esn`|#usn8 In `8esn` In 07)..(@usn5 {`2esn`:1.e1 =~9e12 =~`4esn`})<-[@usn5?:usn1 *..010{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}]->(`8esn` :`1esn`{usn2:0.0 Is Not Null,usn2:0.12[Count(*)..][$#usn7..]})-[`5esn`{`7esn`:@usn5[..$@usn5][..0Xa]}]->(#usn7 :#usn8{_usn3:`1esn`[..00][..{7}]})][Shortestpath((({`7esn`:{`1esn`} =~{_usn4}})-[_usn3?:usn1 *12..{#usn7:0e0 Contains `3esn` Contains `7esn`}]-(`5esn` $`8esn`)))..[`2esn`,{`2esn`} Starts With @usn6,9e1 =~999]],$`8esn` In 0.0 In `1esn`,{usn1} =~123.654 =~\"d_str\" Foreach(`8esn` In Shortestpath(((:@usn6{usn2:{#usn8}[12.0][$@usn6]})<-[{_usn4:{1000} Ends With {`8esn`}}]-(@usn5 :`7esn`{_usn3:{``}[_usn4..$`1esn`]})<-[#usn8? *..0Xa{`4esn`:$`2esn` Ends With 0.12 Ends With .e1,`4esn`:07 =~@usn5}]-(:`3esn`:`6esn`{999})))[..Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where Count(*) Ends With 123.654 Ends With $12|0Xa[$1000..$123456789])][..{@usn6:12 Starts With {_usn4} Starts With $#usn8}]| Match _usn3=(@usn6 :@usn6),usn2=((_usn4 :#usn7{`8esn`:$999 Contains {7}})<-[`4esn`:`4esn`|:#usn7{`2esn`:{`4esn`}[$_usn4..][9e0..]}]-(`6esn` )) Using Index `3esn`:#usn7(usn2)) Foreach(@usn5 In [`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]][..Reduce(`4esn`=@usn5[12.0][{1000}],_usn4 In `2esn`|0[$`6esn`...e1][`1esn`..$`7esn`])][..[7[010][00],$7[$`3esn`],#usn7 =~{`4esn`} =~123456789]]| Match @usn6=Allshortestpaths(((:#usn8{#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})-[_usn4 *0x0..]-(:#usn7{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}}))))"), + octest_legacy:ct_string("With Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))[All(`2esn` In {999} Is Not Null Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF)][Shortestpath((:_usn3{_usn3:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF,`5esn`:1.0 Is Null Is Null})<-[`3esn`:`6esn`{`3esn`}]-(_usn4 :#usn7{_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})<-[ *123456789..0X7]-(`2esn` :`2esn`{`3esn`:#usn8 =~{999}}))] As `4esn`,$7 In 1.0 In 1e1,12.0[010] Where 0.0 Contains $_usn4 Contains {`2esn`} Foreach(#usn8 In 010 Is Not Null Is Not Null| Start usn1=Node:_usn3(_usn3='s_str') ,`3esn`=Node:``(_usn3={0})) Return Distinct 123456789[12..$`4esn`] As `7esn` Order By 9e1 Contains .e1 Contains $`2esn` Ascending,$`5esn`[`1esn`..$123456789] Desc Skip $0[..{usn2}][..$usn1] Limit 9e1[$_usn4..0xabc] Union Remove Shortestpath(({`4esn`:12 Starts With {_usn4} Starts With $#usn8})<-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})-[_usn3?:`8esn`|:_usn4{@usn6:{`1esn`}[`6esn`..12e12]}]-(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})).`6esn`,Case `6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}] When 1.e1[..12.e12][..$usn2] Then $_usn3[{999}] When $7 Is Null Then `1esn` =~1000 =~1000 Else 9e12[$`5esn`] End.`3esn`?"), + octest_legacy:ct_string("Remove `4esn`:`6esn`:`8esn`,(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[@usn5:`8esn`|:_usn4]->(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]})-[`6esn`?]->(:usn2:`2esn`{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}).``?,{`2esn`:{#usn8} =~{999} =~{#usn7}}._usn4? Start `3esn`=Node:`2esn`(@usn6={`4esn`}) Where False[999] Union All Remove [0X0123456789ABCDEF[$`5esn`..],$999 Is Null,{`4esn`}[{`4esn`}..999]].`2esn`!,Reduce(usn1=$@usn5[`1esn`..],`8esn` In $12[{7}..0X0123456789ABCDEF]|9e12[..0X7]).`6esn`?,({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]-(#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})._usn3 Start _usn3=Node:`7esn`({#usn8}) Where {999} Is Null Create Unique ((_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->(`` {``:0x0 =~123.654 =~{999}})-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->(:`3esn`:`6esn`{@usn5:.e12 =~.e0})),(((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4}))) Union Foreach(`5esn` In 9e1['s_str'..0xabc]| Detach Delete $@usn5 In 's_str' In $12,Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]}))) Ends With Case When $``['s_str'..][0x0..] Then 9e12[..0X7] Else $1000[..$999] End,{`7esn`} Ends With `` Ends With {`8esn`} Create `5esn`=Allshortestpaths(((({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2})<-[:_usn4|:usn1 *07]-(#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})))),`8esn`=(({`1esn`:12 Starts With 0x0})<-[`5esn`{`6esn`:12 Is Not Null Is Not Null,`8esn`:`3esn` Is Not Null Is Not Null}]->(_usn3 {@usn5:.e12 =~.e0}))) Return Distinct 12.e12[``..usn2][{#usn7}..@usn5] As #usn7,$`1esn`[#usn8][$@usn5] Skip 0.0[..{999}][..0.0] Limit [.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]] Is Not Null Create Unique (({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]})),Allshortestpaths((((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))))"), + octest_legacy:ct_string("Load Csv From Shortestpath((_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]) In Shortestpath(((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}))) As #usn7 "), + octest_legacy:ct_string("Create Unique Shortestpath((((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4})))) Union Unwind [@usn5[..$@usn5][..0Xa],{`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`]] In Filter(_usn4 In 0.0[..{999}][..0.0] Where True Starts With $`4esn` Starts With 12e12) As `6esn` Unwind 0X7 Is Null As `2esn` Unwind {`7esn`}[..9e12][..0.0] As #usn7 Union Remove None(#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}).`6esn`,{`1esn`}.`6esn`? Merge `1esn`=({`4esn`:#usn8 Is Null}) On Match Set @usn5+=usn2 =~0X7 =~{#usn7},usn1 =[False Starts With 010] Contains Extract(_usn3 In True[7][$999] Where 0e0[$#usn8...e12]|12 Is Not Null Is Not Null) Contains [`1esn` In $12 Is Not Null],usn2 =$`4esn` Starts With 9e12 On Match Set [$1000 Is Not Null Is Not Null].``? =7 In 1.e1 In $usn1,`4esn`(Distinct 00[Count(*)...e0][$#usn7..0X0123456789ABCDEF],`3esn`[..{_usn4}][..{@usn5}]).`8esn` =$`6esn`[`8esn`][$`5esn`],Any(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $7[{`1esn`}]).usn2! =Null[010..][{``}..] Remove `7esn`(Distinct {999} Starts With {12},999 Ends With .e12 Ends With .e1).@usn5"), + octest_legacy:ct_string("Using Periodic Commit 999 Load Csv From `8esn` Contains 1e1 As `4esn` "), + octest_legacy:ct_string("Return *,{@usn6}[True..{_usn3}] As `2esn`,1.e1 In 0Xa In $#usn8 As usn2 Order By @usn6[{0}..] Ascending Skip {#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null Limit $1000 Is Null Is Null Match Allshortestpaths(((_usn4 :@usn6)-[`5esn`?:@usn5|:`7esn`]-(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]}))),Shortestpath(((`` {``:0x0 =~123.654 =~{999}})-[{`2esn`:``[{123456789}..]}]->(#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]}))) Where Count ( * )[Count ( * )][12] Merge Shortestpath((((usn1 :@usn5)-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[#usn7? *999{usn2:{1000}[{``}][999]}]-({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})))) On Create Set Filter(`1esn` In `3esn`[07..] Where 9e12 Is Not Null).@usn5! =07 =~$`8esn` =~9e1,`4esn` =Reduce(usn1=$#usn7 Ends With 0.12 Ends With {@usn6},_usn3 In {`2esn`} Ends With {12} Ends With 7|{0} Is Null) Is Not Null Is Not Null On Create Set `8esn` =(`4esn` :_usn4{`2esn`:#usn7 =~00})<-[``?:#usn8|`2esn`]->(:`8esn`:@usn5)<-[`2esn`?:@usn6|`` *..00]->({_usn3}) Starts With Case {`4esn`}[$123456789..] When $`2esn` Starts With {`8esn`} Starts With {usn1} Then {``} Is Null Is Null When #usn7 Contains {`3esn`} Contains $`6esn` Then $123456789 =~`4esn` End Starts With [123.654 Ends With usn2 Ends With 0],`1esn` =None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])],Case When 0X0123456789ABCDEF[0X7..] Then 01234567[..9e1] Else {999}[$123456789..][12..] End.``! =12.e12[$`8esn`..{`8esn`}]"), + octest_legacy:ct_string("Load Csv With Headers From 's_str'[$usn2][Count(*)] As @usn5 Fieldterminator 's_str' Union Start `7esn`=Rel:_usn4({`2esn`}) "), + octest_legacy:ct_string("Merge usn1=Shortestpath((((usn1 :@usn5)-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[#usn7? *999{usn2:{1000}[{``}][999]}]-({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})))) On Match Set None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where `7esn` Starts With 0X7 Starts With $`7esn`).`7esn`! =$_usn3 In 0X7 In $`1esn` On Match Set #usn7 =0.0[..{999}][..0.0],{`3esn`:$#usn7 =~{12} =~False,usn2:$@usn6[$`8esn`..][7..]}.@usn5? ={@usn6} Contains 0e0,Case When $1000[..12.0][..0e0] Then $_usn3 Is Null Is Null When `3esn` Is Not Null Is Not Null Then 7 Contains `2esn` Contains $`8esn` Else {`4esn`}[..{`4esn`}] End.usn2! ={`8esn`:{#usn8}[$#usn7..]}[Case 12.e12[``..usn2][{#usn7}..@usn5] When `3esn` Is Not Null Is Not Null Then 7 Contains `2esn` Contains $`8esn` Else $``[..1.e1][..12] End..] Union All Load Csv From _usn4[['s_str'[..0X7],False Contains 0.e0 Contains Count(*)]..] As `` Remove {_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}.#usn7!,Extract(_usn3 In {@usn5}[..#usn7]).`4esn`? Remove `1esn`:_usn4,[_usn4 Is Null Is Null].usn1,{@usn6:True =~_usn3 =~123456789}._usn4"), + octest_legacy:ct_string("Unwind `7esn` Is Not Null Is Not Null As `6esn` Delete [`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]][{#usn8:`6esn` Ends With 2.12 Ends With @usn6,`1esn`:{`8esn`}[True..][.e1..]}..All(`6esn` In 00 Where 0X0123456789ABCDEF Is Null Is Null)] Foreach(@usn6 In count(Distinct 999[12.0..][#usn7..]) =~Allshortestpaths(((usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}))) =~@usn6(`8esn` Starts With {123456789},$`` Starts With 12 Starts With $usn2)| Create Unique (#usn8 :`7esn`),`3esn`=Shortestpath((:_usn4)-[`6esn`?{#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}]-({`3esn`:9e1 =~999})-[`3esn`? *01..07]->({`7esn`:@usn5[..$@usn5][..0Xa]}))) Union Detach Delete @usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2) Start `2esn`=Relationship:#usn7('s_str') Merge `8esn`=Shortestpath((:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}}))"), + octest_legacy:ct_string("Detach Delete 12.e12[{@usn5}..][9e1..] Union All Remove [_usn3 In True[7][$999] Where Count(*) Is Not Null].`7esn`,Reduce(`1esn`=0.12 Contains 12.0,`` In {`1esn`} Starts With @usn6|`5esn`[0xabc..])._usn4?,All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0.12[..$`6esn`][..$1000]).@usn6? Union Foreach(usn1 In {`4esn`:12 Starts With {_usn4} Starts With $#usn8} =~Reduce(@usn5=$@usn6 =~#usn8,`5esn` In $`2esn`[12.e12][$@usn5]|{`1esn`} In 12.e12 In 9e1)| Start `3esn`=Relationship:`2esn`(#usn7={usn1}) ,`5esn`=Relationship:`7esn`({#usn8})) Merge (((`2esn` :@usn5{`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]-(:usn1:_usn4{`4esn`:01234567 In $123456789})-[`8esn`?]->({@usn6:$`` Starts With 12 Starts With $usn2}))) On Match Set `6esn`($usn1 Starts With $999 Starts With {@usn5},#usn7 =~00).usn2! =Case 0Xa[.._usn3][..$`6esn`] When {`4esn`}[$123456789..] Then {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] When {usn2}[$`4esn`] Then $1000 Starts With $`8esn` Starts With {`5esn`} Else @usn6[$_usn4] End[(`8esn` :`2esn`)-[`8esn`]->(`8esn` :`8esn`:@usn5)..],`7esn`+='s_str' Starts With 12e12 Starts With $_usn4,(#usn7 {`7esn`:12e12 Ends With `4esn` Ends With 123456789})<-[``{`3esn`:{`3esn`}[{`5esn`}]}]-({@usn5:``[{123456789}..]}).`8esn`? =Reduce(`4esn`=@usn6[$_usn4],`8esn` In $12[{7}..0X0123456789ABCDEF]|0.12 Starts With 9e12 Starts With $`1esn`)[Reduce(usn2={`7esn`}[0X7..][0x0..],_usn3 In {`2esn`} Ends With {12} Ends With 7|01[..{`7esn`}][..01234567])][(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})-[_usn4 *0x0..]-(:#usn7{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})] Create @usn6=((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1))"), + octest_legacy:ct_string("Return Filter(`1esn` In `3esn`[07..] Where 12 Ends With 01)[..All(`3esn` In 123.654[1e1..][{#usn8}..] Where 0Xa Contains Count ( * ))] As usn2,Allshortestpaths((usn2 {_usn3:$0 In _usn4})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[{`2esn`:1000 Is Null Is Null}]->(:_usn4{`4esn`:`8esn` Contains $`3esn` Contains {`4esn`},_usn3:$12[{7}..0X0123456789ABCDEF]}))[..[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12 Starts With {_usn4} Starts With $#usn8]][..(:``{`1esn`:#usn8 Is Not Null,`5esn`:$@usn6[$0..usn1][0X0123456789ABCDEF..$999]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})-[?:_usn3|`8esn` *12..{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}]-(`6esn` :`2esn`{`7esn`:#usn8 =~{999}})],00 Ends With `8esn` As #usn7 Skip Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3]..`1esn`(Distinct $@usn5[`6esn`..],9e12[..0X7])][Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}))..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]})] Limit `4esn`[usn1] Union All Merge `6esn`=Shortestpath(((#usn7 :_usn3{`2esn`})<-[@usn6?:`1esn`|:`3esn` *..0Xa{`1esn`:12 Starts With 0x0}]->(#usn7 :_usn3{`2esn`})<-[?:`1esn`|:`3esn`{#usn8:$0 Is Not Null,``:True Is Null Is Null}]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0}))) On Match Set Case When .e1 Contains $`3esn` Then `7esn` Ends With $_usn3 Ends With usn2 When 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF Then 2.12 =~0x0 =~_usn4 Else 9e1 =~999 End.`3esn`! =$`2esn` In .e1 In .e0,`5esn` ={12}[usn2],usn2+=usn2[999..] On Create Set `4esn`+={usn2:{`1esn`} Is Not Null} In {`3esn`:$#usn7 =~{12} =~False,usn2:$@usn6[$`8esn`..][7..]} In Allshortestpaths(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))) Load Csv From 999 Ends With {`2esn`} As `1esn` "), + octest_legacy:ct_string("Merge ((:`8esn`:@usn5{`5esn`:$`8esn`[..$999][..0],#usn7:$1000 =~{1000} =~`5esn`})) Union Merge `1esn`=((`5esn` :_usn3)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0}))"), + octest_legacy:ct_string("Detach Delete Single(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2])[(_usn3 {usn1:0Xa[0e0..{#usn7}],`1esn`:.e0[True..Count ( * )][#usn7..0X7]})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1})..],`6esn`[00..][$123456789..],$usn2 Ends With $`5esn`"), + octest_legacy:ct_string("With Distinct *,12e12[{usn2}..][`8esn`..] As `7esn` Order By usn2(0.0 Is Not Null Is Not Null,{123456789} Is Not Null)[None(`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12])..[_usn4 In `2esn` Where False Ends With $``|9e0[#usn8]]][(`3esn` :`3esn`:`6esn`)-[]->(`7esn` :#usn8)..[0X0123456789ABCDEF Contains $`1esn` Contains 1000,0e0[$#usn8...e12],.e12 Is Null Is Null]] Desc,$`2esn`[{usn1}..] Descending Where 12.e12[..1e1] Foreach(`` In Single(`8esn` In $12[{7}..0X0123456789ABCDEF])[Case 9e1[123456789..] When 12 Starts With 7 Starts With $`5esn` Then {_usn3} Contains True Contains 0X7 When `1esn`[..00][..{7}] Then 1.e1[12e12..{`6esn`}] End..]| With Distinct *,Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End[None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])][count(Distinct $`5esn`[$#usn7..][0xabc..])] As `2esn`,12 Is Not Null Is Not Null As #usn8 Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}])[[#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}]..{`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}][Case When 2.12 =~0x0 =~_usn4 Then .e1[@usn5]['s_str'] When $@usn5 In $usn2 In {1000} Then {0}[False..@usn5] Else {@usn6}[True..{_usn3}] End..`1esn`()] Ascending) Union Foreach(#usn8 In $usn1 =~010 =~07| Optional Match Shortestpath(({``:.e1 Contains $`3esn`})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})),Allshortestpaths((:usn1:_usn4{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[`8esn`? *999]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})) Using Scan `2esn`:@usn6)"), + octest_legacy:ct_string("Using Periodic Commit 123456789 Load Csv With Headers From 0.12 Is Not Null Is Not Null As `` Fieldterminator \"d_str\" Optional Match `5esn`=((#usn7 :_usn3{`2esn`})<-[@usn6?:`1esn`|:`3esn` *..0Xa{`1esn`:12 Starts With 0x0}]->(#usn7 :_usn3{`2esn`})<-[?:`1esn`|:`3esn`{#usn8:$0 Is Not Null,``:True Is Null Is Null}]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})),Shortestpath((:`8esn`:@usn5)<-[?:`1esn`|:`3esn`{#usn8:$0 Is Not Null,``:True Is Null Is Null}]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})) With Distinct *,Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF) Ends With Case {`2esn`}[..{@usn6}][..1.e1] When Null Is Null Is Null Then #usn7 Contains {`3esn`} Contains $`6esn` When 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Then $usn1[..'s_str'][..$#usn8] End Ends With Filter(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789}) As `8esn` Skip {`5esn`} Contains 's_str' Contains 9e1 Limit Shortestpath(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(:#usn8)<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})))[False..][({`1esn`:{123456789}[12..][$12..]})-[?:`1esn`|:`3esn`{@usn5:{`6esn`} Ends With 0e0 Ends With {``},@usn5:{`1esn`} Starts With `4esn` Starts With {0}}]->(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[`5esn`?:`7esn`]->({@usn5:Count ( * ) Is Null})..]"), + octest_legacy:ct_string("Merge `6esn`=Shortestpath(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})-[?:`8esn`|:_usn4{usn1:999[12.0..][#usn7..],@usn5:123.654[$`1esn`..Null][1000..{_usn3}]}]->(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}))) On Create Set Extract(`1esn` In $12 Is Not Null Where 1e1[..$1000][..999]|True Starts With $`2esn` Starts With {@usn6}).``? =[$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null][(`1esn` :#usn7)<-[? *0X0123456789ABCDEF]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]})..[{_usn3}[$usn2..],$`3esn`[..$`2esn`][..123.654],12.e12[`7esn`]]],usn1 ={usn2} =~`7esn` =~07,usn1+=usn2[999..] Unwind Shortestpath((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})-[`7esn`?:`6esn`]->(`1esn` :_usn4)-[#usn8:_usn3|`8esn`{`6esn`:`5esn` Is Null Is Null}]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))[Extract(`1esn` In `3esn`[07..] Where 999 Starts With 's_str')][Case `8esn` Contains $`3esn` Contains {`4esn`} When 9e1 Ends With $@usn5 Ends With $123456789 Then usn2[True] When 0.e0 =~`1esn` =~`6esn` Then usn2 =~0X7 =~{#usn7} Else 1.e1[..12.e12][..$usn2] End] As #usn7 Return $1000 =~{1000} =~`5esn`,12e12 Is Not Null Is Not Null As `5esn` Order By {#usn8}[Null] Descending,{`4esn`} In _usn4 Asc Limit [Null Is Null Is Null,12e12 Ends With `4esn` Ends With 123456789,{@usn6} Is Not Null][Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[{999}..][{_usn4}..])..] Union Optional Match `4esn`=((`2esn` :`3esn`:`6esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-(:`7esn`{``:.e1 Contains $`3esn`})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`8esn`:@usn5)),_usn3=Allshortestpaths(((@usn6 :`2esn`)))"), + octest_legacy:ct_string("Optional Match @usn6=Shortestpath(((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}))) Using Index `7esn`:`6esn`(`3esn`) Using Scan usn1:usn2 Where 12.e12[``..usn2][{#usn7}..@usn5] Union Optional Match `6esn`=(`4esn` {`2esn`:@usn5[$12..\"d_str\"]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]-({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000}) Where 999 Starts With 's_str' Union Create Unique ($`5esn`)-[?:`3esn`|:@usn5]-(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}),usn1=Allshortestpaths((:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}}))"), + octest_legacy:ct_string("Start usn2=Rel:#usn8(#usn7='s_str') ,`8esn`=Rel:_usn3(`2esn`={`2esn`})Where @usn5 In 1e1"), + octest_legacy:ct_string("Start ``=Node:#usn8({`1esn`}) ,@usn5=Node:``(#usn7=\"d_str\") Return Distinct $@usn6 Ends With 01 Ends With 999 Skip {_usn3} Contains 9e0 Contains $999 Limit Allshortestpaths(((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}))) Starts With All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Create #usn8=(@usn6 {`5esn`:\"d_str\" =~`1esn` =~{`5esn`}}),`5esn`=Shortestpath((`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}))"), + octest_legacy:ct_string("Detach Delete {_usn4}[{``}..],All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,9e1[123456789..] Match #usn7=Allshortestpaths(((:`6esn`:`8esn`))),usn1=Allshortestpaths(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))) Using Index @usn5:usn2(`2esn`) Where $0[$1000..00][{0}..{usn1}] Create (:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]}),`4esn`=(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})<-[?:@usn5|:`7esn`]->({`4esn`:_usn4 Is Null Is Null,@usn6:{`5esn`} Contains 's_str' Contains 9e1}) Union All Start `8esn`=Relationship:`7esn`({usn1}) ,@usn6=Node:`1esn`(\"d_str\")Where @usn6[$_usn4]"), + octest_legacy:ct_string("Load Csv From #usn7(Distinct)[usn2(Distinct)..{#usn7:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:#usn8[$0..False][$`1esn`..$#usn7]}][Case When {`4esn`}[..{`4esn`}] Then {`7esn`}[0X7..][0x0..] When {@usn6} Contains 123.654 Contains 01 Then #usn8 Is Not Null End..[9e12 Ends With 123456789]] As #usn7 Fieldterminator 's_str' Detach Delete `7esn` Is Not Null Is Not Null Union Create Unique Shortestpath((`7esn` {`3esn`:0.0 =~12.e12 =~1.0,`1esn`:$usn1 Starts With {_usn3}})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]-({`7esn`:123.654 Ends With usn2 Ends With 0})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})),`7esn`=((_usn3 :@usn5{`2esn`:@usn5[$12..\"d_str\"]})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})-[_usn3?:``]-(@usn5 {_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})) With Distinct *,(:`7esn`{``:.e1 Contains $`3esn`})<-[?:usn2|#usn7]->(#usn8 :#usn7) As #usn8 Order By `6esn` Is Null Is Null Desc Where {@usn6}[$`7esn`..][False..] Unwind @usn5 =~`` As `2esn` Union Merge #usn8=Allshortestpaths(({`3esn`:0.e0[{999}][{`1esn`}],`1esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[:usn2|#usn7 *0X7..0Xa]->(#usn7 :@usn5)) On Create Set `6esn`+=$7 In #usn8"), + octest_legacy:ct_string("Create (((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),`7esn`=(({`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})) Remove {@usn6:12 Starts With {_usn4} Starts With $#usn8,`2esn`:{@usn6}[$`7esn`..][False..]}.`1esn` Merge `2esn`=((_usn3 :`5esn`:@usn5)<-[`7esn`? *0xabc..7]->(:`6esn`:`8esn`{`3esn`:$`6esn`[{`3esn`}..12],_usn3:0[{@usn5}..][7..]})) On Create Set _usn4 =Filter(`1esn` In $12 Is Not Null Where {@usn5}[1e1..][9e1..]) In [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 12 Starts With {_usn4} Starts With $#usn8] In Filter(`2esn` In {999} Is Not Null Where $7 Ends With 0X7),#usn8 =0Xa[@usn5][{`7esn`}] Union All Load Csv From `5esn`(0X0123456789ABCDEF[9e12])[[`8esn` In $12[{7}..0X0123456789ABCDEF] Where $``['s_str'..][0x0..]]..None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`8esn`}[0X7][$`3esn`])][Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000})..Case 7 Is Null Is Null When usn1 Contains $7 Contains $`` Then 12e12 Is Not Null End] As _usn3 Fieldterminator 's_str' Create _usn4=((`8esn` :`5esn`:@usn5)-[_usn3:#usn7|`2esn`]-(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})) Load Csv From Extract(`2esn` In {999} Is Not Null Where `1esn` Is Null Is Null) Is Not Null As `` Fieldterminator 's_str'"), + octest_legacy:ct_string("Unwind {1000}[{usn1}][Null] As @usn6 Union All Create (`3esn` :`1esn`)-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]}),`1esn`=Allshortestpaths((usn2 :`5esn`:@usn5)) With 's_str'[_usn3..] As `5esn`,{0}[False..@usn5] As `1esn` Skip 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF Return Distinct *,`1esn`[Null..] As `2esn` Order By $7 Is Not Null Descending,Single(`8esn` In $12[{7}..0X0123456789ABCDEF])[Case 9e1[123456789..] When 12 Starts With 7 Starts With $`5esn` Then {_usn3} Contains True Contains 0X7 When `1esn`[..00][..{7}] Then 1.e1[12e12..{`6esn`}] End..] Descending Limit Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..]) Starts With [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]|Count ( * )[..12][..{@usn6}]] Starts With Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where True Starts With $`2esn` Starts With {@usn6})"), + octest_legacy:ct_string("Create Unique #usn7=Allshortestpaths(((`5esn` :`2esn`{#usn8:True[$`7esn`..{1000}]})<-[usn1?:`6esn` *12..{`6esn`:999 Starts With $123456789 Starts With {``}}]->({_usn4}))),((:#usn7{#usn7:$`8esn` In $`2esn` In {7}})) Return 9e1 Ends With Count(*) Ends With False As `6esn` Order By {0} Is Null Ascending Skip .e12[$7..][{`6esn`}..] Limit {`3esn`} Is Not Null Is Not Null Start usn1=Node:_usn3(_usn3='s_str') ,`8esn`=Node(07,123456789,123456789)Where $`4esn`[..'s_str'][..`8esn`]"), + octest_legacy:ct_string("Load Csv From `3esn`[_usn4..{0}][`5esn`..usn2] As usn1 Fieldterminator 's_str' Merge `2esn`=((`7esn` {`4esn`:#usn8 =~{999},`2esn`:9e1 =~`` =~{`7esn`}})) On Create Set _usn4:usn1:_usn4,`7esn` =#usn7[00],``:@usn6 On Match Set `5esn`+=$`3esn` Contains 0 Contains 07,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $#usn7[..@usn6][..$0]).`1esn`? =$1000[0.12..0.12] Start #usn7=Node:#usn7('s_str') Where {12}[00..{@usn6}][1.e1..0]"), + octest_legacy:ct_string("With Distinct [`1esn` In `3esn`[07..] Where @usn6[{0}..]|0.e0[12.e12]] Contains {usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF} As @usn6,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $`5esn`[$#usn7..][0xabc..]) Contains All(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}]) As #usn8 Order By {#usn8} Contains 1000 Contains $`4esn` Ascending,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Ascending Create #usn8=(`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})<-[? *0X7..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Union Remove Case When $0 Is Not Null Then #usn8 Is Not Null Else 01234567[..9e1] End.@usn6,{_usn4:0Xa Contains $``,@usn6:@usn6[$_usn4]}.@usn5 Return Distinct *,{`7esn`:{999} Starts With {12},`3esn`:00} =~[0X0123456789ABCDEF[$`5esn`..],#usn7 Ends With $#usn7 Ends With {`8esn`}] =~[{12} =~0.e0 =~{_usn3},$#usn7 =~{12} =~False,1000 Is Null] As `8esn` Union Optional Match `5esn`=(`8esn` :`5esn`:@usn5)-[`5esn`?:usn2|#usn7]->(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )}) Using Join On `4esn` Using Join On `1esn`,`7esn`,usn2 Where 00 With `7esn`[{usn1}][999] As `7esn`,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..]) Starts With [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]|Count ( * )[..12][..{@usn6}]] Starts With Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where True Starts With $`2esn` Starts With {@usn6}) Order By @usn5 =~$`3esn` =~0X7 Descending Skip {usn1}[01..7][{`3esn`}..`6esn`] Start `2esn`=Rel:usn2(`2esn`={`7esn`}) ,`1esn`=Relationship( {@usn6})Where {`7esn`} Is Not Null Is Not Null"), + octest_legacy:ct_string("Create `5esn`=Shortestpath(((_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->(`` {``:0x0 =~123.654 =~{999}})-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->(:`3esn`:`6esn`{@usn5:.e12 =~.e0}))),#usn8=Allshortestpaths((_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})-[`1esn`?:_usn3|`8esn` *0xabc..7]->(@usn5 :`6esn`:`8esn`))"), + octest_legacy:ct_string("Remove {#usn7:0e0 Contains `3esn` Contains `7esn`}.usn1,Case When $7 Ends With 0X7 Then $1000[..$999] Else $`2esn` In {123456789} End.`6esn`! Start `8esn`=Relationship:`8esn`({`1esn`}) Union All Load Csv With Headers From 0[{usn2}..][usn1..] As #usn7 Union All Foreach(`` In {`1esn`:{123456789}[12..][$12..]} =~{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF} =~[`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`|_usn3[\"d_str\"]]| Create Shortestpath((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->({_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})),Allshortestpaths((#usn7 {``:0x0 =~123.654 =~{999}})) Create _usn3=Shortestpath(((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)))) Create ``=({#usn7:#usn8 =~{999}})-[{`7esn`:01234567 In $123456789}]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Load Csv From $`5esn`[`1esn`..$123456789] As #usn7 "), + octest_legacy:ct_string("Using Periodic Commit 07 Load Csv From $0[..{usn2}][..$usn1] As _usn4 Fieldterminator 's_str' Return Distinct .e1 Ends With {7} Ends With $usn1 As `` Skip Extract(_usn3 In {@usn5}[..#usn7] Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000|$`1esn`[#usn8][$@usn5]) Is Not Null Limit `8esn` Contains 1e1"), + octest_legacy:ct_string("Foreach(usn2 In [{@usn5}[..@usn6],$7[{`1esn`}]] Is Null Is Null| Match `5esn`=Allshortestpaths((((:#usn8{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})-[?:`` *..00{``:`3esn` =~9e0 =~@usn6}]-(:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})-[:_usn4|:usn1 *07]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})))),Allshortestpaths(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]}))) Using Index usn1:`7esn`(_usn3) Using Join On `4esn`,`2esn` Where 0xabc[$@usn5] Match `2esn`=Allshortestpaths((({`6esn`:1.e1[12e12..{`6esn`}]})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}))),usn2=Shortestpath(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))) Using Scan ``:`4esn` Using Index `7esn`:`1esn`(`2esn`)) Foreach(`8esn` In 1.0 Is Null| Unwind Reduce(_usn4={123456789} =~01234567 =~`3esn`,_usn3 In True[7][$999]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]) Ends With @usn5(Distinct {0} Is Null) Ends With {`6esn`:`3esn`[..{_usn4}][..{@usn5}],`2esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]} As _usn4 With Distinct _usn4 Is Null Is Null,$`5esn` Is Not Null As _usn4 Order By Shortestpath((`6esn` :`7esn`)-[:_usn3|`8esn` *12..{`8esn`:Count(*)[.e12..],`5esn`:{#usn8}[12.0][$@usn6]}]-(`1esn` {_usn4:`3esn`[_usn4..{0}][`5esn`..usn2]})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`)) Contains Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) Ascending,({`8esn`:Null In .e0})-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}) =~None(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) =~(`6esn` :`2esn`{`7esn`:#usn8 =~{999}})<-[:#usn7|`2esn`]->(:#usn7{usn2:{`8esn`}[0X7][$`3esn`]}) Ascending Skip {`4esn`}[$123456789] Limit Single(`6esn` In 00 Where 0.12 In 0X7)[..{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] Where 0.12 Ends With {1000} Ends With `6esn`) Union Remove Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where $usn1 In 0.12 In $``|Null =~12e12).`7esn`!,{#usn8:12.0 =~$#usn7 =~9e12}.@usn6!,Reduce(_usn3=12 Starts With 0x0,_usn4 In 0.0[..{999}][..0.0]|$usn1[..'s_str'][..$#usn8]).`6esn`! Delete `4esn` =~12.0 =~{`3esn`},Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123456789 Is Not Null Is Not Null) Starts With Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999) Starts With Reduce(usn2=1.e1 =~`2esn`,@usn5 In Null =~12e12|Count(*)[..``][..#usn8]),[#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 In 01234567 In .e1|{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]] =~Extract(`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]|$usn1 In 0.12 In $``) =~Single(_usn3 In {@usn5}[..#usn7] Where {`4esn`}[..07][..$`6esn`]) Union With Distinct *,Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End[None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])][count(Distinct $`5esn`[$#usn7..][0xabc..])] As `2esn`,12 Is Not Null Is Not Null As #usn8 Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}])[[#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}]..{`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}][Case When 2.12 =~0x0 =~_usn4 Then .e1[@usn5]['s_str'] When $@usn5 In $usn2 In {1000} Then {0}[False..@usn5] Else {@usn6}[True..{_usn3}] End..`1esn`()] Ascending Remove [01 =~$`1esn`,1.e1[12e12..{`6esn`}],`8esn`].`1esn` Create `6esn`=Shortestpath(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})-[?:`8esn`|:_usn4{usn1:999[12.0..][#usn7..],@usn5:123.654[$`1esn`..Null][1000..{_usn3}]}]->(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}))),`4esn`=Allshortestpaths((((@usn6 {_usn3:{`8esn`}[0X7][$`3esn`],_usn4:$_usn4[9e0..]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-({`6esn`:1000,#usn8:$`5esn`[$#usn7..][0xabc..]})-[?:`8esn`|:_usn4 *12..]->(@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]}))))"). diff --git a/test/performance_statement_SUITE.erl b/test/performance_statement_SUITE.erl index 1005255..a7c3d62 100644 --- a/test/performance_statement_SUITE.erl +++ b/test/performance_statement_SUITE.erl @@ -2,7 +2,7 @@ %%% File : performance_statement_SUITE.erl %%% Description : Test Suite for rule: statement. %%% -%%% Created : 03.10.2016 +%%% Created : 15.12.2016 %%%------------------------------------------------------------------- -module(performance_statement_SUITE). @@ -38,1003 +38,1003 @@ all() -> %%-------------------------------------------------------------------- test_statement(_Config) -> - octest:ct_string("Create ((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[?:usn1|`3esn`{#usn8:1000[..$`6esn`][..0xabc]}]->(:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[``?:usn1|`3esn`]->(:@usn5{#usn7:1e1[@usn5..]})),((`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})-[`3esn`? *999..]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]-(`1esn` :`4esn`:#usn8{_usn4:$_usn4[#usn8..]})) Return Distinct *,$123456789 =~$#usn8 =~$#usn8 Order By $@usn6 Contains 07 Contains 0.e0 Asc Skip 0e0[12][$_usn4] Limit 123.654[12.e12..1e1]"), - octest:ct_string("Delete $_usn4[$`1esn`],[01234567 =~usn1,9e0 =~$`5esn`,usn2[$`1esn`...0]][..[.12 In $999 In `5esn`,010 =~`6esn`,#usn7 Contains .0 Contains .e1]] Unwind $@usn5 Contains $`7esn` Contains #usn8 As `` Union All With *,#usn7 Starts With .e12 Starts With $`7esn` As usn2,{`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) As @usn5 Limit Extract(`4esn` In 's_str'[12..'s_str'] Where 00 Starts With _usn3|$`1esn` Is Null Is Null) Is Null Is Null Remove [@usn5 In .12[#usn7][$`8esn`] Where Count ( * )].`8esn`? Union Merge @usn5=(((_usn3 :_usn3{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[#usn8:`3esn`|:`4esn` *0..010]-(:usn1{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]}))) On Match Set `3esn`(False In `3esn`).`5esn`! =Count ( * )[Count ( * )..12e12][usn1..1000],#usn7 =(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])],#usn7+=00[01234567][False] On Match Set @usn5 =1e1[..#usn8][..'s_str'],`8esn` =usn2[`3esn`][_usn3] Optional Match ((:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]})),((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Where $`4esn`[12.e12..][0.0..]"), - octest:ct_string("Match _usn4=(@usn6 {#usn7:False[`2esn`..#usn8]})<-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]-(`4esn` {@usn6:True[..'s_str'][..01]}),`6esn`=(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]}) Where usn2[$`1esn`...0] With *,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn` Skip 1e1[..False] Limit 12e12[$`5esn`][07] Optional Match #usn7=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))),(((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]-({usn1:0x0[0X7..][usn1..]}))) Union With *,12e12 Is Not Null As usn1 Order By [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]) Asc Skip $`6esn` =~1e1 Limit .12 Is Not Null Is Not Null Where @usn5 Contains $`1esn` Contains 999 Unwind $1000 Starts With .0 Starts With 0.0 As `4esn` Return @usn5[..True][..0X7] As #usn8,[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..] Order By 0 Ends With $7 Ends With _usn3 Ascending Skip \"d_str\"[$`7esn`][$1000] Limit False[0Xa..$@usn5][$`6esn`..12e12] Union Merge `5esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)) Delete 01234567 Ends With 0x0,{@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7),None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`)[`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)..] Remove [Count ( * )[Count ( * )..12e12][usn1..1000],12e12[$`5esn`][07],$_usn3[9e1][$_usn4]]._usn4,_usn4($123456789[..0.12][..#usn7]).`6esn`!"), - octest:ct_string("Unwind {`5esn`:0Xa In .e1 In Count(*)}[$`8esn`][[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7]] As `5esn` Merge `2esn`=(:_usn4:usn1) On Match Set `6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`7esn` =9e1[0.e0..][#usn8..],#usn7+=({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Ends With @usn6(123456789 =~$123456789) Ends With [`1esn` Contains Count ( * ),$@usn6 Contains Count ( * ),False In 123456789 In $0] On Create Set `` =(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[usn1?:`8esn`|:usn1]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Is Null Is Null,`7esn`+=(`7esn` :_usn4:usn1)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`) Starts With ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2) Starts With Extract(usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]|07[`6esn`..][`5esn`..]),`2esn`:`1esn` Merge (((`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`6esn`? *0Xa{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}]-(:`6esn`:`7esn`{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[`1esn`?:`1esn` *01234567..12]-({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}))) On Match Set [usn1 In 00 Starts With _usn3 Where `6esn`[1e1..]].`5esn`! =Count ( * )[Count ( * )..12e12][usn1..1000],@usn5+=usn1 Contains $`` On Match Set `6esn`+=9e0 Is Not Null,``+=`4esn` Ends With 123456789 Ends With @usn5 Union Delete `8esn`[$``] Delete 7[..`1esn`],`6esn` In 1000 In 01234567 Union All Merge `1esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) On Create Set usn1+=Extract(#usn7 In 01234567[$`3esn`..] Where 0X7 In $999 In $``)[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..],Any(_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]).#usn8! =#usn7 Starts With 0x0 Starts With Null Create (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0),((:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]}))"), - octest:ct_string("With Distinct 0x0 In `8esn` In 999,``[$`3esn`][$`2esn`],01234567 Ends With 12.0 Ends With 0X7 Order By Count ( * )[..usn1][..12.e12] Asc,$usn2 Is Not Null Is Not Null Descending Skip `3esn`(Distinct $_usn3[Null],12[..True][..$`4esn`]) Is Null Is Null Detach Delete _usn3 Ends With 12e12 Ends With .e0,({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}) =~None(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Unwind $123456789 In Count(*) In .e1 As usn1 Union With 123.654 Is Not Null Is Not Null As `3esn`,01[Null..][`1esn`..] Where 0X7[0e0..] Union All Return Distinct *,`4esn` Is Null Order By `5esn` In $999 Descending Limit `3esn` =~$`5esn` =~12"), - octest:ct_string("Return *,Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null As `6esn` Union All Merge `2esn`=(:_usn4:usn1) On Match Set `6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`7esn` =9e1[0.e0..][#usn8..],#usn7+=({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Ends With @usn6(123456789 =~$123456789) Ends With [`1esn` Contains Count ( * ),$@usn6 Contains Count ( * ),False In 123456789 In $0] On Create Set `` =(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[usn1?:`8esn`|:usn1]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Is Null Is Null,`7esn`+=(`7esn` :_usn4:usn1)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`) Starts With ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2) Starts With Extract(usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]|07[`6esn`..][`5esn`..]),`2esn`:`1esn` Unwind 12[usn1][True] As @usn6"), - octest:ct_string("Create `1esn`=(((`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}))),(@usn5 {_usn4:_usn3 Ends With 0x0 Ends With 01234567}) Create #usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})),usn1=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) Union With Distinct *,`7esn`[$@usn6..$usn2]['s_str'..1e1] As `3esn`,Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) Skip {@usn5:0.e0[@usn6][0x0]} Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7) Limit \"d_str\" =~12.e12 =~07"), - octest:ct_string("Return Distinct *,`` =~12 =~$#usn7 As _usn4,[$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Skip `3esn`[..7][..12e12] Limit (:`1esn`{`8esn`:Count ( * ) =~Count(*)})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(`1esn` {_usn4:12.e12 Ends With 01 Ends With .e1})[Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8])] Unwind {@usn5:$`3esn`} Starts With .12 As `8esn`"), - octest:ct_string("Optional Match usn2=(:`8esn`{usn2:7 Contains 9e1})<-[_usn3?:`7esn`|`2esn` *010]-(#usn8 :`4esn`:#usn8)-[`8esn` *..0x0{#usn7:Count ( * )[Count ( * )..12e12][usn1..1000],`4esn`:010 Is Null Is Null}]->(@usn6 ) Where .e1 Starts With 0.0 Starts With `6esn` Detach Delete $999[12.0..] Union Optional Match #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))),_usn4=(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) Union All Optional Match `5esn`=(({`2esn`:123456789 Starts With `2esn` Starts With .0,@usn6:$123456789[$`2esn`][True]})-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})-[`4esn`?:`8esn`|:usn1 *..0x0]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}))"), - octest:ct_string("Unwind 0X0123456789ABCDEF Contains $usn1 As ``"), - octest:ct_string("Match `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Where 's_str'[12..'s_str'] Match _usn4=(@usn6 {#usn7:False[`2esn`..#usn8]})<-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]-(`4esn` {@usn6:True[..'s_str'][..01]}),`6esn`=(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]}) Where usn2[$`1esn`...0] Unwind $`1esn`[$usn2..][$1000..] As `3esn`"), - octest:ct_string("Merge @usn6=({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})-[#usn7:`1esn` *07..]->(:`7esn`{``:$`1esn` Starts With @usn6})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) On Match Set `7esn`+=9e0[``][123.654] Union With Filter(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[[1e1[0.0],0 Contains 12e12,$123456789[..0x0][..`4esn`]]] As `3esn`,False[`2esn`..#usn8],00 Is Null Is Null Order By {`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,0.12 In $7 In 0 Desc Skip 9e12[0.0..12.e12] Limit $usn1[.e12..`8esn`][True..$@usn5] Return Distinct *,None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`) Is Null As @usn6,123456789 =~_usn4 =~$0 As usn1 Delete All(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True])[..[`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|_usn3 In .e1 In $12]][..{`2esn`:$usn1[1e1.._usn3][$@usn6..$#usn7]}],0.0[12...12]"), - octest:ct_string("Detach Delete 0x0[$`3esn`],07 In $7 In 12 Union All Remove Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]|@usn6 Contains .e1 Contains $`4esn`).`4esn`!,@usn6:usn2:@usn6,None(`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]).`2esn`! Match usn2=(_usn3 :_usn3),usn1=((:_usn4:usn1{#usn8:$`7esn` Ends With `1esn` Ends With True})-[`7esn`?:usn1|`3esn` *123456789..999{`5esn`:.e1 In $@usn6 In 999}]-(usn2 :#usn8{`3esn`:123.654[@usn5]})) Where 0 Is Not Null Is Not Null Union Create ``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}),(`` :usn1)"), - octest:ct_string("Optional Match ((usn1 :`6esn`:`7esn`)),((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)) Where 07[..010][..12.0]"), - octest:ct_string("Unwind Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) In None(`6esn` In 0X7 =~`` Where 12.e12['s_str']) As `5esn` Union All Return Distinct *,$`3esn` =~Null As usn2 Skip Filter(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null) Ends With [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1] Ends With _usn3(Distinct $123456789 Ends With $`6esn`) Limit `3esn`(Distinct _usn4 Ends With 01 Ends With $`1esn`) Starts With [Count(*) In 01 In .0,`` Starts With 12,$_usn4[$`8esn`..][07..]] Starts With Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12 In $0 In Count(*)) Merge (_usn4 :#usn8)-[`1esn`?:`1esn` *01234567..12]-({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999})"), - octest:ct_string("Unwind 999 Contains `7esn` As `7esn` Union All Unwind usn2[..$`3esn`] As `6esn` Union All Delete [$1000 =~$`7esn`,.12 Starts With @usn5 Starts With $#usn8,0x0[...e12][..@usn5]] Ends With Single(@usn5 In .12[#usn7][$`8esn`]) Create @usn6=(`` :#usn7)<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})<-[`5esn`?:`6esn`]->(`6esn` :`6esn`:`7esn`{_usn4:\"d_str\"}),`6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)})"), - octest:ct_string("Unwind 1e1 In 9e0 In 9e0 As _usn4 Create ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})-[@usn6?:#usn7|:_usn4 *00..]->(`` :@usn5{#usn7:0X7[12]})) Merge `4esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}) On Create Set `3esn`+=(:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]),{`6esn`:$`8esn`[``..][123.654..],``:999[$`6esn`]}.`5esn`? =$_usn4[$`8esn`..][07..] On Create Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8]"), - octest:ct_string("Remove Single(usn1 In 00 Starts With _usn3 Where 07 Contains #usn8 Contains $_usn3).`6esn`,Extract(`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF])._usn3? With Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null As `5esn`,`7esn` Contains .0 Contains 9e12 As usn2 Skip .12 Is Null Limit Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Where True =~@usn5 =~$`1esn` Create (usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}) Union All Remove Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`).@usn6! Return Distinct *,01234567[$@usn6..0X7][$`1esn`..123.654],_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) As #usn8 Skip .e0[..0X0123456789ABCDEF][...e12] Detach Delete 12.e12 Contains $`5esn`,$usn1 In 1000 In $#usn7,12.0"), - octest:ct_string("Match `4esn`=(((`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[?{`4esn`:0.e0 Ends With 12 Ends With $7,@usn6:$``[_usn4..][`7esn`..]}]->(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]}))),((:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Remove Filter(usn1 In 00 Starts With _usn3 Where 12e12[Null]).`7esn`!,Filter(`4esn` In `6esn`['s_str'..][010..] Where 12e12[Count ( * )..][usn2..]).`2esn`! Union All Remove _usn3(Distinct $1000 Contains $`3esn`,7 Contains $`5esn` Contains $usn1).usn2?,{@usn5:0.e0[@usn6][0x0]}._usn4,_usn3:`4esn`:#usn8 Merge `8esn`=(({@usn6:$123456789 Is Null Is Null,@usn6:`6esn`[1.e1..$#usn7][.e0..True]})<-[`5esn`:usn1|`3esn` *010{`2esn`:`6esn` =~01234567 =~0Xa}]->(_usn4 :``)) Union All Remove (:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`2esn`]-(`6esn` :#usn7)-[_usn4?:`6esn`]-(@usn5 :`8esn`).`7esn`,`7esn`(usn2 Is Null Is Null,`6esn` =~$_usn3).`1esn`!"), - octest:ct_string("With Count(*) In 01 In .0,1000 Contains $#usn7 Contains `6esn` Skip (`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`})<-[ *0xabc{`1esn`:123.654 In \"d_str\" In $_usn3}]-({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0}) =~{#usn8:$@usn5[#usn8..][$`1esn`..]} =~{#usn8:0X0123456789ABCDEF[..usn1]} Limit $_usn3[..Count ( * )][..@usn5] Where $123456789 =~$`5esn` =~07 Optional Match `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) With `5esn` In $999 As `6esn` Order By [_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]][[.0 Starts With `2esn` Starts With `6esn`,9e1[0.e0..][#usn8..]]..][[07[$999],9e0 In 01234567,@usn5 In 0X0123456789ABCDEF]..] Asc,False Ends With $`8esn` Asc Where @usn5 Ends With $`3esn` Ends With 12e12 Union Unwind $`1esn` Is Null Is Null As `8esn` Remove `3esn`:#usn8,(`1esn` {@usn6:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,#usn8:\"d_str\" =~`3esn` =~0Xa})<-[#usn7]-({`5esn`:9e1 Starts With _usn3 Starts With `4esn`})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}).`5esn`!,[$`` Ends With 12e12,.12 Starts With .12 Starts With `3esn`,12.e12[0e0..7]].`5esn`? Unwind .e12 Starts With True As `8esn` Union All Return $`4esn`[12.e12..][0.0..],12[`7esn`...0][0.12..``] As @usn6,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Skip $`1esn` Ends With $`1esn`"), - octest:ct_string("Create `6esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Return Distinct .12[#usn7][$`8esn`],12 Ends With 07 Ends With @usn6 As usn1 Order By $999[..`1esn`] Ascending,Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending,[$`8esn` =~$usn2][Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..] Asc Remove ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`5esn`? *010]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null}).`7esn`! Union All Remove ``:#usn7 Union All Remove ({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}).@usn6?"), - octest:ct_string("Delete 01234567 Ends With 0x0,{@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7),None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`)[`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)..] Union All With Distinct 00 Ends With $_usn4 Ends With $`2esn` As `5esn` Order By $`8esn` In \"d_str\" In 9e12 Desc,`3esn`(.e0 =~`5esn`)[Single(`6esn` In 0X7 =~`` Where $`3esn` =~Null)][[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $_usn3[$`4esn`..Null]|False[`2esn`..#usn8]]] Asc,1e1 In 9e0 In 9e0 Ascending Unwind 00 Is Not Null Is Not Null As `` Optional Match ``=((_usn4 )-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})) Where 123456789 =~_usn4 =~$0 Union Create ((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` )),(({_usn3:$0 Ends With $#usn7 Ends With .12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[?:``|:_usn4 *..0X7]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}))"), - octest:ct_string("Return Distinct $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Limit 9e0 Starts With `6esn` Remove (usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})<-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null}).`4esn`!,{#usn8:9e1[0.e0..][#usn8..]}.``,Any(@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]).#usn8 Create _usn3=((:``{`5esn`:.e1 In $@usn6 In 999}))"), - octest:ct_string("Delete $123456789 =~$#usn8 =~$#usn8,Count(*)['s_str'..`1esn`],[@usn5 In 0X7 =~.0 =~\"d_str\"|#usn7 Starts With `1esn`][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn`[...e1][..\"d_str\"])..][`2esn`(Distinct 12e12[Null],0xabc[12.e12..`1esn`])..] Delete {`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[{`4esn`:$7 Ends With 12.0 Ends With 0xabc,_usn4:0X0123456789ABCDEF[.e0..$`4esn`]}..][Extract(`4esn` In `6esn`['s_str'..][010..] Where $999 Ends With $`3esn` Ends With `8esn`)..],`3esn`(Distinct 123456789 =~$123456789)[..(usn1 :`6esn`:`7esn`)-[`2esn`? *0..010]->(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]})][..(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})],Extract(`4esn` In `6esn`['s_str'..][010..] Where 07 In $7 In 12|$#usn8)[{`6esn`:12[usn1][True],`3esn`:$@usn6[..$usn1]}..][{`8esn`:00}..]"), - octest:ct_string("Unwind $12[`3esn`..0e0][`2esn`..$7] As usn2 Merge @usn5=({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)<-[?:usn2|#usn8{#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7}]-({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) On Create Set _usn3+=$@usn5 =~$`` =~$usn2,`6esn`+=`6esn`[1.e1..$#usn7][.e0..True],(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[`` *0xabc]->(`7esn` :#usn7{`6esn`:$`3esn` Contains 0X0123456789ABCDEF Contains 00,`1esn`:1000[123.654..9e12][1000.._usn3]}).``! =[@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Union All Merge `2esn`=(:`1esn`)<-[`2esn`?:usn2|#usn8{`6esn`:0X7[.e12..01234567],@usn6:`7esn`[...e1][..\"d_str\"]}]->(`5esn` :`8esn`{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}) On Match Set _usn3+=07 In Count ( * ) In \"d_str\" Match (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0) Remove (usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})._usn4?,usn1:`3esn`:`1esn`,{`2esn`:9e1 In 01 In 999,`5esn`:$@usn6[..$usn1]}.@usn5! Union All Merge (((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})<-[?:`7esn`|`2esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}]->(usn1 :#usn8)))"), - octest:ct_string("Optional Match (`8esn` :@usn5)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->(`6esn` :_usn4:usn1{`6esn`:00 In 12.e12}),(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})) Where `4esn` In $12 In `8esn` Union All Merge `1esn`=((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})) Remove Single(_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`).`6esn`?,(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})._usn4!,@usn5:`4esn`:#usn8 Merge (({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})<-[_usn3?:`2esn`|usn2{`3esn`:0[0.12..]}]->(:``{`1esn`:`6esn` =~$_usn3})) Union All With usn2 Is Not Null Is Not Null As `2esn`,False[`6esn`][07],0Xa[0xabc..] As usn2 Order By 9e1[0.e0..][#usn8..] Asc Skip #usn7 Is Not Null Is Not Null"), - octest:ct_string("Unwind 12[..0.0][..#usn7] As `8esn` Return Distinct *,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] As @usn6 Order By 010 Starts With `7esn` Starts With 9e1 Ascending,123456789 Is Null Descending,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] Desc Skip {#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null With Distinct \"d_str\",0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',$@usn5[01] Order By 01234567 Starts With $_usn4 Desc,0.12 Contains .e1 Ascending,0x0 =~_usn4 Descending Skip [usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]] Contains None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]) Contains Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) Union All Merge (:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) With `6esn`['s_str'..][010..],$`4esn` Contains 0Xa Where 0X0123456789ABCDEF In $1000 In $`3esn` Detach Delete Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1),$@usn5 =~07 =~True"), - octest:ct_string("Create (_usn4 :#usn8)-[`1esn`?:`1esn` *01234567..12]-({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}) Remove Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|Count(*)[.e0.._usn4]).`8esn`?,Single(#usn8 In $`5esn` Is Null Is Null Where .12[`1esn`..][$`3esn`..]).``!,count(Distinct `6esn` =~01234567 =~0Xa).`8esn`! Create (@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]}),(({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:``|:_usn4 *0Xa]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) Union All Create ``=(({`5esn`:0e0 =~_usn4})),((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})))"), - octest:ct_string("Match (((`7esn` :``)<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:usn1|`3esn`*]->(:_usn3{`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`}))) Remove (:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)}).usn1!,None(usn1 In 00 Starts With _usn3 Where 999 Contains `7esn`).`3esn`?,_usn3:usn1 Merge ((:`2esn`:`3esn`{`7esn`:$_usn4[#usn8..]})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)) Union All Merge usn1=((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})) On Create Set `8esn` =0.e0[9e0][0e0],_usn3 =0Xa[0xabc..$#usn8] Return 123456789 =~$123456789 Limit 07 =~`8esn` =~0 Union Unwind 's_str' In \"d_str\" In 123456789 As usn1 Remove {`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}.@usn5?"), - octest:ct_string("Detach Delete .e1[$_usn4][1e1],$usn1[_usn4..][usn2..],{@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null} Is Not Null Is Not Null Delete .12[`1esn`..],usn2 Starts With @usn6 Return Distinct *,usn2 =~0x0 As `8esn` Union All Detach Delete $`1esn` Ends With $`1esn` Merge ((`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})) Remove Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12).`6esn`! Union All Remove {`5esn`:`6esn` =~01234567 =~0Xa}.#usn7,(usn1 :#usn7)<-[@usn6?{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(:`2esn`:`3esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})._usn4,(#usn7 :`2esn`:`3esn`)-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})-[_usn3? *00..]-(`1esn` :`1esn`).`4esn`"), - octest:ct_string("With Distinct 9e12 Ends With 0X0123456789ABCDEF Ends With #usn7 As `8esn`,1000[123.654..9e12][1000.._usn3] As `6esn`,Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0} As `4esn` Where 7[..12e12][..$`6esn`] Optional Match `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Where `7esn` In 999 In @usn6"), - octest:ct_string("With 01234567[.12..7][1000..1.e1] As `5esn`,{`7esn`:Count(*) In 01 In .0}[..{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}][..#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..])] As `5esn` Skip [@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] Delete {#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null,Extract(`4esn` In $`8esn` Starts With 1000 Where False In `3esn`|$`3esn` =~Null) Create (({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) Union Unwind [usn1 In 1000 In $`5esn`][Extract(#usn8 In $`5esn` Is Null Is Null Where $usn2 Is Not Null|$_usn3 =~`7esn` =~$_usn4)] As `6esn` Detach Delete 01 In _usn3 In 12,`1esn`[`3esn`..][$@usn6..]"), - octest:ct_string("Detach Delete Count(*)[_usn3..Count ( * )],0X7 In $@usn5 In 9e0,01234567 Is Null Is Null Detach Delete 010 Starts With `7esn` Starts With 9e1 Union All Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..]"), - octest:ct_string("Return `7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As usn1 Order By #usn7 Contains 07 Descending,Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0]) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where Count(*)[True]) In Extract(`4esn` In 's_str'[12..'s_str'] Where 0xabc Ends With $#usn7 Ends With #usn8|.e1 Starts With 0.0 Starts With `6esn`) Asc,[$12 Is Null Is Null,999 Contains Count ( * ) Contains 123.654][Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`)..Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0)][[Null Contains _usn4,$`7esn` Is Null Is Null]..({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3})] Desc With *,$`1esn` Ends With _usn4 Ends With `3esn` As `7esn`,({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] As @usn6 Order By $999 Ends With $`3esn` Ends With `8esn` Asc Skip $0[..07] Where $@usn5 In 12e12 In Count(*) Union Create @usn6=(({_usn3:$0 Ends With $#usn7 Ends With .12})-[@usn6?:#usn7|:_usn4 *00..]->(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})),(usn1 :_usn3{@usn6:True[..'s_str'][..01]})<-[`7esn` *..0x0]->(:`8esn`{usn2:7 Contains 9e1}) Detach Delete $`7esn` In 0.e0 In `4esn` With @usn6 =~01,12.0 In 1000 In _usn4 As _usn3,0 =~12.e12 =~$`` As #usn7 Order By All(@usn5 In $#usn8 Is Null Is Null Where 's_str'[..0.0][..$`4esn`]) Is Null Is Null Descending Skip None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]) Ends With None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With @usn6($123456789[0.0..]) Union Return $`6esn`[..0X0123456789ABCDEF],`1esn`[9e12..$`8esn`][usn2..$``] As #usn8,[#usn8 In $`5esn` Is Null Is Null][Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where #usn7[..$1000][..01])..][[@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]]..] As #usn7 Limit 9e12[0.0..12.e12] Create @usn6=({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567}),`7esn`=((:@usn6:`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[`6esn`:@usn5|`8esn` *12..0xabc]-(`` :@usn5)-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}))"), - octest:ct_string("Remove _usn3(Distinct 010[@usn5..]).`4esn` Union All Unwind @usn6 =~01 As `8esn` Unwind 999 In 12 In \"d_str\" As #usn8"), - octest:ct_string("Detach Delete Count ( * ) In 010,$123456789 Is Null Is Null,$1000 Starts With .0 Starts With 0.0 With 's_str'[..0.0][..$`4esn`] As `2esn`,#usn7 Contains .0 Contains .e1,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Skip `6esn` Starts With $usn2 Starts With 0.0 Limit 9e1 Contains $`3esn` Contains 01234567 Where True Starts With $`8esn` Starts With \"d_str\" Union Remove Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`).`5esn`? Union All Return $usn2[12..$`7esn`][$0..$`7esn`],0x0 Contains _usn4 Contains 123456789 As `7esn`,9e12 Ends With 0X0123456789ABCDEF Ends With #usn7 As `5esn` Order By 01234567 Ends With 12.0 Ends With 0X7 Ascending,12e12 Ends With 010 Ends With .0 Asc Limit count(Distinct 's_str' Starts With 1000 Starts With #usn8,12e12 Starts With $123456789 Starts With 12.0)[[_usn4 In usn1 Contains False Contains `` Where $#usn8]][[$`1esn` Is Null,\"d_str\" =~`6esn` =~0Xa,$usn2[0e0..]]] With 7[$`4esn`..123456789] As `2esn` Limit 1000 Ends With 1000 Ends With $`4esn` Where $usn2[..12.0] Detach Delete $123456789 =~$0 =~$`3esn`,$0 Contains `7esn` Contains $`8esn`,9e0[False]"), - octest:ct_string("Return Distinct Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1),9e1[010..] As `6esn` Order By $1000 Contains $`3esn` Desc,(`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Ascending,[$`3esn` Starts With 01234567 Starts With $1000] Starts With `4esn` Starts With [$`2esn`[..7][..$usn1]] Desc Skip $`7esn` =~.e1 Create (_usn4 :@usn6:`7esn`)<-[#usn8?:_usn4|:@usn5 *..0x0]-(`6esn` :#usn7{`5esn`:#usn7 Is Not Null Is Not Null})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) Return Distinct *,None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`) Is Null As @usn6,123456789 =~_usn4 =~$0 As usn1 Union With Distinct `` Is Not Null Is Not Null As @usn6,`5esn`[`1esn`..`1esn`],[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4 Order By Count(*) Is Null Descending,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0] Ends With [`4esn` In 's_str'[12..'s_str'] Where 0.12 In 01 In $`3esn`|9e0 =~$`5esn`] Ascending,[0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] Asc Skip 1000 Contains 123456789 Contains 1e1 Limit $`6esn`[`3esn`..0e0] With Distinct .e0[`4esn`..`4esn`][0.0..$0] As `7esn` Order By None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) Descending,01234567[.12..7][1000..1.e1] Ascending Where #usn7[..$1000][..01] Delete [$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)})"), - octest:ct_string("Merge `4esn`=({`8esn`:0X7 In 's_str' In $`1esn`}) On Match Set usn2+=.e1 Ends With _usn4 Ends With @usn5,@usn5+=_usn3 In .e1 In $12,Extract(`4esn` In `6esn`[1e1..] Where $`7esn` Ends With `1esn` Ends With True).`` =010 In @usn6 On Match Set usn1 =Count ( * ) =~All(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7) With Distinct {#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Order By usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Ascending,`` Asc,$999 In $`8esn` In `5esn` Descending Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit `4esn` Is Null Optional Match @usn5=((:#usn8$usn1)-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})),((#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})) Union Match `5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Where $`2esn` Contains usn1 Contains `2esn` Unwind 12e12[0.e0][9e1] As usn2 Union All With Distinct *,usn2 Is Not Null Is Not Null As `2esn` Skip $1000 Ends With 1e1 Ends With 123.654 Limit {#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Where $0 Remove Extract(`4esn` In 's_str'[12..'s_str'] Where 12.0[0Xa][00]).@usn5,{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]}.`3esn`!"), - octest:ct_string("With usn1 Is Null Is Null As ``,.12 Is Null Where False[0Xa..$@usn5][$`6esn`..12e12] Merge (((:_usn4:usn1)-[@usn5?:@usn6*..]-(`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:@usn6]-(_usn3 :`4esn`:#usn8{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]}))) On Match Set `5esn` =999[.e12][01],Extract(usn1 In 0x0[..`4esn`] Where @usn6[$`3esn`]).#usn8? =`1esn` In 999 In $#usn7,usn1 =12.e12[0e0..7] Union All Optional Match ((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})),((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})) Union With $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Order By $12[01..][1.e1..] Descending Skip .12[.e12..0.e0][0.e0..$`2esn`] Where $_usn4[12e12][`4esn`] Merge `1esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[? *999..]-(`` :`1esn`) On Create Set usn2 =0.0[..12e12][..$0] Merge `2esn`=(_usn4 {`8esn`:9e1 In 01 In 999})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`) On Match Set @usn5+=`1esn`[9e12..$`8esn`][usn2..$``],usn1 =[12.e12 Ends With 01 Ends With .e1,$@usn5[0.12..][@usn5..],$usn1 In 1000 In $#usn7] Is Not Null On Match Set _usn4 =0 Contains 12e12,`1esn`:#usn8,`7esn` =0 Is Not Null"), - octest:ct_string("Create ({`2esn`:123456789 Starts With `2esn` Starts With .0,@usn6:$123456789[$`2esn`][True]}) Unwind [_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]] Ends With [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]] As `1esn` Create `1esn`=(`3esn` {``:.e0[7..$`3esn`]})"), - octest:ct_string("With Distinct *,count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null As `6esn`,{#usn8:$`5esn` In False,usn2:$`7esn` In $7} Starts With Filter(usn2 In 1000 Contains 0.e0 Where `2esn`[$`3esn`..]) Starts With All(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`) As `` Skip 01234567[$`7esn`][_usn3] Unwind `4esn` =~$`3esn` =~$123456789 As #usn7 Unwind $1000 In $`7esn` In $7 As usn1 Union All Delete 0e0[12][$_usn4]"), - octest:ct_string("Merge #usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) On Create Set `4esn` =.12 Is Not Null Is Not Null,{@usn6:True[..'s_str'][..01]}.`2esn` =12.e12[...0][..0x0],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Remove [_usn4 Starts With $@usn6 Starts With #usn7].`4esn`,usn2(Distinct usn2[`3esn`][_usn3]).@usn5? Union Delete `6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),$@usn6[..$#usn7][..12.e12],.e0[`4esn`..`4esn`][0.0..$0] Delete 12.e12 In $1000,{_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]},$999 Ends With $`3esn` Ends With `8esn` Union All Return {`8esn`:$123456789 Is Null Is Null,_usn3:$`4esn` Starts With 1e1}[(#usn7 :`2esn`:`3esn`)<-[`8esn`?]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})..All(_usn4 In usn1 Contains False Contains `` Where $`8esn`[$``..$7][$1000..$`7esn`])] As `5esn`,`6esn`(00 In 1e1) Starts With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Starts With Extract(#usn8 In $`5esn` Is Null Is Null Where $usn2 Is Not Null)"), - octest:ct_string("Detach Delete False[0Xa..$@usn5][$`6esn`..12e12] With Distinct `2esn` Contains $999 As #usn7,$123456789[False.._usn3] As `1esn` Order By [@usn6 In @usn5 In $`6esn` Where $999[$1000]|$7[.12]] In {`1esn`:$@usn6 Contains 07 Contains 0.e0} In (`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) Ascending,00[.e1..] Desc Skip 9e1[.12..] Match ((`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`)<-[ *0X0123456789ABCDEF..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]->(_usn3 :_usn3)),``=((`6esn` :`7esn`)) Where $`1esn` Starts With @usn6"), - octest:ct_string("Return Distinct $_usn3[9e1][$_usn4],None(usn2 In 1000 Contains 0.e0 Where $`6esn`[Count(*)..0.e0][0.0..Count ( * )])[(:usn2:@usn6{@usn6:$`4esn`[$`2esn`..]})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})][Any(@usn6 In @usn5 In $`6esn` Where 12.0[0Xa][00])] As `5esn`,0X0123456789ABCDEF Contains 12.e12 Contains 999 Limit $@usn6 In $`5esn` In $usn2 With \"d_str\" =~`6esn` =~0Xa,.e1[usn1..] As `6esn` Union All Create `6esn`=((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})) With Distinct *,`7esn` In 999 In @usn6,00 Is Null Is Null Order By None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`)[`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)..] Desc,$`3esn` In $12 In 's_str' Asc Skip $123456789 Is Null Is Null Limit .e0 =~`5esn` Unwind $usn2[False..`7esn`][`7esn`.._usn3] As _usn4"), - octest:ct_string("Merge #usn8=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) On Create Set `5esn`+=0 Starts With `6esn` Starts With 0X0123456789ABCDEF,`4esn`+=$`7esn` Ends With $usn2,[usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null].@usn5! =$1000 Ends With 1e1 Ends With 123.654 On Match Set [`6esn` In 0X7 =~`` Where $`3esn` =~Null|1.e1[0X0123456789ABCDEF..][$`5esn`..]]._usn3? =Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null)[count(Distinct 0.12 Contains $12 Contains `8esn`)..[$`1esn` Is Null Is Null,9e1 In 01 In 999]],`1esn`+=None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]) Ends With None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With @usn6($123456789[0.0..]),(_usn4 {#usn7:False[`2esn`..#usn8],#usn8:`5esn`[`1esn`..`1esn`]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]}).`3esn` =01234567[$@usn6..0X7][$`1esn`..123.654] Remove [`6esn`[1e1..]].@usn6!,[$_usn3[..Count ( * )][..@usn5]].@usn6! Union All Remove {`4esn`:.12 Starts With 0Xa}.usn1!,[`6esn` In 0X7 =~`` Where 123456789 =~_usn4 =~$0|$#usn8 Ends With 1000 Ends With .0].`7esn`? Remove (:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[?:`1esn`]-(_usn4 :@usn6:`7esn`{@usn5:$_usn3[$`4esn`..Null]})._usn3! Union All Optional Match ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})) Merge (`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) On Match Set [@usn5 In 0X7 =~.0 =~\"d_str\" Where 12.e12 Ends With 01 Ends With .e1|00 Starts With _usn3].`2esn`? =None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`)[`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)..]"), - octest:ct_string("Merge `5esn`=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))) On Match Set _usn3+=07 In Count ( * ) In \"d_str\" Union All Unwind 010 In @usn6 As usn2 Union Merge `5esn`=(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}) Merge (#usn7 :`6esn`:`7esn`)<-[`3esn`?:_usn3|:`4esn`]->(:`1esn`{_usn4:$_usn3[Null]})-[ *..0X7]->(`5esn` :_usn4:usn1) On Match Set `1esn`+=Single(`4esn` In `6esn`['s_str'..][010..] Where 12.0 Contains 0.e0)[..Any(`4esn` In 's_str'[12..'s_str'] Where Count(*)[`7esn`..$12])][..Extract(@usn5 In .12[#usn7][$`8esn`] Where 01234567 =~usn1)],({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})<-[`7esn` *..0x0]->(`5esn` {`5esn`:$`5esn`[False]})-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->(`4esn` {`7esn`:.e0[..999][..0X7]}).usn2 =`8esn`[$#usn7],`1esn`+=$1000[01234567]"), - octest:ct_string("Remove None(usn1 In 0x0[..`4esn`] Where $usn1[0.12..]['s_str'..]).@usn6?,Any(usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null).``?,[`6esn` In 0X7 =~`` Where 123456789 =~_usn4 =~$0]._usn3! Union Optional Match _usn3=((:`7esn`{`2esn`:0Xa In .e1 In Count(*),`8esn`:.12[`1esn`..][$`3esn`..]})<-[@usn5?:_usn3|:`4esn` *..0x0]->(#usn8 {usn2:7 Contains 9e1})) Create ({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[ *..0x0]->(#usn8 {usn2:7 Contains 9e1}) Union All Return *,1.e1[Null][12.e12] As ``,Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) As _usn3 Order By 0.e0[`6esn`...e0][9e12...e12] Descending,_usn3 In .e1 In $12 Asc Skip [$`4esn`[9e1..][0..]][Any(`4esn` In $`8esn` Starts With 1000 Where 0.e0[9e1..][0.0..])..Single(#usn8 In $`5esn` Is Null Is Null Where 1000 Ends With 1000 Ends With $`4esn`)] Limit 123456789 =~_usn4 =~$0 With Distinct *,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Limit Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]})"), - octest:ct_string("Detach Delete usn1 Is Not Null Is Not Null,[$`4esn`[9e1..][0..]][Any(`4esn` In $`8esn` Starts With 1000 Where 0.e0[9e1..][0.0..])..Single(#usn8 In $`5esn` Is Null Is Null Where 1000 Ends With 1000 Ends With $`4esn`)],#usn8 Ends With `4esn` Ends With $`4esn` Optional Match ``=((`6esn` :`7esn`)) Union All Merge `5esn`=((`2esn` :usn2:@usn6)-[usn1?{`7esn`:$`2esn` Starts With .e0 Starts With 12.0}]-(`5esn` {`5esn`:$`5esn`[False]})) Optional Match ((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})),(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union All Unwind $`5esn`[False] As `6esn` Return *,$0[7..][Null..] As `7esn`,`3esn`()[Filter(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`)..{@usn6:`6esn`[_usn4..][$`6esn`..]}] Order By (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Asc,.e1[..$``][..0X0123456789ABCDEF] Ascending Skip 01[..$``][..$`7esn`] Merge `3esn`=(({`5esn`:0.12 Contains .e1})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0})-[:@usn5|`8esn` *123456789..999{usn1:9e12 Is Not Null Is Not Null}]-(#usn7 :`5esn`)) On Match Set @usn5+=`` In `6esn`,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`` Is Null Is Null).`` =12.e12 Is Not Null On Match Set `` =None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..],#usn7($`8esn`[$``..$7][$1000..$`7esn`],`2esn` In 7 In usn2).`6esn`? =$_usn4['s_str'..],`4esn`+=$`7esn` Ends With $usn2"), - octest:ct_string("Return *,usn1[Count ( * )..$usn1] As usn1,$`2esn` =~'s_str' As @usn5 Union All Create (((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))),(@usn6 {`4esn`:$`2esn`[..`2esn`]})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})"), - octest:ct_string("Remove Extract(usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01).#usn8 Delete usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`]) Is Null,$999[..`1esn`],$_usn4[$`4esn`..$#usn7][`6esn`..7]"), - octest:ct_string("Create (((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0)))"), - octest:ct_string("Delete 's_str' Ends With .e0 Remove Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|@usn6[..0xabc][..$#usn7])._usn3,Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null).``!"), - octest:ct_string("Unwind Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As usn2 With Distinct $999[$1000] As `4esn`,[`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Limit {`8esn`:@usn5[..True][..0X7],`1esn`:`1esn` Contains Count ( * )}[{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)] Where $_usn4[12e12][`4esn`] Union All Unwind $_usn4[`3esn`][0] As _usn4 Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) Create (((`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})<-[?:`7esn`|`2esn`]-(:`6esn`:`7esn`{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})))"), - octest:ct_string("Delete {_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]} Ends With Extract(`4esn` In $`8esn` Starts With 1000 Where `6esn`['s_str'..][010..]|12.e12[@usn5..123.654]) Ends With [$`5esn` Is Not Null,0e0 Is Null Is Null] Create _usn4=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),(((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})-[?*..{`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}]-(`` :`3esn`:`1esn`{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-({usn1:010[@usn5..],`7esn`:`2esn` Is Not Null Is Not Null}))) Match ({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})-[#usn7:`1esn` *07..]->(:`7esn`{``:$`1esn` Starts With @usn6})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) Where 9e12 =~01 =~$`7esn`"), - octest:ct_string("Return [0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] As `5esn`,(#usn7 :#usn8)-[`6esn`:`4esn`|:`7esn` *..0x0]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})[Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])][Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])],#usn8 Is Not Null Is Not Null Limit None(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`) Contains `3esn`($usn2 Contains 12.e12 Contains 00) Union Return *,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7,@usn6 Starts With `7esn` Starts With Null Merge `1esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) On Create Set Extract(`4esn` In `6esn`['s_str'..][010..] Where 01 Ends With .e0|00[7..$123456789]).usn1? =usn2[`3esn`][_usn3],usn2+=[usn1[..@usn5][...e0]] In Extract(`6esn` In 0X7 =~`` Where $1000 Contains $`3esn`|12 Ends With 01234567) In {`3esn`:$`5esn` In `2esn` In .0,``:0e0 Is Null Is Null} On Create Set usn1+=`4esn` Ends With 123456789 Ends With @usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`! =\"d_str\" =~`3esn` =~0Xa,Any(_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0)._usn3 =`` =~12 =~$#usn7 With *,$usn2[..12.0],$`2esn`[``..] As `3esn` Skip _usn3[.0] Where 0.0[999..] Union All Unwind usn2 Is Not Null Is Not Null As `4esn`"), - octest:ct_string("Match (((:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]})<-[? *..0x0]->(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})-[? *..0X7{`3esn`:`8esn`[$``]}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}))) Where True[`4esn`][$`6esn`] Unwind 9e12 =~01 =~$`7esn` As usn1 Union Create #usn7=(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))),`5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})"), - octest:ct_string("Remove Single(usn1 In $123456789 Contains usn2 Where 9e12[0.0..12.e12]).`4esn`!,(_usn4 )<-[#usn7? *00..]->(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`).``! With *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `3esn`,07[$999] As `` Where 9e0[$_usn3..0X7][7..$#usn8] Remove (:``{#usn8:$`2esn`[..`2esn`]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]}).`5esn`,(@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}).`4esn`"), - octest:ct_string("Optional Match `2esn`=(`` :usn2:@usn6)<-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`7esn` :`4esn`:#usn8{`2esn`:Count(*)[..`3esn`]}),(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})-[`4esn`:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]-(_usn3 :``)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->({`1esn`:0.0[1000..][.e1..]}) Where $`7esn` Ends With $`2esn` Ends With $usn1 Unwind @usn6 =~01 As `8esn` Return *,0.12[Count(*)..],$@usn5 =~$`` =~$usn2 As #usn8 Order By Single(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`) Is Null Desc Skip Single(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7])[None(`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789])..@usn6(Distinct True =~@usn5 =~$`1esn`,.12 Starts With $usn2)]"), - octest:ct_string("Remove [$123456789 Is Null Is Null,usn1 Contains $``,$123456789 Ends With .e1]._usn4! With Distinct `` Is Not Null Is Not Null As @usn6,`5esn`[`1esn`..`1esn`],[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4 Order By Count(*) Is Null Descending,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0] Ends With [`4esn` In 's_str'[12..'s_str'] Where 0.12 In 01 In $`3esn`|9e0 =~$`5esn`] Ascending,[0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] Asc Skip 1000 Contains 123456789 Contains 1e1 Limit $`6esn`[`3esn`..0e0]"), - octest:ct_string("Remove [12e12 Starts With $123456789 Starts With 12.0].usn1 Delete `8esn`[$``]"), - octest:ct_string("Create `5esn`=(({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})),(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]}) Match `5esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)),#usn8=({_usn3:12.e12 In $0 In Count(*)})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}) Where `` Starts With @usn5"), - octest:ct_string("With 1000[123.654..9e12][1000.._usn3],count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null,$123456789 =~$#usn8 =~$#usn8 Order By $usn2 Is Not Null Is Not Null Ascending,Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Ascending Where $_usn3[Null] Return 00 Ends With $_usn4 Ends With $`2esn` As `5esn` Order By $`8esn` In \"d_str\" In 9e12 Desc,`3esn`(.e0 =~`5esn`)[Single(`6esn` In 0X7 =~`` Where $`3esn` =~Null)][[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $_usn3[$`4esn`..Null]|False[`2esn`..#usn8]]] Asc,1e1 In 9e0 In 9e0 Ascending Union Merge `5esn`=(({_usn3:12.e12 In $0 In Count(*)})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(`2esn` :``)-[:_usn4|:@usn5 *0xabc]-({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})) On Match Set `7esn` ={`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)],@usn6 =`5esn` In $999 On Create Set (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 =123.654 Contains `2esn`,`3esn` =Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`),{`6esn`:$_usn4[$`8esn`..][07..]}.@usn6! =`5esn`[.e1][0Xa] Union With Distinct `5esn` In $999 As `6esn` Order By [_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]][[.0 Starts With `2esn` Starts With `6esn`,9e1[0.e0..][#usn8..]]..][[07[$999],9e0 In 01234567,@usn5 In 0X0123456789ABCDEF]..] Asc,False Ends With $`8esn` Asc Where _usn4[$`4esn`..]"), - octest:ct_string("Return *,`4esn` Is Null Order By `5esn` In $999 Descending Limit `3esn` =~$`5esn` =~12 Merge #usn8=(({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({_usn3:$`1esn` Starts With @usn6})) On Match Set (usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`],`2esn` ={@usn5:$`3esn`} Starts With .12 Unwind $`4esn` Starts With 1e1 As usn2 Union All Match `5esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Where 0 Ends With $7 Ends With _usn3 Union All Create (usn2 :#usn7),#usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})))"), - octest:ct_string("Remove {@usn6:True[..'s_str'][..01]}.#usn7!,(_usn4 {#usn7:False[`2esn`..#usn8],#usn8:`5esn`[`1esn`..`1esn`]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]}).`3esn` Unwind `1esn`(Distinct 0.0[999..],9e0 Ends With $`7esn`) Ends With (`7esn` {`8esn`:Count ( * ) =~Count(*)})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}) Ends With (#usn7 :`2esn`:`3esn`)<-[`2esn`?*..]->(:#usn8{`5esn`:0 Contains 12e12}) As usn1 With 1000 Contains $#usn7 Contains `6esn`,All(@usn5 In $#usn8 Is Null Is Null Where 's_str'[..0.0][..$`4esn`]) Is Null Is Null Order By $123456789 Ends With .e1 Ascending Skip $`3esn` Contains 0X0123456789ABCDEF Contains 00 Limit $_usn3 =~$`3esn` =~0x0 Where $usn2[..12.0]"), - octest:ct_string("Merge `6esn`=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) On Match Set `8esn` =All(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..]) Is Null Is Null,Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)._usn3? =\"d_str\"[Count ( * )] Remove [.12 Starts With .12 Starts With `3esn`,Count ( * )[Count ( * )..12e12][usn1..1000],False In `3esn`].#usn7,{usn1:$1000 Contains $`3esn`}.#usn8!,None(`4esn` In $`8esn` Starts With 1000 Where True Starts With $`8esn` Starts With \"d_str\").`4esn`! Union All Remove _usn3(Distinct $1000 Contains $`3esn`,7 Contains $`5esn` Contains $usn1).usn2?,{@usn5:0.e0[@usn6][0x0]}._usn4,_usn3:`4esn`:#usn8 Merge `8esn`=(({@usn6:$123456789 Is Null Is Null,@usn6:`6esn`[1.e1..$#usn7][.e0..True]})<-[`5esn`:usn1|`3esn` *010{`2esn`:`6esn` =~01234567 =~0Xa}]->(_usn4 :``)) Union All Match (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0) With *,12.0[``] As @usn6 Order By \"d_str\" =~`3esn` =~0Xa Desc,_usn3[0] Desc,`5esn` Ends With .e1 Ends With $_usn4 Asc Unwind @usn6 Contains _usn4 Contains $`4esn` As `4esn`"), - octest:ct_string("Return *,Single(_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0) Starts With Any(@usn6 In @usn5 In $`6esn` Where $`5esn` Contains Count(*) Contains #usn7) Starts With Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where .12 Ends With `1esn` Ends With $`1esn`) As `5esn`,Count ( * )[..999] As `6esn` Limit 12.0 =~#usn7 =~$usn2"), - octest:ct_string("Detach Delete $999[..`1esn`],$usn2[$123456789..123.654][$`5esn`..'s_str'] Return 00 Ends With $_usn4 Ends With $`2esn` As `5esn` Order By $`8esn` In \"d_str\" In 9e12 Desc,`3esn`(.e0 =~`5esn`)[Single(`6esn` In 0X7 =~`` Where $`3esn` =~Null)][[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $_usn3[$`4esn`..Null]|False[`2esn`..#usn8]]] Asc,1e1 In 9e0 In 9e0 Ascending Union All Merge `4esn`=((#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) On Match Set {`8esn`:`8esn` In $@usn5}.`3esn`! =$@usn5[#usn8..][$`1esn`..],All(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $@usn6 Is Null Is Null).`1esn`! =$12[..``][..$7] On Create Set usn2 =_usn3 Is Not Null Is Not Null,`4esn` =.e1 Starts With $`8esn` Union Match _usn4=(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(@usn6 ) Detach Delete 0x0 Is Not Null Is Not Null"), - octest:ct_string("Merge (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Merge ((`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) Remove Single(`4esn` In $`8esn` Starts With 1000 Where `6esn`['s_str'..][010..]).@usn5,(usn2 :`3esn`:`1esn`)-[ *..7]-(usn1 :`4esn`:#usn8)-[?:`3esn`|:`4esn`]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`3esn`,(:`1esn`{_usn4:$_usn3[Null]})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]-(`2esn` :#usn7)-[:usn2|#usn8 *01234567..12]-(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})._usn3 Union Unwind Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] As `2esn` Merge `4esn`=(:`5esn`{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(_usn4 )"), - octest:ct_string("Optional Match usn2=((`1esn` :usn2:@usn6)-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})) With Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1),9e1[010..] As `6esn` Order By [`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) Desc,`1esn`[`3esn`..][$@usn6..] Desc,123456789[1000] Desc Where 0X7 In 's_str' In $`1esn` Return Distinct $`1esn` Starts With $999 As #usn8,Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)[{#usn8:`5esn` =~0Xa,@usn5:0X7[999][$1000]}..[`` Starts With 12,$`1esn` Starts With $999]][`7esn`(Distinct $usn2[..12.0])..`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])] Order By 9e1 Is Not Null Is Not Null Asc,$usn2[$123456789..123.654][$`5esn`..'s_str'] Desc Union Match `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Remove All(#usn8 In $`5esn` Is Null Is Null Where 01234567 Ends With 12.0 Ends With 0X7).`8esn`! Optional Match `8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`}) Where 123456789 Starts With `2esn` Starts With .0 Union All With [$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] Order By .e12 =~0.0 =~9e0 Desc,010 =~$usn2 =~1e1 Desc,#usn8(0X7 In 's_str' In $`1esn`,$0 Is Not Null)[usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])] Descending Where .0 Is Null Is Null Detach Delete 0xabc Contains Null Contains 9e12,.12 Starts With 0Xa,`6esn` In 1000 In 01234567"), - octest:ct_string("With 010[@usn5..],0x0 =~_usn4 As `8esn` Limit `8esn` Ends With 0X0123456789ABCDEF Ends With `1esn` Where 010[$@usn6] Merge `1esn`=(((`2esn` :_usn3{`5esn`:12.e12[$1000..],`4esn`:'s_str'[..0.0][..$`4esn`]})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})-[usn1?:`1esn` *0X0123456789ABCDEF..{usn2:$`4esn`[12.e12..][0.0..]}]-(:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]}))) On Match Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..] Optional Match ((@usn6 :#usn7{@usn5:Null Is Null Is Null})),_usn4=(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Where 0x0 Starts With $`7esn` Starts With `2esn` Union All Detach Delete usn2 Ends With $`5esn` Ends With `2esn`,$123456789 Is Null Is Null,Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Unwind 0x0[$`3esn`] As _usn4 Union All Merge (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0)"), - octest:ct_string("Remove Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``]).`4esn`!,count(Distinct $#usn8,False Is Not Null Is Not Null)._usn3?,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn` Starts With $`` Starts With $#usn7).`3esn`? Union Merge `1esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) On Create Set Extract(`4esn` In `6esn`['s_str'..][010..] Where 01 Ends With .e0|00[7..$123456789]).usn1? =usn2[`3esn`][_usn3],usn2+=[usn1[..@usn5][...e0]] In Extract(`6esn` In 0X7 =~`` Where $1000 Contains $`3esn`|12 Ends With 01234567) In {`3esn`:$`5esn` In `2esn` In .0,``:0e0 Is Null Is Null} On Create Set usn1+=`4esn` Ends With 123456789 Ends With @usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`! =\"d_str\" =~`3esn` =~0Xa,Any(_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0)._usn3 =`` =~12 =~$#usn7 Detach Delete $_usn3 =~`7esn` =~$_usn4,`7esn` Starts With $`` Starts With $#usn7,$0 =~`3esn` Return Distinct $_usn3[$`4esn`..Null] Skip 123456789 Starts With `2esn` Starts With .0"), - octest:ct_string("Optional Match ``=((`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(usn1 :_usn3)),(((`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`5esn`)<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 ))) Unwind 12[0X7..@usn6] As `` With Distinct *,9e12[_usn3] As `8esn`,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn` Order By `6esn` Starts With $`5esn` Desc,$`7esn` Ends With 07 Ends With 07 Desc Where 's_str'['s_str'..$usn2][_usn3.._usn3] Union All Remove All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null).@usn5,`8esn`:_usn3,#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..]).`7esn`! Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..] Union All Remove [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0].`3esn`,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``! Merge `1esn`=(((`2esn` :_usn3{`5esn`:12.e12[$1000..],`4esn`:'s_str'[..0.0][..$`4esn`]})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})-[usn1?:`1esn` *0X0123456789ABCDEF..{usn2:$`4esn`[12.e12..][0.0..]}]-(:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]}))) On Match Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..] With 's_str'[12..'s_str'] Limit #usn7 Starts With 0x0 Starts With Null Where 1e1[`6esn`..]"), - octest:ct_string("Unwind Extract(`6esn` In 0X7 =~`` Where $_usn3[9e1][$_usn4]|@usn6[..0xabc][..$#usn7])[[@usn6 In @usn5 In $`6esn` Where $@usn5 In 12e12 In Count(*)|999[$`6esn`]]..Any(_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`)][{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`],usn2:@usn6[`3esn`..][$7..]}..`7esn`($123456789 Ends With $`6esn`)] As _usn4 Merge `8esn`=(({_usn3:$0 Ends With $#usn7 Ends With .12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[?:``|:_usn4 *..0X7]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})) Union Remove (`3esn` :#usn8{#usn8:$_usn4[$`8esn`..][07..]})<-[`2esn` *12..0xabc{`6esn`:$123456789[0.0..],@usn5:999[$`6esn`]}]-({@usn6:9e1 Contains $`3esn` Contains 01234567,@usn6:.e12[.12..][_usn4..]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}).`6esn`,#usn7:#usn8,{#usn7:0Xa[..$``],`1esn`:usn2 Is Not Null}.usn1? Union Delete usn1 Contains \"d_str\" Contains 9e12"), - octest:ct_string("Unwind `1esn`[12.e12][01] As _usn3 Create (@usn5 {@usn6:$123456789[0X7..12.e12]})"), - octest:ct_string("Create usn1=((:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[#usn8? *0xabc]-(#usn8 :`4esn`:#usn8)),#usn7=(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))) Union With 0.12[Count(*)..] Order By .0 Is Null Is Null Ascending,`1esn`(Distinct $@usn5[#usn8..][$`1esn`..],#usn7 Ends With `4esn` Ends With @usn5)[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|usn1[Count ( * )..$usn1]]][{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}] Asc Skip 0 Contains 12e12"), - octest:ct_string("Delete 0.12 =~9e0,12.0[0Xa][00] With {_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] As `1esn` Order By 0 Is Not Null Descending Skip 0x0 Where 123456789 Starts With #usn7 Starts With `6esn` Optional Match `8esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Union All Create `1esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) Return Distinct 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Order By [@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0] Is Null Descending Skip #usn8 Is Not Null Create ((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6)) Union Remove Any(usn1 In 00 Starts With _usn3 Where `6esn`[1e1..]).`3esn`!,Any(usn2 In 1000 Contains 0.e0 Where _usn4[0xabc..]).@usn5?"), - octest:ct_string("Remove {`8esn`:Count ( * ) =~Count(*)}.`6esn`,({@usn6:0X0123456789ABCDEF[..usn1]})<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)._usn4?,(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`4esn` Union All Detach Delete .e1 Starts With $`8esn`,`6esn` Is Not Null"), - octest:ct_string("Optional Match ((#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)-[`6esn`:``|:_usn4 *..01]->(`5esn` :#usn7)) Return .e12[.12..][_usn4..] As _usn4 Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Merge (@usn6 )<-[? *12..0xabc]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})<-[``? *12..0xabc]-(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1}) Union All With Distinct *,$@usn6 =~usn1 As `1esn` Skip $_usn4[$`1esn`] Limit $1000 In $`7esn` In $7 Where 9e0 In 01234567"), - octest:ct_string("Remove @usn5:_usn4:usn1,(:_usn4:usn1)-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]-(`1esn` :`1esn`).`1esn`!"), - octest:ct_string("Match ((`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`)<-[ *0X0123456789ABCDEF..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]->(_usn3 :_usn3)),``=((`6esn` :`7esn`)) Where $`1esn` Starts With @usn6 Union Remove All(@usn5 In $#usn8 Is Null Is Null Where 7 In 0xabc).#usn7?,({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[`2esn`? *0..010]->(usn2 {usn1:0 Is Null Is Null,`8esn`:12.0[..$7][..999]})<-[#usn8:`3esn`|:`4esn` *0..010]->(`3esn` :usn2:@usn6).`4esn`! Merge `4esn`=(_usn4 :#usn8)-[`1esn`?:`1esn` *01234567..12]-({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}) On Create Set ``+={usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null,@usn5+=usn1[..@usn5][...e0],`2esn`+=All(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True])[..[`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|_usn3 In .e1 In $12]][..{`2esn`:$usn1[1e1.._usn3][$@usn6..$#usn7]}] On Create Set _usn4 =All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)[[usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1]],#usn7 =_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) Return Distinct All(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`)[[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]]..][({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})..] As #usn8,'s_str' In \"d_str\" In 123456789,None(`4esn` In 's_str'[12..'s_str'] Where 12.0[0Xa][00]) Is Not Null"), - octest:ct_string("Merge ``=(`7esn` :`7esn`)-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0}) Match (`` :`7esn`)<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]}) Where $`4esn`[12.0..`5esn`] Union All Delete Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`) Union All Unwind $7[.12] As @usn6 Detach Delete ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] Match usn1=(`4esn` :#usn7)-[_usn4?:`6esn`]-(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) Where $`5esn` In `2esn` In .0"), - octest:ct_string("Merge (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}))) Return Distinct *,@usn6[`5esn`..$`3esn`] As ``,`7esn` In 's_str' In 0.12 As _usn3 Skip True Is Not Null Is Not Null Union All Optional Match @usn6=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Match (`8esn` :@usn5)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->(`6esn` :_usn4:usn1{`6esn`:00 In 12.e12}),(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]}))"), - octest:ct_string("Unwind $`4esn`[9e1..][0..] As usn1"), - octest:ct_string("Remove All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]).`7esn`? Union All Return Distinct *,(_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)[Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] As `8esn`,[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `8esn` Order By @usn5 Starts With 12e12 Starts With @usn5 Desc Skip _usn4(usn1[Count ( * )..$usn1],_usn3 Ends With 12e12 Ends With .e0)[All(usn1 In 0x0[..`4esn`] Where $`2esn`[123456789..][00..])..Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``])][[@usn6 In @usn5 In $`6esn` Where $``[_usn4..][`7esn`..]|12.e12 In $0 In Count(*)]..(:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)]"), - octest:ct_string("Merge `3esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) On Create Set _usn3+=True In All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12),#usn7+=`` Is Not Null,`5esn` =0.0[Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|_usn3 Ends With 12e12 Ends With .e0)][None(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5)..{@usn6:.12 Starts With 0Xa}] Unwind 9e0[$_usn3..0X7][7..$#usn8] As @usn6 Create (({_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})) Union All Match usn2=(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}))) Match `5esn`=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Union All Unwind [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0])] As `3esn` Optional Match `6esn`=((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})),((@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})) Where 's_str' Ends With .e0"), - octest:ct_string("Unwind 12[usn1][True] As @usn6 Union Detach Delete $usn2 =~$_usn4 =~`5esn` Merge usn1=(`4esn` :#usn7)-[_usn4?:`6esn`]-(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) Return 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Order By [usn1 In 00 Starts With _usn3 Where 00][#usn8(Distinct $`2esn`[$123456789..$`1esn`][0Xa..$``],@usn6[`5esn`..$`3esn`])..['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`]] Asc,999 Contains `7esn` Desc,Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`] Ascending Skip 0e0 Is Null Is Null Union Unwind $`1esn` Is Null As `6esn`"), - octest:ct_string("Remove `7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``]).@usn5,{#usn7:0Xa Is Not Null Is Not Null,#usn7:.0[$`6esn`..False]}.`4esn`?,[usn1[..@usn5][...e0],$`8esn`[``..][123.654..]].`` Delete ({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3}),$123456789[$``][010] Return All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null Skip [0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',0X0123456789ABCDEF In $1000 In $`3esn`,$0[..`8esn`]] In `4esn`(Distinct 12.e12 In $0 In Count(*),00 In 1e1) In [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]|.e0 =~`5esn`]"), - octest:ct_string("With Distinct *,Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) As _usn3 Order By False[..12.e12] Descending,{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc Limit 12.e12[@usn5..123.654] Union All Unwind 0Xa[0xabc..] As @usn5 Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)],$`4esn` Ends With 0Xa,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null With Distinct *,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn`,@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn` Skip {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]} Where .12 =~.12 =~1e1 Union Unwind 0Xa[0xabc..] As @usn6"), - octest:ct_string("Merge (_usn3 :@usn5)<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}) On Create Set `5esn` =Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])[All(#usn7 In 01234567[$`3esn`..] Where Count(*)[.e0.._usn4])..][None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..])..],@usn6 =Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4) Is Null On Create Set Extract(#usn7 In 01234567[$`3esn`..] Where 0X7 In $999 In $``|9e1[...e0]).`7esn`! =0X7 In 's_str' In $`1esn`,{`3esn`:#usn7 Ends With `4esn` Ends With @usn5}.#usn8 =[usn1[..$_usn4][..``],0X7[.e12..01234567]] In `3esn`(@usn5[..True][..0X7],$`3esn` =~$`7esn` =~False) Detach Delete $`6esn` =~Null =~9e12 Delete Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null"), - octest:ct_string("Remove [@usn5 In 0X7 =~.0 =~\"d_str\" Where $`8esn` Starts With 1000|@usn6 Contains .e1 Contains $`4esn`].`8esn`! Merge (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}))) Create (`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :`4esn`:#usn8) Union All Remove {usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}.`4esn`,Single(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`).`8esn`? Unwind `6esn` =~$_usn3 As usn2"), - octest:ct_string("Remove Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 0.12 Ends With $usn1 Ends With $@usn5|0X0123456789ABCDEF[.e0..$`4esn`]).`7esn`? Delete `8esn`[_usn3..$#usn7],$`6esn` Is Not Null Is Not Null,Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) Merge `3esn`=(({`5esn`:0.12 Contains .e1})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0})-[:@usn5|`8esn` *123456789..999{usn1:9e12 Is Not Null Is Not Null}]-(#usn7 :`5esn`)) Union All With Distinct *,({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]}) =~`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0),\"d_str\" =~`6esn` =~0Xa As `4esn` Create `4esn`=((:`7esn`{``:$`1esn` Starts With @usn6})),`1esn`=((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6}))"), - octest:ct_string("Unwind 00 In 12.0 In 's_str' As `3esn` Union All Return 's_str'[..0.0][..$`4esn`] As `2esn`,#usn7 Contains .0 Contains .e1,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Skip `6esn` Starts With $usn2 Starts With 0.0 Limit 9e1 Contains $`3esn` Contains 01234567 With Distinct Count ( * )[@usn6..0x0],.e0 Is Not Null Is Not Null As `2esn`,usn2 Is Not Null Is Not Null As `2esn` Skip $@usn5 =~$`` =~$usn2 Where `` Starts With 12 Remove (:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`2esn`]-(`6esn` :#usn7)-[_usn4?:`6esn`]-(@usn5 :`8esn`).`7esn`,`7esn`(usn2 Is Null Is Null,`6esn` =~$_usn3).`1esn`!"), - octest:ct_string("Return Distinct *,$7[12.e12..] As #usn7,`4esn`[$#usn7] As `1esn` Skip #usn7[..$1000][..01] Limit {`8esn`:@usn5[..True][..0X7],`1esn`:`1esn` Contains Count ( * )}[{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)] Union All Unwind (`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:usn1|`3esn`*]->(:_usn3{`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`})-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(usn1 :#usn8) Is Not Null As `8esn`"), - octest:ct_string("Return *,0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str' Order By [`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) Descending,$123456789 Ends With .e0 Ascending,({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) Desc Skip 0X0123456789ABCDEF[.e0..$`4esn`] Remove {usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}.`4esn`,Single(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`).`8esn`? Create (:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}),((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ))"), - octest:ct_string("Detach Delete $#usn7 In .e1 In 01,False Starts With Count ( * ) Unwind usn1[1e1][$_usn4] As _usn4"), - octest:ct_string("Merge (({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:usn1{`8esn`:usn1 Contains $``})) On Create Set usn2:usn1,None(_usn4 In usn1 Contains False Contains `` Where .12 In $999 In `5esn`).usn2 =9e0 In 01234567,`8esn` =$@usn5 Ends With 0X0123456789ABCDEF Remove None(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567).`8esn` Remove [$`2esn` =~'s_str',12 Ends With 01234567,$1000 Is Null Is Null].`3esn`?,[12.e12[...0][..0x0]]._usn4,(`1esn` :`8esn`)<-[#usn7:`3esn`|:`4esn` *00..]->(`4esn` :`8esn`)-[`4esn`? *0Xa]-(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}).`3esn`? Union All Return Distinct .e12[.12..][_usn4..] As _usn4 Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Delete usn1 Contains False Contains ``,12e12[0.e0][9e1] Return *,[`4esn` In 's_str'[12..'s_str'] Where 9e1 Contains $`3esn` Contains 01234567][[7[..12e12][..$`6esn`]]..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}],$999 Ends With $`3esn` Ends With `8esn` Order By .12[..$`6esn`] Descending,@usn6(Distinct Null[0e0][12])[..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]]][..`8esn`(010 =~`6esn`)] Descending Skip Count(*)[True] Limit 0xabc Ends With $7 Ends With $`2esn` Union All Merge (((`1esn` :`8esn`)-[_usn4:`7esn`|`2esn`]-(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3}))) On Match Set Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`` Is Null Is Null)._usn4! =$@usn6[..$#usn7][..12.e12],{`4esn`:00 In 12.e12,@usn6:12e12[Null]}.`` =$`8esn` In \"d_str\" In 9e12 On Match Set @usn5+=`1esn`[9e12..$`8esn`][usn2..$``],usn1 =[12.e12 Ends With 01 Ends With .e1,$@usn5[0.12..][@usn5..],$usn1 In 1000 In $#usn7] Is Not Null Merge (((usn2 :#usn7)<-[`7esn`?:@usn5|`8esn`]-(`1esn` :``)-[`6esn`:`4esn`|:`7esn` *1000..{`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}))) Remove Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`5esn`"), - octest:ct_string("Merge #usn7=((_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]})) On Create Set usn2+=[usn1[..@usn5][...e0]] In Extract(`6esn` In 0X7 =~`` Where $1000 Contains $`3esn`|12 Ends With 01234567) In {`3esn`:$`5esn` In `2esn` In .0,``:0e0 Is Null Is Null} On Create Set `5esn`+=0 Starts With `6esn` Starts With 0X0123456789ABCDEF,`4esn`+=$`7esn` Ends With $usn2,[usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null].@usn5! =$1000 Ends With 1e1 Ends With 123.654 Union All Merge usn1=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(usn1 :`4esn`:#usn8{``:0 Is Not Null Is Not Null,`3esn`:usn1 Starts With $#usn7 Starts With `5esn`})) On Match Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$`` On Match Set _usn4+=`1esn`[`3esn`..][$@usn6..],Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.e12 Ends With 01 Ends With .e1|@usn6[$`7esn`]).`2esn`! =[usn1 In $123456789 Contains usn2 Where $1000 =~$`7esn`|False In $`7esn` In .0] Union All Unwind [$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] As @usn6"), - octest:ct_string("Merge ((#usn8 {usn2:7 Contains 9e1})-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]->(:_usn3{@usn6:$`7esn` Is Null Is Null})) Merge `2esn`=(_usn4 {`8esn`:9e1 In 01 In 999})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`) On Match Set @usn5+=`1esn`[9e12..$`8esn`][usn2..$``],usn1 =[12.e12 Ends With 01 Ends With .e1,$@usn5[0.12..][@usn5..],$usn1 In 1000 In $#usn7] Is Not Null On Match Set _usn4 =0 Contains 12e12,`1esn`:#usn8,`7esn` =0 Is Not Null Unwind $@usn6 Starts With usn2 Starts With usn2 As _usn4 Union Unwind #usn8 Is Not Null As usn2 Match #usn8=(usn1 :`4esn`:#usn8) Where 00[``..][$`4esn`..] Create `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Union All With Distinct *,07[0..`4esn`] Order By Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`)[Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01)..][{`1esn`:@usn6[`5esn`..$`3esn`],_usn3:$999 Ends With $`3esn` Ends With `8esn`}..] Asc,$999[12.0..] Asc,All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])] Asc Skip $1000 In $`7esn` In $7 Remove Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]).`1esn`,#usn7:_usn4:usn1,(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})<-[`2esn`:usn1|`3esn` *0Xa]->(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})._usn3! Delete usn1[1e1][$_usn4],$123456789[..0.12][..#usn7]"), - octest:ct_string("Return Distinct 123456789 =~$123456789 Order By 00 Is Null Is Null Descending Skip [\"d_str\" Starts With $usn1,.12 Contains $`4esn` Contains $`6esn`,01234567 =~usn1] Is Null Is Null Match `5esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)),`1esn`=(((:_usn3{@usn6:$`7esn` Is Null Is Null})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)<-[`3esn`? *999..{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`}]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) With Distinct $999[$1000] As `4esn`,[`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Order By #usn8 Ends With $@usn6 Ends With _usn4 Ascending,9e0 =~$`5esn` Descending,[\"d_str\" Starts With $usn1,.12 Contains $`4esn` Contains $`6esn`,01234567 =~usn1] Is Null Is Null Descending Limit .12[`1esn`..][$`3esn`..] Where `1esn` In 999 In $#usn7 Union All Return `2esn` Contains $999 As #usn7,$123456789[False.._usn3] As `1esn` Order By [@usn6 In @usn5 In $`6esn` Where $999[$1000]|$7[.12]] In {`1esn`:$@usn6 Contains 07 Contains 0.e0} In (`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) Ascending,00[.e1..] Desc Skip 9e1[.12..] Create (`7esn` {_usn3:usn1 Contains $``})<-[usn1]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12}),`8esn`=((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Merge ((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) On Match Set `7esn`+=.e1[..$`4esn`][.._usn4],`4esn`+=@usn6[$`8esn`][12.e12],@usn5+=1000 Contains $#usn7 Contains `6esn`"), - octest:ct_string("Unwind `4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}] As _usn4 Union With Distinct ``(Distinct `1esn`[0e0..]) =~(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[@usn6?:`1esn`]-(:`5esn`)-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}),07[07] Order By Count(*)[..`3esn`] Desc Limit [#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|@usn6 Starts With `7esn` Starts With Null] Is Not Null Is Not Null Union All Remove [usn1 In $123456789 Contains usn2 Where $1000 =~$`7esn`|False In $`7esn` In .0].`5esn`!"), - octest:ct_string("Create (({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})),(({@usn6:0X0123456789ABCDEF[..usn1]})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn3{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})-[usn1*]->(:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7}))"), - octest:ct_string("Unwind $0[..07] As usn1 Create (:usn1) Remove (_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`).usn2,Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 123456789[$#usn7..]|.e12 Contains $12 Contains 12.e12).usn1?,{_usn3:'s_str' =~0.e0}.usn2? Union All Optional Match #usn8=((:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[`2esn`? *0..010]->(usn2 :_usn3)-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]})) Return Distinct 12.e12 In $0 In Count(*) As `` Return Distinct $`1esn` Starts With $999 As #usn8,Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)[{#usn8:`5esn` =~0Xa,@usn5:0X7[999][$1000]}..[`` Starts With 12,$`1esn` Starts With $999]][`7esn`(Distinct $usn2[..12.0])..`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])] Order By 9e1 Is Not Null Is Not Null Asc,$usn2[$123456789..123.654][$`5esn`..'s_str'] Desc"), - octest:ct_string("Detach Delete 0Xa Starts With 0.12 Starts With .0,1000 In 0X0123456789ABCDEF In 01,`1esn`[0e0..] Create ((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 )) Union All With Distinct $_usn4[$`1esn`] As `5esn`,None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..] Order By 010[$`8esn`..][0..] Desc,010[@usn5..] Descending,12.e12 In $1000 Ascending Limit 0x0[..$`6esn`][..$#usn8] Where 12.e12['s_str'] Union All Match `8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Create `1esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) Optional Match usn2=((#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`6esn`?:usn1|`3esn`{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})),((usn1 :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)) Where `3esn`[..7][..12e12]"), - octest:ct_string("With 01234567[$@usn6..0X7][$`1esn`..123.654],00 Ends With $_usn4 Ends With $`2esn` As `5esn` Order By 01[0.0] Ascending,`6esn` Starts With $usn2 Starts With 0.0 Ascending Skip {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']} Ends With [True Contains @usn6,`3esn`[$`1esn`..]] Limit usn1 Is Not Null Is Not Null With Distinct $12 Contains 123.654 Contains `8esn` As _usn4 Limit Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) Return Distinct (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Order By [$12[01..][1.e1..]][[usn1 In 00 Starts With _usn3 Where 00]..@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12)] Desc,[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|#usn7 Starts With `1esn`][[@usn5 In .12[#usn7][$`8esn`] Where 0.12 In $`4esn` In `6esn`|$`1esn` Starts With @usn6]..][$`1esn`..] Ascending,{#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null Asc Skip Null[0.e0..0x0]"), - octest:ct_string("With Distinct Count ( * ) Ends With 1000 Ends With 12 As _usn4,False[..12.e12] Skip {usn2:123456789 Starts With `2esn` Starts With 9e12} Ends With All(usn2 In 1000 Contains 0.e0 Where 01234567[Null..0.e0][Count(*)..$#usn8]) Where 0 Is Null Is Null Merge ((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})) On Create Set _usn4+=@usn6(Distinct 12.e12[0e0..7],usn1[Count ( * )..$usn1]) Is Null Is Null,(_usn4 :``)-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6}).`5esn` =\"d_str\" Contains `3esn` Contains 00,`4esn` =``[True..] On Create Set #usn7+=Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]),Extract(@usn5 In $#usn8 Is Null Is Null Where $@usn5 =~$`` =~$usn2|`5esn`[.e1][0Xa]).`6esn`? =$`1esn` Is Null Is Null Delete usn1[1e1][$_usn4],$123456789[..0.12][..#usn7] Union All Optional Match (({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) With Distinct $`2esn`[``..] As `3esn`,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn`,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] As @usn6 Order By `7esn`[1000..][$123456789..] Desc,$#usn8 In .e12 In 9e1 Descending,$@usn5 Contains $`7esn` Contains #usn8 Desc Detach Delete $`3esn` Is Not Null Is Not Null,$1000 Ends With 1e1 Ends With 123.654 Union All With Distinct *,`3esn` =~`3esn` =~$`6esn` As `7esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 123456789[$#usn7..]) Contains [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1] Skip .12[..`6esn`][..\"d_str\"] Limit [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] Where @usn6[$`7esn`]"), - octest:ct_string("Return Distinct $`4esn`[$`2esn`..] As #usn8,#usn8 In $0,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Limit Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`6esn`[$@usn6..]) In {`7esn`:12e12 Ends With 010 Ends With .0} In None(#usn8 In $`5esn` Is Null Is Null Where 123456789 In $usn2 In `6esn`)"), - octest:ct_string("Create (`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) Union Return [@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] As `3esn`,`` =~12 =~$#usn7,False Is Not Null Is Not Null As `2esn` Skip 999[$usn2..] Limit 00 In 0.12 In `5esn`"), - octest:ct_string("Optional Match ((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` )),(({_usn3:$0 Ends With $#usn7 Ends With .12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[?:``|:_usn4 *..0X7]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})) Where $`7esn` Ends With 07 Ends With 07 Return *,$`4esn`[12.0..`5esn`] Order By 0.e0 Ends With 12 Ends With $7 Descending,$`6esn` Is Not Null Is Not Null Desc Skip 0.0[1000..][.e1..] Limit `2esn` Is Not Null Is Not Null Merge `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) On Match Set usn2+=$`4esn`[9e1..][0..],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null},(usn1 :#usn7)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->(`4esn` {`7esn`:.e0[..999][..0X7]}).usn2 =$`3esn`[`2esn`...e0] Union Detach Delete @usn6[..0xabc][..$#usn7],None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]) Ends With None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With @usn6($123456789[0.0..]) Union Remove Extract(`4esn` In `6esn`['s_str'..][010..] Where 12.0 Contains 0.e0)._usn4?,{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}.`1esn`!,`5esn`:`8esn`"), - octest:ct_string("Delete (`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1),`` Contains 12 Contains True,07[12][$`6esn`] Union All With Distinct $@usn6 Contains 0 Contains $`2esn`,(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) Is Not Null Is Not Null As #usn7,True[Count(*)..][1e1..] Unwind All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] As `` Unwind [0 Is Null Is Null][..[_usn3 =~00,9e1 Is Null Is Null]] As usn2"), - octest:ct_string("Unwind $@usn5[Count ( * )] As #usn7 Detach Delete 999 In 12 In \"d_str\",$`5esn` Contains Count(*) Contains #usn7"), - octest:ct_string("Merge usn2=((`3esn` :`4esn`:#usn8)<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})) On Match Set #usn7 =Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]} On Create Set `1esn` =Null[0.e0..0x0] Optional Match ({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}),(usn2 :`2esn`:`3esn`)-[`7esn`?]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) Where 0Xa Is Null Is Null Delete 1000 Contains 123456789 Contains 1e1,(`6esn` :`3esn`:`1esn`{_usn3:1e1[.e1..],`1esn`:$#usn8})-[`4esn`:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]-(`5esn` :#usn7)-[ *..0X7]->(`5esn` :_usn4:usn1) Starts With None(@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2) Starts With [.0 =~$#usn8 =~.0,0e0 Is Not Null Is Not Null,_usn3[.0]],0e0"), - octest:ct_string("Merge ((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Delete $usn2 Starts With $`6esn` Starts With 0xabc"), - octest:ct_string("Remove ({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}).`5esn`!,`8esn`:_usn4:usn1 Merge ((({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)<-[#usn7 *123456789..999]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}))) On Create Set `8esn` =``"), - octest:ct_string("Create _usn3=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)),(((`3esn` :`8esn`)-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(_usn3 :usn2:@usn6)-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}))) Merge ((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})) On Create Set [$`6esn` Is Null Is Null,Count ( * )[@usn6..0x0],0.0[1000..][.e1..]]._usn3! =.0 Starts With `2esn` Starts With `6esn`,({``:\"d_str\",`1esn`:$1000 =~$`7esn`})-[usn1?:_usn3|:`4esn` *123456789..999{`6esn`:01 Ends With .e0,`4esn`:$`7esn` Is Not Null}]->(_usn3 ).`4esn` =usn2 Is Not Null Match (#usn7 :@usn5)-[`4esn`:_usn3|:`4esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:usn1{`8esn`:usn1 Contains $``}),``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}) Union All Unwind $`1esn`[$usn2..][$1000..] As `1esn` Merge `5esn`=(({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})) On Match Set {`6esn`:$`3esn` Contains 0X0123456789ABCDEF Contains 00,`1esn`:1000[123.654..9e12][1000.._usn3]}.`1esn`! =[$`1esn` Is Null Is Null,$12 Contains 123.654 Contains `8esn`] Starts With {`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]} Starts With Filter(usn1 In $123456789 Contains usn2 Where 01234567[.12..7][1000..1.e1]) On Match Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$`` Remove @usn5:_usn4:usn1,(:_usn4:usn1)-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]-(`1esn` :`1esn`).`1esn`!"), - octest:ct_string("Detach Delete $`3esn`[@usn5..$123456789] Unwind Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) In None(`6esn` In 0X7 =~`` Where 12.e12['s_str']) As `5esn` Remove _usn3(1.e1[0X0123456789ABCDEF..][$`5esn`..]).#usn8? Union All Optional Match `5esn`=(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}),`7esn`=(({#usn7:False[`2esn`..#usn8]})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})) With Distinct 0xabc[$@usn5] As usn2,(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] Order By $12[01..][1.e1..] Ascending,0x0 =~_usn4 Desc Match `1esn`=(((`` :@usn5)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn5:`8esn`|:usn1]-(#usn7 :`5esn`))),usn1=(_usn4 :`8esn`{`3esn`:False[.e1..Null],`3esn`:9e0 =~$`5esn`})"), - octest:ct_string("Return Distinct *,1.e1 Contains @usn6 As usn2 Order By (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Ascending,Single(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`) =~Extract(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) =~Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]) Asc,0.0[999..] Asc"), - octest:ct_string("Optional Match ((:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})),`1esn`=((@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) Where 0 Ends With $7 Ends With _usn3 Unwind `6esn`[..`5esn`] As #usn8"), - octest:ct_string("Optional Match `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Where `7esn` In 999 In @usn6 Union Unwind usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`]) Is Null As `3esn`"), - octest:ct_string("Merge @usn5=(`3esn` :`8esn`{usn1:`2esn`[$`3esn`..],`6esn`:$12[..``][..$7]})-[@usn5?:``|:_usn4]-(`8esn` :#usn8)<-[?:``|:_usn4]-({`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12}) On Create Set _usn3 ={`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]] Merge ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})-[@usn6?:#usn7|:_usn4 *00..]->(`` :@usn5{#usn7:0X7[12]})) On Match Set (@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`6esn`:`4esn`|:`7esn` *1000..{`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}]->(:#usn7)<-[`5esn`:`8esn`|:usn1]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}).#usn7? =1000 Contains 123456789 Contains 1e1 On Match Set usn1+=`4esn` Is Null Union Remove Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|1e1 Is Null).`7esn`!,Filter(usn1 In 0x0[..`4esn`] Where $0[$#usn8..01234567]).`6esn`! Union All Unwind \"d_str\" =~`3esn` =~0Xa As `1esn`"), - octest:ct_string("Optional Match ((`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})<-[?{`8esn`:_usn3 Ends With 0x0 Ends With 01234567,#usn8:$`7esn` Is Null Is Null}]->(:``{#usn8:$`2esn`[..`2esn`]})<-[@usn5:#usn7|:_usn4]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})),_usn3=(`6esn` :`7esn`)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]}) Where @usn6[`3esn`..][$7..] Union All Delete Extract(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null) =~Any(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null) =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Merge `6esn`=(({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})) Match (_usn4 :#usn8)<-[`6esn`? *..7{`3esn`:123456789[$#usn7..]}]-(:`2esn`:`3esn`{`7esn`:$_usn4[#usn8..]})-[usn1?:_usn3|:`4esn` *123456789..999{`6esn`:01 Ends With .e0,`4esn`:$`7esn` Is Not Null}]->(_usn3 ) Union All Merge ((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)) On Create Set All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 9e12[usn2..7][.e1..$`7esn`])._usn3? =$`1esn` =~$`1esn` =~#usn7,`2esn`+={`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] On Create Set None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7).`2esn`! =.e1[..$`4esn`][.._usn4]"), - octest:ct_string("Return Distinct *,.e0[..0X0123456789ABCDEF][...e12] As `6esn` Order By $123456789[$``][010] Desc,`4esn` =~$`3esn` =~$123456789 Ascending,@usn5 Starts With 12e12 Starts With @usn5 Desc Skip [$12 Is Null Is Null,999 Contains Count ( * ) Contains 123.654][Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`)..Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0)][[Null Contains _usn4,$`7esn` Is Null Is Null]..({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3})] Limit 7[..12e12][..$`6esn`] Union Remove ({@usn6:9e0 Contains `8esn`})-[usn2 *0X0123456789ABCDEF..{usn2:`` Starts With 12}]-(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})-[`7esn`:@usn5|`8esn`{usn1:9e12 Is Not Null Is Not Null}]->(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]}).``!"), - octest:ct_string("Optional Match (((`2esn` :``)-[?:`3esn`|:`4esn`]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`2esn`?]-(:usn2:@usn6{_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]}))),usn2=((#usn8 :`4esn`:#usn8)-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)) Where 01234567[$`3esn`..] Union With *,$@usn6 =~usn1 As `1esn` Limit .0[$`6esn`..False] Where 0.12[0.e0..][`4esn`..] Union Merge usn1=((:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[#usn8? *0xabc]-(#usn8 :`4esn`:#usn8)) On Match Set #usn7($123456789 Contains 01 Contains 0.12).usn2! =.e12 =~0.0 =~9e0,All(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1).`4esn` =$999[12.0..],`8esn`+=Filter(_usn4 In usn1 Contains False Contains `` Where 9e0 =~$`5esn`) =~``($`4esn`[usn1..$#usn8][12.0..`3esn`]) =~Single(usn2 In 1000 Contains 0.e0)"), - octest:ct_string("Create (`2esn` :``)<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(_usn3 :_usn4:usn1),`8esn`=(`4esn` {@usn5:1e1 In $#usn8 In 12e12})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`7esn` {`8esn`:$123456789 Contains 01 Contains 0.12})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8) Remove (_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`).usn2,[`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]|12 Is Null Is Null].#usn8? Detach Delete 0X0123456789ABCDEF Contains 12.e12 Contains 999,0X0123456789ABCDEF In $1000 In $`3esn`,'s_str' Is Not Null Is Not Null"), - octest:ct_string("With Distinct 0 =~12.e12 =~$``,0.12 Contains .e1 As `6esn`,01 Contains $`7esn` Contains 9e0 Skip [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|.e12 Contains $12 Contains 12.e12][(_usn3 :`6esn`:`7esn`{usn1:$_usn3[9e1][$_usn4],`8esn`:123456789 =~_usn4 =~$0})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-({`1esn`:@usn6})..Any(#usn8 In $`5esn` Is Null Is Null Where 123456789 In $usn2 In `6esn`)][[010[$`8esn`..][0..],False In `3esn`,12e12 Ends With 010 Ends With .0]..{@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}] Limit .12[..`6esn`][..\"d_str\"] Where 0.e0 Ends With 12 Ends With $7 Merge (`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(usn1 :#usn8)<-[ *..0x0{`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) On Create Set `6esn` =$@usn5[Count ( * )] On Create Set Single(usn1 In 00 Starts With _usn3 Where $`7esn` Ends With 07 Ends With 07).`6esn`? =Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789},@usn5 =[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0])],[usn1 In 00 Starts With _usn3 Where 12 Ends With .e12 Ends With $7|_usn3 =~00].#usn7! =Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null"), - octest:ct_string("Remove `3esn`:_usn3,{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}._usn3? Union Merge ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})) On Create Set usn1+=$@usn6 In $`5esn` In $usn2 On Match Set @usn6+=(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}]"), - octest:ct_string("Merge ((:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})) Create (`6esn` :`5esn`)<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6),_usn3=(($999)) Union Create #usn8=((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(#usn7 :`3esn`:`1esn`)<-[?{`4esn`:12e12[$`5esn`][07]}]-(:`1esn`{_usn4:$_usn3[Null]})) Remove {`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}.#usn8? Create (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Union All Unwind 07[12e12] As `4esn` Remove Extract(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`).`5esn`?,(`2esn` {`3esn`:$999[12.0..]})-[:usn2|#usn8 *01234567..12{usn2:$`3esn` In $12 In 's_str'}]-(usn1 :_usn3).`5esn`"), - octest:ct_string("Unwind 12e12[0.e0][9e1] As usn2 Return Distinct *,12 Is Null Is Null As #usn7,$`7esn` Ends With $0 Ends With .e12 As `` Order By $0[01234567..00][$`2esn`..$@usn6] Desc,12.e12['s_str'] Desc,123456789 Starts With #usn7 Starts With `6esn` Asc Limit 999 In 9e1 In 7 Union All Unwind `6esn` Is Not Null As `4esn` Remove [usn1 In 0x0[..`4esn`]|`` Starts With @usn5].`6esn`?,(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})._usn4? Return `8esn`[_usn3..$#usn7],({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn` Skip `7esn` Starts With $usn2 Starts With .e0 Limit 00 Is Not Null Is Not Null"), - octest:ct_string("Remove (:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)}).usn1!,None(usn1 In 00 Starts With _usn3 Where 999 Contains `7esn`).`3esn`?,_usn3:usn1 With Distinct $`4esn`[$`2esn`..] As #usn8,#usn8 In $0,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Skip $@usn5 =~$`` =~$usn2 Limit `8esn` Ends With 999 Ends With 9e0 Union Remove [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]|9e0 Starts With `6esn`].#usn8?"), - octest:ct_string("Detach Delete 010 Starts With `7esn` Starts With 9e1 With `` Contains 12 Contains True Order By #usn7 Starts With 0 Starts With 12 Asc Skip True =~@usn5 =~$`1esn` Union All With Distinct $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Order By $12[01..][1.e1..] Descending Skip .12[.e12..0.e0][0.e0..$`2esn`]"), - octest:ct_string("Merge `6esn`=((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})) Create ({`2esn`:123456789 Starts With `2esn` Starts With .0,@usn6:$123456789[$`2esn`][True]}) With $`2esn`[``..] As `3esn`,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As `3esn`,`7esn`[...e1][..\"d_str\"] Order By [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]) Asc Limit $#usn8 Is Null Where $123456789 In Count(*) In .e1 Union All Merge #usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) On Create Set `4esn` =.12 Is Not Null Is Not Null,{@usn6:True[..'s_str'][..01]}.`2esn` =12.e12[...0][..0x0],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Remove [_usn4 Starts With $@usn6 Starts With #usn7].`4esn`,usn2(Distinct usn2[`3esn`][_usn3]).@usn5? Union All Return *,Count ( * ) In 010 As `1esn` Limit $@usn5 =~07 =~True Merge _usn3=(@usn5 {@usn6:$123456789[0X7..12.e12]}) On Match Set @usn5 =12.e12['s_str'],@usn6 =$usn2[False..`7esn`][`7esn`.._usn3],({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})<-[usn2?:`4esn`|:`7esn` *0X0123456789ABCDEF..]-({usn1:$1000 Contains $`3esn`})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0}).@usn5? =07[07] Return Distinct *,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})"), - octest:ct_string("Delete 0.0[..12e12][..$0],1.e1[.e0..0] Union All Create usn2=(`4esn` {``:07,`3esn`:12e12[_usn3..][$@usn5..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)-[@usn5? *..7{usn2:12e12[$`5esn`][07],usn2:$0[..`8esn`]}]-(_usn4 :#usn8)"), - octest:ct_string("Merge (({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})) With Distinct *,#usn8 Is Not Null As _usn4 Skip {@usn5:$@usn6[..$usn1],`1esn`:usn2[`3esn`][_usn3]}[..Any(`4esn` In 's_str'[12..'s_str'] Where Null Contains _usn4)][..{`7esn`:True[..'s_str'][..01]}]"), - octest:ct_string("Merge usn1=((`3esn` :``)<-[`4esn`]->(`7esn` :#usn8)<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(_usn4 )) Remove ({#usn8:12.0[..$7][..999],@usn5:$`1esn` Is Null})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`})<-[_usn3:usn2|#usn8]-({`3esn`:`3esn` =~0.0 =~$``,`3esn`:@usn6 Contains .e1 Contains $`4esn`}).usn2?,Extract(`6esn` In 0X7 =~`` Where 0X7[..12e12]|00).@usn6! Delete $`5esn` Is Null Is Null,True[`4esn`][$`6esn`] Union All Unwind usn2[..$`3esn`] As `6esn` Union All Return Distinct 07[07] Skip $`4esn` Contains 0Xa Limit 00[.e0..9e1] Merge (:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]})"), - octest:ct_string("Return Distinct *,[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As `7esn` Skip _usn4(Distinct `7esn` Starts With $usn2 Starts With .e0) =~`3esn`() =~#usn8(9e0 Ends With $`7esn`) Match (`` :`7esn`)<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]}) Where $`4esn`[12.0..`5esn`] Create `1esn`=(((usn1 :`4esn`:#usn8)-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}))),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`)<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)) Union Optional Match (`` :#usn7) With $`2esn`[``..] As `3esn`,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As `3esn`,`7esn`[...e1][..\"d_str\"] Order By [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]) Asc Limit $#usn8 Is Null Where $123456789 In Count(*) In .e1 Unwind 123456789 =~_usn4 =~$0 As @usn5 Union All Detach Delete {@usn6:0Xa Is Null Is Null,`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]} =~_usn4(usn2[`3esn`][_usn3]),`6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Merge @usn6=({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567}) On Match Set (:usn1{`1esn`:`6esn` Starts With $usn2 Starts With 0.0})<-[@usn6?:@usn5|`8esn` *..01{_usn4:07 Ends With 07,`8esn`:`6esn`[1.e1..$#usn7][.e0..True]}]-(usn2 :`3esn`:`1esn`).`8esn` =.0,_usn4+=`3esn`[$999..],#usn7($0[$#usn8..01234567],#usn8[$#usn8..]).#usn8! ={#usn8:$`5esn` In False,usn2:$`7esn` In $7} Starts With Filter(usn2 In 1000 Contains 0.e0 Where `2esn`[$`3esn`..]) Starts With All(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`) On Create Set `6esn`+={`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])],#usn8:`1esn`,[usn1 In 0x0[..`4esn`] Where True =~@usn5 =~$`1esn`|0.0[999..]].`4esn`! =$123456789 Contains 01 Contains 0.12 Detach Delete $999[12.0..]"), - octest:ct_string("Return {_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] As `1esn` Skip Extract(`4esn` In `6esn`[1e1..] Where 123456789 =~_usn4 =~$0) Contains (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6) Contains ({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[`7esn`?:#usn8]->(@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0}) Return Distinct {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null As #usn8,010[$`8esn`..][0..] Order By .e12[.12..][_usn4..] Ascending,Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] Asc Skip {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']}[(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)] Limit 9e12[usn2..7][.e1..$`7esn`] Remove `1esn`(Distinct `2esn`[$`1esn`..][$_usn3..])._usn4!,Null.`6esn`?,`3esn`(Distinct 01234567 Ends With 0x0).``! Union All Unwind usn2[`3esn`][_usn3] As @usn5"), - octest:ct_string("Merge `6esn`=((`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})) On Create Set [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]].`1esn` =9e12 =~01 =~$`7esn` On Match Set Single(`6esn` In 0X7 =~`` Where 9e1[0.e0..][#usn8..])._usn3! =0X7 =~`4esn` =~`8esn`,`4esn` =0.12 =~9e0"), - octest:ct_string("Create ``=((`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(usn1 :_usn3))"), - octest:ct_string("Remove [.0 Is Null Is Null,Null Starts With _usn4 Starts With `6esn`].#usn7?,[#usn7 In 01234567[$`3esn`..] Where $999[12.0..]].@usn5!,[12e12[.12..],`2esn`[$`1esn`..][$_usn3..]].usn2? Detach Delete All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],`1esn` Contains Count ( * ) Match usn1=((:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[#usn8? *0xabc]-(#usn8 :`4esn`:#usn8)),#usn7=(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})))"), - octest:ct_string("Detach Delete .e12[$_usn4..][False..],12.e12 Ends With 01 Ends With .e1,[\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Union Remove Extract(`4esn` In `6esn`['s_str'..][010..] Where 12 =~usn1 =~.e12|$`2esn`[..`2esn`]).`8esn`!,_usn3:`` Union Match ((`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`)<-[ *0X0123456789ABCDEF..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]->(_usn3 :_usn3)),(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Create ((:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})<-[@usn6:`3esn`|:`4esn`*]->(`6esn` :`5esn`)),(({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(:_usn4:usn1))"), - octest:ct_string("Return $0 Contains `7esn` Contains $`8esn`,usn1 Contains \"d_str\" Contains 9e12 As _usn4,0Xa[0xabc..] As usn2 Skip \"d_str\" Limit $`7esn` Ends With $`2esn` Ends With $usn1 Delete 0.0 =~0X7 =~#usn7,12e12[True..][07..],Extract(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null) Ends With `2esn`(`7esn`[Null..][@usn5..],123.654[12.e12..1e1]) Ends With Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]) Union All Unwind usn2 Is Not Null Is Not Null As `4esn` Union All Create (usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})"), - octest:ct_string("Match usn2=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}),(`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Where $#usn8 Is Null With Distinct $`5esn` Is Null As _usn3,[usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]] Starts With (`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` ) Starts With (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8) As @usn5 Order By (`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Descending,$`2esn` Ends With `3esn` Ends With $7 Desc Where $usn1[_usn4..][usn2..] Optional Match `8esn`=(($12)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)),(:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) Where 1e1[..#usn8][..'s_str']"), - octest:ct_string("Return Distinct *,$@usn6[..$usn1] As @usn6 Order By `3esn` =~0.0 =~$`` Ascending Skip (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]) Limit 0.e0[@usn6][0x0] Union Create `1esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})),((#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)-[`6esn`:``|:_usn4 *..01]->(`5esn` :#usn7)) Create (#usn7 :@usn5)<-[@usn5*]->({``:$1000 Is Null Is Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(`7esn` :`2esn`:`3esn`) Return *,$@usn6[..12e12],`8esn` Ends With 0X0123456789ABCDEF Ends With `1esn` As usn2 Skip 1000[..$`6esn`][..0xabc] Limit $`8esn`[..$``] Union Optional Match `4esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}),(((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Where $_usn3[..Count ( * )][..@usn5] Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..]"), - octest:ct_string("Match `8esn`=((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})) With Distinct [@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2] Is Null,00[7..$123456789] Order By $`1esn`[`2esn`..0.12][$usn1..Count ( * )] Desc,#usn8 Contains .e0 Contains $`8esn` Ascending,@usn5 In $`6esn` Descending Skip [$_usn3[$`4esn`..Null],0x0 Contains $`8esn` Contains `6esn`,\"d_str\" =~`6esn` =~0Xa] Contains [@usn6 Starts With `7esn` Starts With Null] Contains `6esn`(Distinct $`4esn`[usn1..$#usn8][12.0..`3esn`],12.e12['s_str']) Return Distinct #usn7 Starts With 0x0 Starts With Null,{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}[Extract(_usn4 In usn1 Contains False Contains `` Where `5esn`[.e1][0Xa])..],[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As @usn5 Limit All(@usn5 In .12[#usn7][$`8esn`] Where $`5esn` Contains $@usn6) Is Null Is Null Union Delete `6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),$@usn6[..$#usn7][..12.e12],.e0[`4esn`..`4esn`][0.0..$0] Delete 12.e12 In $1000,{_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]},$999 Ends With $`3esn` Ends With `8esn`"), - octest:ct_string("Optional Match `6esn`=((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})),((@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})) Where 's_str' Ends With .e0 Union Delete `4esn` Is Null,$``[False..123.654] Merge ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[ *010{@usn5:Null Is Null Is Null}]-({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]}))"), - octest:ct_string("Create ((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null})-[#usn7:`1esn` *07..]->(#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})),_usn4=(`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) Return Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As `5esn` Merge (`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Create Set [`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null|9e12 =~01 =~$`7esn`].#usn7! =`2esn`[$`3esn`..],`1esn`(Distinct 07[0..`4esn`]).`4esn`? =Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`]) Contains All(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 01234567[.12..7][1000..1.e1])"), - octest:ct_string("Match (`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Where 0xabc Ends With $7 Ends With $`2esn` Optional Match ({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``),(@usn6 :`5esn`{_usn3:010[$`8esn`..][0..],_usn3:`2esn` Is Not Null Is Not Null}) Merge usn1=((:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[#usn8? *0xabc]-(#usn8 :`4esn`:#usn8)) On Match Set #usn7($123456789 Contains 01 Contains 0.12).usn2! =.e12 =~0.0 =~9e0,All(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1).`4esn` =$999[12.0..],`8esn`+=Filter(_usn4 In usn1 Contains False Contains `` Where 9e0 =~$`5esn`) =~``($`4esn`[usn1..$#usn8][12.0..`3esn`]) =~Single(usn2 In 1000 Contains 0.e0)"), - octest:ct_string("Match _usn3=((:``{`5esn`:.e1 In $@usn6 In 999})) Where .e0[7..$`3esn`] Delete (`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1),`` Contains 12 Contains True,07[12][$`6esn`] Merge (#usn7 :`6esn`:`7esn`)<-[`3esn`?:_usn3|:`4esn`]->(:`1esn`{_usn4:$_usn3[Null]})-[ *..0X7]->(`5esn` :_usn4:usn1) On Match Set _usn4:_usn3,[0xabc Contains $1000].`6esn` =(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})[Filter(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 0.12 Ends With $usn1 Ends With $@usn5)][`3esn`(Distinct 9e12[_usn3])],{@usn6:0.12[0.e0..][`4esn`..]}.`4esn` =0x0 Contains $`8esn` Contains `6esn` On Create Set `5esn`+=0 Starts With `6esn` Starts With 0X0123456789ABCDEF,`4esn`+=$`7esn` Ends With $usn2,[usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null].@usn5! =$1000 Ends With 1e1 Ends With 123.654 Union All Create (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``?:@usn6]-(#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]}) Create (({#usn8:12.0[..$7][..999],@usn5:$`1esn` Is Null})<-[``?:`1esn` *0xabc{`5esn`:$``[_usn4..][`7esn`..]}]->(#usn7 :@usn6:`7esn`{_usn3:\"d_str\" =~`3esn` =~0Xa}))"), - octest:ct_string("With *,$usn1 In 1000 In $#usn7 As `8esn`,$@usn6 =~$#usn8 =~$#usn7 As `2esn` Order By 0Xa[0xabc..$#usn8] Desc Skip `1esn`[`3esn`..][$@usn6..] Delete `6esn` Starts With $`5esn`,$`8esn`[..123456789],`` =~12 =~$#usn7 Merge usn1=((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})) On Create Set `2esn`+=123.654 In \"d_str\" In $_usn3 Union Remove ({`3esn`:1e1 Is Null})-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->(`4esn` {`7esn`:.e0[..999][..0X7]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}).`4esn`?,None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`6esn`[$@usn6..]).`` Remove [1e1 In $#usn8 In 12e12,7 In @usn5 In $`4esn`].`5esn`!,`7esn`:`1esn`,usn2:usn1 Optional Match #usn8=((({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null})<-[`7esn`?:`8esn`|:usn1]-(`7esn` :#usn8)-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`)))"), - octest:ct_string("Remove (@usn5 :`3esn`:`1esn`{_usn3:#usn7 Starts With `1esn`})<-[@usn5?:``|:_usn4]-(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})-[usn2 *0X0123456789ABCDEF..{usn2:`` Starts With 12}]-(`4esn` {`7esn`:.e0[..999][..0X7]})._usn4,[@usn5 In $#usn8 Is Null Is Null Where $#usn8 Is Null|123.654[@usn5]].`6esn`! Unwind [`4esn` In $`8esn` Starts With 1000 Where `5esn` In 12][..Single(`6esn` In 0X7 =~`` Where .0 Starts With `2esn` Starts With `6esn`)][..[@usn5 In $#usn8 Is Null Is Null]] As `1esn` With 's_str'[12..'s_str'] Limit #usn7 Starts With 0x0 Starts With Null Where 1e1[`6esn`..] Union All Remove None(`4esn` In `6esn`[1e1..] Where 12.0[``]).@usn5?"), - octest:ct_string("Unwind Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `3esn` Detach Delete `3esn` Contains 0Xa,9e1[0.e0..][#usn8..] Union Return None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) As _usn3"), - octest:ct_string("Remove (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})<-[usn2?:usn1|`3esn`{`7esn`:0xabc Ends With $#usn7 Ends With #usn8,@usn5:$#usn8}]->(`3esn` :#usn8).usn2 Union All Detach Delete 07[0..`4esn`] Unwind `8esn`[$``] As `3esn` With Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])[All(#usn7 In 01234567[$`3esn`..] Where Count(*)[.e0.._usn4])..][None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..])..] As @usn6,0X0123456789ABCDEF Contains 12.e12 Contains 999 Order By 9e1[0.e0..][#usn8..] Asc,$0 =~`3esn` Asc Limit False Is Null Where 0Xa Is Null Is Null"), - octest:ct_string("Return 07 Ends With 07 As #usn8,00[``..][$`4esn`..],$usn2 Is Not Null Is Not Null Limit {`4esn`:0X7 =~.0 =~\"d_str\",_usn4:00 Ends With $_usn4 Ends With $`2esn`} Ends With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Ends With [$`3esn`[@usn5..$123456789],00,'s_str'[.12..$#usn7][$999..`2esn`]] Detach Delete 07[0..`4esn`] Unwind [@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] As `7esn` Union All Create ((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 )) Union Unwind _usn3[.0] As _usn3 Create `1esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[? *999..]-(`` :`1esn`),((`5esn` :#usn7)<-[?:usn2|#usn8 *1000..]->(@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]}))"), - octest:ct_string("Match (({``:12 Is Null Is Null})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)})),#usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})) Where 07[12][$`6esn`] Delete `6esn`[False..0.0][12e12..$usn2] Remove [.0 Is Null Is Null,Null Starts With _usn4 Starts With `6esn`].#usn7?,[#usn7 In 01234567[$`3esn`..] Where $999[12.0..]].@usn5!,[12e12[.12..],`2esn`[$`1esn`..][$_usn3..]].usn2? Union All Merge `8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`}) Optional Match _usn4=(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Optional Match usn2=({_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[@usn5?:``|:_usn4]-($12),((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)) Where 07 Ends With 07 Union All Optional Match ((:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[`2esn`:@usn5|`8esn`]->(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7})),((({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)<-[#usn7 *123456789..999]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}))) Unwind `7esn` Ends With $usn2 Ends With 999 As usn1 Create `4esn`=((:`7esn`{``:$`1esn` Starts With @usn6})),`1esn`=((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6}))"), - octest:ct_string("Detach Delete Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Detach Delete 0x0[$`3esn`],07 In $7 In 12 Union All Remove Extract(usn1 In 0x0[..`4esn`] Where $`2esn`[123456789..][00..]).#usn7? Union With @usn5 Starts With 12e12 Starts With @usn5,$1000 =~$`7esn`,\"d_str\" Starts With $usn1 As `7esn` Order By $0[..`8esn`] Desc,Count(*) Starts With 1e1 Starts With $123456789 Ascending,12e12[$`5esn`][07] Desc Limit Single(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8)[{_usn3:$0 Ends With $#usn7 Ends With .12}][[12.0[0Xa][00],.0[01][$12]]] Unwind `2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As `4esn`"), - octest:ct_string("With Distinct *,$@usn6 =~usn1 As `1esn` Skip $_usn4[$`1esn`] Limit $1000 In $`7esn` In $7 Where 9e0 In 01234567 Union All With $`5esn`[$123456789][`1esn`] As `8esn`,[@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] As #usn7 Order By None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] Ascending,Count(*) In 01 In .0 Asc,Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`6esn`[$@usn6..]) In {`7esn`:12e12 Ends With 010 Ends With .0} In None(#usn8 In $`5esn` Is Null Is Null Where 123456789 In $usn2 In `6esn`) Asc Where 0.e0[9e0][0e0] Optional Match _usn3=(($999)),``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)) Where 9e0[True..`1esn`] Unwind $_usn4[`3esn`][0] As _usn4"), - octest:ct_string("Unwind ({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) As @usn6 Match `5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Where $``[False] Create usn2=((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn2 *0X0123456789ABCDEF..{usn2:`` Starts With 12}]-(`4esn` {`7esn`:.e0[..999][..0X7]})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})),usn2=({_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[@usn5?:``|:_usn4]-($12)"), - octest:ct_string("Merge (`4esn` {`2esn`:@usn6[`5esn`..$`3esn`],`7esn`:$`1esn` Is Null})<-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]-(`2esn` {`3esn`:$999[12.0..]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}) On Match Set (`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[? *0..010]-(#usn8 :`4esn`:#usn8).usn1! =`7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4},@usn6+=$usn2[12..$`7esn`][$0..$`7esn`],Any(_usn4 In usn1 Contains False Contains `` Where _usn4[$`4esn`..]).#usn7 ={@usn6:12.0[``],_usn4:$`3esn` Contains 0X0123456789ABCDEF Contains 00} Ends With Single(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Ends With Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999|12.0[``]) Union All Match ((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[? *0..010]-(#usn8 :`4esn`:#usn8)),`1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}) Match `3esn`=((:#usn8{_usn4:\"d_str\"[Count ( * )],`2esn`:9e0 Ends With $`7esn`})) Union All Delete ({`2esn`:$usn2 Is Not Null})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})[{_usn4:.12 =~.12 =~1e1,#usn7:.e1 Starts With 0.0 Starts With `6esn`}],1000[123.654..9e12][1000.._usn3]"), - octest:ct_string("With Distinct [@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2] Is Null,00[7..$123456789] Order By $usn2 Is Not Null Is Not Null Desc Limit `8esn` Ends With 999 Ends With 9e0 Remove {_usn3:$_usn4[$`1esn`]}.@usn6!,`8esn`($_usn4[#usn8..],123456789 Starts With `2esn` Starts With .0).usn1?,Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|1e1 Is Null).#usn7? Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Union All Remove {`1esn`:12 Ends With .e12 Ends With $7,`6esn`:$@usn5 Contains 01}._usn4,None(usn1 In 0x0[..`4esn`] Where 0.12 Contains $12 Contains `8esn`).`8esn`?,Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where #usn7[..$1000][..01]|'s_str' Ends With .e0).`8esn`? Return Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])],123456789 Starts With _usn4 Starts With @usn6 Skip _usn3 Ends With 12e12 Ends With .e0 Return Distinct 123.654 Starts With usn1 Starts With @usn5,`7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As `8esn`,$`7esn` Ends With `1esn` Ends With True As `5esn` Order By {`3esn`:$999[12.0..]} =~[$#usn8 In .e12 In 9e1] Desc,\"d_str\" =~`6esn` =~0Xa Asc,(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Descending"), - octest:ct_string("Remove [$0[01234567..00][$`2esn`..$@usn6],@usn6 =~01,`4esn` In $12 In `8esn`].usn1,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[9e1..][0..]|9e12 Is Not Null Is Not Null].#usn8?,None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `7esn` Ends With $usn2 Ends With 999)._usn4! Union All Delete 0X0123456789ABCDEF Contains $usn1 Merge (({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8)) On Match Set `8esn`:`4esn`:#usn8,Extract(`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]|_usn3 Is Not Null Is Not Null).`6esn`? =#usn8 Is Not Null,usn1 =Extract(#usn8 In $`5esn` Is Null Is Null Where @usn6 Contains .e1 Contains $`4esn`) In Filter(`4esn` In `6esn`['s_str'..][010..] Where 12e12[Count ( * )..][usn2..]) In [123456789 In $usn2 In `6esn`,Count(*) Ends With 010]"), - octest:ct_string("Merge `1esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[? *999..]-(`` :`1esn`) On Create Set `4esn`+=01234567[.12..7][1000..1.e1],``(`` In `6esn`).@usn6 =`1esn` In 999 In $#usn7,`7esn` =9e12 On Match Set `2esn` =$usn2[False..`7esn`][`7esn`.._usn3],``+=_usn4 Ends With 01 Ends With $`1esn`,``+=01 Ends With .e0 Remove [usn1 In 00 Starts With _usn3].#usn8?,Extract(`4esn` In `6esn`['s_str'..][010..] Where $999 Ends With $`3esn` Ends With `8esn`|0x0 =~$`7esn` =~@usn6).@usn5?,[usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`|$`8esn`[$``..$7][$1000..$`7esn`]].`3esn`! Remove {`2esn`:usn2[`3esn`][_usn3]}.`5esn`?,Extract(`4esn` In `6esn`[1e1..] Where 12[`7esn`...0][0.12..``]|@usn6 Starts With `7esn` Starts With Null).@usn5,Extract(`4esn` In $`8esn` Starts With 1000 Where `5esn` In 12|010 Contains 0X0123456789ABCDEF).`2esn` Union Optional Match `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Where `7esn` In 999 In @usn6"), - octest:ct_string("Merge `2esn`=(:usn1{`8esn`:usn1 Contains $``})-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1})-[ *010{@usn5:Null Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] Unwind Extract(usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`) Contains [0 Contains 12e12,0xabc Ends With $7 Ends With $`2esn`,0x0 =~_usn4] As `7esn` Union Unwind Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) As usn2 Optional Match `1esn`=((usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) Where _usn4 Starts With 0X7 Merge usn1=(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(usn1 :#usn8)<-[ *..0x0{`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) On Match Set `2esn`+=123.654 In \"d_str\" In $_usn3 Union Match ((:_usn3{usn2:$`5esn`[$123456789][`1esn`]})),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})) Where $0[$#usn8..01234567]"), - octest:ct_string("With Distinct $#usn8 In .e12 In 9e1 Order By All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..] Asc,0Xa[0xabc..] Ascending,@usn6[$`3esn`] Ascending Skip 1e1 In $#usn8 In 12e12"), - octest:ct_string("Remove [`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`]|#usn8 Ends With `4esn` Ends With $`4esn`]._usn4!,[12 =~usn1 =~.e12,7[12e12..$_usn4][9e1..True],_usn3 Ends With 12e12 Ends With .e0].`6esn`?,[@usn6 In @usn5 In $`6esn` Where 00[``..][$`4esn`..]|`2esn` Contains $999].#usn7 With [#usn8 In $`5esn` Is Null Is Null Where 0.0[..12e12][..$0]][{`2esn`:.e1 In $@usn6 In 999,usn2:@usn5 Ends With $`3esn` Ends With 12e12}..] As @usn5,usn2[`3esn`][_usn3] Order By None(usn2 In 1000 Contains 0.e0 Where $`6esn`[Count(*)..0.e0][0.0..Count ( * )])[(:usn2:@usn6{@usn6:$`4esn`[$`2esn`..]})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})][Any(@usn6 In @usn5 In $`6esn` Where 12.0[0Xa][00])] Descending Merge ((@usn6 :#usn7{@usn5:Null Is Null Is Null})) On Create Set `8esn` =Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`],`8esn`+=Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[usn2($#usn8 Is Null Is Null)..Extract(usn1 In 0x0[..`4esn`] Where 123456789 In $usn2 In `6esn`|@usn5[..True][..0X7])][(`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` )..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]] Union Return Distinct *,9e1 Starts With 9e1 Starts With 010 Delete Null[1.e1..],999[$`6esn`],None(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1])[`8esn`(00[``..][$`4esn`..],123.654[@usn5])] Union All Match `1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) Remove (@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`6esn`,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]).usn2!,(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn`]->(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`1esn`!"), - octest:ct_string("Detach Delete All(_usn4 In usn1 Contains False Contains `` Where $`4esn`[$`2esn`..])[..Single(usn1 In $123456789 Contains usn2 Where $usn1[0.12..]['s_str'..])][..``(Distinct `1esn`[0e0..])]"), - octest:ct_string("Remove Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0)._usn3!,[`4esn` In 's_str'[12..'s_str'] Where 0.12 In 01 In $`3esn`|9e0 =~$`5esn`].`3esn`! Union All Optional Match `1esn`=((:`8esn`)-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`{#usn8:Null[0e0][12],`2esn`:`8esn` In $@usn5}]-({_usn3:999 In $_usn4 In 0X7,`1esn`:1e1 In $#usn8 In 12e12})) Optional Match `3esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}),`5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Where 0e0 Remove {`7esn`:True[..'s_str'][..01]}.`1esn`!,`2esn`:@usn5,({`1esn`:@usn6})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1}).@usn5?"), - octest:ct_string("Return Distinct 07[07] Skip $`4esn` Contains 0Xa Limit 00[.e0..9e1] Merge (:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]})"), - octest:ct_string("Delete #usn8 Ends With $@usn6 Ends With _usn4,Count(*)[12.e12..],{`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Create (#usn7 :`6esn`:`7esn`)<-[`3esn`?:_usn3|:`4esn`]->(:`1esn`{_usn4:$_usn3[Null]})-[ *..0X7]->(`5esn` :_usn4:usn1),usn2=(`8esn` :#usn8)-[usn2?]-(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]}) With $_usn4[$`1esn`] As `5esn`,(:`5esn`{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[usn1 *..0x0]->(usn1 :`6esn`:`7esn`)-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})[..[07[$999],@usn6[$`7esn`]]][.._usn4(0X7 In $@usn5 In 9e0)] As `6esn`,All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..] As `5esn` Order By True[0x0][@usn6] Ascending,$`5esn` Contains $@usn6 Desc Skip Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null Limit _usn3 In $#usn8 In usn1 Where 's_str'[..0.e0][..`1esn`] Union All With Distinct $999[$1000] As `4esn`,[`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Limit {`8esn`:@usn5[..True][..0X7],`1esn`:`1esn` Contains Count ( * )}[{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)] Where $_usn4[12e12][`4esn`] Delete [True[..'s_str'][..01]] In Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999]) In All(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`]),$`5esn` Starts With _usn3 Starts With @usn5 Return None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) As _usn3"), - octest:ct_string("Delete .12[`1esn`..],usn2 Starts With @usn6 Union All Create `4esn`=((`` :`1esn`{@usn5:@usn5 Starts With 12e12 Starts With @usn5})-[`6esn`:`8esn`|:usn1$_usn3]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})) With Distinct *,{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)] Order By .e1 Starts With $`8esn` Asc Limit $#usn7 In .e1 In 01 Where `5esn`[`1esn`..`1esn`] Union All Remove All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.e12 Contains `5esn`).`6esn`? Match (@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Remove Any(#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7).`3esn`?,{`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`}.`4esn`!"), - octest:ct_string("Unwind #usn8[$#usn8..] As #usn8 Merge (((`1esn` :`8esn`)-[_usn4:`7esn`|`2esn`]-(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3}))) Create ((_usn4 {`8esn`:9e1 In 01 In 999})) Union All Merge ((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) On Match Set [`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|`` Contains 12 Contains True].`2esn`? =$@usn6[..$#usn7][..12.e12],None(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12).`8esn`! =12[..9e0][..999] With [$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}),[@usn5 In $#usn8 Is Null Is Null Where 7 In 0xabc][[Null[01234567][01234567],07[1e1],Count(*)[12.e12..]]..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)] Skip `1esn`[@usn6..$123456789] With *,{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)] Order By .e1 Starts With $`8esn` Asc Limit $#usn7 In .e1 In 01"), - octest:ct_string("Return Distinct 1e1[..#usn7][..#usn7],0[0.12..] As @usn5 Order By (_usn3 :`6esn`:`7esn`{usn1:$_usn3[9e1][$_usn4],`8esn`:123456789 =~_usn4 =~$0})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-({`1esn`:@usn6}) In _usn3(0x0[0X7..][usn1..]) In None(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str') Descending,[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Desc Skip Single(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) In [$123456789 Contains usn2,010 Is Null Is Null,`7esn` Starts With $usn2 Starts With .e0] In `2esn`($`5esn` Is Not Null,7 In $`3esn` In #usn7) Union Merge `3esn`=(usn1 :`7esn`)<-[? *00..{`6esn`:$@usn6[_usn3..0.e0]}]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}) On Create Set `1esn` =0X0123456789ABCDEF[.e0..$`4esn`] On Match Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] Return *,{`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])] As `3esn` Limit All(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..]) Is Null Is Null Union Merge `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) On Create Set `4esn` =010 In `7esn`,usn2+=0.e0[@usn6][0x0] Optional Match ((`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})<-[?{`8esn`:_usn3 Ends With 0x0 Ends With 01234567,#usn8:$`7esn` Is Null Is Null}]->(:``{#usn8:$`2esn`[..`2esn`]})<-[@usn5:#usn7|:_usn4]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})),_usn3=(`6esn` :`7esn`)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]}) Where @usn6[`3esn`..][$7..] Optional Match `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) Where usn1 In 1000 In $`5esn`"), - octest:ct_string("Unwind Any(@usn6 In @usn5 In $`6esn` Where $@usn5 In 12e12 In Count(*)) Contains [_usn4 In usn1 Contains False Contains `` Where 0.12 In $7 In 0] Contains Any(`4esn` In `6esn`['s_str'..][010..] Where 12.e12 Ends With 01 Ends With .e1) As #usn8"), - octest:ct_string("Detach Delete 1000 Ends With 1000 Ends With $`4esn`,Filter(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null) Ends With [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1] Ends With _usn3(Distinct $123456789 Ends With $`6esn`) Merge `4esn`=((#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) On Match Set {`8esn`:`8esn` In $@usn5}.`3esn`! =$@usn5[#usn8..][$`1esn`..],All(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $@usn6 Is Null Is Null).`1esn`! =$12[..``][..$7] On Create Set usn2 =_usn3 Is Not Null Is Not Null,`4esn` =.e1 Starts With $`8esn` Union All Create (#usn7 :@usn5)-[`4esn`:_usn3|:`4esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:usn1{`8esn`:usn1 Contains $``}),``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}) Return Distinct $`4esn`[$`2esn`..] As #usn8,#usn8 In $0,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Limit Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`6esn`[$@usn6..]) In {`7esn`:12e12 Ends With 010 Ends With .0} In None(#usn8 In $`5esn` Is Null Is Null Where 123456789 In $usn2 In `6esn`)"), - octest:ct_string("Match `8esn`=((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Where $usn2[0e0..]"), - octest:ct_string("Detach Delete `2esn` In Count(*) In 9e0,$usn2[False..`7esn`][`7esn`.._usn3],999[``..][Null..] Create ((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})),(`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[? *..0X7{`3esn`:`8esn`[$``]}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})-[?:usn1|`3esn`{#usn8:1000[..$`6esn`][..0xabc]}]->(usn1 :_usn3{@usn6:True[..'s_str'][..01]}) Remove ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`5esn`? *010]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null}).`7esn`! Union All Optional Match #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`1esn`=(((`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}))) Where 010 Contains Count(*) Return Distinct *,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] As @usn6 Order By 010 Starts With `7esn` Starts With 9e1 Ascending,123456789 Is Null Descending,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] Desc Skip {#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null Match #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`) Where $`2esn`[..`2esn`] Union All Match ((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})),((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)) Where 123456789[1000] Return Distinct *,010 =~`6esn` As `4esn` With 1000 Contains $#usn7 Contains `6esn`,12.0 Contains 0.e0 As `6esn`,$12[..7][..07] As #usn8 Order By Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending Skip All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)[[usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1]] Limit 0xabc Starts With _usn3"), - octest:ct_string("Create `1esn`=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(usn1 :`4esn`:#usn8{``:0 Is Not Null Is Not Null,`3esn`:usn1 Starts With $#usn7 Starts With `5esn`})) Match @usn6=(((`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}))) Where `7esn`[1e1..07][0x0..Count ( * )] Merge `5esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) On Create Set `1esn`+=_usn4(Distinct `7esn` Starts With $usn2 Starts With .e0) =~`3esn`() =~#usn8(9e0 Ends With $`7esn`) Union Match (((:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]})<-[? *..0x0]->(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})-[? *..0X7{`3esn`:`8esn`[$``]}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}))) Where True[`4esn`][$`6esn`] Unwind 9e12 =~01 =~$`7esn` As usn1 Union All Detach Delete `7esn`[$999][7] Return Distinct 12.0 Contains 0.e0 As `6esn`,Count ( * ) In 010 Order By @usn5 Contains 01 Contains 12 Ascending Skip `2esn`($`4esn` Starts With 1e1) Ends With None(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) Ends With Filter(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Limit 0.12 Ends With $usn1 Ends With $@usn5 Unwind 12.e12 Contains $`5esn` As #usn7"), - octest:ct_string("Merge ((:`2esn`:`3esn`{`7esn`:$_usn4[#usn8..]})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)) Remove [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`6esn`[$@usn6..]|010 =~$usn2 =~1e1].@usn6? With Distinct 01234567 Ends With 0x0,[`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As #usn8,$1000 Is Not Null Is Not Null Where True[Count(*)..][1e1..]"), - octest:ct_string("Return *,[`4esn` In 's_str'[12..'s_str'] Where 9e1 Contains $`3esn` Contains 01234567][[7[..12e12][..$`6esn`]]..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}],$999 Ends With $`3esn` Ends With `8esn` Order By .12[..$`6esn`] Descending,@usn6(Distinct Null[0e0][12])[..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]]][..`8esn`(010 =~`6esn`)] Descending Skip Count(*)[True] Limit 0xabc Ends With $7 Ends With $`2esn`"), - octest:ct_string("Return 123.654 =~$#usn8 =~`8esn` As `6esn`,@usn6[`5esn`..$`3esn`] As ``,Null[1.e1..] As _usn4 Limit #usn8 Is Not Null Union All Merge `2esn`=(:`1esn`)<-[`2esn`?:usn2|#usn8{`6esn`:0X7[.e12..01234567],@usn6:`7esn`[...e1][..\"d_str\"]}]->(`5esn` :`8esn`{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}) On Match Set _usn3+=07 In Count ( * ) In \"d_str\" Match (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0) Remove (usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})._usn4?,usn1:`3esn`:`1esn`,{`2esn`:9e1 In 01 In 999,`5esn`:$@usn6[..$usn1]}.@usn5!"), - octest:ct_string("Return Distinct Single(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`) Is Null As `8esn` Order By @usn5 Is Not Null Is Not Null Ascending,00[``..][$`4esn`..] Desc,usn2 Ends With $`5esn` Ends With `2esn` Asc Skip [usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..] Union Optional Match (`5esn` {_usn4:0X7 =~``}),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null}))"), - octest:ct_string("Return Distinct $#usn8[1e1][9e1] As @usn5,$`3esn`[`2esn`...e0] As _usn3,.e1 Starts With $`8esn` Skip 0x0 =~$`7esn` =~@usn6 Limit [$_usn3[$`4esn`..Null],0x0 Contains $`8esn` Contains `6esn`,\"d_str\" =~`6esn` =~0Xa] Contains [@usn6 Starts With `7esn` Starts With Null] Contains `6esn`(Distinct $`4esn`[usn1..$#usn8][12.0..`3esn`],12.e12['s_str']) Union Create `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Optional Match ((:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})),_usn4=(({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})<-[#usn7]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn4:usn1)) Where _usn4 Ends With 01 Ends With $`1esn`"), - octest:ct_string("With *,({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]}) =~`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0),\"d_str\" =~`6esn` =~0Xa As `4esn` Detach Delete 0.0[.e12][7],usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null,#usn8[$_usn3..7][``..$`5esn`]"), - octest:ct_string("Unwind True Is Not Null As `` Remove Extract(`4esn` In $`8esn` Starts With 1000 Where `5esn` In 12|010 Contains 0X0123456789ABCDEF).`2esn`,{#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}.`2esn`! Create (_usn3 :_usn4:usn1)<-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(:@usn6:`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}),#usn8=(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[usn1?:`8esn`|:usn1]->(`2esn` {usn2:$999[12.0..]})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Union All Unwind _usn4 Is Not Null Is Not Null As `2esn` Union Create _usn4=(usn1 :_usn4:usn1)<-[`5esn` *0..010]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) With Distinct *,$_usn4[#usn8..] As `3esn` Order By $usn2[0e0..] Ascending,$0 =~`3esn` Descending Skip [\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Where _usn3 =~00 Detach Delete Any(#usn7 In 01234567[$`3esn`..] Where 00 In 1e1)[[usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0|0xabc[12.e12..`1esn`]]..][[@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2]..],12.e12 Ends With 01 Ends With .e1,07[12e12]"), - octest:ct_string("Merge `3esn`=(({`5esn`:0.12 Contains .e1})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0})-[:@usn5|`8esn` *123456789..999{usn1:9e12 Is Not Null Is Not Null}]-(#usn7 :`5esn`)) Union All Detach Delete $`7esn` In 0.e0 In `4esn` Delete Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)[..(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})][..Any(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)],123.654 Starts With usn1 Starts With @usn5"), - octest:ct_string("Unwind All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])] As #usn8 Merge ((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) On Match Set usn1+=_usn4[$`4esn`][0X7] On Create Set `4esn` =010 In `7esn`,usn2+=0.e0[@usn6][0x0] Unwind 0X7[..12e12] As _usn3"), - octest:ct_string("Remove @usn6(Distinct $123456789[..0x0][..`4esn`],07[$999]).@usn6 Create ((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)),_usn3=({usn1:$1000 Contains $`3esn`})<-[?:`1esn`{`1esn`:123456789[1000]}]->(:usn1{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})-[@usn6?:#usn7|:_usn4 *00..]->(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Detach Delete Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1)[00..],({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) In None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 9e0[$_usn3..0X7][7..$#usn8]) In _usn3(Distinct 010[@usn5..]),Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)]"), - octest:ct_string("Remove {_usn4:00 In 0.12 In `5esn`,@usn5:0X7 =~.0 =~\"d_str\"}.`6esn`? Return Distinct @usn5[..True][..0X7] As #usn8,[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..] Order By 0 Ends With $7 Ends With _usn3 Ascending Skip \"d_str\"[$`7esn`][$1000] Limit False[0Xa..$@usn5][$`6esn`..12e12] Remove `4esn`:``,{#usn7:0[0.12..]}.usn2! Union All Create (({``:12 Is Null Is Null})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)})),#usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})) Remove (`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(`4esn` :#usn7).@usn5?,All(`4esn` In `6esn`['s_str'..][010..] Where \"d_str\" =~`6esn` =~0Xa).``!,(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}).usn1! With Distinct `2esn` Contains $999 As #usn7,$123456789[False.._usn3] As `1esn` Order By (usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Ends With [$`8esn` =~$usn2,0X0123456789ABCDEF[..usn1],`` In `6esn`] Descending Skip 0X7[..12e12] Union Optional Match ``=(((:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(:`7esn`{@usn6:0.0[999..],#usn8:Null Is Null Is Null})-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]}))) Where 1000 Ends With 1000 Ends With $`4esn` Remove [_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4].@usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`!,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`)._usn4 Unwind @usn6(Distinct `` Starts With @usn5) =~Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]) =~#usn7(Distinct $0 =~$0 =~.e0) As `2esn`"), - octest:ct_string("With (_usn3 :`6esn`:`7esn`{usn1:$_usn3[9e1][$_usn4],`8esn`:123456789 =~_usn4 =~$0})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-({`1esn`:@usn6}) In _usn3(0x0[0X7..][usn1..]) In None(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str') As _usn4 Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending Skip 07[12][$`6esn`] Where $1000 Contains $`3esn` Remove [12e12 Starts With $123456789 Starts With 12.0].usn1 Merge (((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) On Create Set @usn6 =`3esn`[..7][..12e12]"), - octest:ct_string("Return *,$_usn3 =~`7esn` =~$_usn4 As `` Skip Count ( * ) Ends With 1000 Ends With 12 Limit .e1[..$`4esn`][.._usn4] Remove ({`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[ *..0x0{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}]-(`5esn` {`8esn`:0.0[12...12]})._usn3,All(`4esn` In `6esn`[1e1..] Where 07[12e12]).`3esn`!,[0Xa[$``..][01234567..]].@usn5 Delete 00[01234567][False] Union All Unwind {#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `5esn` Detach Delete `7esn` Starts With $`` Starts With $#usn7 Create `4esn`=((`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})),_usn3=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]}))"), - octest:ct_string("Unwind Count(*)[`7esn`..$12] As `1esn` Union Optional Match `7esn`=(@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Union With Distinct *,$usn2[..12.0],$`2esn`[``..] As `3esn` Skip _usn3[.0] Match (`1esn` :`1esn`) Unwind $@usn5 Contains $`7esn` Contains #usn8 As ``"), - octest:ct_string("With Distinct .12[#usn7][$`8esn`],12 Ends With 07 Ends With @usn6 As usn1 Order By $999[..`1esn`] Ascending,Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending,[$`8esn` =~$usn2][Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..] Asc Create #usn8=((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Match (({#usn7:Count ( * )[@usn6..0x0]})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})) Where 0X7[0e0..] Union Create #usn8=((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Remove `8esn`(Distinct 00 In 1e1).usn2!,Single(`4esn` In `6esn`['s_str'..][010..] Where 0e0 Is Not Null Is Not Null).`7esn`! Union Return Distinct Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0]) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where Count(*)[True]) In Extract(`4esn` In 's_str'[12..'s_str'] Where 0xabc Ends With $#usn7 Ends With #usn8|.e1 Starts With 0.0 Starts With `6esn`) As #usn7,@usn5 Starts With \"d_str\" As `` Match ((`7esn` :`2esn`:`3esn`{@usn6:9e0 Ends With $`7esn`})),`6esn`=((`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]}))"), - octest:ct_string("Merge ((:#usn8)<-[`2esn`?]-(:usn2:@usn6{_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})<-[`5esn`? *999..{#usn7:0X7[12]}]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})) On Create Set `4esn` =.e12[.12..][_usn4..] On Create Set #usn7+=$123456789[0.0..] Detach Delete {`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)],({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) In None(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn8 Ends With `4esn` Ends With $`4esn`) In Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`]) Union Merge usn2=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) On Create Set None(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0).`4esn`! =0[usn2..],[@usn6[$`3esn`]].`4esn` =01 In _usn3 In 12,`1esn`+=123456789 =~usn1"), - octest:ct_string("Match @usn5=(((:`1esn`{#usn7:1e1[`6esn`..]})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where $0[01234567..00][$`2esn`..$@usn6] With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null,0xabc[$@usn5] As `7esn`,.e0[usn2..] As _usn3 Skip 0x0 In `8esn` In 999 Where 07[0..`4esn`]"), - octest:ct_string("Remove (@usn5 :`3esn`:`1esn`{_usn3:#usn7 Starts With `1esn`})-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`)<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2}).#usn7,None(@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2).`5esn`? Union Create #usn7=(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))),`5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Union All Merge `1esn`=(((:_usn3{@usn6:$`7esn` Is Null Is Null})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)<-[`3esn`? *999..{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`}]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) On Match Set _usn3+=01 In 01 In 12,#usn7 =$@usn5,`1esn`:`5esn` Detach Delete $@usn6[_usn3..0.e0] With [#usn8 In $`5esn` Is Null Is Null][Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where #usn7[..$1000][..01])..][[@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]]..],(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[usn1?:`8esn`|:usn1]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Is Null Is Null As #usn7,1e1[..#usn8][..'s_str'] As #usn8 Order By `3esn`[$123456789][$#usn7] Ascending,{@usn6:12.0[``],_usn4:$`3esn` Contains 0X0123456789ABCDEF Contains 00} Ends With Single(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Ends With Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999|12.0[``]) Asc Skip (:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0}) Starts With Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) Starts With [12.0 In 1000 In _usn4] Limit 00[01234567][False]"), - octest:ct_string("Remove All(#usn8 In $`5esn` Is Null Is Null Where 01234567 Ends With 12.0 Ends With 0X7).`8esn`! Detach Delete [.0[01][$12]][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`3esn` =~$`7esn` =~False|7[..12e12][..$`6esn`]]],07[07]"), - octest:ct_string("Create (((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]-({usn1:0x0[0X7..][usn1..]}))),(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(`7esn` :`8esn`{`4esn`:00 Ends With .12 Ends With `4esn`})-[ *07..]->(usn2 :@usn6:`7esn`) Remove [_usn3 Ends With 0x0 Ends With 01234567,9e0[$_usn3..0X7][7..$#usn8]].`6esn` Create @usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})) Union All Unwind All(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`)[[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]]..][({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})..] As _usn3 Union All Remove Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]|7[..`1esn`]).``,Extract(#usn8 In $`5esn` Is Null Is Null Where `3esn`[..7][..12e12]).@usn6,(:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[?:`1esn`]-(_usn4 :@usn6:`7esn`{@usn5:$_usn3[$`4esn`..Null]})._usn3!"), - octest:ct_string("Delete #usn8 Ends With 1e1 Remove ({_usn4:010 =~$usn2 =~1e1,`2esn`:0X0123456789ABCDEF Is Not Null})<-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]-(`8esn` :`1esn`)<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(#usn7 :@usn5)._usn4?,None(#usn8 In $`5esn` Is Null Is Null Where 01234567 Ends With 12.0 Ends With 0X7).@usn5! With Distinct *,9e12[_usn3] As `8esn`,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn` Order By `6esn` Starts With $`5esn` Desc,$`7esn` Ends With 07 Ends With 07 Desc Where 's_str'['s_str'..$usn2][_usn3.._usn3] Union Unwind Extract(`6esn` In 0X7 =~`` Where $_usn3[9e1][$_usn4]|@usn6[..0xabc][..$#usn7])[[@usn6 In @usn5 In $`6esn` Where $@usn5 In 12e12 In Count(*)|999[$`6esn`]]..Any(_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`)][{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`],usn2:@usn6[`3esn`..][$7..]}..`7esn`($123456789 Ends With $`6esn`)] As _usn4 Merge `8esn`=(({_usn3:$0 Ends With $#usn7 Ends With .12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[?:``|:_usn4 *..0X7]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}))"), - octest:ct_string("Remove {``:7[..`1esn`],_usn4:.e1 Ends With _usn4 Ends With @usn5}.usn2? Detach Delete (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[`4esn`{#usn8:Null[0e0][12],`2esn`:`8esn` In $@usn5}]-({_usn3:999 In $_usn4 In 0X7,`1esn`:1e1 In $#usn8 In 12e12}) Contains 0X0123456789ABCDEF Contains Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1]) Union All Unwind `1esn`(Distinct 0.0[999..],9e0 Ends With $`7esn`) Ends With (`7esn` {`8esn`:Count ( * ) =~Count(*)})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}) Ends With (#usn7 :`2esn`:`3esn`)<-[`2esn`?*..]->(:#usn8{`5esn`:0 Contains 12e12}) As usn1 Remove Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]|@usn6 Contains .e1 Contains $`4esn`).`4esn`!,@usn6:usn2:@usn6,None(`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]).`2esn`! Union All Create ((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(@usn5 {_usn4:010[$@usn6],`6esn`:123456789[1e1..0.0]})<-[`6esn`?:`2esn`|usn2 *01234567..12]->(:`7esn`{#usn7:True =~@usn5 =~$`1esn`})),`6esn`=({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Remove None(usn1 In 00 Starts With _usn3 Where 123456789[`4esn`..][Count ( * )..]).#usn8!,All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..])._usn4"), - octest:ct_string("Unwind [`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) As #usn8 Union All Optional Match usn2=((`5esn` :usn2:@usn6{`5esn`:0Xa In .e1 In Count(*)})),_usn4=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]}))"), - octest:ct_string("Remove None(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567).`8esn` Union Merge usn2=(:`8esn`{usn2:7 Contains 9e1})<-[_usn3?:`7esn`|`2esn` *010]-(#usn8 :`4esn`:#usn8)-[`8esn` *..0x0{#usn7:Count ( * )[Count ( * )..12e12][usn1..1000],`4esn`:010 Is Null Is Null}]->(@usn6 ) Unwind 0x0 =~_usn4 As `5esn`"), - octest:ct_string("Return $_usn3[Null] As usn1,.e1 Starts With 0.0 Starts With `6esn` Order By All(@usn5 In $#usn8 Is Null Is Null Where 's_str'[..0.0][..$`4esn`]) Is Null Is Null Asc,`3esn`(.e0 =~`5esn`)[Single(`6esn` In 0X7 =~`` Where $`3esn` =~Null)][[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $_usn3[$`4esn`..Null]|False[`2esn`..#usn8]]] Asc,00 In 12.e12 Descending Limit $1000[01234567] Merge usn2=(:`8esn`{usn2:7 Contains 9e1})<-[_usn3?:`7esn`|`2esn` *010]-(#usn8 :`4esn`:#usn8)-[`8esn` *..0x0{#usn7:Count ( * )[Count ( * )..12e12][usn1..1000],`4esn`:010 Is Null Is Null}]->(@usn6 ) On Match Set usn1+=Extract(#usn7 In 01234567[$`3esn`..] Where 0X7 In $999 In $``)[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..],Any(_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]).#usn8! =#usn7 Starts With 0x0 Starts With Null On Match Set @usn6+=0X7 In 123456789 In $`5esn`,({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[`4esn`?{`1esn`:$`8esn`[..123456789]}]-(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12}).`3esn` =0e0 Is Not Null Is Not Null Merge _usn4=((@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) On Match Set Extract(usn2 In 1000 Contains 0.e0 Where $1000[01234567]|$`6esn`[Count(*)..0.e0][0.0..Count ( * )]).`8esn`! =$123456789[False.._usn3],`3esn`(Distinct 0X7 In $999 In $``,$0 Is Not Null).`7esn`? =0.e0[123.654],`1esn`+=True Starts With 12.0 Starts With $@usn5 Union All Return $`2esn`[``..] As `3esn`,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As `3esn`,`7esn`[...e1][..\"d_str\"] Unwind _usn4 Starts With 0X7 As `4esn` Merge `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) On Create Set `5esn` =999[.e12][01],Extract(usn1 In 0x0[..`4esn`] Where @usn6[$`3esn`]).#usn8? =`1esn` In 999 In $#usn7,usn1 =12.e12[0e0..7] On Match Set `1esn`+=Null[0e0][12],Filter(usn1 In 0x0[..`4esn`] Where $`` Ends With 12e12).usn1! =Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] Union All Unwind _usn4 Starts With 0X7 As `4esn` Return Distinct *,\"d_str\"[Count ( * )] As `7esn`,0x0[123456789] As @usn6 Skip `1esn`[@usn6..$123456789]"), - octest:ct_string("With Distinct $#usn8[1e1][9e1] As @usn5,$`3esn`[`2esn`...e0] As _usn3,.e1 Starts With $`8esn` Skip 0x0 =~$`7esn` =~@usn6 Limit [$_usn3[$`4esn`..Null],0x0 Contains $`8esn` Contains `6esn`,\"d_str\" =~`6esn` =~0Xa] Contains [@usn6 Starts With `7esn` Starts With Null] Contains `6esn`(Distinct $`4esn`[usn1..$#usn8][12.0..`3esn`],12.e12['s_str'])"), - octest:ct_string("Remove `8esn`:`4esn`:#usn8,{`3esn`:12[usn1][True],`2esn`:9e1 Is Null Is Null}.`7esn`? Unwind 0Xa Is Null Is Null As @usn5 Union With Distinct *,`3esn` =~`3esn` =~$`6esn` As `7esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 123456789[$#usn7..]) Contains [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1] Skip .12[..`6esn`][..\"d_str\"] Limit [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] Where `5esn`[`1esn`] Delete 7[..0X7][..'s_str'],9e0 Ends With $`7esn`,$0 Ends With $#usn7 Ends With .12"), - octest:ct_string("Merge (@usn6 {`4esn`:$`2esn`[..`2esn`]})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null}) On Create Set [$usn1 In 1000 In $#usn7,$#usn7 In 12.0 In 0X0123456789ABCDEF,9e0 Is Not Null]._usn3 =All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`! =0xabc Starts With _usn3 On Match Set `2esn` =$usn2[False..`7esn`][`7esn`.._usn3],``+=_usn4 Ends With 01 Ends With $`1esn`,``+=01 Ends With .e0 Delete `2esn`[$`1esn`..][$_usn3..],7 =~9e0 =~'s_str' Merge ((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)) On Create Set All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 9e12[usn2..7][.e1..$`7esn`])._usn3? =$`1esn` =~$`1esn` =~#usn7,`2esn`+={`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] On Create Set None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7).`2esn`! =.e1[..$`4esn`][.._usn4]"), - octest:ct_string("Delete Count ( * )[1000],usn2 =~0x0,@usn6 Starts With `3esn`"), - octest:ct_string("Create ((@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`)),usn2=((`1esn` :usn2:@usn6)-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}))"), - octest:ct_string("Delete usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`]) Is Null,.12 Is Not Null Is Not Null,1e1 Starts With #usn8 Starts With 1.e1 Match ((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})),(_usn3 :_usn3) Union Return Distinct *,[#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|@usn6 Starts With `7esn` Starts With Null] Is Not Null Is Not Null,`8esn`[_usn3..$#usn7] Order By 's_str' Starts With 1000 Starts With #usn8 Descending Remove {`1esn`:0xabc[12.e12..`1esn`]}.`1esn`! Union All Return *,$@usn6 =~$#usn8 =~$#usn7 As `7esn`,#usn7 Ends With `4esn` Ends With @usn5 As `` Order By (`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Ascending,{@usn6:0X0123456789ABCDEF[..usn1]}[..`7esn`($`3esn` =~$`6esn` =~`8esn`)][..(`4esn` {`6esn`:$12[..``][..$7]})<-[#usn7]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})] Ascending Skip Count ( * )[..usn1][..12.e12]"), - octest:ct_string("Match (`4esn` :@usn5{``:$`2esn`[$`2esn`..],@usn6:010 =~`6esn`}) Remove `2esn`:`2esn`:`3esn` Union All Return $_usn4[12e12][`4esn`] As `5esn`,@usn6[`5esn`..$`3esn`] As ``,0.0[..12e12][..$0] Skip `4esn`($`8esn`[..$usn1][..'s_str'],010[@usn5..]) Ends With [123.654 Contains .e1 Contains `1esn`] Ends With {`8esn`:0X7[..12e12]} Limit 0.e0[9e1..][0.0..] Merge (({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8)) On Match Set `8esn`:`4esn`:#usn8,Extract(`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]|_usn3 Is Not Null Is Not Null).`6esn`? =#usn8 Is Not Null,usn1 =Extract(#usn8 In $`5esn` Is Null Is Null Where @usn6 Contains .e1 Contains $`4esn`) In Filter(`4esn` In `6esn`['s_str'..][010..] Where 12e12[Count ( * )..][usn2..]) In [123456789 In $usn2 In `6esn`,Count(*) Ends With 010]"), - octest:ct_string("Remove {_usn3:$_usn4[$`1esn`]}.@usn6!,`8esn`($_usn4[#usn8..],123456789 Starts With `2esn` Starts With .0).usn1?,Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|1e1 Is Null).#usn7? Create usn1=((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)),(:usn1) Union All Delete `8esn`[_usn3..$#usn7],$`6esn` Is Not Null Is Not Null,Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) Union All Create (usn2 :#usn7),#usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})))"), - octest:ct_string("Merge `8esn`=()<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Return *,$@usn6[..12e12],`8esn` Ends With 0X0123456789ABCDEF Ends With `1esn` As usn2 Skip 1000[..$`6esn`][..0xabc] Limit $`8esn`[..$``] With Distinct *,`3esn` =~`3esn` =~$`6esn` As `7esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 123456789[$#usn7..]) Contains [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1] Skip .12[..`6esn`][..\"d_str\"] Limit [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] Where @usn6[$`7esn`]"), - octest:ct_string("Detach Delete [Count ( * )[Count ( * )..12e12][usn1..1000]][None(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..])..][(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})<-[`2esn`:usn1|`3esn` *0Xa]->(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})..],0Xa[..$``],_usn3 Contains @usn6 Contains 1.e1"), - octest:ct_string("Merge (({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})) On Create Set #usn7:``,({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})<-[?:@usn5|`8esn` *..0X7]-(:usn1).`4esn` =`6esn` Starts With $`5esn`,[`6esn` In 0X7 =~`` Where 0.12[Null..]]._usn4 =Count ( * )[`3esn`..][`2esn`..] On Match Set `3esn` =010 In @usn5 In `5esn` With 01234567 Ends With 0x0,[`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As #usn8,$1000 Is Not Null Is Not Null Order By 's_str'['s_str'..$usn2][_usn3.._usn3] Asc Skip Extract(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]|1000[..$`6esn`][..0xabc]) Ends With [07[$999],12e12[Count ( * )..][usn2..]] Limit Null[01234567][01234567] Where 0X7[..12e12] With *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `3esn`,07[$999] As `` Where 9e0[$_usn3..0X7][7..$#usn8] Union Optional Match _usn4=(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}),`6esn`=((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})) Union Detach Delete Extract(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null) =~Any(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null) =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1],$7 Contains 0x0 Contains ``,[\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Remove [01234567[Null..0.e0][Count(*)..$#usn8],#usn8 Contains .e0 Contains $`8esn`,123456789[1e1..0.0]].`1esn`? Create (:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa}),(`3esn` :usn2:@usn6)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]})-[_usn3]-(`` {`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'})"), - octest:ct_string("Unwind .e1 Starts With $`8esn` As `2esn` Union All Unwind All(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) =~None(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0) =~None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `7esn` Starts With $usn2 Starts With .e0) As `` Unwind `7esn` Starts With $`` Starts With $#usn7 As _usn3 Union Create `1esn`=(`3esn` {``:.e0[7..$`3esn`]})"), - octest:ct_string("Optional Match @usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})),_usn3=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Where $`5esn` Contains Count(*) Contains #usn7 Union All Remove Extract(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`).`3esn`?,{@usn5:0.e0[@usn6][0x0]}._usn4 Optional Match (((`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})<-[?:`7esn`|`2esn`]-(:`6esn`:`7esn`{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}))) Where 12.0[``]"), - octest:ct_string("Optional Match (({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) With Distinct $`2esn`[``..] As `3esn`,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn`,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] As @usn6 Order By `7esn`[1000..][$123456789..] Desc,$#usn8 In .e12 In 9e1 Descending,$@usn5 Contains $`7esn` Contains #usn8 Desc Detach Delete $`3esn` Is Not Null Is Not Null,$1000 Ends With 1e1 Ends With 123.654"), - octest:ct_string("Remove Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $@usn6 Is Null Is Null).`4esn`,All(@usn5 In $#usn8 Is Null Is Null).usn1! Union Merge (`7esn` :_usn4:usn1)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})-[`1esn`{`2esn`:.12 Starts With @usn5 Starts With $#usn8}]->(:usn1{`6esn`:1000 Contains 0.e0,`7esn`:$@usn6[..$#usn7][..12.e12]}) Unwind `7esn`[1000..][$123456789..] As #usn7 Remove @usn6(_usn4[0xabc..],$usn1[_usn4..][usn2..]).`4esn`?"), - octest:ct_string("Create ``=(`4esn` :`8esn`{_usn4:0 Is Null Is Null}),(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})-[`5esn`?:`2esn`|usn2 *999..]->(@usn6 :``{@usn5:@usn5 Starts With 12e12 Starts With @usn5})-[_usn4?:`5esn`|`1esn`]-(`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12}) With Distinct [@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7|$999 Ends With $`3esn` Ends With `8esn`] Starts With [$`6esn` Is Null Is Null,0Xa Is Not Null Is Not Null,0X7 In 123.654 In $`2esn`] Starts With [01234567[Null..0.e0][Count(*)..$#usn8]] As ``,Count ( * )[@usn6..0x0] Limit $`8esn`[..$usn1][..'s_str'] Union All Create (:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}) Merge `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) On Match Set usn2+=$`4esn`[9e1..][0..],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null},(usn1 :#usn7)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->(`4esn` {`7esn`:.e0[..999][..0X7]}).usn2 =$`3esn`[`2esn`...e0] Unwind [@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] As `3esn` Union All Create (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}))),`4esn`=((`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})) Return $`6esn` =~$#usn8 As #usn8 Order By (#usn7 :#usn8)-[`6esn`:`4esn`|:`7esn` *..0x0]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})[Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])][Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])] Descending Limit Null Contains 9e1"), - octest:ct_string("Return Distinct *,$999[$1000] Order By usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Ascending,.e12 Contains 9e0 Ascending Remove @usn6(@usn5[..True][..0X7]).`3esn`?,[7 In 0xabc,9e0[True..`1esn`]].`1esn`?,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]|$`6esn`[$`1esn`][1000]].`4esn`! Union All Detach Delete (`7esn` :_usn4:usn1)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`) Starts With ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2) Starts With Extract(usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]|07[`6esn`..][`5esn`..]) Return Distinct All(`6esn` In 0X7 =~`` Where 0.12[Null..]) Is Null Is Null As ``,$0 Contains `7esn` Contains $`8esn` As `3esn`,$#usn7[True..][$0..] As usn1 Order By {`1esn`:9e1[0.e0..][#usn8..]} Starts With Single(`4esn` In 's_str'[12..'s_str'] Where @usn5 In 0X0123456789ABCDEF) Starts With All(#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) Ascending,#usn8 Ends With $@usn6 Ends With _usn4 Desc Skip [@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Delete [True[..'s_str'][..01]] In Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999]) In All(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`]),$`5esn` Starts With _usn3 Starts With @usn5"), - octest:ct_string("Delete 0x0[...e12][..@usn5],$``,@usn6[$`7esn`] Return *,.e1[$_usn4][1e1] As `7esn` Order By 9e0 Ends With $`7esn` Asc Skip 's_str'[12..'s_str']"), - octest:ct_string("With Distinct *,#usn8 Starts With 0x0 Starts With $@usn5,`1esn` In 07 In 0e0 As `1esn` Skip $7[$`8esn`..7][$1000..$`5esn`] Merge ((_usn4 {`8esn`:9e1 In 01 In 999}))"), - octest:ct_string("Return Distinct $`5esn` In `2esn` In $12 As `3esn` Order By [@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0] Is Null Descending,.e1 Starts With $`8esn` Descending,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] Asc Skip $@usn5 Unwind 9e0 Ends With $`7esn` As `7esn`"), - octest:ct_string("Remove Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $_usn3[$`4esn`..Null]).usn2,Filter(@usn5 In $#usn8 Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8).#usn8? Remove ``(Distinct 0.12 In $`4esn` In `6esn`,12e12[_usn3..][$@usn5..])._usn3!,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]|12e12[Null]].@usn6 Union All Return *,.e1[$_usn4][1e1] As `7esn` Order By 9e0 Ends With $`7esn` Asc Skip 's_str'[12..'s_str']"), - octest:ct_string("Unwind Extract(@usn6 In @usn5 In $`6esn` Where $`5esn` Contains $@usn6|$0[7..][Null..])[[`6esn` In 0X7 =~`` Where 9e1[0.e0..][#usn8..]]] As @usn6 Unwind 999 Contains `7esn` As `7esn` Union All Remove usn2:#usn8,Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null).`7esn`? Remove None(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null).`5esn`,(#usn7 :#usn8)-[`6esn`:`4esn`|:`7esn` *..0x0]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1}).@usn6"), - octest:ct_string("Unwind 07[12e12] As `4esn` Remove Extract(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`).`5esn`?,(`2esn` {`3esn`:$999[12.0..]})-[:usn2|#usn8 *01234567..12{usn2:$`3esn` In $12 In 's_str'}]-(usn1 :_usn3).`5esn` Union All Match (_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[`7esn`?:`4esn`|:`7esn` *..0X7]-(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) Create (((`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})<-[?:`7esn`|`2esn`]-(:`6esn`:`7esn`{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})))"), - octest:ct_string("Return count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null As `6esn`,All(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) =~None(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0) =~None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `7esn` Starts With $usn2 Starts With .e0) As ``,`6esn`['s_str'..][010..] Order By `4esn`[$#usn7] Ascending Skip `7esn` Ends With $usn2 Ends With 999 With *,0.12 In 01 In $`3esn` As @usn5 Order By Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}) Desc,$12[01..][1.e1..] Descending,`7esn`[Null..][@usn5..] Asc Limit Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null)[count(Distinct 0.12 Contains $12 Contains `8esn`)..[$`1esn` Is Null Is Null,9e1 In 01 In 999]] Where $@usn6 =~usn1 Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where True Contains @usn6|123456789 Starts With `2esn` Starts With 9e12).usn2?"), - octest:ct_string("Detach Delete $@usn5[0.12..][@usn5..],07[07] Union All Optional Match _usn3=(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),#usn8=(((`3esn` )-[?:#usn7|:_usn4]-(usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]}))) Where 010 Contains 0X0123456789ABCDEF Union Unwind $`4esn` Contains `6esn` Contains #usn7 As @usn6 With *,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Skip $`2esn`[..7][..$usn1] Limit None(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`) Contains `3esn`($usn2 Contains 12.e12 Contains 00) Where $`2esn`[$`2esn`..] With Distinct $`2esn` Starts With .e0 Starts With 12.0 Order By ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] Ascending,0e0 =~Count(*) =~0Xa Descending,{`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])] Asc"), - octest:ct_string("Match #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) Where 12e12 Is Not Null With 0Xa[0xabc..] As usn1,`5esn` In 12 As usn2,[#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`][Any(`4esn` In $`8esn` Starts With 1000 Where 123.654 Starts With usn1 Starts With @usn5)..] As `8esn` Skip #usn7 Contains 07 Limit $999[$1000] Union Merge @usn5=(((_usn3 :_usn3{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[#usn8:`3esn`|:`4esn` *0..010]-(:usn1{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]}))) On Match Set `3esn`(False In `3esn`).`5esn`! =Count ( * )[Count ( * )..12e12][usn1..1000],#usn7 =(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])],#usn7+=00[01234567][False] On Match Set @usn5 =1e1[..#usn8][..'s_str'],`8esn` =usn2[`3esn`][_usn3] Optional Match ((:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]})),((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Where $`4esn`[12.e12..][0.0..]"), - octest:ct_string("Detach Delete 0X7 In 's_str' In $`1esn` Unwind {@usn5:$`3esn`} Starts With .12 As `8esn` Union All Match `3esn`=(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}),usn2=((#usn8 :`4esn`:#usn8)-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)) Where $`8esn` =~$usn2 Merge _usn3=(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})) On Create Set `4esn`(Distinct .0 Starts With `2esn` Starts With `6esn`).`7esn`! =Filter(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[[1e1[0.0],0 Contains 12e12,$123456789[..0x0][..`4esn`]]],`8esn` =[@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] Merge ((`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}))"), - octest:ct_string("Merge #usn8=(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})<-[``]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[ *00..{`2esn`:$0 Is Not Null}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) On Match Set `1esn`+=Null[0e0][12],Filter(usn1 In 0x0[..`4esn`] Where $`` Ends With 12e12).usn1! =Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] With Distinct 's_str'[..0.0][..$`4esn`] As `2esn`,#usn7 Contains .0 Contains .e1,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Skip `6esn` Starts With $usn2 Starts With 0.0 Limit 9e1 Contains $`3esn` Contains 01234567 Union Detach Delete _usn3[...12][..01234567],010 In `7esn`,{`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00} Starts With Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)"), - octest:ct_string("With *,$@usn6 =~$#usn8 =~$#usn7 As `7esn`,#usn7 Ends With `4esn` Ends With @usn5 As `` Order By (`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Ascending,{@usn6:0X0123456789ABCDEF[..usn1]}[..`7esn`($`3esn` =~$`6esn` =~`8esn`)][..(`4esn` {`6esn`:$12[..``][..$7]})<-[#usn7]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})] Ascending Skip Count ( * )[..usn1][..12.e12] Where `6esn` =~$_usn3 Merge ((({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)<-[#usn7 *123456789..999]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}))) On Create Set `8esn` =`` Return Distinct False Ends With $`8esn`,$`7esn`[$usn1..][0.0..] Order By {`8esn`:$123456789 Is Null Is Null,_usn3:$`4esn` Starts With 1e1}[(#usn7 :`2esn`:`3esn`)<-[`8esn`?]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})..All(_usn4 In usn1 Contains False Contains `` Where $`8esn`[$``..$7][$1000..$`7esn`])] Descending,$`7esn` In $7 Ascending Limit [@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]|$`6esn`[$`1esn`][1000]][All(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`)] Union All Merge ((#usn8 :`4esn`:#usn8)<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] On Create Set `4esn` =.12 Is Not Null Is Not Null,{@usn6:True[..'s_str'][..01]}.`2esn` =12.e12[...0][..0x0],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Return $_usn4[12e12][`4esn`] As `5esn`,@usn6[`5esn`..$`3esn`] As ``,0.0[..12e12][..$0] Order By usn2[$`1esn`...0] Descending,123.654 Is Not Null Is Not Null Desc Limit 0X7 =~`4esn` =~`8esn` Return Distinct {@usn6:`7esn` In 999 In @usn6} Starts With Extract(usn1 In 0x0[..`4esn`] Where 0x0|07 Ends With 07) Starts With Filter(usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12),False Ends With $`8esn`,``[$`3esn`][$`2esn`] As usn1 Order By $`6esn` Is Null Is Null Desc Limit 999 In $_usn4 In 0X7"), - octest:ct_string("With *,None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`) Is Null As @usn6,123456789 =~_usn4 =~$0 As usn1 Unwind ({`8esn`:$123456789 Contains 01 Contains 0.12})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(usn1 :#usn8)-[`3esn`? *999..]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})[Single(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)..$#usn7] As `7esn` Union Remove [@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1|00].`3esn`!,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]|$`6esn`[$`1esn`][1000]].`4esn`! Unwind Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] As `8esn`"), - octest:ct_string("Merge `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Return $`4esn` Contains 0Xa,010 In `7esn` Limit False Contains `3esn` Union All Return Distinct `3esn` =~`3esn` =~$`6esn` As `7esn` Limit $`7esn` Is Null Is Null"), - octest:ct_string("With Distinct $`1esn` Starts With $999 As #usn8,False In $`7esn` In .0 Order By .e12[usn2][01] Desc,0 Ends With $7 Ends With _usn3 Ascending,Extract(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|Null Starts With $`7esn` Starts With `2esn`) =~{`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0} Descending Skip [1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Limit \"d_str\" Where Count(*) In 01 In .0 Remove `3esn`:_usn3,{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}._usn3? Union All With Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1) Skip @usn5 Starts With 12e12 Starts With @usn5 Where 07[Count ( * )...e1][0X0123456789ABCDEF..$7] Detach Delete 999[$`8esn`],Single(#usn7 In 01234567[$`3esn`..])[(`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']})][[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0]],$#usn7 In .e1 In 01 With $`2esn`[``..] As `3esn`,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As `3esn`,`7esn`[...e1][..\"d_str\"] Order By [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]) Asc Limit $#usn8 Is Null Where $123456789 In Count(*) In .e1"), - octest:ct_string("Remove [Null Contains _usn4].`8esn`!,Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn2[`3esn`][_usn3]).`7esn`?,{#usn7:False[.e1..Null],`1esn`:9e0 Is Null Is Null}.@usn5!"), - octest:ct_string("Create _usn3=((({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']})-[:usn2|#usn8*..]-(`5esn` :`7esn`))) Optional Match `8esn`=(($12)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)),(:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) Where 1e1[..#usn8][..'s_str']"), - octest:ct_string("Merge `3esn`=(({`5esn`:0.12 Contains .e1})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0})-[:@usn5|`8esn` *123456789..999{usn1:9e12 Is Not Null Is Not Null}]-(#usn7 :`5esn`)) On Match Set @usn5+=`` In `6esn`,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`` Is Null Is Null).`` =12.e12 Is Not Null On Match Set `` =None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..],#usn7($`8esn`[$``..$7][$1000..$`7esn`],`2esn` In 7 In usn2).`6esn`? =$_usn4['s_str'..],`4esn`+=$`7esn` Ends With $usn2 Remove {#usn8:123456789[$#usn7..],#usn7:07[12e12]}.usn2,(#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(_usn4 {`1esn`:010[@usn5..]})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(usn1 :_usn3{@usn6:True[..'s_str'][..01]}).`8esn`! Union Optional Match (({#usn7:Count ( * )[@usn6..0x0]})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})) Where @usn6[`5esn`..$`3esn`] Match `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Match ((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})),(_usn3 :_usn3)"), - octest:ct_string("Create (_usn4 {`8esn`:9e1 In 01 In 999})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`4esn` {`2esn`:@usn6[`5esn`..$`3esn`],`7esn`:$`1esn` Is Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`),`8esn`=(`` {`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}) Return 01 In 01 In 12 As #usn8,$`6esn`[$`1esn`][1000],[#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|@usn6 Starts With `7esn` Starts With Null] Is Not Null Is Not Null Order By 12.e12 Contains `5esn` Ascending,{#usn8:#usn7 Ends With 9e1} Is Not Null Is Not Null Ascending Limit 0.12 Contains $12 Contains `8esn`"), - octest:ct_string("Return Distinct *,0['s_str'][Null] As #usn7,{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null As #usn8 Order By `4esn` =~$`3esn` =~$123456789 Ascending,{`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])] Asc,$`4esn`[..usn1] Ascending Skip [@usn5 In 0X7 =~.0 =~\"d_str\"|#usn7 Starts With `1esn`][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn`[...e1][..\"d_str\"])..][`2esn`(Distinct 12e12[Null],0xabc[12.e12..`1esn`])..] Limit $usn2[..12.0] With Distinct *,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Order By .e0 Contains 01234567 Descending,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Desc,'s_str' Starts With 1000 Starts With #usn8 Descending Where 123456789 =~_usn4 =~$0 Unwind 12 =~usn1 =~.e12 As `7esn`"), - octest:ct_string("Merge `2esn`=(:_usn4:usn1) On Match Set `6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`7esn` =9e1[0.e0..][#usn8..],#usn7+=({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Ends With @usn6(123456789 =~$123456789) Ends With [`1esn` Contains Count ( * ),$@usn6 Contains Count ( * ),False In 123456789 In $0] On Create Set `` =(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[usn1?:`8esn`|:usn1]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Is Null Is Null,`7esn`+=(`7esn` :_usn4:usn1)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`) Starts With ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2) Starts With Extract(usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]|07[`6esn`..][`5esn`..]),`2esn`:`1esn` Unwind 12[usn1][True] As @usn6 Union All Remove Any(#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7).`3esn`?,{`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`}.`4esn`!"), - octest:ct_string("Unwind `3esn` =~$`5esn` =~12 As `7esn` Remove [.12 Starts With 0Xa].`4esn`! Union All Detach Delete $7 Ends With 12.0 Ends With 0xabc,`` Is Not Null Create #usn7=((#usn7 {`2esn`:$@usn6[..$usn1],usn2:12 Ends With 01 Ends With 1e1})),`2esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}) With {@usn5:0.e0[@usn6][0x0]} Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7) As #usn7,$`3esn`[`2esn`...e0],0.12[Count(*)..] Order By _usn3[0] Ascending Limit `1esn`(Distinct Count(*)[..`3esn`]) Starts With $0"), - octest:ct_string("Match `2esn`=(:_usn4:usn1) Delete 0e0[7],(`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})[[`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5]..{usn2:$`4esn`[12.e12..][0.0..]}] Unwind 0 Starts With `6esn` Starts With 0X0123456789ABCDEF As @usn6 Union All Detach Delete None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} Merge @usn5=((({`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}))) On Create Set `8esn` =0.e0[9e0][0e0],_usn3 =0Xa[0xabc..$#usn8] On Match Set `6esn` =[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] Create ((:`5esn`)<-[#usn7{#usn7:False[`2esn`..#usn8]}]->(usn2 :`3esn`:`1esn`)-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]}))"), - octest:ct_string("Optional Match `7esn`=(`2esn` )<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}),`1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Where Null[01234567][01234567] Union All Unwind 123.654[`5esn`] As @usn5 Create usn2=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}),(`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Union All Remove `8esn`(Distinct 0X0123456789ABCDEF[..usn1]).`3esn`?,Extract(`4esn` In `6esn`['s_str'..][010..] Where #usn8[$#usn8..]).`8esn`! With Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4) Is Null As usn2,$`7esn` Ends With $@usn5,9e1 Contains $`3esn` Contains 01234567 As @usn5 Order By Filter(_usn4 In usn1 Contains False Contains `` Where 123456789 Is Null) Contains (:``{#usn8:$`2esn`[..`2esn`]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]}) Contains _usn4(@usn6[`5esn`..$`3esn`],9e1 Starts With _usn3 Starts With `4esn`) Ascending,[@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Desc Skip [usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..] Remove None(#usn8 In $`5esn` Is Null Is Null Where 01234567 Ends With 12.0 Ends With 0X7).`2esn`?,[9e0 =~$`5esn`]._usn3!,(_usn4 )<-[#usn7? *00..]->(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`).`1esn`"), - octest:ct_string("Unwind 0e0[#usn8][$_usn3] As #usn8 Optional Match ((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),((_usn4 {`8esn`:9e1 In 01 In 999})) Union All Return Distinct *,Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] With Distinct *,[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..] As @usn6,0x0[123456789] As _usn3 Order By Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]|$0 =~$usn1 =~9e1)[{``:\"d_str\",`1esn`:$1000 =~$`7esn`}] Descending Skip $`5esn` In `2esn` In .0 Where 9e12[0.0..12.e12] Return *,False[`2esn`..#usn8] Skip 123456789[1e1..0.0] Limit `` Starts With @usn5 Union Unwind $usn2 Contains 12.e12 Contains 00 As #usn7 Merge _usn4=((@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) On Match Set Extract(usn2 In 1000 Contains 0.e0 Where $1000[01234567]|$`6esn`[Count(*)..0.e0][0.0..Count ( * )]).`8esn`! =$123456789[False.._usn3],`3esn`(Distinct 0X7 In $999 In $``,$0 Is Not Null).`7esn`? =0.e0[123.654],`1esn`+=True Starts With 12.0 Starts With $@usn5"), - octest:ct_string("Delete $`6esn`[Count(*)..0.e0][0.0..Count ( * )] Unwind 999 Contains `7esn` As `7esn` Match @usn5=(:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})-[`1esn`:usn2|#usn8 *1000..]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}) Union Create `5esn`=((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 )) Match ({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})-[#usn7:`1esn` *07..]->(:`7esn`{``:$`1esn` Starts With @usn6})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) Where 9e12 =~01 =~$`7esn` Union All With Distinct 0X7 In 123456789 In $`5esn` As @usn6,[$1000 =~$`7esn`,.12 Starts With @usn5 Starts With $#usn8,0x0[...e12][..@usn5]] Ends With Single(@usn5 In .12[#usn7][$`8esn`]) As `7esn`,`1esn` Contains Count ( * ) As _usn3 Order By 0X0123456789ABCDEF In 01234567 Descending,$#usn8 In .e12 In 9e1 Descending,{usn1:Count ( * )[..usn1][..12.e12],@usn5:07[$`5esn`..]['s_str'..]} Is Not Null Ascending Where $@usn5 Contains 01 Remove [@usn6 In @usn5 In $`6esn` Where 12.0[0Xa][00]].`2esn`?,Single(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1).@usn6?,Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn8 Contains .e0 Contains $`8esn`).`8esn` Detach Delete .e12 Contains 9e0,$`2esn`[``..],Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*))"), - octest:ct_string("Unwind @usn6(Distinct `` Starts With @usn5) =~Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]) =~#usn7(Distinct $0 =~$0 =~.e0) As `2esn` Union Unwind Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)[..(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})][..Any(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)] As `7esn` Remove #usn7:_usn3,[`6esn` Starts With $usn2 Starts With 0.0,.e0[7..$`3esn`]].#usn8!,All(usn2 In 1000 Contains 0.e0 Where #usn7 Starts With .e12 Starts With $`7esn`).`4esn` Remove {@usn6:True[..'s_str'][..01]}.#usn7!,(_usn4 {#usn7:False[`2esn`..#usn8],#usn8:`5esn`[`1esn`..`1esn`]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]}).`3esn`"), - octest:ct_string("Detach Delete 00[7..$123456789],`` Starts With 12,{`4esn`:.12 Starts With 0Xa} Starts With All(usn1 In 00 Starts With _usn3 Where `6esn`[False..0.0][12e12..$usn2]) Remove Extract(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`).usn1!,_usn4(Distinct `7esn` Starts With $usn2 Starts With .e0).`5esn`,``:#usn7 Return $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Limit 9e0 Starts With `6esn` Union Return Distinct $`5esn`[$123456789][`1esn`],(`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})-[`4esn`?:`8esn`|:usn1 *..0x0]->(:`7esn`{``:$`1esn` Starts With @usn6}) Ends With `6esn`(Distinct $`4esn`[usn1..$#usn8][12.0..`3esn`],12.e12['s_str']) Ends With (`7esn` {`8esn`:Count ( * ) =~Count(*)})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}) As `7esn`,01234567 As `6esn` Detach Delete $@usn5 In 12e12 In Count(*),`` =~12 =~$#usn7,Null Contains _usn4 Union All Match `1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}),`1esn`=(((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))) Create ((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})),#usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) Match `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Where 's_str'[12..'s_str']"), - octest:ct_string("Optional Match `6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Where 0.e0[@usn6][0x0] Merge (((:_usn4:usn1)-[@usn5?:@usn6*..]-(`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:@usn6]-(_usn3 :`4esn`:#usn8{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]}))) On Match Set `5esn` =999[.e12][01],Extract(usn1 In 0x0[..`4esn`] Where @usn6[$`3esn`]).#usn8? =`1esn` In 999 In $#usn7,usn1 =12.e12[0e0..7]"), - octest:ct_string("Return .e12[.12..][_usn4..] As _usn4 Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Delete 07 Ends With 07 Union Merge (@usn5 {`2esn`:01234567 Ends With 12.0 Ends With 0X7})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]}) On Create Set `5esn` =999[.e12][01],Extract(usn1 In 0x0[..`4esn`] Where @usn6[$`3esn`]).#usn8? =`1esn` In 999 In $#usn7,usn1 =12.e12[0e0..7] On Create Set usn1+=Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Remove None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 9e12[usn2..7][.e1..$`7esn`]).`6esn`?,All(usn1 In 00 Starts With _usn3 Where 1e1[..False]).`4esn`?,Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]|@usn6 Contains .e1 Contains $`4esn`)._usn3! Merge @usn6=((:``{`5esn`:.e1 In $@usn6 In 999})) On Match Set usn1 =0x0[$`3esn`..010][$#usn7..00] Union With *,usn1[Count ( * )..$usn1] As usn1,$`2esn` =~'s_str' As @usn5 Where 9e0[$_usn3..0X7][7..$#usn8] Create #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`)"), - octest:ct_string("Delete [_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]] Ends With [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]],Single(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8)[{_usn3:$0 Ends With $#usn7 Ends With .12}][[12.0[0Xa][00],.0[01][$12]]] Unwind `2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As `4esn` Union Match _usn3=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}),``=(({`5esn`:0e0 =~_usn4})) With *,.e12 Starts With True As _usn4,$1000 In $`7esn` In $7 Skip [$1000 =~$`7esn`,.12 Starts With @usn5 Starts With $#usn8,0x0[...e12][..@usn5]] Ends With Single(@usn5 In .12[#usn7][$`8esn`]) Limit Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]|$0 =~$usn1 =~9e1)[{``:\"d_str\",`1esn`:$1000 =~$`7esn`}] Detach Delete 0X7 In 123456789 In $`5esn`"), - octest:ct_string("Detach Delete 12[`7esn`...0][0.12..``] Optional Match `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Where `7esn` In 999 In @usn6 Union All Detach Delete Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0},12 Ends With .e12 Ends With $7 Optional Match `6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Where 0.e0[@usn6][0x0] Match (((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))) Where $usn2 In 9e0 In $7"), - octest:ct_string("Create usn2=((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn2 *0X0123456789ABCDEF..{usn2:`` Starts With 12}]-(`4esn` {`7esn`:.e0[..999][..0X7]})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})),usn2=({_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[@usn5?:``|:_usn4]-($12) Remove (`6esn` :`4esn`:#usn8{@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]})<-[:@usn5|`8esn`*..]-(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}).usn2 With *,$usn2[..12.0],$`2esn`[``..] As `3esn` Skip _usn3[.0] Where 0.0[999..] Union Merge ((({_usn4:010 =~$usn2 =~1e1,`2esn`:0X0123456789ABCDEF Is Not Null})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[:usn1|`3esn`]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]}))) On Match Set `5esn`()._usn4! =[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00],``:usn1,`6esn`+=Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) Ends With [1e1[@usn5..],$#usn8 Is Null,$0[$#usn8..01234567]] Ends With Extract(`6esn` In 0X7 =~`` Where 010 =~`6esn`) On Create Set #usn8+=Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)],`2esn` =$_usn4[$`1esn`..][$0..] Optional Match (({usn1:`4esn` In $12 In `8esn`})<-[@usn5:#usn8{`4esn`:$0[0X0123456789ABCDEF..$#usn7]}]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})) Where 0X0123456789ABCDEF[..usn1] Detach Delete 1e1 In $#usn8 In 12e12,_usn3 =~00"), - octest:ct_string("With Distinct *,010 Contains Count(*) As `5esn`,'s_str' Ends With .e0 As `1esn` Skip [_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]] Ends With [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]] Limit Count ( * )[`3esn`..][`2esn`..] Where 's_str'['s_str'..$usn2][_usn3.._usn3]"), - octest:ct_string("Merge `4esn`=(((#usn8 :_usn3)<-[ *..0X7]-(#usn7 )<-[`5esn`?:usn1|`3esn` *1000..]-(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}))) On Match Set @usn5 =$usn2 =~$_usn4 =~`5esn`,[`4esn` In `6esn`[1e1..] Where _usn3 Is Null|$`8esn`[..$usn1][..'s_str']].usn1? =$usn2[..12.0],{_usn4:$_usn4[`3esn`][0],`6esn`:False[`2esn`..#usn8]}.`8esn`? =Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] Union All Return *,All(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..]) Is Null Is Null As `6esn`,[#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`][Any(`4esn` In $`8esn` Starts With 1000 Where 123.654 Starts With usn1 Starts With @usn5)..] As `8esn` Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) Contains Extract(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`) Merge @usn6=((`6esn` :`7esn`)-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)<-[@usn5:`6esn` *0X0123456789ABCDEF..]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null})) With Distinct *,Single(#usn7 In 01234567[$`3esn`..]) Is Null Limit 123456789 Starts With `2esn` Starts With .0 Where $#usn7 In 12.0 In 0X0123456789ABCDEF Union All Unwind Any(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) Is Not Null Is Not Null As `2esn` Create #usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})),`5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Merge usn2=((({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(usn1 :_usn3{@usn6:True[..'s_str'][..01]})<-[`2esn`?]-(usn2 :`3esn`:`1esn`))) On Match Set All(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]).`1esn`! =0.12 Contains $12 Contains `8esn`,#usn8+=0x0[$12..],{``:`6esn`[0X7..][0x0..]}.`8esn`? =`6esn` =~$_usn3 On Create Set `8esn` =``"), - octest:ct_string("Unwind $@usn6 Starts With usn2 Starts With usn2 As _usn4 Unwind $`4esn`[..usn1] As #usn7 Union All Return Distinct *,\"d_str\"[Count ( * )] As `7esn` Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) Contains Extract(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`) Limit {`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]] Remove Filter(#usn7 In 01234567[$`3esn`..] Where 0Xa[0xabc..$#usn8]).#usn8? Create ((`3esn` {`8esn`:$``[_usn4..][`7esn`..]}))"), - octest:ct_string("Create `2esn`=(_usn4 {`8esn`:9e1 In 01 In 999})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Union Merge `5esn`=(({_usn3:12.e12 In $0 In Count(*)})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(`2esn` :``)-[:_usn4|:@usn5 *0xabc]-({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})) On Match Set `7esn` ={`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)],@usn6 =`5esn` In $999 On Create Set (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 =123.654 Contains `2esn`,`3esn` =Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`),{`6esn`:$_usn4[$`8esn`..][07..]}.@usn6! =`5esn`[.e1][0Xa] Union All With Distinct [@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7|$999 Ends With $`3esn` Ends With `8esn`] Starts With [$`6esn` Is Null Is Null,0Xa Is Not Null Is Not Null,0X7 In 123.654 In $`2esn`] Starts With [01234567[Null..0.e0][Count(*)..$#usn8]],All(`6esn` In 0X7 =~`` Where 0.12[Null..]) Is Null Is Null As `` Order By $`3esn` In $12 In 's_str' Asc,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null Asc Skip (:`5esn`{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[usn1 *..0x0]->(usn1 :`6esn`:`7esn`)-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})[..[07[$999],@usn6[$`7esn`]]][.._usn4(0X7 In $@usn5 In 9e0)] Limit Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0} Merge @usn5=(({`8esn`:$usn1[0.12..]['s_str'..],`8esn`:`1esn`[0e0..]})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})) On Create Set `6esn`+=Extract(`4esn` In $`8esn` Starts With 1000 Where False In `3esn`|$`3esn` =~Null),`8esn`+=12 Ends With .e12 Ends With $7,(:``{`1esn`:`6esn` =~$_usn3})-[`5esn`?:_usn4|:@usn5]-(usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]}).usn2 =usn1(Distinct) Ends With {`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654} Ends With ({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) On Match Set `7esn`+=9e0[``][123.654]"), - octest:ct_string("Unwind $123456789 In Count(*) In .e1 As usn1 Union All Delete [@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12]][{@usn6:.12 Starts With 0Xa}..(`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})],usn1[1e1][$_usn4] Remove {_usn4:00 In 0.12 In `5esn`,@usn5:0X7 =~.0 =~\"d_str\"}.`6esn`? Optional Match `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) Union Return *,usn1[Count ( * )..$usn1] As usn1,$`2esn` =~'s_str' As @usn5"), - octest:ct_string("Remove [usn1 In 0x0[..`4esn`]|`` Starts With @usn5].`6esn`?,(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})._usn4? Unwind [010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]][(:@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})..][Extract(#usn8 In $`5esn` Is Null Is Null Where 1000[0.0][Null])..] As `5esn` Unwind .e12 Starts With True As `7esn`"), - octest:ct_string("Create ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) Union All With *,$0[..`8esn`] As _usn4 Order By 0 Starts With `6esn` Starts With 0X0123456789ABCDEF Descending,12.e12 In .e0 In `7esn` Descending Limit `8esn` Ends With 0X0123456789ABCDEF Ends With `1esn` Unwind $_usn4[$`5esn`..`1esn`][@usn6..01] As _usn3 Union All Unwind 123456789 =~Filter(usn2 In 1000 Contains 0.e0 Where 0X7[0e0..]) =~{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999} As `7esn` Merge `4esn`=((#usn8 {usn2:7 Contains 9e1})-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]->(:_usn3{@usn6:$`7esn` Is Null Is Null})) On Create Set usn2:usn1,None(_usn4 In usn1 Contains False Contains `` Where .12 In $999 In `5esn`).usn2 =9e0 In 01234567,`8esn` =$@usn5 Ends With 0X0123456789ABCDEF"), - octest:ct_string("With Any(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null)[Extract(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1)..] As `3esn` Order By 010 Contains Count(*) Desc,1e1 In $999 In $usn2 Ascending,@usn6(Distinct 12.e12[0e0..7],usn1[Count ( * )..$usn1]) Is Null Is Null Descending Skip True Is Not Null Is Not Null Limit None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} Union Remove {``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}.`2esn`! Union Delete 0.12 =~9e0,12.0[0Xa][00] With {_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] As `1esn` Order By 0 Is Not Null Descending Skip 0x0 Where 123456789 Starts With #usn7 Starts With `6esn` Optional Match `8esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}))"), - octest:ct_string("Merge (`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`7esn` :`4esn`:#usn8{`2esn`:Count(*)[..`3esn`]})-[? *07..{@usn6:12[..True][..$`4esn`],`4esn`:.0[$`6esn`..False]}]-({`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`}) On Create Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..] On Create Set `` =$`6esn` =~Null =~9e12 Union Merge `2esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) On Create Set [@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where .e0[..999][..0X7]]._usn4 =(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) On Match Set Single(usn1 In 00 Starts With _usn3 Where $`7esn` Ends With 07 Ends With 07).`6esn`? =Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789},@usn5 =[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0])],[usn1 In 00 Starts With _usn3 Where 12 Ends With .e12 Ends With $7|_usn3 =~00].#usn7! =Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null Unwind 12e12[_usn3..][$@usn5..] As usn2"), - octest:ct_string("Match ((:`3esn`:`1esn`{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->()),(((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))) Where 0xabc[$@usn5] Remove #usn7(Distinct $@usn6[..$usn1],9e12 Is Not Null Is Not Null).usn1 Union All Create ((:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}))"), - octest:ct_string("Delete 1.e1[0X0123456789ABCDEF..][$`5esn`..],$0[0X0123456789ABCDEF..$#usn7] With 07 Ends With 07 As #usn8,00[``..][$`4esn`..],$usn2 Is Not Null Is Not Null Limit {`4esn`:0X7 =~.0 =~\"d_str\",_usn4:00 Ends With $_usn4 Ends With $`2esn`} Ends With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Ends With [$`3esn`[@usn5..$123456789],00,'s_str'[.12..$#usn7][$999..`2esn`]] Union Return Distinct 1000 Contains $#usn7 Contains `6esn` Order By (`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})[Single(`4esn` In 's_str'[12..'s_str'])..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)] Desc,usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Desc,Count ( * ) Contains 999 Contains $`8esn` Asc Merge `7esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})) On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Merge `6esn`=((`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})) On Match Set Any(_usn4 In usn1 Contains False Contains `` Where $`4esn`[$`2esn`..]).usn2 =010 In @usn5 In `5esn` Union With Distinct {`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) As `2esn`,Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null As `5esn` Order By .e0 Contains 01234567 Descending Limit All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])] Create ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7)))"), - octest:ct_string("With Distinct *,0.12 In $`4esn` In `6esn`,`4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}] As `2esn` Order By Null[@usn6..][9e1..] Ascending Skip 07 Ends With 07 Limit All(_usn4 In usn1 Contains False Contains `` Where $`4esn`[$`2esn`..])[..Single(usn1 In $123456789 Contains usn2 Where $usn1[0.12..]['s_str'..])][..``(Distinct `1esn`[0e0..])] Where 's_str'[..0.e0][..`1esn`] Detach Delete $999[12.0..] Remove (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`).`2esn`,[.12 Contains $`4esn` Contains $`6esn`].@usn6"), - octest:ct_string("Merge (_usn4 {@usn5:$_usn3[$`4esn`..Null]}) On Create Set @usn5(Distinct 12e12[_usn3..][$@usn5..],7 Contains 9e1).`6esn` =$@usn5 In 12e12 In Count(*) On Match Set _usn3:@usn5,Any(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null).#usn7 =All(`6esn` In 0X7 =~`` Where $1000[01234567]) In usn1(),`` =None(@usn5 In 0X7 =~.0 =~\"d_str\" Where _usn3[...e1])[[_usn4 In usn1 Contains False Contains `` Where 0.12 In $7 In 0]..][[7[..12e12][..$`6esn`]]..] Delete count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null"), - octest:ct_string("Merge `4esn`=(:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) On Create Set _usn4 =[`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]][{`3esn`:$123456789 Contains usn2}..[$_usn4[`3esn`][0],$usn2 Is Not Null,0.0 =~0X7 =~#usn7]][Any(`4esn` In `6esn`['s_str'..][010..] Where 01 Ends With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0)],[usn1 In 0x0[..`4esn`] Where 12.0[0Xa][00]|$`6esn` Is Null Is Null].usn1 =Count(*)[True],`6esn`+=7[$`4esn`..123456789] On Create Set `6esn`+=[@usn6 In @usn5 In $`6esn` Where False In $`7esn` In .0|.12 Starts With $usn2] Ends With Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) Ends With Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Match `2esn`=((_usn4 {``:$usn2[..12.0]})),`1esn`=(((`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}))) Where @usn5[..True][..0X7] Unwind [.0[01][$12]][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`3esn` =~$`7esn` =~False|7[..12e12][..$`6esn`]]] As `1esn` Union Merge `8esn`=((`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) On Match Set [usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01|`1esn`[@usn6..$123456789]].`8esn`? =Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]),@usn5 =Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null,_usn3+=$@usn5 =~$`` =~$usn2 On Match Set `2esn`+=.e12 Starts With True Optional Match @usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})),_usn3=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Where $`5esn` Contains Count(*) Contains #usn7 Remove [usn2[$`7esn`..010][00..``],07[12][$`6esn`],Null[01234567][01234567]].`1esn`,`3esn`(Distinct 123456789 =~$123456789).`` Union Create (_usn3 :_usn4:usn1)<-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(:@usn6:`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}),#usn8=(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[usn1?:`8esn`|:usn1]->(`2esn` {usn2:$999[12.0..]})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})"), - octest:ct_string("Unwind 12e12[Count ( * )..][usn2..] As `3esn` Remove Single(usn1 In 0x0[..`4esn`] Where $`2esn`[123456789..][00..]).`4esn`! Union All Merge usn1=(((`7esn` :``)<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:usn1|`3esn`*]->(:_usn3{`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`}))) On Match Set [@usn5 In .12[#usn7][$`8esn`] Where Count ( * )|#usn7 Starts With 0 Starts With 12].`4esn` =[$1000 Is Null Is Null] Is Null,#usn7+=Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999),`5esn` =Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`]) Contains All(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 01234567[.12..7][1000..1.e1]) On Create Set `6esn` =Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`),{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}.`2esn`? =.12[`1esn`..],`5esn`+=0 Starts With `6esn` Starts With 0X0123456789ABCDEF Detach Delete usn2[`3esn`][_usn3] Create ((`1esn` :usn2:@usn6)),`3esn`=(usn1 :`6esn`:`7esn`) Union All Merge `8esn`=(({@usn6:$123456789 Is Null Is Null,@usn6:`6esn`[1.e1..$#usn7][.e0..True]})<-[`5esn`:usn1|`3esn` *010{`2esn`:`6esn` =~01234567 =~0Xa}]->(_usn4 :``))"), - octest:ct_string("Detach Delete usn1 Is Not Null Is Not Null,`2esn` Contains $999 Union All Optional Match @usn6=((:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})-[?:`4esn`|:`7esn`]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})),`8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`}) Where @usn6[`3esn`..][$7..] Create ((`6esn` :_usn4:usn1{`6esn`:00 In 12.e12})<-[`7esn`?:`5esn`|`1esn`]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`})),(usn1 :`3esn`:`1esn`)-[?:`4esn`|:`7esn` *..0x0]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Match ((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})),(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))) Where $`8esn` =~$usn2"), - octest:ct_string("Create usn2=((`5esn` :`7esn`)),_usn4=(((:`3esn`:`1esn`{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999})<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}))) Union Remove [#usn7 Starts With .e12 Starts With $`7esn`].``! Merge `7esn`=(@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) On Create Set usn2:@usn6:`7esn` On Create Set @usn5+=123456789 In $usn2 In `6esn` Remove [@usn5 In 0X7 =~.0 =~\"d_str\" Where .e0 In $@usn5 In $0|0 Is Not Null Is Not Null].@usn5?,{usn1:_usn3 Contains @usn6 Contains 1.e1}.#usn7!,usn1:@usn5 Union Delete 12e12[.12..],`1esn` In 999 In $#usn7 Create (((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})-[_usn4?:`5esn`|`1esn`]-(@usn5 {``:12[usn1][True],``:$`5esn` In `2esn` In $12})<-[`` *0xabc]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}))),`6esn`=(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Remove [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0].`3esn`,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``!"), - octest:ct_string("Return Distinct None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..] Create `2esn`=(:`1esn`)<-[`2esn`?:usn2|#usn8{`6esn`:0X7[.e12..01234567],@usn6:`7esn`[...e1][..\"d_str\"]}]->(`5esn` :`8esn`{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}) Union All Return $`6esn` =~$#usn8 As #usn8 Order By (#usn7 :#usn8)-[`6esn`:`4esn`|:`7esn` *..0x0]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})[Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])][Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])] Descending Limit Null Contains 9e1 Union All Return Distinct *,\"d_str\"[Count ( * )] As `7esn` Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) Contains Extract(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`) Limit {`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]] Remove Filter(#usn7 In 01234567[$`3esn`..] Where 0Xa[0xabc..$#usn8]).#usn8? Create ((`3esn` {`8esn`:$``[_usn4..][`7esn`..]}))"), - octest:ct_string("Remove Extract(@usn5 In $#usn8 Is Null Is Null Where $#usn8 Is Null).``? Union All Remove [usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`|$`8esn`[$``..$7][$1000..$`7esn`]].`3esn`!,@usn6:#usn8,(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 Remove [@usn5 In 0X7 =~.0 =~\"d_str\" Where $`8esn` Starts With 1000|@usn6 Contains .e1 Contains $`4esn`].`8esn`!"), - octest:ct_string("Optional Match (_usn4 :`4esn`:#usn8{@usn5:$_usn4[12e12][`4esn`],`4esn`:False In `3esn`})-[`6esn`:``|:_usn4 *..01]->(`5esn` :#usn7) Where $1000[01234567] Unwind Count(*) Is Null As `2esn`"), - octest:ct_string("Match `1esn`=(((`` :@usn5)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn5:`8esn`|:usn1]-(#usn7 :`5esn`))),usn1=(_usn4 :`8esn`{`3esn`:False[.e1..Null],`3esn`:9e0 =~$`5esn`}) With Distinct Extract(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null) Ends With `2esn`(`7esn`[Null..][@usn5..],123.654[12.e12..1e1]) Ends With Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]) As `7esn`,$usn2 In 9e0 In $7 Order By @usn5 Starts With 12e12 Starts With @usn5 Desc Skip $``[_usn4..][`7esn`..]"), - octest:ct_string("Optional Match (({usn1:`4esn` In $12 In `8esn`})<-[@usn5:#usn8{`4esn`:$0[0X0123456789ABCDEF..$#usn7]}]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})) Where 0X0123456789ABCDEF[..usn1] Detach Delete 0x0[0X7..][usn1..] Union All Remove `5esn`:_usn4:usn1,_usn4($`6esn`[$@usn6..],_usn3[.0]).#usn8,[07[$999],@usn6[$`7esn`]].@usn5! Create ((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` )) Merge (({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})) On Create Set #usn7:``,({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})<-[?:@usn5|`8esn` *..0X7]-(:usn1).`4esn` =`6esn` Starts With $`5esn`,[`6esn` In 0X7 =~`` Where 0.12[Null..]]._usn4 =Count ( * )[`3esn`..][`2esn`..] On Match Set `3esn` =010 In @usn5 In `5esn`"), - octest:ct_string("Remove Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`).@usn6! Return Distinct *,01234567[$@usn6..0X7][$`1esn`..123.654],_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) As #usn8 Skip .e0[..0X0123456789ABCDEF][...e12] Detach Delete 12.e12 Contains $`5esn`,$usn1 In 1000 In $#usn7,12.0 Union All Return Distinct *,`1esn` Contains Count ( * ) As _usn3 Skip $`3esn` =~$999 =~$`3esn` With Distinct [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}),$_usn4[`3esn`][0] As `1esn`,`6esn` Starts With $`5esn` As @usn5 Order By .0 Is Null Is Null Ascending,`1esn`(Distinct $@usn5[#usn8..][$`1esn`..],#usn7 Ends With `4esn` Ends With @usn5)[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|usn1[Count ( * )..$usn1]]][{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}] Asc Limit True Is Not Null Where 0.0 =~0X7 =~#usn7 Union All Return Distinct *,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}) Skip ({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}) =~None(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Return Distinct *,{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}[Extract(_usn4 In usn1 Contains False Contains `` Where `5esn`[.e1][0Xa])..] Order By [@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|#usn7 Starts With `1esn`][[@usn5 In .12[#usn7][$`8esn`] Where 0.12 In $`4esn` In `6esn`|$`1esn` Starts With @usn6]..][$`1esn`..] Ascending"), - octest:ct_string("Merge `1esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[? *999..]-(`` :`1esn`) On Create Set usn2 =0.0[..12e12][..$0] Unwind 123.654[@usn5] As _usn3 Optional Match `7esn`=((({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null})<-[`7esn`?:`8esn`|:usn1]-(`7esn` :#usn8)-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`))),`5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) Where $`8esn`[..$usn1][..'s_str'] Union Return Distinct None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..] Create `2esn`=(:`1esn`)<-[`2esn`?:usn2|#usn8{`6esn`:0X7[.e12..01234567],@usn6:`7esn`[...e1][..\"d_str\"]}]->(`5esn` :`8esn`{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})"), - octest:ct_string("With Distinct *,@usn6[`5esn`..$`3esn`] As ``,`7esn` In 's_str' In 0.12 As _usn3 Skip True Is Not Null Is Not Null Union All Merge ((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Merge `3esn`=((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) On Match Set `6esn` =$@usn5[Count ( * )] Union All Unwind 1.e1 Contains @usn6 As _usn3"), - octest:ct_string("Delete Extract(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|Null Starts With $`7esn` Starts With `2esn`) =~{`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0},$`1esn` Is Null,9e0 Starts With `6esn` Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null})-[#usn7:`1esn` *07..]->(#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})) Union Return Distinct *,$999[$1000] Skip 1e1[@usn5..] Create `1esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[? *999..]-(`` :`1esn`) Optional Match (({_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})),#usn8=({_usn3:12.e12 In $0 In Count(*)})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}) Where _usn3 Is Not Null Is Not Null"), - octest:ct_string("With *,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Skip $`2esn`[..7][..$usn1] Limit None(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`) Contains `3esn`($usn2 Contains 12.e12 Contains 00) Optional Match #usn7=(@usn5 {usn2:$999[12.0..]})<-[usn1]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[_usn3?:``|:_usn4]->(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}) Where $`1esn` Ends With _usn4 Ends With `3esn`"), - octest:ct_string("Unwind 0X7[..12e12] As _usn3 Create ``=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3})))"), - octest:ct_string("With Distinct *,{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)] Order By .e1 Starts With $`8esn` Asc Limit $#usn7 In .e1 In 01 Where `5esn`[`1esn`..`1esn`] Union All Detach Delete _usn3 Ends With 12e12 Ends With .e0,#usn7(Distinct $_usn4[$`8esn`..][07..])[..(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[`6esn`? *..7{`3esn`:123456789[$#usn7..]}]-(#usn8 {@usn5:.e1[..$``][..0X0123456789ABCDEF],_usn3:$usn2 =~$#usn8})-[#usn7:_usn3|:`4esn`]-(:`6esn`:`7esn`{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12})][..All(`4esn` In `6esn`[1e1..] Where $`1esn` Is Null)],`4esn` =~123456789 Create `2esn`=(((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))),`6esn`=({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})"), - octest:ct_string("Optional Match ``=(((:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(:`7esn`{@usn6:0.0[999..],#usn8:Null Is Null Is Null})-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]}))) Where 1000 Ends With 1000 Ends With $`4esn` Remove [_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4].@usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`!,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`)._usn4 Unwind @usn6(Distinct `` Starts With @usn5) =~Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]) =~#usn7(Distinct $0 =~$0 =~.e0) As `2esn`"), - octest:ct_string("Remove {``:9e1 Starts With _usn3 Starts With `4esn`}.`8esn`? Unwind False[.e1..Null] As `5esn` Create (:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0})"), - octest:ct_string("Unwind `6esn`[..`5esn`] As #usn8 With *,$`1esn` Ends With _usn4 Ends With `3esn` As `7esn`,({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] As @usn6 Order By $999 Ends With $`3esn` Ends With `8esn` Asc Skip $0[..07] Where $@usn5 In 12e12 In Count(*) Union Unwind $@usn5[Count ( * )] As #usn7 Detach Delete 999 In 12 In \"d_str\",$`5esn` Contains Count(*) Contains #usn7 Union All Create (`8esn` :`1esn`)"), - octest:ct_string("With Distinct [@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7|$999 Ends With $`3esn` Ends With `8esn`] Starts With [$`6esn` Is Null Is Null,0Xa Is Not Null Is Not Null,0X7 In 123.654 In $`2esn`] Starts With [01234567[Null..0.e0][Count(*)..$#usn8]] As `6esn`,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} Order By {_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]} Ends With Extract(`4esn` In $`8esn` Starts With 1000 Where `6esn`['s_str'..][010..]|12.e12[@usn5..123.654]) Ends With [$`5esn` Is Not Null,0e0 Is Null Is Null] Ascending,(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Ascending,0X0123456789ABCDEF[..usn1] Asc Where Count(*)[..`3esn`] Detach Delete {`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}[[`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]]][Count ( * )] Optional Match `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),usn2=({_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[@usn5?:``|:_usn4]-($12) Where $1000 In $`7esn` In $7 Union All Merge `3esn`=(((:_usn4:usn1{usn2:$`5esn` In False})<-[?:@usn5|`8esn` *..0X7]->(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}))) On Create Set [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]].`1esn` =9e12 =~01 =~$`7esn` On Create Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$`` Remove [@usn5 In $#usn8 Is Null Is Null Where $#usn8 Is Null|123.654[@usn5]].`6esn`! Remove Filter(@usn5 In $#usn8 Is Null Is Null Where $@usn5 =~$`` =~$usn2).`7esn`,Filter(_usn4 In usn1 Contains False Contains `` Where _usn4[$`4esn`..]).#usn8?,[\"d_str\" =~`3esn` =~0Xa,$123456789[..0.12][..#usn7]].usn2! Union All With Distinct 0x0 Contains _usn4 Contains 123456789 As `7esn`,$_usn3[Null] As `1esn` Order By .e12 Contains 9e0 Ascending,{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]} Ends With (usn1 :_usn3)<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})-[ *..0x0]->(:`7esn`{@usn6:0.0[999..],#usn8:Null Is Null Is Null}) Asc,usn1 Contains False Contains `` Descending Where `2esn` Contains $999"), - octest:ct_string("Unwind $@usn5[.e1] As #usn8"), - octest:ct_string("Merge usn1=(:`5esn`{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[`5esn`:`8esn`|:usn1]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}) On Create Set _usn3+=$@usn5 =~$`` =~$usn2,`6esn`+=`6esn`[1.e1..$#usn7][.e0..True],(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[`` *0xabc]->(`7esn` :#usn7{`6esn`:$`3esn` Contains 0X0123456789ABCDEF Contains 00,`1esn`:1000[123.654..9e12][1000.._usn3]}).``! =[@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Match `2esn`=(`` :usn2:@usn6)<-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`7esn` :`4esn`:#usn8{`2esn`:Count(*)[..`3esn`]}),(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})-[`4esn`:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]-(_usn3 :``)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->({`1esn`:0.0[1000..][.e1..]})"), - octest:ct_string("Merge (_usn4 :@usn6:`7esn`)<-[#usn8?:_usn4|:@usn5 *..0x0]-(`6esn` :#usn7{`5esn`:#usn7 Is Not Null Is Not Null})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) Union Remove None(usn1 In 00 Starts With _usn3 Where 123456789[`4esn`..][Count ( * )..]).#usn8!,All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..])._usn4 Return Distinct *,(_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)[Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] As `8esn`,[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `8esn` Order By @usn5 Starts With 12e12 Starts With @usn5 Desc Skip _usn4(usn1[Count ( * )..$usn1],_usn3 Ends With 12e12 Ends With .e0)[All(usn1 In 0x0[..`4esn`] Where $`2esn`[123456789..][00..])..Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``])][[@usn6 In @usn5 In $`6esn` Where $``[_usn4..][`7esn`..]|12.e12 In $0 In Count(*)]..(:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)] Merge `4esn`=({`8esn`:0X7 In 's_str' In $`1esn`}) On Match Set usn2+=.e1 Ends With _usn4 Ends With @usn5,@usn5+=_usn3 In .e1 In $12,Extract(`4esn` In `6esn`[1e1..] Where $`7esn` Ends With `1esn` Ends With True).`` =010 In @usn6 On Match Set usn1 =Count ( * ) =~All(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7) Union Merge (`4esn` :#usn7)-[_usn4?:`6esn`]-(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) On Create Set `5esn`+=0 Starts With `6esn` Starts With 0X0123456789ABCDEF,`4esn`+=$`7esn` Ends With $usn2,[usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null].@usn5! =$1000 Ends With 1e1 Ends With 123.654"), - octest:ct_string("Delete 's_str'[.12..$#usn7][$999..`2esn`],All(usn1 In 00 Starts With _usn3 Where 12e12[Null]) Ends With (:`7esn`)<-[@usn5:#usn7|:_usn4]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})<-[?:usn2|#usn8{#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7}]-({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) Ends With Extract(`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]|usn2[$`1esn`...0]),0.12 =~9e0"), - octest:ct_string("Return *,07[0..`4esn`],Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) Order By `4esn` =~$`3esn` =~$123456789 Ascending,{`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])] Asc,$`4esn`[..usn1] Ascending Skip $`3esn` Limit [@usn5 In 0X7 =~.0 =~\"d_str\"|#usn7 Starts With `1esn`][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn`[...e1][..\"d_str\"])..][`2esn`(Distinct 12e12[Null],0xabc[12.e12..`1esn`])..] Create usn2=(((#usn8 :@usn6:`7esn`)<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[_usn3? *00..]-(`1esn` :`1esn`))) Unwind 01 In _usn3 In 12 As `3esn`"), - octest:ct_string("Optional Match _usn3=(($999)),``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)) Where 9e0[True..`1esn`] Union Remove [#usn7 In 01234567[$`3esn`..] Where .12 Starts With @usn5 Starts With $#usn8|$`6esn`[$`1esn`][1000]].@usn6?,usn2($#usn8 Is Null Is Null)._usn4"), - octest:ct_string("Unwind 00 Is Not Null Is Not Null As `` With Distinct *,`7esn`[Null..][@usn5..],0X0123456789ABCDEF Contains $usn1 Skip Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] Limit False Ends With $`8esn` Where 0 Starts With 12e12 Starts With `4esn` Optional Match (`` :#usn7)<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})<-[`5esn`?:`6esn`]->(`6esn` :`6esn`:`7esn`{_usn4:\"d_str\"}),`4esn`=(((`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[?{`4esn`:0.e0 Ends With 12 Ends With $7,@usn6:$``[_usn4..][`7esn`..]}]->(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]}))) Where 123.654 In \"d_str\" In $_usn3 Union Match usn2=((:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})),((`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})<-[?{`8esn`:_usn3 Ends With 0x0 Ends With 01234567,#usn8:$`7esn` Is Null Is Null}]->(:``{#usn8:$`2esn`[..`2esn`]})<-[@usn5:#usn7|:_usn4]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})) Remove {`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}.@usn5?"), - octest:ct_string("Detach Delete $@usn6[..$usn1],`` =~12 =~$#usn7,`3esn` Is Not Null Is Not Null Match #usn8=(usn2 :#usn7)-[#usn8 *07..{@usn5:.e1[..$``][..0X0123456789ABCDEF],_usn3:$usn2 =~$#usn8}]-(`4esn` :`1esn`),(@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})<-[ *1000..]->(@usn5 :``{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]})<-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(@usn6 :#usn7{@usn5:Null Is Null Is Null}) Unwind True[0] As _usn3 Union All Return $`4esn`[$`2esn`..] As #usn8,#usn8 In $0,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Skip $@usn5 =~$`` =~$usn2 Limit `8esn` Ends With 999 Ends With 9e0"), - octest:ct_string("With 123.654 Is Not Null Is Not Null As `3esn`,$usn1 In 1000 In $#usn7 As `8esn` Order By .12 Starts With $usn2 Asc,[usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..] Asc,{`8esn`:$123456789 Is Null Is Null,_usn3:$`4esn` Starts With 1e1}[(#usn7 :`2esn`:`3esn`)<-[`8esn`?]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})..All(_usn4 In usn1 Contains False Contains `` Where $`8esn`[$``..$7][$1000..$`7esn`])] Descending Skip $@usn5[$#usn8..][9e1..] Limit $123456789[0X7..12.e12] Where 0.12[0.e0..][`4esn`..] Union All Remove {``:7[..`1esn`],_usn4:.e1 Ends With _usn4 Ends With @usn5}.usn2? Detach Delete (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[`4esn`{#usn8:Null[0e0][12],`2esn`:`8esn` In $@usn5}]-({_usn3:999 In $_usn4 In 0X7,`1esn`:1e1 In $#usn8 In 12e12}) Contains 0X0123456789ABCDEF Contains Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])"), - octest:ct_string("Match ``=((@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`)) Where 's_str'[12..'s_str'] Unwind Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) As `4esn` Union Match `8esn`=(`4esn` {`3esn`:0X7[..12e12],`8esn`:False In 123456789 In $0})-[`4esn`?:`1esn`]->(:`2esn`:`3esn`{usn2:$`5esn` In False})<-[#usn7? *00..]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]}),`8esn`=(({_usn3:$0 Ends With $#usn7 Ends With .12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[?:``|:_usn4 *..0X7]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})) Where $1000 Contains $`3esn` Create ((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(@usn5 {_usn4:010[$@usn6],`6esn`:123456789[1e1..0.0]})<-[`6esn`?:`2esn`|usn2 *01234567..12]->(:`7esn`{#usn7:True =~@usn5 =~$`1esn`})),`6esn`=({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Remove Filter(usn2 In 1000 Contains 0.e0 Where 12e12[$`5esn`][07])._usn4? Union Delete 0e0[`2esn`..010],@usn6[`5esn`..$`3esn`],Count ( * )[..usn1][..12.e12] Remove [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1].usn1,None(@usn5 In .12[#usn7][$`8esn`] Where 123456789 Is Null).`1esn`?"), - octest:ct_string("Remove None(#usn8 In $`5esn` Is Null Is Null Where 01234567 Ends With 12.0 Ends With 0X7).`2esn`?,[9e0 =~$`5esn`]._usn3!,(_usn4 )<-[#usn7? *00..]->(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`).`1esn` Merge (({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:usn1{`8esn`:usn1 Contains $``})) On Create Set usn2:usn1,None(_usn4 In usn1 Contains False Contains `` Where .12 In $999 In `5esn`).usn2 =9e0 In 01234567,`8esn` =$@usn5 Ends With 0X0123456789ABCDEF With Distinct 999[``..][Null..] As `1esn` Order By 00 In 0.12 In `5esn` Ascending Skip 0.e0[9e1..][0.0..] Limit Count ( * )[..1e1] Union All With Distinct All(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`)[[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]]..][({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})..] As #usn8,07[0..`4esn`] As `` Order By 0 Ends With $7 Ends With _usn3 Ascending Limit 07 =~`8esn` =~0 Where $999[12.0..] Optional Match ((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12}))"), - octest:ct_string("Remove [0x0[$`3esn`..010][$#usn7..00],$_usn4[#usn8..],#usn7 Starts With `1esn`]._usn4?,count(Distinct 0.e0[9e1..][0.0..],$usn2 =~$#usn8).`5esn`?,`2esn`:`` Union All Return Distinct {`5esn`:123.654[@usn5]} Is Not Null Is Not Null,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] Skip (#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})[Filter(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 0.12 Ends With $usn1 Ends With $@usn5)][`3esn`(Distinct 9e12[_usn3])] Limit Extract(`4esn` In `6esn`[1e1..] Where 123456789 =~_usn4 =~$0) Contains (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6) Contains ({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[`7esn`?:#usn8]->(@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0}) Delete $_usn4[$`1esn`],[01234567 =~usn1,9e0 =~$`5esn`,usn2[$`1esn`...0]][..[.12 In $999 In `5esn`,010 =~`6esn`,#usn7 Contains .0 Contains .e1]]"), - octest:ct_string("Optional Match usn2=((#usn8 :`4esn`:#usn8)-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)) Unwind $`1esn` Is Null Is Null As `8esn` Union All Merge `5esn`=((({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(_usn4 {`1esn`:010[@usn5..]})<-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(:``{_usn3:0X0123456789ABCDEF In 01234567}))) On Create Set `4esn`+=01234567[.12..7][1000..1.e1],``(`` In `6esn`).@usn6 =`1esn` In 999 In $#usn7,`7esn` =9e12 On Create Set {usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]}.usn2? =9e12 Contains .e0 Contains .e0,_usn3 =`7esn`($123456789 In Count(*) In .e1) Ends With Extract(@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|Count ( * )) Ends With Any(usn1 In 0x0[..`4esn`] Where False[.e1..Null]),@usn6+=Any(`4esn` In $`8esn` Starts With 1000 Where 0.12 Is Null Is Null) Is Not Null Is Not Null With Distinct All(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`)[[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]]..][({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})..] As #usn8,07[0..`4esn`] As `` Order By 0 Ends With $7 Ends With _usn3 Ascending Limit 07 =~`8esn` =~0 Where $999[12.0..] Merge @usn5=(((:`1esn`{#usn7:1e1[`6esn`..]})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) On Create Set _usn4 =All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)[[usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1]],#usn7 =_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) On Create Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$`` Union All Return `3esn` =~`3esn` =~$`6esn` As `7esn` Limit $`7esn` Is Null Is Null Return *,00[``..][$`4esn`..] As `6esn`,$`6esn`[$`1esn`][1000] Order By `1esn`[@usn6..$123456789] Asc,`1esn`[9e12..$`8esn`][usn2..$``] Ascending,`7esn`[..0X0123456789ABCDEF][..$0] Desc Skip $usn2[0e0..] Limit (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``])"), - octest:ct_string("Match `6esn`=(`6esn` :`5esn`),(@usn6 :`5esn`{_usn3:010[$`8esn`..][0..],_usn3:`2esn` Is Not Null Is Not Null}) Where 0x0 Union All With [$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] Order By .e12 =~0.0 =~9e0 Desc,010 =~$usn2 =~1e1 Desc,#usn8(0X7 In 's_str' In $`1esn`,$0 Is Not Null)[usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])] Descending Where .0 Is Null Is Null Detach Delete 0xabc Contains Null Contains 9e12,.12 Starts With 0Xa,`6esn` In 1000 In 01234567"), - octest:ct_string("With Distinct [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending,9e12 Asc Skip 0X7[.e12..01234567] Limit $_usn4[0.12..$`6esn`][00..$@usn6] With `2esn` In 7 In usn2,$0 =~$usn1 =~9e1 As `5esn`,@usn5[_usn4..][.e0..] As usn1 Skip Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] Union All Merge `8esn`=((#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})<-[ *00..{`3esn`:12 Ends With 01234567,`4esn`:00[``..][$`4esn`..]}]->(`2esn` :``))"), - octest:ct_string("Return *,{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)] Skip $12 Is Null Is Null Limit usn1[$`3esn`..$999][True..False] Match _usn4=(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(@usn6 ) Unwind 0xabc[$@usn5] As usn2"), - octest:ct_string("Delete $`1esn` Is Null Is Null,_usn4 Starts With 0X7 Union Delete 00[.e1..],.12 Ends With `1esn` Ends With $`1esn`,1000 Contains $#usn7 Contains `6esn`"), - octest:ct_string("Unwind 999 In 12 In \"d_str\" As #usn8 With Distinct *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `2esn` Unwind $0[..07] As usn1 Union Detach Delete Extract(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null) =~Any(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null) =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1],$7 Contains 0x0 Contains ``,[\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Remove [01234567[Null..0.e0][Count(*)..$#usn8],#usn8 Contains .e0 Contains $`8esn`,123456789[1e1..0.0]].`1esn`? Create (:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa}),(`3esn` :usn2:@usn6)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]})-[_usn3]-(`` {`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}) Union Create ((usn1 :`4esn`:#usn8)<-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null})),`6esn`=(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}) Unwind 9e12[@usn6..$``][#usn8..Count ( * )] As _usn4"), - octest:ct_string("Optional Match ``=((({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[usn2?]-(`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))),(:usn2:@usn6)-[ *07..]->(`5esn` :`2esn`:`3esn`{_usn3:$`2esn`[$123456789..$`1esn`][0Xa..$``],`5esn`:12.e12[@usn5..123.654]}) Where 0.12 In $7 In 0 Remove `3esn`:`7esn`,(:_usn4:usn1)-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]-(`1esn` :`1esn`).``?,usn2:#usn8"), - octest:ct_string("Delete 0.12 Is Null Is Null Return [@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Order By 123456789 Starts With #usn7 Starts With `6esn` Descending,7[..0X7][..'s_str'] Ascending,None(`4esn` In 's_str'[12..'s_str'] Where 12.0[0Xa][00]) Is Not Null Desc Skip 0x0 Limit (:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[@usn6?:`1esn`]-(:`5esn`)-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`) Starts With Single(_usn4 In usn1 Contains False Contains `` Where $`6esn` Is Null Is Null) Merge `7esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)) On Create Set `3esn`+=00 Ends With $_usn4 Ends With $`2esn` On Match Set `6esn`:usn1,`7esn`+=07[`6esn`..][`5esn`..] Union Detach Delete `1esn`(Distinct 0.0[999..],9e0 Ends With $`7esn`) Ends With (`7esn` {`8esn`:Count ( * ) =~Count(*)})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}) Ends With (#usn7 :`2esn`:`3esn`)<-[`2esn`?*..]->(:#usn8{`5esn`:0 Contains 12e12}),$`8esn` Starts With 1000,({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null Detach Delete _usn3 Is Null,01 Contains 123456789"), - octest:ct_string("Remove (usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})._usn4?,usn1:`3esn`:`1esn`,{`2esn`:9e1 In 01 In 999,`5esn`:$@usn6[..$usn1]}.@usn5! Unwind .e12 =~0.0 =~9e0 As `8esn` Union Detach Delete 07 In Count ( * ) In \"d_str\",Null Is Not Null"), - octest:ct_string("Detach Delete False[..12.e12] Create ({``:.e12[..0.e0][..$`1esn`]})-[_usn3:#usn8]-(usn1 :#usn7) Unwind $123456789 Is Null Is Null As _usn3"), - octest:ct_string("Detach Delete $`7esn` Is Not Null Detach Delete 0Xa In .e1 In Count(*) Remove #usn7(Distinct $@usn6[..$usn1],9e12 Is Not Null Is Not Null).usn1 Union Delete .e1[usn1..] Remove Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]).`1esn`,#usn7:_usn4:usn1,(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})<-[`2esn`:usn1|`3esn` *0Xa]->(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})._usn3!"), - octest:ct_string("With *,0.12 In 01 In $`3esn` As @usn5 Order By Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}) Desc,$12[01..][1.e1..] Descending,`7esn`[Null..][@usn5..] Asc Limit Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null)[count(Distinct 0.12 Contains $12 Contains `8esn`)..[$`1esn` Is Null Is Null,9e1 In 01 In 999]] Where $@usn6 =~usn1 Merge `1esn`=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(usn1 :`4esn`:#usn8{``:0 Is Not Null Is Not Null,`3esn`:usn1 Starts With $#usn7 Starts With `5esn`})) On Match Set #usn8($`2esn` Contains usn1 Contains `2esn`).`3esn`? =0xabc[..$`1esn`][..01] On Create Set @usn6+=[usn1[..$_usn4][..``],0X7[.e12..01234567]] In `3esn`(@usn5[..True][..0X7],$`3esn` =~$`7esn` =~False) Merge @usn5=({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)<-[?:usn2|#usn8{#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7}]-({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) Union Optional Match usn1=((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6)) Delete 0.12 Is Null Is Null Create ((`` :`1esn`)-[`1esn`:usn2|#usn8 *1000..]-(`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[`4esn`]->({`8esn`:0X7 In 's_str' In $`1esn`})) Union Return Distinct `4esn` In $12 In `8esn` As `8esn` Order By $_usn3[..$_usn3][.._usn4] Descending,Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Desc,\"d_str\" =~`6esn` =~0Xa Ascending Skip Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] Delete 12.e12 Contains $`5esn`"), - octest:ct_string("Detach Delete Any(#usn7 In 01234567[$`3esn`..] Where 00 In 1e1)[[usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0|0xabc[12.e12..`1esn`]]..][[@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2]..],12.e12 Ends With 01 Ends With .e1,07[12e12] Detach Delete .e1 Starts With 0.0 Starts With `6esn`,(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')],`1esn` Contains Count ( * ) Remove usn1:`1esn` Union Remove [@usn5 In 0X7 =~.0 =~\"d_str\" Where $123456789 Ends With .e1]._usn4?,Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`]).@usn5?,{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}._usn3 Detach Delete $`3esn` Contains 0X0123456789ABCDEF Contains 00,Extract(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]|1000[..$`6esn`][..0xabc]) Ends With [07[$999],12e12[Count ( * )..][usn2..]]"), - octest:ct_string("Merge (`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) On Match Set `2esn`(Distinct $`2esn`[..7][..$usn1]).`1esn`? ={`4esn`:.12 Starts With 0Xa} Starts With All(usn1 In 00 Starts With _usn3 Where `6esn`[False..0.0][12e12..$usn2]),`5esn` =$usn1[0.12..]['s_str'..],({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})-[#usn8?]-(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7}).`6esn`? =[999[.e12][01],999 In 9e1 In 7,0xabc Contains Null Contains 9e12][All(`6esn` In 0X7 =~`` Where 0.12[Null..])..[`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]]][count(010 Contains Count(*))..(:`4esn`:#usn8)-[:#usn8 *..0X7]->({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6)]"), - octest:ct_string("Merge #usn7=((_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]})) On Match Set @usn6+=(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}] On Match Set (usn1 :#usn7)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->(`4esn` {`7esn`:.e0[..999][..0X7]}).usn2 =$`3esn`[`2esn`...e0] Create ``=((`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(usn1 :_usn3)) With $`8esn` In \"d_str\" In 9e12 Order By 0X0123456789ABCDEF Is Null Is Null Descending Skip Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`])"), - octest:ct_string("Return Distinct $`1esn` Starts With $999 As #usn8,Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)[{#usn8:`5esn` =~0Xa,@usn5:0X7[999][$1000]}..[`` Starts With 12,$`1esn` Starts With $999]][`7esn`(Distinct $usn2[..12.0])..`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])] Order By 9e1 Is Not Null Is Not Null Asc,$usn2[$123456789..123.654][$`5esn`..'s_str'] Desc Union Remove (`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(`4esn` :#usn7).@usn5?,All(`4esn` In `6esn`['s_str'..][010..] Where \"d_str\" =~`6esn` =~0Xa).``!,(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}).usn1!"), - octest:ct_string("Return Distinct *,All(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..]) Is Null Is Null As `6esn`,[#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`][Any(`4esn` In $`8esn` Starts With 1000 Where 123.654 Starts With usn1 Starts With @usn5)..] As `8esn` Order By 0X0123456789ABCDEF[.e0..$`4esn`] Descending,Extract(usn2 In 1000 Contains 0.e0) Ends With All(`4esn` In `6esn`['s_str'..][010..] Where $0[01234567..00][$`2esn`..$@usn6]) Ends With Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]) Descending,9e1 Starts With _usn3 Starts With `4esn` Descending Skip {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7) Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `7esn` Ends With $usn2 Ends With 999).@usn5! Union Return *,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7,@usn6 Starts With `7esn` Starts With Null Skip Count ( * )[..usn1][..12.e12] Limit (`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Union Unwind $#usn7 As `5esn`"), - octest:ct_string("Detach Delete [$`8esn` =~$usn2][Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..],\"d_str\" =~`3esn` =~0x0,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)]"), - octest:ct_string("Detach Delete .e1 Starts With 0.0 Starts With `6esn`,(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')],`1esn` Contains Count ( * ) Unwind 0Xa[0xabc..] As @usn6 Create `4esn`=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})),(`7esn` :_usn4:usn1)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})-[`1esn`{`2esn`:.12 Starts With @usn5 Starts With $#usn8}]->(:usn1{`6esn`:1000 Contains 0.e0,`7esn`:$@usn6[..$#usn7][..12.e12]}) Union Remove Single(_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0).#usn8?,[`2esn` Is Not Null Is Not Null].`7esn` With Distinct [$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] Order By {#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} Desc Skip 00 Starts With _usn3 Limit True =~@usn5 =~$`1esn` Union All Optional Match #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`1esn`=(((`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}))) Where 010 Contains Count(*) Return Distinct *,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] As @usn6 Order By 010 Starts With `7esn` Starts With 9e1 Ascending,123456789 Is Null Descending,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] Desc Skip {#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null Match #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`) Where $`2esn`[..`2esn`]"), - octest:ct_string("Delete $#usn8[0xabc][`3esn`],(:`1esn`{`8esn`:Count ( * ) =~Count(*)})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(`1esn` {_usn4:12.e12 Ends With 01 Ends With .e1})[Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8])],$usn2[False..`7esn`][`7esn`.._usn3] Remove [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7].@usn5,Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])._usn3?"), - octest:ct_string("Unwind 12.e12[0e0..7] As @usn5 Match (((`3esn` :`8esn`)-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(_usn3 :usn2:@usn6)-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}))),`6esn`=((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})) Where 12.e12['s_str'] Union All With 01234567 Ends With 0x0,[`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As #usn8,$1000 Is Not Null Is Not Null Order By 's_str'['s_str'..$usn2][_usn3.._usn3] Asc Skip Extract(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]|1000[..$`6esn`][..0xabc]) Ends With [07[$999],12e12[Count ( * )..][usn2..]] Limit Null[01234567][01234567] Where 0X7[..12e12] With Distinct $12 Contains 123.654 Contains `8esn` As _usn4 Limit Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) Union All Merge _usn4=(usn1 :_usn4:usn1)<-[`5esn` *0..010]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) On Create Set `4esn` =$@usn6 Contains 07 Contains 0.e0 On Match Set [0X7 =~.0 =~\"d_str\",9e1[...e0]].@usn5 =Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}),{@usn6:usn1 In 1000 In $`5esn`,@usn6:9e0[``][123.654]}.`3esn`! =$999 In $`8esn` In `5esn` Merge ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) On Match Set (`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})<-[?{#usn7:`6esn`[False..0.0][12e12..$usn2]}]-(`4esn` {`4esn`:#usn7[..$1000][..01]})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}).`4esn`! =0 Is Not Null,`6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`1esn` =$_usn3[$`4esn`..Null] On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})]"), - octest:ct_string("Create _usn4=(((@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})-[`2esn`:@usn5|`8esn`]-(usn2 :`5esn`)-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4}))) Unwind $`5esn` Contains $@usn6 As @usn6 Return Distinct 1000 Contains $#usn7 Contains `6esn`,12.0 Contains 0.e0 As `6esn`,$12[..7][..07] As #usn8 Order By Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending Skip All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)[[usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1]] Limit 0xabc Starts With _usn3 Union Optional Match `4esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}),(((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Where $_usn3[..Count ( * )][..@usn5] Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..] Union All Remove [Null Contains _usn4].`8esn`!,Single(#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4).@usn6 With Distinct 0 =~12.e12 =~$``,0.12 Contains .e1 As `6esn`,01 Contains $`7esn` Contains 9e0 Order By Count ( * )[..1e1] Asc,_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) Asc,[0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] Ascending Skip Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] Limit _usn3(0x0[0X7..][usn1..])[..Any(#usn8 In $`5esn` Is Null Is Null Where 999[$`8esn`])][..{#usn7:False[`2esn`..#usn8]}] Detach Delete $`7esn` In 0.e0 In `4esn`"), - octest:ct_string("Match `3esn`=(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}),usn2=((#usn8 :`4esn`:#usn8)-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)) Where $`8esn` =~$usn2 Merge _usn3=(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})) On Create Set `4esn`(Distinct .0 Starts With `2esn` Starts With `6esn`).`7esn`! =Filter(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[[1e1[0.0],0 Contains 12e12,$123456789[..0x0][..`4esn`]]],`8esn` =[@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] Merge ((`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}))"), - octest:ct_string("Create (#usn7 $usn2)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ) Union All Unwind [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] As #usn7 Match ((`` :`1esn`)-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`4esn` {`2esn`:@usn6[`5esn`..$`3esn`],`7esn`:$`1esn` Is Null})) Where $`8esn`[$``..$7][$1000..$`7esn`]"), - octest:ct_string("Unwind {@usn6:`7esn` In 999 In @usn6} Starts With Extract(usn1 In 0x0[..`4esn`] Where 0x0|07 Ends With 07) Starts With Filter(usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12) As _usn3 Return Distinct .12[#usn7][$`8esn`],12 Ends With 07 Ends With @usn6 As usn1 Order By $999[..`1esn`] Ascending,Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending,[$`8esn` =~$usn2][Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..] Asc"), - octest:ct_string("With ({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn`,$@usn5 Contains 01 As ``,$usn1[#usn8..][``..] As `2esn` Order By 0e0[`2esn`..010] Ascending,Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)[{#usn8:`5esn` =~0Xa,@usn5:0X7[999][$1000]}..[`` Starts With 12,$`1esn` Starts With $999]][`7esn`(Distinct $usn2[..12.0])..`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])] Descending Limit `4esn` =~123456789 Union All Create `7esn`=((({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null})<-[`7esn`?:`8esn`|:usn1]-(`7esn` :#usn8)-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`))),`5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) Union All Detach Delete 1000 Ends With 1000 Ends With $`4esn`,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)],{_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]} Optional Match #usn7=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))),(((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]-({usn1:0x0[0X7..][usn1..]}))) Detach Delete .e12 Contains 9e0,$`2esn`[``..],Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*))"), - octest:ct_string("Return Distinct (_usn3 :`6esn`:`7esn`{usn1:$_usn3[9e1][$_usn4],`8esn`:123456789 =~_usn4 =~$0})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-({`1esn`:@usn6}) In _usn3(0x0[0X7..][usn1..]) In None(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str') As _usn4 Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending Skip 07[12][$`6esn`] Remove ({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})-[#usn8?]-(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7}).@usn6?,{`3esn`:`4esn`[7..][1000..],usn2:123456789 Starts With `2esn` Starts With 9e12}.`8esn`!,@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12).`5esn`! Create ((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})),#usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) Union All Match ``=((@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`)) Merge #usn8=(({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({_usn3:$`1esn` Starts With @usn6})) Detach Delete 12 Ends With 01 Ends With 1e1,010 =~$usn2 =~1e1,`1esn` In 999 In $#usn7"), - octest:ct_string("Unwind 1e1[@usn5..] As _usn4 Union Optional Match @usn5=((:#usn8$usn1)-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})),((#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})) Unwind Count(*) Is Null As `2esn` Create (@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Union Return 's_str'[.12..$#usn7][$999..`2esn`] As `5esn` Order By Count ( * ) In 010 Descending,12e12[_usn3..][$@usn5..] Ascending,usn2 Starts With `6esn` Starts With 12e12 Desc Limit Count ( * )[..usn1][..12.e12] Return Distinct *,[#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|@usn6 Starts With `7esn` Starts With Null] Is Not Null Is Not Null,`8esn`[_usn3..$#usn7] Order By 's_str' Starts With 1000 Starts With #usn8 Descending"), - octest:ct_string("Create (((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Match (usn2 :#usn8{`3esn`:123.654[@usn5]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`}),((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[usn1?:`1esn` *0X0123456789ABCDEF..{usn2:$`4esn`[12.e12..][0.0..]}]-(#usn7 :`5esn`)) Where 1e1[..False] Union Merge `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})) On Match Set `` =None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..],#usn7($`8esn`[$``..$7][$1000..$`7esn`],`2esn` In 7 In usn2).`6esn`? =$_usn4['s_str'..],`4esn`+=$`7esn` Ends With $usn2 On Match Set `` =Count(*) Ends With 010,None(usn1 In 0x0[..`4esn`] Where $999[12.0..]).@usn6 =0 Is Not Null Is Not Null,`7esn`+=`4esn`(Distinct .0 Starts With `2esn` Starts With `6esn`) Contains Extract(@usn6 In @usn5 In $`6esn` Where $@usn6[..12e12]|$@usn6 =~usn1) Contains (@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[`4esn`?:`8esn`|:usn1 *..0x0]->(:`7esn`{``:$`1esn` Starts With @usn6}) Detach Delete {usn2:123456789 Starts With `2esn` Starts With 9e12} Ends With All(usn2 In 1000 Contains 0.e0 Where 01234567[Null..0.e0][Count(*)..$#usn8]),9e0[``][123.654] Unwind 1000 Contains 0.e0 As #usn8"), - octest:ct_string("Delete (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]),[usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..],{_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] Create #usn8=(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}) Return Distinct *,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}) Skip ({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}) =~None(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Union All Remove usn1:`1esn` Delete {@usn5:$`3esn`} Starts With .12,.12[..`6esn`][..\"d_str\"],$#usn7[True..][$0..] Unwind 9e1 Starts With `1esn` Starts With 0Xa As `2esn`"), - octest:ct_string("Unwind 1e1[.e1..] As #usn7 Unwind `3esn`(`7esn` Starts With $usn2 Starts With .e0,$_usn3 =~`7esn` =~$_usn4)[[$`2esn`[123456789..][00..],Count ( * )[@usn6..0x0]]..][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0)..] As usn1 Merge ((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[? *0..010]-(#usn8 :`4esn`:#usn8)) On Create Set `4esn` =.e12[.12..][_usn4..] On Match Set {`2esn`:12 =~usn1 =~.e12}.usn2 =False Is Not Null Is Not Null,`3esn` =010 In @usn5 In `5esn`,[usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null].@usn5! =$1000 Ends With 1e1 Ends With 123.654 Union Delete 12e12[.12..],`1esn` In 999 In $#usn7 Create (((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})-[_usn4?:`5esn`|`1esn`]-(@usn5 {``:12[usn1][True],``:$`5esn` In `2esn` In $12})<-[`` *0xabc]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}))),`6esn`=(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Remove [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0].`3esn`,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``!"), - octest:ct_string("Merge `8esn`=(:`8esn`) On Match Set [999[``..][Null..],`5esn` =~0Xa].@usn6? =[`6esn` In 0X7 =~`` Where `` Contains 12 Contains True|@usn5[..True][..0X7]][(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})..{`4esn`:9e0 Starts With `6esn`}][Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `5esn`[`1esn`..`1esn`])..(`3esn` :usn2:@usn6)<-[`7esn`?:@usn5|`8esn`]-(`1esn` :``)],#usn8+={`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}],`3esn` =7[..0X7][..'s_str'] Match ``=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))) Where $`6esn` Is Null Is Null Union With $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Order By $12[01..][1.e1..] Descending Skip .12[.e12..0.e0][0.e0..$`2esn`] Where $_usn4[12e12][`4esn`] Merge `1esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[? *999..]-(`` :`1esn`) On Create Set usn2 =0.0[..12e12][..$0] Merge `2esn`=(_usn4 {`8esn`:9e1 In 01 In 999})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`) On Match Set @usn5+=`1esn`[9e12..$`8esn`][usn2..$``],usn1 =[12.e12 Ends With 01 Ends With .e1,$@usn5[0.12..][@usn5..],$usn1 In 1000 In $#usn7] Is Not Null On Match Set _usn4 =0 Contains 12e12,`1esn`:#usn8,`7esn` =0 Is Not Null"), - octest:ct_string("With Distinct *,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Limit Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}) Return Distinct *,.e1[usn1..],$1000[.e0..] As `3esn` Skip `5esn`[Count ( * )..][\"d_str\"..] Merge (`7esn` {_usn3:usn1 Contains $``})<-[usn1]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12}) On Create Set `4esn` =.e12[.12..][_usn4..] On Match Set @usn5+=`` In `6esn`,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`` Is Null Is Null).`` =12.e12 Is Not Null"), - octest:ct_string("Optional Match `6esn`=({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}),_usn4=((#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) Return *,False In `3esn`,12.e12[$`7esn`] Order By $`1esn` Ends With _usn4 Ends With `3esn` Descending Merge #usn8=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) On Match Set `2esn`+=123.654 In \"d_str\" In $_usn3 Union Delete `6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),$@usn6[..$#usn7][..12.e12],.e0[`4esn`..`4esn`][0.0..$0] Delete 12.e12 In $1000,{_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]},$999 Ends With $`3esn` Ends With `8esn`"), - octest:ct_string("Unwind [`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As @usn5 Return *,[010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]][(:@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})..][Extract(#usn8 In $`5esn` Is Null Is Null Where 1000[0.0][Null])..] As `8esn`,`5esn` =~0Xa As usn1 Order By 0X0123456789ABCDEF Is Null Is Null Descending,Count ( * ) In 010 Descending,`5esn` In $999 Descending Limit .e0 Contains #usn7 Contains $#usn8"), - octest:ct_string("Unwind $usn1[1e1.._usn3][$@usn6..$#usn7] As usn1 With Distinct Count ( * ) Ends With 1000 Ends With 12 As _usn4,False[..12.e12] Skip {usn2:123456789 Starts With `2esn` Starts With 9e12} Ends With All(usn2 In 1000 Contains 0.e0 Where 01234567[Null..0.e0][Count(*)..$#usn8]) Where 0 Is Null Is Null Delete `2esn`[_usn3..$``],#usn8 Starts With 0x0 Starts With $@usn5"), - octest:ct_string("Remove {`1esn`:`7esn`[Null..][@usn5..]}.`7esn`! Create (({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) Remove `4esn`:`3esn`:`1esn`"), - octest:ct_string("Create ``=(:``{#usn8:$`2esn`[..`2esn`]}),`6esn`=((`3esn` :#usn8)) Remove {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`}.`6esn`!,Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where True Contains @usn6|123456789 Starts With `2esn` Starts With 9e12).usn2?,Extract(usn1 In 0x0[..`4esn`] Where 12.e12 Contains `5esn`|$123456789 Contains 01 Contains 0.12).``! Union All Optional Match #usn8=((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(#usn7 :`3esn`:`1esn`)<-[?{`4esn`:12e12[$`5esn`][07]}]-(:`1esn`{_usn4:$_usn3[Null]})) Where 12 =~usn1 =~.e12 Union All Merge ((:#usn8)<-[`2esn`?]-(:usn2:@usn6{_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})<-[`5esn`? *999..{#usn7:0X7[12]}]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})) On Create Set `4esn` =.e12[.12..][_usn4..] On Create Set #usn7+=$123456789[0.0..] Detach Delete {`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)],({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) In None(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn8 Ends With `4esn` Ends With $`4esn`) In Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])"), - octest:ct_string("Return *,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7,@usn6 Starts With `7esn` Starts With Null Skip Count ( * )[..usn1][..12.e12] Limit (`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Union Merge (((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) On Match Set (`4esn` :`6esn`:`7esn`)-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(`5esn` {@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}).#usn8 =False In 123456789 In $0,Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])._usn4! =9e1[010..] Unwind 01 In _usn3 In 12 As `3esn` Detach Delete [0.12 Contains $`2esn` Contains $_usn4,01 Ends With .e0] Starts With [usn1 In $123456789 Contains usn2 Where usn1[..@usn5][...e0]] Starts With All(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`) Union All With Distinct 0[usn2..],0Xa[#usn7] As `4esn`,9e1 Starts With `1esn` Starts With 0Xa As usn2 Order By [#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|@usn6 Starts With `7esn` Starts With Null] Is Not Null Is Not Null Descending,0.12 =~9e0 Desc,7 =~9e0 =~'s_str' Descending Where 12.e12[$1000..] Match `1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]}))"), - octest:ct_string("Merge `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) On Create Set `4esn` =010 In `7esn`,usn2+=0.e0[@usn6][0x0] Optional Match ((`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})<-[?{`8esn`:_usn3 Ends With 0x0 Ends With 01234567,#usn8:$`7esn` Is Null Is Null}]->(:``{#usn8:$`2esn`[..`2esn`]})<-[@usn5:#usn7|:_usn4]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})),_usn3=(`6esn` :`7esn`)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]}) Where @usn6[`3esn`..][$7..] Optional Match `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) Where usn1 In 1000 In $`5esn`"), - octest:ct_string("With Distinct *,01234567 Is Null Is Null Order By `3esn`(Distinct 0.0[999..])[Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..[010 =~$usn2 =~1e1,`1esn`[@usn6..$123456789]]] Asc,All(_usn4 In usn1 Contains False Contains `` Where $`4esn`[$`2esn`..])[..Single(usn1 In $123456789 Contains usn2 Where $usn1[0.12..]['s_str'..])][..``(Distinct `1esn`[0e0..])] Ascending,0X7[.e12..01234567] Descending Skip [999[.e12][01],999 In 9e1 In 7,0xabc Contains Null Contains 9e12][All(`6esn` In 0X7 =~`` Where 0.12[Null..])..[`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]]][count(010 Contains Count(*))..(:`4esn`:#usn8)-[:#usn8 *..0X7]->({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6)] Optional Match `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})),((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`1esn`{`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654}]->(`7esn` :`7esn`)) Detach Delete 999 In 12 In \"d_str\",$`5esn` Contains Count(*) Contains #usn7"), - octest:ct_string("Remove None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12).#usn8 Union All Optional Match `5esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``),`4esn`=(:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8) Where 07[12][$`6esn`] Unwind ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]}) =~`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0) As `3esn`"), - octest:ct_string("Unwind None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] As `8esn` Union Return 0 =~12.e12 =~$``,@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn` Order By $`7esn` Starts With 07 Ascending Merge (usn1 {`4esn`:$123456789[0.0..],`2esn`:12 Ends With 01234567})<-[usn1? *..0X7]-(usn1 :`4esn`:#usn8)-[ *010{@usn5:Null Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Match Set [0X7 =~.0 =~\"d_str\",9e1[...e0]].@usn5 =Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}),{@usn6:usn1 In 1000 In $`5esn`,@usn6:9e0[``][123.654]}.`3esn`! =$999 In $`8esn` In `5esn` On Match Set `6esn` =7[..0X7][..'s_str'],[$`5esn` Contains $@usn6].`1esn` =1e1[@usn5..],Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 07 In 0 In 's_str').@usn5? =True Is Not Null Union All Unwind 123456789 =~Filter(usn2 In 1000 Contains 0.e0 Where 0X7[0e0..]) =~{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999} As `4esn` Return *,{_usn4:$123456789 Is Not Null Is Not Null} As `5esn`,None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] As _usn3 Order By $_usn4[$`1esn`] Asc,$7 Ends With `5esn` Descending Limit .e1 Ends With _usn4 Ends With @usn5 Merge (`7esn` {_usn3:usn1 Contains $``})<-[usn1]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12}) On Create Set `4esn` =.e12[.12..][_usn4..] On Match Set @usn5+=`` In `6esn`,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`` Is Null Is Null).`` =12.e12 Is Not Null"), - octest:ct_string("Create (({#usn8:12.0[..$7][..999],@usn5:$`1esn` Is Null})<-[``?:`1esn` *0xabc{`5esn`:$``[_usn4..][`7esn`..]}]->(#usn7 :@usn6:`7esn`{_usn3:\"d_str\" =~`3esn` =~0Xa})) Unwind [@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] As `3esn` Union All Create `8esn`=(`4esn` {`3esn`:0X7[..12e12],`8esn`:False In 123456789 In $0})-[`4esn`?:`1esn`]->(:`2esn`:`3esn`{usn2:$`5esn` In False})<-[#usn7? *00..]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]}),`7esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})) Return Distinct *,1.e1[Null][12.e12] As ``,Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) As _usn3 Order By 0.e0[`6esn`...e0][9e12...e12] Descending,_usn3 In .e1 In $12 Asc Skip [$`4esn`[9e1..][0..]][Any(`4esn` In $`8esn` Starts With 1000 Where 0.e0[9e1..][0.0..])..Single(#usn8 In $`5esn` Is Null Is Null Where 1000 Ends With 1000 Ends With $`4esn`)] Limit 123456789 =~_usn4 =~$0 Return Distinct $@usn5 =~$`` =~$usn2 As @usn6,usn1 Is Not Null Is Not Null,01 In 01 In 12 Order By Extract(usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`) Contains [0 Contains 12e12,0xabc Ends With $7 Ends With $`2esn`,0x0 =~_usn4] Ascending,07[1e1] Ascending Limit $`8esn` Starts With 1000"), - octest:ct_string("Unwind $usn2[$123456789..123.654][$`5esn`..'s_str'] As #usn8 Union With Distinct 's_str'[.12..$#usn7][$999..`2esn`] As `5esn` Limit $_usn3[..Count ( * )][..@usn5] Where @usn5 Ends With $`3esn` Ends With 12e12 With *,.e12 Starts With True As _usn4,$1000 In $`7esn` In $7 Skip [$1000 =~$`7esn`,.12 Starts With @usn5 Starts With $#usn8,0x0[...e12][..@usn5]] Ends With Single(@usn5 In .12[#usn7][$`8esn`]) Limit Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]|$0 =~$usn1 =~9e1)[{``:\"d_str\",`1esn`:$1000 =~$`7esn`}] Union Merge `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) On Create Set `5esn` =999[.e12][01],Extract(usn1 In 0x0[..`4esn`] Where @usn6[$`3esn`]).#usn8? =`1esn` In 999 In $#usn7,usn1 =12.e12[0e0..7] On Match Set `1esn`+=Null[0e0][12],Filter(usn1 In 0x0[..`4esn`] Where $`` Ends With 12e12).usn1! =Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] Merge ({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})-[#usn7:`1esn` *07..]->(:`7esn`{``:$`1esn` Starts With @usn6})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) On Match Set [`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|`` Contains 12 Contains True].`2esn`? =$@usn6[..$#usn7][..12.e12],None(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12).`8esn`! =12[..9e0][..999] Match `1esn`=(_usn3 :`4esn`:#usn8{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})"), - octest:ct_string("Create #usn7=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),@usn5=(((_usn3 :_usn3{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[#usn8:`3esn`|:`4esn` *0..010]-(:usn1{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]})))"), - octest:ct_string("Unwind ``[Count(*)..][@usn5..] As usn1 Detach Delete {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}[..[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]]] Union All Remove (`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[? *0..010]-(#usn8 :`4esn`:#usn8).`6esn`!,[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null].`5esn`? Remove Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where .e12[..0.e0][..$`1esn`]).`5esn`!,Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`).`5esn`? Remove {`6esn`:9e1 Contains $`3esn` Contains 01234567}.`2esn`"), - octest:ct_string("Unwind $`` Is Null Is Null As #usn8 Union Detach Delete Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`)[Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01)..][{`1esn`:@usn6[`5esn`..$`3esn`],_usn3:$999 Ends With $`3esn` Ends With `8esn`}..],All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..] Match (`6esn` :`5esn`)<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6),_usn3=(($999)) Where 0X7 =~`` Return 0X7 In $@usn5 In 9e0,$`1esn`[9e1.._usn4][$999..$`2esn`] Skip $`5esn` In `2esn` In .0 Limit .0 Is Null Is Null Union All With Distinct *,`7esn` In 999 In @usn6,00 Is Null Is Null Order By None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`)[`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)..] Desc,$`3esn` In $12 In 's_str' Asc Skip $123456789 Is Null Is Null Limit .e0 =~`5esn`"), - octest:ct_string("Create usn1=((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)),(:usn1) Detach Delete $`6esn` =~Null =~9e12 Delete Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]},0.12 Is Null Is Null Union Merge `8esn`=((`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) On Match Set Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0Xa Is Not Null Is Not Null)._usn3? =Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}),#usn7+=$`7esn` =~.e1,Filter(`4esn` In 's_str'[12..'s_str'] Where $123456789 Contains 01 Contains 0.12).#usn8! =.12[`1esn`..] On Create Set #usn8+=12[0X7..@usn6],{``:12e12[$`5esn`][07],_usn3:$`6esn` Is Null Is Null}.usn1 =$`6esn` Is Not Null Is Not Null Optional Match `1esn`=(((`` :@usn5)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn5:`8esn`|:usn1]-(#usn7 :`5esn`))),usn1=(_usn4 :`8esn`{`3esn`:False[.e1..Null],`3esn`:9e0 =~$`5esn`}) Where 9e1 Is Null Is Null Merge ((({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[usn2?]-(`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))) On Match Set `2esn` =$usn2[False..`7esn`][`7esn`.._usn3],``+=_usn4 Ends With 01 Ends With $`1esn`,``+=01 Ends With .e0 On Match Set `7esn` ={`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)],@usn6 =`5esn` In $999 Union All With [@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] As `3esn`,`` =~12 =~$#usn7,False Is Not Null Is Not Null As `2esn` Skip 999[$usn2..] Limit 00 In 0.12 In `5esn` Where $7[.12] Merge #usn8=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})))"), - octest:ct_string("Create (({``:12 Is Null Is Null})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)})),#usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})) Remove (`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(`4esn` :#usn7).@usn5?,All(`4esn` In `6esn`['s_str'..][010..] Where \"d_str\" =~`6esn` =~0Xa).``!,(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}).usn1! With Distinct `2esn` Contains $999 As #usn7,$123456789[False.._usn3] As `1esn` Order By (usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Ends With [$`8esn` =~$usn2,0X0123456789ABCDEF[..usn1],`` In `6esn`] Descending Skip 0X7[..12e12] Union All With Distinct 010 Starts With `7esn` Starts With 9e1,False[.e1..Null] As `2esn` Order By {`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]} Ends With (usn1 :_usn3)<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})-[ *..0x0]->(:`7esn`{@usn6:0.0[999..],#usn8:Null Is Null Is Null}) Asc Skip [@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Where .e12[..0.e0][..$`1esn`] Union Unwind 07[..010][..12.0] As `3esn` Return Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] As usn1,@usn5[_usn4..][.e0..] As usn1 Limit $`1esn` Is Null"), - octest:ct_string("Unwind $`3esn`[@usn5..$123456789] As `2esn` Unwind $`` Is Null Is Null As `7esn` Return *,0.12[Count(*)..],$@usn5 =~$`` =~$usn2 As #usn8 Union Merge _usn3=((_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})) On Match Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] On Create Set None(`4esn` In 's_str'[12..'s_str'] Where @usn5 In 0X0123456789ABCDEF).`2esn`! =$`1esn` Is Null,`5esn`()._usn4! =[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00],`8esn` =`7esn` Contains .0 Contains 9e12 Union All Unwind 0 Starts With `6esn` Starts With 0X0123456789ABCDEF As @usn6 Return *,01234567 Is Null Is Null Order By {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}[..[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]]] Ascending Skip 010 =~$usn2 =~1e1"), - octest:ct_string("Unwind $`1esn` =~$`1esn` =~#usn7 As `4esn` Unwind 010 In @usn5 In `5esn` As #usn7 Merge _usn3=(((:@usn5{#usn7:1e1[@usn5..]})-[:#usn8 *..0X7]->($12)-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})))"), - octest:ct_string("Create @usn6=((:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})-[?:`4esn`|:`7esn`]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})),#usn7=(@usn5 {usn2:$999[12.0..]})<-[usn1]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[_usn3?:``|:_usn4]->(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})"), - octest:ct_string("Unwind `2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As `4esn` Return Distinct *,01234567 Is Null Is Null Order By 0e0 =~Count(*) =~0Xa Descending Skip [$1000 Is Null Is Null] Is Null Limit Extract(@usn6 In @usn5 In $`6esn` Where $`5esn` Contains $@usn6|$0[7..][Null..])[[`6esn` In 0X7 =~`` Where 9e1[0.e0..][#usn8..]]]"), - octest:ct_string("Create (@usn5 {_usn4:_usn3 Ends With 0x0 Ends With 01234567}) Union All With Distinct 0['s_str'][Null] As #usn7,{`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])] As `3esn`,Null Starts With _usn4 Starts With `6esn` As _usn3 Order By $`1esn`[$_usn3..][9e1..] Asc,$`2esn` Starts With .e0 Starts With 12.0 Descending,999 Contains `7esn` Ascending Limit 9e1 =~.0 =~$`1esn` Union Remove [$`5esn`[False],9e1 Contains $`3esn` Contains 01234567,`5esn`[Count ( * )..][\"d_str\"..]].@usn5!,`3esn`:_usn4:usn1,[usn1 In 00 Starts With _usn3].#usn8? Return Distinct *,$@usn6[..$usn1] As _usn3 Order By {``:12e12[$`5esn`][07],_usn3:$`6esn` Is Null Is Null} Ends With [0 Is Not Null Is Not Null] Descending,Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Desc,.12 Ends With `1esn` Ends With $`1esn` Asc Limit `7esn` Starts With $`` Starts With $#usn7 Merge ((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8))"), - octest:ct_string("Create `8esn`=((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`).``? Remove All(@usn6 In @usn5 In $`6esn` Where $@usn5 In 12e12 In Count(*)).#usn8?,[`4esn` In 's_str'[12..'s_str']].#usn7!"), - octest:ct_string("Create (((_usn3 {usn1:_usn3 Contains @usn6 Contains 1.e1})-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 {#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7})<-[_usn3:``|:_usn4 *999..]->(`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`}))) Optional Match @usn5=((:#usn8$usn1)-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})),((#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})) Union All With Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As `1esn`,0.e0[..#usn8][..Null] Order By 07 Ends With 07 Asc,12.e12[$`7esn`] Desc Limit {usn1:'s_str'[12..'s_str'],#usn7:07[`6esn`..][`5esn`..]} Return $`5esn` In `2esn` In $12 As `3esn` Order By [@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0] Is Null Descending,.e1 Starts With $`8esn` Descending,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] Asc Skip $@usn5 Unwind Extract(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0|$_usn4[`3esn`][0]) Is Null Is Null As `` Union All With $`7esn` Is Null Is Null,0Xa[#usn7] As `4esn` Order By $`5esn` Is Null Is Null Ascending,`` Asc,usn2 Starts With `6esn` Starts With 12e12 Desc Limit 9e1[$@usn6..] Optional Match ((:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]})),`6esn`=((#usn7 {`2esn`:$@usn6[..$usn1],usn2:12 Ends With 01 Ends With 1e1})) Remove `3esn`:#usn7,None(`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]).#usn8?"), - octest:ct_string("Create (`1esn` :`1esn`) Return Distinct Null Is Null Is Null As `6esn`,$#usn8[1e1][9e1] As @usn5,[@usn5 In .12[#usn7][$`8esn`] Where $_usn4[12e12][`4esn`]][`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])..``(False In `3esn`)][[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]]..Filter(@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12])] Order By `2esn` Contains $999 Asc Skip $@usn6 =~$#usn8 =~$#usn7 Limit 12.0[({#usn8:12.0[..$7][..999],@usn5:$`1esn` Is Null})-[#usn7:`1esn` *07..]->(#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})..`4esn`(Distinct $`` Ends With 12e12)] Unwind $usn1[1e1.._usn3][$@usn6..$#usn7] As usn1 Union All Create @usn6=(`` :#usn7)<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})<-[`5esn`?:`6esn`]->(`6esn` :`6esn`:`7esn`{_usn4:\"d_str\"}),`6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union All Unwind All(usn1 In 0x0[..`4esn`] Where 07 In $7 In 12) =~Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 999[$`6esn`]|$`8esn` In \"d_str\" In 9e12) As #usn7 Unwind Single(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`) Is Null As `2esn` Optional Match `4esn`=(:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) Where $usn2[..12.0]"), - octest:ct_string("Remove {`5esn`:0e0 =~_usn4}.usn1?,[usn1 In 00 Starts With _usn3 Where False[.e1..Null]].`4esn`? With *,0 Is Not Null Order By 07[`6esn`..][`5esn`..] Desc,_usn3[`3esn`][False] Ascending,Extract(usn2 In 1000 Contains 0.e0) Ends With Single(usn1 In 0x0[..`4esn`] Where 12.e12 Contains `5esn`) Ends With Single(usn1 In 00 Starts With _usn3 Where $0[01234567..00][$`2esn`..$@usn6]) Desc Where $#usn7 In .e1 In 01 Union All Create (`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})-[`1esn`:usn2|#usn8 *1000..]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`),`4esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Delete (`6esn` {@usn6:9e0 Contains `8esn`})<-[`5esn`:usn1|`3esn` *010{`2esn`:`6esn` =~01234567 =~0Xa}]-(usn2 {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789})<-[ *00..{`3esn`:12 Ends With 01234567,`4esn`:00[``..][$`4esn`..]}]->(`2esn` :``)[[999[``..][Null..],usn1 In 1000 In $`5esn`,`5esn`[.e1][0Xa]]] Create ((_usn4 {`8esn`:9e1 In 01 In 999}))"), - octest:ct_string("Match `7esn`=(@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}),@usn6=({_usn3:12.e12 In $0 In Count(*)})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}) Where 1e1 In 9e0 In 9e0 Create (({#usn8:12.0[..$7][..999],@usn5:$`1esn` Is Null})<-[``?:`1esn` *0xabc{`5esn`:$``[_usn4..][`7esn`..]}]->(#usn7 :@usn6:`7esn`{_usn3:\"d_str\" =~`3esn` =~0Xa})) Union Delete (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]),[usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..],{_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] Create #usn8=(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}) Return Distinct *,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}) Skip ({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}) =~None(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Union Create `6esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Return Distinct .12[#usn7][$`8esn`],12 Ends With 07 Ends With @usn6 As usn1 Order By $999[..`1esn`] Ascending,Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending,[$`8esn` =~$usn2][Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..] Asc Remove ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`5esn`? *010]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null}).`7esn`!"), - octest:ct_string("Delete {`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}[[`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]]][Count ( * )],[$1000 Is Null Is Null] Is Null Merge ((_usn4 {`8esn`:9e1 In 01 In 999})) Union Merge ((:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})) On Match Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..] Optional Match #usn8=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),((#usn7 :_usn3)<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]})-[#usn7:_usn3|:`4esn`]-(:#usn7{usn1:$123456789[..0.12][..#usn7]})) Optional Match (`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}),(:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}) Where Null[01234567][01234567] Union All Merge `1esn`=((({`6esn`:$`8esn`[..$``]})-[`2esn`]-(@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12}))) On Match Set #usn7 =(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`) Is Not Null Is Not Null,`1esn` =`` =~12 =~$#usn7,[123456789[$#usn7..],_usn4[0xabc..],$`3esn` Starts With 01234567 Starts With $1000].`1esn`! =0X0123456789ABCDEF Starts With `2esn` Starts With $999 Remove Any(#usn7 In 01234567[$`3esn`..] Where 0Xa[0xabc..$#usn8])._usn4! Optional Match (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5)))"), - octest:ct_string("Create `1esn`=(((usn1 :`4esn`:#usn8)-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}))),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`)<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)) Remove ({`5esn`:9e1 Starts With _usn3 Starts With `4esn`})<-[@usn5?:``|:_usn4]-({`5esn`:123456789 Starts With `2esn` Starts With .0}).#usn7 Delete $`1esn` Is Null Is Null,_usn4 Starts With 0X7"), - octest:ct_string("Optional Match ((:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})),_usn4=(({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})<-[#usn7]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn4:usn1)) Where _usn4 Ends With 01 Ends With $`1esn` Union All Merge usn2=((`3esn` :`4esn`:#usn8)<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})) On Match Set #usn7 =Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]} On Create Set `1esn` =Null[0.e0..0x0] Optional Match ({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}),(usn2 :`2esn`:`3esn`)-[`7esn`?]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) Where 0Xa Is Null Is Null Delete 1000 Contains 123456789 Contains 1e1,(`6esn` :`3esn`:`1esn`{_usn3:1e1[.e1..],`1esn`:$#usn8})-[`4esn`:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]-(`5esn` :#usn7)-[ *..0X7]->(`5esn` :_usn4:usn1) Starts With None(@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2) Starts With [.0 =~$#usn8 =~.0,0e0 Is Not Null Is Not Null,_usn3[.0]],0e0 Union Merge _usn3=((#usn7 :``)<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]})<-[? *12..0xabc]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})) On Create Set `6esn` =7[..0X7][..'s_str'],[$`5esn` Contains $@usn6].`1esn` =1e1[@usn5..],Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 07 In 0 In 's_str').@usn5? =True Is Not Null On Create Set usn2 =_usn3 Is Not Null Is Not Null,`4esn` =.e1 Starts With $`8esn`"), - octest:ct_string("With Distinct *,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] As `8esn`,123456789 Starts With `2esn` Starts With 9e12 As `3esn` Skip Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) Limit `6esn` Starts With $@usn6 Where 12[0X7..@usn6]"), - octest:ct_string("With Distinct 0X7 In $@usn5 In 9e0,$`1esn`[9e1.._usn4][$999..$`2esn`] Skip $`5esn` In `2esn` In .0 Limit .0 Is Null Is Null Return Distinct 01234567[$@usn6..0X7][$`1esn`..123.654] As `6esn`,Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789},{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[{`4esn`:$7 Ends With 12.0 Ends With 0xabc,_usn4:0X0123456789ABCDEF[.e0..$`4esn`]}..][Extract(`4esn` In `6esn`['s_str'..][010..] Where $999 Ends With $`3esn` Ends With `8esn`)..] Skip {#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null Limit 12.0 Contains 9e0 Contains $`7esn` Return *,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] Order By 0.0 Is Null Is Null Ascending,$usn2[0e0..] Descending,'s_str'[..0.0][..$`4esn`] Ascending Skip $`2esn`[``..] Limit `3esn` =~`3esn` =~$`6esn` Union All Remove Filter(`4esn` In `6esn`[1e1..] Where 12.0[``]).#usn8!,{`8esn`:usn2 Is Null Is Null,#usn8:True =~@usn5 =~$`1esn`}.usn2!"), - octest:ct_string("Merge @usn6=({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567}) On Match Set #usn7 =Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]} Union Remove [$`2esn` =~'s_str',12 Ends With 01234567,$1000 Is Null Is Null].`3esn`?,[12.e12[...0][..0x0]]._usn4,(`1esn` :`8esn`)<-[#usn7:`3esn`|:`4esn` *00..]->(`4esn` :`8esn`)-[`4esn`? *0Xa]-(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}).`3esn`? With Distinct [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending,9e12 Asc Skip 0X7[.e12..01234567] Limit $_usn4[0.12..$`6esn`][00..$@usn6] Match `4esn`=(({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})) Union Create ((`7esn` :`2esn`:`3esn`{@usn6:9e0 Ends With $`7esn`})),``=((`3esn` ))"), - octest:ct_string("Delete `7esn`($123456789 In Count(*) In .e1) Ends With Extract(@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|Count ( * )) Ends With Any(usn1 In 0x0[..`4esn`] Where False[.e1..Null]),usn2 Starts With `6esn` Starts With 12e12 Merge `1esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) On Create Set Extract(`4esn` In `6esn`['s_str'..][010..] Where 01 Ends With .e0|00[7..$123456789]).usn1? =usn2[`3esn`][_usn3],usn2+=[usn1[..@usn5][...e0]] In Extract(`6esn` In 0X7 =~`` Where $1000 Contains $`3esn`|12 Ends With 01234567) In {`3esn`:$`5esn` In `2esn` In .0,``:0e0 Is Null Is Null} On Create Set usn1+=`4esn` Ends With 123456789 Ends With @usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`! =\"d_str\" =~`3esn` =~0Xa,Any(_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0)._usn3 =`` =~12 =~$#usn7 Merge usn1=(({``:12 Is Null Is Null})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)}))"), - octest:ct_string("Create `6esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})),(((`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`5esn`)<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 ))) Return *,123456789 Starts With #usn7 Starts With `6esn` Order By 's_str' Is Not Null Is Not Null Asc,_usn3 Ends With 0x0 Ends With 01234567 Ascending Skip Filter(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null) Ends With [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1] Ends With _usn3(Distinct $123456789 Ends With $`6esn`) Remove {@usn5:7[..12e12][..$`6esn`]}.usn1,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]|9e0 Starts With `6esn`].#usn8?,9e12.usn1"), - octest:ct_string("Remove (`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[? *0..010]-(#usn8 :`4esn`:#usn8).`6esn`!,[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null].`5esn`? Remove Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where .e12[..0.e0][..$`1esn`]).`5esn`!,Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`).`5esn`? Remove {`6esn`:9e1 Contains $`3esn` Contains 01234567}.`2esn` Union Unwind 9e12 As `7esn` Unwind 12.e12 Contains $`5esn` As #usn7 Remove {`6esn`:$`8esn`[``..][123.654..],``:999[$`6esn`]}.``,[0X7[..12e12],$`6esn`[$`1esn`][1000]].usn2?"), - octest:ct_string("Return $usn2[12..$`7esn`][$0..$`7esn`],0x0 Contains _usn4 Contains 123456789 As `7esn`,9e12 Ends With 0X0123456789ABCDEF Ends With #usn7 As `5esn` Order By 01234567 Ends With 12.0 Ends With 0X7 Ascending,12e12 Ends With 010 Ends With .0 Asc Limit count(Distinct 's_str' Starts With 1000 Starts With #usn8,12e12 Starts With $123456789 Starts With 12.0)[[_usn4 In usn1 Contains False Contains `` Where $#usn8]][[$`1esn` Is Null,\"d_str\" =~`6esn` =~0Xa,$usn2[0e0..]]] With 7[$`4esn`..123456789] As `2esn` Limit 1000 Ends With 1000 Ends With $`4esn` Where $usn2[..12.0] Detach Delete $123456789 =~$0 =~$`3esn`,$0 Contains `7esn` Contains $`8esn`,9e0[False] Union All Merge (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Merge ((`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) Remove Single(`4esn` In $`8esn` Starts With 1000 Where `6esn`['s_str'..][010..]).@usn5,(usn2 :`3esn`:`1esn`)-[ *..7]-(usn1 :`4esn`:#usn8)-[?:`3esn`|:`4esn`]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`3esn`,(:`1esn`{_usn4:$_usn3[Null]})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]-(`2esn` :#usn7)-[:usn2|#usn8 *01234567..12]-(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})._usn3 Union All Create #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`)"), - octest:ct_string("Optional Match ((`5esn` :#usn7)<-[?:usn2|#usn8 *1000..]->(@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})),`2esn`=((:@usn5{#usn7:1e1[@usn5..]})<-[? *0..010]-({@usn6:$123456789 Is Null Is Null,@usn6:`6esn`[1.e1..$#usn7][.e0..True]})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]})) Where False In 123456789 In $0 Merge usn1=(`3esn` :``) On Match Set All(`6esn` In 0X7 =~`` Where 0X7[..12e12])._usn4 =Null Starts With $`7esn` Starts With `2esn`,`5esn`+=999 Contains Count ( * ) Contains 123.654,usn1+=usn1[$`3esn`..$999][True..False] Union With Distinct 12.e12 In $0 In Count(*) As `` Optional Match @usn6=((:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})-[?:`4esn`|:`7esn`]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})),#usn7=(@usn5 {usn2:$999[12.0..]})<-[usn1]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[_usn3?:``|:_usn4]->(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}) With Distinct `5esn` In $999 As `6esn` Order By [_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]][[.0 Starts With `2esn` Starts With `6esn`,9e1[0.e0..][#usn8..]]..][[07[$999],9e0 In 01234567,@usn5 In 0X0123456789ABCDEF]..] Asc,False Ends With $`8esn` Asc Where _usn4[$`4esn`..]"), - octest:ct_string("With Distinct $`7esn` Is Null Is Null,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])],`7esn` Contains .0 Contains 9e12 As #usn8 Order By count(Distinct 's_str' Starts With 1000 Starts With #usn8,12e12 Starts With $123456789 Starts With 12.0)[[_usn4 In usn1 Contains False Contains `` Where $#usn8]][[$`1esn` Is Null,\"d_str\" =~`6esn` =~0Xa,$usn2[0e0..]]] Desc Skip 123.654 Starts With usn1 Starts With @usn5 Limit $123456789[$``][010] Union Optional Match `7esn`=(`2esn` )<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}),`1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Where Null[01234567][01234567]"), - octest:ct_string("Create `3esn`=((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})),(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}) Optional Match `5esn`=(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})<-[?:`7esn`|`2esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}]->(usn1 :#usn8))),#usn8=(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Where 0 Contains 12e12 Union Unwind usn1 Starts With $#usn7 Starts With `5esn` As `3esn` Detach Delete 0x0[0X7..][usn1..] Union With Distinct *,$_usn3 =~`7esn` =~$_usn4 As `` Skip Count ( * ) Ends With 1000 Ends With 12 Limit .e1[..$`4esn`][.._usn4] Where $`3esn` =~$`7esn` =~False Unwind .0 Starts With `2esn` Starts With `6esn` As `2esn`"), - octest:ct_string("Delete $`5esn` Contains $@usn6,123456789 Starts With #usn7 Starts With `6esn`,0.12 With $@usn5[#usn8..][$`1esn`..] As `7esn`,usn1 Contains False Contains `` As #usn8 Order By 0 =~$`8esn` =~0X7 Desc,False[..12.e12] Descending,07 Ascending Skip Count ( * ) =~Count(*) Unwind True Is Not Null Is Not Null As `8esn`"), - octest:ct_string("Remove Single(#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4).@usn6,[@usn6 In @usn5 In $`6esn` Where 12.0[0Xa][00]|0Xa Is Not Null Is Not Null].`4esn`! Union All Return Distinct *,01234567 Starts With $_usn4 As `1esn`,Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789} Order By [@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Ascending,0.0[Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|_usn3 Ends With 12e12 Ends With .e0)][None(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5)..{@usn6:.12 Starts With 0Xa}] Asc Limit 0x0 Is Not Null Is Not Null Create (`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0}) Return Distinct *,[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As `7esn` Order By 00 Is Null Is Null Descending,$usn2 Starts With $`6esn` Starts With 0xabc Ascending,123456789 Starts With #usn7 Starts With `6esn` Asc Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`) Limit 0x0 Contains _usn4 Contains 123456789"), - octest:ct_string("Remove [`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999]].`5esn`!,[$123456789[$`2esn`][True]].@usn6?,(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]})<-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]-(`1esn` :`4esn`:#usn8{_usn4:$_usn4[#usn8..]}).`3esn` Union Unwind 0.12 In $`4esn` In `6esn` As `5esn`"), - octest:ct_string("Remove ({@usn6:0X0123456789ABCDEF[..usn1]})<-[`4esn`:#usn8]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(#usn8 :`7esn`).`6esn`? Match `3esn`=(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}),usn2=((#usn8 :`4esn`:#usn8)-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)) Unwind 123.654[`5esn`] As @usn5 Union All Merge `6esn`=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) On Match Set `8esn` =All(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..]) Is Null Is Null,Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)._usn3? =\"d_str\"[Count ( * )] Remove [.12 Starts With .12 Starts With `3esn`,Count ( * )[Count ( * )..12e12][usn1..1000],False In `3esn`].#usn7,{usn1:$1000 Contains $`3esn`}.#usn8!,None(`4esn` In $`8esn` Starts With 1000 Where True Starts With $`8esn` Starts With \"d_str\").`4esn`! Union All Match ((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})),((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})) Where @usn6 Contains .e1 Contains $`4esn`"), - octest:ct_string("Remove [.12 Starts With .12 Starts With `3esn`,Count ( * )[Count ( * )..12e12][usn1..1000],False In `3esn`].#usn7,{usn1:$1000 Contains $`3esn`}.#usn8!,None(`4esn` In $`8esn` Starts With 1000 Where True Starts With $`8esn` Starts With \"d_str\").`4esn`! Return Distinct 01234567 As usn2 Order By Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`] Ascending Limit 12e12 Starts With $123456789 Starts With 12.0 Match ((`6esn` :`7esn`)),`4esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Where 9e0 =~$`5esn` Union All Remove {usn1:0e0 Is Not Null Is Not Null,@usn6:0X7[12]}.usn2,`8esn`(Distinct 0X0123456789ABCDEF[..usn1]).usn1!,{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}.#usn8 Return Distinct 0Xa Is Not Null Is Not Null As `1esn`,(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})[..Filter(#usn8 In $`5esn` Is Null Is Null Where 0Xa Is Null Is Null)][..(`7esn` {@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})] As usn1 Skip False[`6esn`][07] Limit [usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]] Starts With (`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` ) Starts With (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8)"), - octest:ct_string("Create ((:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})),({`5esn`:123456789 Starts With `2esn` Starts With .0})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})<-[`` *12..0xabc]->(`3esn` :_usn4:usn1) Create #usn7=((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 )),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) Union Merge (#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}) On Create Set `2esn` ={`4esn`:0X7 =~.0 =~\"d_str\",_usn4:00 Ends With $_usn4 Ends With $`2esn`} Ends With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Ends With [$`3esn`[@usn5..$123456789],00,'s_str'[.12..$#usn7][$999..`2esn`]],#usn8 =`3esn`[$123456789][$#usn7]"), - octest:ct_string("Unwind [_usn4 Ends With 01 Ends With $`1esn`,0e0 =~_usn4,$7[.12]][Any(`4esn` In 's_str'[12..'s_str'] Where $1000 In $`7esn` In $7)..Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0x0[..`4esn`])] As `3esn` Optional Match (`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}),(:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}) Where Null[01234567][01234567] Optional Match ``=((`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(usn1 :_usn3)),(((`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`5esn`)<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 ))) Union All Delete {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7),None(usn2 In 1000 Contains 0.e0 Where $usn1[..$`6esn`][..Null]) Starts With Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]|$`1esn` Starts With $999),123456789[$#usn7..] With Distinct {usn1:'s_str'[12..'s_str'],#usn7:07[`6esn`..][`5esn`..]} As `1esn` Limit {`7esn`:.e0 Contains #usn7 Contains $#usn8}[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..None(`6esn` In 0X7 =~`` Where 12.e12['s_str'])][(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})..({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})]"), - octest:ct_string("Return Distinct 1000 Contains $#usn7 Contains `6esn` Order By (`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})[Single(`4esn` In 's_str'[12..'s_str'])..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)] Desc,usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Desc,Count ( * ) Contains 999 Contains $`8esn` Asc Merge `7esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})) On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Merge `6esn`=((`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})) On Match Set Any(_usn4 In usn1 Contains False Contains `` Where $`4esn`[$`2esn`..]).usn2 =010 In @usn5 In `5esn` Union All Match `1esn`=(({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})),(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Where 12[..9e0][..999] Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.e12 Contains `5esn`|$_usn4[$`8esn`..][07..]).`2esn`!,Single(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0).@usn6,({`2esn`:usn1[..@usn5][...e0],`8esn`:\"d_str\"[Count ( * )]})<-[?*$999]-(`7esn` :``)-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`).`5esn`"), - octest:ct_string("Unwind @usn6 Contains _usn4 Contains $`4esn` As `4esn` Remove None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12).#usn8"), - octest:ct_string("Unwind Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) Ends With [1e1[@usn5..],$#usn8 Is Null,$0[$#usn8..01234567]] Ends With Extract(`6esn` In 0X7 =~`` Where 010 =~`6esn`) As usn2 With $`3esn` As usn1 Order By All(@usn5 In .12[#usn7][$`8esn`] Where $`5esn` Contains $@usn6) Is Null Is Null Ascending,\"d_str\" Contains `3esn` Contains 00 Desc Skip $_usn4[$`1esn`..][$0..] Limit True[0] Union All Merge ((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Merge `3esn`=((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) On Match Set `6esn` =$@usn5[Count ( * )] Union With Distinct 12.e12[$1000..],[_usn4 Ends With 01 Ends With $`1esn`,0e0 =~_usn4,$7[.12]][Any(`4esn` In 's_str'[12..'s_str'] Where $1000 In $`7esn` In $7)..Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0x0[..`4esn`])] As `2esn`,01 In 01 In 12 As #usn8 Order By `3esn` =~$`5esn` =~12 Ascending,`3esn` =~`3esn` =~$`6esn` Asc Limit {@usn6:`7esn` In 999 In @usn6} Starts With Extract(usn1 In 0x0[..`4esn`] Where 0x0|07 Ends With 07) Starts With Filter(usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12) Where True[0x0][@usn6] Unwind [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] As _usn3 Return Distinct *,0.12 In $`4esn` In `6esn`,`4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}] As `2esn` Skip 0X7[..12e12]"), - octest:ct_string("Detach Delete 1000 Ends With 1000 Ends With $`4esn`,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)],{_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]} Optional Match #usn7=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))),(((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]-({usn1:0x0[0X7..][usn1..]}))) Detach Delete .e12 Contains 9e0,$`2esn`[``..],Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) Union All Return Distinct *,All(usn1 In 0x0[..`4esn`] Where $0[$#usn8..01234567]) In [_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0|$`7esn` Is Not Null] In [.12 Ends With `1esn` Ends With $`1esn`,$usn2[False..`7esn`][`7esn`.._usn3],\"d_str\" Contains `3esn` Contains 00] Skip $`6esn`[$@usn6..] Limit 00 Starts With _usn3 Union Optional Match ((:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})),`1esn`=((@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) Where 0 Ends With $7 Ends With _usn3 Unwind `6esn`[..`5esn`] As #usn8"), - octest:ct_string("With Distinct $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Order By $12[01..][1.e1..] Descending Skip .12[.e12..0.e0][0.e0..$`2esn`] Union All Delete [`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..],$`2esn` =~'s_str' Union Detach Delete `` In `6esn`,@usn6 Contains .e1 Contains $`4esn`"), - octest:ct_string("Create (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Union Create `2esn`=((:#usn7{usn2:$`5esn`[$123456789][`1esn`]})) Return Distinct [`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As @usn6,usn1[$`3esn`..$999][True..False] As `3esn` Order By Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) Ends With [1e1[@usn5..],$#usn8 Is Null,$0[$#usn8..01234567]] Ends With Extract(`6esn` In 0X7 =~`` Where 010 =~`6esn`) Descending,12.0 Contains 0.e0 Desc Limit Count ( * )[`1esn`..$0][$1000..$`5esn`] Unwind `5esn`[`1esn`..`1esn`] As usn2 Union Merge (((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) On Create Set @usn6 =`3esn`[..7][..12e12] With *,Filter(usn1 In 00 Starts With _usn3 Where $_usn4[`3esn`][0])[..Extract(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12|0x0 =~_usn4)][..{_usn4:.12 =~.12 =~1e1,#usn7:.e1 Starts With 0.0 Starts With `6esn`}],12[12e12..@usn6] As `5esn` Order By {_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]} Ends With Extract(`4esn` In $`8esn` Starts With 1000 Where `6esn`['s_str'..][010..]|12.e12[@usn5..123.654]) Ends With [$`5esn` Is Not Null,0e0 Is Null Is Null] Ascending Skip $`1esn`[$_usn3..][9e1..] Limit (:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] Unwind _usn3 Contains @usn6 Contains 1.e1 As `2esn`"), - octest:ct_string("Merge `8esn`=(:`8esn`) On Match Set usn2+=.e1 Ends With _usn4 Ends With @usn5,@usn5+=_usn3 In .e1 In $12,Extract(`4esn` In `6esn`[1e1..] Where $`7esn` Ends With `1esn` Ends With True).`` =010 In @usn6 Return Distinct Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1),9e1[010..] As `6esn` Order By $1000 Contains $`3esn` Desc,(`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Ascending,[$`3esn` Starts With 01234567 Starts With $1000] Starts With `4esn` Starts With [$`2esn`[..7][..$usn1]] Desc Skip $`7esn` =~.e1 Union All Detach Delete 1e1[..#usn7][..#usn7]"), - octest:ct_string("Return Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])],123456789 Starts With _usn4 Starts With @usn6 Skip _usn3 Ends With 12e12 Ends With .e0 Remove Filter(`6esn` In 0X7 =~`` Where $0[$#usn8..01234567]).`5esn`?,{#usn7:False[`2esn`..#usn8]}.#usn7?,usn1($`1esn` =~$`1esn` =~#usn7).`1esn`? Optional Match (((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))) Union All Return 01 In 01 In 12 As #usn8,$`6esn`[$`1esn`][1000],[#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|@usn6 Starts With `7esn` Starts With Null] Is Not Null Is Not Null Order By 12.e12 Contains `5esn` Ascending,{#usn8:#usn7 Ends With 9e1} Is Not Null Is Not Null Ascending Limit 0.12 Contains $12 Contains `8esn` Detach Delete 123.654[12.e12..1e1],`6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null) With Distinct *,\"d_str\" Order By $`3esn` Descending,[0[usn2..],7[12e12..$_usn4][9e1..True],`1esn` Contains Count ( * )][Extract(@usn5 In .12[#usn7][$`8esn`] Where Count ( * ))..][Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])..] Desc,1e1[..#usn8][..'s_str'] Descending Skip @usn5 Is Not Null Is Not Null Union All Match (_usn4 :#usn8)<-[`6esn`? *..7{`3esn`:123456789[$#usn7..]}]-(:`2esn`:`3esn`{`7esn`:$_usn4[#usn8..]})-[usn1?:_usn3|:`4esn` *123456789..999{`6esn`:01 Ends With .e0,`4esn`:$`7esn` Is Not Null}]->(_usn3 ) Where _usn4 Starts With 0X7"), - octest:ct_string("Remove [07 In `5esn` In 12e12]._usn3? Create ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7}))"), - octest:ct_string("Merge #usn7=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) On Create Set usn2 =0.0[..12e12][..$0] Merge (_usn4 {@usn5:$_usn3[$`4esn`..Null]}) On Create Set @usn5(Distinct 12e12[_usn3..][$@usn5..],7 Contains 9e1).`6esn` =$@usn5 In 12e12 In Count(*) On Match Set _usn3:@usn5,Any(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null).#usn7 =All(`6esn` In 0X7 =~`` Where $1000[01234567]) In usn1(),`` =None(@usn5 In 0X7 =~.0 =~\"d_str\" Where _usn3[...e1])[[_usn4 In usn1 Contains False Contains `` Where 0.12 In $7 In 0]..][[7[..12e12][..$`6esn`]]..] Detach Delete $`1esn` Ends With $`1esn` Union Optional Match (_usn4 :`4esn`:#usn8{@usn5:$_usn4[12e12][`4esn`],`4esn`:False In `3esn`})-[`6esn`:``|:_usn4 *..01]->(`5esn` :#usn7) Where $1000[01234567] Unwind Count(*) Is Null As `2esn`"), - octest:ct_string("Return *,0.12[Count(*)..],$@usn5 =~$`` =~$usn2 As #usn8 Return *,01234567 Starts With $_usn4 As `1esn` Union Create ((`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})),_usn4=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})) With Distinct $`2esn` Starts With .e0 Starts With 12.0 Order By ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] Ascending,0e0 =~Count(*) =~0Xa Descending,{`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])] Asc With Distinct *,$usn1 In 1000 In $#usn7 As `8esn`,$@usn6 =~$#usn8 =~$#usn7 As `2esn` Order By 0Xa[0xabc..$#usn8] Desc Skip `1esn`[`3esn`..][$@usn6..] Where usn2[$`7esn`..010][00..``] Union All Create ``=(:``{#usn8:$`2esn`[..`2esn`]}),@usn5=((:@usn6:`7esn`{@usn6:12.0[``],_usn4:$`3esn` Contains 0X0123456789ABCDEF Contains 00})) Create @usn5=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) Delete [$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..],123456789 Starts With `2esn` Starts With 9e12,[Count(*)['s_str'..`1esn`],$_usn3[`2esn`][01234567]] Ends With All(@usn5 In .12[#usn7][$`8esn`] Where 0X7[.e12..01234567]) Ends With Filter(_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01])"), - octest:ct_string("With Distinct 0x0 In `8esn` In 999,``[$`3esn`][$`2esn`],01234567 Ends With 12.0 Ends With 0X7 Order By Count ( * )[..usn1][..12.e12] Asc,$usn2 Is Not Null Is Not Null Descending Skip `3esn`(Distinct $_usn3[Null],12[..True][..$`4esn`]) Is Null Is Null Where 1000 Contains 0.e0 Merge usn1=((:_usn4:usn1{#usn8:$`7esn` Ends With `1esn` Ends With True})-[`7esn`?:usn1|`3esn` *123456789..999{`5esn`:.e1 In $@usn6 In 999}]-(usn2 :#usn8{`3esn`:123.654[@usn5]}))"), - octest:ct_string("Detach Delete {`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}[[`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]]][Count ( * )] Unwind $@usn6 Is Null As `` Merge `3esn`=(((:_usn4:usn1{usn2:$`5esn` In False})<-[?:@usn5|`8esn` *..0X7]->(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}))) On Create Set [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]].`1esn` =9e12 =~01 =~$`7esn` On Create Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$`` Union All Create `4esn`=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})),(`7esn` :_usn4:usn1)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})-[`1esn`{`2esn`:.12 Starts With @usn5 Starts With $#usn8}]->(:usn1{`6esn`:1000 Contains 0.e0,`7esn`:$@usn6[..$#usn7][..12.e12]}) Create @usn5=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) Remove ``(9e0 Contains `8esn`).`1esn`,[$`1esn` Is Null Is Null,010 Contains 0X0123456789ABCDEF,9e1[0.e0..][#usn8..]].`` Union All Merge `4esn`=((#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) On Match Set {`8esn`:`8esn` In $@usn5}.`3esn`! =$@usn5[#usn8..][$`1esn`..],All(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $@usn6 Is Null Is Null).`1esn`! =$12[..``][..$7] On Create Set usn2 =_usn3 Is Not Null Is Not Null,`4esn` =.e1 Starts With $`8esn`"), - octest:ct_string("Merge #usn8=((:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[`2esn`? *0..010]->(usn2 :_usn3)-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]})) On Match Set [usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01|`1esn`[@usn6..$123456789]].`8esn`? =Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]),@usn5 =Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null,_usn3+=$@usn5 =~$`` =~$usn2 On Match Set #usn8 =({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null,`2esn`+=Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}),#usn8 =$`7esn` Ends With `1esn` Ends With True Merge _usn3=((_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})) On Match Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] On Create Set None(`4esn` In 's_str'[12..'s_str'] Where @usn5 In 0X0123456789ABCDEF).`2esn`! =$`1esn` Is Null,`5esn`()._usn4! =[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00],`8esn` =`7esn` Contains .0 Contains 9e12 With `` Starts With 12,[@usn5 In .12[#usn7][$`8esn`] Where $_usn4[12e12][`4esn`]][`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])..``(False In `3esn`)][[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]]..Filter(@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12])] As `4esn`,Count(*)[`7esn`..$12] As `` Skip 0X7[..12e12] Where 9e12[..$``][..`6esn`]"), - octest:ct_string("With Distinct *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `3esn`,Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])[All(#usn7 In 01234567[$`3esn`..] Where Count(*)[.e0.._usn4])..][None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..])..] Order By ({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Desc,0x0 Desc,0.e0 Starts With 12.e12 Starts With .e12 Desc Skip [\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Limit usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Where 123456789 Is Null Optional Match usn1=((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})) Where 1000 Contains 0.e0 Merge `5esn`=(usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[ *0xabc{`1esn`:123.654 In \"d_str\" In $_usn3}]-({`2esn`:$usn2 Is Not Null})"), - octest:ct_string("Match (:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}),((:``{`1esn`:`6esn` =~$_usn3})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})) Where _usn4[0xabc..]"), - octest:ct_string("Return Distinct 9e1[010..],Extract(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]|1000[..$`6esn`][..0xabc]) Ends With [07[$999],12e12[Count ( * )..][usn2..]] Merge #usn7=((_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]})) On Match Set @usn6+=(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}] On Match Set (usn1 :#usn7)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->(`4esn` {`7esn`:.e0[..999][..0X7]}).usn2 =$`3esn`[`2esn`...e0] Union All With Distinct All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null,0xabc[$@usn5] As `7esn`,.e0[usn2..] As _usn3 Order By False[..12.e12] Descending Skip [\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Limit 7 In @usn5 In $`4esn` Where 12e12 Starts With $123456789 Starts With 12.0 Detach Delete 010 Starts With `7esn` Starts With 9e1 With Distinct *,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Order By .e0 Contains 01234567 Descending,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Desc,'s_str' Starts With 1000 Starts With #usn8 Descending Where 123456789 =~_usn4 =~$0"), - octest:ct_string("Create #usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})),`5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Remove Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]|`3esn` Contains 0Xa).usn1?,[12.0[0Xa][00],0 Is Not Null].@usn5?,{`1esn`:@usn6[`5esn`..$`3esn`]}.usn1? Match usn2=((`5esn` :usn2:@usn6{`5esn`:0Xa In .e1 In Count(*)})) Union All Return *,[\"d_str\" Starts With $usn1,.12 Contains $`4esn` Contains $`6esn`,01234567 =~usn1] Is Null Is Null As `7esn`,$123456789 Contains usn2 As `8esn` Limit 1000 Ends With 1000 Ends With $`4esn` Remove Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $@usn6 Is Null Is Null).`4esn`,All(@usn5 In $#usn8 Is Null Is Null).usn1! Union With *,$0[..`8esn`] As _usn4 Order By $`6esn` Is Not Null Is Not Null Desc Skip 0x0 Contains $`8esn` Contains `6esn` Limit 1e1[@usn5..] Where 1000 Contains 0.e0 Merge (#usn7 :@usn5)-[`4esn`:_usn3|:`4esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:usn1{`8esn`:usn1 Contains $``}) On Match Set ``+=`6esn`[0X7..][0x0..],#usn8 =1.e1 =~$_usn4,{`8esn`:1000 Contains 0.e0,usn1:`6esn`[1e1..]}.`4esn`? =$#usn8[1e1][9e1] On Match Set `1esn`+=`` Is Not Null,{@usn6:9e0 Ends With $`7esn`}.`2esn`? =Count ( * ) =~All(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7) Create (`1esn` :`1esn`)"), - octest:ct_string("Delete 0x0[0.0][$_usn4] Unwind 0xabc[$@usn5] As usn2 Union Return Distinct *,$@usn6[..$usn1] As _usn3 Order By {``:12e12[$`5esn`][07],_usn3:$`6esn` Is Null Is Null} Ends With [0 Is Not Null Is Not Null] Descending,Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Desc,.12 Ends With `1esn` Ends With $`1esn` Asc Limit `7esn` Starts With $`` Starts With $#usn7 Create (`8esn` :`1esn`) Merge `7esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}) On Match Set #usn7+=$@usn5[01],usn1 =Extract(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With [01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] Starts With (`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})<-[:`6esn`]->(@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})<-[@usn6?:@usn5|`8esn` *..01{_usn4:07 Ends With 07,`8esn`:`6esn`[1.e1..$#usn7][.e0..True]}]-(usn2 :`3esn`:`1esn`),#usn7+=0X0123456789ABCDEF[.e0..$`4esn`] On Match Set [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|`6esn` Starts With $usn2 Starts With 0.0].#usn8? =`2esn` Starts With $_usn3 Starts With `2esn`,`8esn`+=$`7esn` =~.e1"), - octest:ct_string("With Distinct #usn7 Starts With 0x0 Starts With Null,{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}[Extract(_usn4 In usn1 Contains False Contains `` Where `5esn`[.e1][0Xa])..],[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As @usn5 Limit All(@usn5 In .12[#usn7][$`8esn`] Where $`5esn` Contains $@usn6) Is Null Is Null Unwind Count(*)[`7esn`..$12] As `6esn` Unwind Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] As `8esn` Union All With 010 In @usn6 Order By (:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0}) Starts With Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) Starts With [12.0 In 1000 In _usn4] Ascending Limit `7esn`[1e1..07][0x0..Count ( * )] Union Optional Match `8esn`=()<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Optional Match ((`2esn` :usn2:@usn6)-[usn1?{`7esn`:$`2esn` Starts With .e0 Starts With 12.0}]-(`5esn` {`5esn`:$`5esn`[False]})) Where _usn3 Is Null"), - octest:ct_string("Match _usn4=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),(((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})-[?*..{`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}]-(`` :`3esn`:`1esn`{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-({usn1:010[@usn5..],`7esn`:`2esn` Is Not Null Is Not Null}))) Where 07 In `5esn` In 12e12"), - octest:ct_string("Merge @usn5=((({`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}))) On Create Set `8esn` =0.e0[9e0][0e0],_usn3 =0Xa[0xabc..$#usn8] On Match Set `6esn` =[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] Unwind 123456789[`4esn`..][Count ( * )..] As _usn3 Delete 999 Contains `7esn`"), - octest:ct_string("Delete [07,$_usn3[..Count ( * )][..@usn5]][All(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0)..{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}][[010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]]..Filter(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12)],`6esn` Starts With $usn2 Starts With 0.0 Union Delete 's_str'[12..'s_str'],.e12[usn2][01],[@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Merge `6esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}) On Match Set Filter(usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01).`8esn`! =`6esn`[..`5esn`] Union All With Distinct *,0.12 In $`4esn` In `6esn`,`4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}] As `2esn` Skip 0X7[..12e12] With Distinct *,{`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] Order By 9e1 Starts With _usn3 Starts With `4esn` Descending,usn2(Distinct _usn3 Contains @usn6 Contains 1.e1)[Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where _usn3 Is Null)..[12e12[0.e0][9e1]]][Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``])..Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)] Descending Limit 0 Starts With 12e12 Starts With `4esn` Unwind 12.e12 In $1000 As `6esn`"), - octest:ct_string("Create #usn8=((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(#usn7 :`3esn`:`1esn`)<-[?{`4esn`:12e12[$`5esn`][07]}]-(:`1esn`{_usn4:$_usn3[Null]})) Remove {`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}.#usn8? Create (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Union All Create ``=((`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(usn1 :_usn3))"), - octest:ct_string("Unwind Count(*) Is Null As `2esn` Remove (usn1 :_usn3{@usn6:True[..'s_str'][..01]})-[? *999..]-(`` :`1esn`).usn2?,Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 123456789[$#usn7..]|123456789 In $usn2 In `6esn`)._usn4?,Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $`6esn` Is Null Is Null)._usn3 Union Return 123456789 =~_usn4 =~$0 Order By 0xabc Starts With _usn3 Desc,(`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Ascending,Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) Contains Extract(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`) Desc Skip Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] Limit [@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2] Is Null Return Distinct *,.e1[usn1..],$1000[.e0..] As `3esn` Skip `5esn`[Count ( * )..][\"d_str\"..]"), - octest:ct_string("Return *,.12[`1esn`..][$`3esn`..] As usn2 Limit usn2 Starts With @usn6 Union Unwind #usn8 In $0 As usn2"), - octest:ct_string("Unwind 12 Ends With 07 Ends With @usn6 As `1esn` Union Merge @usn5=(`3esn` :`8esn`{usn1:`2esn`[$`3esn`..],`6esn`:$12[..``][..$7]})-[@usn5?:``|:_usn4]-(`8esn` :#usn8)<-[?:``|:_usn4]-({`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12}) On Create Set _usn3 ={`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]] Merge ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})-[@usn6?:#usn7|:_usn4 *00..]->(`` :@usn5{#usn7:0X7[12]})) On Match Set (@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`6esn`:`4esn`|:`7esn` *1000..{`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}]->(:#usn7)<-[`5esn`:`8esn`|:usn1]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}).#usn7? =1000 Contains 123456789 Contains 1e1 On Match Set usn1+=`4esn` Is Null"), - octest:ct_string("Merge ((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})) On Create Set _usn4+=@usn6(Distinct 12.e12[0e0..7],usn1[Count ( * )..$usn1]) Is Null Is Null,(_usn4 :``)-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6}).`5esn` =\"d_str\" Contains `3esn` Contains 00,`4esn` =``[True..] On Create Set #usn7+=Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]),Extract(@usn5 In $#usn8 Is Null Is Null Where $@usn5 =~$`` =~$usn2|`5esn`[.e1][0Xa]).`6esn`? =$`1esn` Is Null Is Null Remove (:#usn7{usn1:$123456789[..0.12][..#usn7]})-[:_usn4|:@usn5 *0xabc]-({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`}).``?,(:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8}).#usn8? With Distinct {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null As #usn8,010[$`8esn`..][0..] Order By .e12[.12..][_usn4..] Ascending,Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] Asc Skip {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']}[(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)] Limit 9e12[usn2..7][.e1..$`7esn`] Where .0[01][$12] Union All Detach Delete ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] Return $usn1[0.12..]['s_str'..] As `1esn`,(`4esn` :`8esn`{_usn4:0 Is Null Is Null})-[`6esn`:`8esn`|:usn1$_usn3]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Ends With Filter(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999) Ends With [`4esn` In `6esn`[1e1..] Where 07[12e12]] Order By Count ( * )[..999] Asc Skip (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})<-[`6esn`?:@usn6 *999..]->(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})[Filter(_usn4 In usn1 Contains False Contains `` Where 123456789 Is Null)..]"), - octest:ct_string("Remove usn2:_usn4:usn1,None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.e0[9e1..][0.0..]).#usn7 Remove Extract(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`).`6esn`?,Extract(@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null|@usn5 Starts With 12e12 Starts With @usn5).`2esn`?,[Count ( * )[Count ( * )..12e12][usn1..1000],12e12[$`5esn`][07],$_usn3[9e1][$_usn4]]._usn4 Union Return Distinct *,`7esn`[Null..][@usn5..],0X0123456789ABCDEF Contains $usn1 Skip Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] Limit False Ends With $`8esn` Merge (:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa})-[:usn1|`3esn`]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]}) Return *,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn`,@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn` Skip {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]}"), - octest:ct_string("Optional Match `2esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}),(#usn7 :@usn5)<-[@usn5*]->({``:$1000 Is Null Is Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(`7esn` :`2esn`:`3esn`) Remove All(`2esn` In `7esn` Starts With $`` Starts With $#usn7).#usn8!,[_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0].@usn6,(`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})-[?{`5esn`:0Xa In .e1 In Count(*)}]-({`1esn`:@usn6}).#usn7!"), - octest:ct_string("With Distinct $999[$1000] As `4esn`,[`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Limit {`8esn`:@usn5[..True][..0X7],`1esn`:`1esn` Contains Count ( * )}[{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)] Where $_usn4[12e12][`4esn`] Delete [True[..'s_str'][..01]] In Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999]) In All(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`]),$`5esn` Starts With _usn3 Starts With @usn5 Return None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) As _usn3"), - octest:ct_string("Remove {#usn8:123456789[$#usn7..],#usn7:07[12e12]}.usn2,(#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(_usn4 {`1esn`:010[@usn5..]})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(usn1 :_usn3{@usn6:True[..'s_str'][..01]}).`8esn`! With Distinct 0Xa Starts With 0.12 Starts With .0 As usn2 Order By [0Xa In .e1 In Count(*)][..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}][..Extract(`4esn` In `6esn`['s_str'..][010..] Where #usn8[$#usn8..])] Desc Limit Extract(_usn4 In usn1 Contains False Contains `` Where $`4esn` Starts With 1e1|Count(*)['s_str'..`1esn`]) =~Extract(`4esn` In $`8esn` Starts With 1000|`7esn`[Null..][@usn5..]) =~(:`4esn`:#usn8)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ) Union Return Distinct $`1esn` Starts With $999 As #usn8,Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)[{#usn8:`5esn` =~0Xa,@usn5:0X7[999][$1000]}..[`` Starts With 12,$`1esn` Starts With $999]][`7esn`(Distinct $usn2[..12.0])..`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])] Order By 9e1 Is Not Null Is Not Null Asc,$usn2[$123456789..123.654][$`5esn`..'s_str'] Desc Union Return {usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]} =~Single(usn2 In 1000 Contains 0.e0) =~Any(@usn6 In @usn5 In $`6esn` Where $`7esn` Is Not Null) As `3esn`,Filter(usn1 In 00 Starts With _usn3 Where $_usn4[`3esn`][0])[..Extract(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12|0x0 =~_usn4)][..{_usn4:.12 =~.12 =~1e1,#usn7:.e1 Starts With 0.0 Starts With `6esn`}] Order By @usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Ascending,$`3esn` =~Null Desc Skip Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789} Create #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))),_usn4=(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) With Distinct 's_str'[.12..$#usn7][$999..`2esn`] As `5esn` Limit $_usn3[..Count ( * )][..@usn5] Where @usn5 Ends With $`3esn` Ends With 12e12"), - octest:ct_string("Unwind 0.12 Contains $`2esn` Contains $_usn4 As @usn6 Merge `2esn`=(:usn1{`8esn`:usn1 Contains $``})-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1})-[ *010{@usn5:Null Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] Union All Optional Match ((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})),(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union Return Distinct 999[``..][Null..] As `1esn` Skip usn2(Distinct _usn3 Contains @usn6 Contains 1.e1)[Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where _usn3 Is Null)..[12e12[0.e0][9e1]]][Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``])..Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)] Limit Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)[..(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})][..Any(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)]"), - octest:ct_string("Merge ((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[? *0..010]-(#usn8 :`4esn`:#usn8)) On Create Set `4esn` =.e12[.12..][_usn4..] On Match Set {`2esn`:12 =~usn1 =~.e12}.usn2 =False Is Not Null Is Not Null,`3esn` =010 In @usn5 In `5esn`,[usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null].@usn5! =$1000 Ends With 1e1 Ends With 123.654"), - octest:ct_string("Create (_usn4 :@usn6:`7esn`)<-[#usn8?:_usn4|:@usn5 *..0x0]-(`6esn` :#usn7{`5esn`:#usn7 Is Not Null Is Not Null})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) Union All Return Distinct 1e1[..#usn7][..#usn7],0[0.12..] As @usn5 Order By (_usn3 :`6esn`:`7esn`{usn1:$_usn3[9e1][$_usn4],`8esn`:123456789 =~_usn4 =~$0})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-({`1esn`:@usn6}) In _usn3(0x0[0X7..][usn1..]) In None(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str') Descending,[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Desc Skip Single(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) In [$123456789 Contains usn2,010 Is Null Is Null,`7esn` Starts With $usn2 Starts With .e0] In `2esn`($`5esn` Is Not Null,7 In $`3esn` In #usn7)"), - octest:ct_string("Optional Match `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Return Distinct *,0.0 Is Null Is Null As `8esn` Order By $1000 Is Null Is Null Descending,1000 In 0X0123456789ABCDEF In 01 Asc With Distinct *,7 Is Null Order By $12[01..][1.e1..] Ascending,0x0 =~_usn4 Desc Limit 12[`7esn`...0][0.12..``] Where $123456789 Ends With .e0 Union Merge (:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}) Merge (`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) On Create Set [$`6esn` Is Null Is Null,Count ( * )[@usn6..0x0],0.0[1000..][.e1..]]._usn3! =.0 Starts With `2esn` Starts With `6esn`,({``:\"d_str\",`1esn`:$1000 =~$`7esn`})-[usn1?:_usn3|:`4esn` *123456789..999{`6esn`:01 Ends With .e0,`4esn`:$`7esn` Is Not Null}]->(_usn3 ).`4esn` =usn2 Is Not Null On Match Set `5esn` =$123456789 =~$`5esn` =~07,`4esn`+=010 Starts With `7esn` Starts With 9e1,@usn5:`6esn`:`7esn`"), - octest:ct_string("Optional Match _usn3=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))) Where $`4esn`[$`2esn`..] With *,$`3esn`[`2esn`...e0] As _usn3 Limit Count ( * )[Count ( * )..12e12][usn1..1000] Where 12[0X7..@usn6] Create `2esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Union Delete `4esn` Is Null,$``[False..123.654] Merge ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[ *010{@usn5:Null Is Null Is Null}]-({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]})) Union All Create `1esn`=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) Return Distinct 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Order By [@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0] Is Null Descending Skip #usn8 Is Not Null Create ((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6))"), - octest:ct_string("Return `2esn` Contains $999 As #usn7,$123456789[False.._usn3] As `1esn` Order By [@usn6 In @usn5 In $`6esn` Where $999[$1000]|$7[.12]] In {`1esn`:$@usn6 Contains 07 Contains 0.e0} In (`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) Ascending,00[.e1..] Desc Skip 9e1[.12..] Create (`7esn` {_usn3:usn1 Contains $``})<-[usn1]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12}),`8esn`=((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Merge ((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) On Match Set `7esn`+=.e1[..$`4esn`][.._usn4],`4esn`+=@usn6[$`8esn`][12.e12],@usn5+=1000 Contains $#usn7 Contains `6esn` Union All Return Distinct 07 Ends With 07,{_usn3:12.e12[$1000..],`7esn`:$`2esn` Contains usn1 Contains `2esn`}[..(`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)][..010] Unwind 0Xa[#usn7] As @usn5"), - octest:ct_string("Delete [$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] Union All Match (({_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})),#usn8=({_usn3:12.e12 In $0 In Count(*)})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}) Where `8esn`[1000..$7][$`7esn`..`2esn`] Optional Match `1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) Unwind {#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `5esn`"), - octest:ct_string("Unwind 12.e12 Contains $`5esn` As #usn7 Delete True In 0x0,0X7[12]"), - octest:ct_string("With Distinct (`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) As #usn8 Order By _usn4 Starts With $@usn6 Starts With #usn7 Asc,$#usn7 Desc Where $@usn6 Is Null Is Null"), - octest:ct_string("Merge ({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] On Create Set (:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[@usn6?:`1esn`]-(:`5esn`)-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`).#usn7! =0x0 Contains $`8esn` Contains `6esn`,`8esn` =None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]) Ends With None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With @usn6($123456789[0.0..]) Remove `7esn`(usn2 Is Null Is Null,`6esn` =~$_usn3).`1esn`!,None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]).`8esn`! Union Match #usn7=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),@usn5=(((_usn3 :_usn3{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[#usn8:`3esn`|:`4esn` *0..010]-(:usn1{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]}))) Unwind Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `4esn` Union With Distinct *,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] As `8esn`,123456789 Starts With `2esn` Starts With 9e12 As `3esn` Skip Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) Limit `6esn` Starts With $@usn6 Where 12[0X7..@usn6]"), - octest:ct_string("Create usn1=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[`7esn`?]-(@usn6 :_usn3{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]})),#usn7=(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[@usn5?:_usn3|:`4esn` *..0x0]->(#usn8 {usn2:7 Contains 9e1}) Union Return Distinct *,0.0 Is Null Is Null As `8esn` Order By $1000 Is Null Is Null Descending,1000 In 0X0123456789ABCDEF In 01 Asc Return *,({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) Order By [0 Is Null Is Null][..[_usn3 =~00,9e1 Is Null Is Null]] Descending,Single(`4esn` In `6esn`['s_str'..][010..] Where 12.0 Contains 0.e0)[..Any(`4esn` In 's_str'[12..'s_str'] Where Count(*)[`7esn`..$12])][..Extract(@usn5 In .12[#usn7][$`8esn`] Where 01234567 =~usn1)] Ascending,`8esn` In $@usn5 Asc Limit $#usn8 Is Null Union Merge `7esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)) On Create Set `3esn`+=00 Ends With $_usn4 Ends With $`2esn` On Match Set `6esn`:usn1,`7esn`+=07[`6esn`..][`5esn`..] With Distinct *,.e1 Starts With $`8esn` Where 12.e12[$1000..] Remove [usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]]._usn3,{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12}.@usn6,[usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]].usn2?"), - octest:ct_string("With *,0xabc Starts With _usn3 As `3esn`,Null[..12e12][..usn1] As `3esn` Order By 0x0[$`3esn`..010][$#usn7..00] Ascending,010 =~$usn2 =~1e1 Desc,(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Asc Limit 0x0 Contains $`8esn` Contains `6esn` Where 0xabc Contains Null Contains 9e12 Remove {`1esn`:0xabc[12.e12..`1esn`]}.`1esn`! Merge #usn7=(:#usn7{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[:@usn5|`8esn`*..]-(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)})"), - octest:ct_string("With .e12[.12..][_usn4..] As _usn4,{`7esn`:.e0 Contains #usn7 Contains $#usn8}[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..None(`6esn` In 0X7 =~`` Where 12.e12['s_str'])][(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})..({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})],$999[$_usn4..][$`5esn`..] Skip 010 In @usn5 In `5esn` Where $@usn6 Is Null Is Null Merge ((:#usn8)<-[`2esn`?]-(:usn2:@usn6{_usn4:$_usn4[$`8esn`..][07..],#usn7:12.e12[...0][..0x0]})<-[`5esn`? *999..{#usn7:0X7[12]}]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})) On Match Set usn2+=[usn1[..@usn5][...e0]] In Extract(`6esn` In 0X7 =~`` Where $1000 Contains $`3esn`|12 Ends With 01234567) In {`3esn`:$`5esn` In `2esn` In .0,``:0e0 Is Null Is Null},`7esn` =Filter(#usn7 In 01234567[$`3esn`..] Where 0Xa[0xabc..$#usn8])[(:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})<-[usn2 *..0X7{`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`}]->(`8esn` {`6esn`:00 In 12.e12})][{_usn3:#usn7 Starts With `1esn`}],`4esn`+={`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] On Match Set #usn7($123456789 Contains 01 Contains 0.12).usn2! =.e12 =~0.0 =~9e0,All(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1).`4esn` =$999[12.0..],`8esn`+=Filter(_usn4 In usn1 Contains False Contains `` Where 9e0 =~$`5esn`) =~``($`4esn`[usn1..$#usn8][12.0..`3esn`]) =~Single(usn2 In 1000 Contains 0.e0) Union Delete 0.0[..12e12][..$0],1.e1[.e0..0]"), - octest:ct_string("With Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) As _usn4 Where $usn1[0.12..]['s_str'..] Unwind [1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As @usn6 Union All Create ((:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})<-[@usn6:`3esn`|:`4esn`*]->(`6esn` :`5esn`)),@usn6=((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})) Match #usn8=({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]}),(((`3esn` :`8esn`)-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(_usn3 :usn2:@usn6)-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}))) Where 9e0 Starts With `6esn`"), - octest:ct_string("Return Distinct *,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Order By .e0 Contains 01234567 Descending,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Desc,'s_str' Starts With 1000 Starts With #usn8 Descending Optional Match ((usn1 :`6esn`:`7esn`)),((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)) Where 07[..010][..12.0]"), - octest:ct_string("Unwind 123.654 Contains #usn8 As `5esn` Return Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As `5esn`"), - octest:ct_string("With Distinct None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} Order By 123.654[`5esn`] Descending,$`2esn`[..7][..$usn1] Descending,123456789 Starts With _usn4 Starts With @usn6 Descending Where $`4esn`[$`2esn`..] Create `2esn`=((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Merge ((`1esn` :usn2:@usn6)-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})) On Match Set [$usn1 In 1000 In $#usn7,$#usn7 In 12.0 In 0X0123456789ABCDEF,9e0 Is Not Null]._usn3 =All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`! =0xabc Starts With _usn3 Union Delete None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} Union All Detach Delete {usn2:123456789 Starts With `2esn` Starts With 9e12} Ends With All(usn2 In 1000 Contains 0.e0 Where 01234567[Null..0.e0][Count(*)..$#usn8]),9e0[``][123.654]"), - octest:ct_string("Merge `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) On Create Set `1esn` =0X0123456789ABCDEF[.e0..$`4esn`] Return *,0.12[Count(*)..],$@usn5 =~$`` =~$usn2 As #usn8 Union All With Distinct `` Contains 12 Contains True,(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) Is Not Null Is Not Null As @usn5,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Skip Count(*)['s_str'..`1esn`] Limit Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] Where $`5esn` In `2esn` In $12 Detach Delete `3esn`(Distinct 123456789 =~$123456789)[..(usn1 :`6esn`:`7esn`)-[`2esn`? *0..010]->(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]})][..(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})],`6esn`[0X7..][0x0..],Null Contains 9e1 Union Create (_usn3 :_usn4:usn1),((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(@usn5 {_usn4:010[$@usn6],`6esn`:123456789[1e1..0.0]})<-[`6esn`?:`2esn`|usn2 *01234567..12]->(:`7esn`{#usn7:True =~@usn5 =~$`1esn`})) With @usn6 =~01,12.0 In 1000 In _usn4 As _usn3,0 =~12.e12 =~$`` As #usn7 Order By [usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]] In [0xabc[12.e12..`1esn`]] In {@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} Asc,[0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]) Descending,Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1) Asc Skip 07 In $7 In 12 Where Count ( * ) Create ((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 ))"), - octest:ct_string("Detach Delete 1e1 In $#usn8 In 12e12,_usn3 =~00 Create ({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}),(usn2 :`2esn`:`3esn`)-[`7esn`?]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) Merge _usn4=((@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) On Match Set Extract(usn2 In 1000 Contains 0.e0 Where $1000[01234567]|$`6esn`[Count(*)..0.e0][0.0..Count ( * )]).`8esn`! =$123456789[False.._usn3],`3esn`(Distinct 0X7 In $999 In $``,$0 Is Not Null).`7esn`? =0.e0[123.654],`1esn`+=True Starts With 12.0 Starts With $@usn5 Union Return 's_str'[.12..$#usn7][$999..`2esn`] As `5esn` Order By Count ( * ) In 010 Descending,12e12[_usn3..][$@usn5..] Ascending,usn2 Starts With `6esn` Starts With 12e12 Desc Limit Count ( * )[..usn1][..12.e12] Return Distinct *,[#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|@usn6 Starts With `7esn` Starts With Null] Is Not Null Is Not Null,`8esn`[_usn3..$#usn7] Order By 's_str' Starts With 1000 Starts With #usn8 Descending Union Create (`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0}) Merge (`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(`7esn` :`8esn`{`4esn`:00 Ends With .12 Ends With `4esn`})-[ *07..]->(usn2 :@usn6:`7esn`) On Create Set #usn8:_usn4:usn1,[0 Is Not Null Is Not Null].usn2! =(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')]"), - octest:ct_string("Remove usn2:@usn5,`7esn`(0.12 =~01 =~12,#usn7 Is Not Null Is Not Null).#usn7! Delete .e1 Starts With 0.0 Starts With `6esn` Create ((:`5esn`)<-[#usn7{#usn7:False[`2esn`..#usn8]}]->(usn2 :`3esn`:`1esn`)-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})),((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) Union Optional Match usn1=(usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}) With Distinct *,`7esn`[Null..][@usn5..],0X0123456789ABCDEF Contains $usn1 Skip Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] Limit False Ends With $`8esn` Where 0 Starts With 12e12 Starts With `4esn` Union Optional Match #usn8=(((`3esn` )-[?:#usn7|:_usn4]-(usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]})))"), - octest:ct_string("Create @usn5=((:#usn8$usn1)-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})),`1esn`=(`3esn` {``:.e0[7..$`3esn`]}) Create ((_usn4 {`8esn`:9e1 In 01 In 999})),`1esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}) Match usn2=(((:`1esn`)-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}))),(`5esn` {`5esn`:$`5esn`[False]}) Union Merge `7esn`=(`2esn` )<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) Detach Delete usn1 Is Not Null Is Not Null,[$`4esn`[9e1..][0..]][Any(`4esn` In $`8esn` Starts With 1000 Where 0.e0[9e1..][0.0..])..Single(#usn8 In $`5esn` Is Null Is Null Where 1000 Ends With 1000 Ends With $`4esn`)],#usn8 Ends With `4esn` Ends With $`4esn` Create usn2=(({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)-[@usn5{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8}]->(usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})"), - octest:ct_string("Unwind 1.e1 Is Not Null Is Not Null As `4esn` Delete Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}),07,`2esn`[$`3esn`..] With 123.654 Is Not Null Is Not Null As `3esn`,$usn1 In 1000 In $#usn7 As `8esn` Order By .12 Starts With $usn2 Asc,[usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..] Asc,{`8esn`:$123456789 Is Null Is Null,_usn3:$`4esn` Starts With 1e1}[(#usn7 :`2esn`:`3esn`)<-[`8esn`?]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})..All(_usn4 In usn1 Contains False Contains `` Where $`8esn`[$``..$7][$1000..$`7esn`])] Descending Skip $@usn5[$#usn8..][9e1..] Limit $123456789[0X7..12.e12] Where 0.12[0.e0..][`4esn`..] Union Optional Match ((_usn4 {`8esn`:9e1 In 01 In 999})),`1esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}) Where @usn5 Contains $`1esn` Contains 999 Union All With Distinct 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Order By [usn1 In 00 Starts With _usn3 Where 00][#usn8(Distinct $`2esn`[$123456789..$`1esn`][0Xa..$``],@usn6[`5esn`..$`3esn`])..['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`]] Asc,999 Contains `7esn` Desc,Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`] Ascending Skip 0e0 Is Null Is Null"), - octest:ct_string("With Distinct 1.e1 =~$_usn4 As usn2,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,{_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] Order By $12 Starts With #usn7 Asc,$0[$0..] Descending Where _usn3 Ends With 0x0 Ends With 01234567 With *,0xabc Starts With _usn3 As `3esn`,Null[..12e12][..usn1] As `3esn` Order By 0x0[$`3esn`..010][$#usn7..00] Ascending,010 =~$usn2 =~1e1 Desc,(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Asc Limit 0x0 Contains $`8esn` Contains `6esn` Where 0xabc Contains Null Contains 9e12 With `5esn` In 12 As usn2,Count(*) Starts With 1e1 Starts With $123456789 As #usn7,[`4esn` In 's_str'[12..'s_str'] Where 9e1 Contains $`3esn` Contains 01234567][[7[..12e12][..$`6esn`]]..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}] As #usn8 Order By 00 In 12.e12 Descending,9e0 Ends With $`7esn` Asc Skip 01234567 Is Null Is Null Limit $123456789 In Count(*) In .e1 Where $123456789 Ends With $`6esn` Union Merge (({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})) With Distinct *,#usn8 Is Not Null As _usn4 Skip {@usn5:$@usn6[..$usn1],`1esn`:usn2[`3esn`][_usn3]}[..Any(`4esn` In 's_str'[12..'s_str'] Where Null Contains _usn4)][..{`7esn`:True[..'s_str'][..01]}] Union All Create usn2=(`` :#usn7)<-[:@usn6 *0X0123456789ABCDEF..{_usn3:`7esn` Ends With $usn2 Ends With 999}]-(`2esn` :_usn3) With Distinct [$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] Order By {#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} Desc Skip 00 Starts With _usn3 Limit True =~@usn5 =~$`1esn` Remove [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``?,None(@usn5 In .12[#usn7][$`8esn`] Where 0X7[.e12..01234567]).`5esn`!,`8esn`:`6esn`:`7esn`"), - octest:ct_string("Remove Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`|.12 Ends With `1esn` Ends With $`1esn`).`5esn`! Optional Match usn2=((usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(usn2 :`5esn`)),((`3esn` :`8esn`)-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})-[ *..0X7]->(`5esn` :_usn4:usn1)) Unwind [@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] As usn1"), - octest:ct_string("Unwind $1000 Is Not Null Is Not Null As `3esn` Merge (usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)})-[usn2{`6esn`:$@usn6[_usn3..0.e0]}]->({usn1:`4esn` In $12 In `8esn`})<-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`6esn` {`8esn`:`8esn` In $@usn5}) On Match Set Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..]).`8esn` =All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])],@usn6:#usn8 Create ((_usn4 :`7esn`)<-[`6esn`:usn1|`3esn`]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})<-[``?:_usn3|:`4esn`]-(:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})) Union All Merge `6esn`=(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) On Create Set usn1 =00 In 0.12 In `5esn`,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where .e0[..999][..0X7]]._usn4 =(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) On Match Set [usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01|`1esn`[@usn6..$123456789]].`8esn`? =Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]),@usn5 =Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null,_usn3+=$@usn5 =~$`` =~$usn2 Remove `6esn`:@usn5,Extract(@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..])._usn3!,Extract(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7|@usn6[`5esn`..$`3esn`])._usn4! Union All Optional Match ((`5esn` :#usn7)<-[?:usn2|#usn8 *1000..]->(@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})),`2esn`=((:@usn5{#usn7:1e1[@usn5..]})<-[? *0..010]-({@usn6:$123456789 Is Null Is Null,@usn6:`6esn`[1.e1..$#usn7][.e0..True]})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]})) Where False In 123456789 In $0 Merge usn1=(`3esn` :``) On Match Set All(`6esn` In 0X7 =~`` Where 0X7[..12e12])._usn4 =Null Starts With $`7esn` Starts With `2esn`,`5esn`+=999 Contains Count ( * ) Contains 123.654,usn1+=usn1[$`3esn`..$999][True..False]"), - octest:ct_string("With *,00 In 1e1 As `7esn`,0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Skip 7 In @usn5 In $`4esn` Limit {`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]] Return Count ( * ) In 010 Limit Count(*)[True] Create (`4esn` :@usn5{``:$`2esn`[$`2esn`..],@usn6:010 =~`6esn`})"), - octest:ct_string("Unwind 0xabc[$@usn5] As usn2 Optional Match ((:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]})),((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Where $`4esn`[12.e12..][0.0..] Union Merge usn1=((:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[#usn8? *0xabc]-(#usn8 :`4esn`:#usn8)) On Match Set #usn7($123456789 Contains 01 Contains 0.12).usn2! =.e12 =~0.0 =~9e0,All(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1).`4esn` =$999[12.0..],`8esn`+=Filter(_usn4 In usn1 Contains False Contains `` Where 9e0 =~$`5esn`) =~``($`4esn`[usn1..$#usn8][12.0..`3esn`]) =~Single(usn2 In 1000 Contains 0.e0)"), - octest:ct_string("With *,{`7esn`:Count(*) In 01 In .0}[..{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}][..#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..])] As `5esn`,#usn7 Ends With `4esn` Ends With @usn5 As `` Where $`7esn` Is Null Is Null Union All Match #usn7=(:#usn7{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[:@usn5|`8esn`*..]-(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) Union Unwind 07[$`5esn`..]['s_str'..] As _usn3 Unwind Null Is Null Is Null As usn1 Unwind 123456789 =~Filter(usn2 In 1000 Contains 0.e0 Where 0X7[0e0..]) =~{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999} As `7esn`"), - octest:ct_string("Merge ((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null})) On Match Set _usn4:_usn3,[0xabc Contains $1000].`6esn` =(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})[Filter(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 0.12 Ends With $usn1 Ends With $@usn5)][`3esn`(Distinct 9e12[_usn3])],{@usn6:0.12[0.e0..][`4esn`..]}.`4esn` =0x0 Contains $`8esn` Contains `6esn` On Create Set Extract(#usn7 In 01234567[$`3esn`..] Where 0X7 In $999 In $``|9e1[...e0]).`7esn`! =0X7 In 's_str' In $`1esn`,{`3esn`:#usn7 Ends With `4esn` Ends With @usn5}.#usn8 =[usn1[..$_usn4][..``],0X7[.e12..01234567]] In `3esn`(@usn5[..True][..0X7],$`3esn` =~$`7esn` =~False) Remove Single(#usn8 In $`5esn` Is Null Is Null Where $123456789[0.0..]).#usn7?,Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]).@usn6! Union With Distinct *,010 Contains Count(*) As `5esn`,'s_str' Ends With .e0 As `1esn` Skip [_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]] Ends With [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]] Limit Count ( * )[`3esn`..][`2esn`..] Where 's_str'['s_str'..$usn2][_usn3.._usn3] Union Detach Delete 01 In _usn3 In 12,`1esn`[`3esn`..][$@usn6..]"), - octest:ct_string("Merge (({_usn3:$`1esn` Starts With @usn6})-[usn1?:`7esn`|`2esn`{`1esn`:0[usn2..]}]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})) On Match Set usn1+=9e0 Contains `1esn` Contains $usn1 On Match Set Single(@usn5 In $#usn8 Is Null Is Null Where 12.e12 In $0 In Count(*)).#usn7! =$#usn7 =~0xabc,#usn7:_usn4:usn1,`5esn`+={`7esn`:Count(*) In 01 In .0}[..{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}][..#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..])] Match _usn4=(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(@usn6 ) Return *,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn` Skip 1e1[..False] Limit 12e12[$`5esn`][07] Union All Create (({``:12 Is Null Is Null})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)})),#usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})) Remove (`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(`4esn` :#usn7).@usn5?,All(`4esn` In `6esn`['s_str'..][010..] Where \"d_str\" =~`6esn` =~0Xa).``!,(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}).usn1! With Distinct `2esn` Contains $999 As #usn7,$123456789[False.._usn3] As `1esn` Order By (usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Ends With [$`8esn` =~$usn2,0X0123456789ABCDEF[..usn1],`` In `6esn`] Descending Skip 0X7[..12e12] Union All Delete 01234567 Ends With 0x0,{@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7),None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`)[`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)..]"), - octest:ct_string("Return *,9e12 Ends With 0X0123456789ABCDEF Ends With #usn7 As `8esn` Order By Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) Ends With [1e1[@usn5..],$#usn8 Is Null,$0[$#usn8..01234567]] Ends With Extract(`6esn` In 0X7 =~`` Where 010 =~`6esn`) Descending,12.0 Contains 0.e0 Desc Skip .12[.e12..0.e0][0.e0..$`2esn`] Create ((`` :`1esn`)-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`4esn` {`2esn`:@usn6[`5esn`..$`3esn`],`7esn`:$`1esn` Is Null})),`1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) Merge ((`1esn` {_usn4:12.e12 Ends With 01 Ends With .e1})-[_usn4?:`6esn`]->(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]})-[_usn3?:#usn7|:_usn4 *010]->({`1esn`:@usn6})) Union All Optional Match usn2=((`5esn` :usn2:@usn6{`5esn`:0Xa In .e1 In Count(*)})),_usn4=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]}))"), - octest:ct_string("With Distinct `8esn`(Distinct False Contains `3esn`,9e12 =~01 =~$`7esn`)[[@usn6[`5esn`..$`3esn`],0e0 Is Not Null Is Not Null]..],True[0] As @usn6 Skip .12 Ends With $`4esn` Ends With Count(*) Where $`4esn`[12.0..`5esn`] Delete $`6esn`[$@usn6..],Count ( * ) Contains 999 Contains $`8esn`,usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Merge `3esn`=(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Union Match `5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Where $`2esn` Contains usn1 Contains `2esn` Unwind 12e12[0.e0][9e1] As usn2 Union Delete (usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Is Null Is Null,[@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})]"), - octest:ct_string("Unwind 9e1[$@usn6..] As usn2 With (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Order By [$12[01..][1.e1..]][[usn1 In 00 Starts With _usn3 Where 00]..@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12)] Desc,[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|#usn7 Starts With `1esn`][[@usn5 In .12[#usn7][$`8esn`] Where 0.12 In $`4esn` In `6esn`|$`1esn` Starts With @usn6]..][$`1esn`..] Ascending,{#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null Asc Skip Null[0.e0..0x0]"), - octest:ct_string("Optional Match #usn8=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),((#usn7 :_usn3)<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]})-[#usn7:_usn3|:`4esn`]-(:#usn7{usn1:$123456789[..0.12][..#usn7]})) Create `8esn`=((:`6esn`:`7esn`{_usn4:12[0X7..@usn6],_usn3:123456789 In $usn2 In `6esn`})<-[#usn7?:_usn3|:`4esn` *00..]->(:`6esn`:`7esn`{_usn3:\"d_str\" Is Null Is Null})<-[@usn6]->(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})),(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})))"), - octest:ct_string("Unwind `8esn`[$``] As `3esn` Remove (:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`2esn`]-(`6esn` :#usn7)-[_usn4?:`6esn`]-(@usn5 :`8esn`).`7esn`,`7esn`(usn2 Is Null Is Null,`6esn` =~$_usn3).`1esn`! Merge (((`1esn` :`8esn`)-[_usn4:`7esn`|`2esn`]-(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3}))) On Create Set _usn4 =00 In 12.0 In 's_str',Any(usn2 In 1000 Contains 0.e0 Where _usn4[0xabc..]).``? =All(usn1 In 00 Starts With _usn3 Where 12e12[Null]) Ends With (:`7esn`)<-[@usn5:#usn7|:_usn4]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})<-[?:usn2|#usn8{#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7}]-({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) Ends With Extract(`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]|usn2[$`1esn`...0]),#usn7+=9e0[False] On Match Set [$usn1 In 1000 In $#usn7,$#usn7 In 12.0 In 0X0123456789ABCDEF,9e0 Is Not Null]._usn3 =All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`! =0xabc Starts With _usn3 Union With Distinct $`4esn`[12.e12..][0.0..],12[`7esn`...0][0.12..``] As @usn6,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Skip $`1esn` Ends With $`1esn` Where `3esn` Contains 0Xa Create _usn3=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))) With Distinct *,$`7esn` Ends With $@usn5 As usn2,$@usn6 Starts With usn2 Starts With usn2 As #usn8 Skip 0.e0[..#usn8][..Null] Limit 00 Starts With _usn3 Where $@usn6 Contains 07 Contains 0.e0 Union All Merge ((`4esn` {`6esn`:$12[..``][..$7]})-[usn1?{usn2:7[$`4esn`..123456789]}]->(`3esn` )<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` )) On Match Set `6esn`+=7[$`4esn`..123456789],`1esn` =(:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]),{_usn3:'s_str' =~0.e0}.usn2? =Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0]|999[``..][Null..]] Ends With Any(`4esn` In `6esn`[1e1..] Where False[`2esn`..#usn8]) On Create Set ({@usn6:9e0 Contains `8esn`})-[usn2 *0X0123456789ABCDEF..{usn2:`` Starts With 12}]-(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})-[`7esn`:@usn5|`8esn`{usn1:9e12 Is Not Null Is Not Null}]->(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]}).``! =Single(#usn7 In 01234567[$`3esn`..])[(`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']})][[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0]] Optional Match `1esn`=((:`8esn`)-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`{#usn8:Null[0e0][12],`2esn`:`8esn` In $@usn5}]-({_usn3:999 In $_usn4 In 0X7,`1esn`:1e1 In $#usn8 In 12e12})) Where $_usn3 =~`7esn` =~$_usn4"), - octest:ct_string("Remove [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1|9e1 Starts With `1esn` Starts With 0Xa].usn2?,Count ( * ).@usn5? Union All Delete $123456789[$`2esn`][True],_usn4 Ends With 01 Ends With $`1esn` Unwind usn2[$`7esn`..010][00..``] As `5esn` Unwind $`6esn` =~1e1 As @usn6"), - octest:ct_string("Create (`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})-[`1esn`:usn2|#usn8 *1000..]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`),`4esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Delete (`6esn` {@usn6:9e0 Contains `8esn`})<-[`5esn`:usn1|`3esn` *010{`2esn`:`6esn` =~01234567 =~0Xa}]-(usn2 {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789})<-[ *00..{`3esn`:12 Ends With 01234567,`4esn`:00[``..][$`4esn`..]}]->(`2esn` :``)[[999[``..][Null..],usn1 In 1000 In $`5esn`,`5esn`[.e1][0Xa]]] Create ((_usn4 {`8esn`:9e1 In 01 In 999})) Union With Distinct *,@usn5 Starts With \"d_str\" As ``,`5esn` In 12 Order By Count(*)[.e0.._usn4] Asc,$123456789[False.._usn3] Desc,`1esn`[`3esn`..][$@usn6..] Descending Skip 999 In 9e1 In 7 Limit [@usn5 In 0X0123456789ABCDEF,False[0Xa..$@usn5][$`6esn`..12e12]] =~({@usn6:0X0123456789ABCDEF[..usn1]})<-[`4esn`:#usn8]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(#usn8 :`7esn`) =~123456789 Where $#usn8 Is Null Is Null"), - octest:ct_string("Merge `3esn`=((`3esn` :`4esn`:#usn8)<-[#usn8? *0xabc]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})<-[?:`8esn`|:usn1 *123456789..999]-(`3esn` :#usn7)) Unwind \"d_str\" =~`3esn` =~0Xa As `1esn` Union All Optional Match `1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) Where $`3esn` =~$`7esn` =~False With Distinct {`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) As `2esn`,Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null As `5esn` Order By .e0 Contains 01234567 Descending Limit All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])] Remove count(Distinct 0.e0[9e1..][0.0..],$usn2 =~$#usn8).`5esn`?,{`4esn`:9e12 Is Not Null Is Not Null,`8esn`:$0[..`8esn`]}._usn3,@usn5:usn2:@usn6 Union Remove (`` {`5esn`:0X0123456789ABCDEF[.e0..$`4esn`]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :`4esn`:#usn8).@usn5,({@usn6:0X7 In $999 In $``})-[`7esn`{usn1:0 Is Not Null}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`}).@usn6 With *,{`7esn`:Count(*) In 01 In .0}[..{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}][..#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..])] As `5esn`,#usn7 Ends With `4esn` Ends With @usn5 As `` Where $`7esn` Is Null Is Null"), - octest:ct_string("Unwind 07[`6esn`..][`5esn`..] As usn1 Union Match (#usn7 :`6esn`:`7esn`)<-[`3esn`?:_usn3|:`4esn`]->(:`1esn`{_usn4:$_usn3[Null]})-[ *..0X7]->(`5esn` :_usn4:usn1) Detach Delete 9e0 Is Not Null,Count(*)[.e0.._usn4],'s_str'['s_str'..$usn2][_usn3.._usn3]"), - octest:ct_string("Match _usn3=((@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]})) Union Optional Match `1esn`=((usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) Where _usn4 Starts With 0X7 Union Create #usn7=(`3esn` :`8esn`{usn1:`2esn`[$`3esn`..],`6esn`:$12[..``][..$7]})-[@usn5?:``|:_usn4]-(`8esn` :#usn8)<-[?:``|:_usn4]-({`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})"), - octest:ct_string("Match @usn5=({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)<-[?:usn2|#usn8{#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7}]-({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) Merge `6esn`=(:_usn3{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Optional Match `8esn`=(:`8esn`),`5esn`=(((usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1)<-[@usn5:#usn8{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(#usn8 :_usn3))) Where 0.0[..12e12][..$0]"), - octest:ct_string("Return Distinct `3esn` =~`3esn` =~$`6esn` As `7esn` Limit $`7esn` Is Null Is Null Union All With Distinct *,`2esn` Starts With $_usn3 Starts With `2esn` Order By 0X7 In 123.654 In $`2esn` Asc,0 =~12.e12 =~$`` Asc,12.e12 Is Not Null Descending Skip 0.e0[123.654] Create #usn8=(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0})"), - octest:ct_string("With Distinct $`5esn`[$123456789][`1esn`] As `8esn`,[@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] As #usn7 Order By None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] Ascending,Count(*) In 01 In .0 Asc,Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`6esn`[$@usn6..]) In {`7esn`:12e12 Ends With 010 Ends With .0} In None(#usn8 In $`5esn` Is Null Is Null Where 123456789 In $usn2 In `6esn`) Asc Remove None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 9e12[usn2..7][.e1..$`7esn`]).`6esn`?,All(usn1 In 00 Starts With _usn3 Where 1e1[..False]).`4esn`?,Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]|@usn6 Contains .e1 Contains $`4esn`)._usn3! Remove [@usn5 In 0X7 =~.0 =~\"d_str\" Where $`8esn` Starts With 1000|@usn6 Contains .e1 Contains $`4esn`].`8esn`! Union Return Distinct {@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null} Is Not Null Is Not Null,$0 =~$0 =~.e0 As `7esn` Order By Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]) Asc,{@usn5:$`3esn`} Starts With .12 Asc Skip Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Union All Unwind 1000 Contains 123456789 Contains 1e1 As `` Return Distinct $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Limit 9e0 Starts With `6esn` Delete [$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)})"), - octest:ct_string("Remove {#usn7:False[`2esn`..#usn8]}.#usn7?,@usn6(Distinct 0.12 In 01 In $`3esn`,'s_str' Starts With 1000 Starts With #usn8).#usn8,(:`1esn`{`8esn`:Count ( * ) =~Count(*)})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(`1esn` {_usn4:12.e12 Ends With 01 Ends With .e1})._usn4 Union All Detach Delete {`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) Create ``=((@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`))"), - octest:ct_string("With Distinct *,Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) As _usn3 Skip 010 Starts With `7esn` Starts With 9e1 Limit 07[12][$`6esn`] Where $_usn4[$`8esn`..][07..] Unwind 9e0[False] As #usn8 Detach Delete .e0 Is Not Null Is Not Null,{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]} =~Single(usn2 In 1000 Contains 0.e0) =~Any(@usn6 In @usn5 In $`6esn` Where $`7esn` Is Not Null)"), - octest:ct_string("Merge `3esn`=(((:_usn4:usn1{usn2:$`5esn` In False})<-[?:@usn5|`8esn` *..0X7]->(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}))) On Create Set [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]].`1esn` =9e12 =~01 =~$`7esn` On Create Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$`` Remove [@usn5 In $#usn8 Is Null Is Null Where $#usn8 Is Null|123.654[@usn5]].`6esn`! Remove Filter(@usn5 In $#usn8 Is Null Is Null Where $@usn5 =~$`` =~$usn2).`7esn`,Filter(_usn4 In usn1 Contains False Contains `` Where _usn4[$`4esn`..]).#usn8?,[\"d_str\" =~`3esn` =~0Xa,$123456789[..0.12][..#usn7]].usn2! Union All Optional Match (`` :#usn7)<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})<-[`5esn`?:`6esn`]->(`6esn` :`6esn`:`7esn`{_usn4:\"d_str\"}),`4esn`=(((`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[?{`4esn`:0.e0 Ends With 12 Ends With $7,@usn6:$``[_usn4..][`7esn`..]}]->(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]}))) Remove Any(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0).usn1?,({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}).`5esn`! Optional Match (((usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1)<-[@usn5:#usn8{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(#usn8 :_usn3))),((:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[`2esn`:@usn5|`8esn`]->(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7})) Where .e1 Starts With 0.0 Starts With `6esn` Union With Distinct 07[07] Skip 123.654 Contains `2esn` Limit `8esn` In $@usn5 Where 07[$`5esn`..]['s_str'..] Create ((`5esn` {_usn4:0X7 =~``})<-[`2esn`?:usn2|#usn8{`6esn`:0X7[.e12..01234567],@usn6:`7esn`[...e1][..\"d_str\"]}]->(`5esn` :`8esn`{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})),`8esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) Unwind 0.0[999..] As usn1"), - octest:ct_string("Detach Delete All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],`1esn` Contains Count ( * ) Optional Match `3esn`=(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)})-[usn2{`6esn`:$@usn6[_usn3..0.e0]}]->({usn1:`4esn` In $12 In `8esn`})<-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`6esn` {`8esn`:`8esn` In $@usn5}) Where 0x0[...e12][..@usn5] Union Unwind 123456789 Starts With `2esn` Starts With .0 As `3esn` Union All Create @usn6=(:#usn8)<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[_usn3?:@usn5|`8esn`{`3esn`:`4esn`[7..][1000..],usn2:123456789 Starts With `2esn` Starts With 9e12}]-(`7esn` {`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`}),`2esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) Optional Match #usn8=({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]}),(((`3esn` :`8esn`)-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(_usn3 :usn2:@usn6)-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}))) Where 7[..12e12][..$`6esn`] Create ((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]}))"), - octest:ct_string("With Single(#usn7 In 01234567[$`3esn`..]) Is Null As `3esn` Order By .e12[usn2][01] Desc,$`7esn` Ends With 07 Ends With 07 Descending Skip 7[..0X7][..'s_str'] Limit {`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) Unwind [`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) As #usn8 Remove Extract(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null).@usn5?,{`5esn`:#usn7[..$1000][..01],`8esn`:True[Count(*)..][1e1..]}.@usn5?,count(Distinct $#usn8,False Is Not Null Is Not Null)._usn3? Union All Detach Delete 123.654[@usn5] Merge usn2=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) On Create Set None(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0).`4esn`! =0[usn2..],[@usn6[$`3esn`]].`4esn` =01 In _usn3 In 12,`1esn`+=123456789 =~usn1 Unwind `7esn`(0.0[1000..][.e1..],$@usn5 Contains 01)[Any(usn1 In 0x0[..`4esn`] Where 0X7[.e12..01234567])][[$@usn6 Contains 07 Contains 0.e0,`5esn` In 12]] As `8esn` Union All Create #usn7=({`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]->(`3esn` {_usn3:@usn6 Contains _usn4 Contains $`4esn`})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->({_usn3:12.e12 In $0 In Count(*)}) Match `7esn`=(@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}),@usn6=({_usn3:12.e12 In $0 In Count(*)})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}) Where 1e1 In 9e0 In 9e0 With Distinct `7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As `6esn` Skip 01234567[$`7esn`][_usn3] Limit usn1 Is Not Null Is Not Null"), - octest:ct_string("Remove {usn1:0e0 Is Not Null Is Not Null,@usn6:0X7[12]}.usn2,`8esn`(Distinct 0X0123456789ABCDEF[..usn1]).usn1!,{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}.#usn8 Return Distinct 0Xa Is Not Null Is Not Null As `1esn`,(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})[..Filter(#usn8 In $`5esn` Is Null Is Null Where 0Xa Is Null Is Null)][..(`7esn` {@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})] As usn1 Skip False[`6esn`][07] Limit [usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]] Starts With (`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` ) Starts With (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8) Union All Unwind .e12 Starts With True As `7esn` Unwind $_usn3 =~`7esn` =~$_usn4 As `5esn` With Distinct *,{`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] Order By 9e1 Starts With _usn3 Starts With `4esn` Descending,usn2(Distinct _usn3 Contains @usn6 Contains 1.e1)[Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where _usn3 Is Null)..[12e12[0.e0][9e1]]][Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``])..Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)] Descending Limit 0 Starts With 12e12 Starts With `4esn` Union Unwind $`8esn` Starts With 1000 As `7esn`"), - octest:ct_string("Detach Delete $999[12.0..] Remove ``:#usn7 Union Delete #usn8 Ends With `4esn` Ends With $`4esn`,$_usn3[..Count ( * )][..@usn5],$usn2 In 9e0 In $7 Detach Delete Extract(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null) =~Any(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null) =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1],$7 Contains 0x0 Contains ``,[\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Merge (`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :`4esn`:#usn8) On Create Set `2esn` =1e1[0.0],`4esn`+=All(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) =~None(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0) =~None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `7esn` Starts With $usn2 Starts With .e0) On Match Set #usn7 =.12 Is Not Null Is Not Null,Filter(usn2 In 1000 Contains 0.e0 Where 123456789 Starts With `2esn` Starts With .0).`1esn`? =[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][``($`4esn`[usn1..$#usn8][12.0..`3esn`])..[`6esn` In 0X7 =~``|$#usn7[...e12][..$7]]][(:``{@usn5:$@usn6 Contains Count ( * ),`2esn`:$0 Is Not Null})-[_usn3?:`5esn`|`1esn` *0X0123456789ABCDEF..]->(`1esn` :#usn7{_usn3:999[.e12][01],`6esn`:9e12 Is Not Null Is Not Null})<-[`5esn`?:usn1|`3esn` *1000..]-(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})..Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])]"), - octest:ct_string("Merge `5esn`=(({`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})-[#usn8?]-(:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})) Union Remove None(#usn7 In 01234567[$`3esn`..] Where 0X7 In $999 In $``).usn1?"), - octest:ct_string("Remove @usn6:`8esn` Create (`2esn` :``)<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(_usn3 :_usn4:usn1),`8esn`=(`4esn` {@usn5:1e1 In $#usn8 In 12e12})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`7esn` {`8esn`:$123456789 Contains 01 Contains 0.12})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8) Unwind 0x0[0.0][$_usn4] As #usn8 Union Detach Delete 0e0 Is Null Is Null,010 Contains 0X0123456789ABCDEF Remove {#usn8:0X0123456789ABCDEF[..usn1]}.`5esn`! With *,00 In 1e1 As `7esn`,0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Skip 7 In @usn5 In $`4esn` Limit {`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]]"), - octest:ct_string("Return Distinct #usn8 In $0 As `1esn`,'s_str' In \"d_str\" In 123456789,[0Xa[$``..][01234567..]] Contains `3esn`(Distinct _usn3 In .e1 In $12) Contains (`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']}) As @usn6 Order By Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Ascending,0xabc[$@usn5] Asc,usn1[..$_usn4][..``] Ascending"), - octest:ct_string("Match `5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Where $`2esn` Contains usn1 Contains `2esn` Unwind 12e12[0.e0][9e1] As usn2 Union Remove None(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7]).usn2!,(:`6esn`:`7esn`{_usn4:12[0X7..@usn6],_usn3:123456789 In $usn2 In `6esn`})-[@usn6?:#usn7|:_usn4 *00..]->(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})<-[? *12..0xabc{@usn5:0xabc[$@usn5]}]-(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})._usn4! Merge @usn5=((:#usn8$usn1)-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})) On Create Set `1esn`+=Null[0e0][12],Filter(usn1 In 0x0[..`4esn`] Where $`` Ends With 12e12).usn1! =Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] On Create Set `6esn`+=$123456789 Ends With .e1 Create (($999))"), - octest:ct_string("Match (usn1 :`3esn`:`1esn`)-[?:`4esn`|:`7esn` *..0x0]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Where #usn8 Ends With `4esn` Ends With $`4esn` Return Distinct *,$7[12.e12..] As #usn7,`4esn`[$#usn7] As `1esn` Skip #usn7[..$1000][..01] Limit {`8esn`:@usn5[..True][..0X7],`1esn`:`1esn` Contains Count ( * )}[{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)] With Distinct 12.e12 Contains $`5esn` As `` Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Limit All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Where False In $`7esn` In .0 Union Remove [usn1 In 0x0[..`4esn`]|`` Starts With @usn5].`6esn`?,(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})._usn4? Unwind [010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]][(:@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})..][Extract(#usn8 In $`5esn` Is Null Is Null Where 1000[0.0][Null])..] As `5esn` Unwind .e12 Starts With True As `7esn` Union All With Distinct *,Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null As `6esn` Where $@usn6 Contains 0 Contains $`2esn` Remove ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`5esn`? *010]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null}).`7esn`! Delete 0X0123456789ABCDEF Contains $usn1"), - octest:ct_string("Return *,Count ( * ) In 010 As `1esn` Limit $@usn5 =~07 =~True Merge _usn3=(@usn5 {@usn6:$123456789[0X7..12.e12]}) On Match Set @usn5 =12.e12['s_str'],@usn6 =$usn2[False..`7esn`][`7esn`.._usn3],({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})<-[usn2?:`4esn`|:`7esn` *0X0123456789ABCDEF..]-({usn1:$1000 Contains $`3esn`})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0}).@usn5? =07[07] Return Distinct *,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}) Union All Merge usn1=(`4esn` :#usn7)-[_usn4?:`6esn`]-(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) Delete [07,$_usn3[..Count ( * )][..@usn5]][All(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0)..{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}][[010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]]..Filter(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12)],`6esn` Starts With $usn2 Starts With 0.0 Remove (:`5esn`{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12})-[`5esn`?:`2esn`|usn2 *999..]->(`5esn` {`5esn`:$`5esn`[False]}).`8esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]).`7esn` Union All Merge @usn5=((({`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}))) On Match Set usn2 =$`4esn`[$`6esn`] On Create Set `6esn` =Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`),{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}.`2esn`? =.12[`1esn`..],`5esn`+=0 Starts With `6esn` Starts With 0X0123456789ABCDEF Merge (usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)})-[usn2{`6esn`:$@usn6[_usn3..0.e0]}]->({usn1:`4esn` In $12 In `8esn`})<-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`6esn` {`8esn`:`8esn` In $@usn5}) On Match Set Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..]).`8esn` =All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])],@usn6:#usn8"), - octest:ct_string("Unwind .e12 Starts With True As `7esn` Unwind $_usn3 =~`7esn` =~$_usn4 As `5esn` With Distinct *,{`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] Order By 9e1 Starts With _usn3 Starts With `4esn` Descending,usn2(Distinct _usn3 Contains @usn6 Contains 1.e1)[Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where _usn3 Is Null)..[12e12[0.e0][9e1]]][Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``])..Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)] Descending Limit 0 Starts With 12e12 Starts With `4esn` Union All Delete 00 Starts With _usn3,(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})[Single(`4esn` In 's_str'[12..'s_str'])..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)],count(Distinct 's_str' Starts With 1000 Starts With #usn8,12e12 Starts With $123456789 Starts With 12.0)[[_usn4 In usn1 Contains False Contains `` Where $#usn8]][[$`1esn` Is Null,\"d_str\" =~`6esn` =~0Xa,$usn2[0e0..]]]"), - octest:ct_string("Optional Match `3esn`=(usn1 :`6esn`:`7esn`),`1esn`=(({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})) Unwind [\"d_str\" Starts With $usn1,.12 Contains $`4esn` Contains $`6esn`,01234567 =~usn1] Is Null Is Null As _usn3 Remove [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`7esn` Ends With $`2esn` Ends With $usn1|0[0.12..]].@usn5?,{`2esn`:00[01234567][False]}.`1esn`,[_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567|_usn4[$`4esn`..]].`2esn`! Union Return Distinct $`5esn`[$123456789][`1esn`],(`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})-[`4esn`?:`8esn`|:usn1 *..0x0]->(:`7esn`{``:$`1esn` Starts With @usn6}) Ends With `6esn`(Distinct $`4esn`[usn1..$#usn8][12.0..`3esn`],12.e12['s_str']) Ends With (`7esn` {`8esn`:Count ( * ) =~Count(*)})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}) As `7esn`,01234567 As `6esn` Detach Delete $@usn5 In 12e12 In Count(*),`` =~12 =~$#usn7,Null Contains _usn4 Union Unwind .e12[usn2][01] As _usn3 Match usn2=((#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`6esn`?:usn1|`3esn`{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})),((usn1 :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)) Where $0[01234567..00][$`2esn`..$@usn6] Merge (((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) On Create Set @usn6 =`3esn`[..7][..12e12]"), - octest:ct_string("Delete Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}),$@usn6 In $`5esn` In $usn2 With Distinct `` Is Not Null Is Not Null As @usn6,True[Count(*)..][1e1..] Union All Detach Delete Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0},12 Ends With .e12 Ends With $7 Optional Match `6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Where 0.e0[@usn6][0x0] Match (((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))) Where $usn2 In 9e0 In $7"), - octest:ct_string("Remove Filter(usn1 In 00 Starts With _usn3 Where 123456789[`4esn`..][Count ( * )..])._usn3,`8esn`:`3esn`:`1esn`,[usn1 In 00 Starts With _usn3 Where False[.e1..Null]].`4esn`? Return $_usn4[12e12][`4esn`] As `5esn`,@usn6[`5esn`..$`3esn`] As ``,0.0[..12e12][..$0] Order By usn2[$`1esn`...0] Descending,123.654 Is Not Null Is Not Null Desc Limit 0X7 =~`4esn` =~`8esn` Delete 9e0 =~$`5esn`,@usn5 =~.0 =~$`1esn`,Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0}"), - octest:ct_string("Merge `7esn`=((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)) Merge (((`3esn` )-[?:#usn7|:_usn4]-(usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]}))) On Match Set `5esn` =01234567 Starts With $_usn4,#usn7 =\"d_str\" =~`6esn` =~0Xa,{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]}.usn2? =9e12 Contains .e0 Contains .e0 Union All Return Distinct *,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}) Skip ({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}) =~None(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Return Distinct *,{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}[Extract(_usn4 In usn1 Contains False Contains `` Where `5esn`[.e1][0Xa])..] Order By [@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|#usn7 Starts With `1esn`][[@usn5 In .12[#usn7][$`8esn`] Where 0.12 In $`4esn` In `6esn`|$`1esn` Starts With @usn6]..][$`1esn`..] Ascending"), - octest:ct_string("Create #usn7=(((`` :usn1)<-[#usn8:`3esn`|:`4esn` *0..010]->(`3esn` :usn2:@usn6)-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}))) Delete Extract(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|Null Starts With $`7esn` Starts With `2esn`) =~{`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0},0x0 Starts With $`7esn` Starts With `2esn` Unwind [01234567 =~usn1,9e0 =~$`5esn`,usn2[$`1esn`...0]][..[.12 In $999 In `5esn`,010 =~`6esn`,#usn7 Contains .0 Contains .e1]] As `8esn` Union All Optional Match ((_usn3 :_usn4:usn1)<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})),(:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa})-[:usn1|`3esn`]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]}) Where 00[01234567][False] Return Distinct *,Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]]"), - octest:ct_string("Create ({``:.e12[..0.e0][..$`1esn`]})-[_usn3:#usn8]-(usn1 :#usn7) Merge `3esn`=((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) On Create Set ``+={usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null,@usn5+=usn1[..@usn5][...e0],`2esn`+=All(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True])[..[`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|_usn3 In .e1 In $12]][..{`2esn`:$usn1[1e1.._usn3][$@usn6..$#usn7]}] On Create Set usn1 =(`6esn` :_usn4:usn1{`6esn`:00 In 12.e12})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``)[Extract(@usn5 In .12[#usn7][$`8esn`] Where #usn8 Contains .e0 Contains $`8esn`|.e0[..999][..0X7])..Any(#usn7 In 01234567[$`3esn`..] Where Null[01234567][01234567])],_usn4 =Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`)[@usn6..][usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`])..] Match (`7esn` {_usn3:usn1 Contains $``})<-[usn1]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12}),(({`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})-[#usn8?]-(:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1}))"), - octest:ct_string("With Distinct 01234567[.12..7][1000..1.e1],123456789 Starts With `2esn` Starts With 9e12 As `3esn`,$12[01..][1.e1..] Order By $`1esn` Starts With `8esn` Starts With $0 Descending,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] Desc Unwind $`8esn`[``..][123.654..] As `7esn` Union Match #usn7=((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 )),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) Merge `8esn`=(((:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[:#usn7|:_usn4{``:$1000 Is Null Is Null}]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`}))) Merge _usn4=((@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) On Match Set Extract(usn2 In 1000 Contains 0.e0 Where $1000[01234567]|$`6esn`[Count(*)..0.e0][0.0..Count ( * )]).`8esn`! =$123456789[False.._usn3],`3esn`(Distinct 0X7 In $999 In $``,$0 Is Not Null).`7esn`? =0.e0[123.654],`1esn`+=True Starts With 12.0 Starts With $@usn5 Union All Return Distinct *,All(usn1 In 0x0[..`4esn`] Where $0[$#usn8..01234567]) In [_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0|$`7esn` Is Not Null] In [.12 Ends With `1esn` Ends With $`1esn`,$usn2[False..`7esn`][`7esn`.._usn3],\"d_str\" Contains `3esn` Contains 00] Skip $`6esn`[$@usn6..] Limit 00 Starts With _usn3"), - octest:ct_string("Remove Any(`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]).`3esn`,[$`2esn`[..7][..$usn1]]._usn4!,[0X0123456789ABCDEF Is Not Null,\"d_str\"].`4esn`! Return Distinct 1.e1 =~$_usn4 As usn2,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,{_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] Order By $12 Starts With #usn7 Asc,$0[$0..] Descending Merge `8esn`=(:`8esn`) On Match Set usn2+=.e1 Ends With _usn4 Ends With @usn5,@usn5+=_usn3 In .e1 In $12,Extract(`4esn` In `6esn`[1e1..] Where $`7esn` Ends With `1esn` Ends With True).`` =010 In @usn6"), - octest:ct_string("Return *,9e1['s_str'..1e1] As #usn7,01234567 As `6esn` Skip `2esn` In Count(*) In 9e0 Limit usn2 Is Not Null Union Unwind usn2 Starts With @usn6 As #usn7 With $`2esn`[..`2esn`] As `5esn` Order By _usn3 =~00 Asc Where #usn7 Ends With `4esn` Ends With @usn5"), - octest:ct_string("Unwind `2esn` Is Not Null Is Not Null As _usn4 With \"d_str\" =~`6esn` =~0Xa,.e1[usn1..] As `6esn` Union All With Distinct *,9e12[_usn3] As `8esn` Skip 7 Contains 9e1 Limit `5esn`[`1esn`..`1esn`] Where @usn5 In $`6esn` Optional Match ((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})),((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})) Where 123456789 In $usn2 In `6esn`"), - octest:ct_string("Remove Extract(`6esn` In 0X7 =~`` Where $0[$#usn8..01234567]|0x0 =~$`7esn` =~@usn6).`8esn`!,{`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`}.`1esn` Return *,False[`6esn`][07] Order By 01234567[Null..0.e0][Count(*)..$#usn8] Descending,\"d_str\" =~`6esn` =~0Xa Ascending Skip 0X7 Ends With `3esn` Return $12[`3esn`..0e0][`2esn`..$7] As #usn8,0.12 =~01 =~12 Order By Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Descending,{@usn6:12.0[``],_usn4:$`3esn` Contains 0X0123456789ABCDEF Contains 00} Ends With Single(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Ends With Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999|12.0[``]) Descending Limit (`4esn` :`8esn`{_usn4:0 Is Null Is Null})-[`6esn`:`8esn`|:usn1$_usn3]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Ends With Filter(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999) Ends With [`4esn` In `6esn`[1e1..] Where 07[12e12]] Union Merge ((:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})<-[@usn6:`3esn`|:`4esn`*]->(`6esn` :`5esn`)) On Create Set Single(@usn5 In $#usn8 Is Null Is Null Where 12.e12 In $0 In Count(*)).#usn7! =$#usn7 =~0xabc,#usn7:_usn4:usn1,`5esn`+={`7esn`:Count(*) In 01 In .0}[..{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}][..#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..])] On Match Set (_usn4 {#usn7:False[`2esn`..#usn8],#usn8:`5esn`[`1esn`..`1esn`]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]}).`3esn` =01234567[$@usn6..0X7][$`1esn`..123.654] Detach Delete Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1),$@usn5 =~07 =~True"), - octest:ct_string("Merge ((#usn8 :`4esn`:#usn8)<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] On Create Set `4esn` =.12 Is Not Null Is Not Null,{@usn6:True[..'s_str'][..01]}.`2esn` =12.e12[...0][..0x0],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Return $_usn4[12e12][`4esn`] As `5esn`,@usn6[`5esn`..$`3esn`] As ``,0.0[..12e12][..$0] Order By usn2[$`1esn`...0] Descending,123.654 Is Not Null Is Not Null Desc Limit 0X7 =~`4esn` =~`8esn` Return Distinct {@usn6:`7esn` In 999 In @usn6} Starts With Extract(usn1 In 0x0[..`4esn`] Where 0x0|07 Ends With 07) Starts With Filter(usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12),False Ends With $`8esn`,``[$`3esn`][$`2esn`] As usn1 Order By $`6esn` Is Null Is Null Desc Limit 999 In $_usn4 In 0X7 Union Return $`5esn` In `2esn` In .0 As `7esn`,None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]) As `` Order By 00 Is Null Is Null Descending Skip $`7esn` Ends With $@usn5 Limit 0X0123456789ABCDEF Contains 12.e12 Contains 999 Optional Match ((_usn4 {`8esn`:9e1 In 01 In 999})),`1esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}) Where @usn5 Contains $`1esn` Contains 999"), - octest:ct_string("Create ((:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]})),((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Unwind `4esn` =~$`3esn` =~$123456789 As #usn7 With Distinct [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending,9e12 Asc Skip 0X7[.e12..01234567] Limit $_usn4[0.12..$`6esn`][00..$@usn6]"), - octest:ct_string("Create `2esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}),(#usn7 :@usn5)<-[@usn5*]->({``:$1000 Is Null Is Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(`7esn` :`2esn`:`3esn`) Merge `4esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Union All Remove [Null Contains _usn4].`8esn`!,Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn2[`3esn`][_usn3]).`7esn`?,{#usn7:False[.e1..Null],`1esn`:9e0 Is Null Is Null}.@usn5!"), - octest:ct_string("Delete Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null Union All Return Distinct *,`4esn` Is Null Order By `5esn` In $999 Descending Limit `3esn` =~$`5esn` =~12 Union Return Distinct *,usn2 =~0x0,07 In `5esn` In 12e12 Skip Null Contains 9e1 Limit [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..]"), - octest:ct_string("Unwind _usn4[0xabc..] As #usn8"), - octest:ct_string("Remove (_usn4 {#usn7:False[`2esn`..#usn8],#usn8:`5esn`[`1esn`..`1esn`]})<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0).#usn8,[Count(*)[12.e12..]].#usn7,`8esn`:#usn7 With *,`2esn` Starts With $_usn3 Starts With `2esn` Order By Null[@usn6..][9e1..] Ascending Skip [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] With Distinct 12.e12 Contains $`5esn` As `` Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Limit All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Where False In $`7esn` In .0 Union Optional Match (`5esn` {_usn4:0X7 =~``}),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null})) Union All Delete 0X7[12],0x0 In `8esn` In 999,$usn2[..12.0]"), - octest:ct_string("Unwind 00 Starts With _usn3 As #usn7 Union All Create `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})),((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`1esn`{`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654}]->(`7esn` :`7esn`)) Return $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Limit 9e0 Starts With `6esn` Merge ((({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)<-[#usn7 *123456789..999]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}))) On Create Set `8esn` =``"), - octest:ct_string("Merge usn2=(_usn4 :``{`2esn`:9e1 In 01 In 999,`5esn`:$@usn6[..$usn1]})-[`5esn`?:``|:_usn4]->(:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[@usn6?:`1esn`]-(:`5esn`) On Match Set [usn1 In 00 Starts With _usn3 Where `6esn`[1e1..]].`5esn`! =Count ( * )[Count ( * )..12e12][usn1..1000],@usn5+=usn1 Contains $`` On Create Set `1esn` =0X0123456789ABCDEF[.e0..$`4esn`] Match #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) Where 12e12 Is Not Null With Distinct {usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]} =~Single(usn2 In 1000 Contains 0.e0) =~Any(@usn6 In @usn5 In $`6esn` Where $`7esn` Is Not Null) As `3esn`,Filter(usn1 In 00 Starts With _usn3 Where $_usn4[`3esn`][0])[..Extract(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12|0x0 =~_usn4)][..{_usn4:.12 =~.12 =~1e1,#usn7:.e1 Starts With 0.0 Starts With `6esn`}] Order By @usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Ascending,$`3esn` =~Null Desc Skip Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789} Where `3esn`[$`1esn`..]"), - octest:ct_string("Match `4esn`=((:`7esn`{``:$`1esn` Starts With @usn6})),@usn5=((@usn6 :#usn7{@usn5:Null Is Null Is Null})<-[``?:@usn5|`8esn`]->(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})) Create ((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) Remove All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null).@usn5,`8esn`:_usn3,#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..]).`7esn`! Union All Remove [.12 Contains $`4esn` Contains $`6esn`].@usn6,[07 In `5esn` In 12e12]._usn3? Remove [Null Contains _usn4].`8esn`!,Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn2[`3esn`][_usn3]).`7esn`?,{#usn7:False[.e1..Null],`1esn`:9e0 Is Null Is Null}.@usn5! Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Union All Match `8esn`=((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Where $usn2[0e0..]"), - octest:ct_string("Unwind 7 In $`3esn` In #usn7 As `5esn` Create _usn3=(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})) With Distinct None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} Order By 123.654[`5esn`] Descending,$`2esn`[..7][..$usn1] Descending,123456789 Starts With _usn4 Starts With @usn6 Descending Where $`4esn`[$`2esn`..] Union Return Distinct #usn8 In $0 As `1esn`,'s_str' In \"d_str\" In 123456789,[0Xa[$``..][01234567..]] Contains `3esn`(Distinct _usn3 In .e1 In $12) Contains (`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']}) As @usn6 Order By Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Ascending,0xabc[$@usn5] Asc,usn1[..$_usn4][..``] Ascending Union All Unwind 0X7 =~`4esn` =~`8esn` As `7esn` Remove {`8esn`:Count ( * ) =~Count(*)}.`6esn`,({@usn6:0X0123456789ABCDEF[..usn1]})<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)._usn4?,(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`4esn` Optional Match `4esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}),(((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Where $_usn3[..Count ( * )][..@usn5]"), - octest:ct_string("Detach Delete ({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]),#usn8 Is Not Null Union Merge usn1=(usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}) On Create Set {`6esn`:$`3esn` Contains 0X0123456789ABCDEF Contains 00,`1esn`:1000[123.654..9e12][1000.._usn3]}.`1esn`! =[$`1esn` Is Null Is Null,$12 Contains 123.654 Contains `8esn`] Starts With {`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]} Starts With Filter(usn1 In $123456789 Contains usn2 Where 01234567[.12..7][1000..1.e1]) On Create Set `2esn` =$usn2[False..`7esn`][`7esn`.._usn3],``+=_usn4 Ends With 01 Ends With $`1esn`,``+=01 Ends With .e0 Unwind [1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As @usn6 Merge @usn5=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) On Match Set usn1 =_usn3[0],[`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]].`1esn`! =Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[usn2($#usn8 Is Null Is Null)..Extract(usn1 In 0x0[..`4esn`] Where 123456789 In $usn2 In `6esn`|@usn5[..True][..0X7])][(`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` )..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]]"), - octest:ct_string("Remove `3esn`:#usn7,None(`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]).#usn8? Union All Unwind #usn8[$#usn8..] As `4esn` Union All Remove All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.e12 Contains `5esn`).`6esn`? Match (@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Remove Any(#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7).`3esn`?,{`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`}.`4esn`!"), - octest:ct_string("With Distinct *,.e1 Starts With $`8esn` Where 12.e12[$1000..]"), - octest:ct_string("Match usn2=(((`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[?:`5esn`|`1esn` *999..]->(:``)<-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))),`2esn`=(({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(:_usn4:usn1)) Where `4esn` =~123456789 Union All Create _usn4=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))),@usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})) Remove {@usn6:123456789 =~$123456789,`4esn`:usn1 Contains False Contains ``}.`3esn`! Optional Match `6esn`=(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}),@usn5=(`3esn` :`8esn`{usn1:`2esn`[$`3esn`..],`6esn`:$12[..``][..$7]})-[@usn5?:``|:_usn4]-(`8esn` :#usn8)<-[?:``|:_usn4]-({`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12}) Where $@usn6 Contains 07 Contains 0.e0 Union All With 123.654 Is Not Null Is Not Null As `3esn`,$usn1 In 1000 In $#usn7 As `8esn` Order By .12 Starts With $usn2 Asc,[usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..] Asc,{`8esn`:$123456789 Is Null Is Null,_usn3:$`4esn` Starts With 1e1}[(#usn7 :`2esn`:`3esn`)<-[`8esn`?]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})..All(_usn4 In usn1 Contains False Contains `` Where $`8esn`[$``..$7][$1000..$`7esn`])] Descending Skip $@usn5[$#usn8..][9e1..] Limit $123456789[0X7..12.e12] Where 0.12[0.e0..][`4esn`..]"), - octest:ct_string("Optional Match `1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) Where $`3esn` =~$`7esn` =~False With Distinct {`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) As `2esn`,Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null As `5esn` Order By .e0 Contains 01234567 Descending Limit All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])] Remove count(Distinct 0.e0[9e1..][0.0..],$usn2 =~$#usn8).`5esn`?,{`4esn`:9e12 Is Not Null Is Not Null,`8esn`:$0[..`8esn`]}._usn3,@usn5:usn2:@usn6 Union Return 1.e1 =~$_usn4,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn` Order By $`8esn` In \"d_str\" In 9e12 Desc,`3esn`(.e0 =~`5esn`)[Single(`6esn` In 0X7 =~`` Where $`3esn` =~Null)][[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $_usn3[$`4esn`..Null]|False[`2esn`..#usn8]]] Asc,1e1 In 9e0 In 9e0 Ascending"), - octest:ct_string("With Distinct *,{`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] Limit [@usn5 In 0X0123456789ABCDEF,False[0Xa..$@usn5][$`6esn`..12e12]] =~({@usn6:0X0123456789ABCDEF[..usn1]})<-[`4esn`:#usn8]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(#usn8 :`7esn`) =~123456789 Remove `7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``]).@usn5,{#usn7:0Xa Is Not Null Is Not Null,#usn7:.0[$`6esn`..False]}.`4esn`?,[usn1[..@usn5][...e0],$`8esn`[``..][123.654..]].`` Match `2esn`=({``:.e12[..0.e0][..$`1esn`]})-[_usn3:#usn8]-(usn1 :#usn7) Union All Return Distinct *,({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) Order By [0 Is Null Is Null][..[_usn3 =~00,9e1 Is Null Is Null]] Descending,Single(`4esn` In `6esn`['s_str'..][010..] Where 12.0 Contains 0.e0)[..Any(`4esn` In 's_str'[12..'s_str'] Where Count(*)[`7esn`..$12])][..Extract(@usn5 In .12[#usn7][$`8esn`] Where 01234567 =~usn1)] Ascending,`8esn` In $@usn5 Asc Limit $#usn8 Is Null Match #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) Union Return Distinct (_usn3 :`6esn`:`7esn`{usn1:$_usn3[9e1][$_usn4],`8esn`:123456789 =~_usn4 =~$0})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-({`1esn`:@usn6}) In _usn3(0x0[0X7..][usn1..]) In None(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str') As _usn4 Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending Skip 07[12][$`6esn`] Remove ({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})-[#usn8?]-(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7}).@usn6?,{`3esn`:`4esn`[7..][1000..],usn2:123456789 Starts With `2esn` Starts With 9e12}.`8esn`!,@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12).`5esn`! Create ((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})),#usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}))"), - octest:ct_string("Optional Match #usn8=((({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null})<-[`7esn`?:`8esn`|:usn1]-(`7esn` :#usn8)-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`))) Detach Delete $`6esn`[$@usn6..],`6esn`[0X7..][0x0..],Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null Remove Filter(usn2 In 1000 Contains 0.e0 Where 12e12[$`5esn`][07])._usn4? Union Return 01234567 Is Null Is Null As `3esn`,0.12 Contains $12 Contains `8esn` As `5esn`,9e0 Starts With `6esn` Skip `3esn` Ends With 010 Limit Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]} Merge (`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`7esn` :`4esn`:#usn8{`2esn`:Count(*)[..`3esn`]})-[? *07..{@usn6:12[..True][..$`4esn`],`4esn`:.0[$`6esn`..False]}]-({`4esn`:@usn5 Ends With $`3esn` Ends With 12e12,`8esn`:Null Starts With $`7esn` Starts With `2esn`}) On Create Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..] On Create Set `` =$`6esn` =~Null =~9e12 Create (((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))) Union With Distinct Extract(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null) Ends With `2esn`(`7esn`[Null..][@usn5..],123.654[12.e12..1e1]) Ends With Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]) As `7esn` Skip .e0[..0X0123456789ABCDEF][...e12] Limit $`4esn`[9e1..][0..] Where `1esn` In 999 In $#usn7 Remove [`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789]|0.12[Null..]].`8esn`?,All(`4esn` In 's_str'[12..'s_str'] Where $`8esn`[..$``]).`7esn`!,Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`!"), - octest:ct_string("Unwind Extract(usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`) Contains [0 Contains 12e12,0xabc Ends With $7 Ends With $`2esn`,0x0 =~_usn4] As `7esn` Merge ((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ))"), - octest:ct_string("With `2esn` In 7 In usn2,$0 =~$usn1 =~9e1 As `5esn`,@usn5[_usn4..][.e0..] As usn1 Skip Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] Optional Match ((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})),(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union Remove [`5esn`[`1esn`..`1esn`],.12[#usn7][$`8esn`]]._usn3,None(usn1 In 0x0[..`4esn`] Where \"d_str\" Contains `3esn` Contains 00).`6esn` Union All Unwind 01234567[.12..7][1000..1.e1] As `` Remove [.12 Starts With .12 Starts With `3esn`,Count ( * )[Count ( * )..12e12][usn1..1000],False In `3esn`].#usn7,{usn1:$1000 Contains $`3esn`}.#usn8!,None(`4esn` In $`8esn` Starts With 1000 Where True Starts With $`8esn` Starts With \"d_str\").`4esn`!"), - octest:ct_string("Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`).``? Unwind $_usn4[`3esn`][0] As `7esn` Optional Match ((`5esn` :#usn7)<-[?:usn2|#usn8 *1000..]->(@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})),`2esn`=((:@usn5{#usn7:1e1[@usn5..]})<-[? *0..010]-({@usn6:$123456789 Is Null Is Null,@usn6:`6esn`[1.e1..$#usn7][.e0..True]})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]})) Where False In 123456789 In $0"), - octest:ct_string("Create (_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[`7esn`?:`4esn`|:`7esn` *..0X7]-(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) With Count(*) In 01 In .0,1000 Contains $#usn7 Contains `6esn` Skip (`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`})<-[ *0xabc{`1esn`:123.654 In \"d_str\" In $_usn3}]-({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0}) =~{#usn8:$@usn5[#usn8..][$`1esn`..]} =~{#usn8:0X0123456789ABCDEF[..usn1]} Limit $_usn3[..Count ( * )][..@usn5] Where $123456789 =~$`5esn` =~07 Match `1esn`=(((`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})-[ *010{@usn5:Null Is Null Is Null}]-(:`5esn`)<-[`7esn`{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}]-(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})))"), - octest:ct_string("Create (:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}) Unwind [@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] As usn1 Merge (`7esn` {_usn3:usn1 Contains $``})<-[usn1]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12}) Union All Remove (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`).`2esn`,[.12 Contains $`4esn` Contains $`6esn`].@usn6 Unwind $123456789 =~12.e12 =~@usn5 As `1esn` Merge ((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})) On Create Set `2esn`(Distinct $`2esn`[..7][..$usn1]).`1esn`? ={`4esn`:.12 Starts With 0Xa} Starts With All(usn1 In 00 Starts With _usn3 Where `6esn`[False..0.0][12e12..$usn2]),`5esn` =$usn1[0.12..]['s_str'..],({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})-[#usn8?]-(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7}).`6esn`? =[999[.e12][01],999 In 9e1 In 7,0xabc Contains Null Contains 9e12][All(`6esn` In 0X7 =~`` Where 0.12[Null..])..[`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]]][count(010 Contains Count(*))..(:`4esn`:#usn8)-[:#usn8 *..0X7]->({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6)]"), - octest:ct_string("Delete 0.0[1000..][.e1..] Remove [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0].`3esn`,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``! Merge (((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))) On Match Set usn1 =0x0[$`3esn`..010][$#usn7..00] Union All Unwind 0.0[1000..][.e1..] As usn1"), - octest:ct_string("With Distinct *,Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null As `6esn` Where $@usn6 Contains 0 Contains $`2esn` Remove ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`5esn`? *010]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null}).`7esn`! Delete 0X0123456789ABCDEF Contains $usn1 Union Delete {#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] Return Distinct *,9e12 Ends With 0X0123456789ABCDEF Ends With #usn7 As `5esn`,$12[`3esn`..0e0][`2esn`..$7] As #usn8 Order By $`2esn` Starts With .e0 Starts With 12.0 Descending,{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,999 Is Null Is Null Desc Limit $7 Ends With `5esn`"), - octest:ct_string("Merge (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0) On Match Set usn2:#usn7,usn2 =[usn1[..@usn5][...e0]] In Extract(`6esn` In 0X7 =~`` Where $1000 Contains $`3esn`|12 Ends With 01234567) In {`3esn`:$`5esn` In `2esn` In .0,``:0e0 Is Null Is Null},Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|@usn6[..0xabc][..$#usn7])._usn3 =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..] Detach Delete @usn5 Contains 01 Contains 12,#usn7 Starts With .e12 Starts With $`7esn`,{_usn3:0 Contains 12e12}[Extract(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`)][Extract(@usn6 In @usn5 In $`6esn` Where usn1 Contains $``)] With Distinct *,`7esn`(0.0[1000..][.e1..],$@usn5 Contains 01)[Any(usn1 In 0x0[..`4esn`] Where 0X7[.e12..01234567])][[$@usn6 Contains 07 Contains 0.e0,`5esn` In 12]] Limit [$#usn8 In .e12 In 9e1][(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[ *00..{`2esn`:$0 Is Not Null}]-(`` :#usn7$0)][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn`[1e1..07][0x0..Count ( * )])] Where 12 Ends With .e12 Ends With $7"), - octest:ct_string("Remove Extract(usn1 In 0x0[..`4esn`] Where $`2esn`[123456789..][00..]).#usn7? Union Create usn1=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})),`4esn`=((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})) Optional Match #usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})),@usn5=(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})<-[`2esn` *12..0xabc{`6esn`:$123456789[0.0..],@usn5:999[$`6esn`]}]-(`7esn` {`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) Where @usn5[..True][..0X7] With Distinct Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] As @usn5,12 Is Null Is Null As #usn7 Limit 0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Where 12[..9e0][..999] Union All Return Distinct *,`4esn` Is Null Order By `5esn` In $999 Descending Limit `3esn` =~$`5esn` =~12"), - octest:ct_string("Return Distinct `7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As usn1 Order By 12.e12 In .e0 In `7esn` Asc,9e1[.12..] Asc Skip (_usn3 )<-[usn1]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})-[_usn4?:`6esn`]->(`8esn` :`1esn`) =~Single(#usn7 In 01234567[$`3esn`..] Where 0.12 In $`4esn` In `6esn`) =~Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|$`8esn`[..123456789]) Limit 0.12 In $`4esn` In `6esn` Unwind [0Xa Is Null Is Null] Is Null As `1esn` Detach Delete {`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6)"), - octest:ct_string("Merge `1esn`=((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})) Remove Single(_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`).`6esn`?,(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})._usn4!,@usn5:`4esn`:#usn8 Merge (({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})<-[_usn3?:`2esn`|usn2{`3esn`:0[0.12..]}]->(:``{`1esn`:`6esn` =~$_usn3})) Union Unwind 123456789 Starts With #usn7 Starts With `6esn` As `7esn` Return Distinct Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0]) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where Count(*)[True]) In Extract(`4esn` In 's_str'[12..'s_str'] Where 0xabc Ends With $#usn7 Ends With #usn8|.e1 Starts With 0.0 Starts With `6esn`) As #usn7,@usn5 Starts With \"d_str\" As ``"), - octest:ct_string("Optional Match ((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),((_usn4 {`8esn`:9e1 In 01 In 999})) Return .e12[.12..][_usn4..] As _usn4 Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Remove Single(`6esn` In 0X7 =~`` Where 010 =~`6esn`).`2esn`?,@usn6:`6esn`:`7esn`,(:``)-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}).`6esn`?"), - octest:ct_string("Create @usn6=(((@usn6 :`5esn`{``:.e1 In $@usn6 In 999,`8esn`:_usn3 Is Null Is Null})<-[$#usn8]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})-[`6esn`? *0Xa{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}]-(:`6esn`:`7esn`{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1}))) Remove [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0].`3esn`,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``! Union Unwind `4esn` =~$`3esn` =~$123456789 As #usn7 Create ((`` :`1esn`)-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`4esn` {`2esn`:@usn6[`5esn`..$`3esn`],`7esn`:$`1esn` Is Null})),`1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]})"), - octest:ct_string("With `6esn`['s_str'..][010..],$`4esn` Contains 0Xa Where 0X0123456789ABCDEF In $1000 In $`3esn` Merge `3esn`=((:#usn8{_usn4:\"d_str\"[Count ( * )],`2esn`:9e0 Ends With $`7esn`})) Union All Delete [_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]] Ends With [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]],Single(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8)[{_usn3:$0 Ends With $#usn7 Ends With .12}][[12.0[0Xa][00],.0[01][$12]]] Unwind `2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As `4esn`"), - octest:ct_string("Optional Match _usn4=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))),@usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})) Remove Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1).usn1!,[$123456789 Is Null Is Null,9e12[@usn6..$``][#usn8..Count ( * )]].`1esn`!,{#usn8:$#usn7[True..][$0..],`8esn`:123456789 Starts With `2esn` Starts With .0}.#usn8! Return *,1.e1[Null][12.e12] As ``,Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) As _usn3 Order By 0.e0[`6esn`...e0][9e12...e12] Descending,_usn3 In .e1 In $12 Asc Skip [$`4esn`[9e1..][0..]][Any(`4esn` In $`8esn` Starts With 1000 Where 0.e0[9e1..][0.0..])..Single(#usn8 In $`5esn` Is Null Is Null Where 1000 Ends With 1000 Ends With $`4esn`)] Limit 123456789 =~_usn4 =~$0 Union Create ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})-[@usn6?:#usn7|:_usn4 *00..]->(`` :@usn5{#usn7:0X7[12]})) Return Distinct $@usn6 =~$#usn8 =~$#usn7 As `7esn`,12e12[0.e0..True][0.12..0.0] As #usn8 Order By @usn5 =~.0 =~$`1esn` Ascending With *,[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As `7esn` Order By 00 Is Null Is Null Descending,$usn2 Starts With $`6esn` Starts With 0xabc Ascending,123456789 Starts With #usn7 Starts With `6esn` Asc Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`) Limit 0x0 Contains _usn4 Contains 123456789 Union All Unwind Single(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`) Is Null As `2esn` Return *,`4esn` Is Null Order By `5esn` In $999 Descending Limit `3esn` =~$`5esn` =~12"), - octest:ct_string("Return `1esn`[0e0..] As @usn6,[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4,.e0 Is Not Null Is Not Null As `2esn` Order By 12.e12 In .e0 In `7esn` Asc,9e1[.12..] Asc Merge usn2=((`5esn` :usn2:@usn6{`5esn`:0Xa In .e1 In Count(*)})) On Create Set `3esn`+=[_usn4[0xabc..]][..Extract(_usn4 In usn1 Contains False Contains `` Where 12[usn1][True])][..(_usn3 {`7esn`:usn1 Contains False Contains ``})<-[? *0..010]-(#usn8 :`4esn`:#usn8)] Delete $12 Contains 123.654 Contains `8esn`,$`3esn` Is Not Null Is Not Null Union All Optional Match usn2=(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}))) Where 0X0123456789ABCDEF In 01234567 Optional Match `3esn`=((:#usn8{_usn4:\"d_str\"[Count ( * )],`2esn`:9e0 Ends With $`7esn`})) Union Unwind Extract(usn2 In 1000 Contains 0.e0 Where `7esn` Contains .0 Contains 9e12|_usn3 Is Null)[Single(_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01])] As `` With Distinct 999 In $_usn4 In 0X7 As usn2,.e1 Starts With 0.0 Starts With `6esn`,.e1 Starts With $`8esn` Where 's_str'[.12..$#usn7][$999..`2esn`]"), - octest:ct_string("Create #usn8=(((`2esn` :_usn3{`5esn`:12.e12[$1000..],`4esn`:'s_str'[..0.0][..$`4esn`]})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})-[usn1?:`1esn` *0X0123456789ABCDEF..{usn2:$`4esn`[12.e12..][0.0..]}]-(:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]}))),usn1=((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6)) Union Merge `3esn`=((:#usn8{_usn4:\"d_str\"[Count ( * )],`2esn`:9e0 Ends With $`7esn`})) Merge `7esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}) On Create Set ``+={usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null,@usn5+=usn1[..@usn5][...e0],`2esn`+=All(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True])[..[`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|_usn3 In .e1 In $12]][..{`2esn`:$usn1[1e1.._usn3][$@usn6..$#usn7]}] Union All Optional Match `3esn`=(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)})-[usn2{`6esn`:$@usn6[_usn3..0.e0]}]->({usn1:`4esn` In $12 In `8esn`})<-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`6esn` {`8esn`:`8esn` In $@usn5}) Where 0x0[...e12][..@usn5] Detach Delete usn1[1e1][$_usn4],999[$usn2..] Remove (`3esn` :#usn8{#usn8:$_usn4[$`8esn`..][07..]})<-[`2esn` *12..0xabc{`6esn`:$123456789[0.0..],@usn5:999[$`6esn`]}]-({@usn6:9e1 Contains $`3esn` Contains 01234567,@usn6:.e12[.12..][_usn4..]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}).`6esn`,#usn7:#usn8,{#usn7:0Xa[..$``],`1esn`:usn2 Is Not Null}.usn1?"), - octest:ct_string("Create (_usn3 :_usn4:usn1)<-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(:@usn6:`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}) Unwind Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] As @usn6 Unwind (@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`) Is Not Null Is Not Null As `7esn` Union All With Distinct 01234567 Ends With 0x0,[`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As #usn8,$1000 Is Not Null Is Not Null Order By None(@usn5 In 0X7 =~.0 =~\"d_str\" Where _usn3[...e1])[[_usn4 In usn1 Contains False Contains `` Where 0.12 In $7 In 0]..][[7[..12e12][..$`6esn`]]..] Asc,12[usn1][True] Desc Limit 010 Contains Count(*) Where 0.12 Ends With $usn1 Ends With $@usn5 Return *,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn`,$_usn3 In $#usn8 As #usn7"), - octest:ct_string("Detach Delete 07[0..`4esn`],``(Distinct `1esn`[0e0..]) =~(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[@usn6?:`1esn`]-(:`5esn`)-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}),[$1000 Is Null Is Null] Is Null Union All Unwind 12e12 Starts With $123456789 Starts With 12.0 As usn1 Optional Match `3esn`=(({``:$1000 Is Null Is Null})) Where `1esn`[...e1] Union With Distinct *,7[..12e12][..$`6esn`],01234567[$@usn6..0X7][$`1esn`..123.654] As `6esn` Order By Count(*)[12.e12..] Ascending,$usn1 In 1000 In $#usn7 Descending"), - octest:ct_string("Detach Delete Any(#usn7 In 01234567[$`3esn`..] Where 00 In 1e1)[[usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0|0xabc[12.e12..`1esn`]]..][[@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2]..],_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) With Distinct *,$0 =~$0 =~.e0 As `7esn`,$@usn5[#usn8..][$`1esn`..] As `7esn` Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip [@usn6 In @usn5 In $`6esn` Where $999[$1000]|$7[.12]] In {`1esn`:$@usn6 Contains 07 Contains 0.e0} In (`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) Where 9e12[usn2..7][.e1..$`7esn`] Union All Delete Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null)[count(Distinct 0.12 Contains $12 Contains `8esn`)..[$`1esn` Is Null Is Null,9e1 In 01 In 999]],(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}],usn2(Distinct `7esn` Ends With $usn2 Ends With 999) =~Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0) =~Any(`4esn` In `6esn`['s_str'..][010..] Where 01 Ends With .e0)"), - octest:ct_string("Remove ``:`5esn`"), - octest:ct_string("Remove (usn1 :_usn3{@usn6:True[..'s_str'][..01]})-[? *999..]-(`` :`1esn`).usn2?,Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 123456789[$#usn7..]|123456789 In $usn2 In `6esn`)._usn4?,Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $`6esn` Is Null Is Null)._usn3 Union All Remove {`1esn`:`7esn`[Null..][@usn5..]}.`7esn`! Create (({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) Remove `4esn`:`3esn`:`1esn`"), - octest:ct_string("With Distinct 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Limit $12[..``][..$7] Detach Delete Count ( * )[..1e1] Union Delete Count ( * ) In 010,False[..12.e12] Unwind `7esn`[$999][7] As `5esn` Create (({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})),(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :`4esn`:#usn8)"), - octest:ct_string("Unwind 0.0[1000..][.e1..] As usn1"), - octest:ct_string("Delete Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]),None(`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789])[(`` {`8esn`:0X7 In $@usn5 In 9e0,_usn3:@usn6[$`3esn`]})-[usn1{#usn7:7 Contains 9e1,`5esn`:$`` Ends With 12e12}]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})..0e0][{`1esn`:$@usn6 Contains 07 Contains 0.e0}..{`3esn`:0.12 In $7 In 0,_usn3:07[$999]}] Detach Delete $@usn5[#usn8..][$`1esn`..],Count ( * ) =~All(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7),#usn8 In $0"), - octest:ct_string("Unwind [$12[01..][1.e1..]][[usn1 In 00 Starts With _usn3 Where 00]..@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12)] As `8esn` With 0x0[0X7..][usn1..] As _usn4 Order By `6esn` Starts With $usn2 Starts With 0.0 Ascending,0X7 In $@usn5 In 9e0 Descending Where 00 In 12.0 In 's_str' Union Delete 0.12 =~9e0,12.0[0Xa][00] With {_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] As `1esn` Order By 0 Is Not Null Descending Skip 0x0 Where 123456789 Starts With #usn7 Starts With `6esn` Optional Match `8esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}))"), - octest:ct_string("Create `1esn`=(((`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})-[ *010{@usn5:Null Is Null Is Null}]-(:`5esn`)<-[`7esn`{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}]-(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}))) Remove Extract(`4esn` In $`8esn` Starts With 1000 Where `5esn` In 12|010 Contains 0X0123456789ABCDEF).`2esn`,{#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}.`2esn`! Return Distinct *,9e12 Ends With 0X0123456789ABCDEF Ends With #usn7 As `5esn`,$12[`3esn`..0e0][`2esn`..$7] As #usn8 Order By $`2esn` Starts With .e0 Starts With 12.0 Descending,{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,999 Is Null Is Null Desc Limit $7 Ends With `5esn`"), - octest:ct_string("Unwind .e12 =~0.0 =~9e0 As `8esn` With Distinct 01[Null..][`1esn`..] As `2esn`,$usn1 Contains Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where .e0[..999][..0X7]) Contains [@usn6[`3esn`..][$7..]] Order By 0X7 =~.0 =~\"d_str\" Desc,.12 =~.12 =~1e1 Asc,$#usn8 In .e12 In 9e1 Desc Skip $`3esn` =~$999 =~$`3esn` Limit {`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Where Count ( * )[Count ( * )..12e12][usn1..1000] Detach Delete [@usn5 In $#usn8 Is Null Is Null Where 7 In 0xabc][[Null[01234567][01234567],07[1e1],Count(*)[12.e12..]]..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)],0.12,Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 01234567[.12..7][1000..1.e1]|$`5esn` In False) Contains {@usn5:Null[0e0][12],_usn4:0 Contains 12e12} Contains [usn1 In 0x0[..`4esn`] Where \"d_str\" Contains `3esn` Contains 00|@usn6[`3esn`..][$7..]] Union All With *,Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])[All(#usn7 In 01234567[$`3esn`..] Where Count(*)[.e0.._usn4])..][None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..])..] As @usn6 Order By {`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,0.12 In $7 In 0 Desc Limit 123.654 Contains #usn8 With Distinct *,12 Is Null Is Null As #usn7,$`7esn` Ends With $0 Ends With .e12 As `` Order By $0[01234567..00][$`2esn`..$@usn6] Desc,12.e12['s_str'] Desc,123456789 Starts With #usn7 Starts With `6esn` Asc Limit 999 In 9e1 In 7"), - octest:ct_string("Remove All(@usn5 In $#usn8 Is Null Is Null Where 7 In 0xabc).#usn7?,({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[`2esn`? *0..010]->(usn2 {usn1:0 Is Null Is Null,`8esn`:12.0[..$7][..999]})<-[#usn8:`3esn`|:`4esn` *0..010]->(`3esn` :usn2:@usn6).`4esn`! Merge `4esn`=(_usn4 :#usn8)-[`1esn`?:`1esn` *01234567..12]-({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}) On Create Set ``+={usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null,@usn5+=usn1[..@usn5][...e0],`2esn`+=All(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True])[..[`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|_usn3 In .e1 In $12]][..{`2esn`:$usn1[1e1.._usn3][$@usn6..$#usn7]}] On Create Set _usn4 =All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)[[usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1]],#usn7 =_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) Return Distinct All(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`)[[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]]..][({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})..] As #usn8,'s_str' In \"d_str\" In 123456789,None(`4esn` In 's_str'[12..'s_str'] Where 12.0[0Xa][00]) Is Not Null Union All With *,07[0..`4esn`] Order By 12.e12[$`7esn`] Desc,Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}) Descending Where @usn6 Starts With `7esn` Starts With Null Remove [$`2esn` =~'s_str',12 Ends With 01234567,$1000 Is Null Is Null].`3esn`?,[12.e12[...0][..0x0]]._usn4,(`1esn` :`8esn`)<-[#usn7:`3esn`|:`4esn` *00..]->(`4esn` :`8esn`)-[`4esn`? *0Xa]-(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}).`3esn`? With Distinct $@usn6 Starts With usn2 Starts With usn2,@usn6[$`7esn`],$`4esn`[9e1..][0..] Limit [$`1esn` Is Null Is Null,$12 Contains 123.654 Contains `8esn`] Starts With {`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]} Starts With Filter(usn1 In $123456789 Contains usn2 Where 01234567[.12..7][1000..1.e1]) Where `` Starts With @usn5 Union All Delete Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`)"), - octest:ct_string("Match (((:`7esn`{#usn8:07 In 0 In 's_str',`6esn`:_usn3 =~00})-[`5esn`?:``|:_usn4]->(:#usn8{#usn7:12e12 Ends With 010 Ends With .0})<-[`3esn`{`7esn`:010 =~`6esn`,``:$usn2 =~$_usn4 =~`5esn`}]->({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}))) Where .0 Starts With `2esn` Starts With `6esn`"), - octest:ct_string("With Distinct $`4esn`[12.e12..][0.0..] As `2esn`,$0[..`8esn`] As _usn4,$`1esn` Starts With $999 Skip $#usn8[1e1][9e1] Limit Count(*) Ends With 010 Remove [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1|9e1 Starts With `1esn` Starts With 0Xa].usn2?,Count ( * ).@usn5? Remove `5esn`:usn1,(`3esn` :_usn4:usn1)-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[`` *0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`1esn`! Union All Unwind 07[`6esn`..][`5esn`..] As usn1"), - octest:ct_string("Create @usn6=((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]->(:_usn3{@usn6:$`7esn` Is Null Is Null})),((({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999})<-[@usn6?:`6esn`*..]-(_usn3 :usn2:@usn6)-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6))) Unwind $@usn5[.e1] As #usn8 Union Delete {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']}[(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)],010 Is Null Is Null"), - octest:ct_string("Create `8esn`=((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})),`4esn`=(#usn7 :@usn5)-[`4esn`:_usn3|:`4esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:usn1{`8esn`:usn1 Contains $``}) Union All With Distinct 12e12 Starts With $123456789 Starts With 12.0,$@usn5 In 12e12 In Count(*) As #usn7,[0Xa In .e1 In Count(*)][..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}][..Extract(`4esn` In `6esn`['s_str'..][010..] Where #usn8[$#usn8..])] As `6esn` Limit @usn6[..0xabc][..$#usn7] Where $`5esn` Contains Count(*) Contains #usn7 Remove (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})<-[usn2?:usn1|`3esn`{`7esn`:0xabc Ends With $#usn7 Ends With #usn8,@usn5:$#usn8}]->(`3esn` :#usn8).usn2 Match (`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Where 9e1 Is Null Is Null"), - octest:ct_string("Return Distinct 0.12 Contains .e1,Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[usn2($#usn8 Is Null Is Null)..Extract(usn1 In 0x0[..`4esn`] Where 123456789 In $usn2 In `6esn`|@usn5[..True][..0X7])][(`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` )..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]] As `3esn`,`` Order By 01234567[.12..7][1000..1.e1] Ascending Union All Delete `2esn`[$`1esn`..][$_usn3..],7 =~9e0 =~'s_str' Merge (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[? *..0X7{`3esn`:`8esn`[$``]}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})-[?:usn1|`3esn`{#usn8:1000[..$`6esn`][..0xabc]}]->(usn1 :_usn3{@usn6:True[..'s_str'][..01]}) Union With *,$`3esn`[`2esn`...e0] As _usn3 Limit Count ( * )[Count ( * )..12e12][usn1..1000] Where 12[0X7..@usn6] Remove Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0).`2esn`?,(`4esn` {@usn5:1e1 In $#usn8 In 12e12})-[_usn4?:`5esn`|`1esn`]-(@usn5 {``:12[usn1][True],``:$`5esn` In `2esn` In $12}).`7esn`!,[999[.e12][01]].`2esn`!"), - octest:ct_string("Match `1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}),`1esn`=(((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))) Where 7 Contains $`5esn` Contains $usn1 Create (`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :`4esn`:#usn8) Union Create (:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}) Unwind [@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] As usn1 Merge (`7esn` {_usn3:usn1 Contains $``})<-[usn1]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})"), - octest:ct_string("Detach Delete [@usn5 In $#usn8 Is Null Is Null Where 7 In 0xabc|$_usn4[$`1esn`]] Is Null Is Null,9e1 Is Null Is Null,@usn6[`5esn`..$`3esn`] Create #usn7=({`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]->(`3esn` {_usn3:@usn6 Contains _usn4 Contains $`4esn`})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->({_usn3:12.e12 In $0 In Count(*)}) Union All Create ((`3esn` :`8esn`)-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})-[ *..0X7]->(`5esn` :_usn4:usn1)),(((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}))) Detach Delete $@usn5 Ends With 0X0123456789ABCDEF,$123456789[0.0..]"), - octest:ct_string("Return Count ( * )[Count ( * )..12e12][usn1..1000] Order By $`1esn`[$usn2..][$1000..] Descending Skip Filter(`6esn` In 0X7 =~`` Where $0[$#usn8..01234567])[{`7esn`:Null[0e0][12],#usn8:$12[..``][..$7]}..][Filter(usn1 In 0x0[..`4esn`] Where $usn1[0.12..]['s_str'..])..] Union All Merge _usn3=(@usn5 {@usn6:$123456789[0X7..12.e12]}) On Match Set @usn5 =12.e12['s_str'],@usn6 =$usn2[False..`7esn`][`7esn`.._usn3],({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})<-[usn2?:`4esn`|:`7esn` *0X0123456789ABCDEF..]-({usn1:$1000 Contains $`3esn`})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0}).@usn5? =07[07]"), - octest:ct_string("Delete 0e0[12][$_usn4]"), - octest:ct_string("Return *,9e12 Contains $_usn3 As `2esn` Order By 0x0[$`3esn`..010][$#usn7..00] Descending,9e12 Asc,`5esn` In $999 Descending Limit `3esn` =~$`5esn` =~12 Unwind 00 As `8esn` Return Distinct *,Count ( * ) Contains 999 Contains $`8esn` Order By $`7esn` =~.e1 Descending,0e0 Starts With .e12 Ascending Skip 0.e0 Ends With 12 Ends With $7 Union With Distinct 1.e1 =~$_usn4 As usn2,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,{_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] Order By $12 Starts With #usn7 Asc,$0[$0..] Descending Where _usn3 Ends With 0x0 Ends With 01234567 With *,0xabc Starts With _usn3 As `3esn`,Null[..12e12][..usn1] As `3esn` Order By 0x0[$`3esn`..010][$#usn7..00] Ascending,010 =~$usn2 =~1e1 Desc,(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Asc Limit 0x0 Contains $`8esn` Contains `6esn` Where 0xabc Contains Null Contains 9e12 With `5esn` In 12 As usn2,Count(*) Starts With 1e1 Starts With $123456789 As #usn7,[`4esn` In 's_str'[12..'s_str'] Where 9e1 Contains $`3esn` Contains 01234567][[7[..12e12][..$`6esn`]]..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}] As #usn8 Order By 00 In 12.e12 Descending,9e0 Ends With $`7esn` Asc Skip 01234567 Is Null Is Null Limit $123456789 In Count(*) In .e1 Where $123456789 Ends With $`6esn`"), - octest:ct_string("Optional Match (`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Where $`8esn` =~$usn2"), - octest:ct_string("Remove `7esn`:`6esn`:`7esn` Return Distinct *,1.e1 Contains @usn6 As usn2 Order By (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Ascending,Single(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`) =~Extract(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) =~Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]) Asc,0.0[999..] Asc"), - octest:ct_string("With Distinct *,Count ( * ) In 010 As `1esn` Limit $@usn5 =~07 =~True Match `4esn`=((#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) Where `` Starts With @usn5 Optional Match _usn4=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))),@usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]}))"), - octest:ct_string("Create `4esn`=((:`7esn`{``:$`1esn` Starts With @usn6})),`1esn`=((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})) Unwind 01234567 Ends With 0x0 As _usn3 Unwind $_usn4[`3esn`][0] As _usn4 Union All With Distinct *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `3esn`,Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])[All(#usn7 In 01234567[$`3esn`..] Where Count(*)[.e0.._usn4])..][None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..])..] Order By ({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Desc,0x0 Desc,0.e0 Starts With 12.e12 Starts With .e12 Desc Skip [\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Limit usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Where 123456789 Is Null Optional Match usn1=((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})) Where 1000 Contains 0.e0 Merge `5esn`=(usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[ *0xabc{`1esn`:123.654 In \"d_str\" In $_usn3}]-({`2esn`:$usn2 Is Not Null})"), - octest:ct_string("Merge ((`6esn` :`7esn`)-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)<-[@usn5:`6esn` *0X0123456789ABCDEF..]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null})) On Create Set [$usn1 In 1000 In $#usn7,$#usn7 In 12.0 In 0X0123456789ABCDEF,9e0 Is Not Null]._usn3 =All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`! =0xabc Starts With _usn3 On Match Set #usn8 =07[07],@usn5+={`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[{`4esn`:$7 Ends With 12.0 Ends With 0xabc,_usn4:0X0123456789ABCDEF[.e0..$`4esn`]}..][Extract(`4esn` In `6esn`['s_str'..][010..] Where $999 Ends With $`3esn` Ends With `8esn`)..] Delete Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}),07,`2esn`[$`3esn`..]"), - octest:ct_string("Delete `6esn`[False..0.0][12e12..$usn2]"), - octest:ct_string("Detach Delete True Starts With 12.0 Starts With $@usn5,@usn5 =~.0 =~$`1esn` Merge (_usn4 :#usn8)<-[`6esn`? *..7{`3esn`:123456789[$#usn7..]}]-(:`2esn`:`3esn`{`7esn`:$_usn4[#usn8..]})-[usn1?:_usn3|:`4esn` *123456789..999{`6esn`:01 Ends With .e0,`4esn`:$`7esn` Is Not Null}]->(_usn3 ) Union With Distinct *,`3esn` =~`3esn` =~$`6esn` As `7esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 123456789[$#usn7..]) Contains [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1] Skip .12[..`6esn`][..\"d_str\"] Limit [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] Where `5esn`[`1esn`] Delete 7[..0X7][..'s_str'],9e0 Ends With $`7esn`,$0 Ends With $#usn7 Ends With .12 Union With Distinct *,`3esn` =~`3esn` =~$`6esn` As `7esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 123456789[$#usn7..]) Contains [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1] Skip .12[..`6esn`][..\"d_str\"] Limit [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] Where `5esn`[`1esn`] Delete 7[..0X7][..'s_str'],9e0 Ends With $`7esn`,$0 Ends With $#usn7 Ends With .12"), - octest:ct_string("Remove ({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})-[#usn8?]-(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7}).@usn6?,{`3esn`:`4esn`[7..][1000..],usn2:123456789 Starts With `2esn` Starts With 9e12}.`8esn`!,@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12).`5esn`! Union Delete Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null)[..[.e0 Contains #usn7 Contains $#usn8]] Unwind #usn7 Contains .0 Contains .e1 As usn1"), - octest:ct_string("Delete $12 Contains 123.654 Contains `8esn`,$`3esn` Is Not Null Is Not Null Detach Delete 12.0[123456789..Null]['s_str'..$usn1],9e1[.12..],{`5esn`:0Xa In .e1 In Count(*)}[$`8esn`][[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7]] Detach Delete Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..])"), - octest:ct_string("Delete _usn4[$`4esn`..] Remove [1e1 In $#usn8 In 12e12,7 In @usn5 In $`4esn`].`5esn`!,`7esn`:`1esn`,usn2:usn1 Merge (({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) On Match Set #usn7($123456789 Contains 01 Contains 0.12).usn2! =.e12 =~0.0 =~9e0,All(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1).`4esn` =$999[12.0..],`8esn`+=Filter(_usn4 In usn1 Contains False Contains `` Where 9e0 =~$`5esn`) =~``($`4esn`[usn1..$#usn8][12.0..`3esn`]) =~Single(usn2 In 1000 Contains 0.e0) On Match Set `` =None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..],#usn7($`8esn`[$``..$7][$1000..$`7esn`],`2esn` In 7 In usn2).`6esn`? =$_usn4['s_str'..],`4esn`+=$`7esn` Ends With $usn2 Union All Remove [usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]]._usn3,{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12}.@usn6,[usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]].usn2? Match (((`7esn` :``)<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:usn1|`3esn`*]->(:_usn3{`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`}))) With `3esn` Contains 0Xa As `6esn`,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,[usn1[..@usn5][...e0]][(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)]"), - octest:ct_string("Remove {#usn8:0X0123456789ABCDEF[..usn1]}.`5esn`! Detach Delete Any(#usn7 In 01234567[$`3esn`..] Where 00 In 1e1)[[usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0|0xabc[12.e12..`1esn`]]..][[@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2]..],12.e12 Ends With 01 Ends With .e1,07[12e12] Union With Distinct $0 Is Null Is Null Skip [0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',0X0123456789ABCDEF In $1000 In $`3esn`,$0[..`8esn`]] In `4esn`(Distinct 12.e12 In $0 In Count(*),00 In 1e1) In [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]|.e0 =~`5esn`] Where 010 Contains Count(*)"), - octest:ct_string("Return Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1),9e1[010..] As `6esn` Order By $`2esn`[$usn2..][123456789..] Ascending,{@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7) Asc Limit 9e1 Starts With `1esn` Starts With 0Xa Match usn2=(_usn3 :_usn3),usn1=((:_usn4:usn1{#usn8:$`7esn` Ends With `1esn` Ends With True})-[`7esn`?:usn1|`3esn` *123456789..999{`5esn`:.e1 In $@usn6 In 999}]-(usn2 :#usn8{`3esn`:123.654[@usn5]})) Where 0 Is Not Null Is Not Null Create #usn8=((#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})<-[ *00..{`3esn`:12 Ends With 01234567,`4esn`:00[``..][$`4esn`..]}]->(`2esn` :``)) Union With Distinct 12.e12 Contains $`5esn` As `` Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Limit All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Where .e0 =~`5esn` Delete `4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}]"), - octest:ct_string("Create _usn4=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),(((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})-[?*..{`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}]-(`` :`3esn`:`1esn`{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-({usn1:010[@usn5..],`7esn`:`2esn` Is Not Null Is Not Null}))) Match (`5esn` {_usn4:0X7 =~``}),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null}))"), - octest:ct_string("Remove (#usn8 {@usn5:.e1[..$``][..0X0123456789ABCDEF],_usn3:$usn2 =~$#usn8})<-[ *..0x0{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}]-(`5esn` {`8esn`:0.0[12...12]}).@usn6 Return Distinct *,$123456789 =~$#usn8 =~$#usn8 Order By $@usn6 Contains 07 Contains 0.e0 Asc Skip 0e0[12][$_usn4] Limit 123.654[12.e12..1e1] Union With Distinct `` Is Not Null Is Not Null As @usn6,`5esn`[`1esn`..`1esn`],[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4 Order By Count(*) Is Null Descending,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0] Ends With [`4esn` In 's_str'[12..'s_str'] Where 0.12 In 01 In $`3esn`|9e0 =~$`5esn`] Ascending,[0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] Asc Skip 1000 Contains 123456789 Contains 1e1 Limit $`6esn`[`3esn`..0e0] With Distinct .e0[`4esn`..`4esn`][0.0..$0] As `7esn` Order By None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) Descending,01234567[.12..7][1000..1.e1] Ascending Where #usn7[..$1000][..01] Delete [$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union Create (`` :#usn7) Unwind .e1 Starts With 0.0 Starts With `6esn` As `2esn` Detach Delete Null[1.e1..]"), - octest:ct_string("Match `7esn`=(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]}) Return 9e1[010..] As `6esn` Order By $7 Ends With `5esn` Descending,1e1[\"d_str\"] Ascending Limit $`7esn` Is Null Is Null Return *,01234567 Is Null Is Null Order By {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}[..[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]]] Ascending Skip 010 =~$usn2 =~1e1 Union Return *,({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn` Match ((usn1 :`6esn`:`7esn`)) Unwind $@usn5[.e1] As #usn8"), - octest:ct_string("Optional Match `8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`}) Where 123456789 Starts With `2esn` Starts With .0"), - octest:ct_string("Detach Delete `6esn` =~01234567 =~0Xa,0.0 Is Null Is Null,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} Optional Match _usn4=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),(((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})-[?*..{`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}]-(`` :`3esn`:`1esn`{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-({usn1:010[@usn5..],`7esn`:`2esn` Is Not Null Is Not Null}))) Where $`` Ends With 12e12 Unwind Count(*)[`7esn`..$12] As `1esn` Union All Create (((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))),(@usn6 {`4esn`:$`2esn`[..`2esn`]})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})"), - octest:ct_string("With Distinct *,Single(#usn7 In 01234567[$`3esn`..]) Is Null Limit 123456789 Starts With `2esn` Starts With .0 Where $#usn7 In 12.0 In 0X0123456789ABCDEF Union All Unwind 12e12 Starts With $123456789 Starts With 12.0 As usn1 Optional Match `3esn`=(({``:$1000 Is Null Is Null})) Where `1esn`[...e1]"), - octest:ct_string("Unwind `7esn` Starts With $usn2 Starts With .e0 As usn2"), - octest:ct_string("With Distinct *,None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`) Is Null As @usn6,123456789 =~_usn4 =~$0 As usn1 Where Count(*)[..`3esn`] Union All Remove [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7].@usn5,Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])._usn3? Return Distinct *,$@usn6[..$usn1] As _usn3 Order By {``:12e12[$`5esn`][07],_usn3:$`6esn` Is Null Is Null} Ends With [0 Is Not Null Is Not Null] Descending,Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Desc,.12 Ends With `1esn` Ends With $`1esn` Asc Limit `7esn` Starts With $`` Starts With $#usn7 Unwind $@usn6 Starts With usn2 Starts With usn2 As _usn4"), - octest:ct_string("With Distinct 010 Starts With `7esn` Starts With 9e1,False[.e1..Null] As `2esn` Order By {`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]} Ends With (usn1 :_usn3)<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})-[ *..0x0]->(:`7esn`{@usn6:0.0[999..],#usn8:Null Is Null Is Null}) Asc Skip [@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Where $`6esn` Is Null Is Null"), - octest:ct_string("Return Distinct 7 Is Null As #usn7 Limit 9e12[usn2..7][.e1..$`7esn`] Remove Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0).`2esn`?,(`4esn` {@usn5:1e1 In $#usn8 In 12e12})-[_usn4?:`5esn`|`1esn`]-(@usn5 {``:12[usn1][True],``:$`5esn` In `2esn` In $12}).`7esn`!,[999[.e12][01]].`2esn`! Remove [$`2esn` =~'s_str',12 Ends With 01234567,$1000 Is Null Is Null].`3esn`?,[12.e12[...0][..0x0]]._usn4,(`1esn` :`8esn`)<-[#usn7:`3esn`|:`4esn` *00..]->(`4esn` :`8esn`)-[`4esn`? *0Xa]-(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}).`3esn`? Union Detach Delete 0x0[$`3esn`],07 In $7 In 12 Union All Create `5esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Detach Delete $usn2 =~$_usn4 =~`5esn` Detach Delete Extract(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null) =~Any(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null) =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1],$7 Contains 0x0 Contains ``,[\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..])"), - octest:ct_string("Merge ()<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) With *,#usn7 Starts With .e12 Starts With $`7esn` As usn2,{`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) As @usn5 Limit Extract(`4esn` In 's_str'[12..'s_str'] Where 00 Starts With _usn3|$`1esn` Is Null Is Null) Is Null Is Null Unwind 0x0 =~_usn4 As `4esn` Union Create `7esn`=(((@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0})-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[?:usn2|#usn8 *1000..]->(@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]}))) Remove All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.e12 Contains `5esn`).`6esn`?,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 12.e12 Ends With 01 Ends With .e1).`4esn`! Union All Unwind 07[12e12] As `4esn` Remove Extract(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`).`5esn`?,(`2esn` {`3esn`:$999[12.0..]})-[:usn2|#usn8 *01234567..12{usn2:$`3esn` In $12 In 's_str'}]-(usn1 :_usn3).`5esn`"), - octest:ct_string("Optional Match ``=(`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[_usn3?:`7esn`|`2esn` *010]->(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})-[?:`4esn`|:`7esn`]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}) Merge `5esn`=(({`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})-[#usn8?]-(:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1}))"), - octest:ct_string("Merge (`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(`7esn` :`8esn`{`4esn`:00 Ends With .12 Ends With `4esn`})-[ *07..]->(usn2 :@usn6:`7esn`) On Create Set #usn8:_usn4:usn1,[0 Is Not Null Is Not Null].usn2! =(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] Union With Distinct @usn6 Starts With `7esn` Starts With Null,$usn1[#usn8..][``..] As `2esn`,`3esn`[$`1esn`..] As usn2 Order By _usn3[0] Asc,``[$`3esn`][$`2esn`] Ascending,{@usn5:0.e0[@usn6][0x0]} Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7) Ascending Skip (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) Is Not Null Is Not Null Limit [@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Where `1esn` Contains Count ( * ) Return Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As `5esn` Return Distinct *,.e1 Starts With $`8esn` Skip 0xabc[12.e12..`1esn`] Limit 0.e0[@usn6][0x0]"), - octest:ct_string("Return Distinct *,[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As `7esn` Order By 00 Is Null Is Null Descending,$usn2 Starts With $`6esn` Starts With 0xabc Ascending,123456789 Starts With #usn7 Starts With `6esn` Asc Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`) Limit 0x0 Contains _usn4 Contains 123456789 Unwind Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4)[..`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)][..{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}] As #usn7 Remove ({`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[ *..0x0{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}]-(`5esn` {`8esn`:0.0[12...12]}).``!,Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null).``!,usn1:`8esn` Union Detach Delete (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)[Filter(@usn6 In @usn5 In $`6esn` Where $999[$1000])..][#usn7($`8esn`[``..][123.654..],12.e12 Contains `5esn`)..],{`8esn`:@usn5[..True][..0X7],`1esn`:`1esn` Contains Count ( * )}[{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)] Unwind 999 Contains `7esn` As @usn5 Return Distinct Single(#usn7 In 01234567[$`3esn`..]) Is Null As `3esn`,$`1esn`[9e1.._usn4][$999..$`2esn`],Single(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7])[None(`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789])..@usn6(Distinct True =~@usn5 =~$`1esn`,.12 Starts With $usn2)] As `4esn` Skip Count(*)['s_str'..`1esn`] Limit Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])[..[True =~@usn5 =~$`1esn`]][..Any(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`)] Union All Delete Extract(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|Null Starts With $`7esn` Starts With `2esn`) =~{`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0},0x0 Starts With $`7esn` Starts With `2esn` Detach Delete 12e12[$`5esn`][07],0.e0[9e0][0e0]"), - octest:ct_string("Return *,$@usn6[..$usn1] As _usn3 Skip $@usn6 Is Null Limit `3esn` =~$`5esn` =~12 Return Distinct 1.e1 =~$_usn4 As usn2,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,{_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] Order By $12 Starts With #usn7 Asc,$0[$0..] Descending Union Match `3esn`=((:#usn8{_usn4:\"d_str\"[Count ( * )],`2esn`:9e0 Ends With $`7esn`})) Remove All(`4esn` In 's_str'[12..'s_str'] Where $`8esn`[..$``]).`7esn`!,usn2(07[$999]).`4esn` Merge (({@usn6:0X0123456789ABCDEF[..usn1]})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn3{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})-[usn1*]->(:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})) On Match Set `4esn` =.e12[.12..][_usn4..] On Match Set All(`6esn` In 0X7 =~`` Where `7esn`[...e1][..\"d_str\"]).`5esn` =None(usn2 In 1000 Contains 0.e0 Where $usn1[..$`6esn`][..Null]) Starts With Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]|$`1esn` Starts With $999) Union Create @usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})) Optional Match _usn4=(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Where @usn6[..0xabc][..$#usn7]"), - octest:ct_string("Optional Match `4esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}),(((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Where $_usn3[..Count ( * )][..@usn5] Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..]"), - octest:ct_string("Detach Delete ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] Return $usn1[0.12..]['s_str'..] As `1esn`,(`4esn` :`8esn`{_usn4:0 Is Null Is Null})-[`6esn`:`8esn`|:usn1$_usn3]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Ends With Filter(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999) Ends With [`4esn` In `6esn`[1e1..] Where 07[12e12]] Order By Count ( * )[..999] Asc Skip (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})<-[`6esn`?:@usn6 *999..]->(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})[Filter(_usn4 In usn1 Contains False Contains `` Where 123456789 Is Null)..] Union All Detach Delete 12e12[0.e0..True][0.12..0.0]"), - octest:ct_string("Return *,(@usn6 {_usn4:$_usn4[#usn8..]})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)[Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null)..] Skip $`7esn` Ends With 07 Ends With 07 Optional Match _usn3=(($999)),``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)) Where 9e0[True..`1esn`] Create ((`7esn` :`2esn`:`3esn`{@usn6:9e0 Ends With $`7esn`})),`6esn`=((`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})) Union Unwind 0X0123456789ABCDEF Contains 12.e12 Contains 999 As _usn4 With *,#usn7 Starts With .e12 Starts With $`7esn` As usn2,{`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) As @usn5 Limit Extract(`4esn` In 's_str'[12..'s_str'] Where 00 Starts With _usn3|$`1esn` Is Null Is Null) Is Null Is Null Union Return *,0.12[Count(*)..],$@usn5 =~$`` =~$usn2 As #usn8 Order By Single(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`) Is Null Desc Skip Single(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7])[None(`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789])..@usn6(Distinct True =~@usn5 =~$`1esn`,.12 Starts With $usn2)]"), - octest:ct_string("Unwind `3esn`(`7esn` Starts With $usn2 Starts With .e0,$_usn3 =~`7esn` =~$_usn4)[[$`2esn`[123456789..][00..],Count ( * )[@usn6..0x0]]..][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0)..] As usn1 Union All Delete `6esn`[False..0.0][12e12..$usn2] Union All Detach Delete $`3esn` Is Not Null Is Not Null,$1000 Ends With 1e1 Ends With 123.654"), - octest:ct_string("With Distinct *,$7[12.e12..] As #usn7,`4esn`[$#usn7] As `1esn` Skip #usn7[..$1000][..01] Limit {`8esn`:@usn5[..True][..0X7],`1esn`:`1esn` Contains Count ( * )}[{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)] Where `7esn`[...e1][..\"d_str\"] Union All Merge (({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})) On Match Set #usn7($123456789 Contains 01 Contains 0.12).usn2! =.e12 =~0.0 =~9e0,All(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1).`4esn` =$999[12.0..],`8esn`+=Filter(_usn4 In usn1 Contains False Contains `` Where 9e0 =~$`5esn`) =~``($`4esn`[usn1..$#usn8][12.0..`3esn`]) =~Single(usn2 In 1000 Contains 0.e0) On Match Set `` =None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..],#usn7($`8esn`[$``..$7][$1000..$`7esn`],`2esn` In 7 In usn2).`6esn`? =$_usn4['s_str'..],`4esn`+=$`7esn` Ends With $usn2 Remove [`6esn`[1e1..]].@usn6!,[$_usn3[..Count ( * )][..@usn5]].@usn6! With Distinct None(usn2 In 1000 Contains 0.e0 Where $usn1[..$`6esn`][..Null]) Starts With Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]|$`1esn` Starts With $999) As #usn7,$12[..7][..07] As #usn8,$`2esn`[``..] As `3esn` Order By 9e1 Is Not Null Is Not Null Asc,[@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0] Is Null Descending Union All Delete Extract(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|Null Starts With $`7esn` Starts With `2esn`) =~{`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0},$`1esn` Is Null,9e0 Starts With `6esn` Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null})-[#usn7:`1esn` *07..]->(#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`}))"), - octest:ct_string("Unwind 7 In @usn5 In $`4esn` As `5esn` Union With Distinct *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `2esn` Union All Return All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null,0xabc[$@usn5] As `7esn`,.e0[usn2..] As _usn3 Skip 0x0 In `8esn` In 999"), - octest:ct_string("With *,({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) Order By [0 Is Null Is Null][..[_usn3 =~00,9e1 Is Null Is Null]] Descending,Single(`4esn` In `6esn`['s_str'..][010..] Where 12.0 Contains 0.e0)[..Any(`4esn` In 's_str'[12..'s_str'] Where Count(*)[`7esn`..$12])][..Extract(@usn5 In .12[#usn7][$`8esn`] Where 01234567 =~usn1)] Ascending,`8esn` In $@usn5 Asc Limit $#usn8 Is Null Create @usn6=((:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})-[?:`4esn`|:`7esn`]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})),#usn7=(@usn5 {usn2:$999[12.0..]})<-[usn1]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[_usn3?:``|:_usn4]->(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}) Remove (_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`).usn2,[`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]|12 Is Null Is Null].#usn8? Union All Remove ({@usn6:0X7 In $999 In $``})-[`7esn`{usn1:0 Is Not Null}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`}).@usn6,{`5esn`:$`5esn`[$123456789][`1esn`],#usn7:@usn5 In 0X0123456789ABCDEF}.@usn6! Unwind 0.0 Is Null Is Null As usn1 Union All Remove (_usn3 {usn1:_usn3 Contains @usn6 Contains 1.e1})<-[`` *0xabc]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1})<-[_usn3?:`7esn`|`2esn` *010]-(#usn8 :`4esn`:#usn8).@usn5?,{usn1:$123456789[..0.12][..#usn7]}.`4esn`?,Any(`4esn` In 's_str'[12..'s_str'] Where 9e1 Contains $`3esn` Contains 01234567).`8esn`! Unwind usn2[$`7esn`..010][00..``] As _usn3"), - octest:ct_string("Delete 12 Is Null Is Null,Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}),0e0[`2esn`..010] Return Count ( * ) Ends With 1000 Ends With 12 As _usn4,False[..12.e12] Order By $@usn6 Contains 07 Contains 0.e0 Asc,$1000 Is Not Null Is Not Null Asc,[$`3esn` Starts With 01234567 Starts With $1000] Starts With `4esn` Starts With [$`2esn`[..7][..$usn1]] Desc Skip usn1 Is Not Null Limit Count ( * ) Contains 999 Contains $`8esn` Unwind `2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As `4esn` Union Remove ({`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[ *..0x0{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}]-(`5esn` {`8esn`:0.0[12...12]}).``!,Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null).``!,usn1:`8esn` Create ((:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})) Match `6esn`=(`6esn` :`5esn`),(@usn6 :`5esn`{_usn3:010[$`8esn`..][0..],_usn3:`2esn` Is Not Null Is Not Null}) Where 0x0"), - octest:ct_string("Merge ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[ *010{@usn5:Null Is Null Is Null}]-({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]})) Match (@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0}) Union All Return $`5esn` Starts With _usn3 Starts With @usn5,9e0 Is Null Is Null,$999[..`1esn`] As `8esn` Order By usn2[$`1esn`...0] Descending,None(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00)[[@usn6 Starts With `7esn` Starts With Null]][{`1esn`:07[`6esn`..][`5esn`..],usn1:$usn2[False..`7esn`][`7esn`.._usn3]}] Ascending,01234567 Ends With 12.0 Ends With 0X7 Ascending Remove (:`7esn`)<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})._usn4!,(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[`2esn` *..7]-(_usn3 {usn1:_usn3 Contains @usn6 Contains 1.e1}).`1esn`?,($1000)<-[`4esn`:#usn8]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}).@usn5? Unwind All(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[..(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[`` *0xabc]->(`7esn` :#usn7{`6esn`:$`3esn` Contains 0X0123456789ABCDEF Contains 00,`1esn`:1000[123.654..9e12][1000.._usn3]})][..{`3esn`:$1000[.e0..]}] As `2esn`"), - octest:ct_string("Create (`5esn` {_usn4:0X7 =~``}),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null}))"), - octest:ct_string("Unwind #usn8 Is Not Null As usn2 Match #usn8=(usn1 :`4esn`:#usn8) Where 00[``..][$`4esn`..] Create `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Union Remove None(`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]).`2esn`!,{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}.`6esn`?,usn2:#usn8 Union Return Distinct (_usn3 :`6esn`:`7esn`{usn1:$_usn3[9e1][$_usn4],`8esn`:123456789 =~_usn4 =~$0})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-({`1esn`:@usn6}) In _usn3(0x0[0X7..][usn1..]) In None(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str') As _usn4 Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending Skip 07[12][$`6esn`] Remove ({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})-[#usn8?]-(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7}).@usn6?,{`3esn`:`4esn`[7..][1000..],usn2:123456789 Starts With `2esn` Starts With 9e12}.`8esn`!,@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12).`5esn`! Create ((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})),#usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4}))"), - octest:ct_string("Create `4esn`=((:`7esn`{``:$`1esn` Starts With @usn6})),@usn5=((@usn6 :#usn7{@usn5:Null Is Null Is Null})<-[``?:@usn5|`8esn`]->(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})) Merge `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Remove Extract(_usn4 In usn1 Contains False Contains `` Where $12 Contains 123.654 Contains `8esn`|`5esn` In 12).#usn8?,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`7esn` Ends With $`2esn` Ends With $usn1|0[0.12..]].@usn5? Union All Return 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Order By [usn1 In 00 Starts With _usn3 Where 00][#usn8(Distinct $`2esn`[$123456789..$`1esn`][0Xa..$``],@usn6[`5esn`..$`3esn`])..['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`]] Asc,999 Contains `7esn` Desc,Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`] Ascending Skip 0e0 Is Null Is Null Remove [`2esn`[$`1esn`..][$_usn3..]].`4esn`?,(@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``}).`8esn`,[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]].`3esn` Union All Remove [@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999|01234567 Ends With 0x0]._usn4?,[0Xa Is Not Null Is Not Null,`3esn` =~0.0 =~$``,123456789 Starts With 12.0 Starts With .e12]._usn4! Create (`6esn` :`5esn`)<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6),_usn3=(($999))"), - octest:ct_string("Unwind $usn2 Is Not Null Is Not Null As `8esn` Delete [_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]] Ends With [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]],Single(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8)[{_usn3:$0 Ends With $#usn7 Ends With .12}][[12.0[0Xa][00],.0[01][$12]]] Union All Create (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}))),`4esn`=((`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})) Return $`6esn` =~$#usn8 As #usn8 Order By (#usn7 :#usn8)-[`6esn`:`4esn`|:`7esn` *..0x0]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})[Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])][Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])] Descending Limit Null Contains 9e1 Union Optional Match @usn6=((:``{`5esn`:.e1 In $@usn6 In 999})),`4esn`=((`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) With `6esn`['s_str'..][010..],$`4esn` Contains 0Xa Where 0X0123456789ABCDEF In $1000 In $`3esn` With `` Starts With 12,[@usn5 In .12[#usn7][$`8esn`] Where $_usn4[12e12][`4esn`]][`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])..``(False In `3esn`)][[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]]..Filter(@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12])] As `4esn`,Count(*)[`7esn`..$12] As `` Skip 0X7[..12e12] Where 9e12[..$``][..`6esn`]"), - octest:ct_string("Unwind _usn3 In $#usn8 In usn1 As _usn4 With Distinct 0 =~12.e12 =~$``,0.12 Contains .e1 As `6esn`,01 Contains $`7esn` Contains 9e0 Order By Count ( * )[..1e1] Asc,_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) Asc,[0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] Ascending Skip Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] Limit _usn3(0x0[0X7..][usn1..])[..Any(#usn8 In $`5esn` Is Null Is Null Where 999[$`8esn`])][..{#usn7:False[`2esn`..#usn8]}] Return Distinct *,Count ( * ) In 010 As `1esn` Limit $@usn5 =~07 =~True Union All Remove Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|Count(*)[.e0.._usn4]).`8esn`?,Single(#usn8 In $`5esn` Is Null Is Null Where .12[`1esn`..][$`3esn`..]).``!,count(Distinct `6esn` =~01234567 =~0Xa).`8esn`! Unwind `8esn`[$``] As `3esn` With Distinct [`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As `8esn`,$`4esn`[9e1..][0..],$`2esn`[``..] Order By $@usn6 Contains 0 Contains $`2esn` Descending,_usn3[9e1..$`4esn`] Descending Limit 00 In 0.12 In `5esn` Where $`7esn`[$usn1..][0.0..] Union All Create (((`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})<-[?:`7esn`|`2esn`]-(:`6esn`:`7esn`{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}))) Remove {`7esn`:`5esn`[`1esn`]}.#usn7?,{#usn7:$usn2 In 9e0 In $7}.@usn6,(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)}).usn1!"), - octest:ct_string("Merge ((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[?:usn1|`3esn`{#usn8:1000[..$`6esn`][..0xabc]}]->(:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[``?:usn1|`3esn`]->(:@usn5{#usn7:1e1[@usn5..]})) Detach Delete 07 In Count ( * ) In \"d_str\",Null Is Not Null Return 's_str'[..0.0][..$`4esn`] As `2esn`,#usn7 Contains .0 Contains .e1,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Skip `6esn` Starts With $usn2 Starts With 0.0 Limit 9e1 Contains $`3esn` Contains 01234567"), - octest:ct_string("Match @usn5=(:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})-[`1esn`:usn2|#usn8 *1000..]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}) Remove [`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null].`8esn`? Remove Single(#usn8 In $`5esn` Is Null Is Null Where $123456789[0.0..]).#usn7?,Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]).@usn6! Union All Detach Delete 123.654[12.e12..1e1],`6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null) Unwind `3esn`(`7esn` Starts With $usn2 Starts With .e0,$_usn3 =~`7esn` =~$_usn4)[[$`2esn`[123456789..][00..],Count ( * )[@usn6..0x0]]..][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0)..] As usn1 Remove Extract(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`).`6esn`?,Extract(@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null|@usn5 Starts With 12e12 Starts With @usn5).`2esn`?,[Count ( * )[Count ( * )..12e12][usn1..1000],12e12[$`5esn`][07],$_usn3[9e1][$_usn4]]._usn4 Union All Remove `3esn`(Distinct 0X7 In $999 In $``,$0 Is Not Null).`7esn`?,[@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999|010 Is Null Is Null]._usn3! With *,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn` Skip 1e1[..False] Limit 12e12[$`5esn`][07] Remove [01234567[Null..0.e0][Count(*)..$#usn8],Count(*)['s_str'..`1esn`]].`7esn`?,Any(usn1 In 0x0[..`4esn`] Where 0.12 Contains $12 Contains `8esn`).#usn7!"), - octest:ct_string("With .e0[usn2..][12..] As `1esn`,12.e12[...0][..0x0],`` Contains 12 Contains True As `6esn` Skip `6esn`[0X7..][0x0..] Limit 9e1 Starts With `1esn` Starts With 0Xa Where $999[$1000] Optional Match `5esn`=(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})<-[?:`7esn`|`2esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}]->(usn1 :#usn8))),#usn8=(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Where 0 Contains 12e12 Union Delete (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]),[usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..],{_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] Create #usn8=(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}) Return Distinct *,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}) Skip ({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}) =~None(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Union All Unwind 00[.e1..] As `6esn` Unwind #usn7[$123456789] As `8esn` Merge `2esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7}))"), - octest:ct_string("Optional Match ((`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(usn1 :_usn3)) Union Return None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..] Remove Extract(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`).usn1!,_usn4(Distinct `7esn` Starts With $usn2 Starts With .e0).`5esn`,``:#usn7"), - octest:ct_string("Return *,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn`,@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn` Skip {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]}"), - octest:ct_string("Remove None(usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null).`6esn`,Extract(_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`|9e1 Starts With `1esn` Starts With 0Xa)._usn4?,(usn2 :`3esn`:`1esn`)-[ *..7]-(usn1 :`4esn`:#usn8)-[?:`3esn`|:`4esn`]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).@usn5? Optional Match usn2=(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}))) Where 0X0123456789ABCDEF In 01234567"), - octest:ct_string("Return Distinct *,`1esn` Contains Count ( * ) As _usn3 Skip $`3esn` =~$999 =~$`3esn` With Distinct [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}),$_usn4[`3esn`][0] As `1esn`,`6esn` Starts With $`5esn` As @usn5 Order By .0 Is Null Is Null Ascending,`1esn`(Distinct $@usn5[#usn8..][$`1esn`..],#usn7 Ends With `4esn` Ends With @usn5)[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|usn1[Count ( * )..$usn1]]][{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}] Asc Limit True Is Not Null Where 0.0 =~0X7 =~#usn7"), - octest:ct_string("With [#usn8 In $`5esn` Is Null Is Null][Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where #usn7[..$1000][..01])..][[@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]]..],(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[usn1?:`8esn`|:usn1]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Is Null Is Null As #usn7,1e1[..#usn8][..'s_str'] As #usn8 Order By `3esn`[$123456789][$#usn7] Ascending,{@usn6:12.0[``],_usn4:$`3esn` Contains 0X0123456789ABCDEF Contains 00} Ends With Single(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Ends With Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999|12.0[``]) Asc Skip (:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0}) Starts With Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) Starts With [12.0 In 1000 In _usn4] Limit 00[01234567][False] Return 7[$`4esn`..123456789] As `2esn` Limit 1000 Ends With 1000 Ends With $`4esn` Union With Distinct \"d_str\",0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',$@usn5[01] Order By 01234567 Starts With $_usn4 Desc,0.12 Contains .e1 Ascending,0x0 =~_usn4 Descending Skip [usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]] Contains None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]) Contains Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) Detach Delete 12[..0.0][..#usn7] Detach Delete 999[$`8esn`] Union Create ``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)),`2esn`=(((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) Create `4esn`=((:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})),((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) Return Distinct *,12 Is Null Is Null As #usn7,$1000 Is Not Null Is Not Null Skip (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)[Filter(@usn6 In @usn5 In $`6esn` Where $999[$1000])..][#usn7($`8esn`[``..][123.654..],12.e12 Contains `5esn`)..]"), - octest:ct_string("With Distinct $@usn6 Starts With usn2 Starts With usn2,None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]],$`7esn` Ends With $usn2 As `5esn` Order By $12[01..][1.e1..] Descending,0e0 Starts With .e12 Ascending Where 12 Ends With .e12 Ends With $7 Create @usn6=(((@usn6 :`5esn`{``:.e1 In $@usn6 In 999,`8esn`:_usn3 Is Null Is Null})<-[$#usn8]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})-[`6esn`? *0Xa{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}]-(:`6esn`:`7esn`{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1}))) With Distinct 1000[123.654..9e12][1000.._usn3],Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) As _usn4,``[$`3esn`][01234567] Order By {`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00} Starts With Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12) Desc,9e0 Ends With $`7esn` Ascending,`1esn`(Distinct Count(*)[..`3esn`]) Starts With $0 Ascending Limit .12[`1esn`..][$`3esn`..] Where $0[01234567..00][$`2esn`..$@usn6] Union Optional Match (((usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1)<-[@usn5:#usn8{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(#usn8 :_usn3))),((:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[`2esn`:@usn5|`8esn`]->(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7})) Where .e1 Starts With 0.0 Starts With `6esn` Union Detach Delete $`7esn` In $7 Unwind 0x0[$`3esn`] As _usn4"), - octest:ct_string("Return *,0 Is Not Null Is Not Null,[@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12]][{@usn6:.12 Starts With 0Xa}..(`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})] Order By (`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) Desc Limit .e12[..0.e0][..$`1esn`] Union Create `3esn`=((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})),(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}) Optional Match `5esn`=(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})<-[?:`7esn`|`2esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}]->(usn1 :#usn8))),#usn8=(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Where 0 Contains 12e12"), - octest:ct_string("Unwind \"d_str\"[$`7esn`][$1000] As `5esn` Optional Match `5esn`=(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}),`7esn`=(({#usn7:False[`2esn`..#usn8]})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})) Create ((:`6esn`:`7esn`{_usn4:12[0X7..@usn6],_usn3:123456789 In $usn2 In `6esn`})<-[#usn7?:_usn3|:`4esn` *00..]->(:`6esn`:`7esn`{_usn3:\"d_str\" Is Null Is Null})<-[@usn6]->(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`}))"), - octest:ct_string("With *,All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12) Starts With Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Contains .0 Contains .e1) As usn2 Order By All(_usn4 In usn1 Contains False Contains `` Where $`4esn`[$`2esn`..])[..Single(usn1 In $123456789 Contains usn2 Where $usn1[0.12..]['s_str'..])][..``(Distinct `1esn`[0e0..])] Asc,`4esn` =~$`3esn` =~$123456789 Ascending,$123456789[False.._usn3] Desc Skip 7[..0X7][..'s_str'] Where $123456789 Contains 01 Contains 0.12 Unwind 999 Contains `7esn` As `7esn` With Distinct Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As `5esn` Where _usn3 In .e1 In $12 Union All Match #usn8=((`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[:@usn6 *0X0123456789ABCDEF..{_usn3:`7esn` Ends With $usn2 Ends With 999}]-(`2esn` :_usn3)),(({``:12 Is Null Is Null})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)})) Remove [$`5esn`[False],9e1 Contains $`3esn` Contains 01234567,`5esn`[Count ( * )..][\"d_str\"..]].@usn5!,`3esn`:_usn4:usn1,[usn1 In 00 Starts With _usn3].#usn8? Union All Detach Delete 123.654[@usn5] Merge usn2=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) On Create Set None(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0).`4esn`! =0[usn2..],[@usn6[$`3esn`]].`4esn` =01 In _usn3 In 12,`1esn`+=123456789 =~usn1 Unwind `7esn`(0.0[1000..][.e1..],$@usn5 Contains 01)[Any(usn1 In 0x0[..`4esn`] Where 0X7[.e12..01234567])][[$@usn6 Contains 07 Contains 0.e0,`5esn` In 12]] As `8esn`"), - octest:ct_string("Merge @usn5=(`3esn` :`8esn`{usn1:`2esn`[$`3esn`..],`6esn`:$12[..``][..$7]})-[@usn5?:``|:_usn4]-(`8esn` :#usn8)<-[?:``|:_usn4]-({`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12}) On Create Set usn2:usn1,None(_usn4 In usn1 Contains False Contains `` Where .12 In $999 In `5esn`).usn2 =9e0 In 01234567,`8esn` =$@usn5 Ends With 0X0123456789ABCDEF On Create Set #usn8:_usn4:usn1,[0 Is Not Null Is Not Null].usn2! =(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] With Distinct 12.e12 Contains $`5esn` As `` Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Limit All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Where False In $`7esn` In .0 Union All Remove All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null).@usn5,`8esn`:_usn3,#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..]).`7esn`! Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..]"), - octest:ct_string("Match `2esn`=((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Where 9e12[@usn6..$``][#usn8..Count ( * )] Union Create `2esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}),(#usn7 :@usn5)<-[@usn5*]->({``:$1000 Is Null Is Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(`7esn` :`2esn`:`3esn`) Merge `4esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Union All Detach Delete 123.654[@usn5] Merge usn2=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) On Create Set None(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0).`4esn`! =0[usn2..],[@usn6[$`3esn`]].`4esn` =01 In _usn3 In 12,`1esn`+=123456789 =~usn1 Unwind `7esn`(0.0[1000..][.e1..],$@usn5 Contains 01)[Any(usn1 In 0x0[..`4esn`] Where 0X7[.e12..01234567])][[$@usn6 Contains 07 Contains 0.e0,`5esn` In 12]] As `8esn`"), - octest:ct_string("Optional Match (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Where $123456789 In Count(*) In .e1 With Distinct *,00 In 1e1 As `7esn`,0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Skip 7 In @usn5 In $`4esn` Limit {`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]] Where `3esn` =~0.0 =~$`` Merge usn1=(`3esn` :``) On Match Set All(`6esn` In 0X7 =~`` Where 0X7[..12e12])._usn4 =Null Starts With $`7esn` Starts With `2esn`,`5esn`+=999 Contains Count ( * ) Contains 123.654,usn1+=usn1[$`3esn`..$999][True..False]"), - octest:ct_string("Merge `4esn`=({`8esn`:0X7 In 's_str' In $`1esn`}) Match @usn6=(((@usn6 :`5esn`{``:.e1 In $@usn6 In 999,`8esn`:_usn3 Is Null Is Null})<-[$#usn8]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})-[`6esn`? *0Xa{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}]-(:`6esn`:`7esn`{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1}))) Remove {`3esn`:$`5esn` In `2esn` In .0,``:0e0 Is Null Is Null}.`1esn`"), - octest:ct_string("With Distinct `2esn` Contains $999 As #usn7,$123456789[False.._usn3] As `1esn` Order By (usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Ends With [$`8esn` =~$usn2,0X0123456789ABCDEF[..usn1],`` In `6esn`] Descending Skip 0X7[..12e12] Merge (:#usn7) Union All Match `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Where $@usn6[..$usn1] Match `4esn`=((#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) Where `` Starts With @usn5"), - octest:ct_string("Remove Extract(`4esn` In $`8esn` Starts With 1000 Where `5esn` In 12|010 Contains 0X0123456789ABCDEF).`2esn`,{#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}.`2esn`! Return *,({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn`"), - octest:ct_string("With [$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] Order By .e12 =~0.0 =~9e0 Desc,010 =~$usn2 =~1e1 Desc,#usn8(0X7 In 's_str' In $`1esn`,$0 Is Not Null)[usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])] Descending Where .0 Is Null Is Null Detach Delete 0xabc Contains Null Contains 9e12,.12 Starts With 0Xa,`6esn` In 1000 In 01234567 Union Remove None(usn1 In 00 Starts With _usn3).@usn6?,#usn7:_usn3 With 07[07] Skip $`4esn` Contains 0Xa Limit 00[.e0..9e1] Create ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) Union All Create `7esn`=(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}),(((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Unwind 00[.e1..] As `6esn`"), - octest:ct_string("Unwind 0[0.12..] As _usn4 Union Remove None(_usn4 In usn1 Contains False Contains `` Where $`8esn`[$``..$7][$1000..$`7esn`])._usn3?,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`).`3esn`? Create #usn8=((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Union Unwind Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) As usn2 Optional Match `1esn`=((usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) Where _usn4 Starts With 0X7 Merge usn1=(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(usn1 :#usn8)<-[ *..0x0{`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) On Match Set `2esn`+=123.654 In \"d_str\" In $_usn3"), - octest:ct_string("Return Distinct .12[#usn7][$`8esn`],12 Ends With 07 Ends With @usn6 As usn1 Order By $999[..`1esn`] Ascending,Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending,[$`8esn` =~$usn2][Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..] Asc With Distinct `8esn`[_usn3..$#usn7],({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn` Where $`1esn` Is Null Return Distinct $`1esn` Starts With `8esn` Starts With $0,`` Is Not Null Is Not Null As @usn6,$123456789[$`2esn`][True] As `7esn` Skip {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7) Limit False Ends With $`8esn` Union All With Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] As @usn5,12 Is Null Is Null As #usn7 Limit 0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Create `6esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Union All Delete `6esn`[False..0.0][12e12..$usn2]"), - octest:ct_string("Unwind 0 Starts With `6esn` Starts With 0X0123456789ABCDEF As @usn6 Return *,01234567 Is Null Is Null Order By {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}[..[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]]] Ascending Skip 010 =~$usn2 =~1e1 Union All With Distinct 0x0 In `8esn` In 999,``[$`3esn`][$`2esn`],01234567 Ends With 12.0 Ends With 0X7 Order By Count ( * )[..usn1][..12.e12] Asc,$usn2 Is Not Null Is Not Null Descending Skip `3esn`(Distinct $_usn3[Null],12[..True][..$`4esn`]) Is Null Is Null Detach Delete _usn3 Ends With 12e12 Ends With .e0,({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}) =~None(usn1 In 00 Starts With _usn3 Where False[.e1..Null]) Unwind $123456789 In Count(*) In .e1 As usn1"), - octest:ct_string("Unwind $`1esn` Ends With _usn4 Ends With `3esn` As `8esn` Merge (`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(usn1 :#usn8)<-[ *..0x0{`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) On Create Set `6esn` =$@usn5[Count ( * )] On Create Set Single(usn1 In 00 Starts With _usn3 Where $`7esn` Ends With 07 Ends With 07).`6esn`? =Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789},@usn5 =[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0])],[usn1 In 00 Starts With _usn3 Where 12 Ends With .e12 Ends With $7|_usn3 =~00].#usn7! =Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null Union All Return Distinct 9e0 Starts With `6esn`,9e1['s_str'..1e1] As #usn7 Limit `1esn` Contains Count ( * ) Unwind $`1esn` =~$`1esn` =~#usn7 As `4esn` Merge `4esn`=(`3esn` {_usn3:@usn6 Contains _usn4 Contains $`4esn`})<-[`7esn` *..0x0]-(@usn5 :usn1)<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) Union All Match ((@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})),((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})) Where @usn6 Contains .e1 Contains $`4esn`"), - octest:ct_string("Merge `4esn`=(`6esn` :#usn8)-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]})-[:`4esn`|:`7esn`{`1esn`:123.654 In \"d_str\" In $_usn3}]-(`1esn` :`4esn`:#usn8{_usn4:$_usn4[#usn8..]}) Union Optional Match usn2=(((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),#usn7=(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))) Where $_usn4[`3esn`][0] Create (((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]})))"), - octest:ct_string("With Distinct All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null,0xabc[$@usn5] As `7esn`,.e0[usn2..] As _usn3 Order By False[..12.e12] Descending Skip [\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Limit 7 In @usn5 In $`4esn` Where 12e12 Starts With $123456789 Starts With 12.0 Detach Delete 010 Starts With `7esn` Starts With 9e1 With Distinct *,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Order By .e0 Contains 01234567 Descending,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Desc,'s_str' Starts With 1000 Starts With #usn8 Descending Where 123456789 =~_usn4 =~$0 Union All Detach Delete usn1 Contains $`` Union Remove Extract(usn1 In 00 Starts With _usn3 Where $`3esn` =~Null|12.e12[...0][..0x0]).`2esn`?,[`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn` Starts With $`` Starts With $#usn7|$`3esn` Contains 0X0123456789ABCDEF Contains 00].usn1! Merge (((@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]-(usn1 :`3esn`:`1esn`))) On Create Set `7esn` =$`6esn` Is Not Null Is Not Null"), - octest:ct_string("Detach Delete Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] Remove @usn5:@usn5,Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`]).@usn5,usn2:@usn6:`7esn` Return @usn5[..True][..0X7] As `7esn`,{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7} Contains {`5esn`:$7[.12]} Contains Extract(usn1 In 00 Starts With _usn3 Where 07 Contains #usn8 Contains $_usn3|`2esn`[$`1esn`..][$_usn3..]) Order By 0X0123456789ABCDEF[..usn1] Descending Skip `3esn`[$123456789][$#usn7] Union Create ((`7esn` :`2esn`:`3esn`{@usn6:9e0 Ends With $`7esn`})),``=((`3esn` ))"), - octest:ct_string("Match ((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})),(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))) Unwind 07[1e1] As `1esn`"), - octest:ct_string("Match ``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}),(`` :usn1) Where 0.12 =~01 =~12 Merge (({@usn6:0X0123456789ABCDEF[..usn1]})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn3{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})-[usn1*]->(:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})) On Match Set `4esn` =.e12[.12..][_usn4..] On Match Set All(`6esn` In 0X7 =~`` Where `7esn`[...e1][..\"d_str\"]).`5esn` =None(usn2 In 1000 Contains 0.e0 Where $usn1[..$`6esn`][..Null]) Starts With Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]|$`1esn` Starts With $999) Remove (@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`6esn`,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]).usn2!,(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn`]->(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`1esn`! Union All Detach Delete _usn3[...e1]"), - octest:ct_string("Optional Match `8esn`=((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Where 0X0123456789ABCDEF[..usn1] Remove {usn1:0e0 Is Not Null Is Not Null}.@usn5,None(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True]).#usn7? Detach Delete Count(*)[_usn3..Count ( * )],0X7 In $@usn5 In 9e0,01234567 Is Null Is Null"), - octest:ct_string("Merge @usn6=((`6esn` :`7esn`)-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)<-[@usn5:`6esn` *0X0123456789ABCDEF..]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null})) On Match Set `4esn` =0x0[0.0][$_usn4] On Match Set #usn8+={`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}],(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0}).`3esn`! =07 In $7 In 12,[\"d_str\" =~`6esn` =~0Xa].`4esn`! =0.0 =~0X7 =~#usn7 Match `1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) Match (usn2 :#usn8{`3esn`:123.654[@usn5]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`}),((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[usn1?:`1esn` *0X0123456789ABCDEF..{usn2:$`4esn`[12.e12..][0.0..]}]-(#usn7 :`5esn`)) Where 1e1[..False] Union All Return 1000 Contains $#usn7 Contains `6esn`,All(@usn5 In $#usn8 Is Null Is Null Where 's_str'[..0.0][..$`4esn`]) Is Null Is Null Order By $123456789 Ends With .e1 Ascending Skip $`3esn` Contains 0X0123456789ABCDEF Contains 00 Limit $_usn3 =~$`3esn` =~0x0 Delete $usn2 In 9e0 In $7,[usn1 In 00 Starts With _usn3 Where 00][#usn8(Distinct $`2esn`[$123456789..$`1esn`][0Xa..$``],@usn6[`5esn`..$`3esn`])..['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`]],0xabc[12.e12..`1esn`] Delete 0e0[`2esn`..010],@usn6[`5esn`..$`3esn`],Count ( * )[..usn1][..12.e12]"), - octest:ct_string("Create #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) Unwind 07[..$_usn3] As #usn7 Unwind `3esn`(Distinct _usn4 Ends With 01 Ends With $`1esn`) Starts With [Count(*) In 01 In .0,`` Starts With 12,$_usn4[$`8esn`..][07..]] Starts With Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12 In $0 In Count(*)) As _usn3 Union Return *,0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str' Order By [`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) Descending,$123456789 Ends With .e0 Ascending,({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) Desc Skip 0X0123456789ABCDEF[.e0..$`4esn`] Remove {usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}.`4esn`,Single(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`).`8esn`? Create (:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}),((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ))"), - octest:ct_string("Create `4esn`=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})),(`7esn` :_usn4:usn1)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})-[`1esn`{`2esn`:.12 Starts With @usn5 Starts With $#usn8}]->(:usn1{`6esn`:1000 Contains 0.e0,`7esn`:$@usn6[..$#usn7][..12.e12]}) Create @usn5=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) Remove ``(9e0 Contains `8esn`).`1esn`,[$`1esn` Is Null Is Null,010 Contains 0X0123456789ABCDEF,9e1[0.e0..][#usn8..]].`` Union Create ((@usn6 :#usn7{@usn5:Null Is Null Is Null})) Remove None(usn1 In 0x0[..`4esn`] Where False[.e1..Null]).``,[.e0[..999][..0X7]].`5esn`? With Distinct 12e12[.12..] As #usn8,`4esn` Is Null,Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[{@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null}..] Skip $0[..07] Limit 999 Contains `7esn` Where $`2esn` Starts With .e0 Starts With 12.0 Union Delete `6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]),Extract(_usn4 In usn1 Contains False Contains `` Where $`4esn` Starts With 1e1|Count(*)['s_str'..`1esn`]) =~Extract(`4esn` In $`8esn` Starts With 1000|`7esn`[Null..][@usn5..]) =~(:`4esn`:#usn8)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ) Create @usn5=((#usn7 {#usn7:01234567[.12..7][1000..1.e1],``:@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})) Delete 12e12[1000..][0x0..]"), - octest:ct_string("Create usn1=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})),`4esn`=((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})) Optional Match #usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})),@usn5=(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})<-[`2esn` *12..0xabc{`6esn`:$123456789[0.0..],@usn5:999[$`6esn`]}]-(`7esn` {`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) Where @usn5[..True][..0X7] With Distinct Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] As @usn5,12 Is Null Is Null As #usn7 Limit 0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Where 12[..9e0][..999]"), - octest:ct_string("Detach Delete [#usn8 In $`5esn` Is Null Is Null Where 0.0[..12e12][..$0]][{`2esn`:.e1 In $@usn6 In 999,usn2:@usn5 Ends With $`3esn` Ends With 12e12}..] Optional Match ((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 )) Where `7esn`[1e1..07][0x0..Count ( * )] Union Delete 0e0[`2esn`..010],@usn6[`5esn`..$`3esn`],Count ( * )[..usn1][..12.e12] Remove [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1].usn1,None(@usn5 In .12[#usn7][$`8esn`] Where 123456789 Is Null).`1esn`?"), - octest:ct_string("Merge ({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[ *..0x0]->(#usn8 {usn2:7 Contains 9e1}) On Match Set usn1+=`4esn` Is Null Union All Return Distinct _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0),$`7esn` In 0.e0 In `4esn` As `2esn` Limit Any(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) Is Not Null Is Not Null Create `2esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}),`3esn`=(`4esn` {usn2:7 In 0xabc})<-[$#usn8]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}) With *,`7esn`[...e1][..\"d_str\"],12e12[0.e0..True][0.12..0.0] As #usn7 Order By 0xabc[12.e12..`1esn`] Ascending,12.e12 In $1000 Ascending,[`6esn` In 0X7 =~`` Where 0.12[Null..]] Is Null Is Null Ascending Limit Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1)[00..] Where 0.e0[..#usn8][..Null] Union Optional Match `5esn`=(({`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})-[#usn8?]-(:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1}))"), - octest:ct_string("With Distinct {@usn6:`7esn` In 999 In @usn6} Starts With Extract(usn1 In 0x0[..`4esn`] Where 0x0|07 Ends With 07) Starts With Filter(usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12),False Ends With $`8esn`,``[$`3esn`][$`2esn`] As usn1 Order By $`6esn` Is Null Is Null Desc Limit 999 In $_usn4 In 0X7 With *,[0Xa In .e1 In Count(*)][..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}][..Extract(`4esn` In `6esn`['s_str'..][010..] Where #usn8[$#usn8..])] As @usn6,_usn3 Ends With 0x0 Ends With 01234567 Order By Single(`4esn` In `6esn`['s_str'..][010..] Where 12.0 Contains 0.e0)[..Any(`4esn` In 's_str'[12..'s_str'] Where Count(*)[`7esn`..$12])][..Extract(@usn5 In .12[#usn7][$`8esn`] Where 01234567 =~usn1)] Ascending Skip `7esn` Ends With $usn2 Ends With 999 Unwind All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`3esn` =~$`7esn` =~False)[..[0xabc[..$`1esn`][..01],12 Ends With 01234567,$@usn6 Is Null Is Null]][..#usn7(Distinct $0[$#usn8..01234567],$7)] As _usn4"), - octest:ct_string("Match _usn4=(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})-[:`2esn`|usn2 *999..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]-(@usn6 ) Detach Delete 0x0 Is Not Null Is Not Null Union Create @usn5=(`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0}) Unwind 01234567[.12..7][1000..1.e1] As usn2"), - octest:ct_string("Create ``=(_usn4 :`4esn`:#usn8{@usn5:$_usn4[12e12][`4esn`],`4esn`:False In `3esn`})-[`6esn`:``|:_usn4 *..01]->(`5esn` :#usn7),((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Unwind Extract(usn2 In 1000 Contains 0.e0) Ends With Single(usn1 In 0x0[..`4esn`] Where 12.e12 Contains `5esn`) Ends With Single(usn1 In 00 Starts With _usn3 Where $0[01234567..00][$`2esn`..$@usn6]) As `1esn` Union Unwind 0.12 Contains $`2esn` Contains $_usn4 As @usn6 Merge `2esn`=(:usn1{`8esn`:usn1 Contains $``})-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1})-[ *010{@usn5:Null Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] Union All Create _usn3=((({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']})-[:usn2|#usn8*..]-(`5esn` :`7esn`))) Optional Match `8esn`=(($12)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)),(:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) Where 1e1[..#usn8][..'s_str']"), - octest:ct_string("With Distinct *,[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..] As @usn6,0x0[123456789] As _usn3 Order By Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]|$0 =~$usn1 =~9e1)[{``:\"d_str\",`1esn`:$1000 =~$`7esn`}] Descending Skip $`5esn` In `2esn` In .0 Where 9e12[0.0..12.e12] Unwind Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `4esn` With Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As `5esn` Where 010 Is Null Is Null Union All Merge `5esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) On Create Set `1esn`+=_usn4(Distinct `7esn` Starts With $usn2 Starts With .e0) =~`3esn`() =~#usn8(9e0 Ends With $`7esn`) Remove Filter(usn2 In 1000 Contains 0.e0 Where 12e12[$`5esn`][07])._usn4? Union Merge `2esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) On Create Set [@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where .e0[..999][..0X7]]._usn4 =(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) On Match Set Single(usn1 In 00 Starts With _usn3 Where $`7esn` Ends With 07 Ends With 07).`6esn`? =Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789},@usn5 =[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0])],[usn1 In 00 Starts With _usn3 Where 12 Ends With .e12 Ends With $7|_usn3 =~00].#usn7! =Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null Unwind 12e12[_usn3..][$@usn5..] As usn2"), - octest:ct_string("Unwind .12 =~.12 =~1e1 As `8esn` Union All Create `5esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Detach Delete $usn2 =~$_usn4 =~`5esn` Detach Delete Extract(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null) =~Any(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null) =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1],$7 Contains 0x0 Contains ``,[\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Union All Return $`2esn`[``..] As `3esn`,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As `3esn`,`7esn`[...e1][..\"d_str\"] Unwind _usn4 Starts With 0X7 As `4esn` Merge `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) On Create Set `5esn` =999[.e12][01],Extract(usn1 In 0x0[..`4esn`] Where @usn6[$`3esn`]).#usn8? =`1esn` In 999 In $#usn7,usn1 =12.e12[0e0..7] On Match Set `1esn`+=Null[0e0][12],Filter(usn1 In 0x0[..`4esn`] Where $`` Ends With 12e12).usn1! =Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)]"), - octest:ct_string("With Filter(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[[1e1[0.0],0 Contains 12e12,$123456789[..0x0][..`4esn`]]] As `3esn`,False[`2esn`..#usn8],00 Is Null Is Null Order By {`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,0.12 In $7 In 0 Desc Skip 9e12[0.0..12.e12] Limit $usn1[.e12..`8esn`][True..$@usn5] Return Distinct *,None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`) Is Null As @usn6,123456789 =~_usn4 =~$0 As usn1 Delete All(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True])[..[`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|_usn3 In .e1 In $12]][..{`2esn`:$usn1[1e1.._usn3][$@usn6..$#usn7]}],0.0[12...12]"), - octest:ct_string("Return Distinct *,01234567 Is Null Is Null Order By 0e0 =~Count(*) =~0Xa Descending Skip [$1000 Is Null Is Null] Is Null Limit Extract(@usn6 In @usn5 In $`6esn` Where $`5esn` Contains $@usn6|$0[7..][Null..])[[`6esn` In 0X7 =~`` Where 9e1[0.e0..][#usn8..]]] Optional Match `1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) Where $`3esn` =~$`7esn` =~False With *,`7esn`[...e1][..\"d_str\"],12e12[0.e0..True][0.12..0.0] As #usn7 Order By 0xabc[12.e12..`1esn`] Ascending,12.e12 In $1000 Ascending,[`6esn` In 0X7 =~`` Where 0.12[Null..]] Is Null Is Null Ascending Limit Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1)[00..] Where 0.e0[..#usn8][..Null] Union All Unwind (#usn7 :#usn8)-[`6esn`:`4esn`|:`7esn` *..0x0]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})[Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])][Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])] As `4esn` Union Merge ((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) On Create Set usn1+=Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Detach Delete $#usn7[...e12][..$7],({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]}) =~`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0) Create `8esn`=(:`8esn`)"), - octest:ct_string("Unwind 0Xa[0xabc..] As @usn5 Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)],$`4esn` Ends With 0Xa,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null With Distinct *,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn`,@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn` Skip {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]} Where .12 =~.12 =~1e1 Union With 12e12[.12..] As #usn8,`4esn` Is Null,Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[{@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null}..] Skip $0[..07] Limit 999 Contains `7esn` Where 12e12[0.e0][9e1] Detach Delete `1esn`(Distinct 0.0[999..],9e0 Ends With $`7esn`) Ends With (`7esn` {`8esn`:Count ( * ) =~Count(*)})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}) Ends With (#usn7 :`2esn`:`3esn`)<-[`2esn`?*..]->(:#usn8{`5esn`:0 Contains 12e12}),$`8esn` Starts With 1000,({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null Union Optional Match usn1=(((:_usn4:usn1)-[@usn5?:@usn6*..]-(`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:@usn6]-(_usn3 :`4esn`:#usn8{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]}))),(((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))) Where $usn1 In 1000 In $#usn7 Optional Match (@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0}) Where `7esn` Contains .0 Contains 9e12 Match `4esn`=(((`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[?{`4esn`:0.e0 Ends With 12 Ends With $7,@usn6:$``[_usn4..][`7esn`..]}]->(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]}))),((:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8}))"), - octest:ct_string("Return .0 Starts With `2esn` Starts With `6esn` As _usn4,_usn4[$`4esn`..] As `7esn`,\"d_str\"[Count ( * )] As `7esn` Limit 0.e0[123.654] Union Merge ``=((({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[usn2?]-(`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))) On Match Set `7esn`+=0.e0[`6esn`...e0][9e12...e12],`5esn` =0x0 Contains _usn4 Contains 123456789,`8esn` =0xabc Starts With _usn3 On Match Set #usn7:``,({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})<-[?:@usn5|`8esn` *..0X7]-(:usn1).`4esn` =`6esn` Starts With $`5esn`,[`6esn` In 0X7 =~`` Where 0.12[Null..]]._usn4 =Count ( * )[`3esn`..][`2esn`..] Remove [_usn3 Ends With 0x0 Ends With 01234567,9e0[$_usn3..0X7][7..$#usn8]].`6esn` With Distinct *,`3esn` =~`3esn` =~$`6esn` As `7esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 123456789[$#usn7..]) Contains [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1] Skip .12[..`6esn`][..\"d_str\"] Limit [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] Where @usn6[$`7esn`] Union All Return Distinct *,01234567 Starts With $_usn4 As `1esn`,Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789} Order By [@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Ascending,0.0[Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|_usn3 Ends With 12e12 Ends With .e0)][None(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5)..{@usn6:.12 Starts With 0Xa}] Asc Limit 0x0 Is Not Null Is Not Null Create (`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0}) Return Distinct *,[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As `7esn` Order By 00 Is Null Is Null Descending,$usn2 Starts With $`6esn` Starts With 0xabc Ascending,123456789 Starts With #usn7 Starts With `6esn` Asc Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`) Limit 0x0 Contains _usn4 Contains 123456789"), - octest:ct_string("Merge ((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)) On Create Set All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 9e12[usn2..7][.e1..$`7esn`])._usn3? =$`1esn` =~$`1esn` =~#usn7,`2esn`+={`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] On Create Set None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7).`2esn`! =.e1[..$`4esn`][.._usn4] Union All Delete 9e0[$_usn3..0X7][7..$#usn8],Extract(`4esn` In 's_str'[12..'s_str'] Where 00 Starts With _usn3|$`1esn` Is Null Is Null) Is Null Is Null,0.12 Is Null Is Null Detach Delete 010 Starts With `7esn` Starts With 9e1 Union All Delete $``[_usn4..][`7esn`..],{`1esn`:9e1[0.e0..][#usn8..]} Starts With Single(`4esn` In 's_str'[12..'s_str'] Where @usn5 In 0X0123456789ABCDEF) Starts With All(#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7),All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null Unwind All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12) Starts With Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Contains .0 Contains .e1) As ``"), - octest:ct_string("Optional Match usn2=(({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)-[@usn5{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8}]->(usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})),((`1esn` {_usn4:12.e12 Ends With 01 Ends With .e1})-[_usn4?:`6esn`]->(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]})-[_usn3?:#usn7|:_usn4 *010]->({`1esn`:@usn6})) Where `` In `6esn` Union Optional Match `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})),((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`1esn`{`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654}]->(`7esn` :`7esn`)) Delete `6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]),Extract(_usn4 In usn1 Contains False Contains `` Where $`4esn` Starts With 1e1|Count(*)['s_str'..`1esn`]) =~Extract(`4esn` In $`8esn` Starts With 1000|`7esn`[Null..][@usn5..]) =~(:`4esn`:#usn8)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ) Remove ({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}).`5esn`!,`8esn`:_usn4:usn1"), - octest:ct_string("Delete Count ( * )[.0..][$999..],_usn3[...e1],Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}) Return Distinct 0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str' Limit usn2[$`7esn`..010][00..``] With @usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Limit .12 Is Not Null Is Not Null"), - octest:ct_string("Delete $`2esn` Contains usn1 Contains `2esn`,`4esn`[7..][1000..] Unwind `` As `6esn` Union Create `8esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Merge usn2=((`5esn` :usn2:@usn6{`5esn`:0Xa In .e1 In Count(*)})) On Create Set `3esn`+=[_usn4[0xabc..]][..Extract(_usn4 In usn1 Contains False Contains `` Where 12[usn1][True])][..(_usn3 {`7esn`:usn1 Contains False Contains ``})<-[? *0..010]-(#usn8 :`4esn`:#usn8)]"), - octest:ct_string("Remove Single(usn1 In 00 Starts With _usn3 Where 999 Contains `7esn`).`6esn`? Detach Delete $_usn4[$`1esn`] Unwind `3esn` =~$`5esn` =~12 As `7esn`"), - octest:ct_string("Optional Match `1esn`=(((`` :@usn5)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn5:`8esn`|:usn1]-(#usn7 :`5esn`))),usn1=(_usn4 :`8esn`{`3esn`:False[.e1..Null],`3esn`:9e0 =~$`5esn`}) Union With Distinct `` Is Not Null Is Not Null As @usn6,True[Count(*)..][1e1..] Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `7esn` Starts With $usn2 Starts With .e0).`6esn`! Match `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Where 's_str'[12..'s_str'] Union Merge ((@usn6 :#usn7{@usn5:Null Is Null Is Null})) On Create Set `8esn` =Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`],`8esn`+=Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[usn2($#usn8 Is Null Is Null)..Extract(usn1 In 0x0[..`4esn`] Where 123456789 In $usn2 In `6esn`|@usn5[..True][..0X7])][(`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` )..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]] Return Distinct *,9e12[_usn3] As `8esn`,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn` Order By `6esn` Starts With $`5esn` Desc,$`7esn` Ends With 07 Ends With 07 Desc"), - octest:ct_string("Detach Delete Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null)[count(Distinct 0.12 Contains $12 Contains `8esn`)..[$`1esn` Is Null Is Null,9e1 In 01 In 999]],[True =~@usn5 =~$`1esn`] Contains Extract(`4esn` In `6esn`['s_str'..][010..] Where 123456789[$#usn7..]|12[`7esn`...0][0.12..``]) Contains Single(`4esn` In 's_str'[12..'s_str']) Unwind Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`] As `5esn` Merge `8esn`=(`4esn` {`3esn`:0X7[..12e12],`8esn`:False In 123456789 In $0})-[`4esn`?:`1esn`]->(:`2esn`:`3esn`{usn2:$`5esn` In False})<-[#usn7? *00..]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]}) On Match Set `2esn`+=0.0[999..] Union Merge ((({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999})<-[@usn6?:`6esn`*..]-(_usn3 :usn2:@usn6)-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6))) On Match Set `6esn` =(`4esn` :`8esn`{_usn4:0 Is Null Is Null})-[`6esn`:`8esn`|:usn1$_usn3]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Ends With Filter(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999) Ends With [`4esn` In `6esn`[1e1..] Where 07[12e12]],{_usn3:usn1 Contains $``}.`1esn`! =_usn3 Is Not Null Is Not Null"), - octest:ct_string("Merge usn2=((`3esn` :`4esn`:#usn8)<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})) On Match Set (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 =123.654 Contains `2esn`,`3esn` =Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`),{`6esn`:$_usn4[$`8esn`..][07..]}.@usn6! =`5esn`[.e1][0Xa] Union Create _usn3=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))),(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) With *,`3esn`[$`1esn`..] As usn2 Limit @usn6(Distinct Null[0e0][12])[..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]]][..`8esn`(010 =~`6esn`)] Where usn2[`3esn`][_usn3] Union All Unwind usn2[..$`3esn`] As `6esn`"), - octest:ct_string("Create ((`6esn` :`7esn`)),`4esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Order By 12e12[Count ( * )..][usn2..] Ascending,(`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Descending Detach Delete Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0},12 Ends With .e12 Ends With $7 Union With `3esn` Contains 0Xa As `6esn`,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,[usn1[..@usn5][...e0]][(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)] Union All Detach Delete [$1000 Is Null Is Null] Is Null,Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]|$`1esn` Starts With $999) =~[`` Starts With 12,$usn2 Is Not Null,123456789[`4esn`..][Count ( * )..]],[@usn6 In @usn5 In $`6esn` Where $999[$1000]|$7[.12]] In {`1esn`:$@usn6 Contains 07 Contains 0.e0} In (`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})"), - octest:ct_string("Unwind 12[0X7..@usn6] As `` Unwind Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[{@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null}..] As @usn6 Union Return *,(@usn6 {_usn4:$_usn4[#usn8..]})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)[Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null)..] Skip $`7esn` Ends With 07 Ends With 07 Optional Match _usn3=(($999)),``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)) Where 9e0[True..`1esn`] Create ((`7esn` :`2esn`:`3esn`{@usn6:9e0 Ends With $`7esn`})),`6esn`=((`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})-[`6esn`? *01234567..12{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(@usn5 {usn2:$999[12.0..]})) Union Detach Delete .e0[usn2..][12..]"), - octest:ct_string("Delete 999 Contains `7esn`"), - octest:ct_string("Unwind usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`]) Is Null As `3esn`"), - octest:ct_string("Optional Match `1esn`=((:`8esn`)-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`{#usn8:Null[0e0][12],`2esn`:`8esn` In $@usn5}]-({_usn3:999 In $_usn4 In 0X7,`1esn`:1e1 In $#usn8 In 12e12})) Where $_usn3 =~`7esn` =~$_usn4 Delete `7esn`($123456789 In Count(*) In .e1) Ends With Extract(@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|Count ( * )) Ends With Any(usn1 In 0x0[..`4esn`] Where False[.e1..Null]),usn2 Starts With `6esn` Starts With 12e12"), - octest:ct_string("Optional Match `1esn`=((:`8esn`)-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`{#usn8:Null[0e0][12],`2esn`:`8esn` In $@usn5}]-({_usn3:999 In $_usn4 In 0X7,`1esn`:1e1 In $#usn8 In 12e12})) Optional Match `3esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}),`5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Where 0e0 Remove {`7esn`:True[..'s_str'][..01]}.`1esn`!,`2esn`:@usn5,({`1esn`:@usn6})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1}).@usn5?"), - octest:ct_string("With Distinct *,7 Is Null Order By $12[01..][1.e1..] Ascending,0x0 =~_usn4 Desc Limit 12[`7esn`...0][0.12..``] Where $123456789 Ends With .e0 Union All Merge (:#usn7) On Match Set `8esn`+=123456789[1000],`1esn` =(@usn6 {_usn4:$_usn4[#usn8..]})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)[Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null)..],#usn8+=@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF On Create Set usn1+=$@usn6 In $`5esn` In $usn2 Union All Merge (`5esn` {_usn4:0X7 =~``})"), - octest:ct_string("Remove [#usn7 In 01234567[$`3esn`..] Where .12 Starts With @usn5 Starts With $#usn8|$`6esn`[$`1esn`][1000]].@usn6?,usn2($#usn8 Is Null Is Null)._usn4 Union All With *,123.654 Is Not Null Is Not Null Order By $123456789[$``][010] Desc,#usn8 Is Not Null Asc,$@usn5 Ends With 0X0123456789ABCDEF Desc Skip @usn6 Contains _usn4 Contains $`4esn` Where usn1[..@usn5][...e0]"), - octest:ct_string("Merge `4esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}) On Create Set `3esn`+=(:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]),{`6esn`:$`8esn`[``..][123.654..],``:999[$`6esn`]}.`5esn`? =$_usn4[$`8esn`..][07..] On Create Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] Union All Merge ((:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})) On Match Set [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]].`1esn` =9e12 =~01 =~$`7esn` On Match Set `8esn` =12 Ends With 01 Ends With 1e1 Return Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])[All(#usn7 In 01234567[$`3esn`..] Where Count(*)[.e0.._usn4])..][None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..])..],9e12 Contains $_usn3 As `2esn`,All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12) Starts With Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Contains .0 Contains .e1) As usn2 Order By 9e1[.12..] Asc,Extract(_usn4 In usn1 Contains False Contains `` Where $`4esn` Starts With 1e1|Count(*)['s_str'..`1esn`]) =~Extract(`4esn` In $`8esn` Starts With 1000|`7esn`[Null..][@usn5..]) =~(:`4esn`:#usn8)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ) Asc,Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[{@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null}..] Descending Skip 9e1[.12..] Detach Delete @usn5[..True][..0X7],Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]),`5esn` Ends With .e1 Ends With $_usn4 Union Remove `1esn`:`5esn`,{`5esn`:0X7[12]}.#usn8,Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])._usn3? Unwind 999 Contains `7esn` As @usn5 Create ((:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})<-[@usn6:`3esn`|:`4esn`*]->(`6esn` :`5esn`)),(({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(:_usn4:usn1))"), - octest:ct_string("Unwind 0x0 =~_usn4 As `4esn` Unwind `` Is Not Null As `` Union With Distinct *,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Order By .e0 Contains 01234567 Descending,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Desc,'s_str' Starts With 1000 Starts With #usn8 Descending Where 123456789 =~_usn4 =~$0 Union All With Distinct *,.e1 Starts With $`8esn`"), - octest:ct_string("Create `4esn`=((({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[usn2?]-(`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))) With Distinct *,\"d_str\" Order By $`3esn` Descending,[0[usn2..],7[12e12..$_usn4][9e1..True],`1esn` Contains Count ( * )][Extract(@usn5 In .12[#usn7][$`8esn`] Where Count ( * ))..][Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])..] Desc,1e1[..#usn8][..'s_str'] Descending Skip @usn5 Is Not Null Is Not Null Union All Merge #usn8=((:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[`2esn`? *0..010]->(usn2 :_usn3)-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]})) With 07[07] Skip $`4esn` Contains 0Xa Limit 00[.e0..9e1] Union All Unwind 07[`6esn`..][`5esn`..] As _usn3"), - octest:ct_string("With Distinct {usn1:'s_str'[12..'s_str'],#usn7:07[`6esn`..][`5esn`..]} As `1esn` Limit {`7esn`:.e0 Contains #usn7 Contains $#usn8}[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..None(`6esn` In 0X7 =~`` Where 12.e12['s_str'])][(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})..({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})] Merge #usn8=(({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({_usn3:$`1esn` Starts With @usn6})) Create usn2=(`4esn` {``:07,`3esn`:12e12[_usn3..][$@usn5..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)-[@usn5? *..7{usn2:12e12[$`5esn`][07],usn2:$0[..`8esn`]}]-(_usn4 :#usn8) Union All Optional Match (((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})-[:#usn7|:_usn4 *123456789..999]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]-({usn1:0x0[0X7..][usn1..]}))),`1esn`=(((usn1 :`4esn`:#usn8)-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}))) Where _usn3 Is Null Is Null Delete \"d_str\" =~12.e12 =~07,Null[0.e0..0x0] Return *,.e0[..0X0123456789ABCDEF][...e12] As `6esn`,1000 In 0X0123456789ABCDEF In 01 Limit [usn1 In 00 Starts With _usn3 Where 00][#usn8(Distinct $`2esn`[$123456789..$`1esn`][0Xa..$``],@usn6[`5esn`..$`3esn`])..['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`]] Union All Return (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Order By 7 =~9e0 =~'s_str' Descending,0e0 Starts With .e12 Ascending Limit 9e1 In $@usn5 In \"d_str\" With Distinct 1000[123.654..9e12][1000.._usn3],count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null,$123456789 =~$#usn8 =~$#usn8 Order By $usn2 Is Not Null Is Not Null Ascending,Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Ascending Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7}))"), - octest:ct_string("Return Distinct 0Xa Is Not Null Is Not Null As `1esn`,(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})[..Filter(#usn8 In $`5esn` Is Null Is Null Where 0Xa Is Null Is Null)][..(`7esn` {@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})] As usn1 Skip False[`6esn`][07] Limit [usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]] Starts With (`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` ) Starts With (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8) Remove {`1esn`:`7esn`[Null..][@usn5..]}.`7esn`!"), - octest:ct_string("Create _usn3=(($999)),``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`))"), - octest:ct_string("Remove {`4esn`:.12 Starts With 0Xa}.usn1!,[`6esn` In 0X7 =~`` Where 123456789 =~_usn4 =~$0|$#usn8 Ends With 1000 Ends With .0].`7esn`? Remove (:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[?:`1esn`]-(_usn4 :@usn6:`7esn`{@usn5:$_usn3[$`4esn`..Null]})._usn3! Union All With Distinct @usn5 Ends With $`3esn` Ends With 12e12 Order By $`3esn` =~$`7esn` =~False Ascending Skip 0X0123456789ABCDEF[.e0..$`4esn`]"), - octest:ct_string("Optional Match `1esn`=(((`` :@usn5)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn5:`8esn`|:usn1]-(#usn7 :`5esn`))),usn1=(_usn4 :`8esn`{`3esn`:False[.e1..Null],`3esn`:9e0 =~$`5esn`}) Where 9e1 Is Null Is Null Union All Unwind _usn4(@usn6[`5esn`..$`3esn`],9e1 Starts With _usn3 Starts With `4esn`)[None(usn2 In 1000 Contains 0.e0 Where #usn7 Starts With .e12 Starts With $`7esn`)..Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $123456789 Ends With .e1)][(`6esn` :`5esn`)-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})..{#usn7:1e1[`6esn`..]}] As _usn3"), - octest:ct_string("Optional Match ((({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)<-[#usn7 *123456789..999]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}))) Where $#usn7 In .e1 In 01 Union Create ((`5esn` {_usn4:0X7 =~``})<-[`2esn`?:usn2|#usn8{`6esn`:0X7[.e12..01234567],@usn6:`7esn`[...e1][..\"d_str\"]}]->(`5esn` :`8esn`{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})),`8esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) Union All Optional Match ((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})),(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))) Where 00 In 1e1 Create `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Unwind [@usn5 In .12[#usn7][$`8esn`] Where $_usn4[12e12][`4esn`]][`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])..``(False In `3esn`)][[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]]..Filter(@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12])] As @usn6"), - octest:ct_string("Match `1esn`=(((`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})-[ *010{@usn5:Null Is Null Is Null}]-(:`5esn`)<-[`7esn`{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}]-(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}))) Create ((`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})),_usn4=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})) Remove {`6esn`:9e1 Contains $`3esn` Contains 01234567}.`2esn` Union Remove `1esn`(Distinct `2esn`[$`1esn`..][$_usn3..])._usn4!,Null.`6esn`?,`3esn`(Distinct 01234567 Ends With 0x0).``! Optional Match @usn6=((:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})-[?:`4esn`|:`7esn`]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})),#usn7=(@usn5 {usn2:$999[12.0..]})<-[usn1]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[_usn3?:``|:_usn4]->(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}) Remove Any(usn2 In 1000 Contains 0.e0 Where .e12 Contains $12 Contains 12.e12).`2esn`,[$`6esn`[$`1esn`][1000],$``[False],07[12][$`6esn`]].`5esn`!,`7esn`(`3esn`[..7][..12e12],$999 Ends With $`3esn` Ends With `8esn`).usn2? Union Detach Delete _usn3 Ends With 12e12 Ends With .e0,01[0.0],None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]) Detach Delete $_usn4['s_str'..] Detach Delete .e0 Is Not Null Is Not Null,{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]} =~Single(usn2 In 1000 Contains 0.e0) =~Any(@usn6 In @usn5 In $`6esn` Where $`7esn` Is Not Null)"), - octest:ct_string("Optional Match _usn4=(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Unwind $_usn3 =~$`3esn` =~0x0 As usn2 Unwind None(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`) Contains `3esn`($usn2 Contains 12.e12 Contains 00) As @usn6"), - octest:ct_string("Create (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`7esn`{usn1:0 Is Not Null}]->(:`7esn`{`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}))),`4esn`=((`2esn` :`6esn`:`7esn`{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`})) Return $`6esn` =~$#usn8 As #usn8 Order By (#usn7 :#usn8)-[`6esn`:`4esn`|:`7esn` *..0x0]->({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})[Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])][Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])] Descending Limit Null Contains 9e1 Union All Return Count ( * )[Count ( * )..12e12][usn1..1000] Order By $`1esn`[$usn2..][$1000..] Descending Skip Filter(`6esn` In 0X7 =~`` Where $0[$#usn8..01234567])[{`7esn`:Null[0e0][12],#usn8:$12[..``][..$7]}..][Filter(usn1 In 0x0[..`4esn`] Where $usn1[0.12..]['s_str'..])..] Union With $`6esn` Is Null Is Null As `4esn` Order By [_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]][[.0 Starts With `2esn` Starts With `6esn`,9e1[0.e0..][#usn8..]]..][[07[$999],9e0 In 01234567,@usn5 In 0X0123456789ABCDEF]..] Asc,0 Is Not Null Descending,1e1[..#usn8][..'s_str'] Descending Where 9e12 Is Not Null Is Not Null"), - octest:ct_string("Return Distinct *,Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null As `6esn` Remove Any(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0).usn1?,({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}).`5esn`! With *,{`7esn`:Count(*) In 01 In .0}[..{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}][..#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..])] As `5esn`,#usn7 Ends With `4esn` Ends With @usn5 As `` Where $`1esn` =~$`1esn` =~#usn7 Union All Return Distinct *,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] As @usn6 Order By 010 Starts With `7esn` Starts With 9e1 Ascending,123456789 Is Null Descending,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] Desc Skip {#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null Remove None(`4esn` In `6esn`[1e1..] Where 12.0[``]).@usn5? With Distinct 's_str'[..0.0][..$`4esn`] As `2esn`,#usn7 Contains .0 Contains .e1,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Skip `6esn` Starts With $usn2 Starts With 0.0 Limit 9e1 Contains $`3esn` Contains 01234567"), - octest:ct_string("Detach Delete [.0[01][$12]][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`3esn` =~$`7esn` =~False|7[..12e12][..$`6esn`]]],07[07] Union Return *,07[0..`4esn`] Skip $_usn3[9e1][$_usn4] Optional Match ((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),((_usn4 {`8esn`:9e1 In 01 In 999}))"), - octest:ct_string("Remove Any(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`]).`6esn`?,[$0 Ends With $#usn7 Ends With .12,$7,@usn5 Ends With $`3esn` Ends With 12e12].`1esn`? Union Return Distinct *,None(usn2 In 1000 Contains 0.e0 Where $`6esn`[Count(*)..0.e0][0.0..Count ( * )])[(:usn2:@usn6{@usn6:$`4esn`[$`2esn`..]})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})][Any(@usn6 In @usn5 In $`6esn` Where 12.0[0Xa][00])] As @usn5,$usn1[1e1.._usn3][$@usn6..$#usn7] As `5esn` Skip Count(*)[12.e12..] Unwind Any(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) Is Not Null Is Not Null As `2esn` Union All Match `8esn`=(((:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[:#usn7|:_usn4{``:$1000 Is Null Is Null}]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`}))) Where 0Xa[..$``]"), - octest:ct_string("Merge ``=((@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`)) Union All Optional Match `4esn`=(({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})) Union Unwind 0.12 Contains $`2esn` Contains $_usn4 As @usn6 Merge `2esn`=(:usn1{`8esn`:usn1 Contains $``})-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1})-[ *010{@usn5:Null Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`]"), - octest:ct_string("With `5esn` In 12 As usn2,Count(*) Starts With 1e1 Starts With $123456789 As #usn7,[`4esn` In 's_str'[12..'s_str'] Where 9e1 Contains $`3esn` Contains 01234567][[7[..12e12][..$`6esn`]]..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}] As #usn8 Order By 00 In 12.e12 Descending,9e0 Ends With $`7esn` Asc Skip 01234567 Is Null Is Null Limit $123456789 In Count(*) In .e1 Where $123456789 Ends With $`6esn` Merge usn2=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) Union All Unwind Any(`4esn` In `6esn`['s_str'..][010..] Where \"d_str\" =~`6esn` =~0Xa)[[$`6esn` Is Null Is Null,0Xa Is Not Null Is Not Null,0X7 In 123.654 In $`2esn`]][[usn2 In 1000 Contains 0.e0 Where $_usn3[Null]|$0 =~$usn1 =~9e1]] As #usn8 Return *,usn2 =~0x0,07 In `5esn` In 12e12 Skip Null Contains 9e1 Limit [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] Unwind None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] As @usn5 Union With $`` Ends With 12e12 As `6esn`,(`4esn` :`8esn`{_usn4:0 Is Null Is Null})-[`6esn`:`8esn`|:usn1$_usn3]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Ends With Filter(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999) Ends With [`4esn` In `6esn`[1e1..] Where 07[12e12]],$999[$1000] Where .12 =~.12 =~1e1"), - octest:ct_string("Unwind 9e12 As `7esn` Unwind 12.e12 Contains $`5esn` As #usn7 Remove {`6esn`:$`8esn`[``..][123.654..],``:999[$`6esn`]}.``,[0X7[..12e12],$`6esn`[$`1esn`][1000]].usn2?"), - octest:ct_string("With 0Xa Starts With 0.12 Starts With .0 As usn2,[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4,$@usn6 Contains 0 Contains $`2esn` As `` Limit 1e1 In $999 In $usn2 Union Unwind usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`]) Is Null As `3esn` Union All Unwind 0.0 =~0X7 =~#usn7 As `6esn` Optional Match usn2=((usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(usn2 :`5esn`)),((`3esn` :`8esn`)-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})-[ *..0X7]->(`5esn` :_usn4:usn1)) Create `4esn`=((:`7esn`{``:$`1esn` Starts With @usn6})),@usn5=((@usn6 :#usn7{@usn5:Null Is Null Is Null})<-[``?:@usn5|`8esn`]->(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]}))"), - octest:ct_string("Match `3esn`=(((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Where `7esn`[Null..][@usn5..] Union Delete $`2esn`[123456789..][00..],$`4esn`[9e1..][0..],$`2esn` Ends With `3esn` Ends With $7 Unwind [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] As _usn3 Union Match `5esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Optional Match @usn5=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) Where 07[12e12]"), - octest:ct_string("Remove Any(#usn7 In 01234567[$`3esn`..] Where 0Xa[0xabc..$#usn8])._usn4! Remove (usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})._usn4?,usn1:`3esn`:`1esn`,{`2esn`:9e1 In 01 In 999,`5esn`:$@usn6[..$usn1]}.@usn5! Union Detach Delete $usn1[0.12..]['s_str'..],usn2 Starts With `6esn` Starts With 12e12,True[Count(*)..][1e1..]"), - octest:ct_string("With *,7 Is Null As #usn7 Order By $`7esn` =~.e1 Descending,0e0 Starts With .e12 Ascending Where $`2esn`[$`2esn`..] Union All Create ((:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]})<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]})<-[`5esn`?:`6esn`]->(`1esn` :#usn7{`4esn`:9e12 Is Not Null Is Not Null,`8esn`:$0[..`8esn`]})) Match (({#usn7:Count ( * )[@usn6..0x0]})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})) Where 0X7[0e0..] Union Match (@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]}),(({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:``|:_usn4 *0Xa]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) Where 0x0 =~_usn4"), - octest:ct_string("Return *,\"d_str\" =~`6esn` =~0Xa As `4esn` Skip $@usn5 =~07 =~True Create _usn3=(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}),`1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) Create ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})-[@usn6?:#usn7|:_usn4 *00..]->(`` :@usn5{#usn7:0X7[12]})) Union Remove `3esn`:#usn7,None(`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]).#usn8?"), - octest:ct_string("With Distinct $`4esn`[$`2esn`..] As #usn8,#usn8 In $0,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Skip $@usn5 =~$`` =~$usn2 Limit `8esn` Ends With 999 Ends With 9e0 Unwind _usn3[.0] As _usn3 Return Distinct 999[``..][Null..] As `1esn` Skip usn2(Distinct _usn3 Contains @usn6 Contains 1.e1)[Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where _usn3 Is Null)..[12e12[0.e0][9e1]]][Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``])..Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)] Limit Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)[..(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})][..Any(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)] Union All Return Distinct _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0),$`7esn` In 0.e0 In `4esn` As `2esn` Limit Any(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) Is Not Null Is Not Null Create `2esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}),`3esn`=(`4esn` {usn2:7 In 0xabc})<-[$#usn8]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}) With *,`7esn`[...e1][..\"d_str\"],12e12[0.e0..True][0.12..0.0] As #usn7 Order By 0xabc[12.e12..`1esn`] Ascending,12.e12 In $1000 Ascending,[`6esn` In 0X7 =~`` Where 0.12[Null..]] Is Null Is Null Ascending Limit Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1)[00..] Where 0.e0[..#usn8][..Null] Union All Detach Delete {`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}[[`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]]][Count ( * )] Unwind $@usn6 Is Null As `` Merge `3esn`=(((:_usn4:usn1{usn2:$`5esn` In False})<-[?:@usn5|`8esn` *..0X7]->(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}))) On Create Set [`6esn` In 0X7 =~``|$#usn7[...e12][..$7]].`1esn` =9e12 =~01 =~$`7esn` On Create Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$``"), - octest:ct_string("Optional Match (`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}),(:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}) Where Null[01234567][01234567] Create usn1=((#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`6esn`?:usn1|`3esn`{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})) Remove usn1:`1esn` Union All Merge ((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) On Match Set [`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|`` Contains 12 Contains True].`2esn`? =$@usn6[..$#usn7][..12.e12],None(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12).`8esn`! =12[..9e0][..999] With [$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}),[@usn5 In $#usn8 Is Null Is Null Where 7 In 0xabc][[Null[01234567][01234567],07[1e1],Count(*)[12.e12..]]..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)] Skip `1esn`[@usn6..$123456789] With *,{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)] Order By .e1 Starts With $`8esn` Asc Limit $#usn7 In .e1 In 01 Union All Return Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Order By 12e12[Count ( * )..][usn2..] Ascending,(`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Descending Detach Delete $999[12.0..] Match usn2=(((`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[?:`5esn`|`1esn` *999..]->(:``)<-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))),`2esn`=(({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(:_usn4:usn1)) Where `4esn` =~123456789"), - octest:ct_string("Remove None(usn1 In 0x0[..`4esn`] Where False[.e1..Null]).``,[.e0[..999][..0X7]].`5esn`? Unwind Extract(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..]) Contains Extract(#usn8 In $`5esn` Is Null Is Null Where @usn6 Contains .e1 Contains $`4esn`) Contains Any(`4esn` In `6esn`['s_str'..][010..] Where 12.e12 Ends With 01 Ends With .e1) As usn2 Union All Unwind (@usn6 :``{@usn5:@usn5 Starts With 12e12 Starts With @usn5})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn4:usn1)-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) In Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) In (usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]}) As `1esn` Match `1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}),`1esn`=(((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))) Remove None(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True]).#usn7?,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]].@usn5?,[00[01234567][False]].`1esn`?"), - octest:ct_string("Merge `8esn`=((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})) Union Optional Match ((:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]})),((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Where $`4esn`[12.e12..][0.0..] Union Merge (((`3esn` )-[?:#usn7|:_usn4]-(usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]}))) On Match Set `5esn` =01234567 Starts With $_usn4,#usn7 =\"d_str\" =~`6esn` =~0Xa,{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]}.usn2? =9e12 Contains .e0 Contains .e0"), - octest:ct_string("Detach Delete All(usn1 In 0x0[..`4esn`] Where $0[$#usn8..01234567]) In [_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0|$`7esn` Is Not Null] In [.12 Ends With `1esn` Ends With $`1esn`,$usn2[False..`7esn`][`7esn`.._usn3],\"d_str\" Contains `3esn` Contains 00],[0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]),07 Contains #usn8 Contains $_usn3 Merge usn2=((({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1)-[``? *..01]->(`6esn` :_usn4:usn1{`6esn`:00 In 12.e12}))) On Match Set `6esn`(Distinct 0Xa[$``..][01234567..],12.0 In 1000 In _usn4).`2esn` =Extract(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0|$_usn4[`3esn`][0]) Is Null Is Null Remove (:``{`1esn`:`6esn` =~$_usn3})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`7esn` :`6esn`:`7esn`)-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6).@usn5?,({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(:``)<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]}).`5esn`?,(:`6esn`:`7esn`{_usn4:12[0X7..@usn6],_usn3:123456789 In $usn2 In `6esn`})<-[usn1]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}).`1esn` Union All Merge `2esn`=(:usn1{`8esn`:usn1 Contains $``})-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1})-[ *010{@usn5:Null Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Match Set `5esn`(0[0.12..]).`1esn`? =12.e12 In $0 In Count(*),(usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[`7esn`?{usn1:@usn5 Ends With $`3esn` Ends With 12e12,@usn6:12e12[_usn3..][$@usn5..]}]->(usn2 :`5esn`).#usn8? =[`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] Unwind Extract(usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`) Contains [0 Contains 12e12,0xabc Ends With $7 Ends With $`2esn`,0x0 =~_usn4] As `7esn`"), - octest:ct_string("Merge (`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) Merge `1esn`=((({`6esn`:$`8esn`[..$``]})-[`2esn`]-(@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12}))) On Match Set #usn7 =(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`) Is Not Null Is Not Null,`1esn` =`` =~12 =~$#usn7,[123456789[$#usn7..],_usn4[0xabc..],$`3esn` Starts With 01234567 Starts With $1000].`1esn`! =0X0123456789ABCDEF Starts With `2esn` Starts With $999 Match `8esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) Union Unwind {@usn6:0X0123456789ABCDEF[..usn1]}[..`7esn`($`3esn` =~$`6esn` =~`8esn`)][..(`4esn` {`6esn`:$12[..``][..$7]})<-[#usn7]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})] As `` Unwind $`6esn` =~1e1 As @usn6 Unwind All(usn1 In 0x0[..`4esn`] Where 07 In $7 In 12) =~Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 999[$`6esn`]|$`8esn` In \"d_str\" In 9e12) As #usn7 Union All Create _usn4=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),(((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})-[?*..{`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}]-(`` :`3esn`:`1esn`{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-({usn1:010[@usn5..],`7esn`:`2esn` Is Not Null Is Not Null}))) Match (`5esn` {_usn4:0X7 =~``}),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null}))"), - octest:ct_string("Delete 7[..`1esn`],`6esn` In 1000 In 01234567 With *,$0[..`8esn`] As _usn4 Order By $`6esn` Is Not Null Is Not Null Desc Skip 0x0 Contains $`8esn` Contains `6esn` Limit 1e1[@usn5..] Where 1000 Contains 0.e0 Union Remove [@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1|00].`3esn`!,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]|$`6esn`[$`1esn`][1000]].`4esn`! Unwind Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] As `8esn` Union Create `8esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Merge usn2=((`5esn` :usn2:@usn6{`5esn`:0Xa In .e1 In Count(*)})) On Create Set `3esn`+=[_usn4[0xabc..]][..Extract(_usn4 In usn1 Contains False Contains `` Where 12[usn1][True])][..(_usn3 {`7esn`:usn1 Contains False Contains ``})<-[? *0..010]-(#usn8 :`4esn`:#usn8)]"), - octest:ct_string("Merge `7esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}) On Match Set `7esn` =$`6esn` Is Not Null Is Not Null On Match Set ``+=`6esn`[0X7..][0x0..],#usn8 =1.e1 =~$_usn4,{`8esn`:1000 Contains 0.e0,usn1:`6esn`[1e1..]}.`4esn`? =$#usn8[1e1][9e1] Union All Delete True Is Not Null Is Not Null,[@usn5 In $#usn8 Is Null Is Null Where $`2esn` Starts With .e0 Starts With 12.0|$`7esn` Is Null Is Null][``(Distinct 0X7 In $@usn5 In 9e0,12.0[0Xa][00])][`6esn`(Distinct 12.e12 In $0 In Count(*),$`2esn`[$`2esn`..])] With Distinct `2esn` In 7 In usn2,$0 =~$usn1 =~9e1 As `5esn`,@usn5[_usn4..][.e0..] As usn1 Where $0[0X0123456789ABCDEF..$#usn7] Unwind Any(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`) Ends With [1e1[@usn5..],$#usn8 Is Null,$0[$#usn8..01234567]] Ends With Extract(`6esn` In 0X7 =~`` Where 010 =~`6esn`) As usn2 Union Create ((:`5esn`)<-[#usn7{#usn7:False[`2esn`..#usn8]}]->(usn2 :`3esn`:`1esn`)-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]}))"), - octest:ct_string("Match (`` :`7esn`)<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]}) Where $`4esn`[12.0..`5esn`] Unwind 1000[123.654..9e12][1000.._usn3] As _usn3 Union All Remove @usn5:@usn5,Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`]).@usn5,usn2:@usn6:`7esn` Create `2esn`=((:#usn7{usn2:$`5esn`[$123456789][`1esn`]})) Optional Match usn2=(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})))"), - octest:ct_string("Match (#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[#usn7{#usn7:False[`2esn`..#usn8]}]->(`5esn` :`2esn`:`3esn`{_usn3:$`2esn`[$123456789..$`1esn`][0Xa..$``],`5esn`:12.e12[@usn5..123.654]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}),`5esn`=((#usn8 :`4esn`:#usn8)<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})) Union With Distinct 010 In @usn6 Order By (:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0}) Starts With Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) Starts With [12.0 In 1000 In _usn4] Ascending Limit `7esn`[1e1..07][0x0..Count ( * )] Union All Delete 's_str' Ends With .e0 Remove Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|@usn6[..0xabc][..$#usn7])._usn3,Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null).``!"), - octest:ct_string("Optional Match ``=((_usn4 )-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})) Where 123456789 =~_usn4 =~$0 Union Unwind 1000 Contains 0.e0 As #usn8"), - octest:ct_string("Merge (((`` :@usn5{`5esn`:0X7 =~.0 =~\"d_str\"})<-[? *..01{`1esn`:`4esn` In $12 In `8esn`}]->(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[`6esn`? *..7{`3esn`:123456789[$#usn7..]}]-(`3esn` {_usn3:@usn6 Contains _usn4 Contains $`4esn`}))) On Create Set _usn3 =$`5esn`[False],[07[$999],@usn6[$`7esn`]].@usn6 =010 Starts With `7esn` Starts With 9e1,`4esn` =usn2[..$`3esn`] On Create Set usn2 =_usn3 Is Not Null Is Not Null,`4esn` =.e1 Starts With $`8esn` Match `1esn`=(((usn1 :`4esn`:#usn8)-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}))),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`)<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)) Where #usn8 Contains .e0 Contains $`8esn` Unwind 07[1e1] As `1esn` Union All Return *,$`5esn` Ends With .e12,[`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As @usn6 Order By $`7esn` Ends With $@usn5 Descending,0xabc[12.e12..`1esn`] Ascending Skip All(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn`[...e1][..\"d_str\"]) Contains (`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[ *..0x0{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}]-(`5esn` {`8esn`:0.0[12...12]})-[@usn6?:#usn7|:_usn4 *00..]->(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Contains Any(usn1 In 00 Starts With _usn3 Where `8esn`[1000..$7][$`7esn`..`2esn`]) Limit 0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str' With {_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] As `1esn` Order By 0 Is Not Null Descending Skip 0x0 Where 123456789 Starts With #usn7 Starts With `6esn` Union Create (({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) Return `8esn`[_usn3..$#usn7],({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn` Skip `7esn` Starts With $usn2 Starts With .e0 Limit 00 Is Not Null Is Not Null"), - octest:ct_string("Remove Single(#usn8 In $`5esn` Is Null Is Null Where $123456789[0.0..]).#usn7?,Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]).@usn6! Remove Any(@usn5 In .12[#usn7][$`8esn`] Where 12[..9e0][..999]).`5esn`?,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $123456789 Ends With .e1).`3esn`?,[010[$@usn6],9e0 Is Not Null].`2esn` Union Merge @usn5=(({`8esn`:$usn1[0.12..]['s_str'..],`8esn`:`1esn`[0e0..]})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})) On Create Set `6esn`+=Extract(`4esn` In $`8esn` Starts With 1000 Where False In `3esn`|$`3esn` =~Null),`8esn`+=12 Ends With .e12 Ends With $7,(:``{`1esn`:`6esn` =~$_usn3})-[`5esn`?:_usn4|:@usn5]-(usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]}).usn2 =usn1(Distinct) Ends With {`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654} Ends With ({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) On Match Set `7esn`+=9e0[``][123.654] Delete [True[..'s_str'][..01]] In Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999]) In All(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`]),$`3esn` Starts With $usn1"), - octest:ct_string("Create `8esn`=(`4esn` {`3esn`:0X7[..12e12],`8esn`:False In 123456789 In $0})-[`4esn`?:`1esn`]->(:`2esn`:`3esn`{usn2:$`5esn` In False})<-[#usn7? *00..]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]}),`7esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})) Return Distinct *,1.e1[Null][12.e12] As ``,Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) As _usn3 Order By 0.e0[`6esn`...e0][9e12...e12] Descending,_usn3 In .e1 In $12 Asc Skip [$`4esn`[9e1..][0..]][Any(`4esn` In $`8esn` Starts With 1000 Where 0.e0[9e1..][0.0..])..Single(#usn8 In $`5esn` Is Null Is Null Where 1000 Ends With 1000 Ends With $`4esn`)] Limit 123456789 =~_usn4 =~$0 Return Distinct $@usn5 =~$`` =~$usn2 As @usn6,usn1 Is Not Null Is Not Null,01 In 01 In 12 Order By Extract(usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`) Contains [0 Contains 12e12,0xabc Ends With $7 Ends With $`2esn`,0x0 =~_usn4] Ascending,07[1e1] Ascending Limit $`8esn` Starts With 1000 Union Detach Delete `2esn` In Count(*) In 9e0,$usn2[False..`7esn`][`7esn`.._usn3],999[``..][Null..] Create ((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})),(`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[? *..0X7{`3esn`:`8esn`[$``]}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})-[?:usn1|`3esn`{#usn8:1000[..$`6esn`][..0xabc]}]->(usn1 :_usn3{@usn6:True[..'s_str'][..01]}) Remove ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`5esn`? *010]-({@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null}).`7esn`! Union Unwind None(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1])[`8esn`(00[``..][$`4esn`..],123.654[@usn5])] As _usn4 Merge (((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) On Match Set (`4esn` :`6esn`:`7esn`)-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(`5esn` {@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}).#usn8 =False In 123456789 In $0,Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])._usn4! =9e1[010..]"), - octest:ct_string("Delete $`4esn` Contains 0Xa,00 In 0.12 In `5esn` Union Optional Match ((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6)) Union With Distinct *,9e1['s_str'..1e1] As #usn7,01234567 As `6esn` Skip `2esn` In Count(*) In 9e0 Limit usn2 Is Not Null Where $12 Is Null Is Null With Distinct Null[0.e0..0x0] As `2esn`,$`1esn` Starts With $999 As #usn8 Where Count(*)[`7esn`..$12] Optional Match ``=(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12}) Where 123456789[$#usn7..]"), - octest:ct_string("Return Distinct *,{`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] Optional Match #usn8=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),((#usn7 :_usn3)<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]})-[#usn7:_usn3|:`4esn`]-(:#usn7{usn1:$123456789[..0.12][..#usn7]})) Remove `5esn`:_usn4:usn1,_usn4($`6esn`[$@usn6..],_usn3[.0]).#usn8,[07[$999],@usn6[$`7esn`]].@usn5! Union All Detach Delete 12[12e12..@usn6]"), - octest:ct_string("Match (`6esn` $`8esn`)<-[@usn6?:`6esn`*..]-(_usn3 :usn2:@usn6),(`3esn` :`8esn`)"), - octest:ct_string("Delete $`2esn` Ends With `3esn` Ends With $7,0e0[12][$_usn4],`7esn`[Null..][@usn5..] With @usn5[..True][..0X7] As #usn8,[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..] Skip ({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})[None(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])..] Create (#usn7 $usn2)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` )"), - octest:ct_string("Detach Delete 999[$`8esn`],Single(#usn7 In 01234567[$`3esn`..])[(`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']})][[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0]],$#usn7 In .e1 In 01 Delete 01 In 01 In 12,`6esn`[0X7..][0x0..]"), - octest:ct_string("Detach Delete .e1[$_usn4][1e1] Union Create `5esn`=(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}),`6esn`=((@usn6 :`8esn`{`2esn`:0X7 =~.0 =~\"d_str\"})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})) Optional Match ((_usn3 :_usn4:usn1)<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})),(:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa})-[:usn1|`3esn`]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]}) Where 00[01234567][False]"), - octest:ct_string("With *,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn` Skip 1e1[..False] Limit 12e12[$`5esn`][07] Optional Match @usn5=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Union All Create ((`6esn` :_usn4:usn1{`6esn`:00 In 12.e12})<-[`7esn`?:`5esn`|`1esn`]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`})),(usn1 :`3esn`:`1esn`)-[?:`4esn`|:`7esn` *..0x0]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Union Remove [@usn5 In .12[#usn7][$`8esn`] Where Count ( * )].`8esn`? With Distinct $12[`3esn`..0e0][`2esn`..$7] As #usn8,0.12 =~01 =~12 Order By $123456789 =~$#usn8 =~$#usn8 Ascending,0X7 In 123456789 In $`5esn` Ascending"), - octest:ct_string("Merge ((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6)) On Create Set None(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]).`3esn` =Single(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) In [$123456789 Contains usn2,010 Is Null Is Null,`7esn` Starts With $usn2 Starts With .e0] In `2esn`($`5esn` Is Not Null,7 In $`3esn` In #usn7),None(`4esn` In $`8esn` Starts With 1000 Where 0.12 Is Null Is Null).`2esn`! =[010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]][(:@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})..][Extract(#usn8 In $`5esn` Is Null Is Null Where 1000[0.0][Null])..] On Match Set `7esn`+=`5esn`[`1esn`..`1esn`],{_usn4:usn2 Ends With $`5esn` Ends With `2esn`,#usn7:0.12 In $7 In 0}.@usn5! =_usn3 Contains @usn6 Contains 1.e1,`8esn`+=Filter(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null) Ends With [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1] Ends With _usn3(Distinct $123456789 Ends With $`6esn`) Unwind Extract(`6esn` In 0X7 =~`` Where $_usn3[9e1][$_usn4]|@usn6[..0xabc][..$#usn7])[[@usn6 In @usn5 In $`6esn` Where $@usn5 In 12e12 In Count(*)|999[$`6esn`]]..Any(_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`)][{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`],usn2:@usn6[`3esn`..][$7..]}..`7esn`($123456789 Ends With $`6esn`)] As _usn4 Union All Create (({_usn3:12.e12 In $0 In Count(*)})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(`2esn` :``)-[:_usn4|:@usn5 *0xabc]-({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})) Union Unwind 00 In 12.0 In 's_str' As `3esn`"), - octest:ct_string("Create `5esn`=(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}),`6esn`=((@usn6 :`8esn`{`2esn`:0X7 =~.0 =~\"d_str\"})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})) Optional Match ((_usn3 :_usn4:usn1)<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})),(:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa})-[:usn1|`3esn`]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]}) Where 00[01234567][False] Union All Remove None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`1esn` Starts With $999).usn1!"), - octest:ct_string("Remove Any(usn2 In 1000 Contains 0.e0 Where .e12 Contains $12 Contains 12.e12).`2esn`,[$`6esn`[$`1esn`][1000],$``[False],07[12][$`6esn`]].`5esn`!,`7esn`(`3esn`[..7][..12e12],$999 Ends With $`3esn` Ends With `8esn`).usn2? With *,All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12) Starts With Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Contains .0 Contains .e1) As usn2 Order By All(_usn4 In usn1 Contains False Contains `` Where $`4esn`[$`2esn`..])[..Single(usn1 In $123456789 Contains usn2 Where $usn1[0.12..]['s_str'..])][..``(Distinct `1esn`[0e0..])] Asc,`4esn` =~$`3esn` =~$123456789 Ascending,$123456789[False.._usn3] Desc Skip 7[..0X7][..'s_str'] Where $123456789 Contains 01 Contains 0.12 Create ((:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})<-[@usn6:`3esn`|:`4esn`*]->(`6esn` :`5esn`)),@usn6=((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})) Union Create ((`3esn` {`8esn`:$``[_usn4..][`7esn`..]})) Merge usn2=(((`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[?:`5esn`|`1esn` *999..]->(:``)<-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))) On Match Set #usn7:``,({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})<-[?:@usn5|`8esn` *..0X7]-(:usn1).`4esn` =`6esn` Starts With $`5esn`,[`6esn` In 0X7 =~`` Where 0.12[Null..]]._usn4 =Count ( * )[`3esn`..][`2esn`..]"), - octest:ct_string("Detach Delete $usn2[..12.0],$999 In $`8esn` In `5esn` Unwind $1000 Starts With .0 Starts With 0.0 As `6esn` Merge (@usn6 )<-[? *12..0xabc]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})<-[``? *12..0xabc]-(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1}) Union All Unwind `7esn`[1000..][$123456789..] As `1esn` Union All With Distinct $@usn6 Contains 07 Contains 0.e0,0X7 In $@usn5 In 9e0"), - octest:ct_string("Return *,00[``..][$`4esn`..] As `6esn`,$`6esn`[$`1esn`][1000] Order By `1esn`[@usn6..$123456789] Asc,`1esn`[9e12..$`8esn`][usn2..$``] Ascending,`7esn`[..0X0123456789ABCDEF][..$0] Desc Skip $usn2[0e0..] Limit (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``])"), - octest:ct_string("Return *,$@usn6[..12e12],`8esn` Ends With 0X0123456789ABCDEF Ends With `1esn` As usn2 Skip 1000[..$`6esn`][..0xabc] Limit $`8esn`[..$``]"), - octest:ct_string("Optional Match `2esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}),(#usn7 :`6esn`:`7esn`)<-[`3esn`?:_usn3|:`4esn`]->(:`1esn`{_usn4:$_usn3[Null]})-[ *..0X7]->(`5esn` :_usn4:usn1) Where 0.0[999..] Merge `6esn`=(:@usn6:`7esn`{`2esn`:$`3esn` Contains 0X0123456789ABCDEF Contains 00,`5esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})-[:`6esn`{@usn6:$0 =~$0 =~.e0}]-(#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]}) Merge ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8}))"), - octest:ct_string("With Distinct 1000[123.654..9e12][1000.._usn3],count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null,$123456789 =~$#usn8 =~$#usn8 Order By 0xabc[12.e12..`1esn`] Ascending Skip 9e1 =~.0 =~$`1esn` Limit None(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00)[[@usn6 Starts With `7esn` Starts With Null]][{`1esn`:07[`6esn`..][`5esn`..],usn1:$usn2[False..`7esn`][`7esn`.._usn3]}] Union Match #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`) Where $`2esn`[..`2esn`] With Distinct 7 Contains 9e1 As `` Order By $`1esn` Starts With `8esn` Starts With $0 Descending,[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Desc,#usn8 Is Not Null Asc Skip 12.e12 Contains `5esn` Where 12e12[0.e0][9e1]"), - octest:ct_string("With ({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn`,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn` Skip 010 Starts With `7esn` Starts With 9e1 Limit 0Xa Starts With $`4esn` Starts With 1e1 Optional Match (((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))) With Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] As @usn5,12 Is Null Is Null As #usn7 Limit 0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Union All Unwind 123.654[`5esn`] As @usn5 Create usn2=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}),(`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Union All Unwind 0Xa[#usn7] As usn1 Remove `3esn`:``,({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[`2esn`? *0..010]->(usn2 {usn1:0 Is Null Is Null,`8esn`:12.0[..$7][..999]})<-[#usn8:`3esn`|:`4esn` *0..010]->(`3esn` :usn2:@usn6).`4esn`! Merge `3esn`=(:`7esn`) On Match Set _usn4:_usn3,[0xabc Contains $1000].`6esn` =(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})[Filter(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 0.12 Ends With $usn1 Ends With $@usn5)][`3esn`(Distinct 9e12[_usn3])],{@usn6:0.12[0.e0..][`4esn`..]}.`4esn` =0x0 Contains $`8esn` Contains `6esn`"), - octest:ct_string("Return Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Order By 12e12[Count ( * )..][usn2..] Ascending,(`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Descending Detach Delete $999[12.0..] Match usn2=(((`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[?:`5esn`|`1esn` *999..]->(:``)<-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))),`2esn`=(({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(:_usn4:usn1)) Where `4esn` =~123456789 Union Optional Match ((:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})),`1esn`=((@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) Where 0 Ends With $7 Ends With _usn3 Unwind `6esn`[..`5esn`] As #usn8 Union Detach Delete 01234567[$`7esn`][_usn3],0.12 =~9e0,$`8esn` =~1000 =~12e12"), - octest:ct_string("Delete `4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}] Merge `3esn`=((#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)-[`6esn`:``|:_usn4 *..01]->(`5esn` :#usn7)) On Create Set `8esn` =Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`],`8esn`+=Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[usn2($#usn8 Is Null Is Null)..Extract(usn1 In 0x0[..`4esn`] Where 123456789 In $usn2 In `6esn`|@usn5[..True][..0X7])][(`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` )..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]] On Create Set `3esn`(Distinct).`` =$`1esn` Is Null Is Null,`3esn` =[$`4esn`[9e1..][0..]][Any(`4esn` In $`8esn` Starts With 1000 Where 0.e0[9e1..][0.0..])..Single(#usn8 In $`5esn` Is Null Is Null Where 1000 Ends With 1000 Ends With $`4esn`)],usn2+={usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null Unwind $`1esn` =~$`1esn` =~#usn7 As `4esn` Union Match #usn7=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),@usn5=(((_usn3 :_usn3{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[#usn8:`3esn`|:`4esn` *0..010]-(:usn1{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]}))) Unwind Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `4esn` Union All Remove Single(usn1 In $123456789 Contains usn2 Where 9e12[0.0..12.e12]).`4esn`!,(_usn4 )<-[#usn7? *00..]->(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`).``! With *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `3esn`,07[$999] As `` Where 9e0[$_usn3..0X7][7..$#usn8] Remove (:``{#usn8:$`2esn`[..`2esn`]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]}).`5esn`,(@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}).`4esn`"), - octest:ct_string("With Distinct 1000[123.654..9e12][1000.._usn3],count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null,$123456789 =~$#usn8 =~$#usn8 Order By $usn2 Is Not Null Is Not Null Ascending,Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Ascending Remove (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})<-[usn2?:usn1|`3esn`{`7esn`:0xabc Ends With $#usn7 Ends With #usn8,@usn5:$#usn8}]->(`3esn` :#usn8).usn2 Unwind Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]) As usn2 Union All Create `7esn`=(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}),(((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) Unwind 00[.e1..] As `6esn` Union All Create ((`` :`1esn`)-[`1esn`:usn2|#usn8 *1000..]-(`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[`4esn`]->({`8esn`:0X7 In 's_str' In $`1esn`})),`4esn`=(((:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[ *010$123456789]-(`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})<-[? *..0x0]->(`` :usn1)))"), - octest:ct_string("Unwind 01234567 Ends With 12.0 Ends With 0X7 As _usn3 Union All Unwind 12.e12[$1000..] As `4esn`"), - octest:ct_string("Match `1esn`=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}),`1esn`=(((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))) Create ((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})),#usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) Match `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Where 's_str'[12..'s_str'] Union Return $`5esn` In `2esn` In $12 As @usn6,usn1[Count ( * )..$usn1] As usn1,[0Xa[$``..][01234567..]] Contains `3esn`(Distinct _usn3 In .e1 In $12) Contains (`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']}) As @usn6 Skip @usn6 Starts With `7esn` Starts With Null Limit $`2esn`[$123456789..$`1esn`][0Xa..$``] Union All Create (((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Match (usn2 :#usn8{`3esn`:123.654[@usn5]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`}),((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[usn1?:`1esn` *0X0123456789ABCDEF..{usn2:$`4esn`[12.e12..][0.0..]}]-(#usn7 :`5esn`)) Where 1e1[..False]"), - octest:ct_string("Create @usn6=(:#usn8)<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[_usn3?:@usn5|`8esn`{`3esn`:`4esn`[7..][1000..],usn2:123456789 Starts With `2esn` Starts With 9e12}]-(`7esn` {`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`}) Detach Delete $999[12.0..] Return Distinct *,$@usn6[..$usn1] As @usn6 Order By `3esn` =~0.0 =~$`` Ascending Skip (:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]) Limit 0.e0[@usn6][0x0]"), - octest:ct_string("Create (({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) Return `8esn`[_usn3..$#usn7],({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn` Skip `7esn` Starts With $usn2 Starts With .e0 Limit 00 Is Not Null Is Not Null Union Merge (((usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1)<-[@usn5:#usn8{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(#usn8 :_usn3))) With Distinct None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) As _usn3 Skip `2esn` Is Not Null Is Not Null Limit None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] Union All Optional Match (#usn7 :`6esn`:`7esn`)<-[`3esn`?:_usn3|:`4esn`]->(:`1esn`{_usn4:$_usn3[Null]})-[ *..0X7]->(`5esn` :_usn4:usn1) Where 0.12 In $7 In 0"), - octest:ct_string("Remove [usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`|$`8esn`[$``..$7][$1000..$`7esn`]].`3esn`!,@usn6:#usn8,(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 Remove [@usn5 In 0X7 =~.0 =~\"d_str\" Where $`8esn` Starts With 1000|@usn6 Contains .e1 Contains $`4esn`].`8esn`! Union Match ((`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`)<-[ *0X0123456789ABCDEF..{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12}]->(_usn3 :_usn3)),(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Create ((:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})<-[@usn6:`3esn`|:`4esn`*]->(`6esn` :`5esn`)),(({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(:_usn4:usn1)) Union With All(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`)[[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]]..][({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})..] As #usn8,'s_str' In \"d_str\" In 123456789,None(`4esn` In 's_str'[12..'s_str'] Where 12.0[0Xa][00]) Is Not Null Order By 07[1e1] Ascending Limit .e0[usn2..][12..] Where 12 Ends With 01 Ends With 1e1"), - octest:ct_string("Unwind 010 =~$usn2 =~1e1 As `1esn` Merge (({`2esn`:.e0 =~`5esn`})-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})) Return *,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7,@usn6 Starts With `7esn` Starts With Null Skip Count ( * )[..usn1][..12.e12] Limit (`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0])"), - octest:ct_string("Return Distinct `3esn` Contains 0Xa As `6esn`,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,[usn1[..@usn5][...e0]][(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)] Return None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} Order By usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`]) Is Null Ascending,9e1 Starts With 9e1 Starts With 010 Asc Create #usn8=((:`8esn`)-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(:@usn5{_usn4:.12 Starts With 0Xa})<-[`4esn`{#usn8:Null[0e0][12],`2esn`:`8esn` In $@usn5}]-({_usn3:999 In $_usn4 In 0X7,`1esn`:1e1 In $#usn8 In 12e12})) Union Remove [usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`|`3esn` =~0.0 =~$``].#usn7?,(:usn1{`1esn`:`6esn` Starts With $usn2 Starts With 0.0})<-[#usn7:`3esn`|:`4esn` *00..]->({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})-[`6esn`:`4esn`|:`7esn` *..0x0]->(:usn1{`6esn`:1000 Contains 0.e0,`7esn`:$@usn6[..$#usn7][..12.e12]}).usn2 Remove Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0).`8esn`?,All(`4esn` In `6esn`[1e1..] Where 07[12e12]).`3esn`!"), - octest:ct_string("Delete Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]},0.12 Is Null Is Null Merge ((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})) On Create Set usn1+=Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Merge `4esn`=({`8esn`:0X7 In 's_str' In $`1esn`}) On Match Set usn2+=.e1 Ends With _usn4 Ends With @usn5,@usn5+=_usn3 In .e1 In $12,Extract(`4esn` In `6esn`[1e1..] Where $`7esn` Ends With `1esn` Ends With True).`` =010 In @usn6 On Match Set usn1 =Count ( * ) =~All(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7) Union All With *,usn2 =~0x0,07 In `5esn` In 12e12 Skip `` Is Not Null Is Not Null Where usn1 Contains $`` Remove None(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True]).#usn7?,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]].@usn5?,[00[01234567][False]].`1esn`? Union Match ({`5esn`:123456789 Starts With `2esn` Starts With .0})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})<-[`` *12..0xabc]->(`3esn` :_usn4:usn1) Return $`4esn` Contains 0Xa,010 In `7esn` Order By 0x0 In `8esn` In 999 Descending Detach Delete 0X0123456789ABCDEF Contains 12.e12 Contains 999,0X0123456789ABCDEF In $1000 In $`3esn`,'s_str' Is Not Null Is Not Null"), - octest:ct_string("Return {#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] As #usn7,[@usn5 In $#usn8 Is Null Is Null Where 7 In 0xabc][[Null[01234567][01234567],07[1e1],Count(*)[12.e12..]]..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)],False In `3esn` Order By 0x0[$`3esn`..010][$#usn7..00] Ascending,$@usn6 Contains 0 Contains $`2esn` Asc,0xabc Contains Null Contains 9e12 Asc Skip $`7esn` =~.e1 Limit (:`2esn`:`3esn`)-[{``:9e0 Is Not Null}]->({`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`}) Merge (@usn6 )<-[? *12..0xabc]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})<-[``? *12..0xabc]-(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1}) On Create Set `6esn`+={`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])],#usn8:`1esn`,[usn1 In 0x0[..`4esn`] Where True =~@usn5 =~$`1esn`|0.0[999..]].`4esn`! =$123456789 Contains 01 Contains 0.12 On Match Set #usn8+={`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}],(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0}).`3esn`! =07 In $7 In 12,[\"d_str\" =~`6esn` =~0Xa].`4esn`! =0.0 =~0X7 =~#usn7 Union With Distinct Extract(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null) Ends With `2esn`(`7esn`[Null..][@usn5..],123.654[12.e12..1e1]) Ends With Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]) As `7esn` Skip .e0[..0X0123456789ABCDEF][...e12] Limit $`4esn`[9e1..][0..] Where `1esn` In 999 In $#usn7 Remove [`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789]|0.12[Null..]].`8esn`?,All(`4esn` In 's_str'[12..'s_str'] Where $`8esn`[..$``]).`7esn`!,Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`!"), - octest:ct_string("With Distinct *,07[0..`4esn`],Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) Limit Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Where @usn5[..True][..0X7] Union All Remove (:`5esn`{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12})-[`5esn`?:`2esn`|usn2 *999..]->(`5esn` {`5esn`:$`5esn`[False]}).`8esn`,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]).`7esn` Remove {`8esn`:0X7 In 's_str' In $`1esn`}.usn1!"), - octest:ct_string("Unwind [$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][{`7esn`:$7[.12]}..[_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`]] As _usn3 Detach Delete $`5esn` In False,$@usn5[$#usn8..][9e1..],`7esn`[...e1][..\"d_str\"] Unwind usn2 Starts With @usn6 As #usn7 Union Detach Delete _usn3 Ends With 12e12 Ends With .e0,01[0.0],None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]) Detach Delete $_usn4['s_str'..] Detach Delete .e0 Is Not Null Is Not Null,{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]} =~Single(usn2 In 1000 Contains 0.e0) =~Any(@usn6 In @usn5 In $`6esn` Where $`7esn` Is Not Null) Union All Delete 7 =~9e0 =~'s_str'"), - octest:ct_string("Merge (({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({_usn3:$`1esn` Starts With @usn6})) Optional Match usn2=(((#usn8 :@usn6:`7esn`)<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[_usn3? *00..]-(`1esn` :`1esn`))) Where $0[7..][Null..] Optional Match _usn4=(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Union Detach Delete None(`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`])[Extract(@usn5 In .12[#usn7][$`8esn`] Where #usn8 Contains .e0 Contains $`8esn`|.e0[..999][..0X7])..@usn5(Distinct `` Starts With 12,.12 Starts With 0Xa)],$`6esn` Ends With True Ends With True Match `3esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}),``=(((:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]})<-[? *..0x0]->(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})-[? *..0X7{`3esn`:`8esn`[$``]}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}))) Create `1esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}),`6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union All With Distinct *,9e1['s_str'..1e1] As #usn7,01234567 As `6esn` Skip `2esn` In Count(*) In 9e0 Limit usn2 Is Not Null Delete 's_str'[12..'s_str'],.e12[usn2][01],[@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Remove Single(`4esn` In $`8esn` Starts With 1000 Where `6esn`['s_str'..][010..]).@usn5,(usn2 :`3esn`:`1esn`)-[ *..7]-(usn1 :`4esn`:#usn8)-[?:`3esn`|:`4esn`]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`3esn`,(:`1esn`{_usn4:$_usn3[Null]})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]-(`2esn` :#usn7)-[:usn2|#usn8 *01234567..12]-(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})._usn3"), - octest:ct_string("Merge `2esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}) On Match Set @usn5 =$`5esn` In False Remove #usn7(Distinct $@usn6[..$usn1],9e12 Is Not Null Is Not Null).usn1 Detach Delete [0.12 Contains $`2esn` Contains $_usn4,01 Ends With .e0] Starts With [usn1 In $123456789 Contains usn2 Where usn1[..@usn5][...e0]] Starts With All(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`) Union All Remove {`1esn`:0xabc[12.e12..`1esn`]}.`1esn`!"), - octest:ct_string("Optional Match ((_usn3 :_usn4:usn1)<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})),(:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa})-[:usn1|`3esn`]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]}) Where 123456789 =~$123456789 Create usn1=((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[`7esn`?]-(@usn6 :_usn3{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]})),#usn7=(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[@usn5?:_usn3|:`4esn` *..0x0]->(#usn8 {usn2:7 Contains 9e1}) Detach Delete 0Xa Starts With $`4esn` Starts With 1e1 Union Delete `7esn`($123456789 In Count(*) In .e1) Ends With Extract(@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|Count ( * )) Ends With Any(usn1 In 0x0[..`4esn`] Where False[.e1..Null]),`7esn`(0.0[1000..][.e1..],$@usn5 Contains 01)[Any(usn1 In 0x0[..`4esn`] Where 0X7[.e12..01234567])][[$@usn6 Contains 07 Contains 0.e0,`5esn` In 12]],$usn1[0.12..]['s_str'..] Unwind 999 Contains `7esn` As `7esn` Merge @usn5=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) On Create Set usn1+=$@usn6 In $`5esn` In $usn2 Union All Create `5esn`=((#usn8 :`4esn`:#usn8)<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})),usn2=((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn2 *0X0123456789ABCDEF..{usn2:`` Starts With 12}]-(`4esn` {`7esn`:.e0[..999][..0X7]})-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})) Remove {`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}.#usn8?,[0X7[..12e12],$`6esn`[$`1esn`][1000]].usn2?"), - octest:ct_string("Unwind 0X7[..12e12] As `6esn` Create ((:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[`2esn`:@usn5|`8esn`]->(`2esn` :`5esn`{`4esn`:$usn1[_usn4..][usn2..],`3esn`:999 In $_usn4 In 0X7}))"), - octest:ct_string("Create ``=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3})))"), - octest:ct_string("Optional Match `8esn`=((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})),`4esn`=(#usn7 :@usn5)-[`4esn`:_usn3|:`4esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:usn1{`8esn`:usn1 Contains $``}) Where \"d_str\" Starts With $usn1 Union Create usn2=((`5esn` :usn2:@usn6{`5esn`:0Xa In .e1 In Count(*)})),_usn4=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})) Return Any(usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..])[All(#usn7 In 01234567[$`3esn`..] Where Count(*)[.e0.._usn4])..][None(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..])..] As @usn6,0X0123456789ABCDEF Contains 12.e12 Contains 999 Order By 9e1[0.e0..][#usn8..] Asc,$0 =~`3esn` Asc Limit False Is Null Union Remove (:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)}).usn1!,None(usn1 In 00 Starts With _usn3 Where 999 Contains `7esn`).`3esn`?,_usn3:usn1 With Distinct $`4esn`[$`2esn`..] As #usn8,#usn8 In $0,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Skip $@usn5 =~$`` =~$usn2 Limit `8esn` Ends With 999 Ends With 9e0"), - octest:ct_string("Merge _usn3=((#usn7 :``)<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]})<-[? *12..0xabc]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})) On Create Set `6esn` =7[..0X7][..'s_str'],[$`5esn` Contains $@usn6].`1esn` =1e1[@usn5..],Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 07 In 0 In 's_str').@usn5? =True Is Not Null On Create Set usn2 =_usn3 Is Not Null Is Not Null,`4esn` =.e1 Starts With $`8esn`"), - octest:ct_string("Remove Extract(@usn6 In @usn5 In $`6esn` Where 07[$`5esn`..]['s_str'..]|$123456789 Contains 01 Contains 0.12).#usn7 Remove Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``]).`4esn`!,count(Distinct $#usn8,False Is Not Null Is Not Null)._usn3?,Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn` Starts With $`` Starts With $#usn7).`3esn`?"), - octest:ct_string("Return *,$`3esn` =~Null As usn2 Skip Filter(usn1 In $123456789 Contains usn2 Where usn2 Is Not Null) Ends With [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1] Ends With _usn3(Distinct $123456789 Ends With $`6esn`) Limit `3esn`(Distinct _usn4 Ends With 01 Ends With $`1esn`) Starts With [Count(*) In 01 In .0,`` Starts With 12,$_usn4[$`8esn`..][07..]] Starts With Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12 In $0 In Count(*)) Optional Match ((_usn4 {`8esn`:9e1 In 01 In 999})),`1esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}) Where @usn5 Contains $`1esn` Contains 999 Union Optional Match _usn3=(($999)),``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)) Where 9e0[True..`1esn`]"), - octest:ct_string("Create ((:`4esn`:#usn8{`7esn`:#usn7 Starts With 0 Starts With 12})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})<-[@usn6:`3esn`|:`4esn`*]->(`6esn` :`5esn`)),@usn6=((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})) Match #usn8=({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]}),(((`3esn` :`8esn`)-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(_usn3 :usn2:@usn6)-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}))) Where 9e0 Starts With `6esn` Union All Unwind `7esn`[$999][7] As `5esn` Merge `6esn`=(($12)<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1})-[?:`8esn`|:usn1{`6esn`:1e1[`6esn`..],`2esn`:7 =~9e0 =~'s_str'}]->({`3esn`:1e1 Is Null})) Union Remove {@usn5:7[..12e12][..$`6esn`]}.usn1,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]|9e0 Starts With `6esn`].#usn8?,9e12.usn1 Create ``=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),(`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[usn2?:usn1|`3esn`{`7esn`:0xabc Ends With $#usn7 Ends With #usn8,@usn5:$#usn8}]->(`3esn` :#usn8)<-[?:`1esn`{`1esn`:123456789[1000]}]->(:usn1{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})"), - octest:ct_string("Return `8esn`[1000..$7][$`7esn`..`2esn`],0X7 =~``,123456789 =~_usn4 =~$0 As usn1 Detach Delete 0Xa Starts With $`4esn` Starts With 1e1 With Distinct .e0[`4esn`..`4esn`][0.0..$0] As `7esn` Order By None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) Descending,01234567[.12..7][1000..1.e1] Ascending Where #usn7[..$1000][..01]"), - octest:ct_string("Create ``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)),`2esn`=(((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) Create `4esn`=((:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})),((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) Return Distinct *,12 Is Null Is Null As #usn7,$1000 Is Not Null Is Not Null Skip (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)[Filter(@usn6 In @usn5 In $`6esn` Where $999[$1000])..][#usn7($`8esn`[``..][123.654..],12.e12 Contains `5esn`)..] Union All Return `7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As usn1 Order By #usn7 Contains 07 Descending,Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0]) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where Count(*)[True]) In Extract(`4esn` In 's_str'[12..'s_str'] Where 0xabc Ends With $#usn7 Ends With #usn8|.e1 Starts With 0.0 Starts With `6esn`) Asc,[$12 Is Null Is Null,999 Contains Count ( * ) Contains 123.654][Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`)..Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0)][[Null Contains _usn4,$`7esn` Is Null Is Null]..({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3})] Desc With *,$`1esn` Ends With _usn4 Ends With `3esn` As `7esn`,({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] As @usn6 Order By $999 Ends With $`3esn` Ends With `8esn` Asc Skip $0[..07] Where $@usn5 In 12e12 In Count(*)"), - octest:ct_string("Return $`5esn` Starts With _usn3 Starts With @usn5,9e0 Is Null Is Null,$999[..`1esn`] As `8esn` Order By usn2[$`1esn`...0] Descending,None(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00)[[@usn6 Starts With `7esn` Starts With Null]][{`1esn`:07[`6esn`..][`5esn`..],usn1:$usn2[False..`7esn`][`7esn`.._usn3]}] Ascending,01234567 Ends With 12.0 Ends With 0X7 Ascending Remove (:`7esn`)<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})._usn4!,(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[`2esn` *..7]-(_usn3 {usn1:_usn3 Contains @usn6 Contains 1.e1}).`1esn`?,($1000)<-[`4esn`:#usn8]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}).@usn5? Unwind All(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[..(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[`` *0xabc]->(`7esn` :#usn7{`6esn`:$`3esn` Contains 0X0123456789ABCDEF Contains 00,`1esn`:1000[123.654..9e12][1000.._usn3]})][..{`3esn`:$1000[.e0..]}] As `2esn`"), - octest:ct_string("Create @usn6=({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567}),`7esn`=((:@usn6:`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})-[`6esn`:@usn5|`8esn` *12..0xabc]-(`` :@usn5)-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})) Union All Match `1esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) Where $123456789 Is Not Null Is Not Null Merge _usn4=(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) On Create Set _usn3 =(usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Is Null Is Null,`1esn` =7 Contains $`5esn` Contains $usn1,usn2 =\"d_str\" =~`3esn` =~0x0 On Match Set @usn6+=(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}]"), - octest:ct_string("Merge `6esn`=(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}) On Match Set Filter(usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01).`8esn`! =`6esn`[..`5esn`] Unwind `1esn`[12.e12][01] As _usn3 Optional Match `1esn`=(((`` :@usn5)-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn5:`8esn`|:usn1]-(#usn7 :`5esn`))),usn1=(_usn4 :`8esn`{`3esn`:False[.e1..Null],`3esn`:9e0 =~$`5esn`}) Union All Remove [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7].@usn5,Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])._usn3? Return Distinct *,$@usn6[..$usn1] As _usn3 Order By {``:12e12[$`5esn`][07],_usn3:$`6esn` Is Null Is Null} Ends With [0 Is Not Null Is Not Null] Descending,Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Desc,.12 Ends With `1esn` Ends With $`1esn` Asc Limit `7esn` Starts With $`` Starts With $#usn7 Unwind $@usn6 Starts With usn2 Starts With usn2 As _usn4"), - octest:ct_string("With Distinct 7 Contains 9e1 As `` Order By $`1esn` Starts With `8esn` Starts With $0 Descending,[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Desc,#usn8 Is Not Null Asc Skip 12.e12 Contains `5esn` Where 12e12[0.e0][9e1] Create #usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})),usn1=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) Union Return 9e1 Starts With `1esn` Starts With 0Xa,07[$`5esn`..]['s_str'..] As `5esn`,010 =~$usn2 =~1e1 Skip $`8esn`[..$``] Limit 0.0[999..] Unwind 0X7 In $999 In $`` As ``"), - octest:ct_string("Remove Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`).#usn7!,`7esn`(Distinct $usn2 =~$_usn4 =~`5esn`).#usn7?,(`1esn` :usn2:@usn6)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}).usn1? Union Create (({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8)) Merge usn1=((`3esn` :``)<-[`4esn`]->(`7esn` :#usn8)<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(_usn4 )) On Match Set (`3esn` :usn2:@usn6)<-[`7esn`?:@usn5|`8esn`]-(`1esn` :``).#usn7! =Count ( * )[`3esn`..][`2esn`..],[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where .e0 In $@usn5 In $0|0.12 Contains .e1].`3esn` =`1esn`[0e0..],_usn3+=(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})[[#usn7 In 01234567[$`3esn`..] Where usn1 Contains False Contains ``]..] On Match Set usn1 =$`6esn`[..0X0123456789ABCDEF],Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]).@usn6 =$123456789 Contains usn2,`` =#usn8[$_usn3..7][``..$`5esn`] Merge _usn4=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Union Merge (({usn2:00,#usn8:usn2 Ends With $`5esn` Ends With `2esn`})<-[_usn3?:`2esn`|usn2{`3esn`:0[0.12..]}]->(:``{`1esn`:`6esn` =~$_usn3})) On Match Set #usn7 =`5esn` In $999,@usn6+=`2esn`[$`3esn`..],Any(`6esn` In 0X7 =~`` Where 12.e12['s_str']).`5esn` =usn1[..@usn5][...e0] On Match Set `3esn` =$_usn4[0.12..$`6esn`][00..$@usn6] Create ((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})) Unwind 0X0123456789ABCDEF Contains 12.e12 Contains 999 As _usn4"), - octest:ct_string("Merge `8esn`=(((:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[:#usn7|:_usn4{``:$1000 Is Null Is Null}]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`}))) Match _usn3=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}),``=(({`5esn`:0e0 =~_usn4})) With Distinct *,$`7esn` Is Null Is Null,[0[usn2..],7[12e12..$_usn4][9e1..True],`1esn` Contains Count ( * )][Extract(@usn5 In .12[#usn7][$`8esn`] Where Count ( * ))..][Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])..] As #usn7 Where 0xabc Ends With $#usn7 Ends With #usn8 Union All Remove [`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where #usn7[..$1000][..01]|999 Contains `7esn`]._usn3!,[$usn1[1e1.._usn3][$@usn6..$#usn7],00[7..$123456789],$`5esn` In `2esn` In $12].`4esn`?"), - octest:ct_string("Return *,7 Is Null As #usn7 Order By .e0 Contains 01234567 Descending,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Desc,'s_str' Starts With 1000 Starts With #usn8 Descending Delete `6esn`[_usn4..][$`6esn`..] Unwind `1esn`[@usn6..$123456789] As `2esn`"), - octest:ct_string("Merge _usn4=(:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]}) On Match Set All(`6esn` In 0X7 =~`` Where `7esn`[...e1][..\"d_str\"]).`5esn` =None(usn2 In 1000 Contains 0.e0 Where $usn1[..$`6esn`][..Null]) Starts With Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]|$`1esn` Starts With $999) On Match Set ``:`2esn`:`3esn`,@usn6 =None(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1])[`8esn`(00[``..][$`4esn`..],123.654[@usn5])],usn2 =$`3esn`[`2esn`...e0] Return usn2 =~0x0 As `8esn`,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn`,_usn3[`3esn`][False] Skip {@usn5:$@usn6[..$usn1],`1esn`:usn2[`3esn`][_usn3]}[..Any(`4esn` In 's_str'[12..'s_str'] Where Null Contains _usn4)][..{`7esn`:True[..'s_str'][..01]}] Limit [$12 Is Null Is Null,999 Contains Count ( * ) Contains 123.654][Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`)..Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0)][[Null Contains _usn4,$`7esn` Is Null Is Null]..({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3})] Create ((:`6esn`:`7esn`{_usn4:12[0X7..@usn6],_usn3:123456789 In $usn2 In `6esn`})<-[#usn7?:_usn3|:`4esn` *00..]->(:`6esn`:`7esn`{_usn3:\"d_str\" Is Null Is Null})<-[@usn6]->(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})),((#usn7 {#usn7:01234567[.12..7][1000..1.e1],``:@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]}))"), - octest:ct_string("Unwind usn1 Starts With $#usn7 Starts With `5esn` As `3esn` Detach Delete 0x0[0X7..][usn1..] Union All Optional Match ``=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))) Union Create ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})),((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) Detach Delete 1000 In 0X0123456789ABCDEF In 01,`3esn`()[Filter(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`)..{@usn6:`6esn`[_usn4..][$`6esn`..]}],Extract(usn1 In 0x0[..`4esn`] Where \"d_str\" Contains `3esn` Contains 00|Count(*) Ends With 010)[All(usn2 In 1000 Contains 0.e0 Where #usn8 Ends With `4esn` Ends With $`4esn`)..@usn6(Distinct _usn3 In .e1 In $12,123.654 Starts With usn1 Starts With @usn5)][All(usn2 In 1000 Contains 0.e0 Where 0.0[1000..][.e1..])..{`7esn`:`2esn`[$`1esn`..][$_usn3..]}] Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7}))"), - octest:ct_string("Unwind [`4esn` In $`8esn` Starts With 1000 Where `5esn` In 12][..Single(`6esn` In 0X7 =~`` Where .0 Starts With `2esn` Starts With `6esn`)][..[@usn5 In $#usn8 Is Null Is Null]] As `1esn` Optional Match ((:_usn3{usn2:$`5esn`[$123456789][`1esn`]})),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})) Where 01234567[Null..0.e0][Count(*)..$#usn8] Union With Distinct usn2 Is Not Null Is Not Null As `2esn`,False[`6esn`][07],0Xa[0xabc..] As usn2 Order By 9e1[0.e0..][#usn8..] Asc Skip #usn7 Is Not Null Is Not Null Detach Delete 1000[0.0][Null],$_usn4 Contains $_usn4 Contains 1.e1,Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Merge #usn8=((`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[:@usn6 *0X0123456789ABCDEF..{_usn3:`7esn` Ends With $usn2 Ends With 999}]-(`2esn` :_usn3)) Union All Merge ((#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})<-[ *00..{`3esn`:12 Ends With 01234567,`4esn`:00[``..][$`4esn`..]}]->(`2esn` :``)) On Match Set #usn7+=[#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`][Any(`4esn` In $`8esn` Starts With 1000 Where 123.654 Starts With usn1 Starts With @usn5)..],_usn3 =None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} On Match Set `1esn`+=.e0[..0X0123456789ABCDEF][...e12] Delete _usn3 Ends With #usn7,`3esn` Ends With 010 Unwind 12.e12[...0][..0x0] As usn2"), - octest:ct_string("Remove Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|1e1 Is Null).`7esn`!,Filter(usn1 In 0x0[..`4esn`] Where $0[$#usn8..01234567]).`6esn`!"), - octest:ct_string("Remove usn2(Distinct).@usn6"), - octest:ct_string("With Distinct ({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn`,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn` Skip 010 Starts With `7esn` Starts With 9e1 Limit 0Xa Starts With $`4esn` Starts With 1e1 Unwind 1e1 In 9e0 In 9e0 As _usn4 Union Remove (@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`6esn`,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]).usn2!,(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]})<-[#usn7 *123456789..999]-(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn`]->(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`1esn`! Unwind Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `4esn` Unwind {`4esn`:0X7 =~.0 =~\"d_str\",_usn4:00 Ends With $_usn4 Ends With $`2esn`} Ends With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Ends With [$`3esn`[@usn5..$123456789],00,'s_str'[.12..$#usn7][$999..`2esn`]] As usn1"), - octest:ct_string("With 07 Ends With 07 As #usn8,00[``..][$`4esn`..],$usn2 Is Not Null Is Not Null Limit {`4esn`:0X7 =~.0 =~\"d_str\",_usn4:00 Ends With $_usn4 Ends With $`2esn`} Ends With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Ends With [$`3esn`[@usn5..$123456789],00,'s_str'[.12..$#usn7][$999..`2esn`]] Remove [`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null|9e12 =~01 =~$`7esn`].#usn7! Optional Match usn2=(((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),#usn7=(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}))) Where $_usn4[`3esn`][0] Union All With Distinct All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null,0xabc[$@usn5] As `7esn`,.e0[usn2..] As _usn3 Order By False[..12.e12] Descending Skip [\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Limit 7 In @usn5 In $`4esn` Where 12e12 Starts With $123456789 Starts With 12.0 Detach Delete 010 Starts With `7esn` Starts With 9e1 With Distinct *,Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Order By .e0 Contains 01234567 Descending,[$`7esn` Ends With `1esn` Ends With True,$999[12.0..]][`7esn`(Distinct $`2esn`[$`2esn`..])..][Any(usn1 In $123456789 Contains usn2 Where 0.e0 Ends With 12 Ends With $7)..] Desc,'s_str' Starts With 1000 Starts With #usn8 Descending Where 123456789 =~_usn4 =~$0 Union Create `4esn`=(:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) Remove {`5esn`:`6esn` =~01234567 =~0Xa}.#usn7,(usn1 :#usn7)<-[@usn6?{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(:`2esn`:`3esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})._usn4,(#usn7 :`2esn`:`3esn`)-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})-[_usn3? *00..]-(`1esn` :`1esn`).`4esn` Match ((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})),((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})<-[#usn8:`8esn`|:usn1 *123456789..999]-(`7esn` {usn2:`6esn`['s_str'..][010..]})<-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null}))"), - octest:ct_string("Create @usn5=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) Remove [_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4].@usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`!,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`)._usn4 With Distinct 9e12 Ends With 0X0123456789ABCDEF Ends With #usn7 As `8esn`,1000[123.654..9e12][1000.._usn3] As `6esn`,Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0} As `4esn` Where 7[..12e12][..$`6esn`] Union All Remove Single(#usn8 In $`5esn` Is Null Is Null Where .12[`1esn`..][$`3esn`..]).``!,Extract(usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01).#usn8?,Single(#usn8 In $`5esn` Is Null Is Null Where `3esn`[..7][..12e12]).`5esn`?"), - octest:ct_string("Remove All(`2esn` In `7esn` Starts With $`` Starts With $#usn7).#usn8!,[_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0].@usn6,(`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})-[?{`5esn`:0Xa In .e1 In Count(*)}]-({`1esn`:@usn6}).#usn7! Return *,(@usn6 {_usn4:$_usn4[#usn8..]})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)[Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null)..] Skip $`7esn` Ends With 07 Ends With 07 Union With [usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]] Starts With (`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` ) Starts With (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8) As `1esn`,`5esn` In $999 As `6esn`,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Order By #usn7 Starts With 0 Starts With 12 Asc Skip `` Starts With @usn5 Limit All(@usn5 In .12[#usn7][$`8esn`] Where $`5esn` Contains $@usn6) Is Null Is Null Where 12[..True][..$`4esn`]"), - octest:ct_string("Return Distinct *,Extract(`4esn` In `6esn`['s_str'..][010..] Where 07 In $7 In 12|$#usn8)[{`6esn`:12[usn1][True],`3esn`:$@usn6[..$usn1]}..][{`8esn`:00}..] As @usn5,$`2esn`[``..] As @usn6 Skip [usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]] Starts With (`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` ) Starts With (`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8) Optional Match #usn8=((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})<-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(#usn7 :`3esn`:`1esn`)<-[?{`4esn`:12e12[$`5esn`][07]}]-(:`1esn`{_usn4:$_usn3[Null]})) Where 12 =~usn1 =~.e12"), - octest:ct_string("Remove True.`5esn`?,Filter(`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]).`7esn`,{`5esn`:#usn7 Is Not Null Is Not Null}.#usn8! Merge usn1=((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)) On Create Set Extract(#usn7 In 01234567[$`3esn`..] Where 0X7 In $999 In $``|9e1[...e0]).`7esn`! =0X7 In 's_str' In $`1esn`,{`3esn`:#usn7 Ends With `4esn` Ends With @usn5}.#usn8 =[usn1[..$_usn4][..``],0X7[.e12..01234567]] In `3esn`(@usn5[..True][..0X7],$`3esn` =~$`7esn` =~False) On Create Set `7esn`+=$7,Extract(#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7).`7esn`? =$999 =~False Optional Match `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}))"), - octest:ct_string("Unwind $`3esn` In $12 In 's_str' As `` Unwind .e12[usn2][01] As _usn3 Union All Unwind 1.e1[Null][12.e12] As `7esn` Unwind Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) As `4esn` Create `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Union All Create (`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})"), - octest:ct_string("Delete `6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),$@usn6[..$#usn7][..12.e12],.e0[`4esn`..`4esn`][0.0..$0] Delete 12.e12 In $1000,{_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]},$999 Ends With $`3esn` Ends With `8esn` Union Return Distinct *,Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null As `6esn` Remove Any(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0).usn1?,({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}).`5esn`! With *,{`7esn`:Count(*) In 01 In .0}[..{`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]}][..#usn7(Distinct 0.e0[9e0][0e0],999[``..][Null..])] As `5esn`,#usn7 Ends With `4esn` Ends With @usn5 As `` Where $`1esn` =~$`1esn` =~#usn7 Union All Return .e12[.12..][_usn4..] As _usn4 Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Delete 07 Ends With 07"), - octest:ct_string("Merge ((usn1 :`6esn`:`7esn`)) Merge _usn4=(((:`3esn`:`1esn`{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999})<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}))) Unwind 999 Contains `7esn` As `7esn` Union All Optional Match ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[ *010{@usn5:Null Is Null Is Null}]-({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]})),_usn4=(((:`3esn`:`1esn`{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999})<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}))) Where 00 Union Return $`4esn` Contains 0Xa,010 In `7esn` Order By 0x0 In `8esn` In 999 Descending"), - octest:ct_string("Optional Match (_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[`7esn`?:`4esn`|:`7esn` *..0X7]-(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}),usn1=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})) Where _usn3 =~00 Optional Match (((`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})<-[?:`7esn`|`2esn`]-(:`6esn`:`7esn`{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}))) Where 12.0[``] Delete Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null)[..[.e0 Contains #usn7 Contains $#usn8]] Union Merge usn1=(`3esn` :``) On Match Set All(`6esn` In 0X7 =~`` Where 0X7[..12e12])._usn4 =Null Starts With $`7esn` Starts With `2esn`,`5esn`+=999 Contains Count ( * ) Contains 123.654,usn1+=usn1[$`3esn`..$999][True..False] Unwind `5esn`[`1esn`..`1esn`] As _usn4"), - octest:ct_string("Merge @usn6=((:``{`5esn`:.e1 In $@usn6 In 999})) On Match Set None(`4esn` In 's_str'[12..'s_str'] Where @usn5 In 0X0123456789ABCDEF).`2esn`! =$`1esn` Is Null,`5esn`()._usn4! =[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00],`8esn` =`7esn` Contains .0 Contains 9e12 On Create Set _usn3+=True In All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12),#usn7+=`` Is Not Null,`5esn` =0.0[Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|_usn3 Ends With 12e12 Ends With .e0)][None(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5)..{@usn6:.12 Starts With 0Xa}] Union All Unwind 1.e1[Null][12.e12] As `7esn` Unwind Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) As `4esn` Create `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Union All With Distinct *,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7,@usn6 Starts With `7esn` Starts With Null Order By Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]|$0 =~$usn1 =~9e1)[{``:\"d_str\",`1esn`:$1000 =~$`7esn`}] Descending"), - octest:ct_string("Unwind Null Is Null Is Null As `4esn` Detach Delete 0X7[..12e12],$`5esn` Is Not Null,00 Ends With .12 Ends With `4esn` Union All Match ((({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(usn1 :_usn3{@usn6:True[..'s_str'][..01]})<-[`2esn`?]-(usn2 :`3esn`:`1esn`))) Where 12.0[..$7][..999] Union All Remove {#usn7:False[`2esn`..#usn8]}.#usn7?,@usn6(Distinct 0.12 In 01 In $`3esn`,'s_str' Starts With 1000 Starts With #usn8).#usn8,(:`1esn`{`8esn`:Count ( * ) =~Count(*)})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(`1esn` {_usn4:12.e12 Ends With 01 Ends With .e1})._usn4"), - octest:ct_string("With 0.12 In $7 In 0,#usn8 In $0 As `3esn` Order By None(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`) Contains `3esn`($usn2 Contains 12.e12 Contains 00) Ascending Unwind Count(*) Is Not Null Is Not Null As _usn4"), - octest:ct_string("Detach Delete usn1[1e1][$_usn4],999[$usn2..] Delete 's_str' In \"d_str\" In 123456789,9e12[..$``][..`6esn`],9e0[``][123.654] With @usn5 Starts With 12e12 Starts With @usn5,$1000 =~$`7esn`,\"d_str\" Starts With $usn1 As `7esn` Order By $0[..`8esn`] Desc,Count(*) Starts With 1e1 Starts With $123456789 Ascending,12e12[$`5esn`][07] Desc Limit Single(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8)[{_usn3:$0 Ends With $#usn7 Ends With .12}][[12.0[0Xa][00],.0[01][$12]]] Union Remove ({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`).#usn7!"), - octest:ct_string("Match _usn3=(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}),_usn3=(`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0}) Where .e12[$_usn4..][False..] Union All With Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] As @usn5,12 Is Null Is Null As #usn7 Limit 0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Create `6esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Union Create ({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[ *..0x0]->(#usn8 {usn2:7 Contains 9e1}) Create `7esn`=(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}),(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}))) Remove [`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999]].`5esn`!,usn1(0X7[.e12..01234567])._usn3"), - octest:ct_string("Create _usn3=(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})) With @usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Limit .12 Is Not Null Is Not Null Union All Create usn2=(({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)-[@usn5{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8}]->(usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})),_usn4=(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {_usn4:0X7 =~``})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(:`6esn`:`7esn`{`3esn`:`8esn`[$``]}) Unwind 0Xa Is Null Is Null As @usn5 Match `1esn`=(:`8esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}),((#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]}))"), - octest:ct_string("Merge (:``{`5esn`:.e1 In $@usn6 In 999})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) With `6esn`['s_str'..][010..],$`4esn` Contains 0Xa Where 0X0123456789ABCDEF In $1000 In $`3esn` Detach Delete Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1),$@usn5 =~07 =~True Union All Remove {`4esn`:.12 Starts With 0Xa}.usn1!,[`6esn` In 0X7 =~`` Where 123456789 =~_usn4 =~$0|$#usn8 Ends With 1000 Ends With .0].`7esn`? Remove (:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[?:`1esn`]-(_usn4 :@usn6:`7esn`{@usn5:$_usn3[$`4esn`..Null]})._usn3!"), - octest:ct_string("Delete {usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7} Contains {`5esn`:$7[.12]} Contains Extract(usn1 In 00 Starts With _usn3 Where 07 Contains #usn8 Contains $_usn3|`2esn`[$`1esn`..][$_usn3..]) Union Return Distinct #usn8 In $0 As `1esn`,'s_str' In \"d_str\" In 123456789,[0Xa[$``..][01234567..]] Contains `3esn`(Distinct _usn3 In .e1 In $12) Contains (`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']}) As @usn6 Order By Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Ascending,0xabc[$@usn5] Asc,usn1[..$_usn4][..``] Ascending Union All Merge `1esn`=((({`6esn`:$`8esn`[..$``]})-[`2esn`]-(@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12}))) On Match Set #usn7 =(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]})<-[:`2esn`|usn2 *0..010]->(`` :`1esn`) Is Not Null Is Not Null,`1esn` =`` =~12 =~$#usn7,[123456789[$#usn7..],_usn4[0xabc..],$`3esn` Starts With 01234567 Starts With $1000].`1esn`! =0X0123456789ABCDEF Starts With `2esn` Starts With $999 Remove Any(#usn7 In 01234567[$`3esn`..] Where 0Xa[0xabc..$#usn8])._usn4! Optional Match (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5)))"), - octest:ct_string("Merge `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) On Match Set usn2+=$`4esn`[9e1..][0..],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null},(usn1 :#usn7)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->(`4esn` {`7esn`:.e0[..999][..0X7]}).usn2 =$`3esn`[`2esn`...e0] Unwind $_usn4[`3esn`][0] As `7esn` Optional Match _usn3=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))),usn2=((`5esn` :`7esn`)) Where $@usn6[..$#usn7][..12.e12] Union Detach Delete Null Contains _usn4,12.e12[0e0..7]"), - octest:ct_string("Match (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0) With *,12.0[``] As @usn6 Order By \"d_str\" =~`3esn` =~0Xa Desc,_usn3[0] Desc,`5esn` Ends With .e1 Ends With $_usn4 Asc Unwind @usn6 Contains _usn4 Contains $`4esn` As `4esn`"), - octest:ct_string("With $`1esn` Starts With $999 As #usn8,False In $`7esn` In .0 Skip 123456789 Starts With #usn7 Starts With `6esn` Limit 12e12 Is Not Null Where $999[$1000] Merge `6esn`=((@usn6 :`8esn`{`2esn`:0X7 =~.0 =~\"d_str\"})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})<-[`8esn`?:``|:_usn4 *..01]-({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})) On Create Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$`` On Create Set #usn8+=Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)],`2esn` =$_usn4[$`1esn`..][$0..] Union Create #usn8=(usn1 :`4esn`:#usn8) With [#usn8 In $`5esn` Is Null Is Null Where 0.0[..12e12][..$0]][{`2esn`:.e1 In $@usn6 In 999,usn2:@usn5 Ends With $`3esn` Ends With 12e12}..] As @usn5,usn2[`3esn`][_usn3] Order By None(usn2 In 1000 Contains 0.e0 Where $`6esn`[Count(*)..0.e0][0.0..Count ( * )])[(:usn2:@usn6{@usn6:$`4esn`[$`2esn`..]})<-[#usn8? *12..0xabc]-(:`6esn`:`7esn`{`3esn`:`8esn`[$``]})][Any(@usn6 In @usn5 In $`6esn` Where 12.0[0Xa][00])] Descending Merge ((@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})) On Match Set [@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where .e0[..999][..0X7]]._usn4 =(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) On Match Set usn2 =$`4esn`[$`6esn`]"), - octest:ct_string("Remove [_usn3 Ends With 0x0 Ends With 01234567,9e0[$_usn3..0X7][7..$#usn8]].`6esn` Delete 999 Contains `7esn` Return Distinct *,12 Is Null Is Null As #usn7,$`7esn` Ends With $0 Ends With .e12 As `` Order By $0[01234567..00][$`2esn`..$@usn6] Desc,12.e12['s_str'] Desc,123456789 Starts With #usn7 Starts With `6esn` Asc Limit 999 In 9e1 In 7"), - octest:ct_string("Return Distinct 0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str' Limit usn2[$`7esn`..010][00..``] With `5esn` In $999 As `6esn` Order By [_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]][[.0 Starts With `2esn` Starts With `6esn`,9e1[0.e0..][#usn8..]]..][[07[$999],9e0 In 01234567,@usn5 In 0X0123456789ABCDEF]..] Asc,False Ends With $`8esn` Asc Where @usn5 Ends With $`3esn` Ends With 12e12"), - octest:ct_string("Unwind $_usn4[`3esn`][0] As _usn4 Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) Create (((`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({``:01234567 Ends With 0x0,`6esn`:0X7[0e0..]})<-[?:`7esn`|`2esn`]-(:`6esn`:`7esn`{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}))) Union All Remove {`8esn`:Count ( * ) =~Count(*)}.`6esn`,({@usn6:0X0123456789ABCDEF[..usn1]})<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)._usn4?,(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`4esn` Union Optional Match _usn3=(#usn8 {usn2:7 Contains 9e1})-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}) Where \"d_str\""), - octest:ct_string("Remove [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]|9e0 Starts With `6esn`].#usn8? Union All Unwind @usn5 =~.0 =~$`1esn` As `` Merge usn2=(({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)-[@usn5{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8}]->(usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})) On Create Set _usn4+=(`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})[[`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5]..{usn2:$`4esn`[12.e12..][0.0..]}],`6esn`+=$`2esn` Contains usn1 Contains `2esn`"), - octest:ct_string("With Distinct `` Is Not Null Is Not Null As @usn6,`5esn`[`1esn`..`1esn`],[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4 Order By Count(*) Is Null Descending,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0] Ends With [`4esn` In 's_str'[12..'s_str'] Where 0.12 In 01 In $`3esn`|9e0 =~$`5esn`] Ascending,[0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] Asc Skip 1000 Contains 123456789 Contains 1e1 Limit $`6esn`[`3esn`..0e0] With Distinct .e0[`4esn`..`4esn`][0.0..$0] As `7esn` Order By None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) Descending,01234567[.12..7][1000..1.e1] Ascending Where #usn7[..$1000][..01] Delete [$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union Delete $`4esn`[12.0..`5esn`],$`6esn` Ends With True Ends With True"), - octest:ct_string("Create (`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(`7esn` :`8esn`{`4esn`:00 Ends With .12 Ends With `4esn`})-[ *07..]->(usn2 :@usn6:`7esn`)"), - octest:ct_string("Match `5esn`=(((`` :usn1)<-[#usn8:`3esn`|:`4esn` *0..010]->(`3esn` :usn2:@usn6)-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}))),((_usn3 :_usn4:usn1)<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})) Where $_usn3[Null] Union Optional Match (`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Where $`8esn` =~$usn2"), - octest:ct_string("Unwind 07[$`5esn`..]['s_str'..] As _usn3 Unwind Null Is Null Is Null As usn1 Unwind 123456789 =~Filter(usn2 In 1000 Contains 0.e0 Where 0X7[0e0..]) =~{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999} As `7esn`"), - octest:ct_string("Merge @usn5=((#usn7 {#usn7:01234567[.12..7][1000..1.e1],``:@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})) On Create Set @usn5(Distinct 12e12[_usn3..][$@usn5..],7 Contains 9e1).`6esn` =$@usn5 In 12e12 In Count(*) Match `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Remove ({@usn6:0X0123456789ABCDEF[..usn1]})<-[`4esn`:#usn8]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(#usn8 :`7esn`).`6esn`? Union Detach Delete 1000 In 0X0123456789ABCDEF In 01,@usn6(Distinct Null[0e0][12])[..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]]][..`8esn`(010 =~`6esn`)],1e1 Starts With #usn8 Starts With 1.e1 Detach Delete Null Starts With $`7esn` Starts With `2esn` Delete $7 Ends With 12.0 Ends With 0xabc,usn1 =~Null =~`5esn` Union Optional Match ((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null})-[#usn7:`1esn` *07..]->(#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})),_usn4=(`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) Where Count(*)[12.e12..] Optional Match `6esn`=((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})),((@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})) Where 's_str' Ends With .e0"), - octest:ct_string("Unwind 12.e12[$1000..] As `4esn` Union Match (usn2 :#usn8{`3esn`:123.654[@usn5]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`}) Where 0.12[Null..] Optional Match #usn8=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),((#usn7 :_usn3)<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]})-[#usn7:_usn3|:`4esn`]-(:#usn7{usn1:$123456789[..0.12][..#usn7]})) Merge ((_usn4 {`8esn`:9e1 In 01 In 999})) Union All With 12e12[Null] As usn2,$`4esn`[0][0e0] As _usn3,12e12 Starts With $123456789 Starts With 12.0 Order By Count(*)[.e0.._usn4] Asc Skip (`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Where $`7esn` Ends With `1esn` Ends With True Merge `4esn`=({`8esn`:0X7 In 's_str' In $`1esn`})"), - octest:ct_string("Unwind Count(*)[`7esn`..$12] As `6esn` Detach Delete All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.e12 Contains `5esn`) Starts With None(@usn5 In $#usn8 Is Null Is Null) Starts With `3esn` Unwind #usn7 Contains .0 Contains .e1 As usn1 Union All Unwind Count(*)[`7esn`..$12] As `6esn` Detach Delete All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.e12 Contains `5esn`) Starts With None(@usn5 In $#usn8 Is Null Is Null) Starts With `3esn` Unwind #usn7 Contains .0 Contains .e1 As usn1"), - octest:ct_string("Detach Delete 0 Is Not Null,#usn7 Contains 07 Union All Return $`4esn`[12.e12..][0.0..],12[`7esn`...0][0.12..``] As @usn6,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Skip $`1esn` Ends With $`1esn` Union Detach Delete 010 Starts With `7esn` Starts With 9e1 With `` Contains 12 Contains True Order By #usn7 Starts With 0 Starts With 12 Asc Skip True =~@usn5 =~$`1esn`"), - octest:ct_string("Merge ((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Merge `3esn`=((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) On Match Set `6esn` =$@usn5[Count ( * )] Union All Create ((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1}))"), - octest:ct_string("Return Distinct Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..]) =~Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) As _usn4 Merge `3esn`=(:`3esn`:`1esn`{usn1:`4esn` In $12 In `8esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) On Create Set _usn3+=True In All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12),#usn7+=`` Is Not Null,`5esn` =0.0[Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|_usn3 Ends With 12e12 Ends With .e0)][None(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5)..{@usn6:.12 Starts With 0Xa}] Optional Match (@usn5 {usn2:$999[12.0..]})<-[usn1]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[_usn3?:``|:_usn4]->(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null}) Union Create _usn3=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))) Merge usn1=((`3esn` :``)<-[`4esn`]->(`7esn` :#usn8)<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(_usn4 )) On Match Set (`3esn` :usn2:@usn6)<-[`7esn`?:@usn5|`8esn`]-(`1esn` :``).#usn7! =Count ( * )[`3esn`..][`2esn`..],[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where .e0 In $@usn5 In $0|0.12 Contains .e1].`3esn` =`1esn`[0e0..],_usn3+=(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})[[#usn7 In 01234567[$`3esn`..] Where usn1 Contains False Contains ``]..] On Match Set usn1 =$`6esn`[..0X0123456789ABCDEF],Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]).@usn6 =$123456789 Contains usn2,`` =#usn8[$_usn3..7][``..$`5esn`] Union Create `4esn`=(((`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[?{`4esn`:0.e0 Ends With 12 Ends With $7,@usn6:$``[_usn4..][`7esn`..]}]->(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]}))),((:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Unwind Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As usn2 Delete `2esn` Starts With $_usn3 Starts With `2esn`,9e1 =~.0 =~$`1esn`"), - octest:ct_string("Create ((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`1esn`{`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654}]->(`7esn` :`7esn`)),#usn8=((`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[:@usn6 *0X0123456789ABCDEF..{_usn3:`7esn` Ends With $usn2 Ends With 999}]-(`2esn` :_usn3)) Unwind 0X0123456789ABCDEF[..usn1] As _usn3"), - octest:ct_string("Match usn1=(`4esn` :#usn7)-[_usn4?:`6esn`]-(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) Where $`5esn` In `2esn` In .0 With Distinct 07 Contains 1000 As @usn5,$123456789 =~$#usn8 =~$#usn8 Order By None(`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789])[(`` {`8esn`:0X7 In $@usn5 In 9e0,_usn3:@usn6[$`3esn`]})-[usn1{#usn7:7 Contains 9e1,`5esn`:$`` Ends With 12e12}]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})..0e0][{`1esn`:$@usn6 Contains 07 Contains 0.e0}..{`3esn`:0.12 In $7 In 0,_usn3:07[$999]}] Asc,12e12[.12..] Descending Where 9e12[usn2..7][.e1..$`7esn`]"), - octest:ct_string("Detach Delete $usn2[False..`7esn`][`7esn`.._usn3],$12[..7][..07],Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null With Distinct $`1esn` Starts With $999 As #usn8,False In $`7esn` In .0 Order By .e12[usn2][01] Desc,0 Ends With $7 Ends With _usn3 Ascending,Extract(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|Null Starts With $`7esn` Starts With `2esn`) =~{`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0} Descending Skip [1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Limit \"d_str\" Where Count(*) In 01 In .0 Union Merge _usn4=(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) On Create Set _usn3 =(usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Is Null Is Null,`1esn` =7 Contains $`5esn` Contains $usn1,usn2 =\"d_str\" =~`3esn` =~0x0 On Match Set @usn6+=(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}] Match `8esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]}))"), - octest:ct_string("Detach Delete 0X0123456789ABCDEF Contains 12.e12 Contains 999,0X0123456789ABCDEF In $1000 In $`3esn`,'s_str' Is Not Null Is Not Null Return Distinct *,$usn1[#usn8..][``..] As `2esn`,[123456789 =~$123456789,0.12 In $7 In 0] Is Null Is Null As @usn5 Order By $1000 Is Null Is Null Descending,1000 In 0X0123456789ABCDEF In 01 Asc Union All Unwind 1.e1 Is Not Null Is Not Null As @usn6 With Distinct 0x0[0X7..][usn1..] As _usn4 Order By `6esn` Starts With $usn2 Starts With 0.0 Ascending,0X7 In $@usn5 In 9e0 Descending Union All Unwind $`5esn`[False] As `6esn` Return *,$0[7..][Null..] As `7esn`,`3esn`()[Filter(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`)..{@usn6:`6esn`[_usn4..][$`6esn`..]}] Order By (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Asc,.e1[..$``][..0X0123456789ABCDEF] Ascending Skip 01[..$``][..$`7esn`] Merge `3esn`=(({`5esn`:0.12 Contains .e1})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0})-[:@usn5|`8esn` *123456789..999{usn1:9e12 Is Not Null Is Not Null}]-(#usn7 :`5esn`)) On Match Set @usn5+=`` In `6esn`,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`` Is Null Is Null).`` =12.e12 Is Not Null On Match Set `` =None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..],#usn7($`8esn`[$``..$7][$1000..$`7esn`],`2esn` In 7 In usn2).`6esn`? =$_usn4['s_str'..],`4esn`+=$`7esn` Ends With $usn2"), - octest:ct_string("Unwind usn1 Contains $`` As `7esn` Unwind $`6esn` =~1e1 As _usn4"), - octest:ct_string("Match (@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0}) Optional Match ((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`)<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)) Where 0.12 Contains $`2esn` Contains $_usn4 Union All Detach Delete $12[..``][..$7] Delete 01234567[$`3esn`..],(:`5esn`{@usn6:0Xa Is Not Null Is Not Null,usn2:@usn6 =~01})<-[`2esn`?*..]->(:#usn8{`5esn`:0 Contains 12e12})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}) Is Null Union With *,#usn8 Starts With 0x0 Starts With $@usn5,`1esn` In 07 In 0e0 As `1esn` Skip $7[$`8esn`..7][$1000..$`5esn`] Where `7esn` Starts With $`` Starts With $#usn7"), - octest:ct_string("Remove [0e0].`7esn`! Detach Delete 0Xa[..$``],9e0 In 01234567 Remove {`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}.@usn5?"), - octest:ct_string("Unwind 9e0[False] As #usn8 With Distinct *,0.12 In $`4esn` In `6esn`,`4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}] As `2esn` Skip 0X7[..12e12] Unwind `2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As _usn3 Union All With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null,0xabc[$@usn5] As `7esn`,.e0[usn2..] As _usn3 Skip 0x0 In `8esn` In 999 Where 07[0..`4esn`] Merge ((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Detach Delete .e0[`4esn`..`4esn`][0.0..$0] Union Unwind $`7esn` Ends With 07 Ends With 07 As `3esn` Create ((:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})),({`5esn`:123456789 Starts With `2esn` Starts With .0})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})<-[`` *12..0xabc]->(`3esn` :_usn4:usn1) Match _usn3=((@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]}))"), - octest:ct_string("Create ({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[ *..0x0]->(#usn8 {usn2:7 Contains 9e1}) Create `7esn`=(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}),(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}))) Remove [`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999]].`5esn`!,usn1(0X7[.e12..01234567])._usn3 Union Create `4esn`=((:`7esn`{``:$`1esn` Starts With @usn6})),@usn5=((@usn6 :#usn7{@usn5:Null Is Null Is Null})<-[``?:@usn5|`8esn`]->(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]})) Merge `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Remove Extract(_usn4 In usn1 Contains False Contains `` Where $12 Contains 123.654 Contains `8esn`|`5esn` In 12).#usn8?,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`7esn` Ends With $`2esn` Ends With $usn1|0[0.12..]].@usn5?"), - octest:ct_string("Merge @usn5=(((:`1esn`{#usn7:1e1[`6esn`..]})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`5esn` {@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) On Create Set _usn4 =All(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)[[usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1]],#usn7 =_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) On Create Set [@usn6 In @usn5 In $`6esn` Where False Contains `3esn`].`6esn` =[#usn7 In 01234567[$`3esn`..] Where `7esn` Starts With $`` Starts With $#usn7|07 In 0 In 's_str'][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])..][[@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|$@usn5 Contains 01]..],`8esn` =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..],($999)<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(@usn5 {`1esn`:0[usn2..]})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`1esn` :usn2:@usn6).`4esn` =`3esn` =~0.0 =~$``"), - octest:ct_string("Match ((:_usn3{usn2:$`5esn`[$123456789][`1esn`]})),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})) Where $0[$#usn8..01234567]"), - octest:ct_string("Create (`8esn` :`1esn`),`2esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})) Optional Match `7esn`=(@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Unwind 12.e12[$1000..] As `4esn` Union Remove [#usn7 In 01234567[$`3esn`..] Where .12 Starts With @usn5 Starts With $#usn8|$`6esn`[$`1esn`][1000]].@usn6?,usn2($#usn8 Is Null Is Null)._usn4 Union Unwind .e12[usn2][01] As _usn3 Match usn2=((#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`6esn`?:usn1|`3esn`{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})),((usn1 :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)) Where $0[01234567..00][$`2esn`..$@usn6] Merge (((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) On Create Set @usn6 =`3esn`[..7][..12e12]"), - octest:ct_string("Merge `1esn`=(((:_usn3{@usn6:$`7esn` Is Null Is Null})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)<-[`3esn`? *999..{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`}]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) On Match Set _usn3+=01 In 01 In 12,#usn7 =$@usn5,`1esn`:`5esn` Detach Delete $@usn6[_usn3..0.e0] With [#usn8 In $`5esn` Is Null Is Null][Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where #usn7[..$1000][..01])..][[@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]]..],(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[usn1?:`8esn`|:usn1]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Is Null Is Null As #usn7,1e1[..#usn8][..'s_str'] As #usn8 Order By `3esn`[$123456789][$#usn7] Ascending,{@usn6:12.0[``],_usn4:$`3esn` Contains 0X0123456789ABCDEF Contains 00} Ends With Single(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Ends With Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999|12.0[``]) Asc Skip (:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0}) Starts With Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) Starts With [12.0 In 1000 In _usn4] Limit 00[01234567][False] Union Detach Delete 01 In _usn3 In 12,`1esn`[`3esn`..][$@usn6..]"), - octest:ct_string("Detach Delete $#usn7[...e12][..$7],({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]}) =~`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0) Union All Merge usn2=(({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})-[_usn4?:@usn6 *..7]->(@usn5 :`8esn`)-[@usn5{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8}]->(usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})) On Create Set Any(@usn6 In @usn5 In $`6esn` Where $`5esn` Contains $@usn6).`6esn`? =010[$`8esn`..][0..],`5esn`+=`5esn` In 12,`2esn` =Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`])[..[True =~@usn5 =~$`1esn`]][..Any(#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`)] On Create Set (#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})<-[@usn5 *0X0123456789ABCDEF..]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(:usn1{`6esn`:1000 Contains 0.e0,`7esn`:$@usn6[..$#usn7][..12.e12]}).`7esn`? =$usn2 =~$_usn4 =~`5esn`,#usn8+=Null[1.e1..],`4esn` =(`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)[Filter(@usn6 In @usn5 In $`6esn` Where $999[$1000])..][#usn7($`8esn`[``..][123.654..],12.e12 Contains `5esn`)..] Create ((`3esn` {`8esn`:$``[_usn4..][`7esn`..]})) Union Unwind `1esn`(Distinct Count(*)[..`3esn`]) Starts With $0 As `3esn`"), - octest:ct_string("Optional Match ((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})),(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))) Where 00 In 1e1 Create `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Unwind [@usn5 In .12[#usn7][$`8esn`] Where $_usn4[12e12][`4esn`]][`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])..``(False In `3esn`)][[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]]..Filter(@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12])] As @usn6 Union All Delete 7[..0X7][..'s_str'],9e0 Ends With $`7esn`,$0 Ends With $#usn7 Ends With .12 Create (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0),((:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})) Union With 's_str'[..0.0][..$`4esn`] As `2esn`,#usn7 Contains .0 Contains .e1,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) Skip `6esn` Starts With $usn2 Starts With 0.0 Limit 9e1 Contains $`3esn` Contains 01234567 Where True Starts With $`8esn` Starts With \"d_str\" Merge `2esn`=(:_usn4:usn1) On Match Set `6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`7esn` =9e1[0.e0..][#usn8..],#usn7+=({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Ends With @usn6(123456789 =~$123456789) Ends With [`1esn` Contains Count ( * ),$@usn6 Contains Count ( * ),False In 123456789 In $0] On Create Set `` =(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[usn1?:`8esn`|:usn1]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) Is Null Is Null,`7esn`+=(`7esn` :_usn4:usn1)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`) Starts With ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2) Starts With Extract(usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]|07[`6esn`..][`5esn`..]),`2esn`:`1esn` With Distinct $0 Is Null Is Null Skip [0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',0X0123456789ABCDEF In $1000 In $`3esn`,$0[..`8esn`]] In `4esn`(Distinct 12.e12 In $0 In Count(*),00 In 1e1) In [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]|.e0 =~`5esn`] Where 010 Contains Count(*)"), - octest:ct_string("Return Distinct *,\"d_str\"[Count ( * )] As `7esn`,0x0[123456789] As @usn6 Skip `1esn`[@usn6..$123456789] Remove Any(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`]).`6esn`?,[$0 Ends With $#usn7 Ends With .12,$7,@usn5 Ends With $`3esn` Ends With 12e12].`1esn`? Union Optional Match _usn3=(#usn8 {usn2:7 Contains 9e1})-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}) Where \"d_str\""), - octest:ct_string("Remove All(`4esn` In 's_str'[12..'s_str'] Where $`8esn`[..$``]).`7esn`!,usn2(07[$999]).`4esn` Remove [_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4].@usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`!,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`)._usn4 Create #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`) Union All With Distinct 01234567 Ends With 0x0,[`2esn` In `7esn` Starts With $`` Starts With $#usn7][{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}..] As #usn8,$1000 Is Not Null Is Not Null Order By None(@usn5 In 0X7 =~.0 =~\"d_str\" Where _usn3[...e1])[[_usn4 In usn1 Contains False Contains `` Where 0.12 In $7 In 0]..][[7[..12e12][..$`6esn`]]..] Asc,12[usn1][True] Desc Limit 010 Contains Count(*) Where 0.12 Ends With $usn1 Ends With $@usn5 Return *,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn`,$_usn3 In $#usn8 As #usn7"), - octest:ct_string("Match @usn6=((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]->(:_usn3{@usn6:$`7esn` Is Null Is Null})),((({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999})<-[@usn6?:`6esn`*..]-(_usn3 :usn2:@usn6)-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6))) Where #usn7 Ends With 9e1 Optional Match #usn7=(:#usn7{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[:@usn5|`8esn`*..]-(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) Match (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Where Count ( * ) =~Count(*)"), - octest:ct_string("Detach Delete Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1)[00..],({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) In None(@usn5 In 0X7 =~.0 =~\"d_str\" Where 9e0[$_usn3..0X7][7..$#usn8]) In _usn3(Distinct 010[@usn5..]),Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)]"), - octest:ct_string("Create @usn5=(({`8esn`:$usn1[0.12..]['s_str'..],`8esn`:`1esn`[0e0..]})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})),_usn4=(@usn6 {#usn7:False[`2esn`..#usn8]})<-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]-(`4esn` {@usn6:True[..'s_str'][..01]}) Match ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})) Where $`1esn` Starts With $999 Union All Merge #usn7=((#usn7 :`5esn`)<-[:`2esn`|usn2 *07..]-({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})) Delete ``[$`3esn`][$`2esn`],12 Ends With 01 Ends With 1e1,.12 Starts With 0Xa Union Create (_usn3 :_usn4:usn1),((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(@usn5 {_usn4:010[$@usn6],`6esn`:123456789[1e1..0.0]})<-[`6esn`?:`2esn`|usn2 *01234567..12]->(:`7esn`{#usn7:True =~@usn5 =~$`1esn`})) With @usn6 =~01,12.0 In 1000 In _usn4 As _usn3,0 =~12.e12 =~$`` As #usn7 Order By [usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]] In [0xabc[12.e12..`1esn`]] In {@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} Asc,[0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]) Descending,Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1) Asc Skip 07 In $7 In 12 Where Count ( * ) Create ((@usn6 {#usn7:False[`2esn`..#usn8]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]-(`7esn` {_usn3:usn1 Contains $``})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(_usn3 ))"), - octest:ct_string("Merge @usn5=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]})) On Match Set [@usn5 In 0X7 =~.0 =~\"d_str\" Where 12.e12 Ends With 01 Ends With .e1|00 Starts With _usn3].`2esn`? =None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`)[`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)..] On Match Set _usn4:#usn8 Merge `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) On Create Set `4esn` =010 In `7esn`,usn2+=0.e0[@usn6][0x0]"), - octest:ct_string("Delete False[`2esn`..#usn8],#usn8 Contains .e0 Contains $`8esn`,Null Starts With _usn4 Starts With `6esn` Remove Single(_usn4 In usn1 Contains False Contains `` Where False In 123456789 In $0).#usn8?,[`2esn` Is Not Null Is Not Null].`7esn`"), - octest:ct_string("With Distinct 12.0 Contains 9e0 Contains $`7esn` As `6esn`,$`4esn` Contains `6esn` Contains #usn7 Order By `5esn`[`1esn`..`1esn`] Ascending,$1000[01234567] Ascending Skip Null Contains 9e1 Where 7 =~9e0 =~'s_str' Optional Match usn2=((`1esn` :usn2:@usn6)-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})) Optional Match `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Union Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Optional Match ((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)),((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]}))"), - octest:ct_string("Merge `2esn`=((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})) On Match Set `4esn`+=999 In 9e1 In 7,{`6esn`:$_usn4[$`8esn`..][07..]}.@usn6! =`3esn`[$`1esn`..],Filter(usn2 In 1000 Contains 0.e0 Where 010 =~$usn2 =~1e1)._usn3! =$0 =~$usn1 =~9e1 With Any(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null)[Extract(#usn7 In 01234567[$`3esn`..] Where $@usn6 =~usn1)..] As `3esn` Order By 010 Contains Count(*) Desc,1e1 In $999 In $usn2 Ascending,@usn6(Distinct 12.e12[0e0..7],usn1[Count ( * )..$usn1]) Is Null Is Null Descending Skip True Is Not Null Is Not Null Limit None(usn1 In 00 Starts With _usn3) Contains _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Contains {_usn4:Count(*)[True]} Unwind 12 =~usn1 =~.e12 As `7esn` Union All Merge _usn3=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)) Union All Unwind \"d_str\" =~`3esn` =~0Xa As `1esn`"), - octest:ct_string("With Distinct 0xabc[$@usn5] As usn2,(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] Order By $12[01..][1.e1..] Ascending,0x0 =~_usn4 Desc Detach Delete $@usn5 In 12e12 In Count(*),`` =~12 =~$#usn7,Null Contains _usn4 Merge `5esn`=(({_usn3:$0 Ends With $#usn7 Ends With .12})) Union Unwind usn1 Contains False Contains `` As #usn8 Return Distinct _usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0),$`7esn` In 0.e0 In `4esn` As `2esn` Limit Any(@usn5 In $#usn8 Is Null Is Null Where 0.e0 Ends With 12 Ends With $7) Is Not Null Is Not Null Remove Extract(`4esn` In `6esn`['s_str'..][010..] Where 12 =~usn1 =~.e12|$`2esn`[..`2esn`]).`8esn`!"), - octest:ct_string("Unwind [usn1 In 1000 In $`5esn`][Extract(#usn8 In $`5esn` Is Null Is Null Where $usn2 Is Not Null|$_usn3 =~`7esn` =~$_usn4)] As @usn5"), - octest:ct_string("Create (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0),((:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})) Unwind [@usn6 In @usn5 In $`6esn` Where $999[$1000]|$7[.12]] In {`1esn`:$@usn6 Contains 07 Contains 0.e0} In (`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) As `2esn` Union All Unwind $`5esn`[False] As `6esn` Return *,$0[7..][Null..] As `7esn`,`3esn`()[Filter(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`)..{@usn6:`6esn`[_usn4..][$`6esn`..]}] Order By (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Asc,.e1[..$``][..0X0123456789ABCDEF] Ascending Skip 01[..$``][..$`7esn`] Merge `3esn`=(({`5esn`:0.12 Contains .e1})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0})-[:@usn5|`8esn` *123456789..999{usn1:9e12 Is Not Null Is Not Null}]-(#usn7 :`5esn`)) On Match Set @usn5+=`` In `6esn`,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`` Is Null Is Null).`` =12.e12 Is Not Null On Match Set `` =None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..],#usn7($`8esn`[$``..$7][$1000..$`7esn`],`2esn` In 7 In usn2).`6esn`? =$_usn4['s_str'..],`4esn`+=$`7esn` Ends With $usn2 Union Detach Delete $999[..`1esn`],$usn2[$123456789..123.654][$`5esn`..'s_str'] Return 00 Ends With $_usn4 Ends With $`2esn` As `5esn` Order By $`8esn` In \"d_str\" In 9e12 Desc,`3esn`(.e0 =~`5esn`)[Single(`6esn` In 0X7 =~`` Where $`3esn` =~Null)][[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $_usn3[$`4esn`..Null]|False[`2esn`..#usn8]]] Asc,1e1 In 9e0 In 9e0 Ascending"), - octest:ct_string("Unwind [@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12][Filter(#usn8 In $`5esn` Is Null Is Null Where $12 Contains 123.654 Contains `8esn`)][[_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01]|9e1[0.e0..][#usn8..]]] As `2esn` Merge `8esn`=(:`8esn`) On Match Set [999[``..][Null..],`5esn` =~0Xa].@usn6? =[`6esn` In 0X7 =~`` Where `` Contains 12 Contains True|@usn5[..True][..0X7]][(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})..{`4esn`:9e0 Starts With `6esn`}][Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `5esn`[`1esn`..`1esn`])..(`3esn` :usn2:@usn6)<-[`7esn`?:@usn5|`8esn`]-(`1esn` :``)],#usn8+={`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}],`3esn` =7[..0X7][..'s_str'] Merge (#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[#usn7{#usn7:False[`2esn`..#usn8]}]->(`5esn` :`2esn`:`3esn`{_usn3:$`2esn`[$123456789..$`1esn`][0Xa..$``],`5esn`:12.e12[@usn5..123.654]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}) On Match Set {`6esn`:$_usn4[$`8esn`..][07..]}.@usn6! =`3esn`[$`1esn`..],Any(usn1 In 0x0[..`4esn`] Where \"d_str\" Contains `3esn` Contains 00)._usn4! =`3esn`[..7][..12e12] On Match Set @usn5 =$usn2 =~$_usn4 =~`5esn`,[`4esn` In `6esn`[1e1..] Where _usn3 Is Null|$`8esn`[..$usn1][..'s_str']].usn1? =$usn2[..12.0],{_usn4:$_usn4[`3esn`][0],`6esn`:False[`2esn`..#usn8]}.`8esn`? =Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..]"), - octest:ct_string("Detach Delete `7esn` In 's_str' In 0.12,9e0[False] Merge `1esn`=((({`6esn`:$`8esn`[..$``]})-[`2esn`]-(@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12}))) On Match Set @usn5+=Extract(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With [01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] Starts With (`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})<-[:`6esn`]->(@usn5 :@usn6:`7esn`{`6esn`:$0[01234567..00][$`2esn`..$@usn6],`3esn`:`6esn` Starts With $@usn6})<-[@usn6?:@usn5|`8esn` *..01{_usn4:07 Ends With 07,`8esn`:`6esn`[1.e1..$#usn7][.e0..True]}]-(usn2 :`3esn`:`1esn`) On Match Set Single(`6esn` In 0X7 =~`` Where 9e1[0.e0..][#usn8..])._usn3! =0X7 =~`4esn` =~`8esn`,`4esn` =0.12 =~9e0 Union All Optional Match `5esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``),`4esn`=(:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]})-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8) Where 07[12][$`6esn`] Unwind ({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]}) =~`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0) As `3esn` Union With Distinct *,`6esn`[@usn6..01][.0...e12],12.e12[$1000..] Order By None(`4esn` In 's_str'[12..'s_str'] Where 12.0[0Xa][00]) Is Not Null Desc,[$#usn7[True..][$0..]][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]]] Desc Limit `7esn` Starts With $usn2 Starts With .e0"), - octest:ct_string("Return Distinct @usn5[_usn4..][.e0..] As usn1,$@usn6[..$#usn7][..12.e12] Order By $_usn4[`3esn`][0] Descending,.12 Starts With 0Xa Asc Union All Create _usn3=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)),(((`3esn` :`8esn`)-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(_usn3 :usn2:@usn6)-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}))) Merge ((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})) On Create Set [$`6esn` Is Null Is Null,Count ( * )[@usn6..0x0],0.0[1000..][.e1..]]._usn3! =.0 Starts With `2esn` Starts With `6esn`,({``:\"d_str\",`1esn`:$1000 =~$`7esn`})-[usn1?:_usn3|:`4esn` *123456789..999{`6esn`:01 Ends With .e0,`4esn`:$`7esn` Is Not Null}]->(_usn3 ).`4esn` =usn2 Is Not Null Match (#usn7 :@usn5)-[`4esn`:_usn3|:`4esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:usn1{`8esn`:usn1 Contains $``}),``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]})"), - octest:ct_string("Return $`1esn` Starts With `8esn` Starts With $0,`` Is Not Null Is Not Null As @usn6,$123456789[$`2esn`][True] As `7esn` Skip {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7) Limit False Ends With $`8esn` Return *,{@usn6:0Xa Is Null Is Null,`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]} =~_usn4(usn2[`3esn`][_usn3]) As `7esn`,0[usn2..] Order By Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) Is Null Descending,#usn8 In $0 Descending,_usn3 Ends With 0x0 Ends With 01234567 Ascending Skip 1e1[..False]"), - octest:ct_string("Remove _usn4:@usn5 Union Create `4esn`=((({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[usn2?]-(`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))),((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` )) Create @usn5=((@usn6 {`3esn`:0.12 In $7 In 0,_usn3:07[$999]})-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}))"), - octest:ct_string("Create @usn5=((:#usn8$usn1)-[`1esn`:`5esn`|`1esn` *..7{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}]->(usn2 :@usn6:`7esn`)-[_usn4?:#usn8 *..0X7{@usn5:07}]-(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})),((#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})) Unwind .e12 =~0.0 =~9e0 As `8esn` Delete \"d_str\" =~12.e12 =~07,Null[0.e0..0x0] Union Return 010 In @usn6 Order By False Starts With Count ( * ) Ascending,Count ( * )[..1e1] Asc Skip Extract(usn2 In 1000 Contains 0.e0 Where `7esn` Contains .0 Contains 9e12|_usn3 Is Null)[Single(_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01])] Union Unwind usn2 Starts With @usn6 As #usn7 With $`2esn`[..`2esn`] As `5esn` Order By _usn3 =~00 Asc Where #usn7 Ends With `4esn` Ends With @usn5"), - octest:ct_string("With @usn6 Starts With `7esn` Starts With Null,$usn1[#usn8..][``..] As `2esn`,`3esn`[$`1esn`..] As usn2 Skip ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]]"), - octest:ct_string("Detach Delete 9e1 Starts With 9e1 Starts With 010,010 Contains 0X0123456789ABCDEF,(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})[Single(`4esn` In 's_str'[12..'s_str'])..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)] Delete [12.e12 Ends With 01 Ends With .e1,$@usn5[0.12..][@usn5..],$usn1 In 1000 In $#usn7] Is Not Null,9e1[...e0],`6esn` Starts With $`5esn` Unwind All(`4esn` In $`8esn` Starts With 1000) Is Not Null As _usn4 Union Merge _usn3=((_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})) Optional Match #usn7=(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})<-[`2esn` *12..0xabc{`6esn`:$123456789[0.0..],@usn5:999[$`6esn`]}]-(`7esn` {`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) Match `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]}))"), - octest:ct_string("Optional Match @usn6=(`` :#usn7)<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})<-[`5esn`?:`6esn`]->(`6esn` :`6esn`:`7esn`{_usn4:\"d_str\"}),`6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Where 0.e0 Ends With 12 Ends With $7 Unwind 0X7 =~`4esn` =~`8esn` As `7esn` Match ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})) Where $`1esn` Starts With $999"), - octest:ct_string("Return usn2 =~0x0 As `8esn`,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn`,_usn3[`3esn`][False] Skip {@usn5:$@usn6[..$usn1],`1esn`:usn2[`3esn`][_usn3]}[..Any(`4esn` In 's_str'[12..'s_str'] Where Null Contains _usn4)][..{`7esn`:True[..'s_str'][..01]}] Limit [$12 Is Null Is Null,999 Contains Count ( * ) Contains 123.654][Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`)..Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0)][[Null Contains _usn4,$`7esn` Is Null Is Null]..({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3})] Union All With Distinct *,0.12 In $`4esn` In `6esn`,`4esn`(_usn4[$`4esn`..],0x0[...e12][..@usn5])[..{`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}] As `2esn` Skip 0X7[..12e12] With Distinct *,{`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)] Order By 9e1 Starts With _usn3 Starts With `4esn` Descending,usn2(Distinct _usn3 Contains @usn6 Contains 1.e1)[Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where _usn3 Is Null)..[12e12[0.e0][9e1]]][Single(`4esn` In $`8esn` Starts With 1000 Where $`8esn`[..$``])..Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)] Descending Limit 0 Starts With 12e12 Starts With `4esn` Unwind 12.e12 In $1000 As `6esn`"), - octest:ct_string("Remove `7esn`:`4esn`:#usn8,@usn6:usn2:@usn6 Create `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})),((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`1esn`{`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654}]->(`7esn` :`7esn`))"), - octest:ct_string("Optional Match ((:_usn3{usn2:$`5esn`[$123456789][`1esn`]})),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})) Where 01234567[Null..0.e0][Count(*)..$#usn8]"), - octest:ct_string("Return Distinct .e0 Contains 01234567 Order By $#usn8[0xabc][`3esn`] Desc,[0 Is Null Is Null][..[_usn3 =~00,9e1 Is Null Is Null]] Descending Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) Contains Extract(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`) Union All Match ((:`3esn`:`1esn`{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->()),(((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))) Where 0xabc[$@usn5] Remove #usn7(Distinct $@usn6[..$usn1],9e12 Is Not Null Is Not Null).usn1 Union Remove `7esn`:`4esn`:#usn8,@usn6:usn2:@usn6 Create `3esn`=((`2esn` :_usn4:usn1{`7esn`:7 In 0xabc})<-[:@usn5|`8esn` *0Xa{usn1:$1000 Contains $`3esn`}]->(`2esn` :``)-[usn2?]-(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})),((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`1esn`{`6esn`:$_usn4[`3esn`][0],_usn3:999 Contains Count ( * ) Contains 123.654}]->(`7esn` :`7esn`))"), - octest:ct_string("Detach Delete 0.0[.e12][7],usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null,#usn8[$_usn3..7][``..$`5esn`]"), - octest:ct_string("Unwind .e0[7..$`3esn`] As usn2 Optional Match #usn7=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),`4esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}) Where .e0 =~`5esn` Detach Delete $usn1[0.12..]['s_str'..],usn2 Starts With `6esn` Starts With 12e12,True[Count(*)..][1e1..]"), - octest:ct_string("Match ((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))),usn1=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})) Where 1000 Ends With 1000 Ends With $`4esn` Remove None(usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null).`6esn`,Extract(_usn4 In usn1 Contains False Contains `` Where 0X7 In 123.654 In $`2esn`|9e1 Starts With `1esn` Starts With 0Xa)._usn4?,(usn2 :`3esn`:`1esn`)-[ *..7]-(usn1 :`4esn`:#usn8)-[?:`3esn`|:`4esn`]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).@usn5? Create ((`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})),(`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[? *..0X7{`3esn`:`8esn`[$``]}]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})-[?:usn1|`3esn`{#usn8:1000[..$`6esn`][..0xabc]}]->(usn1 :_usn3{@usn6:True[..'s_str'][..01]}) Union Create ((:`6esn`:`7esn`{_usn4:12[0X7..@usn6],_usn3:123456789 In $usn2 In `6esn`})<-[#usn7?:_usn3|:`4esn` *00..]->(:`6esn`:`7esn`{_usn3:\"d_str\" Is Null Is Null})<-[@usn6]->(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})),((#usn7 {#usn7:01234567[.12..7][1000..1.e1],``:@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})) With `` In `5esn` In $usn2 As ``,`3esn` =~`3esn` =~$`6esn` As `7esn`,$`6esn` Is Null Is Null Order By #usn8 Starts With 0x0 Starts With $@usn5 Descending,$`7esn` Ends With $usn2 Asc,9e12[0.0..12.e12] Ascending Limit 0x0[..$`6esn`][..$#usn8] Return Null Is Null Is Null,`2esn` In 12.e12 In `3esn` As `1esn`,Single(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12) Is Not Null Is Not Null As `5esn` Limit $_usn4[0.12..$`6esn`][00..$@usn6] Union Remove #usn7:#usn7 Detach Delete $usn1[0.12..]['s_str'..],usn2 Starts With `6esn` Starts With 12e12,True[Count(*)..][1e1..] Delete Count ( * )[1000],usn2 =~0x0,@usn6 Starts With `3esn`"), - octest:ct_string("Unwind 01 In _usn3 In 12 As `4esn` Create @usn5=(`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0}) Unwind #usn8[$#usn8..] As `4esn`"), - octest:ct_string("With Distinct `2esn` Starts With $_usn3 Starts With `2esn` Skip [@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12]][{@usn6:.12 Starts With 0Xa}..(`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})] Limit {`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]} Is Null Is Null Match @usn5=(:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})-[`1esn`:usn2|#usn8 *1000..]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}) Remove Any(usn1 In 0x0[..`4esn`] Where $0[$#usn8..01234567])._usn3!,Filter(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]).`3esn`!,#usn7(Distinct).`1esn` Union Return Distinct *,9e1 Starts With 9e1 Starts With 010 Delete Null[1.e1..],999[$`6esn`],None(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1])[`8esn`(00[``..][$`4esn`..],123.654[@usn5])] Union All Create usn1=((:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[#usn8? *0xabc]-(#usn8 :`4esn`:#usn8)),#usn7=(((`4esn` )<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 )<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})))"), - octest:ct_string("Match `8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Create `1esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) Optional Match usn2=((#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`6esn`?:usn1|`3esn`{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})),((usn1 :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)) Where `3esn`[..7][..12e12]"), - octest:ct_string("With Distinct *,$`7esn` Ends With $@usn5 As usn2,$@usn6 Starts With usn2 Starts With usn2 As #usn8 Skip 0.e0[..#usn8][..Null] Limit 00 Starts With _usn3 Where $@usn6 Contains 07 Contains 0.e0 With $usn2[$123456789..123.654][$`5esn`..'s_str'],@usn6[$`8esn`][12.e12] As @usn5,$7[.12] As _usn3 Order By @usn5 Contains 01 Contains 12 Ascending Limit $7[.12] Where $usn1[_usn4..][usn2..] Merge (`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})"), - octest:ct_string("With $`8esn` In \"d_str\" In 9e12 Order By 0X0123456789ABCDEF Is Null Is Null Descending Skip Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) Return Distinct *,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn` Order By None(`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789])[(`` {`8esn`:0X7 In $@usn5 In 9e0,_usn3:@usn6[$`3esn`]})-[usn1{#usn7:7 Contains 9e1,`5esn`:$`` Ends With 12e12}]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})..0e0][{`1esn`:$@usn6 Contains 07 Contains 0.e0}..{`3esn`:0.12 In $7 In 0,_usn3:07[$999]}] Asc,12e12[.12..] Descending Skip [\"d_str\" Starts With $usn1,.12 Contains $`4esn` Contains $`6esn`,01234567 =~usn1] Is Null Is Null Union Optional Match usn2=((#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`6esn`?:usn1|`3esn`{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})),((usn1 :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)) Union Return Distinct *,\"d_str\" =~`6esn` =~0Xa As `4esn` Order By (`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Descending,$`2esn` Ends With `3esn` Ends With $7 Desc Skip `` Is Not Null Is Not Null Remove [usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`|`3esn` =~0.0 =~$``].#usn7?,(:usn1{`1esn`:`6esn` Starts With $usn2 Starts With 0.0})<-[#usn7:`3esn`|:`4esn` *00..]->({`6esn`:9e1[.12..],`5esn`:0.12 In $`4esn` In `6esn`})-[`6esn`:`4esn`|:`7esn` *..0x0]->(:usn1{`6esn`:1000 Contains 0.e0,`7esn`:$@usn6[..$#usn7][..12.e12]}).usn2 Remove Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 0.12 Ends With $usn1 Ends With $@usn5|0X0123456789ABCDEF[.e0..$`4esn`]).`7esn`?"), - octest:ct_string("Create `3esn`=((#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)-[`6esn`:``|:_usn4 *..01]->(`5esn` :#usn7)) Optional Match usn1=(usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:`5esn`|`1esn`{`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}) Match ((:`5esn`{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(usn1 :_usn3{@usn6:True[..'s_str'][..01]})) Union All Unwind 12.e12[$1000..] As `4esn`"), - octest:ct_string("With Distinct *,$usn2[12..$`7esn`][$0..$`7esn`],[0Xa[$``..][01234567..]] Contains `3esn`(Distinct _usn3 In .e1 In $12) Contains (`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']}) As @usn6 Skip 9e1 Starts With 9e1 Starts With 010 Limit `3esn`(Distinct 0.0[999..])[Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..[010 =~$usn2 =~1e1,`1esn`[@usn6..$123456789]]] Merge ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) On Match Set (`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})<-[?{#usn7:`6esn`[False..0.0][12e12..$usn2]}]-(`4esn` {`4esn`:#usn7[..$1000][..01]})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}).`4esn`! =0 Is Not Null,`6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`1esn` =$_usn3[$`4esn`..Null] On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Merge (`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(`7esn` :`8esn`{`4esn`:00 Ends With .12 Ends With `4esn`})-[ *07..]->(usn2 :@usn6:`7esn`) On Create Set #usn8:_usn4:usn1,[0 Is Not Null Is Not Null].usn2! =(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] Union All Match @usn6=(((`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]})-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]}))) Where `7esn`[1e1..07][0x0..Count ( * )] Create _usn3=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))),(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) With Distinct (`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) As #usn8 Order By _usn4 Starts With $@usn6 Starts With #usn7 Asc,$#usn7 Desc Where $@usn6 Is Null Is Null"), - octest:ct_string("Return Distinct ({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}),@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn`,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7 Order By $@usn6[usn2(`3esn`[$`1esn`..])] Asc,12 Ends With 01 Ends With 1e1 Ascending Skip 07[07] Limit 123.654[@usn5] With Distinct Count ( * )[@usn6..0x0],.e0 Is Not Null Is Not Null As `2esn`,usn2 Is Not Null Is Not Null As `2esn` Skip $@usn5 =~$`` =~$usn2 Where `` Starts With 12 Merge ((:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})) On Match Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..]"), - octest:ct_string("Optional Match `3esn`=((:#usn8{_usn4:\"d_str\"[Count ( * )],`2esn`:9e0 Ends With $`7esn`})) Union Unwind $`1esn`[$usn2..][$1000..] As `3esn` Delete $`2esn` Contains usn1 Contains `2esn`,12e12[Count ( * )..][usn2..],Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`) Remove [@usn5 In 0X0123456789ABCDEF,False[0Xa..$@usn5][$`6esn`..12e12]].`3esn`!,`7esn`(`3esn`[..7][..12e12],$999 Ends With $`3esn` Ends With `8esn`).usn2? Union All Merge `2esn`=(`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}) Unwind `2esn` Is Not Null Is Not Null As _usn4"), - octest:ct_string("Unwind [usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..] As `5esn` Remove {`8esn`:Count ( * ) =~Count(*)}.`6esn`,({@usn6:0X0123456789ABCDEF[..usn1]})<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)._usn4?,(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`4esn` Union All Remove `7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``]).@usn5,{#usn7:0Xa Is Not Null Is Not Null,#usn7:.0[$`6esn`..False]}.`4esn`?,[usn1[..@usn5][...e0],$`8esn`[``..][123.654..]].`` Delete ({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3}),$123456789[$``][010] Return All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null Skip [0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',0X0123456789ABCDEF In $1000 In $`3esn`,$0[..`8esn`]] In `4esn`(Distinct 12.e12 In $0 In Count(*),00 In 1e1) In [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]|.e0 =~`5esn`] Union All Create @usn6=(({_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]})<-[ *0xabc]-(`6esn` :`3esn`:`1esn`{_usn3:1e1[.e1..],`1esn`:$#usn8})<-[usn1? *..0X7]-(usn1 :`4esn`:#usn8)),#usn8=((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]})) Return Distinct 0['s_str'][Null] As #usn8,`2esn` In 12.e12 In `3esn` As _usn3 Order By $0 =~`3esn` Descending,0Xa[0xabc..$#usn8] Desc Skip usn1[Count ( * )..$usn1]"), - octest:ct_string("With Distinct Extract(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null) Ends With `2esn`(`7esn`[Null..][@usn5..],123.654[12.e12..1e1]) Ends With Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]) As `7esn`,$usn2 In 9e0 In $7 Order By @usn5 Starts With 12e12 Starts With @usn5 Desc Skip $``[_usn4..][`7esn`..] Optional Match ``=((_usn4 )-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})) Union Unwind 9e12 As `7esn` Unwind 12.e12 Contains $`5esn` As #usn7 Remove {`6esn`:$`8esn`[``..][123.654..],``:999[$`6esn`]}.``,[0X7[..12e12],$`6esn`[$`1esn`][1000]].usn2?"), - octest:ct_string("Optional Match `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) Merge usn2=((`3esn` :`4esn`:#usn8)<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})) On Match Set (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 =123.654 Contains `2esn`,`3esn` =Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`),{`6esn`:$_usn4[$`8esn`..][07..]}.@usn6! =`5esn`[.e1][0Xa] Union Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) With Distinct 0xabc[$@usn5] As usn2,(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] Order By $12[01..][1.e1..] Ascending,0x0 =~_usn4 Desc Create ((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(@usn5 {_usn4:010[$@usn6],`6esn`:123456789[1e1..0.0]})<-[`6esn`?:`2esn`|usn2 *01234567..12]->(:`7esn`{#usn7:True =~@usn5 =~$`1esn`})),`6esn`=({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Union Detach Delete Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`)[Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01)..][{`1esn`:@usn6[`5esn`..$`3esn`],_usn3:$999 Ends With $`3esn` Ends With `8esn`}..],All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..] Match (`6esn` :`5esn`)<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6),_usn3=(($999)) Where 0X7 =~`` Return 0X7 In $@usn5 In 9e0,$`1esn`[9e1.._usn4][$999..$`2esn`] Skip $`5esn` In `2esn` In .0 Limit .0 Is Null Is Null"), - octest:ct_string("Delete [$1000 =~$`7esn`,.12 Starts With @usn5 Starts With $#usn8,0x0[...e12][..@usn5]] Ends With Single(@usn5 In .12[#usn7][$`8esn`]) Create @usn6=(`` :#usn7)<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})<-[`5esn`?:`6esn`]->(`6esn` :`6esn`:`7esn`{_usn4:\"d_str\"}),`6esn`=(`8esn` )-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union All Match (`8esn` {`3esn`:12e12 Is Not Null})-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(`1esn` {`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1) Where 9e1 Is Null Is Null Return @usn5[..True][..0X7] As `7esn`,{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7} Contains {`5esn`:$7[.12]} Contains Extract(usn1 In 00 Starts With _usn3 Where 07 Contains #usn8 Contains $_usn3|`2esn`[$`1esn`..][$_usn3..]) Order By 0X0123456789ABCDEF[..usn1] Descending Skip `3esn`[$123456789][$#usn7] Union Return Distinct $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Limit 9e0 Starts With `6esn` Remove (usn2 :`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})<-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]->(`3esn` :`4esn`:#usn8{``:\"d_str\" Is Null Is Null}).`4esn`!,{#usn8:9e1[0.e0..][#usn8..]}.``,Any(@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]).#usn8 Create _usn3=((:``{`5esn`:.e1 In $@usn6 In 999}))"), - octest:ct_string("Unwind Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) As usn2 Optional Match `1esn`=((usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})),_usn4=((`2esn` :``)<-[`1esn`?:`1esn` *01234567..12]->(`8esn` {`6esn`:00 In 12.e12})) Where _usn4 Starts With 0X7 Merge usn1=(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(usn1 :#usn8)<-[ *..0x0{`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) On Match Set `2esn`+=123.654 In \"d_str\" In $_usn3 Union All Unwind {#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] As _usn3 Return 0.12[Count(*)..] Order By [@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0] Is Null Ascending,`2esn` Is Not Null Is Not Null Ascending,12.0 In 1000 In _usn4 Desc Skip 9e12[$1000][$@usn6] Limit $@usn6 Contains Count ( * ) Unwind 010 In @usn6 As usn2"), - octest:ct_string("Match `4esn`=(({``:$1000 Is Null Is Null})-[ *00..{`2esn`:$0 Is Not Null}]-(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})),`6esn`=({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Detach Delete [#usn8 In $`5esn` Is Null Is Null Where 0.0[..12e12][..$0]][{`2esn`:.e1 In $@usn6 In 999,usn2:@usn5 Ends With $`3esn` Ends With 12e12}..]"), - octest:ct_string("With Distinct *,`4esn`($123456789 =~$0 =~$`3esn`) =~[07[12][$`6esn`],$`2esn` =~'s_str',$12[01..][1.e1..]] =~usn1(#usn7 Starts With `1esn`) As `3esn` Order By Extract(usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`) Contains [0 Contains 12e12,0xabc Ends With $7 Ends With $`2esn`,0x0 =~_usn4] Ascending,07[1e1] Ascending Skip 0e0[$12..`5esn`][Count(*)..`6esn`] Limit $123456789 Is Not Null Is Not Null Where 7 =~9e0 =~'s_str' With *,07[0..`4esn`] Order By 12.e12[$`7esn`] Desc,Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}) Descending Where @usn6 Starts With `7esn` Starts With Null Union Create ``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)),`2esn`=(((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) Create `4esn`=((:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})),((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) Return Distinct *,12 Is Null Is Null As #usn7,$1000 Is Not Null Is Not Null Skip (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6)[Filter(@usn6 In @usn5 In $`6esn` Where $999[$1000])..][#usn7($`8esn`[``..][123.654..],12.e12 Contains `5esn`)..]"), - octest:ct_string("Merge ((:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})) On Create Set `3esn`+=$_usn3 =~$`3esn` =~0x0,Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|999[``..][Null..]).`8esn`? =Extract(usn2 In 1000 Contains 0.e0 Where `7esn` Contains .0 Contains 9e12|_usn3 Is Null)[Single(_usn4 In usn1 Contains False Contains `` Where True[..'s_str'][..01])],`1esn`+=0.12 Contains .e1 Merge ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) On Match Set (`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})<-[?{#usn7:`6esn`[False..0.0][12e12..$usn2]}]-(`4esn` {`4esn`:#usn7[..$1000][..01]})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}).`4esn`! =0 Is Not Null,`6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`1esn` =$_usn3[$`4esn`..Null] On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Delete 's_str' In \"d_str\" In 123456789,9e12[..$``][..`6esn`],9e0[``][123.654] Union All Unwind (`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:usn1|`3esn`*]->(:_usn3{`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`})-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(usn1 :#usn8) Is Not Null As `8esn` Union All Optional Match _usn3=(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})),#usn8=(((`3esn` )-[?:#usn7|:_usn4]-(usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[*{`2esn`:$1000[01234567]}]-(_usn4 :`4esn`:#usn8{#usn7:1e1[@usn5..]})))"), - octest:ct_string("Delete 0e0,7[..12e12][..$`6esn`] Detach Delete Extract(usn1 In 00 Starts With _usn3 Where 00|0 Is Not Null Is Not Null) Starts With (:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]})-[? *00..{_usn3:07[Count ( * )...e1][0X0123456789ABCDEF..$7],`1esn`:$`2esn` =~'s_str'}]->(_usn4 )<-[`2esn`?]-(usn2 :`3esn`:`1esn`) Starts With {_usn3:'s_str' =~0.e0},12 Ends With .e12 Ends With $7"), - octest:ct_string("Return $`4esn` Contains 0Xa,010 In `7esn` Order By _usn4 Starts With $@usn6 Starts With #usn7 Ascending,[`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) Desc,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) Descending Create ((:`5esn`)<-[#usn7{#usn7:False[`2esn`..#usn8]}]->(usn2 :`3esn`:`1esn`)-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(:#usn7{`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})),((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})) Remove [12e12 Starts With $123456789 Starts With 12.0].usn1 Union All Match ``=((@usn6 :_usn4:usn1{@usn6:Null Is Null Is Null,#usn7:`5esn`[Count ( * )..][\"d_str\"..]})-[*{`2esn`:$1000[01234567]}]-(`4esn` :`1esn`)) Merge #usn8=(({`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6)<-[#usn8?:`3esn`|:`4esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-({_usn3:$`1esn` Starts With @usn6})) Detach Delete 12 Ends With 01 Ends With 1e1,010 =~$usn2 =~1e1,`1esn` In 999 In $#usn7"), - octest:ct_string("Merge (((usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1)<-[@usn5:#usn8{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(#usn8 :_usn3))) With Distinct None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) As _usn3 Skip `2esn` Is Not Null Is Not Null Limit None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] Union All Unwind $usn1[1e1.._usn3][$@usn6..$#usn7] As usn1 With Distinct Count ( * ) Ends With 1000 Ends With 12 As _usn4,False[..12.e12] Skip {usn2:123456789 Starts With `2esn` Starts With 9e12} Ends With All(usn2 In 1000 Contains 0.e0 Where 01234567[Null..0.e0][Count(*)..$#usn8]) Where 0 Is Null Is Null Delete `2esn`[_usn3..$``],#usn8 Starts With 0x0 Starts With $@usn5"), - octest:ct_string("Unwind $usn2[False..`7esn`][`7esn`.._usn3] As _usn4 Union All Unwind 9e12 As `5esn`"), - octest:ct_string("Merge `2esn`=(((`2esn` :`7esn`)<-[? *..7]->({`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}))) On Match Set `8esn`+=$`7esn` =~.e1,`1esn` =`6esn`[_usn4..][$`6esn`..],``+=0xabc Contains $1000 Union All With Distinct 1000[123.654..9e12][1000.._usn3],Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) As _usn4,``[$`3esn`][01234567] Order By {`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00} Starts With Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12) Desc,9e0 Ends With $`7esn` Ascending,`1esn`(Distinct Count(*)[..`3esn`]) Starts With $0 Ascending Limit .12[`1esn`..][$`3esn`..] Where $0[01234567..00][$`2esn`..$@usn6] Delete $123456789[$`2esn`][True],_usn4 Ends With 01 Ends With $`1esn` With Distinct `8esn`(Distinct False Contains `3esn`,9e12 =~01 =~$`7esn`)[[@usn6[`5esn`..$`3esn`],0e0 Is Not Null Is Not Null]..] Order By usn2[$`1esn`...0] Descending,None(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00)[[@usn6 Starts With `7esn` Starts With Null]][{`1esn`:07[`6esn`..][`5esn`..],usn1:$usn2[False..`7esn`][`7esn`.._usn3]}] Ascending,01234567 Ends With 12.0 Ends With 0X7 Ascending Skip 12e12[1000..][0x0..]"), - octest:ct_string("Match usn2=((:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})),((`4esn` :`2esn`:`3esn`{`1esn`:123456789[1000]})<-[?{`8esn`:_usn3 Ends With 0x0 Ends With 01234567,#usn8:$`7esn` Is Null Is Null}]->(:``{#usn8:$`2esn`[..`2esn`]})<-[@usn5:#usn7|:_usn4]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0})) Remove {`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}.@usn5? Union All Remove Single(usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1).`7esn`?,Extract(`4esn` In 's_str'[12..'s_str'] Where Null Contains _usn4).`4esn`! Create `4esn`=(:`5esn`{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(_usn4 ),(:#usn7) With Distinct *,07[0..`4esn`] Order By Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`)[Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01)..][{`1esn`:@usn6[`5esn`..$`3esn`],_usn3:$999 Ends With $`3esn` Ends With `8esn`}..] Asc,$999[12.0..] Asc,All(`4esn` In $`8esn` Starts With 1000 Where 0X0123456789ABCDEF[.e0..$`4esn`])[(#usn8 :@usn6:`7esn`{``:9e1 Is Not Null Is Not Null})-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False})..#usn7(Distinct False Contains `3esn`,12e12[_usn3..][$@usn5..])] Asc Skip $1000 In $`7esn` In $7 Union Detach Delete $`7esn` In $7 Unwind 0x0[$`3esn`] As _usn4"), - octest:ct_string("Match @usn6=(((@usn6 :`5esn`{``:.e1 In $@usn6 In 999,`8esn`:_usn3 Is Null Is Null})<-[$#usn8]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]})-[`6esn`? *0Xa{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}]-(:`6esn`:`7esn`{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1}))) Union All Merge (({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})<-[@usn5?:``|:_usn4]-(_usn3 :`4esn`:#usn8)) On Match Set `8esn`:`4esn`:#usn8,Extract(`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]|_usn3 Is Not Null Is Not Null).`6esn`? =#usn8 Is Not Null,usn1 =Extract(#usn8 In $`5esn` Is Null Is Null Where @usn6 Contains .e1 Contains $`4esn`) In Filter(`4esn` In `6esn`['s_str'..][010..] Where 12e12[Count ( * )..][usn2..]) In [123456789 In $usn2 In `6esn`,Count(*) Ends With 010] Detach Delete `7esn` Starts With $`` Starts With $#usn7"), - octest:ct_string("With Distinct Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] As @usn5,12 Is Null Is Null As #usn7 Limit 0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Where 12[..9e0][..999]"), - octest:ct_string("Create ((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[?:usn1|`3esn`{#usn8:1000[..$`6esn`][..0xabc]}]->(:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[``?:usn1|`3esn`]->(:@usn5{#usn7:1e1[@usn5..]})) Unwind Null Is Null Is Null As usn1 Union With Distinct [@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2] Is Null,00[7..$123456789] Order By $usn2 Is Not Null Is Not Null Desc Limit `8esn` Ends With 999 Ends With 9e0 Remove {_usn3:$_usn4[$`1esn`]}.@usn6!,`8esn`($_usn4[#usn8..],123456789 Starts With `2esn` Starts With .0).usn1?,Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|1e1 Is Null).#usn7? Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] Union Unwind [usn1 In 00 Starts With _usn3 Where False[.e1..Null]|1000[0.0][Null]][Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)..][Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null)..] As `5esn` Remove {`8esn`:Count ( * ) =~Count(*)}.`6esn`,({@usn6:0X0123456789ABCDEF[..usn1]})<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)._usn4?,(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`4esn`"), - octest:ct_string("Remove #usn7(Distinct 0 Starts With 12e12 Starts With `4esn`,.0 Starts With `2esn` Starts With `6esn`).``!,[0x0[..`4esn`],$7].#usn7! Unwind .e12[usn2][01] As _usn3"), - octest:ct_string("Create usn1=((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})),(({#usn8:12.0[..$7][..999],@usn5:$`1esn` Is Null})<-[``?:`1esn` *0xabc{`5esn`:$``[_usn4..][`7esn`..]}]->(#usn7 :@usn6:`7esn`{_usn3:\"d_str\" =~`3esn` =~0Xa})) Return Distinct 1e1[..#usn8][..'s_str'] As #usn8,7 Is Null Skip {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null} Is Not Null Is Not Null Merge `6esn`=(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) On Create Set usn1 =00 In 0.12 In `5esn`,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where .e0[..999][..0X7]]._usn4 =(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})<-[{_usn3:12.e12 In $0 In Count(*)}]->({`6esn`:$_usn4[$`8esn`..][07..]}) Ends With Any(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01) Ends With usn2(Distinct _usn3 Contains @usn6 Contains 1.e1) On Match Set [usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01|`1esn`[@usn6..$123456789]].`8esn`? =Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]),@usn5 =Any(@usn5 In $#usn8 Is Null Is Null Where True[Count(*)..][1e1..]) Is Not Null,_usn3+=$@usn5 =~$`` =~$usn2 Union All Unwind $`4esn`[9e1..][0..] As _usn3 Remove All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `5esn`[`1esn`..`1esn`]).`5esn` Remove (`` {`5esn`:0X0123456789ABCDEF[.e0..$`4esn`]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :`4esn`:#usn8).@usn5,({@usn6:0X7 In $999 In $``})-[`7esn`{usn1:0 Is Not Null}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`}).@usn6 Union Return $_usn4[12e12][`4esn`] As `5esn`,@usn6[`5esn`..$`3esn`] As ``,0.0[..12e12][..$0] Order By usn2[$`1esn`...0] Descending,123.654 Is Not Null Is Not Null Desc Limit 0X7 =~`4esn` =~`8esn` Match (#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-(:@usn5{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[?:#usn7|:_usn4]->(`` :#usn7$0) Create `4esn`=(:`5esn`{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(_usn4 ),(:#usn7)"), - octest:ct_string("Unwind 0x0 Is Not Null Is Not Null As `7esn` Remove ``(Distinct 0.12 In $`4esn` In `6esn`,12e12[_usn3..][$@usn5..])._usn3!,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]|12e12[Null]].@usn6 Delete 0X0123456789ABCDEF Is Not Null,`5esn`[`1esn`],7[..0X7][..'s_str'] Union Remove [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 12.e12[@usn5..123.654]|9e0 Starts With `6esn`].#usn8? Union With Distinct *,Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With $usn1|.12 Ends With `1esn` Ends With $`1esn`)[[True[..'s_str'][..01],_usn4 Ends With 01 Ends With $`1esn`,.0[$`6esn`..False]]..`7esn`(Distinct 010 Is Null Is Null,$`8esn`[..$``])][({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})<-[? *0..010]-(`4esn` :`5esn`{_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[:#usn7|:_usn4 *1000..{_usn4:07 In `5esn` In 12e12,@usn6:.0 Is Null Is Null}]->(#usn7 $usn2)..All(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null)] As `8esn`,123456789 Starts With `2esn` Starts With 9e12 As `3esn` Skip Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) Limit `6esn` Starts With $@usn6 Where 12[0X7..@usn6]"), - octest:ct_string("Merge ((_usn4 {`8esn`:9e1 In 01 In 999})) With Distinct .e12[.12..][_usn4..] As _usn4,{`7esn`:.e0 Contains #usn7 Contains $#usn8}[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..None(`6esn` In 0X7 =~`` Where 12.e12['s_str'])][(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})..({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})],$999[$_usn4..][$`5esn`..] Union Merge `1esn`=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(usn1 :`4esn`:#usn8{``:0 Is Not Null Is Not Null,`3esn`:usn1 Starts With $#usn7 Starts With `5esn`})) On Match Set #usn8($`2esn` Contains usn1 Contains `2esn`).`3esn`? =0xabc[..$`1esn`][..01] On Create Set @usn6+=[usn1[..$_usn4][..``],0X7[.e12..01234567]] In `3esn`(@usn5[..True][..0X7],$`3esn` =~$`7esn` =~False) Return Distinct `7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As usn1 Order By 12.e12 In .e0 In `7esn` Asc,9e1[.12..] Asc Skip (_usn3 )<-[usn1]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})-[_usn4?:`6esn`]->(`8esn` :`1esn`) =~Single(#usn7 In 01234567[$`3esn`..] Where 0.12 In $`4esn` In `6esn`) =~Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|$`8esn`[..123456789]) Limit 0.12 In $`4esn` In `6esn`"), - octest:ct_string("Merge usn1=(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}) On Create Set `8esn`+=$12[..7][..07],@usn5+=#usn7 Starts With .e12 Starts With $`7esn` Union Unwind $`2esn`[$123456789..$`1esn`][0Xa..$``] As `7esn`"), - octest:ct_string("Create @usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})),_usn3=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}) Create (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Union All Detach Delete Extract(`4esn` In `6esn`['s_str'..][010..] Where 07 In $7 In 12|$#usn8)[{`6esn`:12[usn1][True],`3esn`:$@usn6[..$usn1]}..][{`8esn`:00}..],$`6esn` Is Null Is Null"), - octest:ct_string("With *,`` =~12 =~$#usn7 Order By 0X7 In 's_str' In $`1esn` Descending,@usn5 In 0X0123456789ABCDEF Asc,$`4esn` In $12 In _usn3 Ascending Skip [usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]] In [0xabc[12.e12..`1esn`]] In {@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} Where 0.12 In $`4esn` In `6esn` With ({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn` Skip count(Distinct 's_str' Starts With 1000 Starts With #usn8,12e12 Starts With $123456789 Starts With 12.0)[[_usn4 In usn1 Contains False Contains `` Where $#usn8]][[$`1esn` Is Null,\"d_str\" =~`6esn` =~0Xa,$usn2[0e0..]]]"), - octest:ct_string("With Distinct $`4esn`[12.e12..][0.0..],12[`7esn`...0][0.12..``] As @usn6,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Skip $`1esn` Ends With $`1esn` Where `3esn` Contains 0Xa Create _usn3=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))) With Distinct *,$`7esn` Ends With $@usn5 As usn2,$@usn6 Starts With usn2 Starts With usn2 As #usn8 Skip 0.e0[..#usn8][..Null] Limit 00 Starts With _usn3 Where $@usn6 Contains 07 Contains 0.e0 Union Detach Delete 0Xa[0xabc..$#usn8] Union Detach Delete `` In `6esn`,@usn6 Contains .e1 Contains $`4esn`"), - octest:ct_string("Match ``=(((:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(:`7esn`{@usn6:0.0[999..],#usn8:Null Is Null Is Null})-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]}))) Union All Merge _usn4=(:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]}) On Match Set All(`6esn` In 0X7 =~`` Where `7esn`[...e1][..\"d_str\"]).`5esn` =None(usn2 In 1000 Contains 0.e0 Where $usn1[..$`6esn`][..Null]) Starts With Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $usn1[..$`6esn`][..Null]|$`1esn` Starts With $999) On Match Set ``:`2esn`:`3esn`,@usn6 =None(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1])[`8esn`(00[``..][$`4esn`..],123.654[@usn5])],usn2 =$`3esn`[`2esn`...e0] Return usn2 =~0x0 As `8esn`,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn`,_usn3[`3esn`][False] Skip {@usn5:$@usn6[..$usn1],`1esn`:usn2[`3esn`][_usn3]}[..Any(`4esn` In 's_str'[12..'s_str'] Where Null Contains _usn4)][..{`7esn`:True[..'s_str'][..01]}] Limit [$12 Is Null Is Null,999 Contains Count ( * ) Contains 123.654][Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`)..Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0)][[Null Contains _usn4,$`7esn` Is Null Is Null]..({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3})] Create ((:`6esn`:`7esn`{_usn4:12[0X7..@usn6],_usn3:123456789 In $usn2 In `6esn`})<-[#usn7?:_usn3|:`4esn` *00..]->(:`6esn`:`7esn`{_usn3:\"d_str\" Is Null Is Null})<-[@usn6]->(:#usn7{`6esn`:.e12 =~0.0 =~9e0,@usn6:$usn2 =~$_usn4 =~`5esn`})),((#usn7 {#usn7:01234567[.12..7][1000..1.e1],``:@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF})<-[? *1000..{_usn4:$`6esn`[$`1esn`][1000],`2esn`:12e12[$`5esn`][07]}]->(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]}))"), - octest:ct_string("Delete count(0.12 Ends With $usn1 Ends With $@usn5,@usn5 In $`6esn`) Is Not Null,$`8esn`[$``..$7][$1000..$`7esn`] Remove Filter(`6esn` In 0X7 =~`` Where $0[$#usn8..01234567]).`5esn`?,{#usn7:False[`2esn`..#usn8]}.#usn7?,usn1($`1esn` =~$`1esn` =~#usn7).`1esn`?"), - octest:ct_string("With Distinct `8esn`(Distinct False Contains `3esn`,9e12 =~01 =~$`7esn`)[[@usn6[`5esn`..$`3esn`],0e0 Is Not Null Is Not Null]..] Order By usn2[$`1esn`...0] Descending,None(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00)[[@usn6 Starts With `7esn` Starts With Null]][{`1esn`:07[`6esn`..][`5esn`..],usn1:$usn2[False..`7esn`][`7esn`.._usn3]}] Ascending,01234567 Ends With 12.0 Ends With 0X7 Ascending Skip 12e12[1000..][0x0..] Create (((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]-(`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[`4esn`? *00..]-(:`4esn`:#usn8{@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}))) Union All Create (:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}) Merge `5esn`=(({_usn3:12.e12 In $0 In Count(*)})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(`2esn` :``)-[:_usn4|:@usn5 *0xabc]-({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`})) On Match Set `7esn` ={`4esn`:$@usn6 Contains 0 Contains $`2esn`}[[@usn5 In 0X7 =~.0 =~\"d_str\"|$`1esn` Ends With _usn4 Ends With `3esn`]..Extract(@usn5 In .12[#usn7][$`8esn`] Where $usn2 Contains 12.e12 Contains 00|9e0 Ends With $`7esn`)],@usn6 =`5esn` In $999 On Create Set (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 =123.654 Contains `2esn`,`3esn` =Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`),{`6esn`:$_usn4[$`8esn`..][07..]}.@usn6! =`5esn`[.e1][0Xa]"), - octest:ct_string("Create ((`1esn` :usn2:@usn6)),`3esn`=(usn1 :`6esn`:`7esn`) Merge _usn3=(((:@usn5{#usn7:1e1[@usn5..]})-[:#usn8 *..0X7]->($12)-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(:_usn4:usn1{#usn7:$`5esn` Is Null Is Null,usn2:usn1[$`3esn`..$999][True..False]}))) Delete 7 =~9e0 =~'s_str' Union Merge (({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})) On Create Set `1esn` =0X0123456789ABCDEF[.e0..$`4esn`] On Create Set @usn5(Distinct 12e12[_usn3..][$@usn5..],7 Contains 9e1).`6esn` =$@usn5 In 12e12 In Count(*) Unwind `8esn`[$``] As `3esn` Union All Remove {_usn4:\"d_str\"}._usn3,`8esn`(Distinct 00 In 1e1).usn2! Return Distinct *,`5esn` =~0Xa,[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4 Skip $`4esn` Contains 0Xa Limit $_usn3 =~`7esn` =~$_usn4 Unwind 123456789 =~_usn4 =~$0 As usn1"), - octest:ct_string("Match #usn8=((`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[:@usn6 *0X0123456789ABCDEF..{_usn3:`7esn` Ends With $usn2 Ends With 999}]-(`2esn` :_usn3)),(({``:12 Is Null Is Null})<-[usn2:`8esn`|:usn1*..{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->({#usn7:False[`2esn`..#usn8]})-[`5esn`:#usn8*]->({_usn3:12.e12 In $0 In Count(*)})) Remove [$`5esn`[False],9e1 Contains $`3esn` Contains 01234567,`5esn`[Count ( * )..][\"d_str\"..]].@usn5!,`3esn`:_usn4:usn1,[usn1 In 00 Starts With _usn3].#usn8?"), - octest:ct_string("Unwind `` As _usn4 Detach Delete .e1 Starts With $`8esn`,`6esn` Is Not Null Merge `3esn`=((:#usn8{_usn4:\"d_str\"[Count ( * )],`2esn`:9e0 Ends With $`7esn`}))"), - octest:ct_string("Create `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})) Match ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})),((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]}))"), - octest:ct_string("Remove ({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00}).@usn6?,Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`1esn` Starts With $999).``?,All(`4esn` In 's_str'[12..'s_str']).`3esn`? With Distinct *,9e1['s_str'..1e1] As #usn7,01234567 As `6esn` Skip `2esn` In Count(*) In 9e0 Limit usn2 Is Not Null Where $12 Is Null Is Null"), - octest:ct_string("Detach Delete #usn7 Contains 07"), - octest:ct_string("Unwind 0x0[0.0][$_usn4] As #usn8 Unwind 123.654[`5esn`] As @usn5 Union Remove [010 =~$usn2 =~1e1,`1esn`[@usn6..$123456789]].`8esn`!,Filter(`6esn` In 0X7 =~`` Where $#usn7[...e12][..$7])._usn3,Filter(@usn5 In .12[#usn7][$`8esn`]).`3esn` Match (#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}),((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})) Where $`6esn`[`1esn`..][.e0..]"), - octest:ct_string("Match #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`1esn`=(((`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}))) Create `4esn`=(({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})) Union Match `5esn`=(#usn7 {@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}) Where $`2esn` Contains usn1 Contains `2esn` Unwind 12e12[0.e0][9e1] As usn2"), - octest:ct_string("Create (#usn7 :`6esn`:`7esn`)<-[`3esn`?:_usn3|:`4esn`]->(:`1esn`{_usn4:$_usn3[Null]})-[ *..0X7]->(`5esn` :_usn4:usn1),usn2=(`8esn` :#usn8)-[usn2?]-(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]}) Union All Match `1esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) Where $123456789 Is Not Null Is Not Null Merge _usn4=(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) On Create Set _usn3 =(usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[`5esn`?:_usn4|:@usn5]-(usn1 :`7esn`)<-[`` *12..0xabc]->(:``{_usn3:Count(*)['s_str'..`1esn`],`1esn`:$`6esn`[$`1esn`][1000]}) Is Null Is Null,`1esn` =7 Contains $`5esn` Contains $usn1,usn2 =\"d_str\" =~`3esn` =~0x0 On Match Set @usn6+=(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}]"), - octest:ct_string("Merge `8esn`=(({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->({`4esn`:#usn7 Starts With 0 Starts With 12,`4esn`:0x0 =~_usn4})) Merge (((`3esn` :`8esn`)-[`5esn`{usn2:`6esn`['s_str'..][010..]}]->(_usn3 :usn2:@usn6)-[:`7esn`|`2esn` *..0X7{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(`5esn` {usn2:`5esn`[.e1][0Xa],@usn5:$usn1 In 1000 In $#usn7}))) On Create Set #usn8:_usn4:usn1,[0 Is Not Null Is Not Null].usn2! =(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')] On Create Set #usn8+=12[0X7..@usn6],{``:12e12[$`5esn`][07],_usn3:$`6esn` Is Null Is Null}.usn1 =$`6esn` Is Not Null Is Not Null"), - octest:ct_string("Merge `2esn`=(_usn4 {`8esn`:9e1 In 01 In 999})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`) On Match Set @usn5+=`1esn`[9e12..$`8esn`][usn2..$``],usn1 =[12.e12 Ends With 01 Ends With .e1,$@usn5[0.12..][@usn5..],$usn1 In 1000 In $#usn7] Is Not Null On Match Set _usn4 =0 Contains 12e12,`1esn`:#usn8,`7esn` =0 Is Not Null Unwind .12 Contains $`4esn` Contains $`6esn` As _usn4 Optional Match `2esn`=(`` :usn2:@usn6)<-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`7esn` :`4esn`:#usn8{`2esn`:Count(*)[..`3esn`]}),(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})-[`4esn`:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]-(_usn3 :``)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->({`1esn`:0.0[1000..][.e1..]}) Where $`7esn` Ends With $`2esn` Ends With $usn1"), - octest:ct_string("Create #usn7=((#usn7 {`2esn`:$@usn6[..$usn1],usn2:12 Ends With 01 Ends With 1e1})),`2esn`=(:_usn4:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[``]-(usn1 {#usn7:.e12[..0.e0][..$`1esn`],usn1:010 Contains Count(*)}) Merge `7esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[`3esn`? *123456789..999]->(_usn4 :_usn4:usn1)) On Create Set `3esn`+=00 Ends With $_usn4 Ends With $`2esn` On Match Set `6esn`:usn1,`7esn`+=07[`6esn`..][`5esn`..] Remove Extract(usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01).#usn8 Union All With Distinct Extract(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null) Ends With `2esn`(`7esn`[Null..][@usn5..],123.654[12.e12..1e1]) Ends With Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]) As `7esn`,$usn2 In 9e0 In $7 Order By @usn5 Starts With 12e12 Starts With @usn5 Desc Skip $``[_usn4..][`7esn`..] Optional Match ``=((_usn4 )-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})) Union Merge _usn4=(usn1 :_usn4:usn1)<-[`5esn` *0..010]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})"), - octest:ct_string("Merge (({`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})-[#usn8?]-(:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})<-[ *1000..]->(#usn7 {`2esn`:$``[_usn4..][`7esn`..],`3esn`:#usn7 Ends With 9e1})) On Match Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] On Create Set ``(999[``..][Null..]).`8esn` =0.0[999..],`4esn`+=$`5esn` Starts With _usn3 Starts With @usn5,@usn6+=False Is Null Match `5esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``) Union Create `3esn`=(_usn4 :``{`2esn`:9e1 In 01 In 999,`5esn`:$@usn6[..$usn1]})-[`5esn`?:``|:_usn4]->(:#usn8{#usn7:12e12 Ends With 010 Ends With .0})-[@usn6?:`1esn`]-(:`5esn`),``=(({`5esn`:0e0 =~_usn4})) Union Return $@usn6[07..`7esn`][_usn4..$`4esn`] Create @usn5=({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)<-[?:usn2|#usn8{#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7}]-({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})"), - octest:ct_string("Remove (#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}).`8esn`?"), - octest:ct_string("Optional Match (_usn3 :_usn4:usn1)<-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(:@usn6:`7esn`{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}),#usn8=(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[usn1?:`8esn`|:usn1]->(`2esn` {usn2:$999[12.0..]})<-[:`6esn`]->(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Where $`5esn` Contains $@usn6 Unwind $123456789[$`2esn`][True] As usn2 With Distinct *,`7esn`[Null..][@usn5..],0X0123456789ABCDEF Contains $usn1 Skip Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] Limit False Ends With $`8esn` Where 0 Starts With 12e12 Starts With `4esn` Union All Unwind $_usn4[0.12..$`6esn`][00..$@usn6] As `` Merge `2esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})) Union All Unwind 9e12 As `5esn`"), - octest:ct_string("Merge ((@usn6 :#usn7{@usn5:Null Is Null Is Null})) On Create Set `8esn` =Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`],`8esn`+=Filter(`6esn` In 0X7 =~`` Where $usn2[0e0..])[usn2($#usn8 Is Null Is Null)..Extract(usn1 In 0x0[..`4esn`] Where 123456789 In $usn2 In `6esn`|@usn5[..True][..0X7])][(`` :@usn5{#usn7:0X7[12]})-[@usn6? *07..{_usn4:Count(*)[..`3esn`],`5esn`:01234567[$`3esn`..]}]-(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null})<-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]-(`8esn` )..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]] Return Distinct *,9e12[_usn3] As `8esn`,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn` Order By `6esn` Starts With $`5esn` Desc,$`7esn` Ends With 07 Ends With 07 Desc"), - octest:ct_string("Return 0 =~12.e12 =~$``,@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn` Order By $`7esn` Starts With 07 Ascending Merge (usn1 {`4esn`:$123456789[0.0..],`2esn`:12 Ends With 01234567})<-[usn1? *..0X7]-(usn1 :`4esn`:#usn8)-[ *010{@usn5:Null Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) On Match Set [0X7 =~.0 =~\"d_str\",9e1[...e0]].@usn5 =Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}),{@usn6:usn1 In 1000 In $`5esn`,@usn6:9e0[``][123.654]}.`3esn`! =$999 In $`8esn` In `5esn` On Match Set `6esn` =7[..0X7][..'s_str'],[$`5esn` Contains $@usn6].`1esn` =1e1[@usn5..],Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 07 In 0 In 's_str').@usn5? =True Is Not Null Union Delete .12 Starts With 0Xa,.12[#usn7][$`8esn`] Unwind $_usn4[$`1esn`] As `2esn` Delete [07,$_usn3[..Count ( * )][..@usn5]][All(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0)..{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}][[010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]]..Filter(usn1 In 0x0[..`4esn`] Where 1e1 In $#usn8 In 12e12)],`6esn` Starts With $usn2 Starts With 0.0"), - octest:ct_string("With .e0[usn2..][12..] As `1esn`,12.e12[...0][..0x0],`` Contains 12 Contains True As `6esn` Skip `6esn`[0X7..][0x0..] Limit 9e1 Starts With `1esn` Starts With 0Xa Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.0[0Xa][00]|$`1esn` Starts With $999).`6esn`,Any(`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]).`3esn` Union Delete 01234567[$`3esn`..],(:`5esn`{@usn6:0Xa Is Not Null Is Not Null,usn2:@usn6 =~01})<-[`2esn`?*..]->(:#usn8{`5esn`:0 Contains 12e12})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}) Is Null With Distinct Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`] As #usn7,\"d_str\" =~`6esn` =~0Xa As `4esn` Order By 00 In 12.e12 Descending,9e0 Ends With $`7esn` Asc Limit $7[.12] Where 01234567[$`3esn`..]"), - octest:ct_string("Optional Match _usn4=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),(((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})-[?*..{`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}]-(`` :`3esn`:`1esn`{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-({usn1:010[@usn5..],`7esn`:`2esn` Is Not Null Is Not Null}))) Where $`` Ends With 12e12 With Distinct *,0X7 In 123456789 In $`5esn` Skip 0xabc Contains 0e0 Contains \"d_str\" Limit $@usn6 Is Null Is Null With *,0.0 Is Null Is Null As `8esn` Order By $1000 Is Null Is Null Descending,1000 In 0X0123456789ABCDEF In 01 Asc Union All Merge `8esn`=(({@usn6:$123456789 Is Null Is Null,@usn6:`6esn`[1.e1..$#usn7][.e0..True]})<-[`5esn`:usn1|`3esn` *010{`2esn`:`6esn` =~01234567 =~0Xa}]->(_usn4 :``)) Union With Distinct $12[`3esn`..0e0][`2esn`..$7] As #usn8,0.12 =~01 =~12 Order By $123456789 =~$#usn8 =~$#usn8 Ascending,0X7 In 123456789 In $`5esn` Ascending"), - octest:ct_string("Create ((`8esn` {`5esn`:1.e1[0X0123456789ABCDEF..][$`5esn`..],usn2:0 Is Not Null Is Not Null})-[?:@usn6 *..7{#usn8:'s_str'[.12..$#usn7][$999..`2esn`]}]->(@usn5 {_usn4:010[$@usn6],`6esn`:123456789[1e1..0.0]})<-[`6esn`?:`2esn`|usn2 *01234567..12]->(:`7esn`{#usn7:True =~@usn5 =~$`1esn`})),`6esn`=({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Remove None(usn1 In 00 Starts With _usn3 Where 123456789[`4esn`..][Count ( * )..]).#usn8!,All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..])._usn4 Union All With 12e12[Null] As usn2,$`4esn`[0][0e0] As _usn3,12e12 Starts With $123456789 Starts With 12.0 Order By Count(*)[.e0.._usn4] Asc Skip (`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Where $`7esn` Ends With `1esn` Ends With True Merge `4esn`=({`8esn`:0X7 In 's_str' In $`1esn`}) Union Create (`` :usn1)"), - octest:ct_string("Match `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})) Where `6esn` =~$_usn3 Union Return Distinct $#usn8[1e1][9e1] As @usn5,$`3esn`[`2esn`...e0] As _usn3,.e1 Starts With $`8esn` Skip 0x0 =~$`7esn` =~@usn6 Limit [$_usn3[$`4esn`..Null],0x0 Contains $`8esn` Contains `6esn`,\"d_str\" =~`6esn` =~0Xa] Contains [@usn6 Starts With `7esn` Starts With Null] Contains `6esn`(Distinct $`4esn`[usn1..$#usn8][12.0..`3esn`],12.e12['s_str']) Union Detach Delete usn2[$`7esn`..010][00..``],$123456789 Ends With $`6esn`,0.12 Contains $`2esn` Contains $_usn4"), - octest:ct_string("Match (usn2 :#usn7),#usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) Unwind `1esn`(Distinct Count(*)[..`3esn`]) Starts With $0 As `3esn` Union Unwind 123456789 Starts With #usn7 Starts With `6esn` As `7esn` Return Distinct Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0]) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where Count(*)[True]) In Extract(`4esn` In 's_str'[12..'s_str'] Where 0xabc Ends With $#usn7 Ends With #usn8|.e1 Starts With 0.0 Starts With `6esn`) As #usn7,@usn5 Starts With \"d_str\" As `` Union All Delete \"d_str\" =~12.e12 =~07,Null[0.e0..0x0] With Distinct 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Limit $12[..``][..$7] Match _usn4=(@usn6 {#usn7:False[`2esn`..#usn8]})<-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]-(`4esn` {@usn6:True[..'s_str'][..01]}),`6esn`=(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[#usn8? *0xabc{`5esn`:0X7[12]}]->(`4esn` {usn2:7 In 0xabc})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]}) Where usn2[$`1esn`...0]"), - octest:ct_string("Merge _usn3=((_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})) On Match Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] On Create Set None(`4esn` In 's_str'[12..'s_str'] Where @usn5 In 0X0123456789ABCDEF).`2esn`! =$`1esn` Is Null,`5esn`()._usn4! =[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00],`8esn` =`7esn` Contains .0 Contains 9e12 Union With 07 Ends With 07,{_usn3:12.e12[$1000..],`7esn`:$`2esn` Contains usn1 Contains `2esn`}[..(`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)][..010] Union All Return Distinct *,0['s_str'][Null] As #usn8,0.0[..12e12][..$0] Order By 010[@usn5..] Descending,{usn2:123456789 Starts With `2esn` Starts With 9e12} Ends With All(usn2 In 1000 Contains 0.e0 Where 01234567[Null..0.e0][Count(*)..$#usn8]) Descending Create ({`5esn`:123456789 Starts With `2esn` Starts With .0})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})<-[`` *12..0xabc]->(`3esn` :_usn4:usn1)"), - octest:ct_string("Delete 1.e1 Is Not Null Is Not Null,$1000 In $`7esn` In $7"), - octest:ct_string("Return Distinct *,Count ( * ) In 010 As `1esn` Limit $@usn5 =~07 =~True Union All Unwind 1000 Contains 123456789 Contains 1e1 As `` Return Distinct $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Limit 9e0 Starts With `6esn` Delete [$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Union With Distinct *,$0 =~$0 =~.e0 As `7esn`,$@usn5[#usn8..][$`1esn`..] As `7esn` Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip [@usn6 In @usn5 In $`6esn` Where $999[$1000]|$7[.12]] In {`1esn`:$@usn6 Contains 07 Contains 0.e0} In (`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) Where 9e12[usn2..7][.e1..$`7esn`] Return 12e12[Null] As usn2,$`4esn`[0][0e0] As _usn3,12e12 Starts With $123456789 Starts With 12.0 Order By Count(*)[.e0.._usn4] Asc Skip (`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Remove {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]}.`3esn`?,[07[12e12],`1esn`[...e1]].#usn7!"), - octest:ct_string("Return Distinct {@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null} Is Not Null Is Not Null,$0 =~$0 =~.e0 As `7esn` Order By Any(`6esn` In 0X7 =~`` Where 0X7[..12e12]) Asc,{@usn5:$`3esn`} Starts With .12 Asc Skip Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) In All(@usn5 In .12[#usn7][$`8esn`] Where \"d_str\" =~`6esn` =~0Xa) In [123.654 Starts With usn1 Starts With @usn5] Union Unwind $usn2[False..`7esn`][`7esn`.._usn3] As _usn4"), - octest:ct_string("Detach Delete {@usn6:0Xa Is Null Is Null,`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]} =~_usn4(usn2[`3esn`][_usn3]),`6esn`(Distinct 12.0[0Xa][00]) In {`7esn`:12e12 Ends With 010 Ends With .0} In Extract(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6|#usn7 Is Not Null Is Not Null),Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]) Contains None(usn1 In 00 Starts With _usn3 Where 01234567 Ends With 12.0 Ends With 0X7) Contains Single(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) Merge @usn6=({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567}) On Match Set (:usn1{`1esn`:`6esn` Starts With $usn2 Starts With 0.0})<-[@usn6?:@usn5|`8esn` *..01{_usn4:07 Ends With 07,`8esn`:`6esn`[1.e1..$#usn7][.e0..True]}]-(usn2 :`3esn`:`1esn`).`8esn` =.0,_usn4+=`3esn`[$999..],#usn7($0[$#usn8..01234567],#usn8[$#usn8..]).#usn8! ={#usn8:$`5esn` In False,usn2:$`7esn` In $7} Starts With Filter(usn2 In 1000 Contains 0.e0 Where `2esn`[$`3esn`..]) Starts With All(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`) On Create Set `6esn`+={`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])],#usn8:`1esn`,[usn1 In 0x0[..`4esn`] Where True =~@usn5 =~$`1esn`|0.0[999..]].`4esn`! =$123456789 Contains 01 Contains 0.12 Detach Delete $999[12.0..]"), - octest:ct_string("Unwind $`1esn` Is Null As `6esn` Union Optional Match `5esn`=((#usn8 :`1esn`{#usn7:1e1[`6esn`..]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->({usn1:`2esn`[$`1esn`..][$_usn3..]})),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Where `7esn` In 999 In @usn6 Union All With 01234567[$@usn6..0X7][$`1esn`..123.654],00 Ends With $_usn4 Ends With $`2esn` As `5esn` Skip `8esn` Ends With 0X0123456789ABCDEF Ends With `1esn`"), - octest:ct_string("Merge `1esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) Merge `7esn`=(((#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})<-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(`` :@usn5)-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`7esn` {`8esn`:$123456789 Contains 01 Contains 0.12}))) Return [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}),$_usn4[`3esn`][0] As `1esn`,`6esn` Starts With $`5esn` As @usn5 Order By .0 Is Null Is Null Ascending,`1esn`(Distinct $@usn5[#usn8..][$`1esn`..],#usn7 Ends With `4esn` Ends With @usn5)[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|usn1[Count ( * )..$usn1]]][{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}] Asc Limit True Is Not Null Union Return *,$999[$1000] Skip 1e1[@usn5..] Merge (({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})) Remove {@usn6:True[..'s_str'][..01]}.#usn7!,(_usn4 {#usn7:False[`2esn`..#usn8],#usn8:`5esn`[`1esn`..`1esn`]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]}).`3esn`"), - octest:ct_string("Remove usn2($`8esn`[..$``],.12 Starts With .12 Starts With `3esn`).`8esn`!,[`4esn` In `6esn`['s_str'..][010..] Where Null[0e0][12]].`2esn`,#usn8:`7esn` Remove None(usn1 In 0x0[..`4esn`] Where False[.e1..Null]).``,[.e0[..999][..0X7]].`5esn`?"), - octest:ct_string("Remove [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0].`3esn`,[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``! Merge `1esn`=(((`2esn` :_usn3{`5esn`:12.e12[$1000..],`4esn`:'s_str'[..0.0][..$`4esn`]})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})-[usn1?:`1esn` *0X0123456789ABCDEF..{usn2:$`4esn`[12.e12..][0.0..]}]-(:`6esn`:`7esn`{usn2:_usn3 Contains @usn6 Contains 1.e1,usn2:$`6esn`[`1esn`..][.e0..]}))) On Match Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..] With 's_str'[12..'s_str'] Limit #usn7 Starts With 0x0 Starts With Null Where 1e1[`6esn`..] Union All Unwind 00 Starts With _usn3 As #usn7 Union Remove (usn2 :`6esn`:`7esn`{`6esn`:`` Contains 12 Contains True,usn2:$`2esn`[123456789..][00..]})-[_usn3 *010]->(:usn1{`8esn`:usn1 Contains $``})._usn4?,usn1:`3esn`:`1esn`,{`2esn`:9e1 In 01 In 999,`5esn`:$@usn6[..$usn1]}.@usn5! Unwind .e12 =~0.0 =~9e0 As `8esn`"), - octest:ct_string("Merge ((@usn5 :`3esn`:`1esn`{_usn3:#usn7 Starts With `1esn`})<-[?{`8esn`:`8esn`[1000..$7][$`7esn`..`2esn`],@usn5:$`2esn`[..`2esn`]}]->(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})) On Match Set ``+=$@usn6 =~usn1,#usn8+=$#usn8 Is Null Create (`8esn` :@usn5)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->(`6esn` :_usn4:usn1{`6esn`:00 In 12.e12}) Union All Unwind $@usn6 Is Null As `` Union With Distinct $123456789 Ends With $`6esn` As `6esn`,Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) Order By $usn2[0e0..] Desc,.0[$`6esn`..False] Ascending,[$`3esn` Starts With 01234567 Starts With $1000] Starts With `4esn` Starts With [$`2esn`[..7][..$usn1]] Asc Skip Extract(`4esn` In `6esn`['s_str'..][010..] Where $12 Is Null Is Null) Ends With `2esn`(`7esn`[Null..][@usn5..],123.654[12.e12..1e1]) Ends With Any(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 010[$@usn6]) Limit $`2esn` Contains usn1 Contains `2esn`"), - octest:ct_string("Delete `7esn`($123456789 In Count(*) In .e1) Ends With Extract(@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..]|Count ( * )) Ends With Any(usn1 In 0x0[..`4esn`] Where False[.e1..Null]),`7esn`(0.0[1000..][.e1..],$@usn5 Contains 01)[Any(usn1 In 0x0[..`4esn`] Where 0X7[.e12..01234567])][[$@usn6 Contains 07 Contains 0.e0,`5esn` In 12]],$usn1[0.12..]['s_str'..] Unwind 999 Contains `7esn` As `7esn` Merge @usn5=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) On Create Set usn1+=$@usn6 In $`5esn` In $usn2 Union All Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)],010 In @usn5 In `5esn`,1e1 In $999 In $usn2 Return 01234567 Is Null Is Null As `3esn`,0.12 Contains $12 Contains `8esn` As `5esn`,9e0 Starts With `6esn` Skip `3esn` Ends With 010 Limit Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]} Union All With *,`` =~12 =~$#usn7 Order By 0X7 In 's_str' In $`1esn` Descending,@usn5 In 0X0123456789ABCDEF Asc,$`4esn` In $12 In _usn3 Ascending Skip [usn2 In 1000 Contains 0.e0 Where @usn6[`3esn`..][$7..]] In [0xabc[12.e12..`1esn`]] In {@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} Where 0.12 In $`4esn` In `6esn` With ({`1esn`:@usn6})<-[_usn4?:_usn4|:@usn5 *123456789..999{`2esn`:@usn5 In $`6esn`}]->(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}) Is Null Is Null As `3esn` Skip count(Distinct 's_str' Starts With 1000 Starts With #usn8,12e12 Starts With $123456789 Starts With 12.0)[[_usn4 In usn1 Contains False Contains `` Where $#usn8]][[$`1esn` Is Null,\"d_str\" =~`6esn` =~0Xa,$usn2[0e0..]]]"), - octest:ct_string("With Distinct @usn6 Starts With `7esn` Starts With Null,$usn1[#usn8..][``..] As `2esn`,`3esn`[$`1esn`..] As usn2 Order By _usn3[0] Asc,``[$`3esn`][$`2esn`] Ascending,{@usn5:0.e0[@usn6][0x0]} Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7) Ascending Skip (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) Is Not Null Is Not Null Limit [@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Where `1esn` Contains Count ( * ) Return Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As `5esn` Return Distinct *,.e1 Starts With $`8esn` Skip 0xabc[12.e12..`1esn`] Limit 0.e0[@usn6][0x0]"), - octest:ct_string("With Distinct *,Single(#usn7 In 01234567[$`3esn`..]) Is Null As `2esn`"), - octest:ct_string("Remove [`4esn` In 's_str'[12..'s_str'] Where $`3esn`[@usn5..$123456789]|0.12[Null..]].`8esn`?,All(`4esn` In 's_str'[12..'s_str'] Where $`8esn`[..$``]).`7esn`!,Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`! Detach Delete 00[7..$123456789],`` Starts With 12,{`4esn`:.12 Starts With 0Xa} Starts With All(usn1 In 00 Starts With _usn3 Where `6esn`[False..0.0][12e12..$usn2]) Union All Merge `1esn`=(#usn8 :@usn6:`7esn`{@usn5:1e1[@usn5..]})-[`1esn`?:`1esn` *01234567..12]-(usn1 :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) On Match Set _usn3 =$`5esn`[False],[07[$999],@usn6[$`7esn`]].@usn6 =010 Starts With `7esn` Starts With 9e1,`4esn` =usn2[..$`3esn`] On Create Set `7esn`+=9e0[``][123.654],`8esn`(#usn7 Contains $7,$_usn3 =~`7esn` =~$_usn4).#usn8 =[`6esn` In 0X7 =~`` Where 12.e12['s_str']|00[7..$123456789]][All(usn1 In 0x0[..`4esn`] Where $`5esn` Contains $@usn6)..][Extract(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]|9e1[...e0])..] Match (((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))),(@usn6 {`4esn`:$`2esn`[..`2esn`]})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null}) Where `7esn` Starts With $`` Starts With $#usn7 With ({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn`,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn` Skip 010 Starts With `7esn` Starts With 9e1 Limit 0Xa Starts With $`4esn` Starts With 1e1"), - octest:ct_string("With .12[#usn7][$`8esn`],12 Ends With 07 Ends With @usn6 As usn1 Order By $999[..`1esn`] Ascending,Single(`6esn` In 0X7 =~`` Where 0.12[Null..]) Contains (@usn5 :`2esn`:`3esn`{`1esn`:$`8esn`[..$usn1][..'s_str']})<-[usn2:@usn6{`7esn`:123456789[`4esn`..][Count ( * )..],`4esn`:010[$`8esn`..][0..]}]-(_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8}) Contains All(@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null) Descending,[$`8esn` =~$usn2][Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..] Asc Where 12e12[Null] Match ((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})) Where $123456789[..0.12][..#usn7] Union All Merge ((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))) Merge `3esn`=((`3esn` {#usn8:$usn2[0e0..],_usn3:$`5esn` Starts With _usn3 Starts With @usn5})) On Match Set `6esn` =$@usn5[Count ( * )]"), - octest:ct_string("Delete [1e1[0.0],0.12 Contains $`2esn` Contains $_usn4],All(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`) Ends With `4esn`(`4esn`[7..][1000..]) Ends With Filter(_usn4 In usn1 Contains False Contains `` Where $`4esn` Starts With 1e1)"), - octest:ct_string("Remove `6esn`:@usn5,Extract(@usn5 In .12[#usn7][$`8esn`] Where $0[7..][Null..])._usn3!,Extract(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7|@usn6[`5esn`..$`3esn`])._usn4! Return *,00 Ends With .12 Ends With `4esn`,9e0[``][123.654] Order By `2esn` Contains $999 Asc Skip $_usn4[$`1esn`] Limit 0xabc Contains 0e0 Contains \"d_str\" Union Return Distinct 123.654 Starts With usn1 Starts With @usn5,`7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As `8esn`,$`7esn` Ends With `1esn` Ends With True As `5esn` Order By {`3esn`:$999[12.0..]} =~[$#usn8 In .e12 In 9e1] Desc,\"d_str\" =~`6esn` =~0Xa Asc,(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Descending Return *,9e12[_usn3] As `8esn`,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn` Order By `6esn` Starts With $`5esn` Desc,$`7esn` Ends With 07 Ends With 07 Desc With Distinct $#usn8 In .e12 In 9e1 Order By All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..] Asc,0Xa[0xabc..] Ascending,@usn6[$`3esn`] Ascending Skip 1e1 In $#usn8 In 12e12"), - octest:ct_string("Create (`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}) Unwind 0 Is Null Is Null As @usn5"), - octest:ct_string("Unwind $`7esn` Ends With 07 Ends With 07 As `3esn` Create ((:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})),({`5esn`:123456789 Starts With `2esn` Starts With .0})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})<-[`` *12..0xabc]->(`3esn` :_usn4:usn1) Match _usn3=((@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[:`2esn`|usn2 *0..010]->(`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]}))"), - octest:ct_string("Optional Match ``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}),#usn7=(:#usn7{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[:@usn5|`8esn`*..]-(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) Detach Delete $@usn6[..$usn1],`` =~12 =~$#usn7,`3esn` Is Not Null Is Not Null Union Unwind $@usn6 In usn2 In 123456789 As @usn6 Remove [.12 Starts With 0Xa].`4esn`! Unwind 9e0[$_usn3..0X7][7..$#usn8] As @usn6 Union Return *,1.e1[Null][12.e12] As ``,Extract(usn1 In 0x0[..`4esn`] Where \"d_str\" Contains `3esn` Contains 00|Count(*) Ends With 010)[All(usn2 In 1000 Contains 0.e0 Where #usn8 Ends With `4esn` Ends With $`4esn`)..@usn6(Distinct _usn3 In .e1 In $12,123.654 Starts With usn1 Starts With @usn5)][All(usn2 In 1000 Contains 0.e0 Where 0.0[1000..][.e1..])..{`7esn`:`2esn`[$`1esn`..][$_usn3..]}] Limit 7[..12e12][..$`6esn`] Unwind 07[..010][..12.0] As `2esn`"), - octest:ct_string("Remove ({`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[ *..0x0{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}]-(`5esn` {`8esn`:0.0[12...12]})._usn3,All(`4esn` In `6esn`[1e1..] Where 07[12e12]).`3esn`!,[0Xa[$``..][01234567..]].@usn5 Unwind $_usn4[$`1esn`] As `2esn` Unwind 7 In @usn5 In $`4esn` As `5esn` Union Unwind #usn8[$#usn8..] As #usn8 Merge (((`1esn` :`8esn`)-[_usn4:`7esn`|`2esn`]-(`3esn` {`8esn`:$usn2[12..$`7esn`][$0..$`7esn`]})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3}))) Create ((_usn4 {`8esn`:9e1 In 01 In 999})) Union All Unwind $7[.12] As @usn6 Detach Delete ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] Match usn1=(`4esn` :#usn7)-[_usn4?:`6esn`]-(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) Where $`5esn` In `2esn` In .0"), - octest:ct_string("Remove None(`4esn` In 's_str'[12..'s_str'] Where $`2esn`[..7][..$usn1]).`2esn`!,{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}.`6esn`?,usn2:#usn8 Union All Unwind $_usn4[0.12..$`6esn`][00..$@usn6] As `` Merge `2esn`=((:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7})) Union All Return Distinct *,[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As `7esn` Skip _usn4(Distinct `7esn` Starts With $usn2 Starts With .e0) =~`3esn`() =~#usn8(9e0 Ends With $`7esn`) Match (`` :`7esn`)<-[`8esn`:@usn5|`8esn` *123456789..999{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->(_usn4 {@usn5:$_usn3[$`4esn`..Null]}) Where $`4esn`[12.0..`5esn`] Create `1esn`=(((usn1 :`4esn`:#usn8)-[`4esn`?:`8esn`|:usn1 *..0x0]->(:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[?:`4esn`|:`7esn` *..0X7]-(:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]}))),((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`)<-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(`1esn` :usn1$@usn6))"), - octest:ct_string("Unwind 999 Is Not Null Is Not Null As `8esn` Merge (((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) On Match Set (`4esn` :`6esn`:`7esn`)-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)-[`1esn`{_usn4:`3esn` Contains 0Xa}]->(`5esn` {@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]}).#usn8 =False In 123456789 In $0,Filter(`4esn` In `6esn`['s_str'..][010..] Where @usn6[$`7esn`])._usn4! =9e1[010..] Optional Match ``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}),#usn7=(:#usn7{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[:@usn5|`8esn`*..]-(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) Union Unwind [`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As @usn5 Return *,[010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]][(:@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})..][Extract(#usn8 In $`5esn` Is Null Is Null Where 1000[0.0][Null])..] As `8esn`,`5esn` =~0Xa As usn1 Order By 0X0123456789ABCDEF Is Null Is Null Descending,Count ( * ) In 010 Descending,`5esn` In $999 Descending Limit .e0 Contains #usn7 Contains $#usn8"), - octest:ct_string("Create _usn3=((@usn6 :_usn3{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(`4esn` :`4esn`:#usn8{`1esn`:$@usn5 In 12e12 In Count(*)})) Return None(`4esn` In 's_str'[12..'s_str'])[Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`)..][Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where $@usn6 Contains Count ( * ))..] Union Remove Extract(@usn5 In .12[#usn7][$`8esn`] Where `7esn` Ends With $usn2 Ends With 999|12 =~usn1 =~.e12).`6esn`! Union Create _usn3=(({`5esn`:_usn3 Contains @usn6 Contains 1.e1,`7esn`:$12[01..][1.e1..]})-[:`1esn`{_usn4:123456789 Starts With 12.0 Starts With .e12,`8esn`:1e1[`6esn`..]}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})<-[usn1?{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(`5esn` :`3esn`:`1esn`{`6esn`:$1000[.e0..]})) With @usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Limit .12 Is Not Null Is Not Null"), - octest:ct_string("With Distinct *,0Xa[0xabc..] As usn2,`6esn`(00 In 1e1) Starts With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Starts With Extract(#usn8 In $`5esn` Is Null Is Null Where $usn2 Is Not Null) Limit $`7esn` Ends With $`2esn` Ends With $usn1 Create (({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})),(({@usn6:0X0123456789ABCDEF[..usn1]})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn3{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})-[usn1*]->(:`2esn`:`3esn`{usn2:9e12[@usn6..$``][#usn8..Count ( * )],`3esn`:$1000 In $`7esn` In $7}))"), - octest:ct_string("Return *,`4esn`[$#usn7] As `1esn`,@usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Order By Count ( * )[`3esn`..][`2esn`..] Ascending,$`7esn` Ends With `1esn` Ends With True Desc With *,12e12 Is Not Null As usn1 Order By [0.0 =~0X7 =~#usn7,123456789 =~_usn4 =~$0] Ends With `7esn`(Distinct 12.0[..$7][..999],0X7[.e12..01234567]) Asc Skip $`6esn` =~1e1 Limit .12 Is Not Null Is Not Null Where @usn5 Contains $`1esn` Contains 999 With $1000 Starts With .0 Starts With 0.0 As `5esn`,`5esn`[`1esn`..`1esn`] As `4esn`,#usn8 In $0 As `4esn` Order By `1esn`(Distinct $@usn5[#usn8..][$`1esn`..],#usn7 Ends With `4esn` Ends With @usn5)[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|usn1[Count ( * )..$usn1]]][{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}] Descending,(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})<-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]->(#usn8 :`2esn`:`3esn`{#usn7:Count(*) In 01 In .0,#usn7:12.0[..$7][..999]})<-[usn1?:`1esn`{#usn7:9e12 Is Not Null Is Not Null,usn2:`3esn` =~0.0 =~$``}]->(:`4esn`:#usn8{@usn6:0 Starts With 12e12 Starts With `4esn`})[Single(`4esn` In 's_str'[12..'s_str'])..#usn8($12 Contains 123.654 Contains `8esn`,0xabc Ends With $#usn7 Ends With #usn8)] Desc Skip 00 In 0.12 In `5esn` Where 's_str' In \"d_str\" In 123456789"), - octest:ct_string("Return Distinct 0x0 Contains _usn4 Contains 123456789 As `7esn`,07 Is Null Is Null As #usn8,``[$`3esn`][$`2esn`] As `5esn` Skip All(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12) Starts With Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Contains .0 Contains .e1) Limit 01234567[$@usn6..0X7][$`1esn`..123.654] Union Remove (`1esn` )<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})<-[@usn5?:`1esn`]-(_usn3 :`4esn`:#usn8{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})._usn4?,Any(@usn5 In $#usn8 Is Null Is Null Where False Contains `3esn`).`5esn`?,Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0).`2esn`? Remove (#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}).`8esn`?"), - octest:ct_string("Delete 00 Ends With $_usn4 Ends With $`2esn`,.12[`1esn`..][$`3esn`..] Merge ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[ *010{@usn5:Null Is Null Is Null}]-({@usn5:False In $`7esn` In .0,usn2:Null[1.e1..]})) Merge ((@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})-[@usn6?:#usn7|:_usn4 *00..]->(`` :@usn5{#usn7:0X7[12]})) On Match Set (@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`6esn`:`4esn`|:`7esn` *1000..{`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null}]->(:#usn7)<-[`5esn`:`8esn`|:usn1]->(`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}).#usn7? =1000 Contains 123456789 Contains 1e1 On Match Set usn1+=`4esn` Is Null Union Match `1esn`=(((`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})-[ *010{@usn5:Null Is Null Is Null}]-(:`5esn`)<-[`7esn`{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}]-(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}))) Create ((`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})),_usn4=((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})) Remove {`6esn`:9e1 Contains $`3esn` Contains 01234567}.`2esn` Union Merge (_usn4 :@usn6:`7esn`)<-[#usn8?:_usn4|:@usn5 *..0x0]-(`6esn` :#usn7{`5esn`:#usn7 Is Not Null Is Not Null})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})"), - octest:ct_string("Merge `4esn`=(((:@usn6:`7esn`{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[ *010$123456789]-(`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})<-[? *..0x0]->(`` :usn1))) On Create Set [@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]].`1esn`! =999[$usn2..],#usn7+=0X7 In 123456789 In $`5esn` On Create Set #usn7 =$123456789 Is Not Null Is Not Null,[12 =~usn1 =~.e12].usn2? =$_usn3[..$_usn3][.._usn4],`6esn`+=usn1[$`3esn`..$999][True..False]"), - octest:ct_string("Detach Delete [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)],010 In @usn5 In `5esn`,1e1 In $999 In $usn2 Return 01234567 Is Null Is Null As `3esn`,0.12 Contains $12 Contains `8esn` As `5esn`,9e0 Starts With `6esn` Skip `3esn` Ends With 010 Limit Any(usn1 In 00 Starts With _usn3 Where `2esn` Is Not Null Is Not Null) Starts With All(`4esn` In $`8esn` Starts With 1000 Where 1.e1[0X0123456789ABCDEF..][$`5esn`..]) Starts With {`4esn`:$usn2 Contains 12.e12 Contains 00,`5esn`:7[$`4esn`..123456789]} Union Detach Delete 00[7..$123456789],`` Starts With 12,{`4esn`:.12 Starts With 0Xa} Starts With All(usn1 In 00 Starts With _usn3 Where `6esn`[False..0.0][12e12..$usn2]) Remove Extract(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`).usn1!,_usn4(Distinct `7esn` Starts With $usn2 Starts With .e0).`5esn`,``:#usn7 Return $@usn5[0.12..][@usn5..],010 Contains 0X0123456789ABCDEF Limit 9e0 Starts With `6esn` Union All With *,`` =~12 =~$#usn7 As _usn4,[$`5esn` Is Not Null,0e0 Is Null Is Null] Ends With Filter(`4esn` In `6esn`['s_str'..][010..] Where Count(*)[..`3esn`]) Ends With (_usn4 {`8esn`:9e1 In 01 In 999})-[`8esn`?:#usn7|:_usn4]-(#usn8 :_usn3)-[ *0..010{#usn7:$@usn6 Is Null Is Null}]-(:`1esn`{`8esn`:Count ( * ) =~Count(*)}) Skip `3esn`[..7][..12e12] Limit (:`1esn`{`8esn`:Count ( * ) =~Count(*)})-[`2esn`*..$usn1]->(:@usn5{_usn4:.12 Starts With 0Xa})-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(`1esn` {_usn4:12.e12 Ends With 01 Ends With .e1})[Any(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8])] With *,`3esn`[$`1esn`..] As usn2 Limit @usn6(Distinct Null[0e0][12])[..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]]][..`8esn`(010 =~`6esn`)] Where usn2[`3esn`][_usn3] Return $`4esn`[12.e12..][0.0..],12[`7esn`...0][0.12..``] As @usn6,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Skip $`1esn` Ends With $`1esn`"), - octest:ct_string("Merge @usn5=(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})<-[?:`7esn`|`2esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}]->(usn1 :#usn8))) On Match Set `5esn` =[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][``($`4esn`[usn1..$#usn8][12.0..`3esn`])..[`6esn` In 0X7 =~``|$#usn7[...e12][..$7]]][(:``{@usn5:$@usn6 Contains Count ( * ),`2esn`:$0 Is Not Null})-[_usn3?:`5esn`|`1esn` *0X0123456789ABCDEF..]->(`1esn` :#usn7{_usn3:999[.e12][01],`6esn`:9e12 Is Not Null Is Not Null})<-[`5esn`?:usn1|`3esn` *1000..]-(`5esn` {usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})..Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 12.0[..$7][..999])],[`6esn` In 0X7 =~`` Where `7esn`[...e1][..\"d_str\"]|0X0123456789ABCDEF In $1000 In $`3esn`].`5esn`? =12 Ends With 01 Ends With 1e1,[#usn7 Starts With .e12 Starts With $`7esn`].`3esn` =0X0123456789ABCDEF Contains $usn1 On Create Set #usn7 =`5esn` In $999,@usn6+=`2esn`[$`3esn`..],Any(`6esn` In 0X7 =~`` Where 12.e12['s_str']).`5esn` =usn1[..@usn5][...e0] Union All With Distinct $`4esn`[12.e12..][0.0..] As `2esn`,$0[..`8esn`] As _usn4,$`1esn` Starts With $999 Skip $#usn8[1e1][9e1] Limit Count(*) Ends With 010 Remove [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1|9e1 Starts With `1esn` Starts With 0Xa].usn2?,Count ( * ).@usn5? Remove `5esn`:usn1,(`3esn` :_usn4:usn1)-[:`3esn`|:`4esn` *999..{`6esn`:$123456789[..0.12][..#usn7],`3esn`:0 Ends With $7 Ends With _usn3}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})<-[`` *0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}).`1esn`! Union Unwind 0e0[#usn8][$_usn3] As #usn8 Optional Match ((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})),((_usn4 {`8esn`:9e1 In 01 In 999}))"), - octest:ct_string("Create ((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})),(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))) Create ((({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)<-[#usn7 *123456789..999]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4})))"), - octest:ct_string("Merge (:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa})-[:usn1|`3esn`]-(_usn3 :_usn4:usn1{`2esn`:$`6esn`[$@usn6..]}) Detach Delete 0 Is Not Null,[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1] Contains [@usn6 In @usn5 In $`6esn` Where $_usn4[$`8esn`..][07..]|$1000 In $`7esn` In $7] Contains (`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]}),{`8esn`:$_usn3[$`4esn`..Null],@usn6:$`2esn` Starts With .e0 Starts With 12.0} Starts With {usn1:`4esn` In $12 In `8esn`} Starts With [usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`|9e0 Starts With `6esn`] Union Merge (((`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})<-[`3esn`?:_usn3|:`4esn`]-(_usn3 :`1esn`)<-[_usn3{_usn3:12.e12 In $0 In Count(*)}]-(`7esn` :@usn5))) On Create Set ``(999[``..][Null..]).`8esn` =0.0[999..],`4esn`+=$`5esn` Starts With _usn3 Starts With @usn5,@usn6+=False Is Null"), - octest:ct_string("Return 9e1[010..] As `6esn` Order By $7 Ends With `5esn` Descending,1e1[\"d_str\"] Ascending Limit $`7esn` Is Null Is Null Unwind #usn7 Starts With 0x0 Starts With Null As `6esn` Union All Detach Delete _usn3 Ends With 12e12 Ends With .e0 Union All Match (@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) With Distinct $#usn8 In .e12 In 9e1 Order By All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..] Asc,0Xa[0xabc..] Ascending,@usn6[$`3esn`] Ascending Skip 1e1 In $#usn8 In 12e12 Unwind 0X7 In $999 In $`` As ``"), - octest:ct_string("Optional Match usn1=((`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`7esn` :_usn4:usn1)<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})),@usn5=(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})-[#usn7?:@usn6 *00..]->(#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})<-[?:`7esn`|`2esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}]->(usn1 :#usn8))) Where 7 Contains $`5esn` Contains $usn1 Unwind Extract(`6esn` In 0X7 =~`` Where 01234567 Ends With 0x0|$_usn4[`3esn`][0]) Is Null Is Null As ``"), - octest:ct_string("Merge `1esn`=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(usn1 :`4esn`:#usn8{``:0 Is Not Null Is Not Null,`3esn`:usn1 Starts With $#usn7 Starts With `5esn`})) On Match Set #usn8($`2esn` Contains usn1 Contains `2esn`).`3esn`? =0xabc[..$`1esn`][..01] On Create Set @usn6+=[usn1[..$_usn4][..``],0X7[.e12..01234567]] In `3esn`(@usn5[..True][..0X7],$`3esn` =~$`7esn` =~False) Return Distinct `7esn`($123456789 Ends With $`6esn`) Starts With {`7esn`:$12[01..][1.e1..],_usn3:$_usn3 =~`7esn` =~$_usn4} As usn1 Order By 12.e12 In .e0 In `7esn` Asc,9e1[.12..] Asc Skip (_usn3 )<-[usn1]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})-[_usn4?:`6esn`]->(`8esn` :`1esn`) =~Single(#usn7 In 01234567[$`3esn`..] Where 0.12 In $`4esn` In `6esn`) =~Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|$`8esn`[..123456789]) Limit 0.12 In $`4esn` In `6esn`"), - octest:ct_string("Remove Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0).`2esn`?,(`4esn` {@usn5:1e1 In $#usn8 In 12e12})-[_usn4?:`5esn`|`1esn`]-(@usn5 {``:12[usn1][True],``:$`5esn` In `2esn` In $12}).`7esn`!,[999[.e12][01]].`2esn`! Match `5esn`=({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]})-[?:@usn6{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]}]-(`3esn` :``)"), - octest:ct_string("Unwind True[0] As _usn3 Remove `4esn`:``,{#usn7:0[0.12..]}.usn2! Union All Delete Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null)[count(Distinct 0.12 Contains $12 Contains `8esn`)..[$`1esn` Is Null Is Null,9e1 In 01 In 999]],(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})[Any(_usn4 In usn1 Contains False Contains `` Where 0.12 In 01 In $`3esn`)..Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])][All(`6esn` In 0X7 =~`` Where $`3esn` =~Null)..{`8esn`:0xabc Ends With $#usn7 Ends With #usn8,usn2:usn1[$`3esn`..$999][True..False]}],usn2(Distinct `7esn` Ends With $usn2 Ends With 999) =~Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0) =~Any(`4esn` In `6esn`['s_str'..][010..] Where 01 Ends With .e0)"), - octest:ct_string("Merge ((({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(usn1 :_usn3{@usn6:True[..'s_str'][..01]})<-[`2esn`?]-(usn2 :`3esn`:`1esn`))) On Match Set `4esn` =.12 Is Not Null Is Not Null,{@usn6:True[..'s_str'][..01]}.`2esn` =12.e12[...0][..0x0],[usn1 In 00 Starts With _usn3 Where $`` Ends With 12e12].`3esn`? =0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null}"), - octest:ct_string("Create #usn8=((`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})),_usn4=(:`6esn`:`7esn`{usn2:.e0[..0X0123456789ABCDEF][...e12]}) Remove _usn3(Distinct $123456789 Is Null Is Null).@usn5?,Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).#usn7! Unwind [`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As @usn5 Union All Remove _usn3:#usn8 Union Detach Delete Extract(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null) =~Any(`4esn` In 's_str'[12..'s_str'] Where $#usn8 Is Null) =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 9e0 =~$`5esn`|$123456789 Ends With .e1],$7 Contains 0x0 Contains ``,[\"d_str\"] Contains _usn3(Distinct $usn1[_usn4..][usn2..]) Remove [01234567[Null..0.e0][Count(*)..$#usn8],#usn8 Contains .e0 Contains $`8esn`,123456789[1e1..0.0]].`1esn`? Create (:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa}),(`3esn` :usn2:@usn6)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]})-[_usn3]-(`` {`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'})"), - octest:ct_string("Remove None(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 01234567[$`3esn`..]).#usn7,[@usn5 In $#usn8 Is Null Is Null Where $`3esn` Contains 0X0123456789ABCDEF Contains 00].`8esn`!,[`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn`[1e1..07][0x0..Count ( * )]|$`7esn` Is Null Is Null].`6esn` Union All With *,@usn5 Starts With 12e12 Starts With @usn5 Limit `2esn` In 12.e12 In `3esn`"), - octest:ct_string("Remove {@usn6:123456789 =~$123456789,`4esn`:usn1 Contains False Contains ``}.`3esn`! Detach Delete usn1 Ends With 010 Delete usn1[1e1][$_usn4],$123456789[..0.12][..#usn7] Union All Remove `8esn`(Distinct 00 In 1e1).usn2!,Single(`4esn` In `6esn`['s_str'..][010..] Where 0e0 Is Not Null Is Not Null).`7esn`! Union All With Distinct 123.654 Is Not Null Is Not Null As `3esn`,00 As `4esn` Order By [usn1 In 00 Starts With _usn3 Where 00][#usn8(Distinct $`2esn`[$123456789..$`1esn`][0Xa..$``],@usn6[`5esn`..$`3esn`])..['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`]] Asc,999 Contains `7esn` Desc,Filter(@usn5 In $#usn8 Is Null Is Null Where 9e1 Contains $`3esn` Contains 01234567) =~['s_str'[..0.e0][..`1esn`],`5esn`[.e1][0Xa],123456789 In $usn2 In `6esn`] Ascending Skip 0e0 Is Null Is Null"), - octest:ct_string("Create @usn5=({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`8esn` :`7esn`)<-[?:usn2|#usn8{#usn8:$@usn6 Is Null Is Null,_usn4:_usn4 Starts With $@usn6 Starts With #usn7}]-({_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}),((:`3esn`:`1esn`{`1esn`:0.0[1000..][.e1..]})-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})-[``? *..01]->(`6esn` {`8esn`:.12 =~.12 =~1e1})) With Distinct {usn1:'s_str'[12..'s_str'],#usn7:07[`6esn`..][`5esn`..]} As `1esn` Limit {`7esn`:.e0 Contains #usn7 Contains $#usn8}[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..None(`6esn` In 0X7 =~`` Where 12.e12['s_str'])][(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})..({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})]"), - octest:ct_string("Create ((:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6)) Unwind `5esn` In 12 As `2esn` Match `1esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) Where $123456789 Is Not Null Is Not Null Union With Distinct 1.e1 Contains @usn6 As usn2 Order By [@usn6 In @usn5 In $`6esn` Where False In $`7esn` In .0|.12 Starts With $usn2] Ends With Extract(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]|Count ( * ) =~Count(*)) Ends With Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Desc,Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}) Desc Limit [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7] Starts With [@usn6 In @usn5 In $`6esn` Where $``[_usn4..][`7esn`..]|12.e12 In $0 In Count(*)] Starts With Extract(`4esn` In $`8esn` Starts With 1000 Where `6esn`['s_str'..][010..]|12.e12[@usn5..123.654]) Where $`5esn` In `2esn` In .0"), - octest:ct_string("Merge _usn4=(usn1 :_usn4:usn1)<-[`5esn` *0..010]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) Union Merge usn2=(:`8esn`{usn2:7 Contains 9e1})<-[_usn3?:`7esn`|`2esn` *010]-(#usn8 :`4esn`:#usn8)-[`8esn` *..0x0{#usn7:Count ( * )[Count ( * )..12e12][usn1..1000],`4esn`:010 Is Null Is Null}]->(@usn6 ) Unwind 0x0 =~_usn4 As `5esn` Union Return 123456789 =~_usn4 =~$0 Order By 0xabc Starts With _usn3 Desc,(`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Ascending,Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0xabc[$@usn5]) Contains Extract(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`) Desc Skip Extract(#usn7 In 01234567[$`3esn`..] Where 0xabc[$@usn5])[All(`4esn` In 's_str'[12..'s_str'] Where $_usn4[12e12][`4esn`])][(`6esn` :`5esn`)<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)] Limit [@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2] Is Null Return Distinct *,.e1[usn1..],$1000[.e0..] As `3esn` Skip `5esn`[Count ( * )..][\"d_str\"..]"), - octest:ct_string("Unwind [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] As #usn7 Match ((`` :`1esn`)-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`4esn` {`2esn`:@usn6[`5esn`..$`3esn`],`7esn`:$`1esn` Is Null})) Where $`8esn`[$``..$7][$1000..$`7esn`]"), - octest:ct_string("Unwind 12e12 Starts With $123456789 Starts With 12.0 As usn1 Optional Match `3esn`=(({``:$1000 Is Null Is Null})) Where `1esn`[...e1] Union All Unwind 1e1[@usn5..] As _usn4"), - octest:ct_string("Unwind {@usn5:$`3esn`} Starts With .12 As @usn5"), - octest:ct_string("Detach Delete $`3esn` Contains 0X0123456789ABCDEF Contains 00,Extract(usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]|1000[..$`6esn`][..0xabc]) Ends With [07[$999],12e12[Count ( * )..][usn2..]] Unwind 0X7[0e0..] As `5esn` Union Create ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})),((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) Detach Delete 1000 In 0X0123456789ABCDEF In 01,`3esn`()[Filter(usn2 In 1000 Contains 0.e0 Where 0.12 In 01 In $`3esn`)..{@usn6:`6esn`[_usn4..][$`6esn`..]}],Extract(usn1 In 0x0[..`4esn`] Where \"d_str\" Contains `3esn` Contains 00|Count(*) Ends With 010)[All(usn2 In 1000 Contains 0.e0 Where #usn8 Ends With `4esn` Ends With $`4esn`)..@usn6(Distinct _usn3 In .e1 In $12,123.654 Starts With usn1 Starts With @usn5)][All(usn2 In 1000 Contains 0.e0 Where 0.0[1000..][.e1..])..{`7esn`:`2esn`[$`1esn`..][$_usn3..]}] Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7}))"), - octest:ct_string("Match (@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0}),(((`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`5esn`)<-[_usn3?:`3esn`|:`4esn` *0..010]->(_usn3 ))) Union All Return Distinct All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Is Not Null Is Not Null,0xabc[$@usn5] As `7esn`,.e0[usn2..] As _usn3 Skip 0x0 In `8esn` In 999 Merge #usn8=(:@usn5{usn1:Count(*)[True],@usn6:123456789[$#usn7..]})<-[#usn7]-(`7esn` :`2esn`:`3esn`)-[?:``|:_usn4 *..0X7]->(`4esn` {`6esn`:$12[..``][..$7]}) On Match Set `2esn`+=123.654 In \"d_str\" In $_usn3"), - octest:ct_string("Unwind 1.e1[Null][12.e12] As `7esn` Unwind Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}) As `4esn` Create `3esn`=((@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})<-[{_usn3:12.e12 In $0 In Count(*)}]-(:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8}))"), - octest:ct_string("Unwind $999 =~False As usn1 Merge `5esn`=(((`5esn` :`6esn`:`7esn`{`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`2esn` :usn2:@usn6)-[?:@usn6 *00..{@usn5:$`5esn`[False],`4esn`:usn1[..$_usn4][..``]}]->(:``{`1esn`:`6esn` =~$_usn3}))) On Match Set _usn3+=07 In Count ( * ) In \"d_str\" Unwind $`` Is Null Is Null As #usn8 Union All Merge ((`1esn` :usn2:@usn6)-[_usn3?:`2esn`|usn2 *010{`6esn`:#usn7 Ends With `4esn` Ends With @usn5}]->(`1esn` :``{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})) On Match Set [$usn1 In 1000 In $#usn7,$#usn7 In 12.0 In 0X0123456789ABCDEF,9e0 Is Not Null]._usn3 =All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`! =0xabc Starts With _usn3 Create _usn4=(@usn6 {#usn7:False[`2esn`..#usn8]})<-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]-(`4esn` {@usn6:True[..'s_str'][..01]}) Match ({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})-[#usn7:`1esn` *07..]->(:`7esn`{``:$`1esn` Starts With @usn6})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) Where 9e12 =~01 =~$`7esn`"), - octest:ct_string("Match #usn7=({`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]->(`3esn` {_usn3:@usn6 Contains _usn4 Contains $`4esn`})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->({_usn3:12.e12 In $0 In Count(*)}) Union Unwind 1000[123.654..9e12][1000.._usn3] As _usn3"), - octest:ct_string("Match ({`5esn`:123456789 Starts With `2esn` Starts With .0})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa})<-[`` *12..0xabc]->(`3esn` :_usn4:usn1) Return $`4esn` Contains 0Xa,010 In `7esn` Order By 0x0 In `8esn` In 999 Descending Detach Delete 0X0123456789ABCDEF Contains 12.e12 Contains 999,0X0123456789ABCDEF In $1000 In $`3esn`,'s_str' Is Not Null Is Not Null Union Remove All(`4esn` In 's_str'[12..'s_str'] Where $`8esn`[..$``]).`7esn`!,usn2(07[$999]).`4esn` Remove [_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4].@usn5,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`!,Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0.12 In $`4esn` In `6esn`)._usn4 Create #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`)"), - octest:ct_string("Return Distinct $12 Contains 123.654 Contains `8esn` As _usn4 Remove None(usn1 In 0x0[..`4esn`] Where False[.e1..Null]).``,[.e0[..999][..0X7]].`5esn`?"), - octest:ct_string("Remove Extract(_usn4 In usn1 Contains False Contains `` Where _usn4[$`4esn`..]|999 Contains `7esn`).usn1? With Distinct *,`4esn`($123456789 =~$0 =~$`3esn`) =~[07[12][$`6esn`],$`2esn` =~'s_str',$12[01..][1.e1..]] =~usn1(#usn7 Starts With `1esn`) As `3esn` Order By Extract(usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`) Contains [0 Contains 12e12,0xabc Ends With $7 Ends With $`2esn`,0x0 =~_usn4] Ascending,07[1e1] Ascending Skip 0e0[$12..`5esn`][Count(*)..`6esn`] Limit $123456789 Is Not Null Is Not Null Where 7 =~9e0 =~'s_str' Return None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where _usn3[...e1]) In (:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})<-[usn2?:usn2|#usn8{`6esn`:$123456789[$`2esn`][True],@usn5:$`3esn` =~$`6esn` =~`8esn`}]-({`5esn`:0e0 =~_usn4})-[_usn4:_usn3|:`4esn` *1000..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`}) As _usn3 Skip `2esn` Is Not Null Is Not Null Limit None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]]"), - octest:ct_string("Merge ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) On Match Set (`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})<-[?{#usn7:`6esn`[False..0.0][12e12..$usn2]}]-(`4esn` {`4esn`:#usn7[..$1000][..01]})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}).`4esn`! =0 Is Not Null,`6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`1esn` =$_usn3[$`4esn`..Null] On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Delete $`2esn` Ends With `3esn` Ends With $7,0e0[12][$_usn4],`7esn`[Null..][@usn5..] Merge (((usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[`1esn`:`1esn`{``:_usn3[...e1],`2esn`:.12[`1esn`..][$`3esn`..]}]-(`7esn` :_usn4:usn1)<-[@usn5:#usn8{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]-(#usn8 :_usn3))) Union Detach Delete 999[$`8esn`],Single(#usn7 In 01234567[$`3esn`..])[(`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']})][[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12 Ends With 01234567|Count(*) In 01 In .0]],$#usn7 In .e1 In 01 Delete 01 In 01 In 12,`6esn`[0X7..][0x0..] Union All Merge _usn3=((@usn6 :_usn3{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(`4esn` :`4esn`:#usn8{`1esn`:$@usn5 In 12e12 In Count(*)})) Create (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Detach Delete {@usn6:0.12 In $`4esn` In `6esn`,``:1e1 Is Null} Is Not Null Is Not Null,00 In 0.12 In `5esn`,Single(#usn8 In $`5esn` Is Null Is Null Where 1000[0.0][Null]) =~[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] =~None(#usn8 In $`5esn` Is Null Is Null Where 0.0[..12e12][..$0])"), - octest:ct_string("Remove [usn2 In 1000 Contains 0.e0 Where $_usn3[Null]|1000[..$`6esn`][..0xabc]].`` Merge (((:_usn4:usn1)-[@usn5?:@usn6*..]-(`2esn` :`5esn`{#usn8:$999 Ends With $`3esn` Ends With `8esn`})-[?:@usn6]-(_usn3 :`4esn`:#usn8{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]}))) On Match Set `5esn` =999[.e12][01],Extract(usn1 In 0x0[..`4esn`] Where @usn6[$`3esn`]).#usn8? =`1esn` In 999 In $#usn7,usn1 =12.e12[0e0..7] Merge `8esn`=((`2esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) On Match Set Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12|0Xa Is Not Null Is Not Null)._usn3? =Single(`6esn` In 0X7 =~`` Where 12.0[..$7][..999]) Starts With {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Starts With (`8esn` :@usn5)-[`6esn`?:_usn3|:`4esn` *12..0xabc]-(usn2 :#usn8{`3esn`:123.654[@usn5]})<-[#usn8{`2esn`:`6esn`[1.e1..$#usn7][.e0..True],`3esn`:$`5esn` Contains Count(*) Contains #usn7}]->(#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`}),#usn7+=$`7esn` =~.e1,Filter(`4esn` In 's_str'[12..'s_str'] Where $123456789 Contains 01 Contains 0.12).#usn8! =.12[`1esn`..] On Create Set #usn8+=12[0X7..@usn6],{``:12e12[$`5esn`][07],_usn3:$`6esn` Is Null Is Null}.usn1 =$`6esn` Is Not Null Is Not Null Union Delete usn2(Distinct 0xabc Contains Null Contains 9e12,12[..True][..$`4esn`]) Is Null,.12 Is Not Null Is Not Null,1e1 Starts With #usn8 Starts With 1.e1 Match ((_usn4 :`2esn`:`3esn`{#usn8:123456789[$#usn7..],#usn7:07[12e12]})),(_usn3 :_usn3)"), - octest:ct_string("Unwind 07[..$_usn3] As #usn7 Union All Create #usn8=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})<-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]->(@usn6 {_usn3:$_usn4[$`1esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})),`6esn`=(`6esn` :`5esn`)"), - octest:ct_string("Unwind 0X0123456789ABCDEF[..usn1] As _usn3 Optional Match usn2=(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})))"), - octest:ct_string("Create (((`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]})-[_usn4?:`5esn`|`1esn`]-(@usn5 {``:12[usn1][True],``:$`5esn` In `2esn` In $12})<-[`` *0xabc]->(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}))),`6esn`=(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` :#usn8{@usn5:\"d_str\" =~`6esn` =~0Xa,_usn3:07[..010][..12.0]}) Remove [`3esn`[..7][..12e12]].`2esn`?,(`7esn` :#usn8)-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?{`3esn`:`6esn` =~01234567 =~0Xa,@usn5:0.e0[9e1..][0.0..]}]->(`2esn` {#usn8:12.e12[0e0..7]})._usn4? Union All Match @usn6=((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]->(:_usn3{@usn6:$`7esn` Is Null Is Null})),((({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999})<-[@usn6?:`6esn`*..]-(_usn3 :usn2:@usn6)-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6))) Where #usn7 Ends With 9e1 Optional Match #usn7=(:#usn7{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})<-[:@usn5|`8esn`*..]-(`2esn` :usn1{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn2:@usn6{@usn5:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:.12 Ends With $`4esn` Ends With Count(*)}) Match (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Where Count ( * ) =~Count(*)"), - octest:ct_string("Unwind {#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] As _usn3 Return 0.12[Count(*)..] Order By [@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0] Is Null Ascending,`2esn` Is Not Null Is Not Null Ascending,12.0 In 1000 In _usn4 Desc Skip 9e12[$1000][$@usn6] Limit $@usn6 Contains Count ( * ) Unwind 010 In @usn6 As usn2 Union Detach Delete [1e1[0.0],0.12 Contains $`2esn` Contains $_usn4],Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4)[..`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)][..{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}],{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[{`4esn`:$7 Ends With 12.0 Ends With 0xabc,_usn4:0X0123456789ABCDEF[.e0..$`4esn`]}..][Extract(`4esn` In `6esn`['s_str'..][010..] Where $999 Ends With $`3esn` Ends With `8esn`)..] Return Distinct *,\"d_str\"[Count ( * )] As `7esn`,0x0[123456789] As @usn6 Skip `1esn`[@usn6..$123456789]"), - octest:ct_string("Return Distinct *,None(@usn5 In 0X7 =~.0 =~\"d_str\" Where _usn3[...e1])[[_usn4 In usn1 Contains False Contains `` Where 0.12 In $7 In 0]..][[7[..12e12][..$`6esn`]]..],[usn1[..@usn5][...e0]][(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)] Skip `8esn`[$#usn7] Create (({#usn7:Count ( * )[@usn6..0x0]})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(`4esn` {`7esn`:.e0[..999][..0X7]})) Remove All(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`).@usn6 Union All Detach Delete 0x0 Contains $`8esn` Contains `6esn` Merge _usn4=(usn1 :_usn4:usn1)<-[`5esn` *0..010]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) On Create Set `4esn` =$@usn6 Contains 07 Contains 0.e0 On Match Set [0X7 =~.0 =~\"d_str\",9e1[...e0]].@usn5 =Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}),{@usn6:usn1 In 1000 In $`5esn`,@usn6:9e0[``][123.654]}.`3esn`! =$999 In $`8esn` In `5esn` Union All Return [@usn5 In 0X7 =~.0 =~\"d_str\"|#usn7 Starts With `1esn`][Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `7esn`[...e1][..\"d_str\"])..][`2esn`(Distinct 12e12[Null],0xabc[12.e12..`1esn`])..],`2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As `6esn` Order By None(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00)[[@usn6 Starts With `7esn` Starts With Null]][{`1esn`:07[`6esn`..][`5esn`..],usn1:$usn2[False..`7esn`][`7esn`.._usn3]}] Ascending,[010 =~$usn2 =~1e1,`6esn` =~01234567 =~0Xa,07[1e1]][(:@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(@usn6 {_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12})..][Extract(#usn8 In $`5esn` Is Null Is Null Where 1000[0.0][Null])..] Ascending Unwind #usn8 Is Not Null As usn2"), - octest:ct_string("Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where True Contains @usn6|123456789 Starts With `2esn` Starts With 9e12).usn2? Create ((({usn1:`2esn`[$`1esn`..][$_usn3..]})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)<-[#usn7 *123456789..999]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}))) Merge ``=(`7esn` :`7esn`)-[_usn4?:@usn6 *..7]->({usn1:usn1[$`3esn`..$999][True..False],`7esn`:_usn3 Ends With 12e12 Ends With .e0}) Union All Unwind Any(`4esn` In `6esn`['s_str'..][010..] Where \"d_str\" =~`6esn` =~0Xa)[[$`6esn` Is Null Is Null,0Xa Is Not Null Is Not Null,0X7 In 123.654 In $`2esn`]][[usn2 In 1000 Contains 0.e0 Where $_usn3[Null]|$0 =~$usn1 =~9e1]] As #usn8 Return *,usn2 =~0x0,07 In `5esn` In 12e12 Skip Null Contains 9e1 Limit [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] Unwind None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] As @usn5"), - octest:ct_string("Delete Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]),7 Is Null Create ((usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})),((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`3esn`?:_usn3|:`4esn`]-(`4esn` {`6esn`:$12[..``][..$7]})) With Distinct Null[0.e0..0x0] As `2esn`,$`1esn` Starts With $999 As #usn8 Where Count(*)[`7esn`..$12] Union All Merge @usn6=(({_usn3:$0 Ends With $#usn7 Ends With .12})-[@usn6?:#usn7|:_usn4 *00..]->(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})) On Match Set [`6esn` In 0X7 =~`` Where $`3esn` =~Null|1.e1[0X0123456789ABCDEF..][$`5esn`..]]._usn3? =Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null)[count(Distinct 0.12 Contains $12 Contains `8esn`)..[$`1esn` Is Null Is Null,9e1 In 01 In 999]],`1esn`+=None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12e12[.12..]) Ends With None(_usn4 In usn1 Contains False Contains `` Where 12 Ends With 01234567) Ends With @usn6($123456789[0.0..]),(_usn4 {#usn7:False[`2esn`..#usn8],#usn8:`5esn`[`1esn`..`1esn`]})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[#usn7?:@usn6 *00..]->(_usn3 :_usn4:usn1{@usn5:$@usn6 In $`5esn` In $usn2,#usn7:$0[0X0123456789ABCDEF..$#usn7]}).`3esn` =01234567[$@usn6..0X7][$`1esn`..123.654] Union All Remove `1esn`:`6esn`:`7esn`,`4esn`(@usn6[..0xabc][..$#usn7],0X7[12]).`5esn`!"), - octest:ct_string("Unwind False Ends With $`8esn` As `3esn` Create `1esn`=((`8esn` :`7esn`{`8esn`:False In 123456789 In $0})-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]-(usn1 :`4esn`:#usn8{``:0 Is Not Null Is Not Null,`3esn`:usn1 Starts With $#usn7 Starts With `5esn`})) Union Unwind `2esn`(Distinct 7[..12e12][..$`6esn`]) In Filter(@usn5 In 0X7 =~.0 =~\"d_str\" Where `5esn`[.e1][0Xa]) As `4esn` Return Distinct *,01234567 Is Null Is Null Order By 0e0 =~Count(*) =~0Xa Descending Skip [$1000 Is Null Is Null] Is Null Limit Extract(@usn6 In @usn5 In $`6esn` Where $`5esn` Contains $@usn6|$0[7..][Null..])[[`6esn` In 0X7 =~`` Where 9e1[0.e0..][#usn8..]]]"), - octest:ct_string("With *,usn2 =~0x0,07 In `5esn` In 12e12 Skip `` Is Not Null Is Not Null Where usn1 Contains $`` Remove None(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True]).#usn7?,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]].@usn5?,[00[01234567][False]].`1esn`? Union Create (`2esn` :``)<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(_usn3 :_usn4:usn1),`8esn`=(`4esn` {@usn5:1e1 In $#usn8 In 12e12})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`7esn` {`8esn`:$123456789 Contains 01 Contains 0.12})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8) Remove (_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`).usn2,[`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]|12 Is Null Is Null].#usn8? Detach Delete 0X0123456789ABCDEF Contains 12.e12 Contains 999,0X0123456789ABCDEF In $1000 In $`3esn`,'s_str' Is Not Null Is Not Null Union All Create `8esn`=(((:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})<-[:#usn7|:_usn4{``:$1000 Is Null Is Null}]->({`6esn`:.e1 Starts With 0.0 Starts With `6esn`,_usn3:$@usn6 Contains 0 Contains $`2esn`}))) Remove [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`6esn`[$@usn6..]|010 =~$usn2 =~1e1].@usn6?"), - octest:ct_string("Detach Delete usn2(Distinct `7esn` Ends With $usn2 Ends With 999) =~Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0) =~Any(`4esn` In `6esn`['s_str'..][010..] Where 01 Ends With .e0),#usn7 Contains .0 Contains .e1,0.12[Count(*)..]"), - octest:ct_string("Remove (_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`).usn2,[`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]|12 Is Null Is Null].#usn8? Union All Create (:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa}),(`3esn` :usn2:@usn6)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]})-[_usn3]-(`` {`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'}) Delete True In 0x0,0X7[12] Union Create `4esn`=(:`5esn`{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12})<-[`1esn`?:`1esn` *01234567..12]->(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})<-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(_usn4 ),(:#usn7) With Distinct {#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)] Order By usn1($@usn5[0.12..][@usn5..],\"d_str\" Starts With $usn1) Is Null Ascending,`` Asc,$999 In $`8esn` In `5esn` Descending Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit `4esn` Is Null Create (:`3esn`:`1esn`{@usn5:$#usn8 In .e12 In 9e1,`7esn`:9e1 Starts With `1esn` Starts With 0Xa}),(`3esn` :usn2:@usn6)-[#usn7:`7esn`|`2esn` *..01{``:0X7 In 's_str' In $`1esn`,#usn8:010 Contains Count(*)}]->({`4esn`:$usn1[1e1.._usn3][$@usn6..$#usn7],`3esn`:9e0[``][123.654]})-[_usn3]-(`` {`4esn`:9e0[True..`1esn`],@usn6:7 =~9e0 =~'s_str'})"), - octest:ct_string("With Distinct *,$@usn6[..$usn1] As _usn3 Order By [`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) Desc Where 0.12 Contains $12 Contains `8esn` Create @usn5=(({`8esn`:$usn1[0.12..]['s_str'..],`8esn`:`1esn`[0e0..]})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})<-[_usn3?:``|:_usn4 *0xabc{`6esn`:$#usn8 Ends With 1000 Ends With .0,`7esn`:010 =~`6esn`}]-(:usn1{#usn7:12[0X7..@usn6]})),_usn4=(@usn6 {#usn7:False[`2esn`..#usn8]})<-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]-(`4esn` {@usn6:True[..'s_str'][..01]}) Remove (:`6esn`:`7esn`{#usn8:`5esn` =~0Xa,usn1:12 =~usn1 =~.e12})-[ *00..{`2esn`:$0 Is Not Null}]-(`` :#usn7$0).``,[#usn7 In 01234567[$`3esn`..] Where 0Xa[0xabc..$#usn8]]._usn4!,[.12 Contains $`4esn` Contains $`6esn`].`6esn`? Union All Create (((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))),(@usn6 {`4esn`:$`2esn`[..`2esn`]})<-[`4esn`? *00..]-(`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})"), - octest:ct_string("Remove [$`2esn` =~'s_str',12 Ends With 01234567,$1000 Is Null Is Null].`3esn`?,[12.e12[...0][..0x0]]._usn4,(`1esn` :`8esn`)<-[#usn7:`3esn`|:`4esn` *00..]->(`4esn` :`8esn`)-[`4esn`? *0Xa]-(`7esn` :`2esn`:`3esn`{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}).`3esn`? With Distinct [@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null] Contains Filter(`4esn` In 's_str'[12..'s_str'] Where 123.654 Starts With usn1 Starts With @usn5) Contains [`4esn` In $`8esn` Starts With 1000 Where False In `3esn`] Order By [#usn8 Ends With `4esn` Ends With $`4esn`,$`2esn` =~'s_str',$#usn7[...e12][..$7]][#usn7(0x0 =~_usn4,`5esn` =~0Xa)][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Descending,9e12 Asc Skip 0X7[.e12..01234567] Limit $_usn4[0.12..$`6esn`][00..$@usn6] Match `4esn`=(({_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`})) Union Merge (((`7esn` :`2esn`:`3esn`)<-[@usn5?:#usn8 *999..{`1esn`:$@usn5 =~$`` =~$usn2}]->(`2esn` {`3esn`:$999[12.0..]})-[? *00..{#usn8:12.e12[...0][..0x0],`7esn`:$`4esn`[9e1..][0..]}]-(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]}))) On Match Set `7esn`+=.e1[..$`4esn`][.._usn4],`4esn`+=@usn6[$`8esn`][12.e12],@usn5+=1000 Contains $#usn7 Contains `6esn` Match (({#usn7:`7esn` In 999 In @usn6,usn2:.12 Ends With $`4esn` Ends With Count(*)})-[`5esn`:@usn6]->(:``)),`6esn`=((:#usn7{`2esn`:.12 Starts With @usn5 Starts With $#usn8})) Where `2esn` Contains $999"), - octest:ct_string("Match `3esn`=(((#usn8 :`3esn`:`1esn`{`6esn`:12e12 Ends With 010 Ends With .0,usn1:$`6esn`[$`1esn`][1000]})-[?*..{`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}]-(`` :`3esn`:`1esn`{_usn3:'s_str'[..0.0][..$`4esn`],`4esn`:$123456789 Is Not Null Is Not Null})<-[:`6esn` *..0X7{`3esn`:`1esn` Contains Count ( * ),`7esn`:01234567 =~usn1}]-({usn1:010[@usn5..],`7esn`:`2esn` Is Not Null Is Not Null}))) Unwind 12e12[Count ( * )..][usn2..] As `3esn`"), - octest:ct_string("Remove (`` )<-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[ *00..{@usn5:$`5esn` Is Null Is Null}]->(:_usn4:usn1).`8esn`?,{usn2:0 Contains 12e12,#usn8:$`1esn` Starts With $999}.#usn8? Union All Remove All(`4esn` In 's_str'[12..'s_str'] Where $`8esn`[..$``]).`7esn`! Create `2esn`=(_usn4 {`8esn`:9e1 In 01 In 999})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) Merge `8esn`=(({_usn3:$0 Ends With $#usn7 Ends With .12})-[:``|:_usn4 *01234567..12{`2esn`:$`` Is Null Is Null,``:$`4esn`[usn1..$#usn8][12.0..`3esn`]}]->(#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]})-[?:``|:_usn4 *..0X7]->({`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]})) Union All Remove [usn2 In 1000 Contains 0.e0 Where 0X7 =~`4esn` =~`8esn`|$`8esn`[$``..$7][$1000..$`7esn`]].`3esn`!,@usn6:#usn8,(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})-[`2esn`]-({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]->(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})._usn3 Remove [@usn5 In 0X7 =~.0 =~\"d_str\" Where $`8esn` Starts With 1000|@usn6 Contains .e1 Contains $`4esn`].`8esn`!"), - octest:ct_string("Return Distinct 12e12[0.e0..True][0.12..0.0] As #usn7,07[..010][..12.0] As `2esn` Order By `3esn`(Distinct $_usn3[Null],12[..True][..$`4esn`]) Is Null Is Null Descending,Any(@usn5 In $#usn8 Is Null Is Null Where .e1 In $@usn6 In 999) In None(usn1 In 0x0[..`4esn`] Where $123456789[..0x0][..`4esn`]) Ascending Skip Extract(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where 01234567[.12..7][1000..1.e1]|$`5esn` In False) Contains {@usn5:Null[0e0][12],_usn4:0 Contains 12e12} Contains [usn1 In 0x0[..`4esn`] Where \"d_str\" Contains `3esn` Contains 00|@usn6[`3esn`..][$7..]] Remove Single(`4esn` In `6esn`['s_str'..][010..] Where 12 =~usn1 =~.e12).`4esn`,`3esn`:`` Union All Detach Delete Extract(`4esn` In $`8esn` Starts With 1000 Where False In `3esn`|$`3esn` =~Null),12 Is Null Is Null With $`5esn`[$123456789][`1esn`] As `8esn`,[@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] As #usn7 Order By None(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`)[..Extract(`6esn` In 0X7 =~`` Where $usn2 Contains 12.e12 Contains 00|$#usn8 Ends With 1000 Ends With .0)][..[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where #usn7 Ends With 9e1]] Ascending,Count(*) In 01 In .0 Asc,Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`6esn`[$@usn6..]) In {`7esn`:12e12 Ends With 010 Ends With .0} In None(#usn8 In $`5esn` Is Null Is Null Where 123456789 In $usn2 In `6esn`) Asc Where 0.e0[9e0][0e0]"), - octest:ct_string("Remove All(_usn4 In usn1 Contains False Contains `` Where 0.12 In $7 In 0).@usn5 Union All Unwind [\"d_str\" Starts With $usn1,.12 Contains $`4esn` Contains $`6esn`,01234567 =~usn1] Is Null Is Null As _usn3 Remove Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]|`3esn` Contains 0Xa).usn1? Delete .12[..`6esn`][..\"d_str\"],$`6esn`[`3esn`..0e0],$_usn4[12e12][`4esn`] Union All Unwind [`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``] =~[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`] As #usn8"), - octest:ct_string("Optional Match (((usn2 :#usn8{_usn3:$_usn3[..Count ( * )][..@usn5]})-[``?:@usn6{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}]->(`4esn` :`4esn`:#usn8{`1esn`:$@usn5 In 12e12 In Count(*)})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`4esn` :`5esn`{@usn6:$usn2 =~$#usn8,`8esn`:`6esn` =~$_usn3}))),usn2=(((`7esn` :`7esn`)-[{`2esn`:\"d_str\" =~`3esn` =~0Xa,_usn4:usn1 Is Null Is Null}]->(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]})<-[`2esn`?:`7esn`|`2esn`{`8esn`:00}]-(`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}))) Create (((@usn6 {#usn7:False[`2esn`..#usn8]})-[? *010]-(`8esn` :@usn5)<-[#usn8?{`5esn`:Null[01234567][01234567]}]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}))),`8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})) Union Detach Delete 1000 In 0X0123456789ABCDEF In 01,@usn6(Distinct Null[0e0][12])[..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]]][..`8esn`(010 =~`6esn`)],1e1 Starts With #usn8 Starts With 1.e1 Detach Delete Null Starts With $`7esn` Starts With `2esn` Delete $7 Ends With 12.0 Ends With 0xabc,usn1 =~Null =~`5esn` Union Merge ((_usn3 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[?:usn2|#usn8 *00..]-(`3esn` :`4esn`:#usn8)) Match _usn3=(`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})<-[`8esn`?:`5esn`|`1esn`]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`3esn`?*..]->(`7esn` :@usn6:`7esn`{`5esn`:\"d_str\" Starts With $usn1,`5esn`:`2esn`[$`3esn`..]}),``=(({`5esn`:0e0 =~_usn4}))"), - octest:ct_string("Optional Match #usn8=((:_usn4:usn1{``:123456789 Starts With `2esn` Starts With .0,`5esn`:``})-[`2esn`? *0..010]->(usn2 :_usn3)-[usn1? *07..{`5esn`:#usn7 Is Not Null Is Not Null}]-(`2esn` :usn1{`8esn`:$``[_usn4..][`7esn`..]})) Return Distinct 12.e12 In $0 In Count(*) As `` Return Distinct $`1esn` Starts With $999 As #usn8,Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)[{#usn8:`5esn` =~0Xa,@usn5:0X7[999][$1000]}..[`` Starts With 12,$`1esn` Starts With $999]][`7esn`(Distinct $usn2[..12.0])..`1esn`(Distinct 1e1[0.0],0.0[1000..][.e1..])] Order By 9e1 Is Not Null Is Not Null Asc,$usn2[$123456789..123.654][$`5esn`..'s_str'] Desc Union All Unwind 123456789 =~$123456789 As `4esn` Unwind $`7esn` Is Null Is Null As @usn5"), - octest:ct_string("Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 12.0[0Xa][00]|$`1esn` Starts With $999).`6esn`,Any(`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]).`3esn` Remove count(Distinct 0.e0[9e1..][0.0..],$usn2 =~$#usn8).`5esn`?,{`4esn`:9e12 Is Not Null Is Not Null,`8esn`:$0[..`8esn`]}._usn3,@usn5:usn2:@usn6 Unwind `7esn`[1000..][$123456789..] As #usn7"), - octest:ct_string("Create ((`` :`1esn`)-[`1esn`:usn2|#usn8 *1000..]-(`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})<-[`4esn`]->({`8esn`:0X7 In 's_str' In $`1esn`})) Detach Delete {`8esn`:9e1 In 01 In 999}[usn1(1e1[..#usn8][..'s_str'])..{#usn8:$999 Ends With $`3esn` Ends With `8esn`}] Union All Return Distinct *,[`4esn` In `6esn`['s_str'..][010..] Where $@usn5 In 12e12 In Count(*)|$1000[01234567]][Any(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)..{usn1:usn1 Is Null Is Null,usn2:12.0[``]}][(_usn3 {`5esn`:0.12 Contains .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})..00] As `7esn` Order By 00 Is Null Is Null Descending,$usn2 Starts With $`6esn` Starts With 0xabc Ascending,123456789 Starts With #usn7 Starts With `6esn` Asc Skip Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`|999[$`6esn`]) =~Single(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn`) Limit 0x0 Contains _usn4 Contains 123456789 Unwind Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4)[..`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)][..{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}] As #usn7 Remove ({`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[ *..0x0{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}]-(`5esn` {`8esn`:0.0[12...12]}).``!,Single(usn2 In 1000 Contains 0.e0 Where 0e0 Is Not Null Is Not Null).``!,usn1:`8esn` Union Remove [usn1 In 00 Starts With _usn3 Where 010 =~$usn2 =~1e1|9e1 Starts With `1esn` Starts With 0Xa].usn2?,Count ( * ).@usn5?"), - octest:ct_string("Optional Match @usn6=((:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})-[?:`4esn`|:`7esn`]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})),`8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`}) Where @usn6[`3esn`..][$7..] Create ((`6esn` :_usn4:usn1{`6esn`:00 In 12.e12})<-[`7esn`?:`5esn`|`1esn`]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`})),(usn1 :`3esn`:`1esn`)-[?:`4esn`|:`7esn` *..0x0]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Match ((`` {``:$@usn6 Contains 07 Contains 0.e0,_usn4:$#usn8 In .e12 In 9e1})),(((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))) Where $`8esn` =~$usn2 Union All Remove _usn4:`3esn`:`1esn`,[$123456789[0.0..],07 In `5esn` In 12e12,$`3esn` Starts With 01234567 Starts With $1000].`3esn`! Return Distinct $`4esn` Contains `6esn` Contains #usn7,0.e0[..#usn8][..Null],$1000 Is Not Null Is Not Null Skip 's_str' =~0.e0 Limit `2esn` In 12.e12 In `3esn` Union Return Distinct [@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Order By 123456789 Starts With #usn7 Starts With `6esn` Descending,7[..0X7][..'s_str'] Ascending,None(`4esn` In 's_str'[12..'s_str'] Where 12.0[0Xa][00]) Is Not Null Desc Skip 0x0 Limit (:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[@usn6?:`1esn`]-(:`5esn`)-[@usn5?:`3esn`|:`4esn`{`7esn`:Count(*) In 01 In .0,`6esn`:$123456789[..0.12][..#usn7]}]->(`5esn` :`8esn`) Starts With Single(_usn4 In usn1 Contains False Contains `` Where $`6esn` Is Null Is Null) Match ((`7esn` :`2esn`:`3esn`{@usn6:9e0 Ends With $`7esn`})),``=((`3esn` )) Where $`1esn` Is Null Is Null"), - octest:ct_string("Unwind [0Xa Is Null Is Null] Is Null As `1esn` With Distinct $`2esn`[``..] As `3esn`,({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[`6esn`{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}]-(`4esn` {@usn6:True[..'s_str'][..01]}) In Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]) As `4esn`,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] As @usn6 Order By `7esn`[1000..][$123456789..] Desc,$#usn8 In .e12 In 9e1 Descending,$@usn5 Contains $`7esn` Contains #usn8 Desc"), - octest:ct_string("Detach Delete Null Is Null Is Null,$`2esn` =~'s_str',`3esn` =~$`5esn` =~12 Union With 0x0[...e12][..@usn5] As @usn5 Limit `1esn`(Distinct Count(*)[..`3esn`]) Starts With $0 Where $12 Contains 123.654 Contains `8esn` Union All Remove Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 07[12e12]|`3esn` Contains 0Xa).usn1?"), - octest:ct_string("With *,[#usn8 In $`5esn` Is Null Is Null Where 0.0[..12e12][..$0]][{`2esn`:.e1 In $@usn6 In 999,usn2:@usn5 Ends With $`3esn` Ends With 12e12}..] As @usn5 Order By #usn7 Contains $7 Descending,$`8esn`[$``..$7][$1000..$`7esn`] Ascending,`1esn`(Distinct $@usn5[#usn8..][$`1esn`..],#usn7 Ends With `4esn` Ends With @usn5)[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|usn1[Count ( * )..$usn1]]][{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}] Descending Skip $#usn7 =~0xabc Limit ({`2esn`:$usn2 Is Not Null})-[`4esn`:`4esn`|:`7esn`{`3esn`:Count(*)[`7esn`..$12],_usn3:$999[$1000]}]-(`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})[{_usn4:.12 =~.12 =~1e1,#usn7:.e1 Starts With 0.0 Starts With `6esn`}] Merge (((@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})-[`6esn`:_usn4|:@usn5 *..7{_usn4:0.0 =~0X7 =~#usn7}]-(usn1 :`3esn`:`1esn`))) On Create Set `7esn` =$`6esn` Is Not Null Is Not Null Union All Unwind Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4)[..`3esn`(Distinct $`1esn` =~$`1esn` =~#usn7,$@usn5 Contains 01)][..{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}] As `1esn` Detach Delete _usn3 Is Null,01 Contains 123456789"), - octest:ct_string("Return Distinct *,Extract(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12) Starts With (@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]}),$`1esn` Ends With _usn4 Ends With `3esn` Skip [$1000 Is Null Is Null] Is Null Limit $1000 In $`7esn` In $7 Return *,9e1['s_str'..1e1] As #usn7,01234567 As `6esn` Skip `2esn` In Count(*) In 9e0 Limit usn2 Is Not Null Unwind Count ( * )[..usn1][..12.e12] As #usn8 Union Return Distinct #usn8 In $0 As `1esn`,'s_str' In \"d_str\" In 123456789,[0Xa[$``..][01234567..]] Contains `3esn`(Distinct _usn3 In .e1 In $12) Contains (`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']}) As @usn6 Order By Count ( * )[(`7esn` {usn1:$1000 Contains $`3esn`})-[`5esn`?:_usn4|:@usn5]-(`3esn` {`8esn`:$``[_usn4..][`7esn`..]})-[@usn5:`4esn`|:`7esn` *0X0123456789ABCDEF..{`7esn`:.e0[..999][..0X7]}]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1})..Single(usn1 In 0x0[..`4esn`] Where $999[12.0..])][(:`6esn`:`7esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]})-[?{`2esn`:$`6esn`[$@usn6..]}]-(`4esn` :`6esn`:`7esn`)<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})..Single(`6esn` In 0X7 =~`` Where $usn1[0.12..]['s_str'..])] Ascending,0xabc[$@usn5] Asc,usn1[..$_usn4][..``] Ascending"), - octest:ct_string("Merge (((`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'})-[`6esn`? *0Xa{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}]-(:`6esn`:`7esn`{`8esn`:$`3esn`[@usn5..$123456789],@usn5:\"d_str\" Starts With $usn1})-[`1esn`?:`1esn` *01234567..12]-({_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}))) On Match Set [usn1 In 00 Starts With _usn3 Where `6esn`[1e1..]].`5esn`! =Count ( * )[Count ( * )..12e12][usn1..1000],@usn5+=usn1 Contains $`` On Match Set `6esn`+=9e0 Is Not Null,``+=`4esn` Ends With 123456789 Ends With @usn5"), - octest:ct_string("Optional Match `7esn`=(@usn6 {_usn3:1e1[.e1..],`1esn`:$#usn8})<-[#usn8?*{usn2:\"d_str\" Contains `3esn` Contains 00,`3esn`:010 Contains 0X0123456789ABCDEF}]->({`6esn`:$`8esn`[..$``]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]-(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}) Union All Optional Match ``=((({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[usn2?]-(`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))),(:usn2:@usn6)-[ *07..]->(`5esn` :`2esn`:`3esn`{_usn3:$`2esn`[$123456789..$`1esn`][0Xa..$``],`5esn`:12.e12[@usn5..123.654]}) Where 0.12 In $7 In 0 Remove `3esn`:`7esn`,(:_usn4:usn1)-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]-(`1esn` :`1esn`).``?,usn2:#usn8"), - octest:ct_string("Remove [1e1 In $#usn8 In 12e12,7 In @usn5 In $`4esn`].`5esn`!,Single(usn1 In 00 Starts With _usn3).@usn5 Union All Remove [usn1 In $123456789 Contains usn2 Where $1000 =~$`7esn`|False In $`7esn` In .0].`5esn`! Union Detach Delete 1000 In 0X0123456789ABCDEF In 01,@usn6(Distinct Null[0e0][12])[..[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..]]][..`8esn`(010 =~`6esn`)],1e1 Starts With #usn8 Starts With 1.e1 Detach Delete Null Starts With $`7esn` Starts With `2esn` Delete $7 Ends With 12.0 Ends With 0xabc,usn1 =~Null =~`5esn`"), - octest:ct_string("Merge `3esn`=(usn1 :`7esn`)<-[? *00..{`6esn`:$@usn6[_usn3..0.e0]}]->(:#usn7{`7esn`:\"d_str\",usn2:True[`4esn`][$`6esn`]}) On Create Set `1esn` =0X0123456789ABCDEF[.e0..$`4esn`] On Match Set _usn4 =@usn5 Contains 01 Contains 12,#usn7+={#usn8:0X0123456789ABCDEF[..usn1]} Ends With (:``{_usn3:0X0123456789ABCDEF In 01234567})<-[``? *..0X7{_usn4:12 Ends With 01 Ends With 1e1}]-(usn2 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12}) Ends With [1e1 In $#usn8 In 12e12,123.654 Contains #usn8] Return *,{`2esn`:999 In $_usn4 In 0X7}[..{`7esn`:12e12 Ends With 010 Ends With .0}][..Filter(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[$`2esn`][True])] As `3esn` Limit All(`4esn` In `6esn`['s_str'..][010..] Where $`8esn`[``..][123.654..]) Is Null Is Null Union All With Distinct *,07[0..`4esn`],Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) Limit Any(#usn8 In $`5esn` Is Null Is Null Where 0.12 Contains $`2esn` Contains $_usn4)[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..Extract(`4esn` In `6esn`[1e1..])] Where @usn5[..True][..0X7]"), - octest:ct_string("With Distinct ``(Distinct `1esn`[0e0..]) =~(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[@usn6?:`1esn`]-(:`5esn`)-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}),All(usn1 In 0x0[..`4esn`] Where .12 Starts With .12 Starts With `3esn`)[[_usn4 In usn1 Contains False Contains `` Where $usn1[0.12..]['s_str'..]|12[..True][..$`4esn`]]..][({`5esn`:0.12 Contains .e1})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})<-[?:`6esn` *01234567..12{`7esn`:7 In 0xabc}]-(#usn7 :usn2:@usn6{`1esn`:$usn2 Contains 12.e12 Contains 00})..] As #usn8,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Skip None(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Ends With $999 Ends With usn2(0X7[0e0..],$#usn8 Is Null Is Null) Limit usn1[$`3esn`..$999][True..False] Return 123456789 =~_usn4 =~$0 Order By 1000[..$`6esn`][..0xabc] Ascending,count($_usn3 =~`7esn` =~$_usn4) Is Not Null Is Not Null Desc Skip 12.e12['s_str'] Union All Merge _usn4=(usn1 :_usn4:usn1)<-[`5esn` *0..010]-(usn1 :usn1{`3esn`:.e0[7..$`3esn`],`6esn`:010 =~$usn2 =~1e1}) On Create Set `4esn` =$@usn6 Contains 07 Contains 0.e0 On Match Set [0X7 =~.0 =~\"d_str\",9e1[...e0]].@usn5 =Single(@usn5 In .12[#usn7][$`8esn`] Where `6esn` =~$_usn3) Ends With {`2esn`:.12 Ends With `1esn` Ends With $`1esn`,`5esn`:9e12[@usn6..$``][#usn8..Count ( * )]} Ends With (:_usn3{`2esn`:$`5esn` Is Null,@usn6:#usn7 Starts With `1esn`})<-[``?:@usn6]-(:`2esn`:`3esn`{`6esn`:01 In _usn3 In 12,_usn3:$`3esn` =~$`6esn` =~`8esn`})<-[:_usn4|:@usn5 *..0X7]->(`4esn` {`7esn`:.e0[..999][..0X7]}),{@usn6:usn1 In 1000 In $`5esn`,@usn6:9e0[``][123.654]}.`3esn`! =$999 In $`8esn` In `5esn` Merge ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) On Match Set (`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})<-[?{#usn7:`6esn`[False..0.0][12e12..$usn2]}]-(`4esn` {`4esn`:#usn7[..$1000][..01]})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}).`4esn`! =0 Is Not Null,`6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`1esn` =$_usn3[$`4esn`..Null] On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Union All With Distinct *,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7,@usn6 Starts With `7esn` Starts With Null Order By Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]|$0 =~$usn1 =~9e1)[{``:\"d_str\",`1esn`:$1000 =~$`7esn`}] Descending"), - octest:ct_string("Remove (`1esn` )<-[@usn5? *1000..]->(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})<-[@usn5?:`1esn`]-(_usn3 :`4esn`:#usn8{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})._usn4?,Any(@usn5 In $#usn8 Is Null Is Null Where False Contains `3esn`).`5esn`?,Extract(@usn5 In 0X7 =~.0 =~\"d_str\"|$`5esn` In `2esn` In .0).`2esn`? Remove (#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12}).`8esn`? Union Detach Delete $_usn4['s_str'..] Unwind 1.e1 Is Not Null Is Not Null As `4esn` Union All Return *,{#usn7:0[0.12..]} Ends With Single(@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]) Ends With {@usn5:\"d_str\" Is Null Is Null,@usn5:$_usn4[`3esn`][0]} As `8esn`,@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn` Skip {_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]}"), - octest:ct_string("Unwind `3esn`(Distinct _usn4 Ends With 01 Ends With $`1esn`) Starts With [Count(*) In 01 In .0,`` Starts With 12,$_usn4[$`8esn`..][07..]] Starts With Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12 In $0 In Count(*)) As _usn3 Create `2esn`=(_usn4 {`8esn`:9e1 In 01 In 999})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`),`5esn`=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})))"), - octest:ct_string("Return Distinct Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1),9e1[010..] As `6esn` Order By $`2esn`[$usn2..][123456789..] Ascending,{@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`} In (:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})-[#usn7:`1esn` *07..]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) In All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7) Asc Limit 9e1 Starts With `1esn` Starts With 0Xa Create `5esn`=((:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[`6esn`:``|:_usn4 *..01]->(`5esn` {_usn4:0X7 =~``})-[:`7esn`|`2esn` *123456789..999{`1esn`:12.0[..$7][..999],@usn5:$123456789 In Count(*) In .e1}]->(usn2 :usn1{``:9e12 Ends With 0X0123456789ABCDEF Ends With #usn7})),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null})-[#usn7:`1esn` *07..]->(#usn8 {`2esn`:$`5esn` Contains Count(*) Contains #usn7,_usn4:Null Starts With $`7esn` Starts With `2esn`})) Union All Merge `8esn`=(:`8esn`) On Match Set usn2+=.e1 Ends With _usn4 Ends With @usn5,@usn5+=_usn3 In .e1 In $12,Extract(`4esn` In `6esn`[1e1..] Where $`7esn` Ends With `1esn` Ends With True).`` =010 In @usn6 Return Distinct Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`) Contains @usn5(Distinct 123456789 Starts With `2esn` Starts With .0,123456789 Starts With #usn7 Starts With `6esn`) Contains None(#usn8 In $`5esn` Is Null Is Null Where $#usn8 In .e12 In 9e1),9e1[010..] As `6esn` Order By $1000 Contains $`3esn` Desc,(`7esn` :@usn6:`7esn`)<-[:``|:_usn4{`8esn`:0 Ends With $7 Ends With _usn3}]-(usn1 {#usn7:Count ( * )[@usn6..0x0]})<-[`8esn`]->(#usn8 ) Contains usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`) Contains Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where usn2[$`1esn`...0]) Ascending,[$`3esn` Starts With 01234567 Starts With $1000] Starts With `4esn` Starts With [$`2esn`[..7][..$usn1]] Desc Skip $`7esn` =~.e1"), - octest:ct_string("Unwind ``(Distinct `1esn`[0e0..]) =~(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[@usn6?:`1esn`]-(:`5esn`)-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}) As _usn4 Union Match `4esn`=(:`6esn`:`7esn`{_usn4:`3esn` Contains 0Xa}),`7esn`=(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})-[?:#usn7|:_usn4]->(`` :#usn7$0)-[`2esn` *0X0123456789ABCDEF..{usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3}]->(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]}) Where $`4esn`[9e1..][0..] Remove ``(Distinct 1e1 Is Null,$`6esn`[Count(*)..0.e0][0.0..Count ( * )]).`7esn`!,Extract(`4esn` In $`8esn` Starts With 1000 Where False[`2esn`..#usn8]|_usn3 Is Not Null Is Not Null).@usn6,[1e1 In $#usn8 In 12e12,9e1 Contains $`3esn` Contains 01234567].@usn6! Detach Delete 07[0..`4esn`],``(Distinct `1esn`[0e0..]) =~(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[@usn6?:`1esn`]-(:`5esn`)-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}),[$1000 Is Null Is Null] Is Null"), - octest:ct_string("Unwind `4esn`[7..][1000..] As usn2 Create ((:_usn3{@usn6:$`7esn` Is Null Is Null})-[``:``|:_usn4 *0X0123456789ABCDEF..{_usn3:$_usn3[..Count ( * )][..@usn5]}]-(#usn8 :@usn6:`7esn`)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` )) Unwind $`2esn`[$123456789..$`1esn`][0Xa..$``] As `7esn` Union All Create `8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`})"), - octest:ct_string("Detach Delete $@usn5 In 12e12 In Count(*),`` =~12 =~$#usn7,Null Contains _usn4 Union Create ((usn2 {usn1:123.654 Contains #usn8,`8esn`:0x0 Starts With $`7esn` Starts With `2esn`})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})) With *,0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str' Order By [`8esn` In 's_str' Starts With 1000 Starts With #usn8] =~[01234567 Ends With 12.0 Ends With 0X7,999[$`6esn`],`` Starts With @usn5] =~(:@usn6:`7esn`{`1esn`:010[@usn5..]})<-[`7esn`?:`5esn`|`1esn`]->(#usn8 :_usn4:usn1) Descending,$123456789 Ends With .e0 Ascending,({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) Desc Skip 0X0123456789ABCDEF[.e0..$`4esn`] Where 9e12[0.0..12.e12] Create ((usn1 :`6esn`:`7esn`)),((usn2 :`7esn`{@usn5:usn1[$`3esn`..$999][True..False],`8esn`:$`5esn` Is Null Is Null})-[@usn5?:@usn6*..]-(@usn5 {@usn6:0.0[999..],#usn8:Null Is Null Is Null})<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(`1esn` :``)) Union Unwind $`1esn` Ends With _usn4 Ends With `3esn` As `8esn` Merge (`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[?:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]->(usn1 :#usn8)<-[ *..0x0{`4esn`:$`7esn`[$usn1..][0.0..],`1esn`:$123456789[..0x0][..`4esn`]}]->(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000}) On Create Set `6esn` =$@usn5[Count ( * )] On Create Set Single(usn1 In 00 Starts With _usn3 Where $`7esn` Ends With 07 Ends With 07).`6esn`? =Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789},@usn5 =[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn7 In .e1 In 01][..(usn1 :#usn8)-[:`1esn` *010{`2esn`:$_usn3[9e1][$_usn4],`7esn`:`7esn`[...e1][..\"d_str\"]}]->(`7esn` :#usn8)<-[:#usn7|:_usn4{usn2:`5esn`[Count ( * )..][\"d_str\"..],`7esn`:.e1 In $@usn6 In 999}]-({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})][..Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0])],[usn1 In 00 Starts With _usn3 Where 12 Ends With .e12 Ends With $7|_usn3 =~00].#usn7! =Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null"), - octest:ct_string("With *,.e12 Starts With True As _usn4,$1000 In $`7esn` In $7 Skip [$1000 =~$`7esn`,.12 Starts With @usn5 Starts With $#usn8,0x0[...e12][..@usn5]] Ends With Single(@usn5 In .12[#usn7][$`8esn`]) Limit Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where $`4esn`[9e1..][0..]|$0 =~$usn1 =~9e1)[{``:\"d_str\",`1esn`:$1000 =~$`7esn`}] Union All With *,00 In 1e1 As `7esn`,0.12 Starts With {`1esn`:@usn6[..0xabc][..$#usn7]} Starts With {`3esn`:`8esn`[1000..$7][$`7esn`..`2esn`],_usn4:\"d_str\" Is Null Is Null} Skip 7 In @usn5 In $`4esn` Limit {`1esn`:`4esn` In $12 In `8esn`} Contains None(@usn5 In .12[#usn7][$`8esn`] Where .e12 =~0.0 =~9e0) Contains [@usn5 In 0X7 =~.0 =~\"d_str\" Where $_usn4[$`1esn`]] Return Count ( * ) In 010 Limit Count(*)[True] Create (`4esn` :@usn5{``:$`2esn`[$`2esn`..],@usn6:010 =~`6esn`})"), - octest:ct_string("Return $`3esn`[@usn5..$123456789] As _usn4,`5esn`[`1esn`..`1esn`] As #usn7,$0 =~$0 =~.e0 As `7esn` Skip 0e0 Starts With .e12 Delete ``[$`3esn`][$`2esn`],12 Ends With 01 Ends With 1e1,.12 Starts With 0Xa Union Return *,$@usn6[..12e12],`8esn` Ends With 0X0123456789ABCDEF Ends With `1esn` As usn2 Skip 1000[..$`6esn`][..0xabc] Limit $`8esn`[..$``] Union Create (_usn4 :@usn6:`7esn`)<-[#usn8?:_usn4|:@usn5 *..0x0]-(`6esn` :#usn7{`5esn`:#usn7 Is Not Null Is Not Null})-[#usn8? *12..0xabc]-(#usn8 :`4esn`:#usn8{#usn7:$`8esn` Starts With 1000})"), - octest:ct_string("Delete $`2esn`[123456789..][00..],$`4esn`[9e1..][0..],$`2esn` Ends With `3esn` Ends With $7 Unwind [`4esn` In 's_str'[12..'s_str'] Where 9e12 =~01 =~$`7esn`][#usn7(00 In 12.e12)..Extract(usn1 In 0x0[..`4esn`] Where 1000 Ends With 1000 Ends With $`4esn`|@usn6[$`3esn`])][(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})<-[`8esn`]->(#usn8 )<-[`3esn` *00..{`8esn`:@usn6 Contains .e1 Contains $`4esn`,_usn4:0X7[..12e12]}]->(@usn5 {`1esn`:0[usn2..]})..(usn1 :_usn4:usn1)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)] As _usn3 Union All With Distinct $12 Contains 123.654 Contains `8esn` As _usn4 Limit Filter(@usn6 In @usn5 In $`6esn` Where .12[`1esn`..][$`3esn`..]) Unwind $@usn5[Count ( * )] As _usn3 Unwind 999 Contains `7esn` As @usn5"), - octest:ct_string("Match `4esn`=((:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})-[#usn8? *0xabc{`5esn`:0X7[12]}]->(usn1 {`2esn`:True =~@usn5 =~$`1esn`,`2esn`:`6esn`[1.e1..$#usn7][.e0..True]})),`8esn`=((_usn4 :@usn6:`7esn`)-[:usn2|#usn8*..]-(:#usn7{``:$123456789 Is Not Null Is Not Null,`1esn`:#usn7 Starts With 0 Starts With 12})) Where 0X7[999][$1000] Remove (_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`).usn2,[`6esn` In 0X7 =~`` Where $`6esn`[..0X0123456789ABCDEF]|12 Is Null Is Null].#usn8? Union Optional Match (`5esn` {_usn4:0X7 =~``}),((#usn8 {_usn3:`6esn` =~01234567 =~0Xa,_usn4:$`5esn` Is Null Is Null}))"), - octest:ct_string("Remove #usn7:_usn3,[`6esn` Starts With $usn2 Starts With 0.0,.e0[7..$`3esn`]].#usn8!,All(usn2 In 1000 Contains 0.e0 Where #usn7 Starts With .e12 Starts With $`7esn`).`4esn` Create _usn3=(($999)),``=(({`8esn`:0X7 In 's_str' In $`1esn`})<-[?:`3esn`|:`4esn` *0xabc{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]}]->(`1esn` :`1esn`)) Detach Delete {`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}[All(@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7)..{_usn3:`1esn` In 999 In $#usn7,@usn5:\"d_str\" Starts With $usn1}][{#usn8:$999 Ends With $`3esn` Ends With `8esn`}..(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`1esn`{_usn4:`3esn` Contains 0Xa}]-(#usn7 :`6esn`:`7esn`)],({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})-[:`4esn`|:`7esn`{`4esn`:Null Contains _usn4}]->(`6esn` {`8esn`:`8esn` In $@usn5}) In None(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn8 Ends With `4esn` Ends With $`4esn`) In Any(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where $123456789[..0x0][..`4esn`])"), - octest:ct_string("Remove None(usn1 In 00 Starts With _usn3 Where 123456789[`4esn`..][Count ( * )..]).#usn8!,All(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0X7[0e0..])._usn4 Return Distinct *,(_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`)[Extract(@usn6 In @usn5 In $`6esn` Where 9e0 =~$`5esn`|`2esn`[$`1esn`..][$_usn3..])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] As `8esn`,[1.e1 =~$_usn4,.12 Contains $`4esn` Contains $`6esn`] Ends With Extract(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $#usn8 In .e12 In 9e1) As `8esn` Order By @usn5 Starts With 12e12 Starts With @usn5 Desc Skip _usn4(usn1[Count ( * )..$usn1],_usn3 Ends With 12e12 Ends With .e0)[All(usn1 In 0x0[..`4esn`] Where $`2esn`[123456789..][00..])..Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``])][[@usn6 In @usn5 In $`6esn` Where $``[_usn4..][`7esn`..]|12.e12 In $0 In Count(*)]..(:usn1)-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)] Merge `4esn`=({`8esn`:0X7 In 's_str' In $`1esn`}) On Match Set usn2+=.e1 Ends With _usn4 Ends With @usn5,@usn5+=_usn3 In .e1 In $12,Extract(`4esn` In `6esn`[1e1..] Where $`7esn` Ends With `1esn` Ends With True).`` =010 In @usn6 On Match Set usn1 =Count ( * ) =~All(_usn4 In usn1 Contains False Contains `` Where _usn4 Starts With 0X7)"), - octest:ct_string("With *,`7esn`[...e1][..\"d_str\"],12e12[0.e0..True][0.12..0.0] As #usn7 Order By 0xabc[12.e12..`1esn`] Ascending,12.e12 In $1000 Ascending,[`6esn` In 0X7 =~`` Where 0.12[Null..]] Is Null Is Null Ascending Limit Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1)[00..] Where 0.e0[..#usn8][..Null] Remove #usn8(Distinct $999 Ends With $`3esn` Ends With `8esn`,@usn5[_usn4..][.e0..]).`8esn`?,@usn5:#usn8 Unwind _usn4[$`4esn`][0X7] As #usn7"), - octest:ct_string("Merge `6esn`=(:_usn3{#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0}) With Distinct $`4esn`[$`2esn`..] As #usn8,#usn8 In $0,Any(`6esn` In 0X7 =~`` Where 0X7[0e0..]) Contains Single(`4esn` In `6esn`['s_str'..][010..] Where @usn6[`3esn`..][$7..]) As #usn7 Skip $@usn5 =~$`` =~$usn2 Limit `8esn` Ends With 999 Ends With 9e0 Merge `5esn`=(usn2 {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[ *0xabc{`1esn`:123.654 In \"d_str\" In $_usn3}]-({`2esn`:$usn2 Is Not Null})"), - octest:ct_string("Remove [`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0 Is Not Null Is Not Null|$`5esn` In `2esn` In .0].``?,None(@usn5 In .12[#usn7][$`8esn`] Where 0X7[.e12..01234567]).`5esn`!,`8esn`:`6esn`:`7esn` With 0Xa Starts With 0.12 Starts With .0 As usn2,[$`8esn` In \"d_str\" In 9e12,9e0 Contains `8esn`,$@usn6 Contains 0 Contains $`2esn`][Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 01 In _usn3 In 12)][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)] As _usn4,$@usn6 Contains 0 Contains $`2esn` As `` Limit 1e1 In $999 In $usn2 Detach Delete Any(#usn7 In 01234567[$`3esn`..] Where 00 In 1e1)[[usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0|0xabc[12.e12..`1esn`]]..][[@usn5 In .12[#usn7][$`8esn`] Where $@usn5 =~$`` =~$usn2]..],0.0[.e12][7],{`4esn`:0X7 =~.0 =~\"d_str\",_usn4:00 Ends With $_usn4 Ends With $`2esn`} Ends With Extract(#usn7 In 01234567[$`3esn`..] Where .12 In $999 In `5esn`) Ends With [$`3esn`[@usn5..$123456789],00,'s_str'[.12..$#usn7][$999..`2esn`]] Union All Delete Count ( * )[.0..][$999..],_usn3[...e1],Single(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where .12 Starts With @usn5 Starts With $#usn8) =~(@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) =~(_usn4 :usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)-[usn2?:`2esn`|usn2*..{@usn5:$1000[01234567],@usn5:0x0[$`3esn`..010][$#usn7..00]}]->(`4esn` {#usn8:`1esn`[0e0..],#usn7:$`6esn`[..0X0123456789ABCDEF]}) Return Distinct 0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str' Limit usn2[$`7esn`..010][00..``] With @usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Limit .12 Is Not Null Is Not Null Union All Match (#usn7 {@usn5:`5esn`[.e1][0Xa],@usn6:Count(*)[`7esn`..$12]}),((:`7esn`{`2esn`:`` Starts With @usn5,usn2:$`2esn` Starts With .e0 Starts With 12.0})) Where $`6esn`[`1esn`..][.e0..]"), - octest:ct_string("Return *,$`1esn`[9e1.._usn4][$999..$`2esn`] As `8esn`,$_usn3 In $#usn8 As #usn7"), - octest:ct_string("Remove [$`5esn` Is Null].`5esn`!,`3esn`:`6esn`:`7esn` Union All Merge #usn8=(((`3esn` {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]})-[ *..7]-(:_usn3{@usn6:$`7esn` Is Null Is Null})-[:`7esn`|`2esn` *12..0xabc]->(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]}))) On Match Set @usn5 =1e1[..#usn8][..'s_str'],`` =`4esn` Is Null,usn2+='s_str'[.12..$#usn7][$999..`2esn`] On Match Set `4esn` =010 In `7esn`,usn2+=0.e0[@usn6][0x0] Unwind 0e0[12][$_usn4] As usn2 Create (`` :@usn6:`7esn`{`2esn`:0.12[0.e0..][`4esn`..]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(_usn3 {`2esn`:9e1[.12..],`2esn`:@usn6[`3esn`..][$7..]})-[usn1?:`2esn`|usn2 *123456789..999]-(usn1 :`7esn`{`1esn`:$@usn6 Contains 07 Contains 0.e0}) Union All Return .e12[.12..][_usn4..] As _usn4 Order By $usn1[1e1.._usn3][$@usn6..$#usn7] Desc Skip Extract(@usn6 In @usn5 In $`6esn` Where $_usn4[`3esn`][0]|_usn3 Is Null Is Null) Is Not Null Limit Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0) Is Null Delete 07 Ends With 07"), - octest:ct_string("Remove Extract(@usn6 In @usn5 In $`6esn` Where False Contains `3esn`).`5esn`?,(`2esn` {`3esn`:$999[12.0..]})-[:usn2|#usn8 *01234567..12{usn2:$`3esn` In $12 In 's_str'}]-(usn1 :_usn3).`5esn` Unwind $#usn8 As _usn3 Unwind usn1 In 1000 In $`5esn` As #usn8"), - octest:ct_string("Return Distinct @usn5 Starts With 12e12 Starts With @usn5,$1000 =~$`7esn`,\"d_str\" Starts With $usn1 As `7esn` Order By $0[..`8esn`] Desc,Count(*) Starts With 1e1 Starts With $123456789 Ascending,12e12[$`5esn`][07] Desc Limit Single(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8)[{_usn3:$0 Ends With $#usn7 Ends With .12}][[12.0[0Xa][00],.0[01][$12]]]"), - octest:ct_string("Return *,{`4esn`:$usn1[0.12..]['s_str'..]} In None(`4esn` In $`8esn` Starts With 1000 Where 0.12 In 01 In $`3esn`) In usn2(True Contains @usn6) As `2esn` Order By (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Asc,.e1[..$``][..0X0123456789ABCDEF] Ascending Limit Extract(`4esn` In `6esn`[1e1..] Where 123456789 =~_usn4 =~$0) Contains (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6) Contains ({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[`7esn`?:#usn8]->(@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0}) Return *,.e1[$_usn4][1e1] As `7esn` Order By 9e0 Ends With $`7esn` Asc Skip 's_str'[12..'s_str']"), - octest:ct_string("Return $`4esn` Contains 0Xa,010 In `7esn` Limit False Contains `3esn` With Filter(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[[1e1[0.0],0 Contains 12e12,$123456789[..0x0][..`4esn`]]] As `3esn`,False[`2esn`..#usn8],00 Is Null Is Null Order By {`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,0.12 In $7 In 0 Desc Skip 9e12[0.0..12.e12] Limit $usn1[.e12..`8esn`][True..$@usn5] Create (usn2 :#usn8{`3esn`:123.654[@usn5]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`}) Union All Optional Match ``=(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12}) Where 123456789[$#usn7..] Remove (:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[`2esn`]-(`6esn` :#usn7)-[_usn4?:`6esn`]-(@usn5 :`8esn`).`7esn`,`7esn`(usn2 Is Null Is Null,`6esn` =~$_usn3).`1esn`! Union All Unwind 999 Contains `7esn` As `7esn`"), - octest:ct_string("With Distinct `` Is Not Null Is Not Null As @usn6,True[Count(*)..][1e1..] Remove Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `7esn` Starts With $usn2 Starts With .e0).`6esn`! Match `8esn`=((@usn6 {_usn3:$_usn4[$`1esn`]})-[`5esn`?:_usn4|:@usn5]->({`5esn`:Count(*)[..`3esn`],usn1:01234567 Ends With 0x0})-[usn2 *..0X7{#usn7:$_usn4[`3esn`][0]}]->({#usn7:Count ( * )[@usn6..0x0]})) Where 's_str'[12..'s_str']"), - octest:ct_string("Remove [usn2 In 1000 Contains 0.e0 Where True[Count(*)..][1e1..]]._usn3,{`7esn`:$`7esn` Ends With 07 Ends With 07,`5esn`:@usn5 Ends With $`3esn` Ends With 12e12}.@usn6,[usn1 In 0x0[..`4esn`] Where $1000 Is Null Is Null|12[usn1][True]].usn2? Match (((`7esn` :``)<-[``?:@usn6]-(`6esn` :`3esn`:`1esn`{`7esn`:7 In 0xabc})-[:usn1|`3esn`*]->(:_usn3{`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`}))) With `3esn` Contains 0Xa As `6esn`,[_usn4 Starts With $@usn6 Starts With #usn7,$@usn5 Contains 01] =~`4esn`(12 Ends With 01 Ends With 1e1) =~Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`]) As ``,[usn1[..@usn5][...e0]][(`1esn` :`8esn`{`7esn`:`5esn`[`1esn`]})<-[`6esn`:`4esn`|:`7esn` *..0x0]->(#usn8 :@usn5)]"), - octest:ct_string("Create ``=((_usn4 )-[#usn7:_usn3|:`4esn` *..0x0{usn2:$#usn7 In 12.0 In 0X0123456789ABCDEF,`6esn`:`7esn`[1e1..07][0x0..Count ( * )]}]->(`6esn` {`2esn`:$`2esn`[..`2esn`],usn1:False[0Xa..$@usn5][$`6esn`..12e12]})) Unwind `3esn` =~$`5esn` =~12 As `7esn` Union All Detach Delete 12.e12[0e0..7],{_usn3:0X7 =~`4esn` =~`8esn`,`2esn`:$`3esn` Starts With $usn1} Is Not Null,`3esn`(`7esn` Starts With $usn2 Starts With .e0,$_usn3 =~`7esn` =~$_usn4)[[$`2esn`[123456789..][00..],Count ( * )[@usn6..0x0]]..][Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0)..] Union All Remove All(`4esn` In `6esn`[1e1..] Where _usn3 Is Null).@usn5!,usn2($`` Is Null Is Null).`6esn` Remove _usn4($`6esn`[$@usn6..],_usn3[.0]).#usn8,{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}._usn4,(`6esn` $`8esn`)-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})<-[?:`6esn`{#usn7:7 In @usn5 In $`4esn`}]-(`4esn` :`6esn`:`7esn`{`8esn`:0X7[..12e12]}).`4esn`! Return Distinct {`5esn`:123.654[@usn5]} Is Not Null Is Not Null,[@usn6 =~01,$`7esn` In $7,00[``..][$`4esn`..]][All(`4esn` In $`8esn` Starts With 1000 Where 9e1 Is Null Is Null)..(_usn4 {_usn3:$`1esn` Is Null,usn1:$`4esn`[$`2esn`..]})<-[#usn8?:_usn4|:@usn5 *..0x0]-(#usn8 :`1esn`{#usn7:1e1[`6esn`..]})] Skip (#usn8 :`5esn`{usn2:.e1 Starts With 0.0 Starts With `6esn`,#usn8:9e12 =~01 =~$`7esn`})<-[`7esn`?:`5esn`|`1esn` *0xabc]->(#usn7 {`6esn`:123456789 Is Null,`1esn`:00 In 12.e12})[Filter(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 0.12 Ends With $usn1 Ends With $@usn5)][`3esn`(Distinct 9e12[_usn3])] Limit Extract(`4esn` In `6esn`[1e1..] Where 123456789 =~_usn4 =~$0) Contains (`3esn` :usn2:@usn6{`4esn`:`7esn` Contains .0 Contains 9e12})<-[?{_usn3:9e1 Starts With _usn3 Starts With `4esn`,usn2:$`3esn` Starts With $usn1}]->(:@usn5{#usn7:1e1[@usn5..]})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(`5esn` :usn2:@usn6) Contains ({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})-[#usn7?:_usn4|:@usn5{``:$usn2 In 9e0 In $7,@usn5:0X7[12]}]->(:`2esn`:`3esn`)<-[`7esn`?:#usn8]->(@usn5 :usn2:@usn6{`7esn`:1000 Contains 0.e0})"), - octest:ct_string("Unwind [$12[01..][1.e1..]][[usn1 In 00 Starts With _usn3 Where 00]..@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12)] As `3esn` Union All Create #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`}))) Unwind 07[..$_usn3] As #usn7 Unwind `3esn`(Distinct _usn4 Ends With 01 Ends With $`1esn`) Starts With [Count(*) In 01 In .0,`` Starts With 12,$_usn4[$`8esn`..][07..]] Starts With Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12 In $0 In Count(*)) As _usn3"), - octest:ct_string("Unwind 123.654[@usn5] As _usn3 Detach Delete 1000 Ends With 1000 Ends With $`4esn`,{#usn8:$`5esn` In False,usn2:$`7esn` In $7}[..Any(@usn6 In @usn5 In $`6esn` Where 010 =~$usn2 =~1e1)],{_usn3:0.12 Is Null Is Null,`1esn`:9e12[0.0..12.e12]} Ends With {`5esn`:`7esn` Starts With $usn2 Starts With .e0,#usn7:$@usn6[_usn3..0.e0]} Union With Distinct `2esn` Starts With $_usn3 Starts With `2esn` Skip [@usn6 In @usn5 In $`6esn` Where False[0Xa..$@usn5][$`6esn`..12e12]][{@usn6:.12 Starts With 0Xa}..(`2esn` {usn1:@usn6[$`7esn`],_usn3:$@usn6[..12e12]})-[`2esn`:@usn5|`8esn` *07..{#usn8:@usn6 Contains _usn4 Contains $`4esn`}]->(usn1 {#usn7:Count ( * )[@usn6..0x0]})-[@usn6?:#usn8 *..7{@usn5:@usn5 Starts With 12e12 Starts With @usn5}]->(`8esn` :@usn6:`7esn`{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})] Limit {`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]} Is Null Is Null Match @usn5=(:`8esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})-[`1esn`:usn2|#usn8 *1000..]-(:`5esn`{`3esn`:0xabc Ends With $#usn7 Ends With #usn8,`6esn`:0e0 =~_usn4}) Remove Any(usn1 In 0x0[..`4esn`] Where $0[$#usn8..01234567])._usn3!,Filter(@usn6 In @usn5 In $`6esn` Where 9e0[$_usn3..0X7][7..$#usn8]).`3esn`!,#usn7(Distinct).`1esn` Union With Distinct @usn6 Starts With `7esn` Starts With Null,$usn1[#usn8..][``..] As `2esn`,`3esn`[$`1esn`..] As usn2 Order By _usn3[0] Asc,``[$`3esn`][$`2esn`] Ascending,{@usn5:0.e0[@usn6][0x0]} Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7) Ascending Skip (@usn6 :`1esn`{#usn8:$`5esn` In False,usn2:$`7esn` In $7})<-[_usn4?:`6esn`]-(`2esn` {`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null}) Is Not Null Is Not Null Limit [@usn6 In @usn5 In $`6esn` Where $usn2 Is Not Null|$`6esn`[..0X0123456789ABCDEF]][`5esn`(Distinct 0X7 In $@usn5 In 9e0,0x0)..] Where `1esn` Contains Count ( * ) Return Extract(`6esn` In 0X7 =~``|9e0 In 01234567) Contains Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) As `5esn` Return Distinct *,.e1 Starts With $`8esn` Skip 0xabc[12.e12..`1esn`] Limit 0.e0[@usn6][0x0]"), - octest:ct_string("With $_usn4[$`1esn`] As `5esn`,(:`5esn`{`8esn`:9e12[_usn3],_usn3:0.0[..12e12][..$0]})<-[usn1 *..0x0]->(usn1 :`6esn`:`7esn`)-[?:usn1|`3esn` *999..{_usn4:$999[12.0..],usn1:0[usn2..]}]->(:usn1{_usn3:0xabc[12.e12..`1esn`],`1esn`:12[usn1][True]})[..[07[$999],@usn6[$`7esn`]]][.._usn4(0X7 In $@usn5 In 9e0)] As `6esn`,All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..] As `5esn` Order By True[0x0][@usn6] Ascending,$`5esn` Contains $@usn6 Desc Skip Single(usn1 In $123456789 Contains usn2 Where Count ( * )[..1e1]) Is Not Null Limit _usn3 In $#usn8 In usn1 Where 's_str'[..0.e0][..`1esn`] With *,.e0[..0X0123456789ABCDEF][...e12] As `6esn` Order By usn2[`3esn`][_usn3] Asc Skip 7[$`4esn`..123456789] Union Return Distinct \"d_str\",0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',$@usn5[01] Order By 01234567 Starts With $_usn4 Desc,0.12 Contains .e1 Ascending,0x0 =~_usn4 Descending Skip [usn2 In 1000 Contains 0.e0 Where $`6esn`[..0X0123456789ABCDEF]] Contains None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]) Contains Extract(`6esn` In 0X7 =~`` Where 0x0[..`4esn`])"), - octest:ct_string("Unwind (_usn3 )<-[usn1]->(#usn7 {`5esn`:0.12 Contains .e1,#usn8:$1000 Is Null Is Null})-[_usn4?:`6esn`]->(`8esn` :`1esn`) =~Single(#usn7 In 01234567[$`3esn`..] Where 0.12 In $`4esn` In `6esn`) =~Extract(@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|$`8esn`[..123456789]) As `2esn` Union Create @usn6=((:``{`5esn`:.e1 In $@usn6 In 999})),`4esn`=((`6esn` {#usn7:_usn4 Starts With 0X7,_usn3:False In $`7esn` In .0})) Detach Delete 0X0123456789ABCDEF Contains 12.e12 Contains 999,0X0123456789ABCDEF In $1000 In $`3esn`,'s_str' Is Not Null Is Not Null Union Merge ((_usn4 {`8esn`:9e1 In 01 In 999})) With Distinct .e12[.12..][_usn4..] As _usn4,{`7esn`:.e0 Contains #usn7 Contains $#usn8}[(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})..None(`6esn` In 0X7 =~`` Where 12.e12['s_str'])][(`5esn` :`7esn`)-[?:`8esn`|:usn1 *..0X7{@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00}]->(@usn5 {`5esn`:True[Count(*)..][1e1..],usn2:1e1[..#usn8][..'s_str']})..({`7esn`:12e12 Ends With 010 Ends With .0})<-[?:`5esn`|`1esn`{_usn4:$999[$1000],`3esn`:1e1 In $#usn8 In 12e12}]-({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})],$999[$_usn4..][$`5esn`..]"), - octest:ct_string("Create ((_usn4 :`7esn`)<-[`6esn`:usn1|`3esn`]->(:`3esn`:`1esn`{_usn4:`1esn`[@usn6..$123456789],`4esn`:$usn2[..12.0]})<-[``?:_usn3|:`4esn`]-(:_usn3{`6esn`:.e12[..0.e0][..$`1esn`],`8esn`:7 In 0xabc})) Union Optional Match (`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`}),(:`1esn`{@usn6:$_usn4[$`4esn`..$#usn7][`6esn`..7],`8esn`:'s_str'['s_str'..$usn2][_usn3.._usn3]})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}) Where Null[01234567][01234567] Create usn1=((#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`6esn`?:usn1|`3esn`{`2esn`:1e1[@usn5..],`3esn`:$`6esn`[`3esn`..0e0]}]->(:`4esn`:#usn8{usn2:123456789[`4esn`..][Count ( * )..],usn1:\"d_str\" Is Null Is Null})) Remove usn1:`1esn` Union With Distinct *,$usn2[12..$`7esn`][$0..$`7esn`],[0Xa[$``..][01234567..]] Contains `3esn`(Distinct _usn3 In .e1 In $12) Contains (`5esn` :`8esn`{`1esn`:Null Is Null Is Null,`4esn`:$#usn8 Is Null Is Null})<-[:@usn5|`8esn`*..]-(:_usn4:usn1{`8esn`:_usn3[...e1],`8esn`:0x0 =~_usn4})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']}) As @usn6 Skip 9e1 Starts With 9e1 Starts With 010 Limit `3esn`(Distinct 0.0[999..])[Any(`6esn` In 0X7 =~`` Where $0 Is Not Null)..[010 =~$usn2 =~1e1,`1esn`[@usn6..$123456789]]] Merge ((({`6esn`:$`4esn`[usn1..$#usn8][12.0..`3esn`]})<-[?:@usn6]-(`` :@usn6:`7esn`{``:@usn5 Starts With 12e12 Starts With @usn5})-[:_usn4|:@usn5]->(`5esn` :#usn7))) On Match Set (`5esn` {@usn5:07[0..`4esn`],usn2:$usn2 Contains 12.e12 Contains 00})<-[?{#usn7:`6esn`[False..0.0][12e12..$usn2]}]-(`4esn` {`4esn`:#usn7[..$1000][..01]})-[`5esn`?:`3esn`|:`4esn`{`1esn`:$usn2 Contains 12.e12 Contains 00}]-(usn1 :`3esn`:`1esn`{`4esn`:#usn7[..$1000][..01]}).`4esn`! =0 Is Not Null,`6esn` =9e12 Ends With 0X0123456789ABCDEF Ends With #usn7,`1esn` =$_usn3[$`4esn`..Null] On Create Set 12.e12.`4esn`? =12e12 Starts With $123456789 Starts With 12.0,(#usn8 :_usn3)-[`8esn`?:`6esn`{#usn7:True =~@usn5 =~$`1esn`,@usn6:False[.e1..Null]}]->(:``{`2esn`:$7,usn1:.12 Contains $`4esn` Contains $`6esn`})-[`6esn`?:@usn6 *999..]->(`2esn` :usn2:@usn6).`3esn`? =All(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..])[..Filter(`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $`3esn` Starts With 01234567 Starts With $1000)][..(#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[?:@usn5|`8esn`]-(usn2 :@usn5{`2esn`:0.12 Contains $12 Contains `8esn`,#usn8:$#usn8 In .e12 In 9e1})<-[?:#usn8{`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}]->(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})] Merge (`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`})-[_usn4{@usn6:`1esn`[...e1],`5esn`:`5esn`[`1esn`]}]->(`7esn` :`8esn`{`4esn`:00 Ends With .12 Ends With `4esn`})-[ *07..]->(usn2 :@usn6:`7esn`) On Create Set #usn8:_usn4:usn1,[0 Is Not Null Is Not Null].usn2! =(:`1esn`{@usn5:123456789 Starts With `2esn` Starts With 9e12})-[#usn7? *999..]-(@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})-[`6esn`:``|:_usn4 *..01]->(`7esn` :`6esn`:`7esn`{_usn4:07 In `5esn` In 12e12})[Extract(#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|`7esn` Starts With $usn2 Starts With .e0)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str')]"), - octest:ct_string("Remove #usn8:_usn3,None(usn1 In 0x0[..`4esn`] Where False[.e1..Null]).``,@usn5:#usn7 Remove Extract(usn1 In 0x0[..`4esn`] Where $`2esn` Contains usn1 Contains `2esn`).`6esn`?,Extract(@usn6 In @usn5 In $`6esn` Where $`1esn` Is Null Is Null|@usn5 Starts With 12e12 Starts With @usn5).`2esn`?,[Count ( * )[Count ( * )..12e12][usn1..1000],12e12[$`5esn`][07],$_usn3[9e1][$_usn4]]._usn4 Union All Merge `1esn`=((`4esn` {_usn3:@usn5 In $`6esn`,@usn6:$usn2[12..$`7esn`][$0..$`7esn`]})<-[`5esn`?:usn1|`3esn` *1000..]-({`4esn`:9e0 Contains `8esn`,_usn3:$0 Ends With $#usn7 Ends With .12})) On Match Set #usn7:``,({#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1})<-[?:@usn5|`8esn` *..0X7]-(:usn1).`4esn` =`6esn` Starts With $`5esn`,[`6esn` In 0X7 =~`` Where 0.12[Null..]]._usn4 =Count ( * )[`3esn`..][`2esn`..] On Match Set `6esn`+=0X7 =~``,{usn1:$usn2 Is Not Null,`4esn`:0xabc[$@usn5]}.`8esn` =`3esn`[..7][..12e12] Create #usn7=(`3esn` :`8esn`{usn1:`2esn`[$`3esn`..],`6esn`:$12[..``][..$7]})-[@usn5?:``|:_usn4]-(`8esn` :#usn8)<-[?:``|:_usn4]-({`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12}) Unwind 123456789 Starts With #usn7 Starts With `6esn` As `7esn` Union Optional Match `8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`}) With (#usn8 {@usn6:$`7esn` Ends With 07 Ends With 07,usn2:`6esn` =~$_usn3})-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :usn2:@usn6)-[`1esn`:`8esn`|:usn1 *0xabc{`6esn`:#usn7[..$1000][..01],_usn4:$`2esn` Contains usn1 Contains `2esn`}]-(@usn5 :#usn8{`1esn`:0xabc Ends With $7 Ends With $`2esn`,_usn4:``})[.._usn4(@usn6[`5esn`..$`3esn`],`8esn`[$``])] Order By [$12[01..][1.e1..]][[usn1 In 00 Starts With _usn3 Where 00]..@usn6(Distinct 0X0123456789ABCDEF[.e0..$`4esn`],$0 Ends With $#usn7 Ends With .12)] Desc,[@usn5 In $#usn8 Is Null Is Null Where 12.e12[@usn5..123.654]|#usn7 Starts With `1esn`][[@usn5 In .12[#usn7][$`8esn`] Where 0.12 In $`4esn` In `6esn`|$`1esn` Starts With @usn6]..][$`1esn`..] Ascending,{#usn8:$`5esn` In False,usn2:$`7esn` In $7} Is Not Null Is Not Null Asc Skip Null[0.e0..0x0]"), - octest:ct_string("Create _usn3=((({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[``?{usn2:@usn5 In 0X0123456789ABCDEF,usn2:9e1 Is Null Is Null}]->(`8esn` :_usn3{``:12.e12['s_str']})-[:usn2|#usn8*..]-(`5esn` :`7esn`))),(_usn4 :`7esn`)<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}) Return *,.12[`1esn`..][$`3esn`..] As usn2 Limit usn2 Starts With @usn6 With 0.12[Count(*)..] Order By .0 Is Null Is Null Ascending,`1esn`(Distinct $@usn5[#usn8..][$`1esn`..],#usn7 Ends With `4esn` Ends With @usn5)[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where $999[12.0..]|usn1[Count ( * )..$usn1]]][{`8esn`:010[@usn5..],#usn8:False Is Not Null Is Not Null}] Asc Skip 0 Contains 12e12"), - octest:ct_string("Remove Extract(`4esn` In $`8esn` Starts With 1000).`2esn` Optional Match #usn7=((`1esn` {#usn8:usn1 Contains $``,``:0xabc[12.e12..`1esn`]})<-[:_usn3|:`4esn`{_usn4:$`3esn` =~$`6esn` =~`8esn`,`5esn`:0X7[0e0..]}]-(:`8esn`)<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"})),@usn5=(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})<-[`2esn` *12..0xabc{`6esn`:$123456789[0.0..],@usn5:999[$`6esn`]}]-(`7esn` {`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) Where @usn5[..True][..0X7] Optional Match `1esn`=((@usn5 {@usn6:$123456789[0X7..12.e12]})<-[:`5esn`|`1esn`]-(#usn8 {@usn5:01 Ends With .e0,`8esn`:$`5esn` Is Not Null})),(`1esn` :#usn8{usn2:9e1 Starts With _usn3 Starts With `4esn`,`3esn`:0Xa Is Null Is Null}) Union All Merge ({`3esn`:$`3esn` =~$`7esn` =~False,`4esn`:12 Ends With 01234567})-[#usn7:`1esn` *07..]->(:`7esn`{``:$`1esn` Starts With @usn6})<-[:#usn7|:_usn4 *0Xa]-(usn1 :_usn3{_usn3:9e1 Starts With _usn3 Starts With `4esn`,``:\"d_str\"}) On Match Set [`4esn` In `6esn`[1e1..] Where $`2esn`[..`2esn`]|`` Contains 12 Contains True].`2esn`? =$@usn6[..$#usn7][..12.e12],None(@usn5 In 0X7 =~.0 =~\"d_str\" Where #usn7 Starts With 0 Starts With 12).`8esn`! =12[..9e0][..999] Union All With Distinct {usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]} =~Single(usn2 In 1000 Contains 0.e0) =~Any(@usn6 In @usn5 In $`6esn` Where $`7esn` Is Not Null) As `3esn`,Filter(usn1 In 00 Starts With _usn3 Where $_usn4[`3esn`][0])[..Extract(`6esn` In 0X7 =~`` Where #usn7 Starts With 0 Starts With 12|0x0 =~_usn4)][..{_usn4:.12 =~.12 =~1e1,#usn7:.e1 Starts With 0.0 Starts With `6esn`}] Order By @usn6(123456789 =~$123456789) In Extract(`4esn` In `6esn`[1e1..]) In {``:True[..'s_str'][..01],usn1:0.12 In $7 In 0} Ascending,$`3esn` =~Null Desc Skip Single(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 00 Ends With .12 Ends With `4esn`) Contains {`7esn`:0e0 Is Null Is Null,usn2:`4esn` =~123456789} Where `3esn`[$`1esn`..]"), - octest:ct_string("Remove [usn1 In 0x0[..`4esn`] Where 0.12 Contains $12 Contains `8esn`|$@usn6[_usn3..0.e0]]._usn4?,Any(@usn5 In 0X7 =~.0 =~\"d_str\" Where \"d_str\" Is Null Is Null).`1esn` Merge `4esn`=((({`8esn`:$@usn5 Contains 01,`2esn`:123.654 Contains #usn8})-[usn2?]-(`3esn` {_usn4:12.e12 Ends With 01 Ends With .e1})<-[:`6esn`]->(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`}))) On Match Set Extract(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where Null[..12e12][..usn1]|\"d_str\" Contains `3esn` Contains 00).#usn7? =12 Is Null Is Null On Create Set [$usn1 In 1000 In $#usn7,$#usn7 In 12.0 In 0X0123456789ABCDEF,9e0 Is Not Null]._usn3 =All(_usn4 In usn1 Contains False Contains `` Where #usn8[$#usn8..])[(usn1 :`7esn`{_usn3:9e0[$_usn3..0X7][7..$#usn8],usn1:False[`2esn`..#usn8]})<-[ *0Xa{#usn7:$`4esn`[9e1..][0..],`4esn`:'s_str' Ends With .e0}]->(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})..],Extract(@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null).`1esn`! =0xabc Starts With _usn3 Union All Return Distinct 9e0 Starts With `6esn`,9e1['s_str'..1e1] As #usn7 Limit `1esn` Contains Count ( * ) Unwind $`1esn` =~$`1esn` =~#usn7 As `4esn` Merge `4esn`=(`3esn` {_usn3:@usn6 Contains _usn4 Contains $`4esn`})<-[`7esn` *..0x0]-(@usn5 :usn1)<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3}) Union All Optional Match (:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}) Remove {`1esn`:$`8esn`[..$``],`6esn`:$`7esn`[$usn1..][0.0..]}.`3esn`!"), - octest:ct_string("Remove (_usn3 :_usn4:usn1)-[`3esn`?:`3esn`|:`4esn` *..01{_usn3:`6esn`[0X7..][0x0..],`6esn`:0xabc Ends With $7 Ends With $`2esn`}]->(usn2 :#usn7)<-[@usn5?:`1esn`]-(#usn7 :`2esn`:`3esn`).usn2,Extract(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 123456789[$#usn7..]|.e12 Contains $12 Contains 12.e12).usn1?,{_usn3:'s_str' =~0.e0}.usn2? Delete [usn1[..$_usn4][..``],0X7[.e12..01234567]] In `3esn`(@usn5[..True][..0X7],$`3esn` =~$`7esn` =~False) Union All Return *,All(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $123456789 Ends With $`6esn`) Is Null As `5esn` Skip 1e1[..False] Limit 12e12[$`5esn`][07] Detach Delete .e1[$_usn4][1e1] Union All With Distinct 0 =~12.e12 =~$``,0.12 Contains .e1 As `6esn`,01 Contains $`7esn` Contains 9e0 Order By Count ( * )[..1e1] Asc,_usn3(Distinct 0.12 In 01 In $`3esn`,1.e1[0X0123456789ABCDEF..][$`5esn`..]) Ends With Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With Filter(usn2 In 1000 Contains 0.e0 Where 12e12 Ends With 010 Ends With .0) Asc,[0X0123456789ABCDEF In 01234567,0x0 Contains _usn4 Contains 123456789] Ascending Skip Extract(#usn8 In $`5esn` Is Null Is Null Where 's_str' Starts With 1000 Starts With #usn8|07)[None(@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where 12[..True][..$`4esn`])..usn2(Distinct $1000[01234567],00 In 0.12 In `5esn`)][`8esn`(00[``..][$`4esn`..],123.654[@usn5])..Extract(@usn5 In $#usn8 Is Null Is Null Where @usn5 Contains $`1esn` Contains 999)] Limit _usn3(0x0[0X7..][usn1..])[..Any(#usn8 In $`5esn` Is Null Is Null Where 999[$`8esn`])][..{#usn7:False[`2esn`..#usn8]}] Create `8esn`=((_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]}))"), - octest:ct_string("With *,123.654[`5esn`] Skip `2esn`(`2esn`[$`3esn`..],$`4esn`[12.0..`5esn`])[..Extract(usn1 In 00 Starts With _usn3 Where `6esn`[1e1..]|_usn3 In .e1 In $12)][..Extract(#usn7 In 01234567[$`3esn`..]|0.0[999..])] Limit $_usn3[..$_usn3][.._usn4] Where False Is Not Null Is Not Null"), - octest:ct_string("With {_usn4:00}[#usn7(00 In 12.e12)][[.12 Ends With `1esn` Ends With $`1esn`,$`5esn`[False]]] As `1esn` Order By 0 Is Not Null Descending Skip 0x0 Where 123456789 Starts With #usn7 Starts With `6esn` Remove `7esn`:`4esn`:#usn8,@usn6:usn2:@usn6 Create (#usn8 {`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]})<-[#usn7{#usn7:False[`2esn`..#usn8]}]->(`5esn` :`2esn`:`3esn`{_usn3:$`2esn`[$123456789..$`1esn`][0Xa..$``],`5esn`:12.e12[@usn5..123.654]})<-[? *0xabc{`7esn`:$`5esn` Contains $@usn6,#usn7:12.e12 Ends With 01 Ends With .e1}]->(`7esn` :usn1{`1esn`:00 Starts With _usn3}),`5esn`=((#usn8 :`4esn`:#usn8)<-[`6esn`?{`7esn`:@usn6 Contains _usn4 Contains $`4esn`}]-(usn1 :`4esn`:#usn8{usn2:$`8esn` In \"d_str\" In 9e12})<-[`6esn`?{`7esn`:.12 Ends With `1esn` Ends With $`1esn`,``:9e0 Starts With `6esn`}]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})) Union All Create ``=(({`5esn`:0e0 =~_usn4})),((({`1esn`:12[..9e0][..999],usn1:0x0 =~$`7esn` =~@usn6})-[#usn8:`3esn`|:`4esn` *0..010]-(`7esn` :usn2:@usn6{@usn5:0xabc[$@usn5]})<-[_usn3]->(_usn4 :`3esn`:`1esn`{`5esn`:\"d_str\"[Count ( * )],_usn3:`6esn`['s_str'..][010..]})))"), - octest:ct_string("With `3esn`(Distinct 123456789 =~$123456789)[..(usn1 :`6esn`:`7esn`)-[`2esn`? *0..010]->(:usn1{`6esn`:7 Contains 9e1,#usn8:`7esn`[...e1][..\"d_str\"]})][..(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})] As `8esn` Order By [@usn5 In $#usn8 Is Null Is Null Where #usn7 Contains $7|`6esn`[1.e1..$#usn7][.e0..True]][..Extract(#usn8 In $`5esn` Is Null Is Null Where #usn8[$#usn8..]|$@usn6[..$usn1])][..(:`4esn`:#usn8{#usn8:07})-[?:#usn7|:_usn4{_usn4:0X7[..12e12],``:.e1 In $@usn6 In 999}]-(@usn5 :`3esn`:`1esn`{`3esn`:$`5esn` Is Not Null,`2esn`:9e1[0.e0..][#usn8..]})-[``:`2esn`|usn2{_usn4:0X0123456789ABCDEF Ends With 0X0123456789ABCDEF Ends With 's_str',`3esn`:'s_str' In \"d_str\" In 123456789}]-(:``{`2esn`:9e0[``][123.654],`1esn`:$_usn3[Null]})] Descending,$123456789 Contains 01 Contains 0.12 Ascending Limit 999 In 9e1 In 7 Remove [@usn5 In .12[#usn7][$`8esn`] Where $_usn4[12e12][`4esn`]]._usn4?,Extract(@usn6 In @usn5 In $`6esn` Where 123456789 =~_usn4 =~$0)._usn3!,[#usn8 In $`5esn` Is Null Is Null Where $123456789 Ends With $`6esn`|$`8esn` =~$usn2].``! Union Remove Single(`4esn` In `6esn`[1e1..] Where `3esn` =~0.0 =~$``).`4esn`?,`1esn`:`4esn`:#usn8 Delete ({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3}),$123456789[$``][010]"), - octest:ct_string("Create ((`6esn` :_usn4:usn1{`6esn`:00 In 12.e12})<-[`7esn`?:`5esn`|`1esn`]->(`6esn` :@usn6:`7esn`{@usn5:True[0x0][@usn6],`5esn`:Null Starts With _usn4 Starts With `6esn`})),(usn1 :`3esn`:`1esn`)-[?:`4esn`|:`7esn` *..0x0]-(:@usn5{@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]}) Union All Delete `2esn`[$`3esn`..],{@usn5:$@usn6[..$usn1],`1esn`:usn2[`3esn`][_usn3]}[..Any(`4esn` In 's_str'[12..'s_str'] Where Null Contains _usn4)][..{`7esn`:True[..'s_str'][..01]}],0.0[Extract(`4esn` In 's_str'[12..'s_str'] Where `` Contains 12 Contains True|$`1esn` Is Null)..Extract(#usn7 In 01234567[$`3esn`..] Where $`3esn` In $12 In 's_str'|_usn3 Ends With 12e12 Ends With .e0)][None(`2esn` In `7esn` Starts With $`` Starts With $#usn7 Where `8esn` In $@usn5)..{@usn6:.12 Starts With 0Xa}] Unwind `3esn` =~$`5esn` =~12 As `7esn` Union Return $`4esn` Contains 0Xa,010 In `7esn` Limit False Contains `3esn` With Filter(`4esn` In `6esn`['s_str'..][010..] Where 9e0 =~$`5esn`)[[1e1[0.0],0 Contains 12e12,$123456789[..0x0][..`4esn`]]] As `3esn`,False[`2esn`..#usn8],00 Is Null Is Null Order By {`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,0.12 In $7 In 0 Desc Skip 9e12[0.0..12.e12] Limit $usn1[.e12..`8esn`][True..$@usn5] Create (usn2 :#usn8{`3esn`:123.654[@usn5]})-[@usn5?:@usn6$_usn3]->(:_usn4:usn1{`1esn`:123456789 Starts With `2esn` Starts With .0,@usn6:12.e12 Contains `5esn`})"), - octest:ct_string("Create (((@usn6 {#usn7:'s_str' In \"d_str\" In 123456789,usn2:07[12][$`6esn`]})<-[?:@usn6{`6esn`:07 Ends With 07,`8esn`:1e1[@usn5..]}]->(:@usn5)<-[#usn8?:`4esn`|:`7esn` *07..]->(`` :#usn7$0))),#usn7=(`1esn` :_usn4:usn1) Union Return Distinct ({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}),@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF As `8esn`,[#usn8 In $`5esn` Is Null Is Null Where 0.e0 Ends With 12 Ends With $7][..{@usn5:12 =~usn1 =~.e12,`2esn`:0X7 =~`4esn` =~`8esn`}] As #usn7 Order By $@usn6[usn2(`3esn`[$`1esn`..])] Asc,12 Ends With 01 Ends With 1e1 Ascending Skip 07[07] Limit 123.654[@usn5] With Distinct Count ( * )[@usn6..0x0],.e0 Is Not Null Is Not Null As `2esn`,usn2 Is Not Null Is Not Null As `2esn` Skip $@usn5 =~$`` =~$usn2 Where `` Starts With 12 Merge ((:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})<-[#usn8?:`6esn` *0..010]-(`` :@usn5)-[`3esn`{#usn7:12e12 Ends With 010 Ends With .0}]->(`4esn` :`7esn`{`7esn`:@usn6 Contains _usn4 Contains $`4esn`})) On Match Set [#usn7 In 01234567[$`3esn`..] Where .e12 Starts With 999 Starts With 0.0|$`7esn` Is Not Null].@usn6! =999[$`6esn`],#usn8+=$@usn6 In usn2 In 123456789,_usn3 =$`4esn`[12.e12..][0.0..]"), - octest:ct_string("Create `4esn`=((#usn8 {usn2:7 Contains 9e1})-[`6esn`? *00..{`8esn`:$`2esn`[123456789..][00..],`7esn`:123.654 Contains #usn8}]->(:_usn3{@usn6:$`7esn` Is Null Is Null}))"), - octest:ct_string("Merge usn1=((`6esn` :`3esn`:`1esn`{_usn3:1e1[.e1..],`1esn`:$#usn8})<-[@usn6? *1000..{#usn7:_usn4 Starts With $@usn6 Starts With #usn7,`4esn`:12 Ends With 01 Ends With 1e1}]-(#usn7 {@usn5:$0[$#usn8..01234567],`1esn`:usn2 Ends With $`5esn` Ends With `2esn`})<-[:`1esn` *01234567..12]-(`7esn` )) With Distinct 0Xa Starts With 0.12 Starts With .0 As usn2 Order By [0Xa In .e1 In Count(*)][..{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]}][..Extract(`4esn` In `6esn`['s_str'..][010..] Where #usn8[$#usn8..])] Desc Limit Extract(_usn4 In usn1 Contains False Contains `` Where $`4esn` Starts With 1e1|Count(*)['s_str'..`1esn`]) =~Extract(`4esn` In $`8esn` Starts With 1000|`7esn`[Null..][@usn5..]) =~(:`4esn`:#usn8)<-[?:_usn3|:`4esn` *010{`8esn`:$``[_usn4..][`7esn`..]}]-(`2esn` ) Return .0 Starts With `2esn` Starts With `6esn` As _usn4,_usn4[$`4esn`..] As `7esn`,\"d_str\"[Count ( * )] As `7esn` Limit 0.e0[123.654] Union All Delete {_usn3:0X7 =~`4esn` =~`8esn`,`2esn`:$`3esn` Starts With $usn1} Is Not Null,.e0[7..$`3esn`] With *,$@usn6 =~$#usn8 =~$#usn7 As `7esn`,#usn7 Ends With `4esn` Ends With @usn5 As `` Order By (`8esn` :usn2:@usn6)<-[#usn7:`3esn`|:`4esn` *00..]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) =~{@usn6:$_usn3[..Count ( * )][..@usn5],@usn5:12e12[Null]} =~Extract(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1) Ascending,{@usn6:0X0123456789ABCDEF[..usn1]}[..`7esn`($`3esn` =~$`6esn` =~`8esn`)][..(`4esn` {`6esn`:$12[..``][..$7]})<-[#usn7]-(_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})] Ascending Skip Count ( * )[..usn1][..12.e12] Where `6esn` =~$_usn3 Remove {`8esn`:Count ( * ) =~Count(*)}.`6esn`,({@usn6:0X0123456789ABCDEF[..usn1]})<-[:``|:_usn4 *0Xa]->(`7esn` :`2esn`:`3esn`)._usn4?,(:`4esn`:#usn8)<-[_usn4:`7esn`|`2esn`]-(`5esn` {`8esn`:0.0[12...12]})<-[#usn7:`3esn`|:`4esn` *00..]-(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]}).`4esn` Union Match `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Remove All(#usn8 In $`5esn` Is Null Is Null Where 01234567 Ends With 12.0 Ends With 0X7).`8esn`! Optional Match `8esn`=(`8esn` {`6esn`:00 In 12.e12})<-[`5esn`:@usn6]-(:``{_usn3:0X0123456789ABCDEF In 01234567})<-[`7esn`?:@usn5|`8esn`{@usn5:$_usn4[$`1esn`],#usn7:$_usn4[$`8esn`..][07..]}]->(`6esn` {@usn6:9e0 Contains `8esn`}) Where 123456789 Starts With `2esn` Starts With .0"), - octest:ct_string("Merge _usn3=((_usn4 {#usn8:@usn5 In $`6esn`,`7esn`:010 =~`6esn`})-[`5esn`? *00..{usn1:07[`6esn`..][`5esn`..],`2esn`:#usn7 Contains .0 Contains .e1}]->(#usn7 :`7esn`{`4esn`:.12 Starts With .12 Starts With `3esn`})-[{`5esn`:.e1[..$``][..0X0123456789ABCDEF]}]->(_usn3 {`5esn`:0.12 Contains .e1})) Optional Match #usn7=(`4esn` :`1esn`{`8esn`:12 Ends With .e12 Ends With $7,`8esn`:0.0[12...12]})<-[`2esn` *12..0xabc{`6esn`:$123456789[0.0..],@usn5:999[$`6esn`]}]-(`7esn` {`8esn`:0X0123456789ABCDEF In $1000 In $`3esn`})-[usn1{`7esn`:``[Count(*)..][@usn5..]}]->(`6esn` :`4esn`:#usn8{`3esn`:$`6esn` Is Null Is Null,_usn4:@usn5 In $`6esn`}) Match `1esn`=((`5esn` {_usn3:$123456789[0.0..],`2esn`:010[@usn5..]})) Union Merge ((@usn5 :_usn4:usn1{`1esn`:07[1e1],`7esn`:12e12[$`5esn`][07]})) On Match Set `6esn`+=7[$`4esn`..123456789],`1esn` =(:`1esn`{`6esn`:$0[..`8esn`],`1esn`:True Starts With $`8esn` Starts With \"d_str\"})<-[ *..01{_usn4:$`7esn` In $7,`1esn`:12.0[..$7][..999]}]-(:_usn4:usn1{usn1:123456789 Starts With `2esn` Starts With .0,@usn5:00 Starts With _usn3})-[usn1?:`2esn`|usn2 *123456789..999]-(`3esn` :usn2:@usn6) Contains [usn2 In 1000 Contains 0.e0 Where #usn7 Ends With 9e1|010 Is Null Is Null] Contains Filter(@usn6 In @usn5 In $`6esn` Where 12[`7esn`...0][0.12..``]),{_usn3:'s_str' =~0.e0}.usn2? =Any(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where `6esn`[False..0.0][12e12..$usn2]) Ends With [`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $usn2[..12.0]|999[``..][Null..]] Ends With Any(`4esn` In `6esn`[1e1..] Where False[`2esn`..#usn8])"), - octest:ct_string("Detach Delete False Ends With $`8esn`,0x0[123456789] Return usn1[..$_usn4][..``] Order By .e1 Starts With $`8esn` Asc Skip (`6esn` :`6esn`:`7esn`{_usn4:\"d_str\"})<-[_usn4?:#usn8 *..0X7{@usn5:07}]-(`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})[(_usn4 :_usn4:usn1)-[@usn5? *999..]-(usn1 :`4esn`:#usn8)..{#usn7:$@usn6 Is Null Is Null}][@usn6(Distinct _usn3 In .e1 In $12,123.654 Starts With usn1 Starts With @usn5)..[usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1]] Detach Delete 0.e0[`6esn`...e0][9e12...e12]"), - octest:ct_string("Return Distinct *,Filter(_usn4 In usn1 Contains False Contains `` Where 0.12 Contains $`2esn` Contains $_usn4) Is Null As #usn8,`8esn`(Distinct False Contains `3esn`,9e12 =~01 =~$`7esn`)[[@usn6[`5esn`..$`3esn`],0e0 Is Not Null Is Not Null]..] Order By {`2esn`:$`2esn`[$123456789..$`1esn`][0Xa..$``]}[({`3esn`:123.654 Starts With usn1 Starts With @usn5,#usn8:0X7[0e0..]})-[? *999..]-({@usn5:`6esn`[1e1..],@usn5:`7esn` Contains .0 Contains 9e12})<-[`6esn` *999..{@usn6:$`7esn` Is Null Is Null}]->(`8esn` :`7esn`)][{@usn5:`` In `6esn`,`1esn`:$`2esn`[$`2esn`..]}] Asc,0.12 In $7 In 0 Desc Skip 0Xa In .e1 In Count(*) Limit $`4esn`[$`6esn`] Optional Match _usn4=(((#usn7 :#usn8{`2esn`:12 =~usn1 =~.e12})-[`8esn`?:#usn7|:_usn4{usn2:7[$`4esn`..123456789]}]->(#usn8 :usn2:@usn6{`5esn`:00 Ends With $_usn4 Ends With $`2esn`,usn2:#usn7 Starts With 0 Starts With 12})-[``? *12..0xabc]->({@usn6:9e0 Contains `8esn`}))),@usn6=((`2esn` :`8esn`{`2esn`:$`8esn` In \"d_str\" In 9e12})-[`5esn`:`8esn`|:usn1{usn1:12e12[Count ( * )..][usn2..],usn2:$123456789 Is Null Is Null}]->(@usn5 :#usn8{@usn5:$@usn5 Contains 01,`2esn`:@usn6[`3esn`..][$7..]})) Union Unwind 07[..010][..12.0] As `3esn` Return Any(`6esn` In 0X7 =~`` Where $`5esn` In `2esn` In $12)[Extract(`4esn` In 's_str'[12..'s_str'] Where .12[9e0][$7]|$`3esn` Starts With $usn1)..[@usn5 In .12[#usn7][$`8esn`] Where $12 Contains 123.654 Contains `8esn`|@usn5 Ends With 1.e1 Ends With 0X0123456789ABCDEF]][{`6esn`:$12[..``][..$7]}..[usn1 In 1000 In $`5esn`]] As usn1,@usn5[_usn4..][.e0..] As usn1 Limit $`1esn` Is Null"), - octest:ct_string("Return Distinct 7[$`4esn`..123456789] As `2esn` Limit 1000 Ends With 1000 Ends With $`4esn` Union All Create #usn8=(:`8esn`{`7esn`:$`3esn`[@usn5..$123456789],`2esn`:False In $`7esn` In .0})-[:#usn7|:_usn4{_usn3:\"d_str\" =~`3esn` =~0Xa}]-(#usn7 {`3esn`:Count(*)[12.e12..],`3esn`:usn2 =~0x0}) Union Remove None(#usn7 In 01234567[$`3esn`..] Where 12[usn1][True]).#usn7?,[@usn6 In #usn8 Ends With `4esn` Ends With $`4esn` Where $`4esn`[..usn1]].@usn5?,[00[01234567][False]].`1esn`?"), - octest:ct_string("Delete Filter(usn2 In 1000 Contains 0.e0 Where $`7esn` Ends With $`2esn` Ends With $usn1)[..(:usn2:@usn6{``:$123456789[..0x0][..`4esn`],usn1:.e0 Contains #usn7 Contains $#usn8})-[? *999..]-(:`4esn`:#usn8{@usn6:$`4esn`[$`2esn`..]})][..Any(@usn5 In .12[#usn7][$`8esn`] Where 0Xa Is Null Is Null)],123.654 Starts With usn1 Starts With @usn5 With Distinct *,`7esn`[Null..][@usn5..],0X0123456789ABCDEF Contains $usn1 Skip Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] Limit False Ends With $`8esn` Where 0 Starts With 12e12 Starts With `4esn` With Distinct 0x0[...e12][..@usn5] As @usn5 Limit `1esn`(Distinct Count(*)[..`3esn`]) Starts With $0 Union All Return Distinct *,({@usn5:$`6esn`[Count(*)..0.e0][0.0..Count ( * )],`2esn`:True[0x0][@usn6]})-[`6esn`?:`4esn`|:`7esn` *0..010{_usn3:$`1esn` Starts With @usn6}]-(`2esn` {#usn8:12.e12[0e0..7]}) Order By [0 Is Null Is Null][..[_usn3 =~00,9e1 Is Null Is Null]] Descending,Single(`4esn` In `6esn`['s_str'..][010..] Where 12.0 Contains 0.e0)[..Any(`4esn` In 's_str'[12..'s_str'] Where Count(*)[`7esn`..$12])][..Extract(@usn5 In .12[#usn7][$`8esn`] Where 01234567 =~usn1)] Ascending,`8esn` In $@usn5 Asc Limit $#usn8 Is Null Match #usn8=(((`8esn` :@usn5)<-[@usn5:#usn7|:_usn4]->(@usn6 {`3esn`:123456789[1e1..0.0],`7esn`:12.0[..$7][..999]})<-[`4esn`:``|:_usn4{`5esn`:0e0 =~_usn4}]-(@usn6 :#usn8{`8esn`:`1esn`[@usn6..$123456789],`1esn`:9e12 =~01 =~$`7esn`})))"), - octest:ct_string("Merge (`7esn` {usn1:01 Ends With .e0,#usn8:0 Ends With $7 Ends With _usn3})<-[{@usn5:$123456789 Ends With .e1,#usn8:0x0 =~_usn4}]-(`3esn` :_usn4:usn1{`5esn`:`3esn`[..7][..12e12],`5esn`:$``[_usn4..][`7esn`..]})-[#usn8?]->(:`4esn`:#usn8{_usn4:'s_str' In \"d_str\" In 123456789,`2esn`:0.12 Ends With $usn1 Ends With $@usn5}) On Create Set Filter(usn1 In 0x0[..`4esn`] Where $#usn7 In .e1 In 01).`8esn`! =`6esn`[..`5esn`] On Create Set `1esn`+=`2esn`[$`3esn`..],`2esn` =$usn2[..12.0],usn1+=usn1[$`3esn`..$999][True..False] Unwind Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] As _usn3 Union All Create ((`5esn` {_usn4:0X7 =~``})<-[`2esn`?:usn2|#usn8{`6esn`:0X7[.e12..01234567],@usn6:`7esn`[...e1][..\"d_str\"]}]->(`5esn` :`8esn`{#usn8:0.12 Contains $`2esn` Contains $_usn4,`2esn`:$`5esn` Starts With _usn3 Starts With @usn5})-[`8esn` *..0x0]-(:`2esn`:`3esn`{usn2:$`5esn` In False}))"), - octest:ct_string("Unwind $@usn5[0.12..][@usn5..] As `2esn` Remove [#usn8 In $`5esn` Is Null Is Null Where 0e0 =~_usn4|$@usn6 =~usn1].usn1,None(@usn5 In .12[#usn7][$`8esn`] Where 123456789 Is Null).`1esn`? Union All Return Distinct *,.e1 Starts With $`8esn` Skip 0xabc[12.e12..`1esn`] Limit 0.e0[@usn6][0x0] Union All With Distinct *,Extract(`4esn` In `6esn`[1e1..] Where $`5esn` Is Null Is Null|12.e12 Ends With 01 Ends With .e1) Ends With $0 Ends With All(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where $`3esn`) As _usn3 Skip 010 Starts With `7esn` Starts With 9e1 Limit 07[12][$`6esn`] Where $_usn4[$`8esn`..][07..] Unwind 9e0[False] As #usn8 Detach Delete .e0 Is Not Null Is Not Null,{usn1:7 =~9e0 =~'s_str',@usn6:$usn1[..$`6esn`][..Null]} =~Single(usn2 In 1000 Contains 0.e0) =~Any(@usn6 In @usn5 In $`6esn` Where $`7esn` Is Not Null)"), - octest:ct_string("Match `2esn`=(`` :usn2:@usn6)<-[?{@usn5:12.e12['s_str'],`1esn`:_usn3 Ends With 12e12 Ends With .e0}]-(`7esn` :`4esn`:#usn8{`2esn`:Count(*)[..`3esn`]}),(:@usn6:`7esn`{_usn3:False[`2esn`..#usn8]})-[`4esn`:`2esn`|usn2{@usn6:0.12[0.e0..][`4esn`..]}]-(_usn3 :``)-[?:usn2|#usn8{`2esn`:@usn5 In 0X0123456789ABCDEF,`1esn`:@usn6[`5esn`..$`3esn`]}]->({`1esn`:0.0[1000..][.e1..]}) Union Detach Delete $`1esn` Ends With $`1esn`,12e12[$`5esn`][07] Return *,.e0[..0X0123456789ABCDEF][...e12] As `6esn` Order By $123456789[$``][010] Desc,`4esn` =~$`3esn` =~$123456789 Ascending,@usn5 Starts With 12e12 Starts With @usn5 Desc Skip [$12 Is Null Is Null,999 Contains Count ( * ) Contains 123.654][Extract(usn2 In 1000 Contains 0.e0 Where 9e12 =~01 =~$`7esn`)..Any(`4esn` In $`8esn` Starts With 1000 Where 01 Ends With .e0)][[Null Contains _usn4,$`7esn` Is Null Is Null]..({_usn3:Count ( * ) =~Count(*),usn2:_usn4[$`4esn`..]})<-[? *..0x0]->(:usn2:@usn6{`6esn`:12[12e12..@usn6],#usn8:`6esn` =~$_usn3})] Limit 7[..12e12][..$`6esn`] Optional Match ((:usn1)-[:@usn5|`8esn` *123456789..999{usn1:9e12 Is Not Null Is Not Null}]-(#usn7 :`5esn`)),`3esn`=(({``:$1000 Is Null Is Null})) Where 010 Is Null Is Null Union All Unwind $7[.12] As @usn6 Detach Delete ({usn1:`4esn` In $12 In `8esn`})-[`4esn`]-(`1esn` {usn1:True[Count(*)..][1e1..],usn1:9e1 Is Null Is Null})<-[?{`5esn`:0x0 Contains $`8esn` Contains `6esn`,#usn8:010 =~$usn2 =~1e1}]->({`6esn`:$`5esn` Is Null,`2esn`:`7esn` Starts With $usn2 Starts With .e0})[[`4esn` In $_usn4[$`4esn`..$#usn7][`6esn`..7] Where 0e0 =~_usn4|0x0 Contains _usn4 Contains 123456789]..[`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where 7 In $`3esn` In #usn7]][usn1($`1esn` Is Null Is Null,$0[0X0123456789ABCDEF..$#usn7])..[usn1 In 00 Starts With _usn3 Where .12[9e0][$7]|07]] Match usn1=(`4esn` :#usn7)-[_usn4?:`6esn`]-(`2esn` :`1esn`{``:9e1 Starts With _usn3 Starts With `4esn`})-[_usn4?:@usn6 *..7]->(`` :@usn6:`7esn`{`4esn`:0X0123456789ABCDEF Is Not Null}) Where $`5esn` In `2esn` In .0"), - octest:ct_string("With 123.654 Is Not Null Is Not Null As `3esn`,01[Null..][`1esn`..] Where Null[..12e12][..usn1] Optional Match `3esn`=(usn1 :`6esn`:`7esn`),`1esn`=(({`4esn`:$_usn3[..Count ( * )][..@usn5],#usn8:_usn3 =~00})<-[`5esn`?:#usn8{#usn7:0.12 Ends With $usn1 Ends With $@usn5}]->({`1esn`:$@usn5 =~$`` =~$usn2})) Union With Distinct *,\"d_str\"[Count ( * )] As `7esn`,0x0[123456789] As @usn6 Order By 0.0 Is Null Is Null Ascending,$usn2[0e0..] Descending,'s_str'[..0.0][..$`4esn`] Ascending Union All With *,0 Is Not Null Order By 07[`6esn`..][`5esn`..] Desc,_usn3[`3esn`][False] Ascending,Extract(usn2 In 1000 Contains 0.e0) Ends With Single(usn1 In 0x0[..`4esn`] Where 12.e12 Contains `5esn`) Ends With Single(usn1 In 00 Starts With _usn3 Where $0[01234567..00][$`2esn`..$@usn6]) Desc Where $#usn7 In .e1 In 01 Remove [0x0 =~$`7esn` =~@usn6,$#usn8 Is Null Is Null,0 Is Not Null Is Not Null].#usn8?,(`5esn` {@usn6:$123456789 Contains usn2,`5esn`:1000[123.654..9e12][1000.._usn3]})<-[_usn3 *0Xa$_usn3]-(`6esn` :`4esn`:#usn8{_usn4:12.e12[...0][..0x0]})-[`3esn`?:``|:_usn4{`6esn`:Null[01234567][01234567],usn2:_usn3 Ends With 0x0 Ends With 01234567}]->(`8esn` :_usn3{`8esn`:$`3esn` In $12 In 's_str'}).usn2?,[$`5esn` Starts With _usn3 Starts With @usn5,$@usn6 =~usn1,0.0[12...12]].#usn7!"), - octest:ct_string("Create (`6esn` :`5esn`{_usn3:$@usn6[..12e12],_usn4:$0[0X0123456789ABCDEF..$#usn7]})<-[`1esn` *..0x0{`5esn`:0[usn2..],`2esn`:1000[0.0][Null]}]-(`3esn` :`4esn`:#usn8) Unwind Count(*)[[@usn5 In 0X7 =~.0 =~\"d_str\" Where 0 Is Null Is Null]..] As _usn3 Create ``=({`7esn`:`6esn` Starts With $@usn6,``:`6esn` =~$_usn3})-[? *12..0xabc]-(:`6esn`:`7esn`{`6esn`:_usn4 Ends With 01 Ends With $`1esn`,`4esn`:$`8esn` In \"d_str\" In 9e12})<-[ *0xabc]-(_usn4 {`1esn`:010[@usn5..]}),(`` :usn1) Union Remove None(_usn4 In usn1 Contains False Contains `` Where $`8esn`[$``..$7][$1000..$`7esn`])._usn3?,Filter(`8esn` In 's_str' Starts With 1000 Starts With #usn8 Where usn1 Starts With $#usn7 Starts With `5esn`).`3esn`? Create #usn8=((`5esn` {`5esn`:$`5esn`[False]})<-[?:usn2|#usn8 *00..]-(`6esn` :`5esn`{`6esn`:False Is Not Null Is Not Null,_usn4:.e0[7..$`3esn`]}))"). + octest:ct_string("With `5esn`[..123.654][...e12] As @usn6,(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) As `2esn`,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As `1esn` Skip $`3esn`[..0X0123456789ABCDEF][..7] Limit 12.0 Starts With .12 Starts With `6esn` Where ``[$`3esn`] Merge ((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})) On Match Set [usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]].`1esn`? =999 Contains 0 Contains $`5esn`"), + octest:ct_string("With .e12 Starts With $7 Starts With .0 As _usn4,[010[`5esn`],usn1[$@usn5]] Starts With All(#usn7 In 9e0[$1000] Where .e1 In 123456789) Starts With (`4esn` :usn2{@usn5:True Contains .e12})<-[:`2esn`|`4esn` *1000..0X0123456789ABCDEF]-(usn2 :``:usn2) As _usn3,.e0 As _usn3 Order By @usn5(Distinct) =~[_usn3[`5esn`..][usn2..],$#usn7 =~`2esn`] =~1.e1 Ascending Skip `2esn`[$@usn6..][Null..] Merge ((:`8esn`{@usn5:usn2 Ends With .e1 Ends With $`5esn`})-[usn2?:`3esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})) On Create Set [#usn7 In 9e1[$`1esn`..] Where 00 Ends With $`1esn` Ends With `7esn`].`2esn` =All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null),``:@usn5,@usn5+=12.e12[_usn4..$1000][$7..$999] Union With [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`) Union Delete 0e0 =~0Xa =~$999 Unwind 9e0 =~Count(*) =~$0 As _usn3"), + octest:ct_string("Remove Extract(`6esn` In $`6esn`[``..][Count(*)..] Where 9e0[Count(*)..0.12][$`1esn`..12.0]|07 In `6esn`).usn1,(@usn5 :`4esn`:`6esn`)-[@usn6*..{`1esn`:$`2esn` Contains Count(*)}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}).`8esn`,{`1esn`:0xabc =~$@usn5}.#usn8 Union All Match `5esn`=(`3esn` :_usn4) Remove [$123456789 Starts With 0.12 Starts With Null].`4esn`!,(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`}).#usn8"), + octest:ct_string("Optional Match `4esn`=((@usn5 {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})) Where 00[False..0e0] Delete None(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1)[..{@usn5:$@usn6 Is Not Null Is Not Null}][..{`3esn`:1e1 In 0.0 In 0X0123456789ABCDEF}] Match (((`4esn` :``:usn2)<-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]-({`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[:_usn4{`8esn`:12.e12 Is Not Null Is Not Null,#usn7:@usn6[Null...0][\"d_str\"..Count(*)]}]-(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False}))),((@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12}))"), + octest:ct_string("With *,{@usn6:$`3esn`[.e1][_usn4]}[`8esn`(Distinct $``[True])..] As #usn8,999[12e12..$_usn4] As usn2 Where 01 Ends With 0Xa Ends With 0X7 Merge ((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[?:`4esn`|@usn5 *0Xa]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})<-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]-(:_usn4{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]})) Match _usn4=(@usn6 :`4esn`:`6esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`2esn`?:`6esn`|:#usn8{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`}]-(_usn3 {_usn3:0.12 Starts With $`8esn` Starts With @usn5}),#usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Union All Optional Match (((usn1 :`8esn`)<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[? *0xabc]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})))"), + octest:ct_string("Delete 0.0 Is Not Null,#usn8 Is Null Optional Match #usn8=(`5esn` :`7esn`)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1)<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}),usn2=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) Where 12.e12[0..0.12][123.654..9e12] Unwind .0[$``..0X7] As usn1"), + octest:ct_string("Create #usn8=((usn1 :@usn6)),`7esn`=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}) Detach Delete usn2 In _usn3,True In (#usn8 :`6esn`:_usn3)<-[`2esn`?:_usn4{#usn8:$12[9e0..$999]}]->({``:.e1 Starts With 12.e12 Starts With `2esn`}),`1esn` Starts With 0X7 Starts With \"d_str\" Return Distinct `1esn`(.0 Starts With `1esn`,01[`3esn`..][Count(*)..]) In [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] As `4esn`,`7esn`[$usn1..]['s_str'..] Union Detach Delete [$`1esn`[``][07],$`4esn`[`6esn`..$12],False[$usn1][0x0]] =~[.e12 Is Null Is Null],`1esn`[0.0..1e1][0x0..7] Unwind Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`2esn` =~9e12) Is Null Is Null As `4esn`"), + octest:ct_string("Merge ((:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})<-[*..{`7esn`:$``[..\"d_str\"][..$#usn8],`7esn`:$`` Contains $`2esn` Contains $usn2}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) With Distinct *,1e1 Is Not Null Is Not Null Where `7esn` Ends With $7 Ends With $@usn5 Remove None(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*)).@usn5,_usn3:_usn3 Union Remove Extract(usn2 In 7[12] Where $_usn3 Is Null|`3esn`[..0X0123456789ABCDEF][..0x0]).#usn8!,Single(`6esn` In $`6esn`[``..][Count(*)..] Where 1.e1 Ends With $_usn4 Ends With #usn7).`3esn`! Detach Delete `4esn`($_usn4 Starts With $1000 Starts With 12)[{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}],$`3esn`[.e1][_usn4],$7[$12..12e12][1.e1..9e1] With $999 In 12 In 1.e1 Order By (`5esn` :`1esn`:_usn4)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})[[.e0 Is Null Is Null,9e1 Contains 12,'s_str' Ends With `7esn` Ends With 010]..] Descending,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} Desc Limit 00 In @usn6 In 0 Where $@usn6 In @usn6 In 1e1"), + octest:ct_string("With Distinct _usn3[`2esn`..0X7][0.e0..$`3esn`] As `7esn` Order By [usn2[12e12..]['s_str'..]] =~Single(`8esn` In 123456789 =~@usn6 Where $`4esn`[`4esn`][Count(*)]) Ascending,`4esn`[\"d_str\"]['s_str'] Ascending,.12 In `8esn` In $#usn8 Asc Skip None(@usn6 In 010[`5esn`] Where 123.654 In $`7esn`)[(`` {`7esn`:$#usn7[..0Xa]})<-[`1esn`?:usn1|`4esn` *00..0Xa]-(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[usn1? *01234567..{@usn5:01[`3esn`..][Count(*)..]}]->(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})..[False Contains 0 Contains $`6esn`,`1esn` Is Not Null Is Not Null]] Limit [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Contains Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|@usn5 Contains #usn8 Contains 12.0) Union All With *,{@usn5:$@usn6 Is Not Null Is Not Null} Starts With [`3esn` In `2esn`[..01][..True] Where 0x0[usn1..usn1]] Starts With Extract(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..]|0X7['s_str'..][01..]) As @usn6,None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] As `4esn` Order By 0x0[..9e0] Asc Skip Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]) =~Extract(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..]) =~Single(_usn4 In 12e12 In 123456789 Where False Is Null) Where _usn3[12.e12..][`5esn`..]"), + octest:ct_string("Match (((@usn6 )<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null}))) Remove {`4esn`:$_usn4 Starts With $1000 Starts With 12,`5esn`:0 Ends With 12.e12 Ends With usn2}.``?,Single(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)._usn4? Union Remove [#usn7 In $999 In 1e1 Where .e12 Starts With $12 Starts With .e12|$usn2[`4esn`..9e12]].`6esn`,`5esn`:``:usn2,(`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})._usn3 Merge #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))) On Create Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] On Match Set Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa).@usn6! =0.e0 Is Not Null Is Not Null,`1esn` =07 In `6esn`"), + octest:ct_string("Return Distinct *,{`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}[[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]]..][(_usn4 {`6esn`:$_usn4 =~$`1esn` =~`2esn`,_usn3:#usn8 Is Null})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[_usn4?{_usn3:.e1[.e1..`1esn`],@usn6:.12 In `8esn` In $#usn8}]->(usn2 :@usn5)..] Union All Return *,01[`8esn`..9e12][.12..0] As @usn6,$`1esn` =~1e1 As `4esn` Order By 9e1 =~$_usn4 =~1.e1 Desc,$@usn5[$12...e12][0X0123456789ABCDEF..$999] Asc,(:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Ascending Skip $1000 Is Not Null With $_usn3[$12] Match usn1=((`6esn` :`5esn`)),#usn8=((:@usn5{`5esn`:`4esn` Starts With 0e0})) Where $usn2[`4esn`..9e12] Union With Distinct 0Xa In #usn7 In 's_str',`4esn` Starts With 0e0 As `7esn` Skip (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`) Where .e0 Optional Match `7esn`=((`4esn` )-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`` :_usn3)-[`4esn`?:`5esn`|:usn2]->(:`4esn`:`6esn`{usn2:$`8esn` Is Not Null Is Not Null})) Where 010 Starts With 0 Starts With 0.0"), + octest:ct_string("Unwind {#usn7:$usn2[0.e0],`6esn`:.e1[..\"d_str\"][..$123456789]}[..Extract(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999|Count ( * ) In 0.12)][..[@usn6 In 010[`5esn`] Where 's_str' Starts With 9e0 Starts With usn2|$`5esn` =~$0 =~``]] As usn1 Unwind {@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0} Contains [`1esn`[usn1][0xabc],`5esn` Contains `7esn`,$``[True]] As usn1 Union All Return .e12[$@usn6..00][01234567.._usn3] Skip @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])] Limit 07 Is Not Null Is Not Null"), + octest:ct_string("Merge @usn5=(({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})) Union All Unwind `7esn` In 010 In usn1 As usn1 Merge `3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) On Match Set @usn6 =999[..`1esn`][..07],`3esn`+=$@usn5[0.0][0X0123456789ABCDEF],`6esn`+=$usn1[1000][.12] On Match Set #usn8+=Count(*)[$@usn5],@usn6 =0 =~1e1,`2esn`+=Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})"), + octest:ct_string("Return Distinct .0[$``..0X7],'s_str' Ends With `7esn` Ends With 010 Limit $_usn3 Is Not Null Merge ({`1esn`:1.e1[`8esn`]})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`) On Create Set All(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True]).`1esn`? =$usn2[`2esn`..$`1esn`],{usn1:#usn8 =~.e0,_usn3:$_usn4 Is Null Is Null}.`1esn` =$`7esn`[.e1][12.0] Delete 12.e12 Ends With $``,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null,{#usn7:usn1 In ``}[None(`3esn` In `2esn`[..01][..True])..Extract(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..])] Union Create #usn8=((usn1 {@usn5:_usn4[$usn1..01234567][123.654..`5esn`],`5esn`:1.e1 =~$_usn4})-[?:_usn4]->(`2esn` :usn2)<-[usn1 *999..{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']}]->({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})) Union All Merge (`2esn` :`1esn`:_usn4)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}) On Match Set `5esn`+=010[..7][..`4esn`],(`2esn` :@usn5)-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}).`4esn`! =$@usn6 Ends With `1esn`,`6esn` =.0[$``..0X7]"), + octest:ct_string("Optional Match `5esn`=(({#usn8:1e1 Is Not Null Is Not Null})<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(usn2 )<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)) Merge ((@usn6 {_usn4:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})) On Match Set `8esn` =Count(*)[9e12..12.0],@usn5+=9e0[Count(*)..0.12][$`1esn`..12.0] Union With 9e1[usn1..0x0][12.e12..12.0] Order By $@usn6[$0..9e12][.e12..Null] Desc,.e0 Is Not Null Is Not Null Desc,usn2[..$usn1][..$#usn8] Asc Skip $7 Ends With Count ( * ) Where 's_str' Starts With 9e0 Starts With usn2 Unwind `` Is Not Null Is Not Null As _usn4 Optional Match (usn2 :``:usn2) Where @usn6 Is Not Null Is Not Null"), + octest:ct_string("Merge #usn7=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))) On Match Set @usn6+=[00[..$`8esn`][..7],`7esn`[$usn1..]['s_str'..]] Is Not Null Is Not Null On Match Set None(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`).`7esn`! =07[..07][..0X7],`4esn`:`1esn`:_usn4 Remove [`5esn` In 0X7 In $#usn7 Where @usn6 Is Not Null Is Not Null|9e1[..123456789]].``?,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7).usn1 Union All With Distinct `4esn` Is Not Null Is Not Null,$`5esn` In `2esn` In `2esn` As usn2,$999[0Xa..][9e1..] As `4esn` Order By 123456789 =~True =~#usn7 Asc,True[..#usn8] Ascending Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Detach Delete [`4esn`[.12][$@usn6],.0[..'s_str'][..01234567],1.e1 =~.12][Any(usn2 In False[$usn1][0x0] Where False Is Null)..],{#usn7:$usn2[0.e0],`6esn`:.e1[..\"d_str\"][..$123456789]}[..Extract(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999|Count ( * ) In 0.12)][..[@usn6 In 010[`5esn`] Where 's_str' Starts With 9e0 Starts With usn2|$`5esn` =~$0 =~``]],Count(*) In #usn8 In \"d_str\" Detach Delete [0.0 Is Not Null,$`4esn`[`8esn`],$123456789[12e12..9e0]] =~.e12,None(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]) Contains [$`2esn` Ends With `6esn`,9e1[..123456789]] Contains [12.0 In 123.654 In _usn4],`1esn`(#usn7[..07])[..[#usn8 In `7esn` Where 9e1 Starts With Count ( * )|`3esn` Starts With 9e0 Starts With usn1]]"), + octest:ct_string("Create _usn4=({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}),`7esn`=((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )) Unwind #usn7 In 0.e0 As usn1 Detach Delete True Contains 's_str' Contains $usn1,$`5esn`[..00] Union Optional Match usn2=((usn1 {_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})),`2esn`=(((_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})-[`4esn`?*..{``:`` =~.12,usn1:123.654 Is Not Null}]-(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->({usn2:@usn6 In .12 In `3esn`,`1esn`:usn2[12e12..]['s_str'..]}))) Where 00 Ends With `` Ends With 12.e12 Remove `5esn`:_usn4"), + octest:ct_string("Match ((({`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[`3esn` *..07{usn2:True Contains 0x0 Contains $_usn3}]-({``:``[$`3esn`],#usn8:$@usn6[00]}))) Where #usn7 =~9e12 With Distinct *,1e1 Is Not Null Is Not Null Where `7esn` Ends With $7 Ends With $@usn5 Union All Merge _usn4=(`1esn` {@usn5:`2esn` Starts With $`4esn`}) On Match Set @usn5+=$0[123.654..0.e0],Any(`8esn` In 123456789 =~@usn6 Where .e1 =~_usn4 =~_usn4)._usn3? =01[..$`8esn`][..9e0],usn1 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) Match _usn4=(((:#usn7:`5esn`{`4esn`:$``[..\"d_str\"][..$#usn8]})<-[`6esn`? *00..0Xa]->(:#usn8:`1esn`$`7esn`)-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]}))) Remove Filter(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null).`7esn`,@usn6:``:usn2,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 07 Is Not Null Is Not Null).`6esn`? Union Merge `3esn`=(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}) On Match Set _usn3+=#usn7[..07],(:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(usn1 :`7esn`).`4esn` =1.e1[$`3esn`][0Xa],All(@usn5 In 's_str'[0..] Where `2esn`[..01][..True]).`2esn`! =`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] On Create Set Filter(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7]).``! =12 Contains 01234567"), + octest:ct_string("Match `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((:#usn7:`5esn`{`3esn`:Null[..0]})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->(`6esn` :#usn7:`5esn`{_usn3:_usn4 Is Null Is Null})) Where $`5esn` =~usn1 Union All With Distinct *,@usn5 Contains #usn8 Contains 12.0 As `6esn`,{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] Skip 0.0 Is Null Is Null Where 07 Ends With 9e12 Ends With `2esn` With 12.e12[..$`6esn`] As `7esn`,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] As ``,1.e1 Contains `6esn` Contains 0.e0 Skip Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])] Where 999 Contains $1000"), + octest:ct_string("With *,None(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With Filter(`5esn` In 0X7 In $#usn7 Where 0x0[0X7]) Ends With Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) As #usn7,@usn5 Contains #usn8 Contains 12.0 Order By 12[..0e0][...e1] Descending Where 0X0123456789ABCDEF Contains 12e12 Contains 12.e12 Unwind usn2[..$usn1][..$#usn8] As `` Return *,'s_str' Ends With `7esn` Ends With 010 Order By #usn7[``] Desc,`7esn` Starts With @usn5 Ascending Skip @usn6 =~999 =~@usn5 Union Remove Filter(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`).#usn7,[usn2 In 7[12] Where 12e12 Contains `2esn`].@usn5! Union All Merge @usn5=((:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})) Detach Delete 12.e12 =~.0 =~usn1"), + octest:ct_string("Detach Delete #usn7 In 0.e0,07,[.e0 Is Not Null Is Not Null,$#usn7 Contains $`7esn` Contains .e12,123.654 Is Not Null] In {`6esn`:0X7['s_str'..][01..],#usn7:12.e12 Is Not Null Is Not Null} In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where `2esn` =~.e12 =~0X0123456789ABCDEF) Unwind Extract(#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null)[All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])..] As `7esn` Return 1e1 Contains 's_str' Contains `3esn` Order By [9e12[9e1]][[_usn3[`2esn`..0X7][0.e0..$`3esn`]]..] Ascending,Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])[[00[12..$`6esn`],$`4esn`['s_str'..]]..] Ascending,9e1[$1000][7] Descending Skip 9e12[_usn4..$`5esn`][_usn4...e1] Limit $0 =~9e1 =~$`2esn` Union Unwind @usn6[123.654..][0x0..] As `2esn` Delete [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null),0x0 In `8esn`"), + octest:ct_string("With Distinct 0.e0['s_str'..][01234567..] As `7esn`,Single(_usn4 In 12e12 In 123456789 Where 0e0 =~7 =~12.0) Starts With Extract(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]|9e12 =~@usn6),[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Skip $`6esn`[1.e1][$_usn3] Limit usn1 Is Not Null"), + octest:ct_string("With {#usn8:1.e1 Is Null Is Null,_usn4:0xabc In 123456789 In 0x0}[All(@usn6 In 010[`5esn`] Where 00[1.e1..])..],`5esn`(0[1e1][$usn1],Null =~`6esn`)[usn2(Distinct)..][Single(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7)..] As `1esn`,12.0 Starts With $`2esn` Starts With .e1 Order By [#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Ascending Skip `1esn`(#usn7[..07])[..[#usn8 In `7esn` Where 9e1 Starts With Count ( * )|`3esn` Starts With 9e0 Starts With usn1]] Limit _usn3 =~`2esn` =~0 Where #usn7[0.e0..]['s_str'..] Merge ((@usn6 :@usn6{_usn4:#usn8 Is Not Null})-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-(`5esn` :#usn8:`1esn`)<-[`1esn`:`8esn` *00..0Xa{#usn8:0X7['s_str'..][01..],``:$usn2 =~1.e1 =~usn1}]->(:_usn3{_usn4:.e1[7..][9e0..]})) On Match Set (:``:usn2{`4esn`:#usn7 Contains $0 Contains $usn2})<-[:`8esn` *0X7..]->(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2})<-[`2esn`? *01..123456789]-(`2esn` :@usn6).`8esn` =`7esn`[1e1] On Create Set `7esn` ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]} Remove Filter(usn2 In 7[12] Where $#usn8[12.e12..`8esn`][12.0..0.0]).``,[`8esn` In 123456789 =~@usn6 Where ``[9e12][$999]].@usn5?,`4esn`:`7esn` Union All Match (:#usn8:`1esn`{usn2:$`7esn`[.e1][12.0],``:$`1esn` Contains 1e1 Contains @usn6}) Unwind usn1[...e12][..1.e1] As #usn8 Union All Merge ((:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})) On Create Set usn1 =[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]][Any(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..])..Single(usn2 In False[$usn1][0x0] Where 9e1 Is Not Null Is Not Null)],`6esn` =12.e12 =~0X0123456789ABCDEF =~1.e1 Detach Delete 9e1[_usn3] Return Distinct $#usn7[..9e0][..123.654] As @usn6 Order By Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null] Desc,None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])[..[_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4]] Desc,None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] Desc Limit `6esn`"), + octest:ct_string("Optional Match ((#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})),usn2=((_usn3 :_usn4)-[`3esn`:`2esn`|`4esn`]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[:@usn6|:`7esn` *01..123456789]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07})) Where Null =~`6esn` With Distinct *,`5esn` Contains `5esn` Contains $_usn3 Limit False Starts With 0X7 Starts With 01234567 Where 9e1[_usn3] With Distinct .0[..'s_str'][..01234567] Order By {_usn4:01234567[Null..$_usn3],usn1:$123456789[12e12..9e0]} Desc,`1esn` Starts With 0X7 Starts With \"d_str\" Descending,9e1[$#usn8][$1000] Asc Skip Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`)[Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``)][Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 1e1 Contains 's_str' Contains `3esn`|$`2esn` Ends With `6esn`)] Limit _usn3 =~9e1 =~12e12 Union Match ({@usn6:0x0[Count(*)..@usn6][Count(*)..0Xa],`7esn`:0.0 =~9e0 =~$0})-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(:_usn3{_usn3:$`3esn`[.e1][_usn4]})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`) Where 9e12 =~@usn6 Create (:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}),`7esn`=((_usn3 :`7esn`)) With Distinct *,`4esn` Ends With 12 Ends With .12 As usn2,`3esn`(`7esn`,0x0 Contains $`6esn` Contains `4esn`) Is Null Is Null As usn1 Order By usn1[..$@usn6][..00] Desc Skip 9e1[$`1esn`..] Where usn1[$@usn5]"), + octest:ct_string("With Distinct 01234567[$`2esn`][0Xa],`4esn`[.12][$@usn6] Order By 0[01234567..][0X0123456789ABCDEF..] Desc Where _usn4 Is Null Is Null With *,(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null As `3esn` Union All Optional Match `5esn`=(((usn1 :`8esn`)<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[? *0xabc]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]}))),`2esn`=(((`7esn` )<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2))) Create @usn5=(:@usn5{#usn7:12e12 In $`5esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})-[?*]-({`8esn`:`5esn` Contains #usn7 Contains 9e12}) Union All Unwind usn2[..$usn1][..$#usn8] As ``"), + octest:ct_string("Merge @usn6=(:usn2{`6esn`:#usn7[$`3esn`..$1000][0.0..`2esn`],``:010 Starts With 0 Starts With 0.0}) On Create Set usn2+=$#usn7 Starts With $`2esn`,`4esn`+={#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Is Not Null,`8esn`+=12.e12 Ends With `` Ends With 0 Unwind $@usn5[0.0][0X0123456789ABCDEF] As usn1 Union All Match `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),`8esn`=((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[``:`5esn`|:usn2{`5esn`:_usn4[0]}]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})) Where 1000[12e12][`5esn`] Union Match ((#usn7 {`6esn`:$`2esn` Contains Count(*)})-[?:_usn4]->(`2esn` :usn2)) Detach Delete (`2esn` :usn1:`3esn`)-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})<-[?:`3esn`]-(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})[({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})],0X7 In $#usn7,Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 999 Contains $1000)[(`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8})][#usn8($1000 Is Not Null,$`5esn`[0X7..010][`7esn`..'s_str'])]"), + octest:ct_string("Return $123456789 Starts With 0.12 Starts With Null As _usn3 Order By #usn7[``] Desc,{`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Ascending,`` Is Null Descending Skip 0X0123456789ABCDEF In $7 Limit All(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0)[(:#usn7:`5esn`)<-[#usn8? *0Xa]-(`5esn` :`5esn`{#usn7:``[$`3esn`]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc})..] With Distinct Count(*) In #usn8 In \"d_str\" As ``,$`4esn` Starts With 0 Starts With `7esn` As usn2 Order By $7 Starts With 12.e12 Starts With $@usn6 Desc,1.e1 Is Null Is Null Descending Skip $`1esn`[``][07] Limit `5esn` Contains 1.e1 Contains .e12 Where 9e1 Contains $999 Detach Delete All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`],usn2 Ends With $`4esn`"), + octest:ct_string("Detach Delete 12.e12 =~.0 =~usn1 Merge ({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) On Match Set _usn3 =Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] Union All Remove [@usn5 Is Not Null]._usn4!,[@usn6 In 010[`5esn`] Where 9e1 Ends With Count(*) Ends With $7|`1esn` Is Not Null Is Not Null].`` Create _usn3=((:``:usn2{`5esn`:1.e1[`8esn`],`1esn`:.e0})-[`3esn`:`2esn`|`4esn`]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`6esn`?:_usn3|:`7esn` *..010]->(:_usn3{_usn4:.e1[7..][9e0..]})),@usn6=(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`}) Union Match (`1esn` {#usn7:$`1esn` Ends With 0X0123456789ABCDEF,`3esn`:.12 Starts With _usn3 Starts With $``}) Where True Starts With Null Return *,True In (#usn8 :`6esn`:_usn3)<-[`2esn`?:_usn4{#usn8:$12[9e0..$999]}]->({``:.e1 Starts With 12.e12 Starts With `2esn`}) As `5esn`,Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null] Skip 12.0 Ends With usn2 Ends With 0 Limit usn2 Ends With .e1 Ends With $`5esn`"), + octest:ct_string("Remove `8esn`:`2esn` With Distinct Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])] As @usn6,$`1esn`[Null][True] As usn2,0X7 In $#usn7 Order By 01 Ends With 0Xa Ends With 0X7 Desc,$12 =~0X7 =~0x0 Ascending Skip `7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] Where 00[01234567][False] With Distinct *,`2esn`[..$_usn3] As _usn4,1e1 Is Null Is Null As `2esn` Order By 0.e0[$`4esn`..`2esn`] Descending,$123456789[12e12..9e0] Asc,$_usn3[_usn4..] Asc Limit @usn5(Distinct 1e1 Is Not Null Is Not Null,`1esn` Starts With 0xabc Starts With $usn2)[..Extract(`3esn` In 9e1 Contains $999 Where usn2[12.e12..]|.12[01][@usn5])] Where 12e12 Is Not Null"), + octest:ct_string("With $usn1,`1esn` Contains $999 Contains 0.0 As @usn6,$`6esn`[0e0..][010..] With *,9e12[9e1] As @usn6 Merge #usn7=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))) On Match Set @usn6+=[00[..$`8esn`][..7],`7esn`[$usn1..]['s_str'..]] Is Not Null Is Not Null On Match Set None(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`).`7esn`! =07[..07][..0X7],`4esn`:`1esn`:_usn4"), + octest:ct_string("Detach Delete 01234567[\"d_str\"..`4esn`],9e0 Ends With $#usn8 Union Unwind @usn5[$`6esn`..][$999..] As @usn5 Unwind 0x0[..9e0] As #usn8 Union Remove [#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]|00 In @usn6 In 0].`8esn`,All(@usn5 In 9e0 Ends With $#usn8 Where _usn4[`7esn`]).`8esn`"), + octest:ct_string("Detach Delete usn2 =~usn1 =~Count ( * ),010 Is Null Is Null Match #usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Where 00 Contains Count ( * ) Contains 0x0 Union Unwind (:`2esn`)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})-[@usn6? *0X0123456789ABCDEF..{``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6}]-(`5esn` :@usn5) Is Null Is Null As `4esn` Union All Detach Delete (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)]"), + octest:ct_string("Create #usn8=((`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})) Remove [_usn3 In $`8esn` In @usn6,.e12 Ends With 0Xa Ends With 0xabc,.e1[12.0..]].#usn8,{_usn4:`5esn` Contains #usn7 Contains 9e12}.`1esn`! Union All Match ((:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) Remove Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5,{`3esn`:9e1 Ends With Count(*) Ends With $7}._usn4! Detach Delete {usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}[[@usn5 In 9e0 Ends With $#usn8 Where 00 Contains Count ( * ) Contains 0x0]] Union Create #usn7=((`7esn` :`1esn`:_usn4{@usn5:0x0[usn1..usn1],`6esn`:`4esn`[$_usn3..$`7esn`]})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->({`3esn`:`5esn` Contains $`5esn` Contains 0X7})-[`6esn` *00..0Xa{usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}]->(:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})) Create _usn4=({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}) Unwind None(@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn2..][$123456789..]) =~{`2esn`:7[12],usn1:.12[0X7..][12e12..]} =~Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)|True[0xabc..01234567][$`8esn`..$@usn6]) As `6esn`"), + octest:ct_string("Match `3esn`=((({`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]})<-[ *00..0Xa]->(#usn7 :usn1:`3esn`)<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]}))),`6esn`=(((:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({#usn8:False Starts With 0X7 Starts With 01234567})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5))) Union Return Distinct Count ( * ) In True In @usn5 Skip 01234567[\"d_str\"..`4esn`] Limit 123.654 In $`6esn` Union All Optional Match _usn4=({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}) Where 0x0[@usn6..][01..]"), + octest:ct_string("Match (#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[?:`7esn`|:`2esn`]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]}) Where _usn4[@usn6..][$0..] Remove [$`4esn`[`4esn`][Count(*)],010[..7][..`4esn`],12.0 Starts With $`2esn` Starts With .e1].`6esn`!,[$@usn6[.0..][0e0..]].`8esn`? Merge (((`3esn` :`1esn`:_usn4)-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[`8esn`:#usn7|@usn5 *00..0Xa]-(_usn3 {usn1:0x0 Starts With $`6esn`}))) On Match Set All(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True]).`1esn`? =$usn2[`2esn`..$`1esn`],{usn1:#usn8 =~.e0,_usn3:$_usn4 Is Null Is Null}.`1esn` =$`7esn`[.e1][12.0] On Create Set ``+=$``[7],[@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1|$`4esn` Contains .e0 Contains 0Xa].`` =$`7esn`[123456789..$1000][Count ( * )..$7] Union All Unwind $#usn8[@usn6..] As usn2 Merge ((`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})) On Match Set `1esn` =All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null With 0Xa In #usn7 In 's_str',`4esn` Starts With 0e0 As `7esn` Skip $1000 Is Not Null Limit 0X7['s_str'..][01..] Union All Create `1esn`=(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2}),usn1=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) Optional Match `6esn`=((`6esn` :#usn8:`1esn`{`6esn`:usn1[..$@usn6][..00]})-[@usn5:_usn4 *0x0..]-(_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']}))"), + octest:ct_string("With *,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null Where $`5esn`[0X7..010][`7esn`..'s_str'] Return Distinct `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] As `3esn`,usn1 Ends With 0.0 Limit 7 Ends With .12"), + octest:ct_string("Return 0.0 Contains @usn5 As #usn8,{`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`}[Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..])] Skip Extract(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1|``[$`3esn`])[(:`6esn`:_usn3$usn2)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)..All(_usn3 In _usn3 Contains _usn4 Contains $@usn5)] Limit $_usn3 Is Null Create (:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]}) Match ``=(:_usn3{`7esn`:$999 Ends With .e0})<-[`8esn`?:`2esn`|`4esn`{usn2:#usn8[`6esn`..][$``..]}]-(@usn6 {`6esn`:$`5esn` =~usn1,`5esn`:$`` Starts With $1000 Starts With @usn6})-[?{_usn3:010[`5esn`],_usn4:#usn8 =~.e0}]-(#usn8 :`3esn`{`5esn`:$@usn6 Ends With `1esn`}),`3esn`=((`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`}))"), + octest:ct_string("With 's_str' Order By $12[9e0..$999] Asc,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip #usn8[`8esn`..] Limit .12 In `8esn` In $#usn8 Where 12.e12 Contains #usn7 Contains $_usn4 Detach Delete 9e0[Count(*)..0.12][$`1esn`..12.0] Return *,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Is Not Null As `3esn`,$12 Starts With $0 Starts With $`8esn` As `3esn` Limit {_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null Union All Delete $`1esn` Contains 1e1 Contains @usn6,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null,`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] Union All Detach Delete $#usn8 Ends With `3esn` Ends With $`` Create (_usn3 :`5esn`{#usn8:0xabc In 010 In #usn7}),((`2esn` :_usn3)-[? *0xabc{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0}))"), + octest:ct_string("Delete $0[0Xa..$123456789],[usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Union With Distinct Count ( * ) In True In @usn5 As `2esn`,$_usn3[$12] Order By $`4esn` Contains .e0 Contains 0Xa Asc,123.654[$0..0X7][Null..#usn8] Desc,07[..07][..0X7] Descending Skip $1000 Ends With `8esn` Ends With `2esn` Limit All(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]) Is Not Null Is Not Null Where $123456789[...12][..@usn6] Unwind #usn8(@usn6[999..$_usn3][0.12..$@usn5])[..`1esn`(Distinct `5esn`[..123.654][...e12],01 Contains usn2 Contains 0X0123456789ABCDEF)] As _usn3 Create (((@usn6 )<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})))"), + octest:ct_string("Merge (`2esn` :usn2)<-[:`2esn`|`4esn` *0X0123456789ABCDEF..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(:``:usn2{`4esn`:#usn7 Contains $0 Contains $usn2}) Union Unwind 0.12[$0..$usn2] As `4esn`"), + octest:ct_string("Create ((({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:#usn7|@usn5*..]-(`3esn` :usn2{`6esn`:#usn8 Is Null})<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))),`8esn`=(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`)-[?:usn2{#usn7:0 =~1.e1 =~$#usn7}]->(`8esn` $12)"), + octest:ct_string("Return `1esn` Contains $999 Contains 0.0 As @usn6 Return $7 Ends With Count ( * ),`6esn` =~Null As `4esn` Skip 1e1[_usn3] Limit [`2esn` Is Null] Is Null Is Null"), + octest:ct_string("With (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Order By usn1 Ends With 9e0 Ends With 9e0 Descending,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Descending Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Remove [0.e0[1000.._usn4][.e1..usn1],$`1esn` =~999,07[_usn3..][`6esn`..]].usn1!,usn2:`4esn`:`6esn`,Extract(usn2 In False[$usn1][0x0] Where $`7esn`|07 Is Null).#usn7! Delete $`6esn` Is Not Null Is Not Null,$`8esn` Is Not Null Is Not Null Union With (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Order By usn1 Ends With 9e0 Ends With 9e0 Descending,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Descending Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Remove [0.e0[1000.._usn4][.e1..usn1],$`1esn` =~999,07[_usn3..][`6esn`..]].usn1!,usn2:`4esn`:`6esn`,Extract(usn2 In False[$usn1][0x0] Where $`7esn`|07 Is Null).#usn7! Delete $`6esn` Is Not Null Is Not Null,$`8esn` Is Not Null Is Not Null Union All Return Distinct $usn2 =~0.e0 =~@usn6,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As _usn3,0X7[`2esn`..] As `5esn` Skip `1esn` Contains $999 Contains 0.0 Limit ``[..False][..`3esn`] With *,`` =~.12 As #usn7 Skip usn2 =~7 Limit 0x0 In 0.e0 In #usn8 Where `2esn`[..01][..True] With Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Order By @usn5[0..] Ascending,$@usn5 In $`6esn` In 12e12 Desc,#usn7 In 0.e0 Desc Skip {`8esn`:$_usn4 Starts With 12.e12} Is Null Is Null Limit 999 Contains $1000 Where 999 In #usn8 In $``"), + octest:ct_string("Remove Any(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0).`5esn`"), + octest:ct_string("Return 1e1 Contains 's_str' Contains `3esn` Order By [9e12[9e1]][[_usn3[`2esn`..0X7][0.e0..$`3esn`]]..] Ascending,Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])[[00[12..$`6esn`],$`4esn`['s_str'..]]..] Ascending,9e1[$1000][7] Descending Skip 9e12[_usn4..$`5esn`][_usn4...e1] Limit $0 =~9e1 =~$`2esn` Union Unwind #usn8 Is Null Is Null As `6esn` Union All Merge ((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})) On Match Set [usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]].`1esn`? =999 Contains 0 Contains $`5esn`"), + octest:ct_string("Remove `2esn`(Distinct)._usn3? Union With 0x0[..9e0],Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By 1.e1[12..][$`4esn`..] Asc,Null[..010][..1000] Descending,Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] Descending Limit 1.e1[12..][$`4esn`..] Where 07[$`2esn`..9e12][$`4esn`..9e12]"), + octest:ct_string("Create (`3esn` {usn2:$usn2[`4esn`..9e12]}),`4esn`=(usn1 :`7esn`) Detach Delete $usn2[0.e0] Create (:usn2)<-[? *01..123456789{`8esn`:usn2 =~7,@usn5:`6esn` Ends With _usn4 Ends With False}]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`4esn`:usn2]->(`3esn` :_usn4),`8esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Union All Create ((#usn7 {`1esn`:$`4esn` Is Null Is Null})<-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(`6esn` :`8esn`)) Delete Count(*) Starts With usn2 Starts With `7esn`,$1000 Starts With $`7esn`"), + octest:ct_string("Remove [.e0 Starts With $@usn6 Starts With $7,12.0 In 123.654 In _usn4,$`5esn` In _usn3 In 0.0].`5esn`?,All(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1).`5esn`!,@usn5:_usn4 Union Optional Match #usn8=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}),`2esn`=(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Detach Delete `2esn` Starts With $`7esn` Match `8esn`=({`6esn`:usn1[..$@usn6][..00]}) Where 0Xa[..Count ( * )][..$123456789]"), + octest:ct_string("Return *,'s_str' Ends With `7esn` Ends With 010 Order By #usn7[``] Desc,`7esn` Starts With @usn5 Ascending Skip @usn6 =~999 =~@usn5 With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Where 12.e12 Ends With $`` Unwind $`5esn`[$`3esn`..] As #usn8 Union Merge `6esn`=(((_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})-[``?:_usn4]-(_usn4 :_usn4))) On Match Set Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]|$``[..\"d_str\"][..$#usn8]).@usn6 =[$usn1[`2esn`..][$`2esn`..]][(`3esn` :usn2)-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})..`2esn`(Distinct $@usn6 Is Not Null Is Not Null,Count ( * ) Ends With $123456789)],None(#usn8 In `7esn` Where ``[7.._usn3]).@usn6? =`6esn`,Any(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])._usn4! =`` Is Null On Match Set `4esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1 =(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Create (((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))),#usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Create _usn3=((:``:usn2{`5esn`:1.e1[`8esn`],`1esn`:.e0})-[`3esn`:`2esn`|`4esn`]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`6esn`?:_usn3|:`7esn` *..010]->(:_usn3{_usn4:.e1[7..][9e0..]})),@usn6=(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`}) Union Remove Extract(_usn4 In 12e12 In 123456789 Where .e1 Starts With 12.e12 Starts With `2esn`|$@usn5 Is Null Is Null).@usn5!,Extract(@usn6 In 010[`5esn`] Where $0[0Xa..$123456789]|#usn7[0.e0..]['s_str'..]).`8esn`?,(:#usn8:`1esn`$`7esn`)-[?:@usn6|:`7esn` *0X0123456789ABCDEF..{_usn4:0x0[12e12..$`7esn`]}]->({@usn5:Count(*) Is Not Null Is Not Null}).`5esn`?"), + octest:ct_string("Match `3esn`=(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0}),usn1=(({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) Where \"d_str\"[True..]"), + octest:ct_string("Return $`4esn`[`4esn`][Count(*)] As `8esn` Skip usn1 Starts With $_usn3 Return 123456789 =~$999 Order By $7[01..$123456789][#usn7..12.0] Descending,.12[..usn2][..12e12] Descending Unwind (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]} As `5esn`"), + octest:ct_string("Delete [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] In [12e12 In 123456789,`1esn`] In All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),$999 Is Null Is Null Union Detach Delete $usn2[`2esn`..],`8esn`(Distinct #usn8 Is Not Null Is Not Null,`2esn` In 9e0 In 7) Starts With None(usn2 In 7[12] Where 123456789 =~12 =~'s_str') Match #usn7=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2),(((:_usn4{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})<-[`2esn`? *01..123456789]-(`2esn` :@usn6))) Where 999[123.654..$usn2][Count ( * )..0x0] Merge (((@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`})<-[`3esn` *7..]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[? *01..123456789]-(usn1 :_usn4{`4esn`:`7esn` Is Null}))) On Match Set usn1(True Contains 's_str' Contains $usn1,.e0 Is Not Null Is Not Null).@usn5! ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]}"), + octest:ct_string("Create (:@usn5{@usn5:$12[9e0..$999]})-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]->(:@usn5{#usn7:12e12 In $`5esn`})<-[:`8esn` *0X7..]->(:`3esn`{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]}) With Distinct $usn2,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Order By 's_str' Contains 12.e12 Contains $`4esn` Descending,.e12 Ends With 0Xa Ends With 0xabc Descending Skip #usn7 =~9e12"), + octest:ct_string("Return `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By $1000[$@usn6][$_usn4] Desc"), + octest:ct_string("Return *,$`8esn`[999] As @usn5,00 Ends With `` Ends With 12.e12 Skip All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] Merge `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] On Match Set (`3esn` {usn2:$usn2[`4esn`..9e12]})<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1).#usn7! =_usn4 Starts With `` Starts With 1000,Extract(`3esn` In `2esn`[..01][..True] Where 0X7[..$`8esn`]|$#usn7 Starts With 01234567 Starts With $0).`5esn`! =@usn6(Count ( * ) In True In @usn5)[None(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)]"), + octest:ct_string("Return *,`2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Order By $`2esn` Starts With 0.12 Starts With $12 Ascending,07 In `6esn` Desc,12[..0e0][...e1] Desc Skip #usn8[`6esn`..][$``..] Limit `3esn`[..0X0123456789ABCDEF][..0x0] Merge (((:`7esn`{_usn3:@usn5[0.0..0X7]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]}))) On Match Set @usn5+=$0[123.654..0.e0],Any(`8esn` In 123456789 =~@usn6 Where .e1 =~_usn4 =~_usn4)._usn3? =01[..$`8esn`][..9e0],usn1 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) On Create Set [#usn7 In 9e1[$`1esn`..] Where 00 Ends With $`1esn` Ends With `7esn`].`2esn` =All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null),``:@usn5,@usn5+=12.e12[_usn4..$1000][$7..$999] Remove `3esn`(Distinct 123.654 Starts With 0X7 Starts With $`4esn`).``!,Any(_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1).`2esn`,Filter(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]).@usn5? Union Remove {#usn8:`1esn`[usn1][0xabc],_usn3:$`6esn`[1.e1][$_usn3]}.#usn7?,[123456789 Contains 0.0 Contains $@usn6,_usn3 Contains _usn4 Contains $@usn5].`8esn`? Return _usn4(Distinct usn2[07..][.0..]) Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]|$`2esn` Starts With `4esn` Starts With $usn1) Ends With Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2),usn1[..$@usn6][..00] As #usn7,(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})[..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})] As `7esn` Order By 0X7[..$`8esn`] Desc,$123456789[12e12..9e0] Descending Remove [@usn6 In False Contains 0 Contains $`6esn` Where 0.0 =~9e0 =~$0|.e0[01234567..$`8esn`]].@usn6?,({`4esn`:.e1[..$`3esn`][..01]})<-[`1esn`?:`8esn` *7..]-(:``:usn2{``:True[$_usn3..]}).`6esn`,All(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7).`6esn`?"), + octest:ct_string("Return Distinct 0[$#usn8..][0x0..]"), + octest:ct_string("Create (((`4esn` :``:usn2)<-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]-({`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[:_usn4{`8esn`:12.e12 Is Not Null Is Not Null,#usn7:@usn6[Null...0][\"d_str\"..Count(*)]}]-(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False}))),((@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})) Union All Remove {`5esn`:1.e1[`8esn`],`1esn`:.e0}.`1esn`,{`6esn`:12.e12 Is Not Null Is Not Null,`1esn`:#usn7[0.12..]}.`3esn`?,`6esn`(`1esn`[`3esn`..],01[..01234567][..$_usn3]).`1esn`? Unwind None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]) Ends With [_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4|0x0[0X7]] As usn1 Remove [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`8esn`[123456789..][$@usn5..]|#usn8 Is Not Null Is Not Null].#usn7 Union Detach Delete #usn7[0.e0..]['s_str'..],$0 Starts With @usn5 Create ((:`5esn`{`8esn`:$`1esn` Starts With Count(*),_usn3:usn1[...e12][..1.e1]}))"), + octest:ct_string("Merge ((:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[`2esn`{``:Null[..010][..1000]}]-(`` :usn1:`3esn`)-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})) On Match Set `1esn` =Filter(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12])[..Extract(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])][..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]],#usn8(Distinct 12.0[$1000..][#usn7..],0xabc In Null).`2esn` =0.e0 Starts With usn1 On Match Set `2esn` =[$#usn7 Ends With 's_str' Ends With 0X7] Starts With (usn1 :@usn6)<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}) Starts With [`5esn` In `7esn`[$usn2..][$123456789..] Where $`1esn` Starts With Count(*)]"), + octest:ct_string("With *,9e0[..123456789][..$`3esn`] As #usn7 Unwind [$`4esn`[0..][999..],$usn2 Is Not Null Is Not Null,$`5esn` In _usn3 In 0.0] Ends With [#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|.e1 In 0] Ends With None(#usn7 In $999 In 1e1 Where $`4esn`[`4esn`][Count(*)]) As #usn8 Union All Create ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`))"), + octest:ct_string("With @usn5[0..] As `6esn`,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `6esn`,_usn4[.12..$usn2][$_usn3..123.654] As `` Skip Single(#usn7 In $999 In 1e1 Where $`4esn`[`4esn`][Count(*)]) Contains None(#usn8 In `7esn` Where 12.0 Starts With $`2esn` Starts With .e1) Contains [.0 Ends With Count ( * ),0e0 Starts With 999 Starts With `2esn`,$@usn6 =~#usn7 =~True] Limit Filter(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) =~{#usn7:1000[12e12][`5esn`]} Where 9e12[..`3esn`][..0X0123456789ABCDEF] Union Optional Match ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)) Where 010 Starts With 0 Starts With 0.0 With _usn4 Contains $_usn3 Contains .e1,$`4esn`['s_str'..] As `` Limit .e12[..999][..@usn5] Where .12 In `8esn` In $#usn8 Return 0x0[12e12..$`7esn`] As #usn7 Order By .e12[`2esn`..010] Desc,0xabc In 010 In #usn7 Ascending Skip $999 In 1e1 Union Create _usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Remove {#usn8:`1esn`[usn1][0xabc],_usn3:$`6esn`[1.e1][$_usn3]}.`3esn`,{usn1:@usn6[9e12]}.`4esn`! Return 12[$`5esn`..][False..] As `4esn`,0e0 Ends With 07 Ends With $`8esn` As `1esn` Limit All(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`)[Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null)..][Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..])..]"), + octest:ct_string("Unwind Count ( * ) Ends With `6esn` Ends With 's_str' As _usn3 Create #usn8=(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`6esn` :`1esn`:_usn4{@usn5:07 Ends With 9e12 Ends With `2esn`}) With 0.e0['s_str'..][01234567..] As `1esn`,.e12 Starts With $7 Starts With .0 As _usn4,None(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With Filter(`5esn` In 0X7 In $#usn7 Where 0x0[0X7]) Ends With Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) As #usn7 Skip Single(#usn8 In `7esn` Where 12.0 Starts With $`2esn` Starts With .e1) Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]] Ends With {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01} Union Merge ((`2esn` :@usn5)-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})) Unwind None(@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn2..][$123456789..]) =~{`2esn`:7[12],usn1:.12[0X7..][12e12..]} =~Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)|True[0xabc..01234567][$`8esn`..$@usn6]) As `6esn`"), + octest:ct_string("Create `6esn`=(((`7esn` :`2esn`{@usn6:$0[123.654..0.e0]})-[_usn3 *..07{@usn6:$`2esn`[..$`3esn`][..12e12]}]->(`1esn` {#usn7:$`1esn` Ends With 0X0123456789ABCDEF,`3esn`:.12 Starts With _usn3 Starts With $``})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`}))),``=(_usn3 :`4esn`:`6esn`)-[?:@usn6|:`7esn`]-(:#usn8:`1esn`)-[_usn3?]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Optional Match @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) Where Count ( * )[@usn6] Create ((:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[`2esn`{``:Null[..010][..1000]}]-(`` :usn1:`3esn`)-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})),((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null}))"), + octest:ct_string("Remove {`6esn`:$@usn5 Contains 's_str' Contains \"d_str\",`4esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}.`1esn`! Remove `2esn`(.12[123.654..]).`4esn` Merge `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2))"), + octest:ct_string("Create _usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Remove {#usn8:`1esn`[usn1][0xabc],_usn3:$`6esn`[1.e1][$_usn3]}.`3esn`,{usn1:@usn6[9e12]}.`4esn`! Return 12[$`5esn`..][False..] As `4esn`,0e0 Ends With 07 Ends With $`8esn` As `1esn` Limit All(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`)[Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null)..][Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..])..] Union All Remove Extract(`3esn` In 9e1 Contains $999 Where usn1[False..`5esn`][$1000..$12]|True Starts With Null).`4esn`! Union With `5esn`[..123.654][...e12] As @usn6,(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) As `2esn`,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As `1esn` Skip $`3esn`[..0X0123456789ABCDEF][..7] Limit 12.0 Starts With .12 Starts With `6esn` Where ``[$`3esn`] Merge ((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})) On Match Set [usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]].`1esn`? =999 Contains 0 Contains $`5esn`"), + octest:ct_string("Create (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}),`6esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) With Distinct $#usn8 Ends With `` Ends With 999 As `5esn`,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]) Is Not Null Is Not Null As _usn3 Order By _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..] Desc,{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Is Not Null Desc,9e0 Ends With $#usn8 Desc Limit 12.0 Starts With $`2esn` Starts With .e1 Where 9e1 Ends With Count(*) Ends With $7"), + octest:ct_string("Remove None(@usn5 In 's_str'[0..] Where usn2 Ends With .e1 Ends With $`5esn`).`7esn`?,count(Distinct 00[$usn1..],$`2esn` Ends With `6esn`).`4esn`? Remove All(#usn8 In `7esn`).`1esn` Union Delete $#usn7[..0Xa],01 In $@usn6 With `5esn`[..123.654][...e12] As @usn6,(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) As `2esn`,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As `1esn` Order By None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0) Descending,@usn5[$`7esn`..`5esn`] Ascending,.0 Contains .e12 Contains 0 Asc Skip usn1 Limit `6esn`[$`8esn`][9e1] Where False Starts With 0X7 Starts With 01234567 Union All Optional Match `1esn`=(_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`}),`5esn`=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']}) Where 07 In `6esn` Merge `7esn`=(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})"), + octest:ct_string("With *,All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],12 In $usn1 In 7 As `8esn` Skip None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1) Limit $@usn5 Starts With .e1 Where usn1 Is Null Is Null Unwind [$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) As #usn8 Union All Return Distinct .e12 Starts With $7 Starts With .0,[$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) As #usn7,01 Contains usn2 Contains 0X0123456789ABCDEF As `8esn` Order By 0Xa =~False =~@usn5 Descending,12.0 In 010 Ascending,`4esn`[123456789] Ascending Return (#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null} Order By Extract(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With [#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4] Ends With [False[$`4esn`..],$#usn7[..0Xa]] Asc,@usn6[..$@usn5] Ascending Skip 999 Starts With `2esn` Starts With .e1 Limit 0.e0[..$999][..0Xa] Union All Delete Count ( * ) Ends With `6esn` Ends With 's_str',Count(*)[$@usn5] Optional Match @usn6=(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})-[:@usn5|_usn3 *00..0Xa]-(:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(_usn4 :@usn5) Merge (#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[?:`7esn`|:`2esn`]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]}) On Match Set `2esn` =`3esn`[..0X0123456789ABCDEF][..0x0] On Create Set `2esn` =$@usn5[0.0][0X0123456789ABCDEF],@usn6+=[`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})]"), + octest:ct_string("Merge (((`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})<-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Merge ((`4esn` :_usn3{usn2:01[..0Xa][..12],`1esn`:999[..`1esn`][..07]})-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})) Return Distinct .e0 Starts With $@usn6 Starts With $7 As `1esn`,1.e1 Contains `6esn` Contains 0.e0 Order By `3esn`[$123456789..][$usn2..] Ascending Union All Unwind #usn8 Is Null Is Null As `8esn`"), + octest:ct_string("Remove Extract(usn2 In 7[12] Where $_usn3 Is Null|`3esn`[..0X0123456789ABCDEF][..0x0]).#usn8!,Single(`6esn` In $`6esn`[``..][Count(*)..] Where 1.e1 Ends With $_usn4 Ends With #usn7).`3esn`! Detach Delete `4esn`($_usn4 Starts With $1000 Starts With 12)[{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}],$`3esn`[.e1][_usn4],$7[$12..12e12][1.e1..9e1] With $999 In 12 In 1.e1 Order By (`5esn` :`1esn`:_usn4)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})[[.e0 Is Null Is Null,9e1 Contains 12,'s_str' Ends With `7esn` Ends With 010]..] Descending,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} Desc Limit 00 In @usn6 In 0 Where $@usn6 In @usn6 In 1e1 Union Detach Delete `4esn` Contains 9e0,`5esn` Contains `7esn` Merge #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}))"), + octest:ct_string("Unwind usn2[12e12..]['s_str'..] As @usn6 Union Create `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),({_usn3:@usn6 Contains .12 Contains $usn1}) Return Distinct *,12[None(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)..`5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12])][`5esn`(`2esn`[..01][..True])..(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})<-[? *7..]-(#usn7 :``:usn2)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})] As usn1,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) As `7esn`"), + octest:ct_string("Create _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),(((`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})<-[:`2esn`|`4esn` *0X0123456789ABCDEF..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(@usn6 :`2esn`{`4esn`:$999[0Xa..][9e1..]}))) Merge #usn8=({#usn7:12e12 In $`5esn`}) On Create Set @usn6+=None(`3esn` In `2esn`[..01][..True] Where usn1 In ``)[None(usn2 In 7[12] Where 12e12 =~$`7esn`)..],Single(#usn7 In 9e1[$`1esn`..] Where Count ( * ) In 0.12).@usn6? =7[0e0..] On Create Set ``+=$``[7],[@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1|$`4esn` Contains .e0 Contains 0Xa].`` =$`7esn`[123456789..$1000][Count ( * )..$7] Union All Return *,12 Ends With True Ends With @usn6,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By $123456789[12e12..9e0] Asc,1e1 Contains 0.e0 Contains 9e1 Ascending,.e12[@usn6..][010..] Desc Limit $`7esn` In False In $`1esn`"), + octest:ct_string("Unwind $7[999][usn1] As `` Match (((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Where .e1[..\"d_str\"][..$123456789] Unwind 9e0 Is Not Null Is Not Null As `4esn`"), + octest:ct_string("With $@usn6[..12] As #usn8,`6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] As #usn8,[`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})] Order By 12.e12[..9e1][..$_usn3] Descending,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] Desc Skip @usn6(Count ( * ) In True In @usn5)[None(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)] Limit Extract(usn2 In 7[12] Where usn1 Starts With 00|`8esn` Contains Count(*) Contains $#usn7) Contains None(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[0.e0]) Contains Extract(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]|$`4esn`['s_str'..]) Where `1esn` Is Not Null Is Not Null Union Unwind 1.e1 Starts With 9e12 As `8esn` Unwind `5esn`[Count ( * )] As @usn6"), + octest:ct_string("With *,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As `8esn` Where $`7esn`[.e1][12.0] Union Unwind $1000 Ends With `8esn` Ends With `2esn` As `3esn`"), + octest:ct_string("Unwind Count(*)[.e12..][01234567..] As `6esn` Union All Merge `7esn`=(((`` :`5esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`8esn`{`8esn`:usn1 Contains 010,_usn4:`5esn` Contains $`5esn` Contains 0X7}]-({#usn8:0xabc In 010 In #usn7}))) On Create Set `3esn` =12[.0],All(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])._usn4? =12 Starts With True Starts With 12e12 Merge usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})) With `8esn` Is Null As `2esn`,[#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) Starts With [12 In $usn1 In 7,`6esn` Ends With Count ( * ) Ends With Count ( * ),`2esn` Starts With $`7esn`] Starts With usn2(Distinct .0[..'s_str'][..01234567],Count(*) In 12 In `6esn`) Ascending,_usn4[.12..$usn2][$_usn3..123.654] Desc,`4esn`[\"d_str\"]['s_str'] Ascending Skip Filter(@usn5 In 9e0 Ends With $#usn8) Contains {@usn6:#usn7[`8esn`..usn1][$999..`7esn`]} Contains (:#usn7:`5esn`)-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}) Where $@usn6[$`8esn`..][123456789..]"), + octest:ct_string("Detach Delete 12e12[12e12][$#usn7] Delete [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null),0x0 In `8esn`"), + octest:ct_string("Return *,`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] As usn1,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] Merge `1esn`=(`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) On Create Set [#usn8 In `7esn` Where 01 Ends With 0Xa Ends With 0X7|`8esn` Contains Count(*) Contains $#usn7].``? ={`5esn`:$`1esn` In .e0,``:`6esn` Ends With Count ( * ) Ends With Count ( * )} Is Null Is Null,`8esn`+=$7 Is Null,`7esn` =_usn4 In #usn7 Unwind $12 Starts With $0 Starts With $`8esn` As usn2 Union Return Distinct *,1.e1 Ends With $#usn7 As usn2,@usn5[01][@usn5] Skip $`5esn` Limit (`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Is Not Null Union Return Distinct *,9e12 =~@usn6,`4esn` Contains 9e0 Order By 1000[..$1000] Descending Skip Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Limit {``:123.654 In $`7esn`}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..None(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6 =~#usn7 =~True)] Detach Delete Null Ends With _usn4 Ends With 0.0 Optional Match ((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})),#usn8=({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})"), + octest:ct_string("Return Distinct $usn2 =~0.e0 =~@usn6,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As _usn3,0X7[`2esn`..] As `5esn` Skip `1esn` Contains $999 Contains 0.0 Limit ``[..False][..`3esn`] With *,`` =~.12 As #usn7 Skip usn2 =~7 Limit 0x0 In 0.e0 In #usn8 Where `2esn`[..01][..True] With Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Order By @usn5[0..] Ascending,$@usn5 In $`6esn` In 12e12 Desc,#usn7 In 0.e0 Desc Skip {`8esn`:$_usn4 Starts With 12.e12} Is Null Is Null Limit 999 Contains $1000 Where 999 In #usn8 In $`` Union All With 123456789 Contains 0Xa As usn1,True Contains 's_str' Contains $usn1 As `8esn`,`2esn` Is Null As `8esn` Order By .e12[0Xa..] Descending,`5esn`[$`7esn`..$@usn5] Ascending,`5esn`[..True][..0.e0] Descending Where $@usn5[..$#usn7] Unwind 1000[7..$12] As @usn6 Union Unwind @usn6[..$@usn5] As #usn7 Unwind Count(*)[``..#usn8][`3esn`..0xabc] As @usn5"), + octest:ct_string("With *,`3esn`[...e1] Order By $_usn4[01..][$_usn4..] Ascending,Single(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)[[07[_usn3..][`6esn`..],999[123.654..$usn2][Count ( * )..0x0]]..][Single(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])..] Descending,.e12[0Xa..] Descending Skip [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 999 Is Not Null Is Not Null|$`8esn`[123456789..][$@usn5..]] Contains (`1esn` {@usn5:`2esn` Starts With $`4esn`})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->(`2esn` {`1esn`:$`4esn` Is Null Is Null})<-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-({#usn8:0xabc In 010 In #usn7}) Contains Extract(#usn7 In $999 In 1e1 Where .e0 Is Not Null Is Not Null|$`5esn` Is Not Null Is Not Null) Limit usn1[_usn3..] Where #usn7 Contains $0 Contains $usn2 Delete 123456789 Is Null Is Null,{#usn8:12.0 Ends With `2esn`,@usn5:usn1 Starts With 00}[Any(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Union All Optional Match usn1=((:@usn5{@usn5:$12[9e0..$999]})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})) Return @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1|$@usn5 In $`6esn` In 12e12) Ends With (:`7esn`{#usn7:0 =~1.e1 =~$#usn7})<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}),`1esn`($`4esn`[`4esn`][Count(*)],`2esn` Starts With $`7esn`) =~Extract(@usn5 In 9e0 Ends With $#usn8 Where .e0 Starts With $@usn6 Starts With $7) =~{`3esn`:_usn3[`2esn`..0X7][0.e0..$`3esn`]} Union All Delete _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..],``(Distinct 00 Ends With `` Ends With 12.e12,`6esn`[..Count ( * )][..$_usn4]) In (usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[`7esn`?:#usn8|:`3esn`{`6esn`:'s_str'[0..]}]->(#usn8 :`8esn`$#usn8) In Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1]) Return Distinct @usn5[01][@usn5],9e0 Contains $12 Contains `3esn` As #usn8,{`4esn`:0.0[usn1..],`7esn`:12.0[$1000..][#usn7..]}[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7)..[usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]]][[12.e12[..$`6esn`],999 In #usn8 In $``]..Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1)] Skip {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}[[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]]..][(_usn4 {`6esn`:$_usn4 =~$`1esn` =~`2esn`,_usn3:#usn8 Is Null})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[_usn4?{_usn3:.e1[.e1..`1esn`],@usn6:.12 In `8esn` In $#usn8}]->(usn2 :@usn5)..]"), + octest:ct_string("Detach Delete 9e0[Count(*)..0.12][$`1esn`..12.0] Union All Unwind .e0[9e12..] As usn2 Union Remove Any(`6esn` In $`6esn`[``..][Count(*)..] Where False Contains 0 Contains $`6esn`).usn1!,{`1esn`:`1esn`[$@usn6][07]}.`1esn` Unwind #usn7[..07] As usn1"), + octest:ct_string("Optional Match (((:`1esn`:_usn4{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]})<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}))),_usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Where _usn4[`7esn`]"), + octest:ct_string("Merge _usn3=(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`}) On Match Set {_usn3:0Xa[$`8esn`..][$_usn4..],usn1:True Starts With Null}.usn1 ={`4esn`:12e12 =~$`7esn`} Is Not Null Is Not Null Union All Remove (#usn8 :`8esn`$#usn8)-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]})-[`7esn`:`4esn`|@usn5 *12..]-(@usn6 :usn1:`3esn`).@usn5?"), + octest:ct_string("Optional Match ((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(:`8esn`{``:$`1esn` =~999})) Where @usn6[9e12] Union All Unwind #usn7[..07] As usn1"), + octest:ct_string("Merge (`5esn` :``:usn2)<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2) On Match Set (:_usn3)<-[`2esn`? *01..123456789]-(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}).#usn8! =Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``),{`1esn`:`8esn` Is Not Null Is Not Null}.`4esn`? =$@usn5 Starts With `5esn` Starts With 01234567,{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}.``? =12 In $usn1 In 7 On Create Set #usn7+=Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] Union Match _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Where 010 Is Null Is Null Union All With Distinct *,@usn6[9e12],$`3esn`[..0xabc][..$7] Skip All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) Limit Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null Where 1000[12e12][`5esn`] Optional Match `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((`6esn` :`5esn`)<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`5esn` :`4esn`:`6esn`)) Where 07 Is Not Null Is Not Null"), + octest:ct_string("Merge #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))) On Create Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] On Match Set Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa).@usn6! =0.e0 Is Not Null Is Not Null,`1esn` =07 In `6esn`"), + octest:ct_string("Unwind [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null) As `7esn` Unwind Extract(@usn6 In 010[`5esn`] Where 00[$usn1..]|_usn3[$usn2..][$``..])[Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])] As _usn3 Remove All(@usn6 In 010[`5esn`] Where 1.e1[$usn1]).`6esn`!,Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5 Union All Remove None(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Is Not Null Is Not Null).`8esn`,[@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc|12.0 Starts With $`2esn` Starts With .e1].`3esn`?,7._usn4 Remove None(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]).`1esn`?,Extract(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null|0 =~1.e1 =~$#usn7).@usn5!,(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}).@usn5"), + octest:ct_string("Detach Delete $7 In $usn1 In 999,00[1.e1..],`8esn` =~@usn6 =~$`2esn` Match _usn3=(`1esn` )<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7}) Where @usn5 Starts With 9e0 Starts With 010 With Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By [Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] Ascending,None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) Descending Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]) Where @usn6 Is Not Null Is Not Null Union Delete $`1esn` Contains 1e1 Contains @usn6,None(#usn7 In 9e0[$1000] Where $_usn3 Is Null)[[0 =~1e1,$#usn8[12.e12..`8esn`][12.0..0.0],$1000 Is Not Null]..],(usn2 :_usn4)-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-({`8esn`:usn2 Starts With .0,@usn5:Count(*) In 12 In `6esn`}) Starts With [`3esn` In `2esn`[..01][..True] Where _usn4 Is Null Is Null|_usn3 In $`8esn` In @usn6] Starts With [@usn5 In 's_str'[0..] Where `6esn`[..Count ( * )][..$_usn4]] Return Distinct *,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] As `1esn` Merge usn1=((`2esn` :@usn5)) On Match Set Any(#usn8 In `7esn` Where $`3esn` Contains $`1esn`).`8esn`? =0x0 Contains $`6esn` Contains `4esn`,Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where False[$usn1][0x0]|@usn5[0.0..0X7]).usn2! =Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1),`3esn` =12.e12[..$999][..07] On Match Set usn1 =`5esn` Contains `5esn` Contains $_usn3,#usn8 =True Contains 0x0 Contains $_usn3"), + octest:ct_string("Create `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}),(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}) With *,#usn7[``] As usn1,None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6) =~Single(`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8) =~(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]}) Order By $@usn6 In @usn6 In 1e1 Desc,.e1[..$`3esn`][..01] Desc Limit _usn3 Is Null Is Null Unwind 9e0[Count(*)..0.12][$`1esn`..12.0] As @usn6 Union All Unwind $999 Starts With 12 Starts With 1e1 As `1esn` Merge `1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}))"), + octest:ct_string("Unwind $`5esn`[`7esn`] As @usn5 With None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,9e1[@usn5][$usn1] As `5esn`,`4esn` Starts With 0e0 As `7esn` Order By 1.e1 Contains `6esn` Contains 0.e0 Descending,07[..07][..0X7] Descending Limit Single(_usn4 In 12e12 In 123456789 Where 0e0 =~7 =~12.0) Starts With Extract(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]|9e12 =~@usn6) Return Distinct *,$#usn8[12.e12..`8esn`][12.0..0.0] As #usn8 Order By $#usn7[..9e0][..123.654] Descending,usn1[False..`5esn`][$1000..$12] Ascending,$usn2 =~1.e1 =~usn1 Desc Skip True Contains 0x0 Contains $_usn3 Limit `4esn` In 010 Union All Unwind @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])] As usn2 Return Distinct *,False Is Null Order By 0X7[..$`8esn`] Desc,[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null Ascending,12.e12 Ends With `` Ends With 0 Desc Skip Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0)[..{`5esn`:0Xa[$`8esn`..][$_usn4..],_usn3:00[$usn1..]}][..Any(@usn6 In 010[`5esn`] Where 1.e1[$usn1])]"), + octest:ct_string("Create (usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}),({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5)<-[_usn4?:@usn6|:`7esn`]->({`6esn`:'s_str' Contains 12.e12 Contains $`4esn`}) Create ((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})) Remove (:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})-[? *0Xa]-(`8esn` {``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]}).`2esn`! Union Create (@usn6 {`4esn`:9e1 Contains 12}) Return *,0X7[`2esn`..] As `6esn`,$`1esn` Contains 1e1 Contains @usn6 As `3esn` Order By $_usn3[_usn4..] Descending,9e1 Contains $999 Ascending Unwind 07[999] As @usn6"), + octest:ct_string("With Distinct $@usn5 Contains 's_str' Contains \"d_str\" As @usn5 With Distinct *,[1000[0e0][1e1],12.0 Is Null Is Null] Is Not Null Is Not Null Order By $`5esn`[$`6esn`][`2esn`] Descending,`6esn`[..$`4esn`] Descending,12 Starts With $123456789 Starts With .e12 Ascending Limit [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Union All Create `2esn`=()-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]-(:`4esn`:`6esn`{usn1:0 =~1e1,`7esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})-[_usn3:`5esn`|:usn2 *999..{`3esn`:`5esn` Contains $`5esn` Contains 0X7}]-(`8esn` {`1esn`:$`4esn` Is Null Is Null})"), + octest:ct_string("Merge (((usn1 :`8esn`)<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[? *0xabc]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})))"), + octest:ct_string("Remove Extract(_usn4 In 12e12 In 123456789 Where .e1 Starts With 12.e12 Starts With `2esn`|$@usn5 Is Null Is Null).@usn5!,Extract(@usn6 In 010[`5esn`] Where $0[0Xa..$123456789]|#usn7[0.e0..]['s_str'..]).`8esn`?,(:#usn8:`1esn`$`7esn`)-[?:@usn6|:`7esn` *0X0123456789ABCDEF..{_usn4:0x0[12e12..$`7esn`]}]->({@usn5:Count(*) Is Not Null Is Not Null}).`5esn`?"), + octest:ct_string("Create (usn2 :`7esn`)<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[? *7..{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null}) Return Distinct Count ( * ) In True In @usn5 Order By 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Asc,`6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] Desc Optional Match `5esn`=(`2esn` :`1esn`:_usn4)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}) Union All Create `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}) Detach Delete 12 Starts With $123456789 Starts With .e12"), + octest:ct_string("Unwind #usn7[..07] As usn1 Union All Match #usn7=((`7esn` :`1esn`:_usn4{@usn5:0x0[usn1..usn1],`6esn`:`4esn`[$_usn3..$`7esn`]})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->({`3esn`:`5esn` Contains $`5esn` Contains 0X7})-[`6esn` *00..0Xa{usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}]->(:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})) Where 0.0 Contains #usn7 With $@usn6 Ends With 12.e12 Ends With @usn5 As usn2 Where 12.0 Is Null Delete 12.e12 Contains `6esn`,$1000 Is Not Null,`1esn`[$@usn6][07] Union Remove Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where _usn4[`7esn`]|0xabc[..$1000][..`5esn`]).`4esn`?,[`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null].#usn8? Remove (usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0})._usn3"), + octest:ct_string("Create (((`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789})<-[`8esn`:#usn7|@usn5 *00..0Xa]->({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6}))),((:`4esn`:`6esn`{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})-[`5esn`?:`6esn`|:#usn8{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]-({`5esn`:#usn8 =~.e0})<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null})) Remove {``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}.`1esn`!,Filter(#usn8 In `7esn` Where 9e1 Starts With Count ( * )).@usn5!,(usn2 {`5esn`:$@usn5 In 12e12 In 01})<-[`7esn`{`4esn`:$_usn4[$`6esn`..],`4esn`:Count(*) In #usn8 In \"d_str\"}]->(`3esn` :usn2)-[`4esn`?*..{``:`` =~.12,usn1:123.654 Is Not Null}]-(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]}).`8esn`? Union Unwind {`8esn`:9e12 =~@usn6,`1esn`:999 Contains 0 Contains $`5esn`}[`4esn`()] As #usn8 Delete {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}[..`2esn`(Distinct 0 Ends With 12.e12 Ends With usn2)][..Filter(_usn4 In 12e12 In 123456789 Where .e1 In 123456789)],Extract(@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1) Is Not Null Merge ((:_usn4{`1esn`:0e0 =~0Xa =~$999})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(`` :`5esn`{@usn5:123456789 =~@usn6})<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null})) On Match Set {usn2:$@usn6 =~#usn7 =~True,_usn3:07 In `6esn`}.`3esn` =$`5esn`[$`6esn`][`2esn`] Union Detach Delete $123456789[12e12..9e0] Remove [12.0 Starts With .12 Starts With `6esn`,usn2 Contains $0 Contains .0,$#usn7 In $@usn5 In $`1esn`].`7esn`!,Single(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]).`3esn`?"), + octest:ct_string("Create (@usn5 :`1esn`:_usn4),`3esn`=(`` {`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']})<-[`6esn`? *00..0Xa]->(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}) Match @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) Merge (((:#usn7:`5esn`{_usn4:$usn2 =~9e1})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`)<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]}))) Union Merge ((:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) On Create Set [12 =~usn1,7 =~`4esn`,``[9e12][$999]].`1esn` =Extract(#usn7 In $999 In 1e1 Where `5esn`[..True][..0.e0]|$`5esn` =~$0 =~``) In (:`7esn`{#usn8:0Xa Ends With $`3esn` Ends With $1000})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]}) In Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|999 Contains 0 Contains $`5esn`) On Create Set {usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}.#usn8 =[@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1] Is Null,`4esn`:#usn7:`5esn`,({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})<-[`8esn` *0xabc]-(:_usn3{_usn4:.e1[7..][9e0..]})-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}).usn2 =123.654[..0.e0][..'s_str'] Create (:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789})"), + octest:ct_string("Unwind {`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`} Contains Filter(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5) Contains Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) As `5esn` Union Delete $#usn7[..$`4esn`][..01]"), + octest:ct_string("Unwind [Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] As `5esn` Merge #usn7=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`})) Remove Extract(`6esn` In $`6esn`[``..][Count(*)..] Where False Contains 0 Contains $`6esn`|0X7['s_str'..][01..]).#usn8,{#usn7:.e0 Is Null Is Null,#usn7:0.0 Is Null Is Null}.#usn8!,[$@usn5 Ends With @usn5 Ends With 0xabc,12.0 In 123.654 In _usn4].`3esn`? Union All Merge `4esn`=((@usn6 {usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[ *..07{`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}]-({#usn7:$`3esn` Ends With 01234567,_usn3:usn1 =~$`7esn`})) Return Distinct $0[010..] As `` Order By `5esn`(Distinct .e0[01234567..$`8esn`]) =~All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) =~[999 In #usn8 In $``,.e0 Is Null Is Null] Ascending Skip count(Distinct 0X0123456789ABCDEF Contains 12e12 Contains 12.e12)[..{usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]}][..(:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null})] With *,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As `8esn` Where $`7esn`[.e1][12.0] Union All Delete 0xabc =~@usn5 =~$usn1,[$usn1 Ends With _usn4 Ends With `2esn`][@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)..[#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1]][Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..])..Extract(#usn7 In 9e1[$`1esn`..] Where $999[``])],1000[$7..][_usn4..] With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Order By 1.e1 In 1000 In _usn3 Desc,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Descending,123.654 Is Null Is Null Asc Where _usn4[`7esn`]"), + octest:ct_string("Detach Delete [0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]][{usn2:$@usn6 Ends With `1esn`,_usn3:`7esn`}..][{@usn6:1e1 Is Not Null Is Not Null,`8esn`:$`1esn` Starts With $`4esn` Starts With $_usn3}..],`6esn`[$1000][`3esn`] Remove Extract(@usn6 In 010[`5esn`] Where $0[0Xa..$123456789]|_usn3[12.e12..][`5esn`..])._usn3,(usn1 :`5esn`{@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`:usn2]->(:`8esn`{``:$`1esn` =~999}).`5esn`? Optional Match (((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}))),`8esn`=(:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}) Union Merge `2esn`=(((`7esn` )<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2))) On Match Set #usn8 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) With Distinct 0Xa In $`6esn` As `2esn`,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null,12[0e0] As `5esn` Skip (`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}) =~[12 In $usn1 In 7] =~Filter(@usn5 In 's_str'[0..] Where 0.e0) Limit .e0[$`8esn`..][1000..]"), + octest:ct_string("Return Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],.12[..usn2][..12e12],$usn2[`5esn`..][01234567..] As #usn8 Limit $`2esn` Is Null With Distinct *,0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Order By #usn7[0.12..] Asc Skip Count(*)[9e12..12.0] Where `3esn`[..0X0123456789ABCDEF][..0x0] Union All Merge (((`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})<-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Merge ((`4esn` :_usn3{usn2:01[..0Xa][..12],`1esn`:999[..`1esn`][..07]})-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})) Return Distinct .e0 Starts With $@usn6 Starts With $7 As `1esn`,1.e1 Contains `6esn` Contains 0.e0 Order By `3esn`[$123456789..][$usn2..] Ascending Union All Return Distinct *,`3esn`[12..1000][\"d_str\"..1000],@usn6[123.654..][0x0..] As _usn3 Order By $999 In 1e1 Descending,True[..#usn8] Ascending,#usn8 Starts With $1000 Starts With $@usn5 Ascending Skip ``[..#usn8] Create `4esn`=((({#usn7:$`3esn` Ends With 01234567,_usn3:usn1 =~$`7esn`})-[`7esn`?:usn1|`4esn` *00..0Xa{`3esn`:usn1 In ``}]-(usn1 {usn1:$#usn7 Starts With 01234567 Starts With $0})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]}))),#usn8=(({usn2:`2esn`[..$_usn3]})) Merge ((@usn6 :`4esn`:`6esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->({usn1:$123456789 In 0.12})) On Match Set All(usn2 In 7[12] Where `2esn`[$12..]).#usn8? =[#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3],Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3|01 In $@usn6).`7esn`? ={`3esn`:.e1[..\"d_str\"][..$123456789]},[$`5esn` =~usn1,@usn6 Contains .12 Contains $usn1,999 In #usn8 In $``]._usn3 =[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )] On Match Set `2esn`+=`3esn`(Null[..010][..1000],$0 =~9e1 =~$`2esn`)[1.e1..][None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`])..],@usn5 =usn2 Ends With .e1 Ends With $`5esn`"), + octest:ct_string("With *,.0 Starts With `1esn` As #usn7,#usn8 =~.e0 Limit .0[.e12..]"), + octest:ct_string("Delete _usn3[12.e12..][`5esn`..] Remove [`7esn` Contains 9e0,010[`5esn`],0.e0 Starts With .0 Starts With 123456789].`8esn`?,All(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]).`7esn`!"), + octest:ct_string("Create ((`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})),(((@usn6 )<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null}))) With Distinct $12 Starts With $0 Starts With $`8esn`,9e1[usn1..0x0][12.e12..12.0] As usn1,$``[..\"d_str\"][..$#usn8] As `6esn` Where `4esn`[.12][$@usn6] Union All Merge @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) With *,``(Distinct 00 Ends With `` Ends With 12.e12,`6esn`[..Count ( * )][..$_usn4]) In (usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[`7esn`?:#usn8|:`3esn`{`6esn`:'s_str'[0..]}]->(#usn8 :`8esn`$#usn8) In Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1]) As `3esn` Order By $usn2[`5esn`..][01234567..] Asc,$`7esn`[.e1][12.0] Asc,$`5esn` =~usn1 Ascending Skip @usn6(0X7 In $#usn7,_usn4 Contains `` Contains 1.e1)[Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)..Any(#usn7 In 9e1[$`1esn`..] Where $`2esn` Ends With `6esn`)]"), + octest:ct_string("Remove {@usn5:123.654 Is Not Null}.`3esn`!,Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc).`1esn`! Unwind [@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Is Not Null As `1esn` Unwind [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Contains Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|@usn5 Contains #usn8 Contains 12.0) As usn1 Union Match `3esn`=(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0}),((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[_usn3?:`8esn` *1000..0X0123456789ABCDEF{@usn5:07 Is Not Null Is Not Null}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Union All Optional Match (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Where $`7esn`[.e1][12.0]"), + octest:ct_string("Optional Match usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})),((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Where $123456789[...12][..@usn6] Detach Delete `2esn`[$@usn6..][Null..],$1000 Starts With $`7esn` Union All Match `5esn`=(`3esn` :_usn4) Remove [$123456789 Starts With 0.12 Starts With Null].`4esn`!,(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`}).#usn8"), + octest:ct_string("With *,`2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Limit $1000[$@usn6][$_usn4] Delete $usn1 Contains 0,'s_str' Contains 12.e12 Contains $`4esn`,0xabc[$999..][$usn1..] Unwind `8esn`(Distinct #usn8 Is Not Null Is Not Null,`2esn` In 9e0 In 7) Starts With None(usn2 In 7[12] Where 123456789 =~12 =~'s_str') As @usn6 Union Remove Single(@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]).`7esn`,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|12.e12 Is Not Null Is Not Null).`2esn` Union All Remove [usn2 In 7[12] Where 12e12 =~$`7esn`|.e1[12.0..]].@usn5!"), + octest:ct_string("Return Distinct #usn8[`6esn`..][$``..] As `2esn` Merge `6esn`=(((_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})-[``?:_usn4]-(_usn4 :_usn4))) On Match Set Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]|$``[..\"d_str\"][..$#usn8]).@usn6 =[$usn1[`2esn`..][$`2esn`..]][(`3esn` :usn2)-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})..`2esn`(Distinct $@usn6 Is Not Null Is Not Null,Count ( * ) Ends With $123456789)],None(#usn8 In `7esn` Where ``[7.._usn3]).@usn6? =`6esn`,Any(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])._usn4! =`` Is Null On Match Set `4esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1 =(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Create ``=((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)),``=(@usn5 :`6esn`:_usn3{`7esn`:`8esn`[..$#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Union Delete 12.e12 Ends With $``,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null,{#usn7:usn1 In ``}[None(`3esn` In `2esn`[..01][..True])..Extract(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..])] Union All Delete 's_str' Starts With 1e1 Starts With $0 Return 010 Starts With $`` Starts With 0e0 As @usn5 Order By 123456789 =~True =~#usn7 Asc,True[..#usn8] Ascending Skip Extract(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0) Ends With `2esn`(Distinct 123.654[`4esn`..12],_usn3[`2esn`..0X7][0.e0..$`3esn`]) Ends With [`5esn` In 0X7 In $#usn7 Where 12e12 =~1e1|0e0 =~0Xa =~$999] Limit #usn7 =~9e12"), + octest:ct_string("Remove [_usn4 In 12e12 In 123456789 Where 00 In @usn6 In 0].#usn8! Merge `4esn`=(`4esn` :`7esn`)"), + octest:ct_string("Remove @usn5:`7esn` Merge `1esn`=((`2esn` {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})) On Match Set (:``:usn2{`4esn`:#usn7 Contains $0 Contains $usn2})<-[:`8esn` *0X7..]->(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2})<-[`2esn`? *01..123456789]-(`2esn` :@usn6).`8esn` =`7esn`[1e1] Union Optional Match @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) Where 0Xa[$`8esn`..][$_usn4..] Remove Extract(`3esn` In 9e1 Contains $999 Where `2esn`[_usn3]|123.654 In $`7esn`).usn2?,@usn5:_usn3 Remove `5esn`($`4esn` In 1.e1 In #usn7,0Xa[Count(*)..]).`5esn`,(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`).`3esn`,None(#usn8 In `7esn` Where 9e12[..1e1][..'s_str'])._usn4? Union All Return Distinct 9e0 =~Count(*) =~$0,123.654 In $`6esn`,0 Ends With Count(*) Ends With False Order By #usn7 Contains $0 Contains $usn2 Asc,.12[01][@usn5] Desc Limit 12 Ends With Count ( * )"), + octest:ct_string("Detach Delete 9e1 =~123456789 =~999 Create `1esn`=((@usn6 {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})-[:``{``:.0[$``..0X7]}]->(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})-[ *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})),`6esn`=((#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})) With Distinct *,@usn5 Contains #usn8 Contains 12.0 As `6esn`,{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] Skip 0.0 Is Null Is Null Where 07 Ends With 9e12 Ends With `2esn` Union All Return *,9e0[..123456789][..$`3esn`] As #usn7 Order By 999 In 0e0 Ascending Delete $7[01..$123456789][#usn7..12.0] Delete 0.0[usn1..]"), + octest:ct_string("With Distinct .e1[.e1..`1esn`] As @usn5,$`4esn`['s_str'..] As ``,{``:00 In @usn6 In 0}[(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})] As `5esn` Order By 0X0123456789ABCDEF Is Not Null Is Not Null Asc Skip 123.654 In $`7esn` Where 999 Starts With `2esn` Starts With .e1 Union Return *,'s_str' Starts With 9e0 Starts With usn2 As `8esn` Optional Match `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),(`2esn` $`6esn`) Where 7 =~`4esn` Optional Match `6esn`=(((_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})-[``?:_usn4]-(_usn4 :_usn4))) Union Remove All(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01).usn2! Create (((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})))"), + octest:ct_string("Return Distinct 12.e12[..$`6esn`] As `7esn`,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] As ``,1.e1 Contains `6esn` Contains 0.e0 Skip Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])] Merge usn2=((`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5)) On Create Set [$``[True]].#usn8! =[0.0 Is Not Null,$`4esn`[`8esn`],$123456789[12e12..9e0]] =~.e12 On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] Union Remove `8esn`:@usn5,Single(#usn7 In 9e0[$1000] Where $1000 Is Not Null).`5esn` Merge `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] On Match Set (`3esn` {usn2:$usn2[`4esn`..9e12]})<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1).#usn7! =_usn4 Starts With `` Starts With 1000,Extract(`3esn` In `2esn`[..01][..True] Where 0X7[..$`8esn`]|$#usn7 Starts With 01234567 Starts With $0).`5esn`! =@usn6(Count ( * ) In True In @usn5)[None(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)] Merge ((@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]->(_usn4 )-[#usn7?:`7esn`|:`2esn` *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})) On Create Set #usn7 =[$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1],@usn6+=0.12[$0..$usn2] On Create Set `4esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1 =(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..])"), + octest:ct_string("Unwind {`8esn`:usn2 =~7,@usn5:`6esn` Ends With _usn4 Ends With False} Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]] Ends With (_usn4 :_usn4)<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[ *..07{`6esn`:Count(*)[9e12..12.0]}]->(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) As _usn4 Optional Match (:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]}) Where 12e12 In $`5esn` Merge ((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})) On Create Set `2esn`+=0X0123456789ABCDEF In .12,`1esn` =$`7esn` In False In $`1esn` Union All Merge #usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Union All Return Distinct 9e0 =~Count(*) =~$0,123.654 In $`6esn`,0 Ends With Count(*) Ends With False Order By #usn7 Contains $0 Contains $usn2 Asc,.12[01][@usn5] Desc Limit 12 Ends With Count ( * )"), + octest:ct_string("Create (:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(`3esn` :_usn4{`3esn`:12[..0e0][...e1],`4esn`:.0 Is Null Is Null}) Match (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}))) Optional Match _usn4=(((`2esn` )-[?{_usn3:01[`8esn`..9e12][.12..0]}]->(`8esn` {@usn5:#usn7[..07],usn2:999 Contains 0 Contains $`5esn`})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]->(_usn3 :`5esn`))),((:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->({@usn6:12.e12 Contains #usn7 Contains $_usn4,usn2:$`5esn` =~$0 =~``})-[#usn7 *01..123456789]->(:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})) Union Merge ((:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[`2esn`?:usn1|`4esn` *00..0Xa]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[:`2esn`|`4esn` *1000..0X0123456789ABCDEF]-(usn2 :`6esn`:_usn3{@usn5:$0[0Xa..$123456789]})) On Match Set `1esn`:@usn5,All(@usn5 In 's_str'[0..] Where `2esn`[..01][..True]).`2esn`! =`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]],`2esn`+=$_usn4[01..][$_usn4..] On Match Set #usn7+=.e0[..9e12][..07],`4esn`(True[$_usn3..],$999[``]).usn2 =123456789 Is Null Is Null,@usn5 =01[07..][1.e1..] Remove Filter(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1).`5esn`! With Distinct $`1esn`[Null][True] As usn2,Count ( * )[9e12] Skip [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] Limit 0X7[0.12..] Where 0e0[01][$`7esn`] Union Unwind None(@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn2..][$123456789..]) =~{`2esn`:7[12],usn1:.12[0X7..][12e12..]} =~Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)|True[0xabc..01234567][$`8esn`..$@usn6]) As `6esn`"), + octest:ct_string("Remove [$@usn5 In 12e12 In 01,$_usn4[..$_usn4][..`7esn`]].`3esn`?,[$_usn4 =~$`1esn` =~`2esn`,#usn7[`8esn`..usn1][$999..`7esn`],$@usn5[..0xabc][..$`3esn`]].`8esn`! Union All Optional Match ((usn2 {`5esn`:$@usn5 In 12e12 In 01})-[`8esn`:#usn7|@usn5 *00..0Xa]-(_usn3 {usn1:0x0 Starts With $`6esn`})),((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[_usn3?:`8esn` *1000..0X0123456789ABCDEF{@usn5:07 Is Not Null Is Not Null}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Remove [12e12 =~1e1].`2esn`!"), + octest:ct_string("Detach Delete `8esn` Is Not Null Is Not Null,Filter(@usn5 In 9e0 Ends With $#usn8 Where 7 Ends With 01234567 Ends With 0Xa) Starts With {usn2:`2esn` =~.e12 =~0X0123456789ABCDEF,@usn6:`2esn` Is Null} Starts With [usn2[12e12..]['s_str'..]] Return *,[`8esn`[..$#usn8],1.e1 Starts With 9e12] Ends With [`6esn` In $`6esn`[``..][Count(*)..]|.e1[12.0..]] Ends With Any(usn2 In 7[12]),$`6esn` Starts With .e12 Starts With $`1esn` As @usn6 Skip $`5esn`[$`3esn`..] Limit Single(@usn6 In 010[`5esn`] Where Count(*)[9e12..12.0])[(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)][`7esn`]"), + octest:ct_string("Delete 9e0 Contains $12 Contains `3esn` Remove Filter(@usn6 In 010[`5esn`] Where 00[$usn1..]).usn2? Return @usn5[01][@usn5],9e0 Contains $12 Contains `3esn` As #usn8,{`4esn`:0.0[usn1..],`7esn`:12.0[$1000..][#usn7..]}[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7)..[usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]]][[12.e12[..$`6esn`],999 In #usn8 In $``]..Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1)] Order By Null Ends With _usn4 Ends With 0.0 Asc Skip (`1esn` $`4esn`)-[@usn6?:`7esn`|:`2esn`]-({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]}) =~Filter(`3esn` In 9e1 Contains $999 Where 12.0 Is Null Is Null) =~[0xabc In Null] Union Remove Any(#usn7 In 9e1[$`1esn`..] Where 999 In #usn8 In $``).`7esn` Merge (:`4esn`:`6esn`{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]-(:`6esn`:_usn3)<-[@usn5? *999..{usn1:.e12[$@usn6..00][01234567.._usn3],`1esn`:`7esn` Contains 9e0}]-({@usn6:999 Contains 0 Contains $`5esn`,#usn7:999[..`1esn`][..07]}) Delete Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null],9e1 =~123456789 =~999,.e12[$@usn6..00][01234567.._usn3] Union All Merge `2esn`=((#usn7 {#usn7:1.e1 Starts With 9e12})<-[ *..07{`5esn`:999 In 0e0}]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})) Merge usn1=(((`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]-(#usn8 :`6esn`:_usn3)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1))) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..]"), + octest:ct_string("Merge #usn7=(((:`7esn`{`2esn`:$`3esn` Ends With 01234567})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(`` :`3esn`{`8esn`:.e1[12.0..],`6esn`:0e0[999..$``]})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null}))) With Distinct .e1 In 0,Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])[[00[12..$`6esn`],$`4esn`['s_str'..]]..] Skip `3esn`[$123456789..][$usn2..] Where $@usn5[..$#usn7] Union All Detach Delete Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)[..`4esn`][..(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)] Return Distinct usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Skip $@usn6 Ends With `1esn` Limit 9e1 Ends With Count(*) Ends With $7"), + octest:ct_string("Detach Delete $`5esn`[\"d_str\"..],0.0 Is Not Null,$@usn6[$0..9e12][.e12..Null]"), + octest:ct_string("With *,$`7esn`[$_usn4][.e0],`5esn` Contains `1esn` Contains usn1 As `2esn` Order By `4esn` Contains 9e0 Desc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Is Not Null Asc Skip [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] Limit $@usn6 =~#usn7 =~True Where 12.0 Is Null Remove Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 7[0e0..]).`8esn`!,(_usn4 :`1esn`:_usn4)<-[?:`6esn`|:#usn8 *00..0Xa]-(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]}).@usn5! Match `4esn`=((@usn5 {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})),_usn3=(`8esn` :`2esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`6esn`]->({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})"), + octest:ct_string("Delete `2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Union All Detach Delete `4esn`[..$@usn6][..@usn6] Detach Delete @usn6[999..$_usn3][0.12..$@usn5] Union Create (`6esn` :@usn6)-[usn2?:`3esn`]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}),usn1=(#usn8 :``:usn2) Remove {``:.e12 Ends With 0Xa Ends With 0xabc}.usn2? Create (:`6esn`:_usn3{`8esn`:`4esn`[\"d_str\"]['s_str']})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0}),`4esn`=((({#usn7:$`3esn` Ends With 01234567,_usn3:usn1 =~$`7esn`})-[`7esn`?:usn1|`4esn` *00..0Xa{`3esn`:usn1 In ``}]-(usn1 {usn1:$#usn7 Starts With 01234567 Starts With $0})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})))"), + octest:ct_string("Detach Delete $999 In 12 In 1.e1,usn2 Is Not Null Union All Create (((usn2 {`5esn`:$@usn6 Ends With `1esn`})<-[`2esn`? *01..123456789]-(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]})<-[? *7..{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]-(#usn7 :``:usn2))) Union All Delete $@usn6 Ends With 12.e12 Ends With @usn5 Delete 0e0 =~0Xa =~$999"), + octest:ct_string("Create (`6esn` :`5esn`)-[_usn4?:`6esn`|:#usn8]->(#usn7 :`3esn`{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null}),`6esn`=((:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]})) Match ({_usn3:$12[9e0..$999],#usn7:0.0 Contains `3esn` Contains @usn5})-[#usn7?:`7esn`|:`2esn` *..07]-(#usn7 {#usn7:1.e1 Starts With 9e12}) Union Return Distinct *,$999[0Xa..][9e1..] As `4esn` Skip $usn2 Ends With $123456789 Limit @usn6 Contains .12 Contains $usn1 Create ((`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})),`5esn`=(((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Union All Remove None(_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1).``?,[@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2].`1esn` Return Distinct `1esn`[0Xa] As usn1,$`` Contains $`2esn` Contains $usn2 Order By $usn1 Ends With _usn4 Ends With `2esn` Descending,$``[..$#usn7][..`6esn`] Asc Skip 07[999]"), + octest:ct_string("Optional Match ((:`6esn`:_usn3{usn1:`3esn`[0x0..]})<-[? *1000..0X0123456789ABCDEF{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]->({`4esn`:.e1[..$`3esn`][..01]})<-[usn2?{``:$`1esn`[``][07]}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7})),(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) Where $`3esn` In $usn2 Union With $`3esn`[.e1][_usn4] As _usn4,usn2 =~$`` =~$`8esn`,9e12[9e1] Order By `1esn` Starts With 9e1 Desc"), + octest:ct_string("With [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) As usn2,$`3esn`[.e1][_usn4],All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As `4esn` Order By $`3esn` Ends With 01234567 Asc Skip @usn6 =~999 =~@usn5 Return {``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}[..Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)][..Any(#usn7 In $999 In 1e1 Where 07 In `6esn`)] As usn1,`8esn` Is Not Null Is Not Null As `4esn` Order By Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $#usn7[..$`4esn`][..01])[Extract(usn2 In 7[12] Where $`2esn` Ends With `6esn`)][`7esn`(@usn5 Contains #usn8 Contains 12.0)] Ascending Skip 01[..9e12] Merge (#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) On Match Set Extract(@usn5 In 's_str'[0..] Where @usn6 In .12 In `3esn`|$@usn6[00]).`8esn`? =9e0 Contains $12 Contains `3esn`,_usn4+=0x0[@usn5][$#usn8],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null On Match Set `1esn` =[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8])"), + octest:ct_string("Return Distinct .e0 Ends With $123456789 Ends With 0xabc Limit 's_str' Starts With 1e1 Starts With $0"), + octest:ct_string("Remove Filter(usn2 In 7[12] Where $#usn8[12.e12..`8esn`][12.0..0.0]).``,[`8esn` In 123456789 =~@usn6 Where ``[9e12][$999]].@usn5?,`4esn`:`7esn` Return Distinct 12.e12[..$`6esn`] As `7esn`,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] As ``,1.e1 Contains `6esn` Contains 0.e0 Skip Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])]"), + octest:ct_string("Unwind \"d_str\"[#usn8] As @usn5"), + octest:ct_string("Merge #usn7=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2) On Match Set `2esn` =`3esn`[..0X0123456789ABCDEF][..0x0] On Match Set _usn4(Distinct $#usn7 In $@usn5 In $`1esn`,usn2 =~usn1 =~Count ( * )).`8esn`! =.12 Starts With _usn3 Starts With $``,usn1 =[0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]][{usn2:$@usn6 Ends With `1esn`,_usn3:`7esn`}..][{@usn6:1e1 Is Not Null Is Not Null,`8esn`:$`1esn` Starts With $`4esn` Starts With $_usn3}..] Create `4esn`=((`` {#usn7:#usn8 Is Not Null Is Not Null})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})) Delete Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] Union All Create (`3esn` {usn2:$usn2[`4esn`..9e12]}),`4esn`=(usn1 :`7esn`) Detach Delete $usn2[0.e0] Create (:usn2)<-[? *01..123456789{`8esn`:usn2 =~7,@usn5:`6esn` Ends With _usn4 Ends With False}]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`4esn`:usn2]->(`3esn` :_usn4),`8esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Union All Merge ((_usn3 :usn2)) On Match Set Any(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0).`5esn`! =.e12 Ends With 0Xa Ends With 0xabc On Match Set `5esn`(Distinct .12[123.654..]).`3esn` =01234567 In 123456789 In 12,`6esn` =[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null"), + octest:ct_string("Return Distinct *,[1000[0e0][1e1],12.0 Is Null Is Null] Is Not Null Is Not Null Order By Extract(usn2 In 7[12] Where usn1 Starts With 00|`8esn` Contains Count(*) Contains $#usn7) Contains None(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[0.e0]) Contains Extract(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]|$`4esn`['s_str'..]) Asc,1.e1[$`3esn`][0Xa] Descending,`2esn` Starts With $`7esn` Ascending Skip $usn2[`2esn`..$`1esn`] Merge ((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})) On Create Set usn1 =`3esn`[123456789],`3esn` =9e1[.12][`7esn`] On Match Set All(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).`3esn`! =12.0[$12..$_usn4] Union Create ({@usn6:999 Contains 0 Contains $`5esn`,#usn7:999[..`1esn`][..07]}) Delete [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null),0x0 In `8esn` Unwind [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e1[usn1..0x0][12.e12..12.0]][..{usn2:0x0[0X7]}][..[12.e12 Is Not Null Is Not Null,$@usn6[.0..][0e0..]]] As _usn4 Union Unwind $`1esn`[``][07] As @usn5"), + octest:ct_string("Unwind #usn8(@usn6[999..$_usn3][0.12..$@usn5])[..`1esn`(Distinct `5esn`[..123.654][...e12],01 Contains usn2 Contains 0X0123456789ABCDEF)] As _usn3 Detach Delete $`1esn`[``][07],`2esn` Starts With .e1 Starts With 9e12,$`4esn` In 1.e1 In #usn7 Union All Create `8esn`=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2) Remove All(usn2 In False[$usn1][0x0] Where False Is Null).usn2 Unwind None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]) Is Null As `8esn` Union Detach Delete $@usn5 Ends With @usn5 Ends With 0xabc,_usn3 Ends With 7 Ends With $`1esn`,'s_str' Ends With `7esn` Ends With 010 With 0X7[`2esn`..] As `6esn`,Single(usn2 In False[$usn1][0x0])[All(@usn6 In 010[`5esn`] Where 00[1.e1..])][(:`2esn`{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`})-[?{`5esn`:$`2esn`[.0..][0.0..]}]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})-[`` *1000..0X0123456789ABCDEF]->(:_usn4{`8esn`:01234567[Null..$_usn3]})] Order By ``[$`3esn`] Asc,[1000[0e0][1e1],12.0 Is Null Is Null] Is Not Null Is Not Null Asc,.e0 =~$`7esn` =~0X0123456789ABCDEF Descending Skip [#usn8 In `7esn` Where .e0 Is Null Is Null] Ends With {usn1:$`4esn`[`6esn`..$12],`4esn`:usn1 Contains 010} Ends With (:``:usn2{``:True[$_usn3..]})<-[`2esn`? *01..123456789]-(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(`1esn` $`4esn`) Limit `5esn`[..123.654][...e12]"), + octest:ct_string("Create ({_usn3:$12[9e0..$999],#usn7:0.0 Contains `3esn` Contains @usn5})-[#usn7?:`7esn`|:`2esn` *..07]-(#usn7 {#usn7:1.e1 Starts With 9e12}) Return *,00[12..$`6esn`] As _usn4,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] As `3esn` Skip `8esn` Contains `2esn` Contains .0 Limit Null[.12..12e12] Union All Create (:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Remove `2esn`(.12[123.654..]).`4esn` Union All Remove {usn1:#usn8 =~.e0,_usn3:$_usn4 Is Null Is Null}.`1esn`,Single(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`).`3esn`?"), + octest:ct_string("With Distinct #usn8 Is Not Null,.e0[..9e12][..07] Skip usn1 Limit 1000 Contains [True Contains 0x0 Contains $_usn3,_usn3 Contains 9e12 Contains `8esn`] Contains [12.0 In 123.654 In _usn4] Where $``[..\"d_str\"][..$#usn8] Create ((usn1 :`5esn`{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF}))"), + octest:ct_string("Remove `5esn`:#usn8:`1esn`,[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|.e0 Contains $#usn8].@usn6!,[123.654 Starts With 0X7 Starts With $`4esn`,`6esn` Is Null Is Null].@usn5 Optional Match `6esn`=(((:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({#usn8:False Starts With 0X7 Starts With 01234567})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5))) With Distinct 0Xa Ends With $`3esn` Ends With $1000,Extract(@usn5 In 's_str'[0..] Where 12e12 Is Not Null) =~[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]],$#usn8[@usn6..] As `7esn` Order By (`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Desc,$usn1[Null][`8esn`] Desc,$`5esn` In `2esn` In `2esn` Asc Limit [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Ends With `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Ends With [$`1esn`[``][07],`7esn`] Where _usn3[$`1esn`..] Union Remove Filter(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1).usn2,Extract(#usn8 In `7esn` Where 9e1 Starts With Count ( * )|$@usn6[$`8esn`..][123456789..]).`6esn`!,_usn4:`7esn` Remove All(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7).`2esn`!,(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[ *01234567..]->(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`}).usn2,@usn6:_usn4"), + octest:ct_string("Remove #usn7(@usn6 Contains .12 Contains $usn1).usn1!,_usn3._usn4? Create usn2=(`6esn` {`2esn`:$`3esn` Ends With 01234567}) Union Create ((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})),@usn5=(({@usn5:$`5esn` Is Not Null Is Not Null})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})) Union All Delete 9e1[1.e1][$`8esn`],0X7[0.12..] Remove ({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->(_usn4 :@usn5).`8esn`?,All(`3esn` In `2esn`[..01][..True] Where #usn7 In 0.e0).`4esn`!,Extract(@usn5 In 9e0 Ends With $#usn8 Where `1esn` Is Not Null Is Not Null|Null[..0]).``?"), + octest:ct_string("Delete Extract(#usn7 In 9e0[$1000] Where 00[12..$`6esn`]|$@usn6 Ends With `1esn`) =~[7 =~`4esn`,7 =~`4esn`],@usn5[$`6esn`..][$999..],1e1 Ends With $`2esn` Merge `5esn`=(`2esn` :_usn3) On Create Set usn1 =`3esn`[123456789],`3esn` =9e1[.12][`7esn`]"), + octest:ct_string("Optional Match @usn5=(`5esn` :``:usn2)<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2) Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] On Create Set `6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn1+=`4esn`[$_usn3..$`7esn`] Union Unwind $1000[$@usn6][$_usn4] As `6esn`"), + octest:ct_string("Return *,$@usn6 Ends With `1esn` Order By $999 Is Null Is Null Descending,0e0 =~7 =~12.0 Asc Skip `` =~.12 Union All Remove Any(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null).@usn6!,[$0 In `3esn` In 07,123456789 Contains 0.0 Contains $@usn6].#usn8!"), + octest:ct_string("Optional Match (((:`6esn`:_usn3{@usn5:0.e0[..$7],@usn6:.12 In `8esn` In $#usn8})-[?*..]-(usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->(#usn8 :`8esn`))) Where True[..#usn8] Merge ({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) On Match Set `3esn`+=`2esn` =~.e12 =~0X0123456789ABCDEF,#usn8:usn1:`3esn`,``+=`2esn` Create (@usn5 :`1esn`:_usn4)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})-[? *01..123456789]-(_usn3 :`6esn`:_usn3) Union Merge #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})) On Match Set `5esn`(Distinct .12[123.654..]).`3esn` =01234567 In 123456789 In 12,`6esn` =[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null On Match Set usn2+=`6esn`[$`8esn`][9e1] Union All Unwind 12e12 In 123456789 As `7esn`"), + octest:ct_string("Create #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),((:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Delete Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa) In Extract(`3esn` In 9e1 Contains $999 Where 0e0 Starts With 999 Starts With `2esn`|9e1 Ends With Count(*) Ends With $7),Any(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) =~[#usn7 In 9e1[$`1esn`..] Where 0Xa Ends With $`3esn` Ends With $1000|$@usn5 Contains 's_str' Contains \"d_str\"] =~Extract(@usn6 In False Contains 0 Contains $`6esn` Where $`6esn` Starts With .e12 Starts With $`1esn`|12e12 In 123456789) Remove [12.0 Starts With .12 Starts With `6esn`,usn2 Contains $0 Contains .0,$#usn7 In $@usn5 In $`1esn`].`7esn`!,Single(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]).`3esn`? Union All Unwind $_usn4 =~$`1esn` =~`2esn` As #usn8 Create (((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),usn1=(`7esn` :`3esn`{`2esn`:999[123.654..$usn2][Count ( * )..0x0]})-[`2esn`?:usn1|`4esn` *00..0Xa]-(`4esn` :`4esn`:`6esn`) Merge ((`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})) On Match Set `1esn` =All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null"), + octest:ct_string("Delete 9e1[.12][`7esn`],$12[$usn1..][Count(*)..] Merge (((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}))) On Match Set _usn3:`7esn` Detach Delete 7 Is Not Null,$`1esn`[Count ( * )],`6esn`[`5esn`..00] Union All Detach Delete $123456789[.0..],All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] Union All Remove Filter(@usn6 In 010[`5esn`] Where 00[$usn1..]).usn2?"), + octest:ct_string("Merge ((#usn7 :_usn3)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]}))"), + octest:ct_string("Remove _usn4(Distinct 0X0123456789ABCDEF Ends With 01 Ends With ``,$`3esn`[..0xabc][..$7]).`2esn`,`7esn`(`3esn`[0X0123456789ABCDEF..][07..],usn1 =~$`7esn`).usn1!,Filter(#usn8 In `7esn` Where $`3esn`[..0X0123456789ABCDEF][..7]).@usn5? Unwind $@usn5[`1esn`..][$999..] As `8esn` Union Match _usn3=((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7 *01..123456789]->(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})),``=((:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[`5esn`:#usn7|@usn5]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) Where 0x0[Count(*)..@usn6][Count(*)..0Xa] Remove Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12).`5esn`?,_usn3(0[$`5esn`],`2esn`[..$_usn4][...12]).`2esn`?,(usn1 :@usn6)<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})<-[?{`5esn`:123.654[$0..0X7][Null..#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]}]-(usn2 :`7esn`).#usn8 Create _usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Union Unwind usn2[12e12..]['s_str'..] As @usn6"), + octest:ct_string("Create (`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}),(`8esn` {usn1:0e0 =~7 =~12.0,`7esn`:usn2 Starts With .0})<-[:_usn4]->(_usn4 {usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Union Return *,[`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] As `4esn`,$1000[0X0123456789ABCDEF][12] Skip $999[.e12][.0] Limit `` Starts With $123456789 With Distinct {usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}[[@usn5 In 9e0 Ends With $#usn8 Where 00 Contains Count ( * ) Contains 0x0]],(`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Order By `3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] Desc,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1) Asc,$@usn5[..$#usn7] Descending Skip #usn8 Is Not Null Is Not Null"), + octest:ct_string("With Distinct *,0x0[``..] As `2esn` Order By 12.e12 Ends With $`` Descending Skip 's_str' Starts With 9e0 Starts With usn2 Limit None(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])[Any(`3esn` In `2esn`[..01][..True] Where $`3esn`[..0xabc][..$7])][$#usn7] Where `1esn` Starts With 0xabc Starts With $usn2 Create ((#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})),usn2=((_usn3 :_usn4)-[`3esn`:`2esn`|`4esn`]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[:@usn6|:`7esn` *01..123456789]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07})) Remove Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null).`7esn`?,(_usn4 :_usn4)<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[ *..07{`6esn`:Count(*)[9e12..12.0]}]->(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}).``?"), + octest:ct_string("Return Distinct Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],010 Is Null Is Null As #usn8,All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] As `8esn` Order By $_usn3[_usn4..] Asc,0.12 Is Null Is Null Desc,`6esn` Ends With _usn4 Ends With False Ascending Skip 1.e1 =~.12 Limit `1esn`[$@usn6][07] Return $_usn4 Is Null Is Null,usn2 Starts With .0 Order By 9e1[$#usn8][$1000] Descending Limit #usn7 =~9e12"), + octest:ct_string("Return Distinct [#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]][Any(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..])..Single(usn2 In False[$usn1][0x0] Where 9e1 Is Not Null Is Not Null)],Extract(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|.e1[usn2..$_usn3][.0..$#usn7]) Skip 1.e1 Is Null Is Null Union All Merge ((usn1 {_usn4:#usn8 Is Not Null})<-[:`8esn` *0X7..]->(:`8esn`{@usn5:usn2 Ends With .e1 Ends With $`5esn`})<-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]->({`8esn`:usn2 Starts With .0,@usn5:Count(*) In 12 In `6esn`})) On Match Set @usn5 =$`2esn` Is Null,usn2+=`4esn` Starts With 0e0,``+={_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}[[$`2esn` =~9e12,`6esn` Is Null Is Null,usn2 Is Not Null]..[$`1esn` Starts With $`4esn` Starts With $_usn3]] Optional Match _usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Where 0.e0 Starts With .0 Starts With 123456789 Delete 999[..`1esn`][..07],0x0[@usn5][$#usn8] Union All Merge ((:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})) On Create Set usn1 =[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]][Any(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..])..Single(usn2 In False[$usn1][0x0] Where 9e1 Is Not Null Is Not Null)],`6esn` =12.e12 =~0X0123456789ABCDEF =~1.e1 Detach Delete 9e1[_usn3] Return Distinct $#usn7[..9e0][..123.654] As @usn6 Order By Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null] Desc,None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])[..[_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4]] Desc,None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] Desc Limit `6esn`"), + octest:ct_string("Delete 123.654 In $`7esn` Return Distinct *,12.e12 Contains `6esn`,12[``...e12] As `6esn` Order By 's_str' Is Not Null Descending,123.654[`4esn`..12] Asc,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) Ascending"), + octest:ct_string("Return Distinct `1esn`[0Xa] As usn1,$`` Contains $`2esn` Contains $usn2 Order By $usn1 Ends With _usn4 Ends With `2esn` Descending,$``[..$#usn7][..`6esn`] Asc Skip 07[999] Union Match ((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4))"), + octest:ct_string("Remove All(usn2 In 7[12] Where #usn8 Is Null Is Null).`5esn` Optional Match ``=(((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),((({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:#usn7|@usn5*..]-(`3esn` :usn2{`6esn`:#usn8 Is Null})<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Where $1000 Starts With $`3esn` Starts With 0.e0 Union All Remove (:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})-[`5esn`?:`6esn`|:#usn8{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]-(usn1 :`5esn`{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})<-[:`1esn`|`3esn`{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(@usn5 :`2esn`{`8esn`:0Xa[$`8esn`..][$_usn4..]}).``!,Any(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]).`2esn`!,`1esn`:`6esn`:_usn3 With Distinct [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) As usn2,#usn8 =~0.e0,$usn1 Limit 00 In @usn6 In 0 Where #usn8 =~.e0 Union Detach Delete 9e1[_usn3] Delete [usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null,$`2esn` Starts With .0 Starts With `1esn`,0x0[0.0] Optional Match _usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Where 0.e0 Starts With .0 Starts With 123456789"), + octest:ct_string("Return Distinct *,All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],12 In $usn1 In 7 As `8esn` Skip None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1) Limit $@usn5 Starts With .e1 Optional Match ((@usn5 {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})) Union All Unwind [#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null) As `3esn`"), + octest:ct_string("Merge ((#usn8 :`8esn`$#usn8)) Optional Match ((`1esn` {_usn4:`8esn` Is Null})),`2esn`=(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Union Return *,$`2esn` Ends With `6esn` As usn1,`2esn` Is Null As `` Order By `6esn` =~$_usn4 =~7 Asc Skip `5esn`[..True][..0.e0] With Distinct 0e0[01][$`7esn`],'s_str'[0..] As `4esn`,Filter(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) =~{#usn7:1000[12e12][`5esn`]} As _usn4 Skip 0x0[$0][7] Limit None(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])[Any(`3esn` In `2esn`[..01][..True] Where $`3esn`[..0xabc][..$7])][$#usn7] Where $`7esn`[$_usn4][.e0] Optional Match ((:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})),(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Where _usn3 Starts With 12e12 Starts With `5esn` Union All Return Distinct *,123.654[`4esn`..12] Order By 0.0[$usn2..] Asc,$7 Starts With 12.e12 Starts With $@usn6 Asc Limit $``[..\"d_str\"][..$#usn8] Merge `8esn`=(((@usn6 :`4esn`:`6esn`)<-[?{``:'s_str' Is Not Null,`8esn`:$`2esn` Is Null}]->(`1esn` :`2esn`)-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}))) On Match Set `8esn` ={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},None(@usn5 In 's_str'[0..] Where 1000[..`2esn`][..$@usn6]).`2esn`? =0X0123456789ABCDEF Is Not Null Is Not Null"), + octest:ct_string("Detach Delete #usn8[`8esn`..],$`5esn` =~usn1 Merge (`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) Create @usn5=(({`8esn`:`5esn` Contains #usn7 Contains 9e12})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`1esn` :`3esn`{#usn8:$usn2[0.e0],`8esn`:$`4esn`['s_str'..]})) Union All Merge _usn4=(`1esn` {@usn5:`2esn` Starts With $`4esn`}) On Match Set @usn5+=$0[123.654..0.e0],Any(`8esn` In 123456789 =~@usn6 Where .e1 =~_usn4 =~_usn4)._usn3? =01[..$`8esn`][..9e0],usn1 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) Match _usn4=(((:#usn7:`5esn`{`4esn`:$``[..\"d_str\"][..$#usn8]})<-[`6esn`? *00..0Xa]->(:#usn8:`1esn`$`7esn`)-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]}))) Remove Filter(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null).`7esn`,@usn6:``:usn2,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 07 Is Not Null Is Not Null).`6esn`?"), + octest:ct_string("Create ((`4esn` :`4esn`:`6esn`)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Optional Match (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Return *,$`5esn` Is Not Null,usn2 Contains $0 Contains .0 Order By 0.e0[$`4esn`..`2esn`] Descending,$123456789[12e12..9e0] Asc,$_usn3[_usn4..] Asc Skip $`7esn`[$_usn4][.e0] Limit Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..] Union All Match #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) Remove Extract(`6esn` In $`6esn`[``..][Count(*)..] Where False Contains 0 Contains $`6esn`|0X7['s_str'..][01..]).#usn8,{#usn7:.e0 Is Null Is Null,#usn7:0.0 Is Null Is Null}.#usn8!,[$@usn5 Ends With @usn5 Ends With 0xabc,12.0 In 123.654 In _usn4].`3esn`? Create ((`4esn` :_usn3{usn2:01[..0Xa][..12],`1esn`:999[..`1esn`][..07]})-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})),((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Union Detach Delete $usn2[0.e0]"), + octest:ct_string("Match ((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}))"), + octest:ct_string("Merge @usn5=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}) On Match Set `4esn` =$#usn8 Ends With `3esn` Ends With $`` On Create Set Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null).`` =01 In $@usn6,@usn5+=$@usn5 Ends With @usn5 Ends With 0xabc,Extract(`3esn` In 9e1 Contains $999 Where usn1[False..`5esn`][$1000..$12]).`7esn` =.e0[9e12..] Remove Single(#usn7 In 9e1[$`1esn`..] Where `3esn`[7..0.e0][0.0..123456789]).`7esn`?"), + octest:ct_string("Detach Delete $@usn6[_usn3..][$999..],$usn2 =~0.e0 =~@usn6 Unwind None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null As `4esn` Union Create `8esn`=(:#usn8:`1esn`{usn2:$`7esn`[.e1][12.0],``:$`1esn` Contains 1e1 Contains @usn6})-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(_usn3 :usn1:`3esn`)"), + octest:ct_string("Create ((:@usn5{`5esn`:`4esn` Starts With 0e0})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]})) Create (#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}),`8esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`))"), + octest:ct_string("Unwind $usn1 As `5esn` Union All Remove All(#usn7 In 9e0[$1000] Where 12e12 Starts With $0 Starts With $`2esn`).`8esn`?,``:@usn5,Single(`8esn` In 123456789 =~@usn6 Where ``[9e12][$999])._usn4! With Distinct *,0.e0 Is Not Null Is Not Null As _usn4 Order By $_usn3 Is Not Null Desc,[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)] Desc,Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Ascending Limit 1.e1[..123456789][..999] Where _usn4 Is Not Null Union Create `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),`8esn`=((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[``:`5esn`|:usn2{`5esn`:_usn4[0]}]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})) Optional Match (`8esn` {usn1:0e0 =~7 =~12.0,`7esn`:usn2 Starts With .0})<-[:_usn4]->(_usn4 {usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}),(@usn5 :`1esn`:_usn4)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})-[? *01..123456789]-(_usn3 :`6esn`:_usn3) Where 12.0 In 123.654 In _usn4 With $usn1,`1esn` Contains $999 Contains 0.0 As @usn6,$`6esn`[0e0..][010..] Order By 0.0 Ends With $`7esn` Descending,`3esn`[7..0.e0][0.0..123456789] Asc Where ``[9e12][$999]"), + octest:ct_string("Remove None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where `2esn` Starts With .e1 Starts With 9e12).usn1?"), + octest:ct_string("Delete 7 Is Not Null Match `5esn`=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']}),`7esn`=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}) Return Distinct .e1[.e1..`1esn`] As @usn5,$`4esn`['s_str'..] As ``,{``:00 In @usn6 In 0}[(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})] As `5esn` Skip .e1[..$`3esn`][..01] Union All Delete [$#usn7 Ends With 's_str' Ends With 0X7] Starts With (usn1 :@usn6)<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}) Starts With [`5esn` In `7esn`[$usn2..][$123456789..] Where $`1esn` Starts With Count(*)] Union All With Distinct .e1 In 0,Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])[[00[12..$`6esn`],$`4esn`['s_str'..]]..] Skip `3esn`[$123456789..][$usn2..] Where $@usn5[..$#usn7] Return *,Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) Contains [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where .0 Is Null Is Null|`3esn`[0x0..]] Contains [999[12.e12],#usn8 Is Null Is Null,1.e1 =~$_usn4] As `1esn`,12e12[12.0][False] Skip $`4esn`[`4esn`][Count(*)]"), + octest:ct_string("Remove {`1esn`:0.e0}.usn1,`7esn`(`7esn` Contains 9e0,0.12[$0..$usn2]).`4esn`? With 0x0[0.0] As ``,Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) Contains [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where .0 Is Null Is Null|`3esn`[0x0..]] Contains [999[12.e12],#usn8 Is Null Is Null,1.e1 =~$_usn4] As `1esn` Order By [#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Asc,usn2[12.e12..] Ascending,$@usn6 Is Not Null Is Not Null Desc Skip `5esn` Contains 1.e1 Contains .e12 Limit `7esn`[0x0][$`4esn`] Where `5esn` Contains #usn7 Contains 9e12 Union All Remove [0X0123456789ABCDEF Ends With 01 Ends With ``,$`4esn` Contains .e0 Contains 0Xa].`6esn` With Distinct $usn2 =~0.e0 =~@usn6 As _usn4,9e12[..1e1][..'s_str'] As @usn5 Order By 0X0123456789ABCDEF Is Not Null Is Not Null Asc,0X0123456789ABCDEF Is Not Null Is Not Null Asc Limit $7 In $usn1 In 999 Where 12.e12 Is Not Null Is Not Null Union All With Distinct *,.0 Contains .e12 Contains 0,1e1 Is Null Is Null As usn2 Detach Delete 01[..0Xa][..12],$`4esn`[..$`8esn`][..Null] Unwind 07[False] As @usn5"), + octest:ct_string("Delete $`1esn` =~999,`5esn` Contains `5esn` Contains $_usn3,$1000 Is Not Null Return Distinct *,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] As `1esn` Union All Create @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Unwind 010 Starts With 0 Starts With 0.0 As `5esn` Unwind 999[..`1esn`][..07] As `8esn` Union Create `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})),usn2=(#usn7 {_usn4:1.e1[`8esn`]})<-[usn2{`2esn`:$12 Starts With $usn1}]->(:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]})"), + octest:ct_string("With `3esn`[7..0.e0][0.0..123456789] As _usn4,$usn2[0.e0] As _usn3 Limit 9e1 Contains $999 Where @usn5 Is Not Null Unwind [@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] As #usn8"), + octest:ct_string("Create `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),({`1esn`:1.e1[`8esn`]})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`) Union Unwind 1.e1 Starts With 9e12 As `8esn` Unwind `5esn`[Count ( * )] As @usn6"), + octest:ct_string("Return 01[$`7esn`..$@usn6] As `2esn`,(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]} Order By `4esn` Contains 9e0 Desc,$12 =~0X7 =~0x0 Ascending,Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 1.e1 Ends With $_usn4 Ends With #usn7|$7 Starts With 12.e12 Starts With $@usn6) Starts With (:``:usn2)<-[`2esn`:`8esn`{`7esn`:$`4esn` Is Null Is Null}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]}) Starts With [01234567[Null..$_usn3],0[1e1][$usn1],False[..$`5esn`][..1e1]] Descending Limit None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]) Is Null Merge `7esn`=(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]}) On Match Set @usn6 =.e0 Is Null Is Null,_usn4(#usn7 Starts With $123456789 Starts With 12e12).`7esn`! =Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 1.e1 Ends With $_usn4 Ends With #usn7|$7 Starts With 12.e12 Starts With $@usn6) Starts With (:``:usn2)<-[`2esn`:`8esn`{`7esn`:$`4esn` Is Null Is Null}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]}) Starts With [01234567[Null..$_usn3],0[1e1][$usn1],False[..$`5esn`][..1e1]] On Match Set `2esn`+=Any(`6esn` In $`6esn`[``..][Count(*)..] Where 1e1 Ends With $`7esn` Ends With .0) Is Not Null Merge `2esn`=(:#usn8:`1esn`$`7esn`) On Match Set `8esn`+=`2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..] Union All Return Distinct *,[usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null As #usn8 Order By @usn5(Distinct) =~[_usn3[`5esn`..][usn2..],$#usn7 =~`2esn`] =~1.e1 Ascending Skip (:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] Limit 0Xa[010..$0][$`2esn`..999]"), + octest:ct_string("Merge (`6esn` :@usn6)-[usn2?:`3esn`]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) On Create Set #usn8 =$_usn4[$`6esn`..] Match #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) Union With 's_str' Order By $12[9e0..$999] Asc,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip #usn8[`8esn`..] Limit .12 In `8esn` In $#usn8 Where 12.e12 Contains #usn7 Contains $_usn4 Detach Delete 9e0[Count(*)..0.12][$`1esn`..12.0] Return *,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Is Not Null As `3esn`,$12 Starts With $0 Starts With $`8esn` As `3esn` Limit {_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null"), + octest:ct_string("Delete 's_str' In $_usn4,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null,12.0 Is Null Union Detach Delete All(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`])[None(`5esn` In 0X7 In $#usn7 Where 's_str' Starts With 1e1 Starts With $0)..(_usn3 :`7esn`)<-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]-(:`6esn`:_usn3)],0Xa[..Count ( * )][..$123456789],`2esn` Starts With .e1 Starts With 9e12 Unwind All(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7) Contains `2esn`(Distinct 0x0[0.0],0Xa =~False =~@usn5) Contains Single(#usn7 In $999 In 1e1 Where $@usn6 =~#usn7 =~True) As `8esn` Merge ``=(((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[`2esn`? *01234567..]->(:`2esn`)-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->({`7esn`:999 In 0e0}))) Union Merge (@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`}) On Create Set All(usn2 In 7[12] Where `2esn`[$12..]).#usn8? =[#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3],Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3|01 In $@usn6).`7esn`? ={`3esn`:.e1[..\"d_str\"][..$123456789]},[$`5esn` =~usn1,@usn6 Contains .12 Contains $usn1,999 In #usn8 In $``]._usn3 =[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )] On Match Set `5esn` =0.e0[0X0123456789ABCDEF..] Optional Match @usn6=(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})-[:@usn5|_usn3 *00..0Xa]-(:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(_usn4 :@usn5)"), + octest:ct_string("Create (_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1}) Union All Create (`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]}),usn1=(((`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]-(#usn8 :`6esn`:_usn3)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1))) Merge #usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) On Create Set @usn6+=$`1esn` =~1e1 On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Union Return 9e1 Ends With Count(*) Ends With $7 As `6esn` Limit _usn3 Contains 9e12 Contains `8esn` Remove [999 Is Not Null Is Not Null,123.654 In $`7esn`].`6esn`,[#usn7 In 9e1[$`1esn`..] Where $`7esn`[$_usn4][.e0]|.0[..'s_str'][..01234567]].usn1?,[`6esn` In $`6esn`[``..][Count(*)..]|.e12 Starts With $12 Starts With .e12].`7esn`! Optional Match _usn3=(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`}),`5esn`=((`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})) Where $`7esn`"), + octest:ct_string("Return Distinct *,$`3esn`[.e1][_usn4] Order By 12[None(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)..`5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12])][`5esn`(`2esn`[..01][..True])..(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})<-[? *7..]-(#usn7 :``:usn2)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})] Descending With Distinct usn2 =~$`` =~$`8esn` As `2esn`,'s_str'[0x0..1.e1] As `6esn`,$`5esn`[\"d_str\"..] As `5esn` Limit 01[07..][1.e1..] Union All Remove None(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null).`3esn`? Unwind \"d_str\"[#usn8] As @usn5 Union All Create _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),(((`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})<-[:`2esn`|`4esn` *0X0123456789ABCDEF..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(@usn6 :`2esn`{`4esn`:$999[0Xa..][9e1..]}))) Merge #usn8=({#usn7:12e12 In $`5esn`}) On Create Set @usn6+=None(`3esn` In `2esn`[..01][..True] Where usn1 In ``)[None(usn2 In 7[12] Where 12e12 =~$`7esn`)..],Single(#usn7 In 9e1[$`1esn`..] Where Count ( * ) In 0.12).@usn6? =7[0e0..] On Create Set ``+=$``[7],[@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1|$`4esn` Contains .e0 Contains 0Xa].`` =$`7esn`[123456789..$1000][Count ( * )..$7]"), + octest:ct_string("Remove `2esn`(.12[123.654..]).`4esn` Remove Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`).`8esn` Merge `2esn`=(((`7esn` )<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2))) On Match Set #usn8 =[`5esn` Contains `1esn` Contains usn1,$@usn5 Ends With @usn5 Ends With 0xabc] Is Null Is Null,`8esn` =[$@usn6 =~#usn7 =~True,$`1esn` Contains 1e1 Contains @usn6,9e1[..123456789]] Is Null On Create Set @usn6+=$#usn7 Ends With 's_str' Ends With 0X7,`6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn2 =$@usn5 Ends With @usn5 Ends With 0xabc"), + octest:ct_string("Merge `8esn`=((#usn8 :_usn3)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)) Remove `6esn`(Distinct 0x0 Starts With $`6esn`,.e12[@usn6..][010..]).`8esn`!,[@usn6 In 010[`5esn`] Where 1.e1[$usn1]|_usn3[0x0]].usn2? Union Create `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),({_usn3:@usn6 Contains .12 Contains $usn1}) Return Distinct *,12[None(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)..`5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12])][`5esn`(`2esn`[..01][..True])..(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})<-[? *7..]-(#usn7 :``:usn2)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})] As usn1,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) As `7esn`"), + octest:ct_string("Remove `6esn`(Distinct 9e1 Contains $999,_usn4 Is Not Null Is Not Null).`4esn`?,None(`8esn` In 123456789 =~@usn6 Where $usn1)._usn3! With Distinct $usn2 =~0.e0 =~@usn6 As _usn4,9e12[..1e1][..'s_str'] As @usn5 Order By 0X0123456789ABCDEF Is Not Null Is Not Null Asc,0X0123456789ABCDEF Is Not Null Is Not Null Asc Limit $7 In $usn1 In 999 Where 12.e12 Is Not Null Is Not Null"), + octest:ct_string("Unwind 0x0[12e12..$`7esn`] As `7esn` Union All Remove (usn1 :@usn6)<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}).@usn5! Union All Create @usn5=((({usn2:`2esn`[..$_usn3]})-[``?:_usn4]-(_usn4 :_usn4)<-[`6esn`? *..010{usn2:Null[..0]}]-(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0})))"), + octest:ct_string("Merge ((#usn7 :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) On Match Set All(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True]).`1esn`? =$usn2[`2esn`..$`1esn`],{usn1:#usn8 =~.e0,_usn3:$_usn4 Is Null Is Null}.`1esn` =$`7esn`[.e1][12.0] Remove usn2(Distinct _usn3 Starts With 12e12 Starts With `5esn`)._usn3!,{`6esn`:$`2esn` Starts With .0 Starts With `1esn`}.#usn7!,{`6esn`:Null =~`6esn`}._usn3! Union Delete [`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``|\"d_str\" Is Not Null] =~All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) =~[01 Ends With 0Xa Ends With 0X7],[#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Remove Any(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]).@usn6?,@usn5(Distinct Count ( * ) Ends With $123456789).`6esn`? Union All With 12.e12[..$`6esn`] As `7esn`,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] As ``,1.e1 Contains `6esn` Contains 0.e0 Skip Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])] Where 999 Contains $1000 Detach Delete Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null) Is Not Null Is Not Null,010 Starts With $`` Starts With 0e0"), + octest:ct_string("Match ((#usn7 :_usn3$usn1)-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(`3esn` :usn2{`6esn`:#usn8 Is Null})),`4esn`=({`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}) Where .e0 Match (((`6esn` :#usn7:`5esn`)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(_usn4 :#usn7:`5esn`))),`1esn`=(`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) Detach Delete False[..$`5esn`][..1e1],`4esn` Contains 9e0,12[$`5esn`..][False..] Union All Delete 0xabc =~@usn5 =~$usn1,[$usn1 Ends With _usn4 Ends With `2esn`][@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)..[#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1]][Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..])..Extract(#usn7 In 9e1[$`1esn`..] Where $999[``])],1000[$7..][_usn4..] With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Order By 1.e1 In 1000 In _usn3 Desc,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Descending,123.654 Is Null Is Null Asc Where _usn4[`7esn`] Union All Optional Match ((`` {#usn7:#usn8 Is Not Null Is Not Null})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`2esn` :@usn5)<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Remove {`6esn`:Null =~`6esn`}._usn3!,[usn2 In False[$usn1][0x0] Where `4esn` Starts With 0e0].`6esn`!,[010[`5esn`],0Xa[..Count ( * )][..$123456789]]._usn3"), + octest:ct_string("Detach Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),{@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Delete 9e1[.12][`7esn`],$12[$usn1..][Count(*)..] Union Merge ((:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Detach Delete All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[usn2(Distinct #usn7 Contains $0 Contains $usn2,0.e0)..]"), + octest:ct_string("Unwind _usn3[`5esn`..][usn2..] As #usn7 Unwind $1000 Starts With $`3esn` Starts With 0.e0 As usn1 Union Remove All(#usn7 In 9e1[$`1esn`..] Where Count ( * ) In 0.12).#usn7?,All(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`).#usn8,{`4esn`:$999[0Xa..][9e1..]}.`3esn` Detach Delete $123456789[.0..],All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] Union Match (((@usn6 )<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null}))) Remove {`4esn`:$_usn4 Starts With $1000 Starts With 12,`5esn`:0 Ends With 12.e12 Ends With usn2}.``?,Single(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)._usn4?"), + octest:ct_string("Create ((#usn7 {`6esn`:$`2esn` Contains Count(*)})-[?:_usn4]->(`2esn` :usn2)) Detach Delete @usn6[..$@usn5] Create usn1=((#usn8 :_usn3)<-[? *12..{#usn7:`6esn` Ends With _usn4 Ends With False,usn1:1000[12e12][`5esn`]}]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07})),`1esn`=((`6esn` {`3esn`:$`2esn`[0..123456789][``..`1esn`],`7esn`:$0[0Xa..$123456789]})<-[? *00..0Xa]->(usn2 :@usn5)-[?:`2esn`|`4esn` *0Xa{#usn7:1.e1 Starts With 9e12}]-(:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) Union All With Distinct `2esn`[$usn2][12.0],Single(#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6])[Filter(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])..] As _usn4 Limit `4esn` In 010"), + octest:ct_string("Delete $123456789[0X0123456789ABCDEF],'s_str'[0..] Union Create usn2=((#usn7 {`8esn`:`7esn` In 010 In usn1})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})),@usn5=(:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']})"), + octest:ct_string("Optional Match #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Match #usn8=((`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5))"), + octest:ct_string("Unwind $12 Starts With $usn1 As `4esn` Return Distinct *,@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])],[#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) As usn2 Order By $7 Starts With 12.e12 Starts With $@usn6 Asc,12e12 In 123456789 Asc Skip [0.0 Is Not Null,$`4esn`[`8esn`],$123456789[12e12..9e0]] =~.e12 Limit _usn4 Ends With _usn4 Ends With 9e0 Merge ``=((`4esn` :`4esn`:`6esn`)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})) Union Detach Delete $123456789[12e12..9e0] Remove [12.0 Starts With .12 Starts With `6esn`,usn2 Contains $0 Contains .0,$#usn7 In $@usn5 In $`1esn`].`7esn`!,Single(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]).`3esn`? Union Unwind .0[.e12..] As usn1 Remove `5esn`($`4esn` In 1.e1 In #usn7,0Xa[Count(*)..]).`2esn`,[$0[123.654..0.e0],01234567[Null..$_usn3]]._usn4!,{usn1:#usn8 =~.e0,_usn3:$_usn4 Is Null Is Null}.`1esn`"), + octest:ct_string("Detach Delete (`4esn` :#usn7:`5esn`{_usn4:0Xa Ends With $`3esn` Ends With $1000})-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})[[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]|`1esn`[0.12..][@usn6..]]..][{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}..],07 Contains `3esn` Contains `7esn`,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)"), + octest:ct_string("With `2esn`[$usn2][12.0],Single(#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6])[Filter(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])..] As _usn4 Order By $`7esn`[..@usn6] Ascending Limit [`2esn` Is Null] Is Null Is Null Where usn1[...e12][..1.e1] Union All Unwind 0.12[$0..$usn2] As `8esn` Remove {_usn3:usn2 Ends With .e1 Ends With $`5esn`}.#usn8,(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})<-[@usn5:_usn4 *0x0..]->(:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)._usn3 Return 0X7[`2esn`..] Order By 0[@usn5..$#usn7] Ascending"), + octest:ct_string("Merge (`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) Return *,`6esn` =~Null As `4esn`,.e0 Starts With $@usn6 Starts With $7 As `5esn` Order By [`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]] In (`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(:#usn7:`5esn`)-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:#usn8:`1esn`$`7esn`) In {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]} Asc,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] Desc Skip $`3esn`[$_usn4..0Xa] Union All Optional Match #usn8=(`5esn` :`7esn`)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1)<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}),usn2=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) Remove Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|@usn5 Contains 9e0)._usn4? With Distinct *,`3esn`[...e1] Where 9e0 Contains $12 Contains `3esn` Union All With Distinct 0.e0['s_str'..][01234567..] As `1esn`,None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,.0[$``..0X7] Skip usn2 =~$`` =~$`8esn` With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Where 12.e12 Ends With $`` Unwind (@usn6 :`8esn`)<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`}) Ends With #usn8(Distinct 12.e12 Contains #usn7 Contains $_usn4,01[`3esn`..][Count(*)..]) Ends With [`5esn`[..True][..0.e0],12 In $usn1 In 7,$`8esn`[123456789..][$@usn5..]] As `6esn`"), + octest:ct_string("With Distinct 1.e1[$`3esn`][0Xa] As @usn5 Order By (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Ascending,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null Descending,9e12 =~@usn6 Asc Skip usn1[$@usn5] Where $@usn6[00] Union Delete All(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0)[(:#usn7:`5esn`)<-[#usn8? *0Xa]-(`5esn` :`5esn`{#usn7:``[$`3esn`]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc})..],9e1[`1esn`..0][999..1e1],Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5) Contains [`8esn` In 123456789 =~@usn6 Where .e12[@usn6..][010..]|Count(*) Is Not Null Is Not Null] Contains ({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})"), + octest:ct_string("Unwind Count(*) In #usn8 In \"d_str\" As `6esn` Match (`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Where $@usn6 Ends With 12.e12 Ends With @usn5 Union All Remove [`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa].`1esn`? Create (((:_usn4{`8esn`:01234567[Null..$_usn3]})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->(`5esn` :`3esn`{``:`` Is Null,`8esn`:$@usn6[$0..9e12][.e12..Null]})<-[`7esn`:`4esn`|@usn5 *12..]->({`4esn`:.e1[..$`3esn`][..01]}))) Union All Create `8esn`=((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[``:`5esn`|:usn2{`5esn`:_usn4[0]}]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})),`2esn`=(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[`4esn`:usn2]->(`3esn` :_usn4) Detach Delete Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])],123.654 Contains @usn5 Contains $`5esn`"), + octest:ct_string("With 9e12[..`3esn`][..0X0123456789ABCDEF] As `5esn`,`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] As usn1 Order By .e1[..$`3esn`][..01] Ascending,'s_str' Is Not Null Descending Where $#usn7[..$`4esn`][..01] Optional Match (((`6esn` :#usn7:`5esn`)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(_usn4 :#usn7:`5esn`))),`1esn`=(`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) Merge `8esn`=(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) On Match Set `3esn`+=[_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1|999 Contains $1000] Starts With Single(`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``),`2esn`+=\"d_str\" In @usn5 In $@usn5 On Create Set `7esn` ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]} Union All Remove Single(#usn7 In 9e0[$1000] Where Count ( * ) In True In @usn5).`3esn`,{`3esn`:9e1 Ends With Count(*) Ends With $7}._usn4!,(`` :`7esn`)-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(usn2 :`5esn`).`2esn`! Unwind True Contains 's_str' Contains $usn1 As _usn4 Merge `4esn`=({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) Union All Create _usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4)))"), + octest:ct_string("Merge (:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]})<-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(`2esn` :`1esn`:_usn4) On Match Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null On Create Set Any(#usn7 In True Contains 's_str' Contains $usn1 Where $12[9e0..$999]).`5esn`! =1.e1[12..][$`4esn`..],Any(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null).`2esn` =All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]) =~All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where .e12[..999][..@usn5]) =~Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4),`2esn` =1e1 Ends With $`2esn` Remove Filter(#usn8 In `7esn` Where $`3esn`[..0X0123456789ABCDEF][..7]).@usn5?,Extract(@usn6 In False Contains 0 Contains $`6esn`|$7 In 0.e0 In 999).`2esn`!,Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null).usn1 Union Detach Delete `2esn`[$@usn6..][Null..],$1000 Starts With $`7esn`"), + octest:ct_string("Return Count ( * ) In True In @usn5 As `2esn`,$_usn3[$12] Order By $@usn6 =~0xabc =~$999 Descending,Null Ends With _usn4 Ends With 0.0 Asc,`3esn`(Distinct $123456789[...12][..@usn6])[{usn2:$`2esn` Is Null,#usn8:.0 Is Null Is Null}][#usn7(Distinct $@usn6 Is Not Null Is Not Null,``[7.._usn3])] Asc Skip usn2 =~7 Limit 0[@usn5..$#usn7] With *,Extract(`6esn` In $`6esn`[``..][Count(*)..] Where $@usn5 Starts With `5esn` Starts With 01234567|0.e0[..$7]) Is Null Is Null Skip 0xabc In 123456789 In 0x0 Limit _usn4 Starts With 1000 Starts With $usn2 Where 123.654[$0..0X7][Null..#usn8] With Distinct 0e0[01][$`7esn`],'s_str'[0..] As `4esn`,Filter(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) =~{#usn7:1000[12e12][`5esn`]} As _usn4 Skip 0x0[$0][7] Limit None(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])[Any(`3esn` In `2esn`[..01][..True] Where $`3esn`[..0xabc][..$7])][$#usn7] Where $`7esn`[$_usn4][.e0] Union With Distinct [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`) Merge (_usn3 :`7esn`) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] On Create Set #usn7+=Null[.12..12e12],Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]).`1esn`! =[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)],@usn6 =usn2[1.e1]"), + octest:ct_string("Optional Match `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),(`2esn` $`6esn`) Delete `5esn`(Distinct .12[123.654..]),.e1[..$`3esn`][..01],9e12[..1e1][..'s_str'] With $usn1,`1esn` Contains $999 Contains 0.0 As @usn6,$`6esn`[0e0..][010..]"), + octest:ct_string("With Distinct *,0.0[$@usn5.._usn4] As `1esn`,07 Is Null As #usn7 Order By 12.e12 Contains `6esn` Ascending,[$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1] Asc,Extract(`3esn` In `2esn`[..01][..True] Where 00[01234567][False]|$`3esn` Ends With 01234567) Starts With (_usn4 :_usn4)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}) Starts With Extract(@usn6 In 010[`5esn`] Where $`2esn` Starts With `4esn` Starts With $usn1) Asc Limit 9e1"), + octest:ct_string("Unwind 123.654[$@usn5..] As @usn5"), + octest:ct_string("Match (`3esn` {_usn4:123.654 In 12})-[`4esn`?:_usn4 *7..]-(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})<-[ *00..0Xa]->(#usn7 :usn1:`3esn`),(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]}) With 's_str' Where 's_str'[0..] Return *,[00[12..$`6esn`],$`4esn`['s_str'..]] Is Null,9e1[$#usn8][$1000] Limit $`3esn`[..$1000][..$123456789] Union Match (((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))),({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}) Where 1000[0e0][1e1] Merge (:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]})<-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(`2esn` :`1esn`:_usn4) On Match Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null On Create Set Any(#usn7 In True Contains 's_str' Contains $usn1 Where $12[9e0..$999]).`5esn`! =1.e1[12..][$`4esn`..],Any(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null).`2esn` =All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]) =~All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where .e12[..999][..@usn5]) =~Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4),`2esn` =1e1 Ends With $`2esn` Union With 0Xa[$`8esn`..][$_usn4..],0e0[``]"), + octest:ct_string("Return Distinct $0[010..] As `` Skip All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) Is Not Null Is Not Null Union Remove All(`8esn` In 123456789 =~@usn6 Where $`5esn` =~$`8esn` =~usn2).@usn6?,Filter(@usn6 In 010[`5esn`] Where @usn6[9e12]).`2esn` Remove Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`5esn` In _usn3 In 0.0).`8esn` Remove Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]).`3esn`!"), + octest:ct_string("Merge #usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})))"), + octest:ct_string("Unwind 0xabc =~@usn5 =~$usn1 As `8esn`"), + octest:ct_string("With Distinct 9e1[usn1..0x0][12.e12..12.0] Limit 0.e0[..$999][..0Xa] Delete Extract(#usn7 In 9e0[$1000] Where 00[12..$`6esn`]|$@usn6 Ends With `1esn`) =~[7 =~`4esn`,7 =~`4esn`],@usn5[$`6esn`..][$999..],1e1 Ends With $`2esn` Optional Match `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),(`2esn` $`6esn`) Where 7 =~`4esn` Union All Unwind Count(*)[``..#usn8][`3esn`..0xabc] As @usn5"), + octest:ct_string("Return [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Any(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`),usn2[usn2..0X7] As `1esn` Order By 's_str'[0x0..1.e1] Asc Limit 0xabc[..$1000][..`5esn`] Union All Optional Match ((usn2 {`5esn`:$@usn5 In 12e12 In 01})-[`8esn`:#usn7|@usn5 *00..0Xa]-(_usn3 {usn1:0x0 Starts With $`6esn`})),((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[_usn3?:`8esn` *1000..0X0123456789ABCDEF{@usn5:07 Is Not Null Is Not Null}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Remove [12e12 =~1e1].`2esn`!"), + octest:ct_string("Return Distinct 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] As #usn8,(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null},$#usn7 =~`2esn` As `4esn` Limit Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Remove #usn7:usn2,[07[_usn3..][`6esn`..],$usn1 Ends With _usn4 Ends With `2esn`,False[$`4esn`..]].`3esn`?,[`6esn` Ends With _usn4 Ends With False].`4esn`!"), + octest:ct_string("Unwind (`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Is Not Null As `4esn`"), + octest:ct_string("Remove (:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}).`6esn`!,[01 Is Null,9e1[..123456789],010 Starts With $`` Starts With 0e0].`6esn`?,(:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[usn2 *0X0123456789ABCDEF..]->(usn2 :`7esn`)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}).`5esn`? Return *,[`8esn`[..$#usn8],1.e1 Starts With 9e12] Ends With [`6esn` In $`6esn`[``..][Count(*)..]|.e1[12.0..]] Ends With Any(usn2 In 7[12]),$`6esn` Starts With .e12 Starts With $`1esn` As @usn6 Skip $`5esn`[$`3esn`..] Limit Single(@usn6 In 010[`5esn`] Where Count(*)[9e12..12.0])[(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)][`7esn`] Union All With Distinct Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],usn2[12.e12..] Skip @usn5[0.0..0X7] Limit 07 Where 12[123.654..] Unwind 12e12 In 123456789 As `7esn`"), + octest:ct_string("Delete All(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0)[(:#usn7:`5esn`)<-[#usn8? *0Xa]-(`5esn` :`5esn`{#usn7:``[$`3esn`]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc})..],9e1[`1esn`..0][999..1e1],Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5) Contains [`8esn` In 123456789 =~@usn6 Where .e12[@usn6..][010..]|Count(*) Is Not Null Is Not Null] Contains ({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]}) Union With *,00[False..0e0] As _usn3 Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc Skip (`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}) =~[12 In $usn1 In 7] =~Filter(@usn5 In 's_str'[0..] Where 0.e0) Limit [_usn3 Ends With 7 Ends With $`1esn`,True Contains .e12,usn2 Is Not Null] Contains [$`2esn`[.0..][0.0..]] Contains (`6esn` :`8esn`)<-[_usn3 *0X0123456789ABCDEF..]-(#usn8 :`2esn`)-[`7esn`:#usn8|:`3esn` *0..01{`3esn`:07[_usn3..][`6esn`..],@usn6:``[usn1][`5esn`]}]->(:_usn3{_usn4:.e1[7..][9e0..]}) Where `2esn` Starts With $`7esn` With Distinct 999[@usn5..][Null..] Limit None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Where @usn5 Contains 9e0 Union All Optional Match `1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}))"), + octest:ct_string("Optional Match `8esn`=(:_usn3{usn1:#usn7[..07]})-[?:`7esn`|:`2esn`{@usn5:usn2[1.e1],@usn6:$#usn8 Starts With .e12 Starts With 1.e1}]->({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7}) Remove (:#usn8:`1esn`{usn2:$`7esn`[.e1][12.0],``:$`1esn` Contains 1e1 Contains @usn6})-[`` *1000..0X0123456789ABCDEF]-(`` :`7esn`)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:usn2{`6esn`:#usn7[$`3esn`..$1000][0.0..`2esn`],``:010 Starts With 0 Starts With 0.0}).`4esn`!,Extract(`5esn` In 0X7 In $#usn7 Where @usn6 Is Not Null Is Not Null).@usn5?,Any(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).#usn7! Return 0.e0[..$7] As _usn3,0xabc =~@usn5 =~$usn1 Skip $@usn6[00] Limit `2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..]"), + octest:ct_string("Merge ((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) On Create Set `5esn` =$1000[$`4esn`..False],`6esn` =[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`],`2esn` =12.0 Is Null Create (`6esn` {`2esn`:$`3esn` Ends With 01234567}),usn2=({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2)<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(_usn4 :@usn5) Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3) Union All Unwind [#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]][Any(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..])..Single(usn2 In False[$usn1][0x0] Where 9e1 Is Not Null Is Not Null)] As @usn6 Union All Unwind True[$_usn3..] As usn2"), + octest:ct_string("Match ((#usn7 {`6esn`:$`2esn` Contains Count(*)})-[?:_usn4]->(`2esn` :usn2)) Detach Delete (`2esn` :usn1:`3esn`)-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})<-[?:`3esn`]-(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})[({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})],0X7 In $#usn7,Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 999 Contains $1000)[(`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8})][#usn8($1000 Is Not Null,$`5esn`[0X7..010][`7esn`..'s_str'])] Union Unwind 07[999] As @usn6 Merge ``=(:_usn3{`7esn`:$999 Ends With .e0})<-[`8esn`?:`2esn`|`4esn`{usn2:#usn8[`6esn`..][$``..]}]-(@usn6 {`6esn`:$`5esn` =~usn1,`5esn`:$`` Starts With $1000 Starts With @usn6})-[?{_usn3:010[`5esn`],_usn4:#usn8 =~.e0}]-(#usn8 :`3esn`{`5esn`:$@usn6 Ends With `1esn`}) On Create Set Filter(usn2 In 7[12] Where $`6esn`[1.e1][$_usn3]).``? =0Xa[$`8esn`..][$_usn4..],_usn4+=0X0123456789ABCDEF In $7 On Create Set Single(@usn6 In 010[`5esn`] Where 123.654).`6esn`? =#usn7 Starts With $123456789 Starts With 12e12,`2esn` =Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[..[#usn7 In True Contains 's_str' Contains $usn1 Where Count(*) Ends With usn1]][..Filter(usn2 In 7[12] Where #usn7[0.e0..]['s_str'..])] Return Distinct .e1 =~_usn4 =~_usn4,`6esn`[..$`4esn`] As `5esn`,True[0xabc..01234567][$`8esn`..$@usn6] As #usn7 Order By @usn5[0..] Descending,Count(*) Is Null Ascending,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] Descending Union With Distinct `2esn` Starts With 12.e12 Starts With 12.0 As _usn4,$``[..\"d_str\"][..$#usn8] As `6esn` Order By $`3esn` Ends With 01234567 Ascending,`3esn`[0X0123456789ABCDEF..][07..] Asc Skip #usn8[`8esn`..] Limit $_usn4 Starts With $1000 Starts With 12 Where .e12[@usn6..][010..] Create @usn5=(({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(usn1 :_usn3{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})),(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})"), + octest:ct_string("Remove {`4esn`:0.0 Contains #usn7,`1esn`:$999[``]}.`5esn`? Remove All(`8esn` In 123456789 =~@usn6 Where $`5esn` =~$`8esn` =~usn2).@usn6?,Filter(@usn6 In 010[`5esn`] Where @usn6[9e12]).`2esn` Detach Delete $@usn6[_usn3..][$999..],$usn2 =~0.e0 =~@usn6"), + octest:ct_string("Merge (#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) On Match Set Extract(@usn5 In 's_str'[0..] Where @usn6 In .12 In `3esn`|$@usn6[00]).`8esn`? =9e0 Contains $12 Contains `3esn`,_usn4+=0x0[@usn5][$#usn8],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null On Match Set `1esn` =[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]) Match `8esn`=(((#usn7 {`6esn`:$`2esn` Contains Count(*)})<-[#usn8{`5esn`:$@usn5 In 12e12 In 01}]->(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}))) Where $#usn7 In $@usn5 In $`1esn` Union All With Distinct usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Order By $`7esn`[..@usn6] Ascending Skip 12.0 =~@usn6 =~$`2esn` Where 0e0[``..$1000][$7..12.e12] Union Detach Delete $`5esn`[..00] Unwind `8esn`(Distinct #usn8 Is Not Null Is Not Null,`2esn` In 9e0 In 7) Starts With None(usn2 In 7[12] Where 123456789 =~12 =~'s_str') As @usn6 Unwind [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] As usn2"), + octest:ct_string("Merge ({`1esn`:1.e1[`8esn`]})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`) On Create Set @usn6+=7 Ends With 01234567 Ends With 0Xa,`2esn` =0Xa =~False =~@usn5 On Match Set `5esn` =$1000[$`4esn`..False],`6esn` =[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`],`2esn` =12.0 Is Null Union Remove Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|@usn5 Contains 9e0)._usn4? Create ((#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[`7esn`? *0Xa{@usn5:123.654 Is Not Null}]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`})) Union Return Distinct *,12[``...e12] As `6esn` Limit 0x0[Count(*)..@usn6][Count(*)..0Xa] Delete 0X0123456789ABCDEF[..0xabc],All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where False[$usn1][0x0]) In [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null|9e12[9e1]] In [12.0 Is Null,$_usn4[..$_usn4][..`7esn`]],$`4esn` Starts With 0 Starts With `7esn` Merge _usn3=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']}) On Match Set Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]|$``[..\"d_str\"][..$#usn8]).@usn6 =[$usn1[`2esn`..][$`2esn`..]][(`3esn` :usn2)-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})..`2esn`(Distinct $@usn6 Is Not Null Is Not Null,Count ( * ) Ends With $123456789)],None(#usn8 In `7esn` Where ``[7.._usn3]).@usn6? =`6esn`,Any(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])._usn4! =`` Is Null"), + octest:ct_string("Return *,`3esn`[...e1] Detach Delete [0x0 Ends With 12.0 Ends With `5esn`,12e12 Ends With 0.0 Ends With usn1,00[1.e1..]] Ends With All(#usn8 In `7esn` Where $`3esn`[..0xabc][..$7]) Ends With Any(@usn6 In False Contains 0 Contains $`6esn` Where `6esn`[$1000][`3esn`]),@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])] Union All Create @usn5=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),#usn7=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))) Union Detach Delete Extract(`6esn` In $`6esn`[``..][Count(*)..] Where $@usn5 Starts With `5esn` Starts With 01234567|0.e0[..$7]) Is Null Is Null Optional Match `1esn`=(`5esn` :`5esn`{#usn7:``[$`3esn`]}) Where $`8esn`[..True][.._usn4]"), + octest:ct_string("Unwind (#usn7 {`3esn`:1.e1 In 1000 In _usn3,#usn7:`2esn` Starts With .e1 Starts With 9e12})-[? *..010{#usn8:False Is Null}]-(:`5esn`)[Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..])] As _usn3 With *,`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] As @usn5 Where 07 Contains `3esn` Contains `7esn` Detach Delete 999[12.e12] Union Remove Any(#usn7 In 9e1[$`1esn`..] Where 999 In #usn8 In $``).`7esn` Merge (:`4esn`:`6esn`{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]-(:`6esn`:_usn3)<-[@usn5? *999..{usn1:.e12[$@usn6..00][01234567.._usn3],`1esn`:`7esn` Contains 9e0}]-({@usn6:999 Contains 0 Contains $`5esn`,#usn7:999[..`1esn`][..07]}) Delete Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null],9e1 =~123456789 =~999,.e12[$@usn6..00][01234567.._usn3]"), + octest:ct_string("With Distinct $usn2 =~0.e0 =~@usn6 As _usn4,9e12[..1e1][..'s_str'] As @usn5 Order By 0X0123456789ABCDEF Is Not Null Is Not Null Asc,0X0123456789ABCDEF Is Not Null Is Not Null Asc Limit $7 In $usn1 In 999 Where 12.e12 Is Not Null Is Not Null"), + octest:ct_string("Merge `4esn`=({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) Match ((`2esn` :_usn3)-[? *0xabc{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})),({@usn5:$`5esn` Is Not Null Is Not Null})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Unwind 01[`3esn`..][Count(*)..] As _usn4"), + octest:ct_string("Delete 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2],$`3esn` Ends With 1000,[$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..] Remove All(@usn6 In False Contains 0 Contains $`6esn` Where usn1[False..])._usn3! Remove `8esn`:``:usn2 Union All Create (#usn7 {`6esn`:$`2esn` Contains Count(*)})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`}) Return Distinct *,1e1 Contains 0.e0 Contains 9e1 Limit None(#usn7 In 9e0[$1000] Where $1000 Is Not Null) Is Null Is Null Create ((#usn7 {`1esn`:$`4esn` Is Null Is Null})<-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(`6esn` :`8esn`)) Union Remove @usn6:`2esn` Detach Delete {`2esn`:12.e12 Is Not Null Is Not Null,``:Count ( * ) In True In @usn5} Ends With {`7esn`:$1000 Starts With $`3esn` Starts With 0.e0,``:$`2esn` Is Null} Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]],$`5esn`[0X7..010][`7esn`..'s_str']"), + octest:ct_string("Unwind 00[False..0e0] As `6esn` Union Create `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Union Unwind _usn4(Distinct 0X0123456789ABCDEF Ends With 01 Ends With ``,$`3esn`[..0xabc][..$7]) In Single(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0) In Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7]) As `1esn` Return Distinct *,`` =~.12 As #usn7 Order By Extract(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With [#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4] Ends With [False[$`4esn`..],$#usn7[..0Xa]] Asc,@usn6[..$@usn5] Ascending Skip \"d_str\" Is Null Is Null Limit `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Is Null Match `6esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Where `` Is Null"), + octest:ct_string("Create `3esn`=(`` {`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']})<-[`6esn`? *00..0Xa]->(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}),usn1=((`1esn` {``:0.0 Is Not Null,`1esn`:``[$`3esn`]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})) Unwind $123456789 Starts With 0.12 Starts With Null As #usn7 Union All Delete 12[..$999][..$`2esn`],Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])] Create `2esn`=(((:`6esn`:_usn3)<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})-[#usn7?:`7esn`|:`2esn` *..07]-(#usn7 {#usn7:1.e1 Starts With 9e12}))),((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(_usn3 :usn1:`3esn`)<-[`7esn`? *..010{usn2:12 Ends With Count ( * ),#usn8:`8esn` Contains `2esn` Contains .0}]->({`6esn`:'s_str' Contains 12.e12 Contains $`4esn`})) Remove Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 7[0e0..]).`8esn`!,(_usn4 :`1esn`:_usn4)<-[?:`6esn`|:#usn8 *00..0Xa]-(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]}).@usn5! Union Merge usn1=(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[usn1:_usn4]-(:`4esn`:`6esn`) On Match Set _usn3 =$``[01234567..][.0..]"), + octest:ct_string("With Distinct `2esn` Starts With 12.e12 Starts With 12.0 As _usn4,$``[..\"d_str\"][..$#usn8] As `6esn` Order By $`3esn` Ends With 01234567 Ascending,`3esn`[0X0123456789ABCDEF..][07..] Asc Skip #usn8[`8esn`..] Limit $_usn4 Starts With $1000 Starts With 12 Where .e12[@usn6..][010..] Create @usn5=(({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(usn1 :_usn3{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})),(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]}) Union Merge ``=(:_usn3{`7esn`:$999 Ends With .e0})<-[`8esn`?:`2esn`|`4esn`{usn2:#usn8[`6esn`..][$``..]}]-(@usn6 {`6esn`:$`5esn` =~usn1,`5esn`:$`` Starts With $1000 Starts With @usn6})-[?{_usn3:010[`5esn`],_usn4:#usn8 =~.e0}]-(#usn8 :`3esn`{`5esn`:$@usn6 Ends With `1esn`}) On Match Set `7esn`+=$`5esn` Is Not Null,Any(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7])._usn3 =.e12[`2esn`..010],`8esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null Merge `8esn`=(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) Merge _usn3=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) On Match Set @usn6+=(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1+=999 Is Not Null Is Not Null"), + octest:ct_string("Detach Delete {#usn7:usn1 In ``}[None(`3esn` In `2esn`[..01][..True])..Extract(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..])] With 9e0[..123456789][..$`3esn`] Order By 01 Contains usn2 Contains 0X0123456789ABCDEF Desc Limit 00 =~Count ( * ) Return 123456789 =~$999 Order By $7[01..$123456789][#usn7..12.0] Descending,.12[..usn2][..12e12] Descending"), + octest:ct_string("Unwind 01[`3esn`..][Count(*)..] As _usn4 Union All Optional Match `3esn`=(`` {`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']})<-[`6esn`? *00..0Xa]->(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}),usn1=((`1esn` {``:0.0 Is Not Null,`1esn`:``[$`3esn`]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})) Where 01234567[\"d_str\"..`4esn`]"), + octest:ct_string("Remove `5esn`:@usn5,{#usn8:$0[123.654..0.e0]}.@usn6!,{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF}.#usn8! Union All Match usn1=(((:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[@usn6:`7esn`|:`2esn` *..07{`6esn`:$_usn4 Is Null Is Null,``:1e1 Ends With $`7esn` Ends With .0}]-(`5esn` :`3esn`{``:`` Is Null,`8esn`:$@usn6[$0..9e12][.e12..Null]}))),(`2esn` :`1esn`:_usn4)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}) Create @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) Merge ((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})) On Create Set `2esn`+=0X0123456789ABCDEF In .12,`1esn` =$`7esn` In False In $`1esn`"), + octest:ct_string("Merge ((_usn3 :_usn4)) On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Return Distinct *,9e12 =~@usn6,`4esn` Contains 9e0 Order By 1000[..$1000] Descending Skip Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Limit {``:123.654 In $`7esn`}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..None(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6 =~#usn7 =~True)]"), + octest:ct_string("Unwind $_usn4[9e0..][$1000..] As `5esn` Merge usn2=(@usn5 :@usn6{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[`8esn` *0xabc]-(:_usn3{_usn4:.e1[7..][9e0..]}) On Match Set None(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`).`7esn`! =07[..07][..0X7],`4esn`:`1esn`:_usn4 Remove [@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|$`3esn` In $usn2].usn1,[#usn8 In `7esn` Where $`5esn` Is Not Null Is Not Null].#usn8"), + octest:ct_string("Delete .e1[7..][9e0..],$`5esn` In _usn3 In 0.0 With 0x0[0.0] As ``,Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) Contains [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where .0 Is Null Is Null|`3esn`[0x0..]] Contains [999[12.e12],#usn8 Is Null Is Null,1.e1 =~$_usn4] As `1esn` Order By [#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Asc,usn2[12.e12..] Ascending,$@usn6 Is Not Null Is Not Null Desc Skip `5esn` Contains 1.e1 Contains .e12 Limit `7esn`[0x0][$`4esn`] Where `5esn` Contains #usn7 Contains 9e12 Union Unwind 07[999] As _usn3 Return Distinct 9e12[..`3esn`][..0X0123456789ABCDEF] As `5esn`,`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] As usn1 Order By $@usn5[`1esn`..][$999..] Asc,12 Starts With $123456789 Starts With .e12 Ascending,1.e1[$`3esn`][0Xa] Desc"), + octest:ct_string("Remove [usn2 In False[$usn1][0x0] Where `4esn` Starts With 0e0].`6esn`!,(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[ *01234567..]->(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`}).usn2,(:``:usn2{`3esn`:12.0 Starts With .12 Starts With `6esn`,``:$`4esn`[0..][999..]})-[@usn6?{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null}]->(:`7esn`{`2esn`:$`3esn` Ends With 01234567}).`6esn` Unwind 9e12[..1e1][..'s_str'] As @usn6 Union All Merge `4esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) Detach Delete 0[$`5esn`] Union Unwind False[$usn1][0x0] As usn2 Delete $_usn4 Starts With $1000 Starts With 12,@usn5[$`7esn`..`5esn`],usn1 Unwind 12['s_str'][01] As `6esn`"), + octest:ct_string("Unwind 123.654 In 12 As `7esn`"), + octest:ct_string("Unwind $_usn4 =~$`1esn` =~`2esn` As #usn8 Create (((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),usn1=(`7esn` :`3esn`{`2esn`:999[123.654..$usn2][Count ( * )..0x0]})-[`2esn`?:usn1|`4esn` *00..0Xa]-(`4esn` :`4esn`:`6esn`) Merge ((`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})) On Match Set `1esn` =All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null"), + octest:ct_string("Optional Match ((`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})),`5esn`=(((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Union All With *,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Where .e1[12.0..] Create @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Return Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By 1000[$`2esn`..] Asc"), + octest:ct_string("Optional Match #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}),((:#usn7:`5esn`{_usn4:$usn2 =~9e1})<-[@usn5?:usn2 *0..01]->(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})) Where 9e1 Starts With Count ( * ) Merge (`2esn` :`1esn`:_usn4)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}) On Match Set `5esn`+=010[..7][..`4esn`],(`2esn` :@usn5)-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}).`4esn`! =$@usn6 Ends With `1esn`,`6esn` =.0[$``..0X7] Detach Delete 01[`3esn`..][Count(*)..],usn2[07..][.0..] Union All Create @usn5=(:@usn5{#usn7:12e12 In $`5esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})-[?*]-({`8esn`:`5esn` Contains #usn7 Contains 9e12}),`3esn`=(:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Return *,`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] As usn1,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] With .e1 =~_usn4 =~_usn4,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `5esn`,$`4esn` Starts With 0 Starts With `7esn` As usn2 Limit {@usn5:01[`3esn`..][Count(*)..]} Starts With Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str']) Where _usn3[`2esn`..0X7][0.e0..$`3esn`] Union Return Distinct `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,0xabc In .12 In 0Xa Descending,.0 Contains .e12 Contains 0 Desc Delete _usn3[12.e12..][`5esn`..]"), + octest:ct_string("Match (`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]-(#usn8 :`6esn`:_usn3)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]}) Where Count ( * ) In 0.12 Unwind 07 =~`4esn` =~$`1esn` As _usn3 Union Match ((`2esn` :_usn3)-[? *0xabc{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})),({@usn5:$`5esn` Is Not Null Is Not Null})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})"), + octest:ct_string("Return `1esn` Starts With 0X7 Starts With \"d_str\",$`4esn`[..$`8esn`][..Null] As #usn7,None(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With Filter(`5esn` In 0X7 In $#usn7 Where 0x0[0X7]) Ends With Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) As `4esn` Order By [123456789 =~12 =~'s_str',`2esn` Starts With 12.e12 Starts With 12.0,$`8esn`[..True][.._usn4]] Contains Filter(#usn7 In 9e0[$1000] Where `7esn`) Asc,None(#usn8 In `7esn` Where $`3esn` Contains $`1esn`) Starts With #usn8(0x0[Count(*)..@usn6][Count(*)..0Xa]) Ascending,_usn4 Contains $_usn3 Contains .e1 Asc Union All With Distinct *,`2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Order By $`2esn` Starts With 0.12 Starts With $12 Ascending,07 In `6esn` Desc,12[..0e0][...e1] Desc Skip #usn8[`6esn`..][$``..] Limit `3esn`[..0X0123456789ABCDEF][..0x0]"), + octest:ct_string("Optional Match usn2=((`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Where $@usn5 Is Null Is Null Detach Delete $#usn8[True][9e0],None(_usn4 In 12e12 In 123456789 Where 1.e1 =~.12)[[$`4esn`[0..][999..],0x0[Count(*)..@usn6][Count(*)..0Xa],12e12 In $`5esn`]..],0.0 Contains #usn7 Union Merge `1esn`=(((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[?:`8esn`*]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}))) On Match Set _usn4 =0Xa In #usn7 In 's_str',`5esn`+=$#usn8 Starts With .e12 Starts With 1.e1,`1esn`+=usn2 In _usn3 On Match Set _usn3+=`6esn`[$``..$_usn3][1000...0],[usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5|0 Ends With 12.e12 Ends With usn2].`1esn` =123.654 Is Null Is Null Remove Any(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7])._usn3,`7esn`:@usn5 With *,$`2esn` Contains Count(*) As `3esn`,(`2esn` :usn1:`3esn`)-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})<-[?:`3esn`]-(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})[({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})] Order By 010 Contains .e1 Asc,(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})<-[#usn7 *01..123456789]->(`6esn` :usn1:`3esn`) Ends With Extract(#usn8 In `7esn` Where 9e12[..1e1][..'s_str']) Ends With [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123.654 Is Not Null|$`2esn`[.0..][0.0..]] Descending Skip $@usn5[`1esn`..][$999..] Limit Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] Union All Merge #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}))"), + octest:ct_string("With `4esn` Is Not Null Is Not Null As `1esn`,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..]) Contains None(@usn5 In 's_str'[0..] Where 010 Is Null) Contains `2esn`(Distinct $`3esn`[$_usn4..0Xa],$`8esn`[123456789..][$@usn5..]),9e12[..`3esn`][..0X0123456789ABCDEF] As `5esn` Limit 0xabc[$999..][$usn1..]"), + octest:ct_string("Return *,$`5esn`[0X7..010][`7esn`..'s_str'] As `4esn`,999 In 0e0 As #usn7 Order By 0xabc In Null Descending Skip count($`4esn`[`8esn`],`4esn` Is Not Null Is Not Null) =~Filter(@usn5 In 's_str'[0..] Where _usn3[0x0]) Return *,12 Ends With True Ends With @usn6,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By $123456789[12e12..9e0] Asc,1e1 Contains 0.e0 Contains 9e1 Ascending,.e12[@usn6..][010..] Desc Limit $`7esn` In False In $`1esn` Union Unwind 7[0e0..] As `6esn` Optional Match ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`))"), + octest:ct_string("Merge ((#usn7 {#usn7:1.e1 Starts With 9e12})<-[ *..07{`5esn`:999 In 0e0}]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})) On Create Set `4esn`:usn2,`2esn`+=`2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..] On Match Set [#usn8 In `7esn` Where 00 In @usn6 In 0].`1esn`? =Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) Is Not Null Is Not Null,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]).@usn6! =[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]),_usn4+=$_usn3[$12] Unwind usn1[..$@usn6][..00] As `4esn` Union All Detach Delete [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]],$999 Ends With .e0,$`5esn` =~usn1 Optional Match ((:`4esn`:`6esn`{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})-[`5esn`?:`6esn`|:#usn8{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]-({`5esn`:#usn8 =~.e0})<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null})),((:#usn7:`5esn`{_usn4:$usn2 =~9e1})<-[@usn5?:usn2 *0..01]->(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})) Where `6esn`[..Count ( * )][..$_usn4] With *,All(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Is Not Null Is Not Null As `3esn` Limit `5esn`[$`7esn`..$@usn5] Where .e0 =~Null Union Remove Single(usn2 In 7[12] Where .e12[0Xa..]).usn1!,(`` $`6esn`)-[`4esn`:`1esn`|`3esn` *12..]->({`7esn`:9e12 =~@usn6})-[#usn7? *0X7..{`1esn`:#usn7[0]}]->(`5esn` :`6esn`:_usn3).``,`3esn`(Distinct $@usn5 In $`6esn` In 12e12).`8esn`! Remove Any(_usn4 In 12e12 In 123456789 Where 9e1 Is Not Null Is Not Null).#usn7? Remove None(#usn8 In `7esn` Where $`5esn` Is Not Null Is Not Null).`1esn`!"), + octest:ct_string("Create (_usn3 :`4esn`:`6esn`)-[?:@usn6|:`7esn`]-(:#usn8:`1esn`)-[_usn3?]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Remove (_usn4 {`7esn`:#usn7[0.e0..]['s_str'..]})-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]}).`2esn` Union Unwind Count ( * ) =~0e0 =~`8esn` As `8esn` Merge _usn4=(({usn2:`2esn`[..$_usn3]})) On Match Set usn1 =7 =~`4esn` On Create Set [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where False[$usn1][0x0]|$_usn4[..$_usn4][..`7esn`]].`1esn` =12 Starts With \"d_str\" Starts With 00,#usn8+=0 =~1e1,#usn8 =12 Contains 1.e1 Merge _usn3=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})"), + octest:ct_string("Return Distinct `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By $1000[$@usn6][$_usn4] Desc Union All Match ((@usn5 )),(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-({`1esn`:#usn7[0]})"), + octest:ct_string("Merge `8esn`=(((`4esn` :`4esn`:`6esn`)<-[ *..07{`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn3{@usn5:$1000 Starts With $`7esn`})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]}))) On Match Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] On Match Set usn1 =$usn1 Starts With usn1 Starts With True Detach Delete True Contains 's_str' Contains $usn1,$`5esn`[..00] Union With Distinct *,`4esn` Ends With 12 Ends With .12 As usn2,`3esn`(`7esn`,0x0 Contains $`6esn` Contains `4esn`) Is Null Is Null As usn1 Order By usn1[..$@usn6][..00] Desc Skip 9e1[$`1esn`..] Where usn1[$@usn5]"), + octest:ct_string("Merge `1esn`=(`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) On Create Set [#usn8 In `7esn` Where 01 Ends With 0Xa Ends With 0X7|`8esn` Contains Count(*) Contains $#usn7].``? ={`5esn`:$`1esn` In .e0,``:`6esn` Ends With Count ( * ) Ends With Count ( * )} Is Null Is Null,`8esn`+=$7 Is Null,`7esn` =_usn4 In #usn7 Union All Remove Extract(@usn6 In 010[`5esn`] Where 0e0[``..$1000][$7..12.e12]|1000[0e0][1e1]).`6esn`?"), + octest:ct_string("Remove Extract(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1|9e12 Contains $_usn3 Contains \"d_str\").usn1! Optional Match `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Where _usn3 Contains 9e12 Contains `8esn` Merge (((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) On Create Set _usn3+={@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Union Create ((:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[`2esn`{``:Null[..010][..1000]}]-(`` :usn1:`3esn`)-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})),((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})) With Distinct {`8esn`:9e12 =~@usn6,`1esn`:999 Contains 0 Contains $`5esn`}[`4esn`()],(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null} Order By [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Desc Limit $7 Starts With $`4esn`"), + octest:ct_string("Return 00[$`1esn`..][@usn6..] As _usn4 Limit $@usn5[`1esn`..][$999..] Union With Distinct $@usn5,0.12[0Xa][$`7esn`] As `4esn`,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As _usn3 Order By 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Asc,`6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] Desc Skip 01[$`7esn`..$@usn6] Union All With (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By 0Xa[..Count ( * )][..$123456789] Desc,`5esn`[$`7esn`..$@usn5] Ascending Skip usn2[..$usn1][..$#usn8] Limit 12.0 Ends With usn2 Ends With 0 Remove [@usn6 In False Contains 0 Contains $`6esn` Where 0.0 =~9e0 =~$0|.e0[01234567..$`8esn`]].@usn6?,({`4esn`:.e1[..$`3esn`][..01]})<-[`1esn`?:`8esn` *7..]-(:``:usn2{``:True[$_usn3..]}).`6esn`,All(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7).`6esn`? Return *,0.e0 =~00 As `3esn` Order By 's_str'[0x0..1.e1] Asc,usn1[False..`5esn`][$1000..$12] Ascending"), + octest:ct_string("Detach Delete 1e1 Is Null Is Null,01234567[$`2esn`][0Xa]"), + octest:ct_string("Merge `7esn`=(((`` :`5esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`8esn`{`8esn`:usn1 Contains 010,_usn4:`5esn` Contains $`5esn` Contains 0X7}]-({#usn8:0xabc In 010 In #usn7}))) On Create Set `3esn` =12[.0],All(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])._usn4? =12 Starts With True Starts With 12e12 Merge usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})) With `8esn` Is Null As `2esn`,[#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) Starts With [12 In $usn1 In 7,`6esn` Ends With Count ( * ) Ends With Count ( * ),`2esn` Starts With $`7esn`] Starts With usn2(Distinct .0[..'s_str'][..01234567],Count(*) In 12 In `6esn`) Ascending,_usn4[.12..$usn2][$_usn3..123.654] Desc,`4esn`[\"d_str\"]['s_str'] Ascending Skip Filter(@usn5 In 9e0 Ends With $#usn8) Contains {@usn6:#usn7[`8esn`..usn1][$999..`7esn`]} Contains (:#usn7:`5esn`)-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}) Where $@usn6[$`8esn`..][123456789..]"), + octest:ct_string("Return _usn4 Contains $_usn3 Contains .e1,$`4esn`['s_str'..] As `` Limit {`7esn`:False[$`4esn`..]}[{#usn8:.e1 Starts With 12.e12 Starts With `2esn`,`8esn`:0 =~1.e1 =~$#usn7}] Unwind [#usn8 In `7esn` Where .e0 Starts With $@usn6 Starts With $7|1000[12e12][`5esn`]] Ends With [`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8] Ends With [$``[..\"d_str\"][..$#usn8],$_usn4 Starts With $1000 Starts With 12,#usn7[.e0]] As `8esn` Remove Extract(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12|0x0[Count(*)..@usn6][Count(*)..0Xa])._usn3!,({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})<-[usn2?:`3esn` *00..0Xa]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})<-[`8esn`? *0Xa{#usn8:$``[True]}]->(_usn3 :`7esn`).`5esn`,Extract(`3esn` In 9e1 Contains $999 Where usn1[False..`5esn`][$1000..$12]).`7esn` Union All Unwind Extract(@usn5 In 9e0 Ends With $#usn8 Where $`8esn`[123456789..][$@usn5..]) =~None(#usn7 In True Contains 's_str' Contains $usn1 Where 's_str' Starts With 9e0 Starts With usn2) As `2esn`"), + octest:ct_string("With usn2 Starts With .0 Skip \"d_str\" In @usn5 In $@usn5 Limit _usn4 Starts With 1000 Starts With $usn2 Where _usn4 Is Not Null Is Not Null Merge (#usn7 {#usn7:1.e1 Starts With 9e12})<-[`5esn`?:@usn5|_usn3{``:0.0 =~9e0 =~$0}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]})-[@usn5?{#usn7:12e12 In $`5esn`}]->(`8esn` :`8esn`) On Match Set #usn7 =[$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1],@usn6+=0.12[$0..$usn2] Union Delete $#usn7[..$`4esn`][..01],Filter(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) =~{#usn7:1000[12e12][`5esn`]} Union All Return Distinct _usn4 Contains $_usn3 Contains .e1,$`4esn`['s_str'..] As `` Order By $usn2 =~9e1 Descending,(:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc,1.e1 =~$_usn4 Desc Skip 12[0e0] Unwind $#usn8[@usn6..] As usn2"), + octest:ct_string("Optional Match (`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]->(_usn4 {_usn4:Null[..010][..1000],_usn3:.0 Is Null Is Null}) Where 00 Ends With `` Ends With 12.e12 Union All Remove Filter(`8esn` In 123456789 =~@usn6 Where True[`3esn`]).`8esn`?,Single(`8esn` In 123456789 =~@usn6 Where @usn6 Is Not Null Is Not Null).`1esn`?,Single(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]).`6esn`! Optional Match (({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn4?:@usn6|:`7esn`]-({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn3?:_usn3|:`7esn`]->(`3esn` {`8esn`:`7esn` In 010 In usn1})) Where _usn3 Ends With 7 Ends With $`1esn` Merge (@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`}) On Create Set All(usn2 In 7[12] Where `2esn`[$12..]).#usn8? =[#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3],Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3|01 In $@usn6).`7esn`? ={`3esn`:.e1[..\"d_str\"][..$123456789]},[$`5esn` =~usn1,@usn6 Contains .12 Contains $usn1,999 In #usn8 In $``]._usn3 =[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )] On Match Set `5esn` =0.e0[0X0123456789ABCDEF..]"), + octest:ct_string("With Distinct *,$`3esn`[.e1][_usn4] Order By 12[None(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)..`5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12])][`5esn`(`2esn`[..01][..True])..(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})<-[? *7..]-(#usn7 :``:usn2)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})] Descending Match `8esn`=((_usn3 :_usn4)) Where 0.0 Is Null Is Null Unwind 0[01234567..][0X0123456789ABCDEF..] As `4esn` Union All Remove `5esn`($`4esn` In 1.e1 In #usn7,0Xa[Count(*)..]).`2esn`,[$0[123.654..0.e0],01234567[Null..$_usn3]]._usn4!,{usn1:#usn8 =~.e0,_usn3:$_usn4 Is Null Is Null}.`1esn` Remove [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]|12[..$999][..$`2esn`]].`1esn`?,#usn7:`4esn`:`6esn`,Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12).`5esn`?"), + octest:ct_string("Return Distinct *,$`5esn` Is Not Null,usn2 Contains $0 Contains .0 Order By 0.e0[$`4esn`..`2esn`] Descending,$123456789[12e12..9e0] Asc,$_usn3[_usn4..] Asc Skip $`7esn`[$_usn4][.e0] Limit Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..] Union With Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By [Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] Ascending,None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) Descending Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]) Where @usn6 Is Not Null Is Not Null Create (`3esn` )-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]}) Remove Any(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0).usn1,All(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])._usn4!,7._usn4 Union All Remove All(@usn6 In 010[`5esn`] Where `7esn`[$usn1..]['s_str'..]).usn1!,All(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).`8esn` Unwind `4esn` Starts With 0e0 As `1esn` Return Distinct `` Starts With $123456789,$`4esn` Starts With $`4esn` Starts With $_usn3,9e1[$#usn8][$1000] Order By .e12[.12..] Desc,{@usn5:01[`3esn`..][Count(*)..]} Starts With Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str']) Desc,``[$`3esn`] Descending Skip {@usn5:\"d_str\"[True..]} In _usn4(0 =~1e1,$123456789 Contains $#usn8 Contains ``) In [999 Contains $1000,`2esn` =~.e12 =~0X0123456789ABCDEF,_usn4[@usn6..][$0..]]"), + octest:ct_string("Merge @usn5=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}) Return False[$`1esn`..],``[$`1esn`] As _usn3,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`2esn` =~9e12) Is Null Is Null Order By usn1[..$@usn6][..00] Desc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Descending,`4esn` =~$`3esn` =~@usn5 Descending Limit 0x0 Contains $`6esn` Contains `4esn` With Distinct `2esn` Starts With 12.e12 Starts With 12.0 As #usn8,$_usn3 Is Not Null Is Not Null Order By All(#usn7 In 9e0[$1000] Where 0x0[12e12..$`7esn`])[(:`5esn`{_usn4:12 Starts With #usn7 Starts With 0Xa,#usn7:999 Is Null Is Null})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})][{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}] Desc Where `7esn` In 010 In usn1 Union Remove [True Contains 0x0 Contains $_usn3,_usn3 Contains 9e12 Contains `8esn`].#usn7!,Filter(@usn5 In 's_str'[0..] Where `7esn` In 010 In usn1).`3esn`"), + octest:ct_string("Unwind `3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] As `8esn` Merge ((:@usn6)) On Create Set {`3esn`:07[_usn3..][`6esn`..],@usn6:``[usn1][`5esn`]}.@usn6 =Count(*)[``..#usn8][`3esn`..0xabc] On Create Set #usn7+=`6esn`[$`8esn`][9e1] Create ((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})),(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Union All Create (`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]}),usn1=(((`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]-(#usn8 :`6esn`:_usn3)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1))) Merge #usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) On Create Set @usn6+=$`1esn` =~1e1 On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Union All Return `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Skip 0e0[``] Limit .e0 =~Null Optional Match ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`))"), + octest:ct_string("Unwind @usn5[$`6esn`..][$999..] As @usn5 Unwind 0x0[..9e0] As #usn8 Union All Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] On Create Set `6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn1+=`4esn`[$_usn3..$`7esn`] Union All Detach Delete 0X7[.0]"), + octest:ct_string("With $@usn5 Contains 's_str' Contains \"d_str\" As @usn5 Union Merge ((`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})<-[`6esn`?:_usn3|:`7esn` *..010]->(:_usn3{_usn4:.e1[7..][9e0..]})<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->({`8esn`:`5esn` Contains #usn7 Contains 9e12})) On Match Set #usn8+=`8esn` In $1000 On Create Set `4esn` =123456789[..0e0][..$#usn7] Return *,False Is Null Order By 0X7[..$`8esn`] Desc,[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null Ascending,12.e12 Ends With `` Ends With 0 Desc Skip Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0)[..{`5esn`:0Xa[$`8esn`..][$_usn4..],_usn3:00[$usn1..]}][..Any(@usn6 In 010[`5esn`] Where 1.e1[$usn1])] Union Optional Match #usn7=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))) With Distinct *,999 Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains {_usn3:123.654 In $`7esn`} As `6esn`,.e0 Is Not Null Is Not Null As `7esn` Order By _usn3 In $`8esn` In @usn6 Desc Where `8esn` Contains Count(*) Contains $#usn7 Delete Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..]) Contains None(@usn5 In 's_str'[0..] Where 010 Is Null) Contains `2esn`(Distinct $`3esn`[$_usn4..0Xa],$`8esn`[123456789..][$@usn5..])"), + octest:ct_string("Optional Match usn1=(`3esn` {_usn3:$123456789[0.12..]})<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(usn2 ) Remove All(@usn6 In False Contains 0 Contains $`6esn` Where usn1[False..])._usn3! Union With Distinct 00[12e12][$`7esn`],[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `6esn`,0X7[..$`8esn`] As #usn7 Merge #usn8=((`3esn` :usn2)<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})<-[`5esn`?:usn1|`4esn`{`3esn`:_usn3[0x0],`3esn`:00[False..0e0]}]->(`3esn` )) On Match Set `8esn`+=0x0[``..],usn1+=0e0 Ends With 07 Ends With $`8esn`,_usn4 =$@usn6[12.0][12.0] On Match Set usn1(True Contains 's_str' Contains $usn1,.e0 Is Not Null Is Not Null).@usn5! ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]}"), + octest:ct_string("With Distinct *,None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`5esn` In _usn3 In 0.0) Is Not Null Is Not Null As @usn5 Order By 1000[12e12][`5esn`] Descending Limit All(@usn5 In 9e0 Ends With $#usn8 Where _usn4[`7esn`]) In {`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6} In (:`6esn`:_usn3$usn2)-[:`3esn` *0Xa{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->(usn1 {usn1:$#usn7 Starts With 01234567 Starts With $0})-[?:#usn8|:`3esn` *0x0..]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) Where $999[``] Return Distinct (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] As #usn7,1e1 Is Null Is Null As usn2,{`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}[..`2esn`(Distinct 0 Ends With 12.e12 Ends With usn2)][..Filter(_usn4 In 12e12 In 123456789 Where .e1 In 123456789)] As usn1 Unwind {`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`} Contains Filter(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5) Contains Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) As `5esn` Union All Optional Match ((:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]})-[@usn6?*{_usn3:$usn1,_usn3:`2esn`[$12..]}]-(:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[? *0Xa]-(#usn8 ))"), + octest:ct_string("Merge #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})) On Match Set `5esn`(Distinct .12[123.654..]).`3esn` =01234567 In 123456789 In 12,`6esn` =[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null On Match Set usn2+=`6esn`[$`8esn`][9e1]"), + octest:ct_string("Detach Delete Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)[..`4esn`][..(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)] Return Distinct usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Skip $@usn6 Ends With `1esn` Limit 9e1 Ends With Count(*) Ends With $7 Union Delete `1esn` Contains $999 Contains 0.0,[#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) Return 12e12[0x0..12.e12] As `1esn`,.e1[7..][9e0..] As `4esn`,$#usn8 Starts With .e12 Starts With 1.e1 As `8esn` Order By $`5esn` In `2esn` In `2esn` Asc,0.0[..Count ( * )][..`1esn`] Ascending,[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )] Ascending Create (:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})"), + octest:ct_string("Create (({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})),`6esn`=(({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Delete $`5esn`,[Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1],.12[123.654..] Union Create (((`6esn` {`3esn`:$`2esn`[0..123456789][``..`1esn`],`7esn`:$0[0Xa..$123456789]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}))),_usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) With Distinct $`1esn`[Null][True] As usn2,{`6esn`:$#usn7 =~`2esn`,`4esn`:True[$_usn3..]}[(:`1esn`:_usn4{#usn8:00[12..$`6esn`],@usn6:usn1[..$@usn6][..00]})-[`2esn`:`4esn`|@usn5 *01234567..]-(:`5esn`{_usn4:12 Starts With #usn7 Starts With 0Xa,#usn7:999 Is Null Is Null})-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})..Filter(@usn6 In 010[`5esn`] Where `7esn`[1e1])][Any(@usn6 In 010[`5esn`] Where False[$`4esn`..])..Extract(@usn5 In 's_str'[0..] Where `7esn` In 010 In usn1)] Limit {`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..] Unwind 1.e1 Ends With $#usn7 As `5esn`"), + octest:ct_string("With Distinct *,`2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Order By $`2esn` Starts With 0.12 Starts With $12 Ascending,07 In `6esn` Desc,12[..0e0][...e1] Desc Skip #usn8[`6esn`..][$``..] Limit `3esn`[..0X0123456789ABCDEF][..0x0] Union With {``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}[..Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)][..Any(#usn7 In $999 In 1e1 Where 07 In `6esn`)] As usn1,`8esn` Is Not Null Is Not Null As `4esn` Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Limit Any(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]) =~[9e12 =~@usn6,01 Ends With 0Xa Ends With 0X7,$@usn6[$0..9e12][.e12..Null]]"), + octest:ct_string("With Distinct $@usn5,0.12[0Xa][$`7esn`] As `4esn`,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As _usn3 Order By 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Asc,`6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] Desc Skip 01[$`7esn`..$@usn6]"), + octest:ct_string("Delete [$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4),1.e1[$usn1] Union All Detach Delete [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] Merge usn1=(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) On Create Set `6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn1+=`4esn`[$_usn3..$`7esn`] On Match Set _usn3+=`6esn`[$``..$_usn3][1000...0],[usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5|0 Ends With 12.e12 Ends With usn2].`1esn` =123.654 Is Null Is Null Detach Delete 00[False..0e0]"), + octest:ct_string("Unwind None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]) Is Null As `8esn` Union With 0.e0 Is Not Null Is Not Null As _usn4 Limit \"d_str\" Is Not Null Is Not Null Unwind Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] As @usn6 Merge usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]})"), + octest:ct_string("Merge (@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) On Match Set usn1 =$usn1 Starts With usn1 Starts With True With None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,9e1[@usn5][$usn1] As `5esn`,`4esn` Starts With 0e0 As `7esn` Order By 1.e1 Contains `6esn` Contains 0.e0 Descending,07[..07][..0X7] Descending Limit Single(_usn4 In 12e12 In 123456789 Where 0e0 =~7 =~12.0) Starts With Extract(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]|9e12 =~@usn6) With *,All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] As `3esn`,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[usn2(Distinct #usn7 Contains $0 Contains $usn2,0.e0)..] As @usn6 Order By $`1esn` Ends With 0X0123456789ABCDEF Ascending Limit `4esn` Contains 9e0"), + octest:ct_string("Merge (((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}))) On Match Set _usn3:`7esn` Detach Delete #usn7[`8esn`..usn1][$999..`7esn`],{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`} Contains Filter(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5) Contains Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``),.0 Ends With 999 Ends With $`5esn`"), + octest:ct_string("Return Distinct *,`4esn` Contains 9e0 Order By Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Asc,12.e12[..9e1][..$_usn3] Descending,True In (#usn8 :`6esn`:_usn3)<-[`2esn`?:_usn4{#usn8:$12[9e0..$999]}]->({``:.e1 Starts With 12.e12 Starts With `2esn`}) Descending Unwind {_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]} Contains ({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}) Contains None(#usn8 In `7esn`) As `4esn` Union Optional Match (({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})),`6esn`=(({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Detach Delete 12[0e0],$``[01234567..][.0..] With *,None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0) Skip @usn6[..$@usn5] Where 12.e12 =~.0 =~usn1 Union All Return Distinct *,$`2esn` Starts With $@usn5 Starts With #usn7 As `6esn` Order By .e12 Starts With $#usn8 Starts With False Desc"), + octest:ct_string("Match `8esn`=((_usn3 :_usn4)) Union Merge ((({usn2:_usn3[`2esn`..0X7][0.e0..$`3esn`]})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]-(_usn3 )<-[? *..010{usn1:9e1[_usn3]}]->(`5esn` {`4esn`:0x0[usn1..usn1],usn1:$`5esn`[0X7..010][`7esn`..'s_str']}))) Detach Delete $0[123.654..0.e0],123.654"), + octest:ct_string("Return *,`6esn` =~Null As `4esn`,.e0 Starts With $@usn6 Starts With $7 As `5esn` Order By [`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]] In (`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(:#usn7:`5esn`)-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:#usn8:`1esn`$`7esn`) In {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]} Asc,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] Desc Skip $`3esn`[$_usn4..0Xa] Create (:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"}) Union Return *,`3esn`[12.0][$_usn3],.e1 =~_usn4 =~_usn4 As `3esn` Limit Count ( * ) In 0.12 With Distinct 010[12.0..`4esn`][``..Count(*)],$`7esn`[123456789..$1000][Count ( * )..$7],$`2esn` Contains Count(*) As `3esn` Skip `1esn` Where Null[..0]"), + octest:ct_string("Delete [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12] Starts With usn2(01 Is Null) Starts With Filter(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),All(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null) Contains [@usn5 In 's_str'[0..] Where `6esn`[..Count ( * )][..$_usn4]] Contains ({usn1:$123456789 In 0.12})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(usn2 ) Create _usn3=((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})-[#usn8:#usn7|@usn5 *123456789..{@usn5:usn2[12.e12..]}]->(`` )<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})),usn2=((`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})) Merge `1esn`=(((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[?:`8esn`*]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}))) On Match Set _usn4 =0Xa In #usn7 In 's_str',`5esn`+=$#usn8 Starts With .e12 Starts With 1.e1,`1esn`+=usn2 In _usn3 On Match Set _usn3+=`6esn`[$``..$_usn3][1000...0],[usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5|0 Ends With 12.e12 Ends With usn2].`1esn` =123.654 Is Null Is Null Union With *,$`5esn` Is Not Null,usn2 Contains $0 Contains .0 Skip Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)[(`` :`5esn`{@usn5:123456789 =~@usn6})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`7esn` {``:9e1 Contains $999,``:$usn2[True..0X0123456789ABCDEF]}).._usn3(Distinct 0x0 Contains $`6esn` Contains `4esn`,usn2[1.e1])][(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})..[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|9e1 Is Null]] Limit $`4esn`[`6esn`..$12] Where 0Xa[Count(*)..] Union With Distinct Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],010 Is Null Is Null As #usn8,All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] As `8esn` Order By $_usn3[_usn4..] Asc,0.12 Is Null Is Null Desc,`6esn` Ends With _usn4 Ends With False Ascending Skip 1.e1 =~.12 Limit `1esn`[$@usn6][07] Create ``=(`3esn` :_usn4),((_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`})-[?:`2esn`|`4esn`{@usn5:0.e0}]-(`1esn` $`4esn`))"), + octest:ct_string("Merge `4esn`=(`4esn` :`7esn`)"), + octest:ct_string("Merge (_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1}) Delete [9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )]"), + octest:ct_string("Merge (({@usn6:010 Starts With 0 Starts With 0.0,_usn4:07[$`2esn`..9e12][$`4esn`..9e12]})<-[:@usn6|:`7esn` *0..01{``:`1esn`[0.0..1e1][0x0..7],usn2:01[`3esn`..][Count(*)..]}]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})) With Distinct *,$`1esn`[07..] As ``,`` Is Null As `7esn` Skip $1000 Is Not Null Delete $usn1[Null][`8esn`],Single(#usn8 In `7esn` Where 12.0 Starts With $`2esn` Starts With .e1) Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]] Ends With {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01} Union Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3) With `5esn`[..123.654][...e12] As @usn6,(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) As `2esn`,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As `1esn` Order By None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0) Descending,@usn5[$`7esn`..`5esn`] Ascending,.0 Contains .e12 Contains 0 Asc Skip usn1 Limit `6esn`[$`8esn`][9e1] Where False Starts With 0X7 Starts With 01234567"), + octest:ct_string("Detach Delete (`3esn` :usn2)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null}) Is Null,$0[0Xa..$123456789],[$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][None(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..])..] Create ((_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`})<-[? *..010{`2esn`:'s_str'[0..]}]->(_usn3 :`5esn`)),(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Match (:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]}),usn2=((#usn7 {`6esn`:$`2esn` Contains Count(*)})-[?:_usn4]->(`2esn` :usn2))"), + octest:ct_string("Match `8esn`=((_usn3 :_usn4)) Where 0.0 Is Null Is Null Detach Delete `4esn`[..$@usn6][..@usn6],$_usn4 Is Null Is Null Detach Delete True Contains 's_str' Contains $usn1,$`5esn`[..00] Union Remove [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`].@usn6?,[usn2 In False[$usn1][0x0] Where 999[@usn5..][Null..]|0.e0['s_str'..][01234567..]].``!,(:`1esn`:_usn4{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]})<-[@usn5:`3esn` *0Xa{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`}]->(:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})._usn4? Unwind [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null] Is Not Null As `3esn` Remove [#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3]|1.e1 Starts With 9e12].#usn8?,usn1:usn2,Single(#usn8 In `7esn` Where 07 Contains `3esn` Contains `7esn`).@usn5!"), + octest:ct_string("Unwind $12 Starts With $usn1 As `3esn` Union Return [#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]) As usn2,(`5esn` :@usn6{usn1:'s_str'[0..]})<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})[All(#usn7 In 9e1[$`1esn`..] Where ``[$`3esn`])] As `3esn` Order By @usn6 =~999 =~@usn5 Ascending,$@usn5[..$#usn7] Descending,{`4esn`:12e12 =~$`7esn`} Is Not Null Is Not Null Desc Skip Count(*)[9e12..12.0] Return Distinct *,[`3esn` In `2esn`[..01][..True] Where 0.e0[1000.._usn4][.e1..usn1]|`5esn`[..123.654][...e12]] As `6esn`,$#usn8 Starts With .e12 Starts With 1.e1 As `8esn` Union All With Distinct .e12 Starts With $7 Starts With .0 Where $usn2[`4esn`..9e12] Merge `1esn`=((`2esn` {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})) On Match Set (:``:usn2{`4esn`:#usn7 Contains $0 Contains $usn2})<-[:`8esn` *0X7..]->(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2})<-[`2esn`? *01..123456789]-(`2esn` :@usn6).`8esn` =`7esn`[1e1] Match #usn8=(({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})<-[?:`3esn`*..]-(usn2 :``:usn2)-[`5esn`? *01234567..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})) Where .0[..'s_str'][..01234567]"), + octest:ct_string("Unwind Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[{`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}] As `5esn` Union All Create (((usn2 {`5esn`:$@usn6 Ends With `1esn`})<-[`2esn`? *01..123456789]-(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]})<-[? *7..{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]-(#usn7 :``:usn2))) Union Return 9e1[$`1esn`..] As `` Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,{@usn6:$`3esn`[.e1][_usn4]}[`8esn`(Distinct $``[True])..] Desc Skip 010[`5esn`]"), + octest:ct_string("Remove (_usn4 {`7esn`:#usn7[0.e0..]['s_str'..]})-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]}).`2esn` Union Return Distinct 0e0 Ends With 07 Ends With $`8esn` As `1esn`,0[01234567..][0X0123456789ABCDEF..] Order By (`1esn` :`3esn`{#usn7:12[..0e0][...e1]})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})[(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null)][{`2esn`:$999 Ends With .e0}..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]] Ascending,1.e1[..`4esn`] Ascending,0xabc Is Not Null Is Not Null Descending Limit _usn4[.12..$usn2][$_usn3..123.654]"), + octest:ct_string("Return $_usn4 Is Null Is Null,usn2 Starts With .0 Order By 9e1[$#usn8][$1000] Descending Limit #usn7 =~9e12 Detach Delete True Contains .e12,[#usn8 In `7esn` Where 9e12[$`5esn`..$123456789]] =~_usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6),True Contains 0x0 Contains $_usn3"), + octest:ct_string("With Distinct *,999 Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains {_usn3:123.654 In $`7esn`} As `6esn`,.e0 Is Not Null Is Not Null As `7esn` Order By _usn3 In $`8esn` In @usn6 Desc Where `8esn` Contains Count(*) Contains $#usn7 Detach Delete None(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``)[[`5esn` In 0X7 In $#usn7 Where $@usn5 Starts With `5esn` Starts With 01234567|$``[..$#usn7][..`6esn`]]..Single(@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn1..]['s_str'..])] Remove `4esn`:`4esn`:`6esn`,(usn2 :_usn4)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]}).usn2!,`5esn`(0.12 Contains False Contains 1.e1).`3esn`? Union With Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Order By @usn5[0..] Ascending,$@usn5 In $`6esn` In 12e12 Desc,#usn7 In 0.e0 Desc Skip {`8esn`:$_usn4 Starts With 12.e12} Is Null Is Null Limit 999 Contains $1000 Where 999 In #usn8 In $`` Union All Match #usn7=(((:@usn5{@usn5:$12[9e0..$999]})<-[ *01234567..]-(`2esn` {`1esn`:$`4esn` Is Null Is Null})<-[@usn6?:`8esn` *0..01]->(`5esn` :`4esn`:`6esn`))),((usn2 :#usn8:`1esn`)<-[`4esn`? *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})<-[`4esn`:`1esn`|`3esn` *12..]-(@usn6 {`4esn`:9e1 Contains 12})) Where `2esn` In 7"), + octest:ct_string("Remove Extract(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]|9e12 =~@usn6).#usn7,[@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01].`` Remove {`3esn`:$`5esn` Is Not Null Is Not Null}.`2esn`!,{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1}.`1esn`? Union All Merge #usn8=(({usn2:`2esn`[..$_usn3]})) On Create Set #usn8+=$123456789[.0..],`` =All(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0)[(:#usn7:`5esn`)<-[#usn8? *0Xa]-(`5esn` :`5esn`{#usn7:``[$`3esn`]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc})..] On Match Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] Merge (_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]}) On Create Set `7esn` ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]} On Match Set [_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789|9e1 Ends With Count(*) Ends With $7]._usn4 =$`5esn`[0X7..010][`7esn`..'s_str'],@usn5+=(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},usn2+=999[12e12..$_usn4]"), + octest:ct_string("With $0[010..] As `` Order By `5esn`(Distinct .e0[01234567..$`8esn`]) =~All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) =~[999 In #usn8 In $``,.e0 Is Null Is Null] Ascending Skip count(Distinct 0X0123456789ABCDEF Contains 12e12 Contains 12.e12)[..{usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]}][..(:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null})] Where usn2[12.e12..] Match #usn8=((`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)) Detach Delete Filter(@usn5 In 's_str'[0..] Where $@usn6 =~#usn7 =~True)[Extract(@usn5 In 's_str'[0..] Where _usn3[0x0])..All(_usn4 In 12e12 In 123456789 Where $usn2 Is Not Null Is Not Null)][(`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]})<-[:`8esn`]-(:@usn6)-[? *0X0123456789ABCDEF..]-(usn2 :_usn3)..(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})],$`4esn` In 1.e1 In #usn7 Union All Return `6esn` Starts With `6esn`,usn2(0X7[.0])[{#usn8:0Xa Ends With $`3esn` Ends With $1000}..][[Null =~`6esn`]..] As `6esn` Remove 12.e12.`7esn`!,(`4esn` :@usn6)-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4).`4esn`"), + octest:ct_string("Return Distinct $`6esn` Starts With .e12 Starts With $`1esn` As @usn6,$`4esn` Starts With $`4esn` Starts With $_usn3 Order By Extract(@usn6 In 010[`5esn`] Where 00[$usn1..]|_usn3[$usn2..][$``..])[Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])] Asc,True Ends With $_usn3 Ends With 12 Desc Skip 9e1[1.e1][$`8esn`] Limit (`3esn` :usn2)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null}) Is Null Union All Remove {`8esn`:usn2 =~7,`5esn`:.e0[01234567..$`8esn`]}.#usn8 Remove #usn7:`1esn`:_usn4,[`4esn` Ends With 12 Ends With .12,`5esn` Contains `1esn` Contains usn1,$`2esn` =~9e12].@usn5!"), + octest:ct_string("Remove Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2).`2esn`! With 0.e0 Is Not Null Is Not Null As _usn4,0X0123456789ABCDEF In $usn2 In `4esn`,$usn1 Is Not Null Is Not Null Order By 01234567[$@usn6..$#usn7][123456789..12e12] Desc,Single(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1)[Filter(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])..][Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.0 In 123.654 In _usn4)..] Ascending Skip Null[..0] Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]) Where 9e12 Starts With 1e1 Match (:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}),`7esn`=((_usn3 :`7esn`)) Where .e12[@usn6..][010..]"), + octest:ct_string("Return Distinct *,.0 Contains .e12 Contains 0,1e1 Is Null Is Null As usn2 Optional Match (`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}),`7esn`=(((`` :`5esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`8esn`{`8esn`:usn1 Contains 010,_usn4:`5esn` Contains $`5esn` Contains 0X7}]-({#usn8:0xabc In 010 In #usn7}))) Match #usn8=(({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})<-[?:`3esn`*..]-(usn2 :``:usn2)-[`5esn`? *01234567..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})) Where .0[..'s_str'][..01234567] Union Detach Delete $usn2[0.e0]"), + octest:ct_string("Match (((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))),({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}) Where 1000[0e0][1e1] Merge (:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]})<-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(`2esn` :`1esn`:_usn4) On Match Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null On Create Set Any(#usn7 In True Contains 's_str' Contains $usn1 Where $12[9e0..$999]).`5esn`! =1.e1[12..][$`4esn`..],Any(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null).`2esn` =All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]) =~All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where .e12[..999][..@usn5]) =~Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4),`2esn` =1e1 Ends With $`2esn` Union All Return Distinct Filter(@usn5 In 9e0 Ends With $#usn8) Contains {@usn6:#usn7[`8esn`..usn1][$999..`7esn`]} Contains (:#usn7:`5esn`)-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}) Skip $usn2 Ends With $123456789 Limit [@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00|`5esn`[$`7esn`..$@usn5]] Is Not Null Is Not Null Delete `2esn`[$usn2][12.0],{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}[Single(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7)..],(:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] Delete 1000[12e12][`5esn`],0Xa Contains `8esn` Contains 0xabc"), + octest:ct_string("With Distinct Extract(`6esn` In $`6esn`[``..][Count(*)..] Where 1.e1 Ends With $_usn4 Ends With #usn7|0xabc =~$@usn5) Contains {`5esn`:1.e1[`8esn`],`1esn`:.e0} Contains {usn1:$123456789 In 0.12} As #usn7,``[7.._usn3] As usn2 Skip [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Ends With `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Ends With [$`1esn`[``][07],`7esn`] Create `5esn`=(((:`1esn`:_usn4{#usn8:00[12..$`6esn`],@usn6:usn1[..$@usn6][..00]})-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1))) With Distinct $usn2[`5esn`..][01234567..] As #usn8 Order By .0 Ends With 999 Ends With $`5esn` Ascending,01234567 In $@usn6 In $#usn7 Desc Where .e0[01234567..$`8esn`] Union Match @usn6=(usn2 :_usn4) Where `4esn`[$_usn3..$`7esn`] Delete None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6) =~Single(`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8) =~(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]}),[_usn3 In _usn3 Contains _usn4 Contains $@usn5] In Single(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) In [9e12[9e1],999 Starts With `2esn` Starts With .e1] Union With Distinct *,[$usn1[`2esn`..][$`2esn`..]] Contains Extract(usn2 In 7[12] Where $_usn3 Is Null|.e12 Is Null Is Null),$#usn7 Contains $`7esn` Contains .e12 As @usn5 Order By 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Asc,`8esn` Is Null Desc Remove {``:.e12 Ends With 0Xa Ends With 0xabc}.usn2?"), + octest:ct_string("Detach Delete All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]) =~All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where .e12[..999][..@usn5]) =~Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4),`4esn`[.12][$@usn6] Unwind $`5esn` =~$`8esn` =~usn2 As `1esn` Create (:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"}) Union All With 9e0[..123456789][..$`3esn`] Order By 01 Contains usn2 Contains 0X0123456789ABCDEF Desc Limit 00 =~Count ( * ) Union All With *,All(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Is Not Null Is Not Null As `3esn` Limit `5esn`[$`7esn`..$@usn5] Where .e0 =~Null With $999 =~.0 As usn2 Limit 's_str' Ends With _usn4 Ends With 0e0 Where 0Xa[$`8esn`..][$_usn4..]"), + octest:ct_string("Unwind Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null] As `3esn` Unwind Extract(@usn5 In 's_str'[0..] Where 12 In $usn1 In 7) =~All(`3esn` In `2esn`[..01][..True] Where $`7esn`[.e1][12.0]) As @usn5 Union Merge ((_usn3 :_usn4)) On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Return Distinct *,9e12 =~@usn6,`4esn` Contains 9e0 Order By 1000[..$1000] Descending Skip Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Limit {``:123.654 In $`7esn`}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..None(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6 =~#usn7 =~True)] Union Match (({#usn7:$@usn6[$0..9e12][.e12..Null]})) Match `6esn`=(((:`6esn`:_usn3)<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(`3esn` :_usn4{`3esn`:12[..0e0][...e1],`4esn`:.0 Is Null Is Null})-[usn2 *..07]->(`` {_usn3:`5esn` Contains `7esn`}))) Where $_usn4[$`5esn`][`7esn`]"), + octest:ct_string("Optional Match `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Where _usn3 Contains 9e12 Contains `8esn` Delete 12 Starts With \"d_str\" Starts With 00,1e1 In 0.0 In 0X0123456789ABCDEF Optional Match ((`4esn` :@usn6)-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})) Where 0Xa Ends With $`3esn` Ends With $1000"), + octest:ct_string("Return 999[12e12..$_usn4] Order By Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,0X7[.0] Asc,$`3esn`[..0X0123456789ABCDEF][..7] Descending Limit #usn7 =~9e12 Union Detach Delete _usn3 Ends With 7 Ends With $`1esn`,(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})[..Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|Count ( * )[$`5esn`..][$7..])][..$usn2] Return Distinct ``[$`1esn`] Order By 123456789[12] Ascending,{usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}[[@usn5 In 9e0 Ends With $#usn8 Where 00 Contains Count ( * ) Contains 0x0]] Asc,Count ( * )[$`5esn`..][$7..] Desc Union With 01234567 In 123456789 In 12 As usn1,Count ( * ) In 123456789 In $@usn5 As _usn3 Order By #usn7 In 0.e0 Desc Skip [$#usn7 Ends With 's_str' Ends With 0X7,12e12 Ends With 0.0 Ends With usn1][Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $`6esn`[``..][Count(*)..])..Extract(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1|``[$`3esn`])][(#usn8 :`5esn`)<-[usn2?:`3esn` *00..0Xa]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})..{_usn3:_usn4 Is Null Is Null}] Where 0Xa[Count(*)..]"), + octest:ct_string("With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Where 12.e12 Ends With $`` Delete count($`4esn`[`8esn`],`4esn` Is Not Null Is Not Null) =~Filter(@usn5 In 's_str'[0..] Where _usn3[0x0]),9e1[$`1esn`..],$usn2[`2esn`..] Union All Delete #usn8 =~.e0,True[`1esn`...e1][00..7],(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}) Union All Create (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}))) Detach Delete Extract(@usn6 In 010[`5esn`] Where 00[$usn1..]|_usn3[$usn2..][$``..])[Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])],_usn4[$usn1..01234567][123.654..`5esn`],None(#usn7 In 9e0[$1000] Where $_usn3 Is Null) In [@usn5 In 's_str'[0..] Where $#usn8[12.e12..`8esn`][12.0..0.0]|`4esn` Ends With 12 Ends With .12] In [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12]"), + octest:ct_string("Merge usn2=(`8esn` :`6esn`:_usn3) On Match Set @usn5+=0Xa[010..$0][$`2esn`..999],``+=9e12[..`3esn`][..0X0123456789ABCDEF],({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(_usn4 {_usn4:123.654 In 12})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->(`6esn` :#usn7:`5esn`{_usn3:_usn4 Is Null Is Null}).usn2 ={#usn8:.0 Is Null Is Null}[..(_usn3 :@usn6{usn2:0Xa =~False =~@usn5,`3esn`:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})][..{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}] On Create Set `6esn`+=$usn1,`1esn`+={_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] Union Merge `7esn`=(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]}) Detach Delete None(@usn6 In 010[`5esn`] Where $`3esn` Ends With 01234567) Is Not Null Is Not Null,$`2esn` =~9e12,12 Starts With \"d_str\" Starts With 00"), + octest:ct_string("Remove [999 Is Not Null Is Not Null,123.654 In $`7esn`].`6esn`,[#usn7 In 9e1[$`1esn`..] Where $`7esn`[$_usn4][.e0]|.0[..'s_str'][..01234567]].usn1?,[`6esn` In $`6esn`[``..][Count(*)..]|.e12 Starts With $12 Starts With .e12].`7esn`!"), + octest:ct_string("Create `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Create (((usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[#usn8 *0x0..]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[_usn4 *00..0Xa{`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]}]-(usn2 :`5esn`{_usn4:`2esn` In 9e0 In 7,@usn5:9e1[`1esn`..0][999..1e1]}))) Union All With Distinct $#usn7[..9e0][..123.654] Order By 0.0[..Count ( * )][..`1esn`] Desc Limit 0x0 In 0.e0 In #usn8"), + octest:ct_string("Unwind $123456789 In 0.12 As `7esn` With Distinct *,1e1 Is Not Null Is Not Null Where `7esn` Ends With $7 Ends With $@usn5 Unwind {usn2:$@usn6[00]}[..[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1]][..[12e12 Starts With $0 Starts With $`2esn`,$_usn3 Is Null]] As `5esn` Union Unwind _usn3 Is Null Is Null As `7esn` Detach Delete 0Xa In #usn7 In 's_str',0.e0[1000.._usn4][.e1..usn1] With *,_usn3[12.e12..][`5esn`..] As @usn6,999[..`1esn`][..07] Order By 7 Is Null Is Null Ascending,Count ( * ) =~0e0 =~`8esn` Descending,#usn7[0.e0..][$#usn8..] Descending Where $999 Ends With .e0 Union All Merge (usn2 :`1esn`:_usn4{usn2:999 Contains $1000})<-[@usn6? *0..01{_usn4:0Xa Ends With $`3esn` Ends With $1000}]-(`3esn` :`1esn`:_usn4) On Match Set 0.12.`8esn`? =.0 Contains .e12 Contains 0"), + octest:ct_string("Remove (`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[ *0..01]-(@usn6 :_usn3{@usn6:07 Is Not Null Is Not Null,`5esn`:0e0 =~7 =~12.0}).`2esn`?,Extract(@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00).@usn5! Merge (@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) On Match Set usn1 =$usn1 Starts With usn1 Starts With True Create ((:`3esn`{`1esn`:`7esn`,`8esn`:12e12 =~$`7esn`})-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})),((`8esn` {`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]})<-[_usn3?:_usn3|:`7esn`]->(#usn7 )-[?:#usn8|:`3esn` *0x0..]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}))"), + octest:ct_string("Return Distinct *,$`7esn`[0.12] Limit 12[..0e0][...e1] Return *,`2esn`[..$_usn4][...12] As `6esn`,`1esn` Starts With 9e1 As `6esn` Order By 01 Ends With 123456789 Desc,1.e1[12.e12..] Desc,\"d_str\" Is Not Null Ascending Skip [#usn7 In 9e0[$1000] Where `6esn`[$1000][`3esn`]][Extract(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1|010 Starts With $`` Starts With 0e0)..] Limit @usn6 =~999 =~@usn5 Unwind 01 Ends With 123456789 As usn1"), + octest:ct_string("Optional Match `8esn`=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2) Where $0[0Xa..$123456789] Union Optional Match (`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Where #usn7[0.e0..]['s_str'..] Merge ((@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})) On Match Set #usn7+=`1esn` Remove None(_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`).`2esn`,(`5esn` :``:usn2)<-[?:`4esn`|@usn5{usn2:$@usn6[$`8esn`..][123456789..]}]->(:_usn4{`8esn`:01234567[Null..$_usn3]}).``?,Extract(usn2 In 7[12] Where .12[0X7..][12e12..]|0.0 Contains #usn7).`1esn`"), + octest:ct_string("Match (((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2)))"), + octest:ct_string("Unwind 12e12[12e12][$#usn7] As usn2 Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) On Create Set #usn7+=.e0[..9e12][..07],`4esn`(True[$_usn3..],$999[``]).usn2 =123456789 Is Null Is Null,@usn5 =01[07..][1.e1..] On Create Set `5esn`+={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},usn2 =True Contains 0x0 Contains $_usn3 Delete $_usn4[9e0..][$1000..] Union Unwind (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] As `5esn` Return *,0.e0 =~00 As `3esn` Order By 's_str'[0x0..1.e1] Asc,usn1[False..`5esn`][$1000..$12] Ascending"), + octest:ct_string("Delete $_usn4[..123456789],.e1 In 123456789 Union Optional Match `8esn`=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2) Where $0[0Xa..$123456789] Union Remove All(#usn7 In 9e1[$`1esn`..] Where Count ( * ) In 0.12).#usn7?,All(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`).#usn8,{`4esn`:$999[0Xa..][9e1..]}.`3esn` Detach Delete $123456789[.0..],All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})]"), + octest:ct_string("With *,`3esn`[...e1] Where 12.e12[`8esn`..][1000..]"), + octest:ct_string("Unwind Any(usn2 In 7[12] Where $_usn3 Is Null) Is Not Null Is Not Null As `2esn` With Distinct Any(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]) =~[9e12 =~@usn6,01 Ends With 0Xa Ends With 0X7,$@usn6[$0..9e12][.e12..Null]] As `7esn` Where .0 Starts With `1esn` Optional Match `7esn`=((`4esn` )-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`` :_usn3)-[`4esn`?:`5esn`|:usn2]->(:`4esn`:`6esn`{usn2:$`8esn` Is Not Null Is Not Null}))"), + octest:ct_string("Create _usn4=((#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[`5esn`? *01234567..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(usn1 {``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})),(_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Create _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),(((`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})<-[:`2esn`|`4esn` *0X0123456789ABCDEF..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(@usn6 :`2esn`{`4esn`:$999[0Xa..][9e1..]})))"), + octest:ct_string("Match `7esn`=(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]}) Where $#usn7 Ends With 's_str' Ends With 0X7 Optional Match (((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}))),`8esn`=(:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}) Union All Match _usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))),usn1=(_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})"), + octest:ct_string("Merge ((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)) Remove (@usn5 :`6esn`:_usn3{`7esn`:`8esn`[..$#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]})-[`3esn`:`2esn`|`4esn`]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[usn1:_usn4]-(#usn7 :@usn6).#usn8 Union Remove [$`4esn`[`6esn`..$12],00[12..$`6esn`]].``! Delete $`1esn` Contains 1e1 Contains @usn6,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null,`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] Detach Delete `` =~.12,[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])],123456789[12]"), + octest:ct_string("Remove Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|_usn3[`2esn`..0X7][0.e0..$`3esn`]).`7esn`? Return Distinct *,#usn8 =~0.e0 Order By $`5esn`[\"d_str\"..] Ascending,Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5) Contains [`8esn` In 123456789 =~@usn6 Where .e12[@usn6..][010..]|Count(*) Is Not Null Is Not Null] Contains ({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]}) Desc,$1000 Is Null Is Null Ascending Limit $0 =~9e1 =~$`2esn` Union Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3) With `5esn`[..123.654][...e12] As @usn6,(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) As `2esn`,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As `1esn` Order By None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0) Descending,@usn5[$`7esn`..`5esn`] Ascending,.0 Contains .e12 Contains 0 Asc Skip usn1 Limit `6esn`[$`8esn`][9e1] Where False Starts With 0X7 Starts With 01234567"), + octest:ct_string("Remove Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null).`7esn`?,(_usn4 :_usn4)<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[ *..07{`6esn`:Count(*)[9e12..12.0]}]->(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}).``? With *,$@usn5 In 12e12 In 01 Order By 0.12 Starts With $`8esn` Starts With @usn5 Ascending Limit $7 Starts With $`4esn` Merge `1esn`=(((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[?:`8esn`*]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}))) On Match Set _usn4 =0Xa In #usn7 In 's_str',`5esn`+=$#usn8 Starts With .e12 Starts With 1.e1,`1esn`+=usn2 In _usn3 On Match Set _usn3+=`6esn`[$``..$_usn3][1000...0],[usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5|0 Ends With 12.e12 Ends With usn2].`1esn` =123.654 Is Null Is Null Union All Merge `1esn`=(usn2 :`5esn`)<-[? *7..]-(#usn7 :``:usn2) On Match Set `8esn` ={`3esn`:.e1[..\"d_str\"][..$123456789]},`1esn` =$7 Starts With 12.e12 Starts With $@usn6,None(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]).`3esn`? =#usn8[..`8esn`] Unwind $_usn3 Is Not Null Is Not Null As `1esn` Match (((`4esn` :``:usn2)<-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]-({`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[:_usn4{`8esn`:12.e12 Is Not Null Is Not Null,#usn7:@usn6[Null...0][\"d_str\"..Count(*)]}]-(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False}))),((@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})) Union All Return Distinct 12.e12 =~0X0123456789ABCDEF =~1.e1 As `6esn`,0.e0[..$7] As _usn3,usn1 Ends With 0.0 Skip usn2 =~$`` =~$`8esn` Limit (usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null Delete 07[_usn3..][`6esn`..] Unwind 9e12 =~@usn6 As usn1"), + octest:ct_string("Detach Delete $_usn3,[Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] Union All Optional Match ((`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Delete [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] In [12e12 In 123456789,`1esn`] In All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),True[..#usn8],0.12[0Xa][$`7esn`]"), + octest:ct_string("Detach Delete .12[..usn2][..12e12] Return Distinct *,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) As `7esn` Skip $`5esn` =~$0 =~`` Limit Count(*) In 12 In `6esn`"), + octest:ct_string("Delete _usn3 =~9e1 =~12e12,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null Union Merge @usn6=(#usn7 {_usn4:1.e1[`8esn`]})<-[usn2{`2esn`:$12 Starts With $usn1}]->(:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]}) On Create Set `3esn`+=`2esn` =~.e12 =~0X0123456789ABCDEF,#usn8:usn1:`3esn`,``+=`2esn` On Create Set `3esn` =12[.0],All(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])._usn4? =12 Starts With True Starts With 12e12 Unwind Count ( * ) In True In @usn5 As `3esn`"), + octest:ct_string("With 0X7[`2esn`..] As `6esn`,Single(usn2 In False[$usn1][0x0])[All(@usn6 In 010[`5esn`] Where 00[1.e1..])][(:`2esn`{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`})-[?{`5esn`:$`2esn`[.0..][0.0..]}]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})-[`` *1000..0X0123456789ABCDEF]->(:_usn4{`8esn`:01234567[Null..$_usn3]})] Order By ``[$`3esn`] Asc,[1000[0e0][1e1],12.0 Is Null Is Null] Is Not Null Is Not Null Asc,.e0 =~$`7esn` =~0X0123456789ABCDEF Descending Skip [#usn8 In `7esn` Where .e0 Is Null Is Null] Ends With {usn1:$`4esn`[`6esn`..$12],`4esn`:usn1 Contains 010} Ends With (:``:usn2{``:True[$_usn3..]})<-[`2esn`? *01..123456789]-(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(`1esn` $`4esn`) Limit `5esn`[..123.654][...e12] Unwind $_usn3 Is Not Null As _usn3 Match ((`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})),`5esn`=(((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Where `3esn`"), + octest:ct_string("With Distinct $@usn5,0.12[0Xa][$`7esn`] As `4esn`,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As _usn3 Order By 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Asc,`6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] Desc Skip 01[$`7esn`..$@usn6] Where 12 In $usn1 In 7 Union Create _usn3=((:``:usn2{`5esn`:1.e1[`8esn`],`1esn`:.e0})-[`3esn`:`2esn`|`4esn`]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`6esn`?:_usn3|:`7esn` *..010]->(:_usn3{_usn4:.e1[7..][9e0..]})),@usn6=(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`}) Optional Match @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) Where Count ( * )[@usn6]"), + octest:ct_string("Delete Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null],_usn3[`2esn`..0X7][0.e0..$`3esn`],'s_str' Ends With _usn4 Ends With 0e0"), + octest:ct_string("Unwind 12.0 In 010 As @usn5 Merge (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}) On Match Set #usn7+=[#usn8 In `7esn` Where usn2[07..][.0..]|$usn1 Ends With _usn4 Ends With `2esn`] Contains (_usn3 {#usn7:1000[12e12][`5esn`]})-[`3esn`?:`3esn`]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0}) Contains Extract(`3esn` In `2esn`[..01][..True] Where usn1 In ``),@usn6:`8esn`,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.0 Starts With $`2esn` Starts With .e1).`8esn`? =$`3esn`[$_usn4..0Xa] Union Remove All(`8esn` In 123456789 =~@usn6 Where ``[9e12][$999]).``? Detach Delete #usn7[`8esn`..usn1][$999..`7esn`],{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`} Contains Filter(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5) Contains Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``),.0 Ends With 999 Ends With $`5esn` Union All Return .e1 =~_usn4 =~_usn4,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `5esn`,$`4esn` Starts With 0 Starts With `7esn` As usn2 Order By 0.0[$usn2..] Asc Limit @usn5(Distinct) =~[_usn3[`5esn`..][usn2..],$#usn7 =~`2esn`] =~1.e1"), + octest:ct_string("Merge ({@usn6:0x0[Count(*)..@usn6][Count(*)..0Xa],`7esn`:0.0 =~9e0 =~$0})-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(:_usn3{_usn3:$`3esn`[.e1][_usn4]})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`) On Match Set {#usn8:$`5esn` =~$`8esn` =~usn2}.`4esn`! =999[@usn5..][Null..],`4esn`:`1esn`:_usn4 On Create Set [usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]].`1esn`? =999 Contains 0 Contains $`5esn` Match #usn7=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2),`2esn`=({@usn5:$`5esn` Is Not Null Is Not Null})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Where $_usn4[$`5esn`][`7esn`] With `2esn` Starts With $`4esn` As `8esn` Skip @usn6[12.0..0.12] Limit None(#usn7 In 9e0[$1000] Where $_usn3 Is Null)[[0 =~1e1,$#usn8[12.e12..`8esn`][12.0..0.0],$1000 Is Not Null]..] Where $7 Starts With 12.e12 Starts With $@usn6 Union All Create ((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )),@usn5=((_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})<-[#usn8?:@usn6|:`7esn` *0X0123456789ABCDEF..{_usn4:12.e12 =~.0 =~usn1,usn1:12e12 Contains `2esn`}]->(usn2 :@usn6)-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]-(`1esn` {@usn5:`2esn` Starts With $`4esn`})) With $@usn6[..12] As #usn8,`6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] As #usn8,[`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})] Order By 12.e12[..9e1][..$_usn3] Descending,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] Desc Skip @usn6(Count ( * ) In True In @usn5)[None(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)] Limit Extract(usn2 In 7[12] Where usn1 Starts With 00|`8esn` Contains Count(*) Contains $#usn7) Contains None(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[0.e0]) Contains Extract(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]|$`4esn`['s_str'..]) Where `1esn` Is Not Null Is Not Null Optional Match #usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))),@usn5=(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0})"), + octest:ct_string("Merge @usn5=(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Remove (@usn5 :`6esn`:_usn3{`7esn`:`8esn`[..$#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(_usn3 {`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}).@usn5?,Any(`5esn` In `7esn`[$usn2..][$123456789..] Where 999[12.e12])._usn3?"), + octest:ct_string("Delete 01 Ends With 123456789 Union With Distinct *,.0 Contains .e12 Contains 0 Skip .e1[..$`3esn`][..01] Where 9e12[_usn4..$`5esn`][_usn4...e1] Merge `5esn`=({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})<-[_usn4?:@usn6|:`7esn`]->(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})<-[`8esn`:usn1|`4esn` *0Xa{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]->(:`8esn`) On Create Set {usn1:$_usn4 Starts With $1000 Starts With 12}.@usn6! =[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])] On Create Set `5esn`+=All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],`2esn` =False Starts With 0X7 Starts With 01234567 With Distinct *,0X7[`2esn`..] As `6esn`,$`1esn` Contains 1e1 Contains @usn6 As `3esn` Order By 0xabc In .12 In 0Xa Descending Limit [#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Union All Return Distinct *,$#usn7[..0Xa] As #usn8,0X7[`2esn`..] As `5esn` Order By $7[999][usn1] Asc Create ((usn1 :_usn4{`4esn`:`7esn` Is Null})<-[`8esn`?:`2esn`|`4esn` *01..123456789{`8esn`:$`4esn` Is Null Is Null,usn1:$1000 Starts With $`3esn` Starts With 0.e0}]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})) Merge ((`1esn` {_usn4:`8esn` Is Null})) On Create Set All(usn2 In False[$usn1][0x0] Where 0.0[usn1..]).`8esn`? =_usn4 Starts With 1000 Starts With $usn2,`7esn`+=12 In $usn1 In 7,Any(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1).`2esn`! ={_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] On Match Set @usn6+=0.0[..Count ( * )][..`1esn`],usn2 =1.e1 Starts With 9e12,Single(usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5).@usn5! =0xabc[$999..][$usn1..]"), + octest:ct_string("Unwind None(@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn2..][$123456789..]) =~{`2esn`:7[12],usn1:.12[0X7..][12e12..]} =~Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)|True[0xabc..01234567][$`8esn`..$@usn6]) As `6esn`"), + octest:ct_string("Create `2esn`=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`})) Merge ``=(((`7esn` :`2esn`{@usn6:$0[123.654..0.e0]})-[_usn3 *..07{@usn6:$`2esn`[..$`3esn`][..12e12]}]->(`1esn` {#usn7:$`1esn` Ends With 0X0123456789ABCDEF,`3esn`:.12 Starts With _usn3 Starts With $``})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`}))) On Create Set `6esn`+=0x0[0X7] On Create Set `5esn` =`2esn` Starts With $`4esn`,`5esn`+={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},Extract(_usn4 In 12e12 In 123456789 Where .e1 Starts With 12.e12 Starts With `2esn`|$@usn5 Is Null Is Null).@usn5! =Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) Contains [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where .0 Is Null Is Null|`3esn`[0x0..]] Contains [999[12.e12],#usn8 Is Null Is Null,1.e1 =~$_usn4] Remove Any(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`).`1esn`,Single(`3esn` In `2esn`[..01][..True]).``,{usn1:'s_str'[0..]}._usn3? Union All Unwind .0 Contains .e12 Contains 0 As _usn4 With *,$`5esn` Is Not Null,usn2 Contains $0 Contains .0 Skip Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)[(`` :`5esn`{@usn5:123456789 =~@usn6})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`7esn` {``:9e1 Contains $999,``:$usn2[True..0X0123456789ABCDEF]}).._usn3(Distinct 0x0 Contains $`6esn` Contains `4esn`,usn2[1.e1])][(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})..[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|9e1 Is Null]] Limit $`4esn`[`6esn`..$12] Where 0Xa[Count(*)..] Union Merge @usn5=(:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']}) Remove [#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..]].@usn6!"), + octest:ct_string("Optional Match usn2=((usn1 {_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})),({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) Where .e1[usn2..$_usn3][.0..$#usn7] Return Distinct .e12 Starts With $7 Starts With .0,[$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) As #usn7,01 Contains usn2 Contains 0X0123456789ABCDEF As `8esn` Order By 0Xa =~False =~@usn5 Descending,12.0 In 010 Ascending,`4esn`[123456789] Ascending Union All Detach Delete 07[999],Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) Optional Match (:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})<-[`7esn`:`4esn`|@usn5 *12..]->({`4esn`:.e1[..$`3esn`][..01]}),_usn4=((#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[`5esn`? *01234567..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(usn1 {``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})) Where True[..#usn8] With Distinct 0.e0['s_str'..][01234567..] As `1esn`,None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,.0[$``..0X7] Skip 0x0[``..] Where $@usn5 Is Null Is Null"), + octest:ct_string("Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Create ``=(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Union Detach Delete $usn2[`2esn`..],`8esn`(Distinct #usn8 Is Not Null Is Not Null,`2esn` In 9e0 In 7) Starts With None(usn2 In 7[12] Where 123456789 =~12 =~'s_str') Match #usn7=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2),(((:_usn4{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})<-[`2esn`? *01..123456789]-(`2esn` :@usn6))) Where 999[123.654..$usn2][Count ( * )..0x0] Merge (((@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`})<-[`3esn` *7..]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[? *01..123456789]-(usn1 :_usn4{`4esn`:`7esn` Is Null}))) On Match Set usn1(True Contains 's_str' Contains $usn1,.e0 Is Not Null Is Not Null).@usn5! ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]}"), + octest:ct_string("With Distinct 0X0123456789ABCDEF In $usn2 In `4esn` Order By $0 Ends With $usn1 Ends With $_usn3 Desc Limit $123456789[12e12..9e0] Remove (_usn4 {_usn4:Null[..010][..1000],_usn3:.0 Is Null Is Null})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}).usn2 Delete None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6) =~Single(`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8) =~(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]}),{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]}[#usn7(Distinct $`1esn`[``][07])..None(@usn6 In 010[`5esn`] Where $`3esn` Ends With 01234567)] Union All Unwind $``[..\"d_str\"][..$#usn8] As @usn6 Union Create `3esn`=(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}) Unwind $_usn3 Is Not Null As _usn3"), + octest:ct_string("Match `3esn`=((:_usn3{_usn3:$`3esn`[.e1][_usn4]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:`5esn`)<-[ *01234567..]->(#usn8 :`8esn`)) Where 9e1 Starts With Count ( * ) Match (:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}),`7esn`=((_usn3 :`7esn`)) Where .e12[@usn6..][010..] Optional Match ``=((usn1 {_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})),`1esn`=((usn1 :_usn4{`4esn`:`7esn` Is Null})) Union All Merge usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]})"), + octest:ct_string("Unwind (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]} As `5esn` Merge (({@usn6:010 Starts With 0 Starts With 0.0,_usn4:07[$`2esn`..9e12][$`4esn`..9e12]})<-[:@usn6|:`7esn` *0..01{``:`1esn`[0.0..1e1][0x0..7],usn2:01[`3esn`..][Count(*)..]}]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})) Detach Delete {#usn7:usn1 In ``}[None(`3esn` In `2esn`[..01][..True])..Extract(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..])] Union Optional Match (({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn4?:@usn6|:`7esn`]-({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn3?:_usn3|:`7esn`]->(`3esn` {`8esn`:`7esn` In 010 In usn1})) Where _usn3 Ends With 7 Ends With $`1esn`"), + octest:ct_string("Merge ((:`6esn`:_usn3)) On Match Set `` =Extract(@usn5 In 's_str'[0..] Where 12e12 Is Not Null) =~[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]] With Distinct @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1|$@usn5 In $`6esn` In 12e12) Ends With (:`7esn`{#usn7:0 =~1.e1 =~$#usn7})<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}),`1esn`($`4esn`[`4esn`][Count(*)],`2esn` Starts With $`7esn`) =~Extract(@usn5 In 9e0 Ends With $#usn8 Where .e0 Starts With $@usn6 Starts With $7) =~{`3esn`:_usn3[`2esn`..0X7][0.e0..$`3esn`]} Where False Is Null Union Merge `3esn`=(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}) On Match Set _usn3+=#usn7[..07],(:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(usn1 :`7esn`).`4esn` =1.e1[$`3esn`][0Xa],All(@usn5 In 's_str'[0..] Where `2esn`[..01][..True]).`2esn`! =`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] On Create Set Filter(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7]).``! =12 Contains 01234567 Union Remove Single(`6esn` In $`6esn`[``..][Count(*)..] Where 0x0 Starts With $`6esn`).`4esn`,(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`).`5esn`,({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}).`5esn` Return Distinct 999[12e12..$_usn4] Order By Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,0X7[.0] Asc,$`3esn`[..0X0123456789ABCDEF][..7] Descending Limit #usn7 =~9e12 Merge ((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) On Create Set #usn8 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``|.12 In `8esn` In $#usn8]._usn4? =7 =~0.12,`6esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null,Any(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]).`3esn`! =(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null"), + octest:ct_string("Remove [Null[..010][..1000]]._usn4!"), + octest:ct_string("Unwind True Contains 's_str' Contains $usn1 As _usn4 Merge @usn5=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}) With Distinct $_usn4 Is Null Is Null,usn2 Starts With .0 Order By 9e1[$#usn8][$1000] Descending Limit #usn7 =~9e12"), + octest:ct_string("Detach Delete $usn2[`2esn`..$`1esn`],12 Ends With True Ends With @usn6 With Distinct `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] As `3esn`,usn1 Ends With 0.0 Order By $`3esn`[$_usn4..0Xa] Desc,$`1esn` Ends With 0X0123456789ABCDEF Ascending,$@usn5 Ends With @usn5 Ends With 0xabc Descending Where #usn8 =~0.e0 Merge #usn7=({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})"), + octest:ct_string("Create `7esn`=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}),_usn3=((:``:usn2{`5esn`:1.e1[`8esn`],`1esn`:.e0})-[`3esn`:`2esn`|`4esn`]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`6esn`?:_usn3|:`7esn` *..010]->(:_usn3{_usn4:.e1[7..][9e0..]})) Union Remove #usn8(Distinct 0X0123456789ABCDEF Contains 12e12 Contains 12.e12,Count(*) Starts With usn2 Starts With `7esn`).usn1,Single(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..]).#usn7?,Any(_usn4 In 12e12 In 123456789 Where `3esn`[7..0.e0][0.0..123456789]).`8esn`! Return $`4esn`[`4esn`][Count(*)] As `8esn`,$usn1[`2esn`..][$`2esn`..] As _usn3,_usn4[`7esn`] As usn2 Skip 01[..$`8esn`][..9e0] Limit 0X7[.0] Union With *,1.e1 Ends With $#usn7 As usn2,@usn5[01][@usn5] Skip $`5esn` Limit (`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Is Not Null"), + octest:ct_string("Match usn2=(:#usn8:`1esn`$`7esn`),`4esn`=(({#usn7:$@usn6[$0..9e12][.e12..Null]})) Where $``[..$#usn7][..`6esn`] Match (:`7esn`{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]}) Union Optional Match ((_usn4 :#usn7:`5esn`)-[`4esn`:`1esn`|`3esn` *12..]->({`7esn`:9e12 =~@usn6})),((:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[`1esn`:`8esn` *7..]-(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Where Count ( * )[$`5esn`..][$7..] Merge #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))) On Create Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] On Match Set Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa).@usn6! =0.e0 Is Not Null Is Not Null,`1esn` =07 In `6esn`"), + octest:ct_string("Merge `1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}))"), + octest:ct_string("Remove Any(`3esn` In `2esn`[..01][..True] Where $0 =~9e1 =~$`2esn`).usn1 With Distinct Filter(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3]) In ({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) In Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0) As `2esn`,1e1 Contains 12.0 As `1esn` Order By $999 Is Null Is Null Descending,Single(#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6])[Filter(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])..] Descending,.e12[0Xa..] Descending Where 9e1[`1esn`..0][999..1e1] Union Return Distinct *,0e0 Ends With 07 Ends With $`8esn` As `6esn` Order By {`4esn`:999 In 0e0,`6esn`:0.e0['s_str'..][01234567..]} Contains Single(`8esn` In 123456789 =~@usn6 Where 12.e12 Ends With `` Ends With 0) Ascending,$`4esn` In 1.e1 In #usn7 Desc Skip 0X0123456789ABCDEF In $usn2 In `4esn` Limit Extract(`3esn` In `2esn`[..01][..True] Where 0.0 Is Null Is Null|$usn2[0.e0])[{usn2:@usn5 Is Null,`8esn`:$@usn6 Ends With 123456789 Ends With 12.0}..] Remove [12.0 Is Null,.e1[..\"d_str\"][..$123456789]].`2esn`?,None(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True])._usn4!,None(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null).``! Remove `4esn`:`8esn`,[`1esn`].#usn8?,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where `1esn`[0.12..][@usn6..]).usn2!"), + octest:ct_string("Match ((#usn8 :_usn3)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)),((:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->({@usn6:12.e12 Contains #usn7 Contains $_usn4,usn2:$`5esn` =~$0 =~``})-[#usn7 *01..123456789]->(:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})) Where Count ( * )[@usn6] Union All Unwind $999[0Xa..][9e1..] As _usn4 Union Remove (:@usn5{usn2:$`3esn` Contains $`1esn`})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(`2esn` :@usn5)-[`2esn`? *12..{_usn3:$`2esn` Is Null}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}).`2esn`?,_usn4(Distinct True Contains 0x0 Contains $_usn3).`3esn`,None(#usn7 In 9e0[$1000] Where 00[12..$`6esn`]).`7esn`? Detach Delete All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`],usn2 Ends With $`4esn` Return 0.e0[..$7] As _usn3,0xabc =~@usn5 =~$usn1 Skip $@usn6[00] Limit `2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..]"), + octest:ct_string("Remove (@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`})-[@usn6?{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null}]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}).@usn5?,None(`8esn` In 123456789 =~@usn6 Where $usn1)._usn3! Unwind $123456789 Starts With 0.12 Starts With Null As #usn7 Unwind `1esn`($`4esn`[`4esn`][Count(*)],`2esn` Starts With $`7esn`) =~Extract(@usn5 In 9e0 Ends With $#usn8 Where .e0 Starts With $@usn6 Starts With $7) =~{`3esn`:_usn3[`2esn`..0X7][0.e0..$`3esn`]} As _usn3"), + octest:ct_string("Unwind $12 Starts With $0 Starts With $`8esn` As @usn5 Return *,1e1 Contains 0.e0 Contains 9e1,`1esn` Starts With 9e1 As `6esn` Order By 010 Contains .e1 Asc,(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})<-[#usn7 *01..123456789]->(`6esn` :usn1:`3esn`) Ends With Extract(#usn8 In `7esn` Where 9e12[..1e1][..'s_str']) Ends With [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123.654 Is Not Null|$`2esn`[.0..][0.0..]] Descending Union All Remove (@usn5 :`6esn`:_usn3{`7esn`:`8esn`[..$#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(_usn3 {`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}).@usn5?,Any(`5esn` In `7esn`[$usn2..][$123456789..] Where 999[12.e12])._usn3? Union All Create ((:_usn4{`4esn`:.e1 In 123456789})<-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})) With Distinct (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1"), + octest:ct_string("Optional Match `8esn`=(((`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})<-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Merge ((:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})) On Create Set @usn6+=7 Ends With 01234567 Ends With 0Xa,`2esn` =0Xa =~False =~@usn5"), + octest:ct_string("Create (`6esn` {`3esn`:$`2esn`[0..123456789][``..`1esn`],`7esn`:$0[0Xa..$123456789]}),`7esn`=((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )) With *,0.0[$@usn5.._usn4] As `1esn`,07 Is Null As #usn7 Order By 12.e12 Contains `6esn` Ascending,[$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1] Asc,Extract(`3esn` In `2esn`[..01][..True] Where 00[01234567][False]|$`3esn` Ends With 01234567) Starts With (_usn4 :_usn4)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}) Starts With Extract(@usn6 In 010[`5esn`] Where $`2esn` Starts With `4esn` Starts With $usn1) Asc Limit 9e1 With *,1.e1 =~$_usn4,9e12 Contains $_usn3 Contains \"d_str\" As @usn5 Order By `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] Desc,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,$@usn5 Descending Where `6esn`[$1000][`3esn`] Union All Return 999 In #usn8 In $``,$1000 Starts With $`3esn` Starts With 0.e0 As @usn6,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `5esn` Order By [@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null Ascending Skip [`8esn`[..$#usn8],1.e1 Starts With 9e12] Ends With [`6esn` In $`6esn`[``..][Count(*)..]|.e1[12.0..]] Ends With Any(usn2 In 7[12]) Limit Count(*)[9e12..12.0]"), + octest:ct_string("Delete `8esn` In $1000 Delete `1esn` Contains $999 Contains 0.0,[#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) Union With Distinct _usn3[0x0],$@usn6 Is Null Is Null As `5esn` Where $`8esn` Is Not Null Is Not Null"), + octest:ct_string("Unwind $`5esn`[$`6esn`][`2esn`] As _usn4 Merge `3esn`=((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})) With *,0.e0 =~00 As `3esn` Order By 's_str'[0x0..1.e1] Asc,usn1[False..`5esn`][$1000..$12] Ascending Where 9e1[$#usn8][$1000] Union Return Count ( * ) In True In @usn5 As `2esn`,$_usn3[$12] Limit `8esn`[0.e0..] Return Distinct *,0e0 Ends With 07 Ends With $`8esn` As `6esn` Order By {`4esn`:999 In 0e0,`6esn`:0.e0['s_str'..][01234567..]} Contains Single(`8esn` In 123456789 =~@usn6 Where 12.e12 Ends With `` Ends With 0) Ascending,$`4esn` In 1.e1 In #usn7 Desc Skip 0X0123456789ABCDEF In $usn2 In `4esn` Limit Extract(`3esn` In `2esn`[..01][..True] Where 0.0 Is Null Is Null|$usn2[0.e0])[{usn2:@usn5 Is Null,`8esn`:$@usn6 Ends With 123456789 Ends With 12.0}..] Create `1esn`=((@usn6 {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})-[:``{``:.0[$``..0X7]}]->(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})-[ *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})),`6esn`=((#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]}))"), + octest:ct_string("Detach Delete Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])],123.654 Contains @usn5 Contains $`5esn` Union With Distinct *,`5esn`[..123.654][...e12],12e12 =~$`7esn` Skip 0 =~1.e1 =~$#usn7 Remove {`4esn`:0.0 Contains #usn7,`1esn`:$999[``]}.`5esn`? Merge (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}) On Match Set _usn3+=.e0 Ends With $#usn7 Ends With False On Match Set `2esn` =9e1 Ends With Count(*) Ends With $7 Union All Create `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}) Detach Delete 12 Starts With $123456789 Starts With .e12"), + octest:ct_string("Merge ((:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[`2esn`?:usn1|`4esn` *00..0Xa]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[:`2esn`|`4esn` *1000..0X0123456789ABCDEF]-(usn2 :`6esn`:_usn3{@usn5:$0[0Xa..$123456789]})) On Match Set `1esn`:@usn5,All(@usn5 In 's_str'[0..] Where `2esn`[..01][..True]).`2esn`! =`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]],`2esn`+=$_usn4[01..][$_usn4..] On Match Set #usn7+=.e0[..9e12][..07],`4esn`(True[$_usn3..],$999[``]).usn2 =123456789 Is Null Is Null,@usn5 =01[07..][1.e1..] Remove Filter(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1).`5esn`! With Distinct $`1esn`[Null][True] As usn2,Count ( * )[9e12] Skip [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] Limit 0X7[0.12..] Where 0e0[01][$`7esn`] Union All Unwind #usn8(1000[12e12][`5esn`],9e1 Contains 12)[Extract(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0)..`1esn`(Distinct `3esn`[7..0.e0][0.0..123456789],`1esn` Starts With 0xabc Starts With $usn2)][Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 9e0[Count(*)..0.12][$`1esn`..12.0])..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12)] As @usn6 Remove None(`5esn` In 0X7 In $#usn7 Where usn1 =~$`7esn`).`3esn`!,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $123456789 In 0.12)._usn3?,(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]}).`6esn`? With *,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null Order By .e0 Starts With $@usn6 Starts With $7 Descending Skip [$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa) Union Unwind Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) Is Not Null Is Not Null As usn2 With Distinct *,0xabc Is Null Is Null Skip $7 Ends With Count ( * ) With Distinct 0.e0['s_str'..][01234567..] As `7esn`,Single(_usn4 In 12e12 In 123456789 Where 0e0 =~7 =~12.0) Starts With Extract(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]|9e12 =~@usn6),[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Skip $`6esn`[1.e1][$_usn3] Limit usn1 Is Not Null"), + octest:ct_string("Delete [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] In [12e12 In 123456789,`1esn`] In All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),True[..#usn8],0.12[0Xa][$`7esn`] Union With Distinct [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Any(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`) Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc Skip {`4esn`:999 In 0e0,`6esn`:0.e0['s_str'..][01234567..]} Contains Single(`8esn` In 123456789 =~@usn6 Where 12.e12 Ends With `` Ends With 0) Limit `6esn` Is Null Is Null Merge (`2esn` :`1esn`:_usn4)-[?*..]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) On Create Set @usn6+=$#usn7 Ends With 's_str' Ends With 0X7,`6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn2 =$@usn5 Ends With @usn5 Ends With 0xabc With Distinct $12 Starts With $0 Starts With $`8esn`,9e1[usn1..0x0][12.e12..12.0] As usn1,$``[..\"d_str\"][..$#usn8] As `6esn` Union Remove (:#usn8:`1esn`{usn2:$`7esn`[.e1][12.0],``:$`1esn` Contains 1e1 Contains @usn6})-[`` *1000..0X0123456789ABCDEF]-(`` :`7esn`)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:usn2{`6esn`:#usn7[$`3esn`..$1000][0.0..`2esn`],``:010 Starts With 0 Starts With 0.0}).`4esn`!,Extract(`5esn` In 0X7 In $#usn7 Where @usn6 Is Not Null Is Not Null).@usn5?,Any(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).#usn7!"), + octest:ct_string("Unwind 0x0[..9e0] As @usn6 Create (_usn4 :`6esn`:_usn3)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}),#usn8=(:@usn6{@usn6:010 Starts With 0 Starts With 0.0,_usn4:07[$`2esn`..9e12][$`4esn`..9e12]}) Union All With Distinct Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Order By Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Asc,12.e12[..9e1][..$_usn3] Descending,True In (#usn8 :`6esn`:_usn3)<-[`2esn`?:_usn4{#usn8:$12[9e0..$999]}]->({``:.e1 Starts With 12.e12 Starts With `2esn`}) Descending Where $#usn7[..$`4esn`][..01] Match `3esn`=(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0}),((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[_usn3?:`8esn` *1000..0X0123456789ABCDEF{@usn5:07 Is Not Null Is Not Null}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Where `5esn`[$`7esn`..$@usn5] Union All Delete `4esn`($_usn4 Starts With $1000 Starts With 12)[{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}],00[$`1esn`..][@usn6..],0.12 Starts With $`8esn` Starts With @usn5"), + octest:ct_string("Return *,@usn5 Contains #usn8 Contains 12.0 As `6esn`,{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] Skip 0.0 Is Null Is Null Return _usn3[`2esn`..0X7][0.e0..$`3esn`] As `7esn` Order By [usn2[12e12..]['s_str'..]] =~Single(`8esn` In 123456789 =~@usn6 Where $`4esn`[`4esn`][Count(*)]) Ascending,`4esn`[\"d_str\"]['s_str'] Ascending,.12 In `8esn` In $#usn8 Asc Skip None(@usn6 In 010[`5esn`] Where 123.654 In $`7esn`)[(`` {`7esn`:$#usn7[..0Xa]})<-[`1esn`?:usn1|`4esn` *00..0Xa]-(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[usn1? *01234567..{@usn5:01[`3esn`..][Count(*)..]}]->(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})..[False Contains 0 Contains $`6esn`,`1esn` Is Not Null Is Not Null]] Limit [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Contains Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|@usn5 Contains #usn8 Contains 12.0) Return Distinct $`3esn`[$_usn4..0Xa] As #usn7,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa) As `3esn`,$`5esn`[$`3esn`..] As `4esn` Limit $`` Is Not Null Is Not Null Union All Merge `7esn`=((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})-[#usn8:#usn7|@usn5 *123456789..{@usn5:usn2[12.e12..]}]->(`` )<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})) On Match Set `7esn`+=$`5esn` Is Not Null,Any(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7])._usn3 =.e12[`2esn`..010],`8esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null On Match Set @usn6 =999[..`1esn`][..07],`3esn`+=$@usn5[0.0][0X0123456789ABCDEF],`6esn`+=$usn1[1000][.12] Optional Match _usn4=({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}) Where 0x0[@usn6..][01..] Match ((#usn8 :_usn3)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)),((:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->({@usn6:12.e12 Contains #usn7 Contains $_usn4,usn2:$`5esn` =~$0 =~``})-[#usn7 *01..123456789]->(:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})) Where Count ( * )[@usn6]"), + octest:ct_string("Unwind Extract(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|.e1[usn2..$_usn3][.0..$#usn7]) As _usn4 Union All Detach Delete 0.e0 =~``,None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Unwind 0.0 Is Null Is Null As #usn8 Union All Return Count ( * ) In True In @usn5 As `2esn`,$_usn3[$12] Order By $@usn6 =~0xabc =~$999 Descending,Null Ends With _usn4 Ends With 0.0 Asc,`3esn`(Distinct $123456789[...12][..@usn6])[{usn2:$`2esn` Is Null,#usn8:.0 Is Null Is Null}][#usn7(Distinct $@usn6 Is Not Null Is Not Null,``[7.._usn3])] Asc Skip usn2 =~7 Limit 0[@usn5..$#usn7] With *,Extract(`6esn` In $`6esn`[``..][Count(*)..] Where $@usn5 Starts With `5esn` Starts With 01234567|0.e0[..$7]) Is Null Is Null Skip 0xabc In 123456789 In 0x0 Limit _usn4 Starts With 1000 Starts With $usn2 Where 123.654[$0..0X7][Null..#usn8] With Distinct 0e0[01][$`7esn`],'s_str'[0..] As `4esn`,Filter(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) =~{#usn7:1000[12e12][`5esn`]} As _usn4 Skip 0x0[$0][7] Limit None(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])[Any(`3esn` In `2esn`[..01][..True] Where $`3esn`[..0xabc][..$7])][$#usn7] Where $`7esn`[$_usn4][.e0]"), + octest:ct_string("Unwind (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]} As `4esn` Union Delete 12.e12 Ends With $``,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null,{#usn7:usn1 In ``}[None(`3esn` In `2esn`[..01][..True])..Extract(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..])]"), + octest:ct_string("Merge #usn7=((@usn5 {`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]})<-[`2esn`:`8esn`{`7esn`:$`4esn` Is Null Is Null}]->(usn1 :@usn6)-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(`8esn` :`8esn`)) On Match Set `1esn` =All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null On Match Set `5esn`+=[`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})] Match `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Optional Match `2esn`=(:#usn8:`1esn`$`7esn`) Where _usn4 Is Not Null"), + octest:ct_string("Return (:`2esn`)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})-[@usn6? *0X0123456789ABCDEF..{``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6}]-(`5esn` :@usn5) Is Null Is Null,`7esn` Ends With $7 Ends With $@usn5 As `7esn`,Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] As `6esn` Order By 1000[12e12][`5esn`] Descending Skip {``:0.0 =~9e0 =~$0} Contains [@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn2..][$123456789..]|0Xa[Count(*)..]] Limit .0[.e12..]"), + octest:ct_string("Merge (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}) On Match Set #usn7+=[#usn8 In `7esn` Where usn2[07..][.0..]|$usn1 Ends With _usn4 Ends With `2esn`] Contains (_usn3 {#usn7:1000[12e12][`5esn`]})-[`3esn`?:`3esn`]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0}) Contains Extract(`3esn` In `2esn`[..01][..True] Where usn1 In ``),@usn6:`8esn`,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.0 Starts With $`2esn` Starts With .e1).`8esn`? =$`3esn`[$_usn4..0Xa] Unwind 0X7[..$`8esn`] As `1esn` With Distinct $@usn6[.0..][0e0..] Order By $`8esn` Is Not Null Is Not Null Descending,Null Ends With _usn4 Ends With 0.0 Ascending Limit .e0 Where 0.12[..$_usn3][..0Xa] Union With Distinct *,[$usn1[`2esn`..][$`2esn`..]] Contains Extract(usn2 In 7[12] Where $_usn3 Is Null|.e12 Is Null Is Null),$#usn7 Contains $`7esn` Contains .e12 As @usn5 Order By 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Asc,`8esn` Is Null Desc Remove {``:.e12 Ends With 0Xa Ends With 0xabc}.usn2? Union All Remove `4esn`:`8esn`,[`1esn`].#usn8?,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where `1esn`[0.12..][@usn6..]).usn2! Match `3esn`=(`` :`6esn`:_usn3{_usn3:$`6esn`[1.e1][$_usn3]})-[_usn4?:`6esn`|:#usn8]->(#usn7 :`3esn`{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}),#usn7=(({@usn6:0x0[Count(*)..@usn6][Count(*)..0Xa],`7esn`:0.0 =~9e0 =~$0})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF}))"), + octest:ct_string("Delete $@usn5 Contains 7 Contains 7,12 Starts With \"d_str\" Starts With 00,$_usn3[_usn4..] Optional Match (usn2 :_usn4),`1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Where 0e0[01][$`7esn`] Union All Remove [False[$`4esn`..],$#usn7[..0Xa]].usn1?,({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}).`5esn` Merge @usn6=((({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}))) On Match Set `1esn` =Filter(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12])[..Extract(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])][..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]],#usn8(Distinct 12.0[$1000..][#usn7..],0xabc In Null).`2esn` =0.e0 Starts With usn1 With *,0.e0 =~00 As `3esn` Order By 's_str'[0x0..1.e1] Asc,usn1[False..`5esn`][$1000..$12] Ascending Where 9e1[$#usn8][$1000]"), + octest:ct_string("Remove {#usn8:`1esn`[usn1][0xabc],_usn3:$`6esn`[1.e1][$_usn3]}.`3esn`,{usn1:@usn6[9e12]}.`4esn`! Union All Optional Match (`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}) Return Distinct _usn3 Is Not Null Is Not Null As `` Skip 0X7[..$`8esn`] Limit {@usn5:$@usn6 Is Not Null Is Not Null} Starts With [`3esn` In `2esn`[..01][..True] Where 0x0[usn1..usn1]] Starts With Extract(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..]|0X7['s_str'..][01..]) Union Merge @usn5=(:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']}) Remove [#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..]].@usn6!"), + octest:ct_string("Delete `7esn`[$usn2..][$123456789..] Return $@usn6 Ends With 12.e12 Ends With @usn5 As usn2,``[usn1][`5esn`],`7esn`[..$`6esn`] Order By [#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Asc,(`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc Skip None(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])[Any(`3esn` In `2esn`[..01][..True] Where $`3esn`[..0xabc][..$7])][$#usn7] Limit 0e0 Is Null Is Null Return Distinct *,count($`4esn`[`8esn`],`4esn` Is Not Null Is Not Null) =~Filter(@usn5 In 's_str'[0..] Where _usn3[0x0]),@usn6 Contains .12 Contains $usn1 As `6esn` Order By 12.0 =~@usn6 =~$`2esn` Ascending Skip 0.0 Is Not Null Limit Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null Union Match ({`1esn`:1.e1[`8esn`]})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->({usn1:$123456789 In 0.12}) Union All Delete [Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] With Distinct (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3) Order By `1esn` Contains $999 Contains 0.0 Ascending Limit 0.e0[1000.._usn4][.e1..usn1]"), + octest:ct_string("Remove Any(@usn5 In 's_str'[0..] Where #usn7[0.12..])._usn3,[`6esn` In $`6esn`[``..][Count(*)..] Where @usn5[0.0..0X7]].``! Return Distinct *,Null[..010][..1000] As #usn7,9e12 Ends With 12e12 Ends With 12 As `` Order By 1000[$7..][_usn4..] Desc Skip $`3esn` Ends With 01234567 Limit 7 Ends With .12"), + octest:ct_string("Merge `4esn`=({`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}) On Create Set #usn7+=Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] On Match Set `2esn` =9e1 Ends With Count(*) Ends With $7"), + octest:ct_string("With (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),[$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) As #usn7,`7esn` In 010 In usn1 Order By .e12[0Xa..] Descending,`5esn`[$`7esn`..$@usn5] Ascending,`5esn`[..True][..0.e0] Descending Union Remove (:#usn8:`1esn`{usn2:$`7esn`[.e1][12.0],``:$`1esn` Contains 1e1 Contains @usn6})-[`` *1000..0X0123456789ABCDEF]-(`` :`7esn`)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:usn2{`6esn`:#usn7[$`3esn`..$1000][0.0..`2esn`],``:010 Starts With 0 Starts With 0.0}).`4esn`!,Extract(`5esn` In 0X7 In $#usn7 Where @usn6 Is Not Null Is Not Null).@usn5?,Any(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).#usn7!"), + octest:ct_string("Detach Delete 12.e12[_usn4..$1000][$7..$999],$0[010..] Return Distinct `7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..],$`6esn`[0e0..][010..] Skip Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3) Limit 1.e1 Starts With 9e12 Detach Delete Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1)"), + octest:ct_string("Optional Match (usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}),({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5)<-[_usn4?:@usn6|:`7esn`]->({`6esn`:'s_str' Contains 12.e12 Contains $`4esn`}) Where True Contains 0x0 Contains $_usn3 Create usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})),((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Remove Single(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]).`8esn`!,Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7]|#usn8 =~.e0).`2esn`?,{_usn3:$`1esn` In .e0,`5esn`:False Starts With 0X7 Starts With 01234567}.`3esn` Union All Create ((#usn7 {`1esn`:$`4esn` Is Null Is Null})<-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(`6esn` :`8esn`)) Delete Count(*) Starts With usn2 Starts With `7esn`,$1000 Starts With $`7esn`"), + octest:ct_string("Merge `7esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)) On Create Set All(usn2 In False[$usn1][0x0] Where 0.0[usn1..]).`8esn`? =_usn4 Starts With 1000 Starts With $usn2,`7esn`+=12 In $usn1 In 7,Any(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1).`2esn`! ={_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] Merge (#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[?:`7esn`|:`2esn`]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]}) On Match Set `2esn` =`3esn`[..0X0123456789ABCDEF][..0x0] On Create Set `2esn` =$@usn5[0.0][0X0123456789ABCDEF],@usn6+=[`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})] Remove Any(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]).@usn6?,@usn5(Distinct Count ( * ) Ends With $123456789).`6esn`? Union Return 00[$`1esn`..][@usn6..] As _usn4 Limit @usn5[$`6esn`..][$999..] Merge `6esn`=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})))"), + octest:ct_string("With *,1.e1 =~$_usn4,9e12 Contains $_usn3 Contains \"d_str\" As @usn5 Order By `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] Desc,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,$@usn5 Descending Where `6esn`[$1000][`3esn`] Union All Remove ({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})-[usn2?:`3esn`]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}).`7esn` Remove All(#usn7 In 9e0[$1000] Where 12e12 Starts With $0 Starts With $`2esn`).`8esn`?,``:@usn5,Single(`8esn` In 123456789 =~@usn6 Where ``[9e12][$999])._usn4! Merge ((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[?:`4esn`|@usn5 *0Xa]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})<-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]-(:_usn4{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]})) Union Optional Match (((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((`6esn` :`5esn`)<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`5esn` :`4esn`:`6esn`)) Detach Delete Extract(@usn6 In 010[`5esn`] Where 00[$usn1..]|_usn3[$usn2..][$``..])[Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])],_usn4[$usn1..01234567][123.654..`5esn`],None(#usn7 In 9e0[$1000] Where $_usn3 Is Null) In [@usn5 In 's_str'[0..] Where $#usn8[12.e12..`8esn`][12.0..0.0]|`4esn` Ends With 12 Ends With .12] In [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12]"), + octest:ct_string("Unwind $12 Starts With $0 Starts With $`8esn` As usn2 Union Create _usn4=(:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}),((:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})) Return Distinct [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) As usn2,#usn8 =~0.e0,$usn1 Limit 00 In @usn6 In 0 Merge `8esn`=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`}))"), + octest:ct_string("Unwind Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])] As usn2 Remove Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 7[0e0..]).`8esn`!,`4esn`:usn2,(:`8esn`{@usn5:usn2 Ends With .e1 Ends With $`5esn`})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`).`8esn`? Remove #usn7:`3esn`,Single(`6esn` In $`6esn`[``..][Count(*)..] Where 's_str' Starts With 1e1 Starts With $0).`4esn`?"), + octest:ct_string("Create @usn5=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),#usn7=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))) Union All With 0X7[`2esn`..] As `6esn`,Single(usn2 In False[$usn1][0x0])[All(@usn6 In 010[`5esn`] Where 00[1.e1..])][(:`2esn`{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`})-[?{`5esn`:$`2esn`[.0..][0.0..]}]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})-[`` *1000..0X0123456789ABCDEF]->(:_usn4{`8esn`:01234567[Null..$_usn3]})] Order By ``[$`3esn`] Asc,[1000[0e0][1e1],12.0 Is Null Is Null] Is Not Null Is Not Null Asc,.e0 =~$`7esn` =~0X0123456789ABCDEF Descending Skip [#usn8 In `7esn` Where .e0 Is Null Is Null] Ends With {usn1:$`4esn`[`6esn`..$12],`4esn`:usn1 Contains 010} Ends With (:``:usn2{``:True[$_usn3..]})<-[`2esn`? *01..123456789]-(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(`1esn` $`4esn`) Limit `5esn`[..123.654][...e12] Unwind $_usn3 Is Not Null As _usn3 Match ((`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})),`5esn`=(((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Where `3esn` Union All Merge (_usn3 :`7esn`) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] On Create Set #usn7+=Null[.12..12e12],Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]).`1esn`! =[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)],@usn6 =usn2[1.e1] Merge `2esn`=(:#usn8:`1esn`$`7esn`) On Match Set `8esn`+=`2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..]"), + octest:ct_string("Delete Count ( * ) In 999 With *,@usn5 Contains #usn8 Contains 12.0 As `6esn`,{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] Skip 0.0 Is Null Is Null Remove All(@usn6 In 010[`5esn`] Where 1.e1[$usn1]).`6esn`!,Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5"), + octest:ct_string("Match ((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[?:`4esn`|@usn5 *0Xa]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})<-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]-(:_usn4{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]})),(:`3esn`{``:`` Is Null,`8esn`:$@usn6[$0..9e12][.e12..Null]}) Match #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Where `6esn` Starts With `6esn` Detach Delete [#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Union All Return *,0.e0 =~00 As `3esn` Order By 's_str'[0x0..1.e1] Asc,usn1[False..`5esn`][$1000..$12] Ascending Unwind @usn6[123.654..][0x0..] As `2esn`"), + octest:ct_string("Merge ``=(((`7esn` :`2esn`{@usn6:$0[123.654..0.e0]})-[_usn3 *..07{@usn6:$`2esn`[..$`3esn`][..12e12]}]->(`1esn` {#usn7:$`1esn` Ends With 0X0123456789ABCDEF,`3esn`:.12 Starts With _usn3 Starts With $``})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`}))) On Match Set `1esn`:@usn5,All(@usn5 In 's_str'[0..] Where `2esn`[..01][..True]).`2esn`! =`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]],`2esn`+=$_usn4[01..][$_usn4..] On Match Set Single(`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5).usn1? =`6esn`[9e12..],`7esn`+=$0[0.e0] Optional Match (`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}) Union Return Distinct *,All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) As `8esn` Order By 12.0 Ends With `2esn` Descending,$`4esn`[`4esn`][Count(*)] Descending,$`1esn`[07..] Desc Skip 9e12[..123.654][..999] Union All Return *,#usn7[0.12..],$`3esn`[.e1][_usn4] As _usn4 Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Limit \"d_str\" Is Not Null Is Not Null"), + octest:ct_string("Remove `1esn`:_usn3 Return `1esn` Contains $999 Contains 0.0 As @usn6 Detach Delete [$usn1[`2esn`..][$`2esn`..]] Contains Extract(usn2 In 7[12] Where $_usn3 Is Null|.e12 Is Null Is Null),12e12 Ends With 0.0 Ends With usn1 Union All Create (`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]}),usn1=(((`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]-(#usn8 :`6esn`:_usn3)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1))) Merge #usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) On Create Set @usn6+=$`1esn` =~1e1 On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Union Return Distinct 1.e1[..123456789][..999],_usn3[12.e12..][`5esn`..] As @usn6,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `5esn` Order By 123456789 Contains 0Xa Descending,[@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00|`5esn`[$`7esn`..$@usn5]] Is Not Null Is Not Null Desc,00[False..0e0] Ascending Unwind usn1[...e12][..1.e1] As #usn7 Delete usn1 Is Not Null,0X0123456789ABCDEF Ends With 01 Ends With ``"), + octest:ct_string("Return Distinct *,$`7esn`[0.12] Skip _usn4 Starts With 1000 Starts With $usn2 Union All Unwind (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]} As `4esn` Union Create _usn4=({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})"), + octest:ct_string("Create #usn8=((`3esn` :usn2{`6esn`:#usn8 Is Null})-[`4esn`?:_usn4 *7..{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(usn2 :`6esn`:_usn3{@usn5:$0[0Xa..$123456789]})<-[`2esn`{``:Null[..010][..1000]}]-(`` :usn1:`3esn`)),(`2esn` :`1esn`:_usn4) Union Optional Match _usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))),usn1=(_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})"), + octest:ct_string("Return 9e1[$`1esn`..] As `` Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,{@usn6:$`3esn`[.e1][_usn4]}[`8esn`(Distinct $``[True])..] Desc Skip 010[`5esn`] Union With *,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3])[..{`8esn`:usn2 =~7,`5esn`:.e0[01234567..$`8esn`]}][..Any(@usn6 In 010[`5esn`] Where False[$`4esn`..])] As #usn8,$#usn7 Contains $`7esn` Contains .e12 As @usn5 Limit (:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}) Where 01[`3esn`..][Count(*)..] With Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Order By @usn5[0..] Ascending,$@usn5 In $`6esn` In 12e12 Desc,#usn7 In 0.e0 Desc Skip {`8esn`:$_usn4 Starts With 12.e12} Is Null Is Null Limit 999 Contains $1000 Optional Match `2esn`=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}),`8esn`=((:#usn8:`1esn`)-[ *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})) Where .e1 In 123456789"), + octest:ct_string("Return 0.e0 =~00 As `3esn`,(`2esn` {`7esn`:999 In 0e0})<-[`8esn`?:`2esn`|`4esn` *01..123456789{`8esn`:$`4esn` Is Null Is Null,usn1:$1000 Starts With $`3esn` Starts With 0.e0}]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[ *0X7..{#usn8:.e0 Contains $#usn8}]->(`2esn` :`6esn`:_usn3) In (`8esn` :`6esn`:_usn3)-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(_usn4 {_usn4:123.654 In 12})-[?:#usn8|:`3esn` *0x0..]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) In {_usn4:.e0 Contains $#usn8,@usn6:1000[12e12][`5esn`]} As ``,#usn8[`6esn`..][$``..] As `2esn` Remove Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]|$``[..\"d_str\"][..$#usn8]).`6esn`! Remove `4esn`:`4esn`:`6esn`,(usn2 :_usn4)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]}).usn2!,`5esn`(0.12 Contains False Contains 1.e1).`3esn`? Union All Unwind {`4esn`:12e12 =~$`7esn`} Is Not Null Is Not Null As _usn3 Unwind 0x0[``..] As usn1 Return Distinct *,Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7,[$#usn7 Ends With 's_str' Ends With 0X7,12e12 Ends With 0.0 Ends With usn1][Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $`6esn`[``..][Count(*)..])..Extract(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1|``[$`3esn`])][(#usn8 :`5esn`)<-[usn2?:`3esn` *00..0Xa]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})..{_usn3:_usn4 Is Null Is Null}] Order By 0e0 Is Null Is Null Ascending,$@usn6[..12] Descending Union Create (usn2 :_usn4),`1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Remove [999 Is Not Null Is Not Null,123.654 In $`7esn`].`6esn` Delete 9e0[Count(*)..0.12][$`1esn`..12.0],`7esn` Is Null"), + octest:ct_string("Optional Match ((`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Delete [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] In [12e12 In 123456789,`1esn`] In All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),True[..#usn8],0.12[0Xa][$`7esn`] Union All Delete `1esn` Starts With 9e1,{`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..],999 Is Null Is Null"), + octest:ct_string("Remove None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]).`4esn`,[@usn6 In 010[`5esn`] Where 9e1 Ends With Count(*) Ends With $7|`1esn` Is Not Null Is Not Null].`` Match `6esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Where `` Is Null Create (_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]}),`2esn`=(:#usn8:`1esn`$`7esn`)"), + octest:ct_string("Unwind #usn8[`8esn`..] As `7esn` Union All Merge (({@usn6:010 Starts With 0 Starts With 0.0,_usn4:07[$`2esn`..9e12][$`4esn`..9e12]})<-[:@usn6|:`7esn` *0..01{``:`1esn`[0.0..1e1][0x0..7],usn2:01[`3esn`..][Count(*)..]}]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})) With Distinct *,$`1esn`[07..] As ``,`` Is Null As `7esn` Skip $1000 Is Not Null Delete $usn1[Null][`8esn`],Single(#usn8 In `7esn` Where 12.0 Starts With $`2esn` Starts With .e1) Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]] Ends With {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01}"), + octest:ct_string("Match usn2=((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)) Where 1e1 Contains 's_str' Contains `3esn` Merge #usn7=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`}))"), + octest:ct_string("Create ((_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`})<-[? *..010{`2esn`:'s_str'[0..]}]->(_usn3 :`5esn`)),(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Optional Match ((_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`})-[?:`2esn`|`4esn`{@usn5:0.e0}]-(`1esn` $`4esn`)),(_usn3 :`7esn`)-[*..{``:.e1 Starts With 12.e12 Starts With `2esn`}]-(#usn7 :_usn3) Return Distinct *,All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] As `3esn`,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[usn2(Distinct #usn7 Contains $0 Contains $usn2,0.e0)..] As @usn6 Order By $`1esn` Ends With 0X0123456789ABCDEF Ascending Limit `4esn` Contains 9e0"), + octest:ct_string("Optional Match `4esn`=((({#usn7:$`3esn` Ends With 01234567,_usn3:usn1 =~$`7esn`})-[`7esn`?:usn1|`4esn` *00..0Xa{`3esn`:usn1 In ``}]-(usn1 {usn1:$#usn7 Starts With 01234567 Starts With $0})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]}))),#usn8=(({usn2:`2esn`[..$_usn3]})) Where `2esn`[..$_usn3] Return `6esn`[`5esn`..00],$1000 Is Null Is Null,0.0[usn1..] As `3esn` Limit All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`]"), + octest:ct_string("Create `2esn`=(`5esn` :``:usn2)<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2) Match `6esn`=(((:#usn7:`5esn`{`4esn`:$``[..\"d_str\"][..$#usn8]})<-[`6esn`? *00..0Xa]->(:#usn8:`1esn`$`7esn`)-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]}))),`8esn`=(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) Where 0e0[``..$1000][$7..12.e12] Union All Match ((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )),@usn5=((_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})<-[#usn8?:@usn6|:`7esn` *0X0123456789ABCDEF..{_usn4:12.e12 =~.0 =~usn1,usn1:12e12 Contains `2esn`}]->(usn2 :@usn6)-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]-(`1esn` {@usn5:`2esn` Starts With $`4esn`})) Where 12.0 Is Null Is Null"), + octest:ct_string("Unwind Count(*)[..`8esn`] As _usn3"), + octest:ct_string("Unwind 12.e12 Is Not Null Is Not Null As `2esn` Remove {`6esn`:$@usn5 Contains 's_str' Contains \"d_str\",`4esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}.`1esn`!,{`8esn`:12.0 Ends With `2esn`,`3esn`:123.654[$0..0X7][Null..#usn8]}.`1esn`! Return Distinct Count ( * ) In True In @usn5 Skip 01234567[\"d_str\"..`4esn`] Limit 123.654 In $`6esn` Union All Unwind {`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`} Contains Filter(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5) Contains Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) As #usn7 Return Distinct *,False Is Null Order By 0X7[..$`8esn`] Desc,[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null Ascending,12.e12 Ends With `` Ends With 0 Desc Skip Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0)[..{`5esn`:0Xa[$`8esn`..][$_usn4..],_usn3:00[$usn1..]}][..Any(@usn6 In 010[`5esn`] Where 1.e1[$usn1])] Union Delete 1000[7..$12],@usn5 Is Not Null,usn2 Is Not Null Detach Delete None(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1) Contains `3esn`(Distinct $123456789[...12][..@usn6]) Contains {``:`1esn` Starts With 0xabc Starts With $usn2} Return *,00[$usn1..] Limit `4esn`(Distinct 0.0 Contains #usn7)[(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})..][None(@usn5 In 's_str'[0..] Where #usn7[0.12..])..]"), + octest:ct_string("Merge (_usn3 :`5esn`{#usn8:0xabc In 010 In #usn7}) On Create Set `5esn`+={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},usn2 =True Contains 0x0 Contains $_usn3 Delete .0 Starts With `1esn`,$7[$12..12e12][1.e1..9e1] Union All Optional Match #usn8=(`5esn` :`7esn`)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1)<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}),usn2=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) Where 12.e12[0..0.12][123.654..9e12]"), + octest:ct_string("Remove Any(#usn8 In `7esn` Where 12.0 Starts With $`2esn` Starts With .e1).`7esn`!,[12e12 Is Not Null].usn1?,(_usn3 :usn2)-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}).#usn7! Union Create `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)) Unwind 07[False] As @usn6"), + octest:ct_string("Return Distinct *,Null[..010][..1000] As #usn7,9e12 Ends With 12e12 Ends With 12 As `` Order By 1000[$7..][_usn4..] Desc Skip $`3esn` Ends With 01234567 Limit 7 Ends With .12 Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Unwind usn1[..$@usn6][..00] As `4esn` Union All Return 0x0[0.0] As ``,Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) Contains [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where .0 Is Null Is Null|`3esn`[0x0..]] Contains [999[12.e12],#usn8 Is Null Is Null,1.e1 =~$_usn4] As `1esn` Order By [#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Asc,usn2[12.e12..] Ascending,$@usn6 Is Not Null Is Not Null Desc Skip `5esn` Contains 1.e1 Contains .e12 Limit `7esn`[0x0][$`4esn`] Merge #usn7=(_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`}) Optional Match @usn6=(usn2 :_usn4) Where _usn3[`2esn`..0X7][0.e0..$`3esn`]"), + octest:ct_string("Unwind 0 Is Not Null As `6esn` Optional Match `2esn`=((#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]-(usn2 :_usn4)),(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))) Detach Delete `8esn` Is Not Null Is Not Null,Filter(@usn5 In 9e0 Ends With $#usn8 Where 7 Ends With 01234567 Ends With 0Xa) Starts With {usn2:`2esn` =~.e12 =~0X0123456789ABCDEF,@usn6:`2esn` Is Null} Starts With [usn2[12e12..]['s_str'..]]"), + octest:ct_string("Remove [`5esn` In 0X7 In $#usn7 Where @usn6 Is Not Null Is Not Null|9e1[..123456789]].``?,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7).usn1 Unwind `7esn`[1e1] As `6esn` Union All Remove Any(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null).`4esn`,(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(_usn4 :`8esn`)<-[ *0X7..{#usn8:.e0 Contains $#usn8}]->(`2esn` :`6esn`:_usn3).@usn5!"), + octest:ct_string("Unwind 0X0123456789ABCDEF[..0xabc] As `8esn` Delete $7[$12..12e12][1.e1..9e1],Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..]) =~[_usn4 In 12e12 In 123456789 Where .0 Ends With Count ( * )|$`1esn` In .e0]"), + octest:ct_string("Remove Extract(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]|0x0[0.0]).`3esn`! Return Distinct 9e1 Ends With Count(*) Ends With $7 As `6esn` Limit _usn3 Contains 9e12 Contains `8esn` Union All Unwind $_usn4 Starts With 12.e12 As `2esn` Return Distinct ``[$`1esn`] Order By 123456789[12] Ascending,{usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}[[@usn5 In 9e0 Ends With $#usn8 Where 00 Contains Count ( * ) Contains 0x0]] Asc,Count ( * )[$`5esn`..][$7..] Desc Union With Distinct 123.654[$0..0X7][Null..#usn8] As `3esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc,Count ( * )[$`5esn`..][$7..] Desc Skip Extract(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999)[..Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1])] Limit None(#usn7 In 9e0[$1000] Where $_usn3 Is Null)[[0 =~1e1,$#usn8[12.e12..`8esn`][12.0..0.0],$1000 Is Not Null]..] Where $123456789 Contains $#usn8 Contains `` Merge _usn3=({`4esn`:.e1[..$`3esn`][..01]})-[`5esn`:#usn7|@usn5]-(`5esn` :`4esn`:`6esn`) On Create Set usn1 =`3esn`[123456789],`3esn` =9e1[.12][`7esn`]"), + octest:ct_string("Remove None(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]).`1esn`?,Extract(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null|0 =~1.e1 =~$#usn7).@usn5!,(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}).@usn5 Delete `2esn`[$usn2][12.0],{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}[Single(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7)..],(:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] Return Distinct *,1.e1 Ends With $#usn7 As usn2,@usn5[01][@usn5] Order By $`4esn`[..$`8esn`][..Null] Descending Skip `6esn` Is Null Is Null Union Create (((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),usn1=(`7esn` :`3esn`{`2esn`:999[123.654..$usn2][Count ( * )..0x0]})-[`2esn`?:usn1|`4esn` *00..0Xa]-(`4esn` :`4esn`:`6esn`) Unwind False[$usn1][0x0] As usn2"), + octest:ct_string("Unwind usn1[...e12][..1.e1] As #usn8"), + octest:ct_string("Delete `2esn` Starts With 12.e12 Starts With 12.0 Delete \"d_str\" Is Not Null,$usn1 Unwind {_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] As `6esn` Union All Delete .e0[...0][..$`2esn`] With Distinct *,@usn5 Contains #usn8 Contains 12.0,Any(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]) =~[9e12 =~@usn6,01 Ends With 0Xa Ends With 0X7,$@usn6[$0..9e12][.e12..Null]] Order By False[$usn1][0x0] Asc,Count ( * ) Ends With `6esn` Ends With 's_str' Asc,@usn6[12.0..0.12] Ascending Skip $usn1[`2esn`..][$`2esn`..] Limit 00[01234567][False] Detach Delete [9e12[9e1]][[_usn3[`2esn`..0X7][0.e0..$`3esn`]]..]"), + octest:ct_string("Create (:usn1:`3esn`{@usn6:.0 Ends With Count ( * )}),usn2=(@usn5 :@usn6{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[`8esn` *0xabc]-(:_usn3{_usn4:.e1[7..][9e0..]})"), + octest:ct_string("Merge _usn4=(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-(:#usn8:`1esn`{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}) On Match Set `8esn`+=0x0[``..],usn1+=0e0 Ends With 07 Ends With $`8esn`,_usn4 =$@usn6[12.0][12.0] On Create Set Filter(usn2 In 7[12] Where $`6esn`[1.e1][$_usn3]).``? =0Xa[$`8esn`..][$_usn4..],_usn4+=0X0123456789ABCDEF In $7 Remove None(_usn4 In 12e12 In 123456789 Where $usn2 Is Not Null Is Not Null).@usn5 Optional Match ((_usn4 :#usn7:`5esn`)-[`4esn`:`1esn`|`3esn` *12..]->({`7esn`:9e12 =~@usn6})),((:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[`1esn`:`8esn` *7..]-(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Where Count ( * )[$`5esn`..][$7..]"), + octest:ct_string("With *,All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] As `3esn`,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[usn2(Distinct #usn7 Contains $0 Contains $usn2,0.e0)..] As @usn6 Order By $`1esn` Ends With 0X0123456789ABCDEF Ascending Limit `4esn` Contains 9e0 Remove [#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|Count(*) Is Null].#usn7,{``:0Xa =~False =~@usn5,`8esn`:.12[123.654..]}.`6esn`!,Any(#usn7 In $999 In 1e1 Where usn1 =~$`7esn`).`1esn`!"), + octest:ct_string("Unwind `7esn` Is Null As @usn5 Return Distinct $#usn7 =~`2esn` As #usn7,usn1 Ends With 9e0 Ends With 9e0 As @usn5,{`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`}[Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..])] Skip Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])] Merge ((:`3esn`{@usn5:$`5esn` In _usn3 In 0.0})-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]->(:@usn5{#usn7:12e12 In $`5esn`})-[@usn5 *0X7..]->(`` $`6esn`)) On Match Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] Union With 123.654[$0..0X7][Null..#usn8] As `3esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc,Count ( * )[$`5esn`..][$7..] Desc Skip Extract(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999)[..Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1])] Limit None(#usn7 In 9e0[$1000] Where $_usn3 Is Null)[[0 =~1e1,$#usn8[12.e12..`8esn`][12.0..0.0],$1000 Is Not Null]..] Merge (`6esn` :@usn6)-[usn2?:`3esn`]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) On Create Set #usn8 =$_usn4[$`6esn`..] Merge ((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) On Create Set #usn8 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``|.12 In `8esn` In $#usn8]._usn4? =7 =~0.12,`6esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null,Any(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]).`3esn`! =(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null Union All Detach Delete 0[$`5esn`]"), + octest:ct_string("Delete 0X7 In $#usn7 Unwind {#usn8:1.e1 Is Null Is Null,_usn4:0xabc In 123456789 In 0x0}[All(@usn6 In 010[`5esn`] Where 00[1.e1..])..] As _usn4 Detach Delete [`6esn` In $`6esn`[``..][Count(*)..] Where $0[123.654..0.e0]][{`8esn`:$`4esn`[..$`8esn`][..Null]}..({usn2:_usn3[`2esn`..0X7][0.e0..$`3esn`]})<-[_usn4?:@usn6|:`7esn`]-(usn1 :`2esn`{@usn6:True Contains 's_str' Contains $usn1,``:$`4esn` Starts With 0 Starts With `7esn`})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})][None(`3esn` In `2esn`[..01][..True])..[0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF]] Union All Return Distinct *,{`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Skip (`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}) =~[12 In $usn1 In 7] =~Filter(@usn5 In 's_str'[0..] Where 0.e0) Limit `2esn` =~.e12 =~0X0123456789ABCDEF"), + octest:ct_string("Create ((usn1 :`5esn`{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})) With Distinct *,$`7esn`[$_usn4][.e0],`5esn` Contains `1esn` Contains usn1 As `2esn` Order By `4esn` Contains 9e0 Desc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Is Not Null Asc Skip [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] Limit $@usn6 =~#usn7 =~True Where $@usn5 In $`6esn` In 12e12 Union Create `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})),usn2=(#usn7 {_usn4:1.e1[`8esn`]})<-[usn2{`2esn`:$12 Starts With $usn1}]->(:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]}) Union With Distinct *,`5esn` Contains `5esn` Contains $_usn3 Order By 0xabc In Null Descending,12[.0] Ascending Skip None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Where .0 Ends With Count ( * ) Merge ``=(((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))) On Create Set usn1 =`3esn`[123456789],`3esn` =9e1[.12][`7esn`] Unwind 12.e12 Starts With 1000 As @usn5"), + octest:ct_string("Merge (usn1 :_usn3{`4esn`:$`6esn`[1.e1][$_usn3]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[?:`7esn`|:`2esn`{@usn5:usn2[1.e1],@usn6:$#usn8 Starts With .e12 Starts With 1.e1}]->({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]}) Remove _usn3(Distinct _usn3[`2esn`..0X7][0.e0..$`3esn`]).`8esn`"), + octest:ct_string("Merge (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) On Match Set [$0[123.654..0.e0],01234567[Null..$_usn3]]._usn4! ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,None(#usn7 In 9e0[$1000] Where 00[12..$`6esn`]).`7esn`? =`4esn`(Distinct)[`2esn`($`2esn`[..$`3esn`][..12e12])][Extract(@usn6 In 010[`5esn`] Where 1.e1[$usn1]|.e12[..999][..@usn5])],`5esn`+={`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}[Extract(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]|.e1[..$`3esn`][..01])..] Merge ((`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})) On Match Set `1esn` =All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null Union All Unwind $@usn6 In @usn6 In 1e1 As #usn7 With usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Skip $@usn6 Ends With `1esn` Limit 9e1 Ends With Count(*) Ends With $7 Delete $0[12.0...e1],_usn4[.12..$usn2][$_usn3..123.654],07[..07][..0X7]"), + octest:ct_string("Return Distinct *,(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] As `1esn` Skip 01[07..][1.e1..] Limit All(usn2 In 7[12] Where #usn8 Is Null Is Null)[[usn2 In 7[12] Where #usn7[.e0]]..] Detach Delete `` Is Null,12 Starts With $123456789 Starts With .e12,#usn7[$`3esn`..$1000][0.0..`2esn`] Union Remove {``:.0[..'s_str'][..01234567]}.@usn5!,[#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6]].`3esn` Return Distinct *,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``) Is Null Is Null Order By Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Ascending,$@usn5[..$#usn7] Descending,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip 9e1 Starts With Count ( * ) Limit {`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..] Union Unwind #usn8(@usn6[999..$_usn3][0.12..$@usn5])[..`1esn`(Distinct `5esn`[..123.654][...e12],01 Contains usn2 Contains 0X0123456789ABCDEF)] As _usn3 Detach Delete $`1esn`[``][07],`2esn` Starts With .e1 Starts With 9e12,$`4esn` In 1.e1 In #usn7"), + octest:ct_string("Remove usn1:#usn7:`5esn`,[@usn5 In 9e0 Ends With $#usn8 Where `1esn` Is Not Null Is Not Null|usn1 Is Null Is Null].usn2? With Distinct 0.e0['s_str'..][01234567..] As `7esn`,Single(_usn4 In 12e12 In 123456789 Where 0e0 =~7 =~12.0) Starts With Extract(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]|9e12 =~@usn6),[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Skip $`6esn`[1.e1][$_usn3] Limit usn1 Is Not Null Union Match (({#usn7:$@usn6[$0..9e12][.e12..Null]})) Match `6esn`=(((:`6esn`:_usn3)<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(`3esn` :_usn4{`3esn`:12[..0e0][...e1],`4esn`:.0 Is Null Is Null})-[usn2 *..07]->(`` {_usn3:`5esn` Contains `7esn`}))) Where $_usn4[$`5esn`][`7esn`]"), + octest:ct_string("Unwind {@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0} Contains [`1esn`[usn1][0xabc],`5esn` Contains `7esn`,$``[True]] As usn1 Return Distinct *,All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] As `3esn`,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[usn2(Distinct #usn7 Contains $0 Contains $usn2,0.e0)..] As @usn6 Order By $`1esn` Ends With 0X0123456789ABCDEF Ascending Limit `4esn` Contains 9e0 Match ``=((usn1 {_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})),`1esn`=((usn1 :_usn4{`4esn`:`7esn` Is Null})) Union With *,@usn5 Starts With $`3esn`,00[False..0e0] As `7esn` Order By 0.0[..Count ( * )][..`1esn`] Ascending,`1esn`[0.12..][@usn6..] Desc Skip True Contains .e12 Limit $0 =~9e1 =~$`2esn` Where 123.654[$0..0X7][Null..#usn8] Merge ((:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Optional Match @usn5=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Union Return Distinct 0x0[..9e0],Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By 1.e1[12..][$`4esn`..] Asc,Null[..010][..1000] Descending,Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] Descending Limit 1.e1[12..][$`4esn`..]"), + octest:ct_string("Unwind $_usn4 =~_usn3 As _usn3 Merge usn2=(({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`)) Unwind $#usn7 Ends With \"d_str\" As `7esn` Union All Merge `5esn`=(((usn1 :`8esn`)<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})<-[? *0xabc]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]}))) On Create Set Any(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]).`4esn`? =12.0[0X0123456789ABCDEF..],Extract(@usn5 In 's_str'[0..] Where $#usn8[12.e12..`8esn`][12.0..0.0]|123.654[$0..0X7][Null..#usn8]).#usn8! =12 Starts With \"d_str\" Starts With 00,`2esn` =12.0[$12..$_usn4] Unwind 0x0[..9e0] As #usn8 With Distinct 0e0[``],0X7 In $#usn7 Limit 12e12[12e12][$#usn7]"), + octest:ct_string("Merge _usn3=((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(_usn3 :usn1:`3esn`)<-[`7esn`? *..010{usn2:12 Ends With Count ( * ),#usn8:`8esn` Contains `2esn` Contains .0}]->({`6esn`:'s_str' Contains 12.e12 Contains $`4esn`})) On Match Set #usn8+=Count(*)[$@usn5],@usn6 =0 =~1e1,`2esn`+=Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) On Match Set `8esn`+=#usn8[..`8esn`],_usn4 =0e0 Ends With 07 Ends With $`8esn` Unwind .12[0X7..][12e12..] As `4esn` Return *,`2esn`[..$_usn4][...12] As `6esn`,`1esn` Starts With 9e1 As `6esn` Order By 01 Ends With 123456789 Desc,1.e1[12.e12..] Desc,\"d_str\" Is Not Null Ascending Skip [#usn7 In 9e0[$1000] Where `6esn`[$1000][`3esn`]][Extract(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1|010 Starts With $`` Starts With 0e0)..] Limit @usn6 =~999 =~@usn5 Union All Remove `5esn`:@usn5,{#usn8:$0[123.654..0.e0]}.@usn6!,{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF}.#usn8!"), + octest:ct_string("Merge `1esn`=(`5esn` :`5esn`{#usn7:``[$`3esn`]}) On Create Set @usn6+=$`1esn` =~1e1 On Match Set Any(`3esn` In 9e1 Contains $999 Where usn2[12.e12..]).usn1? =usn1[False..`5esn`][$1000..$12],#usn7 =Single(#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6])[Filter(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])..],Any(#usn8 In `7esn` Where .e12 Starts With $#usn8 Starts With False)._usn3? =1.e1 Ends With $#usn7 With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Order By 1.e1 In 1000 In _usn3 Desc,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Descending,123.654 Is Null Is Null Asc Where _usn4[`7esn`] Union All Remove (:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`8esn`{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})-[``?:`3esn` *12..]-(#usn7 {`1esn`:$`4esn` Is Null Is Null}).usn2?,Single(`3esn` In 9e1 Contains $999 Where $`8esn` Is Null Is Null).`6esn`? Delete $0[0Xa..$123456789],[usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Union All Create (((`4esn` :``:usn2)<-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]-({`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[:_usn4{`8esn`:12.e12 Is Not Null Is Not Null,#usn7:@usn6[Null...0][\"d_str\"..Count(*)]}]-(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False}))),#usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) Unwind Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null] As `3esn` Merge ``=(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]->(_usn4 {_usn4:Null[..010][..1000],_usn3:.0 Is Null Is Null}) On Match Set [$`7esn`[.e1][12.0]]._usn3! =123.654[..0.e0][..'s_str'],`2esn`+=.e0 =~Null,``:#usn7:`5esn` On Create Set None(`8esn` In 123456789 =~@usn6 Where Count(*) Ends With usn1).`7esn`! =All(usn2 In 7[12] Where #usn8 Is Null Is Null)[[usn2 In 7[12] Where #usn7[.e0]]..]"), + octest:ct_string("Match #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Where `6esn` Starts With `6esn` Match #usn8=(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Optional Match (:`3esn`{@usn6:$`5esn` =~$`8esn` =~usn2,`8esn`:12[..0e0][...e1]}),@usn5=(:@usn5{#usn7:12e12 In $`5esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})-[?*]-({`8esn`:`5esn` Contains #usn7 Contains 9e12}) Union All Unwind .e0[9e12..] As usn2 Union All Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}))"), + octest:ct_string("Create ((`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})),`5esn`=(((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Union All Unwind [#usn8 In `7esn` Where usn2[07..][.0..]|$usn1 Ends With _usn4 Ends With `2esn`] Contains (_usn3 {#usn7:1000[12e12][`5esn`]})-[`3esn`?:`3esn`]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0}) Contains Extract(`3esn` In `2esn`[..01][..True] Where usn1 In ``) As usn1 Return *,9e0[..123456789][..$`3esn`] As #usn7 Order By 999 In 0e0 Ascending Merge ((({usn2:_usn3[`2esn`..0X7][0.e0..$`3esn`]})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]-(_usn3 )<-[? *..010{usn1:9e1[_usn3]}]->(`5esn` {`4esn`:0x0[usn1..usn1],usn1:$`5esn`[0X7..010][`7esn`..'s_str']}))) Union All Detach Delete $#usn8[True][9e0],None(_usn4 In 12e12 In 123456789 Where 1.e1 =~.12)[[$`4esn`[0..][999..],0x0[Count(*)..@usn6][Count(*)..0Xa],12e12 In $`5esn`]..],0.0 Contains #usn7 Match (((`` $`6esn`)<-[usn2*{_usn3:0.e0[0X0123456789ABCDEF..],`8esn`:$`5esn` In 07 In 00}]-(`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}))),(((`` $`6esn`)<-[usn2*{_usn3:0.e0[0X0123456789ABCDEF..],`8esn`:$`5esn` In 07 In 00}]-(`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}))) Where $@usn6 In @usn6 In 1e1"), + octest:ct_string("Unwind [#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)][All(#usn7 In True Contains 's_str' Contains $usn1 Where 0[1e1][$usn1])..][(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[ *0x0..]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..] As usn2"), + octest:ct_string("Remove Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..]).#usn8!,({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[:_usn3|:`7esn` *..07]->(`4esn` :_usn4).`7esn`!,None(#usn7 In True Contains 's_str' Contains $usn1 Where .e12[$@usn6..00][01234567.._usn3])._usn3! Detach Delete $@usn5 Contains 's_str' Contains \"d_str\",010 Is Null,Count(*)[..@usn6][..`7esn`]"), + octest:ct_string("Remove [@usn5 Starts With $`3esn`].`2esn`?,_usn3(Distinct .0[..'s_str'][..01234567],$#usn7 Contains $`7esn` Contains .e12).usn1 Delete 010 Is Not Null Is Not Null Remove (:`1esn`:_usn4{`8esn`:#usn8 Is Null Is Null})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]})-[`2esn`?:@usn6|:`7esn`]->(#usn8 :@usn5{_usn4:$#usn7 Contains $`7esn` Contains .e12}).`7esn`?"), + octest:ct_string("Create `8esn`=(((`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})<-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))),`4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}) Union Return Distinct *,`6esn`,01234567[$`2esn`][0Xa] Limit None(#usn7 In 9e0[$1000] Where $_usn3 Is Null) In [@usn5 In 's_str'[0..] Where $#usn8[12.e12..`8esn`][12.0..0.0]|`4esn` Ends With 12 Ends With .12] In [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12] Return `6esn`[`5esn`..00],$1000 Is Null Is Null,0.0[usn1..] As `3esn` Limit All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] With (`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})<-[`8esn`? *0Xa{#usn8:$``[True]}]->(:`7esn`{usn2:@usn5 Is Not Null}) Is Null Is Null,$#usn8 Ends With `3esn` Ends With $`` As #usn7,{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]}[#usn7(Distinct $`1esn`[``][07])..None(@usn6 In 010[`5esn`] Where $`3esn` Ends With 01234567)] As _usn3 Order By @usn6 =~999 =~@usn5 Ascending,``[7.._usn3] Descending,All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) Is Not Null Is Not Null Ascending Skip #usn8 Ends With $@usn5 Ends With $7 Limit #usn8[`8esn`..] Union All Return *,0X7[`2esn`..] As `6esn`,$`1esn` Contains 1e1 Contains @usn6 As `3esn` Order By $_usn3[_usn4..] Descending,9e1 Contains $999 Ascending With _usn4(Distinct usn2[07..][.0..]) Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]|$`2esn` Starts With `4esn` Starts With $usn1) Ends With Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2),None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]) Is Null As `5esn` Remove _usn4(.12[0X7..][12e12..],9e1).#usn7!,All(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).`8esn`"), + octest:ct_string("Detach Delete `7esn` Ends With $7 Ends With $@usn5,0X0123456789ABCDEF Is Not Null Is Not Null,All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1)[None(@usn6 In 010[`5esn`] Where 00[1.e1..])..[$12[$usn1..][Count(*)..],$@usn5 Contains 's_str' Contains \"d_str\"]][Extract(`3esn` In 9e1 Contains $999 Where 0e0 Starts With 999 Starts With `2esn`|9e1 Ends With Count(*) Ends With $7).._usn4(`1esn`[0.12..][@usn6..],#usn8 =~0.e0)] Union All Return *,All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],12 In $usn1 In 7 As `8esn` Skip None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1) Limit $@usn5 Starts With .e1 Match `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((:#usn7:`5esn`{`3esn`:Null[..0]})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->(`6esn` :#usn7:`5esn`{_usn3:_usn4 Is Null Is Null})) Where $`5esn` =~usn1 Unwind #usn8 Is Null Is Null As `8esn` Union All Remove Single(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).#usn7,usn2(.12 Starts With _usn3 Starts With $``)._usn3,`4esn`:`3esn` Unwind {`3esn`:.e1[..\"d_str\"][..$123456789]} As `3esn`"), + octest:ct_string("Return Distinct *,None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0) Order By 0X0123456789ABCDEF In $usn2 In `4esn` Descending,0xabc In .12 In 0Xa Desc,01[$`7esn`..$@usn6] Ascending Skip 123.654[`4esn`..12] Create ((#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[`7esn`? *0Xa{@usn5:123.654 Is Not Null}]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`})) Union All Return Distinct 0Xa In #usn7 In 's_str' Limit 9e1[$1000][7] Return Distinct $usn2 =~1.e1 =~usn1 As `8esn`,``[$`3esn`] Order By 00[$`6esn`.._usn3][12e12..``] Desc Union Detach Delete {`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null,12[None(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)..`5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12])][`5esn`(`2esn`[..01][..True])..(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})<-[? *7..]-(#usn7 :``:usn2)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})],12.0 =~@usn6 =~$`2esn`"), + octest:ct_string("With Distinct 12[$`5esn`..][False..] As `4esn`,0e0 Ends With 07 Ends With $`8esn` As `1esn` Limit All(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`)[Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null)..][Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..])..] Union Unwind Extract(@usn6 In 010[`5esn`] Where 00[$usn1..]|_usn3[$usn2..][$``..])[Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])] As _usn3"), + octest:ct_string("Merge ((`4esn` :`4esn`:`6esn`)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})) Create ((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})),@usn5=(({@usn5:$`5esn` Is Not Null Is Not Null})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1}))"), + octest:ct_string("Unwind All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]) =~All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where .e12[..999][..@usn5]) =~Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) As _usn4 Detach Delete $@usn6 Ends With `1esn` Union Merge (((:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]-({`7esn`:9e12 =~@usn6})<-[ *0x0..]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})))"), + octest:ct_string("Unwind [@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00|`5esn`[$`7esn`..$@usn5]] Is Not Null Is Not Null As @usn5 Create (((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),usn1=(`7esn` :`3esn`{`2esn`:999[123.654..$usn2][Count ( * )..0x0]})-[`2esn`?:usn1|`4esn` *00..0Xa]-(`4esn` :`4esn`:`6esn`)"), + octest:ct_string("Match `1esn`=(`3esn` )-[`7esn`:`4esn`|@usn5 *12..]-({`1esn`:#usn7[0]}),(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}) Where .0[$``..0X7] Union All Create ((`1esn` :usn2)),`2esn`=(`5esn` :``:usn2)<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)"), + octest:ct_string("Return 12e12[0x0..12.e12] As `1esn`,.e1[7..][9e0..] As `4esn`,$#usn8 Starts With .e12 Starts With 1.e1 As `8esn` Order By $`5esn` In `2esn` In `2esn` Asc,0.0[..Count ( * )][..`1esn`] Ascending,[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )] Ascending Optional Match (((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Where usn1[..$@usn6][..00] Unwind 0e0[999..$``] As usn1"), + octest:ct_string("With *,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3])[..{`8esn`:usn2 =~7,`5esn`:.e0[01234567..$`8esn`]}][..Any(@usn6 In 010[`5esn`] Where False[$`4esn`..])] As #usn8,$#usn7 Contains $`7esn` Contains .e12 As @usn5 Limit (:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}) Where 01[`3esn`..][Count(*)..] With Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Order By @usn5[0..] Ascending,$@usn5 In $`6esn` In 12e12 Desc,#usn7 In 0.e0 Desc Skip {`8esn`:$_usn4 Starts With 12.e12} Is Null Is Null Limit 999 Contains $1000 Optional Match `2esn`=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}),`8esn`=((:#usn8:`1esn`)-[ *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})) Where .e1 In 123456789"), + octest:ct_string("Unwind .e1[7..][9e0..] As `4esn` Delete [$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][None(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..])..],$@usn5 In 12e12 In 01,All(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0)[(:#usn7:`5esn`)<-[#usn8? *0Xa]-(`5esn` :`5esn`{#usn7:``[$`3esn`]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc})..] Remove Extract(`3esn` In `2esn`[..01][..True] Where $@usn6[$`8esn`..][123456789..]|_usn4 Is Null Is Null)._usn4?"), + octest:ct_string("Return _usn4[@usn6..][$0..],[$usn2 =~1.e1 =~usn1,$usn1 Starts With usn1 Starts With True,$1000 Starts With $`3esn` Starts With 0.e0] In (`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]-(`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]}) In None(`3esn` In 9e1 Contains $999 Where 12.0 Starts With .12 Starts With `6esn`),@usn5 Contains #usn8 Contains 12.0 As `4esn` Limit Any(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null) Is Null Union All Remove `5esn`($`4esn` In 1.e1 In #usn7,0Xa[Count(*)..]).`5esn`,(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`).`3esn`,None(#usn8 In `7esn` Where 9e12[..1e1][..'s_str'])._usn4? Union All Create `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}),(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}) With *,#usn7[``] As usn1,None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6) =~Single(`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8) =~(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]}) Order By $@usn6 In @usn6 In 1e1 Desc,.e1[..$`3esn`][..01] Desc Limit _usn3 Is Null Is Null Unwind 9e0[Count(*)..0.12][$`1esn`..12.0] As @usn6"), + octest:ct_string("Create `1esn`=(`3esn` )-[`7esn`:`4esn`|@usn5 *12..]-({`1esn`:#usn7[0]}),usn1=((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})) Return Distinct #usn7[`8esn`..usn1][$999..`7esn`] As #usn8,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] As `8esn`,999 In #usn8 In $`` Order By 999[12.e12] Desc,07 Ascending,[`6esn` In $`6esn`[``..][Count(*)..] Where $`6esn`[1.e1][$_usn3]|$`5esn` Is Not Null Is Not Null][{`6esn`:usn2 =~usn1 =~Count ( * ),@usn5:999 Is Not Null Is Not Null}..] Desc Merge #usn8=((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})) On Match Set [12e12 =~1e1,0X7[..$`8esn`]].`7esn` =1e1 Ends With $`2esn`,`8esn`+=01[$`7esn`..$@usn6] On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``|.12 In `8esn` In $#usn8]._usn4? =7 =~0.12,`6esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null,Any(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]).`3esn`! =(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null Union Unwind {#usn7:$usn2[0.e0],`6esn`:.e1[..\"d_str\"][..$123456789]}[..Extract(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999|Count ( * ) In 0.12)][..[@usn6 In 010[`5esn`] Where 's_str' Starts With 9e0 Starts With usn2|$`5esn` =~$0 =~``]] As usn1 Unwind {@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0} Contains [`1esn`[usn1][0xabc],`5esn` Contains `7esn`,$``[True]] As usn1 Union Remove (`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})<-[usn1:_usn4]-(#usn7 :@usn6).@usn5?,[@usn5 In 's_str'[0..] Where #usn7[0.12..]|.e12 Ends With 0Xa Ends With 0xabc].`1esn`? Remove [$usn2[0.e0],#usn8 Is Not Null Is Not Null,.12[01][@usn5]].`7esn`!,[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789|123.654[`4esn`..12]]._usn3? Remove Any(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF]).usn1!,[Count(*) Starts With usn2 Starts With `7esn`,07[$`2esn`..9e12][$`4esn`..9e12],9e1 Is Not Null Is Not Null].`2esn`?"), + octest:ct_string("Unwind (:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Is Not Null As usn1"), + octest:ct_string("Remove [@usn6 In 010[`5esn`] Where 1.e1[$usn1]|_usn3[0x0]].usn2?,usn1().usn1?,Extract(@usn5 In 's_str'[0..] Where #usn7[0.12..]).@usn6! Optional Match (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3),(@usn6 :`4esn`:`6esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`2esn`?:`6esn`|:#usn8{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`}]-(_usn3 {_usn3:0.12 Starts With $`8esn` Starts With @usn5}) Return Distinct *,`3esn`[12..1000][\"d_str\"..1000],@usn6[123.654..][0x0..] As _usn3 Order By $999 In 1e1 Descending,True[..#usn8] Ascending,#usn8 Starts With $1000 Starts With $@usn5 Ascending Skip ``[..#usn8]"), + octest:ct_string("Remove Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 7[0e0..]).`8esn`!,(_usn4 :`1esn`:_usn4)<-[?:`6esn`|:#usn8 *00..0Xa]-(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]}).@usn5! Unwind @usn5[0..] As usn2"), + octest:ct_string("Return 0.0 Contains #usn7 As #usn8,Extract(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|.e1[usn2..$_usn3][.0..$#usn7]) Order By Any(`6esn` In $`6esn`[``..][Count(*)..] Where 1e1 Ends With $`7esn` Ends With .0) Is Not Null Descending,#usn8 Ends With $@usn5 Ends With $7 Desc,usn2[12.e12..] Asc Skip 12.0[$1000..][#usn7..] Limit $`2esn`[0..123456789][``..`1esn`] Delete Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`2esn` =~9e12) Is Null Is Null,0Xa Contains `8esn` Contains 0xabc,Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1) Union Detach Delete 12.e12 =~0X0123456789ABCDEF =~1.e1,$`8esn` Ends With 0x0 Ends With 0e0 Remove (@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`})-[@usn6?{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null}]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}).@usn5?,(`8esn` :@usn6{`7esn`:0e0[999..$``]})-[`6esn`? *01234567..]->(`8esn` {`5esn`:$@usn5 In $`6esn` In 12e12})-[?:`` *7..]-(#usn8 {usn2:12.e12[..$`6esn`],`4esn`:1e1 Contains 's_str' Contains `3esn`}).#usn8 With 0.12 Starts With $`8esn` Starts With @usn5 As @usn5,#usn7 Is Null Is Null As `1esn`,[@usn5[$`6esn`..][$999..],`` Starts With $123456789] Is Null Order By Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) Ascending,'s_str' Starts With 1e1 Starts With $0 Desc Where .e1[7..][9e0..] Union All Delete 0.0[..Count ( * )][..`1esn`] With 0Xa In #usn7 In 's_str',`4esn` Starts With 0e0 As `7esn` Skip $1000 Is Not Null Limit 0X7['s_str'..][01..] Unwind 123.654 In $999 In _usn3 As usn2"), + octest:ct_string("Detach Delete `3esn` Starts With 9e0 Starts With usn1 Remove All(`6esn` In $`6esn`[``..][Count(*)..] Where 0X7['s_str'..][01..]).`2esn`!,(`3esn` {usn2:$usn2[`4esn`..9e12]})<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[_usn4?:@usn6|:`7esn`]->(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}).`4esn` Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] On Create Set `6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn1+=`4esn`[$_usn3..$`7esn`]"), + octest:ct_string("Match ((`2esn` :_usn3)-[? *0xabc{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})),({@usn5:$`5esn` Is Not Null Is Not Null})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Union All Delete $@usn5[..0xabc][..$`3esn`] Create ((`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})),(((@usn6 )<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null}))) Return 0X7[`2esn`..] Order By 0[@usn5..$#usn7] Ascending"), + octest:ct_string("Return Distinct Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..],@usn5 Contains #usn8 Contains 12.0 As `6esn` Order By @usn5 Is Not Null Asc,All(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]) Is Not Null Is Not Null Ascending Skip #usn8 Is Not Null Is Not Null Merge ((`3esn` :usn2{`6esn`:#usn8 Is Null})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->(`7esn` {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01})) On Match Set `5esn`+=[`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})] Union All Unwind @usn6[123.654..][0x0..] As usn1 Remove Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0 =~1e1).`8esn`!,[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]|_usn3 Contains _usn4 Contains $@usn5].usn2!,{`4esn`:_usn4[@usn6..][$0..],@usn5:$@usn6 In @usn6 In 1e1}.`3esn`! Match usn1=((`3esn` {usn2:$usn2[`4esn`..9e12]})<-[?{@usn5:_usn3 Ends With 7 Ends With $`1esn`}]->(_usn3 :_usn4)<-[_usn4?:`3esn`]-(:_usn3{_usn4:.e1[7..][9e0..]})),usn1=(({#usn7:12e12 In $`5esn`})<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}))"), + octest:ct_string("Delete $`8esn`[12.e12][_usn4] Optional Match (({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn4?:@usn6|:`7esn`]-({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn3?:_usn3|:`7esn`]->(`3esn` {`8esn`:`7esn` In 010 In usn1})) Union All Detach Delete Single(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) Contains Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0[1e1][$usn1]) Contains {`4esn`:9e1 Contains 12},@usn6 In .12 In `3esn`,@usn6 In .12 In `3esn` Return 0.e0[$`4esn`..`2esn`],12.e12 Starts With \"d_str\" Starts With 9e1,{``:00 In @usn6 In 0}[(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})] As `5esn` Skip Extract(#usn7 In $999 In 1e1 Where `5esn`[..True][..0.e0]|$`5esn` =~$0 =~``) In (:`7esn`{#usn8:0Xa Ends With $`3esn` Ends With $1000})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]}) In Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|999 Contains 0 Contains $`5esn`) Create (((usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[#usn8 *0x0..]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[_usn4 *00..0Xa{`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]}]-(usn2 :`5esn`{_usn4:`2esn` In 9e0 In 7,@usn5:9e1[`1esn`..0][999..1e1]})))"), + octest:ct_string("Unwind Any(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) =~[#usn7 In 9e1[$`1esn`..] Where 0Xa Ends With $`3esn` Ends With $1000|$@usn5 Contains 's_str' Contains \"d_str\"] =~Extract(@usn6 In False Contains 0 Contains $`6esn` Where $`6esn` Starts With .e12 Starts With $`1esn`|12e12 In 123456789) As #usn7 Remove Extract(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1|010 Starts With $`` Starts With 0e0)._usn3!,1000.`2esn`? Remove None(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`).@usn6?,[Count ( * ) In True In @usn5,#usn7[0.12..],1000[0e0][1e1]].`3esn`?"), + octest:ct_string("Match `6esn`=((:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]})),`3esn`=(:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Where 999 Is Null Is Null"), + octest:ct_string("Remove Extract(#usn8 In `7esn` Where 9e12[$`5esn`..$123456789]|`1esn` Starts With 0xabc Starts With $usn2).`5esn`,{@usn6:0e0 =~7 =~12.0}._usn3!"), + octest:ct_string("Detach Delete None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0),0e0 Starts With 999 Starts With `2esn` Merge (:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Remove Extract(@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00|01[..01234567][..$_usn3]).`6esn`?,None(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null).`5esn`"), + octest:ct_string("Merge (((:`7esn`{_usn3:@usn5[0.0..0X7]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]}))) On Match Set @usn5+=$0[123.654..0.e0],Any(`8esn` In 123456789 =~@usn6 Where .e1 =~_usn4 =~_usn4)._usn3? =01[..$`8esn`][..9e0],usn1 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) On Create Set [#usn7 In 9e1[$`1esn`..] Where 00 Ends With $`1esn` Ends With `7esn`].`2esn` =All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null),``:@usn5,@usn5+=12.e12[_usn4..$1000][$7..$999] Delete {#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]} Return {#usn8:1.e1 Is Null Is Null,_usn4:0xabc In 123456789 In 0x0}[All(@usn6 In 010[`5esn`] Where 00[1.e1..])..],`5esn`(0[1e1][$usn1],Null =~`6esn`)[usn2(Distinct)..][Single(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7)..] As `1esn`,12.0 Starts With $`2esn` Starts With .e1 Order By [#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Ascending Skip `1esn`(#usn7[..07])[..[#usn8 In `7esn` Where 9e1 Starts With Count ( * )|`3esn` Starts With 9e0 Starts With usn1]] Limit _usn3 =~`2esn` =~0 Union Remove All(_usn4 In 12e12 In 123456789 Where .e1 Starts With 12.e12 Starts With `2esn`).`3esn`!,Extract(#usn7 In 9e0[$1000]|9e12[$`5esn`..$123456789]).@usn5! Remove {_usn3:_usn4 Is Null Is Null}.``,``(@usn6[`1esn`..]).`7esn`! Remove All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]).`2esn`,[1000[..`2esn`][..$@usn6],Count(*) Is Null].`4esn`!,`8esn`:`5esn`"), + octest:ct_string("Create (((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))) Match @usn6=((usn1 :_usn3{`4esn`:$`6esn`[1.e1][$_usn3]})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})) Where 1e1 In 0.0 In 0X0123456789ABCDEF With (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Order By usn1 Ends With 9e0 Ends With 9e0 Descending,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Descending Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Union All Create (`5esn` :``:usn2)-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}) Return _usn3[`2esn`..0X7][0.e0..$`3esn`] As `7esn` Order By [usn2[12e12..]['s_str'..]] =~Single(`8esn` In 123456789 =~@usn6 Where $`4esn`[`4esn`][Count(*)]) Ascending,`4esn`[\"d_str\"]['s_str'] Ascending,.12 In `8esn` In $#usn8 Asc Skip None(@usn6 In 010[`5esn`] Where 123.654 In $`7esn`)[(`` {`7esn`:$#usn7[..0Xa]})<-[`1esn`?:usn1|`4esn` *00..0Xa]-(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[usn1? *01234567..{@usn5:01[`3esn`..][Count(*)..]}]->(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})..[False Contains 0 Contains $`6esn`,`1esn` Is Not Null Is Not Null]] Limit [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Contains Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|@usn5 Contains #usn8 Contains 12.0) Detach Delete {`2esn`:12.e12 Is Not Null Is Not Null,``:Count ( * ) In True In @usn5} Ends With {`7esn`:$1000 Starts With $`3esn` Starts With 0.e0,``:$`2esn` Is Null} Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]],$`5esn`[0X7..010][`7esn`..'s_str'] Union Unwind None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])[..[_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4]] As `4esn`"), + octest:ct_string("Delete _usn4[$usn1..01234567][123.654..`5esn`] With *,1.e1 Ends With $#usn7 As usn2,@usn5[01][@usn5] Skip $`5esn` Limit (`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Is Not Null Union Delete {#usn8:0e0 =~0Xa =~$999,`7esn`:`3esn`} In [#usn7 In True Contains 's_str' Contains $usn1 Where Count(*) Ends With usn1] In None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Is Not Null Is Not Null) Merge (_usn3 :`4esn`:`6esn`)-[?:@usn6|:`7esn`]-(:#usn8:`1esn`)-[_usn3?]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Detach Delete $_usn3,[Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1]"), + octest:ct_string("Detach Delete (`5esn` :`6esn`:_usn3)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({#usn8:False Starts With 0X7 Starts With 01234567})<-[usn2?{``:$`1esn`[``][07]}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7}) Is Null Is Null,[`5esn` Contains `1esn` Contains usn1,$@usn5 Ends With @usn5 Ends With 0xabc] Is Null Is Null Return Distinct `1esn`(.0 Starts With `1esn`,01[`3esn`..][Count(*)..]) In [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] As `4esn`,`7esn`[$usn1..]['s_str'..] Detach Delete 01[`3esn`..][Count(*)..],usn2[07..][.0..] Union Remove (:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(_usn4 :#usn7:`5esn`)<-[_usn4]->(`1esn` {#usn7:$`1esn` Ends With 0X0123456789ABCDEF,`3esn`:.12 Starts With _usn3 Starts With $``}).`6esn` Remove Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|$@usn5 Ends With @usn5 Ends With 0xabc).#usn7"), + octest:ct_string("Remove {``:.e12 Ends With 0Xa Ends With 0xabc}.usn2? Union Merge `2esn`=(((:`6esn`:_usn3)<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})-[#usn7?:`7esn`|:`2esn` *..07]-(#usn7 {#usn7:1.e1 Starts With 9e12}))) On Create Set usn2+=$12 Starts With $0 Starts With $`8esn`,`1esn`+=12.0 Starts With .12 Starts With `6esn`"), + octest:ct_string("Remove [`3esn` In `2esn`[..01][..True] Where 00[01234567][False]].`7esn`!,Any(usn2 In False[$usn1][0x0] Where 12.e12 =~0X0123456789ABCDEF =~1.e1)._usn3,Extract(#usn7 In 9e1[$`1esn`..] Where $`7esn`[$_usn4][.e0]|$`3esn`[..$1000][..$123456789]).`1esn`? Union All Return Distinct *,$_usn4[9e0..][$1000..] As `2esn` Order By $12 =~0X7 =~0x0 Ascending,1e1[_usn3] Asc"), + octest:ct_string("Create `4esn`=((@usn5 {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})),_usn3=(`8esn` :`2esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`6esn`]->({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) Match ((#usn7 {`6esn`:$`2esn` Contains Count(*)})-[?:_usn4]->(`2esn` :usn2)) Remove `1esn`:@usn5 Union With 12[..0e0][...e1] Order By `4esn` =~$`3esn` =~@usn5 Descending,1000[7..$12] Ascending,True Ends With $_usn3 Ends With 12 Desc Delete `1esn`[`3esn`..],9e12[$`5esn`..$123456789]"), + octest:ct_string("Remove {`1esn`:0xabc =~$@usn5}.#usn8 With Distinct *,None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] As #usn7,12 Is Not Null As `6esn` Order By Null[.12..12e12] Descending Detach Delete $`5esn` In 07 In 00 Union With Distinct 999[12e12..$_usn4] Order By Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,0X7[.0] Asc,$`3esn`[..0X0123456789ABCDEF][..7] Descending Limit #usn7 =~9e12 Where _usn4 Contains `` Contains 1.e1"), + octest:ct_string("Return Distinct *,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``) Is Null Is Null Order By Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Ascending,$@usn5[..$#usn7] Descending,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip 9e1 Starts With Count ( * ) Limit {`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..]"), + octest:ct_string("Create `8esn`=(usn2 :`7esn`)-[? *7..{#usn7:`4esn`[123456789]}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )}),_usn4=((`2esn` {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]-(`1esn` :``:usn2{@usn5:`4esn`[\"d_str\"]['s_str']})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})) Union With Distinct *,1e1 Is Not Null Is Not Null Where `7esn` Ends With $7 Ends With $@usn5 Union All With *,$`7esn`[$_usn4][.e0],`5esn` Contains `1esn` Contains usn1 As `2esn` Order By `4esn` Contains 9e0 Desc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Is Not Null Asc Skip [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] Limit $@usn6 =~#usn7 =~True Where 12.0 Is Null Remove Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 7[0e0..]).`8esn`!,(_usn4 :`1esn`:_usn4)<-[?:`6esn`|:#usn8 *00..0Xa]-(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]}).@usn5! Match `4esn`=((@usn5 {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})),_usn3=(`8esn` :`2esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`6esn`]->({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})"), + octest:ct_string("Merge `3esn`=((`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) Remove Filter(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7).#usn8?,[$#usn7 Ends With 's_str' Ends With 0X7,12e12 Ends With 0.0 Ends With usn1].@usn6?,usn2(usn1 Ends With 9e0 Ends With 9e0).`4esn`? Union All Match usn2=((#usn7 {`8esn`:`7esn` In 010 In usn1})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})),@usn5=(:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']}) With *,1.e1 =~$_usn4,9e12 Contains $_usn3 Contains \"d_str\" As @usn5 Order By `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] Desc,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,$@usn5 Descending Where `6esn`[$1000][`3esn`]"), + octest:ct_string("Detach Delete @usn6 Is Not Null Is Not Null,01 Contains usn2 Contains 0X0123456789ABCDEF,None(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])[Any(`3esn` In `2esn`[..01][..True] Where $`3esn`[..0xabc][..$7])][$#usn7] Union With (`2esn` {`7esn`:999 In 0e0})<-[`8esn`?:`2esn`|`4esn` *01..123456789{`8esn`:$`4esn` Is Null Is Null,usn1:$1000 Starts With $`3esn` Starts With 0.e0}]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[ *0X7..{#usn8:.e0 Contains $#usn8}]->(`2esn` :`6esn`:_usn3) In (`8esn` :`6esn`:_usn3)-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(_usn4 {_usn4:123.654 In 12})-[?:#usn8|:`3esn` *0x0..]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) In {_usn4:.e0 Contains $#usn8,@usn6:1000[12e12][`5esn`]},`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] As @usn5 Order By Count(*) Is Null Ascending,#usn8[..`8esn`] Ascending,None(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1) Contains `3esn`(Distinct $123456789[...12][..@usn6]) Contains {``:`1esn` Starts With 0xabc Starts With $usn2} Descending Skip (`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[``? *0x0..{`6esn`:$`2esn` Contains Count(*)}]->(`6esn` :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`3esn` {``:9e1 Is Null,usn1:9e0[Count(*)..0.12][$`1esn`..12.0]})[..{`6esn`:.e12 Is Null Is Null}]"), + octest:ct_string("Merge `3esn`=(usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})-[@usn5?{#usn7:12e12 In $`5esn`}]->(`8esn` :`8esn`) Unwind 0.12[$0..$usn2] As `7esn` Union All Remove Any(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null).@usn6!,[$0 In `3esn` In 07,123456789 Contains 0.0 Contains $@usn6].#usn8! Union Optional Match #usn8=(({`8esn`:usn2 Starts With .0,@usn5:Count(*) In 12 In `6esn`})<-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]->({`8esn`:usn2 Starts With .0,@usn5:Count(*) In 12 In `6esn`})-[`7esn`?]->(:#usn7:`5esn`)),@usn5=((:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})) Match @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) With Distinct *,999 Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains {_usn3:123.654 In $`7esn`} As `6esn`,.e0 Is Not Null Is Not Null As `7esn` Order By _usn3 In $`8esn` In @usn6 Desc"), + octest:ct_string("Delete Count ( * )[9e12],12.0 Is Null,$@usn5[0.0][0X0123456789ABCDEF] Optional Match ((_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`})-[?:`2esn`|`4esn`{@usn5:0.e0}]-(`1esn` $`4esn`)),(_usn3 :`7esn`)-[*..{``:.e1 Starts With 12.e12 Starts With `2esn`}]-(#usn7 :_usn3) Remove [999 Is Not Null Is Not Null,123.654 In $`7esn`].`6esn` Union All Remove {usn1:0 =~1e1,`7esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}.usn1!,None(`5esn` In `7esn`[$usn2..][$123456789..] Where $123456789[...12][..@usn6]).usn2? Unwind $#usn8[..$999] As #usn7 Optional Match _usn4=((:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})),(`2esn` :`1esn`:_usn4)-[?*..]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})"), + octest:ct_string("Remove Extract(`6esn` In $`6esn`[``..][Count(*)..] Where 9e0[Count(*)..0.12][$`1esn`..12.0]|`2esn`[..01][..True]).#usn8!,[.0[$``..0X7],'s_str'[0..],0.0[usn1..]].`1esn`? Return Distinct usn2[12.e12..] As `2esn` Order By $@usn5 In $`6esn` In 12e12 Desc,07[_usn3..][`6esn`..] Descending,$`4esn` Contains _usn3 Contains `8esn` Asc Limit 0x0[0X7]"), + octest:ct_string("Detach Delete Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3),$#usn8 Ends With `3esn` Ends With $``,01 Ends With .12 Ends With 07 Optional Match #usn8=(((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Where .12[123.654..]"), + octest:ct_string("With Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By [Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] Ascending,None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) Descending Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]) Where @usn6 Is Not Null Is Not Null Create (`3esn` )-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]}) Remove Any(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0).usn1,All(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])._usn4!,7._usn4 Union Merge #usn8=(((#usn8 :``:usn2)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[@usn5? *0xabc{`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}]->(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}))) On Match Set #usn8 =[`5esn` Contains `1esn` Contains usn1,$@usn5 Ends With @usn5 Ends With 0xabc] Is Null Is Null,`8esn` =[$@usn6 =~#usn7 =~True,$`1esn` Contains 1e1 Contains @usn6,9e1[..123456789]] Is Null On Match Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null Remove {usn1:12[$`5esn`..][False..]}.`1esn` Union Remove [`3esn` In `2esn`[..01][..True] Where 00[01234567][False]].`7esn`!,Any(usn2 In False[$usn1][0x0] Where 12.e12 =~0X0123456789ABCDEF =~1.e1)._usn3,Extract(#usn7 In 9e1[$`1esn`..] Where $`7esn`[$_usn4][.e0]|$`3esn`[..$1000][..$123456789]).`1esn`?"), + octest:ct_string("Unwind 00[$usn1..] As `3esn`"), + octest:ct_string("Merge (`2esn` :`1esn`:_usn4)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}) On Match Set `5esn`+=010[..7][..`4esn`],(`2esn` :@usn5)-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}).`4esn`! =$@usn6 Ends With `1esn`,`6esn` =.0[$``..0X7] Union All Remove All(#usn7 In True Contains 's_str' Contains $usn1 Where .e12[$@usn6..00][01234567.._usn3]).usn2,[@usn6 In False Contains 0 Contains $`6esn` Where $`5esn`[..00]|_usn3 Contains 9e12 Contains `8esn`].`3esn`?,{`4esn`:.e1[7..][9e0..],`8esn`:00 In @usn6 In 0}.`4esn`? Unwind All(#usn7 In 9e0[$1000] Where 0x0[12e12..$`7esn`])[(:`5esn`{_usn4:12 Starts With #usn7 Starts With 0Xa,#usn7:999 Is Null Is Null})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})][{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}] As #usn8 Union Merge `3esn`=(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}) On Match Set _usn3+=#usn7[..07],(:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(usn1 :`7esn`).`4esn` =1.e1[$`3esn`][0Xa],All(@usn5 In 's_str'[0..] Where `2esn`[..01][..True]).`2esn`! =`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] On Create Set Filter(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7]).``! =12 Contains 01234567"), + octest:ct_string("Match ((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})),(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Where 123.654 With Distinct 0.e0['s_str'..][01234567..] As `1esn`,None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,.0[$``..0X7] With Distinct $@usn6[.0..][0e0..] Order By $`8esn` Is Not Null Is Not Null Descending,Null Ends With _usn4 Ends With 0.0 Ascending Limit .e0 Where 0.12[..$_usn3][..0Xa] Union All Unwind 123.654 In $999 In _usn3 As usn2 Match #usn8=(({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})<-[?:`3esn`*..]-(usn2 :``:usn2)-[`5esn`? *01234567..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})) Where .0[..'s_str'][..01234567] Unwind 0x0[@usn5][$#usn8] As `1esn` Union All Merge ((`4esn` :_usn3{usn2:01[..0Xa][..12],`1esn`:999[..`1esn`][..07]})-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})) Detach Delete (`1esn` $`4esn`)-[@usn6?:`7esn`|:`2esn`]-({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]}) =~Filter(`3esn` In 9e1 Contains $999 Where 12.0 Is Null Is Null) =~[0xabc In Null],[$`1esn`[``][07],$`4esn`[`6esn`..$12],False[$usn1][0x0]] =~[.e12 Is Null Is Null],$`3esn`"), + octest:ct_string("Merge `7esn`=(:_usn3{@usn5:$1000 Starts With $`7esn`})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]->(#usn8 :``:usn2) On Create Set #usn8+=`8esn` In $1000 Merge #usn7=(({@usn6:0x0[Count(*)..@usn6][Count(*)..0Xa],`7esn`:0.0 =~9e0 =~$0})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})) On Match Set [$usn2 =~9e1,$`6esn` Is Null].`8esn`? =(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),usn2 =$@usn5 Ends With @usn5 Ends With 0xabc,#usn8+=$`1esn` Starts With Count(*) Union Merge ((usn1 :_usn4{`4esn`:`7esn` Is Null})<-[`8esn`?:`2esn`|`4esn` *01..123456789{`8esn`:$`4esn` Is Null Is Null,usn1:$1000 Starts With $`3esn` Starts With 0.e0}]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})) Match ((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Delete (`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Is Not Null"), + octest:ct_string("Detach Delete `` =~.12,[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])],123456789[12] With Distinct $#usn8 Ends With `` Ends With 999 As `5esn`,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]) Is Not Null Is Not Null As _usn3 Order By _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..] Desc,{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Is Not Null Desc,9e0 Ends With $#usn8 Desc Limit 12.0 Starts With $`2esn` Starts With .e1 Where 9e1 Ends With Count(*) Ends With $7 Merge `1esn`=(`6esn` {``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]})-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(`3esn` :usn2{`6esn`:#usn8 Is Null}) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] Union With Distinct usn2 =~$`` =~$`8esn` As `2esn`,'s_str'[0x0..1.e1] As `6esn`,$`5esn`[\"d_str\"..] As `5esn` Limit 01[07..][1.e1..] Return *,1e1[..#usn7][..$`5esn`] Order By [`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8|12.e12[..$`6esn`]][Filter(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])..(:`2esn`{`8esn`:1e1 Contains 's_str' Contains `3esn`})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]-(:`5esn`{@usn6:1000[0e0][1e1]})<-[_usn4]->(:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]})] Ascending Match (`3esn` {_usn4:123.654 In 12})-[`4esn`?:_usn4 *7..]-(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})<-[ *00..0Xa]->(#usn7 :usn1:`3esn`),(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]}) Union Optional Match (_usn4 :#usn7:`5esn`)-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-(`5esn` :#usn8:`1esn`) Where 9e1[`1esn`..0][999..1e1]"), + octest:ct_string("Optional Match usn2=(`8esn` :`6esn`:_usn3),#usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) With *,Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],True In (#usn8 :`6esn`:_usn3)<-[`2esn`?:_usn4{#usn8:$12[9e0..$999]}]->({``:.e1 Starts With 12.e12 Starts With `2esn`}) As `5esn` Order By Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} Desc,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) Ascending,$`7esn`[$_usn4][.e0] Descending"), + octest:ct_string("Merge ((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) On Create Set #usn8+=[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null),@usn5+=.e0 =~$`7esn` =~0X0123456789ABCDEF,``+=(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) On Match Set `6esn`(Distinct 0Xa[$`8esn`..][$_usn4..],0xabc In Null).`2esn`! =(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[? *..010{#usn8:False Is Null}]->(#usn7 {#usn7:1.e1 Starts With 9e12})<-[:_usn3|:`7esn` *00..0Xa]-(`1esn` $`4esn`)[..[0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]]][..(:`2esn`{_usn3:@usn5[0.0..0X7]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null).`7esn`? =Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])],Extract(`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]).@usn5 =$@usn6 Ends With 123456789 Ends With 12.0 Return *,Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null As usn1,00 Contains Count ( * ) Contains 0x0 As `5esn` Limit .e0 Union All Return Distinct *,1e1 Contains 0.e0 Contains 9e1 Limit None(#usn7 In 9e0[$1000] Where $1000 Is Not Null) Is Null Is Null Merge ((`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})) With 's_str' Order By $12[9e0..$999] Asc,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip #usn8[`8esn`..] Limit .12 In `8esn` In $#usn8 Where 12.e12 Contains #usn7 Contains $_usn4"), + octest:ct_string("Unwind `6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] As @usn5 Return Distinct $@usn6 Ends With 12.e12 Ends With @usn5 As usn2,``[usn1][`5esn`],`7esn`[..$`6esn`] Order By $@usn6 In @usn6 In 1e1 Desc,.e1[..$`3esn`][..01] Desc Limit Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Unwind $`5esn` Starts With 0.0 Starts With .e0 As `2esn`"), + octest:ct_string("With Distinct $123456789 Starts With 0.12 Starts With Null As _usn3 Skip {`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Limit [@usn5 In 's_str'[0..] Where @usn6 In .12 In `3esn`] Ends With Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $`5esn` Is Not Null) Unwind #usn8[`8esn`..] As `7esn` Union All Merge _usn3=(((`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})<-[:`2esn`|`4esn` *0X0123456789ABCDEF..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(@usn6 :`2esn`{`4esn`:$999[0Xa..][9e1..]}))) On Match Set ``+=`2esn`[_usn3],[_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]].`2esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`) Is Null,`1esn`+=`4esn`($_usn4 Starts With $1000 Starts With 12)[{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}] On Create Set [usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]].`1esn`? =999 Contains 0 Contains $`5esn` Remove Any(_usn4 In 12e12 In 123456789 Where 9e1 Is Not Null Is Not Null).#usn7? Merge @usn6=(#usn7 {_usn4:1.e1[`8esn`]})<-[usn2{`2esn`:$12 Starts With $usn1}]->(:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]}) On Create Set All(usn2 In 7[12] Where `2esn`[$12..]).#usn8? =[#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3],Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3|01 In $@usn6).`7esn`? ={`3esn`:.e1[..\"d_str\"][..$123456789]},[$`5esn` =~usn1,@usn6 Contains .12 Contains $usn1,999 In #usn8 In $``]._usn3 =[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )]"), + octest:ct_string("Unwind 0e0 Is Not Null As `6esn` Union Merge ``=(:_usn3{`7esn`:$999 Ends With .e0})<-[`8esn`?:`2esn`|`4esn`{usn2:#usn8[`6esn`..][$``..]}]-(@usn6 {`6esn`:$`5esn` =~usn1,`5esn`:$`` Starts With $1000 Starts With @usn6})-[?{_usn3:010[`5esn`],_usn4:#usn8 =~.e0}]-(#usn8 :`3esn`{`5esn`:$@usn6 Ends With `1esn`}) On Match Set `7esn`+=$`5esn` Is Not Null,Any(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7])._usn3 =.e12[`2esn`..010],`8esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null Merge `8esn`=(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) Merge _usn3=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) On Match Set @usn6+=(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1+=999 Is Not Null Is Not Null"), + octest:ct_string("Create @usn5=(({`8esn`:`5esn` Contains #usn7 Contains 9e12})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`1esn` :`3esn`{#usn8:$usn2[0.e0],`8esn`:$`4esn`['s_str'..]})),((`8esn` :@usn6{`7esn`:0e0[999..$``]})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})) With Distinct *,0Xa[Count(*)..],[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,0xabc In .12 In 0Xa Descending,.0 Contains .e12 Contains 0 Desc Skip All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1)[None(@usn6 In 010[`5esn`] Where 00[1.e1..])..[$12[$usn1..][Count(*)..],$@usn5 Contains 's_str' Contains \"d_str\"]][Extract(`3esn` In 9e1 Contains $999 Where 0e0 Starts With 999 Starts With `2esn`|9e1 Ends With Count(*) Ends With $7).._usn4(`1esn`[0.12..][@usn6..],#usn8 =~0.e0)] Limit `1esn` Starts With 9e1 Union Optional Match @usn5=(`3esn` {`4esn`:False Is Null}) Detach Delete $999 In 12 In 1.e1,usn2 Is Not Null Unwind .e12 Ends With 0Xa Ends With 0xabc As @usn6"), + octest:ct_string("Detach Delete $`4esn`[`6esn`..$12],[`3esn` In `2esn`[..01][..True] Where 0.e0[1000.._usn4][.e1..usn1]|`5esn`[..123.654][...e12]],[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e1[usn1..0x0][12.e12..12.0]][..{usn2:0x0[0X7]}][..[12.e12 Is Not Null Is Not Null,$@usn6[.0..][0e0..]]] Delete usn2 Is Null Is Null Create ``=((@usn5 {`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]})<-[`2esn`:`8esn`{`7esn`:$`4esn` Is Null Is Null}]->(usn1 :@usn6)-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(`8esn` :`8esn`)),(:_usn3{usn1:#usn7[..07]})<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]}) Union All Remove Extract(@usn6 In 010[`5esn`] Where 0e0[``..$1000][$7..12.e12]|1000[0e0][1e1]).`6esn`?"), + octest:ct_string("Delete True Starts With Null,`4esn`(Distinct Count(*) In 12 In `6esn`,Count(*) In 12 In `6esn`) =~{`7esn`:$@usn6[00]} =~[0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]]"), + octest:ct_string("Unwind 07 In 0Xa In usn1 As #usn8 Detach Delete usn1[False..`5esn`][$1000..$12] Match _usn4=(((:#usn7:`5esn`{`4esn`:$``[..\"d_str\"][..$#usn8]})<-[`6esn`? *00..0Xa]->(:#usn8:`1esn`$`7esn`)-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]})))"), + octest:ct_string("Unwind 1e1 Contains 0.e0 Contains 9e1 As `3esn` Detach Delete $`8esn`[999],usn2 Ends With $`4esn` Union Merge @usn6=((`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[@usn5?:usn2 *00..0Xa{usn2:$usn2[`4esn`..9e12]}]->(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->(usn2 :usn1:`3esn`)) On Match Set [#usn8 In `7esn` Where 01 Ends With 0Xa Ends With 0X7|`8esn` Contains Count(*) Contains $#usn7].``? ={`5esn`:$`1esn` In .e0,``:`6esn` Ends With Count ( * ) Ends With Count ( * )} Is Null Is Null,`8esn`+=$7 Is Null,`7esn` =_usn4 In #usn7 Merge ``=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) On Create Set [12e12 =~1e1,0X7[..$`8esn`]].`7esn` =1e1 Ends With $`2esn`,`8esn`+=01[$`7esn`..$@usn6] On Create Set Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7])._usn4 =count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null,`1esn`+=@usn5[..\"d_str\"],_usn4 =`2esn` =~.e12 =~0X0123456789ABCDEF Union Optional Match #usn7=(((:#usn7:`5esn`{_usn4:$usn2 =~9e1})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`)<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]}))),_usn4=((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})) Unwind None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] As `6esn` Delete `1esn`[`3esn`..],9e12[$`5esn`..$123456789]"), + octest:ct_string("Unwind $@usn5[_usn4] As #usn8 Union All Create ((#usn8 :_usn3)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)),((:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->({@usn6:12.e12 Contains #usn7 Contains $_usn4,usn2:$`5esn` =~$0 =~``})-[#usn7 *01..123456789]->(:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})) Union All With 's_str' Where 's_str'[0..] Unwind 12e12 In 123456789 As `7esn` Detach Delete $12 Starts With $0 Starts With $`8esn`"), + octest:ct_string("Create #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))),#usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Create ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)),((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Optional Match ``=((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)) Where 010 Is Null Is Null Union All Unwind Count(*)[9e12..12.0] As #usn8 Match _usn3=(`1esn` )<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7}) Where @usn5 Starts With 9e0 Starts With 010"), + octest:ct_string("Unwind All(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Is Not Null Is Not Null As `8esn` Create ((#usn8 :_usn3)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)),((:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->({@usn6:12.e12 Contains #usn7 Contains $_usn4,usn2:$`5esn` =~$0 =~``})-[#usn7 *01..123456789]->(:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})) Create `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})),usn2=((#usn7 {`8esn`:`7esn` In 010 In usn1})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})) Union Unwind 123.654[`4esn`..12] As `2esn` Create (((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})<-[?:usn1|`4esn` *01..123456789{usn1:.e12[$@usn6..00][01234567.._usn3],`1esn`:`7esn` Contains 9e0}]-(_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`}))),`6esn`=(:`3esn`{@usn6:$`5esn` =~$`8esn` =~usn2,`8esn`:12[..0e0][...e1]}) Union All Delete Extract(usn2 In 7[12] Where 0X7[.0])[Single(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)],0x0[..9e0] Create #usn8=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}),`2esn`=(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Merge `5esn`=({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})<-[_usn4?:@usn6|:`7esn`]->(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})<-[`8esn`:usn1|`4esn` *0Xa{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]->(:`8esn`) On Create Set {usn1:$_usn4 Starts With $1000 Starts With 12}.@usn6! =[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])] On Create Set `5esn`+=All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],`2esn` =False Starts With 0X7 Starts With 01234567"), + octest:ct_string("Optional Match #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),((:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8}))"), + octest:ct_string("Unwind $1000 Starts With $`3esn` Starts With 0.e0 As usn1 Return Distinct _usn4 Contains $_usn3 Contains .e1,$`4esn`['s_str'..] As `` Order By $usn2 =~9e1 Descending,(:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc,1.e1 =~$_usn4 Desc Skip 12[0e0] Optional Match (_usn4 :#usn7:`5esn`)-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-(`5esn` :#usn8:`1esn`) Where 9e1[`1esn`..0][999..1e1] Union All Remove [usn2 In 7[12] Where #usn7[0.e0..]['s_str'..]].#usn7!,{#usn8:.0 Is Null Is Null}.`2esn` Match ({@usn6:0x0[Count(*)..@usn6][Count(*)..0Xa],`7esn`:0.0 =~9e0 =~$0})-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(:_usn3{_usn3:$`3esn`[.e1][_usn4]})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`) Where 9e12 =~@usn6 Merge `1esn`=(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})-[`4esn`:`1esn`|`3esn` *12..]->(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}) On Match Set Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $@usn5[..0xabc][..$`3esn`]).#usn8 =_usn3 In $`8esn` In @usn6 On Create Set `6esn` =.e1[12.0..],{@usn5:``[9e12][$999]}.@usn5? =usn1 Contains 010,usn2+=All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 1.e1[12..][$`4esn`..])[{usn1:12.e12[..$`6esn`]}..]"), + octest:ct_string("Create ((:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[`2esn`{``:Null[..010][..1000]}]-(`` :usn1:`3esn`)-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})),((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})) With Distinct {`8esn`:9e12 =~@usn6,`1esn`:999 Contains 0 Contains $`5esn`}[`4esn`()],(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null} Order By [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Desc Limit $7 Starts With $`4esn`"), + octest:ct_string("Detach Delete Extract(@usn6 In 010[`5esn`] Where 00[$usn1..]|_usn3[$usn2..][$``..])[Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])],_usn4[$usn1..01234567][123.654..`5esn`],None(#usn7 In 9e0[$1000] Where $_usn3 Is Null) In [@usn5 In 's_str'[0..] Where $#usn8[12.e12..`8esn`][12.0..0.0]|`4esn` Ends With 12 Ends With .12] In [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12] Return *,[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]),01234567[$`2esn`][0Xa] As `5esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc Skip $@usn6[123.654..00] Merge (((_usn4 :#usn7:`5esn`)<-[#usn8 *0x0..]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})<-[`2esn`?:usn1|`4esn` *00..0Xa]->(`6esn` :#usn8:`1esn`{`6esn`:usn1[..$@usn6][..00]})))"), + octest:ct_string("Optional Match (usn2 :_usn4),`1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Where 0e0[01][$`7esn`] Remove (:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})-[? *0Xa]-(`8esn` {``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]}).`2esn`! Union All Detach Delete [$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][None(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..])..],1.e1 In 1000 In _usn3,#usn8 =~.e0 Remove None(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7).`5esn`?,({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})<-[`4esn`:usn2]->(:`8esn`{``:$`1esn` =~999}).usn2,(usn1 {usn1:$#usn7 =~`2esn`})-[{_usn3:01 Is Null,_usn3:$@usn6 Ends With 12.e12 Ends With @usn5}]-(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})-[`7esn`:#usn8|:`3esn` *0..01{`3esn`:07[_usn3..][`6esn`..],@usn6:``[usn1][`5esn`]}]->(:_usn3{_usn4:.e1[7..][9e0..]}).`4esn` Create `4esn`=((`` {#usn7:#usn8 Is Not Null Is Not Null})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]}))"), + octest:ct_string("Delete Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..],None(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1)[..{@usn5:$@usn6 Is Not Null Is Not Null}][..{`3esn`:1e1 In 0.0 In 0X0123456789ABCDEF}] Unwind $_usn3 Is Not Null Is Not Null As `3esn` Create (((:`1esn`:_usn4{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]})<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}))),_usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Union Optional Match `8esn`=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2) Where $0[0Xa..$123456789] Union All Delete (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..])"), + octest:ct_string("Detach Delete usn1[False..`5esn`][$1000..$12] Merge _usn3=(((`6esn` {`1esn`:12.0 =~@usn6 =~$`2esn`,`7esn`:0Xa[$`8esn`..][$_usn4..]})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(:`2esn`{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}))) On Match Set _usn3+=`6esn`[$``..$_usn3][1000...0],[usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5|0 Ends With 12.e12 Ends With usn2].`1esn` =123.654 Is Null Is Null On Create Set [usn2[12e12..]['s_str'..],$`3esn`[$_usn4..0Xa],#usn8 Is Null Is Null].usn2? =123.654 In $`6esn` Union All With *,Extract(`6esn` In $`6esn`[``..][Count(*)..] Where $@usn5 Starts With `5esn` Starts With 01234567|0.e0[..$7]) Is Null Is Null Skip 0xabc In 123456789 In 0x0 Limit _usn4 Starts With 1000 Starts With $usn2 Where 123.654[$0..0X7][Null..#usn8] Merge ({`4esn`:.e1[..$`3esn`][..01]})-[`5esn`:#usn7|@usn5]-(`5esn` :`4esn`:`6esn`) Union With $999[0Xa..][9e1..] As `4esn`,0X0123456789ABCDEF In .12 As #usn7 Skip None(@usn6 In 010[`5esn`] Where 123.654 In $`7esn`)[(`` {`7esn`:$#usn7[..0Xa]})<-[`1esn`?:usn1|`4esn` *00..0Xa]-(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[usn1? *01234567..{@usn5:01[`3esn`..][Count(*)..]}]->(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})..[False Contains 0 Contains $`6esn`,`1esn` Is Not Null Is Not Null]] Limit All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..] Remove Extract(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12|0x0[Count(*)..@usn6][Count(*)..0Xa])._usn3!,({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})<-[usn2?:`3esn` *00..0Xa]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})<-[`8esn`? *0Xa{#usn8:$``[True]}]->(_usn3 :`7esn`).`5esn`,Extract(`3esn` In 9e1 Contains $999 Where usn1[False..`5esn`][$1000..$12]).`7esn`"), + octest:ct_string("Delete {#usn7:$usn2[0.e0],`6esn`:.e1[..\"d_str\"][..$123456789]} Is Not Null"), + octest:ct_string("Match #usn8=(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) With Distinct $usn2[`5esn`..][01234567..] As #usn8 Skip $`6esn`[1.e1][$_usn3] Limit False[$`4esn`..] Remove (`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2).#usn7?,Filter(@usn5 In 9e0 Ends With $#usn8 Where 0X7 In $#usn7).`5esn`,[_usn3 Starts With 12e12 Starts With `5esn`,0e0[``..$1000][$7..12.e12],0Xa Ends With $`3esn` Ends With $1000].`8esn`?"), + octest:ct_string("Create usn2=((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`))"), + octest:ct_string("Create #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) Union All Unwind [#usn8 In `7esn` Where 9e12[$`5esn`..$123456789]] =~_usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6) As usn1 With Distinct usn2 Ends With .e1 Ends With $`5esn`,Extract(@usn5 In 's_str'[0..] Where 12e12 Is Not Null) =~[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]] Skip $`3esn`[..$1000][..$123456789] Limit 0xabc Is Null Is Null"), + octest:ct_string("Optional Match #usn8=((`3esn` :usn2{`6esn`:#usn8 Is Null})-[`4esn`?:_usn4 *7..{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(usn2 :`6esn`:_usn3{@usn5:$0[0Xa..$123456789]})<-[`2esn`{``:Null[..010][..1000]}]-(`` :usn1:`3esn`)),(`2esn` :`1esn`:_usn4) Union Delete {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}[..`2esn`(Distinct 0 Ends With 12.e12 Ends With usn2)][..Filter(_usn4 In 12e12 In 123456789 Where .e1 In 123456789)],Extract(@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1) Is Not Null Union With Distinct Single(usn2 In False[$usn1][0x0])[All(@usn6 In 010[`5esn`] Where 00[1.e1..])][(:`2esn`{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`})-[?{`5esn`:$`2esn`[.0..][0.0..]}]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})-[`` *1000..0X0123456789ABCDEF]->(:_usn4{`8esn`:01234567[Null..$_usn3]})],`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] As #usn7 Skip $`4esn` =~$`4esn` Return 0.0 Contains #usn7 As #usn8,Extract(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|.e1[usn2..$_usn3][.0..$#usn7]) Order By Any(`6esn` In $`6esn`[``..][Count(*)..] Where 1e1 Ends With $`7esn` Ends With .0) Is Not Null Descending,#usn8 Ends With $@usn5 Ends With $7 Desc,usn2[12.e12..] Asc Skip 12.0[$1000..][#usn7..] Limit $`2esn`[0..123456789][``..`1esn`]"), + octest:ct_string("Detach Delete [0.12[$0..$usn2],07 In `6esn`] Is Not Null Is Not Null,12[..$999][..$`2esn`] Union Match _usn3=((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7 *01..123456789]->(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})),``=((:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[`5esn`:#usn7|@usn5]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) Where 0x0[Count(*)..@usn6][Count(*)..0Xa] Remove Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12).`5esn`?,_usn3(0[$`5esn`],`2esn`[..$_usn4][...12]).`2esn`?,(usn1 :@usn6)<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})<-[?{`5esn`:123.654[$0..0X7][Null..#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]}]-(usn2 :`7esn`).#usn8 Create _usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})))"), + octest:ct_string("Unwind Filter(@usn5 In 's_str'[0..] Where $@usn6 =~#usn7 =~True)[Extract(@usn5 In 's_str'[0..] Where _usn3[0x0])..All(_usn4 In 12e12 In 123456789 Where $usn2 Is Not Null Is Not Null)][(`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]})<-[:`8esn`]-(:@usn6)-[? *0X0123456789ABCDEF..]-(usn2 :_usn3)..(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})] As `` Remove All(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1).`6esn`?,None(usn2 In False[$usn1][0x0] Where 9e12 Starts With 1e1).#usn8 Union All Return *,All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],12 In $usn1 In 7 As `8esn` Skip None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1) Limit $@usn5 Starts With .e1 Match `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((:#usn7:`5esn`{`3esn`:Null[..0]})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->(`6esn` :#usn7:`5esn`{_usn3:_usn4 Is Null Is Null})) Where $`5esn` =~usn1 Unwind #usn8 Is Null Is Null As `8esn` Union Delete `6esn` Is Null Is Null,0.e0[..$7] Detach Delete 01 Ends With 0Xa Ends With 0X7 Create (`5esn` :``:usn2)-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})"), + octest:ct_string("Optional Match #usn7=(((`4esn` :#usn7:`5esn`{_usn4:0Xa Ends With $`3esn` Ends With $1000})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7}))),usn1=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) Unwind 9e1[`1esn`..0][999..1e1] As #usn8 Merge `6esn`=(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})"), + octest:ct_string("With *,$`2esn` Contains Count(*) As `3esn`,(`2esn` :usn1:`3esn`)-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})<-[?:`3esn`]-(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})[({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})] Order By 010 Contains .e1 Asc,(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})<-[#usn7 *01..123456789]->(`6esn` :usn1:`3esn`) Ends With Extract(#usn8 In `7esn` Where 9e12[..1e1][..'s_str']) Ends With [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123.654 Is Not Null|$`2esn`[.0..][0.0..]] Descending Skip $@usn5[`1esn`..][$999..] Limit Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] Union All Return Distinct #usn8 Is Not Null Is Not Null,{`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..] As _usn4 Skip $`5esn`[$`3esn`..] Detach Delete [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null,00[False..0e0],0.e0[1000.._usn4][.e1..usn1] Detach Delete _usn4(Distinct 0X0123456789ABCDEF Ends With 01 Ends With ``,$`3esn`[..0xabc][..$7]) In Single(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0) In Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7]),Count(*) Ends With usn1 Union All Unwind `2esn`[$@usn6..][Null..] As `8esn` Return *,[`8esn`[..$#usn8],$1000 Starts With $`7esn`,0xabc In 010 In #usn7] Is Null Is Null As `8esn` Skip All(@usn5 In 's_str'[0..] Where 0.e0) In Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $123456789 In 0.12) In {`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]} Limit Filter(@usn6 In 010[`5esn`] Where `7esn`[1e1]) Contains {`7esn`:$`5esn` In 07 In 00,`1esn`:07 In `6esn`} Contains {`3esn`:00[12..$`6esn`]} Match _usn4=(@usn6 :`4esn`:`6esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`2esn`?:`6esn`|:#usn8{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`}]-(_usn3 {_usn3:0.12 Starts With $`8esn` Starts With @usn5}),#usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})))"), + octest:ct_string("Unwind {`8esn`:9e12 =~@usn6,`1esn`:999 Contains 0 Contains $`5esn`}[`4esn`()] As usn2 Merge #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))) On Create Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] On Match Set Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa).@usn6! =0.e0 Is Not Null Is Not Null,`1esn` =07 In `6esn` Union Delete 0X7 In $#usn7 Unwind {#usn8:1.e1 Is Null Is Null,_usn4:0xabc In 123456789 In 0x0}[All(@usn6 In 010[`5esn`] Where 00[1.e1..])..] As _usn4 Detach Delete [`6esn` In $`6esn`[``..][Count(*)..] Where $0[123.654..0.e0]][{`8esn`:$`4esn`[..$`8esn`][..Null]}..({usn2:_usn3[`2esn`..0X7][0.e0..$`3esn`]})<-[_usn4?:@usn6|:`7esn`]-(usn1 :`2esn`{@usn6:True Contains 's_str' Contains $usn1,``:$`4esn` Starts With 0 Starts With `7esn`})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})][None(`3esn` In `2esn`[..01][..True])..[0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF]] Union All Unwind #usn8(1000[12e12][`5esn`],9e1 Contains 12)[Extract(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0)..`1esn`(Distinct `3esn`[7..0.e0][0.0..123456789],`1esn` Starts With 0xabc Starts With $usn2)][Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 9e0[Count(*)..0.12][$`1esn`..12.0])..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12)] As @usn6 Remove None(`5esn` In 0X7 In $#usn7 Where usn1 =~$`7esn`).`3esn`!,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $123456789 In 0.12)._usn3?,(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]}).`6esn`? With *,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null Order By .e0 Starts With $@usn6 Starts With $7 Descending Skip [$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa)"), + octest:ct_string("Return *,[`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] As `4esn`,$1000[0X0123456789ABCDEF][12] Skip $999[.e12][.0] Limit `` Starts With $123456789 With Distinct {usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}[[@usn5 In 9e0 Ends With $#usn8 Where 00 Contains Count ( * ) Contains 0x0]],(`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Order By `3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] Desc,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1) Asc,$@usn5[..$#usn7] Descending Skip #usn8 Is Not Null Is Not Null"), + octest:ct_string("With *,0.e0 =~00 As `3esn` Order By 's_str'[0x0..1.e1] Asc,usn1[False..`5esn`][$1000..$12] Ascending Where 9e1[$#usn8][$1000] Remove (`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})<-[usn1:_usn4]-(#usn7 :@usn6).@usn5?,[@usn5 In 's_str'[0..] Where #usn7[0.12..]|.e12 Ends With 0Xa Ends With 0xabc].`1esn`? Unwind 0X0123456789ABCDEF Ends With `2esn` Ends With $`7esn` As `8esn`"), + octest:ct_string("Unwind Any(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) =~[#usn7 In 9e1[$`1esn`..] Where 0Xa Ends With $`3esn` Ends With $1000|$@usn5 Contains 's_str' Contains \"d_str\"] =~Extract(@usn6 In False Contains 0 Contains $`6esn` Where $`6esn` Starts With .e12 Starts With $`1esn`|12e12 In 123456789) As `1esn` Union All Optional Match ((`4esn` :@usn6)-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})) Where 0Xa Ends With $`3esn` Ends With $1000 Union Optional Match ``=(((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),((({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:#usn7|@usn5*..]-(`3esn` :usn2{`6esn`:#usn8 Is Null})<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Where $1000 Starts With $`3esn` Starts With 0.e0"), + octest:ct_string("Create #usn7=((:`7esn`{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})) Union All Create (((usn2 :#usn8:`1esn`)-[`5esn`?:`7esn`|:`2esn` *0x0..]->(`8esn` :`8esn`)<-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(#usn7 :`2esn`))),((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) Unwind 9e1 =~123456789 =~999 As ``"), + octest:ct_string("Unwind [#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)] Contains (:`2esn`)-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`3esn` {`4esn`:False Is Null}) Contains Filter(`8esn` In 123456789 =~@usn6 Where $`6esn` Starts With .e12 Starts With $`1esn`) As `1esn` Union Delete 12.e12 Starts With \"d_str\" Starts With 9e1,'s_str' Starts With 9e0 Starts With usn2,$`4esn`[..$`8esn`][..Null] Optional Match (`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}) Return Distinct *,00 Ends With $`1esn` Ends With `7esn`,$@usn6 Is Not Null Is Not Null As `8esn` Order By (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Descending,[#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Descending Skip [usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Limit 12.e12 =~.0 =~usn1"), + octest:ct_string("With 010[12.0..`4esn`][``..Count(*)],$`7esn`[123456789..$1000][Count ( * )..$7],$`2esn` Contains Count(*) As `3esn` Order By [$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) Ascending,[usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Ascending Limit 0.e0 Ends With 1.e1 Where _usn4 Is Not Null Optional Match ((`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})),`5esn`=(((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Union All With 0.12 Starts With $`8esn` Starts With @usn5 As @usn5,#usn7 Is Null Is Null As `1esn`,[@usn5[$`6esn`..][$999..],`` Starts With $123456789] Is Null Order By Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) Ascending,'s_str' Starts With 1e1 Starts With $0 Desc Where .e1[7..][9e0..] Merge `2esn`=(((`7esn` )<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2))) On Match Set #usn8 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) Unwind _usn3[`5esn`..][usn2..] As #usn7 Union Remove {`3esn`:$`5esn` Is Not Null Is Not Null}.`2esn`!,{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1}.`1esn`? Match _usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))),usn1=(_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})"), + octest:ct_string("Return Distinct 010 Is Not Null Is Not Null As `1esn`,9e12 Starts With 1e1 As `5esn` Order By 9e0[..123456789][..$`3esn`] Asc,$@usn6 Ends With `1esn` Descending,9e1[$#usn8][$1000] Descending Match ``=((:`3esn`{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})),(((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}))) Unwind 0[01234567..][0X0123456789ABCDEF..] As `4esn`"), + octest:ct_string("Merge @usn6=((`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})) On Match Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] Return Distinct $@usn6 Ends With 12.e12 Ends With @usn5 As usn2,``[usn1][`5esn`],`7esn`[..$`6esn`] Order By $@usn6 In @usn6 In 1e1 Desc,.e1[..$`3esn`][..01] Desc Limit Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Merge #usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) On Create Set @usn6+=$`1esn` =~1e1 On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1]"), + octest:ct_string("Unwind 999 In `2esn` In `8esn` As `4esn` Union Return Distinct Null[..010][..1000] As #usn7 Order By Any(`6esn` In $`6esn`[``..][Count(*)..] Where 1e1 Ends With $`7esn` Ends With .0) Is Not Null Descending,#usn8 Ends With $@usn5 Ends With $7 Desc,usn2[12.e12..] Asc Skip 1000[..`2esn`][..$@usn6] Limit [$`6esn`[1.e1][$_usn3],0Xa Ends With $`3esn` Ends With $1000] Ends With (usn2 :_usn4)-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-({`8esn`:usn2 Starts With .0,@usn5:Count(*) In 12 In `6esn`}) Create (`3esn` {_usn4:123.654 In 12})-[`4esn`?:_usn4 *7..]-(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})<-[ *00..0Xa]->(#usn7 :usn1:`3esn`),(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})"), + octest:ct_string("Remove Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01).`3esn`,`5esn`(Distinct).usn1! Detach Delete `2esn` Starts With $`7esn` Remove `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]).#usn8! Union All Create ((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[_usn3?:`8esn` *1000..0X0123456789ABCDEF{@usn5:07 Is Not Null Is Not Null}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})),usn2=(`6esn` :usn1:`3esn`)-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})<-[ *..07{`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn3{@usn5:$1000 Starts With $`7esn`})"), + octest:ct_string("Unwind [#usn8 In `7esn` Where .e0 Starts With $@usn6 Starts With $7|1000[12e12][`5esn`]] Ends With [`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8] Ends With [$``[..\"d_str\"][..$#usn8],$_usn4 Starts With $1000 Starts With 12,#usn7[.e0]] As `8esn` Union All Return 010[12.0..`4esn`][``..Count(*)],$`7esn`[123456789..$1000][Count ( * )..$7],$`2esn` Contains Count(*) As `3esn` Order By [$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) Ascending,[usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Ascending Limit 0.e0 Ends With 1.e1 Unwind Extract(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|.e1[usn2..$_usn3][.0..$#usn7]) As _usn4 Detach Delete 9e1 Contains $999 Union All Unwind (:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Is Not Null As usn1"), + octest:ct_string("With 0.e0 Is Not Null Is Not Null As _usn4,0X0123456789ABCDEF In $usn2 In `4esn`,$usn1 Is Not Null Is Not Null Order By 01234567[$@usn6..$#usn7][123456789..12e12] Desc,Single(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1)[Filter(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])..][Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.0 In 123.654 In _usn4)..] Ascending Skip Null[..0] Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0])"), + octest:ct_string("Create ((:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})),`2esn`=(((@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]})<-[? *7..{`1esn`:.e12 Ends With 0Xa Ends With 0xabc}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[ *..07]->(`8esn` {`8esn`:$_usn4 Starts With 12.e12}))) Match (({`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]})) Unwind `4esn` Contains 9e0 As `8esn` Union With (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Order By usn1 Ends With 9e0 Ends With 9e0 Descending,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Descending Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Remove [0.e0[1000.._usn4][.e1..usn1],$`1esn` =~999,07[_usn3..][`6esn`..]].usn1!,usn2:`4esn`:`6esn`,Extract(usn2 In False[$usn1][0x0] Where $`7esn`|07 Is Null).#usn7! Delete $`6esn` Is Not Null Is Not Null,$`8esn` Is Not Null Is Not Null"), + octest:ct_string("Detach Delete .e12[..999][..@usn5]"), + octest:ct_string("Merge ((`` {#usn7:#usn8 Is Not Null Is Not Null})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`2esn` :@usn5)<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Delete 9e0[$`8esn`] Remove [7 =~`4esn`,`2esn` Starts With $`7esn`].`8esn`! Union Return Distinct .0 Starts With `1esn` As #usn7,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} As usn2,$@usn5[..$#usn7] Limit None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[Extract(#usn7 In 9e0[$1000] Where .e1 In 123456789)][{_usn3:01[`8esn`..9e12][.12..0]}] Unwind `7esn` Is Null As @usn5 Union All Create (:`6esn`:_usn3{`8esn`:`4esn`[\"d_str\"]['s_str']})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0}),`4esn`=((({#usn7:$`3esn` Ends With 01234567,_usn3:usn1 =~$`7esn`})-[`7esn`?:usn1|`4esn` *00..0Xa{`3esn`:usn1 In ``}]-(usn1 {usn1:$#usn7 Starts With 01234567 Starts With $0})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})))"), + octest:ct_string("Unwind $#usn7 =~`2esn` As usn1 Detach Delete [0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]][{usn2:$@usn6 Ends With `1esn`,_usn3:`7esn`}..][{@usn6:1e1 Is Not Null Is Not Null,`8esn`:$`1esn` Starts With $`4esn` Starts With $_usn3}..],`6esn`[$1000][`3esn`] Union Optional Match (`1esn` {#usn7:$`1esn` Ends With 0X0123456789ABCDEF,`3esn`:.12 Starts With _usn3 Starts With $``}) Where 0 =~1e1"), + octest:ct_string("Create `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((`6esn` :`5esn`)<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`5esn` :`4esn`:`6esn`)) Detach Delete [#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null),1e1 Ends With $`2esn` With Distinct $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Order By 12.0 Ends With `2esn` Descending Skip @usn5 Starts With 9e0 Starts With 010 Limit usn1[_usn3..] Where 9e1[usn1..0x0][12.e12..12.0]"), + octest:ct_string("Merge (`1esn` :`3esn`{#usn8:$usn2[0.e0],`8esn`:$`4esn`['s_str'..]})<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]}) On Create Set `2esn`+=0X0123456789ABCDEF In .12,`1esn` =$`7esn` In False In $`1esn` On Create Set usn1+=_usn3 Starts With 12e12 Starts With `5esn`,`4esn`+=(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})[..Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|Count ( * )[$`5esn`..][$7..])][..$usn2],#usn7+=.e0 Is Null Optional Match #usn8=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}),`2esn`=(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Union Optional Match `8esn`=(`5esn` :``:usn2)-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}),((:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Create (`6esn` {`2esn`:$`3esn` Ends With 01234567}),usn2=({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2)<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(_usn4 :@usn5) Return Distinct *,Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] As `7esn` Skip $0 =~9e1 =~$`2esn` Limit Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..] Union All Merge `1esn`=(`5esn` :`5esn`{#usn7:``[$`3esn`]}) On Create Set @usn6+=$`1esn` =~1e1 On Match Set Any(`3esn` In 9e1 Contains $999 Where usn2[12.e12..]).usn1? =usn1[False..`5esn`][$1000..$12],#usn7 =Single(#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6])[Filter(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])..],Any(#usn8 In `7esn` Where .e12 Starts With $#usn8 Starts With False)._usn3? =1.e1 Ends With $#usn7 With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Order By 1.e1 In 1000 In _usn3 Desc,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Descending,123.654 Is Null Is Null Asc Where _usn4[`7esn`]"), + octest:ct_string("Remove Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5,{`3esn`:9e1 Ends With Count(*) Ends With $7}._usn4! Detach Delete 0X7[..$`8esn`] Union All Delete `4esn`($_usn4 Starts With $1000 Starts With 12)[{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}],00[$`1esn`..][@usn6..],0.12 Starts With $`8esn` Starts With @usn5 Union Return Distinct `1esn`(.0 Starts With `1esn`,01[`3esn`..][Count(*)..]) In [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] As `4esn`,`7esn`[$usn1..]['s_str'..] Detach Delete 00[12e12][$`7esn`],\"d_str\" Is Null Is Null,usn2[1.e1] Delete {``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]}[#usn7(Distinct $`1esn`[``][07])..None(@usn6 In 010[`5esn`] Where $`3esn` Ends With 01234567)]"), + octest:ct_string("Return *,`3esn`[12.0][$_usn3],.e1 =~_usn4 =~_usn4 As `3esn` Limit Count ( * ) In 0.12 With Distinct 010[12.0..`4esn`][``..Count(*)],$`7esn`[123456789..$1000][Count ( * )..$7],$`2esn` Contains Count(*) As `3esn` Skip `1esn` Where Null[..0] Union All Unwind #usn8 Is Not Null As `1esn`"), + octest:ct_string("Return *,#usn7[0.12..],$`3esn`[.e1][_usn4] As _usn4 Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Limit \"d_str\" Is Not Null Is Not Null"), + octest:ct_string("Return *,12 Ends With True Ends With @usn6,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3) Ascending,$@usn6 =~0xabc =~$999 Descending,[`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5|`7esn`[1e1]] Contains (`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->(`2esn` {`1esn`:$`4esn` Is Null Is Null}) Contains Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``) Desc Remove {`8esn`:usn2 =~7,`5esn`:.e0[01234567..$`8esn`]}.#usn8 Merge #usn7=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`}))"), + octest:ct_string("Detach Delete 07[999],12.e12 Contains #usn7 Contains $_usn4,0[@usn5..$#usn7] Union All Create #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))),#usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Create ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)),((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Optional Match ``=((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)) Where 010 Is Null Is Null Union Create `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]})"), + octest:ct_string("Return Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By 0Xa[..Count ( * )][..$123456789] Desc,`5esn`[$`7esn`..$@usn5] Ascending Skip usn2[..$usn1][..$#usn8] Limit 12.0 Ends With usn2 Ends With 0 Match @usn5=(:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']}),(`3esn` {_usn3:$123456789[0.12..]})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}) Remove {@usn6:07 Is Not Null Is Not Null,`5esn`:0e0 =~7 =~12.0}.`8esn`,All(#usn7 In 9e0[$1000] Where .e1 In 123456789).`6esn`! Union All Remove Any(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null).`4esn`,(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(_usn4 :`8esn`)<-[ *0X7..{#usn8:.e0 Contains $#usn8}]->(`2esn` :`6esn`:_usn3).@usn5!"), + octest:ct_string("Remove {usn1:0 =~1e1,`7esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}.usn1!,None(`5esn` In `7esn`[$usn2..][$123456789..] Where $123456789[...12][..@usn6]).usn2? Unwind $#usn8[..$999] As #usn7 Optional Match _usn4=((:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})),(`2esn` :`1esn`:_usn4)-[?*..]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})"), + octest:ct_string("Detach Delete usn1 Ends With 0.0,$999 In 1e1,`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..]"), + octest:ct_string("Return *,1e1 Contains 0.e0 Contains 9e1,`1esn` Starts With 9e1 As `6esn` Order By 010 Contains .e1 Asc,(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})<-[#usn7 *01..123456789]->(`6esn` :usn1:`3esn`) Ends With Extract(#usn8 In `7esn` Where 9e12[..1e1][..'s_str']) Ends With [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123.654 Is Not Null|$`2esn`[.0..][0.0..]] Descending Return $123456789 Starts With 0.12 Starts With Null As _usn3 Order By #usn7[``] Desc,{`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Ascending,`` Is Null Descending Skip 0X0123456789ABCDEF In $7 Limit All(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0)[(:#usn7:`5esn`)<-[#usn8? *0Xa]-(`5esn` :`5esn`{#usn7:``[$`3esn`]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc})..] Union All Return Distinct *,Null[..010][..1000] As #usn7,9e12 Ends With 12e12 Ends With 12 As `` Order By 1000[$7..][_usn4..] Desc Skip $`3esn` Ends With 01234567 Limit 7 Ends With .12 Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Unwind usn1[..$@usn6][..00] As `4esn`"), + octest:ct_string("Match @usn6=(usn2 :_usn4) Where `2esn` In 7 Merge ((@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})) On Create Set _usn4+=010 Starts With $`` Starts With 0e0 On Create Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null Unwind {`8esn`:9e12 =~@usn6,`1esn`:999 Contains 0 Contains $`5esn`}[`4esn`()] As usn2"), + octest:ct_string("Return Distinct _usn3 Is Not Null Is Not Null As `` Skip 0X7[..$`8esn`] Limit {@usn5:$@usn6 Is Not Null Is Not Null} Starts With [`3esn` In `2esn`[..01][..True] Where 0x0[usn1..usn1]] Starts With Extract(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..]|0X7['s_str'..][01..]) Delete $`7esn`[@usn5..][usn2..],0x0 In `8esn`"), + octest:ct_string("Unwind 0.0 Ends With $`7esn` As #usn7 Detach Delete Single(_usn4 In 12e12 In 123456789 Where False Is Null)[[$usn1,_usn4 Contains `` Contains 1.e1]][(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]})],0 =~1e1 Unwind (#usn7 )<-[`5esn`?:@usn5|_usn3{``:0.0 =~9e0 =~$0}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]}) Contains Filter(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null) As `` Union All Return Distinct *,$@usn6[123.654..00] As @usn5,7 Is Null Is Null Order By 0[01234567..][0X0123456789ABCDEF..] Desc,Extract(usn2 In 7[12] Where usn1 Starts With 00|`8esn` Contains Count(*) Contains $#usn7) Contains None(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[0.e0]) Contains Extract(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]|$`4esn`['s_str'..]) Asc,[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]][Any(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..])..Single(usn2 In False[$usn1][0x0] Where 9e1 Is Not Null Is Not Null)] Ascending Skip $_usn4[..123456789] Limit 0e0 Ends With 07 Ends With $`8esn` Merge ((#usn7 {#usn7:1.e1 Starts With 9e12})<-[ *..07{`5esn`:999 In 0e0}]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})) On Create Set `4esn`:usn2,`2esn`+=`2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..] On Match Set [#usn8 In `7esn` Where 00 In @usn6 In 0].`1esn`? =Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) Is Not Null Is Not Null,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]).@usn6! =[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]),_usn4+=$_usn3[$12]"), + octest:ct_string("Create ((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})),(((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[?:_usn4]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1}))) Union All With .0 Starts With `1esn` As #usn7,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} As usn2,$@usn5[..$#usn7] Limit None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[Extract(#usn7 In 9e0[$1000] Where .e1 In 123456789)][{_usn3:01[`8esn`..9e12][.12..0]}] Detach Delete 9e1[_usn3] Union Return *,`6esn`[$1000][`3esn`],$`1esn`[Null][True] As `7esn` Order By `5esn` Contains `5esn` Contains $_usn3 Ascending,[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]] In (`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(:#usn7:`5esn`)-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:#usn8:`1esn`$`7esn`) In {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]} Asc,#usn7 Starts With $123456789 Starts With 12e12 Asc Match ((:`5esn`{`8esn`:$`1esn` Starts With Count(*),_usn3:usn1[...e12][..1.e1]})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(`4esn` :_usn4)) Merge (((:#usn7:`5esn`{_usn4:$usn2 =~9e1})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`)<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})))"), + octest:ct_string("Merge usn1=(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]-(`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]}) On Match Set 0.12.`8esn`? =.0 Contains .e12 Contains 0 Remove Any(@usn5 In 's_str'[0..] Where #usn7[0.12..])._usn3,[`6esn` In $`6esn`[``..][Count(*)..] Where @usn5[0.0..0X7]].``! Union Return Distinct 07 As `4esn` Skip `2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..] Unwind Any(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) =~[#usn7 In 9e1[$`1esn`..] Where 0Xa Ends With $`3esn` Ends With $1000|$@usn5 Contains 's_str' Contains \"d_str\"] =~Extract(@usn6 In False Contains 0 Contains $`6esn` Where $`6esn` Starts With .e12 Starts With $`1esn`|12e12 In 123456789) As `1esn` Merge usn1=((`2esn` :@usn5)) On Match Set Any(#usn8 In `7esn` Where $`3esn` Contains $`1esn`).`8esn`? =0x0 Contains $`6esn` Contains `4esn`,Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where False[$usn1][0x0]|@usn5[0.0..0X7]).usn2! =Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1),`3esn` =12.e12[..$999][..07] On Match Set usn1 =`5esn` Contains `5esn` Contains $_usn3,#usn8 =True Contains 0x0 Contains $_usn3 Union All Create ((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})-[_usn3?:`8esn` *1000..0X0123456789ABCDEF{@usn5:07 Is Not Null Is Not Null}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})),usn2=(`6esn` :usn1:`3esn`)-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})<-[ *..07{`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn3{@usn5:$1000 Starts With $`7esn`})"), + octest:ct_string("Return $`4esn`[`6esn`..$12] As `3esn` Order By [0x0 Ends With 12.0 Ends With `5esn`,12e12 Ends With 0.0 Ends With usn1,00[1.e1..]] Ends With All(#usn8 In `7esn` Where $`3esn`[..0xabc][..$7]) Ends With Any(@usn6 In False Contains 0 Contains $`6esn` Where `6esn`[$1000][`3esn`]) Asc,Filter(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3]) In ({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) In Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0) Asc Skip usn1 Union Merge `3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) On Match Set @usn6 =999[..`1esn`][..07],`3esn`+=$@usn5[0.0][0X0123456789ABCDEF],`6esn`+=$usn1[1000][.12] On Match Set #usn8+=Count(*)[$@usn5],@usn6 =0 =~1e1,`2esn`+=Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Unwind Count(*)[9e12..12.0] As #usn8 Remove All(#usn7 In True Contains 's_str' Contains $usn1 Where .e12[$@usn6..00][01234567.._usn3]).usn2,[@usn6 In False Contains 0 Contains $`6esn` Where $`5esn`[..00]|_usn3 Contains 9e12 Contains `8esn`].`3esn`?,{`4esn`:.e1[7..][9e0..],`8esn`:00 In @usn6 In 0}.`4esn`?"), + octest:ct_string("Remove Extract(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12|.e1[12.0..]).`1esn`!,(:`5esn`{@usn6:1000[0e0][1e1]})-[:`` *0..01]-(:`8esn`{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]-(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}).@usn6! Remove [`5esn` In 0X7 In $#usn7 Where @usn6 Is Not Null Is Not Null|9e1[..123456789]].``?,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7).usn1 Optional Match (`8esn` {usn1:010[`5esn`],_usn3:_usn4 Is Null Is Null}) Union All Remove All(@usn6 In 010[`5esn`] Where `7esn`[$usn1..]['s_str'..]).usn1!,All(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).`8esn` Unwind `4esn` Starts With 0e0 As `1esn` Return Distinct `` Starts With $123456789,$`4esn` Starts With $`4esn` Starts With $_usn3,9e1[$#usn8][$1000] Order By .e12[.12..] Desc,{@usn5:01[`3esn`..][Count(*)..]} Starts With Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str']) Desc,``[$`3esn`] Descending Skip {@usn5:\"d_str\"[True..]} In _usn4(0 =~1e1,$123456789 Contains $#usn8 Contains ``) In [999 Contains $1000,`2esn` =~.e12 =~0X0123456789ABCDEF,_usn4[@usn6..][$0..]]"), + octest:ct_string("Match `5esn`=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']}),`7esn`=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}) Unwind {_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]} Contains ({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}) Contains None(#usn8 In `7esn`) As `4esn` Union Remove [`6esn` In $`6esn`[``..][Count(*)..]|$`4esn`['s_str'..]].@usn6?,(usn2 {`5esn`:$@usn5 In 12e12 In 01})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})-[`7esn`:`4esn`|@usn5 *12..]-(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]}).`5esn`"), + octest:ct_string("Remove Filter(`8esn` In 123456789 =~@usn6 Where 0x0[@usn6..][01..]).#usn8! Match `1esn`=(`5esn` :`5esn`{#usn7:``[$`3esn`]}) Union All Remove #usn7:`3esn`,Single(`6esn` In $`6esn`[``..][Count(*)..] Where 's_str' Starts With 1e1 Starts With $0).`4esn`?"), + octest:ct_string("Create ((`3esn` :usn2{`6esn`:#usn8 Is Null})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->(`7esn` {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01})),`5esn`=(({@usn5:``[9e12][$999]})-[usn2{``:$`1esn` =~999}]-(:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0})) Delete 123.654 In $`7esn`"), + octest:ct_string("Remove (_usn4 {usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[`2esn`:`8esn`{`7esn`:$`4esn` Is Null Is Null}]->(usn1 :@usn6)-[usn2?:`3esn` *00..0Xa]-(`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]}).`8esn`,{usn1:$123456789 In 0.12}.`1esn`! Union Merge `4esn`=({`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}) On Create Set #usn7+=Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] On Match Set `2esn` =9e1 Ends With Count(*) Ends With $7 Union All Merge ({`4esn`:.e1[..$`3esn`][..01]})-[`5esn`:#usn7|@usn5]-(`5esn` :`4esn`:`6esn`) Create (_usn3 :`7esn`) Unwind $`2esn` Starts With $@usn5 Starts With #usn7 As `4esn`"), + octest:ct_string("With Distinct .0[..'s_str'][..01234567] Order By {_usn4:01234567[Null..$_usn3],usn1:$123456789[12e12..9e0]} Desc,`1esn` Starts With 0X7 Starts With \"d_str\" Descending,9e1[$#usn8][$1000] Asc Skip Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`)[Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``)][Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 1e1 Contains 's_str' Contains `3esn`|$`2esn` Ends With `6esn`)] Limit _usn3 =~9e1 =~12e12 Unwind usn1 Ends With 0.0 As _usn3 Merge `6esn`=(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[@usn6:`1esn`|`3esn` *0X7..]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) On Match Set `4esn`+=$0 =~9e1 =~$`2esn`,_usn3 =Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] On Match Set Single(`5esn` In 0X7 In $#usn7 Where 123456789 =~$999).`5esn` =0[01234567..][0X0123456789ABCDEF..],All(`6esn` In $`6esn`[``..][Count(*)..]).`6esn` =1.e1 Starts With 9e12 Union Delete $@usn6 Ends With `1esn` Union All Remove [_usn3 In $`8esn` In @usn6,.e12 Ends With 0Xa Ends With 0xabc,.e1[12.0..]].#usn8,{_usn4:`5esn` Contains #usn7 Contains 9e12}.`1esn`!"), + octest:ct_string("With Distinct *,0xabc Is Null Is Null,usn2 =~$`` =~$`8esn` As `2esn` Skip 0 Ends With Count(*) Ends With False With *,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Where .e1[12.0..] Union Unwind 9e1 =~$_usn4 =~1.e1 As `7esn`"), + octest:ct_string("Match ((_usn3 :`8esn`{#usn8:False Starts With 0X7 Starts With 01234567})) Optional Match (:`7esn`{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8] Match `3esn`=((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})),((`5esn` :@usn5{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) Where 07 Is Null Union All Unwind .e0 Ends With $123456789 Ends With 0xabc As #usn7 Match `3esn`=(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0}),usn1=(({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) Where \"d_str\"[True..] Union Optional Match (`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Where #usn7[0.e0..]['s_str'..] Merge ((@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})) On Match Set #usn7+=`1esn` Remove None(_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`).`2esn`,(`5esn` :``:usn2)<-[?:`4esn`|@usn5{usn2:$@usn6[$`8esn`..][123456789..]}]->(:_usn4{`8esn`:01234567[Null..$_usn3]}).``?,Extract(usn2 In 7[12] Where .12[0X7..][12e12..]|0.0 Contains #usn7).`1esn`"), + octest:ct_string("Remove (_usn4 {_usn4:Null[..010][..1000],_usn3:.0 Is Null Is Null})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}).usn2 Union All Detach Delete $`1esn`[``][07],`2esn` Starts With .e1 Starts With 9e12,$`4esn` In 1.e1 In #usn7 Union Match (((`6esn` :#usn7:`5esn`)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(_usn4 :#usn7:`5esn`))),`1esn`=(`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})"), + octest:ct_string("Delete 0x0[usn1..usn1] Union All Return Distinct $`3esn`[..0xabc][..$7] As ``,`` Is Not Null Is Not Null As `6esn` Order By (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Ascending,123.654 In 12 Desc,$_usn3[_usn4..] Asc Skip 0[.12..1e1] Limit 01 Ends With .12 Ends With 07 Merge #usn8=(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1}) On Create Set Single(`5esn` In 0X7 In $#usn7 Where 123456789 =~$999).`5esn` =0[01234567..][0X0123456789ABCDEF..],All(`6esn` In $`6esn`[``..][Count(*)..]).`6esn` =1.e1 Starts With 9e12 With {#usn8:1.e1 Is Null Is Null,_usn4:0xabc In 123456789 In 0x0}[All(@usn6 In 010[`5esn`] Where 00[1.e1..])..],`5esn`(0[1e1][$usn1],Null =~`6esn`)[usn2(Distinct)..][Single(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7)..] As `1esn`,12.0 Starts With $`2esn` Starts With .e1 Order By [#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Ascending Skip `1esn`(#usn7[..07])[..[#usn8 In `7esn` Where 9e1 Starts With Count ( * )|`3esn` Starts With 9e0 Starts With usn1]] Limit _usn3 =~`2esn` =~0 Where #usn7[0.e0..]['s_str'..] Union All Optional Match (((:`1esn`:_usn4{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]})<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}))),_usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Where _usn4[`7esn`]"), + octest:ct_string("Unwind Count ( * ) Ends With $123456789 As ``"), + octest:ct_string("Match `2esn`=(`5esn` :``:usn2)<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2) Union Match `1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Union Optional Match `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}),(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}) Where `2esn` =~.e12 =~0X0123456789ABCDEF Merge `8esn`=((_usn3 :_usn4))"), + octest:ct_string("Merge usn2=((`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5)) On Create Set [$``[True]].#usn8! =[0.0 Is Not Null,$`4esn`[`8esn`],$123456789[12e12..9e0]] =~.e12 On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] Remove None(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null).`5esn` Unwind @usn6[123.654..][0x0..] As usn1 Union Return Distinct 01[$`7esn`..$@usn6] As `2esn`,(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]} Skip Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]) Is Not Null Is Not Null Return Distinct `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,0xabc In .12 In 0Xa Descending,.0 Contains .e12 Contains 0 Desc Unwind 0x0[usn1..usn1] As `1esn` Union All Unwind 0Xa =~False =~@usn5 As `8esn`"), + octest:ct_string("Optional Match (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Where $`7esn`[.e1][12.0] Union All Detach Delete `3esn` Starts With 9e0 Starts With usn1 Remove All(`6esn` In $`6esn`[``..][Count(*)..] Where 0X7['s_str'..][01..]).`2esn`!,(`3esn` {usn2:$usn2[`4esn`..9e12]})<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[_usn4?:@usn6|:`7esn`]->(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}).`4esn` Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] On Create Set `6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn1+=`4esn`[$_usn3..$`7esn`] Union All Return Distinct 12.e12 =~0X0123456789ABCDEF =~1.e1 As `6esn`,0.e0[..$7] As _usn3,usn1 Ends With 0.0 Skip usn2 =~$`` =~$`8esn` Limit (usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null Delete 07[_usn3..][`6esn`..] Unwind 9e12 =~@usn6 As usn1"), + octest:ct_string("With *,010 Is Not Null Is Not Null As `1esn`,0 =~1.e1 =~$#usn7 Order By Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] Ascending Skip $`5esn`[0X7..010][`7esn`..'s_str'] Where $#usn8[12.e12..`8esn`][12.0..0.0] Optional Match `2esn`=((`6esn` :#usn7:`5esn`)<-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]->(:#usn8:`1esn`$`7esn`)),((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(:`8esn`{``:$`1esn` =~999})) Union Return Distinct *,$`7esn`[0.12] Skip _usn4 Starts With 1000 Starts With $usn2"), + octest:ct_string("Unwind $`1esn` In .e0 As #usn7 Union Optional Match @usn6=(#usn7 {_usn4:1.e1[`8esn`]})<-[usn2{`2esn`:$12 Starts With $usn1}]->(:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]}) Where `6esn`[$1000][`3esn`] Union All Match usn1=(((:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[@usn6:`7esn`|:`2esn` *..07{`6esn`:$_usn4 Is Null Is Null,``:1e1 Ends With $`7esn` Ends With .0}]-(`5esn` :`3esn`{``:`` Is Null,`8esn`:$@usn6[$0..9e12][.e12..Null]}))),(`2esn` :`1esn`:_usn4)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}) Create @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) Merge ((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})) On Create Set `2esn`+=0X0123456789ABCDEF In .12,`1esn` =$`7esn` In False In $`1esn`"), + octest:ct_string("Merge ((@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]->(_usn4 )-[#usn7?:`7esn`|:`2esn` *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})) On Create Set #usn7 =[$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1],@usn6+=0.12[$0..$usn2] On Create Set `4esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1 =(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Detach Delete `7esn` Ends With $7 Ends With $@usn5,0X0123456789ABCDEF Is Not Null Is Not Null,All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1)[None(@usn6 In 010[`5esn`] Where 00[1.e1..])..[$12[$usn1..][Count(*)..],$@usn5 Contains 's_str' Contains \"d_str\"]][Extract(`3esn` In 9e1 Contains $999 Where 0e0 Starts With 999 Starts With `2esn`|9e1 Ends With Count(*) Ends With $7).._usn4(`1esn`[0.12..][@usn6..],#usn8 =~0.e0)] Detach Delete @usn6 Is Not Null Is Not Null,01 Contains usn2 Contains 0X0123456789ABCDEF,None(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])[Any(`3esn` In `2esn`[..01][..True] Where $`3esn`[..0xabc][..$7])][$#usn7]"), + octest:ct_string("Return usn2 =~$`` =~$`8esn` As `2esn`,'s_str'[0x0..1.e1] As `6esn`,$`5esn`[\"d_str\"..] As `5esn` Limit 01[07..][1.e1..] With Distinct $_usn3[$12] As #usn8,_usn4(Distinct usn2[07..][.0..]) Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]|$`2esn` Starts With `4esn` Starts With $usn1) Ends With Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Skip Single(#usn7 In $999 In 1e1 Where 07 In `6esn`) Is Null Is Null Limit .0 Contains .e12 Contains 0 Remove Extract(#usn7 In True Contains 's_str' Contains $usn1).#usn8!,#usn7().#usn7 Union Create ((`4esn` :`4esn`:`6esn`)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Optional Match (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Return *,$`5esn` Is Not Null,usn2 Contains $0 Contains .0 Order By 0.e0[$`4esn`..`2esn`] Descending,$123456789[12e12..9e0] Asc,$_usn3[_usn4..] Asc Skip $`7esn`[$_usn4][.e0] Limit Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..] Union All Remove {`5esn`:1.e1[`8esn`],`1esn`:.e0}.`1esn`,{`6esn`:12.e12 Is Not Null Is Not Null,`1esn`:#usn7[0.12..]}.`3esn`?,`6esn`(`1esn`[`3esn`..],01[..01234567][..$_usn3]).`1esn`? Unwind None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]) Ends With [_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4|0x0[0X7]] As usn1 Remove [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`8esn`[123456789..][$@usn5..]|#usn8 Is Not Null Is Not Null].#usn7"), + octest:ct_string("With *,12[``...e12] As _usn4,0X0123456789ABCDEF In $7 Order By 123.654 Starts With usn2 Starts With Count ( * ) Descending,01234567[Null..$_usn3] Asc Skip #usn8 Is Not Null Limit 9e12[_usn4..$`5esn`][_usn4...e1] Where 00[False..0e0]"), + octest:ct_string("Merge (((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[?:`8esn`*]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}))) Union All With Distinct 07[$_usn4][usn2] Order By `4esn` In 010 Asc,Single(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)[[07[_usn3..][`6esn`..],999[123.654..$usn2][Count ( * )..0x0]]..][Single(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])..] Descending Skip `` Is Not Null Is Not Null Where 9e12 Starts With 1e1"), + octest:ct_string("Merge `7esn`=(((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}))) On Create Set Single(`5esn` In 0X7 In $#usn7 Where 123456789 =~$999).`5esn` =0[01234567..][0X0123456789ABCDEF..],All(`6esn` In $`6esn`[``..][Count(*)..]).`6esn` =1.e1 Starts With 9e12 With Distinct 0.0[$usn2..] As ``,1e1[_usn3] As `3esn`,(:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Skip $`8esn`[999] Remove (:`1esn`:_usn4{`8esn`:#usn8 Is Null Is Null})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]})-[`2esn`?:@usn6|:`7esn`]->(#usn8 :@usn5{_usn4:$#usn7 Contains $`7esn` Contains .e12}).`7esn`? Union Return 01234567 In 123456789 In 12 As usn1,Count ( * ) In 123456789 In $@usn5 As _usn3 Order By #usn7 In 0.e0 Desc Skip [$#usn7 Ends With 's_str' Ends With 0X7,12e12 Ends With 0.0 Ends With usn1][Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $`6esn`[``..][Count(*)..])..Extract(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1|``[$`3esn`])][(#usn8 :`5esn`)<-[usn2?:`3esn` *00..0Xa]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})..{_usn3:_usn4 Is Null Is Null}] Union All Create (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}),`6esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) With Distinct $#usn8 Ends With `` Ends With 999 As `5esn`,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]) Is Not Null Is Not Null As _usn3 Order By _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..] Desc,{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Is Not Null Desc,9e0 Ends With $#usn8 Desc Limit 12.0 Starts With $`2esn` Starts With .e1 Where 9e1 Ends With Count(*) Ends With $7"), + octest:ct_string("Merge ((:@usn6)) On Create Set {`3esn`:07[_usn3..][`6esn`..],@usn6:``[usn1][`5esn`]}.@usn6 =Count(*)[``..#usn8][`3esn`..0xabc] On Create Set #usn7+=`6esn`[$`8esn`][9e1] Detach Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),{@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Union Return 0X7[`2esn`..] Order By 0[@usn5..$#usn7] Ascending Remove `8esn`:@usn5,Single(#usn7 In 9e0[$1000] Where $1000 Is Not Null).`5esn` Match (@usn6 :`4esn`:`6esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`2esn`?:`6esn`|:#usn8{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`}]-(_usn3 {_usn3:0.12 Starts With $`8esn` Starts With @usn5}),usn1=((:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[`2esn`?:usn1|`4esn` *00..0Xa]->({usn2:_usn3[`2esn`..0X7][0.e0..$`3esn`]}))"), + octest:ct_string("With $usn1,`1esn` Contains $999 Contains 0.0 As @usn6,$`6esn`[0e0..][010..] Order By 12.0 =~@usn6 =~$`2esn` Ascending Skip 123.654 In $999 In _usn3 Union All Unwind (`1esn` :`3esn`{#usn7:12[..0e0][...e1]})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})[(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null)][{`2esn`:$999 Ends With .e0}..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]] As `8esn` Return *,0Xa[Count(*)..],[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,0xabc In .12 In 0Xa Descending,.0 Contains .e12 Contains 0 Desc Skip All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1)[None(@usn6 In 010[`5esn`] Where 00[1.e1..])..[$12[$usn1..][Count(*)..],$@usn5 Contains 's_str' Contains \"d_str\"]][Extract(`3esn` In 9e1 Contains $999 Where 0e0 Starts With 999 Starts With `2esn`|9e1 Ends With Count(*) Ends With $7).._usn4(`1esn`[0.12..][@usn6..],#usn8 =~0.e0)] Limit `1esn` Starts With 9e1 Merge `4esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]})))"), + octest:ct_string("Remove None(_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1).``?,[@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2].`1esn` Return Distinct `1esn`[0Xa] As usn1,$`` Contains $`2esn` Contains $usn2 Order By $usn1 Ends With _usn4 Ends With `2esn` Descending,$``[..$#usn7][..`6esn`] Asc Skip 07[999]"), + octest:ct_string("Remove Any(@usn6 In False Contains 0 Contains $`6esn` Where $`5esn`[..00]).#usn7?,[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1]._usn3,Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|_usn3[`2esn`..0X7][0.e0..$`3esn`]).`7esn`? Remove {``:.e12 Ends With 0Xa Ends With 0xabc}.usn2? With Distinct 010 Starts With $`` Starts With 0e0,$#usn8 Ends With `` Ends With 999 As _usn3,$@usn5 Ends With @usn5 Ends With 0xabc Skip None(#usn7 In $999 In 1e1 Where 01234567[Null..$_usn3]) Ends With Extract(#usn8 In `7esn` Where $`5esn` Is Not Null Is Not Null) Limit `6esn` In .12 Where $``[7] Union Merge `7esn`=(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789})"), + octest:ct_string("Return Distinct None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,9e1[@usn5][$usn1] As `5esn`,`4esn` Starts With 0e0 As `7esn` Order By 1.e1 Contains `6esn` Contains 0.e0 Descending,07[..07][..0X7] Descending Limit Single(_usn4 In 12e12 In 123456789 Where 0e0 =~7 =~12.0) Starts With Extract(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]|9e12 =~@usn6) With .e1 In 0,Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])[[00[12..$`6esn`],$`4esn`['s_str'..]]..] Order By (:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Is Not Null Descending"), + octest:ct_string("Detach Delete 12.0[0X0123456789ABCDEF..] Optional Match ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)),((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Union Match (`3esn` :``:usn2)<-[?:`4esn`|@usn5 *1000..0X0123456789ABCDEF{`8esn`:0x0[0.0],`8esn`:12.e12 Starts With \"d_str\" Starts With 9e1}]-(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})"), + octest:ct_string("Merge ((usn2 :``:usn2)<-[usn1?:`1esn`|`3esn`{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->(:#usn8:`1esn`{_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})<-[`1esn`?:usn1|`4esn` *00..0Xa]-(`6esn` )) On Create Set None(`8esn` In 123456789 =~@usn6 Where Count(*) Ends With usn1).`7esn`! =All(usn2 In 7[12] Where #usn8 Is Null Is Null)[[usn2 In 7[12] Where #usn7[.e0]]..]"), + octest:ct_string("Return #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Order By `6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] Desc Limit $_usn4[$_usn4] Union All With @usn6 Is Not Null Is Not Null,(@usn6 :`8esn`)<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`}) Ends With #usn8(Distinct 12.e12 Contains #usn7 Contains $_usn4,01[`3esn`..][Count(*)..]) Ends With [`5esn`[..True][..0.e0],12 In $usn1 In 7,$`8esn`[123456789..][$@usn5..]] Skip [_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) Limit {@usn6:$`3esn`[.e1][_usn4]}[`8esn`(Distinct $``[True])..] Union Remove [$@usn5 In 12e12 In 01,$_usn4[..$_usn4][..`7esn`]].`3esn`?,[$_usn4 =~$`1esn` =~`2esn`,#usn7[`8esn`..usn1][$999..`7esn`],$@usn5[..0xabc][..$`3esn`]].`8esn`!"), + octest:ct_string("Remove All(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01).usn2! Create (((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Union All Return Distinct *,`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[12[..0e0][...e1]]..Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $123456789 Contains $#usn8 Contains ``)] As #usn8 Order By Extract(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With [#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4] Ends With [False[$`4esn`..],$#usn7[..0Xa]] Asc,@usn6[..$@usn5] Ascending Limit `1esn`[usn1][0xabc] Delete `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Is Null Return 0e0[``],0X7 In $#usn7 Order By Extract(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1|``[$`3esn`])[(:`6esn`:_usn3$usn2)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)..All(_usn3 In _usn3 Contains _usn4 Contains $@usn5)] Desc,`5esn`[$`7esn`..$@usn5] Ascending"), + octest:ct_string("Return Distinct 0.e0 Is Not Null Is Not Null As _usn4,0X0123456789ABCDEF In $usn2 In `4esn`,$usn1 Is Not Null Is Not Null Order By Count(*) Starts With usn2 Starts With `7esn` Desc"), + octest:ct_string("Create ((:`3esn`{`1esn`:`7esn`,`8esn`:12e12 =~$`7esn`})-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})),(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Union With *,{`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Order By [0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]][{usn2:$@usn6 Ends With `1esn`,_usn3:`7esn`}..][{@usn6:1e1 Is Not Null Is Not Null,`8esn`:$`1esn` Starts With $`4esn` Starts With $_usn3}..] Desc,0.0[usn1..] Desc Delete 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2],$`3esn` Ends With 1000,[$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..]"), + octest:ct_string("Unwind $`4esn`[..$`8esn`][..Null] As `7esn`"), + octest:ct_string("Delete ``[$`1esn`],All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] With Distinct usn2 =~$`` =~$`8esn` As `2esn`,'s_str'[0x0..1.e1] As `6esn`,$`5esn`[\"d_str\"..] As `5esn` Order By 1.e1 Contains `6esn` Contains 0.e0 Descending,07[..07][..0X7] Descending Skip usn1[False..] Limit `6esn`[$1000][`3esn`] Where 0x0[0X7] Union Create (_usn3 :`4esn`:`6esn`)-[?:@usn6|:`7esn`]-(:#usn8:`1esn`)-[_usn3?]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Remove (_usn4 {`7esn`:#usn7[0.e0..]['s_str'..]})-[usn2{``:$`1esn` =~999}]-(:usn1:`3esn`{``:$#usn7 In $@usn5 In $`1esn`,#usn7:999[@usn5..][Null..]}).`2esn` Union Create `2esn`=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}),(({@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`})<-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->({usn2:$`2esn` Is Null,#usn8:.0 Is Null Is Null}))"), + octest:ct_string("Optional Match #usn8=((`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})) Merge ((($#usn8)<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]-(`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))) Merge (`5esn` :`4esn`:`6esn`)<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]}) On Create Set `4esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1 =(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Union Optional Match (`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-({`1esn`:#usn7[0]}),((:`4esn`:`6esn`{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})) Delete {#usn8:.0 Is Null Is Null}[..(_usn3 :@usn6{usn2:0Xa =~False =~@usn5,`3esn`:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})][..{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}],Count(*) Is Not Null Is Not Null"), + octest:ct_string("Match _usn3=((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7 *01..123456789]->(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})),``=((:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[`5esn`:#usn7|@usn5]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) Where 0x0[Count(*)..@usn6][Count(*)..0Xa] Remove Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12).`5esn`?,_usn3(0[$`5esn`],`2esn`[..$_usn4][...12]).`2esn`?,(usn1 :@usn6)<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})<-[?{`5esn`:123.654[$0..0X7][Null..#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]}]-(usn2 :`7esn`).#usn8 Create _usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})))"), + octest:ct_string("Return Distinct *,`4esn` Ends With 12 Ends With .12 As usn2 Skip `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] Limit Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``) In Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1) Detach Delete Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null) Is Not Null Is Not Null,010 Starts With $`` Starts With 0e0 Union Create #usn8=({#usn7:12e12 In $`5esn`}) Return *,Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null As usn1,00 Contains Count ( * ) Contains 0x0 As `5esn` Limit .e0 Unwind $`5esn` =~$`8esn` =~usn2 As `1esn` Union Match (`8esn` {usn1:0e0 =~7 =~12.0,`7esn`:usn2 Starts With .0})<-[:_usn4]->(_usn4 {usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}),(@usn5 :`1esn`:_usn4)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})-[? *01..123456789]-(_usn3 :`6esn`:_usn3) Where $0 =~9e1 =~$`2esn`"), + octest:ct_string("Optional Match ((@usn5 {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})) Remove Any(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`).`1esn`,Single(`3esn` In `2esn`[..01][..True]).``,{usn1:'s_str'[0..]}._usn3? With *,00[12..$`6esn`] As _usn4,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] As `3esn` Skip `8esn` Contains `2esn` Contains .0 Limit Null[.12..12e12] Where 9e12 Starts With 1e1 Union All Match ((`4esn` :`4esn`:`6esn`)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Where usn2 Contains $0 Contains .0 Merge ((`5esn` :@usn5{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) On Match Set `` =Null[..010][..1000] On Create Set #usn8 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..])"), + octest:ct_string("Match `5esn`=(`3esn` :_usn4) Remove [$123456789 Starts With 0.12 Starts With Null].`4esn`!,(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`}).#usn8 Union Return Distinct *,0x0[12e12..$`7esn`],.e1 In 0 Limit {`1esn`:$`2esn` Contains Count(*)}[[$`4esn`[0..][999..],@usn5 Contains #usn8 Contains 12.0]..[@usn6 In 010[`5esn`] Where 0e0[``..$1000][$7..12.e12]|@usn6[`1esn`..]]]"), + octest:ct_string("Create (#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}),`8esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Unwind 999 Contains 0 Contains $`5esn` As @usn5"), + octest:ct_string("Create `3esn`=((:_usn3{_usn3:$`3esn`[.e1][_usn4]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:`5esn`)<-[ *01234567..]->(#usn8 :`8esn`)) Return `3esn`[...e1] Skip 0 Is Not Null Return Distinct *,$999[0Xa..][9e1..] As `4esn` Skip $usn2 Ends With $123456789 Limit @usn6 Contains .12 Contains $usn1"), + octest:ct_string("With Distinct *,`2esn` In 9e0 In 7,$7 Starts With $`4esn` As _usn4 Skip Extract(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0) Ends With `2esn`(Distinct 123.654[`4esn`..12],_usn3[`2esn`..0X7][0.e0..$`3esn`]) Ends With [`5esn` In 0X7 In $#usn7 Where 12e12 =~1e1|0e0 =~0Xa =~$999] Where 9e0[$1000] Unwind [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null) As `7esn` Return 999[12e12..$_usn4] Order By Count(*) In #usn8 In \"d_str\" Ascending,[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null) Descending,9e12 =~@usn6 Desc Skip [#usn7 In 9e0[$1000] Where `6esn`[$1000][`3esn`]][Extract(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1|010 Starts With $`` Starts With 0e0)..] Union Unwind 1000[..$1000] As `` Return Distinct @usn5[01][@usn5],9e0 Contains $12 Contains `3esn` As #usn8,{`4esn`:0.0[usn1..],`7esn`:12.0[$1000..][#usn7..]}[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7)..[usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]]][[12.e12[..$`6esn`],999 In #usn8 In $``]..Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1)] Order By Null Ends With _usn4 Ends With 0.0 Asc Skip (`1esn` $`4esn`)-[@usn6?:`7esn`|:`2esn`]-({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]}) =~Filter(`3esn` In 9e1 Contains $999 Where 12.0 Is Null Is Null) =~[0xabc In Null] With Distinct usn2 =~$`` =~$`8esn` As `2esn`,'s_str'[0x0..1.e1] As `6esn`,$`5esn`[\"d_str\"..] As `5esn` Order By 1.e1 Contains `6esn` Contains 0.e0 Descending,07[..07][..0X7] Descending Skip usn1[False..] Limit `6esn`[$1000][`3esn`] Where 0x0[0X7] Union Return *,1e1 Is Not Null Is Not Null"), + octest:ct_string("Return *,00[12..$`6esn`] As _usn4,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] As `3esn` Skip `8esn` Contains `2esn` Contains .0 Limit Null[.12..12e12] Return Distinct *,`` =~.12 As #usn7 Order By Extract(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With [#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4] Ends With [False[$`4esn`..],$#usn7[..0Xa]] Asc,@usn6[..$@usn5] Ascending Skip \"d_str\" Is Null Is Null Limit `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Is Null Optional Match usn2=(`6esn` {`2esn`:$`3esn` Ends With 01234567}) Where usn1 Contains 010 Union Unwind $@usn6[_usn3..][$999..] As `4esn` Optional Match `8esn`=(:`4esn`:`6esn`{usn2:$`8esn` Is Not Null Is Not Null})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Where $999 Ends With .e0"), + octest:ct_string("Merge ((:`3esn`{@usn5:$`5esn` In _usn3 In 0.0})-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]->(:@usn5{#usn7:12e12 In $`5esn`})-[@usn5 *0X7..]->(`` $`6esn`)) On Match Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] With *,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As `8esn` Order By All(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null) Descending,0xabc In .12 In 0Xa Desc Detach Delete 0.12 Contains False Contains 1.e1 Union Return 0.e0 Starts With .0 Starts With 123456789,$7[01..$123456789][#usn7..12.0],(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`) As `` Order By True Ends With $_usn3 Ends With 12 Desc,$`6esn` Starts With .e12 Starts With $`1esn` Ascending,{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]} Contains ({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}) Contains None(#usn8 In `7esn`) Descending Detach Delete Extract(`6esn` In $`6esn`[``..][Count(*)..] Where $@usn5 Starts With `5esn` Starts With 01234567|0.e0[..$7]) Is Null Is Null Merge `7esn`=((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )) On Create Set `5esn`+=_usn4[$usn1..01234567][123.654..`5esn`],`2esn`+=#usn7 In 0.e0 On Match Set Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]|$``[..\"d_str\"][..$#usn8]).@usn6 =[$usn1[`2esn`..][$`2esn`..]][(`3esn` :usn2)-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})..`2esn`(Distinct $@usn6 Is Not Null Is Not Null,Count ( * ) Ends With $123456789)],None(#usn8 In `7esn` Where ``[7.._usn3]).@usn6? =`6esn`,Any(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])._usn4! =`` Is Null Union Merge #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}) On Match Set _usn3:`7esn` On Create Set Single(@usn6 In 010[`5esn`] Where 123.654).`6esn`? =0.e0[0X0123456789ABCDEF..],(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}).`3esn`? =999[..`1esn`][..07],[@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1].`6esn` =`7esn` Starts With @usn5 Merge ((_usn3 :usn2)) On Match Set Any(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0).`5esn`! =.e12 Ends With 0Xa Ends With 0xabc On Match Set `5esn`(Distinct .12[123.654..]).`3esn` =01234567 In 123456789 In 12,`6esn` =[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null Return 0.e0 =~00 As `3esn`,(`2esn` {`7esn`:999 In 0e0})<-[`8esn`?:`2esn`|`4esn` *01..123456789{`8esn`:$`4esn` Is Null Is Null,usn1:$1000 Starts With $`3esn` Starts With 0.e0}]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[ *0X7..{#usn8:.e0 Contains $#usn8}]->(`2esn` :`6esn`:_usn3) In (`8esn` :`6esn`:_usn3)-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(_usn4 {_usn4:123.654 In 12})-[?:#usn8|:`3esn` *0x0..]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) In {_usn4:.e0 Contains $#usn8,@usn6:1000[12e12][`5esn`]} As ``,#usn8[`6esn`..][$``..] As `2esn`"), + octest:ct_string("With Distinct *,$#usn7[..0Xa] As #usn8,0X7[`2esn`..] As `5esn` Order By $7[999][usn1] Asc Union All Merge (:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}) On Match Set [12e12 =~1e1,0X7[..$`8esn`]].`7esn` =1e1 Ends With $`2esn`,`8esn`+=01[$`7esn`..$@usn6] On Create Set usn1+=Extract(@usn5 In 's_str'[0..] Where 12 In $usn1 In 7) =~All(`3esn` In `2esn`[..01][..True] Where $`7esn`[.e1][12.0]),@usn6+=[$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][None(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..])..] Match (((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Where .0 Is Null Is Null Union All Unwind 07[False] As @usn5 Remove {_usn4:$``[True],`3esn`:$#usn8[@usn6..]}.@usn5!,[$@usn6[00],$@usn5 In $`6esn` In 12e12].`6esn`?,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null Is Not Null|1.e1 =~.12).usn2! Return Distinct 12 Starts With True Starts With 12e12 As _usn4 Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc"), + octest:ct_string("Unwind `8esn`[0.e0..] As #usn7"), + octest:ct_string("With Distinct $`1esn`[Null][True] As usn2,{`6esn`:$#usn7 =~`2esn`,`4esn`:True[$_usn3..]}[(:`1esn`:_usn4{#usn8:00[12..$`6esn`],@usn6:usn1[..$@usn6][..00]})-[`2esn`:`4esn`|@usn5 *01234567..]-(:`5esn`{_usn4:12 Starts With #usn7 Starts With 0Xa,#usn7:999 Is Null Is Null})-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})..Filter(@usn6 In 010[`5esn`] Where `7esn`[1e1])][Any(@usn6 In 010[`5esn`] Where False[$`4esn`..])..Extract(@usn5 In 's_str'[0..] Where `7esn` In 010 In usn1)] Limit {`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..] Return Distinct 0e0 Ends With 07 Ends With $`8esn` As `1esn`,0[01234567..][0X0123456789ABCDEF..] Order By (`1esn` :`3esn`{#usn7:12[..0e0][...e1]})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})[(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null)][{`2esn`:$999 Ends With .e0}..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]] Ascending,1.e1[..`4esn`] Ascending,0xabc Is Not Null Is Not Null Descending Limit _usn4[.12..$usn2][$_usn3..123.654] Union All Unwind 00 Ends With $`1esn` Ends With `7esn` As `8esn` Merge ((:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})) On Create Set usn1 =[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]][Any(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..])..Single(usn2 In False[$usn1][0x0] Where 9e1 Is Not Null Is Not Null)],`6esn` =12.e12 =~0X0123456789ABCDEF =~1.e1 With $usn1,`1esn` Contains $999 Contains 0.0 As @usn6,$`6esn`[0e0..][010..] Order By 0.0 Ends With $`7esn` Descending,`3esn`[7..0.e0][0.0..123456789] Asc Where ``[9e12][$999] Union Return Distinct *,$`3esn`[.e1][_usn4] Order By 12[None(#usn7 In 9e1[$`1esn`..] Where usn2 Is Not Null)..`5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12])][`5esn`(`2esn`[..01][..True])..(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})<-[? *7..]-(#usn7 :``:usn2)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})] Descending With Distinct usn2 =~$`` =~$`8esn` As `2esn`,'s_str'[0x0..1.e1] As `6esn`,$`5esn`[\"d_str\"..] As `5esn` Limit 01[07..][1.e1..]"), + octest:ct_string("Unwind 9e1[`1esn`..0][999..1e1] As `1esn` Unwind {usn2:$@usn6[00]}[..[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1]][..[12e12 Starts With $0 Starts With $`2esn`,$_usn3 Is Null]] As `5esn` Optional Match #usn8=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}),`2esn`=(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Union All Optional Match @usn6=((#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})),((`1esn` :usn2)) Where $usn2 Is Not Null Is Not Null Delete 9e0[$`8esn`] Unwind (:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] As #usn7"), + octest:ct_string("Merge _usn3=((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7 *01..123456789]->(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})) On Create Set (:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(usn1 :`7esn`).`4esn` =1.e1[$`3esn`][0Xa],(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})<-[`5esn`?:@usn5|_usn3{``:0.0 =~9e0 =~$0}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]}).usn2 =$`4esn` Starts With 0 Starts With `7esn`,usn2+=`2esn`[..01][..True] Union All Remove Filter(`3esn` In 9e1 Contains $999 Where 0Xa Ends With $`3esn` Ends With $1000).`4esn`,`1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]).#usn8!,Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 7[0e0..]).`8esn`! With Distinct `7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..],$`6esn`[0e0..][010..] Skip Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3) Limit 1.e1 Starts With 9e12 Union All Unwind Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)[(`` :`5esn`{@usn5:123456789 =~@usn6})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`7esn` {``:9e1 Contains $999,``:$usn2[True..0X0123456789ABCDEF]}).._usn3(Distinct 0x0 Contains $`6esn` Contains `4esn`,usn2[1.e1])][(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})..[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|9e1 Is Null]] As `4esn` Unwind [$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) As #usn8"), + octest:ct_string("Match (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}))) Where 010 Starts With 0 Starts With 0.0 Unwind usn2[`8esn`..][0X0123456789ABCDEF..] As `5esn`"), + octest:ct_string("Return *,`5esn`(0[1e1][$usn1],Null =~`6esn`)[usn2(Distinct)..][Single(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7)..] As `1esn` Order By `3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] Desc Merge @usn6=((#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})) On Match Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null On Match Set Extract(@usn5 In 's_str'[0..] Where @usn6 In .12 In `3esn`|$@usn6[00]).`8esn`? =9e0 Contains $12 Contains `3esn`,_usn4+=0x0[@usn5][$#usn8],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null Unwind (#usn7 )<-[`5esn`?:@usn5|_usn3{``:0.0 =~9e0 =~$0}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]}) Contains Filter(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null) As `` Union All With $@usn6[12.0][12.0] Skip `7esn`[$usn2..][$123456789..] Optional Match `3esn`=(`` {`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']})<-[`6esn`? *00..0Xa]->(_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}),usn1=((`1esn` {``:0.0 Is Not Null,`1esn`:``[$`3esn`]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})) Where 01234567[\"d_str\"..`4esn`] Unwind $`1esn` In .e0 As #usn8"), + octest:ct_string("With *,#usn8 Is Not Null Skip usn1 Ends With 9e0 Ends With 9e0 Limit `8esn` Contains Count(*) Contains $#usn7"), + octest:ct_string("Unwind \"d_str\"[#usn8] As #usn7 Return *,$_usn4[usn2..] As @usn5,@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])] Order By Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[..[#usn7 In True Contains 's_str' Contains $usn1 Where Count(*) Ends With usn1]][..Filter(usn2 In 7[12] Where #usn7[0.e0..]['s_str'..])] Ascending,{@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Asc,usn2[1.e1] Descending Delete `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Is Null"), + octest:ct_string("Match (:usn2)<-[? *01..123456789{`8esn`:usn2 =~7,@usn5:`6esn` Ends With _usn4 Ends With False}]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`4esn`:usn2]->(`3esn` :_usn4),(({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn4?:@usn6|:`7esn`]-({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn3?:_usn3|:`7esn`]->(`3esn` {`8esn`:`7esn` In 010 In usn1})) Where 00 Ends With `` Ends With 12.e12 Match (((`6esn` :#usn7:`5esn`)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(_usn4 :#usn7:`5esn`))),`1esn`=(`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) Create (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3),(@usn6 :`4esn`:`6esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`2esn`?:`6esn`|:#usn8{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`}]-(_usn3 {_usn3:0.12 Starts With $`8esn` Starts With @usn5}) Union With Distinct (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Unwind Extract(@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1) Is Not Null As `1esn` Unwind Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[{`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}] As #usn8 Union All Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] On Create Set `6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn1+=`4esn`[$_usn3..$`7esn`]"), + octest:ct_string("Create ((#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})),usn2=((_usn3 :_usn4)-[`3esn`:`2esn`|`4esn`]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[:@usn6|:`7esn` *01..123456789]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07})) Unwind 12 Is Not Null As `6esn` Unwind `8esn` Contains Count(*) Contains $#usn7 As _usn4 Union Return *,$@usn6 Ends With `1esn` Order By $999 Is Null Is Null Descending,0e0 =~7 =~12.0 Asc Skip `` =~.12 Union Remove Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|@usn5 Contains 9e0)._usn4? Create ((#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[`7esn`? *0Xa{@usn5:123.654 Is Not Null}]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`}))"), + octest:ct_string("Delete 0X0123456789ABCDEF[..0xabc],All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where False[$usn1][0x0]) In [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null|9e12[9e1]] In [12.0 Is Null,$_usn4[..$_usn4][..`7esn`]],$`4esn` Starts With 0 Starts With `7esn` Merge ((`` {#usn7:#usn8 Is Not Null Is Not Null})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`2esn` :@usn5)<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Union Return Distinct *,`5esn`(0[1e1][$usn1],Null =~`6esn`)[usn2(Distinct)..][Single(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7)..] As `1esn` Order By `3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] Desc Delete count($`4esn`[`8esn`],`4esn` Is Not Null Is Not Null) =~Filter(@usn5 In 's_str'[0..] Where _usn3[0x0]),9e1[$`1esn`..],$usn2[`2esn`..] Unwind Extract(@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1) Is Not Null As `1esn` Union All Create @usn6=((usn2 {`5esn`:$@usn5 In 12e12 In 01})-[`8esn`:#usn7|@usn5 *00..0Xa]-(_usn3 {usn1:0x0 Starts With $`6esn`})),`2esn`=((#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]-(usn2 :_usn4))"), + octest:ct_string("Detach Delete Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`) Create _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),(((`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})<-[:`2esn`|`4esn` *0X0123456789ABCDEF..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(@usn6 :`2esn`{`4esn`:$999[0Xa..][9e1..]}))) Merge ((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) On Create Set `5esn` =$1000[$`4esn`..False],`6esn` =[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`],`2esn` =12.0 Is Null"), + octest:ct_string("With *,9e12 =~@usn6,`4esn` Contains 9e0 Order By 1000[..$1000] Descending Skip Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Limit {``:123.654 In $`7esn`}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..None(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6 =~#usn7 =~True)] Where $`` Starts With $1000 Starts With @usn6 With 12.0 Ends With `2esn` Order By 0e0 =~7 =~12.0 Ascending,0Xa[Count(*)..] Ascending,7 Is Not Null Descending Skip $@usn6 Ends With 123456789 Ends With 12.0 Limit Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Where usn1 In `` Return Distinct $@usn6 Ends With 12.e12 Ends With @usn5 As usn2,``[usn1][`5esn`],`7esn`[..$`6esn`] Order By $@usn6 In @usn6 In 1e1 Desc,.e1[..$`3esn`][..01] Desc Limit Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null"), + octest:ct_string("Optional Match (:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})<-[`7esn`:`4esn`|@usn5 *12..]->({`4esn`:.e1[..$`3esn`][..01]}),_usn4=((#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[`5esn`? *01234567..{`3esn`:usn2[`8esn`..][0X0123456789ABCDEF..],_usn3:$@usn6 In @usn6 In 1e1}]-(usn1 {``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})) Where True[..#usn8] With [.e12 Is Null Is Null] Starts With `5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12]) Starts With None(`8esn` In 123456789 =~@usn6 Where `7esn`[$usn2..][$123456789..]),9e1[usn1..0x0][12.e12..12.0] As usn1,Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3) As `7esn` Order By [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[$usn1..][Count(*)..]|0e0 =~7 =~12.0] Is Null Is Null Descending,@usn5[0..] Ascending Skip 0.0[..Count ( * )][..`1esn`] Where 12e12 In $`5esn` Union Detach Delete 9e0[$`8esn`],`5esn` Contains #usn7 Contains 9e12,12 Is Null Match @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Where 7[0e0..] Detach Delete (`4esn` :#usn7:`5esn`{_usn4:0Xa Ends With $`3esn` Ends With $1000})-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})[[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]|`1esn`[0.12..][@usn6..]]..][{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}..],07 Contains `3esn` Contains `7esn`,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)"), + octest:ct_string("Create (((`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})<-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Remove Extract(#usn8 In `7esn` Where 9e12[$`5esn`..$123456789]|`1esn` Starts With 0xabc Starts With $usn2).`5esn`,{@usn6:0e0 =~7 =~12.0}._usn3! With *,All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],12 In $usn1 In 7 As `8esn` Skip None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1) Limit $@usn5 Starts With .e1 Where usn1 Is Null Is Null Union All With $999[0Xa..][9e1..] As `4esn` Skip [#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Where 1000 Ends With `7esn`"), + octest:ct_string("Unwind `8esn`[..$#usn8] As @usn6 Union All Remove All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $usn1 Ends With _usn4 Ends With `2esn`).`8esn`!,[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|1.e1 In 1000 In _usn3].`2esn`?"), + octest:ct_string("Merge (`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]}) On Create Set usn1+={_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]} Contains ({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}) Contains None(#usn8 In `7esn`) Unwind usn2[..$usn1][..$#usn8] As `` Union Remove {@usn6:0e0 =~7 =~12.0}._usn3!,`3esn`:_usn3 Optional Match ``=(_usn3 :`4esn`:`6esn`)-[?:@usn6|:`7esn`]-(:#usn8:`1esn`)-[_usn3?]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}),#usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) Return Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],010 Is Null Is Null As #usn8,All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] As `8esn` Order By $_usn3[_usn4..] Asc,0.12 Is Null Is Null Desc,`6esn` Ends With _usn4 Ends With False Ascending Skip 1.e1 =~.12 Limit `1esn`[$@usn6][07] Union All Optional Match ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)) Merge ((usn2 {`5esn`:$@usn5 In 12e12 In 01})-[`8esn`:#usn7|@usn5 *00..0Xa]-(_usn3 {usn1:0x0 Starts With $`6esn`})) Remove Filter(`3esn` In `2esn`[..01][..True] Where #usn7 Starts With $123456789 Starts With 12e12).`8esn`?,@usn5:`6esn`:_usn3,#usn7:@usn6"), + octest:ct_string("Match (:`7esn`{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]}) Where .0[..'s_str'][..01234567] Unwind None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]) Is Null As `8esn` Union Remove {`5esn`:01234567[\"d_str\"..`4esn`]}.`3esn`? Return *,$`8esn`[999] As @usn5,00 Ends With `` Ends With 12.e12 Skip All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] Optional Match usn2=((usn1 {_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})),({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) Where .e1[usn2..$_usn3][.0..$#usn7]"), + octest:ct_string("With Distinct $usn2[`5esn`..][01234567..] As #usn8 Skip $`6esn`[1.e1][$_usn3] Limit False[$`4esn`..] Delete 12[..$999][..$`2esn`],Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])] Remove None(@usn5 In 's_str'[0..] Where 0.e0).`4esn`,{usn1:0[1e1][$usn1],``:`1esn`[`3esn`..]}.`6esn`! Union All Merge (@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) Merge (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}) On Match Set #usn7+=[#usn8 In `7esn` Where usn2[07..][.0..]|$usn1 Ends With _usn4 Ends With `2esn`] Contains (_usn3 {#usn7:1000[12e12][`5esn`]})-[`3esn`?:`3esn`]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0}) Contains Extract(`3esn` In `2esn`[..01][..True] Where usn1 In ``),@usn6:`8esn`,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.0 Starts With $`2esn` Starts With .e1).`8esn`? =$`3esn`[$_usn4..0Xa]"), + octest:ct_string("Remove All(@usn5 In 's_str'[0..] Where 12e12 Is Not Null)._usn3!,`3esn`(Distinct $@usn5 In $`6esn` In 12e12).`8esn`! Remove `5esn`($`4esn` In 1.e1 In #usn7,0Xa[Count(*)..]).`5esn`,(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`).`3esn`,None(#usn8 In `7esn` Where 9e12[..1e1][..'s_str'])._usn4? Union Create (@usn6 {`4esn`:9e1 Contains 12}) Return *,0X7[`2esn`..] As `6esn`,$`1esn` Contains 1e1 Contains @usn6 As `3esn` Order By $_usn3[_usn4..] Descending,9e1 Contains $999 Ascending Unwind 07[999] As @usn6 Union All Unwind 0x0[``..] As usn1"), + octest:ct_string("With Distinct 0.e0['s_str'..][01234567..] As `1esn`,None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,.0[$``..0X7] Skip usn2 =~$`` =~$`8esn` With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Where 12.e12 Ends With $`` Unwind (@usn6 :`8esn`)<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`}) Ends With #usn8(Distinct 12.e12 Contains #usn7 Contains $_usn4,01[`3esn`..][Count(*)..]) Ends With [`5esn`[..True][..0.e0],12 In $usn1 In 7,$`8esn`[123456789..][$@usn5..]] As `6esn`"), + octest:ct_string("Merge _usn3=(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[`4esn`:usn2]->(`3esn` :_usn4) On Match Set `8esn` =[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] With Distinct #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Order By Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[..[#usn7 In True Contains 's_str' Contains $usn1 Where Count(*) Ends With usn1]][..Filter(usn2 In 7[12] Where #usn7[0.e0..]['s_str'..])] Ascending,{@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Asc,usn2[1.e1] Descending Skip $``[01234567..][.0..] With Distinct *,$`1esn` Starts With Count(*) Limit `7esn`[..$`6esn`]"), + octest:ct_string("Optional Match (((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))),(_usn4 :#usn7:`5esn`)-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-(`5esn` :#usn8:`1esn`) Where .e0[999..1000][1e1..$`8esn`] Match ((:@usn6)) Where 9e1[_usn3] Union All Merge ((_usn3 :`8esn`{#usn8:False Starts With 0X7 Starts With 01234567})<-[`1esn`?:@usn6|:`7esn`]-(`` {`8esn`:$`6esn`[``..][Count(*)..]})) On Match Set #usn7 =9e1[`1esn`..0][999..1e1],All(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True]).`1esn`? =$usn2[`2esn`..$`1esn`],Single(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1).#usn7 =All(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null) Create usn2=((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`))"), + octest:ct_string("Merge ``=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})) On Create Set #usn8 =$_usn4[$`6esn`..]"), + octest:ct_string("Unwind $#usn7 Ends With \"d_str\" As `7esn` Optional Match ((`1esn` {_usn4:`8esn` Is Null})),`2esn`=(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Where usn2[1.e1] Remove {@usn5:07 Ends With 9e12 Ends With `2esn`}.`2esn`!,{usn2:_usn3[`2esn`..0X7][0.e0..$`3esn`]}.`2esn` Union All Create (((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}))),`7esn`=(({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(usn1 :_usn3{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})) Return Distinct $#usn7 =~`2esn` As `4esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc Skip usn2 Is Null Is Null Limit @usn6 Is Not Null Is Not Null Union All Return Distinct *,Null[..010][..1000] As #usn7,9e12 Ends With 12e12 Ends With 12 As `` Order By 1000[$7..][_usn4..] Desc Skip $`3esn` Ends With 01234567 Limit 7 Ends With .12 Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Unwind usn1[..$@usn6][..00] As `4esn`"), + octest:ct_string("Merge `7esn`=((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )) On Create Set `5esn`+=_usn4[$usn1..01234567][123.654..`5esn`],`2esn`+=#usn7 In 0.e0 On Match Set Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]|$``[..\"d_str\"][..$#usn8]).@usn6 =[$usn1[`2esn`..][$`2esn`..]][(`3esn` :usn2)-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})..`2esn`(Distinct $@usn6 Is Not Null Is Not Null,Count ( * ) Ends With $123456789)],None(#usn8 In `7esn` Where ``[7.._usn3]).@usn6? =`6esn`,Any(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])._usn4! =`` Is Null Match (((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[?:_usn4]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1}))),#usn7=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`})) Where 123.654 In 12 Return [#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]) As usn2,(`5esn` :@usn6{usn1:'s_str'[0..]})<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})[All(#usn7 In 9e1[$`1esn`..] Where ``[$`3esn`])] As `3esn` Order By @usn6 =~999 =~@usn5 Ascending,$@usn5[..$#usn7] Descending,{`4esn`:12e12 =~$`7esn`} Is Not Null Is Not Null Desc Skip Count(*)[9e12..12.0]"), + octest:ct_string("Unwind 00[..$`8esn`][..7] As `6esn` Merge (@usn5 :@usn6{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[`8esn` *0xabc]-(:_usn3{_usn4:.e1[7..][9e0..]}) On Match Set Single(@usn6 In 010[`5esn`] Where 123.654).`6esn`? =0.e0[0X0123456789ABCDEF..],(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}).`3esn`? =999[..`1esn`][..07],[@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1].`6esn` =`7esn` Starts With @usn5 Union Create ((`4esn` :_usn3{usn2:01[..0Xa][..12],`1esn`:999[..`1esn`][..07]})-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})),((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) With 999[12e12..$_usn4] Order By Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,0X7[.0] Asc,$`3esn`[..0X0123456789ABCDEF][..7] Descending Limit #usn7 =~9e12 Union With usn2 Starts With .0 Skip \"d_str\" In @usn5 In $@usn5 Limit _usn4 Starts With 1000 Starts With $usn2 Where _usn4 Is Not Null Is Not Null Merge (#usn7 {#usn7:1.e1 Starts With 9e12})<-[`5esn`?:@usn5|_usn3{``:0.0 =~9e0 =~$0}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]})-[@usn5?{#usn7:12e12 In $`5esn`}]->(`8esn` :`8esn`) On Match Set #usn7 =[$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1],@usn6+=0.12[$0..$usn2]"), + octest:ct_string("Return Distinct *,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) As `7esn` Order By 9e0[$1000] Asc Limit (`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Remove [999 Is Not Null Is Not Null,123.654 In $`7esn`].`6esn`,[#usn7 In 9e1[$`1esn`..] Where $`7esn`[$_usn4][.e0]|.0[..'s_str'][..01234567]].usn1?,[`6esn` In $`6esn`[``..][Count(*)..]|.e12 Starts With $12 Starts With .e12].`7esn`! Remove `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]).#usn8! Union All Merge `6esn`=((:_usn3{`7esn`:$999 Ends With .e0})<-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]-(#usn8 :_usn4)-[:`` *0..01]-(`3esn` :`1esn`:_usn4{#usn8:1e1 Is Not Null Is Not Null})) With Distinct [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) As usn2,#usn8 =~0.e0,$usn1 Limit 00 In @usn6 In 0 Where #usn8 =~.e0 With Distinct $`4esn`[0..][999..],Filter(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12])[..Extract(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])][..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]],(`3esn` {usn2:00[False..0e0]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null})<-[@usn6?:`8esn` *0..01]->(`5esn` :`4esn`:`6esn`)[[12.0 Starts With $`2esn` Starts With .e1]..] As `5esn` Order By .e12[`2esn`..010] Desc,0xabc In 010 In #usn7 Ascending Skip 1e1 Ends With $`7esn` Ends With .0 Where 9e1[$#usn8][$1000] Union All Unwind {_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]} Contains ({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}) Contains None(#usn8 In `7esn`) As `4esn`"), + octest:ct_string("Remove All(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7).`2esn`!,(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[ *01234567..]->(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`}).usn2,@usn6:_usn4 With *,``(Distinct 00 Ends With `` Ends With 12.e12,`6esn`[..Count ( * )][..$_usn4]) In (usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[`7esn`?:#usn8|:`3esn`{`6esn`:'s_str'[0..]}]->(#usn8 :`8esn`$#usn8) In Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1]) As `3esn` Order By $usn2[`5esn`..][01234567..] Asc,$`7esn`[.e1][12.0] Asc,$`5esn` =~usn1 Ascending Skip @usn6(0X7 In $#usn7,_usn4 Contains `` Contains 1.e1)[Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)..Any(#usn7 In 9e1[$`1esn`..] Where $`2esn` Ends With `6esn`)] Optional Match `8esn`=((_usn3 :_usn4))"), + octest:ct_string("Merge _usn4=(`1esn` {@usn5:`2esn` Starts With $`4esn`}) On Match Set #usn7 =9e1[`1esn`..0][999..1e1],All(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True]).`1esn`? =$usn2[`2esn`..$`1esn`],Single(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1).#usn7 =All(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null) Unwind 0.0 Ends With $`7esn` As #usn7"), + octest:ct_string("With *,$usn2 =~9e1,1e1 Is Null Is Null As usn2 Order By `1esn` Contains $999 Contains 0.0 Ascending,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Descending Skip 123.654[$@usn5..] Where `3esn` Starts With 9e0 Starts With usn1 Optional Match ((({`7esn`:999 In 0e0})<-[#usn7 *01..123456789]->({`2esn`:`7esn` In 010 In usn1,`8esn`:$0[123.654..0.e0]})<-[? *7..]-(usn1 {@usn5:_usn4[$usn1..01234567][123.654..`5esn`],`5esn`:1.e1 =~$_usn4}))) Delete [#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Union All Merge @usn6=((`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[@usn5?:usn2 *00..0Xa{usn2:$usn2[`4esn`..9e12]}]->(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->(usn2 :usn1:`3esn`)) Unwind `8esn`(Distinct #usn8 Is Not Null Is Not Null,`2esn` In 9e0 In 7) Starts With None(usn2 In 7[12] Where 123456789 =~12 =~'s_str') As `` Union All Unwind 0.0 Is Not Null As `` Detach Delete 999[12.e12]"), + octest:ct_string("Optional Match (:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]}),(((#usn8 :_usn4{@usn5:$0[0Xa..$123456789]})<-[ *..010{#usn7:``[$`3esn`]}]-(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]})<-[ *00..0Xa]->(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]}))) Detach Delete Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null,@usn5[$`7esn`..`5esn`]"), + octest:ct_string("Create (((usn2 {`5esn`:$@usn6 Ends With `1esn`})<-[`2esn`? *01..123456789]-(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]})<-[? *7..{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]-(#usn7 :``:usn2)))"), + octest:ct_string("Create @usn6=(((`1esn` $`4esn`)<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)-[@usn5?{#usn7:12e12 In $`5esn`}]->(#usn8 ))),usn1=((:@usn5{@usn5:$12[9e0..$999]})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})) Return *,12 Ends With True Ends With @usn6,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3) Ascending,$@usn6 =~0xabc =~$999 Descending,[`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5|`7esn`[1e1]] Contains (`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->(`2esn` {`1esn`:$`4esn` Is Null Is Null}) Contains Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``) Desc Union Remove _usn4:`2esn` Remove Any(#usn7 In 9e1[$`1esn`..] Where 999 In #usn8 In $``).`7esn` Merge `4esn`=((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`))"), + octest:ct_string("Create `7esn`=((`6esn` :`5esn`)<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`5esn` :`4esn`:`6esn`)) Create usn2=(:#usn8:`1esn`$`7esn`),`4esn`=(({#usn7:$@usn6[$0..9e12][.e12..Null]})) Optional Match (usn2 :_usn4),`1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Where 0e0[01][$`7esn`]"), + octest:ct_string("Merge `4esn`=(({#usn7:$@usn6[$0..9e12][.e12..Null]})) On Create Set count(Count(*) Is Null,`` Is Null).`8esn` =0Xa In $`6esn`"), + octest:ct_string("Remove [00[..$`8esn`][..7],_usn4 Starts With `` Starts With 1000,.e0].`1esn`?,Filter(usn2 In False[$usn1][0x0] Where $`7esn`).`2esn`! Unwind 0e0 Is Not Null As `6esn` Union Return Distinct 999[12e12..$_usn4] Order By Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,0X7[.0] Asc,$`3esn`[..0X0123456789ABCDEF][..7] Descending Limit #usn7 =~9e12 Unwind @usn6[..$@usn5] As #usn7"), + octest:ct_string("Unwind $0[0.e0] As `7esn` With Distinct Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..],{#usn8:12.0 Ends With `2esn`,@usn5:usn1 Starts With 00}[Any(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..],999 In 0e0 As #usn7 Order By `1esn` Starts With 9e1 Desc Where $@usn5[..$#usn7] Return 01234567 In 123456789 In 12 As usn1,0.0 Contains #usn7 As #usn8 Order By Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null Asc,{usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}[[@usn5 In 9e0 Ends With $#usn8 Where 00 Contains Count ( * ) Contains 0x0]] Asc,(:`2esn`)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})-[@usn6? *0X0123456789ABCDEF..{``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6}]-(`5esn` :@usn5) Is Null Is Null Ascending Skip 0e0[$999..0.0][$`8esn`..1.e1] Limit None(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1) Contains `3esn`(Distinct $123456789[...12][..@usn6]) Contains {``:`1esn` Starts With 0xabc Starts With $usn2} Union Unwind Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] As @usn6 With $#usn7 =~`2esn` As `4esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc Skip usn2 Is Null Is Null Limit @usn6 Is Not Null Is Not Null Where 's_str' Ends With `7esn` Ends With 010 Union Remove ({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})-[`4esn`?:`5esn`|:usn2]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[@usn5:usn2{`5esn`:#usn8 =~.e0}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]}).`4esn`? Merge #usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Detach Delete Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`)[Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``)][Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 1e1 Contains 's_str' Contains `3esn`|$`2esn` Ends With `6esn`)]"), + octest:ct_string("Unwind True Starts With Null As usn1 Merge `4esn`=(:#usn7:`5esn`{`4esn`:$``[..\"d_str\"][..$#usn8]}) On Create Set #usn8(Distinct 0[$`5esn`],Count(*)[9e12..12.0]).`7esn`! =123.654 In $999 In _usn3 On Match Set `1esn` =0x0[@usn6..][01..],`5esn`(Distinct $#usn7 Contains $`7esn` Contains .e12).@usn6! =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`) Is Null Unwind usn1[...e12][..1.e1] As #usn8 Union All Merge ({`4esn`:.e1[..$`3esn`][..01]})-[`5esn`:#usn7|@usn5]-(`5esn` :`4esn`:`6esn`) Create (_usn3 :`7esn`) Unwind $`2esn` Starts With $@usn5 Starts With #usn7 As `4esn` Union With Distinct *,12.e12 Contains `6esn`,12[``...e12] As `6esn` Limit Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null] Optional Match `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}),(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}) Where `2esn` =~.e12 =~0X0123456789ABCDEF Remove Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|@usn5 Contains 9e0)._usn4?"), + octest:ct_string("Unwind @usn6[123.654..][0x0..] As `2esn` Delete [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null),0x0 In `8esn` Union Detach Delete (`1esn` $`4esn`)-[@usn6?:`7esn`|:`2esn`]-({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]}) =~Filter(`3esn` In 9e1 Contains $999 Where 12.0 Is Null Is Null) =~[0xabc In Null],[$`1esn`[``][07],$`4esn`[`6esn`..$12],False[$usn1][0x0]] =~[.e12 Is Null Is Null],$`3esn` Merge (_usn3 :`7esn`) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] On Create Set #usn7+=Null[.12..12e12],Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]).`1esn`! =[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)],@usn6 =usn2[1.e1]"), + octest:ct_string("Delete [$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],0.0[$@usn5.._usn4],7 Ends With 01234567 Ends With 0Xa Unwind .0 Ends With 999 Ends With $`5esn` As @usn5 Union All Return *,1e1 Contains 0.e0 Contains 9e1 Limit None(#usn7 In 9e0[$1000] Where $1000 Is Not Null) Is Null Is Null Return 12.e12 =~0X0123456789ABCDEF =~1.e1 As `6esn`,.e12[`2esn`..010],.e0 Starts With $@usn6 Starts With $7 As `5esn` Order By Single(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) Contains Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0[1e1][$usn1]) Contains {`4esn`:9e1 Contains 12} Ascending Skip usn1 Limit 123456789 Contains 0Xa With Distinct 0Xa Ends With $`3esn` Ends With $1000,Extract(@usn5 In 's_str'[0..] Where 12e12 Is Not Null) =~[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]],$#usn8[@usn6..] As `7esn` Order By (`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Desc,$usn1[Null][`8esn`] Desc,$`5esn` In `2esn` In `2esn` Asc Limit [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Ends With `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Ends With [$`1esn`[``][07],`7esn`] Where _usn3[$`1esn`..]"), + octest:ct_string("Delete $_usn4[9e0..][$1000..] Unwind 7[0e0..] As `6esn` Union Remove All(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`).`6esn`? Union Match ``=((:`3esn`{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})),(((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null})))"), + octest:ct_string("Unwind 7[0e0..] As `6esn` Optional Match ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)) Union With *,00[12..$`6esn`] As _usn4,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] As `3esn` Order By (`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[``? *0x0..{`6esn`:$`2esn` Contains Count(*)}]->(`6esn` :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`3esn` {``:9e1 Is Null,usn1:9e0[Count(*)..0.12][$`1esn`..12.0]})[..{`6esn`:.e12 Is Null Is Null}] Descending,`1esn` Starts With 9e1 Asc,$`8esn` Contains 12 Contains `6esn` Asc Skip True Ends With $_usn3 Ends With 12 Limit usn1 Ends With 0.0 Unwind 010 Starts With $`` Starts With 0e0 As `3esn` Union Create ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)),((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Optional Match ((`1esn` {_usn4:`8esn` Is Null})),`2esn`=(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Where usn2[1.e1]"), + octest:ct_string("Unwind $`2esn` Contains Count(*) As `4esn` Union Return $#usn7 Ends With 's_str' Ends With 0X7 As usn1,Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])[[00[12..$`6esn`],$`4esn`['s_str'..]]..] As `3esn` Order By [_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1|999 Contains $1000] Starts With Single(`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``) Descending,01[07..][1.e1..] Ascending Skip 9e12[_usn4..$`5esn`][_usn4...e1] Unwind None(@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn2..][$123456789..]) =~{`2esn`:7[12],usn1:.12[0X7..][12e12..]} =~Extract(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)|True[0xabc..01234567][$`8esn`..$@usn6]) As _usn3 With `2esn` Starts With 12.e12 Starts With 12.0 As #usn8,$_usn3 Is Not Null Is Not Null Order By All(#usn7 In 9e0[$1000] Where 0x0[12e12..$`7esn`])[(:`5esn`{_usn4:12 Starts With #usn7 Starts With 0Xa,#usn7:999 Is Null Is Null})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})][{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}] Desc Union All Optional Match (`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}) Return Distinct _usn3 Is Not Null Is Not Null As `` Skip 0X7[..$`8esn`] Limit {@usn5:$@usn6 Is Not Null Is Not Null} Starts With [`3esn` In `2esn`[..01][..True] Where 0x0[usn1..usn1]] Starts With Extract(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..]|0X7['s_str'..][01..])"), + octest:ct_string("Detach Delete Single(_usn4 In 12e12 In 123456789 Where False Is Null)[[$usn1,_usn4 Contains `` Contains 1.e1]][(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]})],0 =~1e1"), + octest:ct_string("Match (`3esn` {usn2:$usn2[`4esn`..9e12]}),usn1=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) Where 9e1 Ends With Count(*) Ends With $7 Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),Single(_usn4 In 12e12 In 123456789 Where False Is Null)[[$usn1,_usn4 Contains `` Contains 1.e1]][(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]})] Delete \"d_str\" Is Not Null,$usn1"), + octest:ct_string("Return Distinct $@usn6[.0..][0e0..] Order By $`8esn` Is Not Null Is Not Null Descending,Null Ends With _usn4 Ends With 0.0 Ascending Limit .e0 Create `4esn`=((`6esn` :#usn8:`1esn`{`6esn`:usn1[..$@usn6][..00]})-[@usn5:_usn4 *0x0..]-(_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})),(:`4esn`:`6esn`{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]-(:`6esn`:_usn3)<-[@usn5? *999..{usn1:.e12[$@usn6..00][01234567.._usn3],`1esn`:`7esn` Contains 9e0}]-({@usn6:999 Contains 0 Contains $`5esn`,#usn7:999[..`1esn`][..07]}) Union Return Distinct *,00 Ends With $`1esn` Ends With `7esn`,$@usn6 Is Not Null Is Not Null As `8esn` Order By (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Descending,[#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Descending Skip [usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Limit 12.e12 =~.0 =~usn1 Union All Delete [0x0 Ends With 12.0 Ends With `5esn`,12e12 Ends With 0.0 Ends With usn1,00[1.e1..]] Ends With All(#usn8 In `7esn` Where $`3esn`[..0xabc][..$7]) Ends With Any(@usn6 In False Contains 0 Contains $`6esn` Where `6esn`[$1000][`3esn`]) With Distinct *,@usn5 Contains #usn8 Contains 12.0 As `6esn`,{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] Skip 0.0 Is Null Is Null Where 07 Ends With 9e12 Ends With `2esn` Unwind usn1 Starts With 00 As _usn3"), + octest:ct_string("Return Distinct *,`5esn`[..123.654][...e12],12e12 =~$`7esn` Skip 0 =~1.e1 =~$#usn7 Union Merge (({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Union Create @usn6=(((`` :`5esn`{@usn5:123456789 =~@usn6})<-[`2esn`? *01234567..]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}))) Merge @usn6=((`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[@usn5?:usn2 *00..0Xa{usn2:$usn2[`4esn`..9e12]}]->(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->(usn2 :usn1:`3esn`)) Remove [False[$`4esn`..],$#usn7[..0Xa]].usn1?,({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}).`5esn`"), + octest:ct_string("Remove {#usn7:`7esn`[$usn2..][$123456789..]}.usn1!,[$0 =~9e1 =~$`2esn`,\"d_str\"[True..]].``,Any(usn2 In 7[12] Where 0x0 Ends With 12.0 Ends With `5esn`).#usn8 Union All With Distinct `2esn` Starts With 12.e12 Starts With 12.0 As #usn8,$_usn3 Is Not Null Is Not Null Order By All(#usn7 In 9e0[$1000] Where 0x0[12e12..$`7esn`])[(:`5esn`{_usn4:12 Starts With #usn7 Starts With 0Xa,#usn7:999 Is Null Is Null})<-[``:`4esn`|@usn5 *0xabc{#usn8:9e1 Contains $999,`5esn`:0e0[01][$`7esn`]}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]})][{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}] Desc Where `7esn` In 010 In usn1 Unwind _usn3 Is Not Null Is Not Null As _usn3 Return $@usn5 In 12e12 In 01 As `2esn`,0xabc =~@usn5 =~$usn1 As `8esn` Limit $`4esn`[07..]"), + octest:ct_string("Create ({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}) Remove Filter(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`).#usn7,[usn2 In 7[12] Where 12e12 Contains `2esn`].@usn5! Detach Delete $`8esn`[999],usn2 Ends With $`4esn`"), + octest:ct_string("Merge ((:usn2{``:Count(*)[9e12..12.0],#usn7:`2esn`[$12..]})) On Match Set `4esn`+=$0 =~9e1 =~$`2esn`,_usn3 =Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] On Create Set #usn7+=$999 In 1e1"), + octest:ct_string("Unwind `2esn`[..$_usn4][...12] As `3esn`"), + octest:ct_string("Detach Delete Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}],Extract(usn2 In 7[12] Where usn1 Starts With 00|`8esn` Contains Count(*) Contains $#usn7) Contains None(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[0.e0]) Contains Extract(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]|$`4esn`['s_str'..]),`` Starts With $123456789"), + octest:ct_string("Unwind Count ( * ) In True In @usn5 As usn1 Union All With *,`2esn` In 9e0 In 7,$7 Starts With $`4esn` As _usn4 Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Limit None(#usn7 In 9e0[$1000] Where $_usn3 Is Null) In (:`3esn`)<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})<-[`4esn`:`1esn`|`3esn` *12..]-(#usn8 :`8esn`) In {`7esn`:$``[..\"d_str\"][..$#usn8],`7esn`:$`` Contains $`2esn` Contains $usn2} Where 12e12 Is Not Null Unwind 07 In 0Xa In usn1 As #usn8 Union Create `8esn`=(((`4esn` :`4esn`:`6esn`)<-[ *..07{`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn3{@usn5:$1000 Starts With $`7esn`})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]}))) Delete .e12 Starts With $7 Starts With .0 Optional Match ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)),((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Where $`3esn`[..0xabc][..$7]"), + octest:ct_string("Remove All(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`).@usn6,Extract(`3esn` In 9e1 Contains $999 Where 12.0 Is Null Is Null)._usn4,Extract(`3esn` In `2esn`[..01][..True] Where $`6esn`[1.e1][$_usn3]|`2esn`[$12..]).@usn5! Create ((`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Union All Remove [`8esn` In 123456789 =~@usn6 Where `7esn`[$usn2..][$123456789..]].@usn6?,None(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]).``!,[1.e1[$usn1]].@usn5! Create ((`` {`7esn`:$#usn7[..0Xa]})-[_usn4{@usn5:`6esn`[$1000][`3esn`]}]-(`` :#usn8:`1esn`{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1}))"), + octest:ct_string("Delete 01234567 In 123456789 In 12 Detach Delete {``:1.e1 In 1000 In _usn3}[[`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1]][Single(#usn7 In 9e1[$`1esn`..] Where `4esn` Is Not Null Is Not Null)],999[..`1esn`][..07] With *,_usn4(#usn7 Starts With $123456789 Starts With 12e12) In None(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1) As @usn5,#usn7[`8esn`..usn1][$999..`7esn`] Order By $@usn6[_usn3..][$999..] Asc,[$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa) Asc Limit @usn6[`1esn`..] Where $`1esn` Starts With Count(*)"), + octest:ct_string("Optional Match `2esn`=(`3esn` {_usn4:123.654 In 12})-[`4esn`?:_usn4 *7..]-(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})<-[ *00..0Xa]->(#usn7 :usn1:`3esn`),((@usn6 :@usn6{_usn4:#usn8 Is Not Null})-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-(`5esn` :#usn8:`1esn`)<-[`1esn`:`8esn` *00..0Xa{#usn8:0X7['s_str'..][01..],``:$usn2 =~1.e1 =~usn1}]->(:_usn3{_usn4:.e1[7..][9e0..]})) Where .e1[12.0..]"), + octest:ct_string("Unwind 0xabc In 123456789 In 0x0 As usn1"), + octest:ct_string("Return *,01[`8esn`..9e12][.12..0] As @usn6,$`1esn` =~1e1 As `4esn` Order By 9e1 =~$_usn4 =~1.e1 Desc,$@usn5[$12...e12][0X0123456789ABCDEF..$999] Asc,(:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Ascending Skip $1000 Is Not Null With $_usn3[$12] Match usn1=((`6esn` :`5esn`)),#usn8=((:@usn5{`5esn`:`4esn` Starts With 0e0})) Where $usn2[`4esn`..9e12]"), + octest:ct_string("Remove All(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)._usn3?,`3esn`:`5esn`,Single(`8esn` In 123456789 =~@usn6 Where ``[9e12][$999])._usn4! Unwind [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) As #usn8 Return Distinct `` Is Not Null Is Not Null As `6esn`,`7esn`[$usn1..]['s_str'..] As usn1,$#usn8 Starts With .e12 Starts With 1.e1 Limit Single(usn2 In 7[12]) Ends With {_usn3:123.654[`4esn`..12]} Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where `1esn`[usn1][0xabc]) Union Optional Match `1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Where #usn8 =~.e0"), + octest:ct_string("Match _usn4=(`5esn` :``:usn2)-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}),`2esn`=(:#usn8:`1esn`$`7esn`) Where `2esn`[..$_usn3] Unwind $@usn5[..$#usn7] As #usn8 Union All Detach Delete $#usn7 Ends With 's_str' Ends With 0X7,[#usn8 In `7esn` Where .e0 Starts With $@usn6 Starts With $7|1000[12e12][`5esn`]] Ends With [`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8] Ends With [$``[..\"d_str\"][..$#usn8],$_usn4 Starts With $1000 Starts With 12,#usn7[.e0]] Union All Unwind 1.e1 Ends With $#usn7 As `5esn`"), + octest:ct_string("Unwind [#usn8 In `7esn` Where usn2[07..][.0..]|$usn1 Ends With _usn4 Ends With `2esn`] Contains (_usn3 {#usn7:1000[12e12][`5esn`]})-[`3esn`?:`3esn`]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0}) Contains Extract(`3esn` In `2esn`[..01][..True] Where usn1 In ``) As usn1 Return *,9e0[..123456789][..$`3esn`] As #usn7 Order By 999 In 0e0 Ascending Merge ((({usn2:_usn3[`2esn`..0X7][0.e0..$`3esn`]})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]-(_usn3 )<-[? *..010{usn1:9e1[_usn3]}]->(`5esn` {`4esn`:0x0[usn1..usn1],usn1:$`5esn`[0X7..010][`7esn`..'s_str']}))) Union With *,All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] As `3esn`,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[usn2(Distinct #usn7 Contains $0 Contains $usn2,0.e0)..] As @usn6 Order By [`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})] Ascending,{usn2:`7esn`[$usn1..]['s_str'..],usn2:_usn4 Contains `` Contains 1.e1} Is Not Null Is Not Null Ascending,None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0) Ascending Skip $`8esn`[999] Union All Optional Match ((:#usn8:`1esn`)-[ *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})),`8esn`=(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) Where @usn6[9e12]"), + octest:ct_string("Remove All(@usn5 In 9e0 Ends With $#usn8 Where False Contains 0 Contains $`6esn`).@usn6 Remove (:``:usn2{`3esn`:12.0 Starts With .12 Starts With `6esn`,``:$`4esn`[0..][999..]})-[@usn6?{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null}]->(:`7esn`{`2esn`:$`3esn` Ends With 01234567}).`6esn`,(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})<-[:`2esn`|`4esn` *1000..0X0123456789ABCDEF]-(usn2 :`6esn`:_usn3{@usn5:$0[0Xa..$123456789]}).`3esn`!,Any(#usn7 In 9e1[$`1esn`..] Where $`2esn` Ends With `6esn`).usn1!"), + octest:ct_string("Unwind Extract(@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1) Is Not Null As `1esn` Union All Detach Delete None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..],`7esn` Contains 9e0"), + octest:ct_string("With Distinct Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1|$@usn5 In $`6esn` In 12e12) Ends With (:`7esn`{#usn7:0 =~1.e1 =~$#usn7})<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) As @usn5,.e0 Is Not Null Is Not Null As `7esn`,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] As `3esn` Limit _usn4 In #usn7 With *,0.e0 =~00 As `3esn` Order By 's_str'[0x0..1.e1] Asc,usn1[False..`5esn`][$1000..$12] Ascending Where 9e1[$#usn8][$1000] Union Return Distinct *,#usn7[.e0] As `8esn` Order By 9e1 =~123456789 =~999 Asc Skip .e1[12.0..] Limit $@usn6 Ends With `1esn` Create `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}) Unwind [#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)] Contains (:`2esn`)-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`3esn` {`4esn`:False Is Null}) Contains Filter(`8esn` In 123456789 =~@usn6 Where $`6esn` Starts With .e12 Starts With $`1esn`) As `1esn` Union Remove All(@usn6 In 010[`5esn`] Where 1.e1[$usn1]).`6esn`!,Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5 Detach Delete 0xabc[$999..][$usn1..],12[..$999][..$`2esn`],Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|$`8esn`[..True][.._usn4]) Ends With Single(_usn4 In 12e12 In 123456789 Where $usn2 Is Not Null Is Not Null) Create (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})))"), + octest:ct_string("Match (`6esn` {`3esn`:$`2esn`[0..123456789][``..`1esn`],`7esn`:$0[0Xa..$123456789]}),`7esn`=((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )) Delete $@usn6[123.654..00] Union Merge (`8esn` :@usn6)<-[?:usn2 *0x0..]->(:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}) Return *,`6esn` =~Null As `4esn`,.e0 Starts With $@usn6 Starts With $7 As `5esn` Order By [`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]] In (`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(:#usn7:`5esn`)-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:#usn8:`1esn`$`7esn`) In {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]} Asc,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] Desc Skip $`3esn`[$_usn4..0Xa] Union All With Distinct $@usn6 Ends With 12.e12 Ends With @usn5 As usn2,``[usn1][`5esn`],`7esn`[..$`6esn`] Skip `3esn`[7..0.e0][0.0..123456789] With Distinct [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`)"), + octest:ct_string("Return *,00[$usn1..] Limit `4esn`(Distinct 0.0 Contains #usn7)[(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})..][None(@usn5 In 's_str'[0..] Where #usn7[0.12..])..]"), + octest:ct_string("Unwind .0 Contains .e12 Contains 0 As `6esn` Detach Delete `4esn` Contains 9e0,$`1esn` =~999,$@usn5 Is Null Is Null"), + octest:ct_string("Remove None(#usn8 In `7esn` Where $`5esn` Is Not Null Is Not Null).`1esn`! Union Create _usn4=(:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}),((:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})) Return Distinct [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|True[0xabc..01234567][$`8esn`..$@usn6]) As usn2,#usn8 =~0.e0,$usn1 Limit 00 In @usn6 In 0 Merge `8esn`=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`})) Union Create usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}))"), + octest:ct_string("Create usn1=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) Union Delete Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7) =~usn2(1.e1 =~.12) =~Filter(`3esn` In `2esn`[..01][..True] Where #usn8 =~.e0) Remove {_usn3:_usn4 Is Null Is Null}.``,``(@usn6[`1esn`..]).`7esn`! Union All With *,All(#usn7 In True Contains 's_str' Contains $usn1 Where #usn8 Is Null Is Null)[..[0x0[0X7]]][..(:`7esn`{`3esn`:$`3esn` Contains $`1esn`,#usn7:$usn2[`4esn`..9e12]})-[ *..07]->(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]})] As `3esn`,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[usn2(Distinct #usn7 Contains $0 Contains $usn2,0.e0)..] As @usn6 Order By $`1esn` Ends With 0X0123456789ABCDEF Ascending Limit `4esn` Contains 9e0 Remove [#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|Count(*) Is Null].#usn7,{``:0Xa =~False =~@usn5,`8esn`:.12[123.654..]}.`6esn`!,Any(#usn7 In $999 In 1e1 Where usn1 =~$`7esn`).`1esn`!"), + octest:ct_string("With Distinct Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],010 Is Null Is Null As #usn8,All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] As `8esn` Skip usn2 Is Not Null Limit `2esn` =~.e12 =~0X0123456789ABCDEF"), + octest:ct_string("Delete $999[0Xa..][9e1..],[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8|12.e12[..$`6esn`]][({`5esn`:`2esn` Is Null,`4esn`:usn2[1.e1]})-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]-({`7esn`:9e12 =~@usn6})..[$`3esn` Ends With 01234567]] Union All Detach Delete 0.e0,\"d_str\"[True..],$`3esn` Ends With 01234567 Return Distinct @usn5[01][@usn5],9e0 Contains $12 Contains `3esn` As #usn8,{`4esn`:0.0[usn1..],`7esn`:12.0[$1000..][#usn7..]}[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7)..[usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]]][[12.e12[..$`6esn`],999 In #usn8 In $``]..Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1)] Skip {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}[[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]]..][(_usn4 {`6esn`:$_usn4 =~$`1esn` =~`2esn`,_usn3:#usn8 Is Null})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[_usn4?{_usn3:.e1[.e1..`1esn`],@usn6:.12 In `8esn` In $#usn8}]->(usn2 :@usn5)..] Delete 01 Ends With 123456789"), + octest:ct_string("With Distinct #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Skip `8esn`[$12][123456789] Limit Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)[(`` :`5esn`{@usn5:123456789 =~@usn6})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`7esn` {``:9e1 Contains $999,``:$usn2[True..0X0123456789ABCDEF]}).._usn3(Distinct 0x0 Contains $`6esn` Contains `4esn`,usn2[1.e1])][(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})..[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|9e1 Is Null]] Merge #usn7=(((:`7esn`{`2esn`:$`3esn` Ends With 01234567})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(`` :`3esn`{`8esn`:.e1[12.0..],`6esn`:0e0[999..$``]})<-[? *0X7..{``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}]-(:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})))"), + octest:ct_string("Detach Delete None(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1) Contains `3esn`(Distinct $123456789[...12][..@usn6]) Contains {``:`1esn` Starts With 0xabc Starts With $usn2} Create ``=((:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[`5esn`:#usn7|@usn5]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})),#usn8=(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`6esn` :`1esn`:_usn4{@usn5:07 Ends With 9e12 Ends With `2esn`}) Union All Optional Match ((`1esn` {_usn4:`8esn` Is Null})),`2esn`=(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Where usn2[1.e1] Union All Delete _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..],``(Distinct 00 Ends With `` Ends With 12.e12,`6esn`[..Count ( * )][..$_usn4]) In (usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[`7esn`?:#usn8|:`3esn`{`6esn`:'s_str'[0..]}]->(#usn8 :`8esn`$#usn8) In Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1]) Return Distinct @usn5[01][@usn5],9e0 Contains $12 Contains `3esn` As #usn8,{`4esn`:0.0[usn1..],`7esn`:12.0[$1000..][#usn7..]}[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7)..[usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]]][[12.e12[..$`6esn`],999 In #usn8 In $``]..Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1)] Skip {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}[[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]]..][(_usn4 {`6esn`:$_usn4 =~$`1esn` =~`2esn`,_usn3:#usn8 Is Null})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[_usn4?{_usn3:.e1[.e1..`1esn`],@usn6:.12 In `8esn` In $#usn8}]->(usn2 :@usn5)..]"), + octest:ct_string("Detach Delete False[..$`5esn`][..1e1],`4esn` Contains 9e0,12[$`5esn`..][False..] Unwind .e0 Ends With $123456789 Ends With 0xabc As #usn7 Union All Delete True Starts With Null,`4esn`(Distinct Count(*) In 12 In `6esn`,Count(*) In 12 In `6esn`) =~{`7esn`:$@usn6[00]} =~[0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]]"), + octest:ct_string("Create @usn5=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),({`4esn`:.e1[..$`3esn`][..01]})-[`5esn`:#usn7|@usn5]-(`5esn` :`4esn`:`6esn`) Union All Delete 12 Contains 01234567,[@usn5[$`6esn`..][$999..],`` Starts With $123456789] Is Null,`6esn` Is Null Is Null"), + octest:ct_string("With Distinct `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] As `3esn`,usn1 Ends With 0.0 Order By $`3esn`[$_usn4..0Xa] Desc,$`1esn` Ends With 0X0123456789ABCDEF Ascending,$@usn5 Ends With @usn5 Ends With 0xabc Descending"), + octest:ct_string("Delete {#usn8:1.e1 Is Null Is Null,_usn4:0xabc In 123456789 In 0x0}[All(@usn6 In 010[`5esn`] Where 00[1.e1..])..],{`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..],[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8|12.e12[..$`6esn`]][({`5esn`:`2esn` Is Null,`4esn`:usn2[1.e1]})-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]-({`7esn`:9e12 =~@usn6})..[$`3esn` Ends With 01234567]] Remove [@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]|9e12[$`5esn`..$123456789]].`6esn`,All(_usn4 In 12e12 In 123456789 Where 999 Contains $1000).``?,[`3esn` In `2esn`[..01][..True] Where 0x0[usn1..usn1]|0Xa =~False =~@usn5]._usn3! With Distinct *,``(Distinct 00 Ends With `` Ends With 12.e12,`6esn`[..Count ( * )][..$_usn4]) In (usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[`7esn`?:#usn8|:`3esn`{`6esn`:'s_str'[0..]}]->(#usn8 :`8esn`$#usn8) In Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1]) As `3esn` Order By $usn2[`5esn`..][01234567..] Asc,$`7esn`[.e1][12.0] Asc,$`5esn` =~usn1 Ascending Skip @usn6(0X7 In $#usn7,_usn4 Contains `` Contains 1.e1)[Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)..Any(#usn7 In 9e1[$`1esn`..] Where $`2esn` Ends With `6esn`)] Where 9e1[$``..][0.e0..] Union All Create _usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))),usn1=(_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]}) With Distinct [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Any(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`),usn2[usn2..0X7] As `1esn` Order By 's_str'[0x0..1.e1] Asc Limit 0xabc[..$1000][..`5esn`] Where `2esn` Starts With 12.e12 Starts With 12.0 Merge #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}))"), + octest:ct_string("Create #usn7=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2),(((:_usn4{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)))"), + octest:ct_string("Return Distinct *,1e1 Contains 0.e0 Contains 9e1 Limit None(#usn7 In 9e0[$1000] Where $1000 Is Not Null) Is Null Is Null Merge ((`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})) With 's_str' Order By $12[9e0..$999] Asc,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip #usn8[`8esn`..] Limit .12 In `8esn` In $#usn8 Where 12.e12 Contains #usn7 Contains $_usn4 Union All Merge ((`1esn` {_usn4:`8esn` Is Null})) On Create Set All(usn2 In False[$usn1][0x0] Where 0.0[usn1..]).`8esn`? =_usn4 Starts With 1000 Starts With $usn2,`7esn`+=12 In $usn1 In 7,Any(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1).`2esn`! ={_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}[..Single(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])][..None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999])] On Match Set @usn6+=0.0[..Count ( * )][..`1esn`],usn2 =1.e1 Starts With 9e12,Single(usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5).@usn5! =0xabc[$999..][$usn1..]"), + octest:ct_string("With $usn1,`1esn` Contains $999 Contains 0.0 As @usn6,$`6esn`[0e0..][010..] Order By 0.0 Ends With $`7esn` Descending,`3esn`[7..0.e0][0.0..123456789] Asc Return `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By $1000[$@usn6][$_usn4] Desc Unwind True Ends With $_usn3 Ends With 12 As #usn7"), + octest:ct_string("Create usn1=((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})) Union Delete `2esn`[$usn2][12.0],{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}[Single(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7)..],(:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] Unwind [$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1] As `1esn`"), + octest:ct_string("Delete .12 In `8esn` In $#usn8 Unwind .e0[9e12..] As @usn5 Remove `4esn`($`4esn` Contains _usn3 Contains `8esn`).`4esn`! Union Detach Delete _usn4(Distinct 0X0123456789ABCDEF Ends With 01 Ends With ``,$`3esn`[..0xabc][..$7]) In Single(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0) In Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7]),Count(*) Ends With usn1 Union With Distinct `5esn`[..123.654][...e12] As @usn6,(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) As `2esn`,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As `1esn` Skip $`3esn`[..0X0123456789ABCDEF][..7] Limit 12.0 Starts With .12 Starts With `6esn` Where ``[usn1][`5esn`] Delete `2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Return _usn4 Contains $_usn3 Contains .e1,$`4esn`['s_str'..] As `` Limit None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`])[Single(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Is Not Null Is Not Null)]"), + octest:ct_string("With Distinct *,`5esn` Contains `5esn` Contains $_usn3 Limit False Starts With 0X7 Starts With 01234567 Where 9e1[_usn3] Unwind _usn3 Contains _usn4 Contains $@usn5 As `2esn` Union Unwind Count ( * ) Ends With $123456789 As `` Union Optional Match `2esn`=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}),(({@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`})<-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->({usn2:$`2esn` Is Null,#usn8:.0 Is Null Is Null})) Where $`3esn`[.e1][_usn4] Merge ``=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) On Create Set [12e12 =~1e1,0X7[..$`8esn`]].`7esn` =1e1 Ends With $`2esn`,`8esn`+=01[$`7esn`..$@usn6] On Create Set Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7])._usn4 =count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null,`1esn`+=@usn5[..\"d_str\"],_usn4 =`2esn` =~.e12 =~0X0123456789ABCDEF"), + octest:ct_string("Detach Delete 00[False..0e0] Merge ((`2esn` :_usn3)-[? *0xabc{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})) Delete Null[..0] Union All Create (((usn2 :#usn8:`1esn`)-[`5esn`?:`7esn`|:`2esn` *0x0..]->(`8esn` :`8esn`)<-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(#usn7 :`2esn`))),((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) Unwind 9e1 =~123456789 =~999 As `` Union Match (((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}))),@usn6=(:usn2{`6esn`:#usn7[$`3esn`..$1000][0.0..`2esn`],``:010 Starts With 0 Starts With 0.0}) Where `7esn` In 010 In usn1 Create @usn6=(((`` :`5esn`{@usn5:123456789 =~@usn6})<-[`2esn`? *01234567..]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}))),(({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}))"), + octest:ct_string("With 999[12e12..$_usn4] Order By Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,0X7[.0] Asc,$`3esn`[..0X0123456789ABCDEF][..7] Descending Limit #usn7 =~9e12 Unwind $`5esn`[$`6esn`][`2esn`] As _usn4"), + octest:ct_string("Remove [usn2 In 7[12] Where 9e1 Is Not Null Is Not Null]._usn4?,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where `2esn` Starts With .e1 Starts With 9e12).`3esn`! With *,_usn3[12.e12..][`5esn`..] As @usn6,999[..`1esn`][..07] Order By 7 Is Null Is Null Ascending,Count ( * ) =~0e0 =~`8esn` Descending,#usn7[0.e0..][$#usn8..] Descending Where $999 Ends With .e0 Union Delete 12.e12 Starts With 1000,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null,Single(#usn8 In `7esn` Where 12.0 Starts With $`2esn` Starts With .e1) Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]] Ends With {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01}"), + octest:ct_string("Create @usn5=(:@usn5{#usn7:12e12 In $`5esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})-[?*]-({`8esn`:`5esn` Contains #usn7 Contains 9e12}) Union Unwind {`1esn`:$`2esn` Contains Count(*)}[[$`4esn`[0..][999..],@usn5 Contains #usn8 Contains 12.0]..[@usn6 In 010[`5esn`] Where 0e0[``..$1000][$7..12.e12]|@usn6[`1esn`..]]] As `5esn`"), + octest:ct_string("Remove [`5esn` In 0X7 In $#usn7 Where 01 Is Null]._usn4?,Any(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1).`3esn` Unwind `3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] As `8esn`"), + octest:ct_string("Merge `1esn`=(`6esn` {``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]})-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(`3esn` :usn2{`6esn`:#usn8 Is Null}) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] Union All Merge `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) On Create Set _usn3+=`5esn`(Distinct .12[123.654..]) On Match Set _usn3 =$``[01234567..][.0..] Union All Return Distinct 12.e12 =~0X0123456789ABCDEF =~1.e1 As `6esn`,0.e0[..$7] As _usn3,usn1 Ends With 0.0 Order By None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,.e0 Starts With $@usn6 Starts With $7 Descending Limit $@usn6[..12] Merge `3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) On Match Set `1esn` =[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]) Detach Delete 999 Is Not Null Is Not Null"), + octest:ct_string("Merge _usn4=(:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]})<-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(`2esn` :`1esn`:_usn4) On Match Set @usn6+=$`1esn` =~1e1 On Create Set `6esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null Union All Optional Match (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Where $`7esn`[.e1][12.0]"), + octest:ct_string("Optional Match ((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})),#usn8=({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Delete `2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] With Distinct *,$@usn6 Ends With 12.e12 Ends With @usn5 As `3esn` Order By .e0 Starts With $@usn6 Starts With $7 Descending Limit All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where False[$usn1][0x0]) In [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null|9e12[9e1]] In [12.0 Is Null,$_usn4[..$_usn4][..`7esn`]] Union All Merge (_usn3 :`7esn`) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] On Create Set #usn7+=Null[.12..12e12],Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]).`1esn`! =[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)],@usn6 =usn2[1.e1] Merge `2esn`=(:#usn8:`1esn`$`7esn`) On Match Set `8esn`+=`2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..]"), + octest:ct_string("Merge (((_usn4 :#usn7:`5esn`)<-[#usn8 *0x0..]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})<-[`2esn`?:usn1|`4esn` *00..0Xa]->(`6esn` :#usn8:`1esn`{`6esn`:usn1[..$@usn6][..00]})))"), + octest:ct_string("Match @usn6=((usn1 :_usn3{`4esn`:$`6esn`[1.e1][$_usn3]})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})) Where 1e1 In 0.0 In 0X0123456789ABCDEF Detach Delete ``[$`3esn`],Filter(_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4) Is Null Is Null,010[...12] Return Distinct *,$#usn7 Ends With \"d_str\" As `7esn` Union Unwind $`1esn` In .e0 As #usn8 Delete 0x0[``..],Any(usn2 In 7[12] Where $_usn3 Is Null) Is Not Null Is Not Null,[`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Union Remove Any(`6esn` In $`6esn`[``..][Count(*)..] Where $0[123.654..0.e0]).`4esn`?,Single(`5esn` In `7esn`[$usn2..][$123456789..] Where `2esn` =~.e12 =~0X0123456789ABCDEF).usn1 Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) On Create Set #usn7+=.e0[..9e12][..07],`4esn`(True[$_usn3..],$999[``]).usn2 =123456789 Is Null Is Null,@usn5 =01[07..][1.e1..] On Create Set `5esn`+={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},usn2 =True Contains 0x0 Contains $_usn3 With *,$`5esn`[0X7..010][`7esn`..'s_str'] As `4esn`,999 In 0e0 As #usn7 Skip Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] Limit (`5esn` :`6esn`:_usn3)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({#usn8:False Starts With 0X7 Starts With 01234567})<-[usn2?{``:$`1esn`[``][07]}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7}) Is Null Is Null"), + octest:ct_string("With Distinct 0.e0[$`4esn`..`2esn`],12.e12 Starts With \"d_str\" Starts With 9e1,{``:00 In @usn6 In 0}[(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})] As `5esn` Skip Extract(#usn7 In $999 In 1e1 Where `5esn`[..True][..0.e0]|$`5esn` =~$0 =~``) In (:`7esn`{#usn8:0Xa Ends With $`3esn` Ends With $1000})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]}) In Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|999 Contains 0 Contains $`5esn`) Where $`3esn` Ends With 01234567 Union Return 0.e0[..$7] As _usn3,0xabc =~@usn5 =~$usn1 Skip $@usn6[00] Limit `2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..] Union All Return Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],010 Is Null Is Null As #usn8,All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] As `8esn` Order By $_usn3[_usn4..] Asc,0.12 Is Null Is Null Desc,`6esn` Ends With _usn4 Ends With False Ascending Skip 1.e1 =~.12 Limit `1esn`[$@usn6][07]"), + octest:ct_string("Detach Delete $0[010..]"), + octest:ct_string("Delete `6esn` Starts With `6esn` With Distinct `6esn` In .12,None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]) Ends With [_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4|0x0[0X7]],`6esn` Starts With `6esn` Remove ({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})-[`4esn`?:`5esn`|:usn2]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[@usn5:usn2{`5esn`:#usn8 =~.e0}]-(_usn3 :`6esn`:_usn3{`6esn`:0.0 Is Not Null,`6esn`:$`8esn`[..True][.._usn4]}).`4esn`? Union All Create (((#usn7 :usn2{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]})<-[@usn5?:usn2 *00..0Xa{usn2:$usn2[`4esn`..9e12]}]->(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})<-[ *..07{`5esn`:999 In 0e0}]->(:@usn6$usn1))) Create (((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) With Distinct $`1esn`[Null][True] As `8esn` Order By 9e0[..123456789][..$`3esn`] Asc,Filter(@usn5 In 's_str'[0..] Where $@usn6 =~#usn7 =~True)[Extract(@usn5 In 's_str'[0..] Where _usn3[0x0])..All(_usn4 In 12e12 In 123456789 Where $usn2 Is Not Null Is Not Null)][(`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]})<-[:`8esn`]-(:@usn6)-[? *0X0123456789ABCDEF..]-(usn2 :_usn3)..(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})] Descending,.e1 Is Null Is Null Descending Limit {_usn3:$`6esn`[1.e1][$_usn3]} Contains Extract(#usn7 In 9e1[$`1esn`..] Where $`7esn`[$_usn4][.e0]|7 Ends With 01234567 Ends With 0Xa)"), + octest:ct_string("Optional Match ({@usn6:999 Contains 0 Contains $`5esn`,#usn7:999[..`1esn`][..07]}),((:#usn7:`5esn`{_usn4:$usn2 =~9e1})<-[@usn5?:usn2 *0..01]->(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})) Where False[$usn1][0x0] Union Return *,usn1 Contains 010 As `6esn`,(:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]] As `5esn` Skip [`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})] Limit .e0[...0][..$`2esn`] Union Merge #usn7=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})) On Match Set `5esn`(Distinct .12[123.654..]).`3esn` =01234567 In 123456789 In 12,`6esn` =[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null On Match Set usn2+=`6esn`[$`8esn`][9e1]"), + octest:ct_string("Return *,'s_str' Starts With 9e0 Starts With usn2 As `8esn` Optional Match `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),(`2esn` $`6esn`) Where 7 =~`4esn` Optional Match `6esn`=(((_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})-[``?:_usn4]-(_usn4 :_usn4))) Union With *,#usn7[.e0] As `8esn` Order By 9e1 =~123456789 =~999 Asc Skip .e1[12.0..] Limit $@usn6 Ends With `1esn` Where ``[$`3esn`] Return Distinct *,All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) As `8esn` Order By 12.0 Ends With `2esn` Descending,$`4esn`[`4esn`][Count(*)] Descending,$`1esn`[07..] Desc Skip 9e12[..123.654][..999] Optional Match `6esn`=(((:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({#usn8:False Starts With 0X7 Starts With 01234567})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5)))"), + octest:ct_string("Match (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})))"), + octest:ct_string("Create ((`1esn` :usn2)),`2esn`=(`5esn` :``:usn2)<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2) Union Optional Match ((:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})),(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Where _usn3 Starts With 12e12 Starts With `5esn` Delete 9e1[$`1esn`..] With (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Order By usn1 Ends With 9e0 Ends With 9e0 Descending,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Descending Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Union Remove None(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]).`1esn`?,Extract(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null|0 =~1.e1 =~$#usn7).@usn5!,(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}).@usn5 Delete `2esn`[$usn2][12.0],{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}[Single(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7)..],(:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] Return Distinct *,1.e1 Ends With $#usn7 As usn2,@usn5[01][@usn5] Order By $`4esn`[..$`8esn`][..Null] Descending Skip `6esn` Is Null Is Null"), + octest:ct_string("With *,#usn8[`6esn`..][$``..] As usn1,Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..]) Contains None(@usn5 In 's_str'[0..] Where 010 Is Null) Contains `2esn`(Distinct $`3esn`[$_usn4..0Xa],$`8esn`[123456789..][$@usn5..]) Order By 0x0[Count(*)..@usn6][Count(*)..0Xa] Desc Limit `6esn` Unwind 9e0 Is Not Null Is Not Null As `5esn` Union Detach Delete #usn7[0.e0..]['s_str'..],$0 Starts With @usn5 Create ((:`5esn`{`8esn`:$`1esn` Starts With Count(*),_usn3:usn1[...e12][..1.e1]})) Union Create usn1=((#usn8 :_usn3)<-[? *12..{#usn7:`6esn` Ends With _usn4 Ends With False,usn1:1000[12e12][`5esn`]}]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07})),`1esn`=((`6esn` {`3esn`:$`2esn`[0..123456789][``..`1esn`],`7esn`:$0[0Xa..$123456789]})<-[? *00..0Xa]->(usn2 :@usn5)-[?:`2esn`|`4esn` *0Xa{#usn7:1.e1 Starts With 9e12}]-(:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) Remove Extract(`3esn` In 9e1 Contains $999 Where usn1[False..`5esn`][$1000..$12]|True Starts With Null).`4esn`! With $usn2 Is Not Null Is Not Null Skip 999[@usn5..][Null..] Limit $@usn6 Ends With `1esn` Where 9e12[$`5esn`..$123456789]"), + octest:ct_string("Detach Delete @usn5 Starts With $`3esn`,12 Is Not Null,07 Contains `3esn` Contains `7esn` Union All Match (((:`6esn`:_usn3{@usn5:0.e0[..$7],@usn6:.12 In `8esn` In $#usn8})-[?*..]-(usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->(#usn8 :`8esn`))) Merge (:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789})"), + octest:ct_string("Remove [`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5|`5esn`[..True][..0.e0]].`2esn`!,None(`8esn` In 123456789 =~@usn6 Where $`5esn` =~$`8esn` =~usn2)._usn3? Union All Remove Extract(@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1|True Contains 's_str' Contains $usn1)._usn4?,All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]).`4esn`"), + octest:ct_string("Detach Delete `5esn` Contains $`5esn` Contains 0X7 Remove Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null).usn1 Union Match (`8esn` :#usn8:`1esn`{usn1:0x0 Starts With $`6esn`}) Create ((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})),@usn5=(({@usn5:$`5esn` Is Not Null Is Not Null})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})) Return Distinct .e0 Ends With $123456789 Ends With 0xabc Limit 's_str' Starts With 1e1 Starts With $0"), + octest:ct_string("Create _usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),_usn4=(({usn2:`2esn`[..$_usn3]})) Union All Optional Match ``=(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Remove Any(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]).@usn6?,@usn5(Distinct Count ( * ) Ends With $123456789).`6esn`? Unwind 00[False..0e0] As `6esn`"), + octest:ct_string("Match (({`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]})-[usn2?:`3esn`]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})),((#usn7 {`6esn`:$`2esn` Contains Count(*)})-[?:_usn4]->(`2esn` :usn2)) Where 12e12 Contains `2esn` With $@usn6[..12] As #usn8,Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] As `7esn` Order By $@usn5 In 12e12 In 01 Ascending Limit Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)[..`4esn`][..(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)] Where _usn3 Starts With 12e12 Starts With `5esn` Optional Match `8esn`=((@usn6 {usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}))"), + octest:ct_string("Unwind {usn2:$@usn6[00]}[..[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1]][..[12e12 Starts With $0 Starts With $`2esn`,$_usn3 Is Null]] As `5esn` Union All Create ((`2esn` {`7esn`:999 In 0e0})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)),#usn8=((:@usn5{`5esn`:`4esn` Starts With 0e0})) Create ((:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})) With `2esn`[$12..] As @usn6 Order By 0x0[``..] Asc,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Is Null Descending,usn1[_usn3..] Descending Skip $7 Starts With $`4esn` Where `1esn` Starts With 0xabc Starts With $usn2 Union Remove @usn6(Distinct .12[123.654..],`2esn` In 7).``,All(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1).`5esn`!,@usn5:`8esn`"), + octest:ct_string("Unwind 07 =~`4esn` =~$`1esn` As usn1 Remove [#usn7 In True Contains 's_str' Contains $usn1 Where $#usn7[..$`4esn`][..01]|1.e1 Is Null Is Null].#usn7?,(#usn8 :`2esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4)-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}).`8esn`!,`1esn`(Distinct `3esn`[7..0.e0][0.0..123456789],`1esn` Starts With 0xabc Starts With $usn2)._usn4! Unwind Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) As usn1 Union All Detach Delete _usn4(Distinct 0X0123456789ABCDEF Ends With 01 Ends With ``,$`3esn`[..0xabc][..$7]) Contains `1esn`(999 Is Null Is Null) Contains (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[usn1:_usn4]-(#usn7 :@usn6) Union All Create `7esn`=(((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}))),`2esn`=((`6esn` :#usn7:`5esn`)<-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]->(:#usn8:`1esn`$`7esn`)) Create `6esn`=(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[@usn6:`1esn`|`3esn` *0X7..]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}),(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(`3esn` :_usn4{`3esn`:12[..0e0][...e1],`4esn`:.0 Is Null Is Null})"), + octest:ct_string("Unwind (:`2esn`)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})-[@usn6? *0X0123456789ABCDEF..{``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6}]-(`5esn` :@usn5) Is Null Is Null As `4esn` Union Delete $`3esn`[.e1][_usn4],None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Create @usn6=((({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}))),`6esn`=((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[``:`5esn`|:usn2{`5esn`:_usn4[0]}]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]}))"), + octest:ct_string("Merge `1esn`=((`6esn` {`3esn`:$`2esn`[0..123456789][``..`1esn`],`7esn`:$0[0Xa..$123456789]})<-[? *00..0Xa]->(usn2 :@usn5)-[?:`2esn`|`4esn` *0Xa{#usn7:1.e1 Starts With 9e12}]-(:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) On Create Set `3esn`+=$@usn6 Is Not Null Is Not Null,[$usn2 Is Not Null Is Not Null,0 =~1e1].`3esn`? =$1000[0X0123456789ABCDEF][12] On Match Set `2esn` =`3esn`[..0X0123456789ABCDEF][..0x0]"), + octest:ct_string("Detach Delete Extract(`6esn` In $`6esn`[``..][Count(*)..] Where $@usn5 Starts With `5esn` Starts With 01234567|0.e0[..$7]) Is Null Is Null Optional Match `1esn`=(`5esn` :`5esn`{#usn7:``[$`3esn`]}) Where $`8esn`[..True][.._usn4]"), + octest:ct_string("Delete `2esn`[$usn2][12.0],{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}[Single(#usn7 In True Contains 's_str' Contains $usn1 Where `5esn` Contains $`5esn` Contains 0X7)..],(:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] Unwind [$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1] As `1esn`"), + octest:ct_string("With 12.e12[..$`6esn`] As `7esn`,Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..] As ``,1.e1 Contains `6esn` Contains 0.e0 Skip Any(usn2 In 7[12] Where 0X7[.0])[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)..#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])] Where 999 Contains $1000 Detach Delete Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null) Is Not Null Is Not Null,010 Starts With $`` Starts With 0e0"), + octest:ct_string("Return 010 Starts With $`` Starts With 0e0,$#usn8 Ends With `` Ends With 999 As _usn3,$@usn5 Ends With @usn5 Ends With 0xabc Skip None(#usn7 In $999 In 1e1 Where 01234567[Null..$_usn3]) Ends With Extract(#usn8 In `7esn` Where $`5esn` Is Not Null Is Not Null) Limit `6esn` In .12"), + octest:ct_string("Merge (@usn5 :@usn6{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[`8esn` *0xabc]-(:_usn3{_usn4:.e1[7..][9e0..]}) On Match Set Single(@usn6 In 010[`5esn`] Where 123.654).`6esn`? =0.e0[0X0123456789ABCDEF..],(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}).`3esn`? =999[..`1esn`][..07],[@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1].`6esn` =`7esn` Starts With @usn5 Detach Delete 0.12 Contains False Contains 1.e1 Union All Unwind 01 Contains usn2 Contains 0X0123456789ABCDEF As usn2 Detach Delete All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]) =~All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where .e12[..999][..@usn5]) =~Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4),`4esn`[.12][$@usn6]"), + octest:ct_string("Unwind $0 Ends With $usn1 Ends With $_usn3 As `` Return Distinct Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null),9e1[usn1..0x0][12.e12..12.0] Order By 00[12e12][$`7esn`] Ascending,@usn5[0..] Descending,Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Descending Limit 0.e0[$`4esn`..`2esn`] With Distinct *,`5esn`[$`7esn`..$@usn5],`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] As #usn7 Order By 1000[..$1000] Asc,`7esn` Is Null Asc,#usn7 Desc Limit 010 Is Null Union All Delete $_usn4[..123456789],.e1 In 123456789 Union All Remove Filter(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $#usn7 Starts With 01234567 Starts With $0).usn2! Unwind Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[{`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}] As #usn8 Match `6esn`=(`` :`5esn`{@usn5:123456789 =~@usn6})"), + octest:ct_string("Merge usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Union All Merge _usn3=(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[`4esn`:usn2]->(`3esn` :_usn4) On Match Set `8esn` =[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] With Distinct #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Order By Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[..[#usn7 In True Contains 's_str' Contains $usn1 Where Count(*) Ends With usn1]][..Filter(usn2 In 7[12] Where #usn7[0.e0..]['s_str'..])] Ascending,{@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Asc,usn2[1.e1] Descending Skip $``[01234567..][.0..] With Distinct *,$`1esn` Starts With Count(*) Limit `7esn`[..$`6esn`] Union All Merge ((:_usn4{`1esn`:0e0 =~0Xa =~$999})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(`` :`5esn`{@usn5:123456789 =~@usn6})<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null})) Merge (_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]}) On Create Set `7esn` ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]} On Match Set [_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789|9e1 Ends With Count(*) Ends With $7]._usn4 =$`5esn`[0X7..010][`7esn`..'s_str'],@usn5+=(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},usn2+=999[12e12..$_usn4] Create (((usn2 {`5esn`:$@usn6 Ends With `1esn`})<-[`2esn`? *01..123456789]-(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]})<-[? *7..{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]-(#usn7 :``:usn2)))"), + octest:ct_string("Create ((:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})),(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Optional Match @usn5=(:@usn5{#usn7:12e12 In $`5esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})-[?*]-({`8esn`:`5esn` Contains #usn7 Contains 9e12}) Where 9e1 Contains 12 Return Distinct *,.0 Contains .e12 Contains 0,1e1 Is Null Is Null As usn2 Union Detach Delete 9e0[$`8esn`],`5esn` Contains #usn7 Contains 9e12,12 Is Null Match @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Where 7[0e0..] Detach Delete (`4esn` :#usn7:`5esn`{_usn4:0Xa Ends With $`3esn` Ends With $1000})-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})[[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]|`1esn`[0.12..][@usn6..]]..][{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}..],07 Contains `3esn` Contains `7esn`,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1) Union Create _usn3=((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})-[#usn8:#usn7|@usn5 *123456789..{@usn5:usn2[12.e12..]}]->(`` )<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})),usn2=((`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})) Create usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})),((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Merge (({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8}))"), + octest:ct_string("Delete $0 =~9e1 =~$`2esn` Remove [$`4esn`[0..][999..],$usn2 Is Not Null Is Not Null,$`5esn` In _usn3 In 0.0].`2esn`! Create `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]})"), + octest:ct_string("Remove Filter(`8esn` In 123456789 =~@usn6 Where True[`3esn`]).`8esn`?,Single(`8esn` In 123456789 =~@usn6 Where @usn6 Is Not Null Is Not Null).`1esn`?,Single(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]).`6esn`! Optional Match (({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn4?:@usn6|:`7esn`]-({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn3?:_usn3|:`7esn`]->(`3esn` {`8esn`:`7esn` In 010 In usn1})) Where _usn3 Ends With 7 Ends With $`1esn` Merge (@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`}) On Create Set All(usn2 In 7[12] Where `2esn`[$12..]).#usn8? =[#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3],Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3|01 In $@usn6).`7esn`? ={`3esn`:.e1[..\"d_str\"][..$123456789]},[$`5esn` =~usn1,@usn6 Contains .12 Contains $usn1,999 In #usn8 In $``]._usn3 =[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )] On Match Set `5esn` =0.e0[0X0123456789ABCDEF..]"), + octest:ct_string("Remove {`6esn`:Null =~`6esn`}._usn3!,[usn2 In False[$usn1][0x0] Where `4esn` Starts With 0e0].`6esn`!,[010[`5esn`],0Xa[..Count ( * )][..$123456789]]._usn3 Unwind [#usn8 In `7esn` Where .e0 Starts With $@usn6 Starts With $7|1000[12e12][`5esn`]] Ends With [`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8] Ends With [$``[..\"d_str\"][..$#usn8],$_usn4 Starts With $1000 Starts With 12,#usn7[.e0]] As `8esn`"), + octest:ct_string("Unwind usn2[12.e12..] As usn2 Create `7esn`=((`6esn` :`5esn`)<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`5esn` :`4esn`:`6esn`)) Union Optional Match ``=(((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[`2esn`? *01234567..]->(:`2esn`)-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->({`7esn`:999 In 0e0}))) Create #usn8=((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})<-[`8esn`?:`` *01234567..$usn1]->(:_usn4)),`5esn`=(({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]->(#usn8 :``:usn2)-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}))"), + octest:ct_string("Remove {@usn5:0e0 Starts With 999 Starts With `2esn`,#usn7:Count ( * ) In 0.12}._usn4,Any(usn2 In 7[12] Where 123456789 =~12 =~'s_str').`3esn`?,{`2esn`:`7esn` Is Null}.`6esn`! With Distinct [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`) Optional Match usn2=(`8esn` :`6esn`:_usn3),#usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Union Optional Match `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})),usn2=((#usn7 {`8esn`:`7esn` In 010 In usn1})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})) Create (#usn7 {`6esn`:$`2esn` Contains Count(*)})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`}) Union All Create (_usn4 :@usn5{usn1:$#usn7 Starts With 01234567 Starts With $0})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1})"), + octest:ct_string("Match ({_usn3:$12[9e0..$999],#usn7:0.0 Contains `3esn` Contains @usn5})-[#usn7?:`7esn`|:`2esn` *..07]-(#usn7 {#usn7:1.e1 Starts With 9e12}),#usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) Create ((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})),(((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[?:_usn4]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1}))) Unwind #usn7[0.12..] As `8esn` Union All Merge `1esn`=((`2esn` {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})) On Match Set (:``:usn2{`4esn`:#usn7 Contains $0 Contains $usn2})<-[:`8esn` *0X7..]->(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2})<-[`2esn`? *01..123456789]-(`2esn` :@usn6).`8esn` =`7esn`[1e1] Delete True Contains 's_str' Contains $usn1 Unwind 12['s_str'][01] As `6esn`"), + octest:ct_string("Detach Delete 0.0 Ends With $`7esn`,123.654 Is Null Is Null,1000 Contains [True Contains 0x0 Contains $_usn3,_usn3 Contains 9e12 Contains `8esn`] Contains [12.0 In 123.654 In _usn4] Detach Delete (`2esn` :usn1:`3esn`)-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})<-[?:`3esn`]-(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})[({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})],0X7 In $#usn7,Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 999 Contains $1000)[(`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8})][#usn8($1000 Is Not Null,$`5esn`[0X7..010][`7esn`..'s_str'])]"), + octest:ct_string("Return Distinct 9e1 Ends With Count(*) Ends With $7 As `6esn` Limit _usn3 Contains 9e12 Contains `8esn` Union All Detach Delete `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)],$0 In `3esn` In 07 Unwind .0[$``..0X7] As usn1"), + octest:ct_string("Unwind True[$_usn3..] As usn2 Union Return Distinct $`3esn`[$_usn4..0Xa] As #usn7,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa) As `3esn`,$`5esn`[$`3esn`..] As `4esn` Limit $`` Is Not Null Is Not Null Union All Merge (((:#usn8:`1esn`{_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(`5esn` {`4esn`:0x0[usn1..usn1],usn1:$`5esn`[0X7..010][`7esn`..'s_str']})<-[? *..010{#usn8:False Is Null}]->(#usn7 {#usn7:1.e1 Starts With 9e12}))) On Create Set {usn1:$_usn4 Starts With $1000 Starts With 12}.@usn6! =[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])] On Match Set [$usn2 =~9e1,$`6esn` Is Null].`8esn`? =(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),usn2 =$@usn5 Ends With @usn5 Ends With 0xabc,#usn8+=$`1esn` Starts With Count(*) With `1esn`[`3esn`..],(`3esn` {usn2:00[False..0e0]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null})<-[@usn6?:`8esn` *0..01]->(`5esn` :`4esn`:`6esn`)[[12.0 Starts With $`2esn` Starts With .e1]..] Skip 07 In 0Xa In usn1 Limit 010 Is Null With Distinct 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] As #usn8,(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null},$#usn7 =~`2esn` As `4esn` Limit Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null)"), + octest:ct_string("Unwind 9e1 In $#usn7 In Count(*) As #usn7 Remove #usn8(Distinct 0X0123456789ABCDEF Contains 12e12 Contains 12.e12,Count(*) Starts With usn2 Starts With `7esn`).usn1,Single(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..]).#usn7?,Any(_usn4 In 12e12 In 123456789 Where `3esn`[7..0.e0][0.0..123456789]).`8esn`! Merge `6esn`=(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Union All Remove [00[..$`8esn`][..7],_usn4 Starts With `` Starts With 1000,.e0].`1esn`?,_usn3:``:usn2 With Distinct 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] As #usn8,(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null},$#usn7 =~`2esn` As `4esn` Limit Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Return *,1e1 Contains 0.e0 Contains 9e1,`1esn` Starts With 9e1 As `6esn` Order By 010 Contains .e1 Asc,(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})<-[#usn7 *01..123456789]->(`6esn` :usn1:`3esn`) Ends With Extract(#usn8 In `7esn` Where 9e12[..1e1][..'s_str']) Ends With [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123.654 Is Not Null|$`2esn`[.0..][0.0..]] Descending"), + octest:ct_string("Detach Delete `7esn`[$usn1..]['s_str'..],None(#usn8 In `7esn` Where $`3esn` Contains $`1esn`) Starts With #usn8(0x0[Count(*)..@usn6][Count(*)..0Xa]),(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`) Is Null Merge ({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) On Match Set _usn3 =Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] Remove Any(`6esn` In $`6esn`[``..][Count(*)..] Where False Contains 0 Contains $`6esn`).usn1!,{`1esn`:`1esn`[$@usn6][07]}.`1esn` Union Unwind $@usn6[_usn3..][$999..] As `4esn` Optional Match `8esn`=(:`4esn`:`6esn`{usn2:$`8esn` Is Not Null Is Not Null})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Where $999 Ends With .e0 Union All Unwind $123456789[.0..] As `7esn`"), + octest:ct_string("Merge @usn6=((({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}))) On Match Set `1esn` =Filter(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12])[..Extract(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])][..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]],#usn8(Distinct 12.0[$1000..][#usn7..],0xabc In Null).`2esn` =0.e0 Starts With usn1 Union All Create #usn7=(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}),({`1esn`:1.e1[`8esn`]})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->({usn1:$123456789 In 0.12}) Return Distinct `2esn` Starts With 12.e12 Starts With 12.0 As #usn8,$_usn3 Is Not Null Is Not Null Skip `1esn`[$@usn6][07] Limit $1000 Is Not Null"), + octest:ct_string("Delete 0xabc =~@usn5 =~$usn1,[$usn1 Ends With _usn4 Ends With `2esn`][@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)..[#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1]][Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..])..Extract(#usn7 In 9e1[$`1esn`..] Where $999[``])],1000[$7..][_usn4..] With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Order By 1.e1 In 1000 In _usn3 Desc,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Descending,123.654 Is Null Is Null Asc Where _usn4[`7esn`] Union All Unwind Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..]) =~[_usn4 In 12e12 In 123456789 Where .0 Ends With Count ( * )|$`1esn` In .e0] As @usn5 Merge @usn6=((`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[@usn5?:usn2 *00..0Xa{usn2:$usn2[`4esn`..9e12]}]->(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->(usn2 :usn1:`3esn`)) On Match Set [#usn8 In `7esn` Where 01 Ends With 0Xa Ends With 0X7|`8esn` Contains Count(*) Contains $#usn7].``? ={`5esn`:$`1esn` In .e0,``:`6esn` Ends With Count ( * ) Ends With Count ( * )} Is Null Is Null,`8esn`+=$7 Is Null,`7esn` =_usn4 In #usn7"), + octest:ct_string("Match `4esn`=((@usn5 {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})),_usn3=(`8esn` :`2esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`6esn`]->({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) Union With Distinct 9e0[..123456789][..$`3esn`] As usn1 Limit 0x0[12e12..$`7esn`] Where usn1 Starts With 00 Merge (((`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})-[`5esn`?:`7esn`|:`2esn` *0x0..]-(:_usn4{`1esn`:#usn7 Contains $0 Contains $usn2,`4esn`:999 Ends With $`` Ends With 0X0123456789ABCDEF})<-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Union All Match usn1=(({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) With $`1esn` Contains 1e1 Contains @usn6,`2esn`(Distinct $`3esn`[$_usn4..0Xa],$`8esn`[123456789..][$@usn5..]) Contains Single(`3esn` In 9e1 Contains $999 Where 0Xa Ends With $`3esn` Ends With $1000) Order By `3esn`[0X0123456789ABCDEF..][07..] Descending,{_usn4:0.0 Is Not Null,`3esn`:`5esn`[..True][..0.e0]}[(`` {#usn8:$12[9e0..$999]})-[`3esn`?:`7esn`|:`2esn`]-(`3esn` {``:9e1 Is Null,usn1:9e0[Count(*)..0.12][$`1esn`..12.0]})..All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])] Descending Skip {`6esn`:$#usn7 =~`2esn`,`4esn`:True[$_usn3..]}[(:`1esn`:_usn4{#usn8:00[12..$`6esn`],@usn6:usn1[..$@usn6][..00]})-[`2esn`:`4esn`|@usn5 *01234567..]-(:`5esn`{_usn4:12 Starts With #usn7 Starts With 0Xa,#usn7:999 Is Null Is Null})-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})..Filter(@usn6 In 010[`5esn`] Where `7esn`[1e1])][Any(@usn6 In 010[`5esn`] Where False[$`4esn`..])..Extract(@usn5 In 's_str'[0..] Where `7esn` In 010 In usn1)] With Distinct *,``[..False][..`3esn`],(@usn6 :`8esn`)<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`}) Ends With #usn8(Distinct 12.e12 Contains #usn7 Contains $_usn4,01[`3esn`..][Count(*)..]) Ends With [`5esn`[..True][..0.e0],12 In $usn1 In 7,$`8esn`[123456789..][$@usn5..]] As `5esn` Order By $`1esn` Starts With $`4esn` Starts With $_usn3 Asc,01234567 In $@usn6 In $#usn7 Desc Skip 1000 Ends With `7esn` Limit usn2 Starts With .0"), + octest:ct_string("Create ((:`5esn`{`8esn`:$`1esn` Starts With Count(*),_usn3:usn1[...e12][..1.e1]})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(`4esn` :_usn4)) With *,Filter(`5esn` In 0X7 In $#usn7 Where $@usn5 Starts With `5esn` Starts With 01234567) Is Null Is Null,$@usn6[$`8esn`..][123456789..] As @usn6 Order By 0X0123456789ABCDEF In $usn2 In `4esn` Descending,.e0 Ends With $#usn7 Ends With False Desc Where .12[..usn2][..12e12] Create `3esn`=((:_usn3{_usn3:$`3esn`[.e1][_usn4]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:`5esn`)<-[ *01234567..]->(#usn8 :`8esn`))"), + octest:ct_string("With Distinct $#usn7[..9e0][..123.654] Order By 0.0[..Count ( * )][..`1esn`] Desc Limit 0x0 In 0.e0 In #usn8 Union Unwind {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01}[#usn8(False Contains 0 Contains $`6esn`,'s_str' Starts With 1e1 Starts With $0)..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})][(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(`4esn` :`6esn`:_usn3)..[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]]] As `4esn` Create (((`7esn` )<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2))),`5esn`=(({@usn5:``[9e12][$999]})-[usn2{``:$`1esn` =~999}]-(:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0})) Create _usn3=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})"), + octest:ct_string("Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),Single(_usn4 In 12e12 In 123456789 Where False Is Null)[[$usn1,_usn4 Contains `` Contains 1.e1]][(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]})] With Distinct *,$`1esn`[07..] As ``,`` Is Null As `7esn` Skip $1000 Is Not Null Unwind @usn6[123.654..][0x0..] As usn1 Union With $999 =~.0 As usn2 Limit 's_str' Ends With _usn4 Ends With 0e0 Where 0Xa[$`8esn`..][$_usn4..] With Distinct *,@usn6[9e12],$`3esn`[..0xabc][..$7] Skip All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) Limit Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null Where 1000[12e12][`5esn`] Union Delete 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2],$`3esn` Ends With 1000,[$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..] Remove All(@usn6 In False Contains 0 Contains $`6esn` Where usn1[False..])._usn3! Remove `8esn`:``:usn2"), + octest:ct_string("With *,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Where .e1[12.0..] Create @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Return Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By 1000[$`2esn`..] Asc"), + octest:ct_string("Remove [Count(*) Starts With usn2 Starts With `7esn`,07[$`2esn`..9e12][$`4esn`..9e12],9e1 Is Not Null Is Not Null].`2esn`?"), + octest:ct_string("Remove Any(_usn4 In 12e12 In 123456789 Where 9e1 Is Not Null Is Not Null).#usn7?,Single(usn2 In 7[12]).@usn5 Union All Merge (`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-({`1esn`:#usn7[0]}) On Match Set `1esn` =0x0[@usn6..][01..],`5esn`(Distinct $#usn7 Contains $`7esn` Contains .e12).@usn6! =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`) Is Null Create (((`` :#usn8:`1esn`{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1})<-[_usn3?:_usn3|:`7esn`]->(#usn7 )<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(`5esn` :`3esn`))),((#usn7 :_usn3)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) Match (((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})))"), + octest:ct_string("Remove [_usn4 In 12e12 In 123456789 Where 1.e1 =~.12|.12 Contains $999].#usn7 Create `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),({_usn3:@usn6 Contains .12 Contains $usn1}) Create (#usn7 :@usn6),`7esn`=(((:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})<-[`1esn`?:usn1|`4esn` *00..0Xa]-(`6esn` )<-[? *12..{#usn7:`6esn` Ends With _usn4 Ends With False,usn1:1000[12e12][`5esn`]}]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}))) Union All Merge `1esn`=(`` {#usn7:#usn8 Is Not Null Is Not Null})<-[`5esn` *0xabc]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Unwind $1000[$@usn6][$_usn4] As `6esn` Detach Delete Null Ends With _usn4 Ends With 0.0 Union All Remove None(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null).`3esn`? Unwind \"d_str\"[#usn8] As @usn5"), + octest:ct_string("Create `4esn`=(({#usn7:$@usn6[$0..9e12][.e12..Null]})) Return Distinct $@usn6[.0..][0e0..] Order By $`8esn` Is Not Null Is Not Null Descending,Null Ends With _usn4 Ends With 0.0 Ascending Limit .e0"), + octest:ct_string("Create ``=({usn2:$`2esn` Is Null,#usn8:.0 Is Null Is Null})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]}),`8esn`=(((`4esn` :`4esn`:`6esn`)<-[ *..07{`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn3{@usn5:$1000 Starts With $`7esn`})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]}))) With *,$`5esn` Is Not Null,usn2 Contains $0 Contains .0 Order By 12.0 Ends With `2esn` Ascending,01234567[$0..][0..] Descending,$12 In True In 1.e1 Desc Skip 9e0[Count(*)..0.12][$`1esn`..12.0] Where `7esn` Union All Unwind ({`6esn`:usn1[..$@usn6][..00]})-[`6esn`?:`1esn`|`3esn` *01..123456789]-({`2esn`:`7esn` In 010 In usn1,`8esn`:$0[123.654..0.e0]}) In [$``[7]] In `6esn`(#usn8 Is Not Null Is Not Null) As usn1"), + octest:ct_string("Delete [@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]],[$`6esn`[1.e1][$_usn3],0Xa Ends With $`3esn` Ends With $1000] Ends With (usn2 :_usn4)-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-({`8esn`:usn2 Starts With .0,@usn5:Count(*) In 12 In `6esn`}),12.e12 Is Not Null Is Not Null Unwind Count ( * ) Ends With `6esn` Ends With 's_str' As _usn3 With *,0xabc Is Null Is Null,usn2 =~$`` =~$`8esn` As `2esn` Skip 0 Ends With Count(*) Ends With False"), + octest:ct_string("Return Distinct $7 Ends With Count ( * ),`6esn` =~Null As `4esn` Order By None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]) Ends With [_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4|0x0[0X7]] Asc,12 Starts With #usn7 Starts With 0Xa Desc Skip .12[01][@usn5] Union Return Distinct `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,0xabc In .12 In 0Xa Descending,.0 Contains .e12 Contains 0 Desc Delete _usn3[12.e12..][`5esn`..]"), + octest:ct_string("Remove Extract(@usn6 In False Contains 0 Contains $`6esn` Where $`5esn`[..00]).usn2 Create (_usn4 :`8esn`{usn1:12.e12[..$`6esn`]}),@usn6=(`2esn` :`1esn`:_usn4)-[?*..]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Remove Filter(usn2 In 7[12] Where $#usn8[12.e12..`8esn`][12.0..0.0]).``,[`8esn` In 123456789 =~@usn6 Where ``[9e12][$999]].@usn5?,`4esn`:`7esn` Union All Merge `7esn`=((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` )) On Create Set `5esn`+=_usn4[$usn1..01234567][123.654..`5esn`],`2esn`+=#usn7 In 0.e0 On Match Set Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]|$``[..\"d_str\"][..$#usn8]).@usn6 =[$usn1[`2esn`..][$`2esn`..]][(`3esn` :usn2)-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})..`2esn`(Distinct $@usn6 Is Not Null Is Not Null,Count ( * ) Ends With $123456789)],None(#usn8 In `7esn` Where ``[7.._usn3]).@usn6? =`6esn`,Any(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])._usn4! =`` Is Null Match (((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[?:_usn4]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1}))),#usn7=(({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[:_usn4 *0..01]-(#usn8 :`2esn`{`1esn`:0x0 Starts With $`6esn`})) Where 123.654 In 12 Return [#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]) As usn2,(`5esn` :@usn6{usn1:'s_str'[0..]})<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})[All(#usn7 In 9e1[$`1esn`..] Where ``[$`3esn`])] As `3esn` Order By @usn6 =~999 =~@usn5 Ascending,$@usn5[..$#usn7] Descending,{`4esn`:12e12 =~$`7esn`} Is Not Null Is Not Null Desc Skip Count(*)[9e12..12.0] Union Merge @usn6=((`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})) On Match Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] Return Distinct $@usn6 Ends With 12.e12 Ends With @usn5 As usn2,``[usn1][`5esn`],`7esn`[..$`6esn`] Order By $@usn6 In @usn6 In 1e1 Desc,.e1[..$`3esn`][..01] Desc Limit Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Merge #usn8=((#usn7 :_usn3$usn1)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})) On Create Set @usn6+=$`1esn` =~1e1 On Create Set Extract(_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789).`8esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1]"), + octest:ct_string("Match ((#usn7 :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})),`2esn`=(((`` :`5esn`{@usn5:123456789 =~@usn6})<-[`2esn`? *01234567..]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}))) With `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By $999 Is Null Is Null Descending,0e0 =~7 =~12.0 Asc Skip 0.e0 Is Not Null Is Not Null Limit Extract(@usn5 In 's_str'[0..] Where usn1 Starts With 00)[..Any(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999)][..[$`5esn`[0X7..010][`7esn`..'s_str']]] Where .e0 Union All Merge ((`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})) On Create Set `6esn` =0e0 Is Not Null,_usn3 =@usn5(Distinct 1e1 Is Not Null Is Not Null,`1esn` Starts With 0xabc Starts With $usn2)[..Extract(`3esn` In 9e1 Contains $999 Where usn2[12.e12..]|.12[01][@usn5])],`7esn`+=12.e12 Contains 9e1 On Match Set {usn2:$@usn6 =~#usn7 =~True,_usn3:07 In `6esn`}.`3esn` =$`5esn`[$`6esn`][`2esn`] Delete [$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],0.0[$@usn5.._usn4],7 Ends With 01234567 Ends With 0Xa Remove [`6esn` In $`6esn`[``..][Count(*)..]|$`4esn`['s_str'..]].@usn6?,(usn2 {`5esn`:$@usn5 In 12e12 In 01})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})-[`7esn`:`4esn`|@usn5 *12..]-(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]}).`5esn`"), + octest:ct_string("Delete Any(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) =~[#usn7 In 9e1[$`1esn`..] Where 0Xa Ends With $`3esn` Ends With $1000|$@usn5 Contains 's_str' Contains \"d_str\"] =~Extract(@usn6 In False Contains 0 Contains $`6esn` Where $`6esn` Starts With .e12 Starts With $`1esn`|12e12 In 123456789),.e0 =~Null,12.e12[..9e1][..$_usn3] Remove None(#usn7 In 9e1[$`1esn`..]).`5esn` Union Optional Match usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})),((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Where $123456789[...12][..@usn6] Detach Delete `2esn`[$@usn6..][Null..],$1000 Starts With $`7esn` Union Merge ``=(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) On Create Set `8esn` =[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] On Match Set Any(#usn8 In `7esn` Where $`3esn` Contains $`1esn`).`8esn`? =0x0 Contains $`6esn` Contains `4esn`,Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where False[$usn1][0x0]|@usn5[0.0..0X7]).usn2! =Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1),`3esn` =12.e12[..$999][..07] Create (((`6esn` :#usn7:`5esn`)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(_usn4 :#usn7:`5esn`))),usn2=((#usn7 {`6esn`:$`2esn` Contains Count(*)})-[?:_usn4]->(`2esn` :usn2))"), + octest:ct_string("Remove `5esn`(Distinct .12[123.654..]).`3esn`,{``:0Xa =~False =~@usn5,`8esn`:.12[123.654..]}._usn4!,Extract(`3esn` In `2esn`[..01][..True] Where 00[01234567][False]|12[$`5esn`..][False..]).`2esn`! Return Distinct [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Any(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`) Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc Skip {`4esn`:999 In 0e0,`6esn`:0.e0['s_str'..][01234567..]} Contains Single(`8esn` In 123456789 =~@usn6 Where 12.e12 Ends With `` Ends With 0) Limit `6esn` Is Null Is Null Union Merge ((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Union All Match (((:`1esn`:_usn4)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[``? *0x0..{`6esn`:$`2esn` Contains Count(*)}]-(`8esn` ))),usn1=((`1esn` {``:0.0 Is Not Null,`1esn`:``[$`3esn`]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]}))"), + octest:ct_string("Detach Delete All(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]) Is Not Null Is Not Null,@usn6[`1esn`..],$#usn7 Ends With 's_str' Ends With 0X7 Match (((`` :#usn8:`1esn`{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1})<-[_usn3?:_usn3|:`7esn`]->(#usn7 )<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(`5esn` :`3esn`))),((#usn7 :_usn3)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) Union Remove {_usn4:``[9e12][$999],#usn8:123.654 In 12}.`5esn`?,{``:`1esn` Starts With 0xabc Starts With $usn2}.`8esn` Optional Match ((:`3esn`{`4esn`:$999[0Xa..][9e1..]})-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]-(:`3esn`{`4esn`:$999[0Xa..][9e1..]})),_usn4=((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})) Where @usn5 Is Null"), + octest:ct_string("Create ((_usn3 :`8esn`{#usn8:False Starts With 0X7 Starts With 01234567})),((`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})<-[? *12..{#usn7:`6esn` Ends With _usn4 Ends With False,usn1:1000[12e12][`5esn`]}]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07})<-[?{`5esn`:123.654[$0..0X7][Null..#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]}]-(#usn7 {`3esn`:1.e1 In 1000 In _usn3,#usn7:`2esn` Starts With .e1 Starts With 9e12})) Delete Count ( * ) Ends With `6esn` Ends With 's_str',Count(*)[$@usn5] Return *,`2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Order By $`2esn` Starts With 0.12 Starts With $12 Ascending,07 In `6esn` Desc,12[..0e0][...e1] Desc Skip #usn8[`6esn`..][$``..] Limit `3esn`[..0X0123456789ABCDEF][..0x0] Union Match usn1=(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[usn1:_usn4]-(:`4esn`:`6esn`),(({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn4?:@usn6|:`7esn`]-({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn3?:_usn3|:`7esn`]->(`3esn` {`8esn`:`7esn` In 010 In usn1})) Where .0[..'s_str'][..01234567] Merge (((`` :#usn8:`1esn`{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1})<-[_usn3?:_usn3|:`7esn`]->(#usn7 )<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(`5esn` :`3esn`))) Create ((:`5esn`{`8esn`:$`1esn` Starts With Count(*),_usn3:usn1[...e12][..1.e1]})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(`4esn` :_usn4)) Union Return Distinct usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Skip $@usn6 Ends With `1esn` Limit 9e1 Ends With Count(*) Ends With $7 Merge _usn4=(`5esn` :``:usn2)-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}) Match @usn6=(usn2 :_usn4) Where `4esn`[$_usn3..$`7esn`]"), + octest:ct_string("Optional Match ((:`3esn`{@usn5:$`5esn` In _usn3 In 0.0})-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]->(:@usn5{#usn7:12e12 In $`5esn`})-[@usn5 *0X7..]->(`` $`6esn`)) Remove [usn2 In 7[12] Where 12e12 =~$`7esn`|.e1[12.0..]].@usn5! Unwind Extract(@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1) Is Not Null As `1esn` Union All With `4esn`[$_usn3..$`7esn`],0e0[``..$1000][$7..12.e12],0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] Order By $_usn4[01..][$_usn4..] Ascending,$@usn5[..$#usn7] Descending With Distinct *,`2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Order By $`2esn` Starts With 0.12 Starts With $12 Ascending,07 In `6esn` Desc,12[..0e0][...e1] Desc Skip #usn8[`6esn`..][$``..] Limit `3esn`[..0X0123456789ABCDEF][..0x0] Remove (@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[? *12..{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7}]->(#usn7 :usn1:`3esn`).`6esn`,[`6esn` In $`6esn`[``..][Count(*)..] Where @usn6 Is Not Null Is Not Null|123.654].`4esn`,_usn3._usn4?"), + octest:ct_string("Merge `7esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)) Detach Delete 12[0e0],$``[01234567..][.0..] Return Distinct Filter(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3]) In ({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) In Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0),.e0 Is Not Null Is Not Null As `7esn`,$`2esn` Ends With `6esn` As usn1 Order By `` Is Null Descending,_usn4(Distinct usn2[07..][.0..]) Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]|$`2esn` Starts With `4esn` Starts With $usn1) Ends With Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) Desc Limit 0.e0 Is Not Null Is Not Null"), + octest:ct_string("Match (`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]-(#usn8 :`6esn`:_usn3)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]}),`4esn`=((`` {#usn7:#usn8 Is Not Null Is Not Null})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})) Where 1.e1 Starts With 9e12 Union All Detach Delete usn1 Ends With 0.0,Count(*)[..@usn6][..`7esn`] With $@usn6[12.0][12.0] Skip `7esn`[$usn2..][$123456789..] Return Distinct @usn5[01][@usn5],9e0 Contains $12 Contains `3esn` As #usn8,{`4esn`:0.0[usn1..],`7esn`:12.0[$1000..][#usn7..]}[Any(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7)..[usn1[..$@usn6][..00],0x0[0X7],$`8esn`[123456789..][$@usn5..]]][[12.e12[..$`6esn`],999 In #usn8 In $``]..Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1)] Order By Null Ends With _usn4 Ends With 0.0 Asc Skip (`1esn` $`4esn`)-[@usn6?:`7esn`|:`2esn`]-({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]}) =~Filter(`3esn` In 9e1 Contains $999 Where 12.0 Is Null Is Null) =~[0xabc In Null] Union Unwind 01[07..][1.e1..] As _usn3 Match `4esn`=((`3esn` {usn2:$usn2[`4esn`..9e12]})<-[?{@usn5:_usn3 Ends With 7 Ends With $`1esn`}]->(_usn3 :_usn4)<-[_usn4?:`3esn`]-(:_usn3{_usn4:.e1[7..][9e0..]})) Merge `2esn`=(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[`4esn`:usn2]->(`3esn` :_usn4) On Create Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null On Create Set #usn7+=`6esn`[$`8esn`][9e1]"), + octest:ct_string("Return Distinct 1.e1[$`3esn`][0Xa] As @usn5 Limit {`1esn`:1e1 Contains 's_str' Contains `3esn`} =~None(#usn7 In 9e0[$1000] Where `6esn`[$1000][`3esn`])"), + octest:ct_string("With (`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})<-[`8esn`? *0Xa{#usn8:$``[True]}]->(:`7esn`{usn2:@usn5 Is Not Null}) Is Null Is Null,$#usn8 Ends With `3esn` Ends With $`` As #usn7,{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]}[#usn7(Distinct $`1esn`[``][07])..None(@usn6 In 010[`5esn`] Where $`3esn` Ends With 01234567)] As _usn3 Order By @usn6 =~999 =~@usn5 Ascending,``[7.._usn3] Descending,All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) Is Not Null Is Not Null Ascending Skip #usn8 Ends With $@usn5 Ends With $7 Limit #usn8[`8esn`..] Create ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)) Optional Match ((:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) Where 12.e12 Starts With \"d_str\" Starts With 9e1 Union All Merge @usn5=(({`8esn`:`5esn` Contains #usn7 Contains 9e12})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`1esn` :`3esn`{#usn8:$usn2[0.e0],`8esn`:$`4esn`['s_str'..]})) On Match Set `4esn`+=@usn5 Is Not Null,@usn6+=.e12[`2esn`..010],#usn7 =$999[``] On Match Set [$0[123.654..0.e0],01234567[Null..$_usn3]]._usn4! ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,None(#usn7 In 9e0[$1000] Where 00[12..$`6esn`]).`7esn`? =`4esn`(Distinct)[`2esn`($`2esn`[..$`3esn`][..12e12])][Extract(@usn6 In 010[`5esn`] Where 1.e1[$usn1]|.e12[..999][..@usn5])],`5esn`+={`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}[Extract(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]|.e1[..$`3esn`][..01])..] Delete $usn1 Starts With 0x0 Starts With #usn8,$@usn6 Ends With `1esn`,Extract(`3esn` In `2esn`[..01][..True] Where 00[01234567][False]|$`3esn` Ends With 01234567) Starts With (_usn4 :_usn4)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}) Starts With Extract(@usn6 In 010[`5esn`] Where $`2esn` Starts With `4esn` Starts With $usn1) Union Return _usn3 Is Not Null Is Not Null As `` Order By Extract(`3esn` In `2esn`[..01][..True] Where 0.0 Is Null Is Null|$usn2[0.e0])[{usn2:@usn5 Is Null,`8esn`:$@usn6 Ends With 123456789 Ends With 12.0}..] Descending,(:_usn4$12)-[`1esn`?:`6esn`|:#usn8 *0Xa]-(usn1 :#usn8:`1esn`)[{`7esn`:$usn2 =~9e1}..] Desc,.12 In `8esn` In $#usn8 Desc Limit 9e1 Contains 12 Detach Delete 0.e0,\"d_str\"[True..],$`3esn` Ends With 01234567"), + octest:ct_string("Optional Match (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3) Where $`4esn`[..$`8esn`][..Null] Remove {`6esn`:Null =~`6esn`}._usn3!,[usn2 In False[$usn1][0x0] Where `4esn` Starts With 0e0].`6esn`!,[010[`5esn`],0Xa[..Count ( * )][..$123456789]]._usn3 Unwind Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null] As #usn7 Union With $`3esn` Ends With 1000,999[..`1esn`][..07] Skip [123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)] Limit [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12] Starts With usn2(01 Is Null) Starts With Filter(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]) Remove _usn4:`2esn` Union All Remove All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..]).@usn6!,Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12).@usn6!,[`8esn` In 123456789 =~@usn6 Where @usn6 Is Not Null Is Not Null|$`5esn` =~$`8esn` =~usn2].`7esn`? Remove (`3esn` {`8esn`:`7esn` In 010 In usn1})<-[:`1esn`|`3esn`{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]}).@usn5,[`8esn` In 123456789 =~@usn6 Where ``[9e12][$999]].@usn5?,(`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]}).`6esn` With _usn3 Is Not Null Is Not Null As `` Skip [$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][None(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..])..] Where .e1[12.0..]"), + octest:ct_string("With $#usn7 =~`2esn` As #usn7,usn1 Ends With 9e0 Ends With 9e0 As @usn5,{`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`}[Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 00[$usn1..])] Order By 0xabc In .12 In 0Xa Descending,$@usn5 Descending Detach Delete [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null),07 Ends With 9e12 Ends With `2esn`,usn1 In `` Match ((:usn2)-[usn2:#usn8|:`3esn`{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}]->(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`2esn` :usn2)),_usn4=((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) Union All Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) Union Return Distinct *,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As `8esn` Optional Match (:`7esn`{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8] Unwind (`1esn` :`3esn`{#usn7:12[..0e0][...e1]})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})[(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null)][{`2esn`:$999 Ends With .e0}..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]] As `8esn`"), + octest:ct_string("Create (((`4esn` :``:usn2)<-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]-({`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[:_usn4{`8esn`:12.e12 Is Not Null Is Not Null,#usn7:@usn6[Null...0][\"d_str\"..Count(*)]}]-(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False}))),usn2=(`6esn` {`2esn`:$`3esn` Ends With 01234567})"), + octest:ct_string("Merge `7esn`=((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})-[#usn8:#usn7|@usn5 *123456789..{@usn5:usn2[12.e12..]}]->(`` )<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})) Union All With *,$#usn7 Ends With \"d_str\" As `7esn` Where 12.e12 Contains 9e1"), + octest:ct_string("Optional Match _usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))),usn1=(_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]}) Union Return *,$`1esn` Contains 1e1 Contains @usn6 Skip 07[_usn3..][`6esn`..] Optional Match _usn4=((:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})),(`2esn` :`1esn`:_usn4)-[?*..]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Delete _usn4[$usn1..01234567][123.654..`5esn`] Union All Create ((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})) Remove `2esn`(#usn7[0.12..])._usn4?"), + octest:ct_string("Return Distinct 010[12.0..`4esn`][``..Count(*)],$`7esn`[123456789..$1000][Count ( * )..$7],$`2esn` Contains Count(*) As `3esn` Order By [$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) Ascending,[usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Ascending Limit 0.e0 Ends With 1.e1"), + octest:ct_string("Unwind usn1 Starts With 00 As _usn3 Union Delete 12.e12 Contains `6esn`,$1000 Is Not Null,`1esn`[$@usn6][07] Optional Match usn1=(({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) Unwind 12 Is Not Null As `6esn`"), + octest:ct_string("Create (@usn5 :`1esn`:_usn4) Detach Delete $_usn3,[Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] Union Unwind 9e1[$``..][0.e0..] As @usn6"), + octest:ct_string("Match `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((:#usn7:`5esn`{`3esn`:Null[..0]})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->(`6esn` :#usn7:`5esn`{_usn3:_usn4 Is Null Is Null})) Where $#usn8 Starts With .e12 Starts With 1.e1 Detach Delete [#usn8 In `7esn` Where .e0 Is Null Is Null] Ends With {usn1:$`4esn`[`6esn`..$12],`4esn`:usn1 Contains 010} Ends With (:``:usn2{``:True[$_usn3..]})<-[`2esn`? *01..123456789]-(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(`1esn` $`4esn`),Extract(`6esn` In $`6esn`[``..][Count(*)..] Where 1.e1 Ends With $_usn4 Ends With #usn7|0xabc =~$@usn5) Contains {`5esn`:1.e1[`8esn`],`1esn`:.e0} Contains {usn1:$123456789 In 0.12} With 01234567 Starts With True Starts With $999 As `6esn`,usn2[..$usn1][..$#usn8] As `8esn` Limit $`5esn` Is Not Null Is Not Null Where usn1 Starts With 00 Union Create ((:`5esn`{`8esn`:$`1esn` Starts With Count(*),_usn3:usn1[...e12][..1.e1]})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(`4esn` :_usn4)) With *,Filter(`5esn` In 0X7 In $#usn7 Where $@usn5 Starts With `5esn` Starts With 01234567) Is Null Is Null,$@usn6[$`8esn`..][123456789..] As @usn6 Order By 0X0123456789ABCDEF In $usn2 In `4esn` Descending,.e0 Ends With $#usn7 Ends With False Desc Where .12[..usn2][..12e12] Create `3esn`=((:_usn3{_usn3:$`3esn`[.e1][_usn4]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:`5esn`)<-[ *01234567..]->(#usn8 :`8esn`))"), + octest:ct_string("Unwind 9e1 =~123456789 =~999 As @usn5 Union Unwind 123.654 Starts With 0X7 Starts With $`4esn` As `2esn`"), + octest:ct_string("With Distinct *,$7[$12..12e12][1.e1..9e1],12[..Count(*)][..$`2esn`] As `4esn` Remove All(`8esn` In 123456789 =~@usn6 Where ``[9e12][$999]).``? Union With `1esn`[`3esn`..],(`3esn` {usn2:00[False..0e0]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null})<-[@usn6?:`8esn` *0..01]->(`5esn` :`4esn`:`6esn`)[[12.0 Starts With $`2esn` Starts With .e1]..] Skip 07 In 0Xa In usn1 Limit 010 Is Null Where Count ( * )[$`5esn`..][$7..] Return Extract(#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null)[All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])..] As `1esn`,$`6esn`[1.e1][$_usn3] As usn1 Order By [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null] Is Not Null Desc Limit Count ( * ) In 0.12"), + octest:ct_string("Merge @usn5=((:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})) Detach Delete 12.e12 =~.0 =~usn1 Union Unwind 9e1 =~123456789 =~999 As @usn5 Union All Optional Match `4esn`=((({#usn7:$`3esn` Ends With 01234567,_usn3:usn1 =~$`7esn`})-[`7esn`?:usn1|`4esn` *00..0Xa{`3esn`:usn1 In ``}]-(usn1 {usn1:$#usn7 Starts With 01234567 Starts With $0})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(_usn3 :`3esn`{_usn3:01[`8esn`..9e12][.12..0]}))),#usn8=(({usn2:`2esn`[..$_usn3]})) Where `2esn`[..$_usn3] Return `6esn`[`5esn`..00],$1000 Is Null Is Null,0.0[usn1..] As `3esn` Limit All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`]"), + octest:ct_string("Delete {#usn8:.0 Is Null Is Null}[..(_usn3 :@usn6{usn2:0Xa =~False =~@usn5,`3esn`:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})][..{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}],Count(*) Is Not Null Is Not Null Remove {`8esn`:$`3esn`[$_usn4..0Xa]}._usn3,@usn5:`6esn`:_usn3,[0.e0[1000.._usn4][.e1..usn1],$`1esn` =~999,07[_usn3..][`6esn`..]].usn1! Union All Detach Delete Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}],Extract(usn2 In 7[12] Where usn1 Starts With 00|`8esn` Contains Count(*) Contains $#usn7) Contains None(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[0.e0]) Contains Extract(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]|$`4esn`['s_str'..]),`` Starts With $123456789"), + octest:ct_string("Match _usn3=((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7 *01..123456789]->(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})),``=((:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[`5esn`:#usn7|@usn5]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) Remove None(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`).@usn6?,[Count ( * ) In True In @usn5,#usn7[0.12..],1000[0e0][1e1]].`3esn`? Union Merge (_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) Merge @usn6=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}) Match (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}))) Where 010 Starts With 0 Starts With 0.0"), + octest:ct_string("Return 12 Contains 1.e1 As `5esn`,Extract(usn2 In 7[12] Where 12e12 Contains `2esn`|`5esn`[$`7esn`..$@usn5])[`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)..],usn2(0X7[.0])[{#usn8:0Xa Ends With $`3esn` Ends With $1000}..][[Null =~`6esn`]..] As `6esn` Merge `8esn`=(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) Union All Remove #usn7:usn2,[07[_usn3..][`6esn`..],$usn1 Ends With _usn4 Ends With `2esn`,False[$`4esn`..]].`3esn`?,[`6esn` Ends With _usn4 Ends With False].`4esn`! Merge ((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) On Create Set #usn8+=[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null),@usn5+=.e0 =~$`7esn` =~0X0123456789ABCDEF,``+=(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) On Match Set `6esn`(Distinct 0Xa[$`8esn`..][$_usn4..],0xabc In Null).`2esn`! =(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[? *..010{#usn8:False Is Null}]->(#usn7 {#usn7:1.e1 Starts With 9e12})<-[:_usn3|:`7esn` *00..0Xa]-(`1esn` $`4esn`)[..[0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]]][..(:`2esn`{_usn3:@usn5[0.0..0X7]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null).`7esn`? =Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])],Extract(`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]).@usn5 =$@usn6 Ends With 123456789 Ends With 12.0 Return Distinct _usn4(Distinct usn2[07..][.0..]) Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]|$`2esn` Starts With `4esn` Starts With $usn1) Ends With Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2),usn1[..$@usn6][..00] As #usn7,(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})[..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})] As `7esn` Order By 0X7[..$`8esn`] Desc,$123456789[12e12..9e0] Descending Union All Return Distinct *,$`7esn`[0.12] Limit 12[..0e0][...e1] Return *,`2esn`[..$_usn4][...12] As `6esn`,`1esn` Starts With 9e1 As `6esn` Order By 01 Ends With 123456789 Desc,1.e1[12.e12..] Desc,\"d_str\" Is Not Null Ascending Skip [#usn7 In 9e0[$1000] Where `6esn`[$1000][`3esn`]][Extract(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1|010 Starts With $`` Starts With 0e0)..] Limit @usn6 =~999 =~@usn5 Unwind 01 Ends With 123456789 As usn1"), + octest:ct_string("Delete #usn7[``],$`2esn`[.0..][0.0..],999 Ends With 999 Ends With `3esn` Union All Unwind 01 Ends With 123456789 As `7esn`"), + octest:ct_string("With Distinct 0[$#usn8..][0x0..]"), + octest:ct_string("With *,_usn4(#usn7 Starts With $123456789 Starts With 12e12) In None(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1) As @usn5,#usn7[`8esn`..usn1][$999..`7esn`] Order By $@usn6[_usn3..][$999..] Asc,[$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa) Asc Limit @usn6[`1esn`..] Where $`1esn` Starts With Count(*) Return *,Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] As `7esn` Skip $0 =~9e1 =~$`2esn` Limit Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..] Match ((`4esn` :`4esn`:`6esn`)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Where usn2 Contains $0 Contains .0"), + octest:ct_string("Delete None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])[..[_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4]] Remove {``:.e12 Ends With 0Xa Ends With 0xabc}.usn2? Union Unwind 999[..`1esn`][..07] As `8esn` Optional Match ((:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]})<-[_usn4?:`3esn`]-(:_usn3{_usn4:.e1[7..][9e0..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})) Optional Match ``=(((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),_usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))) Union All Optional Match `8esn`=(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}),`8esn`=(:`4esn`:`6esn`{usn2:$`8esn` Is Not Null Is Not Null})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Where `7esn` In 010 In usn1 Merge #usn8=((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})) On Match Set [12e12 =~1e1,0X7[..$`8esn`]].`7esn` =1e1 Ends With $`2esn`,`8esn`+=01[$`7esn`..$@usn6] On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``|.12 In `8esn` In $#usn8]._usn4? =7 =~0.12,`6esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null,Any(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]).`3esn`! =(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null"), + octest:ct_string("Merge ((:usn2{``:Count(*)[9e12..12.0],#usn7:`2esn`[$12..]})) Merge `4esn`=(:#usn7:`5esn`{`4esn`:$``[..\"d_str\"][..$#usn8]}) On Create Set #usn8(Distinct 0[$`5esn`],Count(*)[9e12..12.0]).`7esn`! =123.654 In $999 In _usn3 On Match Set `1esn` =0x0[@usn6..][01..],`5esn`(Distinct $#usn7 Contains $`7esn` Contains .e12).@usn6! =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`) Is Null Union All Return Distinct *,[usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null As #usn8 Order By @usn5(Distinct) =~[_usn3[`5esn`..][usn2..],$#usn7 =~`2esn`] =~1.e1 Ascending Skip (:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})-[:`2esn`|`4esn`{_usn3:@usn6[`1esn`..],@usn6:@usn6[9e12]}]->({usn1:$#usn7 =~`2esn`})-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]->(`8esn` :@usn6{`7esn`:0e0[999..$``]})[{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}..][Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 123456789[12])..] Limit 0Xa[010..$0][$`2esn`..999]"), + octest:ct_string("Return Distinct *,00[12e12][$`7esn`],@usn5(Distinct) =~[_usn3[`5esn`..][usn2..],$#usn7 =~`2esn`] =~1.e1 As #usn8 Order By Extract(`3esn` In `2esn`[..01][..True] Where 0.0 Is Null Is Null|$usn2[0.e0])[{usn2:@usn5 Is Null,`8esn`:$@usn6 Ends With 123456789 Ends With 12.0}..] Descending,(:_usn4$12)-[`1esn`?:`6esn`|:#usn8 *0Xa]-(usn1 :#usn8:`1esn`)[{`7esn`:$usn2 =~9e1}..] Desc,.12 In `8esn` In $#usn8 Desc Skip Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[{`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}] Limit `6esn` In .0 In $`` Unwind {`8esn`:usn2 =~7,@usn5:`6esn` Ends With _usn4 Ends With False} Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]] Ends With (_usn4 :_usn4)<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[ *..07{`6esn`:Count(*)[9e12..12.0]}]->(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) As _usn4 Union All Optional Match #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}),((:#usn7:`5esn`{_usn4:$usn2 =~9e1})<-[@usn5?:usn2 *0..01]->(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})) Where 9e1 Starts With Count ( * ) Merge (`2esn` :`1esn`:_usn4)-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6}) On Match Set `5esn`+=010[..7][..`4esn`],(`2esn` :@usn5)-[`5esn`? *01..123456789{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}]-(`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}).`4esn`! =$@usn6 Ends With `1esn`,`6esn` =.0[$``..0X7] Detach Delete 01[`3esn`..][Count(*)..],usn2[07..][.0..] Union All Unwind 0x0[Count(*)..@usn6][Count(*)..0Xa] As _usn3"), + octest:ct_string("Match `2esn`=({@usn5:$`5esn` Is Not Null Is Not Null})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Create `8esn`=(usn2 :`7esn`)-[? *7..{#usn7:`4esn`[123456789]}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )}),_usn4=((`2esn` {`4esn`:1000[12e12][`5esn`],`1esn`:07 Ends With 9e12 Ends With `2esn`})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]-(`1esn` :``:usn2{@usn5:`4esn`[\"d_str\"]['s_str']})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})) Optional Match usn1=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`),`6esn`=(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Union All Delete [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12] Starts With usn2(01 Is Null) Starts With Filter(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),All(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null) Contains [@usn5 In 's_str'[0..] Where `6esn`[..Count ( * )][..$_usn4]] Contains ({usn1:$123456789 In 0.12})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(usn2 ) Create _usn3=((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})-[#usn8:#usn7|@usn5 *123456789..{@usn5:usn2[12.e12..]}]->(`` )<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})),usn2=((`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})) Merge `1esn`=(((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[?:`8esn`*]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}))) On Match Set _usn4 =0Xa In #usn7 In 's_str',`5esn`+=$#usn8 Starts With .e12 Starts With 1.e1,`1esn`+=usn2 In _usn3 On Match Set _usn3+=`6esn`[$``..$_usn3][1000...0],[usn2 In 7[12] Where $@usn6 Ends With 12.e12 Ends With @usn5|0 Ends With 12.e12 Ends With usn2].`1esn` =123.654 Is Null Is Null Union With *,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As `8esn` Where $`7esn`[.e1][12.0]"), + octest:ct_string("Optional Match `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),(`2esn` $`6esn`) Where 7 =~`4esn` Merge ((@usn6 {_usn4:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})) On Match Set `8esn` =Count(*)[9e12..12.0],@usn5+=9e0[Count(*)..0.12][$`1esn`..12.0] Create (`8esn` :#usn8:`1esn`{usn1:0x0 Starts With $`6esn`})"), + octest:ct_string("Detach Delete 0Xa[Count(*)..],$`1esn` =~1e1 Optional Match usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})),((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Where $123456789[...12][..@usn6] Detach Delete (`3esn` :usn2)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null}) Is Null,(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`),Any(#usn7 In 9e0[$1000] Where .e0 Is Null) =~Extract(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0|$`3esn` In $usn2) =~{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789}"), + octest:ct_string("Remove Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0 =~1e1).`8esn`!,[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]|_usn3 Contains _usn4 Contains $@usn5].usn2!,{`4esn`:_usn4[@usn6..][$0..],@usn5:$@usn6 In @usn6 In 1e1}.`3esn`!"), + octest:ct_string("Remove ``:`5esn` Merge `8esn`=(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) On Match Set `3esn`+=[_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1|999 Contains $1000] Starts With Single(`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``),`2esn`+=\"d_str\" In @usn5 In $@usn5 On Create Set `7esn` ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]} Unwind usn1 Starts With 00 As _usn3 Union All Remove usn1:`1esn`:_usn4,[#usn8 In `7esn` Where 12.0 Starts With $`2esn` Starts With .e1|$`6esn`[1.e1][$_usn3]].usn1?,[`5esn` In `7esn`[$usn2..][$123456789..]].``? Optional Match (`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}),`4esn`=({`7esn`:`8esn`[$`4esn`..$#usn8]}) Where $`2esn` =~9e12 Union Unwind 0x0[0.0] As `3esn`"), + octest:ct_string("Create (((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-({`6esn`:9e12 =~@usn6})<-[?:usn1|`4esn` *01..123456789{usn1:.e12[$@usn6..00][01234567.._usn3],`1esn`:`7esn` Contains 9e0}]-(_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`}))),`6esn`=(:`3esn`{@usn6:$`5esn` =~$`8esn` =~usn2,`8esn`:12[..0e0][...e1]}) Create usn2=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})),`8esn`=((`1esn` :``:usn2{@usn5:`4esn`[\"d_str\"]['s_str']})) Union Merge @usn5=(:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']}) On Create Set usn1+=@usn5 Is Null,usn2 =`8esn` =~@usn6 =~$`2esn`,@usn5 =count($`4esn`[`8esn`],`4esn` Is Not Null Is Not Null) =~Filter(@usn5 In 's_str'[0..] Where _usn3[0x0]) Union All Match ((:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) Remove Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5,{`3esn`:9e1 Ends With Count(*) Ends With $7}._usn4! Detach Delete {usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}[[@usn5 In 9e0 Ends With $#usn8 Where 00 Contains Count ( * ) Contains 0x0]]"), + octest:ct_string("Return Distinct (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] As #usn7,1e1 Is Null Is Null As usn2,{`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}[..`2esn`(Distinct 0 Ends With 12.e12 Ends With usn2)][..Filter(_usn4 In 12e12 In 123456789 Where .e1 In 123456789)] As usn1 Match ``=(:_usn3{`7esn`:$999 Ends With .e0})<-[`8esn`?:`2esn`|`4esn`{usn2:#usn8[`6esn`..][$``..]}]-(@usn6 {`6esn`:$`5esn` =~usn1,`5esn`:$`` Starts With $1000 Starts With @usn6})-[?{_usn3:010[`5esn`],_usn4:#usn8 =~.e0}]-(#usn8 :`3esn`{`5esn`:$@usn6 Ends With `1esn`}),`3esn`=((`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) With *,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null Order By .e0 Starts With $@usn6 Starts With $7 Descending Skip [$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa) Union Merge ((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) On Create Set `5esn` =$1000[$`4esn`..False],`6esn` =[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`],`2esn` =12.0 Is Null Create (`6esn` {`2esn`:$`3esn` Ends With 01234567}),usn2=({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2)<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(_usn4 :@usn5) Delete (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3)"), + octest:ct_string("Remove [@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|$`3esn` In $usn2].`5esn`?,[$usn2[0.e0],#usn8 Is Not Null Is Not Null,.12[01][@usn5]].`7esn`! Optional Match ((:`3esn`{`4esn`:$999[0Xa..][9e1..]})-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]-(:`3esn`{`4esn`:$999[0Xa..][9e1..]})),_usn4=((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})) Where @usn5 Is Null Remove Any(usn2 In 7[12] Where 0x0 Ends With 12.0 Ends With `5esn`).#usn8,Filter(#usn7 In 9e0[$1000] Where .e0 Is Null).`2esn`! Union All Match _usn4=((:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})) Where 123456789[12] Merge #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}) On Match Set _usn3:`7esn` On Create Set Single(@usn6 In 010[`5esn`] Where 123.654).`6esn`? =0.e0[0X0123456789ABCDEF..],(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}).`3esn`? =999[..`1esn`][..07],[@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1].`6esn` =`7esn` Starts With @usn5 With Distinct 0Xa In #usn7 In 's_str',`4esn` Starts With 0e0 As `7esn` Skip (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`) Where .e0 Union Detach Delete `` =~.12,[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])],123456789[12] With Distinct $#usn8 Ends With `` Ends With 999 As `5esn`,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]) Is Not Null Is Not Null As _usn3 Order By _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..] Desc,{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Is Not Null Desc,9e0 Ends With $#usn8 Desc Limit 12.0 Starts With $`2esn` Starts With .e1 Where 9e1 Ends With Count(*) Ends With $7 Merge `1esn`=(`6esn` {``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]})-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(`3esn` :usn2{`6esn`:#usn8 Is Null}) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]]"), + octest:ct_string("With Distinct [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`) Merge (_usn3 :`7esn`) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] On Create Set #usn7+=Null[.12..12e12],Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]).`1esn`! =[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)],@usn6 =usn2[1.e1] Union All Remove (`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[usn1? *01234567..{@usn5:01[`3esn`..][Count(*)..]}]->(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null}).#usn7,[`8esn` In 123456789 =~@usn6 Where 0x0[@usn6..][01..]|#usn7[.e0]].usn2?,Extract(#usn7 In True Contains 's_str' Contains $usn1 Where `8esn`[..$#usn8]).`2esn`! Unwind 9e1 =~123456789 =~999 As @usn5 Create #usn7=(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}),({`1esn`:1.e1[`8esn`]})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->({usn1:$123456789 In 0.12}) Union Unwind Any(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) =~[#usn7 In 9e1[$`1esn`..] Where 0Xa Ends With $`3esn` Ends With $1000|$@usn5 Contains 's_str' Contains \"d_str\"] =~Extract(@usn6 In False Contains 0 Contains $`6esn` Where $`6esn` Starts With .e12 Starts With $`1esn`|12e12 In 123456789) As #usn7 Remove Extract(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1|010 Starts With $`` Starts With 0e0)._usn3!,1000.`2esn`? Remove None(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`).@usn6?,[Count ( * ) In True In @usn5,#usn7[0.12..],1000[0e0][1e1]].`3esn`?"), + octest:ct_string("Return *,1e1 Is Not Null Is Not Null"), + octest:ct_string("Remove All(@usn6 In 010[`5esn`] Where 1.e1[$usn1]).`6esn`!,Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5 Detach Delete 0xabc[$999..][$usn1..],12[..$999][..$`2esn`],Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|$`8esn`[..True][.._usn4]) Ends With Single(_usn4 In 12e12 In 123456789 Where $usn2 Is Not Null Is Not Null) Create (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})))"), + octest:ct_string("Return Distinct `1esn` Starts With 0X7 Starts With \"d_str\",$`4esn`[..$`8esn`][..Null] As #usn7,None(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With Filter(`5esn` In 0X7 In $#usn7 Where 0x0[0X7]) Ends With Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) As `4esn` Order By [123456789 =~12 =~'s_str',`2esn` Starts With 12.e12 Starts With 12.0,$`8esn`[..True][.._usn4]] Contains Filter(#usn7 In 9e0[$1000] Where `7esn`) Asc,None(#usn8 In `7esn` Where $`3esn` Contains $`1esn`) Starts With #usn8(0x0[Count(*)..@usn6][Count(*)..0Xa]) Ascending,_usn4 Contains $_usn3 Contains .e1 Asc With usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Skip $@usn6 Ends With `1esn` Limit 9e1 Ends With Count(*) Ends With $7 Delete $`6esn` Is Not Null Is Not Null,@usn5 Starts With 9e0 Starts With 010 Union All Create (:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']}),((#usn7 :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8}))"), + octest:ct_string("Unwind 0.0 Contains `3esn` Contains @usn5 As @usn5 Union All Remove Single(#usn7 In 9e1[$`1esn`..] Where 999 In #usn8 In $``).``,Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7]|#usn8 =~.e0).`2esn`?,{usn2:Count ( * )[@usn6],`3esn`:$_usn4[$`5esn`][`7esn`]}.`7esn`? Delete 12 Contains 01234567,[@usn5[$`6esn`..][$999..],`` Starts With $123456789] Is Null,`6esn` Is Null Is Null Remove [0x0[0X7]].``!,(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}).`4esn`,{@usn5:01[`3esn`..][Count(*)..]}.`8esn`? Union Return $123456789 Starts With 0.12 Starts With Null As _usn3 Order By #usn7[``] Desc,{`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Ascending,`` Is Null Descending Skip 0X0123456789ABCDEF In $7 Limit All(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0)[(:#usn7:`5esn`)<-[#usn8? *0Xa]-(`5esn` :`5esn`{#usn7:``[$`3esn`]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc})..] With Distinct Count(*) In #usn8 In \"d_str\" As ``,$`4esn` Starts With 0 Starts With `7esn` As usn2 Order By $7 Starts With 12.e12 Starts With $@usn6 Desc,1.e1 Is Null Is Null Descending Skip $`1esn`[``][07] Limit `5esn` Contains 1.e1 Contains .e12 Where 9e1 Contains $999 Detach Delete All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`],usn2 Ends With $`4esn`"), + octest:ct_string("Return *,All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null) As `8esn` Order By 12.0 Ends With `2esn` Descending,$`4esn`[`4esn`][Count(*)] Descending,$`1esn`[07..] Desc Skip 9e12[..123.654][..999] Merge @usn6=((`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})) On Match Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] Union Merge usn2=(@usn5 :@usn6{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[`8esn` *0xabc]-(:_usn3{_usn4:.e1[7..][9e0..]}) On Match Set None(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`).`7esn`! =07[..07][..0X7],`4esn`:`1esn`:_usn4 Merge `6esn`=(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})"), + octest:ct_string("Merge _usn3=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) Optional Match _usn4=({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}) Where 0x0[@usn6..][01..] Unwind $12 Starts With $usn1 As `4esn`"), + octest:ct_string("Match ((:`1esn`:_usn4{_usn3:0x0 Contains $`6esn` Contains `4esn`,@usn6:0Xa In #usn7 In 's_str'})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]})),(((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[?:_usn4]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1}))) Optional Match (:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]}) Where 12e12 In $`5esn` Union All Return $_usn4 Starts With $1000 Starts With 12,_usn4 Starts With `` Starts With 1000,Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null) Is Not Null Is Not Null As usn1 Order By [`5esn` Contains `1esn` Contains usn1,$@usn5 Ends With @usn5 Ends With 0xabc] Is Null Is Null Asc Create ((({`6esn`:`6esn`[..Count ( * )][..$_usn4],`7esn`:#usn7 Contains $0 Contains $usn2})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[`7esn`?]->(#usn8 :@usn5{_usn4:$#usn7 Contains $`7esn` Contains .e12}))),usn2=(_usn4 {_usn4:Null[..010][..1000],_usn3:.0 Is Null Is Null})-[`2esn`?:usn2{_usn3:0Xa In #usn7 In 's_str'}]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null}) Union All With Distinct {`8esn`:9e12 =~@usn6,`1esn`:999 Contains 0 Contains $`5esn`}[`4esn`()],(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null} Order By [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Desc Limit $7 Starts With $`4esn` Merge (({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})) Merge @usn6=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null})"), + octest:ct_string("Create (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3) Remove ``:`5esn` Detach Delete True Contains 's_str' Contains $usn1,$`5esn`[..00] Union All Unwind 7 =~0.12 As `3esn` Remove (#usn7 {_usn3:0.e0 Starts With .0 Starts With 123456789,_usn4:'s_str' Ends With `7esn` Ends With 010})<-[#usn7? *0X7..{`1esn`:$1000 Starts With $`7esn`}]->({`5esn`:'s_str'[0x0..1.e1],@usn6:.e0[01234567..$`8esn`]})<-[:`1esn`|`3esn`{`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6}]-(`` :`6esn`:_usn3{_usn3:$`6esn`[1.e1][$_usn3]}).`3esn`? Unwind True[$_usn3..] As usn2 Union Optional Match `8esn`=(:_usn3{usn1:#usn7[..07]})-[?:`7esn`|:`2esn`{@usn5:usn2[1.e1],@usn6:$#usn8 Starts With .e12 Starts With 1.e1}]->({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7}) Remove (:#usn8:`1esn`{usn2:$`7esn`[.e1][12.0],``:$`1esn` Contains 1e1 Contains @usn6})-[`` *1000..0X0123456789ABCDEF]-(`` :`7esn`)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:usn2{`6esn`:#usn7[$`3esn`..$1000][0.0..`2esn`],``:010 Starts With 0 Starts With 0.0}).`4esn`!,Extract(`5esn` In 0X7 In $#usn7 Where @usn6 Is Not Null Is Not Null).@usn5?,Any(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).#usn7! Return 0.e0[..$7] As _usn3,0xabc =~@usn5 =~$usn1 Skip $@usn6[00] Limit `2esn`(0e0 =~0Xa =~$999,@usn5 Contains 9e0)[(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})..][Any(`3esn` In `2esn`[..01][..True] Where 0.e0[..$7])..]"), + octest:ct_string("Unwind $@usn6 Ends With 123456789 Ends With 12.0 As `3esn` Merge ((@usn6 :@usn6{_usn4:#usn8 Is Not Null})-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-(`5esn` :#usn8:`1esn`)<-[`1esn`:`8esn` *00..0Xa{#usn8:0X7['s_str'..][01..],``:$usn2 =~1.e1 =~usn1}]->(:_usn3{_usn4:.e1[7..][9e0..]})) On Match Set (:``:usn2{`4esn`:#usn7 Contains $0 Contains $usn2})<-[:`8esn` *0X7..]->(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2})<-[`2esn`? *01..123456789]-(`2esn` :@usn6).`8esn` =`7esn`[1e1] On Create Set `7esn` ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]} Create `4esn`=((`6esn` :#usn8:`1esn`{`6esn`:usn1[..$@usn6][..00]})-[@usn5:_usn4 *0x0..]-(_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})),(:`4esn`:`6esn`{`2esn`:12e12 =~1e1,``:12.e12 Contains #usn7 Contains $_usn4})<-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]-(:`6esn`:_usn3)<-[@usn5? *999..{usn1:.e12[$@usn6..00][01234567.._usn3],`1esn`:`7esn` Contains 9e0}]-({@usn6:999 Contains 0 Contains $`5esn`,#usn7:999[..`1esn`][..07]}) Union Merge usn1=(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[usn1:_usn4]-(:`4esn`:`6esn`) On Match Set _usn3 =$``[01234567..][.0..] Union All Remove #usn7:@usn6,[#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0]._usn4?"), + octest:ct_string("Return Distinct *,1.e1 Ends With $#usn7 As usn2,@usn5[01][@usn5] Skip $`5esn` Limit (`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Is Not Null Union Unwind 9e12 =~@usn6 As usn1 Merge _usn3=((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(_usn3 :usn1:`3esn`)<-[`7esn`? *..010{usn2:12 Ends With Count ( * ),#usn8:`8esn` Contains `2esn` Contains .0}]->({`6esn`:'s_str' Contains 12.e12 Contains $`4esn`})) On Match Set #usn8+=Count(*)[$@usn5],@usn6 =0 =~1e1,`2esn`+=Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) On Match Set `8esn`+=#usn8[..`8esn`],_usn4 =0e0 Ends With 07 Ends With $`8esn`"), + octest:ct_string("Create ((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(:`8esn`{``:$`1esn` =~999})) Union All With Distinct [`8esn`[..$#usn8],$1000 Starts With $`7esn`,0xabc In 010 In #usn7] Is Null Is Null As #usn7,9e1[@usn5][$usn1],None(`3esn` In `2esn`[..01][..True] Where usn1 In ``)[None(usn2 In 7[12] Where 12e12 =~$`7esn`)..] Limit None(@usn5 In 's_str'[0..] Where 1000[..`2esn`][..$@usn6])[{usn2:`2esn` =~.e12 =~0X0123456789ABCDEF,@usn6:`2esn` Is Null}][(#usn7 {_usn3:0.e0 Starts With .0 Starts With 123456789,_usn4:'s_str' Ends With `7esn` Ends With 010})<-[`7esn`{`4esn`:$_usn4[$`6esn`..],`4esn`:Count(*) In #usn8 In \"d_str\"}]->(#usn8 :``:usn2)<-[`1esn`:`8esn` *00..0Xa{#usn8:0X7['s_str'..][01..],``:$usn2 =~1.e1 =~usn1}]->(:_usn3{_usn4:.e1[7..][9e0..]})] Where $`5esn` =~usn1"), + octest:ct_string("Unwind @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])] As usn2 Return Distinct *,False Is Null Order By 0X7[..$`8esn`] Desc,[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null Ascending,12.e12 Ends With `` Ends With 0 Desc Skip Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0)[..{`5esn`:0Xa[$`8esn`..][$_usn4..],_usn3:00[$usn1..]}][..Any(@usn6 In 010[`5esn`] Where 1.e1[$usn1])] Union With Distinct [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`) Merge (_usn3 :`7esn`) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] On Create Set #usn7+=Null[.12..12e12],Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]).`1esn`! =[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)],@usn6 =usn2[1.e1]"), + octest:ct_string("Create #usn8=(`5esn` :`7esn`)<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1)<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]}) Union Create usn2=((_usn3 :_usn4)-[`3esn`:`2esn`|`4esn`]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[:@usn6|:`7esn` *01..123456789]->(:`6esn`:_usn3{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}))"), + octest:ct_string("Unwind .0 Is Null Is Null As @usn6 Unwind 999[..`1esn`][..07] As `8esn`"), + octest:ct_string("Remove [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`].@usn6?,[usn2 In False[$usn1][0x0] Where 999[@usn5..][Null..]|0.e0['s_str'..][01234567..]].``!,(:`1esn`:_usn4{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]})<-[@usn5:`3esn` *0Xa{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`}]->(:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})._usn4? Unwind [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null] Is Not Null As `3esn` Remove [#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3]|1.e1 Starts With 9e12].#usn8?,usn1:usn2,Single(#usn8 In `7esn` Where 07 Contains `3esn` Contains `7esn`).@usn5! Union Create `3esn`=((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})),((`5esn` :@usn5{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) Create (usn2 :``:usn2) Union All Merge ((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) On Create Set #usn8+=[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null),@usn5+=.e0 =~$`7esn` =~0X0123456789ABCDEF,``+=(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) On Match Set `6esn`(Distinct 0Xa[$`8esn`..][$_usn4..],0xabc In Null).`2esn`! =(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[? *..010{#usn8:False Is Null}]->(#usn7 {#usn7:1.e1 Starts With 9e12})<-[:_usn3|:`7esn` *00..0Xa]-(`1esn` $`4esn`)[..[0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]]][..(:`2esn`{_usn3:@usn5[0.0..0X7]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null).`7esn`? =Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])],Extract(`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]).@usn5 =$@usn6 Ends With 123456789 Ends With 12.0 Return *,Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null As usn1,00 Contains Count ( * ) Contains 0x0 As `5esn` Limit .e0"), + octest:ct_string("Remove Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 1.e1[12..][$`4esn`..]).`7esn`? Detach Delete `2esn`[$@usn6..][Null..],$1000 Starts With $`7esn` Unwind Count ( * ) =~0e0 =~`8esn` As `8esn`"), + octest:ct_string("Unwind 010 Starts With 0 Starts With 0.0 As `5esn` Unwind 07[_usn3..][`6esn`..] As #usn8 Return Distinct Extract(`6esn` In $`6esn`[``..][Count(*)..] Where $@usn5 Starts With `5esn` Starts With 01234567|0.e0[..$7]) Is Null Is Null,`7esn`[1e1] Order By `2esn`[$12..] Desc,usn2 Is Null Is Null Ascending Skip [$@usn6 =~#usn7 =~True,$`1esn` Contains 1e1 Contains @usn6,9e1[..123456789]] Is Null Limit 0Xa =~False =~@usn5"), + octest:ct_string("Unwind 9e1 Contains $999 As `8esn` Union Merge ((#usn7 :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) On Match Set `6esn`+=[@usn5 In 's_str'[0..] Where @usn6 In .12 In `3esn`] Ends With Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $`5esn` Is Not Null) On Match Set {#usn8:$`5esn` =~$`8esn` =~usn2}.`4esn`! =999[@usn5..][Null..],`4esn`:`1esn`:_usn4 Unwind 9e1 =~123456789 =~999 As ``"), + octest:ct_string("With Distinct $usn2,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Order By 's_str' Contains 12.e12 Contains $`4esn` Descending,.e12 Ends With 0Xa Ends With 0xabc Descending Skip #usn7 =~9e12 Union Remove [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 1.e1 Ends With $_usn4 Ends With #usn7|False Starts With 0X7 Starts With 01234567]._usn4! Remove Any(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7])._usn3,`7esn`:@usn5"), + octest:ct_string("Unwind #usn8(1000[12e12][`5esn`],9e1 Contains 12)[Extract(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0)..`1esn`(Distinct `3esn`[7..0.e0][0.0..123456789],`1esn` Starts With 0xabc Starts With $usn2)][Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 9e0[Count(*)..0.12][$`1esn`..12.0])..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12)] As @usn6 Remove None(`5esn` In 0X7 In $#usn7 Where usn1 =~$`7esn`).`3esn`!,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $123456789 In 0.12)._usn3?,(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]}).`6esn`? With *,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null Order By .e0 Starts With $@usn6 Starts With $7 Descending Skip [$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa) Union Remove #usn8(Distinct 0X0123456789ABCDEF Contains 12e12 Contains 12.e12,Count(*) Starts With usn2 Starts With `7esn`).usn1,Single(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..]).#usn7?,Any(_usn4 In 12e12 In 123456789 Where `3esn`[7..0.e0][0.0..123456789]).`8esn`! Return $`4esn`[`4esn`][Count(*)] As `8esn`,$usn1[`2esn`..][$`2esn`..] As _usn3,_usn4[`7esn`] As usn2 Skip 01[..$`8esn`][..9e0] Limit 0X7[.0] Union All Create ((`1esn` :usn2)),`2esn`=(`5esn` :``:usn2)<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(@usn6 :usn1:`3esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)"), + octest:ct_string("Match (((`` :#usn8:`1esn`{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1})<-[_usn3?:_usn3|:`7esn`]->(#usn7 )<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(`5esn` :`3esn`))),((#usn7 :_usn3)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) Union All Unwind _usn3[`5esn`..][usn2..] As #usn7 Unwind $1000 Starts With $`3esn` Starts With 0.e0 As usn1"), + octest:ct_string("With (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By 1000[$`2esn`..] Asc Where .e0 Contains $#usn8"), + octest:ct_string("Unwind $_usn3 Is Not Null As _usn3 Union All Delete Count ( * ) Ends With `6esn` Ends With 's_str',Count(*)[$@usn5] Optional Match @usn6=(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})-[:@usn5|_usn3 *00..0Xa]-(:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(_usn4 :@usn5) Merge (#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[?:`7esn`|:`2esn`]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]}) On Match Set `2esn` =`3esn`[..0X0123456789ABCDEF][..0x0] On Create Set `2esn` =$@usn5[0.0][0X0123456789ABCDEF],@usn6+=[`5esn` In 0X7 In $#usn7 Where 0.e0['s_str'..][01234567..]][(`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(usn1 :_usn4{`4esn`:`7esn` Is Null})]"), + octest:ct_string("With Distinct 123.654[$0..0X7][Null..#usn8] As `3esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc,Count ( * )[$`5esn`..][$7..] Desc Skip Extract(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999)[..Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1])] Limit None(#usn7 In 9e0[$1000] Where $_usn3 Is Null)[[0 =~1e1,$#usn8[12.e12..`8esn`][12.0..0.0],$1000 Is Not Null]..] Where $123456789 Contains $#usn8 Contains `` Merge _usn3=({`4esn`:.e1[..$`3esn`][..01]})-[`5esn`:#usn7|@usn5]-(`5esn` :`4esn`:`6esn`) On Create Set usn1 =`3esn`[123456789],`3esn` =9e1[.12][`7esn`]"), + octest:ct_string("Optional Match (_usn3 :`5esn`{#usn8:0xabc In 010 In #usn7}),`3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) Where $#usn7[..9e0][..123.654] Merge usn2=(#usn7 {_usn4:1.e1[`8esn`]})<-[usn2{`2esn`:$12 Starts With $usn1}]->(:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]}) With Distinct *,{`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Skip (`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}) =~[12 In $usn1 In 7] =~Filter(@usn5 In 's_str'[0..] Where 0.e0) Limit `2esn` =~.e12 =~0X0123456789ABCDEF Where 0.12[..$_usn3][..0Xa]"), + octest:ct_string("With Distinct 0Xa Ends With $`3esn` Ends With $1000,Extract(@usn5 In 's_str'[0..] Where 12e12 Is Not Null) =~[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]],$#usn8[@usn6..] As `7esn` Order By (`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Desc,$usn1[Null][`8esn`] Desc,$`5esn` In `2esn` In `2esn` Asc Limit [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Ends With `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Ends With [$`1esn`[``][07],`7esn`] Where _usn3[$`1esn`..] Unwind $_usn4[9e0..][$1000..] As `5esn` Merge (:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Union All Detach Delete @usn5 Starts With $`3esn`,12 Is Not Null,07 Contains `3esn` Contains `7esn`"), + octest:ct_string("Return _usn3 Is Not Null Is Not Null As `` Order By Extract(`3esn` In `2esn`[..01][..True] Where 0.0 Is Null Is Null|$usn2[0.e0])[{usn2:@usn5 Is Null,`8esn`:$@usn6 Ends With 123456789 Ends With 12.0}..] Descending,(:_usn4$12)-[`1esn`?:`6esn`|:#usn8 *0Xa]-(usn1 :#usn8:`1esn`)[{`7esn`:$usn2 =~9e1}..] Desc,.12 In `8esn` In $#usn8 Desc Limit 9e1 Contains 12 Detach Delete 0.e0,\"d_str\"[True..],$`3esn` Ends With 01234567 Union All Remove {``:0Xa =~False =~@usn5,`6esn`:$`2esn` Starts With `4esn` Starts With $usn1}.@usn5,All(#usn7 In 9e0[$1000] Where 12e12 Starts With $0 Starts With $`2esn`).#usn7?"), + octest:ct_string("Create _usn4=((_usn3 :`8esn`{#usn8:False Starts With 0X7 Starts With 01234567})),((`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}))"), + octest:ct_string("Delete 0X7[.0] Match @usn6=(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-(:`5esn`{@usn6:1000[0e0][1e1]})<-[:`8esn`]-(:@usn6) Where $7 In $usn1 In 999 Union Merge ((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)) Remove (@usn5 :`6esn`:_usn3{`7esn`:`8esn`[..$#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]})-[`3esn`:`2esn`|`4esn`]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[usn1:_usn4]-(#usn7 :@usn6).#usn8"), + octest:ct_string("Delete 9e0[$`8esn`] Merge (_usn3 :`7esn`) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] On Create Set #usn7+=Null[.12..12e12],Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0]).`1esn`! =[123456789 =~$999,$`2esn` Ends With `6esn`,12.e12 Contains 9e1][`5esn`(Distinct .e0[01234567..$`8esn`])][All(`3esn` In 9e1 Contains $999 Where $`5esn` Is Not Null Is Not Null)],@usn6 =usn2[1.e1] Union With Distinct 0.e0['s_str'..][01234567..] As `1esn`,None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] As `3esn`,.0[$``..0X7] Skip usn2 =~$`` =~$`8esn` Where `4esn`[.12][$@usn6] Union All Create (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}),`6esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) With Distinct $#usn8 Ends With `` Ends With 999 As `5esn`,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]) Is Not Null Is Not Null As _usn3 Order By _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..] Desc,{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Is Not Null Desc,9e0 Ends With $#usn8 Desc Limit 12.0 Starts With $`2esn` Starts With .e1 Where 9e1 Ends With Count(*) Ends With $7"), + octest:ct_string("With *,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3])[..{`8esn`:usn2 =~7,`5esn`:.e0[01234567..$`8esn`]}][..Any(@usn6 In 010[`5esn`] Where False[$`4esn`..])] As #usn8,$#usn7 Contains $`7esn` Contains .e12 As @usn5 Limit (:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[usn2? *0..01{`6esn`:#usn8 Is Null}]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}) Where 's_str' Is Not Null Merge (_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})"), + octest:ct_string("Remove Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`).`8esn` Union Merge (`` {`8esn`:$`6esn`[``..][Count(*)..]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]}) On Create Set usn1+={_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]} Contains ({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010}) Contains None(#usn8 In `7esn`) Unwind usn2[..$usn1][..$#usn8] As ``"), + octest:ct_string("Optional Match `8esn`=(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}),`8esn`=(:`4esn`:`6esn`{usn2:$`8esn` Is Not Null Is Not Null})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Where `7esn` In 010 In usn1 Merge #usn8=((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})) On Match Set [12e12 =~1e1,0X7[..$`8esn`]].`7esn` =1e1 Ends With $`2esn`,`8esn`+=01[$`7esn`..$@usn6] On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``|.12 In `8esn` In $#usn8]._usn4? =7 =~0.12,`6esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null,Any(#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]).`3esn`! =(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null Union Remove All(#usn8 In `7esn`).`1esn` With Distinct *,999 Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains {_usn3:123.654 In $`7esn`} As `6esn`,.e0 Is Not Null Is Not Null As `7esn` Order By _usn3 In $`8esn` In @usn6 Desc Return Distinct [$#usn7 Ends With 's_str' Ends With 0X7] Starts With (usn1 :@usn6)<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}) Starts With [`5esn` In `7esn`[$usn2..][$123456789..] Where $`1esn` Starts With Count(*)] As #usn8,0.12 Is Null Is Null As _usn3,_usn4[0] As `2esn` Skip `1esn`[$@usn6][07] Union All Delete [#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)] Contains (:`2esn`)-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`3esn` {`4esn`:False Is Null}) Contains Filter(`8esn` In 123456789 =~@usn6 Where $`6esn` Starts With .e12 Starts With $`1esn`),(_usn4 :_usn4)<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[ *..07{`6esn`:Count(*)[9e12..12.0]}]->(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12})[[0[$`5esn`],$999 In 1e1,$`6esn` Is Null]] Remove Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 1.e1[12..][$`4esn`..]).`7esn`?"), + octest:ct_string("Match ((:@usn6)) Where 9e1[_usn3] Return Distinct $#usn7[..9e0][..123.654],1e1 Contains 0.e0 Contains 9e1 As `8esn` Order By 01234567[Null..$_usn3] Descending,.e12 Starts With $12 Starts With .e12 Descending,0[01234567..][0X0123456789ABCDEF..] Ascending Remove Any(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0).usn1,All(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])._usn4!,7._usn4 Union All Remove All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]).`2esn`,[1000[..`2esn`][..$@usn6],Count(*) Is Null].`4esn`!,`8esn`:`5esn` Remove Any(`3esn` In `2esn`[..01][..True] Where $0 =~9e1 =~$`2esn`).usn1 Detach Delete (`3esn` :usn2)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null}) Is Null,(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`),Any(#usn7 In 9e0[$1000] Where .e0 Is Null) =~Extract(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0|$`3esn` In $usn2) =~{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Union All Return 0.12 Starts With $`8esn` Starts With @usn5 As @usn5,#usn7 Is Null Is Null As `1esn`,[@usn5[$`6esn`..][$999..],`` Starts With $123456789] Is Null Order By Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) Ascending,'s_str' Starts With 1e1 Starts With $0 Desc"), + octest:ct_string("Remove #usn7:usn2,[07[_usn3..][`6esn`..],$usn1 Ends With _usn4 Ends With `2esn`,False[$`4esn`..]].`3esn`?,[`6esn` Ends With _usn4 Ends With False].`4esn`! Merge ((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) On Create Set #usn8+=[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null),@usn5+=.e0 =~$`7esn` =~0X0123456789ABCDEF,``+=(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) On Match Set `6esn`(Distinct 0Xa[$`8esn`..][$_usn4..],0xabc In Null).`2esn`! =(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[? *..010{#usn8:False Is Null}]->(#usn7 {#usn7:1.e1 Starts With 9e12})<-[:_usn3|:`7esn` *00..0Xa]-(`1esn` $`4esn`)[..[0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]]][..(:`2esn`{_usn3:@usn5[0.0..0X7]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null).`7esn`? =Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])],Extract(`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]).@usn5 =$@usn6 Ends With 123456789 Ends With 12.0 Return Distinct _usn4(Distinct usn2[07..][.0..]) Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]|$`2esn` Starts With `4esn` Starts With $usn1) Ends With Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2),usn1[..$@usn6][..00] As #usn7,(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})[..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})] As `7esn` Order By 0X7[..$`8esn`] Desc,$123456789[12e12..9e0] Descending Union All Match _usn3=(`2esn` $`6esn`)-[`2esn`{``:Null[..010][..1000]}]-(#usn7 :``:usn2),@usn5=((#usn7 :@usn6{`8esn`:0x0[0.0],#usn7:`7esn`[$usn1..]['s_str'..]})) Where usn2[12e12..]['s_str'..] Union All Return #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Order By Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[..[#usn7 In True Contains 's_str' Contains $usn1 Where Count(*) Ends With usn1]][..Filter(usn2 In 7[12] Where #usn7[0.e0..]['s_str'..])] Ascending,{@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Asc,usn2[1.e1] Descending Skip $``[01234567..][.0..] Return Distinct $#usn7 In $@usn5 In $`1esn` As `4esn` Remove Filter(#usn7 In 9e0[$1000] Where 12['s_str'][01])._usn3?,[@usn5 In 's_str'[0..] Where usn1 Starts With 00|True Contains .e12].`6esn`!,None(@usn5 In 's_str'[0..] Where 0.e0).`4esn`"), + octest:ct_string("Unwind $0 Ends With Count ( * ) Ends With @usn5 As `8esn` Create `6esn`=(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[@usn6:`1esn`|`3esn` *0X7..]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}),(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(`3esn` :_usn4{`3esn`:12[..0e0][...e1],`4esn`:.0 Is Null Is Null}) Union Optional Match `4esn`=({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]-(@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}),@usn5=(({@usn5:$`5esn` Is Not Null Is Not Null})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})) Where `8esn` Is Null Match (`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}),`7esn`=(((`` :`5esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`8esn`{`8esn`:usn1 Contains 010,_usn4:`5esn` Contains $`5esn` Contains 0X7}]-({#usn8:0xabc In 010 In #usn7}))) Optional Match `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((`6esn` :`5esn`)<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`5esn` :`4esn`:`6esn`)) Where 07 Is Not Null Is Not Null"), + octest:ct_string("With Distinct $`4esn`[0..][999..],Filter(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12])[..Extract(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])][..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]],(`3esn` {usn2:00[False..0e0]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null})<-[@usn6?:`8esn` *0..01]->(`5esn` :`4esn`:`6esn`)[[12.0 Starts With $`2esn` Starts With .e1]..] As `5esn` Order By .e12[`2esn`..010] Desc,0xabc In 010 In #usn7 Ascending Skip 1e1 Ends With $`7esn` Ends With .0 Where 9e1[$#usn8][$1000] Return Distinct `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Order By $1000[$@usn6][$_usn4] Desc Union All Detach Delete [`4esn`[.12][$@usn6],.0[..'s_str'][..01234567],1.e1 =~.12][Any(usn2 In False[$usn1][0x0] Where False Is Null)..],{#usn7:$usn2[0.e0],`6esn`:.e1[..\"d_str\"][..$123456789]}[..Extract(@usn5 In 9e0 Ends With $#usn8 Where $7 In 0.e0 In 999|Count ( * ) In 0.12)][..[@usn6 In 010[`5esn`] Where 's_str' Starts With 9e0 Starts With usn2|$`5esn` =~$0 =~``]],Count(*) In #usn8 In \"d_str\" Create (((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}))),`7esn`=(({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(usn1 :_usn3{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})) Unwind Single(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1)[Filter(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])..][Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.0 In 123.654 In _usn4)..] As _usn4 Union Optional Match `5esn`=((({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:#usn7|@usn5*..]-(`3esn` :usn2{`6esn`:#usn8 Is Null})<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null}))) Optional Match `2esn`=((`6esn` :#usn7:`5esn`)<-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]->(:#usn8:`1esn`$`7esn`)),((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(:`8esn`{``:$`1esn` =~999}))"), + octest:ct_string("Detach Delete 9e0[$`8esn`],`5esn` Contains #usn7 Contains 9e12,12 Is Null Match @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Where 7[0e0..] Detach Delete (`4esn` :#usn7:`5esn`{_usn4:0Xa Ends With $`3esn` Ends With $1000})-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})[[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]|`1esn`[0.12..][@usn6..]]..][{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}..],07 Contains `3esn` Contains `7esn`,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1) Union All Return *,`2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] Order By $`2esn` Starts With 0.12 Starts With $12 Ascending,07 In `6esn` Desc,12[..0e0][...e1] Desc Skip #usn8[`6esn`..][$``..] Limit `3esn`[..0X0123456789ABCDEF][..0x0] Merge (((:`7esn`{_usn3:@usn5[0.0..0X7]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]}))) On Match Set @usn5+=$0[123.654..0.e0],Any(`8esn` In 123456789 =~@usn6 Where .e1 =~_usn4 =~_usn4)._usn3? =01[..$`8esn`][..9e0],usn1 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..]) On Create Set [#usn7 In 9e1[$`1esn`..] Where 00 Ends With $`1esn` Ends With `7esn`].`2esn` =All(#usn7 In True Contains 's_str' Contains $usn1 Where $`1esn` Starts With Count(*)) In Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) In Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null),``:@usn5,@usn5+=12.e12[_usn4..$1000][$7..$999] Remove `3esn`(Distinct 123.654 Starts With 0X7 Starts With $`4esn`).``!,Any(_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1).`2esn`,Filter(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]).@usn5? Union Detach Delete 1e1 Contains 's_str' Contains `3esn`,12[``...e12]"), + octest:ct_string("Merge _usn3=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']}) On Match Set Extract(@usn5 In 's_str'[0..] Where `5esn`[..123.654][...e12]|$``[..\"d_str\"][..$#usn8]).@usn6 =[$usn1[`2esn`..][$`2esn`..]][(`3esn` :usn2)-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-({`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6})..`2esn`(Distinct $@usn6 Is Not Null Is Not Null,Count ( * ) Ends With $123456789)],None(#usn8 In `7esn` Where ``[7.._usn3]).@usn6? =`6esn`,Any(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])._usn4! =`` Is Null Union Unwind False[$usn1][0x0] As usn2 Delete $_usn4 Starts With $1000 Starts With 12,@usn5[$`7esn`..`5esn`],usn1 Unwind 12['s_str'][01] As `6esn`"), + octest:ct_string("Return Distinct Filter(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3]) In ({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) In Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0),.e0 Is Not Null Is Not Null As `7esn`,$`2esn` Ends With `6esn` As usn1 Merge ((:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})<-[*..{`7esn`:$``[..\"d_str\"][..$#usn8],`7esn`:$`` Contains $`2esn` Contains $usn2}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Merge @usn5=({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`}) Union With Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By [Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] Ascending,None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) Descending Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]) Where @usn6 Is Not Null Is Not Null Create (`3esn` )-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]}) Remove Any(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0).usn1,All(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])._usn4!,7._usn4"), + octest:ct_string("Detach Delete 9e1[_usn3] Delete [usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null,$`2esn` Starts With .0 Starts With `1esn`,0x0[0.0] Optional Match _usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Where 0.e0 Starts With .0 Starts With 123456789"), + octest:ct_string("Delete (@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`})<-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(#usn7 :`2esn`)-[`4esn`?{`1esn`:0xabc =~$@usn5}]->(usn2 {`5esn`:$@usn5 In 12e12 In 01}) Ends With `4esn`,[$usn1[`2esn`..][$`2esn`..]] Contains Extract(usn2 In 7[12] Where $_usn3 Is Null|.e12 Is Null Is Null),`1esn`[`3esn`..]"), + octest:ct_string("Delete Filter(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3]) In ({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-({#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) In Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0),{`1esn`:1e1 Contains 's_str' Contains `3esn`} =~None(#usn7 In 9e0[$1000] Where `6esn`[$1000][`3esn`]) Union All Return $@usn5,0.12[0Xa][$`7esn`] As `4esn`,All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] As _usn3 Create `2esn`=((`6esn` :#usn7:`5esn`)<-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]->(:#usn8:`1esn`$`7esn`)),((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(:`8esn`{``:$`1esn` =~999})) Remove [`8esn` Contains Count(*) Contains $#usn7,$12[$usn1..][Count(*)..],_usn4 Is Not Null].@usn6 Union With $usn2 Is Not Null Is Not Null Skip 999[@usn5..][Null..] Limit $@usn6 Ends With `1esn` Where 9e12[$`5esn`..$123456789] Match ((({`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[`3esn` *..07{usn2:True Contains 0x0 Contains $_usn3}]-({``:``[$`3esn`],#usn8:$@usn6[00]}))) Where #usn7 =~9e12 Detach Delete 0Xa In #usn7 In 's_str',0.e0[1000.._usn4][.e1..usn1]"), + octest:ct_string("Match ((:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})),usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})) Where 0x0 Contains $`6esn` Contains `4esn` Merge @usn6=(({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) On Create Set usn2 =(`1esn` $`4esn`)-[@usn6?:`7esn`|:`2esn`]-({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]}) =~Filter(`3esn` In 9e1 Contains $999 Where 12.0 Is Null Is Null) =~[0xabc In Null],Single(#usn7 In True Contains 's_str' Contains $usn1 Where .e12[$@usn6..00][01234567.._usn3]).@usn5? =(`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}) =~[12 In $usn1 In 7] =~Filter(@usn5 In 's_str'[0..] Where 0.e0),`1esn` =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[Extract(#usn7 In 9e0[$1000] Where .e1 In 123456789)][{_usn3:01[`8esn`..9e12][.12..0]}] On Create Set Extract(`3esn` In `2esn`[..01][..True] Where 00[01234567][False]|12[$`5esn`..][False..]).`2esn`! =12.e12 Ends With $``"), + octest:ct_string("Remove None(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]).`1esn`! Remove [0.e0[1000.._usn4][.e1..usn1],$`1esn` =~999,07[_usn3..][`6esn`..]].usn1!,usn2:`4esn`:`6esn`,Extract(usn2 In False[$usn1][0x0] Where $`7esn`|07 Is Null).#usn7! Union Delete Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..],None(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1)[..{@usn5:$@usn6 Is Not Null Is Not Null}][..{`3esn`:1e1 In 0.0 In 0X0123456789ABCDEF}] Unwind $_usn3 Is Not Null Is Not Null As `3esn` Create (((:`1esn`:_usn4{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]})<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]})<-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}))),_usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Union Match ((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4))"), + octest:ct_string("Create @usn5=()-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]-(:`4esn`:`6esn`{usn1:0 =~1e1,`7esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})-[_usn3:`5esn`|:usn2 *999..{`3esn`:`5esn` Contains $`5esn` Contains 0X7}]-(`8esn` {`1esn`:$`4esn` Is Null Is Null}) Detach Delete (`5esn` :`6esn`:_usn3)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({#usn8:False Starts With 0X7 Starts With 01234567})<-[usn2?{``:$`1esn`[``][07]}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7}) Is Null Is Null,[`5esn` Contains `1esn` Contains usn1,$@usn5 Ends With @usn5 Ends With 0xabc] Is Null Is Null"), + octest:ct_string("Unwind usn1[$@usn5] As _usn4 Return {`1esn`:1e1 Contains 's_str' Contains `3esn`} =~None(#usn7 In 9e0[$1000] Where `6esn`[$1000][`3esn`]) As `7esn`,(`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Order By {`4esn`:999 In 0e0,`6esn`:0.e0['s_str'..][01234567..]} Contains Single(`8esn` In 123456789 =~@usn6 Where 12.e12 Ends With `` Ends With 0) Ascending,`1esn` Starts With 0xabc Starts With $usn2 Desc Skip Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Limit $usn1[Null][`8esn`] With *,.e12[.12..],_usn4 Ends With _usn4 Ends With 9e0 As `` Skip None(`3esn` In `2esn`[..01][..True] Where usn1 In ``)[None(usn2 In 7[12] Where 12e12 =~$`7esn`)..] Limit Null[..0] Union All Merge #usn8=((`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})) On Create Set `4esn`+=$`4esn`[07..],`1esn` =123.654[`4esn`..12] On Match Set `6esn`(Distinct 0Xa[$`8esn`..][$_usn4..],0xabc In Null).`2esn`! =(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[? *..010{#usn8:False Is Null}]->(#usn7 {#usn7:1.e1 Starts With 9e12})<-[:_usn3|:`7esn` *00..0Xa]-(`1esn` $`4esn`)[..[0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]]][..(:`2esn`{_usn3:@usn5[0.0..0X7]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null).`7esn`? =Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])],Extract(`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]).@usn5 =$@usn6 Ends With 123456789 Ends With 12.0 Remove [0[$`5esn`],$999 In 1e1,$`6esn` Is Null].`5esn`,(:usn1:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]})<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1}).`3esn`,{`6esn`:$`7esn`[0.12]}._usn3! Union Return Distinct *,$`6esn`[0e0..][010..],.e12 Is Null Is Null Skip 's_str' Ends With _usn4 Ends With 0e0 Return Distinct @usn6[9e12],usn2 =~$`` =~$`8esn` Order By All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) Is Not Null Is Not Null Descending Limit `5esn` Contains `7esn` Remove Extract(`3esn` In 9e1 Contains $999 Where usn1[False..`5esn`][$1000..$12]|True Starts With Null).`4esn`!"), + octest:ct_string("Detach Delete `1esn` Starts With 0X7 Starts With \"d_str\",\"d_str\" Is Not Null Is Not Null,_usn4 Starts With `` Starts With 1000 Union All Remove Single(`5esn` In 0X7 In $#usn7 Where 123456789 =~$999).`5esn`,[`6esn` In $`6esn`[``..][Count(*)..]|.e1[12.0..]]._usn4? Union Detach Delete `4esn`[..$@usn6][..@usn6],$_usn4 Is Null Is Null"), + octest:ct_string("Create usn1=(({#usn7:12e12 In $`5esn`})<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})) Union Optional Match usn1=(({#usn7:12e12 In $`5esn`})<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})),``=({`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[? *..010{usn1:9e1[_usn3]}]->(`5esn` {`4esn`:0x0[usn1..usn1],usn1:$`5esn`[0X7..010][`7esn`..'s_str']}) Where $usn2 Is Not Null Is Not Null Union All With 's_str' Where 's_str'[0..] Unwind 12e12 In 123456789 As `7esn` Detach Delete $12 Starts With $0 Starts With $`8esn`"), + octest:ct_string("Unwind {usn2:`7esn`[$usn1..]['s_str'..],usn2:_usn4 Contains `` Contains 1.e1} Is Not Null Is Not Null As _usn3 Union Match ((:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]})<-[@usn5?{`7esn`:0.0 Contains #usn7,`6esn`:@usn5[0.0..0X7]}]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`8esn`:usn2[`8esn`..][0X0123456789ABCDEF..]})),usn2=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) Where 0.12 Starts With $`8esn` Starts With @usn5 Merge (`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-({`1esn`:#usn7[0]}) On Match Set `1esn` =0x0[@usn6..][01..],`5esn`(Distinct $#usn7 Contains $`7esn` Contains .e12).@usn6! =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`) Is Null Create ((#usn7 {`1esn`:$`4esn` Is Null Is Null})<-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(`6esn` :`8esn`))"), + octest:ct_string("Merge ((:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) On Create Set [12 =~usn1,7 =~`4esn`,``[9e12][$999]].`1esn` =Extract(#usn7 In $999 In 1e1 Where `5esn`[..True][..0.e0]|$`5esn` =~$0 =~``) In (:`7esn`{#usn8:0Xa Ends With $`3esn` Ends With $1000})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]}) In Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|999 Contains 0 Contains $`5esn`) On Create Set {usn1:0x0[$0][7],`5esn`:@usn5 Contains #usn8 Contains 12.0}.#usn8 =[@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1] Is Null,`4esn`:#usn7:`5esn`,({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})<-[`8esn` *0xabc]-(:_usn3{_usn4:.e1[7..][9e0..]})-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}).usn2 =123.654[..0.e0][..'s_str'] Create (:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`:#usn7|@usn5*{`8esn`:$`3esn`[$_usn4..0Xa]}]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Union All Unwind `` =~.12 As _usn3 Unwind 0x0[12e12..$`7esn`] As `7esn`"), + octest:ct_string("Unwind 9e1 =~123456789 =~999 As `` Union All Delete 7 =~0.12 Match #usn7=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2),`2esn`=({@usn5:$`5esn` Is Not Null Is Not Null})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Where $_usn4[$`5esn`][`7esn`]"), + octest:ct_string("Merge ((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})<-[usn1? *01234567..{@usn5:01[`3esn`..][Count(*)..]}]->(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})-[`4esn`?*..{``:`` =~.12,usn1:123.654 Is Not Null}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]})) On Create Set [`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc].@usn6? =[`4esn`[.12][$@usn6],.0[..'s_str'][..01234567],1.e1 =~.12][Any(usn2 In False[$usn1][0x0] Where False Is Null)..],{#usn8:Count(*) Starts With usn2 Starts With `7esn`}.`1esn`! =`4esn`($_usn4 Starts With $1000 Starts With 12) =~Any(@usn5 In 's_str'[0..] Where 1000[..`2esn`][..$@usn6]) =~[`3esn` In `2esn`[..01][..True] Where usn1 In ``|01[`8esn`..9e12][.12..0]] On Create Set `1esn` =(`4esn` :#usn7:`5esn`{_usn4:0Xa Ends With $`3esn` Ends With $1000})-[@usn6:#usn8|:`3esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})[[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07[_usn3..][`6esn`..]|`1esn`[0.12..][@usn6..]]..][{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}..] Detach Delete [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null,00[False..0e0],0.e0[1000.._usn4][.e1..usn1]"), + octest:ct_string("With Distinct $@usn6 Ends With 12.e12 Ends With @usn5 As usn2,``[usn1][`5esn`],`7esn`[..$`6esn`] Skip `3esn`[7..0.e0][0.0..123456789] With Distinct [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`) Union All Create (:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[#usn8? *1000..0X0123456789ABCDEF{`7esn`:Count ( * )[$`5esn`..][$7..],`6esn`:`6esn` Ends With _usn4 Ends With False}]->(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}),`6esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) With Distinct $#usn8 Ends With `` Ends With 999 As `5esn`,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12.e12[0..0.12][123.654..9e12]) Is Not Null Is Not Null As _usn3 Order By _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..] Desc,{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Is Not Null Desc,9e0 Ends With $#usn8 Desc Limit 12.0 Starts With $`2esn` Starts With .e1 Where 9e1 Ends With Count(*) Ends With $7"), + octest:ct_string("Create (((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})))"), + octest:ct_string("Merge usn2=(({`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`)) Unwind Filter(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1) Contains {@usn5:07 Is Not Null Is Not Null} Contains None(@usn5 In 's_str'[0..] Where usn1 Starts With 00) As @usn6"), + octest:ct_string("Remove Any(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[0.e0])._usn3!,[usn2 Contains $0 Contains .0,$`5esn`[0X7..010][`7esn`..'s_str'],123.654[$0..0X7][Null..#usn8]]._usn4?,(`` {`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']})<-[`1esn`?:`8esn` *7..]-(:``:usn2{``:True[$_usn3..]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3).usn2 Detach Delete usn1[False..`5esn`][$1000..$12] Return $7[999][usn1] As `6esn`,0 Ends With Count(*) Ends With False As `7esn` Order By Any(#usn7 In 9e0[$1000] Where .e0 Is Null) =~Extract(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0|$`3esn` In $usn2) =~{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Descending Skip 010[...12] Limit $`1esn` In .e0"), + octest:ct_string("Optional Match (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3),(@usn6 :`4esn`:`6esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`2esn`?:`6esn`|:#usn8{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`}]-(_usn3 {_usn3:0.12 Starts With $`8esn` Starts With @usn5}) Unwind [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e1[usn1..0x0][12.e12..12.0]][..{usn2:0x0[0X7]}][..[12.e12 Is Not Null Is Not Null,$@usn6[.0..][0e0..]]] As _usn4"), + octest:ct_string("Match (((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}))) Union Detach Delete 999 Is Not Null Is Not Null Union Remove Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $123456789 In 0.12).#usn8?,[`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null|$#usn7 Starts With 01234567 Starts With $0].`7esn`,(`4esn` :@usn6)-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4).`4esn`"), + octest:ct_string("Merge (:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Union With Distinct 0X7[`2esn`..] As `6esn`,Single(usn2 In False[$usn1][0x0])[All(@usn6 In 010[`5esn`] Where 00[1.e1..])][(:`2esn`{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`})-[?{`5esn`:$`2esn`[.0..][0.0..]}]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})-[`` *1000..0X0123456789ABCDEF]->(:_usn4{`8esn`:01234567[Null..$_usn3]})] Order By $0 Starts With @usn5 Desc,Filter(@usn5 In 9e0 Ends With $#usn8) Contains {@usn6:#usn7[`8esn`..usn1][$999..`7esn`]} Contains (:#usn7:`5esn`)-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[@usn5? *01..123456789{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}]->(`` :usn2{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}) Asc Limit [@usn5 In 's_str'[0..] Where 01234567[\"d_str\"..`4esn`]|usn1 In ``] Is Null Is Null"), + octest:ct_string("Optional Match #usn7=((`7esn` :`1esn`:_usn4{@usn5:0x0[usn1..usn1],`6esn`:`4esn`[$_usn3..$`7esn`]})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->({`3esn`:`5esn` Contains $`5esn` Contains 0X7})-[`6esn` *00..0Xa{usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}]->(:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})) Where 999 Is Null Is Null Remove (:`5esn`{@usn6:1000[0e0][1e1]})-[:`` *0..01]-(:`8esn`{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]-(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}).@usn6!,[123456789 Contains 0.0 Contains $@usn6,usn1 =~$`7esn`,9e12[9e1]].`8esn`,Filter(@usn6 In 010[`5esn`] Where @usn6[9e12]).usn2 Union All Detach Delete $@usn5 Contains 's_str' Contains \"d_str\",010 Is Null,Count(*)[..@usn6][..`7esn`]"), + octest:ct_string("Detach Delete `2esn`[$@usn6..][Null..],$1000 Starts With $`7esn`"), + octest:ct_string("Match #usn7=((`7esn` :`1esn`:_usn4{@usn5:0x0[usn1..usn1],`6esn`:`4esn`[$_usn3..$`7esn`]})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->({`3esn`:`5esn` Contains $`5esn` Contains 0X7})-[`6esn` *00..0Xa{usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}]->(:usn1:`3esn`{@usn6:0.e0 Starts With .0 Starts With 123456789,`4esn`:.e1[7..][9e0..]})) Where 0.0 Contains #usn7 With $@usn6 Ends With 12.e12 Ends With @usn5 As usn2 Where 12.0 Is Null Delete 12.e12 Contains `6esn`,$1000 Is Not Null,`1esn`[$@usn6][07] Union All With *,`` =~.12 As #usn7 Skip usn2 =~7 Limit 0x0 In 0.e0 In #usn8 Where $999[0Xa..][9e1..] Create (:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}),`7esn`=((_usn3 :`7esn`)) Return Distinct 12 Starts With True Starts With 12e12 As _usn4 Skip .e1 In 123456789 Limit $7 Starts With $`4esn`"), + octest:ct_string("Match _usn3=(`1esn` )<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7}) Where @usn5 Starts With 9e0 Starts With 010 Return `2esn` Starts With 12.e12 Starts With 12.0 As _usn3 Skip 0e0[``] Limit .e0 =~Null Return *,#usn7[0.12..],$`3esn`[.e1][_usn4] As _usn4 Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Limit \"d_str\" Is Not Null Is Not Null Union Detach Delete `7esn`[0x0][$`4esn`],0.0[$usn2..] Return (usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3) Skip Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null) Is Not Null Is Not Null Limit $`1esn` Starts With Count(*)"), + octest:ct_string("With Distinct `2esn`[$usn2][12.0],Single(#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6])[Filter(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])..] As _usn4 Limit `4esn` In 010 Union All Delete $0[12.0...e1],_usn4[.12..$usn2][$_usn3..123.654],07[..07][..0X7] Remove [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where _usn4[`7esn`]|$#usn7 In $@usn5 In $`1esn`].@usn6 Return Distinct .0 Starts With `1esn` As #usn7,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} As usn2,$@usn5[..$#usn7] Limit None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[Extract(#usn7 In 9e0[$1000] Where .e1 In 123456789)][{_usn3:01[`8esn`..9e12][.12..0]}]"), + octest:ct_string("Merge (`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}) On Create Set _usn3+=`5esn`(Distinct .12[123.654..]) On Match Set `2esn` =`3esn`[..0X0123456789ABCDEF][..0x0] With Distinct .e1 In 0,Any(#usn7 In 9e1[$`1esn`..] Where #usn7[0])[[00[12..$`6esn`],$`4esn`['s_str'..]]..] Order By .12 In `8esn` In $#usn8 Asc,12.e12[..9e1][..$_usn3] Descending Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Where $`1esn`[``][07] Union Detach Delete All(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]) Is Not Null Is Not Null,@usn6[`1esn`..],$#usn7 Ends With 's_str' Ends With 0X7 Match (((`` :#usn8:`1esn`{``:`7esn`[$usn2..][$123456789..],_usn4:$12 Starts With $usn1})<-[_usn3?:_usn3|:`7esn`]->(#usn7 )<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(`5esn` :`3esn`))),((#usn7 :_usn3)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) Union All Remove [`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5|`5esn`[..True][..0.e0]].`2esn`!,None(`8esn` In 123456789 =~@usn6 Where $`5esn` =~$`8esn` =~usn2)._usn3?"), + octest:ct_string("Merge usn2=(`3esn` {``:9e1 Is Null,usn1:9e0[Count(*)..0.12][$`1esn`..12.0]})-[?:`7esn`|:`2esn`{@usn5:usn2[1.e1],@usn6:$#usn8 Starts With .e12 Starts With 1.e1}]->({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]}) On Create Set {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}.usn1 =[`4esn`[.12][$@usn6],.0[..'s_str'][..01234567],1.e1 =~.12][Any(usn2 In False[$usn1][0x0] Where False Is Null)..],`5esn`+={`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}[Extract(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]|.e1[..$`3esn`][..01])..],`2esn` =0e0[.12..7][12...e12] Match @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) Where 7[0e0..] Union Merge `2esn`=(((:`6esn`:_usn3)<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})-[#usn7?:`7esn`|:`2esn` *..07]-(#usn7 {#usn7:1.e1 Starts With 9e12}))) On Create Set usn2+=$12 Starts With $0 Starts With $`8esn`,`1esn`+=12.0 Starts With .12 Starts With `6esn`"), + octest:ct_string("With Distinct $7[999][usn1] As `6esn`,[Null[..0]][[#usn7 In 9e1[$`1esn`..] Where Count ( * ) In 0.12|$`6esn`[1.e1][$_usn3]]..] As @usn5 Skip None(#usn8 In `7esn` Where $`3esn` Contains $`1esn`) Starts With #usn8(0x0[Count(*)..@usn6][Count(*)..0Xa]) Create ((:#usn8:`1esn`)-[ *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})),`8esn`=(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) Merge (({@usn6:010 Starts With 0 Starts With 0.0,_usn4:07[$`2esn`..9e12][$`4esn`..9e12]})<-[:@usn6|:`7esn` *0..01{``:`1esn`[0.0..1e1][0x0..7],usn2:01[`3esn`..][Count(*)..]}]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})) On Create Set [12 =~usn1,7 =~`4esn`,``[9e12][$999]].`1esn` =Extract(#usn7 In $999 In 1e1 Where `5esn`[..True][..0.e0]|$`5esn` =~$0 =~``) In (:`7esn`{#usn8:0Xa Ends With $`3esn` Ends With $1000})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]}) In Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|999 Contains 0 Contains $`5esn`) Union All Create _usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))),usn1=(_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]}) With Distinct [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Any(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`),usn2[usn2..0X7] As `1esn` Order By 's_str'[0x0..1.e1] Asc Limit 0xabc[..$1000][..`5esn`] Where `2esn` Starts With 12.e12 Starts With 12.0 Merge #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Union All Remove Any(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1).`2esn`!,None(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2).``"), + octest:ct_string("Detach Delete `6esn` =~`3esn` =~@usn6,(:_usn4$12)-[`1esn`?:`6esn`|:#usn8 *0Xa]-(usn1 :#usn8:`1esn`)[{`7esn`:$usn2 =~9e1}..] Create `2esn`=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}) Remove (`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[usn1? *01234567..{@usn5:01[`3esn`..][Count(*)..]}]->(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null}).#usn7,[`8esn` In 123456789 =~@usn6 Where 0x0[@usn6..][01..]|#usn7[.e0]].usn2?,Extract(#usn7 In True Contains 's_str' Contains $usn1 Where `8esn`[..$#usn8]).`2esn`! Union All Unwind 0.e0[$`4esn`..`2esn`] As @usn5 Optional Match (_usn4 :#usn7:`5esn`)-[_usn4? *999..{_usn3:$`5esn` =~usn1}]-(`5esn` :#usn8:`1esn`) Where 9e1[`1esn`..0][999..1e1]"), + octest:ct_string("With *,`2esn` In 9e0 In 7,$7 Starts With $`4esn` As _usn4 Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Limit None(#usn7 In 9e0[$1000] Where $_usn3 Is Null) In (:`3esn`)<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-({#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})<-[`4esn`:`1esn`|`3esn` *12..]-(#usn8 :`8esn`) In {`7esn`:$``[..\"d_str\"][..$#usn8],`7esn`:$`` Contains $`2esn` Contains $usn2} Where 12e12 Is Not Null Unwind 07 In 0Xa In usn1 As #usn8 Union Unwind 9e1 =~$_usn4 =~1.e1 As `7esn`"), + octest:ct_string("Unwind Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)[(`` :`5esn`{@usn5:123456789 =~@usn6})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`7esn` {``:9e1 Contains $999,``:$usn2[True..0X0123456789ABCDEF]}).._usn3(Distinct 0x0 Contains $`6esn` Contains `4esn`,usn2[1.e1])][(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})..[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|9e1 Is Null]] As usn1 Union All Create _usn3=(`1esn` )<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7}) With *,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) As `7esn` Order By (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc Where 1.e1 In 1000 In _usn3 Delete 0x0[``..],Any(usn2 In 7[12] Where $_usn3 Is Null) Is Not Null Is Not Null,[`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Union Unwind 01[07..][1.e1..] As _usn3 Match `4esn`=((`3esn` {usn2:$usn2[`4esn`..9e12]})<-[?{@usn5:_usn3 Ends With 7 Ends With $`1esn`}]->(_usn3 :_usn4)<-[_usn4?:`3esn`]-(:_usn3{_usn4:.e1[7..][9e0..]})) Merge `2esn`=(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[`4esn`:usn2]->(`3esn` :_usn4) On Create Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null On Create Set #usn7+=`6esn`[$`8esn`][9e1]"), + octest:ct_string("Unwind True Ends With $_usn3 Ends With 12 As #usn7 Return Distinct 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2] As #usn8,(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null},$#usn7 =~`2esn` As `4esn` Limit Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null) Union All Merge ``=(@usn5 :`6esn`:_usn3{`7esn`:`8esn`[..$#usn8],`3esn`:12.e12[0..0.12][123.654..9e12]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Union Return _usn4 Contains $_usn3 Contains .e1,$`4esn`['s_str'..] As `` Limit None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`])[Single(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Is Not Null Is Not Null)] Delete (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Remove Filter(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $#usn7 Starts With 01234567 Starts With $0).usn2!"), + octest:ct_string("Unwind Count ( * ) In 123456789 In $@usn5 As usn1 Unwind $1000[$@usn6][$_usn4] As `6esn` With 9e12[..`3esn`][..0X0123456789ABCDEF] As `5esn`,`3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[_usn3[0x0],1e1 In 0.0 In 0X0123456789ABCDEF]] As usn1 Order By .e1[..$`3esn`][..01] Ascending,'s_str' Is Not Null Descending Where $#usn7[..$`4esn`][..01]"), + octest:ct_string("Remove Extract(@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1|True Contains 's_str' Contains $usn1)._usn4?,All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]).`4esn` Union All Optional Match (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Where $`7esn`[.e1][12.0]"), + octest:ct_string("Optional Match ``=(((#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`))),_usn4=(((_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4))) Create @usn6=((({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})<-[_usn3:`3esn`{`5esn`:_usn4[0]}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]-(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}))),@usn5=()-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]-(:`4esn`:`6esn`{usn1:0 =~1e1,`7esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})-[_usn3:`5esn`|:usn2 *999..{`3esn`:`5esn` Contains $`5esn` Contains 0X7}]-(`8esn` {`1esn`:$`4esn` Is Null Is Null}) Return *,'s_str' Ends With `7esn` Ends With 010 Order By #usn7[``] Desc,`7esn` Starts With @usn5 Ascending Skip @usn6 =~999 =~@usn5"), + octest:ct_string("Optional Match ((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})) Unwind 's_str' Is Not Null As `4esn` Return 01[$`7esn`..$@usn6] As `2esn`,(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]} Order By `4esn` Contains 9e0 Desc,$12 =~0X7 =~0x0 Ascending,Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 1.e1 Ends With $_usn4 Ends With #usn7|$7 Starts With 12.e12 Starts With $@usn6) Starts With (:``:usn2)<-[`2esn`:`8esn`{`7esn`:$`4esn` Is Null Is Null}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]}) Starts With [01234567[Null..$_usn3],0[1e1][$usn1],False[..$`5esn`][..1e1]] Descending Limit None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]) Is Null Union Unwind $`4esn`[..$`8esn`][..Null] As #usn8 Union All Optional Match ((`1esn` {usn1:12e12 In $`5esn`})<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(:usn1:`3esn`{@usn6:.0 Ends With Count ( * )})),#usn8=({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Delete `2esn`(Distinct 12.e12 =~.0 =~usn1,00 Ends With $`1esn` Ends With `7esn`)[[_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`|`2esn` In 7]] With Distinct *,$@usn6 Ends With 12.e12 Ends With @usn5 As `3esn` Order By .e0 Starts With $@usn6 Starts With $7 Descending Limit All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where False[$usn1][0x0]) In [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null|9e12[9e1]] In [12.0 Is Null,$_usn4[..$_usn4][..`7esn`]]"), + octest:ct_string("Optional Match (`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}),`7esn`=(((`` :`5esn`)-[ *0..01{@usn6:$0[123.654..0.e0]}]->(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']})<-[`8esn`{`8esn`:usn1 Contains 010,_usn4:`5esn` Contains $`5esn` Contains 0X7}]-({#usn8:0xabc In 010 In #usn7}))) With Distinct Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1|$@usn5 In $`6esn` In 12e12) Ends With (:`7esn`{#usn7:0 =~1.e1 =~$#usn7})<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}) As @usn5,.e0 Is Not Null Is Not Null As `7esn`,Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)[..123.654][..Any(#usn7 In $999 In 1e1 Where `4esn`[$_usn3..$`7esn`])] As `3esn` Limit _usn4 In #usn7 Union All Detach Delete usn1 Ends With 9e0 Ends With 9e0,999 Is Null Is Null,[_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1|999 Contains $1000] Starts With Single(`5esn` In `7esn`[$usn2..][$123456789..] Where $`5esn` =~$0 =~``) Merge ``=(((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[`2esn`? *01234567..]->(:`2esn`)-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->({`7esn`:999 In 0e0}))) Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) On Create Set #usn7+=.e0[..9e12][..07],`4esn`(True[$_usn3..],$999[``]).usn2 =123456789 Is Null Is Null,@usn5 =01[07..][1.e1..] On Create Set `5esn`+={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},usn2 =True Contains 0x0 Contains $_usn3 Union Merge `2esn`=(((`7esn` )<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2))) On Match Set #usn8 =[`5esn` Contains `1esn` Contains usn1,$@usn5 Ends With @usn5 Ends With 0xabc] Is Null Is Null,`8esn` =[$@usn6 =~#usn7 =~True,$`1esn` Contains 1e1 Contains @usn6,9e1[..123456789]] Is Null On Create Set @usn6+=$#usn7 Ends With 's_str' Ends With 0X7,`6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn2 =$@usn5 Ends With @usn5 Ends With 0xabc"), + octest:ct_string("With Distinct `6esn`[..$`4esn`],0xabc Is Not Null Is Not Null,[`2esn` Is Null] Is Null Is Null As `4esn` Union Return *,`8esn` =~@usn6 =~$`2esn` As _usn3 Optional Match @usn5=(`7esn` :`3esn`{`2esn`:999[123.654..$usn2][Count ( * )..0x0]})-[`2esn`?:usn1|`4esn` *00..0Xa]-(`4esn` :`4esn`:`6esn`),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Where 12 Starts With #usn7 Starts With 0Xa Return $7 Ends With Count ( * ),`6esn` =~Null As `4esn` Skip 1e1[_usn3] Limit [`2esn` Is Null] Is Null Is Null Union All Return Distinct $#usn7 In $@usn5 In $`1esn` As `4esn` Merge ((:`6esn`:_usn3)) On Match Set `` =Extract(@usn5 In 's_str'[0..] Where 12e12 Is Not Null) =~[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]]"), + octest:ct_string("Unwind {`6esn`:0xabc[..$1000][..`5esn`],`4esn`:$@usn5 In 12e12 In 01}[#usn8(False Contains 0 Contains $`6esn`,'s_str' Starts With 1e1 Starts With $0)..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})][(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(`4esn` :`6esn`:_usn3)..[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]]] As `4esn` Create (((`7esn` )<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2))),`5esn`=(({@usn5:``[9e12][$999]})-[usn2{``:$`1esn` =~999}]-(:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0})) Create _usn3=(:#usn7:`5esn`{@usn5:999 Starts With `2esn` Starts With .e1,``:0xabc In Null})-[`6esn` *0Xa]-(usn1 :`1esn`:_usn4{_usn3:@usn6[999..$_usn3][0.12..$@usn5],`1esn`:9e12[..1e1][..'s_str']}) Union All Merge (`2esn` :`1esn`:_usn4)-[?*..]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) On Create Set @usn6+=$#usn7 Ends With 's_str' Ends With 0X7,`6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn2 =$@usn5 Ends With @usn5 Ends With 0xabc Merge ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1] On Create Set `6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn1+=`4esn`[$_usn3..$`7esn`] Unwind $`5esn`[`7esn`] As @usn5"), + octest:ct_string("Optional Match usn1=((:@usn5{@usn5:$12[9e0..$999]})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})) Return @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1|$@usn5 In $`6esn` In 12e12) Ends With (:`7esn`{#usn7:0 =~1.e1 =~$#usn7})<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}),`1esn`($`4esn`[`4esn`][Count(*)],`2esn` Starts With $`7esn`) =~Extract(@usn5 In 9e0 Ends With $#usn8 Where .e0 Starts With $@usn6 Starts With $7) =~{`3esn`:_usn3[`2esn`..0X7][0.e0..$`3esn`]} Union With Distinct Count(*)[$@usn5] As `6esn`,[#usn8 In `7esn` Where usn2[07..][.0..]|$usn1 Ends With _usn4 Ends With `2esn`] Contains (_usn3 {#usn7:1000[12e12][`5esn`]})-[`3esn`?:`3esn`]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0}) Contains Extract(`3esn` In `2esn`[..01][..True] Where usn1 In ``) As `2esn`,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..] Order By ``[$`1esn`] Desc,123456789 Contains 0Xa Asc,[$`8esn` Is Not Null Is Not Null,0xabc In Null] =~Single(#usn7 In 9e0[$1000] Where .e0 Is Null) Descending Where 9e1[_usn3] Unwind Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null As #usn7"), + octest:ct_string("Create ((`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[`8esn` *0xabc{#usn8:12.0 Starts With .12 Starts With `6esn`,@usn5:_usn3[`5esn`..][usn2..]}]->(#usn7 {`8esn`:`7esn` In 010 In usn1})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})) Delete 0e0 Is Null Is Null,@usn6(0X7 In $#usn7,_usn4 Contains `` Contains 1.e1)[Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)..Any(#usn7 In 9e1[$`1esn`..] Where $`2esn` Ends With `6esn`)],`1esn`[0.12..][@usn6..] Union All Detach Delete $12[9e0..$999] With $#usn7 =~`2esn` As `4esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc Skip usn2 Is Null Is Null Limit @usn6 Is Not Null Is Not Null Where 's_str' Ends With `7esn` Ends With 010 Merge `8esn`=((_usn3 :_usn4))"), + octest:ct_string("Return $7[999][usn1] As `6esn`,0 Ends With Count(*) Ends With False As `7esn` Order By Any(#usn7 In 9e0[$1000] Where .e0 Is Null) =~Extract(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0|$`3esn` In $usn2) =~{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Descending Skip 010[...12] Limit $`1esn` In .e0 Remove {`4esn`:`7esn` Is Null}.`4esn`! Union Remove [12e12 =~1e1].`2esn`!"), + octest:ct_string("Remove [$12[$usn1..][Count(*)..]].`8esn`?,{`2esn`:.e12 Starts With $12 Starts With .e12,usn2:0e0 =~7 =~12.0}.`3esn`? Merge ``=(:_usn3{`7esn`:$999 Ends With .e0})<-[`8esn`?:`2esn`|`4esn`{usn2:#usn8[`6esn`..][$``..]}]-(@usn6 {`6esn`:$`5esn` =~usn1,`5esn`:$`` Starts With $1000 Starts With @usn6})-[?{_usn3:010[`5esn`],_usn4:#usn8 =~.e0}]-(#usn8 :`3esn`{`5esn`:$@usn6 Ends With `1esn`}) On Match Set `7esn`+=$`5esn` Is Not Null,Any(@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7])._usn3 =.e12[`2esn`..010],`8esn` =Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null) Is Not Null Is Not Null Union All Match #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}),((:#usn7:`5esn`{_usn4:$usn2 =~9e1})<-[@usn5?:usn2 *0..01]->(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})) Where 9e1[usn1..0x0][12.e12..12.0] Optional Match `6esn`=(((_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})-[``?:_usn4]-(_usn4 :_usn4))) Create `8esn`=(`4esn` :usn1:`3esn`) Union All Remove [0.e0[1000.._usn4][.e1..usn1],$`1esn` =~999,07[_usn3..][`6esn`..]].usn1!,usn2:`4esn`:`6esn`,Extract(usn2 In False[$usn1][0x0] Where $`7esn`|07 Is Null).#usn7! Return Distinct $0[010..] As `` Order By `5esn`(Distinct .e0[01234567..$`8esn`]) =~All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) =~[999 In #usn8 In $``,.e0 Is Null Is Null] Ascending Skip count(Distinct 0X0123456789ABCDEF Contains 12e12 Contains 12.e12)[..{usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]}][..(:#usn7:`5esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null})] Remove `4esn`:`8esn`,[`1esn`].#usn8?,All(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where `1esn`[0.12..][@usn6..]).usn2!"), + octest:ct_string("Return Distinct `` Is Not Null Is Not Null As `6esn`,`7esn`[$usn1..]['s_str'..] As usn1,$#usn8 Starts With .e12 Starts With 1.e1 Limit Single(usn2 In 7[12]) Ends With {_usn3:123.654[`4esn`..12]} Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where `1esn`[usn1][0xabc]) Remove Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01).`3esn`,`5esn`(Distinct).usn1! Unwind 0 Is Not Null As `6esn` Union Match `3esn`=(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0}),usn1=(({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) Where \"d_str\"[True..] Union All Optional Match `1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}))"), + octest:ct_string("Unwind 9e1[$1000][7] As `8esn` Create (((:_usn4{`8esn`:01234567[Null..$_usn3]})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->(`5esn` :`3esn`{``:`` Is Null,`8esn`:$@usn6[$0..9e12][.e12..Null]})<-[`7esn`:`4esn`|@usn5 *12..]->({`4esn`:.e1[..$`3esn`][..01]}))),_usn4=(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-(:#usn8:`1esn`{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0}) Return $_usn3[_usn4..] Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Union Unwind .12[..usn2][..12e12] As `5esn` Unwind {#usn8:.0 Is Null Is Null}[..(_usn3 :@usn6{usn2:0Xa =~False =~@usn5,`3esn`:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})][..{`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]}] As `2esn`"), + octest:ct_string("With 9e0[..123456789][..$`3esn`] Order By 01 Contains usn2 Contains 0X0123456789ABCDEF Desc Limit 00 =~Count ( * ) Union All Optional Match ((`4esn` :@usn6)-[:`` *0..01]-({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})) Where 0Xa Ends With $`3esn` Ends With $1000 Union Create _usn3=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Remove {#usn8:`1esn`[usn1][0xabc],_usn3:$`6esn`[1.e1][$_usn3]}.`3esn`,{usn1:@usn6[9e12]}.`4esn`! Return 12[$`5esn`..][False..] As `4esn`,0e0 Ends With 07 Ends With $`8esn` As `1esn` Limit All(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`)[Filter(`3esn` In 9e1 Contains $999 Where .e0 Is Not Null Is Not Null)..][Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..])..]"), + octest:ct_string("Create `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})),usn2=(#usn7 {_usn4:1.e1[`8esn`]})<-[usn2{`2esn`:$12 Starts With $usn1}]->(:`5esn`{`8esn`:$`7esn`[0.12],_usn4:`1esn`})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]})"), + octest:ct_string("Unwind .e12[`2esn`..010] As `1esn`"), + octest:ct_string("Unwind Extract(@usn5 In 9e0 Ends With $#usn8 Where $`8esn`[123456789..][$@usn5..]) =~None(#usn7 In True Contains 's_str' Contains $usn1 Where 's_str' Starts With 9e0 Starts With usn2) As `2esn` Union Return Distinct *,None(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`5esn` In _usn3 In 0.0) Is Not Null Is Not Null As @usn5 Order By 0.0[$usn2..] Asc,All(@usn5 In 9e0 Ends With $#usn8 Where _usn4[`7esn`]) In {`6esn`:9e1 Is Not Null Is Not Null,`8esn`:_usn3 In $`8esn` In @usn6} In (:`6esn`:_usn3$usn2)-[:`3esn` *0Xa{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->(usn1 {usn1:$#usn7 Starts With 01234567 Starts With $0})-[?:#usn8|:`3esn` *0x0..]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) Asc,12e12 Starts With $0 Starts With $`2esn` Ascending Unwind (`1esn` :`3esn`{#usn7:12[..0e0][...e1]})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})[(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null)][{`2esn`:$999 Ends With .e0}..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]] As `8esn`"), + octest:ct_string("Merge @usn5=(((:`7esn`{#usn7:0 =~1.e1 =~$#usn7})-[?:`2esn`|`4esn`{@usn5:0.e0}]-(`1esn` $`4esn`)-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}))) On Match Set #usn7:_usn3,`` =None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6) =~Single(`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8) =~(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]}) Return Distinct *,$#usn7[..0Xa] As #usn8,0X7[`2esn`..] As `5esn` Order By $7[999][usn1] Asc Create usn1=((`` )<-[usn2?:`6esn`|:#usn8 *999..]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})),((`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'}))"), + octest:ct_string("Create (@usn6 {`4esn`:9e1 Contains 12}) Return *,0X7[`2esn`..] As `6esn`,$`1esn` Contains 1e1 Contains @usn6 As `3esn` Order By $_usn3[_usn4..] Descending,9e1 Contains $999 Ascending Unwind 07[999] As @usn6 Union Remove All(@usn5 In 's_str'[0..] Where 12e12 Is Not Null)._usn3!,`3esn`(Distinct $@usn5 In $`6esn` In 12e12).`8esn`! Remove `5esn`($`4esn` In 1.e1 In #usn7,0Xa[Count(*)..]).`5esn`,(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`).`3esn`,None(#usn8 In `7esn` Where 9e12[..1e1][..'s_str'])._usn4?"), + octest:ct_string("With *,``(Distinct 00 Ends With `` Ends With 12.e12,`6esn`[..Count ( * )][..$_usn4]) In (usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})<-[`7esn`?:#usn8|:`3esn`{`6esn`:'s_str'[0..]}]->(#usn8 :`8esn`$#usn8) In Filter(@usn6 In 010[`5esn`] Where 1.e1[$usn1]) As `3esn` Order By $usn2[`5esn`..][01234567..] Asc,$`7esn`[.e1][12.0] Asc,$`5esn` =~usn1 Ascending Skip @usn6(0X7 In $#usn7,_usn4 Contains `` Contains 1.e1)[Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)..Any(#usn7 In 9e1[$`1esn`..] Where $`2esn` Ends With `6esn`)] Where 00[$usn1..] With Distinct {`8esn`:9e12 =~@usn6,`1esn`:999 Contains 0 Contains $`5esn`}[`4esn`()],(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[ *01234567..]->(#usn7 :usn2{usn1:`4esn` Ends With 12 Ends With .12}) Contains [7[12],00[$`1esn`..][@usn6..],`5esn` Contains #usn7 Contains 9e12] Contains {_usn3:$@usn6[00],`2esn`:0.12 Is Null Is Null} Order By [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Desc Limit $7 Starts With $`4esn` Merge `6esn`=(((:`6esn`:_usn3)<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(`3esn` :_usn4{`3esn`:12[..0e0][...e1],`4esn`:.0 Is Null Is Null})-[usn2 *..07]->(`` {_usn3:`5esn` Contains `7esn`}))) On Match Set (:_usn3)<-[`2esn`? *01..123456789]-(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}).#usn8! =Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``),{`1esn`:`8esn` Is Not Null Is Not Null}.`4esn`? =$@usn5 Starts With `5esn` Starts With 01234567,{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}.``? =12 In $usn1 In 7"), + octest:ct_string("Create (:usn2)<-[? *01..123456789{`8esn`:usn2 =~7,@usn5:`6esn` Ends With _usn4 Ends With False}]->(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})<-[`4esn`:usn2]->(`3esn` :_usn4),(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}) With Distinct *,`3esn`(`7esn`,0x0 Contains $`6esn` Contains `4esn`) Is Null Is Null Limit usn2[..$usn1][..$#usn8] Union All Delete $0 =~9e1 =~$`2esn` Remove [$`4esn`[0..][999..],$usn2 Is Not Null Is Not Null,$`5esn` In _usn3 In 0.0].`2esn`! Create `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Union All Detach Delete 9e1[$1000][7],.e0[999..1000][1e1..$`8esn`],(:`2esn`)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})-[@usn6? *0X0123456789ABCDEF..{``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6}]-(`5esn` :@usn5) Is Null Is Null Return Distinct *,'s_str' Order By `5esn`(Distinct .e0[01234567..$`8esn`]) =~All(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]) =~[999 In #usn8 In $``,.e0 Is Null Is Null] Ascending Skip 123456789 Is Null Is Null Limit `4esn`[123456789] Merge ({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[`5esn`?:`7esn`|:`2esn` *0x0..]-(`4esn` :#usn7:`5esn`{@usn5:$`` Contains $`2esn` Contains $usn2}) On Match Set _usn3 =Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)]"), + octest:ct_string("With Distinct 999[12e12..$_usn4] Order By Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $usn2 =~1.e1 =~usn1|123.654[$0..0X7][Null..#usn8])[(`1esn` {_usn4:`8esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(:`5esn`{`1esn`:0.e0})..][All(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..] Descending,0X7[.0] Asc,$`3esn`[..0X0123456789ABCDEF][..7] Descending Limit #usn7 =~9e12 Where _usn4 Contains `` Contains 1.e1 Union All Merge `7esn`=(((#usn7 :usn2{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]})<-[@usn5?:usn2 *00..0Xa{usn2:$usn2[`4esn`..9e12]}]->(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})<-[ *..07{`5esn`:999 In 0e0}]->(:@usn6$usn1))) Return Distinct *,`2esn`[..$_usn4][...12] As `6esn`,$999 Is Null Is Null Order By 12.0 Ends With `2esn` Descending,.0 Ends With 999 Ends With $`5esn` Ascending Match _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Where 010 Is Null Is Null Union Unwind 0.0 Contains `3esn` Contains @usn5 As @usn5"), + octest:ct_string("Optional Match ``=(((_usn3 :`6esn`:_usn3)<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]-(`3esn` :`1esn`:_usn4{#usn8:1e1 Is Not Null Is Not Null})-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null}))) Where 0.e0[1000.._usn4][.e1..usn1] Detach Delete _usn3 Ends With 7 Ends With $`1esn`,(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})[..Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|Count ( * )[$`5esn`..][$7..])][..$usn2] Union All Unwind 12.e12 Starts With 1000 As @usn5"), + octest:ct_string("Create `5esn`=((`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5)),(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[`4esn`:usn2]->(`3esn` :_usn4) Detach Delete $@usn6[_usn3..][$999..],$usn2 =~0.e0 =~@usn6 Match (((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})))"), + octest:ct_string("Merge ((usn1 {_usn4:#usn8 Is Not Null})<-[:`8esn` *0X7..]->(:`8esn`{@usn5:usn2 Ends With .e1 Ends With $`5esn`})<-[_usn3:usn1|`4esn`{`6esn`:12e12 =~1e1}]->({`8esn`:usn2 Starts With .0,@usn5:Count(*) In 12 In `6esn`})) On Match Set @usn5 =$`2esn` Is Null,usn2+=`4esn` Starts With 0e0,``+={_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}[[$`2esn` =~9e12,`6esn` Is Null Is Null,usn2 Is Not Null]..[$`1esn` Starts With $`4esn` Starts With $_usn3]] Optional Match _usn3=(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Where 0.e0 Starts With .0 Starts With 123456789 Delete 999[..`1esn`][..07],0x0[@usn5][$#usn8]"), + octest:ct_string("With $@usn6[..12] As #usn8,Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] As `7esn` Order By $@usn5 In 12e12 In 01 Ascending Limit Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)[..`4esn`][..(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)] Where _usn3 Starts With 12e12 Starts With `5esn` Union All Merge _usn4=(((:`4esn`:`6esn`{usn1:0 =~1e1,`7esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})<-[`6esn`? *..010{usn2:Null[..0]}]-(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`}))) On Create Set [12 =~usn1,7 =~`4esn`,``[9e12][$999]].`1esn` =Extract(#usn7 In $999 In 1e1 Where `5esn`[..True][..0.e0]|$`5esn` =~$0 =~``) In (:`7esn`{#usn8:0Xa Ends With $`3esn` Ends With $1000})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]}) In Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|999 Contains 0 Contains $`5esn`)"), + octest:ct_string("Detach Delete $usn2[`2esn`..],`8esn`(Distinct #usn8 Is Not Null Is Not Null,`2esn` In 9e0 In 7) Starts With None(usn2 In 7[12] Where 123456789 =~12 =~'s_str') Match #usn7=(#usn8 :_usn3)-[`7esn`{#usn8:01 Is Null,`6esn`:#usn7[0]}]-({`2esn`:Count(*) Ends With usn1,`6esn`:1000 Ends With `7esn`})<-[:_usn3|:`7esn` *00..0Xa]-(#usn7 :`4esn`:`6esn`$usn2),(((:_usn4{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]})<-[`2esn`? *01..123456789]-(`2esn` :@usn6))) Where 999[123.654..$usn2][Count ( * )..0x0] Merge (((@usn6 :`2esn`{_usn3:$``[7],`7esn`:_usn3 Ends With 7 Ends With $`1esn`})<-[`3esn` *7..]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[? *01..123456789]-(usn1 :_usn4{`4esn`:`7esn` Is Null}))) On Match Set usn1(True Contains 's_str' Contains $usn1,.e0 Is Not Null Is Not Null).@usn5! ={usn2:_usn3[0x0]} In Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|010 Starts With 0 Starts With 0.0) In {`7esn`:False[$`4esn`..]}"), + octest:ct_string("Create #usn7=(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}),({`1esn`:1.e1[`8esn`]})<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->({usn1:$123456789 In 0.12}) Return Distinct `2esn` Starts With 12.e12 Starts With 12.0 As #usn8,$_usn3 Is Not Null Is Not Null Skip `1esn`[$@usn6][07] Limit $1000 Is Not Null Union All Unwind 0 =~1e1 As usn2 Match #usn8=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}),(:#usn8:`1esn`{usn2:$`7esn`[.e1][12.0],``:$`1esn` Contains 1e1 Contains @usn6}) Where $_usn4 Starts With $1000 Starts With 12 Detach Delete (`3esn` :usn2)-[? *0xabc]-(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null}) Is Null,(#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`),Any(#usn7 In 9e0[$1000] Where .e0 Is Null) =~Extract(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0|$`3esn` In $usn2) =~{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Union Optional Match ((:`6esn`:_usn3{usn1:`3esn`[0x0..]})<-[? *1000..0X0123456789ABCDEF{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]->({`4esn`:.e1[..$`3esn`][..01]})<-[usn2?{``:$`1esn`[``][07]}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7})),(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) Create (((:_usn4{`8esn`:01234567[Null..$_usn3]})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->(`5esn` :`3esn`{``:`` Is Null,`8esn`:$@usn6[$0..9e12][.e12..Null]})<-[`7esn`:`4esn`|@usn5 *12..]->({`4esn`:.e1[..$`3esn`][..01]}))),_usn4=(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-(:#usn8:`1esn`{`6esn`:$`4esn`[`6esn`..$12],usn1:00 In @usn6 In 0})"), + octest:ct_string("Create ``=((@usn5 {`5esn`:@usn6[9e12],`5esn`:@usn6[999..$_usn3][0.12..$@usn5]})<-[`2esn`:`8esn`{`7esn`:$`4esn` Is Null Is Null}]->(usn1 :@usn6)-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(`8esn` :`8esn`)),(:_usn3{usn1:#usn7[..07]})<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]}) Return 010 Starts With $`` Starts With 0e0 As @usn5 Unwind True Starts With Null As usn1 Union With Distinct *,.e0 Is Null As `2esn`,[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]) Order By _usn4(Distinct $@usn6[$`8esn`..][123456789..],$`` Starts With $1000 Starts With @usn6)[[#usn7 In True Contains 's_str' Contains $usn1 Where $usn2 =~1.e1 =~usn1]..][All(#usn7 In True Contains 's_str' Contains $usn1 Where $`2esn` Contains Count(*))..] Descending,[.e12 Is Null Is Null] Starts With `5esn`(Distinct 00[$`1esn`..][@usn6..],@usn6[9e12]) Starts With None(`8esn` In 123456789 =~@usn6 Where `7esn`[$usn2..][$123456789..]) Descending With {``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}[..Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)][..Any(#usn7 In $999 In 1e1 Where 07 In `6esn`)] As usn1,`8esn` Is Not Null Is Not Null As `4esn` Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Limit Any(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]) =~[9e12 =~@usn6,01 Ends With 0Xa Ends With 0X7,$@usn6[$0..9e12][.e12..Null]] Delete _usn4 Is Null Is Null,010[`5esn`],#usn8 Starts With $1000 Starts With $@usn5 Union Match (`8esn` :#usn8:`1esn`{usn1:0x0 Starts With $`6esn`}) Create ((`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})),@usn5=(({@usn5:$`5esn` Is Not Null Is Not Null})-[`1esn`?:@usn6|:`7esn` *..010]-(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[?:`` *0..01]->({`2esn`:9e12[$`5esn`..$123456789],`8esn`:$usn2 =~9e1})) Return Distinct .e0 Ends With $123456789 Ends With 0xabc Limit 's_str' Starts With 1e1 Starts With $0"), + octest:ct_string("Unwind #usn8 Is Null Is Null As `8esn`"), + octest:ct_string("Detach Delete @usn5[0..],$#usn7 =~`2esn` Remove Filter(#usn8 In `7esn` Where 07 Ends With 9e12 Ends With `2esn`).@usn6?,`5esn`:`1esn`:_usn4 Match #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}),((:#usn7:`5esn`{_usn4:$usn2 =~9e1})<-[@usn5?:usn2 *0..01]->(`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]})) Where 9e1[usn1..0x0][12.e12..12.0] Union All Merge @usn5=(({`8esn`:`5esn` Contains #usn7 Contains 9e12})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`1esn` :`3esn`{#usn8:$usn2[0.e0],`8esn`:$`4esn`['s_str'..]})) On Match Set `4esn`+=@usn5 Is Not Null,@usn6+=.e12[`2esn`..010],#usn7 =$999[``] On Match Set [$0[123.654..0.e0],01234567[Null..$_usn3]]._usn4! ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,None(#usn7 In 9e0[$1000] Where 00[12..$`6esn`]).`7esn`? =`4esn`(Distinct)[`2esn`($`2esn`[..$`3esn`][..12e12])][Extract(@usn6 In 010[`5esn`] Where 1.e1[$usn1]|.e12[..999][..@usn5])],`5esn`+={`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]}[Extract(@usn5 In 's_str'[0..] Where 0Xa[..Count ( * )][..$123456789]|.e1[..$`3esn`][..01])..] Delete $usn1 Starts With 0x0 Starts With #usn8,$@usn6 Ends With `1esn`,Extract(`3esn` In `2esn`[..01][..True] Where 00[01234567][False]|$`3esn` Ends With 01234567) Starts With (_usn4 :_usn4)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07}) Starts With Extract(@usn6 In 010[`5esn`] Where $`2esn` Starts With `4esn` Starts With $usn1) Union With [#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]|$@usn5[..0xabc][..$`3esn`]] Contains (`8esn` )<-[`2esn`:`4esn`|@usn5 *01234567..]-(`5esn` :`3esn`)<-[#usn8?:`8esn`{`1esn`:999 In #usn8 In $``,`8esn`:False[$`4esn`..]}]->(`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]}) Contains Any(`5esn` In 0X7 In $#usn7 Where 01 Is Null) Order By `2esn` Starts With $`4esn` Ascending Where 12.0 In 123.654 In _usn4"), + octest:ct_string("Delete $0[12.0...e1],_usn4[.12..$usn2][$_usn3..123.654],07[..07][..0X7] Remove [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where _usn4[`7esn`]|$#usn7 In $@usn5 In $`1esn`].@usn6 Return Distinct .0 Starts With `1esn` As #usn7,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} As usn2,$@usn5[..$#usn7] Limit None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[Extract(#usn7 In 9e0[$1000] Where .e1 In 123456789)][{_usn3:01[`8esn`..9e12][.12..0]}] Union All Unwind (#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})[..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})] As #usn7"), + octest:ct_string("With *,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] Return Distinct `` Starts With $123456789,$`4esn` Starts With $`4esn` Starts With $_usn3,9e1[$#usn8][$1000] Order By .e12[.12..] Desc,{@usn5:01[`3esn`..][Count(*)..]} Starts With Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str']) Desc,``[$`3esn`] Descending Skip {@usn5:\"d_str\"[True..]} In _usn4(0 =~1e1,$123456789 Contains $#usn8 Contains ``) In [999 Contains $1000,`2esn` =~.e12 =~0X0123456789ABCDEF,_usn4[@usn6..][$0..]] Union All Return Distinct *,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null Order By .e0 Starts With $@usn6 Starts With $7 Descending Skip [$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa) With Distinct _usn3[0x0],$@usn6 Is Null Is Null As `5esn` Where 12.0[$1000..][#usn7..] Remove [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]|12[..$999][..$`2esn`]].`1esn`?,#usn7:`4esn`:`6esn`,Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12).`5esn`?"), + octest:ct_string("Create (:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]}),(((#usn8 :_usn4{@usn5:$0[0Xa..$123456789]})<-[ *..010{#usn7:``[$`3esn`]}]-(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]})<-[ *00..0Xa]->(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})))"), + octest:ct_string("Return *,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) As `7esn` Order By 9e0[$1000] Asc Limit (`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..])"), + octest:ct_string("Create #usn8=((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})<-[`8esn`?:`` *01234567..$usn1]->(:_usn4)),`5esn`=(({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]->(#usn8 :``:usn2)-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1})) Unwind $_usn4 Starts With $1000 Starts With 12 As #usn7 Unwind $_usn3 Is Not Null Is Not Null As `1esn`"), + octest:ct_string("Optional Match (`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4}) Return Distinct _usn3 Is Not Null Is Not Null As `` Skip 0X7[..$`8esn`] Limit {@usn5:$@usn6 Is Not Null Is Not Null} Starts With [`3esn` In `2esn`[..01][..True] Where 0x0[usn1..usn1]] Starts With Extract(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..]|0X7['s_str'..][01..]) Union All Merge (`1esn` :`3esn`{#usn8:$usn2[0.e0],`8esn`:$`4esn`['s_str'..]})<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]}) On Create Set `2esn`+=0X0123456789ABCDEF In .12,`1esn` =$`7esn` In False In $`1esn` On Create Set usn1+=_usn3 Starts With 12e12 Starts With `5esn`,`4esn`+=(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})[..Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``|Count ( * )[$`5esn`..][$7..])][..$usn2],#usn7+=.e0 Is Null Optional Match #usn8=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}),`2esn`=(`8esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[`6esn`?:@usn5|_usn3 *01234567..]-(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})"), + octest:ct_string("Create ((@usn6 {_usn4:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})-[?:`5esn`|:usn2 *123456789..{#usn7:$`1esn` =~999,`4esn`:$@usn6[00]}]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null})) Delete [#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Union All Optional Match @usn5=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),#usn7=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]}))) Merge (`1esn` :`3esn`{#usn8:$usn2[0.e0],`8esn`:$`4esn`['s_str'..]})<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]}) Union Match @usn5=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),#usn7=(((:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})-[`3esn`?:`5esn`|:usn2{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}]-(usn2 :usn1:`3esn`)-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})))"), + octest:ct_string("Remove `8esn`:@usn5,Single(#usn7 In 9e0[$1000] Where $1000 Is Not Null).`5esn` Merge `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] On Match Set (`3esn` {usn2:$usn2[`4esn`..9e12]})<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1).#usn7! =_usn4 Starts With `` Starts With 1000,Extract(`3esn` In `2esn`[..01][..True] Where 0X7[..$`8esn`]|$#usn7 Starts With 01234567 Starts With $0).`5esn`! =@usn6(Count ( * ) In True In @usn5)[None(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)] Merge ((@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]->(_usn4 )-[#usn7?:`7esn`|:`2esn` *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})) On Create Set #usn7 =[$`3esn` Ends With 01234567][..{`3esn`:`6esn` Starts With `6esn`}][...e1],@usn6+=0.12[$0..$usn2] On Create Set `4esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1 =(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Union Match (((`` $`6esn`)<-[usn2*{_usn3:0.e0[0X0123456789ABCDEF..],`8esn`:$`5esn` In 07 In 00}]-(`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}))),(((`` $`6esn`)<-[usn2*{_usn3:0.e0[0X0123456789ABCDEF..],`8esn`:$`5esn` In 07 In 00}]-(`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}))) Where $@usn6 In @usn6 In 1e1 Create usn1=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) Merge `6esn`=((:_usn3{`7esn`:$999 Ends With .e0})<-[`3esn`?{@usn6:Count(*)[..@usn6][..`7esn`],`6esn`:`2esn` In 9e0 In 7}]-(#usn8 :_usn4)-[:`` *0..01]-(`3esn` :`1esn`:_usn4{#usn8:1e1 Is Not Null Is Not Null}))"), + octest:ct_string("Unwind [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e1[usn1..0x0][12.e12..12.0]][..{usn2:0x0[0X7]}][..[12.e12 Is Not Null Is Not Null,$@usn6[.0..][0e0..]]] As _usn4 Union All With Distinct 1.e1[$`3esn`][0Xa] As @usn5 Order By (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Ascending,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null Descending,9e12 =~@usn6 Asc Skip usn1[$@usn5] Where $@usn6[00]"), + octest:ct_string("Remove [$``[7],`7esn` Ends With $7 Ends With $@usn5].`8esn` Union Return *,(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Is Not Null Is Not Null As `3esn` Order By 1e1 Ends With $`2esn` Descending,$usn1 Starts With 0x0 Starts With #usn8 Descending Skip #usn8 Ends With $@usn5 Ends With $7 Limit $`5esn`[$`3esn`..] Unwind $usn1 Starts With usn1 Starts With True As `8esn` Detach Delete `1esn`[$@usn6][07],``[$`3esn`]"), + octest:ct_string("Merge `1esn`=(`` {#usn7:#usn8 Is Not Null Is Not Null})<-[`5esn` *0xabc]-(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Unwind $1000[$@usn6][$_usn4] As `6esn` Detach Delete Null Ends With _usn4 Ends With 0.0 Union Detach Delete [0x0 Ends With 12.0 Ends With `5esn`,12e12 Ends With 0.0 Ends With usn1,00[1.e1..]] Ends With All(#usn8 In `7esn` Where $`3esn`[..0xabc][..$7]) Ends With Any(@usn6 In False Contains 0 Contains $`6esn` Where `6esn`[$1000][`3esn`]),@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])] Union Merge (((_usn4 :#usn7:`5esn`)<-[#usn8 *0x0..]->(#usn8 :_usn3{_usn4:.e1[7..][9e0..]})<-[`2esn`?:usn1|`4esn` *00..0Xa]->(`6esn` :#usn8:`1esn`{`6esn`:usn1[..$@usn6][..00]})))"), + octest:ct_string("Unwind `6esn`[$`8esn`][9e1] As `7esn` Merge ({`1esn`:1.e1[`8esn`]})<-[:``{``:.0[$``..0X7]}]-(#usn8 :`8esn`) On Create Set All(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True]).`1esn`? =$usn2[`2esn`..$`1esn`],{usn1:#usn8 =~.e0,_usn3:$_usn4 Is Null Is Null}.`1esn` =$`7esn`[.e1][12.0] Optional Match ((`6esn` {_usn4:$`5esn` Is Not Null Is Not Null})),`5esn`=(((`2esn` :`1esn`:_usn4)<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})<-[`4esn`:usn2]->(:`6esn`:_usn3{`2esn`:999[123.654..$usn2][Count ( * )..0x0]}))) Union Optional Match usn1=((`3esn` {usn2:$usn2[`4esn`..9e12]})<-[?{@usn5:_usn3 Ends With 7 Ends With $`1esn`}]->(_usn3 :_usn4)<-[_usn4?:`3esn`]-(:_usn3{_usn4:.e1[7..][9e0..]})),`7esn`=(usn1 :`7esn`) Return Distinct Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null),9e1[usn1..0x0][12.e12..12.0] Order By 00[12e12][$`7esn`] Ascending,@usn5[0..] Descending,Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Descending Limit 0.e0[$`4esn`..`2esn`] Merge `5esn`=(({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]->(#usn8 :``:usn2)-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}))"), + octest:ct_string("Unwind $`6esn` Is Not Null Is Not Null As `4esn` Remove Single(#usn7 In 9e1[$`1esn`..] Where ``[$`3esn`]).#usn7!,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3])._usn3?,{usn2:`2esn`[..$_usn3]}.usn2? Unwind $`3esn` Contains $`1esn` As `6esn` Union Unwind 0x0[12e12..$`7esn`] As `7esn` Union All Detach Delete $0[123.654..0.e0],123.654"), + octest:ct_string("Remove [#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|Count(*) Is Null].#usn7,{``:0Xa =~False =~@usn5,`8esn`:.12[123.654..]}.`6esn`!,Any(#usn7 In $999 In 1e1 Where usn1 =~$`7esn`).`1esn`! Match (_usn3 :`5esn`{#usn8:0xabc In 010 In #usn7}),`3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) Union All With 12 Starts With True Starts With 12e12 As _usn4 Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc Union Remove None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]).`4esn`,[@usn6 In 010[`5esn`] Where 9e1 Ends With Count(*) Ends With $7|`1esn` Is Not Null Is Not Null].`` Match `6esn`=((`4esn` :_usn4)-[`5esn`?:_usn3|:`7esn`]->({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:`5esn`|:usn2]->(usn2 :`5esn`)) Where `` Is Null Create (_usn4 :_usn4{`2esn`:`6esn` Starts With `6esn`,`8esn`:1000[0e0][1e1]}),`2esn`=(:#usn8:`1esn`$`7esn`)"), + octest:ct_string("Return #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Order By Extract(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12]|`8esn` Contains Count(*) Contains $#usn7)[..[#usn7 In True Contains 's_str' Contains $usn1 Where Count(*) Ends With usn1]][..Filter(usn2 In 7[12] Where #usn7[0.e0..]['s_str'..])] Ascending,{@usn5:`6esn`[$1000][`3esn`]}[All(`3esn` In `2esn`[..01][..True] Where 0Xa =~False =~@usn5)..] Asc,usn2[1.e1] Descending Skip $``[01234567..][.0..] Return Distinct $#usn7 In $@usn5 In $`1esn` As `4esn` Remove Filter(#usn7 In 9e0[$1000] Where 12['s_str'][01])._usn3?,[@usn5 In 's_str'[0..] Where usn1 Starts With 00|True Contains .e12].`6esn`!,None(@usn5 In 's_str'[0..] Where 0.e0).`4esn`"), + octest:ct_string("Detach Delete Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1) With *,`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] As @usn5 Where 07 Contains `3esn` Contains `7esn` Unwind False[$usn1][0x0] As usn2"), + octest:ct_string("Match _usn4=((:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})) Where 123456789[12] Merge #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}) On Match Set _usn3:`7esn` On Create Set Single(@usn6 In 010[`5esn`] Where 123.654).`6esn`? =0.e0[0X0123456789ABCDEF..],(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}).`3esn`? =999[..`1esn`][..07],[@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1].`6esn` =`7esn` Starts With @usn5 With Distinct 0Xa In #usn7 In 's_str',`4esn` Starts With 0e0 As `7esn` Skip (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`) Where .e0 Union Remove [0x0[0X7]].``!,(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}).`4esn`,{@usn5:01[`3esn`..][Count(*)..]}.`8esn`? Unwind 07[False] As @usn6 Union Remove [Null[..010][..1000]]._usn4!"), + octest:ct_string("Unwind #usn8 Is Null As `8esn` Merge ((_usn3 :usn2))"), + octest:ct_string("Create (#usn7 {`6esn`:$`2esn` Contains Count(*)})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`}) Return Distinct *,1e1 Contains 0.e0 Contains 9e1 Limit None(#usn7 In 9e0[$1000] Where $1000 Is Not Null) Is Null Is Null Create ((#usn7 {`1esn`:$`4esn` Is Null Is Null})<-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(`6esn` :`8esn`)) Union Merge `1esn`=((`6esn` {`3esn`:$`2esn`[0..123456789][``..`1esn`],`7esn`:$0[0Xa..$123456789]})<-[? *00..0Xa]->(usn2 :@usn5)-[?:`2esn`|`4esn` *0Xa{#usn7:1.e1 Starts With 9e12}]-(:`4esn`:`6esn`{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})) On Create Set `3esn`+=$@usn6 Is Not Null Is Not Null,[$usn2 Is Not Null Is Not Null,0 =~1e1].`3esn`? =$1000[0X0123456789ABCDEF][12] On Match Set `2esn` =`3esn`[..0X0123456789ABCDEF][..0x0]"), + octest:ct_string("Merge (#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) Return Distinct *,9e1[$``..][0.e0..] Order By Count ( * )[$`5esn`..][$7..] Desc"), + octest:ct_string("Unwind $12[$usn1..][Count(*)..] As usn2 Return $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Order By 1.e1 In 1000 In _usn3 Desc,None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Descending,123.654 Is Null Is Null Asc Union Delete True Contains 's_str' Contains $usn1 Union Optional Match ((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})-[? *0X0123456789ABCDEF..{#usn7:$@usn6[$0..9e12][.e12..Null]}]->(#usn8 :`5esn`)-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)) Where 010 Starts With 0 Starts With 0.0 With _usn4 Contains $_usn3 Contains .e1,$`4esn`['s_str'..] As `` Limit .e12[..999][..@usn5] Where .12 In `8esn` In $#usn8 Return 0x0[12e12..$`7esn`] As #usn7 Order By .e12[`2esn`..010] Desc,0xabc In 010 In #usn7 Ascending Skip $999 In 1e1"), + octest:ct_string("With usn1[False..] As usn2 Order By 0 Ends With 12.e12 Ends With usn2 Asc,\"d_str\" In @usn5 In $@usn5 Ascending,$usn2 Desc Skip $usn2[`2esn`..$`1esn`] Delete [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] In [12e12 In 123456789,`1esn`] In All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),$999 Is Null Is Null Return *,'s_str' Starts With 9e0 Starts With usn2 As `8esn` Union All Create ((:_usn4{`4esn`:.e1 In 123456789})<-[ *999..{`3esn`:123456789 =~$999,_usn4:`4esn` Is Not Null Is Not Null}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})) With Distinct (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Union Return Distinct usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Skip $@usn6 Ends With `1esn` Limit 9e1 Ends With Count(*) Ends With $7 Merge _usn4=(`5esn` :``:usn2)-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}) Match @usn6=(usn2 :_usn4) Where `4esn`[$_usn3..$`7esn`]"), + octest:ct_string("Unwind 9e0 Is Not Null Is Not Null As `4esn`"), + octest:ct_string("Remove Extract(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..]|`2esn`[$@usn6..][Null..]).``,Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12).@usn6 Unwind #usn8(1000[12e12][`5esn`],9e1 Contains 12)[Extract(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0)..`1esn`(Distinct `3esn`[7..0.e0][0.0..123456789],`1esn` Starts With 0xabc Starts With $usn2)][Filter(`6esn` In $`6esn`[``..][Count(*)..] Where 9e0[Count(*)..0.12][$`1esn`..12.0])..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12)] As @usn6 Remove [@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|$`3esn` In $usn2].usn1,[#usn8 In `7esn` Where $`5esn` Is Not Null Is Not Null].#usn8 Union Return Distinct $`3esn`[$_usn4..0Xa] As #usn7,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa) As `3esn`,$`5esn`[$`3esn`..] As `4esn` Limit $`` Is Not Null Is Not Null"), + octest:ct_string("Delete 12.e12 Starts With \"d_str\" Starts With 9e1 Union All Return 123456789 =~$999 Order By $7[01..$123456789][#usn7..12.0] Descending,.12[..usn2][..12e12] Descending Merge `8esn`=((#usn8 :_usn3)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`)) Union All Unwind $_usn3 Is Not Null As _usn3"), + octest:ct_string("Optional Match @usn5=(:@usn5{#usn7:12e12 In $`5esn`})<-[?{``:00 Contains Count ( * ) Contains 0x0,#usn8:123.654 In $`7esn`}]-(:usn2{``:0.0 =~9e0 =~$0})-[?*]-({`8esn`:`5esn` Contains #usn7 Contains 9e12}) Where 9e1 Contains 12 Remove Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]|$``[..\"d_str\"][..$#usn8]).`6esn`!"), + octest:ct_string("With *,$@usn5 In 12e12 In 01 Order By 0.12 Starts With $`8esn` Starts With @usn5 Ascending Limit $7 Starts With $`4esn` Return Distinct *,00 Ends With $`1esn` Ends With `7esn`,$@usn6 Is Not Null Is Not Null As `8esn` Order By (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Descending,[#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Descending Skip [usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Limit 12.e12 =~.0 =~usn1 Return Distinct (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] As #usn7,1e1 Is Null Is Null As usn2,{`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}[..`2esn`(Distinct 0 Ends With 12.e12 Ends With usn2)][..Filter(_usn4 In 12e12 In 123456789 Where .e1 In 123456789)] As usn1"), + octest:ct_string("Remove #usn8(1000[12e12][`5esn`],9e1 Contains 12).@usn5?,({@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]})<-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]->(:#usn8:`1esn`$`7esn`).`6esn`?,[#usn7 In 9e0[$1000] Where .e0 Is Null|Count(*)[9e12..12.0]].``! Return *,`2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] As `3esn`,``[$`1esn`] Skip None(#usn7 In $999 In 1e1 Where _usn3 Contains 9e12 Contains `8esn`)[..Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|Count(*)[..@usn6][..`7esn`])] Limit True Ends With $_usn3 Ends With 12 Union Optional Match @usn5=(`7esn` :`3esn`{`2esn`:999[123.654..$usn2][Count ( * )..0x0]})-[`2esn`?:usn1|`4esn` *00..0Xa]-(`4esn` :`4esn`:`6esn`),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Where 12 Starts With #usn7 Starts With 0Xa Union With [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] As #usn8 Order By [#usn7 In $999 In 1e1 Where 0X7['s_str'..][01..]] Is Not Null Is Not Null Desc Limit Any(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1) Contains 0X7 Contains Extract(`8esn` In 123456789 =~@usn6 Where @usn5 Contains 9e0|9e0 Contains $12 Contains `3esn`)"), + octest:ct_string("With 12 Starts With True Starts With 12e12 As _usn4 Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc Union All Merge `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] On Match Set (`3esn` {usn2:$usn2[`4esn`..9e12]})<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1).#usn7! =_usn4 Starts With `` Starts With 1000,Extract(`3esn` In `2esn`[..01][..True] Where 0X7[..$`8esn`]|$#usn7 Starts With 01234567 Starts With $0).`5esn`! =@usn6(Count ( * ) In True In @usn5)[None(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)]"), + octest:ct_string("Remove Single(#usn7 In 9e1[$`1esn`..] Where `3esn`[7..0.e0][0.0..123456789]).`7esn`?,{usn1:$123456789 In 0.12}.`1esn`!,`3esn`(9e0[0X7..$`6esn`][123456789..0]).@usn5 With Distinct *,999 Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains {_usn3:123.654 In $`7esn`} As `6esn`,.e0 Is Not Null Is Not Null As `7esn` Order By _usn3 In $`8esn` In @usn6 Desc Where `8esn` Contains Count(*) Contains $#usn7 Merge `3esn`=(usn1 :#usn8:`1esn`{`3esn`:`2esn` In 9e0 In 7})-[@usn5?{#usn7:12e12 In $`5esn`}]->(`8esn` :`8esn`)"), + octest:ct_string("Delete @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])] Delete 's_str' Starts With 1e1 Starts With $0 Remove `7esn`:@usn6 Union With `3esn`[7..0.e0][0.0..123456789] As _usn4,$usn2[0.e0] As _usn3 Limit 9e1 Contains $999 Where @usn5 Is Not Null Unwind [@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] As #usn8"), + octest:ct_string("Delete $7[$12..12e12][1.e1..9e1],Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..]) =~[_usn4 In 12e12 In 123456789 Where .0 Ends With Count ( * )|$`1esn` In .e0]"), + octest:ct_string("Match ({`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[:@usn6|:`7esn` *0..01{``:`1esn`[0.0..1e1][0x0..7],usn2:01[`3esn`..][Count(*)..]}]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[:@usn6|:`7esn` *0..01{``:`1esn`[0.0..1e1][0x0..7],usn2:01[`3esn`..][Count(*)..]}]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}),`4esn`=(:#usn7:`5esn`{`4esn`:$``[..\"d_str\"][..$#usn8]}) Remove None(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null).`5esn` Union All Optional Match ((({`7esn`:999 In 0e0})<-[#usn7 *01..123456789]->({`2esn`:`7esn` In 010 In usn1,`8esn`:$0[123.654..0.e0]})<-[? *7..]-(usn1 {@usn5:_usn4[$usn1..01234567][123.654..`5esn`],`5esn`:1.e1 =~$_usn4}))) With Distinct *,0Xa[Count(*)..],[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,0xabc In .12 In 0Xa Descending,.0 Contains .e12 Contains 0 Desc Skip All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1)[None(@usn6 In 010[`5esn`] Where 00[1.e1..])..[$12[$usn1..][Count(*)..],$@usn5 Contains 's_str' Contains \"d_str\"]][Extract(`3esn` In 9e1 Contains $999 Where 0e0 Starts With 999 Starts With `2esn`|9e1 Ends With Count(*) Ends With $7).._usn4(`1esn`[0.12..][@usn6..],#usn8 =~0.e0)] Limit `1esn` Starts With 9e1 Create ``=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})"), + octest:ct_string("Unwind .e1 In 123456789 As `4esn` Unwind .e1[7..][9e0..] As `4esn` With *,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``) Is Null Is Null"), + octest:ct_string("Return Distinct *,[`3esn` In `2esn`[..01][..True] Where 0.e0[1000.._usn4][.e1..usn1]|`5esn`[..123.654][...e12]] As `6esn`,$#usn8 Starts With .e12 Starts With 1.e1 As `8esn` Return _usn4 Is Null Is Null As @usn5,.e12[$@usn6..00][01234567.._usn3],Extract(@usn5 In 9e0 Ends With $#usn8 Where $`8esn`[123456789..][$@usn5..]) =~None(#usn7 In True Contains 's_str' Contains $usn1 Where 's_str' Starts With 9e0 Starts With usn2) As @usn5 Skip 9e12 Ends With 12e12 Ends With 12 Limit (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Union Unwind 07 =~`4esn` =~$`1esn` As _usn3 Create `4esn`=(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})<-[`7esn`:`4esn`|@usn5 *12..]->({`4esn`:.e1[..$`3esn`][..01]}),@usn5=(_usn3 :`7esn`)"), + octest:ct_string("Unwind _usn3 =~00 As `4esn` With Distinct #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Skip `8esn`[$12][123456789] Limit Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)[(`` :`5esn`{@usn5:123456789 =~@usn6})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`7esn` {``:9e1 Contains $999,``:$usn2[True..0X0123456789ABCDEF]}).._usn3(Distinct 0x0 Contains $`6esn` Contains `4esn`,usn2[1.e1])][(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})..[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|9e1 Is Null]]"), + octest:ct_string("Optional Match @usn6=(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-(:`5esn`{@usn6:1000[0e0][1e1]})<-[:`8esn`]-(:@usn6) Where .e1[..$`3esn`][..01] Delete 9e0[Count(*)..0.12][$`1esn`..12.0],`7esn` Is Null Unwind _usn3[`5esn`..][usn2..] As #usn7 Union All Return Distinct *,`4esn` Ends With 12 Ends With .12 As usn2 Skip `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] Limit Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``) In Extract(#usn7 In 9e1[$`1esn`..] Where 00 Contains Count ( * ) Contains 0x0|$`5esn` =~usn1) Detach Delete Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null) Is Not Null Is Not Null,010 Starts With $`` Starts With 0e0 Union All Unwind #usn7[..07] As usn1"), + octest:ct_string("Unwind `7esn`[1e1] As `6esn` Match ((@usn5 )),(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-({`1esn`:#usn7[0]}) Return Distinct *,#usn8 =~.e0,Count ( * ) Ends With $123456789 Skip $#usn8[True][9e0] Union All Optional Match usn1=((:@usn5{@usn5:$12[9e0..$999]})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`1esn` :`6esn`:_usn3{#usn7:0x0[$0][7]})-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})) Return @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1|$@usn5 In $`6esn` In 12e12) Ends With (:`7esn`{#usn7:0 =~1.e1 =~$#usn7})<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}),`1esn`($`4esn`[`4esn`][Count(*)],`2esn` Starts With $`7esn`) =~Extract(@usn5 In 9e0 Ends With $#usn8 Where .e0 Starts With $@usn6 Starts With $7) =~{`3esn`:_usn3[`2esn`..0X7][0.e0..$`3esn`]}"), + octest:ct_string("Detach Delete Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])],[$usn1 Ends With _usn4 Ends With `2esn`][@usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)..[#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1]][Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..])..Extract(#usn7 In 9e1[$`1esn`..] Where $999[``])],{`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1}[[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]]..][(_usn4 {`6esn`:$_usn4 =~$`1esn` =~`2esn`,_usn3:#usn8 Is Null})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[_usn4?{_usn3:.e1[.e1..`1esn`],@usn6:.12 In `8esn` In $#usn8}]->(usn2 :@usn5)..] With *,12 Ends With True Ends With @usn6,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By Extract(@usn6 In False Contains 0 Contains $`6esn` Where $0 Ends With $usn1 Ends With $_usn3) Ascending,$@usn6 =~0xabc =~$999 Descending,[`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5|`7esn`[1e1]] Contains (`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->(`2esn` {`1esn`:$`4esn` Is Null Is Null}) Contains Single(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``) Desc With *,$`7esn`[$_usn4][.e0],`5esn` Contains `1esn` Contains usn1 As `2esn` Order By `4esn` Contains 9e0 Desc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Is Not Null Asc Skip [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] Limit $@usn6 =~#usn7 =~True Where 12.0 Is Null Union All With Distinct *,``[..False][..`3esn`],(@usn6 :`8esn`)<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`}) Ends With #usn8(Distinct 12.e12 Contains #usn7 Contains $_usn4,01[`3esn`..][Count(*)..]) Ends With [`5esn`[..True][..0.e0],12 In $usn1 In 7,$`8esn`[123456789..][$@usn5..]] As `5esn` Order By $`1esn` Starts With $`4esn` Starts With $_usn3 Asc,01234567 In $@usn6 In $#usn7 Desc Skip 1000 Ends With `7esn` Limit usn2 Starts With .0 Return Distinct #usn7[`8esn`..usn1][$999..`7esn`] As #usn8,[#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`]][[`2esn` Is Null]][Extract(#usn7 In $999 In 1e1|01234567[Null..$_usn3])] As `8esn`,999 In #usn8 In $`` Order By 999[12.e12] Desc,07 Ascending,[`6esn` In $`6esn`[``..][Count(*)..] Where $`6esn`[1.e1][$_usn3]|$`5esn` Is Not Null Is Not Null][{`6esn`:usn2 =~usn1 =~Count ( * ),@usn5:999 Is Not Null Is Not Null}..] Desc Merge ``=(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(#usn7 :`4esn`:`6esn`{`1esn`:`1esn`[$@usn6][07]}) On Match Set @usn5 ={`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)],`7esn` =None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..]"), + octest:ct_string("Unwind Any(@usn6 In False Contains 0 Contains $`6esn` Where 0.0 Is Null Is Null) =~{``:$`2esn`[0..123456789][``..`1esn`]} As `` Delete $`3esn`[.e1][_usn4],None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 9e12[$`5esn`..$123456789]) In Extract(@usn5 In 's_str'[0..] Where 07 Ends With 9e12 Ends With `2esn`|00[01234567][False]) In [12 =~usn1] Union Delete 123.654 In $`7esn` Return Distinct *,12.e12 Contains `6esn`,12[``...e12] As `6esn` Order By 's_str' Is Not Null Descending,123.654[`4esn`..12] Asc,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) Ascending Union Unwind `4esn` Starts With 0e0 As `1esn` Remove {_usn3:_usn4 Is Null Is Null}.``,``(@usn6[`1esn`..]).`7esn`! Return Distinct 1.e1[..123456789][..999],_usn3[12.e12..][`5esn`..] As @usn6,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `5esn` Order By 123456789 Contains 0Xa Descending,[@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00|`5esn`[$`7esn`..$@usn5]] Is Not Null Is Not Null Desc,00[False..0e0] Ascending"), + octest:ct_string("Return 010 Starts With $`` Starts With 0e0 As @usn5"), + octest:ct_string("With *,{`5esn`:`6esn`[$`8esn`][9e1]} Is Not Null Is Not Null Order By [0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]][{usn2:$@usn6 Ends With `1esn`,_usn3:`7esn`}..][{@usn6:1e1 Is Not Null Is Not Null,`8esn`:$`1esn` Starts With $`4esn` Starts With $_usn3}..] Desc,0.0[usn1..] Desc Delete 0X0123456789ABCDEF[0X7..$`2esn`][$`5esn`..$usn2],$`3esn` Ends With 1000,[$`5esn` =~usn1,True[`3esn`],@usn6[9e12]][Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..] Union All Return Distinct 12.e12 =~0X0123456789ABCDEF =~1.e1 As `6esn`,0.e0[..$7] As _usn3,usn1 Ends With 0.0 Order By None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,.e0 Starts With $@usn6 Starts With $7 Descending Limit $@usn6[..12] Merge `3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) On Match Set `1esn` =[#usn7 In 9e0[$1000] Where .e1 In 123456789|.e12[..999][..@usn5]] In `5esn`(`1esn` Starts With 0X7 Starts With \"d_str\",9e1) In @usn5(Distinct `5esn` Contains $`5esn` Contains 0X7,True[..#usn8]) Detach Delete 999 Is Not Null Is Not Null"), + octest:ct_string("Delete $#usn7[..0Xa],01 In $@usn6 With `5esn`[..123.654][...e12] As @usn6,(`6esn` {_usn3:9e12 Starts With 1e1,_usn4:`2esn`[..$_usn3]})-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}) Starts With Extract(`6esn` In $`6esn`[``..][Count(*)..] Where @usn5 Is Null|0xabc In 010 In #usn7) As `2esn`,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As `1esn` Order By None(#usn7 In 9e0[$1000] Where $``[True]) Ends With None(#usn8 In `7esn` Where $1000 Starts With $`7esn`) Ends With Single(#usn8 In `7esn` Where @usn5 Contains 9e0) Descending,@usn5[$`7esn`..`5esn`] Ascending,.0 Contains .e12 Contains 0 Asc Skip usn1 Limit `6esn`[$`8esn`][9e1] Where False Starts With 0X7 Starts With 01234567"), + octest:ct_string("With 0x0[..9e0],Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By 1.e1[12..][$`4esn`..] Asc,Null[..010][..1000] Descending,Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] Descending Limit 1.e1[12..][$`4esn`..] Where 07[$`2esn`..9e12][$`4esn`..9e12] Union All Create ((:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})),`2esn`=(((@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]})<-[? *7..{`1esn`:.e12 Ends With 0Xa Ends With 0xabc}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7})<-[ *..07]->(`8esn` {`8esn`:$_usn4 Starts With 12.e12}))) Match (({`7esn`:usn1[False..`5esn`][$1000..$12],`1esn`:$usn1[`2esn`..][$`2esn`..]})) Unwind `4esn` Contains 9e0 As `8esn`"), + octest:ct_string("Unwind $#usn8[@usn6..] As usn2 Merge ((`2esn` :_usn3{`8esn`:0.e0 Starts With .0 Starts With 123456789,usn2:$`4esn`[`8esn`]})) On Match Set `1esn` =All(@usn6 In 010[`5esn`] Where $@usn5 Ends With @usn5 Ends With 0xabc)[Extract(#usn7 In 9e1[$`1esn`..] Where 123.654 In $`7esn`)..[12.0 Starts With .12 Starts With `6esn`]],count(Distinct $`3esn`[..0X0123456789ABCDEF][..7])._usn3! =1.e1 Is Null Is Null With 0Xa In #usn7 In 's_str',`4esn` Starts With 0e0 As `7esn` Skip $1000 Is Not Null Limit 0X7['s_str'..][01..] Union All Unwind $@usn6 In @usn6 In 1e1 As #usn7 With usn2[12.e12..] As `2esn`,$`2esn`[0..123456789][``..`1esn`],#usn8[`6esn`..][$``..] As `2esn` Skip $@usn6 Ends With `1esn` Limit 9e1 Ends With Count(*) Ends With $7 Delete $0[12.0...e1],_usn4[.12..$usn2][$_usn3..123.654],07[..07][..0X7] Union Detach Delete $@usn6 Ends With `1esn`,$123456789[0X0123456789ABCDEF],12[..0e0][...e1] Remove None(_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`).`2esn`,(`5esn` :``:usn2)<-[?:`4esn`|@usn5{usn2:$@usn6[$`8esn`..][123456789..]}]->(:_usn4{`8esn`:01234567[Null..$_usn3]}).``?,Extract(usn2 In 7[12] Where .12[0X7..][12e12..]|0.0 Contains #usn7).`1esn` Optional Match @usn6=(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})-[:@usn5|_usn3 *00..0Xa]-(:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->(_usn4 :@usn5) Where \"d_str\"[True..]"), + octest:ct_string("With Distinct Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..],{#usn8:12.0 Ends With `2esn`,@usn5:usn1 Starts With 00}[Any(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..],999 In 0e0 As #usn7 Order By `1esn` Starts With 9e1 Desc Where $@usn5[..$#usn7] Unwind Extract(@usn5 In 's_str'[0..] Where 12 In $usn1 In 7) =~All(`3esn` In `2esn`[..01][..True] Where $`7esn`[.e1][12.0]) As @usn5 Return Distinct Count ( * ) In True In @usn5 Skip 01234567[\"d_str\"..`4esn`] Limit 123.654 In $`6esn` Union Match _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Where 010 Is Null Is Null Union Unwind usn2 =~usn1 =~Count ( * ) As @usn6 Remove `6esn`:`6esn`:_usn3"), + octest:ct_string("Create (`3esn` {_usn4:123.654 In 12})-[`4esn`?:_usn4 *7..]-(`1esn` :#usn8:`1esn`{`7esn`:@usn5 Starts With 9e0 Starts With 010,`6esn`:$#usn7 =~`2esn`})<-[ *00..0Xa]->(#usn7 :usn1:`3esn`),(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`})<-[?:`3esn`*..]-(usn2 :`1esn`:_usn4{usn2:999 Contains $1000})<-[`5esn`?{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->(`3esn` :usn1:`3esn`{`1esn`:0X7[.0]}) Merge #usn7=({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Union Optional Match (`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Where #usn7[0.e0..]['s_str'..] Merge ((@usn6 :_usn4{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]})) On Match Set #usn7+=`1esn` Remove None(_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`).`2esn`,(`5esn` :``:usn2)<-[?:`4esn`|@usn5{usn2:$@usn6[$`8esn`..][123456789..]}]->(:_usn4{`8esn`:01234567[Null..$_usn3]}).``?,Extract(usn2 In 7[12] Where .12[0X7..][12e12..]|0.0 Contains #usn7).`1esn` Union Delete 9e1[$`1esn`..]"), + octest:ct_string("Remove `5esn`(.0 Is Null Is Null).usn1,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5).@usn5?,{``:12 In $usn1 In 7,`1esn`:Count(*) Ends With usn1}.usn2? Union Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) On Create Set #usn7+=.e0[..9e12][..07],`4esn`(True[$_usn3..],$999[``]).usn2 =123456789 Is Null Is Null,@usn5 =01[07..][1.e1..] On Create Set `5esn`+={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},usn2 =True Contains 0x0 Contains $_usn3"), + octest:ct_string("Merge #usn8=(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[`3esn`]->(:@usn5{#usn7:12e12 In $`5esn`}) On Create Set Filter(usn2 In 7[12] Where $`6esn`[1.e1][$_usn3]).``? =0Xa[$`8esn`..][$_usn4..],_usn4+=0X0123456789ABCDEF In $7 On Match Set #usn7 =9e1[`1esn`..0][999..1e1],All(usn2 In False[$usn1][0x0] Where `2esn`[..01][..True]).`1esn`? =$usn2[`2esn`..$`1esn`],Single(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1).#usn7 =All(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null) Detach Delete $`5esn` Starts With 0.0 Starts With .e0,Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|9e0 Ends With $#usn8)[(`` :`5esn`{@usn5:123456789 =~@usn6})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`7esn` {``:9e1 Contains $999,``:$usn2[True..0X0123456789ABCDEF]}).._usn3(Distinct 0x0 Contains $`6esn` Contains `4esn`,usn2[1.e1])][(:@usn6{usn2:$123456789 Contains $#usn8 Contains ``,_usn3:`3esn`[..0X0123456789ABCDEF][..0x0]})<-[`7esn`?:usn1|`4esn`]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})<-[:_usn4]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})..[#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`]|9e1 Is Null]],usn1[False..`5esn`][$1000..$12] Union Remove Extract(_usn4 In 12e12 In 123456789 Where .e1 Starts With 12.e12 Starts With `2esn`|$@usn5 Is Null Is Null).@usn5!,Extract(@usn6 In 010[`5esn`] Where $0[0Xa..$123456789]|#usn7[0.e0..]['s_str'..]).`8esn`?,(:#usn8:`1esn`$`7esn`)-[?:@usn6|:`7esn` *0X0123456789ABCDEF..{_usn4:0x0[12e12..$`7esn`]}]->({@usn5:Count(*) Is Not Null Is Not Null}).`5esn`?"), + octest:ct_string("Delete 07 =~`4esn` =~$`1esn`,9e1 In 0X7 In Count(*) Delete 07[_usn3..][`6esn`..] Detach Delete [#usn7 In 9e1[$`1esn`..] Where $@usn5 In $`6esn` In 12e12|12.0 Is Null Is Null] Contains [`3esn` In `2esn`[..01][..True] Where $0 Ends With $usn1 Ends With $_usn3] Union All Delete Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]),$_usn3 Is Null Create @usn5=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),_usn4=({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[? *12..{usn2:$`8esn`[123456789..][$@usn5..]}]->(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Unwind Extract(#usn7 In $999 In 1e1 Where `5esn`[..True][..0.e0]|$`5esn` =~$0 =~``) In (:`7esn`{#usn8:0Xa Ends With $`3esn` Ends With $1000})-[:`5esn`|:usn2 *01234567..]-(:`2esn`{_usn3:@usn5[0.0..0X7]}) In Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 9e1[$#usn8][$1000]|999 Contains 0 Contains $`5esn`) As usn1 Union All Create `5esn`=(({@usn5:``[9e12][$999]})-[usn2{``:$`1esn` =~999}]-(:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[:@usn6|:`7esn`{usn2:0x0 Starts With $`6esn`,_usn4:$`4esn`[`8esn`]}]-(@usn6 {@usn6:0e0 =~7 =~12.0})),((_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`})<-[? *..010{`2esn`:'s_str'[0..]}]->(_usn3 :`5esn`))"), + octest:ct_string("Create ((({`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[`3esn` *..07{usn2:True Contains 0x0 Contains $_usn3}]-({``:``[$`3esn`],#usn8:$@usn6[00]}))),`5esn`=(({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Optional Match `3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))),usn2=(:#usn8:`1esn`$`7esn`) Where 123456789 Is Null Is Null Merge `8esn`=(((#usn8 :``:usn2)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[@usn5? *0xabc{`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]}]->(@usn6 :``:usn2{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}))) On Match Set Any(#usn8 In `7esn` Where $`3esn` Contains $`1esn`).`8esn`? =0x0 Contains $`6esn` Contains `4esn`,Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where False[$usn1][0x0]|@usn5[0.0..0X7]).usn2! =Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1),`3esn` =12.e12[..$999][..07] On Match Set usn1 =_usn4 Is Not Null,`3esn` =usn1[...e12][..1.e1] Union Remove Any(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $123456789 In 0.12).#usn8?,[`5esn` In `7esn`[$usn2..][$123456789..] Where 12e12 Is Not Null|$#usn7 Starts With 01234567 Starts With $0].`7esn`,(`4esn` :@usn6)-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4).`4esn`"), + octest:ct_string("Remove Single(`3esn` In `2esn`[..01][..True] Where 9e12[9e1]).`2esn`?,`2esn`($7 In $usn1 In 999,'s_str' Contains 12.e12 Contains $`4esn`).`3esn`! Unwind 0X7[..$`8esn`] As `1esn` With Distinct `2esn`($`2esn`[..$`3esn`][..12e12])[usn1($0[123.654..0.e0])..'s_str'][.e12..Single(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null)] As `3esn`,usn1 Ends With 0.0 Order By $`3esn`[$_usn4..0Xa] Desc,$`1esn` Ends With 0X0123456789ABCDEF Ascending,$@usn5 Ends With @usn5 Ends With 0xabc Descending Where #usn8 =~0.e0"), + octest:ct_string("With Distinct *,{@usn6:$`3esn`[.e1][_usn4]}[`8esn`(Distinct $``[True])..] As #usn8,999[12e12..$_usn4] As usn2 Where `6esn`[$1000][`3esn`] Detach Delete `1esn` Starts With 0X7 Starts With \"d_str\",\"d_str\" Is Not Null Is Not Null,_usn4 Starts With `` Starts With 1000 Unwind $`6esn`[0e0..][010..] As `7esn` Union Detach Delete Extract(#usn8 In `7esn` Where ``[7.._usn3]|@usn5 Is Null) Is Not Null Is Not Null,010 Starts With $`` Starts With 0e0 Return 12e12[0x0..12.e12] As `1esn`,.e1[7..][9e0..] As `4esn`,$#usn8 Starts With .e12 Starts With 1.e1 As `8esn` Order By $`5esn` In `2esn` In `2esn` Asc,0.0[..Count ( * )][..`1esn`] Ascending,[9e1 Ends With Count(*) Ends With $7,False[$usn1][0x0]] =~`2esn`(Distinct .12[01][@usn5],Count ( * ) Ends With $123456789) =~[@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]|12 Ends With Count ( * )] Ascending Union Detach Delete [#usn8 In `7esn` Where .e0 Is Null Is Null] Ends With {usn1:$`4esn`[`6esn`..$12],`4esn`:usn1 Contains 010} Ends With (:``:usn2{``:True[$_usn3..]})<-[`2esn`? *01..123456789]-(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(`1esn` $`4esn`),Extract(`6esn` In $`6esn`[``..][Count(*)..] Where 1.e1 Ends With $_usn4 Ends With #usn7|0xabc =~$@usn5) Contains {`5esn`:1.e1[`8esn`],`1esn`:.e0} Contains {usn1:$123456789 In 0.12} Match _usn4=((`1esn` :#usn7:`5esn`{`1esn`:0e0 =~0Xa =~$999})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Where 010 Is Null Is Null Remove `3esn`(Distinct 123.654 Starts With 0X7 Starts With $`4esn`).``!,Any(_usn4 In 12e12 In 123456789 Where True Contains 's_str' Contains $usn1).`2esn`,Filter(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]).@usn5?"), + octest:ct_string("With *,12 Ends With True Ends With @usn6,Filter(`5esn` In 0X7 In $#usn7 Where 010 Is Null) Is Not Null As `2esn` Order By $#usn8[True][9e0] Asc,All(#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7) Contains `2esn`(Distinct 0x0[0.0],0Xa =~False =~@usn5) Contains Single(#usn7 In $999 In 1e1 Where $@usn6 =~#usn7 =~True) Descending Limit $`5esn`[$`3esn`..] Union Return Distinct .0 Starts With `1esn` As #usn7,Single(#usn7 In True Contains 's_str' Contains $usn1 Where `7esn`) Ends With [0Xa Ends With $`3esn` Ends With $1000] Ends With {usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]} As usn2,$@usn5[..$#usn7] Limit None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $0[123.654..0.e0])[Extract(#usn7 In 9e0[$1000] Where .e1 In 123456789)][{_usn3:01[`8esn`..9e12][.12..0]}] Unwind `7esn` Is Null As @usn5 Union All With Distinct *,$@usn6 Ends With 12.e12 Ends With @usn5 As `3esn` Order By .e0 Starts With $@usn6 Starts With $7 Descending Limit All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where False[$usn1][0x0]) In [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null|9e12[9e1]] In [12.0 Is Null,$_usn4[..$_usn4][..`7esn`]] Detach Delete $`8esn`[999],usn2 Ends With $`4esn` Return Distinct *,True In (#usn8 :`6esn`:_usn3)<-[`2esn`?:_usn4{#usn8:$12[9e0..$999]}]->({``:.e1 Starts With 12.e12 Starts With `2esn`}) As `5esn`,Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null]"), + octest:ct_string("Remove (:`8esn`{@usn5:usn2 Ends With .e1 Ends With $`5esn`})<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`).`8esn`!,{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null}.``,{``:0Xa =~False =~@usn5,`6esn`:$`2esn` Starts With `4esn` Starts With $usn1}.@usn5 Unwind [`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] As usn2 Match #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}),((_usn3 :usn2)) Union Delete $`6esn` Is Not Null Is Not Null,@usn5 Starts With 9e0 Starts With 010 Return Extract(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0),None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1) Order By 123456789 =~$999 Asc Skip $`4esn`[..$`8esn`][..Null] Unwind {``:0.0 =~9e0 =~$0} Contains [@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn2..][$123456789..]|0Xa[Count(*)..]] As ``"), + octest:ct_string("Merge @usn6=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}) Create `3esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Union All Delete $`1esn` Contains 1e1 Contains @usn6,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null,`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..]"), + octest:ct_string("Match (:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}),`7esn`=((_usn3 :`7esn`)) Where 12 Starts With True Starts With 12e12 Union Unwind None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])[..[_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4]] As `4esn`"), + octest:ct_string("Return *,None(#usn8 In `7esn` Where 9e1 Starts With Count ( * )) In (:`2esn`{``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`})-[?{`5esn`:$`2esn`[.0..][0.0..]}]->(:usn2{@usn5:07 Ends With 9e12 Ends With `2esn`})-[`` *1000..0X0123456789ABCDEF]->(:_usn4{`8esn`:01234567[Null..$_usn3]}),Extract(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0) As #usn8 Order By .e12 In $`5esn` In 0X7 Descending,$usn2[`2esn`..$`1esn`] Desc Limit $123456789[0.12..] Delete usn2 Is Not Null,{`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..] Union Optional Match usn2=((usn1 {_usn3:9e0[0X7..$`6esn`][123456789..0],`3esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]})-[:`6esn`|:#usn8{_usn4:0Xa Ends With $`3esn` Ends With $1000}]->(:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})),`2esn`=(((_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})-[`4esn`?*..{``:`` =~.12,usn1:123.654 Is Not Null}]-(@usn6 :`4esn`:`6esn`{``:999 Contains 0 Contains $`5esn`,`6esn`:_usn3[12.e12..][`5esn`..]})-[:@usn6|:`7esn`{#usn7:.0[.e12..],usn2:usn2 =~usn1 =~Count ( * )}]->({usn2:@usn6 In .12 In `3esn`,`1esn`:usn2[12e12..]['s_str'..]}))) Where 00 Ends With `` Ends With 12.e12 Remove `5esn`:_usn4 Union With Distinct Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],010 Is Null Is Null As #usn8,All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] As `8esn` Order By $_usn3[_usn4..] Asc,0.12 Is Null Is Null Desc,`6esn` Ends With _usn4 Ends With False Ascending Skip 1.e1 =~.12 Limit `1esn`[$@usn6][07] Create ``=(`3esn` :_usn4),((_usn3 :@usn5{`8esn`:1e1 Contains 's_str' Contains `3esn`})-[?:`2esn`|`4esn`{@usn5:0.e0}]-(`1esn` $`4esn`))"), + octest:ct_string("Unwind $_usn3 Is Not Null Is Not Null As `1esn` Merge (((:`5esn`{`4esn`:0Xa[..Count ( * )][..$123456789]})-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]-({`7esn`:9e12 =~@usn6})<-[ *0x0..]->(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}))) Union All Detach Delete @usn6[..$@usn5]"), + octest:ct_string("Delete [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[$usn1..][Count(*)..]|0e0 =~7 =~12.0] Is Null Is Null,$7[999][usn1] Optional Match (({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn4?:@usn6|:`7esn`]-({`3esn`:_usn3[0x0],`3esn`:00[False..0e0]})<-[_usn3?:_usn3|:`7esn`]->(`3esn` {`8esn`:`7esn` In 010 In usn1})) Return _usn4[@usn6..][$0..],[$usn2 =~1.e1 =~usn1,$usn1 Starts With usn1 Starts With True,$1000 Starts With $`3esn` Starts With 0.e0] In (`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]-(`4esn` :#usn8:`1esn`{`7esn`:.0[..'s_str'][..01234567],@usn6:False[..$`5esn`][..1e1]}) In None(`3esn` In 9e1 Contains $999 Where 12.0 Starts With .12 Starts With `6esn`),@usn5 Contains #usn8 Contains 12.0 As `4esn` Limit Any(#usn7 In $999 In 1e1 Where _usn4 Is Not Null Is Not Null) Is Null Union With 9e1[usn1..0x0][12.e12..12.0] Order By $@usn6[$0..9e12][.e12..Null] Desc,.e0 Is Not Null Is Not Null Desc,usn2[..$usn1][..$#usn8] Asc Skip $7 Ends With Count ( * ) Where 's_str' Starts With 9e0 Starts With usn2 Unwind `` Is Not Null Is Not Null As _usn4 Optional Match (usn2 :``:usn2) Where @usn6 Is Not Null Is Not Null"), + octest:ct_string("Match ((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(:`8esn`{``:$`1esn` =~999})),`8esn`=(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`)-[?:usn2{#usn7:0 =~1.e1 =~$#usn7}]->(`8esn` $12) Create ((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})),(:_usn4{_usn3:$#usn7[..0Xa],@usn5:12e12 In 123456789}) Unwind $_usn3 Is Not Null Is Not Null As `3esn` Union Unwind 123.654 Contains @usn5 Contains $`5esn` As `6esn` Detach Delete 123.654[..0.e0][..'s_str']"), + octest:ct_string("Unwind 12.e12 Starts With 1000 As `` Union All Merge (_usn3 :`7esn`)-[*..{``:.e1 Starts With 12.e12 Starts With `2esn`}]-(#usn7 :_usn3) On Create Set Extract(`3esn` In `2esn`[..01][..True] Where 00[01234567][False]|12[$`5esn`..][False..]).`2esn`! =12.e12 Ends With $``"), + octest:ct_string("Optional Match ``=(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) Remove Any(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]).@usn6?,@usn5(Distinct Count ( * ) Ends With $123456789).`6esn`? Unwind 00[False..0e0] As `6esn`"), + octest:ct_string("Create `7esn`=((:#usn8:`1esn`$`7esn`)<-[`1esn` *999..{`1esn`:1e1 Contains 's_str' Contains `3esn`}]-(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)) Delete $_usn4[9e0..][$1000..] Union All Return 123456789 =~$999 Order By $7[01..$123456789][#usn7..12.0] Descending,.12[..usn2][..12e12] Descending Merge `8esn`=((#usn8 :_usn3)<-[`8esn`?:#usn7|@usn5{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3}]-(`` :usn1:`3esn`))"), + octest:ct_string("Delete $#usn7[..$`4esn`][..01],Filter(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) =~{#usn7:1000[12e12][`5esn`]} Union All Unwind $#usn7 Ends With 's_str' Ends With 0X7 As usn1 Remove All(`6esn` In $`6esn`[``..][Count(*)..] Where $#usn7 Ends With 's_str' Ends With 0X7).`2esn`!,(`3esn` {`3esn`:$@usn6 Is Not Null Is Not Null,`1esn`:12e12 =~1e1})<-[:@usn5|_usn3{#usn7:$123456789 Starts With 0.12 Starts With Null,usn1:.e1[..$`3esn`][..01]}]-(#usn7 :`3esn`{`3esn`:@usn5[0.0..0X7],@usn5:$#usn7 Starts With $`2esn`})<-[ *01234567..]->(:`8esn`{``:.e1 Starts With 12.e12 Starts With `2esn`}).usn2,@usn6:_usn4 Unwind $@usn6 Ends With 123456789 Ends With 12.0 As _usn3 Union All With *,$`5esn` Is Not Null,usn2 Contains $0 Contains .0 Order By 12.0 Ends With `2esn` Ascending,01234567[$0..][0..] Descending,$12 In True In 1.e1 Desc Skip 9e0[Count(*)..0.12][$`1esn`..12.0] Where `7esn` Return *,0e0 Ends With 07 Ends With $`8esn` As `6esn` Order By {`4esn`:999 In 0e0,`6esn`:0.e0['s_str'..][01234567..]} Contains Single(`8esn` In 123456789 =~@usn6 Where 12.e12 Ends With `` Ends With 0) Ascending,$`4esn` In 1.e1 In #usn7 Desc Skip 0X0123456789ABCDEF In $usn2 In `4esn` Limit Extract(`3esn` In `2esn`[..01][..True] Where 0.0 Is Null Is Null|$usn2[0.e0])[{usn2:@usn5 Is Null,`8esn`:$@usn6 Ends With 123456789 Ends With 12.0}..]"), + octest:ct_string("With 01234567 Starts With True Starts With $999 As `6esn`,usn2[..$usn1][..$#usn8] As `8esn` Limit $`5esn` Is Not Null Is Not Null Where usn1 Starts With 00 Create `8esn`=(((#usn7 {`6esn`:$`2esn` Contains Count(*)})<-[#usn8{`5esn`:$@usn5 In 12e12 In 01}]->(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`8esn`{`1esn`:123456789 =~@usn6,`1esn`:$`5esn`[0X7..010][`7esn`..'s_str']}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}))) Union All With *,#usn7[``] As usn1,None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6) =~Single(`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8) =~(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[`5esn`?{_usn4:$usn2 =~9e1}]->(`8esn` :#usn8:`1esn`{usn2:12.e12 Ends With $``,`2esn`:1e1 Contains 's_str' Contains `3esn`})-[`` *1000..0X0123456789ABCDEF]-(:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]}) Order By $@usn6 In @usn6 In 1e1 Desc,.e1[..$`3esn`][..01] Desc Limit _usn3 Is Null Is Null Merge ((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)) Return Distinct *,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``) Is Null Is Null Order By Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Ascending,$@usn5[..$#usn7] Descending,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip 9e1 Starts With Count ( * ) Limit {`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..] Union All With `1esn`[`3esn`..],(`3esn` {usn2:00[False..0e0]})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null})<-[@usn6?:`8esn` *0..01]->(`5esn` :`4esn`:`6esn`)[[12.0 Starts With $`2esn` Starts With .e1]..] Skip 07 In 0Xa In usn1 Limit 010 Is Null Remove {_usn3:_usn4 Is Null Is Null}.``,(`1esn` )<-[@usn5?{`7esn`:0.0 Contains #usn7,`6esn`:@usn5[0.0..0X7]}]->(`` {`7esn`:.e0 Is Not Null Is Not Null,@usn6:.e1[..$`3esn`][..01]})<-[usn2 *0X0123456789ABCDEF..]->(usn2 :`7esn`).#usn7?,[$#usn8[@usn6..]].`6esn`? Merge _usn3=((@usn5 {usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]})-[@usn6:`5esn`|:usn2 *0xabc{#usn8:999 In 0e0}]-(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]})-[#usn7 *01..123456789]->(usn1 {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})) On Create Set (:`2esn`{`3esn`:9e1 Ends With Count(*) Ends With $7})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(usn1 :`7esn`).`4esn` =1.e1[$`3esn`][0Xa],(`6esn` {`3esn`:.0[$``..0X7],`3esn`:$usn2 Is Not Null Is Not Null})<-[`5esn`?:@usn5|_usn3{``:0.0 =~9e0 =~$0}]-(:@usn5{`1esn`:999 Is Not Null Is Not Null,``:.e1[7..][9e0..]}).usn2 =$`4esn` Starts With 0 Starts With `7esn`,usn2+=`2esn`[..01][..True]"), + octest:ct_string("With Distinct *,12e12[12e12][$#usn7] Order By {`3esn`:.e1[..\"d_str\"][..$123456789]} Descending,010[..7][..`4esn`] Desc,12e12 Is Not Null Ascending Skip None(#usn7 In 9e1[$`1esn`..] Where 1.e1[12.e12..]) Contains [$`2esn` Ends With `6esn`,9e1[..123456789]] Contains [12.0 In 123.654 In _usn4] Where False[..$`5esn`][..1e1] Union All With Distinct 12e12 Is Not Null Order By Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $`6esn`[``..][Count(*)..])[[$`2esn` =~9e12,`6esn` Is Null Is Null,usn2 Is Not Null]] Descending Skip 12 Contains 01234567 Limit @usn5 Is Not Null Optional Match (((`` $`6esn`)<-[usn2*{_usn3:0.e0[0X0123456789ABCDEF..],`8esn`:$`5esn` In 07 In 00}]-(`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}))),(((`` $`6esn`)<-[usn2*{_usn3:0.e0[0X0123456789ABCDEF..],`8esn`:$`5esn` In 07 In 00}]-(`3esn` {`8esn`:`5esn` Contains #usn7 Contains 9e12})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(usn1 :`5esn`{#usn7:0.12[$0..$usn2],`2esn`:.e12[$@usn6..00][01234567.._usn3]}))) Where 9e12 Starts With 1e1 Merge `8esn`=((_usn3 :_usn4))"), + octest:ct_string("Optional Match _usn4=(((`2esn` )-[?{_usn3:01[`8esn`..9e12][.12..0]}]->(`8esn` {@usn5:#usn7[..07],usn2:999 Contains 0 Contains $`5esn`})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]->(_usn3 :`5esn`))),((:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[`8esn`?:`5esn`|:usn2 *01..123456789{`7esn`:`6esn`,`4esn`:'s_str' Starts With 9e0 Starts With usn2}]->({@usn6:12.e12 Contains #usn7 Contains $_usn4,usn2:$`5esn` =~$0 =~``})-[#usn7 *01..123456789]->(:`6esn`:_usn3{``:usn1 Ends With 9e0 Ends With 9e0,`5esn`:$`7esn`[.e1][12.0]})) With Distinct 0Xa In $`6esn` As `2esn`,count(Distinct $@usn6 Ends With 123456789 Ends With 12.0,$`2esn`[.0..][0.0..]) Is Not Null Is Not Null,12[0e0] As `5esn` Skip (`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}) =~[12 In $usn1 In 7] =~Filter(@usn5 In 's_str'[0..] Where 0.e0) Limit .e0[$`8esn`..][1000..] Union All Merge `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})) On Match Set `` =$``[..\"d_str\"][..$#usn8],Any(#usn7 In 9e0[$1000] Where 's_str'[0x0..1.e1]).usn2? =9e1[..123456789],@usn5+=[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] On Match Set (`3esn` {usn2:$usn2[`4esn`..9e12]})<-[{_usn4:1.e1[`8esn`]}]->(:@usn6$usn1).#usn7! =_usn4 Starts With `` Starts With 1000,Extract(`3esn` In `2esn`[..01][..True] Where 0X7[..$`8esn`]|$#usn7 Starts With 01234567 Starts With $0).`5esn`! =@usn6(Count ( * ) In True In @usn5)[None(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1)] Union All Return *,False Is Null Order By 0X7[..$`8esn`] Desc,[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null Ascending,12.e12 Ends With `` Ends With 0 Desc Skip Any(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0)[..{`5esn`:0Xa[$`8esn`..][$_usn4..],_usn3:00[$usn1..]}][..Any(@usn6 In 010[`5esn`] Where 1.e1[$usn1])] Unwind 9e1 =~123456789 =~999 As @usn5 Merge ((_usn3 :usn2)) On Match Set Any(#usn8 In `7esn` Where $`5esn` In _usn3 In 0.0).`5esn`! =.e12 Ends With 0Xa Ends With 0xabc On Match Set `5esn`(Distinct .12[123.654..]).`3esn` =01234567 In 123456789 In 12,`6esn` =[@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str']|$`3esn`[..0xabc][..$7]] Is Null"), + octest:ct_string("With Distinct [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Any(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`) Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc Skip {`4esn`:999 In 0e0,`6esn`:0.e0['s_str'..][01234567..]} Contains Single(`8esn` In 123456789 =~@usn6 Where 12.e12 Ends With `` Ends With 0) Limit `6esn` Is Null Is Null Merge (`2esn` :`1esn`:_usn4)-[?*..]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) On Create Set @usn6+=$#usn7 Ends With 's_str' Ends With 0X7,`6esn` ={`3esn`:12 Starts With #usn7 Starts With 0Xa} Is Null Is Null,usn2 =$@usn5 Ends With @usn5 Ends With 0xabc With Distinct $12 Starts With $0 Starts With $`8esn`,9e1[usn1..0x0][12.e12..12.0] As usn1,$``[..\"d_str\"][..$#usn8] As `6esn` Union Merge (({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Union All Return *,[`8esn`[..$#usn8],1.e1 Starts With 9e12] Ends With [`6esn` In $`6esn`[``..][Count(*)..]|.e1[12.0..]] Ends With Any(usn2 In 7[12]),$`6esn` Starts With .e12 Starts With $`1esn` As @usn6 Skip $`5esn`[$`3esn`..] Limit Single(@usn6 In 010[`5esn`] Where Count(*)[9e12..12.0])[(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)][`7esn`] Remove count(Distinct .e12[..999][..@usn5]).usn2!,[@usn6 In 010[`5esn`] Where 010 Is Null Is Null].`3esn`,Single(@usn6 In False Contains 0 Contains $`6esn` Where $`8esn`[12.e12][_usn4]).`7esn`"), + octest:ct_string("With *,'s_str'[0x0..1.e1] As `6esn` Where 07[_usn3..][`6esn`..]"), + octest:ct_string("With Distinct Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])] As @usn6,$`1esn`[Null][True] As usn2,0X7 In $#usn7 Order By 01 Ends With 0Xa Ends With 0X7 Desc,$12 =~0X7 =~0x0 Ascending Skip `7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] Where 00[01234567][False] Unwind `` Is Not Null Is Not Null As _usn4"), + octest:ct_string("Merge (({`7esn`:0xabc In Null,_usn4:.e12[0Xa..]})<-[usn1?:`1esn`|`3esn` *01234567..{@usn5:`4esn`[\"d_str\"]['s_str']}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Union All With Distinct *,0X7[`2esn`..] As `6esn`,$`1esn` Contains 1e1 Contains @usn6 As `3esn` Order By 0xabc In .12 In 0Xa Descending Limit [#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Optional Match ((:`6esn`:_usn3{usn1:`3esn`[0x0..]})<-[? *1000..0X0123456789ABCDEF{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]->({`4esn`:.e1[..$`3esn`][..01]})<-[usn2?{``:$`1esn`[``][07]}]->(#usn7 {`7esn`:`8esn` Contains Count(*) Contains $#usn7})),(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null}) Where $`3esn` In $usn2"), + octest:ct_string("Create (:#usn8:`1esn`{`3esn`:123.654[..0.e0][..'s_str']}),((#usn7 :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) Union All Detach Delete {`2esn`:12.e12 Is Not Null Is Not Null,``:Count ( * ) In True In @usn5} Ends With {`7esn`:$1000 Starts With $`3esn` Starts With 0.e0,``:$`2esn` Is Null} Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]],$`5esn`[0X7..010][`7esn`..'s_str'] Union All Merge @usn5=((:``:usn2{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})) Detach Delete 12.e12 =~.0 =~usn1"), + octest:ct_string("With 0.0 Contains #usn7 As #usn8,Extract(@usn6 In False Contains 0 Contains $`6esn` Where $@usn6[$`8esn`..][123456789..]|.e1[usn2..$_usn3][.0..$#usn7]) Order By Any(`6esn` In $`6esn`[``..][Count(*)..] Where 1e1 Ends With $`7esn` Ends With .0) Is Not Null Descending,#usn8 Ends With $@usn5 Ends With $7 Desc,usn2[12.e12..] Asc Skip 12.0[$1000..][#usn7..] Limit $`2esn`[0..123456789][``..`1esn`] Optional Match (_usn3 :`5esn`{#usn8:0xabc In 010 In #usn7}),`3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))) Where $#usn7[..9e0][..123.654] With Distinct *,01[`8esn`..9e12][.12..0] As @usn6,$`1esn` =~1e1 As `4esn` Order By 9e1 =~$_usn4 =~1.e1 Desc,$@usn5[$12...e12][0X0123456789ABCDEF..$999] Asc,(:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Ascending Skip $1000 Is Not Null Union All Match ((`4esn` :`4esn`:`6esn`)-[`3esn`:`2esn`|`4esn`]-({#usn8:False Starts With 0X7 Starts With 01234567})<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]-(`` {``:$@usn6 Ends With 12.e12 Ends With @usn5,`2esn`:$`3esn` Ends With 01234567})),#usn8=(:`7esn`{_usn3:@usn5[0.0..0X7]}) Where usn2 Contains $0 Contains .0 Merge ((`5esn` :@usn5{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})) On Match Set `` =Null[..010][..1000] On Create Set #usn8 ={_usn4:``[9e12][$999],#usn8:123.654 In 12} Starts With Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0[0.0]) Starts With Filter(`6esn` In $`6esn`[``..][Count(*)..])"), + octest:ct_string("Return $#usn8 Starts With .e12 Starts With 1.e1,999 Starts With `4esn` Starts With 1000 Order By [$`1esn`[``][07],$`4esn`[`6esn`..$12],False[$usn1][0x0]] =~[.e12 Is Null Is Null] Descending Skip All(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)[Extract(`3esn` In `2esn`[..01][..True] Where #usn7 Starts With $123456789 Starts With 12e12)][Extract(_usn4 In 12e12 In 123456789 Where .e1 Starts With 12.e12 Starts With `2esn`|$@usn5 Is Null Is Null)] Return Distinct `1esn` Starts With 0X7 Starts With \"d_str\",$`4esn`[..$`8esn`][..Null] As #usn7,None(`8esn` In 123456789 =~@usn6 Where .e12 Starts With $12 Starts With .e12) Ends With Filter(`5esn` In 0X7 In $#usn7 Where 0x0[0X7]) Ends With Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) As `4esn` Order By [123456789 =~12 =~'s_str',`2esn` Starts With 12.e12 Starts With 12.0,$`8esn`[..True][.._usn4]] Contains Filter(#usn7 In 9e0[$1000] Where `7esn`) Asc,None(#usn8 In `7esn` Where $`3esn` Contains $`1esn`) Starts With #usn8(0x0[Count(*)..@usn6][Count(*)..0Xa]) Ascending,_usn4 Contains $_usn3 Contains .e1 Asc Unwind $@usn6 In @usn6 In 1e1 As `5esn`"), + octest:ct_string("With Distinct #usn8[`6esn`..][$``..] As `2esn` Match (`1esn` {#usn7:$`1esn` Ends With 0X0123456789ABCDEF,`3esn`:.12 Starts With _usn3 Starts With $``}) Where True Starts With Null Remove (:`3esn`{`7esn`:0.e0['s_str'..][01234567..]})-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}).`6esn`!,[01 Is Null,9e1[..123456789],010 Starts With $`` Starts With 0e0].`6esn`?,(:#usn7:`5esn`{`2esn`:12.e12 Contains 9e1,`5esn`:.e1 Starts With 12.e12 Starts With `2esn`})<-[usn2 *0X0123456789ABCDEF..]->(usn2 :`7esn`)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}).`5esn`? Union All Return Distinct .0[$``..0X7],(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})[..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})] As #usn8,01234567[$`2esn`][0Xa] As `5esn` Order By True[0xabc..01234567][$`8esn`..$@usn6] Descending,(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..] Desc,(:`2esn`)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})-[@usn6? *0X0123456789ABCDEF..{``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6}]-(`5esn` :@usn5) Is Null Is Null Ascending Skip Filter(@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null) =~{#usn7:1000[12e12][`5esn`]}"), + octest:ct_string("Delete $usn1[Null][`8esn`],`5esn`[..True][..0.e0] Merge @usn6=((`3esn` :usn1:`3esn`{`1esn`:0X7[.0]})) On Match Set `1esn`+=Any(@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1)[(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})<-[?{@usn6:$0[0Xa..$123456789],`4esn`:`7esn` Contains 9e0}]->({_usn3:0X0123456789ABCDEF Contains 12e12 Contains 12.e12})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})..][Filter(#usn7 In $999 In 1e1 Where $_usn4[$`5esn`][`7esn`])..]"), + octest:ct_string("Detach Delete 123.654[..0.e0][..'s_str'] Delete 01234567[$0..][0..],`1esn`[0.0..1e1][0x0..7]"), + octest:ct_string("Merge `5esn`=({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})<-[_usn4?:@usn6|:`7esn`]->(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})<-[`8esn`:usn1|`4esn` *0Xa{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]->(:`8esn`) On Create Set {usn1:$_usn4 Starts With $1000 Starts With 12}.@usn6! =[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])] On Create Set `5esn`+=All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],`2esn` =False Starts With 0X7 Starts With 01234567"), + octest:ct_string("Optional Match `2esn`=(((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2))),`7esn`=((`6esn` :`5esn`)<-[:`1esn`|`3esn` *0Xa{_usn4:``[9e12][$999],#usn8:123.654 In 12}]-(`5esn` :`4esn`:`6esn`)) Where 07 Is Not Null Is Not Null Merge @usn5=(((_usn3 :`6esn`:_usn3)-[_usn3?{``:$@usn5 Contains 's_str' Contains \"d_str\",_usn3:$#usn8[12.e12..`8esn`][12.0..0.0]}]-({`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})))"), + octest:ct_string("Optional Match ((({`7esn`:999 In 0e0})<-[#usn7 *01..123456789]->({`2esn`:`7esn` In 010 In usn1,`8esn`:$0[123.654..0.e0]})<-[? *7..]-(usn1 {@usn5:_usn4[$usn1..01234567][123.654..`5esn`],`5esn`:1.e1 =~$_usn4}))) With Distinct *,0Xa[Count(*)..],[#usn8 In `7esn` Where @usn5 Contains 9e0] Contains [$usn1 Ends With _usn4 Ends With `2esn`] Order By None(#usn8 In `7esn` Where 9e1 Starts With Count ( * ))[..Any(usn2 In 7[12] Where 9e1 Is Not Null Is Not Null)] Desc,0xabc In .12 In 0Xa Descending,.0 Contains .e12 Contains 0 Desc Skip All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1)[None(@usn6 In 010[`5esn`] Where 00[1.e1..])..[$12[$usn1..][Count(*)..],$@usn5 Contains 's_str' Contains \"d_str\"]][Extract(`3esn` In 9e1 Contains $999 Where 0e0 Starts With 999 Starts With `2esn`|9e1 Ends With Count(*) Ends With $7).._usn4(`1esn`[0.12..][@usn6..],#usn8 =~0.e0)] Limit `1esn` Starts With 9e1 Create ``=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}) Union Create `2esn`=(_usn3 {`8esn`:0e0 =~7 =~12.0,_usn4:.e1[..$`3esn`][..01]})<-[_usn4{`2esn`:#usn8[`8esn`..],`2esn`:@usn6[9e12]}]-(:`8esn`{#usn7:$#usn7 Contains $`7esn` Contains .e12,`6esn`:0xabc In 010 In #usn7})-[{_usn3:1000[12e12][`5esn`],`6esn`:.12[..usn2][..12e12]}]-(`2esn` :@usn5{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3}),(({@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`})<-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->({usn2:$`2esn` Is Null,#usn8:.0 Is Null Is Null})) Union Merge `8esn`=(@usn6 {`5esn`:.e12 Starts With $#usn8 Starts With False})<-[`6esn`:``]->({@usn6:$1000 Is Not Null})"), + octest:ct_string("Unwind $7 In $usn1 In 999 As `2esn` Create (`3esn` )-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]})"), + octest:ct_string("Remove Any(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]).`4esn`! Optional Match (_usn3 :`4esn`:`6esn`{_usn3:$@usn5[..$#usn7],@usn6:$`1esn` Starts With $`4esn` Starts With $_usn3})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)<-[?{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`}) Where $`7esn`[.e1][12.0] Union All Unwind _usn3 In $`8esn` In @usn6 As #usn7 Union Delete 123.654 In $`7esn` Return Distinct *,12.e12 Contains `6esn`,12[``...e12] As `6esn` Order By 's_str' Is Not Null Descending,123.654[`4esn`..12] Asc,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) Ascending"), + octest:ct_string("Match #usn8=((`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)) Union Remove None(@usn5 In 's_str'[0..] Where 01234567[\"d_str\"..`4esn`])._usn4! Union All Merge ((`2esn` :_usn3)-[? *0xabc{`6esn`:$0[0Xa..$123456789],``:.e1[..\"d_str\"][..$123456789]}]-({@usn6:123.654 In 12,#usn7:12.e12 Ends With `` Ends With 0})) With Distinct *,{@usn6:$`3esn`[.e1][_usn4]}[`8esn`(Distinct $``[True])..] As #usn8,999[12e12..$_usn4] As usn2 Where `6esn`[$1000][`3esn`] Unwind `6esn`[$`8esn`][9e1] As `7esn`"), + octest:ct_string("Merge @usn5=(({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})) On Create Set [@usn5 In 9e0 Ends With $#usn8 Where 07 Is Null|Count(*) Starts With usn2 Starts With `7esn`].`3esn` =[@usn5 In 's_str'[0..] Where 123456789 =~12 =~'s_str'|0Xa In #usn7 In 's_str'] Is Not Null Union All Match _usn4=((:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})) Where 123456789[12] Merge #usn7=(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}) On Match Set _usn3:`7esn` On Create Set Single(@usn6 In 010[`5esn`] Where 123.654).`6esn`? =0.e0[0X0123456789ABCDEF..],(:`4esn`:`6esn`{`8esn`:07 Is Not Null Is Not Null,_usn3:0xabc In 010 In #usn7})<-[usn2?:@usn5|_usn3*{_usn4:@usn5 Starts With $`3esn`,#usn7:$`5esn` Is Not Null}]-(#usn7 :``:usn2)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}).`3esn`? =999[..`1esn`][..07],[@usn6 In 010[`5esn`] Where @usn6 Contains .12 Contains $usn1].`6esn` =`7esn` Starts With @usn5 With Distinct 0Xa In #usn7 In 's_str',`4esn` Starts With 0e0 As `7esn` Skip (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) Contains Extract(#usn7 In 9e0[$1000] Where _usn4 Is Not Null Is Not Null|usn2 Ends With .e1 Ends With $`5esn`) Where .e0"), + octest:ct_string("Remove [7 =~`4esn`,`2esn` Starts With $`7esn`].`8esn`! Delete `6esn` Starts With `6esn` Union All Create @usn6=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}),((:#usn8:`1esn`$`7esn`)-[`6esn`?:usn2]-(@usn6 {@usn6:0e0 =~7 =~12.0})-[`7esn`:`4esn`|@usn5 *12..]-(`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})) With Distinct #usn8 Is Not Null,.e0[..9e12][..07] Skip usn1 Limit 1000 Contains [True Contains 0x0 Contains $_usn3,_usn3 Contains 9e12 Contains `8esn`] Contains [12.0 In 123.654 In _usn4] Where $``[..\"d_str\"][..$#usn8] Union Unwind 0x0[12e12..$`7esn`] As `7esn`"), + octest:ct_string("Match @usn5=(((:usn2{`6esn`:`4esn` Starts With 0e0,`8esn`:usn2[12e12..]['s_str'..]})<-[:`2esn`|`4esn` *12..]-(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))),({`4esn`:.e1[..$`3esn`][..01]})-[`5esn`:#usn7|@usn5]-(`5esn` :`4esn`:`6esn`) Delete 7 Is Not Null Union All Create ((`1esn` :`2esn`)<-[`1esn`:`8esn` *999..{`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]})-[@usn6?:#usn8|:`3esn`{usn1:.e1[..$`3esn`][..01],`4esn`:$`5esn` In .12}]->(usn2 :_usn4)) Unwind 123.654 Contains @usn5 Contains $`5esn` As `6esn` Union Remove All(#usn8 In `7esn`).`1esn` With Distinct *,999 Contains [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] Contains {_usn3:123.654 In $`7esn`} As `6esn`,.e0 Is Not Null Is Not Null As `7esn` Order By _usn3 In $`8esn` In @usn6 Desc Return Distinct [$#usn7 Ends With 's_str' Ends With 0X7] Starts With (usn1 :@usn6)<-[?:#usn7|@usn5 *0..01]->(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[_usn4? *12..{`1esn`:$`6esn` Starts With .e12 Starts With $`1esn`,`3esn`:`8esn`[0.e0..]}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}) Starts With [`5esn` In `7esn`[$usn2..][$123456789..] Where $`1esn` Starts With Count(*)] As #usn8,0.12 Is Null Is Null As _usn3,_usn4[0] As `2esn` Skip `1esn`[$@usn6][07]"), + octest:ct_string("Merge ((:`3esn`{`1esn`:`7esn`,`8esn`:12e12 =~$`7esn`})-[ *7..{usn1:0x0[0X7],@usn5:`4esn`[.12][$@usn6]}]->(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567})<-[?:usn1|`4esn` *1000..0X0123456789ABCDEF{`6esn`:.e0[999..1000][1e1..$`8esn`],`4esn`:00 Ends With `` Ends With 12.e12}]-({`1esn`:usn2 Contains $0 Contains .0,_usn4:$@usn6[.0..][0e0..]})) On Create Set _usn3 =@usn6 Is Not Null Is Not Null,`5esn` =[#usn7 In True Contains 's_str' Contains $usn1 Where $@usn6 In @usn6 In 1e1|12.0[$1000..][#usn7..]][Any(_usn4 In 12e12 In 123456789 Where .e12[@usn6..][010..])..Single(usn2 In False[$usn1][0x0] Where 9e1 Is Not Null Is Not Null)] On Match Set #usn8 =None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Is Null Match (`3esn` {usn2:$usn2[`4esn`..9e12]}),usn1=(`6esn` )<-[usn1? *0xabc{usn1:$_usn4 Starts With $1000 Starts With 12}]-(usn1 :usn1:`3esn`) Where $`4esn` Contains _usn3 Contains `8esn` Union With 010 Starts With $`` Starts With 0e0 As @usn5 Where $`3esn`[$_usn4..0Xa] Union All Merge (`5esn` :`4esn`:`6esn`)<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]}) On Create Set `4esn` =(usn2 :_usn3)-[`6esn`?:`6esn`|:#usn8]-(`1esn` {_usn4:`8esn` Is Null})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)[Any(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)..],usn1 =(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..])"), + octest:ct_string("With Distinct 0e0[``],0X7 In $#usn7 Limit 12e12[12e12][$#usn7]"), + octest:ct_string("Remove count(@usn5[$`6esn`..][$999..],_usn4[0]).`7esn`,_usn4(.12[0X7..][12e12..],9e1).#usn7! Remove {@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}.`8esn`!,{`4esn`:12[$`5esn`..][False..]}.``? Union All With Distinct *,[1000[0e0][1e1],12.0 Is Null Is Null] Is Not Null Is Not Null Order By $`5esn`[$`6esn`][`2esn`] Descending,`6esn`[..$`4esn`] Descending,12 Starts With $123456789 Starts With .e12 Ascending Limit [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Detach Delete usn1 Ends With 0.0,$999 In 1e1,`7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..]"), + octest:ct_string("Merge (((`6esn` :#usn7:`5esn`)-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[ *0xabc{``:usn1 Contains 010,`2esn`:$0 In `3esn` In 07}]->(_usn4 :#usn7:`5esn`))) Remove [`3esn` In `2esn`[..01][..True] Where 00[01234567][False]].`7esn`!,Any(usn2 In False[$usn1][0x0] Where 12.e12 =~0X0123456789ABCDEF =~1.e1)._usn3,Extract(#usn7 In 9e1[$`1esn`..] Where $`7esn`[$_usn4][.e0]|$`3esn`[..$1000][..$123456789]).`1esn`?"), + octest:ct_string("With Distinct *,Count ( * ) In True In @usn5 As `2esn` Skip `7esn`(Distinct `1esn` Starts With 0xabc Starts With $usn2)[({`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})-[`6esn`?:@usn5|_usn3 *01234567..]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})..] Union All Delete _usn4[$usn1..01234567][123.654..`5esn`] With *,1.e1 Ends With $#usn7 As usn2,@usn5[01][@usn5] Skip $`5esn` Limit (`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Is Not Null"), + octest:ct_string("Delete 12.e12 Ends With $``,{_usn4:`1esn` Is Not Null Is Not Null,@usn5:0.12[$0..$usn2]} Is Not Null Is Not Null,{#usn7:usn1 In ``}[None(`3esn` In `2esn`[..01][..True])..Extract(@usn5 In 9e0 Ends With $#usn8 Where 0Xa[$`8esn`..][$_usn4..])]"), + octest:ct_string("Merge _usn4=(#usn8 :`6esn`:_usn3)<-[#usn7?:`5esn`|:usn2{`7esn`:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`2esn` :usn2)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) On Create Set Single(`5esn` In `7esn`[$usn2..][$123456789..] Where $@usn6 Ends With 12.e12 Ends With @usn5).usn1? =`6esn`[9e12..],`7esn`+=$0[0.e0] Merge `2esn`=(:`1esn`:_usn4{#usn7:$_usn4[$`5esn`][`7esn`],`3esn`:$`6esn` Is Null})<-[`4esn`:usn2]->(`3esn` :_usn4) On Create Set #usn7+=@usn6[123.654..][0x0..],`3esn`+=00 In @usn6 In 0,@usn6 =Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null On Create Set #usn7+=`6esn`[$`8esn`][9e1]"), + octest:ct_string("Unwind Extract(#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null)[All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])..] As `7esn` With *,.e0 Is Null As `2esn`,(:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Skip True Contains 0x0 Contains $_usn3 Limit 's_str' Ends With _usn4 Ends With 0e0 Where 1.e1[$usn1]"), + octest:ct_string("Merge (({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})) Union Remove None(@usn6 In False Contains 0 Contains $`6esn` Where #usn8 Is Not Null)._usn4!,Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc).`1esn`!,{`7esn`:0X7['s_str'..][01..],`8esn`:0.e0[0X0123456789ABCDEF..]}.``? Remove Single(#usn7 In 9e1[$`1esn`..] Where ``[$`3esn`]).#usn7!,Any(#usn7 In True Contains 's_str' Contains $usn1 Where `2esn`[..$_usn3])._usn3?,{usn2:`2esn`[..$_usn3]}.usn2? Optional Match (`1esn` {`5esn`:usn1 In ``,`7esn`:0Xa[$`8esn`..][$_usn4..]})<-[`4esn`?:`4esn`|@usn5 *01..123456789]-(:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]->(_usn4 {_usn4:Null[..010][..1000],_usn3:.0 Is Null Is Null}) Where 00 Ends With `` Ends With 12.e12"), + octest:ct_string("With Distinct *,usn1 Contains 010 As `6esn` Skip 999[@usn5..][Null..] Where `5esn` Contains `1esn` Contains usn1 Return 12.e12 =~0X0123456789ABCDEF =~1.e1 As `6esn`,.e12[`2esn`..010],.e0 Starts With $@usn6 Starts With $7 As `5esn` Order By Single(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`) Contains Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 0[1e1][$usn1]) Contains {`4esn`:9e1 Contains 12} Ascending Skip usn1 Limit 123456789 Contains 0Xa Union All Merge #usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12})))"), + octest:ct_string("Merge `7esn`=({@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`})<-[`5esn` *0xabc]->(_usn4 :_usn4{_usn3:$`3esn`[.e1][_usn4]}) Union All Unwind `8esn` Contains Count(*) Contains $#usn7 As _usn4 With {``:07[$`2esn`..9e12][$`4esn`..9e12],`3esn`:$`6esn` Starts With .e12 Starts With $`1esn`}[..Single(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null)][..Any(#usn7 In $999 In 1e1 Where 07 In `6esn`)] As usn1,`8esn` Is Not Null Is Not Null As `4esn` Skip (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Limit Any(@usn6 In False Contains 0 Contains $`6esn` Where $usn2[`4esn`..9e12]) =~[9e12 =~@usn6,01 Ends With 0Xa Ends With 0X7,$@usn6[$0..9e12][.e12..Null]] Union All Create (((usn2 :#usn8:`1esn`)-[`5esn`?:`7esn`|:`2esn` *0x0..]->(`8esn` :`8esn`)<-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(#usn7 :`2esn`))),((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)) Unwind 9e1 =~123456789 =~999 As ``"), + octest:ct_string("Delete $usn1[1000][.12] Union With Distinct $usn2[`5esn`..][01234567..] As #usn8 Order By .0 Ends With 999 Ends With $`5esn` Ascending,01234567 In $@usn6 In $#usn7 Desc Where .e0[01234567..$`8esn`] Remove Any(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[..$`8esn`][..Null]).`4esn`! Match (((`6esn` :`4esn`:`6esn`)-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(@usn6 :``:usn2)))"), + octest:ct_string("With Distinct *,True[$_usn3..] As usn1 Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Descending Limit [0.12 Contains False Contains 1.e1,$12[$usn1..][Count(*)..]][{usn2:$@usn6 Ends With `1esn`,_usn3:`7esn`}..][{@usn6:1e1 Is Not Null Is Not Null,`8esn`:$`1esn` Starts With $`4esn` Starts With $_usn3}..] With Distinct [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Any(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Contains `3esn` Contains `7esn`),usn2[usn2..0X7] As `1esn` Order By 's_str'[0x0..1.e1] Asc Limit 0xabc[..$1000][..`5esn`] Where `2esn` Starts With 12.e12 Starts With 12.0 With *,0.0 Contains `3esn` Contains @usn5 As #usn8,[`8esn`[0.e0..],1e1 Contains 's_str' Contains `3esn`] In [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]] As `4esn` Order By [#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Descending,0x0[usn1..usn1] Asc,`2esn` Starts With $`7esn` Descending Union Return *,`8esn` =~@usn6 =~$`2esn` As _usn3 Optional Match @usn5=(`7esn` :`3esn`{`2esn`:999[123.654..$usn2][Count ( * )..0x0]})-[`2esn`?:usn1|`4esn` *00..0Xa]-(`4esn` :`4esn`:`6esn`),usn2=(`3esn` {usn2:$usn2[`4esn`..9e12]}) Where 12 Starts With #usn7 Starts With 0Xa Return $7 Ends With Count ( * ),`6esn` =~Null As `4esn` Skip 1e1[_usn3] Limit [`2esn` Is Null] Is Null Is Null Union All Match ``=(:_usn3{`7esn`:$999 Ends With .e0})<-[`8esn`?:`2esn`|`4esn`{usn2:#usn8[`6esn`..][$``..]}]-(@usn6 {`6esn`:$`5esn` =~usn1,`5esn`:$`` Starts With $1000 Starts With @usn6})-[?{_usn3:010[`5esn`],_usn4:#usn8 =~.e0}]-(#usn8 :`3esn`{`5esn`:$@usn6 Ends With `1esn`}),`3esn`=((`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) Optional Match ((({`7esn`:999 In 0e0})<-[#usn7 *01..123456789]->({`2esn`:`7esn` In 010 In usn1,`8esn`:$0[123.654..0.e0]})<-[? *7..]-(usn1 {@usn5:_usn4[$usn1..01234567][123.654..`5esn`],`5esn`:1.e1 =~$_usn4})))"), + octest:ct_string("Delete 12.e12 Starts With \"d_str\" Starts With 9e1,'s_str' Starts With 9e0 Starts With usn2,$`4esn`[..$`8esn`][..Null] Optional Match (`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]}) Return Distinct *,00 Ends With $`1esn` Ends With `7esn`,$@usn6 Is Not Null Is Not Null As `8esn` Order By (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc,[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] Descending,[#usn8 In `7esn` Where $`3esn` Contains $`1esn`|$0[123.654..0.e0]][usn1(Distinct 999 Contains $1000,12[123.654..])..[.e12[..999][..@usn5],12.e12 =~.0 =~usn1,`6esn`[$1000][`3esn`]]][[@usn6 In 010[`5esn`] Where $usn2[`2esn`..$`1esn`]]..[`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8]] Descending Skip [usn2 In 7[12] Where #usn7[.e0]|$usn2 =~9e1] Is Null Is Null Limit 12.e12 =~.0 =~usn1 Union All Detach Delete 0.e0 =~00 Unwind 9e1 =~123456789 =~999 As @usn5"), + octest:ct_string("Remove {`8esn`:usn2 =~7,`5esn`:.e0[01234567..$`8esn`]}.#usn8 Remove #usn7:`1esn`:_usn4,[`4esn` Ends With 12 Ends With .12,`5esn` Contains `1esn` Contains usn1,$`2esn` =~9e12].@usn5! Union All With 0.e0 Is Not Null Is Not Null As _usn4,0X0123456789ABCDEF In $usn2 In `4esn`,$usn1 Is Not Null Is Not Null Order By 01234567[$@usn6..$#usn7][123456789..12e12] Desc,Single(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1)[Filter(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])..][Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.0 In 123.654 In _usn4)..] Ascending Skip Null[..0] Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]) Where 9e12 Starts With 1e1 Unwind `3esn`(Distinct $123456789[...12][..@usn6])[{usn2:$`2esn` Is Null,#usn8:.0 Is Null Is Null}][#usn7(Distinct $@usn6 Is Not Null Is Not Null,``[7.._usn3])] As `` Create (`8esn` :`2esn`{@usn5:$`4esn` Contains _usn3 Contains `8esn`,`7esn`:$`4esn`[`4esn`][Count(*)]}),(`8esn` {usn1:0e0 =~7 =~12.0,`7esn`:usn2 Starts With .0})<-[:_usn4]->(_usn4 {usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[ *01234567..]->(:``:usn2{`5esn`:$12 Starts With $usn1}) Union All Remove {``:0Xa =~False =~@usn5,`6esn`:$`2esn` Starts With `4esn` Starts With $usn1}.@usn5,All(#usn7 In 9e0[$1000] Where 12e12 Starts With $0 Starts With $`2esn`).#usn7?"), + octest:ct_string("Unwind 0.12[$0..$usn2] As `4esn` Union Remove `5esn`:#usn8:`1esn`,[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 0xabc In 123456789 In 0x0|.e0 Contains $#usn8].@usn6!,[123.654 Starts With 0X7 Starts With $`4esn`,`6esn` Is Null Is Null].@usn5 Optional Match `6esn`=(((:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7})-[ *0..01{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]->({#usn8:False Starts With 0X7 Starts With 01234567})<-[ *..07{_usn3:0e0 =~7 =~12.0,usn2:123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]}]->(`4esn` :@usn5))) With Distinct 0Xa Ends With $`3esn` Ends With $1000,Extract(@usn5 In 's_str'[0..] Where 12e12 Is Not Null) =~[`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]],$#usn8[@usn6..] As `7esn` Order By (`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})-[_usn3?:_usn4 *00..0Xa{_usn4:`6esn` =~$_usn4 =~7,`7esn`:07 In `6esn`}]-(_usn4 {@usn6:$12 Starts With $usn1,`6esn`:.e12[..999][..@usn5]})-[`4esn`:`1esn`|`3esn` *12..]->(usn2 :`1esn`:_usn4{usn2:999 Contains $1000}) Contains Filter(usn2 In False[$usn1][0x0] Where $`6esn`[``..][Count(*)..]) Desc,$usn1[Null][`8esn`] Desc,$`5esn` In `2esn` In `2esn` Asc Limit [0.e0[..$7],$usn2[True..0X0123456789ABCDEF],`2esn` =~.e12 =~0X0123456789ABCDEF] Ends With `1esn`(Distinct $`3esn`[..0X0123456789ABCDEF][..7],`4esn`[$_usn3..$`7esn`]) Ends With [$`1esn`[``][07],`7esn`] Where _usn3[$`1esn`..] Union All Unwind [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12][#usn8(Distinct $_usn4 Is Null Is Null,01[`8esn`..9e12][.12..0])..[_usn4 In 12e12 In 123456789 Where Count ( * ) Ends With $123456789]][Filter(_usn4 In 12e12 In 123456789 Where $`5esn` =~usn1)..[$`5esn` In _usn3 In 0.0]] As `4esn` Return #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Order By `6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] Desc Limit $_usn4[$_usn4] Remove None(`5esn` In 0X7 In $#usn7 Where usn1 =~$`7esn`).`3esn`!,Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $123456789 In 0.12)._usn3?,(:`3esn`{#usn7:$#usn7 In $@usn5 In $`1esn`})<-[:`8esn` *0X7..]->(`2esn` :`6esn`:_usn3{usn2:0e0 =~0Xa =~$999,`4esn`:@usn6[9e12]}).`6esn`?"), + octest:ct_string("Unwind .e0 Ends With $123456789 Ends With 0xabc As #usn7 Match `3esn`=(_usn3 {`8esn`:_usn3[0x0],#usn8:$usn1 Contains 0}),usn1=(({usn2:7[0e0..],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})-[:`6esn`|:#usn8{`4esn`:$`2esn`[..$`3esn`][..12e12],#usn8:123.654 Is Not Null}]-(_usn3 :`5esn`)-[`4esn`?:#usn8|:`3esn`{`3esn`:01 Is Null,`1esn`:123456789[12]}]-(:_usn4{#usn7:1000[..`2esn`][..$@usn6],`1esn`:12e12 Starts With $0 Starts With $`2esn`})) Where \"d_str\"[True..]"), + octest:ct_string("Remove {_usn3:_usn4 Is Null Is Null}.``,``(@usn6[`1esn`..]).`7esn`! With Distinct 0e0[``],0X7 In $#usn7 Order By Extract(#usn7 In 9e0[$1000] Where @usn6 Contains .12 Contains $usn1|``[$`3esn`])[(:`6esn`:_usn3$usn2)<-[ *0Xa{`3esn`:9e1 Ends With Count(*) Ends With $7}]-(`8esn` {@usn6:0x0[0X7],@usn6:0x0[@usn6..][01..]})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`8esn` :@usn6)..All(_usn3 In _usn3 Contains _usn4 Contains $@usn5)] Desc,`5esn`[$`7esn`..$@usn5] Ascending Where 01 Ends With 0Xa Ends With 0X7 Union All With *,.e0 Is Null As `2esn`,(:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Skip True Contains 0x0 Contains $_usn3 Limit 's_str' Ends With _usn4 Ends With 0e0 Where 1.e1[$usn1] Union With Distinct @usn5(Distinct 12e12 In 123456789,12.0 =~@usn6 =~$`2esn`)[`8esn`(123456789 =~$999)][`2esn`($`2esn`[..$`3esn`][..12e12])],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where 12.e12 Starts With \"d_str\" Starts With 9e1|$@usn5 In $`6esn` In 12e12) Ends With (:`7esn`{#usn7:0 =~1.e1 =~$#usn7})<-[`1esn`:`8esn` *7..]->(`` {#usn8:.e12 Is Null Is Null,@usn6:`1esn` Is Not Null Is Not Null}),`1esn`($`4esn`[`4esn`][Count(*)],`2esn` Starts With $`7esn`) =~Extract(@usn5 In 9e0 Ends With $#usn8 Where .e0 Starts With $@usn6 Starts With $7) =~{`3esn`:_usn3[`2esn`..0X7][0.e0..$`3esn`]} Where False Is Null Return #usn7[`8esn`..usn1][$999..`7esn`] As _usn3,All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],12e12 Starts With $0 Starts With $`2esn` Order By `6esn`(`4esn` Ends With 12 Ends With .12,@usn5 Is Not Null)[Extract(`3esn` In 9e1 Contains $999 Where .e12 Ends With 0Xa Ends With 0xabc|1e1 Is Not Null Is Not Null)..Filter(usn2 In 7[12] Where usn2[12.e12..])] Desc Limit $_usn4[$_usn4]"), + octest:ct_string("Detach Delete [$12[$usn1..][Count(*)..],usn2[1.e1],123456789[12]] Ends With [`5esn`[$`7esn`..$@usn5],$#usn7[..9e0][..123.654],1.e1 Is Null Is Null] Ends With Extract(`3esn` In 9e1 Contains $999 Where _usn4[0]|12 Starts With #usn7 Starts With 0Xa),`8esn` Is Null,.0 Starts With `1esn` Merge ((#usn7 :usn1:`3esn`)-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})-[@usn5:`5esn`|:usn2 *0Xa{#usn7:`7esn`[$usn2..][$123456789..]}]-({`7esn`:9e0 Contains $12 Contains `3esn`,`5esn`:.e0 Contains $#usn8})) On Create Set [@usn6 In False Contains 0 Contains $`6esn` Where 12.e12 =~.0 =~usn1].usn2! =None(#usn7 In True Contains 's_str' Contains $usn1 Where 00[12..$`6esn`]) Ends With None(#usn7 In 9e0[$1000] Where 1e1 Contains 0.e0 Contains 9e1),`8esn` =01[07..][1.e1..] Union With Distinct *,12.e12 Contains `6esn`,12[``...e12] As `6esn` Limit Filter(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4) Ends With [$@usn6 Is Not Null Is Not Null] Optional Match `4esn`=(`` {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(:`5esn`{#usn8:$``[True],`1esn`:@usn5 Is Null}),(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}) Where `2esn` =~.e12 =~0X0123456789ABCDEF Remove Extract(#usn7 In 9e0[$1000] Where $_usn3 Is Null|@usn5 Contains 9e0)._usn4?"), + octest:ct_string("Match `8esn`=((_usn4 :`6esn`:_usn3)<-[`3esn`?:`2esn`|`4esn` *123456789..{_usn4:1.e1[`8esn`]}]->(`6esn` )<-[`5esn`?:`8esn`]->({``:12 Starts With #usn7 Starts With 0Xa,`8esn`:``[usn1][`5esn`]})),`8esn`=((_usn3 {`6esn`:@usn5[$`6esn`..][$999..],`8esn`:$@usn5[..0xabc][..$`3esn`]})<-[``:`5esn`|:usn2{`5esn`:_usn4[0]}]-(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})) Where 1000[12e12][`5esn`] Union Merge @usn5=((`2esn` {`7esn`:999 In 0e0})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]})<-[`7esn`?:#usn8|:`3esn`]-(_usn4 :`3esn`)) On Create Set `8esn` =$#usn8[True][9e0],`1esn`+=@usn6 Contains .12 Contains $usn1 On Create Set [`5esn` In `7esn`[$usn2..][$123456789..] Where `7esn` Is Null|$_usn4 =~$`1esn` =~`2esn`].`6esn` =Any(#usn7 In True Contains 's_str' Contains $usn1 Where `6esn` Starts With `6esn`) =~Single(#usn7 In $999 In 1e1 Where _usn4 Contains `` Contains 1.e1),@usn6+='s_str',Extract(#usn7 In True Contains 's_str' Contains $usn1 Where 0x0 Ends With 12.0 Ends With `5esn`)._usn4! =Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|123.654 Is Not Null) Ends With usn2(01 Is Null) Ends With [$@usn6 Ends With 123456789 Ends With 12.0,12.e12 =~.0 =~usn1]"), + octest:ct_string("Return Distinct `1esn`(.0 Starts With `1esn`,01[`3esn`..][Count(*)..]) In [@usn6 In False Contains 0 Contains $`6esn` Where `1esn` Starts With 0xabc Starts With $usn2] As `4esn`,`7esn`[$usn1..]['s_str'..] Detach Delete 00[12e12][$`7esn`],\"d_str\" Is Null Is Null,usn2[1.e1] Delete {``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]}[#usn7(Distinct $`1esn`[``][07])..None(@usn6 In 010[`5esn`] Where $`3esn` Ends With 01234567)]"), + octest:ct_string("Return 0x0[0.0] As ``,Any(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) Contains [_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where .0 Is Null Is Null|`3esn`[0x0..]] Contains [999[12.e12],#usn8 Is Null Is Null,1.e1 =~$_usn4] As `1esn` Skip 0X0123456789ABCDEF Ends With `2esn` Ends With $`7esn` With Distinct $@usn6[12.0][12.0] Skip `7esn`[$usn2..][$123456789..] Where 0xabc =~$@usn5 Return $_usn4 Is Null Is Null,usn2 Starts With .0 Order By 9e1[$#usn8][$1000] Descending Limit #usn7 =~9e12 Union Unwind `4esn` Starts With 0e0 As `1esn` Remove {_usn3:_usn4 Is Null Is Null}.``,``(@usn6[`1esn`..]).`7esn`! Return Distinct 1.e1[..123456789][..999],_usn3[12.e12..][`5esn`..] As @usn6,[_usn3 In _usn3 Contains _usn4 Contains $@usn5] Contains [_usn4[$usn1..01234567][123.654..`5esn`]] Contains `4esn`(Distinct 07 In `6esn`) As `5esn` Order By 123456789 Contains 0Xa Descending,[@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00|`5esn`[$`7esn`..$@usn5]] Is Not Null Is Not Null Desc,00[False..0e0] Ascending"), + octest:ct_string("Return $_usn3[_usn4..] Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Create @usn5=(({`7esn`:123.654,`6esn`:9e1 Starts With Count ( * )})-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(usn1 :_usn3{``:`6esn` =~$_usn4 =~7,`7esn`:9e0[$1000]})),(_usn4 :`8esn`{usn1:12.e12[..$`6esn`]}) Union With $#usn7 =~`2esn` As `4esn` Order By (`5esn` :`4esn`:`6esn`)-[:``{_usn4:9e1 Is Null,`7esn`:.0[..'s_str'][..01234567]}]->(#usn7 :``:usn2)[..Filter(#usn8 In `7esn`)] Desc Skip usn2 Is Null Is Null Limit @usn6 Is Not Null Is Not Null Where 's_str' Ends With `7esn` Ends With 010 With Distinct *,(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) Is Not Null As `3esn`,$0 Starts With @usn5 As @usn5 Order By 's_str' Contains 12.e12 Contains $`4esn` Descending,False Contains 0 Contains $`6esn` Ascending,9e1 =~$_usn4 =~1.e1 Desc Limit 01234567 Starts With True Starts With $999"), + octest:ct_string("With $@usn5 Ends With @usn5 Ends With 0xabc Union With Distinct (:@usn5{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789})<-[`2esn`? *01..123456789]-(`2esn` :@usn6)[[`2esn`[..$_usn4][...12],False Contains 0 Contains $`6esn`,.e1[12.0..]]..[#usn7 In 9e0[$1000] Where #usn8 =~0.e0|12.e12 =~0X0123456789ABCDEF =~1.e1]],`1esn`[0Xa] As usn1,usn1 Contains 010 As @usn5 Order By [Count(*)[9e12..12.0]] Starts With [`5esn` In 0X7 In $#usn7 Where 123456789 =~$999|$`8esn` Is Not Null Is Not Null] Starts With [$usn2 Is Not Null Is Not Null,0 =~1e1] Ascending,None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $12[9e0..$999]|.12 Starts With _usn3 Starts With $``) Descending Limit Filter(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999) Ends With Any(usn2 In 7[12] Where 0X7[.0]) Where @usn6 Is Not Null Is Not Null Create (`3esn` )-[#usn8:`4esn`|@usn5]-(:#usn7:`5esn`{`3esn`:Null[..0]}) Remove Any(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0).usn1,All(usn2 In 7[12] Where $@usn5[..0xabc][..$`3esn`])._usn4!,7._usn4 Union All Merge #usn8=((`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[`6esn`? *00..0Xa]->(#usn7 :#usn8:`1esn`{``:.0[$``..0X7]})-[usn2?{``:$`1esn`[``][07]}]-(`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null})) On Create Set `4esn`+=$`4esn`[07..],`1esn` =123.654[`4esn`..12] On Match Set `6esn`(Distinct 0Xa[$`8esn`..][$_usn4..],0xabc In Null).`2esn`! =(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[? *..010{#usn8:False Is Null}]->(#usn7 {#usn7:1.e1 Starts With 9e12})<-[:_usn3|:`7esn` *00..0Xa]-(`1esn` $`4esn`)[..[0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]]][..(:`2esn`{_usn3:@usn5[0.0..0X7]})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})],Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where #usn8 Is Not Null).`7esn`? =Filter(#usn7 In $999 In 1e1 Where 9e12[..1e1][..'s_str'])[..Extract(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`|0 Ends With 12.e12 Ends With usn2)][..None(#usn7 In $999 In 1e1 Where `1esn`[0.12..][@usn6..])],Extract(`3esn` In 9e1 Contains $999 Where _usn3[`2esn`..0X7][0.e0..$`3esn`]).@usn5 =$@usn6 Ends With 123456789 Ends With 12.0 Remove [0[$`5esn`],$999 In 1e1,$`6esn` Is Null].`5esn`,(:usn1:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]})<-[@usn6?:_usn3|:`7esn`{@usn6:$`3esn`[.e1][_usn4]}]-(`` {`7esn`:$#usn7[..0Xa]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1}).`3esn`,{`6esn`:$`7esn`[0.12]}._usn3!"), + octest:ct_string("Create @usn6=(:`7esn`)<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}),(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})<-[?:`7esn`|:`2esn`]->(`1esn` :`3esn`{#usn7:12[..0e0][...e1]}) Union Merge ``=(`5esn` {`2esn`:`1esn`[0.0..1e1][0x0..7],#usn8:.e0}) On Match Set usn2+=`6esn`[$`8esn`][9e1] On Match Set Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa).@usn6! =0.e0 Is Not Null Is Not Null,`1esn` =07 In `6esn` Remove `4esn`:`3esn` Create (usn1 :usn1:`3esn`),((:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})<-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(`5esn` ))"), + octest:ct_string("With Distinct _usn4 Contains `` Contains 1.e1,1000[..`2esn`][..$@usn6] As @usn6,0x0[@usn5][$#usn8] Order By $usn2[`5esn`..][01234567..] Asc,$`7esn`[.e1][12.0] Asc,$`5esn` =~usn1 Ascending Skip Count(*) Ends With usn1 Unwind 07 In 0Xa In usn1 As #usn8 Unwind 0x0[12e12..$`7esn`] As `7esn` Union All Detach Delete `4esn`[..$@usn6][..@usn6] Detach Delete @usn6[999..$_usn3][0.12..$@usn5] Union Create `3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))),usn2=(:#usn8:`1esn`$`7esn`) Return *,$@usn5 Order By ``[$`3esn`] Asc,[1000[0e0][1e1],12.0 Is Null Is Null] Is Not Null Is Not Null Asc,.e0 =~$`7esn` =~0X0123456789ABCDEF Descending Limit {`8esn`:usn2 =~7,@usn5:`6esn` Ends With _usn4 Ends With False} Ends With [0X7 In $#usn7,`4esn` Is Not Null Is Not Null,.0[.e12..]] Ends With (_usn4 :_usn4)<-[`7esn`:_usn4]->(`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})-[ *..07{`6esn`:Count(*)[9e12..12.0]}]->(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12})"), + octest:ct_string("Remove `8esn`:``:usn2 Return Distinct *,`1esn` Contains `2esn` Order By (:`2esn`)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01})-[@usn6? *0X0123456789ABCDEF..{``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6}]-(`5esn` :@usn5) Is Null Is Null Asc,7 Is Not Null Ascending Delete None(`3esn` In `2esn`[..01][..True] Where usn1 In ``)[None(usn2 In 7[12] Where 12e12 =~$`7esn`)..],$`1esn` =~1e1 Union Optional Match `1esn`=((#usn8 :`6esn`:_usn3)<-[@usn5?:``{`3esn`:010 Is Null Is Null,`5esn`:_usn4 Contains `` Contains 1.e1}]-(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})),usn2=((#usn7 {`8esn`:`7esn` In 010 In usn1})<-[usn1]->(:`6esn`:_usn3{@usn6:usn1 In ``,`8esn`:Null[..010][..1000]})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`1esn` :@usn6{`6esn`:00[False..0e0],`6esn`:$usn2 =~1.e1 =~usn1})) Create (#usn7 {`6esn`:$`2esn` Contains Count(*)})<-[?:`7esn`|:`2esn`]->(#usn8 :usn1:`3esn`{`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})"), + octest:ct_string("Delete 01234567[$0..][0..],`1esn`[0.0..1e1][0x0..7] With Distinct Extract(usn2 In 7[12] Where $@usn5[0.0][0X0123456789ABCDEF])[[#usn7 In 9e0[$1000] Where 01 Ends With 0Xa Ends With 0X7|`2esn`[$usn2][12.0]]..][Filter(#usn8 In `7esn` Where @usn6[999..$_usn3][0.12..$@usn5])..],{#usn8:12.0 Ends With `2esn`,@usn5:usn1 Starts With 00}[Any(#usn7 In True Contains 's_str' Contains $usn1 Where usn2 Contains $0 Contains .0)..],999 In 0e0 As #usn7 Order By `1esn` Starts With 9e1 Desc Where $@usn5[..$#usn7]"), + octest:ct_string("Delete [#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 12.e12 Starts With \"d_str\" Starts With 9e1|$#usn7 Contains $`7esn` Contains .e12] Starts With usn2(01 Is Null) Starts With Filter(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789]),12[0e0] Union Delete 's_str' Is Not Null,.e1[..$`3esn`][..01],0.e0[$`4esn`..`2esn`] Match ((_usn3 :`8esn`{#usn8:False Starts With 0X7 Starts With 01234567})) Merge ((:_usn4{`1esn`:0e0 =~0Xa =~$999})<-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]-(`` :`5esn`{@usn5:123456789 =~@usn6})<-[`1esn`?:usn1|`4esn` *..010]-(usn1 :_usn4{`4esn`:`7esn` Is Null}))"), + octest:ct_string("Remove usn2($usn1[`2esn`..][$`2esn`..])._usn3!,[@usn5 In 9e0 Ends With $#usn8 Where $`3esn`[..0X0123456789ABCDEF][..7]|1e1 In 0.0 In 0X0123456789ABCDEF].#usn7!,[#usn7 In $999 In 1e1 Where .e12 Starts With $12 Starts With .e12|$usn2[`4esn`..9e12]].`6esn` Unwind 12.e12 Starts With 1000 As @usn5"), + octest:ct_string("Create ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)),((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Optional Match ((`1esn` {_usn4:`8esn` Is Null})),`2esn`=(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Where usn2[1.e1] Union All Remove {`4esn`:$123456789 Starts With 0.12 Starts With Null,usn2:.e1[7..][9e0..]}.`2esn`!,(_usn4 :`3esn`)-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->({`1esn`:#usn7[0]}).`4esn`,All(_usn4 In 12e12 In 123456789 Where .0 Ends With Count ( * )).`3esn` Remove (`` :`3esn`{`6esn`:Count(*)[9e12..12.0]})<-[ *0..01]-(@usn6 :_usn3{@usn6:07 Is Not Null Is Not Null,`5esn`:0e0 =~7 =~12.0}).`2esn`?,Extract(@usn6 In False Contains 0 Contains $`6esn` Where usn1 Starts With 00).@usn5!"), + octest:ct_string("Return Distinct *,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] As `1esn` Union All Create _usn3=(`1esn` )<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7}) With *,Any(#usn7 In 9e0[$1000] Where .e0 Is Null) In None(@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``) In Filter(@usn6 In False Contains 0 Contains $`6esn` Where $@usn5 In 12e12 In 01) As `7esn` Order By (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Asc Where 1.e1 In 1000 In _usn3 Delete 0x0[``..],Any(usn2 In 7[12] Where $_usn3 Is Null) Is Not Null Is Not Null,[`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Contains Any(`3esn` In 9e1 Contains $999 Where _usn4[0]) Union Remove All(@usn6 In 010[`5esn`] Where 1.e1[$usn1]).`6esn`!,Extract(@usn6 In 010[`5esn`]|False[$`4esn`..]).@usn5 Detach Delete 0xabc[$999..][$usn1..],12[..$999][..$`2esn`],Extract(#usn7 In 9e0[$1000] Where $`1esn` Starts With Count(*)|$`8esn`[..True][.._usn4]) Ends With Single(_usn4 In 12e12 In 123456789 Where $usn2 Is Not Null Is Not Null) Create (({@usn6:#usn7[`8esn`..usn1][$999..`7esn`]})<-[@usn5:_usn4 *0x0..]->({`1esn`:0X7 In $#usn7,_usn3:usn1 Contains 010})),`7esn`=(((`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})-[`1esn` *01234567..]->(_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[`4esn`:`1esn`|`3esn` *12..]-(usn1 :`7esn`{`7esn`:9e12 Starts With 1e1,_usn3:$`7esn`[$_usn4][.e0]})))"), + octest:ct_string("Unwind $``[..\"d_str\"][..$#usn8] As _usn4 Union All Merge _usn3=((@usn6 :`8esn`)<-[`4esn`?:usn1|`4esn`{`3esn`:123.654[..0.e0][..'s_str'],@usn5:#usn7[$`3esn`..$1000][0.0..`2esn`]}]->({`3esn`:`2esn` In 9e0 In 7})-[`3esn`? *12..]-(`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})) Union All Remove {`6esn`:Null =~`6esn`}._usn3!,[usn2 In False[$usn1][0x0] Where `4esn` Starts With 0e0].`6esn`!,[010[`5esn`],0Xa[..Count ( * )][..$123456789]]._usn3 Unwind [#usn8 In `7esn` Where .e0 Starts With $@usn6 Starts With $7|1000[12e12][`5esn`]] Ends With [`3esn` In 9e1 Contains $999 Where .12 In `8esn` In $#usn8] Ends With [$``[..\"d_str\"][..$#usn8],$_usn4 Starts With $1000 Starts With 12,#usn7[.e0]] As `8esn`"), + octest:ct_string("Remove [`1esn`[$@usn6][07],123.654 Starts With 0X7 Starts With $`4esn`,$`5esn` =~$`8esn` =~usn2].`8esn`,Filter(_usn3 In _usn3 Contains _usn4 Contains $@usn5)._usn4?,[@usn6 In 010[`5esn`] Where 12e12 In 123456789].`7esn`? With Distinct 0X0123456789ABCDEF Is Not Null Is Not Null Order By #usn8[`8esn`..] Descending,9e1[`1esn`..0][999..1e1] Desc Create @usn6=((#usn8 :_usn3)<-[?:`1esn`|`3esn` *00..0Xa{`1esn`:9e12[..`3esn`][..0X0123456789ABCDEF],@usn5:usn1[False..]}]->(usn2 :`5esn`)-[{`4esn`:.e1 In 123456789}]-(:`3esn`{``:$@usn5 Is Null Is Null,`8esn`:.e1[..\"d_str\"][..$123456789]})) Union Delete ``[$`1esn`],All(#usn7 In $999 In 1e1 Where 1.e1 In 1000 In _usn3) Contains (`6esn` :`8esn`{@usn6:12.e12 Contains #usn7 Contains $_usn4})-[`8esn`{`7esn`:9e12 Starts With 1e1}]-(_usn3 :_usn4) Contains [`8esn` Is Not Null Is Not Null,12 Starts With #usn7 Starts With 0Xa,.0 Starts With `1esn`] With Distinct usn2 =~$`` =~$`8esn` As `2esn`,'s_str'[0x0..1.e1] As `6esn`,$`5esn`[\"d_str\"..] As `5esn` Order By 1.e1 Contains `6esn` Contains 0.e0 Descending,07[..07][..0X7] Descending Skip usn1[False..] Limit `6esn`[$1000][`3esn`] Where 0x0[0X7]"), + octest:ct_string("Unwind 12['s_str'][01] As `6esn` With $999 =~.0 As usn2 Limit 's_str' Ends With _usn4 Ends With 0e0 Where 0Xa[$`8esn`..][$_usn4..] Create ``=((:`3esn`{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})<-[usn1:_usn4]-(`` {_usn3:`5esn` Contains `7esn`})),(((`5esn` :@usn6{usn1:'s_str'[0..]})-[?:`4esn`|@usn5 *0Xa]-({`1esn`:$12 Starts With $usn1,`6esn`:123.654[`4esn`..12]})-[ *..010{@usn5:_usn3 In $`8esn` In @usn6}]-(`2esn` {`1esn`:$`4esn` Is Null Is Null}))) Union All Remove {_usn4:$``[True],`3esn`:$#usn8[@usn6..]}.@usn5!,[$@usn6[00],$@usn5 In $`6esn` In 12e12].`6esn`?,Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where _usn4 Is Not Null Is Not Null|1.e1 =~.12).usn2! Optional Match @usn5=(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`})<-[:`2esn`|`4esn` *12..]->({`7esn`:`4esn` Is Not Null Is Not Null,`4esn`:`4esn` Ends With 12 Ends With .12})<-[?:#usn8|:`3esn`{`2esn`:.e1 In 123456789,usn2:$12[$usn1..][Count(*)..]}]-(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12}) Where Count ( * )[@usn6] Union Create `6esn`=((:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]})),`3esn`=(:_usn4)<-[`5esn` *0xabc]->(`` :`6esn`:_usn3)-[`` *1000..0X0123456789ABCDEF]->(`8esn` {usn2:\"d_str\" Is Not Null,`3esn`:$@usn5 In 12e12 In 01}) Match ((_usn3 {#usn7:12.e12 Ends With `` Ends With 0,``:$@usn6 In @usn6 In 1e1})<-[?:`1esn`|`3esn`{#usn8:`2esn`[..01][..True]}]-(:`8esn`{``:$`1esn` =~999})),`8esn`=(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[_usn4 *01234567..{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]}]->(`5esn` :`4esn`:`6esn`)-[?:usn2{#usn7:0 =~1.e1 =~$#usn7}]->(`8esn` $12) Detach Delete 0X7[..$`8esn`]"), + octest:ct_string("Detach Delete None(#usn7 In True Contains 's_str' Contains $usn1 Where $`4esn`[`8esn`])[Single(`6esn` In $`6esn`[``..][Count(*)..] Where 07 Is Not Null Is Not Null)],`1esn` Is Not Null Is Not Null With *,{@usn6:$`3esn`[.e1][_usn4]}[`8esn`(Distinct $``[True])..] As #usn8,999[12e12..$_usn4] As usn2 Where 01 Ends With 0Xa Ends With 0X7 With `2esn`[$usn2][12.0],Single(#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6])[Filter(@usn6 In 010[`5esn`] Where $`5esn`[0X7..010][`7esn`..'s_str'])..] As _usn4 Order By $`7esn`[..@usn6] Ascending Limit [`2esn` Is Null] Is Null Is Null Where usn1[...e12][..1.e1] Union Optional Match ((:@usn5{usn2:$#usn7[..$`4esn`][..01],#usn7:False Is Null})<-[``?{usn2:$7 In 0.e0 In 999,usn1:'s_str' Starts With 9e0 Starts With usn2}]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0})),(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``}) Where _usn3 Starts With 12e12 Starts With `5esn` Delete 9e1[$`1esn`..] With (#usn7 {_usn4:1.e1[`8esn`]})-[? *0x0..{usn2:9e12 Contains $_usn3 Contains \"d_str\",@usn5:$`4esn` Starts With 0 Starts With `7esn`}]->(:`7esn`{`4esn`:True[0xabc..01234567][$`8esn`..$@usn6],#usn8:.e12 Is Null Is Null}) =~Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) =~{usn2:#usn8[`8esn`..]},9e1[$#usn8][$1000] As `5esn`,$usn1 Order By usn1 Ends With 9e0 Ends With 9e0 Descending,None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Descending Skip (:`6esn`:_usn3{@usn6:7 =~`4esn`,_usn3:`6esn`[$1000][`3esn`]})-[_usn4:_usn4 *0X7..{@usn6:0[$`5esn`],``:9e12[_usn4..$`5esn`][_usn4...e1]}]-(:`6esn`:_usn3{`4esn`:#usn7 Contains $0 Contains $usn2})[[$`6esn`[1.e1][$_usn3]]][usn2(0xabc In Null)] Union All Delete [_usn4 In 12e12 In 123456789 Where `3esn`[0X0123456789ABCDEF..][07..]] Contains Extract(`5esn` In 0X7 In $#usn7|0[1e1][$usn1]) Contains None(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null),0x0 In `8esn` Detach Delete usn1[..$@usn6][..00] Match _usn4=({_usn3:_usn3 Ends With 7 Ends With $`1esn`,``:$_usn4[$`5esn`][`7esn`]})<-[#usn7 *01..123456789]->({`2esn`:`7esn` In 010 In usn1,`8esn`:$0[123.654..0.e0]})"), + octest:ct_string("Return Distinct False[$usn1][0x0] As #usn7 Limit $`8esn` Is Null Union Unwind usn2[12e12..]['s_str'..] As @usn6 Union Detach Delete $999 In 12 In 1.e1,usn2 Is Not Null"), + octest:ct_string("With Distinct *,123.654[`4esn`..12] Order By 0.0[$usn2..] Asc,$7 Starts With 12.e12 Starts With $@usn6 Asc Limit $``[..\"d_str\"][..$#usn8] Where .e1[..\"d_str\"][..$123456789] Optional Match `1esn`=(`5esn` :`5esn`{#usn7:``[$`3esn`]}) Where $`8esn`[..True][.._usn4] Detach Delete None(`5esn` In `7esn`[$usn2..][$123456789..] Where 999 In #usn8 In $``)[[`5esn` In 0X7 In $#usn7 Where $@usn5 Starts With `5esn` Starts With 01234567|$``[..$#usn7][..`6esn`]]..Single(@usn5 In 9e0 Ends With $#usn8 Where `7esn`[$usn1..]['s_str'..])] Union Optional Match (:`4esn`:`6esn`{`4esn`:$@usn5[..0xabc][..$`3esn`],`3esn`:$usn2[`2esn`..$`1esn`]}) Where 12e12 In $`5esn` Union All Return Distinct $usn2 =~0.e0 =~@usn6,{`2esn`:'s_str'[0..],`7esn`:0Xa[Count(*)..]}[..None(#usn7 In $999 In 1e1 Where 123456789 =~@usn6)] As _usn3,0X7[`2esn`..] As `5esn` Skip `1esn` Contains $999 Contains 0.0 Limit ``[..False][..`3esn`] With *,`` =~.12 As #usn7 Skip usn2 =~7 Limit 0x0 In 0.e0 In #usn8 Where `2esn`[..01][..True] With Any(#usn7 In 9e0[$1000] Where 123456789[0X0123456789ABCDEF..$`1esn`][Count(*)..#usn8]) Contains [$`4esn` In 1.e1 In #usn7,usn1[False..]] Contains Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2) As #usn7 Order By @usn5[0..] Ascending,$@usn5 In $`6esn` In 12e12 Desc,#usn7 In 0.e0 Desc Skip {`8esn`:$_usn4 Starts With 12.e12} Is Null Is Null Limit 999 Contains $1000 Where 999 In #usn8 In $``"), + octest:ct_string("Unwind $@usn6[_usn3..][$999..] As `4esn` Optional Match `8esn`=(:`4esn`:`6esn`{usn2:$`8esn` Is Not Null Is Not Null})<-[@usn5? *0..01{`3esn`:$`1esn` In .e0,@usn6:12.0 =~@usn6 =~$`2esn`}]->({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})-[? *0Xa{usn1:`3esn`[0x0..]}]->(:`5esn`{`1esn`:0.e0}) Where $999 Ends With .e0 Union All Delete `1esn` Contains $999 Contains 0.0,999[..`1esn`][..07] Union All Detach Delete True Contains 's_str' Contains $usn1,$`5esn`[..00] Delete .e1[7..][9e0..],$`5esn` In _usn3 In 0.0"), + octest:ct_string("Merge _usn3=(`1esn` )<-[? *0xabc]-(:@usn6{`6esn`:01 Ends With 0Xa Ends With 0X7}) On Create Set `6esn` =0e0 Is Not Null,_usn3 =@usn5(Distinct 1e1 Is Not Null Is Not Null,`1esn` Starts With 0xabc Starts With $usn2)[..Extract(`3esn` In 9e1 Contains $999 Where usn2[12.e12..]|.12[01][@usn5])],`7esn`+=12.e12 Contains 9e1 Union Optional Match usn1=((`3esn` {usn2:$usn2[`4esn`..9e12]})<-[?{@usn5:_usn3 Ends With 7 Ends With $`1esn`}]->(_usn3 :_usn4)<-[_usn4?:`3esn`]-(:_usn3{_usn4:.e1[7..][9e0..]})),`7esn`=(usn1 :`7esn`) Return Distinct Filter(`6esn` In $`6esn`[``..][Count(*)..]) Ends With None(`5esn` In 0X7 In $#usn7 Where 12.0 Is Null Is Null),9e1[usn1..0x0][12.e12..12.0] Order By 00[12e12][$`7esn`] Ascending,@usn5[0..] Descending,Single(`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]) Is Not Null Is Not Null Descending Limit 0.e0[$`4esn`..`2esn`] Merge `5esn`=(({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})<-[:#usn8|:`3esn` *12..{`8esn`:12 Ends With Count ( * ),usn2:Count ( * ) In True In @usn5}]->(#usn8 :``:usn2)-[:_usn3|:`7esn`*{`1esn`:12[..$999][..$`2esn`],usn2:9e1}]->(:``:usn2{`5esn`:$12 Starts With $usn1}))"), + octest:ct_string("Detach Delete `` Is Null,12 Starts With $123456789 Starts With .e12,#usn7[$`3esn`..$1000][0.0..`2esn`] Union Merge (`3esn` :`6esn`:_usn3{`4esn`:12.0 Starts With .12 Starts With `6esn`,#usn8:0.0 Is Null Is Null}) Create `1esn`=((@usn6 {`8esn`:@usn5 Starts With $`3esn`,_usn4:`6esn` Is Null Is Null})-[:``{``:.0[$``..0X7]}]->(:@usn6{`7esn`:$`6esn`[``..][Count(*)..]})-[ *..07]->(`4esn` {``:.e1 Starts With 12.e12 Starts With `2esn`})) Remove {#usn8:`1esn`[usn1][0xabc],_usn3:$`6esn`[1.e1][$_usn3]}.`3esn`,{usn1:@usn6[9e12]}.`4esn`!"), + octest:ct_string("Match ((({`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12})<-[ *7..{#usn7:$`8esn`[12.e12][_usn4],`2esn`:$0[123.654..0.e0]}]-(`` :#usn8:`1esn`{`8esn`:12[$`5esn`..][False..]})-[`3esn` *..07{usn2:True Contains 0x0 Contains $_usn3}]-({``:``[$`3esn`],#usn8:$@usn6[00]}))) Unwind $_usn3 Is Not Null As _usn3 With Distinct _usn4 Is Null Is Null As @usn5,.e12[$@usn6..00][01234567.._usn3],Extract(@usn5 In 9e0 Ends With $#usn8 Where $`8esn`[123456789..][$@usn5..]) =~None(#usn7 In True Contains 's_str' Contains $usn1 Where 's_str' Starts With 9e0 Starts With usn2) As @usn5 Skip 9e12 Ends With 12e12 Ends With 12 Limit (:@usn5{_usn3:123.654})<-[usn1:`1esn`|`3esn`]-(_usn4 :@usn5)-[:_usn3|:`7esn` *1000..0X0123456789ABCDEF]->(:_usn4{@usn5:$@usn5[..0xabc][..$`3esn`],`6esn`:0x0[0.0]}) Ends With Any(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn`[0..][999..]) Ends With {``:0xabc[..$1000][..`5esn`],``:$`1esn` Contains 1e1 Contains @usn6} Where 's_str'[0..] Union All Return Distinct *,07 As `4esn` Order By 1000[0e0][1e1] Asc,Filter(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Is Not Null Is Not Null Asc Skip 9e12[..1e1][..'s_str'] Detach Delete [9e12[9e1]][[_usn3[`2esn`..0X7][0.e0..$`3esn`]]..] Union All Create ``=((@usn5 :`4esn`:`6esn`)<-[`3esn` *7..]->(:`5esn`{usn2:#usn8[`6esn`..][$``..]})),(`2esn` {`1esn`:0.e0[..$999][..0Xa],`7esn`:$`2esn` =~9e12}) Delete Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where $`2esn` =~9e12) Is Null Is Null,0Xa Contains `8esn` Contains 0xabc,Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where @usn6 In .12 In `3esn`) Contains {usn2:.12[123.654..],`2esn`:`8esn`[$`4esn`..$#usn8]} Contains All(#usn7 In $999 In 1e1 Where 9e12 Starts With 1e1)"), + octest:ct_string("Remove [#usn7 In True Contains 's_str' Contains $usn1 Where $#usn7[..$`4esn`][..01]|1.e1 Is Null Is Null].#usn7?,(#usn8 :`2esn`)<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(`6esn` :`1esn`:_usn4)-[#usn7:#usn8|:`3esn`{`6esn`:0.e0[$`4esn`..`2esn`],_usn3:7[12]}]-(:`6esn`:_usn3{`6esn`:`2esn` Starts With $`7esn`}).`8esn`!,`1esn`(Distinct `3esn`[7..0.e0][0.0..123456789],`1esn` Starts With 0xabc Starts With $usn2)._usn4!"), + octest:ct_string("Unwind $@usn6 Ends With `1esn` As usn1 Detach Delete [$usn1[`2esn`..][$`2esn`..]] Contains Extract(usn2 In 7[12] Where $_usn3 Is Null|.e12 Is Null Is Null),12e12 Ends With 0.0 Ends With usn1 Unwind `6esn`[..Count ( * )][..$_usn4] As usn2 Union All Delete None(`5esn` In 0X7 In $#usn7 Where 0.12 Contains False Contains 1.e1)[..{@usn5:$@usn6 Is Not Null Is Not Null}][..{`3esn`:1e1 In 0.0 In 0X0123456789ABCDEF}] Union With 0.e0 =~00 As `3esn`,(`2esn` {`7esn`:999 In 0e0})<-[`8esn`?:`2esn`|`4esn` *01..123456789{`8esn`:$`4esn` Is Null Is Null,usn1:$1000 Starts With $`3esn` Starts With 0.e0}]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})<-[ *0X7..{#usn8:.e0 Contains $#usn8}]->(`2esn` :`6esn`:_usn3) In (`8esn` :`6esn`:_usn3)-[`2esn`? *..07{`2esn`:`3esn`[0x0..]}]->(_usn4 {_usn4:123.654 In 12})-[?:#usn8|:`3esn` *0x0..]-(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}) In {_usn4:.e0 Contains $#usn8,@usn6:1000[12e12][`5esn`]} As ``,#usn8[`6esn`..][$``..] As `2esn` Where 00 In @usn6 In 0"), + octest:ct_string("Delete 999 Starts With `4esn` Starts With 1000,Filter(`8esn` In 123456789 =~@usn6 Where 123.654[`4esn`..12])[..Extract(#usn7 In $999 In 1e1 Where 1000[12e12][`5esn`])][..[@usn5 In 9e0 Ends With $#usn8 Where $123456789 Contains $#usn8 Contains ``|.e0 =~Null]],Filter(_usn4 In 12e12 In 123456789 Where 1.e1 =~$_usn4) Is Null Is Null"), + octest:ct_string("Optional Match ((_usn4 :#usn7:`5esn`)-[`4esn`:`1esn`|`3esn` *12..]->({`7esn`:9e12 =~@usn6})),((:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[`1esn`:`8esn` *7..]-(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Where Count ( * )[$`5esn`..][$7..] Merge #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))) On Create Set [`6esn` In $`6esn`[``..][Count(*)..] Where 0x0[$0][7]|$`4esn`[`8esn`]].usn1 =Any(_usn4 In 12e12 In 123456789 Where _usn3 In $`8esn` In @usn6)[Single(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])][All(@usn5 In 9e0 Ends With $#usn8)] On Match Set Extract(`5esn` In `7esn`[$usn2..][$123456789..] Where $`4esn` Contains .e0 Contains 0Xa).@usn6! =0.e0 Is Not Null Is Not Null,`1esn` =07 In `6esn` Union All With *,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``) Is Null Is Null Remove Any(@usn5 In 's_str'[0..] Where #usn7[0.12..])._usn3,[`6esn` In $`6esn`[``..][Count(*)..] Where @usn5[0.0..0X7]].``! Delete 0x0[usn1..usn1],`2esn` Starts With .e1 Starts With 9e12"), + octest:ct_string("With Distinct 12.e12 =~0X0123456789ABCDEF =~1.e1 As `6esn`,0.e0[..$7] As _usn3,usn1 Ends With 0.0 Order By None(`3esn` In 9e1 Contains $999 Where 0xabc In Null) Is Not Null Descending,.e0 Starts With $@usn6 Starts With $7 Descending Limit $@usn6[..12] Where `3esn` Starts With 9e0 Starts With usn1 Match ((usn1 :_usn4{`4esn`:`7esn` Is Null})<-[`8esn`?:`2esn`|`4esn` *01..123456789{`8esn`:$`4esn` Is Null Is Null,usn1:$1000 Starts With $`3esn` Starts With 0.e0}]->(:#usn7:`5esn`{_usn3:0x0[Count(*)..@usn6][Count(*)..0Xa]})) Union Merge ((`7esn` :`2esn`{`4esn`:0[1e1][$usn1],usn2:`8esn`[..$#usn8]})<-[_usn4?:usn2]-(@usn6 :`6esn`:_usn3{@usn5:0xabc =~$@usn5,usn1:0Xa[$`8esn`..][$_usn4..]})-[`3esn`?:`7esn`|:`2esn`]-(`5esn` :#usn8:`1esn`{_usn3:`6esn` Is Null Is Null})) On Create Set usn1 =`3esn`[123456789],`3esn` =9e1[.12][`7esn`] On Match Set All(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).`3esn`! =12.0[$12..$_usn4] Union All Create `7esn`=(((`7esn` {usn2:0X7[..$`8esn`],`1esn`:123.654 Is Not Null})<-[ *12..{`8esn`:#usn7[$`3esn`..$1000][0.0..`2esn`]}]-(`5esn` :`1esn`:_usn4)-[:`6esn`|:#usn8{``:`1esn` Starts With 0xabc Starts With $usn2}]-(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}))),`2esn`=((`6esn` :#usn7:`5esn`)<-[?:#usn7|@usn5 *01234567..{`5esn`:$`4esn` In 1.e1 In #usn7}]->(:#usn8:`1esn`$`7esn`)) Create `6esn`=(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null})<-[@usn6:`1esn`|`3esn` *0X7..]->(_usn3 :`4esn`:`6esn`{usn2:`4esn` Starts With 0e0,`3esn`:7[12]}),(:`8esn`{#usn7:`1esn`[`3esn`..],usn2:_usn3[$usn2..][$``..]})<-[`7esn`:`2esn`|`4esn`{_usn4:.e1[7..][9e0..]}]-(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"})<-[? *0X7..{`2esn`:$@usn5 In $`6esn` In 12e12}]-(`3esn` :_usn4{`3esn`:12[..0e0][...e1],`4esn`:.0 Is Null Is Null})"), + octest:ct_string("With $1000 Starts With $`3esn` Starts With 0.e0 As @usn6,.e12 In $`5esn` In 0X7 As _usn4 Where Count ( * ) In 0.12 Delete $@usn5[_usn4] Create `1esn`=((`1esn` :#usn8:`1esn`{``:_usn3[0x0],``:$0 In `3esn` In 07})-[?$7]-(#usn7 {`8esn`:`5esn`[..123.654][...e12],`3esn`:$@usn6 Ends With 123456789 Ends With 12.0}))"), + octest:ct_string("Optional Match `6esn`=((`6esn` :#usn8:`1esn`{`6esn`:usn1[..$@usn6][..00]})-[@usn5:_usn4 *0x0..]-(_usn3 :`1esn`:_usn4{#usn8:$999 Ends With .e0,_usn4:`4esn`[\"d_str\"]['s_str']})) Return Extract(#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null)[All(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 9e1[..123456789])..] As `1esn`,$`6esn`[1.e1][$_usn3] As usn1 Order By [#usn7 In 9e1[$`1esn`..] Where @usn5 Is Null] Is Not Null Desc Limit Count ( * ) In 0.12 Detach Delete `6esn` =~`3esn` =~@usn6,(:_usn4$12)-[`1esn`?:`6esn`|:#usn8 *0Xa]-(usn1 :#usn8:`1esn`)[{`7esn`:$usn2 =~9e1}..] Union All Create #usn7=(((:usn1:`3esn`{_usn3:$`6esn`[1.e1][$_usn3]})-[:`` *123456789..{`1esn`:`8esn` Is Not Null Is Not Null}]-(#usn8 :`2esn`)<-[ *00..0Xa]->(`5esn` :`4esn`:`6esn`{usn2:$`5esn` Is Not Null Is Not Null,`7esn`:\"d_str\" Is Not Null}))),#usn8=(((`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]})<-[@usn6?:`7esn`|:`2esn`]->({#usn8:1e1 Is Not Null Is Not Null})-[?:@usn5|_usn3{`1esn`:`2esn` Is Null,`7esn`:`` =~.12}]-(`4esn` :#usn8:`1esn`{`8esn`:$@usn6 Ends With `1esn`,@usn5:1.e1 =~.12}))) Create ((@usn6 {`7esn`:999 In 0e0})<-[? *1000..0X0123456789ABCDEF{`3esn`:07 In `6esn`,`2esn`:$#usn8[12.e12..`8esn`][12.0..0.0]}]-(`6esn` {`2esn`:$`3esn` Ends With 01234567})-[?{`7esn`:9e0 Ends With $#usn8}]->(`` :`7esn`)),((usn2 :`6esn`:_usn3)-[?:#usn7|@usn5 *0X0123456789ABCDEF..{_usn3:@usn5 Is Not Null}]-(#usn8 {`5esn`:$12[$usn1..][Count(*)..],`7esn`:0e0[``..$1000][$7..12.e12]})) Optional Match ``=((usn2 :`5esn`{`7esn`:0.12 Starts With $`8esn` Starts With @usn5})<-[usn1:`7esn`|:`2esn`{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]-(#usn8 :usn2{@usn5:$#usn7[..9e0][..123.654],`2esn`:7[12]})<-[ *..07{`5esn`:999 In 0e0}]-(_usn4 :`8esn`)) Where 010 Is Null Is Null Union All Unwind Filter(`5esn` In 0X7 In $#usn7 Where $@usn5 Starts With `5esn` Starts With 01234567) Is Null Is Null As `8esn` Return Distinct .e12 Starts With $7 Starts With .0,[$``[7],_usn3 Contains _usn4 Contains $@usn5] Starts With [`3esn` In 9e1 Contains $999 Where _usn4[@usn6..][$0..]|usn2 =~7] Starts With Any(`3esn` In `2esn`[..01][..True] Where 12.e12 Contains #usn7 Contains $_usn4) As #usn7,01 Contains usn2 Contains 0X0123456789ABCDEF As `8esn` Order By 0Xa =~False =~@usn5 Descending,12.0 In 010 Ascending,`4esn`[123456789] Ascending"), + octest:ct_string("Return Distinct _usn4(Distinct usn2[07..][.0..]) Ends With Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 12[$`5esn`..][False..]|$`2esn` Starts With `4esn` Starts With $usn1) Ends With Extract(@usn5 In 9e0 Ends With $#usn8 Where $`3esn` In $usn2),usn1[..$@usn6][..00] As #usn7,(#usn8 :_usn3{@usn5:_usn3 Starts With 12e12 Starts With `5esn`,@usn6:usn2 In _usn3})-[`1esn`?{`8esn`:.e0,usn2:9e1 Contains $999}]->(usn1 :usn2{`3esn`:True[0xabc..01234567][$`8esn`..$@usn6],_usn4:999 In #usn8 In $``})-[? *..010{`2esn`:'s_str'[0..]}]->({`7esn`:1.e1 In 1000 In _usn3,`8esn`:010 Starts With $`` Starts With 0e0})[..(`5esn` )-[ *00..0Xa]->(usn1 :#usn7:`5esn`{`5esn`:$@usn5 In 12e12 In 01})-[usn1?:`2esn`|`4esn`{#usn7:$#usn7[..9e0][..123.654],usn2:.e0 Is Not Null Is Not Null}]-(`1esn` :usn1:`3esn`{_usn3:.0[.e12..]})] As `7esn` Order By 0X7[..$`8esn`] Desc,$123456789[12e12..9e0] Descending Create (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3)"), + octest:ct_string("Remove All(`6esn` In $`6esn`[``..][Count(*)..] Where 0X7['s_str'..][01..]).`2esn`!,(`3esn` {usn2:$usn2[`4esn`..9e12]})<-[`6esn`? *01234567..]->({`3esn`:`5esn` Contains `1esn` Contains usn1,`1esn`:999[@usn5..][Null..]})<-[_usn4?:@usn6|:`7esn`]->(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null}).`4esn` Merge `1esn`=((`2esn` :`1esn`:_usn4)-[?:``]-(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) On Create Set #usn7+=.e0[..9e12][..07],`4esn`(True[$_usn3..],$999[``]).usn2 =123456789 Is Null Is Null,@usn5 =01[07..][1.e1..] On Create Set `5esn`+={#usn7:12e12 In $`5esn`} Ends With {`6esn`:12 =~usn1,_usn3:`6esn`[$`8esn`][9e1]},usn2 =True Contains 0x0 Contains $_usn3 Remove All(@usn6 In False Contains 0 Contains $`6esn` Where 12e12 In $`5esn`).`6esn`?"), + octest:ct_string("With Distinct $7[999][usn1] As `6esn`,0 Ends With Count(*) Ends With False As `7esn` Order By Any(#usn7 In 9e0[$1000] Where .e0 Is Null) =~Extract(`3esn` In 9e1 Contains $999 Where `2esn` Starts With 12.e12 Starts With 12.0|$`3esn` In $usn2) =~{#usn8:0.0 =~9e0 =~$0,`5esn`:Count ( * ) Ends With $123456789} Descending Skip 010[...12] Limit $`1esn` In .e0 Return Distinct `3esn`[$123456789..][$usn2..] Order By `3esn`[7..0.e0][0.0..123456789] Asc,``[$`1esn`] Desc Skip Extract(#usn7 In $#usn7 Contains $`7esn` Contains .e12|1.e1 =~.12) Starts With [12 In $usn1 In 7,`6esn` Ends With Count ( * ) Ends With Count ( * ),`2esn` Starts With $`7esn`] Starts With usn2(Distinct .0[..'s_str'][..01234567],Count(*) In 12 In `6esn`) Limit `3esn`(#usn8 =~0.e0,1000[0e0][1e1])[[12[..0e0][...e1]]..Single(#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where $123456789 Contains $#usn8 Contains ``)] Union With *,00[False..0e0] As _usn3 Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc Skip (`2esn` :_usn3{`8esn`:01234567[Null..$_usn3]})<-[?:usn2{usn2:@usn5 Is Not Null}]-(`7esn` {#usn8:False Starts With 0X7 Starts With 01234567}) =~[12 In $usn1 In 7] =~Filter(@usn5 In 's_str'[0..] Where 0.e0) Limit [_usn3 Ends With 7 Ends With $`1esn`,True Contains .e12,usn2 Is Not Null] Contains [$`2esn`[.0..][0.0..]] Contains (`6esn` :`8esn`)<-[_usn3 *0X0123456789ABCDEF..]-(#usn8 :`2esn`)-[`7esn`:#usn8|:`3esn` *0..01{`3esn`:07[_usn3..][`6esn`..],@usn6:``[usn1][`5esn`]}]->(:_usn3{_usn4:.e1[7..][9e0..]}) Where `2esn` Starts With $`7esn` With Distinct 999[@usn5..][Null..] Limit None(usn2 In 7[12] Where 123456789 =~12 =~'s_str')[{@usn5:$`` Contains $`2esn` Contains $usn2}..][(`2esn` :`6esn`:_usn3)-[?:#usn8|:`3esn` *7..]-({`7esn`:9e12 =~@usn6})..] Where @usn5 Contains 9e0"), + octest:ct_string("Unwind 0e0[$999..0.0][$`8esn`..1.e1] As `` Union Remove `6esn`($`2esn` Starts With `4esn` Starts With $usn1,.12 Starts With _usn3 Starts With $``).usn2!"), + octest:ct_string("Unwind #usn7[0.12..] As `8esn`"), + octest:ct_string("Optional Match _usn4=(`5esn` :``:usn2)-[?{_usn3:`4esn`[$_usn3..$`7esn`]}]-({usn2:.12[0X7..][12e12..],`6esn`:$`4esn`[`6esn`..$12]}),`2esn`=(:#usn8:`1esn`$`7esn`) Union Remove `3esn`:#usn7:`5esn`,[$123456789 In 0.12]._usn3!,None(usn2 In False[$usn1][0x0] Where 010 Starts With 0 Starts With 0.0).@usn6! Merge `4esn`=({`8esn`:.e0[999..1000][1e1..$`8esn`],`1esn`:$`3esn`[$_usn4..0Xa]}) On Create Set #usn7+=Single(usn2 In 7[12] Where `7esn` Is Null)[..Single(`6esn` In $`6esn`[``..][Count(*)..] Where $7 In $usn1 In 999)][..Any(#usn7 In True Contains 's_str' Contains $usn1 Where 12.e12 Contains #usn7 Contains $_usn4)] On Match Set `2esn` =9e1 Ends With Count(*) Ends With $7 Union All With *,.e12[.12..],_usn4 Ends With _usn4 Ends With 9e0 As `` Skip None(`3esn` In `2esn`[..01][..True] Where usn1 In ``)[None(usn2 In 7[12] Where 12e12 =~$`7esn`)..] Limit Null[..0]"), + octest:ct_string("Return $@usn6[..12] As #usn8,Single(@usn5 In 9e0 Ends With $#usn8 Where _usn3 Ends With 7 Ends With $`1esn`)[{`5esn`:`6esn`[$`8esn`][9e1]}] As `7esn` Create (:`2esn`{usn1:.0[..'s_str'][..01234567],usn2:9e12[..`3esn`][..0X0123456789ABCDEF]})<-[#usn8? *0Xa]-(`2esn` :`6esn`:_usn3) Union Detach Delete `4esn` Contains 9e0,`5esn` Contains `7esn` Merge #usn8=((`4esn` :@usn6)<-[@usn5?:usn2 *0..01]->(:`4esn`:`6esn`{#usn8:True[`3esn`],`1esn`:0x0 Starts With $`6esn`})) Union Return Distinct Single(usn2 In False[$usn1][0x0] Where $@usn6 Is Not Null Is Not Null) =~[#usn7 In $#usn7 Contains $`7esn` Contains .e12 Where 07 Is Not Null Is Not Null],010 Is Null Is Null As #usn8,All(`3esn` In `2esn`[..01][..True] Where usn2[12.e12..])[Any(#usn8 In `7esn` Where .e0 Is Null Is Null)..Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``)][{`5esn`:False[$usn1][0x0]}..`8esn`(Distinct .e0[01234567..$`8esn`])] As `8esn` Order By $_usn3[_usn4..] Asc,0.12 Is Null Is Null Desc,`6esn` Ends With _usn4 Ends With False Ascending Skip 1.e1 =~.12 Limit `1esn`[$@usn6][07] Return $_usn4 Is Null Is Null,usn2 Starts With .0 Order By 9e1[$#usn8][$1000] Descending Limit #usn7 =~9e12"), + octest:ct_string("Optional Match `3esn`=(((:`6esn`:_usn3{`8esn`:.e12[..999][..@usn5],`3esn`:$_usn3 Is Null})<-[? *0X7..]->(`5esn` :``:usn2{usn1:$`1esn` Starts With $`4esn` Starts With $_usn3})-[_usn4]->(:`6esn`:_usn3{_usn3:usn1 Is Null Is Null,#usn8:9e1[$``..][0.e0..]}))),usn2=(:#usn8:`1esn`$`7esn`) Where 123456789 Is Null Is Null Delete (`2esn` $`6esn`)<-[`4esn`?:`4esn`|@usn5 *1000..0X0123456789ABCDEF]->(usn2 {usn1:.e12 Ends With 0Xa Ends With 0xabc}) Ends With Extract(@usn6 In False Contains 0 Contains $`6esn` Where .e1[usn2..$_usn3][.0..$#usn7]) Ends With Single(#usn7 In $999 In 1e1 Where `3esn`[0X0123456789ABCDEF..][07..]) Union Return *,1e1 Is Not Null Is Not Null Order By Single(@usn6 In 010[`5esn`] Where Count(*)[9e12..12.0])[(`2esn` {``:$0 =~9e1 =~$`2esn`,`8esn`:`5esn`[..123.654][...e12]})<-[:`1esn`|`3esn`{`2esn`:$`3esn` Ends With 01234567}]->(_usn3 :`5esn`)][`7esn`] Descending Skip 12 Contains 1.e1 Unwind 1000[$7..][_usn4..] As `5esn` Match ((_usn4 :#usn7:`5esn`)-[`4esn`:`1esn`|`3esn` *12..]->({`7esn`:9e12 =~@usn6})),((:`5esn`{`4esn`:$`5esn` =~$0 =~``,_usn3:$``[..$#usn7][..`6esn`]})<-[`1esn`:`8esn` *7..]-(`8esn` :@usn5{`5esn`:_usn3 In $`8esn` In @usn6,_usn4:$@usn6 Ends With 12.e12 Ends With @usn5})<-[?:usn2{@usn5:999[..`1esn`][..07],_usn4:Count ( * ) Ends With $123456789}]->(`` :`2esn`{`3esn`:0Xa In #usn7 In 's_str'})) Union Remove Extract(#usn7 In True Contains 's_str' Contains $usn1).#usn8!,#usn7().#usn7 Unwind 00[False..0e0] As `6esn` Remove ({``:.e1 Starts With 12.e12 Starts With `2esn`})<-[``:`5esn`|:usn2{`5esn`:_usn4[0]}]-(`8esn` :`8esn`)<-[`4esn` *0Xa{@usn6:999 Starts With `2esn` Starts With .e1,`4esn`:$@usn5[..0xabc][..$`3esn`]}]->(:`5esn`{_usn3:``[usn1][`5esn`],`1esn`:$@usn5 Contains 's_str' Contains \"d_str\"}).@usn5,`5esn`:`5esn`,Any(#usn7 In 9e0[$1000] Where `3esn` Starts With 9e0 Starts With usn1)._usn4?"), + octest:ct_string("Optional Match #usn8=(((:usn1:`3esn`{`8esn`:12 Starts With True Starts With 12e12,`8esn`:`2esn` Starts With $`7esn`})<-[`7esn`?:`2esn`|`4esn` *..010{usn1:0e0[``..$1000][$7..12.e12],`5esn`:0x0 Starts With $`6esn`}]->(@usn5 {_usn4:`5esn` Contains #usn7 Contains 9e12})-[ *0..01{@usn6:$0[123.654..0.e0]}]-(@usn6 :`8esn`{`4esn`:$`7esn`[.e1][12.0],#usn8:$`7esn`[$_usn4][.e0]}))) Where .12[123.654..] Create ((usn1 :`2esn`{@usn6:True Contains 's_str' Contains $usn1,``:$`4esn` Starts With 0 Starts With `7esn`})-[?*..{`6esn`:01 Ends With 0Xa Ends With 0X7}]->(:usn1:`3esn`{_usn4:$#usn7 Contains $`7esn` Contains .e12})) Union All Return Distinct *,(usn2 :usn1:`3esn`{`3esn`:`2esn` Is Null})<-[:`8esn` *999..{@usn6:`7esn` Ends With $7 Ends With $@usn5,``:0e0 Starts With 999 Starts With `2esn`}]->(`6esn` :#usn7:`5esn`)<-[usn1:`1esn`|`3esn`]->(`1esn` {#usn8:$#usn7[..9e0][..123.654],`5esn`:9e12 Starts With 1e1}) =~(`7esn` {#usn7:$@usn6 Ends With `1esn`})<-[#usn8 *0x0..]->(_usn3 :usn2{#usn8:$`2esn` Is Null,_usn3:123.654 Is Not Null})-[? *0X0123456789ABCDEF..]-(usn2 :_usn3),[@usn5 In 9e0 Ends With $#usn8 Where 12.e12 =~0X0123456789ABCDEF =~1.e1|00[$`1esn`..][@usn6..]] As `1esn` Skip 01[07..][1.e1..] Limit All(usn2 In 7[12] Where #usn8 Is Null Is Null)[[usn2 In 7[12] Where #usn7[.e0]]..] Detach Delete `` Is Null,12 Starts With $123456789 Starts With .e12,#usn7[$`3esn`..$1000][0.0..`2esn`] Union Merge (((_usn4 :`8esn`{usn1:12.e12[..$`6esn`]})-[@usn6:@usn5|_usn3{`3esn`:usn2 Is Not Null,#usn7:123.654 In 12}]->(`7esn` {``:.e0 Is Null Is Null,`2esn`:01234567[Null..$_usn3]})-[?:`8esn`*]-(`7esn` :usn2{`3esn`:12.0 In 123.654 In _usn4})))"), + octest:ct_string("Unwind [_usn4 In 12e12 In 123456789 Where 0x0 Starts With $`6esn`] As `6esn` Return Distinct 12 Starts With True Starts With 12e12 As _usn4 Order By None(`8esn` In 123456789 =~@usn6 Where True[`3esn`]) Is Not Null Is Not Null Desc"), + octest:ct_string("Delete 12 Contains 01234567,[@usn5[$`6esn`..][$999..],`` Starts With $123456789] Is Null,`6esn` Is Null Is Null Union All With Distinct *,`3esn`(`7esn`,0x0 Contains $`6esn` Contains `4esn`) Is Null Is Null Limit usn2[..$usn1][..$#usn8] Merge `5esn`=({usn2:.0 Starts With `1esn`,`2esn`:00 Contains Count ( * ) Contains 0x0})<-[_usn4?:@usn6|:`7esn`]->(_usn3 :`2esn`{@usn5:`4esn` Is Not Null Is Not Null})<-[`8esn`:usn1|`4esn` *0Xa{`6esn`:Count(*) In #usn8 In \"d_str\",`1esn`:$`1esn` Ends With 0X0123456789ABCDEF}]->(:`8esn`) On Create Set {usn1:$_usn4 Starts With $1000 Starts With 12}.@usn6! =[1e1 Is Not Null Is Not Null,``[$`3esn`],$`8esn` Is Not Null Is Not Null][..[$usn1 Ends With _usn4 Ends With `2esn`]][..Extract(usn2 In False[$usn1][0x0] Where .e1[usn2..$_usn3][.0..$#usn7])] On Create Set `5esn`+=All(#usn7 In 9e1[$`1esn`..] Where 12 =~usn1)[Extract(#usn7 In $999 In 1e1)..][1.e1..],`2esn` =False Starts With 0X7 Starts With 01234567 Detach Delete 9e1 Contains $999"), + octest:ct_string("With Distinct *,$_usn3 Is Not Null Is Not Null As @usn6,$0[#usn8] As `4esn` Order By 0.0 Ends With $`7esn` Asc,010 Starts With 0 Starts With 0.0 Desc,Extract(`6esn` In $`6esn`[``..][Count(*)..] Where 1.e1 Ends With $_usn4 Ends With #usn7|0xabc =~$@usn5) =~{_usn4:9e1[`1esn`..0][999..1e1]} Desc Limit `1esn`[$@usn6][07] Union All Unwind Filter(@usn5 In 's_str'[0..] Where #usn7[0.12..]) =~[_usn4 In 12e12 In 123456789 Where .0 Ends With Count ( * )|$`1esn` In .e0] As @usn5 Merge @usn6=((`5esn` {``:_usn3 Contains 9e12 Contains `8esn`,@usn6:``[7.._usn3]})<-[@usn5?:usn2 *00..0Xa{usn2:$usn2[`4esn`..9e12]}]->(:`3esn`{_usn3:1e1 Is Not Null Is Not Null,`2esn`:$usn1 Starts With usn1 Starts With True})-[usn2?:`5esn`|:usn2{`2esn`:`7esn`[$usn2..][$123456789..],@usn5:9e1 Starts With Count ( * )}]->(usn2 :usn1:`3esn`)) On Match Set [#usn8 In `7esn` Where 01 Ends With 0Xa Ends With 0X7|`8esn` Contains Count(*) Contains $#usn7].``? ={`5esn`:$`1esn` In .e0,``:`6esn` Ends With Count ( * ) Ends With Count ( * )} Is Null Is Null,`8esn`+=$7 Is Null,`7esn` =_usn4 In #usn7 Union All Remove (:`6esn`:_usn3$usn2)<-[:`4esn`|@usn5{`3esn`:Null[..0]}]->(:`4esn`:`6esn`{`4esn`:$`3esn`[..0X0123456789ABCDEF][..7],`5esn`:$0 =~9e1 =~$`2esn`})-[#usn7?{`5esn`:.e12 Starts With $#usn8 Starts With False}]->(#usn8 :@usn5{_usn4:$#usn7 Contains $`7esn` Contains .e12}).usn2 Delete $`1esn` Ends With 0X0123456789ABCDEF"), + octest:ct_string("Remove {``:.0[..'s_str'][..01234567]}.@usn5!,[#usn7 In 9e0[$1000] Where $123456789[...12][..@usn6]].`3esn` Return Distinct *,Extract(_usn3 In _usn3 Contains _usn4 Contains $@usn5 Where 1e1 Contains 0.e0 Contains 9e1|12.e12 Ends With $``) Is Null Is Null Order By Extract(#usn7 In 9e1[$`1esn`..] Where $999[``]) Starts With (`6esn` :@usn6)<-[ *..07]-(:_usn3{`7esn`:9e0 Ends With $#usn8}) Starts With (#usn7 :@usn6)<-[? *01..123456789]-(`6esn` {`2esn`:9e1 Contains 12,usn2:_usn3[`5esn`..][usn2..]}) Ascending,$@usn5[..$#usn7] Descending,{`3esn`:.e1[..\"d_str\"][..$123456789]} Descending Skip 9e1 Starts With Count ( * ) Limit {`1esn`:$999[``],@usn5:#usn7 Starts With $123456789 Starts With 12e12}[(_usn3 :`7esn`)-[`2esn`? *1000..0X0123456789ABCDEF{`8esn`:$7 In $usn1 In 999,@usn5:00 Ends With `` Ends With 12.e12}]-(:usn2{`5esn`:True[0xabc..01234567][$`8esn`..$@usn6]})..] Union All Delete `7esn` In 010 In usn1"). diff --git a/test/performance_statement_legacy_SUITE.erl b/test/performance_statement_legacy_SUITE.erl index b298a31..559f87f 100644 --- a/test/performance_statement_legacy_SUITE.erl +++ b/test/performance_statement_legacy_SUITE.erl @@ -2,7 +2,7 @@ %%% File : performance_statement_legacy_SUITE.erl %%% Description : Test Suite for rule: statement. %%% -%%% Created : 03.10.2016 +%%% Created : 15.12.2016 %%%------------------------------------------------------------------- -module(performance_statement_legacy_SUITE). @@ -38,1003 +38,1003 @@ all() -> %%-------------------------------------------------------------------- test_statement(_Config) -> - octest_legacy:ct_string("Drop Constraint On(``:`7esn`)Assert Extract(#usn8 In {`5esn`}[.e1..``]|$`6esn` Is Null)._usn4 Is Unique"), - octest_legacy:ct_string("Unwind 9e1 In 2.12 As @usn6 Return Distinct Case #usn7 Starts With {#usn7} Starts With `7esn` When $#usn7 Is Null Then Count(*) Is Null Is Null End =~Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))) =~Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {_usn4}[...e1][..$7]),Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..],{123456789} Contains $#usn8 As `3esn` Order By {`4esn`}[$123456789..][$#usn7..] Ascending Skip Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[usn2?:`5esn` *0..]-({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:usn1|@usn6 *00]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})))[..{_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]}] Load Csv From @usn6 Starts With `6esn` Starts With $`1esn` As _usn3 Union Remove {`3esn`:2.12 Contains usn2 Contains True}.`6esn`! Union All With 12[..$`4esn`] As `7esn`,(:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case When `6esn`[12..$usn2][{#usn8}..{usn2}] Then {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] When .e12[@usn5..#usn7][010..{usn1}] Then 0.12 =~$0 =~$0 End,Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Order By ({``:$`8esn` =~{1000}})-[:`8esn`*]->({_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]})-[`4esn`]->(:`6esn`$123456789) Contains Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {123456789}[0xabc..]) Asc,{@usn6}[..$7][..$`7esn`] Desc,None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12]) Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where $_usn3[.e0..$usn2]|{#usn7}[9e1..][{123456789}..]) Ends With Reduce(`2esn`={`3esn`} In 0X7,_usn3 In {`3esn`}[`2esn`]|$`5esn`[{`3esn`}]) Desc Skip (`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})[Single(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where Count(*) In $12)] Where $_usn3[{#usn7}] Foreach(`7esn` In $`3esn`[..$123456789][..$`1esn`]| Unwind [`` Is Not Null Is Not Null,`1esn` Contains {usn2} Contains $#usn8] Is Not Null As _usn4)"), - octest_legacy:ct_string("With Distinct $12[True..][{0}..],$@usn5[010..$#usn8][12..$`4esn`] As `6esn` Order By Shortestpath((`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})<-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(`3esn` :`6esn`))[(:`5esn`{``:1.0[0e0..0.e0]})-[ *7..12]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})] Ascending,0e0 Starts With `2esn` Starts With $`` Descending,usn2[9e12] Desc Skip $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Load Csv From 9e12[0.0..][$12..] As _usn4 Fieldterminator \"d_str\" Union All Optional Match ((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})),``=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))) Using Scan _usn3:_usn3 Where Count ( * ) Ends With $@usn5 Return {#usn7}[`2esn`..],Filter(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0]) Ends With Case When {#usn8}[010] Then False =~$7 =~2.12 End,0.0 =~999 As `4esn`"), - octest_legacy:ct_string("Create Constraint On()-[_usn3:`2esn`]->()Assert Exists([#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|False].`8esn`?)"), - octest_legacy:ct_string("Create Unique `5esn`=Shortestpath((((@usn5 :_usn4{#usn7:Null Ends With `2esn` Ends With $usn1,`5esn`:12.0})-[?:#usn7 *01234567..0Xa]->({``:$`8esn` =~{1000}})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})))) With Distinct $`3esn`[0.12..`8esn`][$#usn7..`5esn`],Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]) =~Reduce(usn1=.e1 Ends With 1e1 Ends With @usn5,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$#usn7[#usn7..]) =~`1esn`($1000 Is Null) As @usn6 Limit 7[$`4esn`][0x0] Where 7[$`2esn`..{`5esn`}] Union All Return {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]),Shortestpath((@usn5 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[:#usn8|`1esn`*{`8esn`:0Xa[usn2..]}]-(`3esn` :_usn3:_usn3{@usn5:False})) Ends With {@usn5:$12[Null..Count(*)][{`5esn`}..{999}],#usn7:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4]} Ends With Case {123456789}[0xabc..] When $0[..9e1] Then 0.e0 Ends With $#usn7 Ends With $7 End As _usn3 Skip Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where _usn4 Contains 2.12)[(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})..][#usn7(7 =~{`8esn`} =~$`6esn`,$123456789 Ends With {`1esn`} Ends With $`4esn`)..] Start #usn7=Rel:@usn6(`7esn`={`8esn`}) ,``=Node:`2esn`(usn2='s_str')"), - octest_legacy:ct_string("Load Csv From All(#usn7 In {``} Is Not Null Where .e0 Starts With $`` Starts With $usn2)[..``(`8esn`[`4esn`..{#usn8}][$12..2.12],{0} In _usn4)] As `6esn` Foreach(`8esn` In 12.e12[``][{`2esn`}]| Unwind 1e1[1.e1..7][{12}...e12] As #usn8 Remove Reduce(`4esn`=12.e12[$_usn3..],`2esn` In `1esn` =~\"d_str\"|0x0[`4esn`..'s_str']).#usn8!,Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn2[{7}]|.e1 Ends With 1e1 Ends With @usn5).`8esn`?) Union All Start usn1=Relationship:`8esn`(#usn8={`2esn`}) ,`7esn`=Node:`6esn`({_usn3}) Unwind 12e12 Ends With `5esn` Ends With {@usn6} As `3esn` Remove ({#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]})<-[?:_usn3|_usn3{`3esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],#usn8:False Starts With {`5esn`}}]-(usn2 :`5esn`{`7esn`:01234567 Is Null Is Null})-[_usn4:#usn8|`1esn`{`6esn`:#usn8[..{#usn7}]}]->(@usn6 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})._usn3?,Any(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}]).`6esn`! Union Detach Delete 12[..$`4esn`]"), - octest_legacy:ct_string("Create Constraint On()-[`8esn`:`6esn`]->()Assert Exists({_usn3:{#usn7} Is Not Null Is Not Null}.`6esn`?)"), - octest_legacy:ct_string("Drop Constraint On()<-[`7esn`:`8esn`]-()Assert Exists(All(_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..]).@usn6?)"), - octest_legacy:ct_string("Optional Match ((`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0})),Shortestpath((`7esn` :``:#usn8)<-[#usn8:`6esn`|`5esn`]-(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})) Using Index `2esn`:`1esn`(`4esn`) Using Scan `3esn`:_usn4 Where {`7esn`}[`6esn`][#usn7]"), - octest_legacy:ct_string("Merge `4esn`=Allshortestpaths((((#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)-[@usn5?:`4esn`]-(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})))) On Match Set _usn3+=2.12 =~False =~`5esn` Union All Return Distinct #usn7 Contains usn2 Contains @usn5 As `1esn` Order By 1.e1 Is Null Is Null Asc,12.e12 Starts With {999} Starts With {`1esn`} Desc,Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7) Contains Filter(`` In `` Is Not Null Is Not Null Where 0e0 Starts With 1000 Starts With #usn7) Contains Shortestpath((($#usn8)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]}))) Asc Skip 0e0 Starts With 1000 Starts With #usn7"), - octest_legacy:ct_string("Drop Constraint On(_usn4:`8esn`)Assert Allshortestpaths((((:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)-[usn1? *1000..00]->({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})))).`5esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(``:@usn5)Assert Exists([#usn8 In {`5esn`}[.e1..``] Where $`` =~12.0 =~$`7esn`].@usn6?)"), - octest_legacy:ct_string("Create Unique _usn3=((@usn5 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[`2esn`?:`7esn` *0X7..]-(@usn5 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})) Remove `8esn`:`5esn`,_usn4:#usn7,(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})-[`7esn`:#usn8|`1esn` *..0x0$`3esn`]-(:`3esn`:@usn5)-[`7esn` *..0x0]-(`2esn` :_usn4).`2esn`? Optional Match `4esn`=Allshortestpaths((((_usn3 )-[?{@usn6:0X7[`7esn`][123.654]}]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})))) Using Join On @usn5,_usn3,_usn3 Using Join On `2esn` Where $_usn3['s_str'][07] Union All Unwind $`3esn`[0.12..`8esn`][$#usn7..`5esn`] As `6esn`"), - octest_legacy:ct_string("Drop Constraint On()<-[#usn8:`3esn`]-()Assert Exists(Allshortestpaths(((:`1esn`{})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]}))).`2esn`?)"), - octest_legacy:ct_string("Optional Match Allshortestpaths((`` {@usn6:1.0[$`1esn`..][$123456789..]})<-[?{usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null}]-(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})),(({`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})-[`8esn`?:`2esn`*..{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})) Using Index usn2:@usn6(`5esn`) Using Join On `6esn`,`8esn`,`4esn` Create Unique (((`6esn` :@usn5)-[usn1?:_usn3|_usn3]-(usn2 :#usn7)<-[#usn8:@usn6|`6esn`{`8esn`:True[00][0Xa]}]->(`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]}))),Allshortestpaths((((:_usn4{usn2:0X0123456789ABCDEF[123456789]})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)))) Union Load Csv From [.e12[@usn5..#usn7][010..{usn1}]] In All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {`6esn`} Contains \"d_str\") In None(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) As usn1 With 07[$123456789..] Order By {`2esn`} Ends With 12.0 Desc,`6esn`[12..$usn2][{#usn8}..{usn2}] Asc,9e1[..$`2esn`] Ascending Create `3esn`=Allshortestpaths((usn2 :`4esn`)),`2esn`=Shortestpath((((:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})<-[:#usn7 *..010]-(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})))) Union All Return {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}])"), - octest_legacy:ct_string("Create Constraint On()<-[usn2:`6esn`]-()Assert Exists((:_usn4{@usn6})-[`5esn`?:_usn4|:usn2{_usn4:{999}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[{`4esn`:{_usn3}[..$12][..0.12],`7esn`:1.0[0X7][{`5esn`}]}]-({`2esn`:{7} In `2esn`,`1esn`:`4esn`[1.0]})._usn3!)"), - octest_legacy:ct_string("Drop Constraint On(#usn8:`3esn`)Assert Case When 1.0 Starts With 12e12 Starts With {`5esn`} Then {0} End.usn2 Is Unique"), - octest_legacy:ct_string("Load Csv With Headers From 00 Starts With 0xabc As @usn5 Fieldterminator 's_str'"), - octest_legacy:ct_string("Remove Case When Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6} Then {`2esn`} Is Not Null Is Not Null When `3esn`[{usn1}] Then `5esn` Starts With $`2esn` Starts With $1000 End._usn3!,Allshortestpaths((((`3esn` :`8esn`:`7esn`)-[`7esn`:#usn8|`1esn` *0xabc..]->(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})-[`2esn`?:`7esn` *..07$0]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})))).``! Foreach(_usn3 In usn2 Ends With 999 Ends With .e1| Match `4esn`=Allshortestpaths((((_usn3 )-[?{@usn6:0X7[`7esn`][123.654]}]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})))),((:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})) Create `8esn`=((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})),`8esn`=Allshortestpaths(((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})))) Detach Delete $1000 =~$`2esn`,00[Count(*)..]"), - octest_legacy:ct_string("Drop Constraint On(#usn8:`2esn`)Assert Exists(Single(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07).``!)"), - octest_legacy:ct_string("Merge @usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})) On Match Set #usn8+={#usn8}[1.e1...e12] Remove {`3esn`:Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},@usn6:$`8esn` Contains 123456789 Contains $usn2}._usn3,`5esn`(Distinct {usn2}[$`3esn`..][{#usn7}..]).@usn6?,_usn4:`5esn`"), - octest_legacy:ct_string("Create Constraint On()-[usn2:usn1]->()Assert Exists(All(#usn8 In {`5esn`}[.e1..``] Where $`3esn` Is Not Null).#usn8?)"), - octest_legacy:ct_string("Create Constraint On()-[#usn7:@usn6]->()Assert Exists(`7esn`(Distinct {999}).usn1?)"), - octest_legacy:ct_string("Create Constraint On(@usn6:`6esn`)Assert Allshortestpaths(((`4esn` {`6esn`:#usn8[..{#usn7}]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]}))).#usn7! Is Unique"), - octest_legacy:ct_string("Create Unique (((`6esn` :@usn5)-[usn1?:_usn3|_usn3]-(usn2 :#usn7)<-[#usn8:@usn6|`6esn`{`8esn`:True[00][0Xa]}]->(`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]}))),Allshortestpaths((((:_usn4{usn2:0X0123456789ABCDEF[123456789]})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)))) Optional Match ({`3esn`:usn1 Is Null Is Null})-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]-({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`4esn` {@usn6:{12}[..0X7]}) Using Join On _usn3,@usn5 Union All Delete `7esn` In {123456789} In `1esn` Union Create Unique ({`3esn`:usn1 Is Null Is Null})-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]-({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`4esn` {@usn6:{12}[..0X7]}) Return Reduce(`7esn`=$`5esn` In $`` In 123.654,`` In 123456789 Ends With 12.e12 Ends With $`7esn`|{`7esn`} Is Null)[Reduce(_usn3=#usn8 Is Not Null,`` In 123456789 Ends With 12.e12 Ends With $`7esn`|1.0 Starts With 12e12 Starts With {`5esn`})] As `8esn`,$`8esn` Is Not Null Is Not Null As `1esn`,\"d_str\" Starts With $123456789 Order By `` Ends With $1000 Desc,Case {`8esn`} Ends With `6esn` When False Is Null Is Null Then 's_str' In 00 Else 123456789 Ends With $`6esn` Ends With $#usn7 End Starts With Case `1esn` =~0 =~$#usn7 When $#usn8[9e12..][.e1..] Then False =~$7 =~2.12 When {123456789}[9e12][{0}] Then 12.0 =~999 =~$_usn3 End Desc"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From 0Xa[..{`4esn`}][..12.0] As `7esn` Fieldterminator \"d_str\" Detach Delete 1.0 =~7 =~{usn2},{`1esn`}[{123456789}][{0}],{_usn4}[{`5esn`}..{1000}][9e1..{1000}]"), - octest_legacy:ct_string("Load Csv From Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where _usn4 Contains 2.12|{_usn3}[..\"d_str\"]) Contains Shortestpath((`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})) Contains [$123456789 Ends With $999 Ends With {999},12.0 Contains #usn7] As _usn4 Merge _usn3=Shortestpath(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))) On Create Set `5esn`+=999 In {`3esn`} In usn2 On Match Set _usn4 =[`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null,@usn6+=Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 07 Contains 0X7 Contains $`8esn`) Is Not Null Is Not Null Union Return {0} As `7esn`,1000[..$0][..True] Limit Case When @usn5 Is Null Then 2.12 Ends With $_usn3 Ends With `3esn` Else $1000 Is Null End[Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}])..None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa)][Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01|usn2 Is Null)..Case When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` End] Create Allshortestpaths((`3esn` :#usn8:#usn8)),`4esn`=Allshortestpaths(((:`2esn`:usn1)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`}))) With Distinct *,$@usn5 Is Not Null,Count ( * ) Is Null Skip Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where _usn4 Contains 2.12|{_usn3}[..\"d_str\"]) Contains Shortestpath((`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})) Contains [$123456789 Ends With $999 Ends With {999},12.0 Contains #usn7] Limit {1000} Is Null Is Null Where usn2 Is Null"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:`1esn`)Assert Exists(Case When True[07..$usn2][$7..{usn1}] Then 's_str'[00][{`5esn`}] When 12e12 Ends With {usn1} Then 2.12 =~False End.`6esn`?)"), - octest_legacy:ct_string("Drop Constraint On(@usn5:_usn4)Assert Exists(All(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc]).@usn5)"), - octest_legacy:ct_string("Drop Constraint On(``:usn1)Assert Exists((`3esn` :`7esn`:_usn3)-[`7esn` *0X0123456789ABCDEF]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})<-[#usn8?:#usn7{`1esn`:#usn7 =~Count ( * ) =~``,usn2:`` Ends With $1000}]->(:@usn6:#usn8{`4esn`:$`8esn`[..00]}).`4esn`)"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`3esn`)Assert {`6esn`:#usn8[..{#usn7}],@usn5:`8esn`[`4esn`..{#usn8}][$12..2.12]}.`4esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`3esn`)Assert Shortestpath((:#usn8:#usn8{_usn4})).@usn6? Is Unique"), - octest_legacy:ct_string("Merge (`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]}) On Create Set `4esn`+=(`1esn` :#usn8:#usn8)-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})[..(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})][..`5esn`({12} Ends With 1.0 Ends With .e0)],Any(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`])._usn4! ={@usn6}[{999}..][00..] Unwind $12 Starts With {`1esn`} Starts With Null As `6esn` Union All Unwind $#usn7 Contains 0x0 Contains 1000 As `4esn` Remove Extract(`8esn` In 01[2.12..`8esn`] Where {999} Starts With {0}|01 Contains {`8esn`} Contains 2.12).usn2?,Shortestpath((`4esn` :#usn7)-[@usn5?:`4esn`]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]})).`6esn`!,Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn1[9e12..][$7..]).usn2? Create Unique ({`8esn`:`3esn`[{0}][usn1]})-[_usn4?:_usn4|:usn2 *00]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``})<-[ *0X7..]-(`2esn` {_usn3:`1esn` Contains {usn2} Contains $#usn8}),(#usn8 :@usn6:#usn8) Union Foreach(`3esn` In {7} Is Null Is Null| Load Csv With Headers From $_usn4 Contains Null Contains #usn8 As #usn7 Fieldterminator \"d_str\") Start _usn3=Node:usn1(`6esn`={7}) Where 0X7[1000..{`1esn`}]"), - octest_legacy:ct_string("Create Constraint On(`3esn`:``)Assert Exists((`` :_usn4{_usn4:False[..``],usn2:9e1[1000][{123456789}]})<-[:`5esn`{@usn6:$#usn8 Ends With $`2esn` Ends With $@usn6,`6esn`:{7}[..12e12][..Count ( * )]}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]->({@usn6:$usn1 Ends With $`` Ends With $12}).`1esn`!)"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From [`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999}] Ends With usn1(Distinct 1000 In {`8esn`} In 01,{_usn3}[..\"d_str\"][..`5esn`]) Ends With Reduce(_usn4=1000[Null..{123456789}],`5esn` In $999[0.0..]|9e1 In $`3esn` In $@usn6) As _usn4 Fieldterminator \"d_str\" Return 12 Ends With 0x0 Ends With 0.e0,Case When 1.0 In Count(*) Then False End Contains `1esn`(Distinct 0.e0 Starts With `2esn`) Contains Reduce(`1esn`=\"d_str\" Is Null Is Null,#usn7 In {``} Is Not Null|#usn7),0e0[..010] As `` Skip False =~$7 =~2.12"), - octest_legacy:ct_string("Drop Constraint On()<-[`3esn`:_usn3]-()Assert Exists([`3esn` In {7} Is Null Where {usn2}[.e0..$999]|01[2.12..`8esn`]].@usn6!)"), - octest_legacy:ct_string("With All(`` In `` Is Not Null Is Not Null Where $_usn4 Starts With 1e1)[Shortestpath(((:usn1{`3esn`:{123456789} Is Null Is Null})-[_usn4{`5esn`:{0} Ends With $_usn3 Ends With $`7esn`,`2esn`:Null[``]}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[? *0Xa]-({`7esn`:{999}})))][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)] As ``,Shortestpath((`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})<-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(`3esn` :`6esn`))[(:`5esn`{``:1.0[0e0..0.e0]})-[ *7..12]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})] Order By `1esn`($123456789 Starts With 9e0 Starts With 's_str',{usn2}[.e0..$999])[{usn2:{`3esn`} In 0X7,_usn3:7 Starts With {@usn6} Starts With $``}..Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {usn1} In 2.12 In 1000)][Case 0[`7esn`..] When 123456789 Is Null Then .e12 Is Not Null Is Not Null Else $@usn5 =~1000 =~1000 End..[`4esn` In $`3esn` Is Not Null Where `8esn`[{123456789}..]|{`3esn`}[`2esn`]]] Desc,(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]}) Is Not Null Is Not Null Descending Limit [`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null Start `8esn`=Node:@usn6({_usn4}) Where `3esn`[`3esn`..][#usn8..]"), - octest_legacy:ct_string("Merge #usn8=Allshortestpaths((#usn8 :@usn5)) On Create Set $`1esn`.``? =[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12)"), - octest_legacy:ct_string("Remove Shortestpath(({`7esn`:{999}})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})).@usn5 Create Allshortestpaths(((usn2 :@usn5)<-[? *00]->(@usn5 :usn1))) Union All Remove (:usn1{_usn3:{#usn7}[`2esn`..]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(#usn7 ).`2esn`,Case `5esn` Starts With $`2esn` Starts With $1000 When 123.654 =~$usn2 =~{999} Then Count ( * ) Contains `8esn` Contains .e1 End._usn3!,exists($12[$1000..123456789],123456789[0xabc..'s_str'][``..`1esn`]).@usn5 Return {#usn8} Starts With 00 Starts With {`6esn`} As ``,7[{0}..{_usn4}] As #usn8,`4esn`[$999..{`1esn`}][{@usn6}.._usn3] Order By `8esn` Is Not Null Is Not Null Desc Limit {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Create usn2=Shortestpath((usn2 :#usn7)) Union All Detach Delete $7 In $7 In $7,0X7[1000..{`1esn`}],.e1 Is Null Is Null Optional Match _usn3=Allshortestpaths((`4esn` {usn2:0x0 Is Null,`5esn`:{usn2} =~12})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]})-[usn1:_usn3|_usn3 *..999{`2esn`:'s_str'[00][{`5esn`}],@usn6:999 Is Not Null Is Not Null}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})) Using Index `3esn`:@usn5(`8esn`) Where 0X7[$999][_usn4] Create ((:usn2{usn2:123.654[$`1esn`],@usn6:123456789[$@usn5..]})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`` {usn2:9e0[..999],`2esn`:0e0 In @usn5})<-[]->(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})),#usn8=Allshortestpaths((({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})-[? *..0x0{_usn3:01 Ends With 999 Ends With {`7esn`}}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[?{usn1:0[`7esn`..]}]->({usn1:{`7esn`}[`6esn`][#usn7],usn1:{999} Starts With $999})))"), - octest_legacy:ct_string("Drop Constraint On()<-[@usn6:usn2]-()Assert Exists(Extract(_usn3 In {`3esn`}[`2esn`]).`7esn`!)"), - octest_legacy:ct_string("Create Constraint On(@usn5:`7esn`)Assert Exists({`3esn`:usn1 Is Null Is Null}.`2esn`?)"), - octest_legacy:ct_string("Create Constraint On()-[``:`3esn`]->()Assert Exists([`7esn`[..2.12][..{usn1}]].@usn5)"), - octest_legacy:ct_string("Create Constraint On(usn2:`6esn`)Assert Allshortestpaths((((`1esn` {@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00})-[`6esn`?:`3esn`|:#usn8]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})))).#usn7! Is Unique"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From $`4esn` Is Null Is Null As @usn6 Unwind Single(#usn8 In {`5esn`}[.e1..``] Where 123.654[$`1esn`]) Is Not Null Is Not Null As @usn5 Delete 2.12 Ends With $_usn3 Ends With `3esn`,usn1 Ends With $@usn6 Ends With `3esn`"), - octest_legacy:ct_string("Drop Constraint On(_usn3:@usn5)Assert Case When 0X7[1000..{`1esn`}] Then Count(*) Ends With 12.0 Ends With 12 End.@usn6! Is Unique"), - octest_legacy:ct_string("With Distinct Case #usn7 Starts With {#usn7} Starts With `7esn` When $#usn7 Is Null Then Count(*) Is Null Is Null End =~Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))) =~Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {_usn4}[...e1][..$7]),Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..],{123456789} Contains $#usn8 As `3esn` Order By {`4esn`}[$123456789..][$#usn7..] Ascending Skip Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[usn2?:`5esn` *0..]-({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:usn1|@usn6 *00]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})))[..{_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]}] Union All Merge (@usn6 :`6esn`)-[`6esn`?:#usn7]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}) On Create Set None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0xabc[01..{999}][{7}..{`7esn`}]).#usn8? =123.654[`3esn`..] Create `6esn`=Shortestpath((((`2esn` :`8esn`:`7esn`)<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})))) Foreach(`1esn` In Count ( * ) Ends With $@usn5| With Distinct {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]),Count ( * ) Is Null As @usn6,123.654[...e0] Order By {usn2} Starts With $`8esn` Starts With Count ( * ) Asc Limit $@usn5 Starts With #usn7 Where {123456789}[0xabc..]) Union All Unwind $`1esn`[{`2esn`}..] As `7esn` Unwind [#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn2 Is Null|@usn6[$`3esn`..{`3esn`}]] In Filter(_usn3 In {`3esn`}[`2esn`] Where 1e1 In 123.654 In `3esn`) As _usn3 With Distinct `5esn`[_usn4..],$123456789 In 0X0123456789ABCDEF In 0.e0 Where 7[True..][2.12..]"), - octest_legacy:ct_string("Create Constraint On()-[usn1:@usn5]->()Assert Exists(Extract(`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}|$@usn5 Starts With $1000).@usn5!)"), - octest_legacy:ct_string("Remove `4esn`({12} Ends With 1.0 Ends With .e0).`3esn`!,_usn4:`2esn`:usn1,[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e1 Is Not Null|Null[$`5esn`][False]].`3esn`? Foreach(`2esn` In $@usn5 Starts With {@usn5} Starts With 9e0| Return Distinct 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] Skip $`5esn`[2.12..] Limit {_usn4}[`3esn`][12.0] Create Unique ((({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})<-[`5esn`:#usn7 *00{#usn7:{999} Starts With {0}}]-(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]})-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))),Allshortestpaths((@usn6 :_usn3:_usn3)-[?{`3esn`:7[{0}..{_usn4}]}]->(`7esn` :_usn3:_usn3)-[?:usn2|`` *..010{`4esn`:{`4esn`} Starts With $usn2 Starts With $1000,`7esn`:$@usn6 Contains 07}]->(:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})))"), - octest_legacy:ct_string("Create Constraint On()-[usn1:`5esn`]-()Assert Exists(Any(#usn7 In {``} Is Not Null Where True =~010).`2esn`!)"), - octest_legacy:ct_string("Match @usn6=Allshortestpaths((`6esn` :`8esn`:`7esn`)<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})),`8esn`=((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})) Using Index `6esn`:`8esn`(``) Using Join On `5esn`,#usn7 Where 1.0[0e0..0.e0] Create Unique Allshortestpaths((_usn3 :@usn5)-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})),`4esn`=Allshortestpaths(({@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})-[`6esn`?:``]-(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})) Load Csv With Headers From Reduce(`3esn`=$0[..9e1],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|999 In {`3esn`} In usn2) Starts With Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Starts With Allshortestpaths((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})) As @usn5 Fieldterminator 's_str'"), - octest_legacy:ct_string("Create Unique `7esn`=Allshortestpaths(((`1esn` ))) Union All Start @usn5=Rel:#usn8(\"d_str\") ,`2esn`=Rel:#usn8({``})Where 0X0123456789ABCDEF[123456789] Foreach(#usn8 In {123456789}[0.e0..$123456789][0Xa..`6esn`]| Remove Case When `2esn` Is Null Then 1000 =~@usn6 =~0x0 Else \"d_str\"[#usn8] End.`1esn` Start usn2=Node:usn1(`4esn`='s_str') ,_usn3=Node:`7esn`(`3esn`='s_str')) With Distinct [01[2.12..`8esn`],{7} In `2esn`,123456789 Ends With $`6esn` Ends With $#usn7] Starts With Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With `7esn`(Distinct {_usn4} Ends With `6esn`,{@usn6}[7]),$1000 =~$`2esn` As `6esn`"), - octest_legacy:ct_string("Foreach(`2esn` In 7[..999][..{#usn8}]| Delete {#usn8}[.._usn4][..$`3esn`],$123456789 Ends With `3esn` Ends With 123456789)"), - octest_legacy:ct_string("Create Constraint On(`2esn`:`6esn`)Assert (@usn6 :``:#usn8)-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->(:``:#usn8{`4esn`:{`4esn`}[$123456789..][$#usn7..]})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}).`6esn`? Is Unique"), - octest_legacy:ct_string("Load Csv From $`2esn` Is Null Is Null As `3esn` Merge #usn8=Allshortestpaths((#usn8 :@usn5)) On Create Set $`1esn`.``? =[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12) Union All Start _usn3=Relationship:`8esn`({`1esn`}) ,`6esn`=Relationship:`2esn`({0}) With Distinct *,'s_str'[$_usn3..][Count ( * )..] As #usn7 Limit {_usn3}[12.e12] Where 0e0 Starts With 2.12 Starts With $12 Load Csv From {_usn3}[..\"d_str\"] As `3esn` Union Create `8esn`=((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})) Load Csv From 1000 =~@usn6 =~0x0 As #usn7 Remove Reduce(_usn4=12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],#usn7 In {``} Is Not Null|$`8esn`).@usn5,Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {123456789}[0xabc..]|{7}[$``][{@usn6}]).#usn7"), - octest_legacy:ct_string("Create Constraint On(`1esn`:#usn8)Assert Single(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 9e1[2.12..{#usn8}]).`8esn`! Is Unique"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From $@usn5 Starts With $1000 As `2esn` Foreach(#usn7 In (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12}| Return Distinct 0e0 =~`6esn` =~123456789 As @usn5,Count ( * )[True..][{#usn7}..],2.12 =~{7} As `6esn` Order By {`2esn`}[1e1..1.0][{#usn8}..$`1esn`] Ascending,0X0123456789ABCDEF Is Null Is Null Asc Skip \"d_str\"[#usn8] Match `8esn`=(:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`),Shortestpath(({usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null})) Using Join On `5esn`,#usn7 Using Scan `2esn`:`6esn` Where `7esn`[..2.12][..{usn1}]) Merge usn1=(#usn7 :`8esn`:`7esn`) On Create Set Single(_usn3 In {`3esn`}[`2esn`] Where _usn3 Contains $123456789 Contains ``).`2esn` =Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With Reduce(`1esn`=0.12 Starts With $`5esn` Starts With 12,_usn3 In {`3esn`}[`2esn`]|$12[True..][{0}..]) Starts With Reduce(usn2=Null Ends With {`5esn`} Ends With 0.e0,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{`6esn`}),[@usn6 Ends With {_usn3},12.0 Contains #usn7,$_usn3[..1000]].`2esn`? =0e0 Contains Null,`5esn`+=7 Ends With (@usn5 {`7esn`:$`6esn`[010..]})-[:`8esn` *..01]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]}) Ends With #usn8(False =~$7 =~2.12)"), - octest_legacy:ct_string("Drop Constraint On(usn1:`8esn`)Assert [01 Ends With 999 Ends With {`7esn`},#usn8[#usn8..],`5esn` Is Null].usn1! Is Unique"), - octest_legacy:ct_string("Match ``=Shortestpath(({`1esn`:`3esn`[{`2esn`}]})-[`3esn`?*{`8esn`:False Is Null Is Null}]->(:#usn7{_usn4:$`8esn` Contains 123456789 Contains $usn2})),usn2=Allshortestpaths(((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]}))) Using Join On #usn7,_usn4 Where $#usn8 Contains $`1esn` Contains {`6esn`} Return *,0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn` As `7esn` Limit 9e12[`6esn`..12.0] Union Optional Match Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))),`2esn`=(usn2 :`4esn`)-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(`` :_usn4) Where {123456789} Is Null Is Null Union Return *,12[..$`4esn`],Case When 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] Then {1000} =~0 =~123.654 When `8esn`[`4esn`..{#usn8}][$12..2.12] Then 00[$`7esn`] End Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`7esn` =~{`8esn`} =~$usn1) Contains [0.12 =~`5esn` =~`5esn`] Order By False[_usn3..`8esn`][$`8esn`..{`3esn`}] Ascending Limit _usn3 Starts With 12.e12 Starts With 0.12 Return Allshortestpaths((({`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})<-[?*..]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}))) Ends With Reduce(_usn3='s_str'[00][{`5esn`}],`4esn` In $`3esn` Is Not Null|Count ( * ) Contains `8esn` Contains .e1),$_usn4[0e0..][False..] As ``,$`6esn` Ends With Count(*) Order By {usn1} Is Not Null Is Not Null Desc,{usn2}[$`3esn`..][{#usn7}..] Ascending Limit {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]) Match Allshortestpaths((((#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)-[@usn5?:`4esn`]-(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})))) Using Scan ``:`2esn` Where 12.e12[$_usn3..]"), - octest_legacy:ct_string("Drop Constraint On()-[`3esn`:_usn3]->()Assert Exists(Case When @usn6[{`5esn`}] Then $_usn4 Contains Null Contains #usn8 When `5esn` Is Null Then 010[#usn7..True] Else {123456789} Contains $#usn8 End.@usn6)"), - octest_legacy:ct_string("Drop Constraint On(@usn5:usn2)Assert Exists({_usn4:`5esn` Is Null}.`2esn`?)"), - octest_legacy:ct_string("Drop Constraint On()-[`7esn`:`6esn`]-()Assert Exists(Allshortestpaths(({`1esn`:`3esn`[{`2esn`}]})-[`3esn`?*{`8esn`:False Is Null Is Null}]->(:#usn7{_usn4:$`8esn` Contains 123456789 Contains $usn2})).usn1?)"), - octest_legacy:ct_string("Create Unique (`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[`8esn`?:@usn6|`6esn`]-(`2esn` :`6esn`) Merge @usn5=(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(`2esn` :`8esn`:`7esn`) Unwind $`4esn`[`7esn`] As _usn4 Union All Create Unique #usn8=(:`4esn`{``:2.12 Is Not Null Is Not Null}),Allshortestpaths(({_usn3:$`5esn`[`3esn`..]})-[usn1? *0X0123456789ABCDEF]->(:`8esn`:`7esn`)) Union Create Unique ((`3esn` )) Unwind {`5esn`}[0..`8esn`][0..Null] As usn1"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From Single(#usn8 In 7[..999][..{#usn8}] Where $_usn3[.e0..$usn2])[Reduce(`8esn`=$#usn8 Ends With $`2esn` Ends With $@usn6,`2esn` In `1esn` =~\"d_str\"|$`8esn`[1000..0Xa])][[$123456789 =~{`6esn`} =~\"d_str\",01234567 Ends With .e12 Ends With $#usn7]] As `` Fieldterminator 's_str' Load Csv From {#usn7}[True][.e1] As `` Fieldterminator \"d_str\" Return Distinct @usn6 Starts With `6esn` Starts With $`1esn` As `7esn`,usn1 In 7 In {123456789} As `5esn`,`8esn` Ends With 999 Ends With .e12 Order By 0.12[..False][..{1000}] Asc"), - octest_legacy:ct_string("Merge (`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) On Match Set Any(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`])._usn4! =$#usn8[..{`2esn`}][..1.0],#usn7+={@usn5:`1esn` =~0 =~$#usn7,usn2:{7} In `2esn`} Ends With ({`4esn`:{`4esn`} Ends With {usn2} Ends With {999}})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7}) Ends With Case False[..``] When 0.12 Starts With $`5esn` Starts With 12 Then `4esn` =~$`5esn` When 's_str' In 00 Then $0[..9e1] Else 1e1 In \"d_str\" In `7esn` End Foreach(`2esn` In Shortestpath(((({`4esn`:`7esn` Is Null})<-[`4esn`? *..12{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7}]->({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3))))[(`4esn` {`6esn`:#usn8[..{#usn7}]})<-[?:`8esn`{`3esn`:1.0 In Count(*)}]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[`1esn`:usn2|``]->(`3esn` {@usn5:$usn2[9e0]})]| Detach Delete Reduce(#usn7=`3esn`[{`2esn`}],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|#usn8 Is Not Null)[(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(#usn7 {_usn3:`4esn`[..Count ( * )][..{#usn7}]})..None(`8esn` In 01[2.12..`8esn`] Where {usn2})],Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))),12 Ends With 0x0 Ends With 0.e0 Unwind 12.e12 Starts With {999} Starts With {`1esn`} As `4esn`) Union All Foreach(`3esn` In Reduce(usn2=01[{`2esn`}..{@usn6}][$`2esn`..0.0],usn1 In @usn5 =~{`5esn`} =~`5esn`|$#usn8 Ends With $`2esn` Ends With $@usn6) =~[#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01|{0} Ends With $_usn3 Ends With $`7esn`] =~(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True})| Unwind All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] As @usn6) With Distinct *,`4esn` =~$`5esn` As usn1,{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4] Order By $`5esn` Starts With `` Descending,2.12 Is Null Asc Skip None(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Is Null Is Null Where 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Create Unique `5esn`=(_usn4 :`5esn`)-[ *0..]->(`` :usn2)"), - octest_legacy:ct_string("Create Constraint On(`5esn`:`2esn`)Assert Allshortestpaths((_usn4 :usn1)<-[`1esn`?:`4esn`]->(`5esn` :`4esn`)).usn2? Is Unique"), - octest_legacy:ct_string("Drop Constraint On()<-[`8esn`:#usn8]-()Assert Exists(Any(`` In `` Is Not Null Is Not Null Where {`7esn`} Is Null).`2esn`)"), - octest_legacy:ct_string("Unwind Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0)[..Case When 01234567[usn2..$12][{`7esn`}..$usn2] Then usn1[`5esn`..$7] Else $1000[0Xa][{#usn7}] End][..Reduce(@usn6=07 Contains 0X7 Contains $`8esn`,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|{#usn7}[9e1..][{123456789}..])] As _usn4 Optional Match ((usn2 :#usn8:#usn8)-[`2esn`?{_usn3:$_usn4[Count ( * )..],#usn7:{`3esn`}[..07][..{`5esn`}]}]-({_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]})),Allshortestpaths(((:_usn4{_usn4:{7} In `2esn`})<-[#usn8?:usn1|@usn6]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]}))) Using Scan @usn5:#usn7 Using Index #usn8:`2esn`(`5esn`) Unwind $#usn8 As `6esn`"), - octest_legacy:ct_string("Detach Delete $`1esn` =~0X7,.e0 Ends With 0.12,0e0[`8esn`..][$123456789..] Remove [{12} Contains {123456789} Contains `4esn`,1.e1[`8esn`][00],1.0[$`1esn`..][$123456789..]]._usn4?,Reduce(_usn3=123456789[#usn8..False],_usn3 In {`3esn`}[`2esn`]|123.654 Contains $`4esn` Contains 1.0).#usn8? Union All Start usn2=Rel:_usn4(\"d_str\") Where {`6esn`} Union Unwind All(#usn8 In {`5esn`}[.e1..``] Where {_usn3}[..\"d_str\"][..`5esn`])[..Allshortestpaths((`5esn` :`4esn`))] As `2esn` Merge ((`3esn` :usn2)) On Match Set _usn3+=$`3esn` Is Not Null Is Not Null,`3esn` ={`4esn`} Ends With {usn2} Ends With {999},{@usn6:{999} Starts With $999,`4esn`:$usn1[{`5esn`}][$`6esn`]}.@usn5? =$usn1[..{`6esn`}] Create Unique `5esn`=Shortestpath((_usn3 :#usn7)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})<-[`5esn`? *..12{`8esn`:{`7esn`}[`6esn`][#usn7],`1esn`:0x0 Ends With $12}]->({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000})),((:#usn8:#usn8{_usn4})<-[usn1?:`7esn`]-(:usn1{usn1:{`6esn`}}))"), - octest_legacy:ct_string("Start `5esn`=Rel:`8esn`({usn1}) Where {@usn6}[{999}..][00..] Create `5esn`=Allshortestpaths(((`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}))),Allshortestpaths(((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]}))) Unwind 0X7[1000..{`1esn`}] As `4esn` Union Start usn2=Relationship( {`5esn`}) Foreach(`8esn` In 0X0123456789ABCDEF[123456789]| Delete 07[..True][..9e12]) Match (({`4esn`:`7esn` Is Null})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})),({`4esn`:{`4esn`} Ends With {usn2} Ends With {999}})<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-(:#usn8:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]}) Using Index `6esn`:`8esn`(``) Using Scan `2esn`:`7esn` Where 0.e0 Contains 9e1 Contains {`7esn`}"), - octest_legacy:ct_string("Delete Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Is Not Null Is Not Null,7[..123456789][..{@usn6}] Start `4esn`=Relationship:`3esn`({`1esn`}) Foreach(#usn8 In 12.e12 Is Null Is Null| Optional Match ((usn2 :#usn8:#usn8)-[`2esn`?{_usn3:$_usn4[Count ( * )..],#usn7:{`3esn`}[..07][..{`5esn`}]}]-({_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]})),Allshortestpaths(((:_usn4{_usn4:{7} In `2esn`})<-[#usn8?:usn1|@usn6]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]}))) Using Scan @usn5:#usn7 Using Index #usn8:`2esn`(`5esn`)) Union All Optional Match @usn5=(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(`2esn` :`8esn`:`7esn`),usn1=Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` )))) Using Join On `7esn`,`8esn`,`3esn` Where 7[{0}..{_usn4}] Foreach(`` In $`8esn`| Create `8esn`=(:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`),(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7) Remove Case `1esn`[{usn1}..``][7..$#usn8] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] End.@usn5) Match `3esn`=Shortestpath((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))),Shortestpath(({@usn5:07[..True][..9e12]})-[_usn4?:`5esn` *..07]->({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})) Using Index @usn5:`2esn`(@usn5) Using Scan `7esn`:usn1 Where Null[$#usn7]"), - octest_legacy:ct_string("Foreach(`7esn` In 12.0 In {`2esn`}| Unwind $123456789[_usn3][{#usn7}] As `3esn` Optional Match (#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null}),(({usn1:`5esn`[_usn4..]})-[usn1?:_usn3|_usn3]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))) Union Start `6esn`=Node:`8esn`(\"d_str\") ,`4esn`=Relationship:``(@usn6={usn1}) Union All Optional Match (:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})-[?:`5esn`]->(:usn2),`2esn`=Shortestpath((({usn2:7[..999][..{#usn8}]}))) Using Join On @usn6,@usn6"), - octest_legacy:ct_string("Drop Constraint On()-[`4esn`:usn1]->()Assert Exists(Reduce(_usn4=1.0 =~7 =~{usn2},usn1 In @usn5 =~{`5esn`} =~`5esn`|$#usn8[9e12..][.e1..]).#usn7?)"), - octest_legacy:ct_string("Return Distinct (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(:_usn3:_usn3{``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Is Not Null,$#usn8[Count ( * )] As `4esn` Order By Case When Count(*) In $12 Then .e0 Starts With 0 Starts With 0.e0 When {usn1}[0X0123456789ABCDEF] Then $`6esn`[123456789..12][True..{`3esn`}] Else 7 Starts With {@usn6} Starts With $`` End[Case @usn6 Contains $1000 Contains {`7esn`} When 0.12 =~$0 =~$0 Then $usn1[.._usn4][..False] When {0} Ends With $_usn3 Ends With $`7esn` Then 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3] End..] Desc,False Ascending Skip `2esn`[{`4esn`}][$_usn3] Limit Reduce(`4esn`=01 Ends With 999 Ends With {`7esn`},`4esn` In $`3esn` Is Not Null|1.0[`3esn`..][9e0..]) Is Null Is Null Load Csv With Headers From Case When {_usn4} Starts With 0.e0 Starts With 0x0 Then 12 Ends With 0x0 Ends With 0.e0 Else $1000 Is Null Is Null End Starts With `7esn`(Distinct $#usn7[..{`5esn`}][..9e12]) Starts With {`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`} As _usn3 Fieldterminator \"d_str\" Return Distinct .e0 Ends With 0.12,{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}[Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End..[`3esn` In {7} Is Null Where {123456789} Contains $#usn8|#usn7 =~Count ( * ) =~``]][`7esn`(9e1[1000][{123456789}]).._usn3(0.12 =~$0 =~$0)] As `8esn`,{`6esn`} =~$999 As usn1 Skip {`4esn`}[#usn7..$123456789][{7}..usn2] Limit Case _usn3[$`8esn`] When 12e12 Contains 0Xa Then 7[{0}..{_usn4}] End Starts With {#usn7:Null Ends With `2esn` Ends With $usn1,`5esn`:12.0} Union Remove Case When 1.0 Starts With 12e12 Starts With {`5esn`} Then {0} End.usn1!,Case When 1.0 Contains $_usn4 Then {999} Contains .e0 Contains 12.0 Else `5esn`[_usn4..] End.#usn8! Start _usn4=Node:`3esn`(`2esn`={usn1}) ,`6esn`=Node:``('s_str') Unwind 999 In {`3esn`} In usn2 As `6esn` Union Return *,$`7esn`['s_str'] As #usn8,Reduce(`3esn`=$0[..9e1],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|999 In {`3esn`} In usn2) Starts With Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Starts With Allshortestpaths((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})) As `` Limit {@usn5} =~Count ( * ) =~12.0"), - octest_legacy:ct_string("Create Constraint On(@usn6:`2esn`)Assert Allshortestpaths(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))).`8esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On()<-[_usn3:``]-()Assert Exists(Reduce(#usn7=9e12[`6esn`..12.0],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|{@usn5}[{#usn8}][9e0]).``)"), - octest_legacy:ct_string("Drop Constraint On()-[#usn7:@usn5]-()Assert Exists(Reduce(`3esn`=01234567 Is Null Is Null,#usn7 In {``} Is Not Null|{`5esn`} =~`4esn` =~{_usn4}).`3esn`?)"), - octest_legacy:ct_string("Foreach(`2esn` In `5esn`(Distinct {_usn4} Ends With `6esn`,$`4esn` In Null In 0xabc) Ends With Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Ends With All(`3esn` In {7} Is Null Where Count ( * ) Contains 07)| Delete {`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]} Starts With [False] Starts With Filter(#usn8 In 7[..999][..{#usn8}] Where $_usn3[.e0..$usn2])) With {usn2}[$`3esn`..][{#usn7}..] As `1esn`,[$0] In [`2esn` In `1esn` =~\"d_str\" Where {0} Ends With $_usn3 Ends With $`7esn`|{999} Contains .e0 Contains 12.0] In None(`2esn` In `1esn` =~\"d_str\" Where {`7esn`}[..$@usn5][..$#usn8]) As usn1,0X7[123.654..@usn6] As _usn3 Limit usn2(7[..999][..{#usn8}])[[$_usn4 Contains Null Contains #usn8,{#usn8}[{7}],{@usn6}[{999}..][00..]]..] Where $#usn7 Is Null Merge _usn4=Shortestpath(((:`1esn`{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789}))) On Match Set `2esn` =$``[1.0],`8esn` =010[..12e12][..12e12],`5esn` =Extract(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|{@usn5} Is Null Is Null)[Case When $0[..9e1] Then Count(*)[..usn2][..usn2] When {`2esn`} Starts With 0.0 Starts With {usn1} Then 0e0 In @usn5 Else 01 =~{_usn3} =~`3esn` End.._usn3(1.0 In Count(*),0[{usn2}..][$`6esn`..])][count(Distinct $12[Null..Count(*)][{`5esn`}..{999}],$`4esn`[`7esn`])..Case When $123456789 Ends With $999 Ends With {999} Then `3esn`[{usn1}] When #usn7 =~Count ( * ) =~`` Then $_usn4 Starts With 1e1 End] On Match Set `` =[Count(*) Ends With 12.0 Ends With 12,9e0[{0}..{`3esn`}][\"d_str\"..0Xa]][..Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``])][..{usn1:$_usn3[..1000],`7esn`:{1000} =~0 =~123.654}],`5esn`+=Count ( * )[0.12...e1] Union All Load Csv From `5esn`[_usn4..] As @usn5 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Drop Constraint On()-[`5esn`:@usn5]->()Assert Exists({@usn6:$_usn3[..1000]}.`3esn`?)"), - octest_legacy:ct_string("Create Unique #usn8=Allshortestpaths(((:`1esn`{@usn6:$usn1 Ends With $`` Ends With $12})-[]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]}))) Merge `6esn`=({usn1:$`3esn` In $_usn4 In {_usn3}})-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})-[``?]-(#usn8 :@usn6:#usn8{`2esn`:$7 Is Not Null Is Not Null,`1esn`:`1esn` =~\"d_str\"}) Remove Shortestpath(((_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})-[`6esn`?:`3esn`|:#usn8{usn1:$usn1 In {999} In $#usn7}]-({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``}))).@usn6?,[{usn2}[.e0..$999],123456789[{123456789}..'s_str'],{`4esn`} Starts With $usn2 Starts With $1000].`5esn` Union Remove None(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`3esn`} Is Not Null Is Not Null).`` Load Csv From {999}[1000..{usn2}] As @usn6 Union Create _usn4=Allshortestpaths((:_usn4{usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})),({`4esn`:`7esn` Is Null})"), - octest_legacy:ct_string("Create Constraint On(#usn7:`4esn`)Assert Reduce(@usn6=7[True..][2.12..],#usn8 In {`5esn`}[.e1..``]|$`3esn` Is Null)._usn4? Is Unique"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From Shortestpath(({`7esn`:\"d_str\" Starts With $123456789})<-[`4esn`:``{usn1:`` Is Not Null Is Not Null,usn1:{1000}[{_usn3}..]}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[`4esn`]->(:`6esn`$123456789)) Is Null As _usn3 Fieldterminator \"d_str\" Start usn2=Rel:#usn8({``}) Foreach(`3esn` In usn2(7[..999][..{#usn8}])[[$_usn4 Contains Null Contains #usn8,{#usn8}[{7}],{@usn6}[{999}..][00..]]..]| Unwind [_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null|999 Is Not Null Is Not Null] Ends With [`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null|{`5esn`} Starts With $`5esn` Starts With .e1] Ends With {``:usn1 Starts With usn1 Starts With $``} As #usn7 Remove Reduce(#usn8=01 =~{_usn3} =~`3esn`,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{12} Is Null Is Null).@usn6,Extract(`4esn` In $`3esn` Is Not Null Where 12[1.e1..{_usn3}][1.e1..1.0]).`1esn`!,@usn5(#usn8,{`3esn`} In 0X7).`7esn`?)"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:@usn5)Assert Exists(Shortestpath((((:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`4esn` {@usn6:{12}[..0X7]})<-[:`6esn`|`5esn` *..010]-(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})))).`6esn`)"), - octest_legacy:ct_string("Start `7esn`=Node:`7esn`(`3esn`={``}) "), - octest_legacy:ct_string("Foreach(usn1 In 0Xa[2.12]| Unwind `3esn`[$`1esn`..999][``..$123456789] As usn1) Return #usn7 As `8esn`,0.12[..False][..{1000}] Order By Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`])[Case 00[{`8esn`}..][{`8esn`}..] When 0e0 Starts With 2.12 Starts With $12 Then Null[``] When 12e12 Ends With {usn1} Then $`2esn` Else 2.12['s_str'..$12][{`1esn`}..`2esn`] End..] Desc,[{@usn6} Ends With 's_str' Ends With 12.0,{12} Contains {123456789} Contains `4esn`] Starts With Filter(_usn3 In {`3esn`}[`2esn`] Where {1000} =~0 =~123.654) Starts With Case When Count ( * )[0.12...e1] Then $@usn5 =~1000 =~1000 When Null Ends With `2esn` Ends With $usn1 Then $usn2[{@usn5}] End Ascending,{12}[{7}][$123456789] Asc Skip `7esn` Ends With 0x0 Start `7esn`=Node:`6esn`({_usn3}) Where 123456789 Ends With 12.e12 Ends With $`7esn` Union All Create Unique @usn5=Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))),`2esn`=Allshortestpaths(((#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})-[`8esn`?:@usn6|`6esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}))) Unwind Shortestpath((((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))))[..Case 0Xa =~123456789 =~_usn4 When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $1000 In $1000 In $`3esn` Then 0.e0[#usn8] End][..(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})] As `3esn` Delete (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null Union Foreach(@usn5 In None(`5esn` In $999[0.0..] Where {``}[010..][0xabc..])[{`3esn`:False Is Null Is Null,`8esn`:2.12}]| Return *,Case When False Then 0.e0 Ends With $#usn7 Ends With $7 When {@usn6}[{999}..][00..] Then `5esn` Ends With {``} Ends With 12.e12 Else 123.654[$`1esn`] End[Reduce(#usn8=$`6esn` Ends With Count(*),`2esn` In `1esn` =~\"d_str\"|_usn4 Contains 2.12)..] As _usn3 Order By $12[Null..Count(*)][{`5esn`}..{999}] Desc,12.e12[7..$`6esn`] Desc Skip {`4esn`} Ends With {123456789} Ends With $`4esn` Return Distinct {``}[`8esn`..],{`7esn`} Starts With $123456789 Starts With $@usn6 As _usn3 Limit `8esn`(Distinct $#usn7 Is Null) Ends With Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]) Ends With Shortestpath(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))))"), - octest_legacy:ct_string("With Distinct .e12[..`7esn`][..0Xa],123.654 Is Not Null Is Not Null As `8esn`,All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By {usn2} Descending,1.0 =~7 =~{usn2} Desc Skip 0.0[$0][{@usn5}] Where _usn3 Contains $123456789 Contains `` Merge Shortestpath((((`1esn` :`5esn`{`5esn`:{``} Is Null})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(_usn4 :usn1)))) On Create Set `1esn`+=0.0 =~999,Case When `8esn` Ends With 999 Ends With .e12 Then 12.e12[7..$`6esn`] When 1000 In {`8esn`} In 01 Then `2esn` Starts With $_usn4 Else 0Xa Starts With {`6esn`} Starts With $usn1 End.`3esn`! =Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where `3esn`[{0}][usn1]) Starts With Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[`3esn`? *123456789..]->({_usn3:$`5esn`[`3esn`..]}))),@usn5 =`3esn` Is Null On Create Set `` =$#usn7 Contains 0x0 Contains 1000,#usn7+={``} Is Not Null,Reduce(`5esn`=01234567 Ends With .e12 Ends With $#usn7,`8esn` In 01[2.12..`8esn`]|0Xa =~Null =~$``).`6esn`! ={0} Contains 0.0 Contains $@usn5 Foreach(`7esn` In Single(#usn8 In {`5esn`}[.e1..``] Where 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4])[All(`5esn` In \"d_str\" Is Null Is Null Where {`6esn`}[..$@usn6][..`7esn`])..][Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`])..]| Load Csv From .e1 =~$usn2 =~999 As @usn5 Fieldterminator \"d_str\")"), - octest_legacy:ct_string("Unwind 's_str' =~$`7esn` As `4esn` Unwind [_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|`` Is Not Null Is Not Null] Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where {_usn3}[..\"d_str\"][..`5esn`]) Ends With Filter(`3esn` In {7} Is Null Where {123456789} Contains $#usn8) As _usn3 Union All Load Csv From All(#usn8 In 7[..999][..{#usn8}] Where $_usn4[1.e1]['s_str']) Starts With 123456789 As usn2 Load Csv From {usn1} In 2.12 In 1000 As _usn4 Foreach(#usn8 In False[$usn1.._usn4][_usn4..{`3esn`}]| Create `3esn`=({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})<-[usn2?:@usn5{`4esn`:{`7esn`} Is Null,_usn4:$123456789 Ends With {`1esn`} Ends With $`4esn`}]->(`6esn` {`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null})-[usn1? *0X0123456789ABCDEF]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}),Allshortestpaths((((@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:_usn3|_usn3 *01234567..0Xa{@usn5:123.654[True..$#usn8][0.12..Count(*)]}]-(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})<-[?:#usn7 *01234567..0Xa]-(@usn6 {#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12})))))"), - octest_legacy:ct_string("Create @usn5=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}) Create Unique Allshortestpaths((`1esn` :#usn7)),(({`3esn`:.e1[..usn2][..`8esn`]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`1esn`{_usn4:{999}})) Create `8esn`=(((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) Union Create `1esn`=Allshortestpaths((((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[? *0Xa]-({`7esn`:{999}})-[`7esn`]->(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]}))))"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From usn2 Ends With 999 Ends With .e1 As `2esn` Fieldterminator 's_str' Merge Shortestpath((`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[:`3esn`|:#usn8 *7..12{@usn5:_usn4 Starts With $_usn4 Starts With 12.e12}]->(`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}))"), - octest_legacy:ct_string("Load Csv With Headers From 0Xa[2.12] As `1esn` Fieldterminator 's_str' Union With Distinct 1e1 In 123.654 In `3esn` As `8esn` Skip Reduce(`6esn`=0X7[$999][_usn4],`8esn` In 01[2.12..`8esn`]|{1000} =~0 =~123.654) Is Null Is Null Where `3esn`[{usn1}]"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:@usn6)Assert Allshortestpaths((@usn6 :_usn3:_usn3{`7esn`:$`6esn`[123456789..12][True..{`3esn`}],`5esn`:0X0123456789ABCDEF[123456789]})-[{#usn8:$#usn8 =~{@usn5},`8esn`:0X0123456789ABCDEF[{_usn4}..00]}]-(_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})<-[`6esn`? *..010]-(`` :`1esn`)).`2esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`1esn`:usn2]-()Assert Exists(Filter(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0).usn2)"), - octest_legacy:ct_string("Return Distinct (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8) Contains All(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) As @usn5,`8esn`[$`8esn`..{`4esn`}],None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `5esn` Starts With 010 Starts With 0.0) Ends With Reduce(usn2=False =~1e1 =~0.e0,`` In `` Is Not Null Is Not Null|#usn8[`3esn`..][{#usn7}..]) Order By @usn6 Is Null Is Null Descending,{_usn3} Is Null Is Null Desc,Allshortestpaths((({`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})<-[?*..]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}))) Ends With Reduce(_usn3='s_str'[00][{`5esn`}],`4esn` In $`3esn` Is Not Null|Count ( * ) Contains `8esn` Contains .e1) Descending"), - octest_legacy:ct_string("Create Constraint On(``:#usn8)Assert Reduce(`8esn`=Count ( * ) Contains 07,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|\"d_str\"[#usn8]).`5esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`2esn`:_usn3)Assert `7esn`(Count(*) Ends With 12.0 Ends With 12)._usn4 Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`2esn`:_usn3]-()Assert Exists([_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $@usn6 Contains 07|999 Is Not Null Is Not Null].@usn5)"), - octest_legacy:ct_string("Create Constraint On(`7esn`:_usn4)Assert All(`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}).#usn8? Is Unique"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From 0e0[$1000][{usn1}] As usn2 Create _usn3=Allshortestpaths((((:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)-[usn1? *1000..00]->({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})))),``=(:`3esn`:@usn5{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`4esn` {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}) Match Allshortestpaths((:@usn5$`5esn`)<-[usn1?:`8esn` *..010]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})<-[ *1000..00{#usn7:Count ( * ) Contains 07}]->(usn1 :`3esn`:@usn5)),(`3esn` {@usn5:$usn2[9e0]})<-[usn1?:`7esn` *0xabc..{`3esn`:$#usn8[$`8esn`..{`8esn`}]}]->(:`4esn`{`8esn`:0.e0 In $#usn7 In $_usn3})-[`4esn`?:@usn5{`7esn`:{_usn4}[1000..{@usn5}],`5esn`:$@usn5 Is Not Null}]->({`8esn`:`3esn`[{0}][usn1]}) Where 12.e12[0xabc]"), - octest_legacy:ct_string("Drop Constraint On(``:usn1)Assert Exists((_usn4 :``:#usn8{#usn7})<-[?:`7esn`{`3esn`:{#usn8}[010]}]-(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})<-[`7esn`? *7..12]->(@usn6 :_usn3:_usn3).`7esn`?)"), - octest_legacy:ct_string("With Distinct $@usn5,{`5esn`} Starts With @usn5 Starts With `7esn`,$1000 =~$`2esn` As `6esn` Skip 9e12[{123456789}..#usn8][{_usn3}..{#usn7}] Limit 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3] Where `1esn` Contains {usn2} Contains $#usn8 Union Foreach(@usn5 In $`5esn` In $`6esn`| Start `8esn`=Rel:`7esn`(_usn4={12}) Where 0.12 Starts With $`5esn` Starts With 12 Detach Delete $`1esn` =~0X7,.e0 Ends With 0.12,0e0[`8esn`..][$123456789..])"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From Reduce(`2esn`=$_usn3[.e0..$usn2],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$`7esn` Is Null Is Null)[Shortestpath((({``})))..{@usn6:{`6esn`} =~$999}] As `5esn` Foreach(@usn5 In 1.0 Starts With 12e12 Starts With {`5esn`}| Optional Match `3esn`=((`1esn` {#usn7:{_usn4} In {12} In $0})-[{#usn8:$#usn8 =~{@usn5},`8esn`:0X0123456789ABCDEF[{_usn4}..00]}]-(_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})) Using Scan `3esn`:`8esn` Using Scan `6esn`:`2esn` Where {0}[01][`7esn`] Start #usn7=Node:@usn5(usn2='s_str') Where 9e1[2.12..{#usn8}])"), - octest_legacy:ct_string("Create (`3esn` :#usn8:#usn8) Return #usn8 In $@usn6,1.e1[`8esn`][00] Optional Match `7esn`=Allshortestpaths(((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[`1esn`?:usn2|``{_usn4:$`4esn`[..$`3esn`][..0.0],@usn6:0e0 Starts With 2.12 Starts With $12}]->(:_usn3:_usn3{`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})<-[`8esn` *0X0123456789ABCDEF]->(usn2 :_usn4))),#usn7=Allshortestpaths((@usn6 :`6esn`)<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3)) Using Scan `4esn`:`2esn` Where $usn1[{`5esn`}][$`6esn`] Union With Distinct *,Allshortestpaths((:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))[[{_usn4} In {12} In $0,$`5esn`[2.12..],12[1.e1..{_usn3}][1.e1..1.0]]][[12e12 Is Not Null Is Not Null]] Order By $_usn3 In {1000} In 0.12 Desc Remove Case True[{`7esn`}..] When .e1 Is Null Is Null Then `3esn`[..$12][..{`7esn`}] When {_usn3}[..$12][..0.12] Then $7[0.12][usn1] End.`5esn`,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $123456789 Is Null Is Null|{`6esn`}[..$@usn6][..`7esn`]]._usn4,Single(`3esn` In {7} Is Null Where {`3esn`} In 01).`5esn` Union Remove Reduce(_usn4=01234567[usn2..$12][{`7esn`}..$usn2],@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|$@usn5 =~1000 =~1000).`8esn`?,[$1000 Is Null,$`1esn`[{`2esn`}..],.e1[{`7esn`}..{_usn4}]].@usn5,Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 123.654[$`1esn`])._usn3 Return *,$`4esn` Is Not Null Is Not Null As `6esn`,None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`])[Any(`3esn` In {7} Is Null Where {`4esn`} =~{7} =~{`7esn`})..][Extract(`2esn` In `1esn` =~\"d_str\" Where $_usn4[1.e1]['s_str']|usn1[`5esn`..$7])..] Skip Reduce(`8esn`={@usn5}[{#usn8}][9e0],`3esn` In {7} Is Null|0e0 Starts With 1000 Starts With #usn7)[Single(#usn8 In 7[..999][..{#usn8}] Where 123456789 Is Null)] Limit $usn2[$@usn6][True]"), - octest_legacy:ct_string("Drop Constraint On(``:#usn7)Assert `4esn`(0X7[$999][_usn4],#usn8 Is Not Null Is Not Null).`5esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On(usn2:usn2)Assert [2.12 Contains usn2 Contains True].`8esn` Is Unique"), - octest_legacy:ct_string("Delete $`7esn` Is Not Null,`2esn`(Distinct $``,7 Starts With {@usn6} Starts With $``) Contains {@usn6:_usn3[$`8esn`],usn1:$@usn5 Is Not Null} Contains {@usn5:`8esn`[{123456789}..]},Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..]) In Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null) In Filter(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {#usn8}[.._usn4][..$`3esn`]) Load Csv With Headers From 9e0 As `1esn` Load Csv From [`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null As usn2 Fieldterminator 's_str' Union All Create Allshortestpaths((:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 :usn1)) Foreach(@usn5 In 2.12 Is Null| Load Csv With Headers From `5esn`[.e0..][07..] As `6esn` Fieldterminator \"d_str\" Match _usn4=(:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null})) Detach Delete 010[..12e12][..12e12],Allshortestpaths((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))) Contains Filter(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]) Contains Shortestpath(({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})),Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`)[None(#usn8 In 7[..999][..{#usn8}] Where 0Xa[2.12])..][[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789]]..] Union All Start usn1=Node:#usn8(\"d_str\") "), - octest_legacy:ct_string("Merge Shortestpath((((`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})<-[`8esn`]-(usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[`3esn`?:`` *..0x0{`4esn`:0.e0 Contains 9e1 Contains {`7esn`},@usn6:$@usn5 =~1000 =~1000}]->(:@usn5{_usn3:07 =~01})))) On Create Set `3esn`+=Count(*) In $12,#usn7+=Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`)[None(#usn8 In 7[..999][..{#usn8}] Where 0Xa[2.12])..][[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789]]..],``+=7[$`8esn`..123456789][$usn1..$usn1] On Match Set [$usn1 =~``].`5esn`! =0e0 Starts With `2esn` Starts With $``,usn1 =0.e0[123.654][01],Case {#usn7}[`2esn`..] When $0 Ends With 12.0 Then $`` Is Not Null End.`6esn`! =Extract(`` In `` Is Not Null Is Not Null Where {``}[...e12]|12 Ends With 0x0 Ends With 0.e0) Is Null Is Null Union Create (`2esn` :`8esn`:`7esn`)-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}),@usn5=(({`2esn`:Count(*)[..usn2][..usn2]})-[`7esn`:#usn8|`1esn` *..0x0$`3esn`]-(:`3esn`:@usn5)-[usn1? *0X0123456789ABCDEF]->(`6esn` {_usn4:0Xa =~Null =~$``})) Return Distinct Reduce(usn2={`6esn`} Contains \"d_str\",`8esn` In 01[2.12..`8esn`]|7[..999][..{#usn8}]) Starts With All(#usn8 In 7[..999][..{#usn8}] Where $#usn7 Contains 0x0 Contains 1000) Skip 7 =~{`8esn`} =~$`6esn` Foreach(`8esn` In [$`1esn` =~0X7] =~[{7}[..1.0][..9e0],7 Is Not Null Is Not Null] =~{_usn3:`1esn` Contains {usn2} Contains $#usn8}| Return Distinct .e0 Ends With 0.12,{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}[Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End..[`3esn` In {7} Is Null Where {123456789} Contains $#usn8|#usn7 =~Count ( * ) =~``]][`7esn`(9e1[1000][{123456789}]).._usn3(0.12 =~$0 =~$0)] As `8esn`,{`6esn`} =~$999 As usn1 Skip {`4esn`}[#usn7..$123456789][{7}..usn2] Limit Case _usn3[$`8esn`] When 12e12 Contains 0Xa Then 7[{0}..{_usn4}] End Starts With {#usn7:Null Ends With `2esn` Ends With $usn1,`5esn`:12.0} Remove 2.12.`7esn`!,{`1esn`:$0[..9e1]}.usn2!,Reduce(usn2=#usn7 Is Null Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{_usn3}[12.e12]).@usn6?)"), - octest_legacy:ct_string("Foreach(#usn8 In 9e1[1000][{123456789}]| Load Csv With Headers From Case `7esn`[9e0..] When 1.0 =~'s_str' =~{`2esn`} Then 0xabc[01..{999}][{7}..{`7esn`}] When 0X7[$999][_usn4] Then 010 In Count(*) Else usn2[{7}] End =~Reduce(@usn6=usn2[9e12],#usn8 In 7[..999][..{#usn8}]|{999} Is Null Is Null) =~(:`1esn`{_usn4:$@usn6 Ends With $_usn4 Ends With 0.12})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->(_usn3 {`5esn`:12.e12[0xabc],`2esn`:{`7esn`}[..$@usn5][..$#usn8]})-[`7esn` *..0x0]-(`2esn` :_usn4) As `1esn` ) Load Csv From `3esn` In $0 In `1esn` As `8esn` Fieldterminator \"d_str\" Create Unique #usn7=((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})),Shortestpath((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))) Union Unwind {7}[$7..$``][{``}..{7}] As `3esn` Start usn1=Node:``(@usn6={usn1}) ,usn1=Relationship:`3esn`(`6esn`='s_str')"), - octest_legacy:ct_string("Load Csv With Headers From `8esn`[$`8esn`..{`4esn`}] As @usn6 Fieldterminator 's_str' Create @usn6=((`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})),(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})<-[usn2?:`5esn` *0..]-({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}) Start `6esn`=Rel:#usn8(@usn6={_usn4}) ,`4esn`=Relationship:`6esn`(#usn8={_usn3})"), - octest_legacy:ct_string("Unwind $#usn7[..{`5esn`}][..9e12] As #usn7 Merge Shortestpath((:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null})) On Create Set None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0xabc[01..{999}][{7}..{`7esn`}]).#usn8? =123.654[`3esn`..] Start `2esn`=Node:@usn5({`1esn`}) ,`1esn`=Rel:``({`1esn`}) Union With Distinct {#usn7} In 0x0 In $0 As ``,`4esn`[`5esn`..12][@usn6..False],$@usn5 As @usn5 Where {`1esn`}[12.0..`2esn`][@usn6..{usn1}]"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:usn2)Assert [`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 123.654[$`1esn`]]._usn3! Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`1esn`:#usn8]->()Assert Exists(Any(#usn8 In {`5esn`}[.e1..``] Where {_usn3}[..\"d_str\"][..`5esn`]).usn1!)"), - octest_legacy:ct_string("Create Constraint On(`8esn`:_usn3)Assert {#usn8:`4esn`[``]}.usn2 Is Unique"), - octest_legacy:ct_string("Unwind (:_usn4{@usn6})<-[`4esn`?:_usn4|:usn2{_usn4:$usn2[{@usn5}],`2esn`:usn1[`5esn`..$7]}]->({``:$`8esn` =~{1000}})<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(:``:#usn8{usn1:{`6esn`}})[[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn` Contains 123456789 Contains $usn2|123456789 Ends With 01234567 Ends With 1.e1]..{usn2:1.0 =~7 =~{usn2},`8esn`:$_usn3[.e0..$usn2]}][None(_usn3 In {`3esn`}[`2esn`] Where 7 Ends With $`4esn`)..Case {`2esn`} Starts With 123456789 When $`5esn` In $`6esn` Then $`6esn` Ends With Count(*) End] As usn1 Union Return Distinct [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789] Ends With None(`2esn` In `1esn` =~\"d_str\" Where False Starts With {`5esn`}) As `5esn`,07[$123456789..],Reduce(`3esn`=$0[..9e1],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|999 In {`3esn`} In usn2) Starts With Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Starts With Allshortestpaths((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})) As `` Limit {`7esn`}[..{`4esn`}] Return 0X7[1000..{`1esn`}] As `3esn`,$`2esn`[12.e12..][{`4esn`}..] Order By Case 01[{`2esn`}..{@usn6}][$`2esn`..0.0] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] When 12e12[$`3esn`] Then {`5esn`} Contains $0 Contains {``} Else usn1 Starts With usn1 Starts With $`` End[usn2(Distinct 0.12 In _usn3 In {0},@usn6 Is Null Is Null).._usn4(0.e0 Starts With 12.e12 Starts With {_usn4},0X0123456789ABCDEF Is Null Is Null)][[{7}[$``][{@usn6}],0.0 Ends With 010 Ends With 1.e1]..$`4esn`] Asc,01[{@usn5}] Asc Union Create Unique ((:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`)) Return Distinct 010[Count(*)..12][$_usn3..{`8esn`}],Filter(_usn3 In {`3esn`}[`2esn`] Where False =~$7 =~2.12)[Case When .e12 Is Not Null Is Not Null Then `1esn` In .e0 In {`3esn`} When 7 Starts With {@usn6} Starts With $`` Then 0X0123456789ABCDEF =~1e1 =~{`4esn`} Else {`4esn`}[$123456789..][$#usn7..] End] As `5esn`,9e1[2.12] As _usn3 Foreach(`8esn` In $_usn3[.e0..$usn2]| Match Shortestpath((`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})),``=Allshortestpaths((`2esn` :`8esn`:`7esn`)-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})) Using Scan _usn3:`1esn` Where 12.0[123.654][Count(*)] Unwind .e1 =~$usn2 =~999 As `7esn`)"), - octest_legacy:ct_string("Merge (`` :@usn5{`1esn`:2.12 Contains usn2 Contains True}) Match ({`5esn`:\"d_str\" Starts With 01})-[_usn3:@usn5 *7..12{`2esn`:12.0 =~999 =~$_usn3}]->(`3esn` {usn1:$0[..9e1],@usn5:`7esn`[..{usn1}]}) Using Scan @usn5:_usn4"), - octest_legacy:ct_string("Drop Constraint On(``:`5esn`)Assert [`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`4esn`} Starts With $usn2 Starts With $1000|123456789 Is Null].usn2? Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn6:usn2)Assert Exists(Reduce(`8esn`=$0[$`1esn`..07],`8esn` In 01[2.12..`8esn`]|{12} =~#usn8)._usn4?)"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`5esn`)Assert Exists((:usn2{`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})-[@usn6?$0]-(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7}).usn2!)"), - octest_legacy:ct_string("Delete False[$usn1.._usn4][_usn4..{`3esn`}],{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],$`1esn` Ends With 9e1 Ends With $123456789"), - octest_legacy:ct_string("Optional Match Shortestpath((`2esn` :#usn7{`5esn`:\"d_str\" Starts With $123456789}))"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:_usn4)Assert [#usn7 In {``} Is Not Null Where usn1[9e12..][$7..]].`1esn` Is Unique"), - octest_legacy:ct_string("Load Csv From {usn1} In 2.12 In 1000 As _usn4 Merge Shortestpath((((`1esn` :`5esn`{`5esn`:{``} Is Null})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(_usn4 :usn1)))) On Create Set `1esn`+=0.0 =~999,Case When `8esn` Ends With 999 Ends With .e12 Then 12.e12[7..$`6esn`] When 1000 In {`8esn`} In 01 Then `2esn` Starts With $_usn4 Else 0Xa Starts With {`6esn`} Starts With $usn1 End.`3esn`! =Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where `3esn`[{0}][usn1]) Starts With Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[`3esn`? *123456789..]->({_usn3:$`5esn`[`3esn`..]}))),@usn5 =`3esn` Is Null On Create Set `` =$#usn7 Contains 0x0 Contains 1000,#usn7+={``} Is Not Null,Reduce(`5esn`=01234567 Ends With .e12 Ends With $#usn7,`8esn` In 01[2.12..`8esn`]|0Xa =~Null =~$``).`6esn`! ={0} Contains 0.0 Contains $@usn5 Union Remove Single(_usn3 In {`3esn`}[`2esn`] Where `3esn`[`3esn`..][#usn8..]).`1esn`?,[0.e0 Ends With $#usn7 Ends With $7].`6esn`!,(`2esn` :`8esn`:`7esn`)<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(:``:#usn8{usn1:{`6esn`}})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]}).`1esn` Foreach(`6esn` In [#usn8 In {`5esn`}[.e1..``] Where {`1esn`}[12.0..`2esn`][@usn6..{usn1}]] Is Not Null| With Distinct True[..$`6esn`],{@usn6} Ends With 's_str' Ends With 12.0 As `1esn` Order By Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $`3esn` =~{#usn8}|12.0 Ends With True)[..usn2(Distinct)] Ascending Skip Case When {``} Starts With $`2esn` Starts With `1esn` Then $`5esn` Starts With $0 Starts With {0} End[None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e1 Is Not Null)..[`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1]] Load Csv With Headers From `5esn`({12} Ends With 1.0 Ends With .e0) Contains `3esn`(`5esn`[{`4esn`}..`2esn`],9e1[2.12..{#usn8}]) Contains (@usn5 :#usn7)<-[``?:`3esn`|:#usn8{`1esn`:.e0[..$`8esn`]}]-(`5esn` {`4esn`:01 Is Null})<-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(_usn4 ) As `6esn` Fieldterminator 's_str')"), - octest_legacy:ct_string("Remove (:usn1{usn1:{`6esn`}})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(@usn6 :`1esn`)<-[`6esn`]-(`1esn` {@usn5:1.0[0e0..0.e0]}).`7esn`!,Any(`3esn` In {7} Is Null Where 1e1 Contains Count ( * )).`4esn`,#usn8:`4esn` Start ``=Relationship:usn2('s_str') ,`1esn`=Rel:`4esn`(`4esn`='s_str') Union All Detach Delete 's_str' =~{_usn4} =~$`7esn`,(:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0}) In [`4esn`[..Count ( * )][..{#usn7}]],$`5esn` Starts With `` Union Match `3esn`=Shortestpath((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))),Shortestpath(({@usn5:07[..True][..9e12]})-[_usn4?:`5esn` *..07]->({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})) Using Index @usn5:`2esn`(@usn5) Using Scan `7esn`:usn1 Where Null[$#usn7] Start `7esn`=Rel:`6esn`(\"d_str\") "), - octest_legacy:ct_string("Foreach(@usn5 In {`3esn`} In 01| Load Csv With Headers From {0}[\"d_str\"..07][0..'s_str'] As @usn5 Fieldterminator \"d_str\" Remove Case When $#usn8[$`8esn`..{`8esn`}] Then $#usn8[$`8esn`..{`8esn`}] Else #usn8 Is Not Null Is Not Null End.@usn6!) Return Distinct *,9e1[2.12],$_usn4 Contains Null Contains #usn8 As #usn7 Order By (usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]})<-[ *123456789..]-(:@usn5) Is Null Is Null Desc,False[..{`1esn`}] Desc Skip 1e1[$`5esn`][{`3esn`}] Limit {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains [1.0[0X7][{`5esn`}]]"), - octest_legacy:ct_string("Create Constraint On()<-[`8esn`:`4esn`]-()Assert Exists(Reduce(`3esn`=12.0[123.654][Count(*)],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|`1esn` =~\"d_str\").usn1?)"), - octest_legacy:ct_string("Create Constraint On(`3esn`:`1esn`)Assert Exists(Reduce(usn1=01 Contains {`8esn`} Contains 2.12,`5esn` In $999[0.0..]|0x0[`4esn`..'s_str'])._usn3!)"), - octest_legacy:ct_string("Load Csv With Headers From Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End[..[9e1[1000][{123456789}],$_usn3[{#usn7}],`5esn` Starts With $`2esn` Starts With $1000]][..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0 In `2esn` In 010)] As `5esn` Fieldterminator \"d_str\" Union Foreach(_usn3 In 1e1 In 123.654 In `3esn`| Remove Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $`` Is Not Null|{123456789}[9e12][{0}]).``!,Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6}).@usn5) Detach Delete {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]),[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12),$_usn4 Is Null Is Null"), - octest_legacy:ct_string("Start usn2=Node:_usn4(``={#usn7}) ,`8esn`=Node:@usn6({_usn4})Where 12.0 =~1.0 =~9e12 Start #usn7=Node:`6esn`(`3esn`=\"d_str\") Union Start `5esn`=Node:@usn5({usn1}) ,``=Node:usn2(#usn8=\"d_str\") Delete {`4esn`:`7esn` Is Null}[{`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]}..],0.0[$0][{@usn5}],{`4esn`}[$usn2..07] Union All With 123.654 Is Not Null,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where False|{`1esn`}[12.0..`2esn`][@usn6..{usn1}]] =~Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 00[{`8esn`}..][{`8esn`}..]|{0}) =~{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}} Where $@usn5 Starts With $1000 Create Unique `3esn`=Shortestpath((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))"), - octest_legacy:ct_string("Merge ((`4esn` {`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}})) On Match Set `2esn`+=Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`]) In {usn2:{`3esn`} Is Not Null Is Not Null} In {`4esn`:False,_usn4:$`7esn` Is Null Is Null} Union Match #usn8=((`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0})),usn1=Allshortestpaths((`` {@usn6:1.0[$`1esn`..][$123456789..]})-[`7esn`*]->(`7esn` {`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})-[@usn6]-(`5esn` {`4esn`:01 Is Null})) Using Scan `4esn`:`2esn` Using Join On `1esn` Where {1000} =~0 =~123.654 Union All Create Unique `5esn`=(((_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(#usn7 {@usn5:$`8esn` =~{1000}})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]}))),usn2=Shortestpath((usn2 :#usn7)) Create Unique @usn6=((usn2 :@usn5)-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`4esn`{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})) Merge `3esn`=Allshortestpaths((((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5)))) On Match Set _usn4:usn1,@usn5 =0.e0[#usn8],`4esn` =`7esn`[$12..][$`8esn`..]"), - octest_legacy:ct_string("Merge usn1=Shortestpath(((`7esn` {`4esn`:{usn1} Ends With $0})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2})-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]-(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null}))) On Create Set (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(:usn2{usn2:7[..999][..{#usn8}]}).`3esn` ={_usn4:Count ( * )[True..][{#usn7}..],``:{``} Ends With `7esn` Ends With 0.0} In (usn2 {``:01[{@usn5}]})<-[?:_usn4|:usn2{`8esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],``:_usn3 Contains $123456789 Contains ``}]->(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(:_usn4{_usn4:{7} In `2esn`}) In {`4esn`:`7esn` Is Null} Return {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]),Shortestpath((@usn5 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[:#usn8|`1esn`*{`8esn`:0Xa[usn2..]}]-(`3esn` :_usn3:_usn3{@usn5:False})) Ends With {@usn5:$12[Null..Count(*)][{`5esn`}..{999}],#usn7:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4]} Ends With Case {123456789}[0xabc..] When $0[..9e1] Then 0.e0 Ends With $#usn7 Ends With $7 End As _usn3 Skip Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where _usn4 Contains 2.12)[(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})..][#usn7(7 =~{`8esn`} =~$`6esn`,$123456789 Ends With {`1esn`} Ends With $`4esn`)..] Union All Start `2esn`=Node:``({`1esn`}) "), - octest_legacy:ct_string("Drop Constraint On()-[_usn3:`8esn`]-()Assert Exists(Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 01[2.12..`8esn`])._usn4)"), - octest_legacy:ct_string("Load Csv From {#usn7:0X0123456789ABCDEF =~1e1 =~{`4esn`},`2esn`:1.0 =~'s_str' =~{`2esn`}}[..None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 0X7[`7esn`][123.654])][..(:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})<-[`2esn`?:`7esn`]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})] As `8esn` Fieldterminator \"d_str\" Union All Match Allshortestpaths(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))),Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Using Index ``:_usn4(_usn4) Where {#usn7}[9e1..][{123456789}..] Union All Merge @usn6=Shortestpath((#usn7 {`5esn`:00 Starts With 0xabc,`6esn`:0Xa =~Null =~$``})) On Create Set `4esn`+=(`1esn` :#usn8:#usn8)-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})[..(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})][..`5esn`({12} Ends With 1.0 Ends With .e0)],Any(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`])._usn4! ={@usn6}[{999}..][00..] Create Unique #usn8=Shortestpath((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[_usn3? *0X7..]-(:`5esn`{`2esn`:`4esn`[1.0]})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"}))"), - octest_legacy:ct_string("Optional Match _usn4=Allshortestpaths((:_usn4{usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})),({`4esn`:`7esn` Is Null}) Union Remove Allshortestpaths((:@usn5{_usn3:07 =~01}))._usn4 Foreach(`` In .e0[..0X0123456789ABCDEF][...e12]| Return *,12.0 Ends With True Skip {`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}[Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End..[`3esn` In {7} Is Null Where {123456789} Contains $#usn8|#usn7 =~Count ( * ) =~``]][`7esn`(9e1[1000][{123456789}]).._usn3(0.12 =~$0 =~$0)] Return Distinct *,0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn` As `7esn` Limit 9e12[`6esn`..12.0]) Union Load Csv With Headers From $`6esn`[010..] As `7esn` Fieldterminator \"d_str\" With 12 Ends With $usn2 As #usn8,$`3esn` In Null As @usn6 Create Unique Shortestpath(((({`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})<-[`8esn`*..{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]}]-(#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(`6esn` :_usn3:_usn3{`4esn`:0Xa Starts With {`6esn`} Starts With $usn1}))))"), - octest_legacy:ct_string("Drop Constraint On()<-[`1esn`:`6esn`]-()Assert Exists(Reduce(`4esn`=$`3esn`[..$123456789][..$`1esn`],@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|$#usn8[$`8esn`..{`8esn`}]).`7esn`)"), - octest_legacy:ct_string("Create Constraint On(`4esn`:_usn3)Assert None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]).`8esn`! Is Unique"), - octest_legacy:ct_string("Foreach(`2esn` In Null Is Not Null Is Not Null| With {``} Is Not Null As #usn7,{#usn7}[`2esn`..],Count ( * ) Contains {`1esn`} Contains 07 Order By `8esn` Is Not Null Is Not Null Desc Limit $123456789[_usn3][{#usn7}] Where Count ( * ) Ends With 12.0) Create usn2=Shortestpath((({_usn3:.e12[@usn5..$12]})-[`3esn`:#usn7]->(@usn6 {_usn3:{#usn7} Is Not Null Is Not Null}))),`5esn`=(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})-[_usn4? *..01]-(_usn4 :usn2{usn1:7[True..][2.12..],`8esn`:2.12 Ends With $_usn3 Ends With `3esn`})-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]-({`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}) Union Create `7esn`=Allshortestpaths(((`1esn` :#usn7))),((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})) Remove {`4esn`:01 Is Null}.#usn7?,(:`3esn`:@usn5{``:12.e12[$_usn3..],_usn3:$`6esn`[010..]})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07}).`3esn`,Single(`8esn` In 01[2.12..`8esn`] Where {usn2}).`7esn` Start _usn3=Node:@usn6({#usn7}) Where `5esn` Starts With 010 Starts With 0.0 Union All Create Unique Allshortestpaths((`1esn` {_usn4:1.e1[$`1esn`..@usn6][$0..$_usn3],#usn8:$@usn5[..12e12][..$123456789]})<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})),(:@usn6:#usn8{`7esn`:0x0[`4esn`..'s_str']}) Remove usn1(Distinct {`3esn`} In 01,0X7 =~9e1).`3esn`?,Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}).`1esn`!,Filter(`5esn` In $999[0.0..] Where $`3esn`[..$123456789][..$`1esn`]).@usn6 Start usn1=Node:`7esn`(`3esn`={``}) "), - octest_legacy:ct_string("Delete True[{_usn4}..][False..],$#usn7[@usn5..{1000}][1.e1..7],#usn7 Contains usn2 Contains @usn5 Unwind [_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null|999 Is Not Null Is Not Null] Ends With [`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null|{`5esn`} Starts With $`5esn` Starts With .e1] Ends With {``:usn1 Starts With usn1 Starts With $``} As #usn7 Union Return Distinct [$`5esn`[..$`5esn`][..$12],9e12[`6esn`..12.0],Null[$`5esn`][False]] Is Null Is Null As #usn8 Skip Case #usn7 Starts With {#usn7} Starts With `7esn` When $#usn7 Is Null Then Count(*) Is Null Is Null End =~Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))) =~Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {_usn4}[...e1][..$7]) Limit exists({#usn7}[`2esn`..],$`3esn`[..$123456789][..$`1esn`])[All(`5esn` In \"d_str\" Is Null Is Null Where #usn8)..] Create _usn4=Allshortestpaths(({`7esn`:{999}})) Create `6esn`=((`2esn` :_usn4)) Union All Remove [_usn3[_usn3..][12.e12..]].`8esn`!,All(`8esn` In 01[2.12..`8esn`])._usn4! Create usn2=(((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})))"), - octest_legacy:ct_string("Create Unique ((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})),Allshortestpaths(((`2esn` :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0}))) Merge ((@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})) On Match Set `3esn` =Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End On Match Set Case When $_usn3[Count(*)] Then 010[#usn7..True] End.`6esn` =(`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})[\"d_str\"..Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null)][Shortestpath(((:`3esn`:@usn5$7)))..usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010])],All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where $_usn4 Ends With usn1 Ends With $0).@usn5? =Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End"), - octest_legacy:ct_string("With Distinct $`3esn`[0.12..`8esn`][$#usn7..`5esn`],Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]) =~Reduce(usn1=.e1 Ends With 1e1 Ends With @usn5,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$#usn7[#usn7..]) =~`1esn`($1000 Is Null) As @usn6 Limit 7[$`4esn`][0x0] Where 7[$`2esn`..{`5esn`}] With 0.e0 In $#usn7 In $_usn3,(usn2 :@usn5)-[?{`8esn`:{7} Is Null}]->(`` )<-[`3esn`?:`3esn`|:#usn8]-(`` :#usn8:#usn8)[Reduce(usn2=`2esn` Starts With $_usn4,#usn7 In {``} Is Not Null|{7} Is Null)..][Single(#usn7 In {``} Is Not Null Where $1000[0Xa][{#usn7}])..] As `2esn` Order By $usn1 Ends With $`` Ends With $12 Desc,1e1[1000..] Ascending,{123456789}[0.e0..$123456789][0Xa..`6esn`] Descending Limit {123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4] Where `4esn` Ends With 07 Ends With {`3esn`}"), - octest_legacy:ct_string("Load Csv With Headers From 0X7[1000..{`1esn`}] As usn1 Match ((_usn4 )) Using Index `3esn`:@usn5(`2esn`) Using Scan _usn3:`1esn` Where {usn1}[0X0123456789ABCDEF] Start `7esn`=Node:`7esn`(_usn4={@usn6}) Union All Delete 12.e12[9e12..{`6esn`}] Union Unwind 0.0[$0][{@usn5}] As `5esn`"), - octest_legacy:ct_string("Optional Match `8esn`=Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))) Using Join On `8esn`,@usn5 Using Index _usn3:`4esn`(`2esn`) Where 0 In `2esn` In 010 Union Foreach(`8esn` In (`1esn` :#usn8:#usn8)-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})[..(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})][..`5esn`({12} Ends With 1.0 Ends With .e0)]| Remove [usn1 Ends With $@usn6 Ends With `3esn`,0xabc[.e0],{``}[010..][0xabc..]].``?) With Distinct 9e0 Starts With 01 As `2esn`,`` Ends With 123456789 Ends With 123.654 As usn2,Count ( * ) Contains 07 Skip {`4esn`} =~{7} =~{`7esn`} Where 0X7[0e0..`7esn`][1000..0e0] Unwind $`3esn` Is Not Null Is Not Null As _usn3 Union All Unwind @usn5 In $7 As `` With Case When @usn5 Is Null Then 2.12 Ends With $_usn3 Ends With `3esn` Else $1000 Is Null End[Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}])..None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa)][Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01|usn2 Is Null)..Case When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` End] As `2esn` Order By Case When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $`4esn`[..$`3esn`][..0.0] Then `1esn` =~0 =~$#usn7 Else {``} Is Null End Contains Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Contains All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {@usn6}[7]) Asc,Shortestpath(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})))[#usn7(Distinct $`5esn`[`3esn`..])..{``:0Xa Starts With {`6esn`} Starts With $usn1}] Ascending,All(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0[{usn2}..][$`6esn`..]) Is Not Null Asc Where {usn2}[.e0..$999] Start #usn7=Node( {`8esn`}) "), - octest_legacy:ct_string("Start _usn4=Rel:#usn8({_usn3}) ,`8esn`=Rel:`1esn`(@usn5='s_str') Create Unique ((@usn6 :`1esn`{#usn8:`4esn`[1.0],``:.e12[@usn5..#usn7][010..{usn1}]}))"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From Shortestpath(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})))[#usn7(Distinct $`5esn`[`3esn`..])..{``:0Xa Starts With {`6esn`} Starts With $usn1}] As #usn8 "), - octest_legacy:ct_string("Create Constraint On(`6esn`:#usn8)Assert Exists(Reduce(usn1=01 Contains {`8esn`} Contains 2.12,`5esn` In $999[0.0..]|0x0[`4esn`..'s_str']).`2esn`)"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:usn2)Assert Exists(Shortestpath((`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})<-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(`3esn` :`6esn`)).`8esn`!)"), - octest_legacy:ct_string("Foreach(`3esn` In {123456789} Contains $#usn8| Create `7esn`=Shortestpath((((:`7esn`:_usn3{@usn5:07 Contains 0X7 Contains $`8esn`,`6esn`:{1000}[{_usn3}..]})<-[`3esn`? *..01]->(@usn5 :`5esn`)-[`8esn`?:usn1|@usn6{`8esn`:\"d_str\" Contains {123456789} Contains 01,@usn5:`1esn` In .e0 In {`3esn`}}]-(@usn6 :`1esn`{#usn8:`4esn`[1.0],``:.e12[@usn5..#usn7][010..{usn1}]})))) Match `2esn`=(({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->({`1esn`:{1000}[{_usn3}..],`1esn`:{123456789}[9e12][{0}]})),``=Shortestpath(((`` {@usn6:1.0[$`1esn`..][$123456789..]})-[?{`1esn`:$0[..9e1]}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]}))) Using Index `7esn`:usn2(`6esn`) Using Scan _usn3:_usn3 Where @usn6 Ends With {_usn3})"), - octest_legacy:ct_string("Return Distinct [1000 =~@usn6 =~0x0] Starts With {#usn8:$`7esn` =~{`8esn`} =~$usn1,`7esn`:0xabc[01..{999}][{7}..{`7esn`}]} Starts With `7esn`(Distinct 123.654[`3esn`..]) As `1esn`,Shortestpath((($#usn8)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})))[Single(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where usn1 Ends With $@usn6 Ends With `3esn`)..],{#usn7}[True][.e1] Order By $_usn4[Count ( * )..] Descending,$123456789 In 0X0123456789ABCDEF In 0.e0 Asc Skip 0x0[`4esn`..'s_str'] Foreach(_usn4 In _usn3 In 0xabc| Unwind 123.654[$`1esn`] As `2esn` Remove [{12} Contains {123456789} Contains `4esn`,1.e1[`8esn`][00],1.0[$`1esn`..][$123456789..]]._usn4?,Reduce(_usn3=123456789[#usn8..False],_usn3 In {`3esn`}[`2esn`]|123.654 Contains $`4esn` Contains 1.0).#usn8?) Delete 12.e12 Starts With {999} Starts With {`1esn`} Union All Remove Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `5esn` Starts With 010 Starts With 0.0).`3esn`?,(`7esn` {`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]}).`2esn`?,(:`1esn`)<-[`3esn`:`6esn`|`5esn` *..12{usn1:0X0123456789ABCDEF Is Null Is Null}]-(:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[`3esn`?:`3esn`|:#usn8]->(`8esn` :_usn4)._usn4! Union All Return Distinct [1000 =~@usn6 =~0x0] Starts With {#usn8:$`7esn` =~{`8esn`} =~$usn1,`7esn`:0xabc[01..{999}][{7}..{`7esn`}]} Starts With `7esn`(Distinct 123.654[`3esn`..]) As `1esn`,0.0[Null][$`2esn`],`6esn` Is Not Null Is Not Null As `3esn` Skip (usn2 :_usn4)-[ *7..12]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})[$`2esn`] Merge (:`1esn`{})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(:`6esn`$123456789) On Create Set usn2 =All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {_usn4} Is Not Null Is Not Null) Is Null On Match Set @usn6 ='s_str' Starts With 123.654"), - octest_legacy:ct_string("Foreach(_usn4 In Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})]| Create Unique @usn5=Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))),`2esn`=Allshortestpaths(((#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})-[`8esn`?:@usn6|`6esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}))))"), - octest_legacy:ct_string("Drop Constraint On(@usn5:`2esn`)Assert Exists((_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})<-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :`3esn`:@usn5)<-[? *..999]-(#usn8 :`5esn`{#usn8:0xabc[.e0]}).`7esn`?)"), - octest_legacy:ct_string("Load Csv With Headers From {`5esn`}[{usn2}..1000][$`8esn`..{`3esn`}] As #usn8 Fieldterminator \"d_str\" Union Merge Allshortestpaths((#usn8 :@usn5)) On Create Set `1esn` =12.e12[``][{`2esn`}],`8esn`+=00[{`8esn`}..][{`8esn`}..],#usn7+={_usn4} Ends With `6esn`"), - octest_legacy:ct_string("Create `6esn`=((`2esn` :_usn4)),(((:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[:`6esn`|`5esn` *123456789..]-(#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}))) Union All Load Csv With Headers From `8esn`[$`8esn`..{`4esn`}] As _usn4 Fieldterminator 's_str' Remove [{12} Contains {123456789} Contains `4esn`,1.e1[`8esn`][00],1.0[$`1esn`..][$123456789..]]._usn4?,Reduce(_usn3=123456789[#usn8..False],_usn3 In {`3esn`}[`2esn`]|123.654 Contains $`4esn` Contains 1.0).#usn8? Union Return $`5esn` Starts With $0 Starts With {0},0e0 Starts With 1000 Starts With #usn7 As _usn3,$@usn5 Is Not Null Order By [0x0 Is Null,{``} Ends With `7esn` Ends With 0.0,0X7[0e0..`7esn`][1000..0e0]] =~Any(`5esn` In \"d_str\" Is Null Is Null Where $`6esn` Is Null) =~[$12[True..][{0}..],usn1[`5esn`..$7]] Desc,``[12.0..0e0][{`5esn`}..`7esn`] Ascending Match ((:usn1{usn1:{`6esn`}})),`2esn`=(:`4esn`{_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[#usn8:@usn5 *..01]-(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null}) Using Join On `8esn`,@usn6 Using Index `6esn`:_usn4(``) Where usn2 Is Not Null Is Not Null Create Unique _usn3=Shortestpath((:`3esn`:@usn5{`2esn`:{`3esn`}[..07][..{`5esn`}]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})),usn2=({@usn5:usn1 Is Not Null})<-[`3esn`:`6esn`|`5esn` *..12{usn1:0X0123456789ABCDEF Is Null Is Null}]-(:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})"), - octest_legacy:ct_string("Create #usn8=(`1esn` :`4esn`{`6esn`:$`6esn` Ends With Count(*),`7esn`:_usn3 Starts With 12.e12 Starts With 0.12}),(:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]->(#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})-[`1esn`?:`8esn`]->(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}) Union Match usn2=Allshortestpaths(((@usn6 :`1esn`{#usn8:`4esn`[1.0],``:.e12[@usn5..#usn7][010..{usn1}]}))) Using Join On ``,#usn7,`` Using Scan `5esn`:usn2 Optional Match (`7esn` {`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2}),`5esn`=Allshortestpaths(((:`1esn`{``:.e1 Is Null Is Null})<-[usn1?:`7esn` *0xabc..{`3esn`:$#usn8[$`8esn`..{`8esn`}]}]->(:`4esn`{`8esn`:0.e0 In $#usn7 In $_usn3}))) Where {`5esn`} Contains $0 Contains {``} Remove [9e1[1000][{123456789}],$usn2[{@usn5}],0Xa Starts With {`6esn`} Starts With $usn1].`3esn`?,[`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]].#usn7?"), - octest_legacy:ct_string("With Distinct $_usn3 In {1000} In 0.12,$_usn3[..1000] Order By `7esn`[$12..][$`8esn`..] Descending,9e1[2.12] Ascending,$`1esn` Starts With {`8esn`} Descending Limit @usn6 Contains Null Contains $`7esn` Remove 0Xa.`6esn`?,[`1esn` =~0 =~$#usn7,0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,0.12 In _usn3 In {0}].`4esn`? Union With Distinct Case When @usn5 Is Null Then 2.12 Ends With $_usn3 Ends With `3esn` Else $1000 Is Null End[Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}])..None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa)][Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01|usn2 Is Null)..Case When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` End] As `2esn` Skip {12}[..0X7] Limit 1e1 Contains Count ( * ) Where {`3esn`}[`2esn`]"), - octest_legacy:ct_string("Delete [`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\"] Is Null Union Create `5esn`=((`` :`2esn`:usn1)<-[usn2?:``]-(usn2 :``:#usn8)<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})) Delete $#usn8[..{`2esn`}][..1.0],`4esn`[1.0]"), - octest_legacy:ct_string("Drop Constraint On(#usn8:`7esn`)Assert Exists(Filter(usn1 In @usn5 =~{`5esn`} =~`5esn` Where $`1esn`[1.0..][_usn3..]).`4esn`)"), - octest_legacy:ct_string("Merge `3esn`=Shortestpath(((:`1esn`{`5esn`:1.0 In Count(*)}))) Create `1esn`=(`5esn` :_usn4{7})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}),((`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})) Union All Foreach(@usn6 In #usn7 =~Count ( * ) =~``| With `5esn`[.e0..][07..] As `7esn` Order By {usn2}[$`3esn`..][{#usn7}..] Ascending,{@usn6} In {123456789} In 0xabc Asc Skip {999} Limit Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)[None(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Starts With $1000)..{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}][Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8)..None(#usn8 In {`5esn`}[.e1..``] Where $`3esn` Is Not Null)] Where usn2 Is Null Optional Match ((`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(_usn3 :#usn7)<-[@usn5?]->(`1esn` :`5esn`{`5esn`:{``} Is Null})),`7esn`=(@usn6 :_usn3:_usn3)-[?{`3esn`:7[{0}..{_usn4}]}]->(`7esn` :_usn3:_usn3)-[?:usn2|`` *..010{`4esn`:{`4esn`} Starts With $usn2 Starts With $1000,`7esn`:$@usn6 Contains 07}]->(:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}) Where {123456789}[9e12][{0}]) Remove [$1000 Is Null,$`1esn`[{`2esn`}..],.e1[{`7esn`}..{_usn4}]].@usn5 Delete 1000 In {`8esn`} In 01,1.0 Contains $_usn4 Union All Detach Delete $12 Ends With 07 Ends With $123456789,$`6esn`[{_usn3}..$`4esn`][$_usn4...e12] Foreach(usn1 In (:_usn4{@usn6})<-[`4esn`?:_usn4|:usn2{_usn4:$usn2[{@usn5}],`2esn`:usn1[`5esn`..$7]}]->({``:$`8esn` =~{1000}})<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(:``:#usn8{usn1:{`6esn`}})[[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn` Contains 123456789 Contains $usn2|123456789 Ends With 01234567 Ends With 1.e1]..{usn2:1.0 =~7 =~{usn2},`8esn`:$_usn3[.e0..$usn2]}][None(_usn3 In {`3esn`}[`2esn`] Where 7 Ends With $`4esn`)..Case {`2esn`} Starts With 123456789 When $`5esn` In $`6esn` Then $`6esn` Ends With Count(*) End]| Optional Match Shortestpath(((({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(:`6esn`$123456789)))),@usn6=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7)) Using Index `7esn`:usn2(`6esn`)) Start `1esn`=Node:usn2({12}) ,usn1=Node:`7esn`(`3esn`={``})Where {usn2}"), - octest_legacy:ct_string("Foreach(@usn6 In Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0) Is Not Null Is Not Null| Unwind {1000}[$`4esn`][\"d_str\"] As `3esn`) Unwind [$`5esn`[..$`5esn`][..$12],01[2.12..`8esn`],_usn3 Contains $123456789 Contains ``] As `1esn` Union Start #usn7=Node:``(\"d_str\") ,_usn3=Relationship:`3esn`('s_str')Where $@usn5 =~1000 =~1000 Union All Return Distinct 12 Ends With 0x0 Ends With 0.e0,Case When 1.0 In Count(*) Then False End Contains `1esn`(Distinct 0.e0 Starts With `2esn`) Contains Reduce(`1esn`=\"d_str\" Is Null Is Null,#usn7 In {``} Is Not Null|#usn7),0e0[..010] As `` Limit $@usn5[010..$#usn8][12..$`4esn`] Match @usn6=Allshortestpaths((`6esn` :`8esn`:`7esn`)<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})),`8esn`=((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})) Using Index `6esn`:`8esn`(``) Using Join On `5esn`,#usn7 Where 1.0[0e0..0.e0] Merge _usn3=({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True})-[@usn5?:`4esn`]-(:usn1{usn1:{`6esn`}})<-[_usn4 *..999]->(`7esn` {#usn7:\"d_str\" Contains {123456789} Contains 01,@usn5:$1000 In $1000 In $`3esn`}) On Match Set `4esn`+=$_usn4 Starts With 1e1,_usn3 =(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})-[usn1?:_usn3|_usn3]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})-[`7esn`]->(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]}) =~Shortestpath(((`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]})-[usn2?]-(`7esn` :`5esn`)-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->(:``:#usn8{`7esn`:00 Starts With 0xabc,_usn3:{123456789} Contains $#usn8})))"), - octest_legacy:ct_string("Delete 0xabc[.e0],(:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8)[Reduce(`7esn`=7[$`2esn`..{`5esn`}],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$_usn4[0e0..][False..])..({``:00 Starts With 0xabc,`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})][{}..{@usn6:`4esn`[..010][..{12}]}] Create Unique Allshortestpaths((_usn3 :@usn5)-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})),`4esn`=Allshortestpaths(({@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})-[`6esn`?:``]-(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]}))"), - octest_legacy:ct_string("With Allshortestpaths(((`8esn` ))) Ends With (`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]}),$_usn3['s_str'][07] As @usn5 Skip $_usn4[0e0..][False..] Return 12 Ends With $usn2 As #usn8,$`3esn` In Null As @usn6 Unwind ({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)[Shortestpath((((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``}))))..][{usn2:{7}[..1.0][..9e0]}..] As `8esn` Union Start #usn7=Node:`5esn`(\"d_str\") With Distinct None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As `5esn`,01 Is Null As `2esn`,{1000} =~$_usn4 Detach Delete Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})]"), - octest_legacy:ct_string("Remove {usn1:$usn1[{`5esn`}][$`6esn`]}.usn2?,Reduce(`1esn`=True =~010,`8esn` In 01[2.12..`8esn`]|{_usn3}[..\"d_str\"][..`5esn`]).#usn8?,Case 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] When $`1esn` =~0X7 Then $`2esn`[2.12..'s_str'][{@usn6}.._usn4] When $1000[`2esn`..`5esn`][1e1..1.e1] Then {`3esn`}[`2esn`] Else 0[..usn2][..{@usn5}] End.@usn5! Unwind {`3esn`}[..$`3esn`][..12.e12] As _usn3 Foreach(usn1 In 0.0[`7esn`..][12.e12..]| Create Allshortestpaths((((`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`2esn` *..07]-(`1esn` {#usn7:{_usn4} In {12} In $0})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})))))"), - octest_legacy:ct_string("Drop Constraint On()-[usn2:#usn8]->()Assert Exists(Reduce(#usn8={0}[01][`7esn`],@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|2.12 =~False).#usn7)"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From {`4esn`:False,_usn4:$`7esn` Is Null Is Null}[..Reduce(`4esn`={`4esn`} Ends With {123456789} Ends With $`4esn`,`2esn` In `1esn` =~\"d_str\"|7[..123456789][..{@usn6}])][..None(`5esn` In \"d_str\" Is Null Is Null Where {``} Ends With `7esn` Ends With 0.0)] As `8esn` Fieldterminator 's_str' Match `7esn`=Allshortestpaths((({_usn3:$`5esn`[`3esn`..]})-[? *..07{`4esn`:@usn5 =~{`5esn`} =~`5esn`}]->(_usn3 :usn2{#usn7:{999} Starts With {0}}))) Using Scan _usn4:@usn6 Start `7esn`=Rel:`6esn`(\"d_str\") ,#usn7=Node:@usn6(`7esn`={`8esn`})Where {#usn7} Is Not Null Is Not Null"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:_usn4)Assert Exists(Case When .e12 Ends With _usn4 Then True[..$`6esn`] When 123.654[0e0..$``][$`1esn`..$`8esn`] Then {`1esn`}[usn1][.e1] Else {#usn7} Is Not Null Is Not Null End.`7esn`)"), - octest_legacy:ct_string("Load Csv From {#usn7}[True][.e1] As `` Fieldterminator \"d_str\" Remove (:usn2{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})-[`2esn`:`7esn`]-(`2esn` :usn1).`8esn`!,Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0xabc[01..{999}][{7}..{`7esn`}]|0 In `2esn` In 010).`1esn`!,{#usn8:$123456789 Is Null Is Null,`8esn`:Count ( * )[0.12...e1]}._usn4 With Distinct False Is Null Is Null,Count(*) Is Null Is Null As usn2,0Xa[9e1..][$`6esn`..] As @usn6 Order By 123.654 Is Not Null Is Not Null Descending,{123456789} Starts With 0.0 Starts With `5esn` Desc,Case 01[{`2esn`}..{@usn6}][$`2esn`..0.0] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] When 12e12[$`3esn`] Then {`5esn`} Contains $0 Contains {``} Else usn1 Starts With usn1 Starts With $`` End[usn2(Distinct 0.12 In _usn3 In {0},@usn6 Is Null Is Null).._usn4(0.e0 Starts With 12.e12 Starts With {_usn4},0X0123456789ABCDEF Is Null Is Null)][[{7}[$``][{@usn6}],0.0 Ends With 010 Ends With 1.e1]..$`4esn`] Asc Skip 0.0[Null][$`2esn`]"), - octest_legacy:ct_string("Foreach(`6esn` In `7esn`[..2.12][..{usn1}]| Start `2esn`=Node:@usn6({_usn4}) ,_usn3=Relationship:`8esn`({`1esn`}) Return Distinct 0X7[1000..{`1esn`}] As `3esn`,$`2esn`[12.e12..][{`4esn`}..] Order By 0.0 =~999 Asc,$`5esn` In 0.e0 Asc,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) Ascending Limit Count ( * ) Is Null) With Distinct .e0 Ends With 0.12 As _usn3 Order By .e1 =~{@usn6} =~Null Asc,usn2(Distinct Null In $7 In .e1,`1esn` Contains {usn2} Contains $#usn8) In All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7) In Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 2.12 Ends With $_usn3 Ends With `3esn`|{123456789} Contains $#usn8) Asc,Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]] Ascending Skip _usn3[..`8esn`][..2.12] Limit Reduce(`1esn`={`8esn`} Ends With `6esn`,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|1e1 In 123.654 In `3esn`)[[#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]]] Foreach(`4esn` In {usn1} Is Not Null Is Not Null| With Distinct $`8esn`[1000..0Xa],({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(:@usn5)<-[`7esn`?:`8esn`]-({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}) Ends With $7 Ends With All(`` In `` Is Not Null Is Not Null Where 1000 In {`8esn`} In 01) As ``,usn1 Starts With $usn1 As `1esn` Order By Null[``] Descending,1.e1[$`1esn`..@usn6][$0..$_usn3] Asc,$`6esn`[.e0..$`6esn`][$_usn3..{#usn7}] Desc Limit {`4esn`} Starts With 1e1 Where 0Xa[usn2..]) Union Unwind Extract(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|{@usn5} Is Null Is Null)[Case When $0[..9e1] Then Count(*)[..usn2][..usn2] When {`2esn`} Starts With 0.0 Starts With {usn1} Then 0e0 In @usn5 Else 01 =~{_usn3} =~`3esn` End.._usn3(1.0 In Count(*),0[{usn2}..][$`6esn`..])][count(Distinct $12[Null..Count(*)][{`5esn`}..{999}],$`4esn`[`7esn`])..Case When $123456789 Ends With $999 Ends With {999} Then `3esn`[{usn1}] When #usn7 =~Count ( * ) =~`` Then $_usn4 Starts With 1e1 End] As usn1 Return (_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})[[{@usn6}[{999}..][00..],@usn5 =~{`5esn`} =~`5esn`,`7esn` Is Null]][Reduce(`7esn`=0X0123456789ABCDEF Is Null Is Null,`5esn` In $999[0.0..]|$1000[Null][`4esn`])] As @usn6,9e0 Is Not Null Is Not Null Skip {7}[$`5esn`][{_usn3}] Limit Shortestpath(((`1esn` )))[Case 7[$`2esn`..{`5esn`}] When 0e0[..010] Then {123456789} Is Null Is Null Else `6esn`[..$@usn6] End..][Shortestpath(((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(@usn5 :`4esn`)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]})))..] Remove Reduce(``=2.12 Contains usn2 Contains True,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|`4esn`[..Count ( * )][..{#usn7}]).@usn6?,[Null Ends With `2esn` Ends With $usn1,0X0123456789ABCDEF[123456789],0Xa[$123456789..123.654][.e12..0.e0]].`3esn`! Union All Remove {`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null}.`4esn`?,usn1:#usn7,Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`|$_usn3[..1000]).``"), - octest_legacy:ct_string("Optional Match Allshortestpaths(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))),Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Using Join On `8esn`,`2esn` Where 0e0 In @usn5 Merge `6esn`=Allshortestpaths(((_usn3 :`3esn`:@usn5))) On Create Set Any(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12.0[123.654][Count(*)]).`4esn`? =(:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case When `6esn`[12..$usn2][{#usn8}..{usn2}] Then {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] When .e12[@usn5..#usn7][010..{usn1}] Then 0.12 =~$0 =~$0 End,`8esn` =All(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Contains (`5esn` :_usn4{`5esn`:07[..True][..9e12]})-[`8esn`?:`2esn`{@usn6:{12}[..0X7]}]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]})<-[_usn4{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00}) Contains [0.12[$`3esn`..$_usn3][12.0..usn1]],_usn4 =$#usn8 In 0Xa In `6esn` On Match Set `2esn`+=#usn7 Contains _usn3 Contains {`3esn`},Reduce(`8esn`={usn1} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|0xabc[.e0]).`3esn`! =$@usn5 Starts With 01 Starts With .e0 Union Foreach(`5esn` In 0.12 Contains 0X0123456789ABCDEF Contains .e0| Return None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})[Any(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")..Reduce(usn1=#usn7[usn1][$`5esn`],`3esn` In {7} Is Null|Count(*) Ends With 12.0 Ends With 12)][(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})..({usn1:`5esn`[_usn4..]})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})],@usn5 =~{`5esn`} =~`5esn` As _usn4,$123456789 In $#usn7 In `4esn` As `` Limit #usn7[010..False]) Load Csv From usn2 Is Not Null As @usn6 Fieldterminator \"d_str\" Load Csv From Shortestpath(((:`8esn`:`7esn`$#usn7)-[`5esn`:`8esn`]->(#usn8 {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]}))) In [_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..]|1.0 Is Null Is Null] In Case When Count ( * ) Contains 07 Then 123.654[$`1esn`] End As `3esn` Fieldterminator \"d_str\" Union All Start `3esn`=Relationship:_usn3(`8esn`={123456789}) ,#usn7=Node:@usn5('s_str') Unwind $`4esn` Starts With $`5esn` Starts With False As #usn8 Remove Extract(`5esn` In \"d_str\" Is Null Is Null Where 12.e12 Starts With {999} Starts With {`1esn`}).`5esn`,{_usn3:$@usn5 Starts With 01 Starts With .e0,@usn6:123456789[$@usn5..]}.usn2?,[#usn8 In 7[..999][..{#usn8}] Where `5esn`[{`4esn`}..`2esn`]|1.0[0X0123456789ABCDEF]].`7esn`?"), - octest_legacy:ct_string("Drop Constraint On()<-[_usn4:`4esn`]-()Assert Exists((@usn6 :`1esn`{#usn8:`4esn`[1.0],``:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn4?:_usn4|:usn2 *00]->(`` :`5esn`)._usn3)"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From Case When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $`4esn`[..$`3esn`][..0.0] Then `1esn` =~0 =~$#usn7 Else {``} Is Null End Contains Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Contains All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {@usn6}[7]) As _usn4 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Drop Constraint On()-[_usn4:`7esn`]->()Assert Exists(Case $`4esn`[..$`3esn`][..0.0] When 1.0 =~7 =~{usn2} Then #usn8 End.`7esn`?)"), - octest_legacy:ct_string("Remove Case {#usn7}[`2esn`..] When {1000}[$999...e12][`7esn`..'s_str'] Then 0x0 Ends With $12 When $`5esn`[{`3esn`}] Then $#usn7 Contains 0x0 Contains 1000 Else {@usn6}[7] End.`2esn`!,Reduce(@usn6=1000 In {`8esn`} In 01,#usn7 In `2esn`[..$#usn8][..Count(*)]|$`4esn`[Null..]).usn2,Case {123456789} =~`8esn` =~@usn5 When $#usn8[9e12..][.e1..] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] When 0x0[{`7esn`}..][$usn2..] Then @usn5 Is Null Else 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] End.`2esn` Start @usn6=Rel:@usn6(usn1={999}) Where 0e0 Ends With 1.e1 Ends With $`4esn`"), - octest_legacy:ct_string("Merge Shortestpath(((:_usn4{usn2:0X7 =~9e1})<-[? *..0x0]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}}))) On Match Set Reduce(`8esn`=Count ( * ) Contains 07,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|\"d_str\"[#usn8])._usn3! =[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12),Reduce(@usn6={`8esn`} Ends With `6esn`,`4esn` In $`3esn` Is Not Null|False =~$7 =~2.12).`8esn` =$`4esn`[`7esn`] On Create Set #usn8 =Extract(`5esn` In \"d_str\" Is Null Is Null)[Any(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``)][Case $`7esn` Is Null Is Null When {#usn7}[9e1..][{123456789}..] Then False =~1e1 =~0.e0 Else 1000 In {`8esn`} In 01 End],#usn7+=`4esn`[..Count ( * )][..{#usn7}],@usn5 =@usn6 In 1000 In $``"), - octest_legacy:ct_string("Drop Constraint On()<-[`8esn`:`4esn`]-()Assert Exists(Allshortestpaths((:`4esn`{`5esn`})<-[@usn6?:`5esn`]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})).`8esn`)"), - octest_legacy:ct_string("Foreach(`5esn` In $`8esn`[..00]| Load Csv From .e0 =~`6esn` =~{12} As usn1 Fieldterminator \"d_str\" Start `3esn`=Relationship:#usn7('s_str') ,#usn7=Rel:_usn3({@usn5})) Foreach(`5esn` In \"d_str\" Contains {123456789} Contains 01| Match #usn7=({@usn5:07[..True][..9e12]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}),Allshortestpaths((_usn4 :usn1)<-[`1esn`?:`4esn`]->(`5esn` :`4esn`)) With Distinct .e12[..`7esn`][..0Xa],123.654 Is Not Null Is Not Null As `8esn`,All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By {usn2} Descending,1.0 =~7 =~{usn2} Desc Skip 0.0[$0][{@usn5}] Where _usn3 Contains $123456789 Contains ``) Union Create Unique Shortestpath(((({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})<-[#usn8?:usn1|@usn6]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]})-[#usn7?:_usn4|:usn2 *00]-(`7esn` :`4esn`)))) Load Csv From Case 1.0 In Count(*) When $_usn4[Count ( * )..] Then Null[``] When $1000[`2esn`..`5esn`][1e1..1.e1] Then .e12[@usn5..#usn7][010..{usn1}] Else 1.0[$`1esn`..][$123456789..] End As `6esn` Union Create `6esn`=(usn2 {``:01[{@usn5}]})<-[{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(`3esn` :`2esn`:usn1{`8esn`:9e12[`6esn`..12.0],``:01[{@usn5}]})<-[`8esn`:`2esn` *..07]->({@usn6:01234567 Ends With .e12 Ends With $#usn7,`4esn`:12.e12[`3esn`]}),Allshortestpaths((((`4esn` )<-[? *0X7..{#usn8:{1000} Is Null Is Null,`3esn`:0.e0 Starts With 12.e12 Starts With {_usn4}}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})-[`8esn`?]->(`1esn` :#usn8:#usn8))))"), - octest_legacy:ct_string("Create Constraint On(#usn7:`2esn`)Assert Exists(Allshortestpaths(((:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}))).`3esn`)"), - octest_legacy:ct_string("Unwind {`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}[Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End..[`3esn` In {7} Is Null Where {123456789} Contains $#usn8|#usn7 =~Count ( * ) =~``]][`7esn`(9e1[1000][{123456789}]).._usn3(0.12 =~$0 =~$0)] As ``"), - octest_legacy:ct_string("Unwind $usn1[.._usn4][..False] As @usn6 Return Distinct *,2.12 Ends With $_usn3 Ends With `3esn` As `7esn`,0 In `2esn` In 010 Order By Count ( * ) Starts With 7 Starts With $123456789 Descending,01234567 Ends With .e12 Ends With $#usn7 Asc,$`6esn` =~1.e1 =~12 Asc Skip [{`3esn`} Is Not Null Is Not Null] Limit Single(#usn8 In {`5esn`}[.e1..``] Where $`` =~12.0 =~$`7esn`) Contains Case When {`1esn`}[12.0..`2esn`][@usn6..{usn1}] Then 's_str'[00][{`5esn`}] Else $#usn7 Is Null End Contains None(`5esn` In $999[0.0..] Where .e1 =~$`8esn`) Detach Delete `6esn`[2.12..01][{``}..False]"), - octest_legacy:ct_string("Create Constraint On()<-[``:usn1]-()Assert Exists(Case {999} Is Null Is Null When 12.0 =~1.0 =~9e12 Then $usn1 In {999} In $#usn7 Else `1esn` Ends With {_usn3} Ends With `2esn` End.usn2)"), - octest_legacy:ct_string("Delete `5esn`(Distinct $0,$_usn4 Contains Null Contains #usn8) In Case 12.0[123.654][Count(*)] When $_usn3[Count(*)] Then 0e0 =~`6esn` =~123456789 End In {`8esn`:False Is Null Is Null},`6esn`[2.12..01][{``}..False],[_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null|999 Is Not Null Is Not Null] Ends With [`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null|{`5esn`} Starts With $`5esn` Starts With .e1] Ends With {``:usn1 Starts With usn1 Starts With $``} Merge (`1esn` :`4esn`{`6esn`:$`6esn` Ends With Count(*),`7esn`:_usn3 Starts With 12.e12 Starts With 0.12})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})"), - octest_legacy:ct_string("Create Constraint On(`2esn`:`6esn`)Assert {_usn4:12e12[$`3esn`],_usn3:usn2 Is Null}.`3esn`? Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`8esn`:`3esn`]-()Assert Exists(Single(_usn3 In {`3esn`}[`2esn`] Where `3esn`[`3esn`..][#usn8..]).`8esn`!)"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:#usn8)Assert Exists((`7esn` {`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})._usn4)"), - octest_legacy:ct_string("Create `2esn`=Shortestpath(((usn2 :`6esn`{#usn7:Count ( * ) Contains 07})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))),Allshortestpaths(((`8esn` )-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})<-[ *..12]->(#usn8 {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]}))) Union Optional Match Shortestpath((({`5esn`:$#usn8 Ends With $`2esn` Ends With $@usn6})<-[`4esn`?:usn2|`` *0X7..]->({_usn3:$`5esn`[`3esn`..]})-[@usn5?:`4esn`]-(:usn1{usn1:{`6esn`}}))) Create Unique @usn5=((`5esn` {`8esn`:1000[Null..{123456789}]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})-[:@usn6|`6esn`{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}]->(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})),`4esn`=Allshortestpaths(((:`2esn`:usn1)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})))"), - octest_legacy:ct_string("Return *,Allshortestpaths((:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))[[{_usn4} In {12} In $0,$`5esn`[2.12..],12[1.e1..{_usn3}][1.e1..1.0]]][[12e12 Is Not Null Is Not Null]] Order By $_usn3 In {1000} In 0.12 Desc Merge ((@usn5 :`4esn`)) On Match Set `3esn`+=.e1[..$@usn6][..`2esn`] On Create Set Shortestpath((`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[:`3esn`|:#usn8 *7..12{@usn5:_usn4 Starts With $_usn4 Starts With 12.e12}]->(`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null})).`1esn` =[$0] In [`2esn` In `1esn` =~\"d_str\" Where {0} Ends With $_usn3 Ends With $`7esn`|{999} Contains .e0 Contains 12.0] In None(`2esn` In `1esn` =~\"d_str\" Where {`7esn`}[..$@usn5][..$#usn8]) Foreach(`` In {`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]} Starts With [False] Starts With Filter(#usn8 In 7[..999][..{#usn8}] Where $_usn3[.e0..$usn2])| Load Csv With Headers From 123.654[0e0..$``][$`1esn`..$`8esn`] As _usn4 ) Union Create Unique (`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]}) Match #usn8=Shortestpath((#usn8 :@usn5)) With True[..$`6esn`],(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})[[{@usn6}[{999}..][00..],@usn5 =~{`5esn`} =~`5esn`,`7esn` Is Null]][Reduce(`7esn`=0X0123456789ABCDEF Is Null Is Null,`5esn` In $999[0.0..]|$1000[Null][`4esn`])] As @usn5 Skip Count ( * ) Is Null Limit 07 =~01 Where 0X0123456789ABCDEF[123456789]"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:@usn6)Assert Exists(Reduce(#usn8=123.654[$`1esn`],#usn8 In {`5esn`}[.e1..``]|{`5esn`} Starts With $`5esn` Starts With .e1).`2esn`)"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:_usn4)Assert All(`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}).#usn8? Is Unique"), - octest_legacy:ct_string("Optional Match (`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2}),_usn4=({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[?:`8esn`{`3esn`:1.0 In Count(*)}]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}) Where {usn1}[0X0123456789ABCDEF] Start usn1=Node:`3esn`(`2esn`={usn1}) ,@usn5=Relationship:`6esn`(`8esn`='s_str') Union Unwind 's_str' In $usn1 In False As `6esn` Union All Merge _usn3=((:`1esn`{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})) On Create Set `2esn` =$``[1.0],`8esn` =010[..12e12][..12e12],`5esn` =Extract(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|{@usn5} Is Null Is Null)[Case When $0[..9e1] Then Count(*)[..usn2][..usn2] When {`2esn`} Starts With 0.0 Starts With {usn1} Then 0e0 In @usn5 Else 01 =~{_usn3} =~`3esn` End.._usn3(1.0 In Count(*),0[{usn2}..][$`6esn`..])][count(Distinct $12[Null..Count(*)][{`5esn`}..{999}],$`4esn`[`7esn`])..Case When $123456789 Ends With $999 Ends With {999} Then `3esn`[{usn1}] When #usn7 =~Count ( * ) =~`` Then $_usn4 Starts With 1e1 End] Remove ({@usn6:01234567 Ends With .e12 Ends With $#usn7,`4esn`:12.e12[`3esn`]})<-[ *123456789..]-(:@usn5).`1esn`!"), - octest_legacy:ct_string("Foreach(@usn5 In `5esn` Starts With 010 Starts With 0.0| Create Shortestpath(((:#usn8:#usn8)-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12}))),Shortestpath((({_usn3:{_usn4} Is Not Null Is Not Null})<-[_usn4 *0..{_usn4:00[`2esn`..12][123456789..0.e0],`8esn`:0x0[`4esn`..'s_str']}]->()<-[``? *..01{`1esn`:$@usn6 Contains 07}]->(:#usn8:#usn8{@usn6:$_usn3[..1000]}))) Create ((`1esn` {`5esn`})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})),Shortestpath((((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`8esn`?:`2esn`*..{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]}))))) Delete 0.0 Is Not Null Is Not Null,None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})[Any(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")..Reduce(usn1=#usn7[usn1][$`5esn`],`3esn` In {7} Is Null|Count(*) Ends With 12.0 Ends With 12)][(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})..({usn1:`5esn`[_usn4..]})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})],Reduce(#usn7=$1000 Is Null,#usn7 In {``} Is Not Null|$`1esn` Ends With 9e1 Ends With $123456789) In Case When `5esn` Is Null Then True[..$`6esn`] Else `3esn`[`3esn`..][#usn8..] End Create Unique `8esn`=((:@usn6:#usn8)<-[`1esn`?:usn2|``]-({@usn5:{usn2}[.e0..$999]})) Union Return Distinct $`5esn`[$`4esn`..{@usn6}][07..$@usn6] As usn2 Order By [usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*)) Ascending,Case When 1.0 In Count(*) Then False End Contains `1esn`(Distinct 0.e0 Starts With `2esn`) Contains Reduce(`1esn`=\"d_str\" Is Null Is Null,#usn7 In {``} Is Not Null|#usn7) Descending Skip Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End Limit All(#usn7 In {``} Is Not Null Where {_usn4}[...e1][..$7]) Is Null Is Null Match Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Using Index ``:usn1(@usn5) Using Index `3esn`:`5esn`(#usn7) Where $`5esn`[2.12..] Unwind $_usn4 In usn1 In $7 As usn1 Union All Foreach(usn2 In $12[True..][{0}..]| Return Distinct 0X7[1000..{`1esn`}] As `3esn`,$`2esn`[12.e12..][{`4esn`}..] Order By 0.0 =~999 Asc,$`5esn` In 0.e0 Asc,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) Ascending Limit Count ( * ) Is Null Load Csv With Headers From {1000}[$`4esn`][\"d_str\"] As _usn3 ) Create Unique (:``:#usn8{_usn3:$`7esn` Is Null Is Null}),`5esn`=Shortestpath((((@usn5 :_usn4{#usn7:Null Ends With `2esn` Ends With $usn1,`5esn`:12.0})-[?:#usn7 *01234567..0Xa]->({``:$`8esn` =~{1000}})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})))) Remove [`2esn` In `1esn` =~\"d_str\" Where usn2[9e12]|usn2 Ends With 999 Ends With .e1].`5esn`,(`` :_usn4{_usn4:False[..``],usn2:9e1[1000][{123456789}]})-[ *7..12{`2esn`:.e12 Ends With _usn4}]->(:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(:@usn6:#usn8{`1esn`:`4esn`[..010][..{12}]})._usn4?,Extract(#usn8 In {`5esn`}[.e1..``] Where $`` =~12.0 =~$`7esn`|1e1 In 123.654 In `3esn`).`6esn`!"), - octest_legacy:ct_string("Return *,Reduce(`2esn`=12[1.e1..{_usn3}][1.e1..1.0],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{#usn8}[010]) Is Not Null Is Not Null Skip Reduce(@usn6=0.e0 Ends With $#usn7 Ends With $7,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999})[[#usn8[`3esn`..][{#usn7}..]]..(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`8esn` :@usn6:#usn8)<-[{`8esn`:07 In `2esn` In 12e12}]->(:_usn4{`6esn`:{`6esn`} =~$999,`6esn`:$#usn7[..{`5esn`}][..9e12]})][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)..Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0e0 Starts With `2esn` Starts With $``)] Limit {`5esn`} =~`4esn` =~{_usn4} Foreach(`7esn` In {#usn8} Is Not Null| Start `1esn`=Rel:_usn4(``={#usn7}) ,`3esn`=Relationship:#usn7('s_str')Where 's_str'[00][{`5esn`}]) Detach Delete Shortestpath((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0}))[Single(`5esn` In $999[0.0..] Where usn2 Ends With 999 Ends With .e1)..],{0}[{`8esn`}..`4esn`],Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 1.0 =~7 =~{usn2}) Is Not Null Is Not Null Union All Foreach(`2esn` In 9e1[True]| Create Unique @usn6=((usn2 :@usn5)-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`4esn`{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})) Load Csv With Headers From 0e0[07] As _usn4 Fieldterminator 's_str') Unwind 0x0[{`7esn`}..][$usn2..] As `7esn` Union Remove Case When 1.0 Starts With 12e12 Starts With {`5esn`} Then {0} End.usn1!,Case When 1.0 Contains $_usn4 Then {999} Contains .e0 Contains 12.0 Else `5esn`[_usn4..] End.#usn8! Start _usn4=Node:`3esn`(`2esn`={usn1}) ,`6esn`=Node:``('s_str') Unwind 999 In {`3esn`} In usn2 As `6esn`"), - octest_legacy:ct_string("Merge `5esn`=(_usn4 :`5esn`)-[ *0..]->(`` :usn2) With Distinct *,1e1 Contains 0e0 Skip @usn6 Contains Null Contains $`7esn` Limit $0 Where 0Xa Starts With {`6esn`} Starts With $usn1 Foreach(`2esn` In 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3]| Create (#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})) Union Optional Match (({`7esn`:\"d_str\" Starts With $123456789})-[`6esn`? *0..]-(`5esn` :`2esn`:usn1)<-[? *..999]->(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})),(_usn3 {@usn5:`5esn`[{`4esn`}..`2esn`],_usn3:07 =~01}) Using Scan `6esn`:`2esn` Using Index _usn4:`5esn`(`6esn`) With *,#usn7(usn2 Is Not Null Is Not Null,$`6esn` Ends With Count(*)) Is Null Is Null As `6esn`,#usn8 In $@usn6 Skip 0e0 Contains Null Where $1000[Null][`4esn`] Union Remove Reduce(@usn5={@usn6}[{999}..][00..],`2esn` In `1esn` =~\"d_str\"|1.0 =~7 =~{usn2}).`8esn`? Return *,1e1 Contains 0e0 Order By `6esn`({usn1} Ends With $0) Is Not Null Desc,$#usn7 Is Not Null Desc Limit None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null) Load Csv With Headers From Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where `5esn` Starts With $`2esn` Starts With $1000) Ends With Reduce(``=0.12 =~$0 =~$0,`2esn` In `1esn` =~\"d_str\"|9e12[`1esn`..][$`1esn`..]) As usn1 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Load Csv From Reduce(@usn6=0.e0 Ends With $#usn7 Ends With $7,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999})[[#usn8[`3esn`..][{#usn7}..]]..(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`8esn` :@usn6:#usn8)<-[{`8esn`:07 In `2esn` In 12e12}]->(:_usn4{`6esn`:{`6esn`} =~$999,`6esn`:$#usn7[..{`5esn`}][..9e12]})][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)..Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0e0 Starts With `2esn` Starts With $``)] As `2esn` Fieldterminator \"d_str\" With *,$``[1.0] As `6esn`,12.0[123.654][Count(*)] Where 0.12[$`3esn`..$_usn3][12.0..usn1] Union All Detach Delete 7[{0}..{_usn4}] Remove ({@usn5:_usn3 Contains $123456789 Contains ``,_usn4:{``} Ends With `7esn` Ends With 0.0})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(#usn7 :usn1).#usn7!,All(`` In `` Is Not Null Is Not Null Where `1esn` =~0 =~$#usn7).#usn7! Match _usn3=(((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5))),(:``:#usn8{_usn3:$`7esn` Is Null Is Null}) Using Scan `4esn`:#usn7 Using Scan `5esn`:usn2"), - octest_legacy:ct_string("Start _usn4=Node:`6esn`(\"d_str\") Where {_usn3}[..$12][..0.12] Start `7esn`=Relationship:`3esn`(`6esn`='s_str') Where 0Xa =~123456789 =~_usn4 Union All Return Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]) =~({``:$`8esn` =~{1000}})<-[#usn8? *0..]->(`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7}) =~Shortestpath((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})) As #usn8,Reduce(`8esn`={@usn5}[{#usn8}][9e0],`3esn` In {7} Is Null|0e0 Starts With 1000 Starts With #usn7)[Single(#usn8 In 7[..999][..{#usn8}] Where 123456789 Is Null)] Order By 's_str' In 00 Desc,{1000}[{_usn3}..] Descending,$usn1[...e0][..$_usn3] Asc Union All Create `1esn`=Shortestpath((((`2esn` :`8esn`:`7esn`)<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``}))))"), - octest_legacy:ct_string("Create Unique (:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null}) Optional Match @usn6=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7)),(({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})) Using Scan `1esn`:`1esn` Using Index `8esn`:`1esn`(@usn5) Match Allshortestpaths(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))),Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Using Index ``:_usn4(_usn4) Where {#usn7}[9e1..][{123456789}..]"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:`4esn`)Assert [`4esn` In $`3esn` Is Not Null Where `7esn`[..2.12][..{usn1}]|#usn7 Contains _usn3 Contains {`3esn`}]._usn4! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`3esn`)Assert Exists([#usn7 In {``} Is Not Null Where @usn5 In {`7esn`} In `2esn`].#usn7!)"), - octest_legacy:ct_string("Drop Constraint On()-[`4esn`:#usn8]->()Assert Exists(Extract(`5esn` In \"d_str\" Is Null Is Null Where #usn8|$0[$`1esn`..07]).#usn7)"), - octest_legacy:ct_string("Drop Constraint On()-[`4esn`:_usn3]-()Assert Exists(Shortestpath(((`5esn` :`2esn`:usn1)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3))).usn2?)"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:`2esn`)Assert Exists((`6esn` :@usn6:#usn8)-[`1esn`?:`8esn`]->(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})._usn3!)"), - octest_legacy:ct_string("Drop Constraint On(@usn6:`3esn`)Assert Case `4esn`[1.0] When $`4esn`[9e12..123.654] Then $`4esn` In Null In 0xabc End.``? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`5esn`)Assert Exists(`4esn`().`6esn`?)"), - octest_legacy:ct_string("Foreach(`4esn` In 1000[0X7..2.12]| Remove ({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)._usn4?) Foreach(`3esn` In 0.0[Null][$`2esn`]| Remove (:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:_usn3|_usn3{`3esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],#usn8:False Starts With {`5esn`}}]-(usn2 :`5esn`{`7esn`:01234567 Is Null Is Null})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)._usn3,[@usn6[$`3esn`..{`3esn`}]].#usn7!,Reduce(@usn5='s_str' Ends With 7 Ends With {_usn4},`8esn` In 01[2.12..`8esn`]|{999}).#usn8!) Optional Match _usn3=Allshortestpaths(((:usn1{_usn4})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}))),(({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})) Using Scan _usn4:usn1 Where 12e12 Ends With {usn1} Union All Merge Allshortestpaths((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))) On Match Set Filter(`4esn` In $`3esn` Is Not Null Where `7esn`[..2.12][..{usn1}]).@usn6? =123456789 Ends With $`6esn` Ends With $#usn7,`1esn`+=(`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})[\"d_str\"..Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null)][Shortestpath(((:`3esn`:@usn5$7)))..usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010])],#usn7 =$123456789 In $#usn7 In `4esn` Union All Load Csv From {_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] As #usn8 Create Unique Allshortestpaths(({_usn3:{_usn4} Is Not Null Is Not Null})),(({_usn3:{_usn4} Is Not Null Is Not Null})) With Distinct 123.654 Is Not Null As `1esn`,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) As `4esn` Order By 0.0 =~999 Asc,1e1 In \"d_str\" In `7esn` Descending"), - octest_legacy:ct_string("Create Constraint On(`7esn`:#usn8)Assert Exists(Shortestpath((`4esn` {`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}})).`6esn`?)"), - octest_legacy:ct_string("Drop Constraint On(@usn5:`4esn`)Assert count($1000 Is Null,0Xa[$123456789..123.654][.e12..0.e0]).`8esn` Is Unique"), - octest_legacy:ct_string("Remove (:_usn4{@usn6})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {_usn3:{#usn7} Is Not Null Is Not Null})<-[#usn7?:`8esn` *0Xa]-({@usn6:01234567 Ends With .e12 Ends With $#usn7,`4esn`:12.e12[`3esn`]}).#usn8,Reduce(`2esn`={123456789}[9e12][{0}],@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|False[..``]).`6esn`?,Case 2.12 =~Count(*) When $`4esn`[`7esn`] Then usn1 Ends With $@usn6 Ends With `3esn` End.#usn8!"), - octest_legacy:ct_string("Create Constraint On(_usn3:_usn4)Assert Exists([@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 01[2.12..`8esn`]|$`2esn`[2.12..'s_str'][{@usn6}.._usn4]]._usn3)"), - octest_legacy:ct_string("Drop Constraint On()-[`6esn`:_usn3]->()Assert Exists([1.0[0X0123456789ABCDEF]].@usn6!)"), - octest_legacy:ct_string("Create Unique Allshortestpaths((`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(_usn4 {`5esn`:\"d_str\" Starts With 01})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(:`3esn`:@usn5$usn2)),`5esn`=Shortestpath((((`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})<-[@usn6:@usn5 *0Xa]->({`3esn`:9e1[2.12..{#usn8}]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})))) Union Detach Delete $`` Ends With 0.0 Ends With {1000},$`1esn` =~0X7,All(`3esn` In {7} Is Null)[{`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]}..] Match Shortestpath((`3esn` :`8esn`:`7esn`)-[`` *..12]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[`3esn`? *123456789..]-(`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})),Shortestpath((`5esn` :`4esn`)) Using Index _usn4:usn1(`1esn`) Using Index `1esn`:_usn3(_usn4) Where True[00][0Xa] Load Csv From [`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`]|`8esn` Contains $usn1 Contains $12][Filter(_usn3 In {`3esn`}[`2esn`] Where #usn7 Contains _usn3 Contains {`3esn`})..(:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})-[usn2?:`7esn` *123456789..{_usn4:$@usn5 Starts With {0} Starts With 12,`2esn`:{7}[..12e12][..Count ( * )]}]->({_usn3:False =~1e1 =~0.e0,_usn3:{999} Starts With $999})] As `6esn` Fieldterminator \"d_str\" Union Merge Shortestpath(((`2esn` :#usn7{`5esn`:\"d_str\" Starts With $123456789})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`)<-[`6esn`?:_usn4|:usn2 *1000..00{`6esn`:@usn5 In {`7esn`} In `2esn`,@usn5:0.0 =~999}]->($#usn8))) On Create Set @usn6+=None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End],`3esn` ={`7esn`}[0e0][1.e1],usn1+=Reduce(`8esn`=$@usn5[..12e12][..$123456789],@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|@usn5 In {`7esn`} In `2esn`) Is Not Null Is Not Null On Match Set Case usn1 In 7 In {123456789} When _usn3[_usn3..][12.e12..] Then 0x0 Ends With $12 Else `7esn`[..2.12][..00] End.`7esn`? =Reduce(`8esn`=0[..usn2][..{@usn5}],#usn8 In {`5esn`}[.e1..``]|Count ( * )[True..][{#usn7}..])[2.12..][{999}..],`` ={`3esn`} Is Null Is Null,(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(usn2 {``:01[{@usn5}]})._usn4? =Reduce(`1esn`={0} Ends With $_usn3 Ends With $`7esn`,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|010 In Count(*))[9e12..(`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})][0X7..Case $_usn4 Starts With 1e1 When {12} Ends With 1.0 Ends With .e0 Then {`2esn`} Is Not Null Else \"d_str\"[..{@usn5}][..``] End] Detach Delete (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12},{`4esn`} Starts With $usn2 Starts With $1000"), - octest_legacy:ct_string("Create Unique ((:@usn6:#usn8)<-[`1esn`?:usn2|``]-({@usn5:{usn2}[.e0..$999]})),@usn6=Shortestpath((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})) Merge Allshortestpaths(({@usn5:07[..True][..9e12]})-[_usn4?:`5esn` *..07]->({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})) On Match Set None(`2esn` In `1esn` =~\"d_str\" Where $`1esn`[1.0..][_usn3..]).`1esn`? =.e12 Contains 0X7 Contains {0} On Create Set Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {@usn6}[7]|`8esn` =~0xabc =~010).#usn8! =Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)[None(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Starts With $1000)..{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}][Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8)..None(#usn8 In {`5esn`}[.e1..``] Where $`3esn` Is Not Null)]"), - octest_legacy:ct_string("Drop Constraint On()<-[#usn8:@usn6]-()Assert Exists([`5esn` In $999[0.0..] Where {_usn3}[..\"d_str\"]|Count(*) Is Null Is Null]._usn3)"), - octest_legacy:ct_string("Create Constraint On(`5esn`:usn2)Assert [$`5esn` Starts With $0 Starts With {0},0x0[`4esn`..'s_str'],$usn2[9e0]].#usn8! Is Unique"), - octest_legacy:ct_string("Load Csv With Headers From ({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]})<-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})[(@usn5 :`6esn`)-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]->(:@usn6:#usn8)..{`2esn`:{_usn4} Starts With 0.e0 Starts With 0x0}] As `1esn` Detach Delete $7 In $7 In $7,0X7[1000..{`1esn`}],.e1 Is Null Is Null Union All With Distinct *,9e1[2.12],$_usn4 Contains Null Contains #usn8 As #usn7 Order By (usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]})<-[ *123456789..]-(:@usn5) Is Null Is Null Desc,False[..{`1esn`}] Desc Skip 1e1[$`5esn`][{`3esn`}] Limit {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains [1.0[0X7][{`5esn`}]] Where 123.654 Contains $`4esn` Contains 1.0"), - octest_legacy:ct_string("Merge (:`8esn`:`7esn`) Create Unique ((`4esn` :@usn6:#usn8)-[:`8esn`*]->({_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})),`3esn`=Shortestpath(((:`1esn`{`5esn`:1.0 In Count(*)})))"), - octest_legacy:ct_string("Create Constraint On(`1esn`:_usn3)Assert Exists(Extract(`3esn` In {7} Is Null Where 0.e0[123.654][01]|12e12 Is Not Null Is Not Null).#usn7)"), - octest_legacy:ct_string("Unwind 123.654[$`1esn`] As `2esn` Remove [$1000 Is Null,$`1esn`[{`2esn`}..],.e1[{`7esn`}..{_usn4}]].@usn5 Union All Merge (`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]}) On Create Set `4esn`+=(`1esn` :#usn8:#usn8)-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})[..(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})][..`5esn`({12} Ends With 1.0 Ends With .e0)],Any(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`])._usn4! ={@usn6}[{999}..][00..] Unwind $12 Starts With {`1esn`} Starts With Null As `6esn` Union All Foreach(`5esn` In $#usn7[..{`5esn`}][..9e12]| Delete `5esn`(Distinct `2esn` Is Null,123456789[{123456789}..'s_str'])[.._usn3(.e0[..$`8esn`])][..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]) Return Distinct 2.12[$`5esn`][$#usn8],$7 Ends With `4esn` As `5esn` Order By ({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}) Asc,{#usn8} Starts With 00 Starts With {`6esn`} Desc Skip `1esn`[{usn1}..``][7..$#usn8]"), - octest_legacy:ct_string("Merge `2esn`=Shortestpath((:`4esn`{`7esn`:$0[..9e1],usn1:{_usn4} Ends With `6esn`})-[@usn6?:`3esn`|:#usn8 *123456789..]->(:_usn3:_usn3{`7esn`:$`1esn` =~0X7})-[`4esn`]->(:`6esn`$123456789)) On Create Set usn2 =`3esn` In $0 In `1esn`,@usn6:`1esn`,count(Distinct {`1esn`}[usn1][.e1]).`1esn`? =01 Contains {`8esn`} Contains 2.12 Union Remove @usn6:`5esn`,[usn1 In @usn5 =~{`5esn`} =~`5esn` Where $usn1 Ends With $`` Ends With $12|`5esn` Starts With `3esn`].`8esn`,(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn2 ).`7esn`? Union Optional Match ``=(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}}),`3esn`=(`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8}) Using Index `3esn`:`5esn`(#usn7) Using Join On `8esn`,`2esn` Where $`6esn`[{999}..9e0] With Distinct All(`3esn` In {7} Is Null Where Count ( * ) Contains 07) Is Null Is Null Limit $12[`5esn`..] Foreach(`3esn` In {`7esn`}[`6esn`][#usn7]| With Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where @usn6 Is Null Is Null)[(`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})..] As `3esn`,{`3esn`} In 0X7 Skip `1esn` In .e0 In {`3esn`} Limit Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End Create Unique #usn7=((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})),Shortestpath((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))))"), - octest_legacy:ct_string("Create Constraint On()-[#usn7:`2esn`]-()Assert Exists(Case `5esn` Starts With $`2esn` Starts With $1000 When 123.654 =~$usn2 =~{999} Then Count ( * ) Contains `8esn` Contains .e1 End.usn2?)"), - octest_legacy:ct_string("Create Constraint On(`5esn`:usn1)Assert None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e1 Is Not Null).`5esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(usn1:usn1)Assert Extract(`` In `` Is Not Null Is Not Null Where `4esn`[..Count ( * )][..{#usn7}]|00[`2esn`..12][123456789..0.e0]).usn2? Is Unique"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From Allshortestpaths((((:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]->(:`4esn`{``:2.12 Is Not Null Is Not Null}))))[{`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null}][Allshortestpaths(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})))] As `2esn` Optional Match @usn6=(({#usn7:2.12 Contains usn2 Contains True})<-[`7esn`?:@usn5{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]}]-(`` :@usn6:#usn8{`8esn`:'s_str' In 00})-[`7esn`?*..]->({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})),((`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})-[`4esn`:``{usn1:`` Is Not Null Is Not Null,usn1:{1000}[{_usn3}..]}]-(`` :_usn4{_usn4:False[..``],usn2:9e1[1000][{123456789}]})) Start `5esn`=Rel:`8esn`({usn1}) ,`7esn`=Node:`6esn`({_usn3})"), - octest_legacy:ct_string("Delete 0[07..{123456789}][999...e12],0Xa[9e1..][$`6esn`..],Extract(#usn7 In {``} Is Not Null Where 123456789[0xabc..'s_str'][``..`1esn`])[Reduce(usn1=False,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|$_usn4 Starts With 1e1)] Foreach(`8esn` In [_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|`` Is Not Null Is Not Null] Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where {_usn3}[..\"d_str\"][..`5esn`]) Ends With Filter(`3esn` In {7} Is Null Where {123456789} Contains $#usn8)| Remove (:#usn7)-[?:_usn3|_usn3]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[:#usn7 *..010]->(#usn8 :usn1)._usn4!,{_usn4:0.12 Contains 0X0123456789ABCDEF Contains .e0}.`1esn`! Remove None(#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01).`5esn`!) Union All Create Unique @usn5=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}) Merge `2esn`=Shortestpath((((:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})<-[:#usn7 *..010]-(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})))) On Match Set #usn8:usn2,usn1 =Reduce(`2esn`=1e1 In 123.654 In `3esn`,`5esn` In \"d_str\" Is Null Is Null|$_usn3[{#usn7}]) Is Not Null,`6esn` =0.e0 Starts With `2esn` On Match Set @usn5 =Extract(#usn8 In {`5esn`}[.e1..``] Where {`3esn`}[..07][..{`5esn`}]) Is Null Is Null"), - octest_legacy:ct_string("Drop Constraint On(#usn7:`1esn`)Assert Exists(Single(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 01[{@usn5}])._usn3?)"), - octest_legacy:ct_string("Foreach(usn2 In Case {999} Is Null Is Null When 1000[Null..{123456789}] Then 9e12[`6esn`..12.0] Else `` Ends With $1000 End[Reduce(`2esn`={`3esn`} In 0X7,_usn3 In {`3esn`}[`2esn`]|$`5esn`[{`3esn`}])..(@usn5 {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})]| Return Distinct 010[Count(*)..12][$_usn3..{`8esn`}],Filter(_usn3 In {`3esn`}[`2esn`] Where False =~$7 =~2.12)[Case When .e12 Is Not Null Is Not Null Then `1esn` In .e0 In {`3esn`} When 7 Starts With {@usn6} Starts With $`` Then 0X0123456789ABCDEF =~1e1 =~{`4esn`} Else {`4esn`}[$123456789..][$#usn7..] End] As `5esn`,9e1[2.12] As _usn3 Delete 010 In Count(*),Count(*)[..usn2][..usn2]) Create usn1=(((@usn5 :`8esn`:`7esn`{`6esn`:`7esn`[$0][9e12],`4esn`:.e1 Is Null Is Null})<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->(`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`))),(((usn2 :`4esn`)-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[``? *..01{`1esn`:$@usn6 Contains 07}]-(:`3esn`:@usn5{#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}))) Match usn1=Allshortestpaths(((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))),((@usn6 :`1esn`{#usn8:`4esn`[1.0],``:.e12[@usn5..#usn7][010..{usn1}]})) Using Join On @usn5,_usn3,_usn3 Using Scan #usn7:@usn6"), - octest_legacy:ct_string("Drop Constraint On(@usn6:`3esn`)Assert {_usn3:{7}[..1.0][..9e0],`8esn`:{123456789} Is Not Null}.usn2 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(@usn6:`1esn`)Assert Exists(Reduce(`8esn`={`2esn`} Is Not Null Is Not Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{usn1} Ends With $0).`8esn`)"), - octest_legacy:ct_string("Drop Constraint On()-[`8esn`:`2esn`]->()Assert Exists(Reduce(`6esn`=$`4esn`[9e12..123.654],`8esn` In 01[2.12..`8esn`]|$0[$`1esn`..07]).@usn5!)"), - octest_legacy:ct_string("Delete 123456789[#usn8..False],9e1 In 2.12 Load Csv From Shortestpath(({`7esn`:\"d_str\" Starts With $123456789})<-[`4esn`:``{usn1:`` Is Not Null Is Not Null,usn1:{1000}[{_usn3}..]}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[`4esn`]->(:`6esn`$123456789)) Is Null As `7esn` Merge (`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}) On Create Set usn1+=Extract(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|{@usn5} Is Null Is Null)[Case When $0[..9e1] Then Count(*)[..usn2][..usn2] When {`2esn`} Starts With 0.0 Starts With {usn1} Then 0e0 In @usn5 Else 01 =~{_usn3} =~`3esn` End.._usn3(1.0 In Count(*),0[{usn2}..][$`6esn`..])][count(Distinct $12[Null..Count(*)][{`5esn`}..{999}],$`4esn`[`7esn`])..Case When $123456789 Ends With $999 Ends With {999} Then `3esn`[{usn1}] When #usn7 =~Count ( * ) =~`` Then $_usn4 Starts With 1e1 End],`7esn` =[12.0,2.12 Is Not Null Is Not Null][Case When usn1 In 7 In {123456789} Then `5esn`[_usn4..] When `7esn`[9e0..] Then {`3esn`} In 01 End..999] On Match Set Shortestpath(({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[`6esn`? *0..]-(:usn1{`3esn`:{123456789} Is Null Is Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})).`6esn` =$`8esn`[1000..0Xa],`4esn`+=1e1[1000..],(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})-[? *0Xa]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(`3esn` :`6esn`).#usn7! =1000 =~@usn6 =~0x0 Union All Foreach(#usn8 In $`7esn` Is Not Null| Create #usn7=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}),@usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})) Create `3esn`=Allshortestpaths(((:usn1{_usn4})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})))) Delete Shortestpath((((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))))[..Case 0Xa =~123456789 =~_usn4 When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $1000 In $1000 In $`3esn` Then 0.e0[#usn8] End][..(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})],Case $1000[999] When `4esn`[`5esn`..12][@usn6..False] Then {0} Ends With $_usn3 Ends With $`7esn` When $usn1 In {999} In $#usn7 Then Count ( * )[True..][{#usn7}..] End Ends With {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null},`7esn` In 00 Start _usn4=Relationship:`1esn`({12}) ,@usn6=Relationship:`8esn`({`3esn`})"), - octest_legacy:ct_string("Create Constraint On(#usn8:`4esn`)Assert Exists(Reduce(`8esn`={`2esn`} Is Not Null Is Not Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{usn1} Ends With $0).`8esn`)"), - octest_legacy:ct_string("Detach Delete _usn4(0.e0 Starts With 12.e12 Starts With {_usn4},0X0123456789ABCDEF Is Null Is Null)[Case 's_str' In 00 When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null When $@usn5 Starts With {0} Starts With 12 Then {usn2} Else {#usn7}[`2esn`..] End..],(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]}) Is Not Null Is Not Null Merge ((`5esn` )-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(@usn6 {`3esn`:{``} Is Not Null})<-[`1esn` *0Xa{_usn3:Null Ends With `2esn` Ends With $usn1,#usn8:.e12 Is Not Null Is Not Null}]->(usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})) On Match Set `6esn`:`8esn`:`7esn` On Match Set `7esn`+=$1000 Is Not Null,`8esn`+=$_usn4 Is Not Null Is Not Null Foreach(_usn4 In {@usn6} Ends With 's_str' Ends With 12.0| Return `6esn`[2.12..01][{``}..False] As @usn5 Skip 1.0[$`1esn`..][$123456789..] Limit Allshortestpaths((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3))[{_usn3:01[{@usn5}]}..Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where True In 0e0)][Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0.12 In _usn3 In {0})..None(`3esn` In {7} Is Null Where 0Xa[2.12])] Delete Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With Reduce(`1esn`=0.12 Starts With $`5esn` Starts With 12,_usn3 In {`3esn`}[`2esn`]|$12[True..][{0}..]) Starts With Reduce(usn2=Null Ends With {`5esn`} Ends With 0.e0,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{`6esn`})) Union All With Distinct *,$`7esn`['s_str'] Limit Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) Is Not Null Is Not Null Where .e12 In 0.e0 In {12} Load Csv From #usn7[usn1][$`5esn`] As `6esn` Foreach(`2esn` In 123456789[_usn3]| Start _usn4=Node( {123456789}) ,`8esn`=Relationship:usn2('s_str')Where {_usn3}[12.e12]) Union All Create Unique `1esn`=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})<-[{`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}]->({`7esn`:7[{0}..{_usn4}]})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-({#usn8:0xabc[.e0]})))) Match `1esn`=(((_usn4 :#usn7)-[? *..07{`4esn`:@usn5 =~{`5esn`} =~`5esn`}]->(_usn3 :usn2{#usn7:{999} Starts With {0}})-[usn1?:`4esn` *..01]-({``:.e1 Is Null Is Null}))) Using Join On `1esn`,_usn3,_usn3 Using Scan ``:`7esn` Where {``} Is Not Null"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From $`5esn`[2.12..{_usn3}][_usn3..{1000}] As `5esn` With Distinct [{`3esn`} Is Not Null Is Not Null] As `2esn`,Count ( * )[True..][{#usn7}..] As usn2,Reduce(`2esn`=1e1 In 123.654 In `3esn`,`5esn` In \"d_str\" Is Null Is Null|$_usn3[{#usn7}]) Is Not Null As `2esn` Skip {`4esn`} Starts With 1e1 Return {`4esn`:`7esn` Is Null}[{`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]}..] As #usn8 Order By 9e12[`1esn`..][$`1esn`..] Ascending,Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]] Ascending,9e1 Is Not Null Asc"), - octest_legacy:ct_string("Load Csv From {1000} =~0 =~123.654 As @usn6 Fieldterminator 's_str' Remove Case When Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6} Then {`2esn`} Is Not Null Is Not Null When `3esn`[{usn1}] Then `5esn` Starts With $`2esn` Starts With $1000 End._usn3!,Allshortestpaths((((`3esn` :`8esn`:`7esn`)-[`7esn`:#usn8|`1esn` *0xabc..]->(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})-[`2esn`?:`7esn` *..07$0]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})))).``! Foreach(_usn3 In Single(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]) Is Not Null Is Not Null| Create Unique @usn6=(((@usn6 :`3esn`:@usn5)<-[`4esn`:`8esn` *00]-(`2esn` :`8esn`:`7esn`)<-[? *..999]->(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null}))),((:`1esn`{`5esn`:1.0 In Count(*)})) Create Unique _usn3=(({@usn6:01234567 Ends With .e12 Ends With $#usn7,`4esn`:12.e12[`3esn`]})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(#usn7 :`7esn`:_usn3))) Union All Load Csv With Headers From 123456789[{123456789}..'s_str'] As `5esn` Merge #usn8=Allshortestpaths((({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})-[? *..0x0{_usn3:01 Ends With 999 Ends With {`7esn`}}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[?{usn1:0[`7esn`..]}]->({usn1:{`7esn`}[`6esn`][#usn7],usn1:{999} Starts With $999}))) Optional Match `2esn`=((`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]})-[{`7esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4]}]-(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)),`6esn`=Shortestpath(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null}))) Using Index `3esn`:usn1(@usn6) Using Scan `4esn`:`5esn` Where {`5esn`}[.e1..``] Union All Create @usn6=Shortestpath((usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})),(((`3esn` :`8esn`:`7esn`)-[`7esn`:#usn8|`1esn` *0xabc..]->(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})-[`2esn`?:`7esn` *..07$0]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]}))) Load Csv With Headers From (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8) Contains All(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) As #usn8 Fieldterminator 's_str'"), - octest_legacy:ct_string("Create Constraint On(``:``)Assert {`3esn`:$usn1 Ends With $`` Ends With $12,_usn4:12.e12[..Null][..$#usn8]}.`3esn`! Is Unique"), - octest_legacy:ct_string("With (`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})-[:`6esn`|`5esn`{`8esn`:$0 Ends With 12.0}]->(`5esn` {`4esn`:7[$`2esn`..{`5esn`}],@usn6:{7} Is Null}) Contains Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) Contains Case 9e12 Is Not Null Is Not Null When 0[..usn2][..{@usn5}] Then 0e0 Ends With 1.e1 Ends With $`4esn` Else usn1 Is Null End Optional Match Shortestpath(((`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}))) Using Join On `8esn`,`2esn` Where `7esn`[..{usn1}] Delete Shortestpath((((`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`2esn` *..07]-(`1esn` {#usn7:{_usn4} In {12} In $0})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})))) In ({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}),[0x0 Is Null,{``} Ends With `7esn` Ends With 0.0,0X7[0e0..`7esn`][1000..0e0]] =~Any(`5esn` In \"d_str\" Is Null Is Null Where $`6esn` Is Null) =~[$12[True..][{0}..],usn1[`5esn`..$7]],1.0[`3esn`..][9e0..]"), - octest_legacy:ct_string("Create Constraint On(@usn5:`6esn`)Assert Exists({`1esn`:\"d_str\" Starts With 01}.`4esn`!)"), - octest_legacy:ct_string("Drop Constraint On()<-[@usn6:`2esn`]-()Assert Exists({`6esn`:0.e0 Ends With $#usn7 Ends With $7}.`5esn`?)"), - octest_legacy:ct_string("Merge _usn3=((@usn5 {usn2:0.e0[123.654][01]})-[`3esn`:#usn7]->(@usn6 {_usn3:{#usn7} Is Not Null Is Not Null})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})) On Match Set `2esn`+=`8esn`[9e12][$`1esn`] Union All Delete .e0 Ends With 0.12 Unwind {0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]] As `2esn` Union All Remove 0xabc.`1esn`?,Allshortestpaths(((($#usn8)-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)<-[? *7..12]->({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})))).``?,(_usn3 {`5esn`:12.e12[0xabc],`2esn`:{`7esn`}[..$@usn5][..$#usn8]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]->(:`4esn`{``:2.12 Is Not Null Is Not Null}).`2esn`!"), - octest_legacy:ct_string("Drop Constraint On()-[_usn3:usn2]->()Assert Exists(_usn3(Distinct).#usn8)"), - octest_legacy:ct_string("Drop Constraint On()-[usn2:#usn8]->()Assert Exists((:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})-[ *..999{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(@usn5 {_usn3:`1esn` Contains {usn2} Contains $#usn8}).`6esn`)"), - octest_legacy:ct_string("Delete exists()[..[`5esn` In $999[0.0..] Where $`3esn`[..$123456789][..$`1esn`]]][..Reduce(`2esn`={123456789} Is Null Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4])],`3esn`[`3esn`..][#usn8..],1.0 Starts With 12e12 Starts With {`5esn`} Start `6esn`=Rel:`7esn`(`3esn`=\"d_str\") Where 1.0[0X7][{`5esn`}] Union All Return 123456789[0xabc..'s_str'][``..`1esn`] As `4esn` Skip `4esn`[`5esn`..12][@usn6..False] Limit $_usn4[Count ( * )..] Detach Delete 1.e1[$`1esn`..@usn6][$0..$_usn3],$@usn6[..{#usn7}][..{@usn6}] Create `1esn`=Shortestpath((usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})<-[ *..010{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}}]->(:_usn4$@usn5)<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]->(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})),((:_usn4{@usn6})) Union All Detach Delete Filter(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0]) Ends With Case When {#usn8}[010] Then False =~$7 =~2.12 End,1.0[$`1esn`..][$123456789..]"), - octest_legacy:ct_string("Create Constraint On(`7esn`:#usn7)Assert `7esn`(Distinct $`6esn`[123456789..12][True..{`3esn`}],7 =~{`8esn`} =~$`6esn`).#usn7 Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn5:`5esn`)Assert [`5esn` In \"d_str\" Is Null Is Null Where {0}]._usn4? Is Unique"), - octest_legacy:ct_string("Optional Match `6esn`=(({``})<-[`5esn`{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(usn2 {#usn7:2.12 =~Count(*),_usn4:$usn2[9e0]})),@usn5=Allshortestpaths((:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[#usn8]-(:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})) Using Index @usn5:`4esn`(`3esn`) Using Scan _usn3:`1esn` Where $123456789 =~{`6esn`} =~\"d_str\""), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`2esn`)Assert [`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`]|{`7esn`}[..$@usn5][..$#usn8]].`5esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`7esn`:`7esn`)Assert {`3esn`:\"d_str\" Is Null Is Null,usn1:0X0123456789ABCDEF[123456789]}.`5esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`8esn`:`3esn`]-()Assert Exists({@usn5:$`3esn` Is Not Null}.`4esn`!)"), - octest_legacy:ct_string("Return *,Reduce(`2esn`=12[1.e1..{_usn3}][1.e1..1.0],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{#usn8}[010]) Is Not Null Is Not Null,usn1 In 7 In {123456789} As `5esn` Return Distinct 07 Is Not Null Is Not Null As `6esn`,(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})[[{@usn6}[{999}..][00..],@usn5 =~{`5esn`} =~`5esn`,`7esn` Is Null]][Reduce(`7esn`=0X0123456789ABCDEF Is Null Is Null,`5esn` In $999[0.0..]|$1000[Null][`4esn`])] As @usn6 Limit Shortestpath((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]}))[None(#usn7 In `2esn`[..$#usn8][..Count(*)])][(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})] Detach Delete $`1esn` =~0X7,.e0 Ends With 0.12,0e0[`8esn`..][$123456789..] Union All Create _usn3=(((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5))),(:``:#usn8{_usn3:$`7esn` Is Null Is Null})"), - octest_legacy:ct_string("Create Constraint On(#usn8:`4esn`)Assert Exists(Shortestpath(((({#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[`4esn`]->(:`6esn`$123456789)))).usn2!)"), - octest_legacy:ct_string("Create Constraint On(`2esn`:usn2)Assert None(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where $@usn5 =~1000 =~1000).`5esn` Is Unique"), - octest_legacy:ct_string("Start usn2=Node:`4esn`('s_str') Union Create Allshortestpaths((({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}))) Delete $_usn4[0e0..][False..],01234567 Is Null Is Null Start `6esn`=Node:``('s_str') Where 12.e12[7..$`6esn`] Union Foreach(#usn7 In .e1 =~{@usn6} =~Null| Create (:`2esn`:usn1{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}) Start `6esn`=Node:@usn5({0}) Where $#usn7[#usn7..]) Optional Match (((`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[usn1?:@usn5*]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})-[#usn7:@usn5 *0X7..]->(`2esn` ))),Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))) Where `7esn` In {123456789} In `1esn`"), - octest_legacy:ct_string("Drop Constraint On(usn2:`4esn`)Assert Exists(None(`4esn` In $`3esn` Is Not Null Where `2esn`[..$#usn8][..Count(*)]).`3esn`)"), - octest_legacy:ct_string("Create Constraint On(`6esn`:@usn6)Assert Allshortestpaths(((@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[? *..12{#usn8:`5esn` Is Null,#usn8:`1esn`[{usn1}..``][7..$#usn8]}]-(`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]}))).`7esn`? Is Unique"), - octest_legacy:ct_string("Optional Match `7esn`=Allshortestpaths(((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[`1esn`?:usn2|``{_usn4:$`4esn`[..$`3esn`][..0.0],@usn6:0e0 Starts With 2.12 Starts With $12}]->(:_usn3:_usn3{`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})<-[`8esn` *0X0123456789ABCDEF]->(usn2 :_usn4))),#usn7=Allshortestpaths((@usn6 :`6esn`)<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3)) Using Join On `6esn`,`8esn`,`4esn` Using Scan `4esn`:`2esn` Where 0.12 Starts With $`5esn` Starts With 12 Load Csv With Headers From Filter(`8esn` In 01[2.12..`8esn`] Where 1e1 In 123.654 In `3esn`) Is Not Null As usn2 Union All Return Distinct {`5esn`}[0..`8esn`][0..Null] As `7esn`,usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010]) Is Not Null Is Not Null As `7esn`,{0}[{`8esn`}..`4esn`] As #usn8 Skip {_usn4} Is Not Null Is Not Null Limit 9e12[`6esn`..12.0] Union All Load Csv With Headers From 0Xa[2.12] As `7esn` Fieldterminator \"d_str\" Start `2esn`=Relationship:usn2(`8esn`={`8esn`}) ,usn2=Node:`4esn`('s_str')Where Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6} Unwind Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`3esn`} In 01)[Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12e12 Contains 0Xa|Null[$#usn7])..Allshortestpaths(((`` {`3esn`:{12} Contains {123456789} Contains `4esn`})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})))][Reduce(`6esn`=7[..123456789][..{@usn6}],`5esn` In \"d_str\" Is Null Is Null|$_usn4 Is Not Null Is Not Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] As `6esn`"), - octest_legacy:ct_string("Create `7esn`=Shortestpath((((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``})))),((:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12}))"), - octest_legacy:ct_string("Load Csv From Shortestpath((_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})) Contains [`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 7 Starts With {@usn6} Starts With $``|.e12 Is Not Null Is Not Null] As `2esn` Fieldterminator 's_str' Start #usn8=Rel:`7esn`(`6esn`={_usn4}) Foreach(#usn8 In $`8esn`| Remove Reduce(usn2=#usn7 Is Null Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{_usn3}[12.e12]).@usn6?,#usn8(Distinct $#usn7[@usn5..{1000}][1.e1..7]).#usn7!,Reduce(#usn7=usn1 Is Null,`8esn` In 01[2.12..`8esn`]|{_usn3}[..\"d_str\"][..`5esn`])._usn4? Remove `4esn`(Distinct usn1 Is Not Null).@usn5,Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where False Starts With {`5esn`}).#usn7,Reduce(`8esn`=123456789 Ends With 01234567 Ends With 1.e1,_usn3 In {`3esn`}[`2esn`]|0X7 =~9e1)._usn3!) Union All Unwind 010[#usn7..True] As _usn4 Delete $`8esn` In {`1esn`} In 12,Reduce(`4esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|False[..``]) Is Null Is Null,Reduce(`6esn`=@usn5 Is Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{12} Ends With 1.0 Ends With .e0)[Filter(_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null)..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`|`7esn`[..2.12][..00])] Union With Distinct .e12[..`7esn`][..0Xa],123.654 Is Not Null Is Not Null As `8esn`,All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Limit {7} In `2esn` Where 0e0 Contains Null Foreach(#usn8 In .e12 Ends With $`2esn` Ends With {``}| Start `3esn`=Node:@usn5({0}) ,`2esn`=Relationship:`3esn`(\"d_str\")) Merge (:`2esn`:usn1{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]})"), - octest_legacy:ct_string("Create Constraint On(`5esn`:`4esn`)Assert Exists(Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {_usn4} In {12} In $0).usn2?)"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:`5esn`)Assert Exists(({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]-(:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654}).@usn5?)"), - octest_legacy:ct_string("Unwind $0[$`1esn`..07] As usn2 With .e0 Ends With 0.12 As `6esn` Order By 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] Asc,[#usn8 In 7[..999][..{#usn8}] Where {12} =~#usn8|\"d_str\" Contains {123456789} Contains 01] Contains {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Descending Skip 0.0[Null][$`2esn`] Where 1000 In {`8esn`} In 01 Foreach(`8esn` In {#usn8}[$@usn5..usn1][$1000..0xabc]| Detach Delete Count(*) Contains $#usn7 Contains 1e1 Return Distinct *,{_usn4:Count ( * )[True..][{#usn7}..],``:{``} Ends With `7esn` Ends With 0.0} In (usn2 {``:01[{@usn5}]})<-[?:_usn4|:usn2{`8esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],``:_usn3 Contains $123456789 Contains ``}]->(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(:_usn4{_usn4:{7} In `2esn`}) In {`4esn`:`7esn` Is Null} As `2esn`,`5esn` Is Null Order By Reduce(@usn6=$1000[999],`8esn` In 01[2.12..`8esn`]|#usn7 Is Null Is Null)[_usn3(0.12 =~$0 =~$0)..][count($12 Ends With 07 Ends With $123456789,`8esn`[{123456789}..])..] Desc Skip `5esn`({12} Ends With 1.0 Ends With .e0) Contains `3esn`(`5esn`[{`4esn`}..`2esn`],9e1[2.12..{#usn8}]) Contains (@usn5 :#usn7)<-[``?:`3esn`|:#usn8{`1esn`:.e0[..$`8esn`]}]-(`5esn` {`4esn`:01 Is Null})<-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(_usn4 ) Limit {@usn5} =~Count ( * ) =~12.0)"), - octest_legacy:ct_string("Drop Constraint On()-[_usn4:@usn5]-()Assert Exists(Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where ``[$`2esn`]).`6esn`?)"), - octest_legacy:ct_string("Start #usn7=Node:`5esn`(\"d_str\") With Distinct None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As `5esn`,01 Is Null As `2esn`,{1000} =~$_usn4 Detach Delete Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})] Union All Detach Delete $#usn7 Is Not Null Merge ({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`) On Match Set _usn3+={_usn3}[12.e12],`3esn`+=@usn5 =~{`5esn`} =~`5esn`,#usn8 =[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*)) Union All Start `8esn`=Node:`7esn`({_usn3}) Where 1.0 Contains $_usn4 Remove Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..]).`2esn`,({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)._usn4? Delete Case {`8esn`} Ends With `6esn` When False Is Null Is Null Then 's_str' In 00 Else 123456789 Ends With $`6esn` Ends With $#usn7 End Starts With Case `1esn` =~0 =~$#usn7 When $#usn8[9e12..][.e1..] Then False =~$7 =~2.12 When {123456789}[9e12][{0}] Then 12.0 =~999 =~$_usn3 End,{`7esn`} Starts With $123456789 Starts With $@usn6"), - octest_legacy:ct_string("Create Constraint On()-[`7esn`:usn1]-()Assert Exists(Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]|07[..True][..9e12]).`8esn`!)"), - octest_legacy:ct_string("Drop Constraint On(usn2:``)Assert Exists(Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 's_str' Ends With 7 Ends With {_usn4}).`2esn`?)"), - octest_legacy:ct_string("Create Constraint On()-[``:`2esn`]->()Assert Exists(Shortestpath((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})).usn2?)"), - octest_legacy:ct_string("Unwind Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 1.0 =~7 =~{usn2}) Is Not Null Is Not Null As usn2 Merge `8esn`=(#usn7 :`6esn`$1000)<-[`6esn`? *..010]-(`` :`1esn`)"), - octest_legacy:ct_string("Start `8esn`=Node:@usn6({_usn4}) Where `3esn`[`3esn`..][#usn8..] Start #usn7=Node:`6esn`(`3esn`=\"d_str\") ,`7esn`=Node:``(@usn6={usn1})Where 9e12 Is Not Null Is Not Null Create Unique ((:usn2{#usn8:$`5esn` In $`6esn`})<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})),_usn3=(({@usn6:01234567 Ends With .e12 Ends With $#usn7,`4esn`:12.e12[`3esn`]})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(#usn7 :`7esn`:_usn3)) Union Foreach(_usn4 In {@usn6} Ends With 's_str' Ends With 12.0| With Distinct @usn6 Contains $1000 Contains {`7esn`} Unwind 999 Ends With Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 1.0 In Count(*)) As `5esn`) Foreach(@usn6 In $usn1 Ends With $`` Ends With $12| Create `8esn`=Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))),#usn8=(:`2esn`:usn1)-[`1esn`:@usn6|`6esn`*..{`7esn`:7[{0}..{_usn4}]}]->(`8esn` {_usn4:`4esn`[1.0],`5esn`:0e0 Ends With 1.e1 Ends With $`4esn`})-[:@usn5{@usn5:{#usn7}[9e1..][{123456789}..],``:#usn7 Is Not Null Is Not Null}]->(`4esn` :`6esn`{_usn3:$123456789 Ends With `3esn` Ends With 123456789,`6esn`:0e0 Starts With 2.12 Starts With $12})) Foreach(`6esn` In [#usn8 In {`5esn`}[.e1..``] Where {`1esn`}[12.0..`2esn`][@usn6..{usn1}]] Is Not Null| With Distinct True[..$`6esn`],{@usn6} Ends With 's_str' Ends With 12.0 As `1esn` Order By Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $`3esn` =~{#usn8}|12.0 Ends With True)[..usn2(Distinct)] Ascending Skip Case When {``} Starts With $`2esn` Starts With `1esn` Then $`5esn` Starts With $0 Starts With {0} End[None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e1 Is Not Null)..[`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1]] Load Csv With Headers From `5esn`({12} Ends With 1.0 Ends With .e0) Contains `3esn`(`5esn`[{`4esn`}..`2esn`],9e1[2.12..{#usn8}]) Contains (@usn5 :#usn7)<-[``?:`3esn`|:#usn8{`1esn`:.e0[..$`8esn`]}]-(`5esn` {`4esn`:01 Is Null})<-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(_usn4 ) As `6esn` Fieldterminator 's_str') Union Delete 7[..999][..{#usn8}],`1esn`[{usn1}..``][7..$#usn8] Unwind Case When {_usn4} Starts With 0.e0 Starts With 0x0 Then 12 Ends With 0x0 Ends With 0.e0 Else $1000 Is Null Is Null End Starts With `7esn`(Distinct $#usn7[..{`5esn`}][..9e12]) Starts With {`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`} As usn1"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn` As usn2 Fieldterminator \"d_str\" Foreach(_usn4 In 9e0[1.e1..][0Xa..]| Match Allshortestpaths(((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(@usn5 :`4esn`)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]}))) Using Index `1esn`:@usn5(#usn8))"), - octest_legacy:ct_string("Drop Constraint On()-[`2esn`:`2esn`]->()Assert Exists(Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``]).`8esn`)"), - octest_legacy:ct_string("Create Constraint On(#usn7:`3esn`)Assert Exists([{12} Contains {123456789} Contains `4esn`,1.e1[`8esn`][00],1.0[$`1esn`..][$123456789..]].usn1?)"), - octest_legacy:ct_string("Load Csv With Headers From Extract(#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12) Ends With [False =~$7 =~2.12,$`4esn` In Null In 0xabc,{`7esn`} Starts With $123456789 Starts With $@usn6] As @usn6 Fieldterminator 's_str' Load Csv With Headers From {`2esn`} Ends With 12.0 As _usn4 Unwind {`6esn`} =~$999 As `8esn` Union Merge ((#usn7 :``:#usn8{`2esn`})<-[usn1?:#usn8|`1esn`]->({@usn5:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],@usn6:$0})<-[@usn6?:`5esn`]-(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})) On Create Set #usn7+=01 =~{_usn3} =~`3esn` On Match Set #usn7:@usn5 Union Delete $_usn4 Is Null Is Null,.e0 Starts With 0 Starts With 0.e0,$`1esn`[1.0..][_usn3..] Foreach(`3esn` In {`7esn`}[`6esn`][#usn7]| With Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where @usn6 Is Null Is Null)[(`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})..] As `3esn`,{`3esn`} In 0X7 Skip `1esn` In .e0 In {`3esn`} Limit Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End Create Unique #usn7=((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})),Shortestpath((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))))) Create Unique _usn4=(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})<-[ *..010{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}}]->(:_usn4$@usn5)<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]->(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc}),(((usn1 :`7esn`:_usn3{_usn4:{999}})-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]-(:`1esn`{`4esn`:12e12 Ends With {usn1}})-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})))"), - octest_legacy:ct_string("Create Constraint On(`6esn`:`3esn`)Assert Allshortestpaths((({_usn3:.e12[@usn5..$12]})-[`7esn` *0X0123456789ABCDEF]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0}))).usn1 Is Unique"), - octest_legacy:ct_string("Create Constraint On(#usn7:`8esn`)Assert Single(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {`4esn`} =~{7} =~{`7esn`}).`` Is Unique"), - octest_legacy:ct_string("Load Csv With Headers From {`1esn`}[12.0..`2esn`][@usn6..{usn1}] As `8esn` Fieldterminator 's_str' Detach Delete (:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[`6esn` *0Xa{_usn3}]-({@usn5:usn1 Is Not Null})-[:`8esn` *0..{_usn3:`4esn` Ends With 07 Ends With {`3esn`}}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})[..[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]|{7}[..12e12][..Count ( * )]]],({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})[[@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where 0 In `2esn` In 010]..][{_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null}..] With *,All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8) Is Not Null Is Not Null As `2esn`,Allshortestpaths(((`7esn` {`2esn`:$`6esn`[123456789..12][True..{`3esn`}],#usn7:$_usn3[Count(*)]})-[#usn8? *..07$_usn4]->(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}))) =~(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null}) =~{#usn8:{`3esn`}[@usn6..0Xa][{12}..0Xa],@usn5:False Is Null Is Null} Order By [`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null Ascending,0.0 =~0 =~`6esn` Ascending Skip $_usn3[.e0..$usn2] Union Remove Reduce(#usn7=`7esn` Starts With $#usn7 Starts With $`7esn`,#usn8 In 7[..999][..{#usn8}]|`1esn` Ends With {_usn3} Ends With `2esn`).`8esn`,Any(`8esn` In 01[2.12..`8esn`] Where {usn2}).`1esn`!,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}|$#usn8 Ends With $`2esn` Ends With $@usn6].usn1? Union With Distinct 12.e12[`3esn`] As #usn7,{12} Ends With 1.0 Ends With .e0 As `5esn` Skip Filter(`4esn` In $`3esn` Is Not Null Where {`6esn`}) =~{_usn3:{`3esn`} Is Not Null Is Not Null} Where 0X7[..2.12] Detach Delete 12.0 Ends With {``}"), - octest_legacy:ct_string("Create Unique Shortestpath((:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[`6esn`]-(`1esn` {@usn5:1.0[0e0..0.e0]})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})),(((#usn7 :`8esn`:`7esn`{`5esn`:1.0 In Count(*)})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000}))) Merge @usn6=((`7esn` {`7esn`:{123456789} Contains $#usn8})) On Match Set `` =2.12 =~False,#usn7+=$usn1[..{`6esn`}],#usn7+=(:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12} With Distinct $_usn3 In {1000} In 0.12,$_usn3[..1000] Order By `7esn`[$12..][$`8esn`..] Descending,9e1[2.12] Ascending,$`1esn` Starts With {`8esn`} Descending Limit @usn6 Contains Null Contains $`7esn` Union Remove Filter(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 7[..999][..{#usn8}]).usn1!,_usn4:`7esn`:_usn3 Create `7esn`=((:`3esn`:@usn5$7))"), - octest_legacy:ct_string("Create Constraint On(`7esn`:`7esn`)Assert Exists(Extract(`8esn` In 01[2.12..`8esn`] Where Count ( * ) Ends With $@usn5|Count ( * )[True..][{#usn7}..]).`6esn`!)"), - octest_legacy:ct_string("Create Constraint On(@usn6:``)Assert (#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})<-[? *1000..00]->(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}).`8esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`1esn`:_usn3]-()Assert Exists([_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null|@usn6 Is Null Is Null].`6esn`)"), - octest_legacy:ct_string("Foreach(`5esn` In 0.0[`7esn`..][12.e12..]| Load Csv With Headers From {`6esn`}[..$@usn6][..`7esn`] As @usn6 Fieldterminator \"d_str\") Remove @usn6:usn2 Union Optional Match Allshortestpaths(((`` :usn2)<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})-[`2esn`?:usn2|``{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}]-({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}))) Where `7esn`[$0][9e12] Start _usn4=Node:``(\"d_str\") Where `6esn`[12..$usn2][{#usn8}..{usn2}] Union Foreach(`3esn` In Reduce(usn2=01[{`2esn`}..{@usn6}][$`2esn`..0.0],usn1 In @usn5 =~{`5esn`} =~`5esn`|$#usn8 Ends With $`2esn` Ends With $@usn6) =~[#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01|{0} Ends With $_usn3 Ends With $`7esn`] =~(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True})| Detach Delete 's_str' =~{_usn4} =~$`7esn`,(:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0}) In [`4esn`[..Count ( * )][..{#usn7}]],$`5esn` Starts With `` Unwind [#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn2 Is Null|@usn6[$`3esn`..{`3esn`}]] In Filter(_usn3 In {`3esn`}[`2esn`] Where 1e1 In 123.654 In `3esn`) As _usn3) Delete 010 In Count(*),Count(*)[..usn2][..usn2]"), - octest_legacy:ct_string("Foreach(@usn5 In 1.0 Starts With 12e12 Starts With {`5esn`}| Optional Match `3esn`=((`1esn` {#usn7:{_usn4} In {12} In $0})-[{#usn8:$#usn8 =~{@usn5},`8esn`:0X0123456789ABCDEF[{_usn4}..00]}]-(_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})) Using Scan `3esn`:`8esn` Using Scan `6esn`:`2esn` Where {0}[01][`7esn`] Start #usn7=Node:@usn5(usn2='s_str') Where 9e1[2.12..{#usn8}])"), - octest_legacy:ct_string("Start _usn4=Node( {123456789}) ,`8esn`=Relationship:usn2('s_str')Where {_usn3}[12.e12] Union Foreach(@usn5 In $_usn4[1.e1]['s_str']| Delete $12[$1000..123456789] With Distinct *,Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))) As _usn3 Order By 1.e1[$`1esn`..@usn6][$0..$_usn3] Asc,Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Is Not Null Is Not Null Asc Skip [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789] =~Reduce(_usn3=$``,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{#usn8} Is Null) =~Case {``} Is Null When 2.12 Then $123456789 Ends With {`1esn`} Ends With $`4esn` End Limit {usn1} Ends With $0) Merge `3esn`=(((:`5esn`)<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})-[`3esn`:#usn7]-({@usn6:$usn1 Ends With $`` Ends With $12}))) On Match Set usn1+=Extract(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|{@usn5} Is Null Is Null)[Case When $0[..9e1] Then Count(*)[..usn2][..usn2] When {`2esn`} Starts With 0.0 Starts With {usn1} Then 0e0 In @usn5 Else 01 =~{_usn3} =~`3esn` End.._usn3(1.0 In Count(*),0[{usn2}..][$`6esn`..])][count(Distinct $12[Null..Count(*)][{`5esn`}..{999}],$`4esn`[`7esn`])..Case When $123456789 Ends With $999 Ends With {999} Then `3esn`[{usn1}] When #usn7 =~Count ( * ) =~`` Then $_usn4 Starts With 1e1 End],`7esn` =[12.0,2.12 Is Not Null Is Not Null][Case When usn1 In 7 In {123456789} Then `5esn`[_usn4..] When `7esn`[9e0..] Then {`3esn`} In 01 End..999] Union With Distinct *,(:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As `` Skip (:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]}) Is Null Limit $`8esn` In {`1esn`} In 12 Create @usn6=((`` :`7esn`:_usn3)),((usn2 :`4esn`)-[_usn3:#usn8|`1esn`{_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]}]->(@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:`5esn` *0..{_usn4:7[$`2esn`..{`5esn`}]}]->())"), - octest_legacy:ct_string("Foreach(`8esn` In $`3esn` Is Not Null Is Not Null| With Distinct *,{``}[$#usn8..$usn1] As `3esn` Order By $usn2[$`2esn`..`4esn`] Ascending,$`6esn`[{_usn3}..$`4esn`][$_usn4...e12] Asc,True[{_usn4}..][False..] Ascending Where \"d_str\" Contains {123456789} Contains 01 Start `3esn`=Relationship:#usn7('s_str') ) Union Load Csv From All(#usn8 In {`5esn`}[.e1..``] Where {_usn3}[..\"d_str\"][..`5esn`])[..Allshortestpaths((`5esn` :`4esn`))] As @usn5 Load Csv From None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {@usn6}[{999}..][00..]) Ends With Shortestpath((`6esn` {_usn4:0Xa =~Null =~$``})<-[``? *0X7..]->(`` :`1esn`)) Ends With Reduce(_usn3={7}[..1.0][..9e0],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|`1esn` Contains {usn2} Contains $#usn8) As `` Fieldterminator 's_str' Union Create Unique (((`6esn` :@usn5)-[usn1?:_usn3|_usn3]-(usn2 :#usn7)<-[#usn8:@usn6|`6esn`{`8esn`:True[00][0Xa]}]->(`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]}))),Allshortestpaths((((:_usn4{usn2:0X0123456789ABCDEF[123456789]})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)))) Optional Match ({`3esn`:usn1 Is Null Is Null})-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]-({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`4esn` {@usn6:{12}[..0X7]}) Using Join On _usn3,@usn5"), - octest_legacy:ct_string("Create Constraint On(_usn4:_usn3)Assert [`5esn` In $999[0.0..] Where $`3esn`[..$123456789][..$`1esn`]|7[..999][..{#usn8}]]._usn4? Is Unique"), - octest_legacy:ct_string("Remove [@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where 01[2.12..`8esn`]].@usn6?,Any(#usn7 In {``} Is Not Null Where {`1esn`}[usn1][.e1]).#usn8? Union All Delete (:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case `8esn` Contains $usn1 Contains $12 When 12.e12[7..$`6esn`] Then {12} Contains {123456789} Contains `4esn` When $`1esn`[1.0..][_usn3..] Then `7esn`[$0][9e12] End,Case usn2 Is Null When 1000[0X7..2.12] Then `7esn`[9e0..] End Starts With Reduce(@usn6=$@usn5 Is Not Null,`2esn` In `1esn` =~\"d_str\"|{999} Starts With $999),$@usn6[12.0..][#usn7..]"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From 9e1[2.12..{#usn8}] As `2esn` "), - octest_legacy:ct_string("Start usn1=Node:`3esn`(`2esn`={usn1}) ,@usn5=Relationship:`6esn`(`8esn`='s_str') Merge ``=((:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?:`5esn` *0..]->(usn2 :``:#usn8)<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})) On Match Set All(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`).`6esn`! =_usn4 Contains 2.12 On Match Set `1esn`+=Single(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}])[Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] Union Unwind `7esn`[..{usn1}] As `4esn` Create Unique @usn5=Allshortestpaths((:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})-[:#usn7 *..010]->(#usn8 :usn1)),`4esn`=Allshortestpaths((({usn1:`5esn`[_usn4..]})-[usn1?:_usn3|_usn3]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))) Merge Shortestpath(((`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}))) Union Start _usn3=Node:`6esn`('s_str') With Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`3esn`} In 01)[Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12e12 Contains 0Xa|Null[$#usn7])..Allshortestpaths(((`` {`3esn`:{12} Contains {123456789} Contains `4esn`})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})))][Reduce(`6esn`=7[..123456789][..{@usn6}],`5esn` In \"d_str\" Is Null Is Null|$_usn4 Is Not Null Is Not Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] As _usn4,Allshortestpaths((:@usn5{_usn3:07 =~01})) Starts With [`3esn` In {7} Is Null Where {`4esn`} =~{7} =~{`7esn`}] Starts With ({`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}})<-[`6esn`?:_usn4|:usn2]-(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}) Skip 7 Ends With (@usn5 {`7esn`:$`6esn`[010..]})-[:`8esn` *..01]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]}) Ends With #usn8(False =~$7 =~2.12) Where $_usn4 Starts With 1e1"), - octest_legacy:ct_string("Create Constraint On(`5esn`:`5esn`)Assert Exists(Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..])._usn4!)"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:@usn5)Assert Filter(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {``} Starts With $`2esn` Starts With `1esn`).`4esn` Is Unique"), - octest_legacy:ct_string("Create @usn6=((`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})),(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})<-[usn2?:`5esn` *0..]-({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}) Unwind Case When False Then 0.e0 Ends With $#usn7 Ends With $7 When {@usn6}[{999}..][00..] Then `5esn` Ends With {``} Ends With 12.e12 Else 123.654[$`1esn`] End[Reduce(#usn8=$`6esn` Ends With Count(*),`2esn` In `1esn` =~\"d_str\"|_usn4 Contains 2.12)..] As `8esn` Union Start #usn7=Node:`6esn`(`3esn`=\"d_str\") ,`7esn`=Node:``(@usn6={usn1})Where 9e12 Is Not Null Is Not Null With Distinct {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null} Contains {@usn5:{`3esn`} In 01} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 1.0[0X7][{`5esn`}]|{``}[010..][0xabc..]) As #usn8 Where {1000}[{_usn3}..] Detach Delete 12[1.e1..{_usn3}][1.e1..1.0],{_usn4:`` Ends With 0Xa Ends With `2esn`}[[{`4esn`} Ends With {123456789} Ends With $`4esn`,$#usn7[#usn7..]]],Extract(_usn3 In {`3esn`}[`2esn`] Where _usn3 Contains $123456789 Contains ``)[Extract(`5esn` In \"d_str\" Is Null Is Null Where 00[$`7esn`]|$`6esn` Is Null)] Union With Distinct {#usn7}[`2esn`..],Filter(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0]) Ends With Case When {#usn8}[010] Then False =~$7 =~2.12 End,0.0 =~999 As `4esn` Detach Delete [0x0[{`7esn`}..][$usn2..],{`4esn`} =~{7} =~{`7esn`},usn1 In 7 In {123456789}] Is Null Is Null,Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`])[Case 00[{`8esn`}..][{`8esn`}..] When 0e0 Starts With 2.12 Starts With $12 Then Null[``] When 12e12 Ends With {usn1} Then $`2esn` Else 2.12['s_str'..$12][{`1esn`}..`2esn`] End..],1000 =~@usn6 =~0x0"), - octest_legacy:ct_string("Drop Constraint On()-[#usn7:@usn5]-()Assert Exists(Any(`2esn` In `1esn` =~\"d_str\" Where $`4esn` In Null In 0xabc)._usn3?)"), - octest_legacy:ct_string("Unwind All(#usn8 In {`5esn`}[.e1..``] Where {_usn3}[..\"d_str\"][..`5esn`])[..Allshortestpaths((`5esn` :`4esn`))] As `2esn` Merge ((`3esn` :usn2)) On Match Set _usn3+=$`3esn` Is Not Null Is Not Null,`3esn` ={`4esn`} Ends With {usn2} Ends With {999},{@usn6:{999} Starts With $999,`4esn`:$usn1[{`5esn`}][$`6esn`]}.@usn5? =$usn1[..{`6esn`}] Create Unique `5esn`=Shortestpath((_usn3 :#usn7)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})<-[`5esn`? *..12{`8esn`:{`7esn`}[`6esn`][#usn7],`1esn`:0x0 Ends With $12}]->({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000})),((:#usn8:#usn8{_usn4})<-[usn1?:`7esn`]-(:usn1{usn1:{`6esn`}})) Union Remove Reduce(usn2=#usn7 Is Null Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{_usn3}[12.e12]).@usn6?,#usn8(Distinct $#usn7[@usn5..{1000}][1.e1..7]).#usn7!,Reduce(#usn7=usn1 Is Null,`8esn` In 01[2.12..`8esn`]|{_usn3}[..\"d_str\"][..`5esn`])._usn4? Return *,$12 Starts With $`8esn` Starts With $`1esn` As `1esn`,$_usn4 Contains Null Contains #usn8 Skip [`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null Match usn2=Shortestpath(((_usn4 :``:#usn8)-[:`8esn` *..01]->({#usn7:0.e0 Starts With `2esn`})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->($#usn8))) Using Index `8esn`:@usn6(`5esn`) Union All Merge (`5esn` {`8esn`:1000[Null..{123456789}]})-[:`6esn`|`5esn` *123456789..]-(#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})-[`8esn`?:usn1|@usn6{`8esn`:\"d_str\" Contains {123456789} Contains 01,@usn5:`1esn` In .e0 In {`3esn`}}]-(`6esn` {`7esn`:$`6esn`[010..]}) Foreach(`5esn` In .e0[12.e12..]| Optional Match `5esn`=(((_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(#usn7 {@usn5:$`8esn` =~{1000}})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]}))),usn1=(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})-[_usn4? *..01]-(_usn4 :usn2{usn1:7[True..][2.12..],`8esn`:2.12 Ends With $_usn3 Ends With `3esn`})-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]-({`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}) Using Index `1esn`:_usn3(_usn4) Using Index `2esn`:`3esn`(@usn6) Where #usn8 With ()-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[@usn6?$0]->({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})[{#usn8:_usn4 Starts With $_usn4 Starts With 12.e12}..Allshortestpaths(((@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})))][(usn2 :usn2)<-[@usn5? *..01]-(`8esn` :@usn6:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})..Case When #usn8 Is Not Null Is Not Null Then `3esn`[{usn1}] Else 0.12 Starts With $`5esn` Starts With 12 End],0Xa[..{`4esn`}][..12.0],$`` Ends With 0.0 Ends With {1000} Order By 0.0 =~999 Asc,1e1 In \"d_str\" In `7esn` Descending Skip {123456789}[{`8esn`}][$`8esn`] Limit Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789])[`7esn`(Distinct Count ( * ) =~$usn2 =~$usn2)])"), - octest_legacy:ct_string("Create Constraint On(`2esn`:`3esn`)Assert Case #usn8[..{#usn7}] When $@usn5 Starts With $1000 Then 0e0 In @usn5 Else $#usn7 Contains 0x0 Contains 1000 End.usn2 Is Unique"), - octest_legacy:ct_string("Create Constraint On(`7esn`:@usn6)Assert Exists(Filter(`` In `` Is Not Null Is Not Null Where 9e1[1000][{123456789}]).`6esn`?)"), - octest_legacy:ct_string("Create Constraint On(#usn7:`1esn`)Assert Exists(Shortestpath((#usn8 {#usn7:`4esn` Ends With 07 Ends With {`3esn`},`3esn`:{0} In $_usn3})<-[:`4esn` *..010{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]->(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})).#usn7)"), - octest_legacy:ct_string("Foreach(`7esn` In `1esn`(Distinct $@usn5[..12e12][..$123456789],{#usn7} Is Not Null Is Not Null)[{`7esn`:\"d_str\" Starts With $123456789}..]| Load Csv With Headers From `7esn` In 00 As @usn5 )"), - octest_legacy:ct_string("Drop Constraint On(usn2:`5esn`)Assert [{1000} =~0 =~123.654,\"d_str\" Starts With $123456789,$`2esn`[2.12..'s_str'][{@usn6}.._usn4]].`4esn`? Is Unique"), - octest_legacy:ct_string("Create Shortestpath(((:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[`7esn`? *7..12]->({`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})<-[{`6esn`:2.12 Contains `1esn`,`1esn`:9e12[`6esn`..12.0]}]-(`4esn` {`6esn`:#usn8[..{#usn7}]}))) Union All Load Csv With Headers From 0.0 In $usn1 As `5esn` Fieldterminator 's_str' Create usn2=((`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(#usn8 {@usn5:_usn3 Contains $123456789 Contains ``,_usn4:{``} Ends With `7esn` Ends With 0.0})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)),(#usn8 :@usn6:#usn8) Union All Create Unique `1esn`=Allshortestpaths(()<-[_usn4 *..999]->(`7esn` {#usn7:\"d_str\" Contains {123456789} Contains 01,@usn5:$1000 In $1000 In $`3esn`}))"), - octest_legacy:ct_string("Remove None(`2esn` In `1esn` =~\"d_str\" Where 0e0 Ends With 1.e1 Ends With $`4esn`)._usn4? Create #usn8=Shortestpath(((`5esn` )-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(@usn6 {`3esn`:{``} Is Not Null})<-[`1esn` *0Xa{_usn3:Null Ends With `2esn` Ends With $usn1,#usn8:.e12 Is Not Null Is Not Null}]->(usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})))"), - octest_legacy:ct_string("Drop Constraint On()-[`5esn`:``]-()Assert Exists({`4esn`:12e12 Ends With {usn1}}._usn3!)"), - octest_legacy:ct_string("Drop Constraint On(usn1:`5esn`)Assert ({`1esn`:$`8esn`[1000..0Xa]})-[:`8esn` *0..{_usn3:`4esn` Ends With 07 Ends With {`3esn`}}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null}).`8esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On()<-[usn1:@usn6]-()Assert Exists(Shortestpath((((`8esn` :#usn8:#usn8{_usn4:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[#usn8]-(`6esn` :#usn7)<-[:#usn7 *..010]-(@usn6 :@usn5{usn2:$`5esn`[..$`5esn`][..$12]})))).@usn5!)"), - octest_legacy:ct_string("Create Constraint On(_usn4:`8esn`)Assert $`7esn`.`8esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(#usn8:``)Assert Exists(Any(`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"]).@usn6)"), - octest_legacy:ct_string("Create Constraint On(`2esn`:_usn4)Assert Exists(Filter(#usn8 In 7[..999][..{#usn8}] Where 2.12['s_str'..$12][{`1esn`}..`2esn`]).@usn5)"), - octest_legacy:ct_string("Merge @usn6=((`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})) On Match Set Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {`6esn`} =~$999).`7esn`! =Extract(_usn3 In {`3esn`}[`2esn`] Where _usn3 Contains $123456789 Contains ``)[Extract(`5esn` In \"d_str\" Is Null Is Null Where 00[$`7esn`]|$`6esn` Is Null)],``+=`` Ends With 0Xa Ends With `2esn`,`` =`3esn`[{0}][usn1] On Match Set `6esn`:`8esn`:`7esn` Union All Remove usn1:`5esn` Load Csv With Headers From $_usn4 Contains Null Contains #usn8 As #usn7 Fieldterminator \"d_str\" Union All Merge Allshortestpaths(((`` :usn2)<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})-[`2esn`?:usn2|``{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}]-({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}))) On Match Set [#usn8 In {`5esn`}[.e1..``] Where {7}[..12e12][..Count ( * )]|$123456789 Ends With {`1esn`} Ends With $`4esn`].`6esn`! =Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7) In [{_usn3}[..$12][..0.12],usn1 Is Null] In [#usn8 In 7[..999][..{#usn8}] Where $_usn3 Contains 999 Contains \"d_str\"] On Match Set Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0).``? ={@usn6}[{999}..][00..]"), - octest_legacy:ct_string("Drop Constraint On()<-[`4esn`:@usn5]-()Assert Exists([$@usn5[..12e12][..$123456789]].`3esn`?)"), - octest_legacy:ct_string("Drop Constraint On(_usn4:#usn7)Assert [{`2esn`} Starts With 0.0 Starts With {usn1}].usn1! Is Unique"), - octest_legacy:ct_string("Foreach(_usn4 In [1000 =~@usn6 =~0x0] Starts With {#usn8:$`7esn` =~{`8esn`} =~$usn1,`7esn`:0xabc[01..{999}][{7}..{`7esn`}]} Starts With `7esn`(Distinct 123.654[`3esn`..])| Unwind $12[`5esn`..] As `7esn` With *,`7esn` Is Null As `7esn`,None(`` In `` Is Not Null Is Not Null Where $`6esn` Is Null) Contains Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}))) Contains Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End Order By {usn2} Starts With $`8esn` Starts With Count ( * ) Asc,(:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(:_usn3:_usn3{``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Is Not Null Descending,.e0[..0X0123456789ABCDEF][...e12] Descending Limit {``}[...e12]) Union All Unwind {usn2} Starts With $`8esn` Starts With Count ( * ) As @usn5 Start usn1=Rel:@usn6(#usn7='s_str') ,`4esn`=Relationship:`3esn`({`1esn`})Where {123456789} Is Null Is Null"), - octest_legacy:ct_string("Drop Constraint On()-[@usn5:@usn6]->()Assert Exists(Reduce(`5esn`=$123456789 Starts With 9e0 Starts With 's_str',`` In 123456789 Ends With 12.e12 Ends With $`7esn`|False =~$7 =~2.12).`6esn`?)"), - octest_legacy:ct_string("Create Constraint On()<-[usn2:`4esn`]-()Assert Exists({#usn7:{`4esn`} =~9e0 =~{12},#usn7:True[07..$usn2][$7..{usn1}]}.#usn8!)"), - octest_legacy:ct_string("Create Constraint On(`1esn`:`4esn`)Assert (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})<-[`1esn`:_usn4|:usn2]->(`` :`3esn`:@usn5{`8esn`:`4esn` Is Not Null Is Not Null,`2esn`:2.12 Ends With $_usn3 Ends With `3esn`}).@usn6! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:#usn7)Assert Reduce(usn1=Count ( * ) Ends With 12.0,`3esn` In {7} Is Null|$999).`3esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:usn1)Assert [$@usn5 Starts With $1000,0x0 Is Null,`1esn`[{usn1}..``][7..$#usn8]]._usn3 Is Unique"), - octest_legacy:ct_string("With *,@usn6(`5esn`[.e0..][07..]) Is Null Is Null,Count(*) In $12 As @usn6 Order By @usn6 In 1000 In $`` Desc,usn1[..00][..$#usn8] Descending Where `` Ends With 0Xa Ends With `2esn` Unwind 9e0[..999] As #usn8"), - octest_legacy:ct_string("Foreach(`3esn` In $`7esn` Is Null Is Null| Create Unique usn2=Allshortestpaths((:`2esn`:usn1{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]})),((({@usn5:{usn2}[.e0..$999]})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(`6esn` :_usn3:_usn3{`4esn`:0Xa Starts With {`6esn`} Starts With $usn1})-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1}))) Detach Delete Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 2.12 Ends With $_usn3 Ends With `3esn`|{123456789} Contains $#usn8)[{`7esn`:$`6esn`[010..]}..],01 Ends With 999 Ends With {`7esn`},All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)])"), - octest_legacy:ct_string("Start @usn5=Node:#usn8(#usn7=\"d_str\") ,`8esn`=Rel:`1esn`(@usn5='s_str')Where {@usn6}[{999}..][00..] Optional Match (#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})<-[`6esn`?{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}),usn2=(@usn6 :``:#usn8)<-[?:`8esn`{`3esn`:1.0 In Count(*)}]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}) Using Index _usn4:`5esn`(`6esn`) Using Scan `6esn`:`2esn` Union All With Distinct *,Extract(`8esn` In 01[2.12..`8esn`] Where {usn2}|$0[12.e12..]) =~Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null|7 Ends With $`4esn`) =~(usn1 {`2esn`})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->(:_usn3:_usn3{`4esn`:12e12 Ends With {usn1}})<-[`7esn`?:`8esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}) Order By {_usn3}[{12}..$_usn4][`5esn`..$`5esn`] Asc,123.654 Contains $`4esn` Contains 1.0 Descending Limit $1000[999] Match (usn2 :#usn7)"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:`2esn`)Assert Filter(_usn3 In {`3esn`}[`2esn`] Where 0e0[07]).@usn6 Is Unique"), - octest_legacy:ct_string("Create Unique `5esn`=(#usn7 :`8esn`:`7esn`)<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[_usn4?:`1esn` *7..12]->(:#usn8:#usn8{_usn3:$_usn3['s_str'][07],`7esn`:$1000 In $1000 In $`3esn`}) With Distinct $`8esn` Contains 123456789 Contains $usn2,{_usn4} In {12} In $0,Extract(#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12) Ends With [False =~$7 =~2.12,$`4esn` In Null In 0xabc,{`7esn`} Starts With $123456789 Starts With $@usn6] Skip _usn3[..`8esn`][..2.12] Limit 0X7[0e0..`7esn`][1000..0e0] Foreach(`2esn` In [@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null] Is Null Is Null| Create Allshortestpaths(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))) With Distinct 0.0 Is Not Null Is Not Null As `8esn` Skip $`3esn` Is Not Null Is Not Null)"), - octest_legacy:ct_string("Return Distinct *,Case {#usn8} Is Not Null When {`4esn`} =~9e0 =~{12} Then _usn3[_usn3..][12.e12..] Else 123.654 Contains $`4esn` Contains 1.0 End[(`6esn` {`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]})<-[? *..0x0]->(`3esn` :`7esn`:_usn3)-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->(:``:#usn8{`7esn`:00 Starts With 0xabc,_usn3:{123456789} Contains $#usn8})..][Single(`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1)..] As `4esn`,All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By #usn8 Starts With `6esn` Starts With 12.e12 Desc Optional Match usn2=((`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(#usn8 {@usn5:_usn3 Contains $123456789 Contains ``,_usn4:{``} Ends With `7esn` Ends With 0.0})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)),Shortestpath(({@usn5:07[..True][..9e12]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]})) Using Index #usn8:`2esn`(`5esn`)"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:``)Assert Exists([`7esn`[$0][9e12],$`7esn`['s_str']].`6esn`!)"), - octest_legacy:ct_string("Create Constraint On(``:@usn5)Assert Exists(None(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {#usn8}[.._usn4][..$`3esn`])._usn4!)"), - octest_legacy:ct_string("Create Constraint On(#usn7:`6esn`)Assert Exists((:`7esn`:_usn3)<-[`6esn`?:`4esn` *..01]->(`3esn` :#usn7{usn2:12.0 =~999 =~$_usn3,@usn6:{usn2}[$`3esn`..][{#usn7}..]})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}).`4esn`)"), - octest_legacy:ct_string("Create Constraint On(`1esn`:@usn6)Assert Reduce(`4esn`={7}[$``][{@usn6}],usn1 In @usn5 =~{`5esn`} =~`5esn`|0.e0[123.654][01]).`4esn` Is Unique"), - octest_legacy:ct_string("Return Distinct {``} =~12 =~`` As `2esn`,Filter(`4esn` In $`3esn` Is Not Null Where {`6esn`}) =~{_usn3:{`3esn`} Is Not Null Is Not Null} Skip 1.0[00..] Limit 12.e12 Starts With {999} Starts With {`1esn`} Union All Merge (@usn5 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[:#usn8|`1esn`*{`8esn`:0Xa[usn2..]}]-(`3esn` :_usn3:_usn3{@usn5:False}) On Match Set #usn8+={#usn8}[1.e1...e12]"), - octest_legacy:ct_string("With $@usn6 Contains 07 As @usn5 Order By [`5esn` In $999[0.0..] Where `5esn` Starts With `3esn`|12e12 Is Not Null Is Not Null] Asc,010 =~{usn2} Asc,$12 Is Not Null Is Not Null Ascending Skip {usn2} =~12 Create Unique usn2=Allshortestpaths((:`2esn`:usn1{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]})),((({@usn5:{usn2}[.e0..$999]})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(`6esn` :_usn3:_usn3{`4esn`:0Xa Starts With {`6esn`} Starts With $usn1})-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1}))) Union Merge _usn4=Shortestpath(((#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]}))) Unwind @usn5 =~{`5esn`} =~`5esn` As _usn4"), - octest_legacy:ct_string("Start `6esn`=Node:``('s_str') ,usn2=Relationship( {`5esn`}) Delete $@usn5 Starts With #usn7"), - octest_legacy:ct_string("Create Constraint On(`2esn`:_usn4)Assert Shortestpath(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))).@usn6 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(#usn7:#usn7)Assert Exists([`4esn` In $`3esn` Is Not Null Where @usn5 =~{`5esn`} =~`5esn`|#usn8].@usn5?)"), - octest_legacy:ct_string("Create Constraint On()<-[`1esn`:`3esn`]-()Assert Exists(All(#usn7 In {``} Is Not Null Where {`6esn`} =~$999).`4esn`!)"), - octest_legacy:ct_string("Drop Constraint On(@usn6:``)Assert Exists(Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {#usn8}[.._usn4][..$`3esn`]).`8esn`)"), - octest_legacy:ct_string("Create Constraint On(``:`8esn`)Assert Exists(Single(#usn8 In {`5esn`}[.e1..``] Where {`1esn`}[12.0..`2esn`][@usn6..{usn1}]).``!)"), - octest_legacy:ct_string("Drop Constraint On(_usn3:`8esn`)Assert Exists(({`7esn`:7[{0}..{_usn4}]})-[`` *..12]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})-[:`2esn`*..{`1esn`}]-(usn2 :`5esn`{`7esn`:01234567 Is Null Is Null})._usn3?)"), - octest_legacy:ct_string("Foreach(_usn4 In \"d_str\" Is Null Is Null| Detach Delete {#usn8}[{``}..] Remove Single(`` In `` Is Not Null Is Not Null Where 1.0 In Count(*)).`6esn`!,All(#usn8 In 7[..999][..{#usn8}] Where `4esn`[1.0]).@usn6)"), - octest_legacy:ct_string("Create ``=Allshortestpaths(({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})) Match usn2=(`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[@usn5?:`3esn`|:#usn8{_usn4:{999}}]->(:#usn8:#usn8{``:1.0[0e0..0.e0]}) Union All Unwind 0e0 Starts With 2.12 Starts With $12 As _usn3 Create Unique ((_usn3 :`7esn`:_usn3)-[]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]}))"), - octest_legacy:ct_string("Merge #usn8=(:`2esn`:usn1)-[`1esn`:@usn6|`6esn`*..{`7esn`:7[{0}..{_usn4}]}]->(`8esn` {_usn4:`4esn`[1.0],`5esn`:0e0 Ends With 1.e1 Ends With $`4esn`})-[:@usn5{@usn5:{#usn7}[9e1..][{123456789}..],``:#usn7 Is Not Null Is Not Null}]->(`4esn` :`6esn`{_usn3:$123456789 Ends With `3esn` Ends With 123456789,`6esn`:0e0 Starts With 2.12 Starts With $12}) On Create Set `5esn` =$`` Is Not Null,{usn2:usn2 Is Not Null Is Not Null}.usn1? =Case When 07 Contains 0X7 Contains $`8esn` Then 123456789[{123456789}..'s_str'] When _usn3[_usn3..][12.e12..] Then $12[True..][{0}..] End Is Null Is Null,[{_usn4}[...e1][..$7],_usn4 Starts With $_usn4 Starts With 12.e12].#usn8? =0X7[0e0..`7esn`][1000..0e0] Union With Distinct *,(:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As `` Skip (:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]}) Is Null Limit $`8esn` In {`1esn`} In 12 Create @usn6=((`` :`7esn`:_usn3)),((usn2 :`4esn`)-[_usn3:#usn8|`1esn`{_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]}]->(@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:`5esn` *0..{_usn4:7[$`2esn`..{`5esn`}]}]->()) Union Load Csv With Headers From (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8) Contains All(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) As #usn8 Fieldterminator 's_str'"), - octest_legacy:ct_string("Create Constraint On(`7esn`:#usn8)Assert Exists(`8esn`(00 Starts With 0xabc,{12} Is Not Null).`6esn`!)"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From $1000[`2esn`..`5esn`][1e1..1.e1] As `4esn` Fieldterminator \"d_str\" Return *,0.0 =~999 As `4esn` Limit 9e1[..$`2esn`] Detach Delete Case {#usn7}[9e1..][{123456789}..] When $0 Ends With 12.0 Then $`` Is Not Null When $usn1 In {999} In $#usn7 Then 1000[Null..{123456789}] Else 1.0 =~'s_str' =~{`2esn`} End[{@usn5:.e0[..$`8esn`],`4esn`:{usn2} =~12}..Any(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``)],0.12 In _usn3 In {0},Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`]|123456789 Ends With 12.e12 Ends With $`7esn`) Is Not Null"), - octest_legacy:ct_string("Create Constraint On()-[`4esn`:#usn7]->()Assert Exists([`` In `` Is Not Null Is Not Null|@usn6 Starts With `6esn` Starts With $`1esn`]._usn3)"), - octest_legacy:ct_string("Load Csv From .e0 Starts With 0 Starts With 0.e0 As _usn3 Fieldterminator 's_str' Optional Match ``=Shortestpath((`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})),Allshortestpaths(((:_usn4))) Remove Case {_usn4} Is Not Null Is Not Null When {#usn8} Is Not Null Then $`8esn`[..00] When $#usn7[..{`5esn`}][..9e12] Then `7esn`[$0][9e12] End.`5esn` Union All Foreach(`2esn` In [`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]][Case 1.0 In Count(*) When $_usn4[Count ( * )..] Then Null[``] When $1000[`2esn`..`5esn`][1e1..1.e1] Then .e12[@usn5..#usn7][010..{usn1}] Else 1.0[$`1esn`..][$123456789..] End][All(`4esn` In $`3esn` Is Not Null Where usn2 Is Not Null Is Not Null)]| Detach Delete $usn1[_usn4],.e1[..usn2][..`8esn`],$123456789 Ends With `3esn` Ends With 123456789 Load Csv From {``} Starts With $`2esn` Starts With `1esn` As `` ) Delete {`3esn`} In 01,.e1 In 0,Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]] Union Return #usn7 As `8esn`,0.12[..False][..{1000}] Order By Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`])[Case 00[{`8esn`}..][{`8esn`}..] When 0e0 Starts With 2.12 Starts With $12 Then Null[``] When 12e12 Ends With {usn1} Then $`2esn` Else 2.12['s_str'..$12][{`1esn`}..`2esn`] End..] Desc,[{@usn6} Ends With 's_str' Ends With 12.0,{12} Contains {123456789} Contains `4esn`] Starts With Filter(_usn3 In {`3esn`}[`2esn`] Where {1000} =~0 =~123.654) Starts With Case When Count ( * )[0.12...e1] Then $@usn5 =~1000 =~1000 When Null Ends With `2esn` Ends With $usn1 Then $usn2[{@usn5}] End Ascending,{12}[{7}][$123456789] Asc Skip `7esn` Ends With 0x0"), - octest_legacy:ct_string("Create Constraint On()<-[`2esn`:`7esn`]-()Assert Exists(All(`2esn` In `1esn` =~\"d_str\" Where 0.12 In _usn3 In {0}).``!)"), - octest_legacy:ct_string("Create Constraint On(`6esn`:`7esn`)Assert Extract(`2esn` In `1esn` =~\"d_str\" Where `` Ends With 123456789 Ends With 123.654|#usn7 =~Count ( * ) =~``).`2esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`5esn`:``]->()Assert Exists(`4esn`(Distinct $_usn3['s_str'][07],{12}[..0X7]).`5esn`?)"), - octest_legacy:ct_string("Create Unique #usn8=Shortestpath((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[_usn3? *0X7..]-(:`5esn`{`2esn`:`4esn`[1.0]})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})) Foreach(`6esn` In $`5esn` In $`` In 123.654| Return $`8esn`[1000..0Xa],({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(:@usn5)<-[`7esn`?:`8esn`]-({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}) Ends With $7 Ends With All(`` In `` Is Not Null Is Not Null Where 1000 In {`8esn`} In 01) As ``,usn1 Starts With $usn1 As `1esn` Order By Null[``] Descending,1.e1[$`1esn`..@usn6][$0..$_usn3] Asc,$`6esn`[.e0..$`6esn`][$_usn3..{#usn7}] Desc Limit {`4esn`} Starts With 1e1 Unwind {`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]}[@usn5(Distinct {`5esn`} Contains $0 Contains {``},12.e12 Starts With {999} Starts With {`1esn`})] As _usn4) Union All Merge usn2=Allshortestpaths(((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]}))) On Create Set _usn3:`7esn`:_usn3,`8esn` ={1000}[$999...e12][`7esn`..'s_str'] Foreach(usn2 In $12[True..][{0}..]| Return Distinct 0X7[1000..{`1esn`}] As `3esn`,$`2esn`[12.e12..][{`4esn`}..] Order By 0.0 =~999 Asc,$`5esn` In 0.e0 Asc,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) Ascending Limit Count ( * ) Is Null Load Csv With Headers From {1000}[$`4esn`][\"d_str\"] As _usn3 )"), - octest_legacy:ct_string("Load Csv From 12e12 Ends With `5esn` Ends With {@usn6} As `` Fieldterminator \"d_str\" Create Shortestpath((({@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}))) Merge `7esn`=Shortestpath(((`5esn` :_usn4{7})<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})-[:`4esn` *0xabc..{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(`3esn` :`5esn`))) On Create Set `1esn` =12.e12[``][{`2esn`}],`8esn`+=00[{`8esn`}..][{`8esn`}..],#usn7+={_usn4} Ends With `6esn` Union Match Allshortestpaths((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(`2esn` :`8esn`:`7esn`)),(#usn7 :@usn5{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]}) Where True In 0e0 Load Csv With Headers From _usn4 Contains 2.12 As #usn8 Foreach(@usn5 In `5esn` Starts With 010 Starts With 0.0| Create Shortestpath((:`4esn`{``:2.12 Is Not Null Is Not Null})),Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[`3esn`? *123456789..]->({_usn3:$`5esn`[`3esn`..]}))) Optional Match ``=Shortestpath((`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})),Allshortestpaths(((:_usn4)))) Union Start _usn4=Node:usn2(`8esn`='s_str') ,#usn7=Node:usn2({12})Where $`3esn` Is Not Null"), - octest_legacy:ct_string("Load Csv From [1.0 =~'s_str' =~{`2esn`}] Contains [9e1[2.12],{usn2}[$`3esn`..][{#usn7}..],Null Ends With {`5esn`} Ends With 0.e0] Contains `5esn` As @usn6 With Distinct *,{#usn8} Is Not Null,$`5esn`[2.12..{_usn3}][_usn3..{1000}] As usn2 Order By 9e0[1.e1..][0Xa..] Descending,{_usn3:`4esn`[..Count ( * )][..{#usn7}]}[Any(_usn3 In {`3esn`}[`2esn`] Where 1e1 In \"d_str\" In `7esn`)..(:usn1{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[`2esn`:_usn4|:usn2]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[`6esn`{`6esn`:Count(*) Ends With 12.0 Ends With 12}]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})][Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7|123.654[{7}..])..Filter(`3esn` In {7} Is Null Where usn1 Is Null Is Null)] Asc With Distinct 0e0[..010] As _usn3,Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..]) In Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null) In Filter(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {#usn8}[.._usn4][..$`3esn`]) As `` Skip {12}[{7}][$123456789] Union All Foreach(_usn3 In (_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})<-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :`3esn`:@usn5)<-[? *..999]-(#usn8 :`5esn`{#usn8:0xabc[.e0]})[Shortestpath(({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[`6esn`? *0..]-(:usn1{`3esn`:{123456789} Is Null Is Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))..Allshortestpaths((_usn4 :#usn7)<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]}))]| Delete `4esn`[$999..{`1esn`}][{@usn6}.._usn3] Create #usn8=Shortestpath(((`5esn` )-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(@usn6 {`3esn`:{``} Is Not Null})<-[`1esn` *0Xa{_usn3:Null Ends With `2esn` Ends With $usn1,#usn8:.e12 Is Not Null Is Not Null}]->(usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]}))))"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:``)Assert Exists(Allshortestpaths((:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 :usn1)).`2esn`)"), - octest_legacy:ct_string("Create @usn5=(((`1esn` :`5esn`{`5esn`:{``} Is Null})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(_usn4 :usn1)))"), - octest_legacy:ct_string("Create Constraint On(`8esn`:#usn8)Assert Exists([01 =~{_usn3} =~`3esn`,9e1[2.12..{#usn8}],{usn2}[.e0..$999]].`8esn`)"), - octest_legacy:ct_string("Create Constraint On(usn1:_usn3)Assert (:`3esn`:@usn5)-[?:`5esn`{`4esn`:{`4esn`}[$123456789..][$#usn7..]}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]}).`8esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:@usn6)Assert Exists(Filter(#usn8 In 7[..999][..{#usn8}] Where $@usn5 Starts With {0} Starts With 12).usn2?)"), - octest_legacy:ct_string("Match (({_usn3:$`5esn`[`3esn`..]})-[? *..07{`4esn`:@usn5 =~{`5esn`} =~`5esn`}]->(_usn3 :usn2{#usn7:{999} Starts With {0}})) Using Index @usn5:`2esn`(@usn5) Where $123456789 Is Null Is Null Foreach(`4esn` In None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12])[Reduce(`4esn`=`1esn` =~0 =~$#usn7,`2esn` In `1esn` =~\"d_str\"|{123456789} Is Null Is Null)][{``:`7esn` Starts With $#usn7 Starts With $`7esn`}]| Remove [@usn5 In {`7esn`} In `2esn`,9e0,$`5esn`[..$`5esn`][..$12]].`4esn`!,Reduce(usn2=$usn2[{@usn5}],`4esn` In $`3esn` Is Not Null|$7[{usn2}..][{usn2}..]).usn2,[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 01[2.12..`8esn`]|{0} Ends With $_usn3 Ends With $`7esn`].`6esn`!) Union Remove Filter(`4esn` In $`3esn` Is Not Null Where 12.e12[7..$`6esn`]).usn2?,#usn7:``:#usn8,Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01).usn2 Unwind $`5esn` Starts With $0 Starts With {0} As usn1"), - octest_legacy:ct_string("Create Constraint On()<-[`7esn`:`2esn`]-()Assert Exists({`8esn`:{_usn4} Ends With `6esn`,``:{1000}[{_usn3}..]}.#usn7?)"), - octest_legacy:ct_string("Create Constraint On(#usn8:usn1)Assert Allshortestpaths((({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})-[`6esn`?]->({@usn6:$usn1 Ends With $`` Ends With $12}))).``! Is Unique"), - octest_legacy:ct_string("Create Constraint On()<-[`8esn`:`1esn`]-()Assert Exists([`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|usn1 Is Not Null].usn1)"), - octest_legacy:ct_string("Start ``=Relationship:_usn3(`8esn`={123456789}) ,`3esn`=Rel:usn1(_usn4={12}) Remove exists(Distinct 9e1 In $`3esn` In $@usn6).`8esn`!,None(_usn3 In {`3esn`}[`2esn`] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0])._usn4,[usn1 Starts With usn1 Starts With $``,False =~1e1 =~0.e0,`3esn`[..010][..$7]].`1esn` Remove (`1esn` :_usn3:_usn3)<-[? *7..12]->({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})<-[`6esn` *0Xa{_usn3}]-({@usn5:usn1 Is Not Null}).`3esn`!,Case When {7} Is Null Then .e1[{`7esn`}..{_usn4}] When 1.0 =~'s_str' =~{`2esn`} Then $`5esn` In $`6esn` End.`6esn`? Union All Foreach(usn1 In Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End Ends With Case When 0x0 Ends With $12 Then 07 =~01 End| Detach Delete $@usn5,'s_str' =~{_usn4} =~$`7esn`,usn1(Distinct $@usn5 Starts With $1000)[[`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}|0Xa =~Null =~$``]..])"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:usn2)Assert Filter(`5esn` In \"d_str\" Is Null Is Null).@usn6! Is Unique"), - octest_legacy:ct_string("Unwind $@usn5 Is Not Null Is Not Null As `8esn` Match ``=(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[?:#usn7 *01234567..0Xa]-(@usn6 {#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12})-[usn1? *1000..00]->(#usn7 :@usn5{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}))),`1esn`=((`` :@usn6:#usn8{`8esn`:'s_str' In 00})-[#usn8:`6esn`|`5esn`]-(usn1 {`1esn`:$@usn6 Ends With $_usn4 Ends With 0.12,`3esn`:`4esn` =~$`5esn`})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(`7esn` {@usn5:{7}[..1.0][..9e0]})) Using Join On `7esn` Unwind 0e0[`8esn`..][$123456789..] As usn2 Union All Create Unique (((:_usn4{usn2:0X0123456789ABCDEF[123456789]})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3))) Create Unique ((`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(_usn3 :#usn7)<-[@usn5?]->(`1esn` :`5esn`{`5esn`:{``} Is Null})),((`5esn` :`2esn`:usn1))"), - octest_legacy:ct_string("Match _usn3=((:`2esn`:usn1)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})) Using Join On `3esn`,`5esn` Using Join On @usn5,_usn3,_usn3 Remove [12.e12[9e12..{`6esn`}]].usn1!,Case When {``}[010..][0xabc..] Then usn1 Starts With usn1 Starts With $`` Else $#usn8 Ends With $`2esn` Ends With $@usn6 End.`6esn`? Union All Unwind 0e0[07] As `7esn` Remove {`8esn`:Count ( * ) =~$usn2 =~$usn2}.@usn6 Unwind $`1esn` Ends With 9e1 Ends With $123456789 As `8esn`"), - octest_legacy:ct_string("Create Constraint On()-[`1esn`:@usn6]->()Assert Exists(None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa).``?)"), - octest_legacy:ct_string("Merge ``=Allshortestpaths(((@usn6 :_usn3:_usn3)-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8))) On Match Set `8esn`+=[9e1[..$`2esn`]][{`8esn`:False =~$7 =~2.12,`3esn`:Count ( * ) =~$usn2 =~$usn2}][Case {``} Is Null When 2.12 Then $123456789 Ends With {`1esn`} Ends With $`4esn` End],`6esn`+=9e1 Is Not Null On Create Set Single(_usn3 In {`3esn`}[`2esn`] Where _usn3 Contains $123456789 Contains ``).`2esn` =Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With Reduce(`1esn`=0.12 Starts With $`5esn` Starts With 12,_usn3 In {`3esn`}[`2esn`]|$12[True..][{0}..]) Starts With Reduce(usn2=Null Ends With {`5esn`} Ends With 0.e0,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{`6esn`}),[@usn6 Ends With {_usn3},12.0 Contains #usn7,$_usn3[..1000]].`2esn`? =0e0 Contains Null,`5esn`+=7 Ends With (@usn5 {`7esn`:$`6esn`[010..]})-[:`8esn` *..01]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]}) Ends With #usn8(False =~$7 =~2.12) Create Unique ``=Allshortestpaths(((:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->(:usn1{`3esn`:{123456789} Is Null Is Null}))) Create usn1=Allshortestpaths((#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(usn2 {``:01[{@usn5}]})),(({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})-[`3esn`{usn1:True =~010,#usn7:0X0123456789ABCDEF Is Null Is Null}]->(:`1esn`{_usn4:{999}})<-[?:`7esn`{`3esn`:{#usn8}[010]}]-(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})) Union Delete $`8esn` Contains 123456789 Contains $usn2,Shortestpath(((({`4esn`:`7esn` Is Null})<-[`4esn`? *..12{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7}]->({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3))))[(`4esn` {`6esn`:#usn8[..{#usn7}]})<-[?:`8esn`{`3esn`:1.0 In Count(*)}]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[`1esn`:usn2|``]->(`3esn` {@usn5:$usn2[9e0]})] Unwind $#usn8[$`2esn`..][{`2esn`}..] As `5esn` Delete 0x0 Is Null,00[`2esn`..12][123456789..0.e0],Count(*)[$#usn8]"), - octest_legacy:ct_string("Merge `2esn`=Allshortestpaths(((#usn7 :_usn3:_usn3{`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]-({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5}))) On Match Set `8esn`+=$@usn5 Starts With 01 Starts With .e0,usn2+=Shortestpath(((({#usn7:2.12 Contains usn2 Contains True})-[_usn3?:`6esn`|`5esn` *0X0123456789ABCDEF]-(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}))))[Case When $999[0.0..] Then 12 Ends With 0x0 Ends With 0.e0 When `` Is Not Null Is Not Null Then {`3esn`}[..07][..{`5esn`}] End..[`3esn` In {7} Is Null Where usn1 Is Null Is Null]],@usn6+=`3esn`[{`2esn`}] Unwind Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where _usn4 Contains 2.12)[(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})..][#usn7(7 =~{`8esn`} =~$`6esn`,$123456789 Ends With {`1esn`} Ends With $`4esn`)..] As `7esn` Delete 12.e12[9e12..{`6esn`}] Union Delete 010[Count(*)..12][$_usn3..{`8esn`}],{`5esn`} Contains $0 Contains {``},()-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[@usn6?$0]->({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})[{#usn8:_usn4 Starts With $_usn4 Starts With 12.e12}..Allshortestpaths(((@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})))][(usn2 :usn2)<-[@usn5? *..01]-(`8esn` :@usn6:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})..Case When #usn8 Is Not Null Is Not Null Then `3esn`[{usn1}] Else 0.12 Starts With $`5esn` Starts With 12 End]"), - octest_legacy:ct_string("Match `6esn`=((`3esn` {usn1:$0[..9e1],@usn5:`7esn`[..{usn1}]})-[#usn7?:`3esn`|:#usn8]->(`2esn` :usn1)-[`7esn`]-(`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})),`3esn`=Allshortestpaths(((#usn7 {``:9e12[`1esn`..][$`1esn`..],#usn7:#usn8})-[?:`7esn` *0X0123456789ABCDEF]->(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})<-[#usn8?:#usn7{`1esn`:#usn7 =~Count ( * ) =~``,usn2:`` Ends With $1000}]->(:@usn6:#usn8{`4esn`:$`8esn`[..00]}))) Where .e1 Is Null Is Null Remove Case When $#usn8 Ends With $`2esn` Ends With $@usn6 Then $1000[`2esn`..`5esn`][1e1..1.e1] Else {`4esn`} =~{7} =~{`7esn`} End._usn3?,{`8esn`:{usn2} =~12}.@usn5,`2esn`(Distinct 7[$`8esn`..123456789][$usn1..$usn1],1e1 In 123.654 In `3esn`)._usn4! Unwind Allshortestpaths((((:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]->(:`4esn`{``:2.12 Is Not Null Is Not Null}))))[{`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null}][Allshortestpaths(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})))] As @usn5"), - octest_legacy:ct_string("Create Constraint On(`2esn`:`2esn`)Assert Reduce(`4esn`=$usn1 In {999} In $#usn7,`8esn` In 01[2.12..`8esn`]|usn2 Is Not Null Is Not Null).`5esn`? Is Unique"), - octest_legacy:ct_string("With Distinct usn1(Distinct 999 In {`3esn`} In usn2,$12[Null..Count(*)][{`5esn`}..{999}]) Starts With ``($12[$1000..123456789],\"d_str\" Starts With 01) Starts With All(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`7esn` =~{`8esn`} =~$usn1),(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(`5esn` :@usn5{`8esn`:{usn2} =~12})[All(`` In `` Is Not Null Is Not Null Where `3esn`[{0}][usn1])] As _usn4 Skip $12 Ends With 07 Ends With $123456789 Where _usn3 Starts With 12.e12 Starts With 0.12 Merge `3esn`=(((`1esn` :`5esn`{`5esn`:{``} Is Null})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(_usn4 :usn1))) On Create Set `7esn`(Distinct `3esn`[..010][..$7]).#usn8? =7 Ends With $`4esn` Start _usn3=Relationship:usn2(`8esn`={`8esn`}) ,`1esn`=Rel:#usn8(`8esn`={`6esn`})Where #usn8 Is Not Null Is Not Null Union Create @usn5=((`8esn` :#usn7)-[`3esn`{usn1:True =~010,#usn7:0X0123456789ABCDEF Is Null Is Null}]->(:`1esn`{_usn4:{999}})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null})),@usn6=((`` :`7esn`:_usn3)) With Distinct [{`3esn`} Is Not Null Is Not Null] As `2esn`,Count ( * )[True..][{#usn7}..] As usn2,Reduce(`2esn`=1e1 In 123.654 In `3esn`,`5esn` In \"d_str\" Is Null Is Null|$_usn3[{#usn7}]) Is Not Null As `2esn` Skip {`4esn`} Starts With 1e1 Union All Unwind True[00][0Xa] As #usn8 Remove [0e0 Ends With 1.e1 Ends With $`4esn`].`7esn`!"), - octest_legacy:ct_string("Drop Constraint On()-[#usn7:_usn3]-()Assert Exists(Allshortestpaths((:@usn5{_usn3:07 =~01}))._usn4)"), - octest_legacy:ct_string("With Distinct $123456789 Ends With $999 Ends With {999},7[$`8esn`..123456789][$usn1..$usn1] As `5esn`,{#usn7}[`2esn`..] Order By $`6esn`[010..] Ascending Skip 1e1 In \"d_str\" In `7esn` Limit Case Count ( * ) Contains 07 When {7}[..12e12][..Count ( * )] Then 9e12 Is Not Null Is Not Null When $`2esn` Then 1.0 Contains $_usn4 Else _usn4 Contains 2.12 End[Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`2esn`} Ends With {`7esn`})..] Detach Delete 123456789[$1000..$#usn7],#usn8 Is Not Null Union All Unwind 0X7[1000..{`1esn`}] As `4esn` Return Distinct `4esn` =~$`5esn`,$`1esn` Starts With {`8esn`} As _usn3,None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`])[Any(`3esn` In {7} Is Null Where {`4esn`} =~{7} =~{`7esn`})..][Extract(`2esn` In `1esn` =~\"d_str\" Where $_usn4[1.e1]['s_str']|usn1[`5esn`..$7])..] As `7esn` Skip [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where False|{`1esn`}[12.0..`2esn`][@usn6..{usn1}]] =~Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 00[{`8esn`}..][{`8esn`}..]|{0}) =~{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}} Start `7esn`=Relationship:`3esn`(`6esn`='s_str') Where 0Xa =~123456789 =~_usn4 Union All Optional Match (({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}]->({`7esn`:7[{0}..{_usn4}]})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(usn2 {``:01[{@usn5}]})),`5esn`=Shortestpath((((`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})<-[@usn6:@usn5 *0Xa]->({`3esn`:9e1[2.12..{#usn8}]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})))) Using Scan `1esn`:`3esn` Where 7[..999][..{#usn8}] Foreach(`8esn` In $`2esn` Ends With 1000 Ends With `6esn`| Load Csv With Headers From $#usn8 =~{@usn5} As usn2 Fieldterminator 's_str') Merge (usn2 :usn2)-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->({``:12.e12[$_usn3..],_usn3:$`6esn`[010..]})<-[_usn3?:`5esn`]-({`7esn`:{999}}) On Match Set Allshortestpaths((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})).`8esn`? =123456789 Ends With 12.e12 Ends With $`7esn`,{usn2:{`3esn`} In 0X7,_usn3:7 Starts With {@usn6} Starts With $``}.`8esn` =7 Ends With $`4esn`,All(#usn8 In 7[..999][..{#usn8}] Where .e0[..$`8esn`]).@usn5! =`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) In [#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]|@usn6 Contains $1000 Contains {`7esn`}] In Filter(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12])"), - octest_legacy:ct_string("Start _usn3=Relationship:usn2(`8esn`={`8esn`}) ,`1esn`=Rel:#usn8(`8esn`={`6esn`})Where #usn8 Is Not Null Is Not Null"), - octest_legacy:ct_string("Create Constraint On(_usn4:#usn8)Assert Exists([12.e12 Starts With {999} Starts With {`1esn`}].`6esn`?)"), - octest_legacy:ct_string("Create Constraint On(`2esn`:@usn6)Assert Exists({#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}.@usn6)"), - octest_legacy:ct_string("Create Constraint On()-[``:`2esn`]-()Assert Exists(#usn7(0.e0 Starts With `2esn`).`6esn`!)"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:`4esn`)Assert (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})<-[`1esn`:_usn4|:usn2]->(`` :`3esn`:@usn5{`8esn`:`4esn` Is Not Null Is Not Null,`2esn`:2.12 Ends With $_usn3 Ends With `3esn`}).@usn6! Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn6:`6esn`)Assert Exists([`3esn` In {7} Is Null Where usn1 Is Null Is Null].`8esn`!)"), - octest_legacy:ct_string("Start `4esn`=Node:_usn4(#usn7=\"d_str\") Union All Unwind {0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]] As `4esn` Create Unique `6esn`=Allshortestpaths(((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(@usn5 :`4esn`)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]}))),_usn3=(((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5))) Start `2esn`=Node:_usn4(#usn7=\"d_str\") Union With Distinct $`3esn`[0.12..`8esn`][$#usn7..`5esn`],Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]) =~Reduce(usn1=.e1 Ends With 1e1 Ends With @usn5,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$#usn7[#usn7..]) =~`1esn`($1000 Is Null) As @usn6 Order By {`1esn`}[12.0..`2esn`][@usn6..{usn1}] Ascending,$`3esn` Is Not Null Desc Where 01 Contains {`8esn`} Contains 2.12"), - octest_legacy:ct_string("Create Constraint On(_usn3:_usn4)Assert All(#usn7 In {``} Is Not Null Where @usn5 In {`7esn`} In `2esn`).`5esn`? Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn6:_usn4)Assert Exists(Case When $`7esn` =~{`8esn`} =~$usn1 Then $`4esn`[9e12..123.654] When $#usn7 Is Null Then Count(*) Is Null Is Null End.#usn7?)"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:@usn6)Assert Exists(Single(`4esn` In $`3esn` Is Not Null Where {`6esn`}).#usn7?)"), - octest_legacy:ct_string("Drop Constraint On(#usn8:`3esn`)Assert Exists({`6esn`:$usn1 Ends With $`` Ends With $12}._usn4?)"), - octest_legacy:ct_string("Return `6esn`[..$@usn6] As `` Order By Extract(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0])[Case $`3esn` In $`6esn` In $`` When {_usn3}[..\"d_str\"] Then `3esn`[{usn1}] Else {999} Starts With {0} End][usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010])] Desc,Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))) Desc Limit Count(*) Contains $#usn7 Contains 1e1 Create @usn6=Shortestpath((usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})),(((`3esn` :`8esn`:`7esn`)-[`7esn`:#usn8|`1esn` *0xabc..]->(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})-[`2esn`?:`7esn` *..07$0]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})))"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:`1esn`)Assert Exists(`4esn`(Distinct $_usn3['s_str'][07],{12}[..0X7])._usn4)"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:#usn7)Assert Any(`3esn` In {7} Is Null Where usn1 Is Null Is Null).`4esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:usn2)Assert Exists(None(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12])._usn3)"), - octest_legacy:ct_string("Create usn2=(((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})))"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:`4esn`)Assert Exists([@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where 1.0 Contains $_usn4].`2esn`!)"), - octest_legacy:ct_string("Create Constraint On()-[@usn5:@usn6]->()Assert Exists(Reduce(`7esn`=$#usn8[$`2esn`..][{`2esn`}..],#usn7 In `2esn`[..$#usn8][..Count(*)]|$123456789 Ends With {`1esn`} Ends With $`4esn`).`3esn`?)"), - octest_legacy:ct_string("Create Constraint On()<-[usn2:@usn6]-()Assert Exists([#usn7 In {``} Is Not Null Where 123456789[0xabc..'s_str'][``..`1esn`]|{`1esn`}[12.0..`2esn`][@usn6..{usn1}]].`3esn`)"), - octest_legacy:ct_string("Start `4esn`=Node:_usn4(#usn7=\"d_str\") ,``=Relationship:usn2(`3esn`='s_str')Where #usn7 Is Null Is Null Create ``=Shortestpath(((usn2 :`4esn`)-[_usn3:#usn8|`1esn`{_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]}]->(@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:`5esn` *0..{_usn4:7[$`2esn`..{`5esn`}]}]->()))"), - octest_legacy:ct_string("With Distinct {#usn7}[`2esn`..],Filter(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0]) Ends With Case When {#usn8}[010] Then False =~$7 =~2.12 End,0.0 =~999 As `4esn` Detach Delete [0x0[{`7esn`}..][$usn2..],{`4esn`} =~{7} =~{`7esn`},usn1 In 7 In {123456789}] Is Null Is Null,Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`])[Case 00[{`8esn`}..][{`8esn`}..] When 0e0 Starts With 2.12 Starts With $12 Then Null[``] When 12e12 Ends With {usn1} Then $`2esn` Else 2.12['s_str'..$12][{`1esn`}..`2esn`] End..],1000 =~@usn6 =~0x0 Union Create (({`5esn`:$`8esn`[1000..0Xa]})-[:`8esn` *..01]->(`` {`3esn`:{12} Contains {123456789} Contains `4esn`}))"), - octest_legacy:ct_string("Create Constraint On(usn1:usn2)Assert Exists(Shortestpath(({`7esn`:{999}})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})).``!)"), - octest_legacy:ct_string("Drop Constraint On()-[_usn3:`4esn`]->()Assert Exists(Allshortestpaths(((usn2 :`4esn`)-[_usn3:#usn8|`1esn`{_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]}]->(@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:`5esn` *0..{_usn4:7[$`2esn`..{`5esn`}]}]->())).`5esn`?)"), - octest_legacy:ct_string("Create Constraint On(`5esn`:_usn3)Assert {`6esn`:01 Is Null,`7esn`:True In 0e0}.`1esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:`5esn`)Assert Exists(usn1(0e0 =~`6esn` =~123456789,$#usn8[$`2esn`..][{`2esn`}..]).`8esn`)"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`2esn`)Assert Exists(Reduce(usn2=0.e0 In $#usn7 In $_usn3,`3esn` In {7} Is Null|{12} Is Null Is Null).`7esn`)"), - octest_legacy:ct_string("Create Constraint On(`5esn`:``)Assert Exists(Reduce(`5esn`=usn1 Is Not Null,@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]|7 Is Not Null Is Not Null).`3esn`)"), - octest_legacy:ct_string("Unwind `7esn` In 00 As `` Load Csv With Headers From 7 Starts With {@usn6} Starts With $`` As #usn8 Unwind Reduce(`5esn`=$`5esn`[{`3esn`}],`3esn` In {7} Is Null|`6esn`[12..$usn2][{#usn8}..{usn2}]) In @usn5(Distinct _usn4 Starts With $_usn4 Starts With 12.e12) In None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Count ( * ) Ends With 12.0) As _usn3 Union All Foreach(`2esn` In Allshortestpaths((`5esn` :`4esn`)) Is Not Null| Delete [#usn8 In {`5esn`}[.e1..``] Where {7}[..12e12][..Count ( * )]|{`2esn`} Ends With {`7esn`}] In All(#usn8 In {`5esn`}[.e1..``] Where {7}[..1.0][..9e0]),Null Ends With `2esn` Ends With $usn1,[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12)) Union All Load Csv With Headers From .e12[@usn5..#usn7][010..{usn1}] As `4esn` Detach Delete 1e1 Contains 0e0,Case {#usn8} Is Not Null When {`4esn`} =~9e0 =~{12} Then _usn3[_usn3..][12.e12..] Else 123.654 Contains $`4esn` Contains 1.0 End[(`6esn` {`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]})<-[? *..0x0]->(`3esn` :`7esn`:_usn3)-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->(:``:#usn8{`7esn`:00 Starts With 0xabc,_usn3:{123456789} Contains $#usn8})..][Single(`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1)..],usn1 Is Null Is Null Merge Shortestpath(((`5esn` :_usn4{7})-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})))"), - octest_legacy:ct_string("Create ``=(`1esn` {``:`7esn` Starts With $#usn7 Starts With $`7esn`}),usn2=(((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))) Union All Merge (#usn7 :`8esn`:`7esn`)<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[_usn4?:`1esn` *7..12]->(:#usn8:#usn8{_usn3:$_usn3['s_str'][07],`7esn`:$1000 In $1000 In $`3esn`}) Return Distinct *,{`5esn`:01234567 Is Null Is Null}[..`1esn`(Distinct 00 Starts With 0xabc,$0)],Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn` As _usn3 Skip 1.0 =~7 =~{usn2} Union Return Distinct $`5esn`[$`4esn`..{@usn6}][07..$@usn6] As usn2 Order By [usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*)) Ascending,Case When 1.0 In Count(*) Then False End Contains `1esn`(Distinct 0.e0 Starts With `2esn`) Contains Reduce(`1esn`=\"d_str\" Is Null Is Null,#usn7 In {``} Is Not Null|#usn7) Descending Skip Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End Limit All(#usn7 In {``} Is Not Null Where {_usn4}[...e1][..$7]) Is Null Is Null Match Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Using Index ``:usn1(@usn5) Using Index `3esn`:`5esn`(#usn7) Where $`5esn`[2.12..] Unwind $_usn4 In usn1 In $7 As usn1"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From 123456789 Ends With 01234567 Ends With 1.e1 As #usn8 Fieldterminator \"d_str\" Create `1esn`=(`5esn` :_usn4{7})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}),((`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8}))"), - octest_legacy:ct_string("Create Constraint On(`3esn`:`7esn`)Assert Exists([$`5esn` Starts With $0 Starts With {0},0x0[`4esn`..'s_str'],$usn2[9e0]].#usn8!)"), - octest_legacy:ct_string("Merge ((`6esn` {`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]})<-[usn2?:`5esn`{`8esn`:{_usn4}[1000..{@usn5}],_usn3:12e12 Ends With {usn1}}]-(#usn7 :#usn8:#usn8{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[? *7..12]->({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})) On Create Set @usn5 =Extract(#usn8 In {`5esn`}[.e1..``] Where {`3esn`}[..07][..{`5esn`}]) Is Null Is Null On Create Set None(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $12[True..][{0}..]).usn1! ={123456789} Is Not Null Create Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))),`2esn`=(usn2 :`4esn`)-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(`` :_usn4)"), - octest_legacy:ct_string("Create Constraint On(#usn7:_usn3)Assert Reduce(#usn7=$@usn5[..12e12][..$123456789],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{``} Is Not Null).`1esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`6esn`:`1esn`]-()Assert Exists(Allshortestpaths((`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})).``)"), - octest_legacy:ct_string("Unwind Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)[(:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0})..Shortestpath((({``})))] As @usn6 Foreach(`5esn` In 0.12 Contains 0X0123456789ABCDEF Contains .e0| Return None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})[Any(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")..Reduce(usn1=#usn7[usn1][$`5esn`],`3esn` In {7} Is Null|Count(*) Ends With 12.0 Ends With 12)][(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})..({usn1:`5esn`[_usn4..]})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})],@usn5 =~{`5esn`} =~`5esn` As _usn4,$123456789 In $#usn7 In `4esn` As `` Limit #usn7[010..False]) Create Unique (:`4esn`{`7esn`:$0[..9e1],usn1:{_usn4} Ends With `6esn`})-[:@usn5{@usn5:{#usn7}[9e1..][{123456789}..],``:#usn7 Is Not Null Is Not Null}]->(`4esn` :`6esn`{_usn3:$123456789 Ends With `3esn` Ends With 123456789,`6esn`:0e0 Starts With 2.12 Starts With $12})-[`7esn` *..0x0]-(`2esn` :_usn4)"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From `1esn` =~\"d_str\" As usn1 Fieldterminator \"d_str\" Foreach(`5esn` In All(`5esn` In $999[0.0..] Where {@usn6} Ends With 's_str' Ends With 12.0) In (:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})| Start _usn4=Rel:#usn8(\"d_str\") Where $#usn8[9e12..][.e1..])"), - octest_legacy:ct_string("Create Constraint On()<-[`8esn`:#usn8]-()Assert Exists(None(`3esn` In {7} Is Null Where {123456789} Contains $#usn8)._usn3)"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:usn1)Assert Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where {@usn5} Is Null Is Null|01[2.12..`8esn`])._usn3! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:`4esn`)Assert Exists(Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``]).`5esn`?)"), - octest_legacy:ct_string("Start @usn6=Rel:``(_usn3='s_str') ,``=Node:_usn4(usn1={12}) Union All Match #usn7=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}),@usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})) Using Join On _usn4 Create `1esn`=(`5esn` :_usn4{7})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}),((`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})) Load Csv With Headers From 7 =~{`8esn`} =~$`6esn` As `5esn` Union All Remove Extract(#usn8 In {`5esn`}[.e1..``]|12e12 Ends With {usn1})._usn3!"), - octest_legacy:ct_string("Return Distinct [1.0 =~'s_str' =~{`2esn`}] Contains [9e1[2.12],{usn2}[$`3esn`..][{#usn7}..],Null Ends With {`5esn`} Ends With 0.e0] Contains `5esn` As `8esn`,[`` Ends With 0Xa Ends With `2esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},{`4esn`} =~{7} =~{`7esn`}] As @usn6 Skip #usn8 Starts With $_usn4 Starts With $7 Remove Reduce(`5esn`=$`5esn` In $`` In 123.654,_usn3 In {`3esn`}[`2esn`]|$@usn5 Starts With 01 Starts With .e0).``,(`` {`1esn`:{@usn6}[{999}..][00..]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->({12}).`5esn`! Detach Delete .e0[12.e12..],Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0) Is Not Null Is Not Null,0.12[`2esn`..{`6esn`}]"), - octest_legacy:ct_string("Unwind Allshortestpaths(((`7esn` {`2esn`:$`6esn`[123456789..12][True..{`3esn`}],#usn7:$_usn3[Count(*)]})-[#usn8? *..07$_usn4]->(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}))) =~(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null}) =~{#usn8:{`3esn`}[@usn6..0Xa][{12}..0Xa],@usn5:False Is Null Is Null} As usn2 Union Optional Match ``=(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[?:#usn7 *01234567..0Xa]-(@usn6 {#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12})-[usn1? *1000..00]->(#usn7 :@usn5{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}))) Using Join On #usn7 Using Index _usn4:usn2(#usn8) Union All Start _usn3=Node:@usn6({#usn7}) Where usn1 In 7 In {123456789} Remove [`5esn` In \"d_str\" Is Null Is Null Where 1.e1[$`1esn`..@usn6][$0..$_usn3]].usn2!,{`5esn`:{999},_usn3:$`5esn`[2.12..]}.`1esn`?"), - octest_legacy:ct_string("Load Csv From $123456789 In $#usn7 In `4esn` As `5esn` Union All Load Csv With Headers From Null[$`5esn`][False] As `` Fieldterminator \"d_str\" Merge (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[`4esn`:`8esn` *00]-(`2esn` :`8esn`:`7esn`)<-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:usn2) Union All Merge ((`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})) On Create Set usn1(Distinct $123456789 Ends With `3esn` Ends With 123456789,`5esn`[7][{usn2}]).@usn5 =All(#usn7 In {``} Is Not Null Where {_usn4}[...e1][..$7]) Is Null Is Null,`2esn`+=Case {#usn8} Is Not Null When {`4esn`} =~9e0 =~{12} Then _usn3[_usn3..][12.e12..] Else 123.654 Contains $`4esn` Contains 1.0 End[(`6esn` {`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]})<-[? *..0x0]->(`3esn` :`7esn`:_usn3)-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->(:``:#usn8{`7esn`:00 Starts With 0xabc,_usn3:{123456789} Contains $#usn8})..][Single(`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1)..],usn1+=$`6esn`[123456789..12][True..{`3esn`}] Detach Delete $@usn5 Starts With {0} Starts With 12 Detach Delete 0X7[{@usn6}],Null In $7 In .e1,9e12[0.0..][$12..]"), - octest_legacy:ct_string("Load Csv From Allshortestpaths((((:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]->(:`4esn`{``:2.12 Is Not Null Is Not Null}))))[{`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null}][Allshortestpaths(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})))] As `2esn` Merge `2esn`=Allshortestpaths((((#usn8 :usn1)-[:`6esn`|`5esn` *123456789..]-(#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})-[_usn4{`5esn`:{0} Ends With $_usn3 Ends With $`7esn`,`2esn`:Null[``]}]-(`7esn` :`5esn`)))) Union Unwind 0e0[`8esn`..][$123456789..] As usn2 Optional Match `6esn`=Shortestpath((((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})))),Shortestpath(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null}))) Using Scan `3esn`:_usn4 Using Scan ``:`2esn` Where $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Load Csv With Headers From `6esn`[..$@usn6] As @usn6 Fieldterminator 's_str' Union Unwind $_usn4 =~usn2 =~{_usn3} As _usn4"), - octest_legacy:ct_string("Drop Constraint On()-[`3esn`:_usn4]->()Assert Exists(Case `4esn`[1.0] When $`4esn`[9e12..123.654] Then $`4esn` In Null In 0xabc End.`7esn`?)"), - octest_legacy:ct_string("Create Constraint On(`8esn`:`6esn`)Assert Exists(({`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}})-[:#usn7 *..010]->(:`1esn`{})-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01}).`5esn`?)"), - octest_legacy:ct_string("Start `5esn`=Relationship(*) Return Distinct 12.e12 Is Null Is Null As `6esn`,01 Is Null As `2esn`,$12 =~$_usn3 As #usn8 Skip Filter(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]) Ends With Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``]) Ends With Case $`7esn` Is Null Is Null When {#usn7}[9e1..][{123456789}..] Then False =~1e1 =~0.e0 Else 1000 In {`8esn`} In 01 End Limit $999 Is Not Null With Distinct Extract(`8esn` In 01[2.12..`8esn`] Where {usn2}|$0[12.e12..]) =~Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null|7 Ends With $`4esn`) =~(usn1 {`2esn`})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->(:_usn3:_usn3{`4esn`:12e12 Ends With {usn1}})<-[`7esn`?:`8esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}) As `1esn`,Extract(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null)[..Any(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})] Order By $`1esn`[{`2esn`}..] Desc,$12 Starts With $`8esn` Starts With $`1esn` Descending Union Merge #usn7=((`4esn` :@usn6:#usn8)-[:`8esn`*]->({_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})) On Match Set usn1 =$`3esn`[{`5esn`}..#usn7][{`2esn`}...e1],(`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[`5esn`?:`5esn` *1000..00]->({`1esn`:`3esn`[{`2esn`}]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]}).`5esn` ={#usn8}[{``}..]"), - octest_legacy:ct_string("Merge (`6esn` :`8esn`:`7esn`)<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}}) On Create Set Extract(#usn7 In {``} Is Not Null Where 0.12 =~`5esn` =~`5esn`).`8esn` =1000[0X7..2.12],`1esn`+={`5esn`} Starts With @usn5 Starts With `7esn`,`5esn`+=123.654 Is Not Null On Create Set _usn4 =[`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null,@usn6+=Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 07 Contains 0X7 Contains $`8esn`) Is Not Null Is Not Null Create Unique Shortestpath((({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`4esn`:`8esn` *00]->(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]->(`6esn` :`4esn`{#usn8:@usn6[$`3esn`..{`3esn`}],`3esn`:usn2[{7}]}))) Delete True[{_usn4}..][False..],$#usn7[@usn5..{1000}][1.e1..7],#usn7 Contains usn2 Contains @usn5"), - octest_legacy:ct_string("Start #usn8=Relationship:`8esn`(#usn8={`2esn`}) ,`6esn`=Rel:`7esn`(`3esn`=\"d_str\") Remove Allshortestpaths(({`3esn`:usn1 Is Null Is Null})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(usn2 {`6esn`:{#usn8}[.._usn4][..$`3esn`],`7esn`:01 =~{_usn3} =~`3esn`})).@usn5!,All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where ``[$`2esn`])._usn4!,Filter(#usn7 In {``} Is Not Null Where .e0 Starts With $`` Starts With $usn2).#usn8 Union All Remove (:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn` *0X7..{usn2:_usn3[$`8esn`]}]->(`8esn` :_usn4).@usn5,[@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $0[``][{@usn6}]].#usn8! Unwind (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12} As `1esn`"), - octest_legacy:ct_string("Start @usn6=Relationship:`8esn`({`3esn`}) ,`3esn`=Node:usn1(_usn4={12}) Remove Shortestpath((usn1 {`7esn`:{999}})).`5esn`!,Any(`4esn` In $`3esn` Is Not Null Where `8esn`[{123456789}..]).`5esn`"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From $@usn6 Ends With $_usn4 Ends With 0.12 As `4esn` Start ``=Rel:#usn8({12}) ,`7esn`=Relationship:@usn5({`8esn`})Where `7esn` In {123456789} In `1esn` Return *,Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0) Is Not Null Is Not Null As `1esn`,[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `4esn` Ends With 07 Ends With {`3esn`}|@usn5 Is Null] Is Null Is Null As _usn3 Order By 123456789[$@usn5..] Ascending,.e12 Contains 00 Contains {999} Asc,{`5esn`}[{usn2}..1000][$`8esn`..{`3esn`}] Ascending Skip $`8esn`[1000..0Xa]"), - octest_legacy:ct_string("Drop Constraint On()<-[``:usn2]-()Assert Exists(Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {@usn6}[7]|$_usn3[.e0..$usn2]).#usn7)"), - octest_legacy:ct_string("Delete `4esn`[`5esn`..12][@usn6..False],07 Contains 0X7 Contains $`8esn`,$`5esn`[2.12..] Start `2esn`=Node:`7esn`(`3esn`=\"d_str\") ,_usn3=Node:@usn6({#usn7}) Foreach(`2esn` In {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}])| Start `1esn`=Node:`2esn`(#usn8={123456789}) )"), - octest_legacy:ct_string("Match `2esn`=(:`1esn`{``:.e1 Is Null Is Null})<-[#usn8?:usn1|@usn6]->(`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`}),`6esn`=(((usn2 :``:#usn8)-[ *123456789..{`4esn`:0Xa[2.12],#usn7:0.e0 In $#usn7 In $_usn3}]-(@usn6 :`3esn`:@usn5)-[`7esn` *0X0123456789ABCDEF]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0}))) Using Index `6esn`:`8esn`(``) Using Index `1esn`:_usn3(_usn4) Where $#usn8 Ends With $`2esn` Ends With $@usn6 Foreach(`4esn` In 12 Ends With 0x0 Ends With 0.e0| With *,Shortestpath((((`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`2esn` *..07]-(`1esn` {#usn7:{_usn4} In {12} In $0})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})))) In ({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}) As `1esn`,`6esn`[2.12..01][{``}..False] As `1esn` Where $123456789 In 0X0123456789ABCDEF In 0.e0 Unwind 123456789 Ends With 0.12 Ends With `` As _usn3) Foreach(usn2 In {@usn6} Is Null Is Null| Remove `3esn`(False Starts With {`5esn`},0[{usn2}..][$`6esn`..]).usn2? Detach Delete Reduce(#usn7=`3esn`[{`2esn`}],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|#usn8 Is Not Null)[(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(#usn7 {_usn3:`4esn`[..Count ( * )][..{#usn7}]})..None(`8esn` In 01[2.12..`8esn`] Where {usn2})],Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))),12 Ends With 0x0 Ends With 0.e0) Union Detach Delete Case {#usn8} Is Not Null When {`4esn`} =~9e0 =~{12} Then _usn3[_usn3..][12.e12..] Else 123.654 Contains $`4esn` Contains 1.0 End[(`6esn` {`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]})<-[? *..0x0]->(`3esn` :`7esn`:_usn3)-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->(:``:#usn8{`7esn`:00 Starts With 0xabc,_usn3:{123456789} Contains $#usn8})..][Single(`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1)..],Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End Is Null Is Null Unwind 0.e0 Starts With 12.e12 Starts With {_usn4} As _usn3 Return [01[2.12..`8esn`],{7} In `2esn`,123456789 Ends With $`6esn` Ends With $#usn7] Starts With Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With `7esn`(Distinct {_usn4} Ends With `6esn`,{@usn6}[7]),{_usn4}[...e1][..$7] Skip 0x0 Ends With $12"), - octest_legacy:ct_string("Create Constraint On(usn1:#usn8)Assert Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn1[9e12..][$7..]).usn2? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(_usn4:`4esn`)Assert Exists(``(Distinct $_usn3 Contains 999 Contains \"d_str\").``?)"), - octest_legacy:ct_string("Create `8esn`=Allshortestpaths(((:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))),#usn7=Shortestpath((`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})) Remove [`5esn` In $999[0.0..] Where {7}[..12e12][..Count ( * )]]._usn4!,All(#usn8 In 7[..999][..{#usn8}] Where {12} =~#usn8).``!,{#usn8:01234567[usn2..$12][{`7esn`}..$usn2]}.`4esn`? Return Distinct *,Reduce(usn1=$123456789 Is Null Is Null,_usn3 In {`3esn`}[`2esn`]|Null[$`5esn`][False])[Case 0e0 Contains Null When 0X7[`7esn`][123.654] Then 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] End..][[9e1[$usn2],{`4esn`}[$123456789..][$#usn7..]]..],01234567 Is Null Is Null Order By @usn6 Contains Null Contains $`7esn` Ascending"), - octest_legacy:ct_string("With (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As ``,12[..$`4esn`] As `7esn` Limit Count ( * ) =~$usn2 =~$usn2 Create Unique Allshortestpaths((`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})),(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})<-[`6esn`?{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}) Return Distinct Reduce(`7esn`=$`5esn` In $`` In 123.654,`` In 123456789 Ends With 12.e12 Ends With $`7esn`|{`7esn`} Is Null)[Reduce(_usn3=#usn8 Is Not Null,`` In 123456789 Ends With 12.e12 Ends With $`7esn`|1.0 Starts With 12e12 Starts With {`5esn`})] As `8esn`,$`8esn` Is Not Null Is Not Null As `1esn`,\"d_str\" Starts With $123456789 Order By `` Ends With $1000 Desc,Case {`8esn`} Ends With `6esn` When False Is Null Is Null Then 's_str' In 00 Else 123456789 Ends With $`6esn` Ends With $#usn7 End Starts With Case `1esn` =~0 =~$#usn7 When $#usn8[9e12..][.e1..] Then False =~$7 =~2.12 When {123456789}[9e12][{0}] Then 12.0 =~999 =~$_usn3 End Desc"), - octest_legacy:ct_string("Start usn2=Node:`4esn`('s_str') ,@usn6=Rel:``(_usn3='s_str')Where `7esn` In {123456789} In `1esn`"), - octest_legacy:ct_string("Foreach(usn2 In @usn6 Ends With {_usn3}| Load Csv From {123456789}['s_str'] As #usn7 Fieldterminator 's_str' Create @usn6=Allshortestpaths(((:@usn6:#usn8{`4esn`:$`8esn`[..00]})<-[_usn4?:_usn4|:usn2 *00]->(:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))))"), - octest_legacy:ct_string("Return [`5esn`[{`4esn`}..`2esn`],Null Ends With {`5esn`} Ends With 0.e0,010[#usn7..True]] Contains [`3esn` In {7} Is Null Where {usn2}[.e0..$999]|Count ( * ) Contains `8esn` Contains .e1] Contains Reduce(``=@usn5 In {`7esn`} In `2esn`,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{_usn4}[1000..{@usn5}]) As `3esn`,{7}[$7..$``][{``}..{7}] As usn2,{1000}[{_usn3}..] As #usn7 Skip Shortestpath((_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})) Contains [`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 7 Starts With {@usn6} Starts With $``|.e12 Is Not Null Is Not Null] Limit $`6esn` Ends With Count(*) Return Allshortestpaths((({`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})<-[?*..]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}))) Ends With Reduce(_usn3='s_str'[00][{`5esn`}],`4esn` In $`3esn` Is Not Null|Count ( * ) Contains `8esn` Contains .e1),$_usn4[0e0..][False..] As ``,$`6esn` Ends With Count(*) Order By {usn1} Is Not Null Is Not Null Desc,{usn2}[$`3esn`..][{#usn7}..] Ascending Limit {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]) Union Create Unique (((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`8esn`?:`2esn`*..{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]}))),Allshortestpaths((_usn3 :@usn5)-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})) Union Match (({_usn3:$`5esn`[`3esn`..]})-[? *..07{`4esn`:@usn5 =~{`5esn`} =~`5esn`}]->(_usn3 :usn2{#usn7:{999} Starts With {0}})) Using Index @usn5:`2esn`(@usn5) Where $123456789 Is Null Is Null Foreach(`4esn` In None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12])[Reduce(`4esn`=`1esn` =~0 =~$#usn7,`2esn` In `1esn` =~\"d_str\"|{123456789} Is Null Is Null)][{``:`7esn` Starts With $#usn7 Starts With $`7esn`}]| Remove [@usn5 In {`7esn`} In `2esn`,9e0,$`5esn`[..$`5esn`][..$12]].`4esn`!,Reduce(usn2=$usn2[{@usn5}],`4esn` In $`3esn` Is Not Null|$7[{usn2}..][{usn2}..]).usn2,[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 01[2.12..`8esn`]|{0} Ends With $_usn3 Ends With $`7esn`].`6esn`!)"), - octest_legacy:ct_string("Detach Delete None(`5esn` In $999[0.0..] Where {``}[010..][0xabc..])[{`3esn`:False Is Null Is Null,`8esn`:2.12}] Load Csv With Headers From #usn8 Starts With `6esn` Starts With 12.e12 As `` Union Foreach(#usn7 In .e1 =~{@usn6} =~Null| Create (:`2esn`:usn1{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}) Start `6esn`=Node:@usn5({0}) Where $#usn7[#usn7..]) Optional Match (((`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[usn1?:@usn5*]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})-[#usn7:@usn5 *0X7..]->(`2esn` ))),Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))) Where `7esn` In {123456789} In `1esn` Union All Detach Delete $usn1 In {999} In $#usn7,Shortestpath((:`3esn`:@usn5{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`4esn` {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}))[Filter(#usn8 In 7[..999][..{#usn8}] Where $#usn7 Contains 0x0 Contains 1000)..] Match Allshortestpaths((@usn5 {`7esn`:$`6esn`[010..],#usn8:0.e0 Starts With `2esn`})-[@usn5]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})) Using Join On `2esn` Where $1000 In $1000 In $`3esn` Detach Delete $`1esn` =~0X7,.e0 Ends With 0.12,0e0[`8esn`..][$123456789..]"), - octest_legacy:ct_string("Unwind All(`4esn` In $`3esn` Is Not Null Where {123456789} Is Not Null) As `` Remove Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7))._usn4 Union Detach Delete @usn6 Contains Null Contains $`7esn`,$usn2[$`2esn`..`4esn`] Union Detach Delete usn2 Ends With 12.e12,Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})] Create Unique `6esn`=Shortestpath(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null}))),(:`7esn`:_usn3{usn1:$usn1 In {999} In $#usn7}) With Distinct 0x0[{`7esn`}..][$usn2..],Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {`3esn`} Is Not Null Is Not Null)[{@usn6:1.0[$`1esn`..][$123456789..]}] As `6esn`,12.e12 Is Not Null Is Not Null As #usn8 Skip 12.0[..9e0][..$``]"), - octest_legacy:ct_string("Load Csv From [`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`]|`8esn` Contains $usn1 Contains $12][Filter(_usn3 In {`3esn`}[`2esn`] Where #usn7 Contains _usn3 Contains {`3esn`})..(:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})-[usn2?:`7esn` *123456789..{_usn4:$@usn5 Starts With {0} Starts With 12,`2esn`:{7}[..12e12][..Count ( * )]}]->({_usn3:False =~1e1 =~0.e0,_usn3:{999} Starts With $999})] As `6esn` Fieldterminator \"d_str\" With Distinct $7[{123456789}] As `6esn` Order By _usn4 Starts With $_usn4 Starts With 12.e12 Descending Skip \"d_str\" Ends With {`2esn`} Ends With usn2 Limit Reduce(`2esn`=$_usn3[.e0..$usn2],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$`7esn` Is Null Is Null)[Shortestpath((({``})))..{@usn6:{`6esn`} =~$999}]"), - octest_legacy:ct_string("Create Unique `1esn`=((:usn1{`6esn`:2.12 Contains `1esn`,`1esn`:9e12[`6esn`..12.0]})<-[`3esn`? *..01]->(@usn5 :`5esn`)<-[? *..07]-(:`4esn`)),(((`6esn` :`5esn`{usn1:{`6esn`}})<-[? *0X7..{#usn8:{1000} Is Null Is Null,`3esn`:0.e0 Starts With 12.e12 Starts With {_usn4}}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})<-[:`1esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}))) Create ((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})),Allshortestpaths(((`2esn` :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0}))) Union All Create Unique #usn8=Shortestpath((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[_usn3? *0X7..]-(:`5esn`{`2esn`:`4esn`[1.0]})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})) Foreach(`6esn` In $`5esn` In $`` In 123.654| Return $`8esn`[1000..0Xa],({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(:@usn5)<-[`7esn`?:`8esn`]-({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}) Ends With $7 Ends With All(`` In `` Is Not Null Is Not Null Where 1000 In {`8esn`} In 01) As ``,usn1 Starts With $usn1 As `1esn` Order By Null[``] Descending,1.e1[$`1esn`..@usn6][$0..$_usn3] Asc,$`6esn`[.e0..$`6esn`][$_usn3..{#usn7}] Desc Limit {`4esn`} Starts With 1e1 Unwind {`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]}[@usn5(Distinct {`5esn`} Contains $0 Contains {``},12.e12 Starts With {999} Starts With {`1esn`})] As _usn4)"), - octest_legacy:ct_string("Drop Constraint On()-[`2esn`:_usn3]-()Assert Exists(None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`).``?)"), - octest_legacy:ct_string("Load Csv With Headers From 0e0 Starts With `2esn` Starts With $`` As `3esn` Fieldterminator \"d_str\" Match (_usn3 {@usn5:`5esn`[{`4esn`}..`2esn`],_usn3:07 =~01}) Using Index #usn7:#usn8(`4esn`) Where {``} Starts With $`2esn` Starts With `1esn` Foreach(`8esn` In [_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|`` Is Not Null Is Not Null] Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where {_usn3}[..\"d_str\"][..`5esn`]) Ends With Filter(`3esn` In {7} Is Null Where {123456789} Contains $#usn8)| Remove (:#usn7)-[?:_usn3|_usn3]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[:#usn7 *..010]->(#usn8 :usn1)._usn4!,{_usn4:0.12 Contains 0X0123456789ABCDEF Contains .e0}.`1esn`! Remove None(#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01).`5esn`!) Union Remove `5esn`:_usn4,[1.0[0X7][{`5esn`}],@usn6[$`3esn`..{`3esn`}]].#usn8!"), - octest_legacy:ct_string("Create Constraint On()-[@usn5:@usn6]->()Assert Exists(Any(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`6esn`}).``?)"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From $`` Is Not Null As `7esn` "), - octest_legacy:ct_string("Detach Delete 1.e1[$`1esn`..@usn6][$0..$_usn3],$@usn6[..{#usn7}][..{@usn6}] Load Csv From `5esn`[..Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`])] As _usn4 "), - octest_legacy:ct_string("Foreach(#usn8 In 1000 =~@usn6 =~0x0| Create Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))),`2esn`=(usn2 :`4esn`)-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(`` :_usn4) Unwind {`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}[Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End..[`3esn` In {7} Is Null Where {123456789} Contains $#usn8|#usn7 =~Count ( * ) =~``]][`7esn`(9e1[1000][{123456789}]).._usn3(0.12 =~$0 =~$0)] As ``) Create Allshortestpaths((:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 :usn1)) Foreach(_usn4 In {`4esn`} Starts With $usn2 Starts With $1000| Unwind {`4esn`}[$0..] As @usn5 Unwind 0e0[..010] As ``)"), - octest_legacy:ct_string("Foreach(`1esn` In Count ( * ) Ends With $@usn5| With Distinct {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]),Count ( * ) Is Null As @usn6,123.654[...e0] Order By {usn2} Starts With $`8esn` Starts With Count ( * ) Asc Limit $@usn5 Starts With #usn7 Where {123456789}[0xabc..]) Start usn2=Node:usn1(`4esn`='s_str') Where 12.e12[..Null][..$#usn8] Detach Delete {_usn3} Ends With `5esn`,$#usn8[$`8esn`..{`8esn`}],{`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]}[@usn5(Distinct {`5esn`} Contains $0 Contains {``},12.e12 Starts With {999} Starts With {`1esn`})]"), - octest_legacy:ct_string("Create Constraint On(`2esn`:`4esn`)Assert Reduce(`4esn`=$_usn4 Ends With usn1 Ends With $0,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|.e12 Is Not Null Is Not Null).usn1? Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[@usn6:usn2]-()Assert Exists(`1esn`($1000[999],True In 0e0).`8esn`!)"), - octest_legacy:ct_string("Start `4esn`=Relationship:`3esn`({`1esn`}) ,`7esn`=Rel:`4esn`(`2esn`=\"d_str\")Where usn2 Is Not Null Is Not Null Match #usn7=(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[#usn8]-(:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}) Using Index #usn8:`2esn`(`5esn`) Using Index `3esn`:`5esn`(#usn7) Detach Delete `1esn` In .e0 In {`3esn`}"), - octest_legacy:ct_string("Create #usn8=((:`4esn`{`7esn`:$0[..9e1],usn1:{_usn4} Ends With `6esn`})-[`1esn`? *123456789..{_usn4:$@usn6 Ends With $_usn4 Ends With 0.12}]->(_usn4 :#usn7{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})),((usn1 {`7esn`:{999}})) Load Csv From {_usn4} Is Not Null Is Not Null As usn2 Return Extract(`8esn` In 01[2.12..`8esn`] Where {usn2}|$0[12.e12..]) =~Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null|7 Ends With $`4esn`) =~(usn1 {`2esn`})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->(:_usn3:_usn3{`4esn`:12e12 Ends With {usn1}})<-[`7esn`?:`8esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}) As `1esn`,Extract(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null)[..Any(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})] Order By $`1esn`[{`2esn`}..] Desc,$12 Starts With $`8esn` Starts With $`1esn` Descending Union All Delete .e12[$usn2..][12.e12..],Allshortestpaths(((`7esn` {`2esn`:$`6esn`[123456789..12][True..{`3esn`}],#usn7:$_usn3[Count(*)]})-[#usn8? *..07$_usn4]->(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}))) Is Not Null Is Not Null,1.e1[$`1esn`..@usn6][$0..$_usn3]"), - octest_legacy:ct_string("Detach Delete $`5esn`[$`4esn`..{@usn6}][07..$@usn6],0X7[`7esn`][123.654]"), - octest_legacy:ct_string("Create `1esn`=Allshortestpaths((((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[? *0Xa]-({`7esn`:{999}})-[`7esn`]->(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})))) Union All Create Unique (#usn8 {#usn7:`4esn` Ends With 07 Ends With {`3esn`},`3esn`:{0} In $_usn3})<-[:`4esn` *..010{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]->(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}),(`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]}) Union Create `8esn`=(:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`),Shortestpath(({usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null})) Merge (`1esn` :`4esn`{`6esn`:$`6esn` Ends With Count(*),`7esn`:_usn3 Starts With 12.e12 Starts With 0.12})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}) Start _usn4=Node:`4esn`(_usn4={123456789}) Where {_usn4} In {12} In $0"), - octest_legacy:ct_string("Remove ({#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(`7esn` {`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})-[`2esn` *0xabc..{`3esn`:$#usn8[$`8esn`..{`8esn`}]}]-({_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1}).``?,#usn7(Distinct).`3esn`!"), - octest_legacy:ct_string("Create Constraint On(`2esn`:usn1)Assert {`5esn`:$123456789 In 0X0123456789ABCDEF In 0.e0,``:$1000[0Xa][{#usn7}]}.`7esn` Is Unique"), - octest_legacy:ct_string("Delete Reduce(_usn4=01[{`2esn`}..{@usn6}][$`2esn`..0.0],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|0.12 =~$0 =~$0)[Shortestpath((((`1esn` {@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00})-[`6esn`?:`3esn`|:#usn8]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))))..[{12}[{7}][$123456789]]] Create Unique Shortestpath((((`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})<-[@usn6:@usn5 *0Xa]->({`3esn`:9e1[2.12..{#usn8}]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})))),#usn7=({@usn5:07[..True][..9e12]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}) Union Unwind 0.e0 Starts With 12.e12 Starts With {_usn4} As _usn3 Union Remove Reduce(#usn7=`7esn` Starts With $#usn7 Starts With $`7esn`,#usn8 In 7[..999][..{#usn8}]|`1esn` Ends With {_usn3} Ends With `2esn`).`8esn`,Any(`8esn` In 01[2.12..`8esn`] Where {usn2}).`1esn`!,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}|$#usn8 Ends With $`2esn` Ends With $@usn6].usn1?"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:``)Assert Exists(Reduce(`2esn`=.e1[{`7esn`}..{_usn4}],#usn7 In `2esn`[..$#usn8][..Count(*)]|usn1 In 7 In {123456789}).`1esn`)"), - octest_legacy:ct_string("Load Csv From All(#usn8 In {`5esn`}[.e1..``] Where {_usn3}[..\"d_str\"][..`5esn`])[..Allshortestpaths((`5esn` :`4esn`))] As @usn5 Load Csv From None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {@usn6}[{999}..][00..]) Ends With Shortestpath((`6esn` {_usn4:0Xa =~Null =~$``})<-[``? *0X7..]->(`` :`1esn`)) Ends With Reduce(_usn3={7}[..1.0][..9e0],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|`1esn` Contains {usn2} Contains $#usn8) As `` Fieldterminator 's_str' Union Merge `7esn`=Shortestpath(((`5esn` :_usn4{7})<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})-[:`4esn` *0xabc..{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(`3esn` :`5esn`))) On Create Set `1esn` =12.e12[``][{`2esn`}],`8esn`+=00[{`8esn`}..][{`8esn`}..],#usn7+={_usn4} Ends With `6esn` Match Shortestpath((:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[`6esn`]-(`1esn` {@usn5:1.0[0e0..0.e0]})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})),(((#usn7 :`8esn`:`7esn`{`5esn`:1.0 In Count(*)})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000}))) Using Index _usn4:@usn5(`8esn`) Using Index `8esn`:`1esn`(@usn5) Create `7esn`=Allshortestpaths((@usn6 {`3esn`:{``} Is Not Null})-[usn1?:@usn5*]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})) Union Unwind $`4esn` Starts With $`5esn` Starts With False As #usn8 Detach Delete Single(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]) Is Not Null Is Not Null,{`2esn`:1000[..$0][..True],@usn5:{12} Ends With 0Xa Ends With $`6esn`}[Single(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn1} Ends With $0)..][Extract(`2esn` In `1esn` =~\"d_str\" Where $`4esn` In Null In 0xabc|{`5esn`} Starts With $`5esn` Starts With .e1)..],usn1 Is Not Null"), - octest_legacy:ct_string("Match #usn7=({@usn5:07[..True][..9e12]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}),Allshortestpaths((_usn4 :usn1)<-[`1esn`?:`4esn`]->(`5esn` :`4esn`)) Match `6esn`=((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})) Using Index usn2:@usn6(`5esn`) Using Scan `2esn`:_usn4 Where $@usn5 Contains 0xabc Contains {#usn7} Detach Delete {`3esn`}[`2esn`],{12} Ends With 0Xa Ends With $`6esn`,False[$usn1.._usn4][_usn4..{`3esn`}] Union With *,07 Is Not Null Is Not Null Delete {@usn6}[7] Foreach(`4esn` In {`6esn`}| Create Unique `8esn`=(_usn4 :usn2{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]})) Union Create Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null})))"), - octest_legacy:ct_string("Create Constraint On(`1esn`:``)Assert (#usn7 {@usn6:1.0[0e0..0.e0],`5esn`:9e1 In $`3esn` In $@usn6})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->(`4esn` )-[`7esn`*]->(:#usn7{@usn5:{12} =~#usn8}).`8esn` Is Unique"), - octest_legacy:ct_string("Merge #usn8=Shortestpath((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[_usn3? *0X7..]-(:`5esn`{`2esn`:`4esn`[1.0]})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})) On Match Set usn2+=Case {#usn7}[9e1..][{123456789}..] When $0 Ends With 12.0 Then $`` Is Not Null When $usn1 In {999} In $#usn7 Then 1000[Null..{123456789}] Else 1.0 =~'s_str' =~{`2esn`} End[{@usn5:.e0[..$`8esn`],`4esn`:{usn2} =~12}..Any(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``)] With #usn8 In $@usn6,1.e1[`8esn`][00] Skip 01 Ends With 999 Ends With {`7esn`} Where 123456789 Ends With $`6esn` Ends With $#usn7"), - octest_legacy:ct_string("Delete \"d_str\" =~1000 =~{`1esn`} Match usn2=Shortestpath(((_usn4 :``:#usn8)-[:`8esn` *..01]->({#usn7:0.e0 Starts With `2esn`})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->($#usn8))) Using Index `8esn`:@usn6(`5esn`)"), - octest_legacy:ct_string("Start usn2=Node:_usn4(``={#usn7}) ,``=Node:usn2(#usn8=\"d_str\")Where usn1 Starts With usn1 Starts With $`` Return *,$`7esn`['s_str'] As #usn8,Reduce(`3esn`=$0[..9e1],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|999 In {`3esn`} In usn2) Starts With Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Starts With Allshortestpaths((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})) As `` Limit {@usn5} =~Count ( * ) =~12.0 Create (`6esn` :`8esn`:`7esn`)<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From {999}[_usn4..] As @usn6 Fieldterminator \"d_str\" Create usn1=Shortestpath((()<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[?:`2esn` *00]->(`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}))) Return Distinct *,07[$#usn7..{1000}],0X0123456789ABCDEF =~1e1 =~{`4esn`} Order By $`5esn`[2.12..] Asc"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From `5esn` Is Null As usn2 Create Unique ({_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})"), - octest_legacy:ct_string("Create Constraint On()-[`3esn`:`3esn`]-()Assert Exists(Case When 1.0 Starts With 12e12 Starts With {`5esn`} Then {0}[{`8esn`}..`4esn`] When usn2[{7}] Then $`4esn`[`7esn`] Else 9e1 In $`3esn` In $@usn6 End.@usn5!)"), - octest_legacy:ct_string("Create Constraint On(@usn5:@usn5)Assert (:#usn8:#usn8)<-[? *0X7..{#usn8:{1000} Is Null Is Null,`3esn`:0.e0 Starts With 12.e12 Starts With {_usn4}}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12}).usn2! Is Unique"), - octest_legacy:ct_string("Foreach(`3esn` In {`7esn`}[`6esn`][#usn7]| With Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where @usn6 Is Null Is Null)[(`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})..] As `3esn`,{`3esn`} In 0X7 Skip `1esn` In .e0 In {`3esn`} Limit Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End Create Unique #usn7=((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})),Shortestpath((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))))) Start #usn7=Node:`6esn`(`3esn`=\"d_str\") ,`7esn`=Node:``(@usn6={usn1})Where 9e12 Is Not Null Is Not Null Return Distinct 9e1[True] As _usn3 Order By Count ( * ) =~$usn2 =~$usn2 Descending Limit $@usn6 Is Not Null Union All Create Unique Shortestpath((({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`4esn`:`8esn` *00]->(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]->(`6esn` :`4esn`{#usn8:@usn6[$`3esn`..{`3esn`}],`3esn`:usn2[{7}]}))) Union All Foreach(`2esn` In [`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]][Case 1.0 In Count(*) When $_usn4[Count ( * )..] Then Null[``] When $1000[`2esn`..`5esn`][1e1..1.e1] Then .e12[@usn5..#usn7][010..{usn1}] Else 1.0[$`1esn`..][$123456789..] End][All(`4esn` In $`3esn` Is Not Null Where usn2 Is Not Null Is Not Null)]| Detach Delete $usn1[_usn4],.e1[..usn2][..`8esn`],$123456789 Ends With `3esn` Ends With 123456789 Load Csv From {``} Starts With $`2esn` Starts With `1esn` As `` ) Delete {`3esn`} In 01,.e1 In 0,Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]]"), - octest_legacy:ct_string("Create Constraint On(`7esn`:@usn6)Assert Shortestpath((((`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})-[usn1:_usn3|_usn3 *..999{`2esn`:'s_str'[00][{`5esn`}],@usn6:999 Is Not Null Is Not Null}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})))).`1esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`6esn`:`1esn`)Assert Exists(Filter(#usn7 In {``} Is Not Null Where Count ( * ) =~$usn2 =~$usn2).usn1)"), - octest_legacy:ct_string("Drop Constraint On(@usn6:`3esn`)Assert Exists(usn2(Distinct `5esn` Is Null,#usn8 Is Not Null Is Not Null).``)"), - octest_legacy:ct_string("Remove (`8esn` {`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})<-[`7esn`?:`8esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]})-[`7esn`?*..]->(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01}).`7esn`!,{`7esn`:Count(*)[..usn2][..usn2]}.``!,Case 01[{`2esn`}..{@usn6}][$`2esn`..0.0] When Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6} Then {7}[$``][{@usn6}] Else usn1 Is Null End.`6esn`! Load Csv With Headers From 9e12[`6esn`..12.0] As @usn5 Start `1esn`=Node:usn2({`5esn`}) Union All Match ((:@usn5{#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})-[?:usn2|`` *0..{usn2:{12} Is Not Null,`6esn`:``[$`2esn`]}]-(`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})),((_usn3 :`7esn`:_usn3)-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})<-[`5esn`{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(_usn3 {#usn8:_usn4 Is Null Is Null})) Using Index ``:_usn3(usn1) Foreach(@usn6 In 123.654 Contains $`4esn` Contains 1.0| Load Csv From `5esn`[{`4esn`}..`2esn`] As `8esn` Fieldterminator \"d_str\" Optional Match `2esn`=(((`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[:`8esn` *..01]->({#usn7:0.e0 Starts With `2esn`})-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(@usn5 {usn2:0.e0[123.654][01]}))) Using Scan `6esn`:`` Where {`4esn`}[$123456789..][$#usn7..])"), - octest_legacy:ct_string("Create Constraint On(`4esn`:``)Assert Allshortestpaths((`2esn` :`8esn`:`7esn`)-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})).`8esn`? Is Unique"), - octest_legacy:ct_string("Optional Match Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))),`2esn`=(usn2 :`4esn`)-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(`` :_usn4) Where {123456789} Is Null Is Null Union Unwind Count(*) In $`3esn` In 0Xa As `1esn`"), - octest_legacy:ct_string("Create Constraint On(_usn4:usn2)Assert Case When $#usn8 Ends With $`2esn` Ends With $@usn6 Then $@usn5[010..$#usn8][12..$`4esn`] When $12 Ends With 07 Ends With $123456789 Then $`4esn`[`7esn`] Else {`3esn`}[`2esn`] End.usn1! Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`3esn`:`4esn`]-()Assert Exists(({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[`6esn`?:`4esn` *..01]-({`7esn`:{999}}).`4esn`!)"), - octest_legacy:ct_string("Optional Match `2esn`=Allshortestpaths((`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})),Shortestpath((((:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]->(:`4esn`{``:2.12 Is Not Null Is Not Null})))) Using Scan `4esn`:#usn7 Where 0.12 Contains 0X0123456789ABCDEF Contains .e0 Create Unique `8esn`=Allshortestpaths(((:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))) Union Merge Allshortestpaths(((:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`))) On Match Set (:usn1{usn2:0x0 Is Null,`5esn`:{usn2} =~12})<-[:`5esn` *0..{_usn4:7[$`2esn`..{`5esn`}]}]-(`5esn` {`4esn`:01 Is Null})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}).usn1 =2.12 Is Not Null Is Not Null,(:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[{`7esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4]}]-({`5esn`:$#usn8 Ends With $`2esn` Ends With $@usn6})<-[usn1:_usn4|:usn2]-(:_usn4{usn2:0X0123456789ABCDEF[123456789]}).usn2! =Single(#usn8 In {`5esn`}[.e1..``] Where 123.654[$`1esn`]) Is Not Null Is Not Null,[{_usn3}[12.e12],123456789 Ends With 01234567 Ends With 1.e1,True =~010].`8esn`? =9e1 Contains #usn7 Foreach(`3esn` In {`7esn`}[`6esn`][#usn7]| With Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where @usn6 Is Null Is Null)[(`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})..] As `3esn`,{`3esn`} In 0X7 Skip `1esn` In .e0 In {`3esn`} Limit Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End Create Unique #usn7=((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})),Shortestpath((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))))"), - octest_legacy:ct_string("Create Constraint On()-[@usn6:`3esn`]->()Assert Exists({_usn4:00 Starts With 0xabc}.`2esn`?)"), - octest_legacy:ct_string("Merge (_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5}) On Match Set ``(Distinct 0.12 =~`5esn` =~`5esn`,Null[``]).`1esn`! =12e12 Ends With {usn1},@usn5 =7 Ends With $`4esn`,_usn4 =Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End[..[9e1[1000][{123456789}],$_usn3[{#usn7}],`5esn` Starts With $`2esn` Starts With $1000]][..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0 In `2esn` In 010)] On Match Set `6esn`:`8esn`:`7esn` Union All With *,None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12]) Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where $_usn3[.e0..$usn2]|{#usn7}[9e1..][{123456789}..]) Ends With Reduce(`2esn`={`3esn`} In 0X7,_usn3 In {`3esn`}[`2esn`]|$`5esn`[{`3esn`}]) As ``,0.e0[123.654][01] As _usn3 Where 1000 In {`8esn`} In 01 Delete 0.0 Is Not Null Is Not Null,None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})[Any(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")..Reduce(usn1=#usn7[usn1][$`5esn`],`3esn` In {7} Is Null|Count(*) Ends With 12.0 Ends With 12)][(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})..({usn1:`5esn`[_usn4..]})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})],Reduce(#usn7=$1000 Is Null,#usn7 In {``} Is Not Null|$`1esn` Ends With 9e1 Ends With $123456789) In Case When `5esn` Is Null Then True[..$`6esn`] Else `3esn`[`3esn`..][#usn8..] End Union All Foreach(_usn3 In $#usn7 Is Not Null| Load Csv With Headers From 0e0[07] As _usn4 Fieldterminator 's_str') With Distinct $1000 =~$`2esn` As `6esn`,`` Is Not Null Is Not Null Order By $12[..{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}] Ascending Skip False[..``] Limit Count ( * )[$_usn4..$`4esn`] Foreach(#usn8 In $`1esn` Ends With 9e1 Ends With $123456789| Start _usn3=Node:`8esn`(`1esn`={#usn7}) Where usn2[9e12] Remove Case When 01 Contains {`8esn`} Contains 2.12 Then $_usn3[Count(*)] Else {`3esn`}[@usn6..0Xa][{12}..0Xa] End.`5esn`!,[#usn8 In 7[..999][..{#usn8}] Where {`5esn`} Contains $0 Contains {``}|#usn7 Starts With {#usn7} Starts With `7esn`].`1esn`?)"), - octest_legacy:ct_string("Remove #usn8(Distinct $`4esn`[Null..],2.12 =~False).@usn5,[$`3esn` In $_usn4 In {_usn3},{1000} =~0 =~123.654].`3esn` Create `7esn`=Shortestpath((((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``})))),((:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12})) Union All With 7[$`8esn`..123456789][$usn1..$usn1] As `5esn`,2.12[{7}..] As `5esn`,[usn2[$_usn4..][True..],1.0 In Count(*)] =~Any(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12.0[123.654][Count(*)]) =~Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where usn2 Is Not Null Is Not Null) As `` Skip 12.0 In {`2esn`} Where 123.654 Is Not Null Is Not Null Create Unique @usn6=(((:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)-[usn1? *1000..00]->({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}))),(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``}) Optional Match ((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})),``=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))) Using Scan _usn3:_usn3 Where Count ( * ) Ends With $@usn5"), - octest_legacy:ct_string("With Distinct Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7) Contains Filter(`` In `` Is Not Null Is Not Null Where 0e0 Starts With 1000 Starts With #usn7) Contains Shortestpath((($#usn8)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]}))) As #usn7 Order By 2.12 =~Count(*) Descending,`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) Contains Reduce(`7esn`=$_usn4 Ends With usn1 Ends With $0,`4esn` In $`3esn` Is Not Null|`7esn` In {123456789} In `1esn`) Asc Where 1.0 Contains $_usn4"), - octest_legacy:ct_string("Unwind $7 Is Not Null Is Not Null As usn2"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From Shortestpath((((`7esn` {`5esn`:123.654 Contains $`4esn` Contains 1.0,`8esn`:123.654 =~$usn2 =~{999}})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[`2esn`?:`1esn` *00]->({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})))) In (usn2 :@usn5)-[?{`8esn`:{7} Is Null}]->(`` )<-[`3esn`?:`3esn`|:#usn8]-(`` :#usn8:#usn8) In (@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8}) As @usn6 Fieldterminator 's_str'"), - octest_legacy:ct_string("With Distinct *,{#usn8} Is Not Null,$`5esn`[2.12..{_usn3}][_usn3..{1000}] As usn2 Order By 9e0[1.e1..][0Xa..] Descending,{_usn3:`4esn`[..Count ( * )][..{#usn7}]}[Any(_usn3 In {`3esn`}[`2esn`] Where 1e1 In \"d_str\" In `7esn`)..(:usn1{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[`2esn`:_usn4|:usn2]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[`6esn`{`6esn`:Count(*) Ends With 12.0 Ends With 12}]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})][Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7|123.654[{7}..])..Filter(`3esn` In {7} Is Null Where usn1 Is Null Is Null)] Asc Create #usn8=Shortestpath((#usn8 :@usn5)) Union Remove [`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|0Xa[2.12]].`2esn`!,#usn7:usn1 Create Unique @usn6=((`7esn` {`7esn`:{123456789} Contains $#usn8})),Allshortestpaths((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})) Unwind $`2esn`[2.12..'s_str'][{@usn6}.._usn4] As `7esn`"), - octest_legacy:ct_string("Create Constraint On(`7esn`:`3esn`)Assert Exists((`7esn` :`8esn`:`7esn`)-[?:`2esn` *00]->(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]}).`7esn`)"), - octest_legacy:ct_string("Optional Match `6esn`=Allshortestpaths((#usn8 :@usn6:#usn8))"), - octest_legacy:ct_string("With Distinct *,{`2esn`} Ends With {`7esn`},Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 1.0 =~7 =~{usn2}) Is Not Null Is Not Null As `5esn` Skip 12 In `3esn` In 1e1 Where $`7esn` =~{`8esn`} =~$usn1 Foreach(_usn3 In None(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Is Null Is Null| Unwind Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]] As `8esn`) Start `6esn`=Node:usn2({`4esn`}) ,``=Relationship:_usn3(`8esn`={123456789})Where $`6esn` Is Null"), - octest_legacy:ct_string("Create Constraint On(`4esn`:`1esn`)Assert Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..]|0xabc[01..{999}][{7}..{`7esn`}])._usn3! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:_usn3)Assert Exists(`5esn`(@usn6 Contains Null Contains $`7esn`).@usn6!)"), - octest_legacy:ct_string("Start `3esn`=Relationship:#usn7('s_str') ,#usn7=Rel:_usn3({@usn5}) With #usn8 In $@usn6,1.e1[`8esn`][00] Skip 01 Ends With 999 Ends With {`7esn`} Where 123456789 Ends With $`6esn` Ends With $#usn7 Union All Create Unique `3esn`=Shortestpath((`4esn` {`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}})) Unwind `4esn`[`5esn`..12][@usn6..False] As `5esn` Create Allshortestpaths((`3esn` :#usn8:#usn8)),((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})-[`8esn`?:@usn6|`6esn`]-(`2esn` :`6esn`))"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:`1esn`)Assert Exists({_usn3:{#usn7} Is Not Null Is Not Null}.`6esn`?)"), - octest_legacy:ct_string("Create Shortestpath((`3esn` :`8esn`:`7esn`)-[`` *..12]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[`3esn`? *123456789..]-(`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})),Shortestpath((`5esn` :`4esn`)) Return Distinct {``} Is Not Null As #usn7,{#usn7}[`2esn`..],Count ( * ) Contains {`1esn`} Contains 07 Order By `8esn` Is Not Null Is Not Null Desc Limit $123456789[_usn3][{#usn7}] With Distinct *,2.12 Ends With $_usn3 Ends With `3esn` As `7esn`,0 In `2esn` In 010 Order By Count ( * ) Starts With 7 Starts With $123456789 Descending,01234567 Ends With .e12 Ends With $#usn7 Asc,$`6esn` =~1.e1 =~12 Asc Skip [{`3esn`} Is Not Null Is Not Null] Limit Single(#usn8 In {`5esn`}[.e1..``] Where $`` =~12.0 =~$`7esn`) Contains Case When {`1esn`}[12.0..`2esn`][@usn6..{usn1}] Then 's_str'[00][{`5esn`}] Else $#usn7 Is Null End Contains None(`5esn` In $999[0.0..] Where .e1 =~$`8esn`) Where $`8esn` Contains 123456789 Contains $usn2"), - octest_legacy:ct_string("Create Unique (((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`}))),Allshortestpaths((usn2 :`4esn`))"), - octest_legacy:ct_string("Remove usn1:_usn4,[`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]|0Xa[2.12]].`2esn`! Remove (_usn3 :usn2{#usn7:{999} Starts With {0}})<-[`4esn`:@usn6|`6esn`{`4esn`:`2esn` Is Null,@usn5:00 Starts With 0xabc}]-({`5esn`:$#usn8 Ends With $`2esn` Ends With $@usn6}).`2esn`? Create Unique ((:@usn6:#usn8)<-[`1esn`?:usn2|``]-({@usn5:{usn2}[.e0..$999]})),@usn6=Shortestpath((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null}))"), - octest_legacy:ct_string("Create Constraint On()-[`4esn`:#usn7]-()Assert Exists(All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 's_str' Ends With 7 Ends With {_usn4})._usn4!)"), - octest_legacy:ct_string("Remove {#usn8:#usn7 Contains _usn3 Contains {`3esn`}}._usn3?,{`3esn`}.`4esn` Union All Load Csv From None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`]) Is Not Null As `2esn` Union All Unwind 2.12 Contains usn2 Contains True As `4esn` With Distinct Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn`,{``}[$#usn8..$usn1] As @usn6,None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`]) Is Not Null Order By $0[..9e1] Descending,{usn1}[Count(*)..] Desc Skip (`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})-[:`6esn`|`5esn`{`8esn`:$0 Ends With 12.0}]->(`5esn` {`4esn`:7[$`2esn`..{`5esn`}],@usn6:{7} Is Null}) Contains Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) Contains Case 9e12 Is Not Null Is Not Null When 0[..usn2][..{@usn5}] Then 0e0 Ends With 1.e1 Ends With $`4esn` Else usn1 Is Null End Where $`5esn` In $`6esn` Load Csv With Headers From {0}[\"d_str\"..07][0..'s_str'] As @usn5 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Create Constraint On()<-[`5esn`:@usn5]-()Assert Exists({`3esn`:{0}[01][`7esn`],`8esn`:2.12 Is Null}.usn2)"), - octest_legacy:ct_string("Foreach(`7esn` In Case When _usn4 Is Null Is Null Then Null[$#usn7] When $`2esn` Is Null Is Null Then $`3esn` =~{#usn8} End[(@usn5 :usn1)-[`2esn`:_usn4|:usn2]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})..Reduce(@usn5=`3esn`[{usn1}],`8esn` In 01[2.12..`8esn`]|`5esn` Starts With `3esn`)][Shortestpath((:``:#usn8{``:1.0[0e0..0.e0]}))..None(#usn8 In {`5esn`}[.e1..``] Where {_usn3}[..\"d_str\"][..`5esn`])]| Optional Match ((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})),``=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))) Using Scan _usn3:_usn3 Where Count ( * ) Ends With $@usn5 Optional Match `8esn`=Allshortestpaths(((:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))),`2esn`=((`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(_usn3 :#usn7)<-[@usn5?]->(`1esn` :`5esn`{`5esn`:{``} Is Null})) Where $usn1[{`5esn`}][$`6esn`]) Detach Delete 1e1 Contains 0e0"), - octest_legacy:ct_string("Create `7esn`=Allshortestpaths(((`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[`1esn`?:usn2|``{_usn4:$`4esn`[..$`3esn`][..0.0],@usn6:0e0 Starts With 2.12 Starts With $12}]->(:_usn3:_usn3{`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})<-[`8esn` *0X0123456789ABCDEF]->(usn2 :_usn4))),#usn7=Allshortestpaths((@usn6 :`6esn`)<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3))"), - octest_legacy:ct_string("Drop Constraint On(@usn6:_usn3)Assert Exists((`` :`2esn`:usn1{`2esn`:$7 Is Not Null Is Not Null,`1esn`:`1esn` =~\"d_str\"})<-[usn2?:`5esn`{`8esn`:{_usn4}[1000..{@usn5}],_usn3:12e12 Ends With {usn1}}]-(usn2 {_usn3:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`1esn`:7[$`8esn`..123456789][$usn1..$usn1]})<-[ *..12]->(`3esn` :@usn5{`8esn`:$`8esn` =~{1000}}).`6esn`)"), - octest_legacy:ct_string("Unwind 7 Starts With `6esn` Starts With 01234567 As #usn8 Union All Return Distinct Shortestpath((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))) Is Null Is Null As @usn5,1000 In `7esn` In 9e12 As `6esn`,`1esn`[..{`2esn`}][..$_usn4] As #usn7 Union All Return Distinct (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As ``,12[..$`4esn`] As `7esn` Skip Allshortestpaths((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3))[Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})))] Load Csv With Headers From Extract(#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12) Ends With [False =~$7 =~2.12,$`4esn` In Null In 0xabc,{`7esn`} Starts With $123456789 Starts With $@usn6] As @usn6 Fieldterminator 's_str'"), - octest_legacy:ct_string("Foreach(@usn5 In 2.12 Is Null| Load Csv With Headers From `5esn`[.e0..][07..] As `6esn` Fieldterminator \"d_str\" Match _usn4=(:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null})) Union Detach Delete $`5esn`[$`4esn`..{@usn6}][07..$@usn6],0X7[`7esn`][123.654]"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From {``}[...e12] As `1esn` Fieldterminator \"d_str\" Delete [`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\"] Is Null"), - octest_legacy:ct_string("Drop Constraint On()-[_usn3:@usn6]->()Assert Exists((usn1 {`7esn`:{999}})<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4).#usn7!)"), - octest_legacy:ct_string("Create Constraint On()-[#usn7:usn2]->()Assert Exists(Reduce(usn1=$12 Is Null Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|Count ( * ) Contains {`1esn`} Contains 07).`4esn`)"), - octest_legacy:ct_string("Foreach(`4esn` In $12 Starts With {`1esn`} Starts With Null| Start `7esn`=Rel( {``}) Where `1esn` =~0 =~$#usn7 Delete Extract(#usn7 In {``} Is Not Null Where 123456789[0xabc..'s_str'][``..`1esn`])[Reduce(usn1=False,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|$_usn4 Starts With 1e1)]) Union Load Csv From {usn1} In 2.12 In 1000 As _usn4 Merge Shortestpath((((`1esn` :`5esn`{`5esn`:{``} Is Null})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(_usn4 :usn1)))) On Create Set `1esn`+=0.0 =~999,Case When `8esn` Ends With 999 Ends With .e12 Then 12.e12[7..$`6esn`] When 1000 In {`8esn`} In 01 Then `2esn` Starts With $_usn4 Else 0Xa Starts With {`6esn`} Starts With $usn1 End.`3esn`! =Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where `3esn`[{0}][usn1]) Starts With Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[`3esn`? *123456789..]->({_usn3:$`5esn`[`3esn`..]}))),@usn5 =`3esn` Is Null On Create Set `` =$#usn7 Contains 0x0 Contains 1000,#usn7+={``} Is Not Null,Reduce(`5esn`=01234567 Ends With .e12 Ends With $#usn7,`8esn` In 01[2.12..`8esn`]|0Xa =~Null =~$``).`6esn`! ={0} Contains 0.0 Contains $@usn5"), - octest_legacy:ct_string("Create Constraint On()-[`3esn`:#usn8]-()Assert Exists(Extract(`3esn` In {7} Is Null Where 0.e0[123.654][01]|{@usn5}[{#usn8}][9e0]).@usn6!)"), - octest_legacy:ct_string("Foreach(usn1 In {12} Ends With 0Xa Ends With $`6esn`| Create Unique Allshortestpaths(((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})-[`7esn`:#usn8|`1esn` *0xabc..]->(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]->(:@usn6:#usn8))),#usn7=Allshortestpaths((@usn6 :`6esn`)<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3)) Optional Match `1esn`=(#usn8 {`2esn`:$`5esn`[..$`5esn`][..$12]}),@usn5=Allshortestpaths(()<-[_usn4 *..999]->(`7esn` {#usn7:\"d_str\" Contains {123456789} Contains 01,@usn5:$1000 In $1000 In $`3esn`})) Where 1000[0X7..2.12]) Return Distinct *,Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`]|123456789 Ends With 12.e12 Ends With $`7esn`) Is Not Null As `6esn` Order By {#usn7:0X0123456789ABCDEF =~1e1 =~{`4esn`},`2esn`:1.0 =~'s_str' =~{`2esn`}}[..None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 0X7[`7esn`][123.654])][..(:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})<-[`2esn`?:`7esn`]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})] Asc,usn2 Is Null Desc,$_usn3 Starts With $@usn6 Starts With {`8esn`} Desc Limit Reduce(`3esn`=12.0[123.654][Count(*)],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|`1esn` =~\"d_str\")[..Case When $`` Is Not Null Then 12[1.e1..{_usn3}][1.e1..1.0] When 7[True..][2.12..] Then $_usn4 Is Not Null Is Not Null End][..Case When $#usn8[$`2esn`..][{`2esn`}..] Then 0X7[1000..{`1esn`}] When {#usn8}[{7}] Then 07 In `2esn` In 12e12 Else $`1esn` Ends With 9e1 Ends With $123456789 End]"), - octest_legacy:ct_string("Drop Constraint On()-[`7esn`:`6esn`]-()Assert Exists((#usn7 :``:#usn8{`2esn`})-[`2esn`?{_usn3:$_usn4[Count ( * )..],#usn7:{`3esn`}[..07][..{`5esn`}]}]-({_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}).`1esn`?)"), - octest_legacy:ct_string("Start _usn4=Rel:#usn8({_usn3}) ,#usn8=Node:@usn5(usn2='s_str')Where 1.0 Contains $_usn4 Foreach(#usn8 In $`3esn` In Null| Optional Match #usn8=(`1esn` :`4esn`{`6esn`:$`6esn` Ends With Count(*),`7esn`:_usn3 Starts With 12.e12 Starts With 0.12}),(:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]->(#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})-[`1esn`?:`8esn`]->(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}) Using Index `6esn`:`8esn`(``)) Union Remove [`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where $7[0.12][usn1]].`3esn`!,[#usn8 In 7[..999][..{#usn8}] Where $_usn4[1.e1]['s_str']|`2esn` Is Null].usn1 Start _usn4=Node:`2esn`(#usn7='s_str') ,`3esn`=Node:#usn8(`1esn`={`3esn`})Where @usn6 Is Null Is Null"), - octest_legacy:ct_string("Drop Constraint On()<-[usn1:#usn7]-()Assert Exists(Allshortestpaths((((usn2 :#usn8:#usn8)-[`2esn`?:`7esn` *..07$0]-(`4esn` )-[:`2esn`*..{`1esn`}]-(`` {@usn6:1.0[$`1esn`..][$123456789..]})))).`2esn`?)"), - octest_legacy:ct_string("Drop Constraint On()<-[usn2:`6esn`]-()Assert Exists(Extract(#usn7 In {``} Is Not Null Where `8esn`[{123456789}..]).`3esn`)"), - octest_legacy:ct_string("Create Constraint On()<-[@usn6:`7esn`]-()Assert Exists(Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {_usn4}[...e1][..$7]|$1000[999]).#usn7)"), - octest_legacy:ct_string("Create Constraint On(`6esn`:@usn5)Assert Reduce(`5esn`=07[..True][..9e12],#usn8 In {`5esn`}[.e1..``]|@usn5 =~{`5esn`} =~`5esn`).`1esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(_usn3:usn2)Assert Exists(Filter(`4esn` In $`3esn` Is Not Null Where 12.0 =~999 =~$_usn3).`5esn`!)"), - octest_legacy:ct_string("Drop Constraint On()-[`3esn`:`5esn`]->()Assert Exists(Case usn1 Ends With $@usn6 Ends With `3esn` When $`7esn`['s_str'] Then 0X0123456789ABCDEF =~1e1 =~{`4esn`} When Null Ends With `2esn` Ends With $usn1 Then {#usn7}[9e1..][{123456789}..] Else {_usn3}[12.e12] End.`6esn`)"), - octest_legacy:ct_string("Create Constraint On()-[#usn8:`3esn`]->()Assert Exists([$_usn4 Contains Null Contains #usn8,usn2 Is Null,$`8esn`].@usn5?)"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:`6esn`)Assert Exists(({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})-[:#usn8|`1esn` *..01{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}]->(`1esn` {@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}).@usn6!)"), - octest_legacy:ct_string("Create Unique `3esn`=(((`1esn` :`5esn`{`5esn`:{``} Is Null})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(_usn4 :usn1))),(`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Foreach(usn1 In \"d_str\" Starts With 01| Unwind [`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"]|$#usn7 Is Null][..{`4esn`:{`4esn`} =~{7} =~{`7esn`},`8esn`:$#usn7[#usn7..]}] As @usn6)"), - octest_legacy:ct_string("Drop Constraint On()-[_usn3:#usn7]->()Assert Exists(Case When 0X7[1000..{`1esn`}] Then Count(*) Ends With 12.0 Ends With 12 End.#usn7)"), - octest_legacy:ct_string("Return Distinct $12 =~$_usn3 As #usn8,`7esn` Ends With 0x0 As @usn6,$1000 =~$`2esn` As `7esn` Skip All(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`2esn`} Is Not Null)[Filter(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`4esn`} Starts With $usn2 Starts With $1000)..Reduce(`8esn`={`2esn`} Is Not Null Is Not Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{usn1} Ends With $0)][Allshortestpaths(((`1esn` )))..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End]"), - octest_legacy:ct_string("Start _usn4=Node:`3esn`(`2esn`={usn1}) ,`6esn`=Node:``('s_str') Load Csv With Headers From $@usn6 Ends With $_usn4 Ends With 0.12 As `4esn` Start `8esn`=Relationship:`4esn`(`1esn`={`2esn`}) Union All Return {#usn7}[..9e12][..`8esn`] As #usn7,{0}[{`8esn`}..`4esn`] As #usn8 Order By 0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn` Asc Skip [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}|{usn1} Is Null Is Null][Allshortestpaths(((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})))..] Limit `3esn`[$`1esn`..999][``..$123456789] Create `6esn`=({usn1:$`3esn` In $_usn4 In {_usn3}})-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})-[``?]-(#usn8 :@usn6:#usn8{`2esn`:$7 Is Not Null Is Not Null,`1esn`:`1esn` =~\"d_str\"}),_usn4=(:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null}) Load Csv With Headers From 123456789 Ends With $`6esn` Ends With $#usn7 As `6esn` Fieldterminator 's_str' Union All Load Csv With Headers From 0X7[1000..{`1esn`}] As usn1 Match ((_usn4 )) Using Index `3esn`:@usn5(`2esn`) Using Scan _usn3:`1esn` Where {usn1}[0X0123456789ABCDEF] Start `7esn`=Node:`7esn`(_usn4={@usn6}) "), - octest_legacy:ct_string("Return Distinct {``}[$#usn8..$usn1] As `3esn`,{`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]} Starts With [False] Starts With Filter(#usn8 In 7[..999][..{#usn8}] Where $_usn3[.e0..$usn2]) As _usn3,$`6esn`[{999}..9e0] Order By Case When @usn5 Is Null Then 2.12 Ends With $_usn3 Ends With `3esn` Else $1000 Is Null End[Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}])..None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa)][Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01|usn2 Is Null)..Case When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` End] Descending,``[12.0..0e0][{`5esn`}..`7esn`] Asc,Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End Descending Skip {_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] Create (#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null}) Create Unique Allshortestpaths(((usn2 :`6esn`{#usn7:Count ( * ) Contains 07})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))),`3esn`=({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]->(_usn3 :`5esn`) Union Merge (#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(#usn7 ) On Create Set `6esn` =#usn7(usn2 Is Not Null Is Not Null,$`6esn` Ends With Count(*)) Is Null Is Null,Case $usn1 =~`` When 07 Contains 0X7 Contains $`8esn` Then 123456789[{123456789}..'s_str'] When $_usn3[Count(*)] Then $`5esn` In $`` In 123.654 End.`5esn`? =Reduce(`2esn`=$`5esn` In $`` In 123.654,#usn8 In {`5esn`}[.e1..``]|$12[True..][{0}..]) =~Shortestpath((((:#usn7)<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})))),`5esn`+=2.12 =~Count(*) Create Unique `8esn`=Allshortestpaths((((:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?{usn1:0[`7esn`..]}]->({usn1:{`7esn`}[`6esn`][#usn7],usn1:{999} Starts With $999})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))),_usn4=(`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null})<-[``?]->(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}) Create Unique Allshortestpaths(((`8esn` )<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}))),`6esn`=(_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})"), - octest_legacy:ct_string("Create Constraint On(@usn6:_usn4)Assert Exists([`6esn` In 0Xa,`8esn` Contains $usn1 Contains $12].`2esn`)"), - octest_legacy:ct_string("Start ``=Node:@usn5({0}) ,`7esn`=Rel:`4esn`(`2esn`=\"d_str\")Where `3esn`[`3esn`..][#usn8..] Merge _usn3=((:`2esn`:usn1)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`}))"), - octest_legacy:ct_string("With *,`7esn` Is Null As `7esn`,None(`` In `` Is Not Null Is Not Null Where $`6esn` Is Null) Contains Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}))) Contains Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End Order By {usn2} Starts With $`8esn` Starts With Count ( * ) Asc,(:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(:_usn3:_usn3{``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Is Not Null Descending,.e0[..0X0123456789ABCDEF][...e12] Descending Limit {``}[...e12] Load Csv With Headers From ({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]})<-[`2esn`?:`2esn`{`1esn`:0.12 In _usn3 In {0}}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})[(@usn5 :`6esn`)-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]->(:@usn6:#usn8)..{`2esn`:{_usn4} Starts With 0.e0 Starts With 0x0}] As `1esn` Load Csv From Any(#usn8 In 7[..999][..{#usn8}] Where .e0[..$`8esn`]) In Case When 123.654[0e0..$``][$`1esn`..$`8esn`] Then $_usn3['s_str'][07] When {`3esn`}[..07][..{`5esn`}] Then 's_str' Is Not Null Is Not Null End In {`7esn`:{1000}[{_usn3}..],usn2:2.12 =~False} As `7esn` Fieldterminator \"d_str\" Union All Unwind {``} Ends With `7esn` Ends With 0.0 As `6esn` Union All Start #usn7=Node:``(\"d_str\") ,`3esn`=Rel:`7esn`(`3esn`='s_str')Where 9e0 Start `7esn`=Node:_usn4(#usn7=\"d_str\") ,`5esn`=Rel:`4esn`(`2esn`=\"d_str\") Unwind $#usn8[$`8esn`..{`8esn`}] As `6esn`"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From {_usn4} Is Not Null Is Not Null As `5esn` Return `6esn`[..$@usn6] As `` Order By Extract(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0])[Case $`3esn` In $`6esn` In $`` When {_usn3}[..\"d_str\"] Then `3esn`[{usn1}] Else {999} Starts With {0} End][usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010])] Desc,Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))) Desc Limit Count(*) Contains $#usn7 Contains 1e1 Optional Match ``=(`5esn` :_usn4{7})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}),((`5esn` )-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(@usn6 {`3esn`:{``} Is Not Null})<-[`1esn` *0Xa{_usn3:Null Ends With `2esn` Ends With $usn1,#usn8:.e12 Is Not Null Is Not Null}]->(usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})) Using Index `2esn`:`3esn`(@usn6) Using Join On `5esn`,#usn7 Where 123456789 Ends With $`6esn` Ends With $#usn7"), - octest_legacy:ct_string("Drop Constraint On()-[`4esn`:usn1]->()Assert Exists(Reduce(usn1={usn1} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|False)._usn4!)"), - octest_legacy:ct_string("With Distinct *,`7esn` Is Null As `7esn`,None(`` In `` Is Not Null Is Not Null Where $`6esn` Is Null) Contains Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}))) Contains Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End Limit [@usn6 Contains Null Contains $`7esn`,{`4esn`} Starts With $usn2 Starts With $1000] Ends With Any(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $_usn4[0e0..][False..]) Ends With (`1esn` :`2esn`:usn1)-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(`1esn` :_usn3:_usn3{#usn7:$@usn5 Is Not Null Is Not Null})"), - octest_legacy:ct_string("Create Constraint On(usn1:`5esn`)Assert Exists(None(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 7[True..][2.12..])._usn4?)"), - octest_legacy:ct_string("Return {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null} Contains {@usn5:{`3esn`} In 01} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 1.0[0X7][{`5esn`}]|{``}[010..][0xabc..]) As #usn8 Union Unwind 7[{0}..{_usn4}] As `3esn` Create `6esn`=Allshortestpaths((#usn8 :@usn6:#usn8)) Union All Optional Match usn2=Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))) Using Index `2esn`:usn1(`2esn`)"), - octest_legacy:ct_string("Create (:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})-[?:`5esn`]->(:usn2),`2esn`=Shortestpath((({usn2:7[..999][..{#usn8}]}))) Union All Foreach(#usn8 In $`7esn` Is Not Null| Create #usn7=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}),@usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})) Create `3esn`=Allshortestpaths(((:usn1{_usn4})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})))) Delete Shortestpath((((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))))[..Case 0Xa =~123456789 =~_usn4 When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $1000 In $1000 In $`3esn` Then 0.e0[#usn8] End][..(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})],Case $1000[999] When `4esn`[`5esn`..12][@usn6..False] Then {0} Ends With $_usn3 Ends With $`7esn` When $usn1 In {999} In $#usn7 Then Count ( * )[True..][{#usn7}..] End Ends With {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null},`7esn` In 00 Start _usn4=Relationship:`1esn`({12}) ,@usn6=Relationship:`8esn`({`3esn`}) Union All Start `6esn`=Rel( {0}) With Distinct [`4esn` In $`3esn` Is Not Null Where $@usn5 Contains 0xabc Contains {#usn7}|`3esn`[{0}][usn1]] In [{12}[{7}][$123456789],`2esn` Starts With $_usn4] In count($1000 Is Null,0Xa[$123456789..123.654][.e12..0.e0]) Order By None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null) Desc,None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null) Desc Where $usn2[{@usn5}]"), - octest_legacy:ct_string("Create Constraint On(``:usn2)Assert Exists(Case When _usn3[$`8esn`] Then $0[..9e1] End.`7esn`)"), - octest_legacy:ct_string("Create Constraint On(`3esn`:#usn7)Assert Case `4esn`[1.0] When $`4esn`[9e12..123.654] Then $`4esn` In Null In 0xabc End.``? Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[_usn3:``]->()Assert Exists(Reduce(usn2={123456789} Is Not Null,`` In 123456789 Ends With 12.e12 Ends With $`7esn`|$0[``][{@usn6}]).@usn6!)"), - octest_legacy:ct_string("Create (((:`6esn`{_usn4:'s_str' Ends With 7 Ends With {_usn4},@usn6:$`2esn`})-[:@usn6|`6esn` *1000..00]-(usn1 {`1esn`:$@usn6 Ends With $_usn4 Ends With 0.12,`3esn`:`4esn` =~$`5esn`})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(:`3esn`:@usn5$usn2))),@usn5=((:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12})) Unwind 0.e0 Starts With 12.e12 Starts With {_usn4} As _usn3 Load Csv With Headers From None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As usn1 "), - octest_legacy:ct_string("Create Constraint On()<-[`5esn`:``]-()Assert Exists(Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0).`4esn`)"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From 9e12[`6esn`..12.0] As @usn6 Merge (`7esn` {@usn5:{7}[..1.0][..9e0]})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})<-[`1esn`?:usn2|``]-({@usn5:{usn2}[.e0..$999]}) On Match Set `2esn`+=#usn7 Contains _usn3 Contains {`3esn`},Reduce(`8esn`={usn1} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|0xabc[.e0]).`3esn`! =$@usn5 Starts With 01 Starts With .e0 Detach Delete $12 Ends With 07 Ends With $123456789,$`6esn`[{_usn3}..$`4esn`][$_usn4...e12]"), - octest_legacy:ct_string("Return Distinct {``} Is Not Null As #usn7,{#usn7}[`2esn`..],Count ( * ) Contains {`1esn`} Contains 07 Order By `8esn` Is Not Null Is Not Null Desc Limit $123456789[_usn3][{#usn7}]"), - octest_legacy:ct_string("Drop Constraint On()-[``:usn2]-()Assert Exists([$12 Ends With 07 Ends With $123456789,$@usn5 =~1000 =~1000,.e12[@usn5..$12]].#usn7?)"), - octest_legacy:ct_string("Return Distinct Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`3esn`} In 01)[Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12e12 Contains 0Xa|Null[$#usn7])..Allshortestpaths(((`` {`3esn`:{12} Contains {123456789} Contains `4esn`})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})))][Reduce(`6esn`=7[..123456789][..{@usn6}],`5esn` In \"d_str\" Is Null Is Null|$_usn4 Is Not Null Is Not Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] As _usn4,Allshortestpaths((:@usn5{_usn3:07 =~01})) Starts With [`3esn` In {7} Is Null Where {`4esn`} =~{7} =~{`7esn`}] Starts With ({`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}})<-[`6esn`?:_usn4|:usn2]-(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}) Skip 7 Ends With (@usn5 {`7esn`:$`6esn`[010..]})-[:`8esn` *..01]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]}) Ends With #usn8(False =~$7 =~2.12) Union All Foreach(_usn3 In {#usn7} Contains _usn3 Contains 12.e12| Create Unique #usn8=({`7esn`:\"d_str\" Starts With $123456789})<-[`4esn`:``{usn1:`` Is Not Null Is Not Null,usn1:{1000}[{_usn3}..]}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[`4esn`]->(:`6esn`$123456789) Match (usn2 {``:01[{@usn5}]}) Where {123456789} =~`8esn` =~@usn5) Union Foreach(`7esn` In {`5esn`} =~`4esn` =~{_usn4}| Optional Match `7esn`=Shortestpath(((:`5esn`{``:1.0[0e0..0.e0]})-[_usn4:#usn8|`1esn`{`6esn`:#usn8[..{#usn7}]}]->(#usn7 :`4esn`))) Using Index `7esn`:usn2(`6esn`)) Load Csv From {``} Starts With $`2esn` Starts With `1esn` As `` Delete Extract(#usn7 In {``} Is Not Null Where 123456789[0xabc..'s_str'][``..`1esn`])[Reduce(usn1=False,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|$_usn4 Starts With 1e1)]"), - octest_legacy:ct_string("With 2.12[$`5esn`][$#usn8],$7 Ends With `4esn` As `5esn` Order By ({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}) Asc,{#usn8} Starts With 00 Starts With {`6esn`} Desc Skip `1esn`[{usn1}..``][7..$#usn8] Unwind $123456789[_usn3][{#usn7}] As `3esn` Create `1esn`=Shortestpath((usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})<-[ *..010{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}}]->(:_usn4$@usn5)<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]->(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})),((:_usn4{@usn6})) Union All Remove Case When $#usn8[$`8esn`..{`8esn`}] Then $#usn8[$`8esn`..{`8esn`}] Else #usn8 Is Not Null Is Not Null End.@usn6! Start usn1=Node:_usn3({`6esn`}) ,`5esn`=Relationship(*)"), - octest_legacy:ct_string("Create Constraint On()-[#usn8:`8esn`]-()Assert Exists((`4esn` :`7esn`:_usn3{#usn8:{`7esn`} Is Null,`3esn`:`1esn` =~\"d_str\"})-[_usn4?:`1esn` *7..12]->(:#usn8:#usn8{_usn3:$_usn3['s_str'][07],`7esn`:$1000 In $1000 In $`3esn`}).usn1?)"), - octest_legacy:ct_string("Create usn2=Allshortestpaths(((@usn5 :`4esn`))),(@usn6 :`6esn`)<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3) Union All Unwind {`2esn`} In 12 As `7esn` Foreach(`5esn` In {123456789} Starts With 0.0 Starts With `5esn`| Remove 2.12.`7esn`!,[@usn6 Contains $1000 Contains {`7esn`}].`3esn`?) Union All Optional Match @usn6=Shortestpath((((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``})))),Shortestpath(((@usn6 :`8esn`:`7esn`)<-[`6esn`?:`4esn` *..01]->(`3esn` :#usn7{usn2:12.0 =~999 =~$_usn3,@usn6:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?]-(`7esn` :`5esn`))) Unwind .e12[$usn2..][12.e12..] As `6esn`"), - octest_legacy:ct_string("Return *,$`7esn`['s_str'] As #usn8,Reduce(`3esn`=$0[..9e1],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|999 In {`3esn`} In usn2) Starts With Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Starts With Allshortestpaths((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})) As `` Limit {@usn5} =~Count ( * ) =~12.0 Union Load Csv From 9e1[2.12..{#usn8}] As `2esn` Unwind $@usn5 Is Not Null Is Not Null As `8esn` Start `1esn`=Rel:`4esn`(`4esn`='s_str') Where 123456789 Is Null"), - octest_legacy:ct_string("Match _usn3=(((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5))),(:``:#usn8{_usn3:$`7esn` Is Null Is Null}) Using Scan `4esn`:#usn7 Using Scan `5esn`:usn2 Union All Merge `4esn`=Allshortestpaths((({`3esn`:.e1[..usn2][..`8esn`]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`1esn`{_usn4:{999}}))) Match ((_usn4 )) Using Index `3esn`:@usn5(`2esn`) Using Scan _usn3:`1esn` Where {usn1}[0X0123456789ABCDEF] Union All Merge `5esn`=(((:@usn6:#usn8{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})<-[`6esn`?{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}]->(`4esn` {_usn4:0Xa =~Null =~$``})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))) On Match Set _usn4+=.e1 Ends With 1e1 Ends With @usn5,#usn8+=1.e1[`8esn`][00],`1esn` =[1000 =~@usn6 =~0x0] Starts With {#usn8:$`7esn` =~{`8esn`} =~$usn1,`7esn`:0xabc[01..{999}][{7}..{`7esn`}]} Starts With `7esn`(Distinct 123.654[`3esn`..])"), - octest_legacy:ct_string("Unwind $`1esn`[{`2esn`}..] As `7esn` Unwind [#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn2 Is Null|@usn6[$`3esn`..{`3esn`}]] In Filter(_usn3 In {`3esn`}[`2esn`] Where 1e1 In 123.654 In `3esn`) As _usn3 With Distinct `5esn`[_usn4..],$123456789 In 0X0123456789ABCDEF In 0.e0 Where 7[True..][2.12..] Union All Detach Delete {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]),[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12),$_usn4 Is Null Is Null Match #usn7=Shortestpath((`2esn` :usn1)<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(`3esn` :`8esn`:`7esn`)<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)) Using Join On `8esn`,@usn6 Where 999 Is Not Null Is Not Null"), - octest_legacy:ct_string("Remove Any(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..]).usn2 Remove `8esn`(Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},9e1[$usn2]).`8esn` Union Return *,0X7[1000..{`1esn`}],12.e12 Is Null Is Null Order By $`6esn`[{_usn3}..$`4esn`][$_usn4...e12] Descending,$`6esn`[.e0..$`6esn`][$_usn3..{#usn7}] Desc Skip `4esn` Is Not Null Is Not Null Load Csv With Headers From 0Xa Starts With {`6esn`} Starts With $usn1 As `` Union All Merge @usn5=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})) On Create Set [{#usn8}[010]].`8esn`! =`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) In [#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]|@usn6 Contains $1000 Contains {`7esn`}] In Filter(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]),`2esn`+=9e1[1000][{123456789}] On Create Set `` =2.12 =~False,#usn7+=$usn1[..{`6esn`}],#usn7+=(:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12} Unwind Count(*) In $`3esn` In 0Xa As `1esn` Return Distinct {123456789} =~`8esn` =~@usn5 As `5esn` Order By {`4esn`} In 1.0 Descending,`8esn`(Distinct $#usn7 Is Null) Ends With Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]) Ends With Shortestpath(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))) Descending Skip {`4esn`}[#usn7..$123456789][{7}..usn2]"), - octest_legacy:ct_string("Load Csv With Headers From {`3esn`}[..07][..{`5esn`}] As `1esn` Fieldterminator 's_str' Delete 12.0 Contains #usn7,$12[Null..Count(*)][{`5esn`}..{999}],Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where `5esn` Starts With $`2esn` Starts With $1000) Ends With Reduce(``=0.12 =~$0 =~$0,`2esn` In `1esn` =~\"d_str\"|9e12[`1esn`..][$`1esn`..]) Start `3esn`=Rel:#usn8(`8esn`={`6esn`}) ,usn1=Node:`3esn`(`2esn`={usn1})"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:`8esn`)Assert Exists(Filter(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 00[{`8esn`}..][{`8esn`}..]).`7esn`?)"), - octest_legacy:ct_string("Create Constraint On(`3esn`:usn1)Assert {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}.`2esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(`2esn`:`1esn`)Assert Exists(({`5esn`:$`8esn`[1000..0Xa]})-[`4esn`?:_usn4|:usn2 *..01]->(`7esn` :`8esn`:`7esn`{#usn8:01234567[usn2..$12][{`7esn`}..$usn2]}).`4esn`!)"), - octest_legacy:ct_string("Foreach(#usn8 In Shortestpath(((:`8esn`:`7esn`$#usn7)-[`5esn`:`8esn`]->(#usn8 {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]}))) In [_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..]|1.0 Is Null Is Null] In Case When Count ( * ) Contains 07 Then 123.654[$`1esn`] End| Detach Delete .e0[12.e12..],Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0) Is Not Null Is Not Null,0.12[`2esn`..{`6esn`}] Optional Match (({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}]->({`7esn`:7[{0}..{_usn4}]})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(usn2 {``:01[{@usn5}]})),`5esn`=Shortestpath((((`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8})<-[@usn6:@usn5 *0Xa]->({`3esn`:9e1[2.12..{#usn8}]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})))) Using Scan `1esn`:`3esn` Where 7[..999][..{#usn8}]) Union All Remove (:_usn4{@usn6})-[`5esn`?:_usn4|:usn2{_usn4:{999}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[{`4esn`:{_usn3}[..$12][..0.12],`7esn`:1.0[0X7][{`5esn`}]}]-({`2esn`:{7} In `2esn`,`1esn`:`4esn`[1.0]})._usn3!,Case `1esn`[{usn1}..``][7..$#usn8] When 9e1[2.12] Then $_usn4 Is Not Null Is Not Null When $`7esn` =~{`8esn`} =~$usn1 Then $`4esn`[9e12..123.654] Else {123456789}[0xabc..] End.`7esn`?,None(#usn7 In `2esn`[..$#usn8][..Count(*)] Where Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6}).usn1? Detach Delete Allshortestpaths(((_usn4 :`8esn`:`7esn`{`4esn`:{`2esn`} Is Not Null Is Not Null,`1esn`:.e1 =~$`8esn`})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2}))),7[$_usn4..9e0],Count(*) Ends With 12.0 Ends With 12 Return Distinct usn2 Is Null,Shortestpath((_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})) Contains [`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 7 Starts With {@usn6} Starts With $``|.e12 Is Not Null Is Not Null] As `6esn` Order By Case When Count(*) In $12 Then .e0 Starts With 0 Starts With 0.e0 When {usn1}[0X0123456789ABCDEF] Then $`6esn`[123456789..12][True..{`3esn`}] Else 7 Starts With {@usn6} Starts With $`` End[Case @usn6 Contains $1000 Contains {`7esn`} When 0.12 =~$0 =~$0 Then $usn1[.._usn4][..False] When {0} Ends With $_usn3 Ends With $`7esn` Then 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3] End..] Desc,$#usn7[@usn5..{1000}][1.e1..7] Asc,123456789[$@usn5..] Asc"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`2esn`)Assert (`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1}).@usn6 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(#usn7:usn1)Assert usn1(Distinct $123456789 Ends With `3esn` Ends With 123456789,`5esn`[7][{usn2}]).`2esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn6:`6esn`)Assert [#usn8 In {`5esn`}[.e1..``]|$`1esn` =~0X7]._usn4 Is Unique"), - octest_legacy:ct_string("Load Csv From {usn2} =~12 As #usn8 Unwind [`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]][..None(#usn8 In 7[..999][..{#usn8}] Where $`7esn`['s_str'])][..`1esn`(Distinct 12e12[$`3esn`],0.0 =~999)] As `8esn` Union Remove [`5esn` In $999[0.0..] Where #usn7 =~Count ( * ) =~``|\"d_str\" Is Null Is Null].`5esn`!,(:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12})-[usn1:`8esn`]-({_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null}).`2esn`,Case When 9e1[$usn2] Then {7}[..12e12][..Count ( * )] When 12.e12[$_usn3..] Then {`8esn`} Ends With `6esn` End.#usn7? Match `5esn`=Allshortestpaths(((`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}))),Allshortestpaths(((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]}))) Where {7}[..12e12][..Count ( * )] Foreach(#usn7 In {`3esn`} In $@usn5 In _usn4| Detach Delete {999} Contains .e0 Contains 12.0,$usn1[{`5esn`}][$`6esn`])"), - octest_legacy:ct_string("Load Csv With Headers From Allshortestpaths((:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))[[{_usn4} In {12} In $0,$`5esn`[2.12..],12[1.e1..{_usn3}][1.e1..1.0]]][[12e12 Is Not Null Is Not Null]] As _usn3 Fieldterminator 's_str' Create ((usn2 :`4esn`)),(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[`6esn`]-(`1esn` {@usn5:1.0[0e0..0.e0]})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}) Optional Match ``=Shortestpath((`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})) Using Scan `6esn`:`` Using Scan `6esn`:`1esn` Where \"d_str\" Is Null Is Null Union Unwind $12[..{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}] As `5esn` With Distinct *,9e1[2.12],$_usn4 Contains Null Contains #usn8 As #usn7 Order By (usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]})<-[ *123456789..]-(:@usn5) Is Null Is Null Desc,False[..{`1esn`}] Desc Skip 1e1[$`5esn`][{`3esn`}] Limit {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains [1.0[0X7][{`5esn`}]] Where 123.654 Contains $`4esn` Contains 1.0 Create Shortestpath((`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(_usn4 {`5esn`:\"d_str\" Starts With 01})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(:`3esn`:@usn5$usn2)),#usn8=Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Union All Foreach(_usn4 In [`5esn` In $999[0.0..] Where `5esn` Starts With `3esn`|12e12 Is Not Null Is Not Null]| Start ``=Rel:#usn8({12}) Match ((:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?:`5esn` *0..]->(usn2 :``:#usn8)<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})) Using Scan _usn4:@usn6 Where `` Ends With 0Xa Ends With `2esn`)"), - octest_legacy:ct_string("Start `1esn`=Node:usn2({12}) ,usn1=Node:`7esn`(`3esn`={``})Where {usn2} Foreach(_usn3 In (_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})<-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :`3esn`:@usn5)<-[? *..999]-(#usn8 :`5esn`{#usn8:0xabc[.e0]})[Shortestpath(({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[`6esn`? *0..]-(:usn1{`3esn`:{123456789} Is Null Is Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))..Allshortestpaths((_usn4 :#usn7)<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]}))]| Delete `4esn`[$999..{`1esn`}][{@usn6}.._usn3] Create #usn8=Shortestpath(((`5esn` )-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(@usn6 {`3esn`:{``} Is Not Null})<-[`1esn` *0Xa{_usn3:Null Ends With `2esn` Ends With $usn1,#usn8:.e12 Is Not Null Is Not Null}]->(usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})))) Union All Start usn2=Rel:usn2({`4esn`}) Where $usn1 In {999} In $#usn7"), - octest_legacy:ct_string("Drop Constraint On()<-[`7esn`:usn1]-()Assert Exists(Single(#usn7 In `2esn`[..$#usn8][..Count(*)]).usn1)"), - octest_legacy:ct_string("Create Constraint On(@usn6:`5esn`)Assert Exists(Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then Count ( * )[0.12...e1] Else 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] End.`4esn`)"), - octest_legacy:ct_string("Create Constraint On(`3esn`:_usn4)Assert Exists(Reduce(@usn5=\"d_str\"[..{@usn5}][..``],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$`7esn` Is Null Is Null).`2esn`)"), - octest_legacy:ct_string("Match `7esn`=Shortestpath(((({#usn7:2.12 Contains usn2 Contains True})-[_usn3?:`6esn`|`5esn` *0X0123456789ABCDEF]-(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})))),`5esn`=((:@usn5)-[:#usn7{`2esn`:.e12 Ends With _usn4}]-(usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)) Using Scan #usn7:`2esn` Where $999 Merge Shortestpath(({`1esn`:0.12[$`3esn`..$_usn3][12.0..usn1]})<-[{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}]->(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`6esn`?:`3esn`|:#usn8{usn1:$usn1 In {999} In $#usn7}]-({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})) On Create Set `8esn`+=[9e1[..$`2esn`]][{`8esn`:False =~$7 =~2.12,`3esn`:Count ( * ) =~$usn2 =~$usn2}][Case {``} Is Null When 2.12 Then $123456789 Ends With {`1esn`} Ends With $`4esn` End] On Create Set None(`1esn` In {`6esn`}[..$@usn6][..`7esn`]).@usn5? =12.0 =~{`2esn`} =~{`1esn`},@usn6 =Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) Is Not Null Is Not Null Remove Filter(`5esn` In \"d_str\" Is Null Is Null Where `6esn`[..$@usn6]).usn2,Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {123456789} Is Null Is Null).`` Union All Remove Case When _usn3[$`8esn`] Then $0[..9e1] End.usn1?,[_usn3[_usn3..][12.e12..]].`8esn`!,None(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where False).`4esn`? Start `7esn`=Rel:_usn4(``={#usn7}) Start `6esn`=Relationship:`2esn`({0}) Where 0e0[..010] Union Start #usn7=Node:_usn4(#usn7=\"d_str\") "), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From False[..``] As usn1 Fieldterminator 's_str' Unwind {``}[010..][0xabc..] As `` Match (((usn2 {``:01[{@usn5}]})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})-[`6esn`? *0..]-(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12}))) Using Index _usn4:`8esn`(#usn7)"), - octest_legacy:ct_string("Unwind Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})] As #usn8 Return Distinct {123456789} =~`8esn` =~@usn5 As `5esn` Order By {`4esn`} In 1.0 Descending,`8esn`(Distinct $#usn7 Is Null) Ends With Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]) Ends With Shortestpath(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))) Descending Skip {`4esn`}[#usn7..$123456789][{7}..usn2] Delete 123.654 Is Not Null Union All Match (({`1esn`})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})<-[`3esn`:#usn7]-(:#usn8:#usn8{_usn4})) Using Index `3esn`:_usn3(`6esn`) Where `7esn`[..{usn1}] Start ``=Rel:#usn8(`5esn`=\"d_str\") ,`3esn`=Relationship:#usn7('s_str')"), - octest_legacy:ct_string("Detach Delete Shortestpath((((`7esn` {`5esn`:123.654 Contains $`4esn` Contains 1.0,`8esn`:123.654 =~$usn2 =~{999}})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[`2esn`?:`1esn` *00]->({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})))) In (usn2 :@usn5)-[?{`8esn`:{7} Is Null}]->(`` )<-[`3esn`?:`3esn`|:#usn8]-(`` :#usn8:#usn8) In (@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8}),Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`)[None(#usn8 In 7[..999][..{#usn8}] Where 0Xa[2.12])..][[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789]]..],$999 Delete $`8esn` In {`1esn`} In 12,Reduce(`4esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|False[..``]) Is Null Is Null,Reduce(`6esn`=@usn5 Is Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{12} Ends With 1.0 Ends With .e0)[Filter(_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null)..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`|`7esn`[..2.12][..00])] Union All Start `8esn`=Relationship:`4esn`(`1esn`={`2esn`}) With Distinct *,`1esn`(Distinct $1000[999]) =~Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) =~{`6esn`:'s_str'[00][{`5esn`}]},{_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] As `` Order By {0}[{`8esn`}..`4esn`] Desc,Case When Count ( * ) Contains 07 Then $`2esn` When 1.0 Is Null Is Null Then `7esn`[..2.12][..{usn1}] End Is Not Null Desc Limit $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Create Unique Allshortestpaths((:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 :usn1))"), - octest_legacy:ct_string("Remove {`4esn`:{`4esn`}[$123456789..][$#usn7..]}.`1esn` Foreach(_usn4 In (`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})-[:`6esn`|`5esn`{`8esn`:$0 Ends With 12.0}]->(`5esn` {`4esn`:7[$`2esn`..{`5esn`}],@usn6:{7} Is Null}) Contains Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) Contains Case 9e12 Is Not Null Is Not Null When 0[..usn2][..{@usn5}] Then 0e0 Ends With 1.e1 Ends With $`4esn` Else usn1 Is Null End| Optional Match (((`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[usn1?:@usn5*]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})-[#usn7:@usn5 *0X7..]->(`2esn` ))),Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))) Where `7esn` In {123456789} In `1esn`) Create Unique `3esn`=((`7esn` {`4esn`:{usn1} Ends With $0})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2})-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]-(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})),(:`4esn`{`7esn`:$0[..9e1],usn1:{_usn4} Ends With `6esn`})-[:@usn5{@usn5:{#usn7}[9e1..][{123456789}..],``:#usn7 Is Not Null Is Not Null}]->(`4esn` :`6esn`{_usn3:$123456789 Ends With `3esn` Ends With 123456789,`6esn`:0e0 Starts With 2.12 Starts With $12})-[`7esn` *..0x0]-(`2esn` :_usn4) Union With *,{12} Is Not Null As `7esn` Skip usn2 Is Not Null Where @usn6[$`3esn`..{`3esn`}] Create `3esn`=({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})<-[usn2?:@usn5{`4esn`:{`7esn`} Is Null,_usn4:$123456789 Ends With {`1esn`} Ends With $`4esn`}]->(`6esn` {`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null})-[usn1? *0X0123456789ABCDEF]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}),`4esn`=Allshortestpaths((((_usn3 )-[?{@usn6:0X7[`7esn`][123.654]}]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})))) Union Load Csv From {``} Starts With $`2esn` Starts With `1esn` As `` Create (({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})),`7esn`=Allshortestpaths((:`4esn`{`5esn`})<-[@usn6?:`5esn`]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})) Merge #usn8=((:`4esn`{`7esn`:$0[..9e1],usn1:{_usn4} Ends With `6esn`})-[`1esn`? *123456789..{_usn4:$@usn6 Ends With $_usn4 Ends With 0.12}]->(_usn4 :#usn7{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})) On Create Set Any(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12.0[123.654][Count(*)]).`4esn`? =(:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case When `6esn`[12..$usn2][{#usn8}..{usn2}] Then {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] When .e12[@usn5..#usn7][010..{usn1}] Then 0.12 =~$0 =~$0 End,`8esn` =All(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Contains (`5esn` :_usn4{`5esn`:07[..True][..9e12]})-[`8esn`?:`2esn`{@usn6:{12}[..0X7]}]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]})<-[_usn4{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00}) Contains [0.12[$`3esn`..$_usn3][12.0..usn1]],_usn4 =$#usn8 In 0Xa In `6esn`"), - octest_legacy:ct_string("Create Constraint On(`8esn`:@usn6)Assert Exists(Single(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01).@usn6!)"), - octest_legacy:ct_string("Unwind {``} Is Not Null As `1esn` Start @usn5=Relationship:``(\"d_str\") "), - octest_legacy:ct_string("Create Unique `3esn`=Shortestpath((`3esn` :@usn5)<-[_usn4?:`` *0X0123456789ABCDEF{`5esn`:$123456789 Is Null Is Null,@usn6:{12} Ends With 1.0 Ends With .e0}]->({@usn5:{usn2}[.e0..$999]})) Union Optional Match Shortestpath(({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->(`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[:`3esn`|:#usn8 *1000..00{usn1:0[`7esn`..]}]-(usn1 :`3esn`:@usn5)),`4esn`=Allshortestpaths((:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})) Using Index ``:usn1(@usn5) Where 12.0 =~999 =~$_usn3 Delete {`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]} Starts With [False] Starts With Filter(#usn8 In 7[..999][..{#usn8}] Where $_usn3[.e0..$usn2]) Foreach(`8esn` In .e1 In 0Xa In #usn7| With Distinct #usn8 In $@usn6,1.e1[`8esn`][00] Where 0.e0 Starts With `2esn` Return Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})] As `4esn`,usn2 Is Null As `7esn`,Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn` As _usn3 Order By Count ( * ) =~$usn2 =~$usn2 Descending Limit {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains [1.0[0X7][{`5esn`}]]) Union All With Distinct {0} As `7esn`,1000[..$0][..True] Limit Case When @usn5 Is Null Then 2.12 Ends With $_usn3 Ends With `3esn` Else $1000 Is Null End[Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}])..None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa)][Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01|usn2 Is Null)..Case When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` End]"), - octest_legacy:ct_string("Drop Constraint On()<-[`5esn`:`7esn`]-()Assert Exists([@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 123456789 Ends With 12.e12 Ends With $`7esn`|`3esn`[..$12][..{`7esn`}]].`6esn`)"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:`7esn`)Assert Exists(Case 123.654[...e0] When $#usn7 Contains 0x0 Contains 1000 Then usn2[$_usn4..][True..] When 0.12[$`3esn`..$_usn3][12.0..usn1] Then #usn8 Else 07 =~01 End.@usn5)"), - octest_legacy:ct_string("Create Constraint On(_usn3:@usn6)Assert Exists(Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {`6esn`}).``?)"), - octest_legacy:ct_string("Unwind False Ends With `3esn` As `8esn` Union All Foreach(`4esn` In $#usn7 Is Not Null Is Not Null| With *,123.654 Is Not Null,Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..] As `7esn` Skip Case When 1.0 =~'s_str' =~{`2esn`} Then $`5esn` In $`6esn` When {`7esn`}[..{`4esn`}] Then {usn1} Ends With $0 End[All(`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"])..[Count ( * )[0.12...e1],1.0[00..],$``]][`4esn`(`4esn` Ends With 07 Ends With {`3esn`})..Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `1esn` =~\"d_str\"|9e12 Is Not Null Is Not Null)] Limit Single(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}])[Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] Where 00 Starts With 0xabc Optional Match _usn3=Shortestpath((:`3esn`:@usn5{`2esn`:{`3esn`}[..07][..{`5esn`}]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})),usn2=({@usn5:usn1 Is Not Null})<-[`3esn`:`6esn`|`5esn` *..12{usn1:0X0123456789ABCDEF Is Null Is Null}]-(:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})) Remove $999.``,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789].`5esn`?,(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})-[usn2?]-(:@usn5)<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->(`7esn` {`5esn`:123.654 Contains $`4esn` Contains 1.0,`8esn`:123.654 =~$usn2 =~{999}}).`5esn`? Union All Load Csv With Headers From 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] As #usn8 Fieldterminator 's_str' Detach Delete $#usn7 Contains 0x0 Contains 1000,{7}[..12e12][..Count ( * )],None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`3esn`} In 01)[Allshortestpaths((`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null}))..{@usn6:.e0[..$`8esn`],`6esn`:12 Ends With 0x0 Ends With 0.e0}]"), - octest_legacy:ct_string("Create Unique _usn4=((@usn6 )<-[usn1?:`8esn` *..010]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})<-[?:`8esn` *..0x0{`2esn`:$`4esn`[Null..]}]->({#usn8:0xabc[.e0]})),Shortestpath(((`6esn` :`4esn`))) Remove {usn1:#usn7 Is Null Is Null,`5esn`:{`3esn`} In 0X7}.`8esn`! Create Shortestpath((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654}))"), - octest_legacy:ct_string("Create Constraint On()-[_usn4:_usn3]->()Assert Exists(Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where ``[$`2esn`])._usn3?)"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:@usn5)Assert Exists([{usn1} Is Null Is Null].`7esn`)"), - octest_legacy:ct_string("Drop Constraint On()<-[`1esn`:`6esn`]-()Assert Exists([`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where #usn8 Is Not Null|{123456789}[0xabc..]]._usn4?)"), - octest_legacy:ct_string("Create Constraint On()<-[``:_usn4]-()Assert Exists(Shortestpath((((_usn3 )-[?{@usn6:0X7[`7esn`][123.654]}]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})))).usn1?)"), - octest_legacy:ct_string("Create Constraint On()-[`3esn`:`3esn`]->()Assert Exists([@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 01[2.12..`8esn`]|$`2esn`[2.12..'s_str'][{@usn6}.._usn4]]._usn3)"), - octest_legacy:ct_string("Create Constraint On()-[_usn4:`2esn`]-()Assert Exists(Extract(`5esn` In \"d_str\" Is Null Is Null Where 1.e1[$`1esn`..@usn6][$0..$_usn3]|{`7esn`}[..{`4esn`}]).`4esn`)"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:``)Assert Exists(Case When 0X0123456789ABCDEF Is Null Is Null Then `3esn` In $0 In `1esn` End.#usn8?)"), - octest_legacy:ct_string("Create Constraint On(`8esn`:#usn7)Assert Exists(Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $123456789 Starts With 9e0 Starts With 's_str'|9e12 Is Not Null Is Not Null).``!)"), - octest_legacy:ct_string("Remove Extract(#usn8 In {`5esn`}[.e1..``]|12e12 Ends With {usn1})._usn3! Union All Delete Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End[[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]]..Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})))],7[$`8esn`..123456789][$usn1..$usn1],.e0 Ends With 0.12 Union Return 123.654 Is Not Null Is Not Null As `8esn` Order By Count ( * ) Starts With 7 Starts With $123456789 Descending,01234567 Ends With .e12 Ends With $#usn7 Asc,$`6esn` =~1.e1 =~12 Asc"), - octest_legacy:ct_string("Drop Constraint On(@usn6:@usn5)Assert (`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})-[_usn4? *..01]-(@usn6 :`8esn`:`7esn`).`4esn`! Is Unique"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From .e12 In None(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`2esn`} Is Not Null) In Reduce(`3esn`=01[{`2esn`}..{@usn6}][$`2esn`..0.0],`` In 123456789 Ends With 12.e12 Ends With $`7esn`|$_usn4[1.e1]['s_str']) As `1esn` Fieldterminator 's_str' Merge `1esn`=((:usn2{#usn8:$`5esn` In $`6esn`})<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})) Detach Delete {`6esn`:9e12[`1esn`..][$`1esn`..],usn1:@usn5 Is Null} Starts With Extract(`5esn` In $999[0.0..] Where Count ( * ) Contains {`1esn`} Contains 07|`3esn`[..$12][..{`7esn`}]) Starts With None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where `7esn`[..2.12][..{usn1}]),[False] In Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12),$_usn4 Is Null Is Null"), - octest_legacy:ct_string("Create Constraint On(`2esn`:@usn5)Assert Exists([$123456789 Ends With `3esn` Ends With 123456789,$7[{usn2}..][{usn2}..],$_usn3 Contains 999 Contains \"d_str\"].`8esn`?)"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From 0X0123456789ABCDEF[{_usn4}..00] As @usn5 Create Unique (:`1esn`{})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(:`6esn`$123456789) Remove Case When {usn2} =~12 Then `7esn`[..2.12][..00] When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null End.usn2?,[1000 =~@usn6 =~0x0,12.e12[7..$`6esn`],_usn4 Is Null Is Null].#usn7,[{_usn4} Is Not Null Is Not Null,{#usn7} Is Not Null Is Not Null,$usn1[.._usn4][..False]].`4esn`!"), - octest_legacy:ct_string("With Distinct {123456789} Contains $#usn8 As `3esn`,{7}[..12e12][..Count ( * )],$0[$`1esn`..07] Order By 0Xa[$123456789..123.654][.e12..0.e0] Asc,1000 In `7esn` In 9e12 Asc,Null[$#usn7] Asc Where 0X7 =~9e1 Union Optional Match `3esn`=({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True}),Shortestpath((:`8esn`:`7esn`)<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})) Using Index ``:_usn4(_usn4) Where {_usn3}[..\"d_str\"] Merge `6esn`=(@usn5 {`7esn`:$`6esn`[010..]})-[?:`8esn`{`3esn`:1.0 In Count(*)}]-(`4esn` :#usn7{``:$#usn7[@usn5..{1000}][1.e1..7]})-[`5esn`?:@usn5{`4esn`:0Xa =~Null =~$``}]->(:#usn7{usn2:{usn1} Ends With $0,#usn8:`5esn` Starts With $`2esn` Starts With $1000}) On Create Set `4esn`+=(`1esn` :#usn8:#usn8)-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})[..(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})][..`5esn`({12} Ends With 1.0 Ends With .e0)],Any(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`])._usn4! ={@usn6}[{999}..][00..] On Match Set _usn3+={_usn3}[12.e12],`3esn`+=@usn5 =~{`5esn`} =~`5esn`,#usn8 =[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*)) Union Return Distinct 010[Count(*)..12][$_usn3..{`8esn`}],Filter(_usn3 In {`3esn`}[`2esn`] Where False =~$7 =~2.12)[Case When .e12 Is Not Null Is Not Null Then `1esn` In .e0 In {`3esn`} When 7 Starts With {@usn6} Starts With $`` Then 0X0123456789ABCDEF =~1e1 =~{`4esn`} Else {`4esn`}[$123456789..][$#usn7..] End] As `5esn`,9e1[2.12] As _usn3 Load Csv From $123456789 Starts With {_usn4} Starts With $1000 As #usn8 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Load Csv With Headers From Reduce(`4esn`=01 Ends With 999 Ends With {`7esn`},`4esn` In $`3esn` Is Not Null|1.0[`3esn`..][9e0..]) Is Null Is Null As `3esn` Delete {#usn7} Is Not Null Is Not Null,None(`3esn` In {7} Is Null Where 0Xa[2.12]) Is Null Is Null,Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End[[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]]..Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})))] Union All Start `5esn`=Node:`6esn`(`8esn`='s_str') ,`7esn`=Rel:#usn8({_usn3})Where 0.e0 Starts With `2esn` Remove #usn8(Distinct $`4esn`[Null..],2.12 =~False).@usn5,[$`3esn` In $_usn4 In {_usn3},{1000} =~0 =~123.654].`3esn` Union All Unwind $`7esn` Is Null Is Null As _usn3 With *,{_usn4} =~$_usn4 As _usn4 Order By {12} =~#usn8 Asc,[00[$`7esn`],{usn1} In 2.12 In 1000,01 Ends With 999 Ends With {`7esn`}] Starts With Reduce(`6esn`=00[{`8esn`}..][{`8esn`}..],`5esn` In $999[0.0..]|`5esn`[{`4esn`}..`2esn`]) Asc,$1000 Is Null Is Null Descending Skip False[$usn1.._usn4][_usn4..{`3esn`}]"), - octest_legacy:ct_string("Create Constraint On()<-[usn1:#usn7]-()Assert Exists(All(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null).`1esn`)"), - octest_legacy:ct_string("Return 2.12 Is Null,$_usn3 Ends With 0x0 Ends With 12.0 Order By {`3esn`} In $@usn5 In _usn4 Asc Limit [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789] Ends With None(`2esn` In `1esn` =~\"d_str\" Where False Starts With {`5esn`}) Start #usn8=Rel:usn1(\"d_str\") ,@usn6=Node:_usn3({@usn5}) Foreach(`7esn` In $`1esn` Starts With {`8esn`}| Start #usn8=Rel:`7esn`(`6esn`={_usn4}) Match @usn5=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})),(`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]}))"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:`4esn`)Assert None(`8esn` In 01[2.12..`8esn`] Where {999} Starts With {0}).`4esn`! Is Unique"), - octest_legacy:ct_string("Create Unique @usn5=Allshortestpaths((:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})-[:#usn7 *..010]->(#usn8 :usn1)),`4esn`=Allshortestpaths((({usn1:`5esn`[_usn4..]})-[usn1?:_usn3|_usn3]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))) Create @usn5=Allshortestpaths((:#usn8:#usn8{@usn6:`4esn`[..010][..{12}]})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})-[:#usn7 *..010]->(#usn8 :usn1)),(((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`}))) Unwind {`5esn`}[0..`8esn`][0..Null] As usn1 Union Unwind $999 Is Not Null As `` Union All Optional Match ({usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null}) Using Join On `8esn`,@usn5 Using Scan `6esn`:`1esn` Where $#usn8[Count ( * )] With {123456789} Contains $#usn8 As `3esn`,{7}[..12e12][..Count ( * )],$0[$`1esn`..07] Order By {`8esn`}[..{`8esn`}][..$`3esn`] Descending,Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Desc Limit None(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {123456789}[0xabc..]) In (`4esn` {`6esn`:#usn8[..{#usn7}]})<-[_usn4 *..999]->({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[#usn8? *0..]->(#usn7 ) In Extract(`3esn` In {7} Is Null Where 1e1 Contains Count ( * )) Where $`3esn` In $`6esn` In $``"), - octest_legacy:ct_string("Return *,12[..$`4esn`],Case When 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] Then {1000} =~0 =~123.654 When `8esn`[`4esn`..{#usn8}][$12..2.12] Then 00[$`7esn`] End Contains Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`7esn` =~{`8esn`} =~$usn1) Contains [0.12 =~`5esn` =~`5esn`] Order By {12} Contains {123456789} Contains `4esn` Desc,{_usn3:`4esn`[..Count ( * )][..{#usn7}]}[..{_usn4:`5esn`[.e0..][07..],`3esn`:{0} In $_usn3}][..Allshortestpaths(((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})))] Desc,`1esn` In .e0 In {`3esn`} Descending Limit 7 Contains @usn6 Union Start `2esn`=Relationship:`4esn`(`1esn`={`2esn`}) ,`3esn`=Rel:``({`1esn`})Where `4esn` Is Not Null Is Not Null Start usn2=Relationship:`3esn`({`1esn`}) Where `1esn`[..{@usn6}][..$123456789] Foreach(`3esn` In .e1 In 0| Load Csv From {_usn4} Starts With 0.e0 Starts With 0x0 As `8esn` Fieldterminator 's_str' Start `1esn`=Node( {_usn4}) ,`6esn`=Relationship:`4esn`(`1esn`={`2esn`})Where {_usn3}[..\"d_str\"])"), - octest_legacy:ct_string("Return 1000 In `7esn` In 9e12 As `6esn`,$12 Starts With {`1esn`} Starts With Null Skip .e12[@usn5..$12] Limit (`` :_usn4{_usn4:False[..``],usn2:9e1[1000][{123456789}]})<-[:`5esn`{@usn6:$#usn8 Ends With $`2esn` Ends With $@usn6,`6esn`:{7}[..12e12][..Count ( * )]}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]->({@usn6:$usn1 Ends With $`` Ends With $12}) Starts With `3esn`($123456789 Is Null Is Null,0Xa[usn2..]) Starts With (@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(@usn5 {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]->(#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12}) Return Distinct *,`6esn`[2.12..01][{``}..False] As @usn5,Reduce(`5esn`=$`5esn`[{`3esn`}],`3esn` In {7} Is Null|`6esn`[12..$usn2][{#usn8}..{usn2}]) In @usn5(Distinct _usn4 Starts With $_usn4 Starts With 12.e12) In None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Count ( * ) Ends With 12.0) Order By `4esn`[..Count ( * )][..{#usn7}] Ascending Create Unique `1esn`=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})<-[{`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}]->({`7esn`:7[{0}..{_usn4}]})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-({#usn8:0xabc[.e0]}))))"), - octest_legacy:ct_string("Drop Constraint On()-[`4esn`:#usn7]->()Assert Exists(Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8).`3esn`?)"), - octest_legacy:ct_string("Drop Constraint On()<-[`7esn`:`2esn`]-()Assert Exists(({`8esn`:12e12 Is Not Null Is Not Null,usn1:0X7[0e0..`7esn`][1000..0e0]})-[`2esn`:@usn6|`6esn` *..999]->(_usn4 :`4esn`)._usn3!)"), - octest_legacy:ct_string("Foreach(_usn4 In $999 In $_usn3 In {`5esn`}| Load Csv From {999}[1000..{usn2}] As @usn6 ) Start _usn4=Node:usn2(`8esn`='s_str') Where `7esn`[9e0..] Foreach(`1esn` In 07 Is Not Null Is Not Null| Remove (_usn4 {usn1:True Contains {0} Contains 7})-[`3esn`:#usn7]-(`2esn` :_usn3:_usn3).@usn6)"), - octest_legacy:ct_string("Drop Constraint On(``:`6esn`)Assert Extract(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`]).#usn8 Is Unique"), - octest_legacy:ct_string("Create Constraint On(`5esn`:#usn8)Assert Exists(All(`5esn` In \"d_str\" Is Null Is Null Where 00[$`7esn`]).#usn7!)"), - octest_legacy:ct_string("Return *,`4esn`[`5esn`..12][@usn6..False],None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As `5esn` Order By {0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]] Ascending,.e1 =~{@usn6} =~Null Asc,(:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case `8esn` Contains $usn1 Contains $12 When 12.e12[7..$`6esn`] Then {12} Contains {123456789} Contains `4esn` When $`1esn`[1.0..][_usn3..] Then `7esn`[$0][9e12] End Desc Skip 123.654[`3esn`..] Limit `7esn`[$12..][$`8esn`..] Load Csv From 123.654[...e0] As usn2 Union All Create Unique `1esn`=(`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})<-[`2esn`?:`7esn` *0X7..]-(:_usn4)<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]}),usn1=((({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[{``:12.e12[$_usn3..],_usn3:$`6esn`[010..]}]->(@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null}))) With Distinct 12 Ends With $usn2 As #usn8,$`3esn` In Null As @usn6 Order By 9e1 In 2.12 Asc,True[{`7esn`}..] Asc,{`2esn`}[``..07][0x0..1000] Desc Skip [@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null] Is Null Is Null Where Null Ends With {`5esn`} Ends With 0.e0 Union All Start #usn7=Node:``(\"d_str\") ,`3esn`=Rel:`7esn`(`3esn`='s_str')Where 9e0 Start `7esn`=Node:_usn4(#usn7=\"d_str\") ,`5esn`=Rel:`4esn`(`2esn`=\"d_str\") Unwind $#usn8[$`8esn`..{`8esn`}] As `6esn`"), - octest_legacy:ct_string("Unwind 12.e12[..Null][..$#usn8] As usn1 Remove Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]).@usn6!,{`6esn`:Count(*) Ends With 12.0 Ends With 12}.`2esn`?,Reduce(`8esn`='s_str' Ends With 7 Ends With {_usn4},#usn7 In `2esn`[..$#usn8][..Count(*)]|$123456789 Ends With `3esn` Ends With 123456789).#usn7 Union All Foreach(#usn8 In [_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null|999 Is Not Null Is Not Null] Ends With [`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null|{`5esn`} Starts With $`5esn` Starts With .e1] Ends With {``:usn1 Starts With usn1 Starts With $``}| Match `7esn`=Allshortestpaths((((`6esn` {`7esn`:$`6esn`[010..]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-({`1esn`:`3esn`[{`2esn`}]})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})))),@usn6=Allshortestpaths((`1esn` :`5esn`{`5esn`:{``} Is Null})-[:@usn6|`6esn`{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}]->(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[`2esn`?:`2esn`]->(`7esn` {``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})) Using Join On `6esn` Using Index `4esn`:`3esn`(#usn8) Where 123456789 Ends With $`6esn` Ends With $#usn7 Match usn2=(`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[@usn5?:`3esn`|:#usn8{_usn4:{999}}]->(:#usn8:#usn8{``:1.0[0e0..0.e0]})) Foreach(usn1 In Case 01[{`2esn`}..{@usn6}][$`2esn`..0.0] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] When 12e12[$`3esn`] Then {`5esn`} Contains $0 Contains {``} Else usn1 Starts With usn1 Starts With $`` End[usn2(Distinct 0.12 In _usn3 In {0},@usn6 Is Null Is Null).._usn4(0.e0 Starts With 12.e12 Starts With {_usn4},0X0123456789ABCDEF Is Null Is Null)][[{7}[$``][{@usn6}],0.0 Ends With 010 Ends With 1.e1]..$`4esn`]| Start `7esn`=Node:`7esn`(_usn4={@usn6}) ) Foreach(#usn8 In $`7esn` Is Not Null| Create #usn7=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}),@usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})) Create `3esn`=Allshortestpaths(((:usn1{_usn4})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}))))"), - octest_legacy:ct_string("Drop Constraint On()-[`7esn`:@usn5]-()Assert Exists(Reduce(usn2=@usn6 Contains $1000 Contains {`7esn`},`2esn` In `1esn` =~\"d_str\"|usn1 In 7 In {123456789}).`8esn`!)"), - octest_legacy:ct_string("Create Constraint On(`7esn`:`7esn`)Assert Case When 07 Contains 0X7 Contains $`8esn` Then {`4esn`} =~9e0 =~{12} When .e1 Ends With 1e1 Ends With @usn5 Then $#usn8[Count ( * )] Else Count ( * )[True..][{#usn7}..] End.`6esn` Is Unique"), - octest_legacy:ct_string("Create Unique `6esn`=(({``})<-[`5esn`{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(usn2 {#usn7:2.12 =~Count(*),_usn4:$usn2[9e0]})),`1esn`=((:usn2{#usn8:$`5esn` In $`6esn`})<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})) Return Distinct (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As ``,12[..$`4esn`] As `7esn` Order By 01234567[usn2..$12][{`7esn`}..$usn2] Asc Skip .e12[..`7esn`][..0Xa]"), - octest_legacy:ct_string("Drop Constraint On()-[@usn5:#usn7]->()Assert Exists(Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $0[``][{@usn6}]).@usn6!)"), - octest_legacy:ct_string("Drop Constraint On()<-[`7esn`:`5esn`]-()Assert Exists((`` :`8esn`:`7esn`)-[`1esn`? *1000..00{@usn5:.e0[..$`8esn`],`4esn`:{usn2} =~12}]->({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}).`1esn`!)"), - octest_legacy:ct_string("Return Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains Extract(`5esn` In \"d_str\" Is Null Is Null Where Null Ends With `2esn` Ends With $usn1|$#usn7[@usn5..{1000}][1.e1..7]),$1000 Is Not Null,$@usn5 Is Not Null Order By {`4esn`} =~{7} =~{`7esn`} Ascending Foreach(@usn5 In $_usn4[1.e1]['s_str']| Delete $12[$1000..123456789] With Distinct *,Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))) As _usn3 Order By 1.e1[$`1esn`..@usn6][$0..$_usn3] Asc,Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Is Not Null Is Not Null Asc Skip [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789] =~Reduce(_usn3=$``,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{#usn8} Is Null) =~Case {``} Is Null When 2.12 Then $123456789 Ends With {`1esn`} Ends With $`4esn` End Limit {usn1} Ends With $0) Create Unique Allshortestpaths((:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 :usn1)) Union All Start #usn8=Relationship:`4esn`(_usn4={`2esn`}) Create Unique ((:`3esn`:@usn5$7)),((_usn4 {usn1:True Contains {0} Contains 7})) Union All Start #usn7=Rel:@usn6(`7esn`={`8esn`}) ,`3esn`=Node:@usn6('s_str')Where 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Unwind 0Xa[9e1..][$`6esn`..] As `8esn`"), - octest_legacy:ct_string("Drop Constraint On()-[`5esn`:`4esn`]-()Assert Exists(Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $@usn6 Contains 07).`6esn`!)"), - octest_legacy:ct_string("Drop Constraint On()-[@usn6:@usn6]->()Assert Exists(Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where _usn4 Contains 2.12)._usn3?)"), - octest_legacy:ct_string("With Distinct *,2.12[$`5esn`][$#usn8] As #usn8 Order By Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0)[..Case When 01234567[usn2..$12][{`7esn`}..$usn2] Then usn1[`5esn`..$7] Else $1000[0Xa][{#usn7}] End][..Reduce(@usn6=07 Contains 0X7 Contains $`8esn`,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|{#usn7}[9e1..][{123456789}..])] Descending,(:usn2{usn2:7[..999][..{#usn8}]})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})<-[:`4esn` *..010{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]->(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}) Desc,{usn2} Starts With $`8esn` Starts With Count ( * ) Ascending Skip 2.12[$`5esn`][$#usn8] Where 1e1 In \"d_str\" In `7esn` Optional Match ({`3esn`:usn1 Is Null Is Null})-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]-({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`4esn` {@usn6:{12}[..0X7]}) Using Join On _usn3,@usn5 Union Merge usn1=(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})-[_usn4? *..01]-(_usn4 :usn2{usn1:7[True..][2.12..],`8esn`:2.12 Ends With $_usn3 Ends With `3esn`})-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]-({`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}) Merge Shortestpath(((:#usn8:#usn8)-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12}))) On Match Set `5esn` =All(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`2esn`} Is Not Null)[Filter(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`4esn`} Starts With $usn2 Starts With $1000)..Reduce(`8esn`={`2esn`} Is Not Null Is Not Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{usn1} Ends With $0)][Allshortestpaths(((`1esn` )))..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] On Match Set `7esn` =`4esn`[..010][..{12}],@usn5+=0X7[$999][_usn4],@usn5 =0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn` Union Unwind ({`7esn`:7[{0}..{_usn4}]})-[`` *..12]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})-[:`2esn`*..{`1esn`}]-(usn2 :`5esn`{`7esn`:01234567 Is Null Is Null}) =~Reduce(#usn8=$_usn4[0e0..][False..],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|#usn8[#usn8..]) =~Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) As _usn3 Remove [2.12 Is Null,{`5esn`} =~`4esn` =~{_usn4}].`7esn`! Create Unique ((:`1esn`)),`2esn`=((@usn6 :_usn4))"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:``)Assert Exists(({`1esn`:$`8esn`[1000..0Xa]})-[:`8esn` *0..{_usn3:`4esn` Ends With 07 Ends With {`3esn`}}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null}).`8esn`?)"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 2.12 Ends With $_usn3 Ends With `3esn`|{123456789} Contains $#usn8)[{`7esn`:$`6esn`[010..]}..] As @usn5 "), - octest_legacy:ct_string("Create Constraint On(`5esn`:`3esn`)Assert Exists({`3esn`:12.0 Contains #usn7}.@usn5!)"), - octest_legacy:ct_string("Detach Delete $`4esn` In Null In 0xabc,{0} In _usn4 Union All Remove ``:`1esn`,[#usn7 In {``} Is Not Null Where {0}[01][`7esn`]|0e0 Starts With 1000 Starts With #usn7].#usn7,{usn1:`1esn` Contains {usn2} Contains $#usn8}._usn3? Union Unwind $#usn8[$`2esn`..][{`2esn`}..] As `5esn` Foreach(`4esn` In 1000[0X7..2.12]| Remove ({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)._usn4?) Start _usn4=Node:usn2(`8esn`='s_str') ,#usn7=Node:usn2({12})Where $`3esn` Is Not Null"), - octest_legacy:ct_string("With (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As ``,12[..$`4esn`] As `7esn` Skip Allshortestpaths((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3))[Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})))] Where 0.12 =~$0 =~$0 Union All Merge `7esn`=((`7esn` :``:#usn8)) On Create Set _usn3:`7esn`:_usn3,`8esn` ={1000}[$999...e12][`7esn`..'s_str'] On Create Set Case When $`1esn`[{`2esn`}..] Then .e1 =~$`8esn` End.`7esn`? =All(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0[{usn2}..][$`6esn`..])[[{0}[12.0..0Xa][$`5esn`..{_usn3}],$`6esn`[12],.e12[@usn5..#usn7][010..{usn1}]]..],`3esn` =$`2esn` Is Null Is Null With [1.0 =~'s_str' =~{`2esn`}] Contains [9e1[2.12],{usn2}[$`3esn`..][{#usn7}..],Null Ends With {`5esn`} Ends With 0.e0] Contains `5esn` As `8esn`,[`` Ends With 0Xa Ends With `2esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},{`4esn`} =~{7} =~{`7esn`}] As @usn6 Skip {7}[$`5esn`][{_usn3}] Where {7}[..1.0][..9e0] Union Remove @usn6:usn2 Start `6esn`=Relationship:usn2(#usn8=\"d_str\") ,`7esn`=Rel:#usn8({_usn3})"), - octest_legacy:ct_string("Create Constraint On(`1esn`:#usn8)Assert `1esn`(Distinct `3esn`[{`2esn`}],$#usn7 Contains 0x0 Contains 1000).``! Is Unique"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From {`3esn`} In $@usn5 In _usn4 As _usn3 Match (({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}]->({`7esn`:7[{0}..{_usn4}]})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(usn2 {``:01[{@usn5}]})),(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``}) Foreach(`1esn` In True =~{`5esn`}| Return *,$_usn3 =~0.12 =~{#usn8},9e0 Is Not Null Is Not Null Skip {usn2} Starts With $`8esn` Starts With Count ( * ) Limit $@usn5 Starts With $1000 Detach Delete {0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]],$`7esn`['s_str'],Reduce(`1esn`={`8esn`} Ends With `6esn`,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|1e1 In 123.654 In `3esn`)[[#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]]])"), - octest_legacy:ct_string("Remove (usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[usn1?:`8esn` *..010]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}).usn2! Union All Start `3esn`=Relationship:#usn7('s_str') ,#usn7=Rel:_usn3({@usn5}) With #usn8 In $@usn6,1.e1[`8esn`][00] Skip 01 Ends With 999 Ends With {`7esn`} Where 123456789 Ends With $`6esn` Ends With $#usn7 Union Foreach(_usn3 In 00[{`8esn`}..][{`8esn`}..]| Load Csv From {1000}[$`4esn`][\"d_str\"] As `8esn` Fieldterminator \"d_str\")"), - octest_legacy:ct_string("Delete 2.12 Ends With $_usn3 Ends With `3esn`,usn1 Ends With $@usn6 Ends With `3esn`"), - octest_legacy:ct_string("Return All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By (`` :#usn7)<-[`1esn`?:usn1|@usn6 *0..]-(:#usn8:#usn8{@usn6:$_usn3[..1000]})[[`4esn`[..010][..{12}],0.e0 Starts With `2esn`,1000[..$0][..True]]..] Desc,0Xa =~Null =~$`` Ascending,Filter(`2esn` In `1esn` =~\"d_str\" Where 0e0 Starts With 2.12 Starts With $12) Ends With Single(_usn3 In {`3esn`}[`2esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12]) Desc Limit Reduce(``={999},#usn8 In {`5esn`}[.e1..``]|$_usn3['s_str'][07])[..{`4esn`:0.0[$0][{@usn5}]}][..Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..])] Union All Remove Case When {usn2} =~12 Then `7esn`[..2.12][..00] When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null End.usn2?,[1000 =~@usn6 =~0x0,12.e12[7..$`6esn`],_usn4 Is Null Is Null].#usn7,[{_usn4} Is Not Null Is Not Null,{#usn7} Is Not Null Is Not Null,$usn1[.._usn4][..False]].`4esn`! Foreach(usn1 In None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {@usn6}[{999}..][00..]) Ends With Shortestpath((`6esn` {_usn4:0Xa =~Null =~$``})<-[``? *0X7..]->(`` :`1esn`)) Ends With Reduce(_usn3={7}[..1.0][..9e0],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|`1esn` Contains {usn2} Contains $#usn8)| With Distinct *,{``}[`8esn`..],Case {`3esn`}[@usn6..0Xa][{12}..0Xa] When {usn1}[0X0123456789ABCDEF] Then 0x0 Ends With $12 When 0e0 Starts With `2esn` Starts With $`` Then {123456789}[9e12][{0}] Else 0X7[1000..{`1esn`}] End[..({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})] As #usn7 Order By False Contains {`6esn`} Ascending,{`1esn`}[usn1][.e1] Asc Where `7esn`[..2.12][..{usn1}] Remove exists($123456789[_usn3][{#usn7}]).`6esn`?,count(Distinct $999 Is Not Null).`8esn`!,Case When $`5esn` In $`6esn` Then $`6esn` Ends With Count(*) When 0X7[`7esn`][123.654] Then 0X0123456789ABCDEF[{_usn4}..00] Else $@usn5 Is Not Null End.usn2) Union All Create #usn7=(`4esn` :#usn7),(({`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})<-[usn2?:#usn7]-(@usn6 :@usn5{usn2:$`5esn`[..$`5esn`][..$12]})) Match `8esn`=(((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) Using Join On `8esn`,@usn5 Where 123456789[0xabc..'s_str'][``..`1esn`]"), - octest_legacy:ct_string("Create Constraint On(``:#usn7)Assert (_usn3 :usn2{#usn7:{999} Starts With {0}})-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]->(:``:#usn8{`7esn`:00 Starts With 0xabc,_usn3:{123456789} Contains $#usn8})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}).usn2! Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`3esn`)Assert {#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]}.#usn7! Is Unique"), - octest_legacy:ct_string("Load Csv From Shortestpath(({`7esn`:\"d_str\" Starts With $123456789})<-[`4esn`:``{usn1:`` Is Not Null Is Not Null,usn1:{1000}[{_usn3}..]}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[`4esn`]->(:`6esn`$123456789)) Is Null As `7esn` "), - octest_legacy:ct_string("Create Constraint On(@usn5:_usn4)Assert Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``]).`8esn` Is Unique"), - octest_legacy:ct_string("Create `8esn`=Allshortestpaths(((:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))),`2esn`=((`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(_usn3 :#usn7)<-[@usn5?]->(`1esn` :`5esn`{`5esn`:{``} Is Null})) Union All Create Shortestpath(((:@usn6:#usn8{`4esn`:{`7esn`} Is Null,_usn4:$123456789 Ends With {`1esn`} Ends With $`4esn`}))) Foreach(`4esn` In $1000[`2esn`..`5esn`][1e1..1.e1]| Start `6esn`=Rel:#usn8(@usn6={_usn4}) ,`5esn`=Relationship:@usn5(\"d_str\")) Union All Unwind Extract(`5esn` In \"d_str\" Is Null Is Null)[Any(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``)][Case $`7esn` Is Null Is Null When {#usn7}[9e1..][{123456789}..] Then False =~1e1 =~0.e0 Else 1000 In {`8esn`} In 01 End] As `2esn` Create Unique @usn6=Allshortestpaths((`6esn` :`8esn`:`7esn`)<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})),``=((`5esn` :_usn4{7})-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})) Create Unique ((`4esn` {``:{#usn8}[010],usn1:{``} Starts With $`2esn` Starts With `1esn`}))"), - octest_legacy:ct_string("Start `3esn`=Rel:`7esn`(`3esn`='s_str') ,``=Node:#usn8(`8esn`={`6esn`})Where usn1 Is Null Create Unique ((:_usn4)) Union Start _usn4=Node:`3esn`(`2esn`={usn1}) ,`6esn`=Node:``('s_str') Load Csv With Headers From $@usn6 Ends With $_usn4 Ends With 0.12 As `4esn` Start `8esn`=Relationship:`4esn`(`1esn`={`2esn`}) "), - octest_legacy:ct_string("Load Csv With Headers From 01234567 Is Null Is Null As #usn7 Fieldterminator 's_str' Merge _usn3=Allshortestpaths((({_usn3:.e12[@usn5..$12]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]}))) On Create Set `3esn` =0.0[Null][$`2esn`] Create Unique usn2=(`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[@usn5?:`3esn`|:#usn8{_usn4:{999}}]->(:#usn8:#usn8{``:1.0[0e0..0.e0]}),#usn8=((`3esn` {`8esn`:\"d_str\" Contains {123456789} Contains 01,@usn5:`1esn` In .e0 In {`3esn`}})-[#usn7?:`3esn`|:#usn8]->(`2esn` :usn1)-[ *..999{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(@usn5 {_usn3:`1esn` Contains {usn2} Contains $#usn8}))"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:usn2)Assert Exists({_usn4:`8esn`[`4esn`..{#usn8}][$12..2.12]}.#usn7)"), - octest_legacy:ct_string("Create Constraint On(_usn3:`8esn`)Assert [usn1 In @usn5 =~{`5esn`} =~`5esn` Where $`1esn`[1.0..][_usn3..]].#usn7? Is Unique"), - octest_legacy:ct_string("Detach Delete $`3esn` In $`6esn` In $``,\"d_str\" =~{usn1} =~{`7esn`} Remove Single(#usn8 In 7[..999][..{#usn8}] Where $_usn4[1.e1]['s_str']).``,Case When $#usn8 Ends With $`2esn` Ends With $@usn6 Then $1000[`2esn`..`5esn`][1e1..1.e1] Else {`4esn`} =~{7} =~{`7esn`} End._usn3? With *,$#usn7 Starts With {7} Starts With 1.0,Extract(`8esn` In 01[2.12..`8esn`] Where {usn2}|$0[12.e12..]) =~Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Is Not Null|7 Ends With $`4esn`) =~(usn1 {`2esn`})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->(:_usn3:_usn3{`4esn`:12e12 Ends With {usn1}})<-[`7esn`?:`8esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}) As usn2 Order By {#usn8} Starts With 00 Starts With {`6esn`} Descending,$123456789 Ends With $999 Ends With {999} Desc Skip $#usn8[..{`2esn`}][..1.0] Union All Detach Delete {`4esn`}[..'s_str'][..$12],(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(`5esn` :@usn5{`8esn`:{usn2} =~12})[All(`` In `` Is Not Null Is Not Null Where `3esn`[{0}][usn1])],`2esn`(Distinct $``,7 Starts With {@usn6} Starts With $``) Contains {@usn6:_usn3[$`8esn`],usn1:$@usn5 Is Not Null} Contains {@usn5:`8esn`[{123456789}..]} Start usn2=Node:`6esn`(usn2={`8esn`}) ,@usn5=Node:`6esn`(\"d_str\")Where {0}[@usn6..$1000]"), - octest_legacy:ct_string("Create Constraint On()-[`1esn`:`4esn`]-()Assert Exists(All(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `1esn` =~0 =~$#usn7).``?)"), - octest_legacy:ct_string("Foreach(_usn4 In {@usn6} Ends With 's_str' Ends With 12.0| Return `6esn`[2.12..01][{``}..False] As @usn5 Skip 1.0[$`1esn`..][$123456789..] Limit Allshortestpaths((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3))[{_usn3:01[{@usn5}]}..Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where True In 0e0)][Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0.12 In _usn3 In {0})..None(`3esn` In {7} Is Null Where 0Xa[2.12])] Delete Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With Reduce(`1esn`=0.12 Starts With $`5esn` Starts With 12,_usn3 In {`3esn`}[`2esn`]|$12[True..][{0}..]) Starts With Reduce(usn2=Null Ends With {`5esn`} Ends With 0.e0,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|{`6esn`})) Return Distinct (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As ``,12[..$`4esn`] As `7esn` Skip Allshortestpaths((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3))[Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})))] Union Detach Delete [`` Ends With 0Xa Ends With `2esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},{`4esn`} =~{7} =~{`7esn`}],Reduce(`4esn`=01 Ends With 999 Ends With {`7esn`},`4esn` In $`3esn` Is Not Null|1.0[`3esn`..][9e0..]) Is Null Is Null,$_usn3 In {1000} In 0.12 Detach Delete {1000}[$999...e12][`7esn`..'s_str'],12.e12 Is Not Null Is Not Null,$#usn8 Ends With $`2esn` Ends With $@usn6 Create `3esn`=Allshortestpaths(((:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null}))) Union All Detach Delete 0.0 =~0 =~`6esn`,@usn5 In $7,{`7esn`}[..$@usn5][..$#usn8] Return `6esn`(Distinct 2.12 Ends With $_usn3 Ends With `3esn`) Is Null,`8esn`[$#usn7..123456789],All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By Single(#usn8 In {`5esn`}[.e1..``] Where 123.654[$`1esn`]) Is Not Null Is Not Null Descending,_usn4(Distinct _usn3[_usn3..][12.e12..])[[0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},0Xa Starts With {`6esn`} Starts With $usn1]] Desc,1e1 In \"d_str\" In `7esn` Descending Skip [`` Ends With 0Xa Ends With `2esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},{`4esn`} =~{7} =~{`7esn`}] Remove [{12} Contains {123456789} Contains `4esn`,1.e1[`8esn`][00],1.0[$`1esn`..][$123456789..]]._usn4?,Reduce(_usn3=123456789[#usn8..False],_usn3 In {`3esn`}[`2esn`]|123.654 Contains $`4esn` Contains 1.0).#usn8?"), - octest_legacy:ct_string("Start `5esn`=Rel:`2esn`({`1esn`}) ,`4esn`=Relationship:`6esn`(`3esn`=\"d_str\")Where {1000} =~0 =~123.654 Create Unique `6esn`=((`8esn` :#usn8:#usn8{`3esn`:$`4esn`[9e12..123.654]})),((:`4esn`{``:2.12 Is Not Null Is Not Null})-[usn1? *1000..00]->(#usn7 :@usn5{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})) Foreach(`8esn` In True Contains {0} Contains 7| Start ``=Relationship:usn2('s_str') ,`1esn`=Rel:`4esn`(`4esn`='s_str') Delete Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0) Is Not Null Is Not Null) Union Merge `3esn`=Shortestpath(((:usn1{usn1:{`6esn`}})-[@usn6?:`3esn`|:#usn8 *123456789..]->(:_usn3:_usn3{`7esn`:$`1esn` =~0X7})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``}))) On Match Set [1.0 Is Null Is Null,0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`].usn2? =12.0 On Create Set Filter(usn1 In @usn5 =~{`5esn`} =~`5esn` Where @usn6 Contains Null Contains $`7esn`).`4esn` =00 Starts With 0xabc Remove ({usn1:`5esn`[_usn4..]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[?:`8esn`{`3esn`:1.0 In Count(*)}]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})._usn4,Filter(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {_usn4}[...e1][..$7]).`6esn`! Foreach(`7esn` In 999[..$`5esn`][..12.0]| Return Distinct Single(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}])[Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] Skip 0Xa[..{`4esn`}][..12.0] Limit (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})<-[{`8esn`:07 In `2esn` In 12e12}]-(`3esn` :@usn5)-[?:`5esn`]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}) Is Not Null Is Not Null Return Distinct $12 =~$_usn3 As #usn8,`7esn` Ends With 0x0 As @usn6,$1000 =~$`2esn` As `7esn` Skip All(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`2esn`} Is Not Null)[Filter(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`4esn`} Starts With $usn2 Starts With $1000)..Reduce(`8esn`={`2esn`} Is Not Null Is Not Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{usn1} Ends With $0)][Allshortestpaths(((`1esn` )))..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End]) Union All Unwind .e0[..$`8esn`] As usn2 Load Csv With Headers From 0e0 Starts With `2esn` Starts With $`` As `3esn` Fieldterminator \"d_str\""), - octest_legacy:ct_string("Create Constraint On(usn1:`7esn`)Assert Exists(Single(#usn8 In 7[..999][..{#usn8}] Where .e0[..$`8esn`]).#usn8)"), - octest_legacy:ct_string("Drop Constraint On(@usn6:#usn7)Assert Exists((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[usn1? *0X0123456789ABCDEF]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})<-[`4esn`?:`1esn` *..999{`4esn`:False,_usn4:$`7esn` Is Null Is Null}]->(_usn3 {`5esn`:12.e12[0xabc],`2esn`:{`7esn`}[..$@usn5][..$#usn8]}).`8esn`)"), - octest_legacy:ct_string("With Distinct .e1 =~$usn2 =~999 As `2esn`,Allshortestpaths(((`7esn` {`2esn`:$`6esn`[123456789..12][True..{`3esn`}],#usn7:$_usn3[Count(*)]})-[#usn8? *..07$_usn4]->(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}))) Is Not Null Is Not Null As `8esn` Skip Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where `5esn` Starts With $`2esn` Starts With $1000) Ends With Reduce(``=0.12 =~$0 =~$0,`2esn` In `1esn` =~\"d_str\"|9e12[`1esn`..][$`1esn`..]) Limit 9e0 Starts With 01 Where 's_str'[00][{`5esn`}] Union Delete 7[..999][..{#usn8}],`1esn`[{usn1}..``][7..$#usn8] Unwind Case When {_usn4} Starts With 0.e0 Starts With 0x0 Then 12 Ends With 0x0 Ends With 0.e0 Else $1000 Is Null Is Null End Starts With `7esn`(Distinct $#usn7[..{`5esn`}][..9e12]) Starts With {`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`} As usn1 Union All Return *,Case When False Then 0.e0 Ends With $#usn7 Ends With $7 When {@usn6}[{999}..][00..] Then `5esn` Ends With {``} Ends With 12.e12 Else 123.654[$`1esn`] End[Reduce(#usn8=$`6esn` Ends With Count(*),`2esn` In `1esn` =~\"d_str\"|_usn4 Contains 2.12)..] As _usn3 Order By $12[Null..Count(*)][{`5esn`}..{999}] Desc,12.e12[7..$`6esn`] Desc Skip {`4esn`} Ends With {123456789} Ends With $`4esn` Create usn2=Allshortestpaths(((:@usn6:#usn8{`4esn`:$`8esn`[..00]})<-[_usn4?:_usn4|:usn2 *00]->(:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))),#usn8=(((`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})-[@usn5]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))"), - octest_legacy:ct_string("With Distinct [01[2.12..`8esn`],{7} In `2esn`,123456789 Ends With $`6esn` Ends With $#usn7] Starts With Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}]) Starts With `7esn`(Distinct {_usn4} Ends With `6esn`,{@usn6}[7]),$1000 =~$`2esn` As `6esn` Union Start `3esn`=Node:@usn6('s_str') ,`7esn`=Node:`4esn`(usn1=\"d_str\") Union All Merge usn2=((@usn6 :_usn4)) On Create Set `` =Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End,Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where 01[2.12..`8esn`]).`5esn` =Shortestpath(((:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]-(:`5esn`{``:1.0[0e0..0.e0]})<-[``? *..0x0{#usn7:False =~$7 =~2.12}]->(`3esn` :usn2)))[['s_str' In 00,{@usn6}[$`6esn`..`4esn`]]..][Case @usn6 Starts With `6esn` Starts With $`1esn` When {`3esn`}[`2esn`] Then Null In $7 In .e1 When {0}[@usn6..$1000] Then 12.0 Contains #usn7 End..] On Create Set _usn3+=$`3esn` Is Not Null Is Not Null,`3esn` ={`4esn`} Ends With {usn2} Ends With {999},{@usn6:{999} Starts With $999,`4esn`:$usn1[{`5esn`}][$`6esn`]}.@usn5? =$usn1[..{`6esn`}]"), - octest_legacy:ct_string("Return Distinct @usn6 Contains $1000 Contains {`7esn`} Unwind `5esn` Ends With {``} Ends With 12.e12 As `1esn`"), - octest_legacy:ct_string("Create Constraint On(`1esn`:`2esn`)Assert (@usn6 :``:#usn8)-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->(:``:#usn8{`4esn`:{`4esn`}[$123456789..][$#usn7..]})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}).#usn8? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(``:#usn7)Assert Exists([{`4esn`} Ends With {123456789} Ends With $`4esn`].usn1!)"), - octest_legacy:ct_string("Create Constraint On(`8esn`:@usn5)Assert Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`|$_usn3[..1000]).`` Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[usn2:`6esn`]-()Assert Exists(Extract(`2esn` In `1esn` =~\"d_str\" Where usn2[9e12]|$usn1[{`5esn`}][$`6esn`]).`6esn`!)"), - octest_legacy:ct_string("Load Csv From `5esn`[..Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`])] As _usn4 "), - octest_legacy:ct_string("Create Constraint On(`1esn`:_usn3)Assert Exists(Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where False =~1e1 =~0.e0)._usn3)"), - octest_legacy:ct_string("With $123456789 In $#usn7 In `4esn` As `4esn` Order By $`3esn` Is Null Is Null Desc Skip {`1esn`}[{123456789}][{0}] Limit {`2esn`}[$`8esn`][$12] Where {12} Is Null Is Null"), - octest_legacy:ct_string("Create `1esn`=Allshortestpaths(((({#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[`4esn`]->(:`6esn`$123456789)))) Union Remove [0.12 =~$0 =~$0,2.12 Contains usn2 Contains True,2.12].`4esn` Union All Load Csv With Headers From 0Xa Starts With {`6esn`} Starts With $usn1 As `` Load Csv From {_usn4} Is Not Null Is Not Null As usn2 "), - octest_legacy:ct_string("Create Constraint On(`2esn`:`2esn`)Assert Any(`8esn` In 01[2.12..`8esn`] Where {12}[..0X7]).@usn6 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:@usn5)Assert Filter(#usn8 In {`5esn`}[.e1..``] Where 0X7[..2.12]).@usn5 Is Unique"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789] Ends With None(`2esn` In `1esn` =~\"d_str\" Where False Starts With {`5esn`}) As `4esn` Fieldterminator \"d_str\" Optional Match _usn3=(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})-[`8esn`?:#usn8|`1esn` *1000..00]->(:_usn4$@usn5)-[`7esn`:``{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2}]->({_usn4:00 Starts With 0xabc}))) Using Join On `8esn`,``"), - octest_legacy:ct_string("Drop Constraint On(@usn6:_usn3)Assert Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6})._usn3! Is Unique"), - octest_legacy:ct_string("Start @usn5=Relationship(*) Create Unique `8esn`=({@usn5:07[..True][..9e12]})<-[? *1000..00]->(#usn8 {#usn7:`4esn` Ends With 07 Ends With {`3esn`},`3esn`:{0} In $_usn3})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Load Csv With Headers From $_usn4 In usn1 In $7 As `2esn` Fieldterminator 's_str' Union Unwind {1000} =~0 =~123.654 As `3esn` Create Unique ``=(:`3esn`:@usn5{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`4esn` {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]}) Return Distinct `5esn`[.e0..][07..] As `7esn` Skip All(`4esn` In $`3esn` Is Not Null Where {123456789} Is Not Null) Limit {1000} =~0 =~123.654 Union All Create Shortestpath((((:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[`2esn`?{`3esn`:{123456789} Is Null Is Null}]->(usn2 :#usn7)<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) With @usn6[$`3esn`..{`3esn`}] As `3esn`,`6esn`() In {#usn7:0X0123456789ABCDEF =~1e1 =~{`4esn`},`2esn`:1.0 =~'s_str' =~{`2esn`}} In usn1() Skip $`4esn` Is Null Is Null Unwind All(`3esn` In {7} Is Null Where Count ( * ) Contains 07) Is Null Is Null As `2esn`"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:`3esn`)Assert Exists(Single(`` In `` Is Not Null Is Not Null Where $`6esn` Is Null).`8esn`!)"), - octest_legacy:ct_string("Drop Constraint On(``:#usn7)Assert Exists(Reduce(usn2=#usn7,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|#usn7 Is Null Is Null)._usn4)"), - octest_legacy:ct_string("Merge usn2=((:`1esn`{})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})) On Match Set Reduce(usn1=.e1 Ends With 1e1 Ends With @usn5,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$#usn7[#usn7..]).``! ={123456789} =~`8esn` =~@usn5 On Create Set @usn6+={0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]],{`8esn`:{_usn4} Starts With 0.e0 Starts With 0x0}.@usn5! =`4esn`[`5esn`..123456789][0..$12] Union Start `6esn`=Node:`8esn`(\"d_str\") ,`6esn`=Relationship:`4esn`(`1esn`={`2esn`})Where {usn2}[.e0..$999] Create `5esn`=((`` :`2esn`:usn1)<-[usn2?:``]-(usn2 :``:#usn8)<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})) Load Csv From usn2(Distinct Null In $7 In .e1,`1esn` Contains {usn2} Contains $#usn8) In All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7) In Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 2.12 Ends With $_usn3 Ends With `3esn`|{123456789} Contains $#usn8) As `5esn` Fieldterminator 's_str' Union Foreach(`6esn` In {`4esn`} Starts With 1e1| Create Unique (:`6esn`{_usn4:$`5esn` Starts With $0 Starts With {0}})<-[`1esn` *0Xa{_usn3:Null Ends With `2esn` Ends With $usn1,#usn8:.e12 Is Not Null Is Not Null}]->(usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]}),(`4esn` {`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}})<-[``?]->(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})) With Distinct {12} Ends With Count ( * ) Ends With .e12 As `8esn` Skip 12 Ends With 0x0 Ends With 0.e0 Limit Case When `4esn`[`5esn`..12][@usn6..False] Then $123456789 Ends With $999 Ends With {999} When $123456789 Ends With $999 Ends With {999} Then False Is Null Is Null Else 7[True..][2.12..] End Starts With [`8esn` Ends With 999 Ends With .e12] Starts With (`5esn` :`4esn`)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(:`1esn`{``:.e1 Is Null Is Null})<-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]-(`7esn` :`5esn`{`3esn`:`7esn` Is Null}) Foreach(`5esn` In usn2[{7}]| Return Distinct *,(:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8)[Reduce(`7esn`=7[$`2esn`..{`5esn`}],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$_usn4[0e0..][False..])..({``:00 Starts With 0xabc,`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})][{}..{@usn6:`4esn`[..010][..{12}]}],(:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[`6esn` *0Xa{_usn3}]-({@usn5:usn1 Is Not Null})-[:`8esn` *0..{_usn3:`4esn` Ends With 07 Ends With {`3esn`}}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})[..[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]|{7}[..12e12][..Count ( * )]]] Order By (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]}) In {#usn7:_usn3 Starts With 12.e12 Starts With 0.12} Asc,({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}) In Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 07 In `2esn` In 12e12) Descending,All(#usn7 In {``} Is Not Null Where {_usn4}[...e1][..$7]) Is Null Is Null Ascending Skip 1e1 Contains 0e0)"), - octest_legacy:ct_string("Drop Constraint On(#usn8:`7esn`)Assert Exists(Allshortestpaths((((`8esn` {_usn4:`4esn`[1.0],`5esn`:0e0 Ends With 1.e1 Ends With $`4esn`})-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})))).`3esn`!)"), - octest_legacy:ct_string("Create Constraint On(_usn4:_usn3)Assert Exists(Case When 0x0 Ends With $12 Then 07 =~01 When 0X7[`7esn`][123.654] Then 's_str' Ends With 7 Ends With {_usn4} End._usn3!)"), - octest_legacy:ct_string("Load Csv From 12[1.e1..{_usn3}][1.e1..1.0] As `8esn` Fieldterminator 's_str' Union Unwind 12.0 Ends With True Ends With 123456789 As _usn3"), - octest_legacy:ct_string("Create Unique Allshortestpaths(((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]}))) Return *,$@usn5 =~1000 =~1000 Skip $`4esn`[010..`4esn`] Limit 00[$`2esn`..][`6esn`..] Union Return Distinct 0X7[1000..{`1esn`}] As `3esn`,$`2esn`[12.e12..][{`4esn`}..] Order By 0.0 =~999 Asc,$`5esn` In 0.e0 Asc,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) Ascending Limit Count ( * ) Is Null Merge Allshortestpaths(((:@usn5{#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})-[?:usn2|`` *0..{usn2:{12} Is Not Null,`6esn`:``[$`2esn`]}]-(`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}))) Create Unique Allshortestpaths((`1esn` {_usn4:1.e1[$`1esn`..@usn6][$0..$_usn3],#usn8:$@usn5[..12e12][..$123456789]})<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})),usn2=({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->(`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[:`3esn`|:#usn8 *1000..00{usn1:0[`7esn`..]}]-(usn1 :`3esn`:@usn5)"), - octest_legacy:ct_string("Match (((#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})<-[`2esn`?:`7esn` *0X7..]-(_usn4 :usn2{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}))),#usn7=Shortestpath((:`8esn`:`7esn`)) Using Scan `6esn`:`3esn`"), - octest_legacy:ct_string("Drop Constraint On(#usn8:`6esn`)Assert Case `3esn`[`3esn`..][#usn8..] When 9e12[`6esn`..12.0] Then 123.654[`3esn`..] When Count ( * ) =~$usn2 =~$usn2 Then #usn7 Else 12e12 Contains 0Xa End.`2esn`? Is Unique"), - octest_legacy:ct_string("Create Unique Shortestpath(((({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(:`6esn`$123456789)))),@usn6=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7)) Union All Create Unique usn1=Allshortestpaths((#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(usn2 {``:01[{@usn5}]})),Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[`3esn`? *123456789..]->({_usn3:$`5esn`[`3esn`..]}))) Return Distinct Case #usn7 Starts With {#usn7} Starts With `7esn` When $#usn7 Is Null Then Count(*) Is Null Is Null End =~Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))) =~Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {_usn4}[...e1][..$7]),Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..],{123456789} Contains $#usn8 As `3esn` Order By {`4esn`}[$123456789..][$#usn7..] Ascending Skip Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[usn2?:`5esn` *0..]-({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:usn1|@usn6 *00]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})))[..{_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]}]"), - octest_legacy:ct_string("Remove Shortestpath(((({#usn7:2.12 Contains usn2 Contains True})-[_usn3?:`6esn`|`5esn` *0X0123456789ABCDEF]-(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}))))._usn3!,Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {123456789} Is Null Is Null).`6esn`!,{_usn4:12.0 Ends With True}.`2esn`! Remove 123.654.`3esn`!"), - octest_legacy:ct_string("Create Constraint On(@usn5:`3esn`)Assert [{`5esn`} Starts With $`5esn` Starts With .e1]._usn4? Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`5esn`:`1esn`]->()Assert Exists(All(#usn8 In 7[..999][..{#usn8}] Where $@usn5 Starts With {0} Starts With 12).usn2?)"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:usn1)Assert Exists(Case 0X0123456789ABCDEF Ends With $`8esn` Ends With 0.12 When 9e1 Is Not Null Then $`4esn`[..$`3esn`][..0.0] End.`1esn`!)"), - octest_legacy:ct_string("Merge Shortestpath(((#usn7 :``:#usn8{`2esn`})<-[usn1?:#usn8|`1esn`]->({@usn5:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],@usn6:$0})<-[@usn6?:`5esn`]-(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]}))) On Create Set _usn3+=1000[..$0][..True] Foreach(`3esn` In 's_str' In $usn1 In False| With Distinct Case #usn7 Starts With {#usn7} Starts With `7esn` When $#usn7 Is Null Then Count(*) Is Null Is Null End =~Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))) =~Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where {_usn4}[...e1][..$7]),Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..],{123456789} Contains $#usn8 As `3esn` Order By {`4esn`}[$123456789..][$#usn7..] Ascending Skip Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[usn2?:`5esn` *0..]-({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:usn1|@usn6 *00]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})))[..{_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]}] Start `8esn`=Node:_usn4(`6esn`='s_str') ,_usn3=Rel:`6esn`(\"d_str\")Where Count(*) Is Null Is Null) Merge @usn6=((usn2 :@usn5)-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`4esn`{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})) On Match Set `6esn`+=$_usn4 Ends With usn1 Ends With $0,All(`5esn` In \"d_str\" Is Null Is Null Where 1000 In {`8esn`} In 01)._usn4 =Filter(`4esn` In $`3esn` Is Not Null Where {`6esn`}) =~{_usn3:{`3esn`} Is Not Null Is Not Null} On Match Set ``+={12} =~#usn8 Union All Return Distinct 9e0 Starts With 01 As `2esn`,`` Ends With 123456789 Ends With 123.654 As usn2,Count ( * ) Contains 07 Skip {`4esn`} =~{7} =~{`7esn`} Start `3esn`=Node:usn1(\"d_str\") Where Count ( * ) =~$usn2 =~$usn2 Union Match Allshortestpaths(((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(@usn5 :`4esn`)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]}))) Using Index `1esn`:@usn5(#usn8) Merge ``=(`1esn` {``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Start `8esn`=Rel:@usn6(`7esn`={`8esn`}) ,_usn4=Node( {`1esn`})Where 0[1.e1..12e12]"), - octest_legacy:ct_string("Create Constraint On(#usn7:usn2)Assert [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {123456789} Is Null Is Null|1e1 Contains Count ( * )].`6esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[``:`1esn`]-()Assert Exists(Case @usn6 Contains $1000 Contains {`7esn`} When $_usn3[Count(*)] Then 010[#usn7..True] When {`2esn`} Is Not Null Is Not Null Then $`2esn` Is Null Is Null End.`4esn`?)"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:usn2)Assert Exists((:#usn7{@usn5:{12} =~#usn8})<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->(`` :_usn4).`6esn`?)"), - octest_legacy:ct_string("Unwind {usn1} In 2.12 In 1000 As `8esn` Union All Foreach(`8esn` In \"d_str\" Starts With 01| Start `8esn`=Relationship:`6esn`('s_str') Where 010 =~{usn2}) Unwind $`1esn` In $`7esn` In $`6esn` As `2esn` Delete 123456789[#usn8..False],9e1 In 2.12"), - octest_legacy:ct_string("Create Unique #usn7=Shortestpath(((#usn8 :_usn3:_usn3{`4esn`:{_usn3}[..$12][..0.12],`7esn`:1.0[0X7][{`5esn`}]})-[_usn3?:#usn8|`1esn`]-({``:$`8esn` =~{1000}}))),(((_usn4 :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})<-[``?:_usn4|:usn2{`1esn`:False Is Null Is Null}]->(usn2 :`6esn`{#usn7:Count ( * ) Contains 07})))"), - octest_legacy:ct_string("Merge ((`7esn` )-[@usn5?:`4esn`]-(:usn1{usn1:{`6esn`}})) Union All Return 1.0 Contains $_usn4,Case 1.0 In Count(*) When $_usn4[Count ( * )..] Then Null[``] When $1000[`2esn`..`5esn`][1e1..1.e1] Then .e12[@usn5..#usn7][010..{usn1}] Else 1.0[$`1esn`..][$123456789..] End,0 In $_usn4 In $@usn5 As `1esn` Skip $@usn5[..12e12][..$123456789] Load Csv From Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains Extract(`5esn` In \"d_str\" Is Null Is Null Where Null Ends With `2esn` Ends With $usn1|$#usn7[@usn5..{1000}][1.e1..7]) As `4esn` Fieldterminator 's_str'"), - octest_legacy:ct_string("Foreach(usn2 In {`2esn`} Is Not Null| Delete 00[{`8esn`}..][{`8esn`}..]) Union Remove Reduce(``=$usn1[.._usn4][..False],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|#usn8[#usn8..]).`8esn`,Reduce(@usn5=9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Ends With {_usn3}).`8esn` Return Distinct *,`6esn` Is Not Null Is Not Null As `3esn` Order By $`5esn` Starts With $0 Starts With {0} Asc Union All Create Unique ``=Allshortestpaths((((:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)-[usn1? *1000..00]->({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})))),Shortestpath(((:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null}))) Remove Shortestpath((`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[:`3esn`|:#usn8 *7..12{@usn5:_usn4 Starts With $_usn4 Starts With 12.e12}]->(`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null})).`5esn`?,Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01).`7esn`"), - octest_legacy:ct_string("Delete $`1esn` In $`7esn` In $`6esn`,1000[0X7..2.12] Merge `2esn`=(`2esn` :`3esn`:@usn5)<-[`3esn`:`6esn`|`5esn` *..12{usn1:0X0123456789ABCDEF Is Null Is Null}]-(:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[`7esn` *0X0123456789ABCDEF]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0}) On Create Set @usn5+=[$`5esn`[..$`5esn`][..$12],01[2.12..`8esn`],_usn3 Contains $123456789 Contains ``],None(`8esn` In 01[2.12..`8esn`] Where Count ( * ) Ends With $@usn5).`4esn` =Reduce(``={999},#usn8 In {`5esn`}[.e1..``]|$_usn3['s_str'][07])[..{`4esn`:0.0[$0][{@usn5}]}][..Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..])] On Match Set `1esn`+=usn1 Is Null Is Null,Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]).`5esn` =0X0123456789ABCDEF Is Null Is Null"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:`4esn`)Assert Exists(Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where $usn1 Ends With $`` Ends With $12).`7esn`)"), - octest_legacy:ct_string("Load Csv From True[{`7esn`}..] As `4esn` Union With 's_str'[00][{`5esn`}],#usn8 In $@usn6,{1000}[_usn3][$123456789] As `1esn` Order By {999} Starts With $999 Descending Skip {`7esn`} Ends With `4esn` Ends With {@usn5} Limit $@usn5 Starts With {@usn5} Starts With 9e0 Where #usn7"), - octest_legacy:ct_string("Create Constraint On(`4esn`:_usn4)Assert [`8esn` In 01[2.12..`8esn`] Where Count ( * ) Ends With $@usn5|_usn3[_usn3..][12.e12..]]._usn3 Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:_usn4)Assert Exists(Reduce(`3esn`=Null[``],_usn3 In {`3esn`}[`2esn`]|{123456789} Contains $#usn8).`4esn`!)"), - octest_legacy:ct_string("Load Csv With Headers From .e0[..$`8esn`] As `7esn` Fieldterminator \"d_str\" Union All Remove (:usn1{_usn3:{#usn7}[`2esn`..]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(#usn7 ).`2esn`,Case `5esn` Starts With $`2esn` Starts With $1000 When 123.654 =~$usn2 =~{999} Then Count ( * ) Contains `8esn` Contains .e1 End._usn3!,exists($12[$1000..123456789],123456789[0xabc..'s_str'][``..`1esn`]).@usn5 Return {#usn8} Starts With 00 Starts With {`6esn`} As ``,7[{0}..{_usn4}] As #usn8,`4esn`[$999..{`1esn`}][{@usn6}.._usn3] Order By `8esn` Is Not Null Is Not Null Desc Limit {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Create usn2=Shortestpath((usn2 :#usn7)) Union All Return Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7) Contains Filter(`` In `` Is Not Null Is Not Null Where 0e0 Starts With 1000 Starts With #usn7) Contains Shortestpath((($#usn8)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]}))) As #usn7 Order By 2.12 =~Count(*) Descending,`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) Contains Reduce(`7esn`=$_usn4 Ends With usn1 Ends With $0,`4esn` In $`3esn` Is Not Null|`7esn` In {123456789} In `1esn`) Asc"), - octest_legacy:ct_string("Merge _usn4=Shortestpath((usn1 {`2esn`})-[@usn5? *0Xa]->(:`3esn`:@usn5{``:12.e12[$_usn3..],_usn3:$`6esn`[010..]})) On Create Set Reduce(usn1=7[{0}..{_usn4}],`` In 123456789 Ends With 12.e12 Ends With $`7esn`|$999 Is Not Null)._usn3 =@usn6 Contains `3esn` Contains {`2esn`} Remove Reduce(#usn8={0}[01][`7esn`],@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|2.12 =~False).`6esn`!,Case True In 0e0 When 0.0 =~999 Then {@usn5} Is Null Is Null End.`6esn`? Union All Optional Match @usn5=(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(`2esn` :`8esn`:`7esn`),usn1=Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` )))) Using Join On `7esn`,`8esn`,`3esn` Where 7[{0}..{_usn4}] Foreach(`` In $`8esn`| Create `8esn`=(:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`),(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7) Remove Case `1esn`[{usn1}..``][7..$#usn8] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] End.@usn5) Match `3esn`=Shortestpath((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))),Shortestpath(({@usn5:07[..True][..9e12]})-[_usn4?:`5esn` *..07]->({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})) Using Index @usn5:`2esn`(@usn5) Using Scan `7esn`:usn1 Where Null[$#usn7]"), - octest_legacy:ct_string("Return Distinct *,'s_str'[$_usn3..][Count ( * )..] As #usn7,{1000} =~$@usn6 =~12 Order By {_usn3:`4esn`[..Count ( * )][..{#usn7}]}[Any(_usn3 In {`3esn`}[`2esn`] Where 1e1 In \"d_str\" In `7esn`)..(:usn1{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[`2esn`:_usn4|:usn2]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[`6esn`{`6esn`:Count(*) Ends With 12.0 Ends With 12}]->(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})][Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7|123.654[{7}..])..Filter(`3esn` In {7} Is Null Where usn1 Is Null Is Null)] Asc Skip 0X7 In $#usn7 In 1.e1 Limit usn2(7[..999][..{#usn8}])[[$_usn4 Contains Null Contains #usn8,{#usn8}[{7}],{@usn6}[{999}..][00..]]..] Load Csv With Headers From usn2[{7}] As @usn6 Fieldterminator \"d_str\" Union Return *,1e1 Contains 0e0 Skip @usn6 Contains Null Contains $`7esn` Limit $0 Return Distinct $123456789 Ends With $999 Ends With {999},7[$`8esn`..123456789][$usn1..$usn1] As `5esn`,{#usn7}[`2esn`..] Order By #usn7 =~Count ( * ) =~`` Ascending,{123456789} Starts With 0.0 Starts With `5esn` Desc,12.e12 Starts With {999} Starts With {`1esn`} Desc Skip 1.0[0e0..0.e0] Limit `6esn`[12..$usn2][{#usn8}..{usn2}] Union All Optional Match _usn4=(_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :_usn3:_usn3{`7esn`:$`6esn`[123456789..12][True..{`3esn`}],`5esn`:0X0123456789ABCDEF[123456789]})-[?{usn1:0[`7esn`..]}]->(`2esn` :`6esn`) Using Join On @usn6,@usn6 Using Scan _usn4:usn1"), - octest_legacy:ct_string("Create Constraint On()<-[_usn4:_usn4]-()Assert Exists(Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]).`4esn`!)"), - octest_legacy:ct_string("Detach Delete Count(*) Contains $#usn7 Contains 1e1 Start `8esn`=Relationship:usn2('s_str') Union All Unwind `4esn`[`5esn`..12][@usn6..False] As #usn8 Start `2esn`=Node:`2esn`({1000}) Unwind `8esn` Is Not Null Is Not Null As `6esn`"), - octest_legacy:ct_string("Create Constraint On(`2esn`:`8esn`)Assert Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`6esn`}|{7}[..1.0][..9e0])._usn4! Is Unique"), - octest_legacy:ct_string("Merge ((:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[ *0xabc..{usn2:{12} Is Not Null,`6esn`:``[$`2esn`]}]-(`4esn` {`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})) On Create Set usn1 =0.e0[123.654][01],@usn5+=$`8esn`[$`7esn`..][0.e0..] Match `8esn`=(((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) Using Join On `8esn`,@usn5 Where 123456789[0xabc..'s_str'][``..`1esn`]"), - octest_legacy:ct_string("With $1000 =~$`2esn` As `6esn`,`` Is Not Null Is Not Null Order By $12[..{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}] Ascending Skip False[..``] Limit Count ( * )[$_usn4..$`4esn`] Where $#usn8[$`2esn`..][{`2esn`}..] Load Csv With Headers From _usn3 Ends With 7 Ends With `1esn` As `4esn` Union Load Csv From Shortestpath(((:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]-(:`5esn`{``:1.0[0e0..0.e0]})<-[``? *..0x0{#usn7:False =~$7 =~2.12}]->(`3esn` :usn2)))[['s_str' In 00,{@usn6}[$`6esn`..`4esn`]]..][Case @usn6 Starts With `6esn` Starts With $`1esn` When {`3esn`}[`2esn`] Then Null In $7 In .e1 When {0}[@usn6..$1000] Then 12.0 Contains #usn7 End..] As @usn5 Union All Merge Allshortestpaths((:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null})<-[#usn7{`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]}]-({#usn8:True[..$`6esn`]})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})) On Match Set `6esn`+=01[{`2esn`}..{@usn6}][$`2esn`..0.0],Case #usn8[..{#usn7}] When _usn4 Is Null Is Null Then {@usn6} Ends With 's_str' Ends With 12.0 When 010 =~{usn2} Then _usn4 Starts With $_usn4 Starts With 12.e12 Else {`5esn`} Starts With $`5esn` Starts With .e1 End.`8esn`? =_usn4 Contains {`1esn`} Contains \"d_str\",`3esn`(Distinct 0[..usn2][..{@usn5}]).`8esn`? =({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})[Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 0X7[`7esn`][123.654])..Filter(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")] On Match Set All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where $_usn4 Ends With usn1 Ends With $0).@usn5? =Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End,Reduce(`8esn`={usn1} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|0xabc[.e0]).`3esn`! =Reduce(`3esn`=12.0[123.654][Count(*)],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|`1esn` =~\"d_str\")[..Case When $`` Is Not Null Then 12[1.e1..{_usn3}][1.e1..1.0] When 7[True..][2.12..] Then $_usn4 Is Not Null Is Not Null End][..Case When $#usn8[$`2esn`..][{`2esn`}..] Then 0X7[1000..{`1esn`}] When {#usn8}[{7}] Then 07 In `2esn` In 12e12 Else $`1esn` Ends With 9e1 Ends With $123456789 End],`3esn` =12.e12[0xabc]"), - octest_legacy:ct_string("Create Constraint On()-[_usn3:`7esn`]->()Assert Exists([0.12 =~`5esn` =~`5esn`].#usn7)"), - octest_legacy:ct_string("Remove All(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 07 Contains 0X7 Contains $`8esn`).`4esn`,Reduce(``=`5esn`[.e0..][07..],`5esn` In \"d_str\" Is Null Is Null|0.0 In $usn1).#usn8? Union All Merge Allshortestpaths(((:`2esn`:usn1{@usn5:`5esn`[.e0..][07..],`4esn`:`8esn` =~0xabc =~010})<-[``? *0X7..]->(`8esn` :#usn7))) On Create Set `5esn`+=999 In {`3esn`} In usn2"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:@usn6)Assert Exists(Case {``} Is Null When {0} Then {`5esn`} Starts With $`5esn` Starts With .e1 End.`8esn`)"), - octest_legacy:ct_string("Drop Constraint On(_usn3:``)Assert (usn1 :`6esn`)<-[`4esn`?:`7esn` *0..{`2esn`:00[`2esn`..12][123456789..0.e0]}]-(_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12}).`1esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[_usn3:#usn7]->()Assert Exists(Case When 123.654[True..$#usn8][0.12..Count(*)] Then #usn8 Is Not Null Is Not Null When `4esn`[..Count ( * )][..{#usn7}] Then 0e0 Starts With 1000 Starts With #usn7 End._usn4)"), - octest_legacy:ct_string("Create #usn7=(`4esn` :#usn7),(({`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})<-[usn2?:#usn7]-(@usn6 :@usn5{usn2:$`5esn`[..$`5esn`][..$12]})) Match `8esn`=(((:``:#usn8{`7esn`:{12}[{7}][$123456789]})<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})<-[{``:#usn7[usn1][$`5esn`],``:{_usn4} Is Not Null Is Not Null}]->(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) Using Join On `8esn`,@usn5 Where 123456789[0xabc..'s_str'][``..`1esn`] Union All Return Distinct *,{``}[`8esn`..],Case {`3esn`}[@usn6..0Xa][{12}..0Xa] When {usn1}[0X0123456789ABCDEF] Then 0x0 Ends With $12 When 0e0 Starts With `2esn` Starts With $`` Then {123456789}[9e12][{0}] Else 0X7[1000..{`1esn`}] End[..({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})] As #usn7 Order By False Contains {`6esn`} Ascending,{`1esn`}[usn1][.e1] Asc Return *,0Xa[9e1..][$`6esn`..] As @usn6,1e1 In 123.654 In `3esn` As @usn6 Order By 0.0 =~False =~$999 Desc,123456789 Ends With 01234567 Ends With 1.e1 Ascending Limit $999 Delete 12e12 Contains 0Xa"), - octest_legacy:ct_string("Create Unique #usn7=(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[#usn8]-(:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}) Foreach(`2esn` In `6esn`[..$@usn6]| Optional Match (`2esn` :usn1)<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(`3esn` :`8esn`:`7esn`)<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1),Allshortestpaths(((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[? *..0x0]->(`3esn` :`7esn`:_usn3))) Using Index _usn4:`5esn`(`6esn`) Using Index `5esn`:usn2(``) Where 1.0[0X0123456789ABCDEF] Remove _usn3:`2esn`:usn1,[$0[..9e1],0.0[Null][$`2esn`]]._usn4?) Union All Merge Allshortestpaths((@usn6 :`6esn`)<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(_usn3 :`7esn`:_usn3))"), - octest_legacy:ct_string("Drop Constraint On(#usn8:`3esn`)Assert Reduce(#usn7={`5esn`} Starts With $`5esn` Starts With .e1,`` In 123456789 Ends With 12.e12 Ends With $`7esn`|{`5esn`} Contains $0 Contains {``}).usn1? Is Unique"), - octest_legacy:ct_string("Match #usn7=Shortestpath((`2esn` :usn1)<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(`3esn` :`8esn`:`7esn`)<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)) Using Join On `8esn`,@usn6 Where 999 Is Not Null Is Not Null Union Delete $`7esn` Is Not Null,`2esn`(Distinct $``,7 Starts With {@usn6} Starts With $``) Contains {@usn6:_usn3[$`8esn`],usn1:$@usn5 Is Not Null} Contains {@usn5:`8esn`[{123456789}..]},Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..]) In Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null) In Filter(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {#usn8}[.._usn4][..$`3esn`]) Load Csv With Headers From 9e0 As `1esn` Load Csv From [`8esn`[`4esn`..{#usn8}][$12..2.12]] Is Null Is Null As usn2 Fieldterminator 's_str'"), - octest_legacy:ct_string("Create Constraint On(`3esn`:`7esn`)Assert All(#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn1 Is Not Null).`5esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(``:`2esn`)Assert Exists(Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where $usn1[{`5esn`}][$`6esn`]|`5esn`[7][{usn2}]).`1esn`?)"), - octest_legacy:ct_string("Merge Shortestpath((:usn1{usn2:7[..999][..{#usn8}]})-[?:#usn7 *01234567..0Xa]->({``:$`8esn` =~{1000}})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})) On Create Set `8esn`(00 Starts With 0xabc,{12} Is Not Null).`6esn`! =$12 Ends With 07 Ends With $123456789,`3esn` ='s_str' Ends With 7 Ends With {_usn4},``(0X7 =~9e1,0.0 =~999).`3esn`! =$1000[Null][`4esn`] With Distinct $123456789 Ends With {`1esn`} Ends With $`4esn`,$`8esn`[..{`2esn`}],Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0)[..Case When 01234567[usn2..$12][{`7esn`}..$usn2] Then usn1[`5esn`..$7] Else $1000[0Xa][{#usn7}] End][..Reduce(@usn6=07 Contains 0X7 Contains $`8esn`,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|{#usn7}[9e1..][{123456789}..])] Order By `5esn`[_usn4..] Ascending Limit [`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]][..None(#usn8 In 7[..999][..{#usn8}] Where $`7esn`['s_str'])][..`1esn`(Distinct 12e12[$`3esn`],0.0 =~999)] Where $_usn4[0e0..][False..] Remove `6esn`({1000}[{_usn3}..],0.12 =~$0 =~$0).`` Union All Return Distinct .e12[..`7esn`][..0Xa],123.654 Is Not Null Is Not Null As `8esn`,All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)] Order By {usn2} Descending,1.0 =~7 =~{usn2} Desc Skip 0.0[$0][{@usn5}] Create Unique ((`1esn` {`5esn`})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})),Shortestpath((((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`8esn`?:`2esn`*..{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]}))))"), - octest_legacy:ct_string("Merge Allshortestpaths(((:usn2{#usn8:$`5esn` In $`6esn`})-[:`8esn`*]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})<-[ *0X7..]-(`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}))) On Match Set `3esn`+=.e1[..$@usn6][..`2esn`] Create Unique `2esn`=((`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]})-[{`7esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4]}]-(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)),`6esn`=Shortestpath(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})))"), - octest_legacy:ct_string("Create Constraint On(@usn6:#usn8)Assert (usn1 :``:#usn8)-[`4esn`?:_usn4|:usn2 *..01]->(`7esn` :`8esn`:`7esn`{#usn8:01234567[usn2..$12][{`7esn`}..$usn2]})<-[@usn5? *..01]-(`8esn` :@usn6:#usn8).@usn5 Is Unique"), - octest_legacy:ct_string("Merge Shortestpath(({`1esn`:0.12[$`3esn`..$_usn3][12.0..usn1]})<-[{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]}]->(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`6esn`?:`3esn`|:#usn8{usn1:$usn1 In {999} In $#usn7}]-({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})) On Create Set None(`3esn` In {7} Is Null Where {_usn3}[12.e12]).#usn8? =Case {999} Is Null Is Null When 1000[Null..{123456789}] Then 9e12[`6esn`..12.0] Else `` Ends With $1000 End[Reduce(`2esn`={`3esn`} In 0X7,_usn3 In {`3esn`}[`2esn`]|$`5esn`[{`3esn`}])..(@usn5 {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})],#usn8 ={usn2} In _usn3 In $#usn7,[{@usn6}[$`6esn`..`4esn`],0Xa[$123456789..123.654][.e12..0.e0]]._usn3? =Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Is Not Null Is Not Null On Match Set `5esn` =$@usn5[010..$#usn8][12..$`4esn`],@usn5+={`6esn`:1000[..$0][..True],_usn4:Count ( * ) Ends With $@usn5}[[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 12e12 Ends With {usn1}|$#usn8 Contains $`1esn` Contains {`6esn`}]..Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..])][[_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `3esn`[{`2esn`}]|$0[12.e12..]]..Filter(_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null)],`5esn`+=0.e0 Starts With `2esn` Union All Remove usn1(Distinct $@usn5 Is Not Null).``! Union Merge Shortestpath(((`2esn` :_usn4))) On Match Set #usn8+=`2esn`(Distinct $``,7 Starts With {@usn6} Starts With $``) Contains {@usn6:_usn3[$`8esn`],usn1:$@usn5 Is Not Null} Contains {@usn5:`8esn`[{123456789}..]},({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(#usn7 :#usn8:#usn8{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null}).@usn6? =01[{@usn5}] Merge Allshortestpaths(((_usn3 :`3esn`:@usn5))) On Create Set `7esn` =`6esn`({usn1} Ends With $0) Is Not Null,`2esn`+=All(`` In `` Is Not Null Is Not Null Where $_usn4 Starts With 1e1)[Shortestpath(((:usn1{`3esn`:{123456789} Is Null Is Null})-[_usn4{`5esn`:{0} Ends With $_usn3 Ends With $`7esn`,`2esn`:Null[``]}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[? *0Xa]-({`7esn`:{999}})))][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)],Reduce(#usn7=`` Is Not Null Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{`7esn`}[..$@usn5][..$#usn8]).`2esn` =None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12])[Reduce(`4esn`=`1esn` =~0 =~$#usn7,`2esn` In `1esn` =~\"d_str\"|{123456789} Is Null Is Null)][{``:`7esn` Starts With $#usn7 Starts With $`7esn`}] On Create Set [`5esn` In \"d_str\" Is Null Is Null|$`8esn`[..00]].usn2! =[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*)),#usn7:#usn8:#usn8"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`)[None(#usn8 In 7[..999][..{#usn8}] Where 0Xa[2.12])..][[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789]]..] As #usn8 "), - octest_legacy:ct_string("Detach Delete {`7esn`} Ends With `4esn` Ends With {@usn5},None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12])[Reduce(`4esn`=`1esn` =~0 =~$#usn7,`2esn` In `1esn` =~\"d_str\"|{123456789} Is Null Is Null)][{``:`7esn` Starts With $#usn7 Starts With $`7esn`}],Case When {_usn4} Starts With 0.e0 Starts With 0x0 Then 12 Ends With 0x0 Ends With 0.e0 Else $1000 Is Null Is Null End Starts With `7esn`(Distinct $#usn7[..{`5esn`}][..9e12]) Starts With {`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`}"), - octest_legacy:ct_string("Create Constraint On(`1esn`:usn2)Assert {`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}.`6esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[@usn6:#usn7]-()Assert Exists(Case When {#usn8}[010] Then False =~$7 =~2.12 End.`1esn`?)"), - octest_legacy:ct_string("Drop Constraint On(_usn3:`3esn`)Assert Exists([`3esn` In {7} Is Null Where 0.e0[123.654][01]].`5esn`!)"), - octest_legacy:ct_string("Unwind $`3esn`[0.12..`8esn`][$#usn7..`5esn`] As `6esn` Union All Match (:#usn7{usn2:{usn1} Ends With $0,#usn8:`5esn` Starts With $`2esn` Starts With $1000})-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(`1esn` :_usn3:_usn3{#usn7:$@usn5 Is Not Null Is Not Null}),`3esn`=({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True}) Using Join On `8esn`,@usn5 Using Index `3esn`:_usn3(`6esn`) Create Unique `2esn`=Allshortestpaths(((#usn7 {``:9e12[`1esn`..][$`1esn`..],#usn7:#usn8})-[?:`7esn` *0X0123456789ABCDEF]->(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})<-[#usn8?:#usn7{`1esn`:#usn7 =~Count ( * ) =~``,usn2:`` Ends With $1000}]->(:@usn6:#usn8{`4esn`:$`8esn`[..00]}))) Union Start #usn7=Node:``(\"d_str\") ,_usn3=Relationship:`3esn`('s_str')Where $@usn5 =~1000 =~1000"), - octest_legacy:ct_string("Return Distinct usn1[..@usn6][...e0],usn1 Is Not Null As `6esn`,False[_usn3..`8esn`][$`8esn`..{`3esn`}] As _usn3 Order By Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End[[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]]..Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})))] Ascending,All(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Contains (`5esn` :_usn4{`5esn`:07[..True][..9e12]})-[`8esn`?:`2esn`{@usn6:{12}[..0X7]}]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]})<-[_usn4{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00}) Contains [0.12[$`3esn`..$_usn3][12.0..usn1]] Ascending Start `3esn`=Rel:#usn8(`8esn`={`6esn`}) ,usn1=Node:`3esn`(`2esn`={usn1}) Union All Load Csv With Headers From Case When False Then 0.e0 Ends With $#usn7 Ends With $7 When {@usn6}[{999}..][00..] Then `5esn` Ends With {``} Ends With 12.e12 Else 123.654[$`1esn`] End[Reduce(#usn8=$`6esn` Ends With Count(*),`2esn` In `1esn` =~\"d_str\"|_usn4 Contains 2.12)..] As `1esn` "), - octest_legacy:ct_string("Foreach(@usn5 In _usn3 Contains Count(*) Contains 12e12| Match Shortestpath(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))),usn2=Shortestpath((((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6})))) Where 01234567 Ends With .e12 Ends With $#usn7 Load Csv From [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `4esn` Ends With 07 Ends With {`3esn`}|@usn5 Is Null] Is Null Is Null As #usn8 Fieldterminator \"d_str\") Detach Delete Reduce(#usn7=`3esn`[{`2esn`}],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|#usn8 Is Not Null)[(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(#usn7 {_usn3:`4esn`[..Count ( * )][..{#usn7}]})..None(`8esn` In 01[2.12..`8esn`] Where {usn2})],Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))),12 Ends With 0x0 Ends With 0.e0"), - octest_legacy:ct_string("Detach Delete .e0[..$`8esn`],$@usn5 Starts With #usn7,12.0[{@usn5}..$#usn7] Union All Foreach(@usn5 In `5esn` Starts With 010 Starts With 0.0| Create Shortestpath(((:#usn8:#usn8)-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12}))),Shortestpath((({_usn3:{_usn4} Is Not Null Is Not Null})<-[_usn4 *0..{_usn4:00[`2esn`..12][123456789..0.e0],`8esn`:0x0[`4esn`..'s_str']}]->()<-[``? *..01{`1esn`:$@usn6 Contains 07}]->(:#usn8:#usn8{@usn6:$_usn3[..1000]}))) Create ((`1esn` {`5esn`})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})),Shortestpath((((`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})-[`8esn`?:`2esn`*..{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[:usn1|@usn6]->({usn2:7[..999][..{#usn8}]}))))) Delete 0.0 Is Not Null Is Not Null,None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn2})[Any(`` In `` Is Not Null Is Not Null Where {`6esn`} Contains \"d_str\")..Reduce(usn1=#usn7[usn1][$`5esn`],`3esn` In {7} Is Null|Count(*) Ends With 12.0 Ends With 12)][(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})..({usn1:`5esn`[_usn4..]})<-[usn2:`2esn` *..01{`6esn`:{#usn7}[..9e12][..`8esn`]}]->({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]-(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})],Reduce(#usn7=$1000 Is Null,#usn7 In {``} Is Not Null|$`1esn` Ends With 9e1 Ends With $123456789) In Case When `5esn` Is Null Then True[..$`6esn`] Else `3esn`[`3esn`..][#usn8..] End Create Unique `8esn`=((:@usn6:#usn8)<-[`1esn`?:usn2|``]-({@usn5:{usn2}[.e0..$999]}))"), - octest_legacy:ct_string("Delete {`4esn`} =~9e0 =~{12},Count ( * ) Ends With $@usn5,Reduce(`2esn`=1e1 In 123.654 In `3esn`,`5esn` In \"d_str\" Is Null Is Null|$_usn3[{#usn7}]) Is Not Null Return Distinct *,.e1[..$@usn6][..`2esn`] As #usn8,0Xa[usn2..] Order By $12[..{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}] Ascending Limit {1000}[{_usn3}..] Union Start `1esn`=Relationship:`2esn`({1000}) With @usn6 Starts With `6esn` Starts With $`1esn` As `7esn`,usn1 In 7 In {123456789} As `5esn`,`8esn` Ends With 999 Ends With .e12 Order By {@usn6} Is Null Is Null Desc,`7esn` In 00 Asc,Case When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $`4esn`[..$`3esn`][..0.0] Then `1esn` =~0 =~$#usn7 Else {``} Is Null End Contains Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Contains All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {@usn6}[7]) Asc"), - octest_legacy:ct_string("Drop Constraint On(usn1:@usn6)Assert Exists((`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[`6esn`?:#usn7]->(`2esn` )<-[`7esn`?:@usn5{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]}]-(`` :@usn6:#usn8{`8esn`:'s_str' In 00}).`7esn`)"), - octest_legacy:ct_string("Drop Constraint On()-[``:`2esn`]-()Assert Exists(All(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where @usn6 Is Null Is Null).`4esn`)"), - octest_legacy:ct_string("Drop Constraint On()-[@usn5:usn2]->()Assert Exists(Reduce(_usn3={@usn5} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{usn1}[0X0123456789ABCDEF]).@usn5?)"), - octest_legacy:ct_string("Foreach(_usn3 In 0e0 In @usn5| Return .e1 =~{@usn6} =~Null Order By $#usn7[..{`5esn`}][..9e12] Desc,Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`)[None(#usn8 In 7[..999][..{#usn8}] Where 0Xa[2.12])..][[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789]]..] Desc,0x0 Ends With $12 Asc Limit _usn4(Distinct _usn3[_usn3..][12.e12..])[[0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},0Xa Starts With {`6esn`} Starts With $usn1]]) Load Csv With Headers From 9e12[`6esn`..12.0] As @usn6 Union All Merge `3esn`=Shortestpath((_usn3 {@usn5:`5esn`[{`4esn`}..`2esn`],_usn3:07 =~01})) Union All Foreach(`8esn` In True Contains {0} Contains 7| Start ``=Relationship:usn2('s_str') ,`1esn`=Rel:`4esn`(`4esn`='s_str') Delete Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn4} Starts With 0.e0 Starts With 0x0) Is Not Null Is Not Null)"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From Allshortestpaths((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3))[Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})))] As `3esn` Unwind 12.0 Ends With {``} As _usn4 With Distinct *,None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As `5esn`,Null[{#usn7}..][0X0123456789ABCDEF..] Where $999"), - octest_legacy:ct_string("Drop Constraint On()-[#usn7:`3esn`]->()Assert Exists((`8esn` :#usn8:#usn8{`3esn`:$`4esn`[9e12..123.654]})<-[`2esn` *0Xa{#usn8:1.0[0e0..0.e0]}]-(_usn4 {``:1.0[0e0..0.e0]}).`3esn`?)"), + octest_legacy:ct_string("Create `1esn`=Allshortestpaths((((:`7esn`{`1esn`:{1000} In {123456789},`4esn`:010 In `1esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)))),Shortestpath((`6esn` :`2esn`{`7esn`:#usn8 =~{999}})) Detach Delete {123456789}[{12}..],9e0 =~0.0 =~$`5esn` Foreach(`1esn` In Case 0Xa[.._usn3][..$`6esn`] When {`4esn`}[$123456789..] Then {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] When {usn2}[$`4esn`] Then $1000 Starts With $`8esn` Starts With {`5esn`} Else @usn6[$_usn4] End[(`8esn` :`2esn`)-[`8esn`]->(`8esn` :`8esn`:@usn5)..]| Create Unique @usn6=(_usn3 {`4esn`:`8esn` Contains 1e1,#usn7:{`2esn`}[..{@usn6}][..1.e1]})-[#usn7?:usn1 *01..07{`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}]->({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]}),`7esn`=(((`5esn` :@usn6)<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5)<-[ *123456789..0X7]-(:`7esn`{``:.e1 Contains $`3esn`})))) Union Foreach(usn2 In {_usn3} Contains 9e0 Contains $999| With Distinct *,All(usn1 In 12.e12 In {0} In 9e1 Where {12}[usn2])[Reduce(``=$@usn5[..usn2][..$#usn7],`6esn` In Count(*) Ends With $`` Ends With {7}|{`4esn`}[$123456789..])..][{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]}..],$`2esn` Is Null Is Null Where _usn4[Count(*)] Create (`2esn` {@usn6:True Is Null Is Null})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)-[_usn3?:@usn6|`` *0x0..{`3esn`}]->(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}})) Unwind [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]][Shortestpath(((`1esn` :`7esn`)<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})))..] As #usn8 Start `8esn`=Rel( {`7esn`}) ,`3esn`=Node:`2esn`(@usn6={`4esn`})Where 07 Is Null Union Remove {@usn6:.e12 Is Null Is Null}.``?,Shortestpath((:_usn3{@usn5:.e1[..\"d_str\"],#usn8:{`1esn`}[`6esn`..12e12]})<-[`7esn`?*..]-(usn1 :`1esn`{#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]})).@usn5? Create Unique `2esn`=(`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4),`5esn`=(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})"), + octest_legacy:ct_string("Create Constraint On(`2esn`:@usn6)Assert Reduce(``=`6esn`[{`6esn`}..],_usn4 In 0.0[..{999}][..0.0]|0.e0[{999}][{`1esn`}]).`5esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`4esn`:_usn4]-()Assert Exists(Shortestpath(((@usn6 :@usn6)-[{`7esn`:01234567 In $123456789}]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})-[{`2esn`:1000 Is Null Is Null}]->(`5esn` :`2esn`{#usn8:True[$`7esn`..{1000}]}))).`4esn`!)"), + octest_legacy:ct_string("Foreach(_usn3 In Reduce(`1esn`=12[..$@usn6],`` In {`1esn`} Starts With @usn6|00[..$123456789][..$`5esn`])[Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where {@usn5} Is Null)]| Detach Delete $`2esn`,7[123456789..$123456789][``..00]) Return $1000 =~{1000} =~`5esn`,12e12 Is Not Null Is Not Null As `5esn` Order By {#usn8}[Null] Descending,{`4esn`} In _usn4 Asc Limit [Null Is Null Is Null,12e12 Ends With `4esn` Ends With 123456789,{@usn6} Is Not Null][Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[{999}..][{_usn4}..])..]"), + octest_legacy:ct_string("Create (((_usn3 :`3esn`:`6esn`)<-[`2esn`?{``:123.654 Starts With $``,``:{``} Ends With .e12 Ends With 0.e0}]-(:_usn3{0})<-[?:#usn8|`2esn` *01..07]->(:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]}))),`4esn`=((`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}})-[_usn4?:`3esn`|:@usn5]->(`4esn` {`7esn`:12.e12 In $0 In $0,@usn5:_usn4[Count(*)]})) Load Csv With Headers From {`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}] As @usn5 "), + octest_legacy:ct_string("Start usn1=Node:#usn8(#usn8={``}) Foreach(`6esn` In #usn8 Is Not Null| Load Csv From 12.e12[$`4esn`..] As usn1 )"), + octest_legacy:ct_string("Create Constraint On(`5esn`:usn2)Assert Allshortestpaths(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]}))).@usn6 Is Unique"), + octest_legacy:ct_string("Detach Delete Case When Null Ends With 12 Ends With usn2 Then {7}[{`4esn`}][`6esn`] End Is Not Null Is Not Null Union Create Unique (((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))) Union All Match ({`4esn`:_usn4 Is Null Is Null,@usn6:{`5esn`} Contains 's_str' Contains 9e1})<-[? *0xabc..7]->(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6}) Using Scan `1esn`:`7esn` Using Join On `8esn`,`3esn` Start `5esn`=Node:`6esn`(usn2={`8esn`}) ,usn1=Node:`6esn`({`8esn`})Where {#usn7} Contains 0.0 Contains $0 Create _usn3=(({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}))"), + octest_legacy:ct_string("Unwind 12.e12[..1e1] As usn1 Union All Create Unique Allshortestpaths((({`7esn`:123.654 Ends With usn2 Ends With 0})<-[@usn6?:`7esn` *07{123456789}]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}))),(((_usn3 :@usn5{`2esn`:@usn5[$12..\"d_str\"]})-[{`7esn`:01234567 In $123456789}]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[`4esn`?*..]-(:`4esn`:@usn6{`3esn`:123456789 Is Not Null Is Not Null}))) Remove [`3esn` =~9e0 =~@usn6].`1esn`,Allshortestpaths((((usn2 :_usn3)<-[#usn7{#usn8:{`1esn`} Is Not Null}]->(`8esn` {`3esn`:'s_str'[..0X7]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6)))).`8esn`"), + octest_legacy:ct_string("Drop Constraint On()-[@usn6:`3esn`]->()Assert Exists({_usn3:0Xa Contains {`7esn`} Contains $999}.usn1!)"), + octest_legacy:ct_string("Load Csv With Headers From {@usn5}[{`5esn`}][$12] As usn1 Union Optional Match #usn7=Allshortestpaths((:`5esn`:@usn5{#usn8:123.654[$`1esn`..Null][1000..{_usn3}],`6esn`:12.0 =~$#usn7 =~9e12})-[`1esn`:usn2|#usn7{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})),(({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]})) Using Scan _usn4:_usn3 Using Index usn1:@usn5(`7esn`)"), + octest_legacy:ct_string("Drop Constraint On()<-[@usn6:`7esn`]-()Assert Exists(Allshortestpaths(((({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2})<-[:_usn4|:usn1 *07]-(#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})))).``!)"), + octest_legacy:ct_string("Load Csv From 12.e12 Starts With 1000 Starts With 's_str' As usn2 Union Load Csv With Headers From {`2esn`} Ends With {#usn7} As `3esn` Union With Distinct {@usn5} Is Null,``[$0..][`1esn`..] As `4esn` Order By 0Xa[07..] Ascending Limit 's_str'[.._usn4][..``] Where $#usn7[$`4esn`] Optional Match `5esn`=Allshortestpaths(((_usn3 :`6esn`:`8esn`{`4esn`:$usn1 Starts With $999 Starts With {@usn5},`7esn`:``[..$#usn7]})-[#usn7?:`1esn`|:`3esn`]-(`7esn` :@usn5{`7esn`:{1000}[{usn1}][Null],`3esn`:7[$0..][{_usn4}..]})<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))),((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})) Using Join On `7esn` Using Join On #usn8,#usn8 Where `8esn`[..`4esn`][..$usn1]"), + octest_legacy:ct_string("Merge usn2=Allshortestpaths((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}))) On Match Set @usn5 =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Foreach(#usn7 In {@usn5} =~_usn4 =~0.12| Match #usn7=Allshortestpaths((:`5esn`:@usn5{#usn8:123.654[$`1esn`..Null][1000..{_usn3}],`6esn`:12.0 =~$#usn7 =~9e12})-[`1esn`:usn2|#usn7{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})),usn1=((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})) Where .e12[$7..][{`6esn`}..]) Union Foreach(@usn6 In 1.e1[0xabc..]| Delete .e1[@usn5]['s_str'],Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..] Unwind {12}[$`3esn`] As `6esn`) Match ((()-[?:`3esn`|:@usn5 *0x0..{`3esn`:.e1[0.12],`7esn`:$123456789 Starts With .e12}]-(:`6esn`:`8esn`{@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]})-[?:usn2|#usn7]-(`1esn` {#usn7:Count ( * )[$12..]}))),((`4esn` {`1esn`:9e12 Is Not Null Is Not Null})-[?:`7esn` *999{@usn6:{``} Ends With .e12 Ends With 0.e0,`5esn`:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})) Using Scan #usn7:`3esn` With *,Case 0[{@usn5}..][7..] When {`4esn`} In _usn4 Then `1esn`[Null..] When ``[{#usn8}] Then {`4esn`} Starts With $7 Starts With $`` Else `8esn` Contains $`3esn` Contains {`4esn`} End In [{_usn4} In {1000}] In Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`4esn`} Starts With $7 Starts With $``|0Xa Contains {`7esn`} Contains $999),[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]|0[Count(*)][0e0]] Contains Extract(`` In {`1esn`} Starts With @usn6 Where .e0[..{`5esn`}][..999]|$`3esn`[..$`2esn`][..123.654]) Contains Reduce(`2esn`=$usn1[0X7],@usn5 In Null =~12e12|#usn7 =~{`4esn`} =~123456789) As usn2 Order By Single(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2])[(_usn3 {usn1:0Xa[0e0..{#usn7}],`1esn`:.e0[True..Count ( * )][#usn7..0X7]})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1})..] Descending,0.12 In 0X7 Descending Skip Count ( * )[\"d_str\"][_usn3]"), + octest_legacy:ct_string("Unwind {`3esn`:'s_str'[..0X7]}[(@usn5 :@usn5)<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]->(:`5esn`:@usn5{``:.e12 =~$_usn4})] As `1esn` Start `5esn`=Rel:`4esn`('s_str') ,`6esn`=Node:_usn4(``=\"d_str\")Where $@usn5[$`4esn`][$@usn6] Union All Load Csv From `2esn` Ends With $`4esn` Ends With {#usn7} As usn2 Fieldterminator \"d_str\" Union Create Unique Allshortestpaths((({_usn3})-[`5esn` *0x0..]->(usn1 :usn1:_usn4))),`4esn`=((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7))"), + octest_legacy:ct_string("Return Distinct Count(*) Is Not Null,{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] Skip Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123456789 Is Not Null Is Not Null)[Allshortestpaths((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}))..Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12 Starts With {_usn4} Starts With $#usn8)][Case When 01 =~$`1esn` Then {@usn5}[Count(*)..] End..count(Distinct 07 =~@usn5)] Create Unique Shortestpath((((`2esn` {@usn6:True Is Null Is Null})-[`5esn` *0x0..]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]})-[?:`7esn`]->(#usn7 :@usn6)))),`2esn`=((@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]})) Union With Distinct `2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] Limit `` =~`6esn` =~usn1 Where 123.654[{`7esn`}][{7}] Remove `8esn`(9e1 =~999,{``} Is Null Is Null).`3esn`! Merge usn2=Shortestpath(((:@usn5{`3esn`:@usn5 =~'s_str',`1esn`:$`7esn` Contains {`1esn`} Contains 9e12}))) Union All Load Csv With Headers From 00[0.12..] As `2esn` Match _usn3=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`)))"), + octest_legacy:ct_string("With 0Xa[07..] Order By Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4])[Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End] Descending,Case When {@usn6} Contains 123.654 Contains 01 Then usn2 Ends With Count ( * ) Ends With $@usn6 End Is Not Null Is Not Null Desc,{_usn4}[{usn1}..$_usn3] Asc Skip .e1 Ends With {7} Ends With $usn1 Limit {`3esn`} =~$7"), + octest_legacy:ct_string("Using Periodic Commit 0X0123456789ABCDEF Load Csv From (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Is Null As usn1 Fieldterminator 's_str'"), + octest_legacy:ct_string("Drop Constraint On()<-[usn1:@usn6]-()Assert Exists(Single(#usn7 In 0Xa[@usn5][{`7esn`}] Where 12[..$@usn6]).@usn5?)"), + octest_legacy:ct_string("Return 1.e1 Is Null Skip $`2esn`[{``}..{1000}][#usn8..`2esn`] Limit $123456789[..$7][..$`6esn`] Merge `5esn`=(_usn3 :`6esn`:`8esn`{`4esn`:$usn1 Starts With $999 Starts With {@usn5},`7esn`:``[..$#usn7]}) On Create Set #usn8 =$`1esn` =~$`1esn` =~{`6esn`},`2esn` =@usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2),`6esn` =`6esn` In Null On Match Set `5esn` =123456789 Is Not Null Is Not Null,`6esn` ={@usn5}[{`5esn`}][$12] Union Start `7esn`=Node:usn1({999}) Start `1esn`=Node:@usn6(\"d_str\") ,`3esn`=Rel:`5esn`({0}) Union All Load Csv From $`2esn` Starts With {`8esn`} Starts With {usn1} As #usn7 Fieldterminator \"d_str\""), + octest_legacy:ct_string("With Distinct Count(*) Is Not Null,{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] Order By {`8esn`}[0X7][$`3esn`] Descending,12.e12[$`4esn`..] Descending,`3esn` In {@usn6} Ascending Skip 01234567 =~0x0 =~9e12 With True Is Not Null As @usn5 Order By {`2esn`} In $123456789 In True Ascending,Reduce(#usn7={`1esn`} Starts With `4esn` Starts With {0},`3esn` In 123.654[1e1..][{#usn8}..]|9e12[$`5esn`]) Desc Skip 0Xa In {`7esn`} Limit 9e0 =~0.0 =~$`5esn`"), + octest_legacy:ct_string("Create Constraint On(`3esn`:_usn4)Assert Case When $`7esn`[$``..][999..] Then {_usn3} Contains 9e0 Contains $999 When 1000 Is Null Is Null Then .e1[@usn5]['s_str'] End.`6esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`4esn`:_usn4]->()Assert Exists(Extract(_usn4 In 0.0[..{999}][..0.0] Where {`7esn`} Is Not Null Is Not Null|{`1esn`} =~{_usn4}).`8esn`!)"), + octest_legacy:ct_string("Load Csv From .e12[$#usn8..@usn6] As usn2 Fieldterminator \"d_str\" Union All Foreach(`3esn` In {`5esn`} Contains 123456789 Contains 9e12| With `7esn` =~.e12 =~$#usn7 As `3esn`,$`8esn` Is Null Is Null As `6esn` Order By False[{`8esn`}] Asc,Reduce(usn2={`6esn`}[..{`2esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|1e1[..01]) Is Not Null Is Not Null Asc,{1000}[1000][$usn1] Ascending Skip $#usn8[{12}..]) Union Merge `6esn`=((@usn5 {#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})-[{@usn5:1000 Is Null Is Null}]-(_usn3 :@usn5{`2esn`:@usn5[$12..\"d_str\"]})) On Match Set _usn3 ={#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null,Reduce(usn2=.e1[..\"d_str\"],#usn7 In 123.654 Starts With $``|0Xa[$1000..$123456789]).@usn6 ={`2esn`}[Count(*)],`2esn`+=[{usn2}[$`4esn`]] Starts With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null] On Match Set `` =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Merge ((usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[#usn7? *999{usn2:{1000}[{``}][999]}]-({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`)) On Create Set @usn6+={`3esn`} =~$7,{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}._usn3 ={`5esn`} Ends With \"d_str\" With *,$usn1 In 01234567 In .e1 Order By Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6) Starts With [$_usn3[010..False],$123456789 =~`4esn`,$usn1[$123456789..0][{`1esn`}..12.0]] Descending,{#usn7:`5esn`[..9e0][..01234567]} In Case 1e1[1.e1..][123.654..] When 7[1000.._usn3][9e0..\"d_str\"] Then 12.e12[``..usn2][{#usn7}..@usn5] When 1.e1[0xabc..] Then 1.e1 Starts With $`2esn` Starts With $0 End In Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null) Desc,{7}[$7..] Desc Skip \"d_str\"[{999}..] Limit @usn5[$12..\"d_str\"]"), + octest_legacy:ct_string("Create Constraint On(`4esn`:@usn5)Assert [{usn2} =~@usn6 =~{`4esn`},Count(*) Is Not Null].`6esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`4esn`:`7esn`)Assert Exists([\"d_str\"[{`8esn`}..],{123456789} Is Not Null,123.654 Contains $_usn3 Contains 0X0123456789ABCDEF].`6esn`)"), + octest_legacy:ct_string("Drop Constraint On()<-[_usn3:`5esn`]-()Assert Exists({`2esn`:9e12 Is Not Null Is Not Null}._usn3)"), + octest_legacy:ct_string("Create Unique ``=Allshortestpaths((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[?:`6esn` *01..07]->(#usn7 :#usn8{_usn3:`1esn`[..00][..{7}]})<-[:`1esn`|:`3esn` *1000]-($12)),`7esn`=({#usn7:#usn8 =~{999}}) Union Create Unique (((usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]})<-[ *0xabc..7]-(`` :`6esn`:`8esn`))),`2esn`=((`4esn` :`2esn`)) Union Foreach(usn2 In `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]]| Start #usn8=Relationship:usn1({7}) ,`5esn`=Relationship:_usn4(usn1={_usn4})Where .e12 Ends With 1000 Ends With 010) Remove (#usn7 :@usn6{`8esn`:{@usn6}[True..{_usn3}],`1esn`:07 Is Null})-[`3esn`:`6esn`{`3esn`}]-(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[`1esn`?:_usn3|`8esn` *0xabc..7]-(`4esn` :@usn6).@usn6"), + octest_legacy:ct_string("Delete $@usn5[..usn2][..$#usn7],`3esn` In {@usn6},0[{@usn5}..][7..] Union All Remove [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12].`2esn`,[usn1 Contains $7 Contains $``,$@usn5 In 's_str' In $12,$`1esn` Is Not Null Is Not Null].usn2!,All(`1esn` In `3esn`[07..] Where 999 Starts With 's_str').#usn8! Remove Extract(`` In {`1esn`} Starts With @usn6 Where Null[{_usn4}..]|0Xa Contains {`7esn`} Contains $999).`5esn`!,All(`5esn` In $`2esn`[12.e12][$@usn5] Where {999} Starts With {12}).`2esn`,Reduce(`3esn`={7} Starts With $usn1 Starts With 1.0,_usn3 In True[7][$999]|123.654[{@usn5}..123.654][1.0..$12]).#usn8 Foreach(`` In {123456789} =~01234567 =~`3esn`| With (`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] Order By `1esn`[..00][..{7}] Ascending,`6esn` In Null Descending,{`3esn`} Is Null Descending Skip Case When .e1[@usn5]['s_str'] Then 123456789 Starts With {@usn6} Starts With $12 End Contains [`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`] Contains {@usn5:12 Is Not Null,`2esn`:$999 In 999} Where $``[..1.e1][..12] Start @usn5=Node:``(#usn7=\"d_str\") ,#usn8=Relationship:`4esn`(``='s_str')Where $``[..1.e1][..12]) Union All Unwind Filter(#usn7 In 0Xa[@usn5][{`7esn`}] Where {1000}[\"d_str\"..{@usn5}][$1000..$#usn8]) Starts With All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $`5esn`[$#usn7..][0xabc..]) Starts With [#usn7 Contains {`3esn`} Contains $`6esn`] As #usn8"), + octest_legacy:ct_string("Create Constraint On(`8esn`:_usn4)Assert None(#usn7 In 0Xa[@usn5][{`7esn`}] Where $0[_usn4..{`3esn`}][$#usn7..$#usn7]).`4esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`4esn`:`6esn`]->()Assert Exists(Case 9e1[$_usn4..0xabc] When $1000[..$999] Then $`7esn` In 12 Else @usn5 =~'s_str' End.@usn6!)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:@usn6)Assert Reduce(#usn8=$`4esn` Starts With 0e0,_usn3 In True[7][$999]|1e1[1.e1..][123.654..]).@usn5! Is Unique"), + octest_legacy:ct_string("Create Unique Shortestpath((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->({_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})),Allshortestpaths((#usn7 {``:0x0 =~123.654 =~{999}})) Union All Remove [$12[{7}..0X0123456789ABCDEF]]._usn4?,(usn1 :`2esn`{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})-[?{`7esn`:{``} Ends With .e12 Ends With 0.e0}]-(`4esn` {`2esn`:12 Starts With 7 Starts With $`5esn`})<-[``?:usn2|#usn7 *0x0..]->(@usn6 :usn1:_usn4).`7esn`? Unwind 999 Starts With $123456789 Starts With {``} As `8esn`"), + octest_legacy:ct_string("Create Constraint On()-[`8esn`:`5esn`]-()Assert Exists(Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]|0.0 Contains $_usn4 Contains {`2esn`}).usn2)"), + octest_legacy:ct_string("Using Periodic Commit 0xabc Load Csv From Shortestpath(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})))[[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7[`5esn`]|{_usn3}[{0}]]..] As `4esn` With (`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] Order By `1esn`[..00][..{7}] Ascending,`6esn` In Null Descending,{`3esn`} Is Null Descending Skip Case When .e1[@usn5]['s_str'] Then 123456789 Starts With {@usn6} Starts With $12 End Contains [`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`] Contains {@usn5:12 Is Not Null,`2esn`:$999 In 999} Where $``[..1.e1][..12] Load Csv From Shortestpath(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})))[[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7[`5esn`]|{_usn3}[{0}]]..] As `4esn` "), + octest_legacy:ct_string("Load Csv With Headers From Count ( * )[$1000..] As @usn5 Remove Filter(`` In {`1esn`} Starts With @usn6 Where $`5esn`[`1esn`][0X0123456789ABCDEF]).@usn6?,Single(_usn4 In `2esn` Where ``[00..$7]).``?,Any(`5esn` In $`2esn`[12.e12][$@usn5] Where `6esn`[{`6esn`}..]).`7esn`! Union Create Allshortestpaths(((@usn6 :`2esn`))),#usn7=(($`5esn`))"), + octest_legacy:ct_string("Create ``=({#usn7:#usn8 =~{999}})-[{`7esn`:01234567 In $123456789}]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})"), + octest_legacy:ct_string("Optional Match `6esn`=(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}),(((usn2 :_usn3)<-[#usn7{#usn8:{`1esn`} Is Not Null}]->(`8esn` {`3esn`:'s_str'[..0X7]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6))) Remove (`2esn` :`2esn`{`5esn`:{1000}[{``}][999],`3esn`:#usn7 =~{`4esn`} =~123456789})-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(`2esn` :_usn3)-[? *01..07]->(`8esn` :#usn7)._usn3!,Any(@usn5 In Null =~12e12 Where {_usn4} In {1000}).`3esn`,Reduce(_usn3=12.e12[``..usn2][{#usn7}..@usn5],`2esn` In {999} Is Not Null|@usn6[$_usn4]).`6esn` Start ``=Node:`6esn`(usn2={`8esn`}) Where {7} Starts With $usn1 Starts With 1.0 Union All Remove {`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}.`1esn`,[0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0],Count(*) Starts With $usn1 Starts With {usn2}].`2esn`?,Reduce(`5esn`=$_usn4[{``}..][1e1..],usn1 In 12.e12 In {0} In 9e1|{`1esn`} Starts With @usn6).#usn8? Optional Match (((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}))),#usn8=((`2esn` :@usn6)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)<-[`1esn`:`8esn`|:_usn4 *123456789..0X7$12]->(:`1esn`{`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})) Using Scan `3esn`:`3esn` Start `6esn`=Node:@usn5({`3esn`}) ,`4esn`=Node:#usn7({``}) Union Unwind #usn7[9e0] As ``"), + octest_legacy:ct_string("Drop Constraint On()<-[`4esn`:@usn6]-()Assert Exists({`1esn`:$usn2 Is Null Is Null}._usn4!)"), + octest_legacy:ct_string("Create Shortestpath((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->({_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})),Allshortestpaths((#usn7 {``:0x0 =~123.654 =~{999}})) Union Start usn2=Relationship:`5esn`(#usn7=\"d_str\") ,`8esn`=Rel( {`7esn`})Where $@usn5 In $usn2 In {1000} Create Unique #usn7=Allshortestpaths(((:`6esn`:`8esn`))),usn1=Allshortestpaths(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))) Merge Shortestpath(((({`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]})-[:#usn8|`2esn`]->(`` :usn2:`2esn`)<-[@usn5:_usn4|:usn1*]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF})))) On Create Set `6esn`({`6esn`}[..{`2esn`}]).`7esn` =`4esn` Is Not Null Is Not Null,`6esn` ={_usn3}[usn1][0],Single(`2esn` In {999} Is Not Null Where $7[{`1esn`}]).usn2? ={@usn6}[0Xa..$@usn6][0..`5esn`]"), + octest_legacy:ct_string("Unwind Count(*)[..``][..#usn8] As #usn7 Union Return Distinct *,(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As #usn7,.e1 Ends With 0Xa Ends With 00 As _usn3 Order By usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3) Ascending,.e1 =~$`5esn` Desc,Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000|$@usn5 In $usn2 In {1000}) Is Not Null Ascending Limit 12 Starts With 7 Starts With $`5esn` With *,Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*))[Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12)..] As `3esn`,123456789[12..$`4esn`] As `7esn` Skip 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF Unwind 0x0[{7}..] As #usn7 Union Start usn1=Relationship:`8esn`(`8esn`={12}) Where {@usn5}[..#usn7]"), + octest_legacy:ct_string("Foreach(@usn5 In {1000}[7..$usn2]| Create ``=(({`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[ *0xabc..7]->(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]}))) Start `4esn`=Node:``(\"d_str\") Where True =~_usn3 =~123456789 Foreach(`` In [$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null][(`1esn` :#usn7)<-[? *0X0123456789ABCDEF]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]})..[{_usn3}[$usn2..],$`3esn`[..$`2esn`][..123.654],12.e12[`7esn`]]]| Optional Match ``=Allshortestpaths((((:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})-[#usn8? *..0Xa{`4esn`:$`2esn` Ends With 0.12 Ends With .e1,`4esn`:07 =~@usn5}]-(usn2 :`4esn`:@usn6)-[`8esn`?:``]->(`` {`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]})))) Where `6esn`[..{999}] With 12.0[010],{@usn5} Is Null Order By `3esn`[$@usn5..@usn5][9e1..$``] Desc,Extract(_usn4 In `2esn` Where $999 Is Null) Starts With Reduce(`5esn`=00,`2esn` In {999} Is Not Null|{`4esn`}[..07][..$`6esn`]) Starts With [`8esn`[..`4esn`][..$usn1],{#usn8}[2.12]] Descending,.e1 =~$`5esn` Desc Skip Count ( * ) Contains 12 Limit Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000) Contains [0x0[$`8esn`.._usn3]] Contains count({`1esn`} Is Not Null,$`2esn` Ends With 0.12 Ends With .e1))"), + octest_legacy:ct_string("Drop Constraint On()-[_usn4:`5esn`]-()Assert Exists(Shortestpath(((_usn4 :`8esn`:@usn5))).``!)"), + octest_legacy:ct_string("Create Constraint On(#usn8:@usn5)Assert Exists(Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {`7esn`} Is Not Null Is Not Null).``)"), + octest_legacy:ct_string("Using Periodic Commit 01 Load Csv From 1e1 Starts With 9e1 Starts With {`4esn`} As `2esn` Match ``=Shortestpath((`7esn` :`5esn`:@usn5{`2esn`:12 Starts With $#usn7})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(`4esn` :_usn4{`2esn`:#usn7 =~00})) Using Scan `1esn`:`7esn` Using Join On `7esn`"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:#usn7)Assert [0.0[..{999}][..0.0],{usn1} =~123.654 =~\"d_str\",True Is Not Null Is Not Null].#usn8? Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:`5esn`)Assert [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[{999}..][{_usn4}..]].`6esn` Is Unique"), + octest_legacy:ct_string("Match `8esn`=Allshortestpaths((`` :``)-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})) Using Scan `3esn`:#usn8 Using Join On _usn3 Create _usn4=((`8esn` :`5esn`:@usn5)-[_usn3:#usn7|`2esn`]-(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})) Union Foreach(usn1 In $`6esn`[`8esn`][$`5esn`]| Start `6esn`=Relationship:`4esn`(\"d_str\") ,`3esn`=Relationship:`2esn`(#usn7={usn1})Where @usn5 Is Not Null Is Not Null Match (((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),_usn4=Allshortestpaths((usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})) Using Scan `2esn`:#usn7 Where {#usn8} =~{999} =~{#usn7}) Union All Detach Delete {12}[00..{@usn6}][1.e1..0],`1esn`(Distinct $usn1 Starts With {_usn3},{#usn8}[$#usn7..]) Starts With [$_usn4[$`4esn`..$12]] Starts With [`6esn` In 00 Where 0.12 In 0X7|{999} Is Null] Start ``=Node:`6esn`('s_str') Where #usn7 Ends With $#usn7 Ends With {`8esn`}"), + octest_legacy:ct_string("Drop Constraint On(``:`7esn`)Assert Exists(All(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null)._usn4?)"), + octest_legacy:ct_string("Create Constraint On()-[usn1:#usn7]-()Assert Exists({`4esn`:`8esn` Contains 1e1,#usn7:{`2esn`}[..{@usn6}][..1.e1]}.@usn6!)"), + octest_legacy:ct_string("Remove Allshortestpaths(((_usn3 :#usn8{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(:`2esn`{`2esn`:123456789[0..]}))).`8esn`! Remove Shortestpath((({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`))).#usn8!,({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})-[? *01..07]->({_usn4:{usn1} =~123.654 =~\"d_str\"}).`5esn`?,[{`6esn`}[..{`2esn`}],$`8esn`[..$999][..0],`3esn` Is Not Null Is Not Null].`1esn`? Return Distinct *,010 Is Not Null Is Not Null As #usn7,123456789[12..$`4esn`] As `7esn` Order By $_usn3[..$`2esn`][..\"d_str\"] Desc Limit `` Is Null Is Null"), + octest_legacy:ct_string("Create Constraint On()<-[#usn7:`4esn`]-()Assert Exists(`8esn`(Distinct 00[07..],_usn3[$usn2..0]).`7esn`)"), + octest_legacy:ct_string("Unwind `4esn`[usn1] As _usn4 Union All Foreach(`4esn` In 0.e0[12.e12]| Optional Match `5esn`=((`2esn` :`3esn`:`6esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-(:`7esn`{``:.e1 Contains $`3esn`})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`8esn`:@usn5)) Remove [`1esn` Is Null Is Null,$`3esn` Contains 0 Contains 07,0 Contains $usn2 Contains 12e12].@usn6!,(usn1 :usn2:`2esn`{`1esn`:{123456789}[12..][$12..]})<-[@usn6?:`7esn`]->(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:``{`2esn`:Null In .e0,usn1:01234567[..9e1]}).#usn8,None(#usn7 In 123.654 Starts With $`` Where .e1[@usn5]['s_str']).#usn8) Start @usn6=Rel:`2esn`(`5esn`='s_str') ,usn1=Rel(*)Where {#usn7} Contains @usn5 Contains Count ( * ) Foreach(`7esn` In $`2esn`[{usn2}]| Create Unique Allshortestpaths((_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})-[? *1000]->(`5esn` {usn2:$#usn7 Starts With 9e0 Starts With 2.12})),`1esn`=Allshortestpaths((_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}))) Union With Distinct usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3) As usn1,$999 Contains {7},\"d_str\"[..0.e0] As #usn8 Order By None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12.e12[``..usn2][{#usn7}..@usn5]) Is Null Is Null Descending Skip Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4])[Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End] Limit [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null Where $0[$1000..00][{0}..{usn1}] Merge `2esn`=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`))) On Match Set `6esn`+={`8esn`}[Null..][{`8esn`}..],_usn4+={#usn8} =~{999} =~{#usn7} On Match Set usn1 =[usn1 In 12.e12 In {0} In 9e1 Where {usn1} In Count ( * )][{_usn3:.e1 Ends With 0Xa Ends With .e1,`2esn`:12e12 Starts With `1esn` Starts With usn2}..] Remove {_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}.#usn7!,Extract(_usn3 In {@usn5}[..#usn7]).`4esn`?"), + octest_legacy:ct_string("With *,#usn7[..12e12] Order By Count(*) Ends With 123.654 Ends With $12 Asc Limit {usn2}[$`4esn`] Where {`6esn`} Contains 07 Merge Shortestpath((((#usn8 :@usn6)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4})-[:`3esn`|:@usn5]-(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})))) On Create Set Reduce(#usn7=`4esn`[usn1],usn1 In 12.e12 In {0} In 9e1|2.12 =~0x0 =~_usn4).``! =False[`4esn`..Count(*)] On Match Set `4esn`+=12.e12[..1e1] Create Unique ((`5esn` :_usn3)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})),``=(_usn4 :#usn7{`8esn`:$999 Contains {7}}) Union All Remove Single(usn1 In 12.e12 In {0} In 9e1 Where `7esn` Contains {@usn5} Contains $123456789)._usn4?,(_usn4 :_usn4)-[``?:#usn7|`2esn`{`5esn`:123456789 Starts With {@usn6} Starts With $12}]->(`7esn` {@usn6:{_usn4} Is Null})<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}).`4esn`? Create `1esn`=((`4esn` {`7esn`:12.e12 In $0 In $0,@usn5:_usn4[Count(*)]})<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})),`5esn`=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]})"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:``)Assert _usn3(12.e12[2.12..][0xabc..],.e1[0.12]).`5esn`? Is Unique"), + octest_legacy:ct_string("Create usn1=((:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})<-[`5esn`:usn2|#usn7 *999]-(:`8esn`:@usn5)<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(`1esn` :@usn6)),Allshortestpaths(((_usn4 :@usn6)-[`5esn`?:@usn5|:`7esn`]-(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})))"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`5esn`)Assert None(_usn4 In `2esn` Where 0Xa Contains {`7esn`} Contains $999)._usn3? Is Unique"), + octest_legacy:ct_string("Start #usn7=Node:``(_usn3={0}) ,`8esn`=Node:`4esn`(\"d_str\")Where 9e0 In usn1 Load Csv From `3esn`[_usn4..{0}][`5esn`..usn2] As usn1 Fieldterminator 's_str' Union Load Csv With Headers From Allshortestpaths((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null}))) In {`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null} As _usn3 Fieldterminator \"d_str\" Unwind {123456789}[..'s_str'][..$@usn6] As `8esn` Detach Delete $1000 Is Not Null Is Not Null,$`7esn` Is Null Is Null,_usn4 Is Not Null Is Not Null Union All With Distinct *,9e1[9e1...e0] Order By 1e1[{_usn4}..123.654] Ascending,00[..$123456789][..$`5esn`] Asc Skip 7[1e1..#usn7] Limit [`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]][..{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}][..`4esn`(123.654[$`1esn`..Null][1000..{_usn3}])] Unwind $123456789 Starts With .e12 As _usn3"), + octest_legacy:ct_string("Create Constraint On(usn2:`6esn`)Assert Exists(Shortestpath((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )).`2esn`?)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:#usn7)Assert Case $usn1[@usn6][#usn7] When 12.0[2.12..][{`5esn`}..] Then 0X0123456789ABCDEF[0X7..] When {`6esn`}[..{`2esn`}] Then {`5esn`} Contains 's_str' Contains 9e1 Else 00 Starts With $`6esn` End.`8esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn3:_usn3)Assert Exists({`8esn`:{`7esn`} Is Not Null Is Not Null}.#usn8!)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:_usn4)Assert Exists(Extract(_usn3 In True[7][$999] Where $7 Is Null Is Null).`3esn`)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:_usn4)Assert [`2esn` In {999} Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]].@usn6 Is Unique"), + octest_legacy:ct_string("Remove All(`1esn` In $12 Is Not Null Where {usn1} In Count ( * )).usn1,Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where _usn3[\"d_str\"]|$_usn4 Is Not Null Is Not Null).`1esn`? Start `7esn`=Node:usn1(@usn5={12}) ,usn1=Node:_usn3(_usn3='s_str')Where _usn4 In $usn1 Union Foreach(`6esn` In .e12[$7..][{`6esn`}..]| Create (`2esn` {@usn6:True Is Null Is Null})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)-[_usn3?:@usn6|`` *0x0..{`3esn`}]->(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}})) Remove Filter(`1esn` In `3esn`[07..] Where 9e12 Is Not Null).@usn5! Union All Unwind 9e0[#usn8] As `2esn`"), + octest_legacy:ct_string("Foreach(`4esn` In [00[..$123456789][..$`5esn`],{_usn3} Contains $`1esn` Contains 12.0][..[0.e0 =~`1esn` =~`6esn`,12.0[2.12..][{`5esn`}..],1.e1[0X0123456789ABCDEF..]]][..Filter(_usn3 In True[7][$999] Where 's_str'[..0X7])]| Unwind 0Xa[.._usn3][..$`6esn`] As `4esn` Load Csv With Headers From Any(`5esn` In $`2esn`[12.e12][$@usn5] Where {999} Starts With {12})[Reduce(#usn7={_usn3}[`3esn`..$#usn8],`3esn` In 123.654[1e1..][{#usn8}..]|{999} Starts With {_usn4} Starts With 00)..Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0.12[..$`6esn`][..$1000])][All(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])..[$_usn3 Is Null Is Null,`5esn` Is Null Is Null,7 Is Null Is Null]] As `2esn` ) Match Allshortestpaths(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),Allshortestpaths((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})-[`5esn`{`7esn`:@usn5[..$@usn5][..0Xa]}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})<-[#usn8? *..01234567]-($_usn3))"), + octest_legacy:ct_string("Using Periodic Commit 123456789 Load Csv With Headers From $usn1 =~010 =~07 As _usn4 Create usn1=(({`7esn`:123456789[0..]})),`4esn`=Shortestpath((usn2 {_usn3:$0 In _usn4})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[{`2esn`:1000 Is Null Is Null}]->(:_usn4{`4esn`:`8esn` Contains $`3esn` Contains {`4esn`},_usn3:$12[{7}..0X0123456789ABCDEF]}))"), + octest_legacy:ct_string("Drop Constraint On(``:`8esn`)Assert Exists(Reduce(`7esn`=7 Contains `2esn` Contains $`8esn`,_usn4 In `2esn`|12.e12[..1e1]).`8esn`)"), + octest_legacy:ct_string("With Distinct *,Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF) Ends With Case {`2esn`}[..{@usn6}][..1.e1] When Null Is Null Is Null Then #usn7 Contains {`3esn`} Contains $`6esn` When 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Then $usn1[..'s_str'][..$#usn8] End Ends With Filter(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789}) As `8esn` Skip {`5esn`} Contains 's_str' Contains 9e1 Limit Shortestpath(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(:#usn8)<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})))[False..][({`1esn`:{123456789}[12..][$12..]})-[?:`1esn`|:`3esn`{@usn5:{`6esn`} Ends With 0e0 Ends With {``},@usn5:{`1esn`} Starts With `4esn` Starts With {0}}]->(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[`5esn`?:`7esn`]->({@usn5:Count ( * ) Is Null})..] Union Remove @usn5:``,Reduce(`8esn`=0.12 Contains 12.0,`8esn` In $12[{7}..0X0123456789ABCDEF]|`8esn`[..`4esn`][..$usn1]).`8esn`? With 's_str'[_usn3..] As `5esn`,{0}[False..@usn5] As `1esn` Order By {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Desc,01234567[{`7esn`}..] Descending,[{7} Contains $123456789,$``[..1.e1][..12],$`5esn`[..{`2esn`}][..{0}]] =~`3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]) =~{`6esn`:{`3esn`} Ends With `1esn` Ends With $@usn6,@usn6:$usn1 In 0.12 In $``} Descending Skip .e0[..{`5esn`}][..999] Limit {`8esn`:`2esn` Starts With `` Starts With 1e1} In [usn1 In 00 In {_usn3}] In Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) Where $123456789[..$7][..$`6esn`] Load Csv From {_usn3}[`3esn`..$#usn8] As `4esn` Fieldterminator 's_str' Union All Foreach(`` In `6esn` Starts With 123.654| Create Unique `1esn`=(({`3esn`:@usn5[12.0][{1000}]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]->(`2esn` :@usn5{`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})) Unwind Reduce(@usn6=12 Is Not Null,`` In {usn1} Ends With {`6esn`} Ends With 123456789|.e1 Ends With {7} Ends With $usn1)[Case {12} Contains `7esn` Contains $_usn3 When 0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] Then Count ( * ) Starts With 010 Starts With 0x0 When $7 Ends With 0X7 Then {#usn8}[2.12] Else $7 In 1.0 In 1e1 End..][_usn4(Distinct 0.12 Ends With {1000} Ends With `6esn`,$_usn3 =~{_usn4} =~$`6esn`)..] As _usn3) Create (`4esn` :`4esn`:@usn6)"), + octest_legacy:ct_string("Remove [`6esn` In 00 Where 0.12[..$`6esn`][..$1000]|Null =~12e12]._usn4?,[#usn7 In 123.654 Starts With $`` Where `1esn` In 07|0.0[..{999}][..0.0]].`7esn`!,Shortestpath(({`6esn`:$``['s_str'..][0x0..]})).`8esn` Unwind @usn6[Count ( * )][True] As usn2 Unwind 0x0[{7}..] As `3esn` Union All Optional Match @usn6=Shortestpath(((usn1 :`5esn`:@usn5)-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:usn2:`2esn`{usn1:$7 Is Null Is Null})-[? *01..07]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}))),(`2esn` :`5esn`:@usn5{_usn4:{`2esn`} Is Not Null Is Not Null,usn2:{`4esn`} In _usn4})<-[#usn7?:#usn8|`2esn`]->(#usn7 {usn1:$#usn7 =~{12} =~False,#usn7:0x0 =~123.654 =~{999}})-[`8esn`?]->(`3esn` :`6esn`:`8esn`) Using Scan `3esn`:#usn8 Using Join On `1esn`,`7esn`,usn2 Where {``} Is Null Is Null Merge `6esn`=(`3esn` :#usn7)-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}) Union All Return *,Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000)[[_usn4 In `2esn` Where `3esn` Is Not Null Is Not Null]..All(`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999])][(_usn4 {_usn3:9e1 =~999})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})..{`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}] As _usn3,Reduce(_usn4=.e1 Starts With $_usn4 Starts With {`1esn`},`6esn` In 00|usn2[True])[..[9e12[..0X7]]][..$`1esn`] Skip 0e0[..$@usn5][..$`8esn`] Limit Reduce(`3esn`={_usn3} Is Not Null,usn1 In 12.e12 In {0} In 9e1|0[Count(*)][0e0])[`6esn`(``[..0X0123456789ABCDEF])..Single(`` In {`1esn`} Starts With @usn6 Where {_usn3}[$usn2..])] Start `8esn`=Relationship:`4esn`(``='s_str') ,`8esn`=Rel( {`7esn`})"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`3esn`)Assert Case usn2 =~0X7 =~{#usn7} When $123456789 Is Not Null Then 1.e1[{#usn8}] When 12 Ends With 01 Then $#usn7[123.654] End.`1esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[``:#usn7]-()Assert Exists(All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3).`4esn`!)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`2esn`)Assert [00[07..],$1000 Starts With $`8esn` Starts With {`5esn`}].usn1! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn5:_usn4)Assert Reduce(usn2=`8esn` Contains $`3esn` Contains {`4esn`},_usn3 In True[7][$999]|0x0 Ends With {``}).`4esn`! Is Unique"), + octest_legacy:ct_string("Using Periodic Commit 0Xa Load Csv With Headers From Reduce(``={usn2} =~@usn6 =~{`4esn`},`` In {`1esn`} Starts With @usn6|0[{@usn5}..][7..]) Contains [`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]] Contains [$999 Is Null,{``}[010]] As `4esn` Fieldterminator 's_str' Detach Delete 123.654[{`7esn`}][{7}],Count ( * ) Starts With 010 Starts With 0x0"), + octest_legacy:ct_string("Match Allshortestpaths(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),Allshortestpaths((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})-[`5esn`{`7esn`:@usn5[..$@usn5][..0Xa]}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})<-[#usn8? *..01234567]-($_usn3)) Remove [@usn5 In Null =~12e12 Where _usn4 In $usn1].`6esn`?,Reduce(`4esn`=`3esn`[..{_usn4}][..{@usn5}],`2esn` In {999} Is Not Null|123456789 Starts With {@usn6} Starts With $12).usn2,Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3).`3esn` Union All Merge _usn4=(`7esn` :`5esn`:@usn5{`2esn`:12 Starts With $#usn7})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(`4esn` :_usn4{`2esn`:#usn7 =~00}) Foreach(`1esn` In Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 07[..`6esn`][..'s_str']) In [$`2esn`[$usn2..][{``}..],0.e0 Ends With False] In (:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})-[`2esn`?$_usn4]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})| Detach Delete 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF,#usn8[1.0..] Delete $#usn7[`2esn`][010],{`7esn`} Is Not Null Is Not Null) Union All Foreach(`5esn` In $_usn4 Is Null Is Null| Create _usn4=((`2esn` :@usn6)-[_usn3?:@usn6|``]-(usn2 )<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})),`5esn`=Allshortestpaths(((:_usn4)<-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]->(_usn4 {_usn3:`1esn`[..00][..{7}]}))) Remove (`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]}).`1esn`?,[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000].usn1?,{`4esn`:0.12 In 0X7}._usn4!) Remove Shortestpath(((@usn6 :`4esn`:@usn6{#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[:#usn7|`2esn` *0x0..]-({`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}))).#usn7!,Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where _usn4 Is Null Is Null).``!"), + octest_legacy:ct_string("Create Constraint On(_usn3:`8esn`)Assert None(`5esn` In $`2esn`[12.e12][$@usn5] Where `1esn` =~1000 =~1000).#usn7! Is Unique"), + octest_legacy:ct_string("Delete Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where 12e12 Is Not Null) Ends With Single(usn1 In 12.e12 In {0} In 9e1 Where 07 =~@usn5) Ends With [`` In {`1esn`} Starts With @usn6 Where {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]|$`` In 0 In {1000}] Union Unwind $_usn4[$`4esn`..$12] As `3esn` Load Csv With Headers From #usn8 In `8esn` In 07 As #usn7 Fieldterminator \"d_str\" Create @usn5=Allshortestpaths((@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})),(((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[{#usn7:'s_str'[_usn4..0x0]}]-(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})))"), + octest_legacy:ct_string("Foreach(_usn3 In 1000 Is Null| Start @usn6=Rel:`2esn`(`5esn`='s_str') ,`1esn`=Node(00)Where $usn2 =~\"d_str\" =~_usn3 Create `7esn`=Shortestpath(({usn2:#usn8 =~{_usn3} =~``})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})-[?:`1esn`|:`3esn` *999]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})),_usn3=Shortestpath((`6esn` {``:`4esn`[usn1]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]-(#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]}))) Start `5esn`=Relationship:`4esn`(#usn8=\"d_str\") ,#usn8=Node:``(#usn7=\"d_str\")"), + octest_legacy:ct_string("Drop Constraint On(``:usn1)Assert {#usn8:`3esn` Is Not Null Is Not Null}.@usn5? Is Unique"), + octest_legacy:ct_string("Merge Shortestpath((usn2 )-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})) Union All Remove Shortestpath(({usn2:#usn8 =~{_usn3} =~``})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})-[?:`1esn`|:`3esn` *999]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})).`4esn`,Reduce(#usn7={_usn4}[{``}..],_usn3 In {`2esn`} Ends With {12} Ends With 7|{`6esn`} Ends With 0e0 Ends With {``}).#usn7! Union All With Distinct 0Xa Contains #usn8 Contains 1000 Order By {#usn8} Contains 1000 Contains $`4esn` Ascending,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Ascending Skip ({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..`2esn`(Distinct #usn8[`7esn`..])][..[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]]] Remove None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $`5esn`[$#usn7..][0xabc..]).`2esn`,{`5esn`:usn2 =~0X7 =~{#usn7}}.`3esn`? Return *,All(`6esn` In Count(*) Ends With $`` Ends With {7}) In (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}) Skip [`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7}|usn2[`7esn`..{`3esn`}][$7..{#usn7}]][..[`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]|9e12[..0X7]]][..[`2esn` Ends With $`4esn` Ends With {#usn7},'s_str'[..0X7],{#usn8} =~{999} =~{#usn7}]]"), + octest_legacy:ct_string("Detach Delete $@usn6 Contains $`7esn` Contains 1e1 Merge _usn3=Shortestpath((((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[`6esn`?]-(`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})))) On Match Set #usn8 =$`1esn` =~$`1esn` =~{`6esn`},`2esn` =@usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2),`6esn` =`6esn` In Null On Create Set `5esn`+=$`3esn` Contains 0 Contains 07,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $#usn7[..@usn6][..$0]).`1esn`? =$1000[0.12..0.12] With 0X0123456789ABCDEF[0X7..] As `4esn`,7 Contains 9e0 As `4esn`,0x0 Ends With {``} As `7esn` Where 1.e1[0X0123456789ABCDEF..] Union Detach Delete \"d_str\" Starts With $`8esn` Starts With {usn1},12.e12[2.12..][0xabc..],(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) Merge ((`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})) On Create Set `4esn` ={999} Ends With {`5esn`} Ends With {0} Start `6esn`=Node:_usn4('s_str') ,#usn8=Node:`2esn`({_usn3}) Union All Remove Single(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn4} In {1000}).usn1 Remove Filter(`6esn` In 00 Where 0.12[..$`6esn`][..$1000]).#usn8!,[999 Ends With .e12 Ends With .e1,{_usn3}[..$`8esn`]].@usn6?"), + octest_legacy:ct_string("Drop Constraint On()-[``:usn2]->()Assert Exists(`4esn`(Distinct 12e12 Is Not Null,{#usn8} =~{999} =~{#usn7}).#usn8!)"), + octest_legacy:ct_string("Start _usn4=Node:`6esn`({`1esn`}) ,`3esn`=Rel:#usn8(\"d_str\")Where 12 Starts With 7 Starts With $`5esn` Foreach(`` In {12} =~0.e0 =~{_usn3}| Detach Delete 12.e12 In {0} In 9e1,$``[01],0.0 In `6esn` In $@usn5 Create Unique #usn7=(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}),`6esn`=(({@usn6:Null =~12e12}))) With *,2.12[`8esn`][1e1],$usn1 Starts With {_usn3} As _usn4 Limit {`2esn`} In 0Xa In {_usn3} Union Remove (#usn8 :_usn3)<-[?:usn2|#usn7]->(#usn8 :#usn7)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`).`2esn`,{@usn6:12 Starts With {_usn4} Starts With $#usn8,`2esn`:{@usn6}[$`7esn`..][False..]}.`1esn` Create Unique (((`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]})-[]->(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )})<-[@usn6?]->(`8esn` :``))),usn2=Allshortestpaths(((({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})<-[?:``]-(`1esn` :#usn7)-[?:`4esn`|:#usn7]->(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})))) Detach Delete {`5esn`} Starts With 12.0,1000 Starts With `7esn`,$usn1 In 01234567 In .e1 Union Create Unique `8esn`=Shortestpath(((_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->(`` {``:0x0 =~123.654 =~{999}})-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->(:`3esn`:`6esn`{@usn5:.e12 =~.e0}))),Allshortestpaths((:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[_usn4? *07{1000}]-(`` )<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00}))"), + octest_legacy:ct_string("Remove ({#usn8:0Xa Contains Count ( * ),`8esn`:Null Is Null Is Null})<-[:@usn5|:`7esn`{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})-[`5esn` *0x0..]->(usn1 :usn1:_usn4)._usn3! Start `4esn`=Node:`1esn`(#usn7=\"d_str\") Where $0[$1000..00][{0}..{usn1}] Union All With `7esn` Ends With $_usn3 Ends With usn2 As _usn4,1000 Is Null Is Null Order By \"d_str\"[Count ( * )..`6esn`] Desc Skip 9e1 Ends With $@usn5 Ends With $123456789 Limit $`8esn`[0e0..] Where {999} Starts With {_usn4} Starts With 00 Create Unique `2esn`=Shortestpath((:`5esn`:@usn5{``:0.12[..$`6esn`][..$1000]})) Foreach(`` In {`7esn`}[0X7..][0x0..]| Load Csv With Headers From 12.e12[`7esn`] As `1esn` With `7esn`[{usn1}][999] As `7esn`,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..]) Starts With [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]|Count ( * )[..12][..{@usn6}]] Starts With Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where True Starts With $`2esn` Starts With {@usn6}) Order By @usn5 =~$`3esn` =~0X7 Descending Skip {usn1}[01..7][{`3esn`}..`6esn`]) Union All Match `6esn`=(`4esn` {`2esn`:@usn5[$12..\"d_str\"]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]-({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000}),``=Shortestpath((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})-[#usn8?:#usn8|`2esn` *0X7..0Xa{usn2:{1000},`6esn`:#usn8[`7esn`..]}]->(:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})) Using Scan `1esn`:`7esn` Using Join On #usn8,#usn8 Where 's_str' Starts With 12e12 Starts With $_usn4 Foreach(#usn8 In {1000}| Create Unique _usn4=((`2esn` :@usn6)-[_usn3?:@usn6|``]-(usn2 )<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})))"), + octest_legacy:ct_string("Create Constraint On()-[usn2:`5esn`]->()Assert Exists([{`2esn`} Starts With @usn6].`7esn`!)"), + octest_legacy:ct_string("Unwind _usn4 =~0e0 As `` Detach Delete ({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01})[(`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(usn2 )],{123456789} =~usn1 =~{usn1}"), + octest_legacy:ct_string("Drop Constraint On(@usn5:#usn7)Assert Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where Count ( * )[Count ( * )][12]|$`6esn`[`8esn`][0.0]).`4esn`? Is Unique"), + octest_legacy:ct_string("Load Csv From 010 Ends With 01 Ends With {_usn3} As `7esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Detach Delete 9e0 Starts With .e0 Starts With \"d_str\",(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) Union All Unwind 0.0 In `6esn` In $@usn5 As `6esn` Union Load Csv From 0.0 In `6esn` In $@usn5 As `4esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Create Constraint On()-[`6esn`:``]->()Assert Exists(({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})-[`6esn`?{#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}]-({`3esn`:9e1 =~999})<-[`1esn`? *0X0123456789ABCDEF{`5esn`:1.e1 Starts With $`2esn` Starts With $0}]->({_usn4:{usn1} =~123.654 =~\"d_str\"})._usn3?)"), + octest_legacy:ct_string("Detach Delete $`3esn`[{``}..],All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.e12[$`8esn`..{`8esn`}]) Is Null,$@usn5[..usn2][..$#usn7] Union All Delete $`2esn`[{`6esn`}][0.0],Single(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7])[..{@usn5:_usn4[Count(*)],`6esn`:$`3esn` Contains 0 Contains 07}][..Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`])],Single(`6esn` In 00 Where 0.12 In 0X7)[..{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] Union Unwind 010 Is Not Null Is Not Null As usn1"), + octest_legacy:ct_string("Create Constraint On(`6esn`:_usn4)Assert Exists(Allshortestpaths(((`4esn` :`1esn`)-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6}))).`2esn`)"), + octest_legacy:ct_string("Detach Delete {`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}[Case When 1.e1[0X0123456789ABCDEF..] Then `6esn`[..{999}] When {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`] Then $#usn7 Ends With 0.12 Ends With {@usn6} End..Filter(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null)],Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})] Load Csv From Single(_usn3 In {@usn5}[..#usn7] Where {@usn6} In {#usn7} In 12.e12)[(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[*{`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]}]->(:`2esn`{#usn8:`6esn` Ends With 2.12 Ends With @usn6,`1esn`:{`8esn`}[True..][.e1..]})<-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` :`8esn`:@usn5)] As @usn6 Fieldterminator 's_str' Union All Start `3esn`=Node:`4esn`({#usn8}) ,`2esn`=Rel:`4esn`(#usn8='s_str')Where 010 In `1esn` Union Load Csv With Headers From $`8esn`[..0x0][..``] As usn2 Start ``=Relationship( {``}) ,`7esn`=Relationship(07,123456789,123456789)Where 12.e12[{@usn5}..][9e1..] Remove Reduce(@usn6=0.e0[12.e12],_usn4 In `2esn`|True Starts With $`4esn` Starts With 12e12).@usn6?"), + octest_legacy:ct_string("Create Constraint On(#usn8:_usn4)Assert Any(usn1 In 12.e12 In {0} In 9e1 Where 123.654[$`1esn`..Null][1000..{_usn3}]).`6esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`6esn`:_usn4]-()Assert Exists(Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn1[0X7]|{999}[$123456789..][12..]).`4esn`?)"), + octest_legacy:ct_string("Load Csv From `4esn` Is Not Null Is Not Null As `7esn` Fieldterminator \"d_str\" Create Unique _usn4=Shortestpath(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})-[:`1esn`|:`3esn` *..01234567{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(#usn7 {``:0x0 =~123.654 =~{999}})),#usn8=((`2esn` :@usn6)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)<-[`1esn`:`8esn`|:_usn4 *123456789..0X7$12]->(:`1esn`{`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})) Load Csv From `1esn` In 07 As `8esn` "), + octest_legacy:ct_string("Create Constraint On()-[@usn5:#usn7]-()Assert Exists(All(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} Starts With 1.0 Starts With 00).`1esn`!)"), + octest_legacy:ct_string("With Distinct *,$`1esn` Ends With {`7esn`} Ends With $_usn3 As `7esn`,{1000} As `` Load Csv With Headers From 01234567[{`7esn`}..] As `7esn` Fieldterminator \"d_str\" Union Optional Match `5esn`=(`8esn` :`5esn`:@usn5)-[`5esn`?:usn2|#usn7]->(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )}) Using Join On `4esn` Using Join On `1esn`,`7esn`,usn2 Where 00 With `7esn`[{usn1}][999] As `7esn`,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..]) Starts With [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]|Count ( * )[..12][..{@usn6}]] Starts With Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where True Starts With $`2esn` Starts With {@usn6}) Order By @usn5 =~$`3esn` =~0X7 Descending Skip {usn1}[01..7][{`3esn`}..`6esn`] Start `2esn`=Rel:usn2(`2esn`={`7esn`}) ,`1esn`=Relationship( {@usn6})Where {`7esn`} Is Not Null Is Not Null"), + octest_legacy:ct_string("Remove Single(@usn5 In Null =~12e12 Where `7esn`[0..$usn2][{usn2}..0.e0]).`5esn`? Union Foreach(usn2 In Any(`5esn` In $`2esn`[12.e12][$@usn5] Where {999} Starts With {12})[Reduce(#usn7={_usn3}[`3esn`..$#usn8],`3esn` In 123.654[1e1..][{#usn8}..]|{999} Starts With {_usn4} Starts With 00)..Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0.12[..$`6esn`][..$1000])][All(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])..[$_usn3 Is Null Is Null,`5esn` Is Null Is Null,7 Is Null Is Null]]| With Distinct {usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}[..None(`1esn` In `3esn`[07..] Where 0X0123456789ABCDEF[`5esn`..][$#usn8..])] Skip 0xabc[$999..][{#usn7}..]) Optional Match @usn6=(`2esn` :`3esn`:`6esn`),`8esn`=(@usn6 :`6esn`:`8esn`)<-[_usn4?:`7esn`{``:{_usn3} Contains $`1esn` Contains 12.0}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}) Using Join On _usn4,_usn4,@usn6 Where 0.12 Starts With 9e12 Starts With $`1esn`"), + octest_legacy:ct_string("Optional Match `7esn`=Shortestpath((((`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})-[_usn3?*..{#usn7:#usn8 =~{999},`8esn`:{_usn3}[`3esn`..$#usn8]}]->({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})-[@usn6 *07{`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}]->({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]})))),`6esn`=Shortestpath(((:#usn8{#usn8:`3esn` Is Not Null Is Not Null}))) Where $1000[{`6esn`}..] Unwind $`` Contains 1.e1 As `` With All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,1000 As `1esn`,12e12[{usn2}..][`8esn`..] Order By Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where 1.e1[12e12..{`6esn`}]|Count ( * )[..12][..{@usn6}]) Contains All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Contains Extract(_usn4 In `2esn` Where $999 Is Null) Ascending,[False Contains 0.e0 Contains Count(*)][Any(@usn5 In Null =~12e12 Where 0[`4esn`][12.e12])..[$_usn4 Is Not Null Is Not Null,`7esn` Is Not Null Is Not Null]] Descending,(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-({#usn7:#usn8 =~{999}}) In Shortestpath(((:`1esn`)<-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})-[`7esn`? *123456789..0X7{`6esn`:{0}[..{`7esn`}]}]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999}))) Desc Where `5esn`[0xabc..]"), + octest_legacy:ct_string("Drop Constraint On(usn2:`2esn`)Assert Exists(None(#usn7 In 0Xa[@usn5][{`7esn`}] Where 0[`4esn`][12.e12]).`1esn`?)"), + octest_legacy:ct_string("With @usn5[$12..\"d_str\"] As @usn6,usn2 In `2esn` In $`7esn`,.e1[0.12] As @usn6 Order By [1.e1 =~$usn2,1000][[_usn4 In 0.0[..{999}][..0.0] Where 12.e12[{7}..7]]..][All(_usn4 In `2esn` Where $0[`7esn`])..] Descending,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..])[..{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}][..Filter(`2esn` In {999} Is Not Null Where 010 In `1esn`)] Desc Skip {#usn8} =~{999} =~{#usn7} Union Remove {@usn6:$usn1[0X7],`3esn`:$7[$`3esn`]}.`6esn`? Detach Delete 0.12 Contains 12.0,{999}[$123456789..][12..] Load Csv From [1.e1 =~$usn2,@usn6[{0}..],@usn5[12.0][{1000}]][@usn6()..Case {@usn5}[..@usn6] When $`2esn` Starts With {`8esn`} Starts With {usn1} Then {``} Is Null Is Null Else 123456789 Ends With usn1 Ends With usn2 End] As `6esn` Fieldterminator \"d_str\" Union All Merge `8esn`=((:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *..00{#usn7:`4esn`[usn1]}]-(:@usn5{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12})) On Create Set `1esn`+=usn1[0],None(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``).@usn5! =0e0 Contains 9e12,`3esn`(Distinct 0[Count(*)][0e0],#usn8 =~{_usn3} =~``).@usn6 =Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12) Contains {`1esn`:$999 Ends With {0}} Contains (`5esn` :_usn3{`4esn`:12.e12[``..usn2][{#usn7}..@usn5]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(`4esn` :`2esn`{`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00}) With Distinct Count(*) Ends With $`` Ends With {7} As #usn7,$#usn7 =~9e1 =~$_usn4 Order By Case $1000[..12.0][..0e0] When `3esn` Is Not Null Is Not Null Then 12.e12[{7}..7] When Count(*) In {``} Then 12[..$@usn6] End[..All(#usn7 In 0Xa[@usn5][{`7esn`}] Where 1e1[1.e1..][123.654..])][..[0.0 =~12.e12 =~1.0,$`7esn` Is Null Is Null,``[..$#usn7]]] Ascending"), + octest_legacy:ct_string("Merge _usn3=(@usn6 {``:.e12[\"d_str\"..][.e1..]}) Union Start usn1=Node:_usn3(_usn3='s_str') ,`3esn`=Node:``(_usn3={0}) Optional Match (:``{``:0x0 =~123.654 =~{999}})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]}),Allshortestpaths((:@usn6{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]})) Using Scan `6esn`:`` Create Unique Allshortestpaths(((_usn4 :`6esn`:`8esn`$``))),usn2=({`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})"), + octest_legacy:ct_string("Merge ((:#usn8{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})-[``?:usn2|#usn7 *0x0..]-(@usn5 :usn1:_usn4)-[:`5esn`]->(:@usn6{`2esn`:$999 In 999})) Unwind $`7esn` Is Null Is Null As `1esn` Delete Count(*) Ends With 0x0 Ends With 9e0,{123456789} =~usn1 =~{usn1}"), + octest_legacy:ct_string("Drop Constraint On()-[@usn5:`2esn`]-()Assert Exists((`2esn` :`5esn`:@usn5{_usn4:{`2esn`} Is Not Null Is Not Null,usn2:{`4esn`} In _usn4})-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)-[ *0xabc..7{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}]-(usn1 )._usn4?)"), + octest_legacy:ct_string("Delete (`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Is Not Null Is Not Null Unwind 0Xa[.._usn3][..$`6esn`] As `4esn`"), + octest_legacy:ct_string("Detach Delete Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where 12e12 Is Not Null)[..Reduce(`1esn`=$`3esn` In 9e12 In ``,`2esn` In {999} Is Not Null|$@usn5[..usn2][..$#usn7])],$#usn7[`5esn`] Union Create Shortestpath((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Union All Foreach(`4esn` In [$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null][(`1esn` :#usn7)<-[? *0X0123456789ABCDEF]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]})..[{_usn3}[$usn2..],$`3esn`[..$`2esn`][..123.654],12.e12[`7esn`]]]| Create ((:``)-[:``]->({`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}}))) Optional Match ((usn2 :_usn3)<-[?:_usn4|:usn1 *..00{`1esn`:{#usn8}[2.12]}]->(:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn8:#usn7|`2esn`]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})),((`8esn` :`8esn`:@usn5)<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})) Where {`3esn`} Is Null"), + octest_legacy:ct_string("Create Constraint On(usn2:@usn6)Assert Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End._usn4? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`1esn`:``)Assert Exists(Case Count(*) Is Not Null When {`4esn`} Starts With $7 Starts With $`` Then {`4esn`} Starts With $7 Starts With $`` Else 0X0123456789ABCDEF[`5esn`..][$#usn8..] End.usn2)"), + octest_legacy:ct_string("Load Csv With Headers From ``(999 Starts With 's_str',1e1[1.e1..][123.654..]) =~[$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]] =~[#usn7 In 0Xa[@usn5][{`7esn`}] Where `5esn`[0xabc..]] As @usn5 Union Create Unique ({`4esn`:#usn8 Is Null}) Union All Create `5esn`=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]}) Return Distinct ``[$0..][`1esn`..] As `4esn`,Allshortestpaths((usn2 {_usn3:$0 In _usn4})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[{`2esn`:1000 Is Null Is Null}]->(:_usn4{`4esn`:`8esn` Contains $`3esn` Contains {`4esn`},_usn3:$12[{7}..0X0123456789ABCDEF]}))[..[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12 Starts With {_usn4} Starts With $#usn8]][..(:``{`1esn`:#usn8 Is Not Null,`5esn`:$@usn6[$0..usn1][0X0123456789ABCDEF..$999]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})-[?:_usn3|`8esn` *12..{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}]-(`6esn` :`2esn`{`7esn`:#usn8 =~{999}})] Order By {12} Starts With #usn8 Starts With 0e0 Descending,0.0 Is Null Asc Skip All(`5esn` In $`2esn`[12.e12][$@usn5] Where 12[..$@usn6]) =~(_usn4 :`7esn`)<-[{`2esn`:1000 Is Null Is Null}]->({`6esn`:7[010][00],#usn8:$usn1 =~010 =~07}) Limit [_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]|0[Count(*)][0e0]] Contains Extract(`` In {`1esn`} Starts With @usn6 Where .e0[..{`5esn`}][..999]|$`3esn`[..$`2esn`][..123.654]) Contains Reduce(`2esn`=$usn1[0X7],@usn5 In Null =~12e12|#usn7 =~{`4esn`} =~123456789)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`5esn`)Assert Exists(Any(_usn4 In 0.0[..{999}][..0.0]).`4esn`)"), + octest_legacy:ct_string("Remove Shortestpath((({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`))).#usn8!,({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})-[? *01..07]->({_usn4:{usn1} =~123.654 =~\"d_str\"}).`5esn`?,[{`6esn`}[..{`2esn`}],$`8esn`[..$999][..0],`3esn` Is Not Null Is Not Null].`1esn`? Merge `8esn`=((@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})) On Match Set `8esn`+=$`4esn` In Null Start `3esn`=Relationship:#usn8(_usn3={#usn7}) ,`8esn`=Rel( {`3esn`})Where $`2esn` Is Null Is Null Union All Merge @usn6=((_usn4 :#usn8)<-[:#usn8|`2esn` *123456789..0X7{``:$#usn7 =~{12} =~False,`5esn`:{1000} In {123456789}}]->({`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF})<-[{``:\"d_str\"[{`8esn`}..]}]-(:#usn7{#usn7:$`8esn` In $`2esn` In {7}})) Detach Delete $@usn5 In 's_str' In $12,Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]}))) Ends With Case When $``['s_str'..][0x0..] Then 9e12[..0X7] Else $1000[..$999] End,{`7esn`} Ends With `` Ends With {`8esn`} Union Create Unique `8esn`=Allshortestpaths(((`8esn` :@usn6)))"), + octest_legacy:ct_string("With Distinct *,Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 9e12 Is Not Null) =~Case When False[0Xa..$usn1] Then {123456789}[12..][$12..] Else 0e0 Contains 9e12 End As usn2 Order By $`7esn` Contains {`1esn`} Contains 9e12 Asc,usn1 Is Null Is Null Descending Limit `5esn` Is Not Null Is Not Null Union All Load Csv From .e12[010..$123456789] As _usn4 Fieldterminator \"d_str\" Optional Match (((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`}))),#usn7=(($`5esn`)) Using Scan #usn7:_usn3 Using Index `6esn`:`7esn`(#usn8)"), + octest_legacy:ct_string("Create Constraint On()-[``:`1esn`]->()Assert Exists(Reduce(@usn5=$usn1 =~010 =~07,_usn4 In 0.0[..{999}][..0.0]|01234567[$7..{12}]).usn1!)"), + octest_legacy:ct_string("Remove (:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}).``? Foreach(`3esn` In 01234567[$7..{12}]| Create Shortestpath((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Return Distinct *,`` Ends With $`4esn` Ends With 0X0123456789ABCDEF As #usn7,False Contains 0.e0 Contains Count(*) Order By Reduce(usn1=12.0[2.12..][{`5esn`}..],_usn3 In {@usn5}[..#usn7]|1000[$7..$123456789]) Is Null Is Null Desc,[#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 Starts With {_usn3}|@usn6[$12]] Ends With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null] Ends With Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) Ascending Skip $@usn5[`6esn`..] Limit $`4esn`[..7][..{12}]) Delete `2esn`[Null],$7 In #usn8 Union Unwind $``['s_str'..][0x0..] As #usn7 Union All Load Csv From Case When 0X0123456789ABCDEF[7...e0][`1esn`..usn2] Then $1000 Starts With $`8esn` Starts With {`5esn`} When usn2 =~0X7 =~{#usn7} Then {`2esn`} In $123456789 In True End[Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`)] As usn1 Load Csv With Headers From 9e1 =~999 As `7esn` "), + octest_legacy:ct_string("Foreach(`` In 0X7[0X7..][Count ( * )..]| Unwind [`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*)] Starts With (`5esn` :`7esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`}) Starts With `6esn`(Distinct 12.e12[``..usn2][{#usn7}..@usn5],$`7esn` In 12) As @usn5) Delete True[7][$999],Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]}))) With *,(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As #usn7 Union All Create Unique `1esn`=Allshortestpaths((((#usn7 :@usn5)<-[`4esn`?*..]-(:`4esn`:@usn6{`3esn`:123456789 Is Not Null Is Not Null})-[#usn8:`` *..0{@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})))),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` )) Create `2esn`=Allshortestpaths((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})))"), + octest_legacy:ct_string("Remove None(`5esn` In $`2esn`[12.e12][$@usn5] Where 's_str' Starts With 12e12 Starts With $_usn4).@usn5!,[usn1 In 12.e12 In {0} In 9e1 Where {1000} Ends With {`8esn`}|$_usn3 =~{_usn4} =~$`6esn`]._usn3 Merge `6esn`=(((:#usn8{`2esn`:12e12 Is Not Null,_usn3:12.e12[2.12..][0xabc..]})-[:_usn4|:usn1{``:0 Contains $usn2 Contains 12e12}]-(`4esn` :`2esn`)<-[`7esn`?:_usn3|`8esn`*..]->(`2esn` :_usn3))) On Match Set `4esn`+=Any(`6esn` In Count(*) Ends With $`` Ends With {7} Where 1000 Is Null) Is Not Null Is Not Null,{`6esn`:7 Is Not Null}.`5esn` =$`6esn`[`8esn`][$`5esn`],`2esn`+=Reduce(`3esn`=#usn8 In `8esn` In 07,#usn7 In 123.654 Starts With $``|_usn3[$usn2..0])[..Any(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`])][..[$`1esn`[#usn8][$@usn5],\"d_str\" Ends With False Ends With {@usn6}]] On Match Set `7esn` =$1000[0.12..0.12] Union Start @usn6=Node( {`8esn`}) ,`3esn`=Relationship:@usn6({`2esn`}) Remove {usn2:7 In 1.e1 In $usn1}.`4esn`!,All(_usn4 In 0.0[..{999}][..0.0] Where #usn8 Is Null).`8esn`? Create #usn7=(`4esn` :usn2:`2esn`)"), + octest_legacy:ct_string("Create Constraint On()-[#usn7:_usn3]-()Assert Exists([`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 1.e1[0X0123456789ABCDEF..]|.e1 Starts With $_usn4 Starts With {`1esn`}].@usn5!)"), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:usn2]->()Assert Exists((:#usn7{usn2:{`8esn`}[0X7][$`3esn`]})<-[usn2]-(@usn6 :@usn6{`5esn`:@usn5[$12..\"d_str\"],usn2:1.e1[0X0123456789ABCDEF..]})<-[?:@usn6|``{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(_usn4 :_usn4).`1esn`)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:usn1)Assert [`` In {`1esn`} Starts With @usn6 Where {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]|0[`4esn`][12.e12]].usn1? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:usn1)Assert [#usn7 In 123.654 Starts With $`` Where $999 In 999].@usn6! Is Unique"), + octest_legacy:ct_string("Create Unique (`2esn` :@usn6{7})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]})<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`),(((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}))) Create Shortestpath(({`3esn`:0.e0[{999}][{`1esn`}],`1esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[:usn2|#usn7 *0X7..0Xa]->(#usn7 :@usn5)),`3esn`=(((`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[usn1?:`4esn`|:#usn7 *0X7..0Xa]->({_usn4:01234567[..9e1]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}))) Load Csv With Headers From $`2esn`[{usn2}] As #usn8 Union All Start @usn6=Node:`4esn`(``='s_str') Where {`5esn`} Contains 's_str' Contains 9e1 Start `8esn`=Relationship(07,123456789,123456789) ,usn2=Relationship( {123456789})Where $0[$1000..00][{0}..{usn1}] Optional Match _usn3=((:@usn5{`3esn`:@usn5 =~'s_str',`1esn`:$`7esn` Contains {`1esn`} Contains 9e12})),_usn4=(((@usn6 {usn1:$#usn7 =~{12} =~False})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))) Using Index `3esn`:``(`5esn`) Using Scan usn2:_usn3 Where $12 Is Not Null Union Unwind Reduce(`6esn`=7[$0..][{_usn4}..],_usn3 In {`2esn`} Ends With {12} Ends With 7|{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`)[[$#usn7[`5esn`],Count(*) Ends With 123.654 Ends With $12,$#usn7[..@usn6][..$0]]] As `3esn`"), + octest_legacy:ct_string("Drop Constraint On(#usn7:@usn6)Assert Exists(Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6).``!)"), + octest_legacy:ct_string("Create (((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})-[`4esn`?:``{usn2:12e12 Ends With `4esn` Ends With 123456789}]->(:`7esn`{usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))),(((#usn8 )-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]})))"), + octest_legacy:ct_string("Load Csv From 9e1 =~`` =~{`7esn`} As @usn6 Union Foreach(_usn4 In `3esn`[_usn4..{0}][`5esn`..usn2]| Optional Match (((`3esn` :@usn5)<-[`7esn`? *0xabc..7]->(:usn2:`2esn`{`5esn`:@usn5 =~'s_str'})-[? *0X0123456789ABCDEF]-(_usn3 :`5esn`:@usn5))) Using Join On @usn5,usn2,_usn3 Using Join On `8esn`,#usn8 Where {_usn3} Contains True Contains 0X7) Remove Single(`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}])._usn3,Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $``[.e12..]).`6esn` Start `3esn`=Relationship:#usn8(_usn3={#usn7}) Where {999} Is Null Union Merge ((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]})) Match ((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]})),(((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`}))) Using Index `6esn`:`2esn`(`1esn`) Create Unique ``=Shortestpath(((usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}))),usn1=Allshortestpaths(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]})))"), + octest_legacy:ct_string("Create Constraint On(`3esn`:``)Assert Exists(Filter(_usn3 In True[7][$999] Where 's_str'[..0X7]).#usn7!)"), + octest_legacy:ct_string("Using Periodic Commit 1000 Load Csv From usn2 =~0X7 =~{#usn7} As `` Unwind {`1esn`} In 12.e12 In 9e1 As `4esn` Create Unique _usn3=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]})"), + octest_legacy:ct_string("Drop Constraint On(_usn3:@usn6)Assert [$`4esn` Starts With 0e0].`7esn`? Is Unique"), + octest_legacy:ct_string("Unwind `7esn`[0..$usn2][{usn2}..0.e0] As `1esn` Union Unwind All(usn1 In 12.e12 In {0} In 9e1)[[`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]|12.e12[$`8esn`..{`8esn`}]]..] As usn1 Create Unique ((:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})<-[`2esn`?:@usn6|`` *..00]->({_usn3})) Merge _usn3=Shortestpath((((#usn7 :@usn6{`8esn`:{@usn6}[True..{_usn3}],`1esn`:07 Is Null})-[ *..0{`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null}]->(:usn1:_usn4{`4esn`:01234567 In $123456789})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5))))"), + octest_legacy:ct_string("Drop Constraint On(_usn3:_usn4)Assert Exists([`2esn` Ends With 12.e12 Ends With `2esn`,{`3esn`} Is Not Null Is Not Null,9e1 =~`` =~{`7esn`}].`8esn`?)"), + octest_legacy:ct_string("Drop Constraint On(usn1:usn2)Assert All(`2esn` In {999} Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]).`3esn` Is Unique"), + octest_legacy:ct_string("Optional Match @usn6=Allshortestpaths(({`4esn`:#usn8 Is Null})),@usn6=Allshortestpaths(({_usn4:0X0123456789ABCDEF[$`2esn`..][`2esn`..],`2esn`:$`6esn` Starts With 12.e12 Starts With $#usn7})-[:#usn8|`2esn`]->(:`3esn`:`6esn`)<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]->({_usn4})) Using Scan `5esn`:#usn8 Merge `4esn`=Shortestpath(((:#usn8{#usn8:`3esn` Is Not Null Is Not Null})<-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(`` :`7esn`))) On Create Set `1esn`:`` On Create Set usn1+=$999 Is Not Null Is Not Null,Shortestpath(((`4esn` :`2esn`)<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]}))).`3esn`! =@usn5 In 1e1"), + octest_legacy:ct_string("Load Csv From 999 Starts With 's_str' As _usn4 Optional Match `3esn`=((_usn4 :#usn8{`5esn`})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5)-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->({`7esn`:123456789[0..]})) Using Scan `3esn`:`3esn` Union All With Distinct {usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}[..None(`1esn` In `3esn`[07..] Where 0X0123456789ABCDEF[`5esn`..][$#usn8..])] Skip 0xabc[$999..][{#usn7}..] Optional Match Allshortestpaths((usn2 :`5esn`:@usn5)),Allshortestpaths((((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]-({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})-[#usn8:`` *..0{@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})))) Load Csv With Headers From 0Xa[$1000..$123456789] As `7esn` Union Optional Match #usn7=Allshortestpaths(((:`5esn`:@usn5))),@usn5=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Where _usn4[Count(*)] Load Csv From {`1esn`} Starts With {`3esn`} As `2esn` Fieldterminator \"d_str\" Remove Shortestpath(({usn2:#usn8 =~{_usn3} =~``})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})-[?:`1esn`|:`3esn` *999]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})).`4esn`,Reduce(#usn7={_usn4}[{``}..],_usn3 In {`2esn`} Ends With {12} Ends With 7|{`6esn`} Ends With 0e0 Ends With {``}).#usn7!"), + octest_legacy:ct_string("Remove (usn1 :#usn8{``:$7[{`1esn`}]})-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-(_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null}).usn1?,[`3esn` =~9e0 =~@usn6].`1esn`,None(`1esn` In $12 Is Not Null Where .e1[@usn5]['s_str']).usn1! Unwind 07[$#usn8] As usn2 Match (_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Using Index @usn6:#usn8(_usn4) Using Index usn1:``(#usn7) Where 0X7[0X7..][Count ( * )..]"), + octest_legacy:ct_string("Create Unique #usn7=Allshortestpaths(((:`6esn`:`8esn`))),usn1=Allshortestpaths(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))) Union Return *,(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As #usn7,.e1 Ends With 0Xa Ends With 00 As _usn3 Detach Delete Count(*)[010..][#usn7..],usn2[..`1esn`],1.e1 =~$usn2"), + octest_legacy:ct_string("Create Constraint On()<-[@usn5:#usn7]-()Assert Exists(Allshortestpaths((({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))).`1esn`!)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:`8esn`)Assert Extract(`6esn` In 00 Where $12 Is Not Null|1000 Is Null).`7esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`2esn`)Assert Exists(#usn8(Distinct).`8esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:_usn3)Assert [#usn7 In 0Xa[@usn5][{`7esn`}] Where $0[_usn4..{`3esn`}][$#usn7..$#usn7]|{#usn8}[#usn7..{`2esn`}]].@usn6? Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn7:`3esn`)Assert None(`1esn` In `3esn`[07..] Where 07 Is Null).@usn5? Is Unique"), + octest_legacy:ct_string("Using Periodic Commit 0xabc Load Csv From All(_usn3 In {@usn5}[..#usn7] Where $`2esn` Starts With {`8esn`} Starts With {usn1}) Starts With {usn2:{`1esn`} Is Not Null} As _usn4 Merge `2esn`=((({`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1})-[`3esn`:`6esn`{`3esn`}]-(#usn8 :`6esn`:`8esn`{`1esn`:9e12 Is Not Null,_usn4:0X0123456789ABCDEF[$`2esn`..][`2esn`..]})<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})))"), + octest_legacy:ct_string("Detach Delete $7 In 1.0 In 1e1 Create Unique (#usn7 :#usn8)-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0}),@usn6=Allshortestpaths(((`3esn` {`1esn`:$`6esn` Starts With 12.e12 Starts With $#usn7})-[`6esn`:`8esn`|:_usn4]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}))) Foreach(@usn5 In [_usn3 In {@usn5}[..#usn7] Where 12.e12[{7}..7]][Case $`2esn`[{``}..{1000}][#usn8..`2esn`] When {999} Ends With 123456789 Ends With {@usn5} Then Count(*)[.e12..] When {_usn4}[{``}..] Then 0Xa[.._usn3][..$`6esn`] Else #usn8 In `8esn` In 07 End..][All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $#usn7[..@usn6][..$0])..]| Remove (:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}).``?)"), + octest_legacy:ct_string("Drop Constraint On()-[`8esn`:`3esn`]->()Assert Exists(All(usn1 In 12.e12 In {0} In 9e1 Where {12} Contains `7esn` Contains $_usn3).`5esn`?)"), + octest_legacy:ct_string("Create Constraint On(@usn5:#usn8)Assert Exists({`6esn`:1.0[{999}][$999],`1esn`:@usn5[$12..\"d_str\"]}.`1esn`?)"), + octest_legacy:ct_string("Optional Match Allshortestpaths((:usn1:_usn4{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[`8esn`? *999]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})),`6esn`=(({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})) Using Join On `6esn`,`1esn`,`` Using Index `4esn`:usn2(`4esn`) Where {``} Starts With 123456789 Starts With usn2 Unwind `6esn` Ends With 2.12 Ends With @usn6 As @usn6"), + octest_legacy:ct_string("Create Constraint On(``:#usn8)Assert #usn8(Distinct 9e1[$_usn4..0xabc],123.654 Ends With usn2 Ends With 0).#usn8! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:usn2)Assert Exists(None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $`5esn`[$#usn7..][0xabc..]).`4esn`?)"), + octest_legacy:ct_string("Create Constraint On()<-[`6esn`:#usn8]-()Assert Exists(Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[$`8esn`.._usn3]).usn2?)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`3esn`)Assert {#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000}.`` Is Unique"), + octest_legacy:ct_string("With 7[1e1..#usn7] As _usn3 Where 999[12.0..][#usn7..] Union All Create Unique ((@usn5 :`7esn`{#usn8:`8esn` Starts With {123456789},`1esn`:{12} Contains 9e0})<-[`3esn`?{`3esn`:1e1 Contains usn2}]->(:`3esn`:`6esn`)) Optional Match `3esn`=Allshortestpaths((`7esn` :@usn6)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]})),usn1=(({`3esn`:12 Starts With 0x0,`8esn`:0X7[0.e0][{`4esn`}]})-[`5esn` *0x0..]->(`8esn` :#usn7)) Using Index `3esn`:#usn8(`2esn`) Where $`2esn` In {123456789}"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:_usn3]-()Assert Exists(Extract(`` In {`1esn`} Starts With @usn6 Where 12 Starts With 7 Starts With $`5esn`|$`5esn` Is Not Null).`1esn`)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:#usn7)Assert Exists(All(_usn3 In True[7][$999] Where $`3esn`[{``}..]).@usn6?)"), + octest_legacy:ct_string("Create `4esn`=((:#usn8{#usn8:`3esn` Is Not Null Is Not Null})),``=Shortestpath((((`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})))) Union Detach Delete {123456789}[{12}..],9e0 =~0.0 =~$`5esn`"), + octest_legacy:ct_string("Create Unique Allshortestpaths(((:#usn8{#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})-[`8esn`?]->(:`3esn`:`6esn`))),`3esn`=(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})-[:_usn4|:usn1{`6esn`}]->(`8esn` :`7esn`) Start #usn8=Relationship( {`4esn`}) Remove {#usn7:`2esn` Starts With `` Starts With 1e1}.@usn5!,{`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]}.@usn6 Union All Start `8esn`=Relationship:`8esn`({`1esn`}) Where $_usn4 Contains {#usn7} Contains `1esn` Merge ((`2esn` :@usn5{`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})<-[?:`6esn` *07]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[{#usn7:'s_str'[_usn4..0x0]}]-({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]})) On Match Set `6esn`+=`1esn`(Distinct $usn1 Starts With {_usn3},{#usn8}[$#usn7..]) In Shortestpath((({_usn4:0.12 Starts With 9e12 Starts With $`1esn`}))) In All(`1esn` In $12 Is Not Null Where 12.e12[{@usn5}..][9e1..]),All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $#usn7[..@usn6][..$0]).`1esn`? =$1000[0.12..0.12],`2esn`+=0.0 In `6esn` In $@usn5 On Match Set Reduce(`8esn`=7 Contains `2esn` Contains $`8esn`,_usn4 In 0.0[..{999}][..0.0]|$@usn5[`1esn`..]).`2esn` =$`5esn`[`4esn`] Foreach(`` In usn1(Distinct {@usn5}[Count(*)..])[[@usn5 In Null =~12e12 Where {`5esn`} Contains 's_str' Contains 9e1|`2esn`]..][{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}..]| Load Csv With Headers From {usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]} Is Null Is Null As usn1 Create Allshortestpaths(({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})))"), + octest_legacy:ct_string("Create Constraint On(@usn5:``)Assert Shortestpath((`6esn` :`2esn`{`7esn`:#usn8 =~{999}})).#usn8! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`6esn`)Assert Exists(None(#usn7 In 123.654 Starts With $`` Where #usn8[`7esn`..]).usn2!)"), + octest_legacy:ct_string("Optional Match `1esn`=Allshortestpaths(((($_usn3)<-[``?:`3esn`|:@usn5{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(:@usn5{#usn7:{#usn7} In Count ( * ) In $#usn8})-[? *01..07]->(`8esn` :#usn7)))) Using Join On ``,`7esn`,#usn7 Where $`1esn`[$12][Count ( * )] Return Distinct {#usn8}[12.0][$@usn6],$usn2 In 123.654 In .e0,{@usn6}[$`7esn`..][False..] Skip 1000 Is Null Limit $usn1 In 0.12 In $``"), + octest_legacy:ct_string("Load Csv With Headers From Count(*)[.e12..] As _usn4 Fieldterminator \"d_str\" Union All Create Unique `8esn`=((#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null})<-[?:#usn7|`2esn`{@usn5:$0 Is Not Null}]-(`` {``:0x0 =~123.654 =~{999}})),(({`1esn`:{123456789}[12..][$12..]})) Create Unique Allshortestpaths((`` :``)-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})) Unwind 01234567[..9e1] As usn2 Union All Match usn1=((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})),`8esn`=(`6esn` {``:`4esn`[usn1]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]->(#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``}) Using Scan `4esn`:#usn8 Unwind .e0[..{`5esn`}][..999] As `4esn`"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:`7esn`]->()Assert Exists(Filter(#usn7 In 0Xa[@usn5][{`7esn`}] Where $0 In _usn4).`5esn`)"), + octest_legacy:ct_string("Detach Delete ``[..$#usn7],{123456789}[..'s_str'][..$@usn6] Merge @usn6=Allshortestpaths(((`6esn` :_usn3{#usn7:$@usn6[01..@usn5][0x0..`4esn`],_usn4:9e12 =~123456789 =~$999})<-[usn1? *01..07]->({`1esn`:$123456789[..$7][..$`6esn`]}))) On Create Set None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]).@usn6! =0X0123456789ABCDEF[$`5esn`..],(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[_usn3?:`1esn`|:`3esn`{`3esn`:$@usn6 Contains $`7esn` Contains 1e1,@usn5:True Starts With $`4esn` Starts With 12e12}]-(`3esn` :_usn3{_usn3:{_usn3} Contains 9e0 Contains $999,`2esn`:{_usn3}[$usn2..]})<-[`3esn`?*{#usn8:$`1esn`[..{_usn3}]}]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}).`8esn`? =$12 Is Not Null On Match Set `7esn`+=Reduce(@usn5=True =~{`1esn`},_usn4 In 0.0[..{999}][..0.0]|7[$0..][{_usn4}..]) In Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`) In All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Merge Allshortestpaths((((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})))) Union Match @usn6=((`8esn` :`5esn`:@usn5)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null})),`4esn`=(`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})-[?:@usn6|`` *..0Xa]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]}) Where .e12[$#usn8..@usn6] Start @usn5=Relationship:#usn7({`4esn`}) ,`3esn`=Rel:`8esn`(@usn6='s_str')Where 9e12[$`5esn`]"), + octest_legacy:ct_string("Create Constraint On(`2esn`:usn2)Assert Exists(Filter(`` In {`1esn`} Starts With @usn6 Where $`5esn`[`1esn`][0X0123456789ABCDEF])._usn3)"), + octest_legacy:ct_string("Create Constraint On(``:`8esn`)Assert Exists(Filter(_usn4 In 0.0[..{999}][..0.0] Where {999}[$123456789..][12..]).`2esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`1esn`)Assert Exists(Single(`1esn` In $12 Is Not Null Where Count(*)[..``][..#usn8]).`7esn`?)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:usn2)Assert Exists(Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[$`8esn`.._usn3]).usn2?)"), + octest_legacy:ct_string("Create Constraint On(_usn4:_usn3)Assert Reduce(``={999} Is Null,_usn4 In 0.0[..{999}][..0.0]|\"d_str\" Ends With False Ends With {@usn6}).`1esn` Is Unique"), + octest_legacy:ct_string("Merge ((:`5esn`:@usn5{usn1:$#usn7[`5esn`]})-[@usn5{#usn7:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,#usn7:.e12[$#usn8..@usn6]}]->(`5esn` :@usn5)<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]-({`7esn`:123.654 Ends With usn2 Ends With 0})) On Create Set #usn8+=``(#usn8 =~{999})[Single(_usn3 In {@usn5}[..#usn7])..][Case $123456789 Is Not Null When .e1[0.12] Then {@usn5}[..{12}][..0x0] When @usn5 Is Not Null Is Not Null Then \"d_str\" Ends With False Ends With {@usn6} End..] On Match Set @usn6($@usn6 Contains `7esn`).@usn5! =$`5esn` Ends With 00 Ends With #usn7,Reduce(usn2=True[7][$999],`` In {`1esn`} Starts With @usn6|{`4esn`}[$_usn4..][9e0..]).`6esn` ={`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn` Start #usn7=Node:_usn4(``=\"d_str\") ,`4esn`=Node:_usn3({123456789}) Return *,`2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}],{#usn7} Starts With `3esn` Starts With {``} As `8esn` Order By (`4esn` :`1esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]->(#usn7 )[Single(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null)] Ascending,Reduce(@usn6=@usn5[$12..\"d_str\"],`` In {`1esn`} Starts With @usn6|Count ( * ) =~{`5esn`} =~{_usn4}) Starts With None(`1esn` In $12 Is Not Null Where `7esn` Is Not Null Is Not Null) Starts With [$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null] Descending Skip ``[$0..][`1esn`..] Union All Unwind 01234567['s_str'] As usn2 Start usn1=Node:`7esn`(`5esn`={usn2}) ,_usn3=Node:`2esn`(#usn7={usn1}) Load Csv With Headers From Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Is Null Is Null As `2esn` Fieldterminator 's_str' Union All Remove `4esn`({`2esn`} Starts With @usn6,{`2esn`}[..{@usn6}][..1.e1]).`3esn`?,{`3esn`:$#usn7 =~{12} =~False,usn2:$@usn6[$`8esn`..][7..]}.@usn5? Remove Case 0x0 =~123.654 =~{999} When $7 Is Null Then {`1esn`} =~{_usn4} When {`3esn`}[{`5esn`}] Then usn1 Contains $7 Contains $`` End.usn2,None(#usn7 In 123.654 Starts With $`` Where $999 In 999).`5esn`!,({_usn4:{usn1} =~123.654 =~\"d_str\"})-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}}).`8esn`?"), + octest_legacy:ct_string("Drop Constraint On()<-[usn2:`1esn`]-()Assert Exists([`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]].`3esn`)"), + octest_legacy:ct_string("Unwind [@usn5[..$@usn5][..0Xa],{`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`]] In Filter(_usn4 In 0.0[..{999}][..0.0] Where True Starts With $`4esn` Starts With 12e12) As `6esn` Unwind 0X7 Is Null As `2esn` Unwind {`7esn`}[..9e12][..0.0] As #usn7 Union With *,{999}[9e1] As usn1,{`6esn`} Is Null As `2esn` Skip Allshortestpaths(((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}))) Starts With All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Limit $`3esn` Ends With $999 Ends With 0X0123456789ABCDEF Create (@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}),_usn4=(@usn6 :@usn6{`5esn`:@usn5[$12..\"d_str\"],usn2:1.e1[0X0123456789ABCDEF..]}) Union Merge Allshortestpaths(((`4esn` :`1esn`)-[`6esn`?*..{`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}]->({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6})))"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`6esn`)Assert `1esn`(Distinct).usn2 Is Unique"), + octest_legacy:ct_string("Drop Index On:`5esn`(#usn8)"), + octest_legacy:ct_string("Match Allshortestpaths(((_usn4 :@usn6)-[`5esn`?:@usn5|:`7esn`]-(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]}))),Shortestpath(((`` {``:0x0 =~123.654 =~{999}})-[{`2esn`:``[{123456789}..]}]->(#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]}))) Where Count ( * )[Count ( * )][12] Unwind [usn1 In 12.e12 In {0} In 9e1 Where {usn1} In Count ( * )][{_usn3:.e1 Ends With 0Xa Ends With .e1,`2esn`:12e12 Starts With `1esn` Starts With usn2}..] As `2esn` Detach Delete 0x0 Is Not Null Is Not Null Union Detach Delete `3esn` In {@usn6} Return {usn2:{1000}[{usn1}][Null],_usn4:0[{@usn5}..][7..]}[Shortestpath(((@usn6 {@usn5:0X0123456789ABCDEF[$999..][@usn5..]})))][All(`1esn` In `3esn`[07..] Where 12 Starts With {_usn4} Starts With $#usn8)] As @usn6,{#usn8} Is Null Is Null Limit 0x0 Is Not Null Is Not Null Remove @usn5:``,(`6esn` :_usn3)<-[`1esn`? *0X0123456789ABCDEF{`5esn`:1.e1 Starts With $`2esn` Starts With $0}]->({_usn4:{usn1} =~123.654 =~\"d_str\"}).`2esn`"), + octest_legacy:ct_string("Create Constraint On(`5esn`:`1esn`)Assert {`4esn`:{999} Is Not Null,@usn6:123.654 Ends With usn2 Ends With 0}.`8esn` Is Unique"), + octest_legacy:ct_string("Remove @usn6:@usn6,Allshortestpaths(((($_usn3)<-[``?:`3esn`|:@usn5{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(:@usn5{#usn7:{#usn7} In Count ( * ) In $#usn8})-[? *01..07]->(`8esn` :#usn7)))).#usn8,All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]).#usn8? Create Allshortestpaths((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]})),((@usn6 :`7esn`)<-[``?:`6esn` *07{`5esn`:{12} Contains `7esn` Contains $_usn3,_usn4:$`3esn` In 9e12 In ``}]-({#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]})-[_usn3:#usn7|`2esn`]-(_usn3 :#usn8)) Create ((@usn6 :@usn6)-[{`7esn`:01234567 In $123456789}]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})-[{`2esn`:1000 Is Null Is Null}]->(`5esn` :`2esn`{#usn8:True[$`7esn`..{1000}]})) Union Unwind @usn6[Count ( * )][True] As usn2 Detach Delete 9e12 =~123456789 =~$999 Union Start #usn7=Node:`1esn`(\"d_str\") Where $_usn3[010..False] Foreach(#usn7 In {@usn6} Contains 123.654 Contains 01| Remove [0.0[..{999}][..0.0],12.e12[2.12..][0xabc..],True[7][$999]].@usn6 Delete Filter(#usn7 In 123.654 Starts With $`` Where Count(*)[010..][#usn7..])[None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $999 Ends With {0})..])"), + octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From {7} Starts With $usn1 Starts With 1.0 As `8esn` "), + octest_legacy:ct_string("Optional Match ((#usn8 :@usn5)<-[_usn3{@usn6:{7} Contains $123456789}]->(:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1})),`2esn`=Allshortestpaths((usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})-[`1esn`:`1esn`|:`3esn` *01..07{`3esn`:123456789 Is Not Null Is Not Null}]-(`1esn` {@usn5:$usn1 In 0.12 In $``})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]-(:usn1:_usn4{`4esn`:01234567 In $123456789})) Where #usn8[$0..False][$`1esn`..$#usn7] Start ``=Relationship:#usn7(_usn3=\"d_str\") ,@usn5=Relationship:`8esn`(usn1={1000}) Union Unwind 0e0 Starts With $@usn6 Starts With $`6esn` As _usn4 Union Create @usn6=Allshortestpaths((({#usn7:123456789[0..]}))),((`` :`6esn`:`8esn`)<-[`4esn`?{usn2:{#usn8}[$#usn7..],@usn5:{@usn5}[..@usn6]}]-(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]})<-[{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]}]-(`` :`4esn`:@usn6{``:.e12 =~$_usn4})) Foreach(#usn7 In $usn1[0X7]| With 's_str'[_usn3..] As `5esn`,{0}[False..@usn5] As `1esn` Order By {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Desc,01234567[{`7esn`}..] Descending,[{7} Contains $123456789,$``[..1.e1][..12],$`5esn`[..{`2esn`}][..{0}]] =~`3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]) =~{`6esn`:{`3esn`} Ends With `1esn` Ends With $@usn6,@usn6:$usn1 In 0.12 In $``} Descending Skip .e0[..{`5esn`}][..999] Limit {`8esn`:`2esn` Starts With `` Starts With 1e1} In [usn1 In 00 In {_usn3}] In Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) Where $`6esn` Starts With 12.e12 Starts With $#usn7 With Distinct $#usn8 Is Null Is Null,Shortestpath((_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]) In Shortestpath(((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}))),{7} Is Null As `7esn` Order By [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null Asc,{@usn5} =~_usn4 =~0.12 Desc Limit #usn7 Contains {`3esn`} Contains $`6esn` Where 12e12 Ends With `6esn` Ends With {`3esn`})"), + octest_legacy:ct_string("Using Periodic Commit 999 Load Csv With Headers From {`2esn`}[@usn5..][{``}..] As usn2 Unwind False Ends With $`` As _usn4"), + octest_legacy:ct_string("With Distinct *,`6esn` Contains {`1esn`} Contains 9e0,$`1esn` Is Not Null Is Not Null Order By $7 Is Not Null Descending,Single(`8esn` In $12[{7}..0X0123456789ABCDEF])[Case 9e1[123456789..] When 12 Starts With 7 Starts With $`5esn` Then {_usn3} Contains True Contains 0X7 When `1esn`[..00][..{7}] Then 1.e1[12e12..{`6esn`}] End..] Descending Limit 0x0 =~123.654 =~{999} Where 9e0 In usn1 Start @usn5=Node:_usn4(``=\"d_str\") ,@usn5=Node:`7esn`(@usn5=\"d_str\") Unwind Count(*)[..``][..#usn8] As #usn7 Union All Remove {`3esn`:#usn8 In `8esn` In 07}._usn4!,Allshortestpaths(((:`8esn`:@usn5)-[`3esn`?:`8esn`|:_usn4 *07]->(@usn5 {#usn7:$`7esn` In 12}))).`4esn`,Any(`1esn` In `3esn`[07..] Where {#usn7} In Count ( * ) In $#usn8).#usn7? Unwind {12}[$`3esn`] As `6esn` With Distinct 1.e1 =~$`1esn` As `8esn`,0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0] Union All Remove ({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[?:@usn6|`` *1000]->(:_usn4{`8esn`:12e12 Starts With `1esn` Starts With usn2})-[`2esn`:`2esn`{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})._usn3! Merge `2esn`=(:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}}) Start `8esn`=Relationship:`4esn`(``='s_str') ,`8esn`=Rel( {`7esn`})"), + octest_legacy:ct_string("Drop Constraint On(#usn7:_usn4)Assert Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where `7esn` Starts With 0X7 Starts With $`7esn`|9e1 Ends With $@usn5 Ends With $123456789).@usn5? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:_usn4)Assert Case When $`` Is Null Then 0.12 Ends With {1000} Ends With `6esn` When True[7][$999] Then 0Xa Contains Count ( * ) End._usn3 Is Unique"), + octest_legacy:ct_string("Create `5esn`=((#usn7 :_usn3{`2esn`})<-[@usn6?:`1esn`|:`3esn` *..0Xa{`1esn`:12 Starts With 0x0}]->(#usn7 :_usn3{`2esn`})<-[?:`1esn`|:`3esn`{#usn8:$0 Is Not Null,``:True Is Null Is Null}]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})),Shortestpath((:`8esn`:@usn5)<-[?:`1esn`|:`3esn`{#usn8:$0 Is Not Null,``:True Is Null Is Null}]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})) Start `8esn`=Rel:`5esn`({0}) ,`8esn`=Node:`7esn`(usn1='s_str')Where {@usn5} =~_usn4 =~0.12"), + octest_legacy:ct_string("Return @usn5[$12..\"d_str\"] As @usn6,usn2 In `2esn` In $`7esn`,.e1[0.12] As @usn6 Order By [1.e1 =~$usn2,1000][[_usn4 In 0.0[..{999}][..0.0] Where 12.e12[{7}..7]]..][All(_usn4 In `2esn` Where $0[`7esn`])..] Descending,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..])[..{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}][..Filter(`2esn` In {999} Is Not Null Where 010 In `1esn`)] Desc Skip {#usn8} =~{999} =~{#usn7}"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:``)Assert Exists([`1esn` In $12 Is Not Null Where 1e1[..$1000][..999]|{@usn6}[True..{_usn3}]]._usn4)"), + octest_legacy:ct_string("Drop Constraint On(usn1:_usn3)Assert Exists((:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[:`3esn`|:@usn5*..]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]}).@usn5?)"), + octest_legacy:ct_string("Optional Match usn1=((`5esn` :_usn4)),((`4esn` :`8esn`:@usn5)-[`6esn`:usn1{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]->(:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]-(@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})) Using Index @usn5:usn2(`2esn`) Create Unique #usn7=Allshortestpaths(((`5esn` :`2esn`{#usn8:True[$`7esn`..{1000}]})<-[usn1?:`6esn` *12..{`6esn`:999 Starts With $123456789 Starts With {``}}]->({_usn4}))),((:#usn7{#usn7:$`8esn` In $`2esn` In {7}})) Union All Unwind {#usn7}[{#usn7}..][$`4esn`..] As `5esn` Merge Shortestpath(({usn2:#usn8 =~{_usn3} =~``})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})-[?:`1esn`|:`3esn` *999]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}))"), + octest_legacy:ct_string("Drop Constraint On(_usn4:usn1)Assert Exists({`5esn`:123456789 Starts With {@usn6} Starts With $12}.@usn6!)"), + octest_legacy:ct_string("Optional Match (((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))) Using Scan #usn7:usn2 Using Join On `1esn`,#usn8 With `4esn`[usn1] As @usn5 Skip 1.e1 Is Null Where $@usn6 Contains $`7esn` Contains 1e1 Union All Start _usn4=Node:`7esn`(@usn5={`4esn`}) ,`7esn`=Node:usn2(usn2='s_str') Delete (`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->({_usn3})[Reduce(usn1=0x0[$`8esn`.._usn3],_usn4 In `2esn`|{123456789} Is Not Null)..Reduce(usn1=12.0[2.12..][{`5esn`}..],_usn3 In {@usn5}[..#usn7]|1000[$7..$123456789])][[_usn4 In `2esn` Where 9e12 Ends With 123456789|07 =~$`8esn` =~9e1]..(:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->()],{0}[False..@usn5],_usn4 Is Null Is Null Remove [0X0123456789ABCDEF[$`5esn`..],#usn7 Ends With $#usn7 Ends With {`8esn`}].`5esn`!,Case `6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}] When 1.e1[..12.e12][..$usn2] Then $_usn3[{999}] When $7 Is Null Then `1esn` =~1000 =~1000 Else 9e12[$`5esn`] End.`3esn`?,exists(Distinct #usn8 =~{999},$`2esn` Ends With 0.12 Ends With .e1).@usn5?"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`1esn`)Assert Exists(({#usn7:#usn8 =~{999}})-[_usn3?:usn1 *12..{#usn7:0e0 Contains `3esn` Contains `7esn`}]-({_usn3}).`6esn`)"), + octest_legacy:ct_string("Unwind 010 Ends With 01 Ends With {_usn3} As #usn7 Detach Delete $@usn5 Is Not Null Is Not Null,{`8esn`}[..$`6esn`][..123.654],Allshortestpaths(((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))) Starts With (`1esn` :_usn3{`5esn`:{`8esn`}[..$`6esn`][..123.654],`1esn`:1000 Starts With `7esn`})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Extract(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) Foreach(usn1 In {`4esn`}[{`4esn`}..999]| Create (`4esn` :`4esn`:@usn6) With Distinct 0Xa Contains #usn8 Contains 1000 Order By {#usn8} Contains 1000 Contains $`4esn` Ascending,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Ascending Skip ({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..`2esn`(Distinct #usn8[`7esn`..])][..[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]]])"), + octest_legacy:ct_string("Optional Match _usn4=Allshortestpaths(((:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})-[?:#usn8|`2esn` *999{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({@usn6:#usn8[$0..False][$`1esn`..$#usn7]})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}))),`6esn`=Allshortestpaths(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})-[:`1esn`|:`3esn` *..01234567{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(#usn7 {``:0x0 =~123.654 =~{999}})) Merge ((:`5esn`:@usn5{usn1:$#usn7[`5esn`]})-[@usn5{#usn7:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,#usn7:.e12[$#usn8..@usn6]}]->(`5esn` :@usn5)<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]-({`7esn`:123.654 Ends With usn2 Ends With 0})) On Create Set #usn8+=``(#usn8 =~{999})[Single(_usn3 In {@usn5}[..#usn7])..][Case $123456789 Is Not Null When .e1[0.12] Then {@usn5}[..{12}][..0x0] When @usn5 Is Not Null Is Not Null Then \"d_str\" Ends With False Ends With {@usn6} End..] On Match Set @usn6($@usn6 Contains `7esn`).@usn5! =$`5esn` Ends With 00 Ends With #usn7,Reduce(usn2=True[7][$999],`` In {`1esn`} Starts With @usn6|{`4esn`}[$_usn4..][9e0..]).`6esn` ={`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`8esn`)Assert Case {#usn8}[usn1][1.0] When .e12 =~.e0 Then 12 Starts With 7 Starts With $`5esn` End.`3esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:`3esn`)Assert Exists(1e1.@usn6)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`8esn`)Assert Exists((`2esn` :@usn6{7})-[?:`1esn`|:`3esn`{@usn5:{`6esn`} Ends With 0e0 Ends With {``},@usn5:{`1esn`} Starts With `4esn` Starts With {0}}]->(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]}).`5esn`)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:usn1)Assert Exists({`6esn`:.e0[..{`5esn`}][..999]}.usn2!)"), + octest_legacy:ct_string("Drop Constraint On()-[`2esn`:``]-()Assert Exists((`` :`4esn`:@usn6{``:.e12 =~$_usn4})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]}).@usn5)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`8esn`)Assert Exists((`2esn` :@usn6{7})-[?:`1esn`|:`3esn`{@usn5:{`6esn`} Ends With 0e0 Ends With {``},@usn5:{`1esn`} Starts With `4esn` Starts With {0}}]->(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]}).`5esn`)"), + octest_legacy:ct_string("Create Constraint On(usn2:`2esn`)Assert Reduce(`8esn`=`2esn` Starts With `` Starts With 1e1,usn1 In 12.e12 In {0} In 9e1|#usn7 Starts With 1000 Starts With .e1)._usn3! Is Unique"), + octest_legacy:ct_string("Drop Index On:_usn4(usn2)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`6esn`)Assert Case When $999 Ends With {0} Then $`2esn` Is Null Is Null End.`3esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`6esn`:_usn4)Assert Exists(Allshortestpaths(((_usn3 :#usn8{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(:`2esn`{`2esn`:123456789[0..]}))).`8esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:`6esn`)Assert Any(`6esn` In Count(*) Ends With $`` Ends With {7} Where 7 Contains `2esn` Contains $`8esn`).@usn5? Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn7:`3esn`)Assert Exists((`7esn` :@usn5{`7esn`:{1000}[{usn1}][Null],`3esn`:7[$0..][{_usn4}..]})<-[_usn4?:`2esn`{`2esn`}]-(`3esn` :`2esn`{`8esn`:Null In .e0})-[`2esn`?:`` *999{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12}]-(usn2 {`7esn`:{usn1}[$`8esn`..0.0]}).`4esn`?)"), + octest_legacy:ct_string("Match @usn6=Shortestpath((:``{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})-[?:`4esn`|:#usn7]->(`1esn` :@usn6)<-[`1esn`?]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})),(((`4esn` :usn2:`2esn`)-[`8esn`?:`4esn`|:#usn7]->({`3esn`:12 Starts With 0x0,`8esn`:0X7[0.e0][{`4esn`}]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]}))) Using Index usn2:`8esn`(`5esn`) Where _usn4[Count(*)]"), + octest_legacy:ct_string("Create Unique Shortestpath((`5esn` )<-[`3esn` *..010]-(:@usn5{`2esn`:True[$123456789][`8esn`]})) Merge usn2=Allshortestpaths((:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[_usn4? *07{1000}]-(`` )<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})) Union Load Csv With Headers From Count ( * )[$12..] As @usn5 Remove All(`1esn` In `3esn`[07..] Where @usn6[{0}..]).``?,(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})<-[`8esn`?:`4esn`|:#usn7]->({`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]})<-[:_usn4|:usn1 *07]-(#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"}).@usn5!,Reduce(#usn7=$`7esn` Is Null Is Null,`1esn` In `3esn`[07..]|1000 Is Not Null)._usn3! Create `4esn`=Shortestpath((((`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})))),Allshortestpaths((@usn6 :`7esn`{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12})-[_usn3?:``]-(@usn5 {_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})) Union Create (((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}))),(((`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})-[_usn3?*..{#usn7:#usn8 =~{999},`8esn`:{_usn3}[`3esn`..$#usn8]}]->({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})-[@usn6 *07{`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}]->({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]}))) Foreach(`3esn` In {123456789} Is Not Null| With Distinct *,.e0 =~{`8esn`} =~$999 As #usn7,{_usn4:$0[$1000..00][{0}..{usn1}]}[{`2esn`:$``['s_str'..][0x0..]}..] As `1esn` Skip $usn1 =~010 =~07 Where {@usn5} Starts With 1.0 Starts With 00 Remove Shortestpath(((usn2 :_usn3{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000}))).@usn6?) Match Allshortestpaths((#usn8 :`7esn`)) Using Join On usn1 Using Join On `6esn`,_usn4"), + octest_legacy:ct_string("Foreach(`1esn` In 7 Is Not Null| Create Allshortestpaths((((@usn6 {usn1:$#usn7 =~{12} =~False})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})))),`8esn`=({`2esn`:{7}[$7..],#usn7:`1esn` In 07})-[:_usn4|:usn1 *07]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})) Union Create `8esn`=((#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null})<-[?:#usn7|`2esn`{@usn5:$0 Is Not Null}]-(`` {``:0x0 =~123.654 =~{999}})),(({`1esn`:{123456789}[12..][$12..]})) Union All Create Unique Shortestpath((`7esn` {@usn6:{_usn4} Is Null})<-[usn2? *0xabc..7{usn1:$123456789 Starts With `5esn`}]->(:`4esn`:@usn6{`1esn`:{12}[00..{@usn6}][1.e1..0],usn1:``[..0X0123456789ABCDEF]})-[`1esn`?:_usn4|:usn1*]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})),((`2esn` :usn1:_usn4)<-[ *0xabc..7]->(:`4esn`:@usn6)) With *,0X7[0.e0][{`4esn`}],usn1 Contains $7 Contains $`` Limit usn2 In `2esn` In $`7esn` Where {#usn7}[Count ( * )..12][$`2esn`..`4esn`] Unwind {`4esn`} In _usn4 As usn2"), + octest_legacy:ct_string("Create Constraint On(#usn7:`4esn`)Assert Exists(Reduce(`2esn`=$#usn7[123.654],`` In {usn1} Ends With {`6esn`} Ends With 123456789|False Contains 0.e0 Contains Count(*)).`3esn`?)"), + octest_legacy:ct_string("Merge (:`8esn`:@usn5)<-[?:`1esn`|:`3esn`{#usn8:$0 Is Not Null,``:True Is Null Is Null}]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0}) On Create Set #usn7+=All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.e12[$`8esn`..{`8esn`}]) Is Null On Match Set [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0[$#usn8...e12]].#usn8 =Allshortestpaths(((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))) Starts With (`1esn` :_usn3{`5esn`:{`8esn`}[..$`6esn`][..123.654],`1esn`:1000 Starts With `7esn`})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Extract(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]),Case When Count ( * ) Starts With 010 Starts With 0x0 Then 9e12[$`5esn`] When {999}[$123456789..][12..] Then {@usn5}[..{12}][..0x0] End.`8esn`? =$`6esn`[{`3esn`}..12],`6esn` =9e0 Contains @usn6 Contains {#usn7} Return Distinct 9e1[$`2esn`..][`1esn`..] Limit Any(`6esn` In Count(*) Ends With $`` Ends With {7} Where 1000 Is Null) Is Not Null Is Not Null Union All Create @usn5=Allshortestpaths(((#usn7 :`2esn`)-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]})-[@usn5?:#usn7|`2esn`{`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}]->({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}))) Remove [`` In {`1esn`} Starts With @usn6 Where 12.e12 In {0} In 9e1].#usn8? Return Distinct Any(`6esn` In 00 Where 0X7 Starts With {999} Starts With 12e12) Starts With (`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}) Starts With {`8esn`:{#usn7} Contains @usn5 Contains Count ( * )} As #usn7,0X0123456789ABCDEF Contains {usn1} As @usn5,{999} Starts With {_usn4} Starts With 00 As _usn4 Skip {_usn4}[{``}..]"), + octest_legacy:ct_string("Create Unique `3esn`=(`3esn` :`8esn`:@usn5{@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]}),usn2=(((:#usn8{`2esn`:12e12 Is Not Null,_usn3:12.e12[2.12..][0xabc..]})-[:_usn4|:usn1{``:0 Contains $usn2 Contains 12e12}]-(`4esn` :`2esn`)<-[`7esn`?:_usn3|`8esn`*..]->(`2esn` :_usn3))) Create usn2=((`3esn` :`1esn`)<-[? *0xabc..7]->(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})) Union Unwind 1e1[..`1esn`][..0e0] As _usn4 Remove (`2esn` :@usn6{7})-[?:`1esn`|:`3esn`{@usn5:{`6esn`} Ends With 0e0 Ends With {``},@usn5:{`1esn`} Starts With `4esn` Starts With {0}}]->(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]}).``!"), + octest_legacy:ct_string("Drop Constraint On()<-[`3esn`:#usn7]-()Assert Exists(({@usn5:Count ( * ) Is Null})-[:#usn8|`2esn`]->(`` :usn2:`2esn`)<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}).`5esn`)"), + octest_legacy:ct_string("Foreach(`6esn` In `8esn` Contains 1e1| Detach Delete usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3),Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])) Load Csv From None(`1esn` In $12 Is Not Null Where Null Is Null Is Null) Contains $`6esn` Contains exists(Distinct {`3esn`} Is Null) As `2esn` Union Foreach(@usn6 In 's_str'[$usn2][Count(*)]| With Distinct {_usn3} Is Not Null As `4esn`,Case 00 Starts With $`6esn` When $@usn5 In 's_str' In $12 Then Count(*)[010..][#usn7..] When Count ( * )[Count ( * )][12] Then True[7][$999] Else `4esn` Contains #usn8 Contains 7 End =~Allshortestpaths(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]}))) As `4esn` Limit Shortestpath((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})-[`7esn`?:`6esn`]->(`1esn` :_usn4)-[#usn8:_usn3|`8esn`{`6esn`:`5esn` Is Null Is Null}]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))[Extract(`1esn` In `3esn`[07..] Where 999 Starts With 's_str')][Case `8esn` Contains $`3esn` Contains {`4esn`} When 9e1 Ends With $@usn5 Ends With $123456789 Then usn2[True] When 0.e0 =~`1esn` =~`6esn` Then usn2 =~0X7 =~{#usn7} Else 1.e1[..12.e12][..$usn2] End] Where {123456789} =~01234567 =~`3esn` Create Unique _usn4=Allshortestpaths(((`` {`1esn`:{@usn5}[1e1..][9e1..],`2esn`:$`7esn` Contains {`1esn`} Contains 9e12})<-[`3esn`? *0x0..{_usn3:0.0[9e1..][Null..],#usn7:{`3esn`} Is Not Null Is Not Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-(`3esn` :`6esn`:`8esn`{`8esn`:{``} Is Null Is Null,`3esn`:123456789 Is Not Null Is Not Null}))),``=Shortestpath((`7esn` :`5esn`:@usn5{`2esn`:12 Starts With $#usn7})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(`4esn` :_usn4{`2esn`:#usn7 =~00}))) Foreach(@usn5 In 7[010][00]| With .e0 =~{`8esn`} =~$999 As #usn7,$12 Is Not Null As `7esn`,{``} Is Null Is Null Limit All(_usn3 In {@usn5}[..#usn7] Where $`2esn` Starts With {`8esn`} Starts With {usn1}) Starts With {usn2:{`1esn`} Is Not Null} Delete Case $1000[..12.0][..0e0] When `3esn` Is Not Null Is Not Null Then 12.e12[{7}..7] When Count(*) In {``} Then 12[..$@usn6] End[..All(#usn7 In 0Xa[@usn5][{`7esn`}] Where 1e1[1.e1..][123.654..])][..[0.0 =~12.e12 =~1.0,$`7esn` Is Null Is Null,``[..$#usn7]]],0xabc Contains {1000}) With 0x0[{999}..][{_usn4}..] As `6esn`,{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}[Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))..] As `6esn`,Case When $`6esn` Starts With 12.e12 Starts With $#usn7 Then #usn8[`7esn`..] When {`4esn`}[$123456789..] Then {_usn3} Contains 9e0 Contains $999 End As @usn6 Order By {@usn5} Ascending,Reduce(@usn5=$`8esn`[..$999][..0],`` In {`1esn`} Starts With @usn6|{@usn6} Contains 123.654 Contains 01) Contains [`1esn` In `3esn`[07..] Where {0} =~12.0] Contains (:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[`3esn`:_usn3|`8esn`]->(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null}) Descending,1000 Is Not Null Desc Skip Allshortestpaths(((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))) Starts With (`1esn` :_usn3{`5esn`:{`8esn`}[..$`6esn`][..123.654],`1esn`:1000 Starts With `7esn`})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Extract(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) Union Foreach(`6esn` In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000|$@usn5 In $usn2 In {1000}) Is Not Null| Create Unique @usn6=((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})<-[``?:#usn8|`2esn`]->(:`8esn`:@usn5)<-[#usn7]-(`3esn` :#usn7)),((#usn8 :usn1:_usn4)<-[usn1:usn1{`3esn`:\"d_str\" Ends With False Ends With {@usn6},`5esn`:`4esn` Contains #usn8 Contains 7}]->(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(`2esn` :#usn8{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})) Delete Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where 1.e1[12e12..{`6esn`}]|Count ( * )[..12][..{@usn6}]) Contains All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Contains Extract(_usn4 In `2esn` Where $999 Is Null),[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]] Is Not Null,Single(_usn3 In True[7][$999]) Is Not Null Is Not Null) Merge ((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})) On Match Set Reduce(#usn8=Count ( * )[..12][..{@usn6}],`` In {`1esn`} Starts With @usn6|@usn6[{0}..]).@usn5 =$#usn7 =~{12} =~False On Match Set [`6esn` In 00 Where $`1esn`[$12][Count ( * )]].`5esn`? =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,_usn4 =Reduce(@usn5=True[7][$999],usn1 In 12.e12 In {0} In 9e1|.e12 =~$_usn4)[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])][[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]]]"), + octest_legacy:ct_string("Create Constraint On()-[`7esn`:`6esn`]->()Assert Exists(All(`1esn` In 0.e0 =~`1esn` =~`6esn` Where $usn1 In 0.12 In $``).`1esn`)"), + octest_legacy:ct_string("Return Distinct $`2esn`[{usn2}],$`5esn`[$#usn7..][0xabc..] Order By [0.12[..$`6esn`][..$1000],0.12 Starts With 9e12 Starts With $`1esn`,\"d_str\" Contains @usn6 Contains 12.e12] Is Null Ascending,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..])[..{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}][..Filter(`2esn` In {999} Is Not Null Where 010 In `1esn`)] Desc,{999} Ends With 123456789 Ends With {@usn5} Descending Limit $usn1 Contains {`8esn`} Contains $123456789 Union Create Unique `8esn`=((@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]}))"), + octest_legacy:ct_string("Create Constraint On(``:@usn6)Assert [$usn1[0X7],010 In `1esn`]._usn3? Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn7:#usn7)Assert Extract(`` In {`1esn`} Starts With @usn6 Where {_usn3}[$usn2..])._usn4? Is Unique"), + octest_legacy:ct_string("Foreach(`8esn` In Extract(#usn7 In 123.654 Starts With $`` Where #usn8[`7esn`..]|0.0[..{999}][..0.0])[..Extract(`1esn` In `3esn`[07..] Where 00[07..]|$#usn7 Starts With 9e0 Starts With 2.12)][..None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])]| Unwind `5esn`[..9e0][..01234567] As @usn5 Remove Filter(`6esn` In 00 Where 0.12[..$`6esn`][..$1000]).#usn8!,[999 Ends With .e12 Ends With .e1,{_usn3}[..$`8esn`]].@usn6?) Return usn1[0] As ``,9e12 Is Not Null Is Not Null Order By {`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] Desc Limit 9e0 In usn1"), + octest_legacy:ct_string("Create Constraint On(usn1:`3esn`)Assert Reduce(#usn7=9e1[123456789..],`5esn` In $`2esn`[12.e12][$@usn5]|{`7esn`} Is Not Null Is Not Null).`2esn`! Is Unique"), + octest_legacy:ct_string("Unwind {12}[999][{_usn3}] As `3esn` Foreach(`1esn` In `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]]| With Distinct *,0X0123456789ABCDEF Contains {usn1} As @usn5 Order By (:usn1:_usn4)<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[usn2?:`2esn`*..]-(:`5esn`:@usn5{``:0.12[..$`6esn`][..$1000]}) Starts With Reduce(`8esn`=00[..$123456789][..$`5esn`],`` In {`1esn`} Starts With @usn6|False[999]) Starts With [`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]] Descending,`2esn`(Null In .e0)[_usn3(Distinct {@usn6}[$`7esn`..][False..])..[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]]] Asc,(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[#usn7?:@usn6|``{123456789}]->(usn1 :`8esn`:@usn5)<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})[..[12.e12 In {0} In 9e1,9e1 =~`` =~{`7esn`},0X0123456789ABCDEF[0X7..]]][..All(`1esn` In `3esn`[07..] Where `7esn`[0..$usn2][{usn2}..0.e0])] Asc Skip #usn7[00] Limit Shortestpath(((usn1 {``:.e12 =~$_usn4})))[`6esn`(_usn3 Contains .e0 Contains {usn2},`3esn`[07..])][[.e12 Ends With 1000 Ends With 010,Count(*)]]) Union All Foreach(`1esn` In Allshortestpaths(((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}))) Starts With All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`)| Load Csv With Headers From 12[12e12] As _usn4 Fieldterminator \"d_str\") Start usn1=Node:`6esn`({`8esn`}) Where $_usn4 Ends With 0.e0 Ends With .e0 Union All With \"d_str\"[..0.e0] As #usn7,[12e12 Starts With `1esn` Starts With usn2,Count ( * ) Is Null][(#usn8 {``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})][Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))] As `1esn` Where $999 Ends With {0}"), + octest_legacy:ct_string("Create Unique usn1=((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})),Allshortestpaths(((`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->(`4esn` {`2esn`:@usn5[$12..\"d_str\"]}))) Unwind [#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 Starts With {_usn3}|@usn6[$12]] Ends With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null] Ends With Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) As `8esn`"), + octest_legacy:ct_string("Load Csv With Headers From {#usn7}[{#usn7}..][$`4esn`..] As `6esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Drop Constraint On(@usn6:_usn3)Assert Exists(`8esn`(Distinct $123456789[..$7][..$`6esn`],0e0 Contains `3esn` Contains `7esn`).`1esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:usn1)Assert Exists(Allshortestpaths((((@usn5 )<-[?:`1esn`|:`3esn`*]->(_usn4 :#usn8{`2esn`})<-[@usn6 *07{`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}]->(_usn3 :_usn4{`7esn`:00 Starts With $`6esn`,`6esn`:{12}[999][{_usn3}]})))).`6esn`?)"), + octest_legacy:ct_string("Drop Constraint On(usn1:@usn5)Assert Exists(Extract(_usn4 In 0.0[..{999}][..0.0] Where #usn8 Is Null|07 Is Null).@usn6?)"), + octest_legacy:ct_string("With Distinct 1e1[{_usn4}..123.654] Order By Case When 0X0123456789ABCDEF[7...e0][`1esn`..usn2] Then $1000 Starts With $`8esn` Starts With {`5esn`} When usn2 =~0X7 =~{#usn7} Then {`2esn`} In $123456789 In True End[Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`)] Ascending,Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..] Asc,usn1 Is Null Is Null Descending Start usn2=Node:usn1(`5esn`={_usn4}) ,_usn3=Relationship:``(_usn3={0})Where 1.0[{999}][$999]"), + octest_legacy:ct_string("Start _usn3=Relationship:``(`1esn`={`2esn`}) Where 0[{usn2}..][usn1..] Return *,Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6) Starts With [$_usn3[010..False],$123456789 =~`4esn`,$usn1[$123456789..0][{`1esn`}..12.0]] As `8esn`,12 Starts With 0x0 As `2esn` Order By All(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[{#usn7:Count ( * )[$12..]}..][`5esn`(Distinct False Starts With 010)..] Asc,All(usn1 In 12.e12 In {0} In 9e1)[[`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]|12.e12[$`8esn`..{`8esn`}]]..] Asc Limit 0Xa[07..] Detach Delete [`8esn` In $12[{7}..0X0123456789ABCDEF] Where {`2esn`}[Count(*)]|0e0 Contains 9e12][None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12[..$@usn6])][All(@usn5 In Null =~12e12 Where 0X0123456789ABCDEF[$`5esn`..])],12.e12 In $0 In $0 Union All Load Csv From usn2 =~0X7 =~{#usn7} As `` Foreach(usn1 In {usn2}[$`4esn`]| Start `3esn`=Relationship:#usn8(_usn3={#usn7}) Where {999} Is Null Create (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` ))) Union All Match Allshortestpaths((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]})),#usn8=Shortestpath((#usn7 :usn1:_usn4{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})) Using Index @usn5:usn2(`6esn`) Where $`8esn` In $`2esn` In {7} Merge Shortestpath((((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`})))) On Create Set `6esn`+=$7 In #usn8 On Match Set `2esn`+=$999 =~0 =~{7},@usn5+=0X7[0.e0][{`4esn`}],Extract(`` In {`1esn`} Starts With @usn6 Where {`2esn`}[..{@usn6}][..1.e1]|True =~{`1esn`})._usn4! =All(usn1 In 12.e12 In {0} In 9e1)[[`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]|12.e12[$`8esn`..{`8esn`}]]..]"), + octest_legacy:ct_string("Merge (((#usn8 )-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))) On Create Set _usn3 =Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF)[Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6)..Shortestpath(((_usn3 {@usn5:.e12 =~.e0})-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})-[`5esn`?:@usn5|:`7esn`]-(:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01})))][Shortestpath(((`6esn` :`7esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})))..Reduce(usn2=Null In .e0,_usn3 In {`2esn`} Ends With {12} Ends With 7|{0}[..{`7esn`}])] On Create Set _usn4+={`1esn`:{123456789}[12..][$12..]} =~{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF} =~[`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`|_usn3[\"d_str\"]],`6esn`+=[usn1 In 12.e12 In {0} In 9e1 Where {usn1} In Count ( * )][{_usn3:.e1 Ends With 0Xa Ends With .e1,`2esn`:12e12 Starts With `1esn` Starts With usn2}..] Return *,`7esn` Is Not Null Is Not Null As @usn5,`1esn`[Null..] As `2esn` Order By Extract(_usn4 In `2esn` Where $999 Is Null) In Case `8esn` Contains $`3esn` Contains {`4esn`} When 9e1 Ends With $@usn5 Ends With $123456789 Then usn2[True] When 0.e0 =~`1esn` =~`6esn` Then usn2 =~0X7 =~{#usn7} Else 1.e1[..12.e12][..$usn2] End In Any(`6esn` In 00 Where `5esn`[..9e0][..01234567]) Asc Limit `6esn`[{`6esn`}..] Foreach(#usn8 In {123456789}[12..][$12..]| Remove Case When $`3esn` In 9e12 In `` Then 9e0[#usn8] When {999} Starts With {12} Then 7 Is Null Is Null End._usn4!,{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}.#usn8 Remove {@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]}.`2esn`!) Union All With Distinct 1.e1 =~9e12 =~`4esn` As `7esn`,0 Contains $usn2 Contains 12e12 Order By {@usn6} Is Not Null Asc Where $123456789 Starts With .e12 Detach Delete Single(_usn3 In True[7][$999]) Is Not Null Is Not Null,{`1esn`:{123456789}[12..][$12..]} =~{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF} =~[`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`|_usn3[\"d_str\"]] Union All Unwind @usn5[12.0][{1000}] As `8esn`"), + octest_legacy:ct_string("Return $7 Ends With $`8esn` As `4esn` Order By {#usn8}[usn2][{0}] Ascending,00 Contains #usn8 Desc Skip 1e1 Is Not Null Is Not Null Start #usn8=Relationship:usn1({7}) ,`2esn`=Node(123456789,01234567,01234567)Where $12 Is Not Null Foreach(`` In True Is Not Null Is Not Null| Create Unique ((`4esn` :`8esn`:@usn5)-[`6esn`:usn1{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]->(:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]-(@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})) With Distinct Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))) =~Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) As _usn4,7[..$`1esn`][..00],{12} Starts With #usn8 Starts With 0e0 Order By $0 Starts With `2esn` Desc,0.12 In 0X7 Descending,12.e12 In $0 In $0 Desc Limit `6esn` In Null Where False Contains 0.e0 Contains Count(*)) Union All Start `1esn`=Rel:`6esn`(`3esn`={12}) Where $`5esn`[$#usn7..][0xabc..] Create Unique usn2=(`2esn` {@usn6:True Is Null Is Null})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)-[_usn3?:@usn6|`` *0x0..{`3esn`}]->(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}}),(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]})"), + octest_legacy:ct_string("Create ((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` )),#usn7=((`4esn` :`1esn`)-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})) Create Unique `3esn`=(((`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[usn1?:`4esn`|:#usn7 *0X7..0Xa]->({_usn4:01234567[..9e1]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}))) Create (#usn7 :#usn8)-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0}),`3esn`=Shortestpath(((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[:#usn7|`2esn`]-(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}}))) Union All Merge `5esn`=({_usn4:0.e0[{999}][{`1esn`}]})-[`2esn`:`3esn`|:@usn5 *..010{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->({`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})"), + octest_legacy:ct_string("Using Periodic Commit 01234567 Load Csv From 0.0 Is Not Null As `5esn` Foreach(_usn4 In 12e12 Ends With `4esn` Ends With 123456789| Create `2esn`=(`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4),`5esn`=(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}) Return *,Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000)[[_usn4 In `2esn` Where `3esn` Is Not Null Is Not Null]..All(`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999])][(_usn4 {_usn3:9e1 =~999})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})..{`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}] As _usn3,Reduce(_usn4=.e1 Starts With $_usn4 Starts With {`1esn`},`6esn` In 00|usn2[True])[..[9e12[..0X7]]][..$`1esn`] Skip 0e0[..$@usn5][..$`8esn`] Limit Reduce(`3esn`={_usn3} Is Not Null,usn1 In 12.e12 In {0} In 9e1|0[Count(*)][0e0])[`6esn`(``[..0X0123456789ABCDEF])..Single(`` In {`1esn`} Starts With @usn6 Where {_usn3}[$usn2..])]) Return *,$1000[..{`7esn`}][..#usn7] Order By 7[010][00] Descending Skip {`5esn`} Starts With 12.0"), + octest_legacy:ct_string("Create Constraint On(#usn8:`5esn`)Assert Case {@usn5}[..#usn7] When $@usn6 Starts With {`1esn`} Starts With 12 Then {usn1} Ends With {`6esn`} Ends With 123456789 End.`4esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`7esn`)Assert Exists([{``}[_usn4..$`1esn`],9e0[#usn8]].`7esn`!)"), + octest_legacy:ct_string("Unwind {usn2}[`6esn`..01234567] As _usn3 Optional Match `6esn`=(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}),(((usn2 :_usn3)<-[#usn7{#usn8:{`1esn`} Is Not Null}]->(`8esn` {`3esn`:'s_str'[..0X7]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6)))"), + octest_legacy:ct_string("Optional Match @usn6=Shortestpath(((_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]}))) Using Join On @usn5,usn2,_usn3 Foreach(usn1 In {`3esn`} Starts With $`8esn` Starts With 1e1| Start `7esn`=Node:`2esn`(#usn7={usn1}) Where $#usn7 Ends With 0.12 Ends With {@usn6})"), + octest_legacy:ct_string("Using Periodic Commit 0X0123456789ABCDEF Load Csv With Headers From ``[{123456789}..] As `3esn` "), + octest_legacy:ct_string("Create Constraint On()<-[_usn3:`6esn`]-()Assert Exists(Case 9e1[$_usn4..0xabc] When $1000[..$999] Then $`7esn` In 12 Else @usn5 =~'s_str' End.#usn7)"), + octest_legacy:ct_string("Create Constraint On(usn1:`1esn`)Assert Exists(Reduce(usn2={12} Contains 9e0,`` In {usn1} Ends With {`6esn`} Ends With 123456789|1e1[..$1000][..999])._usn4!)"), + octest_legacy:ct_string("Create `5esn`=Shortestpath(((:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}}))),`2esn`=(`` :`7esn`) Start `4esn`=Relationship:`1esn`({@usn5}) Create (`4esn` :#usn7)<-[@usn6?:usn2|#usn7]->(`1esn` )-[`6esn`?*..{`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}]->({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6}),_usn4=Allshortestpaths((_usn3 {`4esn`:`8esn` Contains 1e1,#usn7:{`2esn`}[..{@usn6}][..1.e1]})-[#usn7?:usn1 *01..07{`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}]->({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]})) Union With Distinct .e1 Contains $`3esn` As #usn7 Order By Extract(_usn3 In True[7][$999] Where $`3esn`[{``}..]) Is Not Null Is Not Null Desc,`6esn`[{`6esn`}..] Descending,123456789 Starts With {@usn6} Starts With $12 Asc Where Count ( * )[$12..]"), + octest_legacy:ct_string("Create Unique usn2=Allshortestpaths((:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[_usn4? *07{1000}]-(`` )<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})),`7esn`=Shortestpath((@usn5 {#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(`2esn` :#usn8{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})) Union Merge #usn8=Allshortestpaths(({`3esn`:0.e0[{999}][{`1esn`}],`1esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[:usn2|#usn7 *0X7..0Xa]->(#usn7 :@usn5)) On Create Set `6esn`+=$7 In #usn8 Union Merge ((`8esn` :`2esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[@usn6?]-({`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})) On Match Set `3esn`(\"d_str\"[..0.e0]).`8esn` =[1e1[{_usn4}..123.654]] In Reduce(`5esn`=9e1 Ends With Count(*) Ends With False,`1esn` In $12 Is Not Null|123.654[{`7esn`}][{7}]) In [usn2[True],{`3esn`}[{`5esn`}]] On Match Set `1esn`+=`2esn` Starts With `` Starts With 1e1,Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End.`3esn` =$0 Ends With False Ends With $_usn4 Match Allshortestpaths((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]})),#usn8=Shortestpath((#usn7 :usn1:_usn4{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})) Using Index @usn5:usn2(`6esn`) Where $`8esn` In $`2esn` In {7} Create Unique `6esn`=((`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[`5esn`:`5esn`]-(:usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07}))"), + octest_legacy:ct_string("With Distinct *,$123456789[..$7][..$`6esn`],Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF) Ends With Case {`2esn`}[..{@usn6}][..1.e1] When Null Is Null Is Null Then #usn7 Contains {`3esn`} Contains $`6esn` When 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Then $usn1[..'s_str'][..$#usn8] End Ends With Filter(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789}) Skip Count(*)[..``][..#usn8] Limit 9e12[{123456789}..][$`2esn`..] Where 0X0123456789ABCDEF[$999..][@usn5..] Union All Merge `3esn`=Allshortestpaths((:@usn6{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]})) On Match Set `2esn`+=0X0123456789ABCDEF[{@usn5}..1.e1][$_usn3..{7}],`2esn` =True[7][$999],_usn3+=$usn2 Starts With $`5esn` On Match Set Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where Count(*) In 0e0 In 9e1).usn1? =[`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7}|usn2[`7esn`..{`3esn`}][$7..{#usn7}]][..[`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]|9e12[..0X7]]][..[`2esn` Ends With $`4esn` Ends With {#usn7},'s_str'[..0X7],{#usn8} =~{999} =~{#usn7}]] Optional Match #usn7=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Where #usn7 Starts With 1000 Starts With .e1 Union All Start _usn4=Node:#usn8(#usn7='s_str') ,@usn5=Node:_usn4(``=\"d_str\")"), + octest_legacy:ct_string("Detach Delete 123456789 Is Not Null Is Not Null,{@usn6} Starts With @usn5 Starts With @usn6,.e1[..\"d_str\"] Return $7 Ends With $`8esn` As `4esn` Skip {`4esn`:#usn7 =~00,@usn5:usn2[True]} =~`6esn`(Distinct #usn7 =~{`4esn`} =~123456789,1e1[1.e1..][123.654..]) =~Allshortestpaths(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))) Detach Delete {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}[Any(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3}[..$`8esn`])] Union All Match #usn8=(((#usn7 :@usn6{`8esn`:{@usn6}[True..{_usn3}],`1esn`:07 Is Null})-[ *..0{`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null}]->(:usn1:_usn4{`4esn`:01234567 In $123456789})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5))) Using Index usn2:@usn6(`2esn`) Using Index @usn6:#usn8(`8esn`) Where 12e12 Create Unique @usn5=(`6esn` :`8esn`:@usn5),usn1=((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)) Foreach(_usn4 In $`8esn` Starts With 0xabc Starts With {usn2}| Optional Match usn1=((`5esn` :_usn4)),((`4esn` :`8esn`:@usn5)-[`6esn`:usn1{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]->(:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]-(@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})) Using Index @usn5:usn2(`2esn`) Return *,{7}[$123456789..{1000}][$`3esn`..`7esn`] Limit $123456789[..$7][..$`6esn`])"), + octest_legacy:ct_string("With $12 Is Not Null As `6esn`,(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Is Not Null Is Not Null As `2esn`,$`4esn` In Null Order By 2.12[`8esn`][1e1] Descending Skip $1000 Is Null Is Null Optional Match `8esn`=Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Using Scan `4esn`:_usn4"), + octest_legacy:ct_string("Drop Constraint On(_usn4:`2esn`)Assert {`4esn`:1.e1[{#usn8}]}.usn2! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`7esn`)Assert Exists({`1esn`:``[{123456789}..]}._usn3)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`5esn`)Assert (#usn8 {``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000}).`7esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`4esn`:_usn4]-()Assert Exists((@usn6 {usn1:$#usn7 =~{12} =~False})-[`1esn`?:_usn4|:usn1*]-({`3esn`:{0} Is Null,#usn7:{0} Is Null}).`7esn`!)"), + octest_legacy:ct_string("With Distinct {`5esn`} Starts With 12.0,Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End[None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])][count(Distinct $`5esn`[$#usn7..][0xabc..])] As `2esn`,0.e0 Contains .e0 Contains $@usn6 Skip Reduce(#usn8=0X7 Starts With {999} Starts With 12e12,_usn4 In `2esn`|usn2[True]) Starts With [01234567[..9e1]] Starts With Reduce(@usn5=.e1 Ends With {7} Ends With $usn1,`` In {usn1} Ends With {`6esn`} Ends With 123456789|{`2esn`} In 0Xa In {_usn3}) Limit 0.e0 Ends With False Where Null[{_usn4}..] Load Csv With Headers From Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})] As @usn5 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Create Constraint On(`2esn`:@usn5)Assert Allshortestpaths((usn1 :usn2:`2esn`{`1esn`:{123456789}[12..][$12..]})).`3esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`2esn`:_usn4]->()Assert Exists(Case When 1.e1[..12.e12][..$usn2] Then 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF When 0xabc[$@usn5] Then $@usn6 Starts With $@usn5 End.`4esn`!)"), + octest_legacy:ct_string("Delete `` =~`6esn` =~usn1 Load Csv With Headers From usn2(0.0 Is Not Null Is Not Null,{123456789} Is Not Null)[None(`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12])..[_usn4 In `2esn` Where False Ends With $``|9e0[#usn8]]][(`3esn` :`3esn`:`6esn`)-[]->(`7esn` :#usn8)..[0X0123456789ABCDEF Contains $`1esn` Contains 1000,0e0[$#usn8...e12],.e12 Is Null Is Null]] As _usn3 Return True Is Null Is Null As `3esn` Order By $`8esn`[0xabc][Null] Desc,`2esn`[usn2..][$7..] Descending Limit .e1[..$`4esn`][..$`6esn`] Union Load Csv From None(`1esn` In $12 Is Not Null Where Null Is Null Is Null) Contains $`6esn` Contains exists(Distinct {`3esn`} Is Null) As `2esn` Detach Delete 0.12 Ends With {1000} Ends With `6esn`,$@usn5[usn2..][$0..] Union Create usn1=Allshortestpaths(((:`6esn`:`8esn`{`5esn`:{@usn5} Is Null,`8esn`:True[..010]}))) Unwind #usn7 Starts With $999 As #usn7"), + octest_legacy:ct_string("Merge Allshortestpaths(((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0}))) On Create Set `5esn`+={usn1}[$`8esn`..0.0],`2esn`+={`1esn`:{123456789}[12..][$12..]} =~{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF} =~[`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`|_usn3[\"d_str\"]] On Create Set `7esn` =[`2esn`,{`2esn`} Starts With @usn6,9e1 =~999] In Any(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3} Contains 9e0 Contains $999),Reduce(#usn7=_usn3 Contains .e0 Contains {usn2},_usn4 In `2esn`|{@usn6} In {#usn7} In 12.e12).@usn6 =Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3]..`1esn`(Distinct $@usn5[`6esn`..],9e12[..0X7])][Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}))..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]})],Extract(`1esn` In $12 Is Not Null Where 12.e12[{@usn5}..][9e1..]|`1esn`[Null..]).`4esn`? =0Xa Is Not Null Is Not Null Union All Load Csv With Headers From Shortestpath((((:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00}))))[`4esn`(999[12.0..][#usn7..],False[999])..00] As `3esn` Foreach(@usn5 In {1000}[{#usn8}]| Create Unique `7esn`=((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})),Shortestpath((usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`)) Unwind Case {1000}[{#usn8}] When `7esn` Contains `5esn` Contains 0X7 Then True[..010] When {#usn8} =~{999} =~{#usn7} Then `1esn`[..\"d_str\"][..$`5esn`] Else `6esn`[..{999}] End In Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where `3esn`[..{_usn4}][..{@usn5}]) As `8esn`) Delete {#usn7:`5esn`[..9e0][..01234567]} In Case 1e1[1.e1..][123.654..] When 7[1000.._usn3][9e0..\"d_str\"] Then 12.e12[``..usn2][{#usn7}..@usn5] When 1.e1[0xabc..] Then 1.e1 Starts With $`2esn` Starts With $0 End In Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null),$`5esn`[`1esn`..$123456789]"), + octest_legacy:ct_string("Match (#usn7 :#usn8)-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0}),@usn6=Allshortestpaths(((`3esn` {`1esn`:$`6esn` Starts With 12.e12 Starts With $#usn7})-[`6esn`:`8esn`|:_usn4]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}))) Using Index `6esn`:usn2(@usn5)"), + octest_legacy:ct_string("Create Constraint On(`4esn`:`4esn`)Assert Shortestpath((((usn2 :``)-[@usn5?:#usn7|`2esn`{`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}]->(`2esn` :@usn6{7})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`)))).@usn6! Is Unique"), + octest_legacy:ct_string("Load Csv From [False Contains 0.e0 Contains Count(*)][Any(@usn5 In Null =~12e12 Where 0[`4esn`][12.e12])..[$_usn4 Is Not Null Is Not Null,`7esn` Is Not Null Is Not Null]] As `3esn` Fieldterminator \"d_str\" Union Create `3esn`=Shortestpath((({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))),((`2esn` :@usn5{`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})<-[?:`6esn` *07]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[{#usn7:'s_str'[_usn4..0x0]}]-({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]})) Create Allshortestpaths(((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7))) Union Unwind Shortestpath(({``:False Contains $#usn8 Contains 9e1})<-[`6esn`?:_usn3|`8esn`]->(`2esn` :#usn8{@usn6:`7esn` Ends With $_usn3 Ends With usn2,_usn4:{12} Starts With #usn8 Starts With 0e0})) Starts With Reduce(_usn4=Count(*) In {``},`` In {usn1} Ends With {`6esn`} Ends With 123456789|9e12 =~123456789 =~$999) Starts With None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where `3esn`[..{_usn4}][..{@usn5}]) As usn2 Detach Delete $_usn3[{#usn8}..`7esn`][0..$0],usn1(Distinct {@usn5}[Count(*)..])[[@usn5 In Null =~12e12 Where {`5esn`} Contains 's_str' Contains 9e1|`2esn`]..][{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}..]"), + octest_legacy:ct_string("Unwind .e1 Starts With {`1esn`} Starts With $_usn3 As _usn4 Foreach(`` In False[1000][{`7esn`}]| With *,0x0[$`8esn`.._usn3],True[$123456789][`8esn`] As @usn5 Skip \"d_str\" Contains @usn6 Contains 12.e12 Limit 9e1 =~`` =~{`7esn`} Delete 12e12 Ends With $999 Ends With 1e1,$`3esn`,1000) Union All Create Shortestpath(((`2esn` {_usn4:`4esn`[usn1]})<-[`2esn`?{`3esn`:$7 In 1.0 In 1e1,@usn5:{@usn6} Contains 123.654 Contains 01}]->(@usn6 {usn1:$#usn7 =~{12} =~False})<-[`2esn`?:@usn6|``]->(`1esn` {_usn4:{1000} Ends With {`8esn`}}))),`5esn`=(`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})-[:`3esn`|:@usn5{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}]-($`5esn`)-[? *07{#usn7:`5esn`[..9e0][..01234567]}]-({#usn8:0Xa Contains Count ( * ),`8esn`:Null Is Null Is Null}) Unwind `2esn`(Null In .e0)[_usn3(Distinct {@usn6}[$`7esn`..][False..])..[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]]] As _usn3 Remove (`5esn` {@usn5:07 =~$`8esn` =~9e1,#usn7:{`1esn`} Starts With `4esn` Starts With {0}})<-[`2esn`?*]->({#usn7:1e1[1.e1..][123.654..],`3esn`:True Starts With $`4esn` Starts With 12e12}).`1esn` Union Create Unique Allshortestpaths((`` :``)-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}))"), + octest_legacy:ct_string("Match usn1=(((:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})<-[:``]-(_usn3 :`7esn`)<-[ *0xabc..7]->({#usn7:123456789[0..]}))),(usn2 :`5esn`:@usn5)-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})"), + octest_legacy:ct_string("Load Csv From 12e12 Is Not Null Is Not Null As usn1 Merge `4esn`=Shortestpath((`3esn` {@usn6:12 Starts With {_usn4} Starts With $#usn8})) On Match Set `5esn`+=Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..],[`6esn` In Count(*) Ends With $`` Ends With {7} Where @usn5 =~'s_str'|{_usn3} Contains 9e0 Contains $999].usn2 =9e12 Is Null Union Unwind False Starts With 010 As #usn8 Return Distinct *,Single(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7])[..{@usn5:_usn4[Count(*)],`6esn`:$`3esn` Contains 0 Contains 07}][..Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`])],0e0[$#usn8...e12] Order By {#usn7}[{`4esn`}..][0X7..] Desc,Filter(`1esn` In $12 Is Not Null Where Count(*)[..``][..#usn8]) Ends With Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}]) Ends With {`2esn`:usn1 Is Null Is Null,usn2:0.e0 =~`1esn` =~`6esn`} Desc Skip Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000|$@usn5 In $usn2 In {1000}) Is Not Null Union All Remove Reduce(@usn6=_usn4 Is Null,`1esn` In $12 Is Not Null|`5esn`[..9e0][..01234567]).#usn7?,Case {`1esn`} In 12.e12 In 9e1 When {usn2}[$`4esn`] Then $1000 Starts With $`8esn` Starts With {`5esn`} Else {1000}[{#usn8}] End.`1esn`!,Reduce(`5esn`=12 Starts With {_usn4} Starts With $#usn8,`1esn` In 0.e0 =~`1esn` =~`6esn`|@usn5[$12..\"d_str\"]).`5esn`! Create Unique ``=(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})<-[:#usn7|`2esn` *1000]->(`5esn` :_usn4)-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`) With {_usn3}[`3esn`..$#usn8] As `1esn`,12 Starts With 7 Starts With $`5esn`,$#usn7 Contains True Contains _usn4 As `4esn` Skip $@usn6[..123.654]"), + octest_legacy:ct_string("Create Constraint On(`8esn`:@usn6)Assert (:#usn8{`2esn`:{7}[$7..],#usn7:`1esn` In 07})-[?:`8esn`|:_usn4 *12..]->(@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]}).`6esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:``)Assert {#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]}._usn3 Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`8esn`)Assert Extract(#usn7 In 0Xa[@usn5][{`7esn`}] Where $0 In _usn4|@usn5 Is Not Null Is Not Null).`6esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`5esn`:@usn5)Assert None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where Count ( * )[Count ( * )][12]).`7esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`3esn`:usn1]-()Assert Exists(#usn7(``[$0..][`1esn`..],{7} Starts With $usn1 Starts With 1.0).usn1?)"), + octest_legacy:ct_string("Merge _usn3=(`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})<-[usn2 *07{usn1:07 =~@usn5}]->(_usn4 {`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}) Detach Delete {1000}[01234567..$_usn4][{@usn6}..$_usn3],{usn2} =~`7esn` =~07,count(Distinct 999[12.0..][#usn7..]) =~Allshortestpaths(((usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}))) =~@usn6(`8esn` Starts With {123456789},$`` Starts With 12 Starts With $usn2) Unwind {`7esn`}[0X7..][0x0..] As `3esn` Union All Create (((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),`7esn`=(({`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})) Remove {@usn6:12 Starts With {_usn4} Starts With $#usn8,`2esn`:{@usn6}[$`7esn`..][False..]}.`1esn` Merge `2esn`=((_usn3 :`5esn`:@usn5)<-[`7esn`? *0xabc..7]->(:`6esn`:`8esn`{`3esn`:$`6esn`[{`3esn`}..12],_usn3:0[{@usn5}..][7..]})) On Create Set _usn4 =Filter(`1esn` In $12 Is Not Null Where {@usn5}[1e1..][9e1..]) In [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 12 Starts With {_usn4} Starts With $#usn8] In Filter(`2esn` In {999} Is Not Null Where $7 Ends With 0X7),#usn8 =0Xa[@usn5][{`7esn`}]"), + octest_legacy:ct_string("Delete Any(@usn5 In Null =~12e12 Where 0[`4esn`][12.e12]) Is Null,Count ( * )[9e1..{@usn5}],{`3esn`} Is Not Null Is Not Null Merge Allshortestpaths((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}))) On Match Set Allshortestpaths((:`3esn`:`6esn`{999})).`6esn`! =00[07..],usn2 =usn1 Is Null Is Null,#usn8+=0e0 On Match Set `4esn` =$0[..{usn2}][..$usn1],`5esn`+=Count(*) In 0e0 In 9e1,`8esn` =$123456789[{@usn6}][{999}] Merge (((#usn7 :#usn8{_usn3:`1esn`[..00][..{7}]})<-[`2esn`?{`3esn`:$7 In 1.0 In 1e1,@usn5:{@usn6} Contains 123.654 Contains 01}]->(:`1esn`{_usn4:{`6esn`} Ends With 0e0 Ends With {``}})-[`8esn`?{@usn5:Null Is Null Is Null}]->({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null}))) On Match Set Allshortestpaths((((:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})<-[`2esn`?{``:123.654 Starts With $``,``:{``} Ends With .e12 Ends With 0.e0}]-(:_usn3{0})<-[`3esn`?{`3esn`:1e1 Contains usn2}]->(:`3esn`:`6esn`)))).@usn6! =`5esn` Contains {`7esn`} Contains $7 Union All Foreach(#usn7 In Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999)[..Reduce(``={`8esn`}[True..][.e1..],#usn7 In 123.654 Starts With $``|{usn1}[$`8esn`..0.0])][..Any(`1esn` In $12 Is Not Null Where $12 Is Not Null Is Not Null)]| With *,1.e1[`4esn`..][$`6esn`..] As @usn5,Count ( * ) =~{`5esn`} =~{_usn4} As _usn3 Where _usn3[\"d_str\"]) Union All Load Csv From `7esn` Contains {@usn5} Contains $123456789 As `6esn` Return #usn7 Starts With $999 Skip {@usn6}[0Xa..$@usn6][0..`5esn`] Limit {`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1}[Reduce(`6esn`=$12 Contains 0Xa,`6esn` In 00|$`4esn`[..'s_str'][..`8esn`])][Shortestpath(((:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})-[:usn2|#usn7 *0X7..0Xa]->(#usn7 :@usn5)-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})))]"), + octest_legacy:ct_string("Load Csv With Headers From None(_usn3 In {@usn5}[..#usn7] Where `2esn` Starts With `` Starts With 1e1) Contains Reduce(`1esn`={999} Ends With 123456789 Ends With {@usn5},_usn4 In 0.0[..{999}][..0.0]|$1000 =~{1000} =~`5esn`) Contains `6esn`(Distinct {1000}[{#usn8}],$#usn7[123.654]) As @usn5 Fieldterminator 's_str' Load Csv From 123456789 Starts With {999} As usn2 Union All Merge ``=(`` :``)-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(`2esn` :_usn3) Merge (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}) On Match Set `8esn` =[`` In {`1esn`} Starts With @usn6 Where 0Xa[$1000..$123456789]] Starts With (`7esn` )-[:_usn4|:usn1 *0X7..0Xa{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]}]-({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null}) Starts With Allshortestpaths((`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})),[$0[`7esn`],0.12 Contains 12.0,True Is Null Is Null].`3esn`? =`2esn` Ends With $`4esn` Ends With {#usn7}"), + octest_legacy:ct_string("Drop Constraint On(usn2:``)Assert Exists((`6esn` :`8esn`:@usn5)-[@usn5?:`6esn` *12..]->(`4esn` :`7esn`)-[?:usn2|#usn7]-(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})._usn4!)"), + octest_legacy:ct_string("With *,{@usn6} Contains 123.654 Contains 01 As `4esn` Skip @usn5[12.0][{1000}] Where @usn6[$usn2..#usn7] Create Unique @usn5=(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})<-[?:`6esn` *01..07]->(:usn2:`2esn`{`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})-[? *1000]->(`5esn` {usn2:$#usn7 Starts With 9e0 Starts With 2.12}) Start #usn8=Rel:usn2(`7esn`={7}) Union Foreach(`` In {999} Ends With {`5esn`} Ends With {0}| Start @usn5=Relationship:usn2({`5esn`}) ,@usn5=Node:@usn5(\"d_str\") Unwind 1.e1 Ends With 0 Ends With $usn1 As `1esn`) Remove {``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}}.`7esn`,(:usn2:`2esn`)<-[:@usn5|:`7esn`{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]}).`7esn`!,{`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}}.`3esn`? Match Allshortestpaths((:``{``:0x0 =~123.654 =~{999}})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})),_usn4=(usn2 {_usn3:$0 In _usn4})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[{`2esn`:1000 Is Null Is Null}]->(:_usn4{`4esn`:`8esn` Contains $`3esn` Contains {`4esn`},_usn3:$12[{7}..0X0123456789ABCDEF]})"), + octest_legacy:ct_string("Create Constraint On(`5esn`:`3esn`)Assert All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`).@usn5? Is Unique"), + octest_legacy:ct_string("Using Periodic Commit 0xabc Load Csv With Headers From Count ( * )[$12..] As @usn5 "), + octest_legacy:ct_string("Using Periodic Commit 0x0 Load Csv With Headers From 12.e12[`7esn`] As `1esn` Load Csv With Headers From $`7esn` Is Null Is Null As usn1 Fieldterminator 's_str' Optional Match (((`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]})-[]->(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )})<-[@usn6?]->(`8esn` :``))),`4esn`=(:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})-[`8esn`?:`4esn`|:#usn7{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`7esn` {`4esn`:#usn8 =~{999},`2esn`:9e1 =~`` =~{`7esn`}})"), + octest_legacy:ct_string("Unwind Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {7} Contains $123456789) Is Not Null As `5esn` Union Foreach(@usn6 In Case $123456789[..$7][..$`6esn`] When 0.e0 Contains #usn7 Then {`6esn`} Contains 07 When {_usn4} In {1000} Then ``[..$#usn7] End[Shortestpath((usn1 :usn1:_usn4))..][Reduce(@usn6={`4esn`} Starts With $7 Starts With $``,`` In {usn1} Ends With {`6esn`} Ends With 123456789|$`6esn` Starts With 12.e12 Starts With $#usn7)..]| Optional Match `5esn`=((`8esn` :@usn6)),`8esn`=Shortestpath(({`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})) Using Scan @usn6:@usn6) Create `2esn`=(`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4) Unwind usn2[999..] As `1esn`"), + octest_legacy:ct_string("Create Allshortestpaths((_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})<-[*{`8esn`:0Xa[.._usn3][..$`6esn`]}]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})) Union All With *,$`1esn`[`6esn`..][00..],$1000 =~{1000} =~`5esn` As @usn6 Order By {#usn8}[usn1][1.0] Asc,`7esn`[{usn1}][999] Descending Skip Null In .e0 Where {999} Is Null Foreach(#usn7 In 0Xa Contains #usn8 Contains 1000| Create Unique #usn7=(_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}) Match ``=(({`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[ *0xabc..7]->(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]})) Using Index `1esn`:`4esn`(`1esn`)) Start _usn3=Relationship:``(_usn3={0}) Union All Load Csv With Headers From {@usn5}[{`5esn`}][$12] As usn1 "), + octest_legacy:ct_string("Using Periodic Commit 0xabc Load Csv From {`3esn`}[{123456789}..][{usn1}..] As `6esn` Start @usn6=Rel:`2esn`(`5esn`='s_str') ,usn1=Rel(*)Where {#usn7} Contains @usn5 Contains Count ( * )"), + octest_legacy:ct_string("Match Shortestpath(({`3esn`:0.e0[{999}][{`1esn`}],`1esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[:usn2|#usn7 *0X7..0Xa]->(#usn7 :@usn5)),_usn4=Allshortestpaths((@usn6 :`6esn`:`8esn`)<-[_usn4?:`7esn`{``:{_usn3} Contains $`1esn` Contains 12.0}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})) Create @usn6=((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1)) Merge @usn6=((usn1 :`5esn`:@usn5)-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:usn2:`2esn`{usn1:$7 Is Null Is Null})-[? *01..07]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]})) Union Merge (:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}}) Create Shortestpath(({``:.e1 Contains $`3esn`})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})),Allshortestpaths((:usn1:_usn4{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[`8esn`? *999]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})) Load Csv From Filter(`1esn` In $12 Is Not Null Where {@usn5}[1e1..][9e1..]) Starts With [{@usn6} Contains 123.654 Contains 01,$`2esn` Starts With {`8esn`} Starts With {usn1}] Starts With All(`1esn` In $12 Is Not Null Where 12.e12[{@usn5}..][9e1..]) As `5esn` "), + octest_legacy:ct_string("Drop Constraint On(``:_usn3)Assert [#usn7 In 0Xa[@usn5][{`7esn`}] Where #usn7 Starts With $999|$@usn5[$`4esn`][$@usn6]].`4esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:`6esn`)Assert Reduce(@usn6=7 Contains `2esn` Contains $`8esn`,`2esn` In {999} Is Not Null|{12} Contains `7esn` Contains $_usn3).`` Is Unique"), + octest_legacy:ct_string("Remove (`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]}).`1esn`?,[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000].usn1?,{`4esn`:0.12 In 0X7}._usn4! Start `4esn`=Node:`1esn`(#usn7=\"d_str\") Where $_usn3 Is Null Is Null Start _usn3=Relationship:`1esn`(\"d_str\") ,`8esn`=Node:`4esn`(\"d_str\") Union With Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF) Ends With Case {`2esn`}[..{@usn6}][..1.e1] When Null Is Null Is Null Then #usn7 Contains {`3esn`} Contains $`6esn` When 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Then $usn1[..'s_str'][..$#usn8] End Ends With Filter(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789}),@usn6 Contains Null As `2esn`,00 =~0.e0 =~$`8esn` Order By `5esn`(0X0123456789ABCDEF[9e12])[[`8esn` In $12[{7}..0X0123456789ABCDEF] Where $``['s_str'..][0x0..]]..None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`8esn`}[0X7][$`3esn`])][Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000})..Case 7 Is Null Is Null When usn1 Contains $7 Contains $`` Then 12e12 Is Not Null End] Ascending,#usn7[9e0] Asc,{`5esn`} Starts With 12.0 Desc Limit {@usn5}[Count(*)..] Create Unique Allshortestpaths((@usn6 :usn1:_usn4)),(:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}) Union All Optional Match #usn8=((`7esn` :@usn6)<-[#usn8? *0X7..0Xa$`2esn`]-(:`5esn`:@usn5{usn2:{#usn8}[12.0][$@usn6]})-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(`2esn` :_usn3)),usn2=(((:`2esn`{`4esn`:`3esn` Is Not Null Is Not Null})-[?:#usn7|`2esn` *0x0..]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5))) Using Index @usn6:#usn8(`8esn`) Merge (`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]}) Start _usn3=Node( {usn2}) ,@usn5=Node:`6esn`(#usn8={`5esn`})"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`7esn`)Assert Exists(Case When $7 Is Null Then {`1esn`} =~{_usn4} End.`6esn`!)"), + octest_legacy:ct_string("Drop Constraint On(usn1:_usn4)Assert Exists(({_usn4:{usn1} =~123.654 =~\"d_str\"})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}})._usn4)"), + octest_legacy:ct_string("Detach Delete Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`])[(`3esn` :#usn7{`6esn`:{_usn4} Is Null,usn2:{`2esn`} Starts With @usn6})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`8esn`:@usn5)<-[@usn6?:`7esn`]->(:`2esn`{#usn7:#usn8 =~{999}})..Shortestpath((`8esn` {_usn4:{usn1} In Count ( * )})<-[`6esn`?]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})<-[@usn6?:`7esn`]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1}))][Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0[$#usn8...e12])..[`1esn` In $12 Is Not Null Where {usn1} In Count ( * )|$`3esn`[{``}..]]],\"d_str\" Contains @usn6 Contains 12.e12 With 9e12[{123456789}..][$`2esn`..] As `2esn` Order By {#usn7}[{`4esn`}..][0X7..] Desc Where 1.e1 =~`2esn` Union All Remove None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000).`2esn`? With Distinct {#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null As `8esn`,Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4])[Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End] As `7esn`,{_usn4} In {1000} As `1esn` Order By $@usn5[`1esn`..] Desc Limit #usn8['s_str'..][123.654..] Where 's_str' Starts With 12e12 Starts With $_usn4"), + octest_legacy:ct_string("Create Constraint On(@usn5:_usn4)Assert Exists(None(`5esn` In $`2esn`[12.e12][$@usn5] Where $``[.e12..]).#usn7)"), + octest_legacy:ct_string("Create Constraint On()-[_usn4:usn2]->()Assert Exists(Extract(`3esn` In 123.654[1e1..][{#usn8}..]|Null[{_usn4}..]).#usn7!)"), + octest_legacy:ct_string("Return *,$_usn4[$`4esn`..$12],{`5esn`} Starts With 12.0 Order By @usn5 =~`` Asc"), + octest_legacy:ct_string("Drop Constraint On(#usn8:@usn5)Assert Reduce(`7esn`=7 Contains `2esn` Contains $`8esn`,_usn4 In `2esn`|12.e12[..1e1]).`8esn` Is Unique"), + octest_legacy:ct_string("Merge `8esn`=Shortestpath((:`2esn`{`4esn`:`3esn` Is Not Null Is Not Null})<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(usn1 {`4esn`:1.0[{999}][$999],``:9e1[9e1...e0]})) On Create Set `2esn`+=$#usn7[`2esn`][010] On Create Set `1esn`:`` Union Load Csv From #usn8 =~`7esn` As `` Foreach(`2esn` In None(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) Ends With Case When 0x0[{999}..][{_usn4}..] Then Count(*)[.e12] When {_usn4}[...e12][..0xabc] Then Count(*) Ends With $`` Ends With {7} Else ``[{#usn8}] End Ends With Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where 's_str' Starts With 12e12 Starts With $_usn4|True Starts With $`4esn` Starts With 12e12)| Create Unique Shortestpath(({`8esn`:0[$`6esn`...e1][`1esn`..$`7esn`]})-[#usn8:#usn7|`2esn`]->(:@usn6{`2esn`:$999 In 999})),`8esn`=((`5esn` )) Load Csv From #usn8 =~`7esn` As `` ) Foreach(`1esn` In All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Contains `4esn`(999 Starts With 's_str') Contains (`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})| Create (#usn8 :`7esn`),`3esn`=Shortestpath((:_usn4)-[`6esn`?{#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}]-({`3esn`:9e1 =~999})-[`3esn`? *01..07]->({`7esn`:@usn5[..$@usn5][..0Xa]})) Detach Delete Reduce(@usn5={`1esn`} In 12.e12 In 9e1,`5esn` In $`2esn`[12.e12][$@usn5]|$`6esn` Ends With {0} Ends With {`7esn`}) Is Null,``[..0X0123456789ABCDEF],{`1esn`}[$`4esn`..][False..])"), + octest_legacy:ct_string("Create Unique ((usn2 :_usn3)<-[?:_usn4|:usn1 *..00{`1esn`:{#usn8}[2.12]}]->(:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn8:#usn7|`2esn`]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})),`5esn`=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]}) Union All Match @usn5=(`4esn` :#usn7)<-[@usn6?:usn2|#usn7]->(`1esn` )-[`6esn`?*..{`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}]->({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6}),(usn2 {usn1:{`4esn`}[..07][..$`6esn`],`5esn`:'s_str'[..0X7]})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]->({_usn4})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`) Using Index @usn6:#usn8(_usn4) Using Scan ``:usn2 Where .e12[$#usn8..@usn6] Create `7esn`=Allshortestpaths(((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1))),@usn6=((`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]})<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)<-[`1esn`?:`4esn`|:#usn7 *..01234567]-(#usn8 {#usn7:$1000 Is Not Null Is Not Null}))"), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:#usn7]-()Assert Exists(Any(`6esn` In 00 Where usn1 Is Null Is Null).`2esn`)"), + octest_legacy:ct_string("With Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..]) Starts With [`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]|Count ( * )[..12][..{@usn6}]] Starts With Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where True Starts With $`2esn` Starts With {@usn6}),'s_str' Starts With 12e12 Starts With $_usn4 As `4esn` Return *,0.e0 Contains #usn7 Order By {@usn5}[Count(*)..] Asc,9e0[Count ( * )] Descending Skip Case When #usn8 In `8esn` In 07 Then 00[Count(*)...e0][$#usn7..0X0123456789ABCDEF] Else 12.e12[{7}..7] End In Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]})) In Reduce(`3esn`=00 Ends With `8esn`,usn1 In 12.e12 In {0} In 9e1|True Starts With $`4esn` Starts With 12e12) Limit $12 Is Not Null Is Not Null Union Return *,1.e1 =~$`1esn` As `8esn` Order By {usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}[Reduce(`1esn`={usn1} In Count ( * ),`` In {usn1} Ends With {`6esn`} Ends With 123456789|0[{usn2}..][usn1..])][[`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12]|{``} Starts With 123456789 Starts With usn2]] Ascending,Reduce(usn1=1e1 Contains usn2,`8esn` In $12[{7}..0X0123456789ABCDEF]|#usn7 =~{`4esn`} =~123456789) Contains `3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]) Asc,[False Starts With 010] Contains Extract(_usn3 In True[7][$999] Where 0e0[$#usn8...e12]|12 Is Not Null Is Not Null) Contains [`1esn` In $12 Is Not Null] Asc Load Csv From (#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As `` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Drop Constraint On(``:`3esn`)Assert All(#usn7 In 123.654 Starts With $`` Where {_usn4}[...e12][..0xabc]).`4esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`1esn`)Assert Reduce(`3esn`=123456789[0..],_usn3 In True[7][$999]|`2esn` Ends With $`4esn` Ends With {#usn7}).`8esn` Is Unique"), + octest_legacy:ct_string("Start ``=Rel:_usn4({`2esn`}) ,`6esn`=Rel:`2esn`({_usn3})Where @usn5[$12..\"d_str\"] Union Unwind {@usn6} In {#usn7} In 12.e12 As `8esn`"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`4esn`)Assert Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*)).usn1? Is Unique"), + octest_legacy:ct_string("Load Csv From Extract(_usn3 In {@usn5}[..#usn7])[Case $1000[..12.0][..0e0] When `3esn` Is Not Null Is Not Null Then 12.e12[{7}..7] When Count(*) In {``} Then 12[..$@usn6] End..] As #usn7 Fieldterminator \"d_str\" Load Csv With Headers From $`2esn`[{`6esn`}][0.0] As `2esn` Fieldterminator \"d_str\" Optional Match Allshortestpaths((:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[:`5esn`]-({`7esn`:@usn5[..$@usn5][..0Xa]})<-[#usn8:_usn3|`8esn`{usn1:{#usn8}[usn1][1.0],@usn6:1.e1 =~$usn2}]->(#usn7 :usn1:_usn4{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})),`8esn`=Allshortestpaths((`` :``)-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})) Union All Remove Reduce(_usn3=12 Starts With 0x0,_usn4 In 0.0[..{999}][..0.0]|$usn1[..'s_str'][..$#usn8]).`6esn`! With Distinct 12 Is Not Null Is Not Null As `2esn`,Case When $`6esn` Starts With 12.e12 Starts With $#usn7 Then #usn8[`7esn`..] When {`4esn`}[$123456789..] Then {_usn3} Contains 9e0 Contains $999 End As @usn6 Order By {`2esn`} In 0Xa In {_usn3} Ascending,All(usn1 In 12.e12 In {0} In 9e1)[[`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]|12.e12[$`8esn`..{`8esn`}]]..] Ascending,{usn2}[$`4esn`] Descending Skip 1.e1 Starts With $`2esn` Starts With $0 Limit All(_usn3 In {@usn5}[..#usn7] Where $`2esn` Starts With {`8esn`} Starts With {usn1}) Starts With {usn2:{`1esn`} Is Not Null} Union All Detach Delete {#usn8}[#usn7..{`2esn`}],$usn1 Is Not Null Is Not Null,12e12 Remove usn2(Distinct 1e1[..01],$123456789 Is Not Null)._usn3?"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`7esn`)Assert Exists(Extract(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`}|@usn6[{0}..]).usn1?)"), + octest_legacy:ct_string("Create Unique (:``) Start ``=Node:_usn3('s_str') With Distinct 0e0[..1000] As #usn7,#usn8 Is Not Null As usn2 Order By 0.0[9e1..][Null..] Ascending,123.654[{@usn5}..123.654][1.0..$12] Descending,All(`5esn` In $`2esn`[12.e12][$@usn5] Where 12[..$@usn6]) =~(_usn4 :`7esn`)<-[{`2esn`:1000 Is Null Is Null}]->({`6esn`:7[010][00],#usn8:$usn1 =~010 =~07}) Desc Skip `8esn` Is Null Is Null Limit 12.0[#usn7]"), + octest_legacy:ct_string("Create Unique _usn4=((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null})<-[usn2 *..01234567{`1esn`:@usn5 =~'s_str',`8esn`:{999} Starts With {_usn4} Starts With 00}]->(usn1 {`5esn`})<-[:`8esn`|:_usn4 *1000]->(`5esn` $`8esn`))),(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})<-[?:`6esn` *07]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}) Start #usn8=Node:`2esn`(#usn7={usn1}) ,``=Node:`5esn`(#usn7=\"d_str\")Where {``}[_usn4..$`1esn`] Foreach(_usn4 In 12e12 Ends With `4esn` Ends With 123456789| Create `2esn`=(`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4),`5esn`=(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}) Return *,Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000)[[_usn4 In `2esn` Where `3esn` Is Not Null Is Not Null]..All(`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999])][(_usn4 {_usn3:9e1 =~999})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})..{`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}] As _usn3,Reduce(_usn4=.e1 Starts With $_usn4 Starts With {`1esn`},`6esn` In 00|usn2[True])[..[9e12[..0X7]]][..$`1esn`] Skip 0e0[..$@usn5][..$`8esn`] Limit Reduce(`3esn`={_usn3} Is Not Null,usn1 In 12.e12 In {0} In 9e1|0[Count(*)][0e0])[`6esn`(``[..0X0123456789ABCDEF])..Single(`` In {`1esn`} Starts With @usn6 Where {_usn3}[$usn2..])]) Union All Start `5esn`=Relationship:@usn6(_usn4={_usn4}) Delete usn1 Is Not Null Is Not Null"), + octest_legacy:ct_string("Create Constraint On()<-[`3esn`:`1esn`]-()Assert Exists(Case When $`5esn`[..{`2esn`}][..{0}] Then {@usn6} Is Not Null End.@usn5!)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:#usn7)Assert Exists(Reduce(`2esn`=01234567 In $123456789,`1esn` In $12 Is Not Null|#usn7 =~{`4esn`} =~123456789).`4esn`!)"), + octest_legacy:ct_string("Optional Match _usn3=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`))) Using Scan #usn7:_usn3 Unwind `5esn` In 12e12 In `8esn` As `8esn` Merge `5esn`=Shortestpath((_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null})<-[@usn5?:`8esn`|:_usn4 *0X0123456789ABCDEF{usn1:False Contains $#usn8 Contains 9e1}]->({@usn6:$usn1[0X7],`3esn`:$7[$`3esn`]}))"), + octest_legacy:ct_string("Create Constraint On()-[_usn3:``]->()Assert Exists(Reduce(usn2=True[7][$999],`` In {`1esn`} Starts With @usn6|{`4esn`}[$_usn4..][9e0..]).`6esn`)"), + octest_legacy:ct_string("Create Unique @usn5=({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1}) Union All Remove None(`1esn` In $12 Is Not Null Where 0Xa Contains Count ( * )).`3esn`,{`2esn`:Null In .e0,usn1:01234567[..9e1]}.`2esn`,Filter(`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0.12 In 0X7).`1esn` Match usn1=Shortestpath((:_usn3{@usn5:.e1[..\"d_str\"],#usn8:{`1esn`}[`6esn`..12e12]})<-[`7esn`?*..]-(usn1 :`1esn`{#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]})),`4esn`=Shortestpath((({@usn5:``[{123456789}..]})-[`3esn`:`6esn`{`3esn`}]-({`1esn`:$123456789[..$7][..$`6esn`]})<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`))) Using Scan `2esn`:`2esn` Using Join On `8esn`,_usn4 Where True =~_usn3 =~123456789"), + octest_legacy:ct_string("Drop Constraint On(``:usn2)Assert [$@usn6 Contains `7esn`].usn2 Is Unique"), + octest_legacy:ct_string("Remove @usn6(Distinct {@usn5}[..#usn7],0X0123456789ABCDEF[$999..][@usn5..]).`8esn`?,[usn1 Is Null Is Null].`4esn` Start ``=Relationship( {``}) ,`7esn`=Relationship(07,123456789,123456789)Where 12.e12[{@usn5}..][9e1..] Union With $999[07..{#usn7}][1e1..0xabc] As #usn8,{1000}[{#usn8}] As `2esn` Skip `3esn` Contains $`6esn` Contains `8esn` Where 0.e0 =~`1esn` =~`6esn` Remove (:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}).``? Union All Foreach(#usn7 In Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12) Contains {`1esn`:$999 Ends With {0}} Contains (`5esn` :_usn3{`4esn`:12.e12[``..usn2][{#usn7}..@usn5]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(`4esn` :`2esn`{`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})| Delete 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF,$7 Is Not Null,0X0123456789ABCDEF[$`5esn`..]) Detach Delete $`2esn`,_usn4 Is Null Is Null,12.e12[{7}..7]"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`4esn`)Assert Exists((#usn7 :@usn6{`8esn`:{@usn6}[True..{_usn3}],`1esn`:07 Is Null})<-[:`7esn` *..01234567{`3esn`:.e12[$7..][{`6esn`}..]}]->(`` :`4esn`:@usn6{_usn4:False[0Xa..$usn1]}).`1esn`?)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:_usn3)Assert {``:0.12[..$`6esn`][..$1000]}.@usn6! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn1:`2esn`)Assert {#usn8:{999} Ends With 123456789 Ends With {@usn5},`8esn`:$`8esn`[..$999][..0]}.`1esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[_usn3:`6esn`]->()Assert Exists([_usn4 In `2esn` Where 12e12 Is Not Null|1000 Is Null Is Null].`2esn`?)"), + octest_legacy:ct_string("Create Unique `7esn`=((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})),({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->({`7esn`:123456789[0..]}) Unwind Count(*)[.e12..] As @usn6 Merge ((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})) On Match Set Reduce(#usn8=Count ( * )[..12][..{@usn6}],`` In {`1esn`} Starts With @usn6|@usn6[{0}..]).@usn5 =$#usn7 =~{12} =~False On Match Set [`6esn` In 00 Where $`1esn`[$12][Count ( * )]].`5esn`? =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,_usn4 =Reduce(@usn5=True[7][$999],usn1 In 12.e12 In {0} In 9e1|.e12 =~$_usn4)[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])][[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]]] Union All Delete 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF,$7 Is Not Null,0X0123456789ABCDEF[$`5esn`..] Unwind [0X0123456789ABCDEF[$999..][@usn5..]] Contains Reduce(#usn7={12}[999][{_usn3}],`2esn` In {999} Is Not Null|$usn1 =~010 =~07) Contains None(`1esn` In `3esn`[07..]) As @usn5 Return Distinct #usn7 Starts With $999 As `6esn`,{7}[$123456789..{1000}][$`3esn`..`7esn`] Skip $123456789 Contains [True Starts With $`2esn` Starts With {@usn6}] Contains {@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]} Limit None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] Union All Load Csv With Headers From #usn8['s_str'..][123.654..] As `4esn` Fieldterminator \"d_str\" With Distinct usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3) As usn1,$999 Contains {7},\"d_str\"[..0.e0] As #usn8 Order By $0 Ends With False Ends With $_usn4 Descending,Case Count(*) Ends With 123.654 Ends With $12 When $@usn6[$0..usn1][0X0123456789ABCDEF..$999] Then {`6esn`}[..{`2esn`}] End In Reduce(`4esn`={@usn6} In {#usn7} In 12.e12,usn1 In 12.e12 In {0} In 9e1|\"d_str\"[..0.e0]) In [_usn4 In `2esn` Where 9e12 Ends With 123456789|$999 Is Null] Desc,Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}])[[#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}]..{`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}][Case When 2.12 =~0x0 =~_usn4 Then .e1[@usn5]['s_str'] When $@usn5 In $usn2 In {1000} Then {0}[False..@usn5] Else {@usn6}[True..{_usn3}] End..`1esn`()] Descending Limit {`2esn`} Ends With {#usn7}"), + octest_legacy:ct_string("Create Constraint On(`3esn`:@usn5)Assert Exists(Shortestpath((usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`))._usn3?)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:`1esn`)Assert `3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]).``? Is Unique"), + octest_legacy:ct_string("Remove (`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[{_usn4:{1000} Ends With {`8esn`}}]-(@usn5 :`7esn`{_usn3:{``}[_usn4..$`1esn`]})<-[`2esn`?*]->({#usn7:1e1[1.e1..][123.654..],`3esn`:True Starts With $`4esn` Starts With 12e12})._usn4? Create Unique `7esn`=((`1esn` :#usn7))"), + octest_legacy:ct_string("Using Periodic Commit 0 Load Csv With Headers From (#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..] As usn1 With `7esn` Contains `5esn` Contains 0X7 As `1esn`,#usn7(01 =~$`1esn`) =~{@usn6:12.e12[$`8esn`..{`8esn`}],#usn8:#usn7 =~00} As `5esn`,{@usn6}[$`7esn`..][False..] Order By $@usn6 =~#usn8 Descending,{1000} Ends With {`8esn`} Ascending Skip 1000[$7..$123456789] Limit 9e12[..0X7] With Distinct Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..],`` =~`6esn` =~usn1 As `2esn` Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,1.e1 =~$`1esn` Ascending,12.e12[..1e1] Asc Limit 0X0123456789ABCDEF[0X7..] Where $123456789[..$7][..$`6esn`]"), + octest_legacy:ct_string("Start _usn4=Node:usn2(usn2='s_str') ,#usn7=Node:`5esn`(\"d_str\")Where .e1 Starts With $_usn4 Starts With {`1esn`} Union All Delete None(_usn4 In `2esn` Where 9e12 Ends With 123456789) Contains All(`2esn` In {999} Is Not Null Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF),{`2esn`:`8esn`[..`4esn`][..$usn1],@usn6:{123456789}[12..][$12..]} In [$0 Is Not Null,#usn7 Starts With $999,$`6esn`[`8esn`][0.0]] In [$999 Is Null,{``}[010]] Create _usn4=Shortestpath((`6esn` :`2esn`{`7esn`:#usn8 =~{999}})),`7esn`=(({@usn6:$`` Starts With 12 Starts With $usn2}))"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:`6esn`)Assert Exists(All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {@usn5} =~_usn4 =~0.12).#usn7?)"), + octest_legacy:ct_string("Create Constraint On()<-[`7esn`:`4esn`]-()Assert Exists(Allshortestpaths((`4esn` {_usn4:12 Starts With {_usn4} Starts With $#usn8,_usn4:$@usn5[$`4esn`][$@usn6]})<-[? *0X7..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})).usn1)"), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:`5esn`]->()Assert Exists(Reduce(`4esn`=9e1 =~`` =~{`7esn`},`6esn` In 00|0X0123456789ABCDEF[$`2esn`..][`2esn`..]).`6esn`!)"), + octest_legacy:ct_string("Drop Constraint On(usn2:_usn3)Assert All(`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7}).`6esn`! Is Unique"), + octest_legacy:ct_string("Load Csv With Headers From (usn1 :`6esn`:`8esn`)<-[_usn4?:`6esn` *0xabc..7$_usn3]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}) Contains {`7esn`:{@usn5}[..#usn7],@usn6:{_usn3}[`3esn`..$#usn8]} As `8esn` Union All Remove @usn6(Distinct {@usn5}[..#usn7],0X0123456789ABCDEF[$999..][@usn5..]).`8esn`?,[usn1 Is Null Is Null].`4esn` Start ``=Relationship( {``}) ,`7esn`=Relationship(07,123456789,123456789)Where 12.e12[{@usn5}..][9e1..]"), + octest_legacy:ct_string("Create Constraint On()<-[`7esn`:`7esn`]-()Assert Exists([_usn4 In `2esn` Where 0Xa Contains {`7esn`} Contains $999].`1esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:usn1)Assert Exists([$12 Is Not Null,True[True..]]._usn4)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`3esn`)Assert All(`6esn` In 00 Where usn1 Is Null Is Null).`7esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn2:`1esn`)Assert Exists(Reduce(@usn5=$@usn6 =~#usn8,`5esn` In $`2esn`[12.e12][$@usn5]|{`1esn`} In 12.e12 In 9e1).`4esn`?)"), + octest_legacy:ct_string("Create usn1=(({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]})) Union Return Distinct *,12.0[{`5esn`}..][$@usn5..],[`6esn` In 00 Where 0.12 In 0X7|{999} Is Null][Allshortestpaths((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]}))][Case {999}[$123456789..][12..] When $@usn6 =~#usn8 Then $999 Contains {7} When False Starts With 010 Then `8esn` Starts With {123456789} Else True Is Not Null Is Not Null End] As `6esn` Order By 1e1[..01] Desc Union All Detach Delete \"d_str\" Starts With $`8esn` Starts With {usn1} With Distinct *,1.e1[`4esn`..][$`6esn`..] As @usn5,Count ( * ) =~{`5esn`} =~{_usn4} As _usn3 Create `1esn`=Shortestpath((usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]}))"), + octest_legacy:ct_string("With $1000[\"d_str\"..$999][$`3esn`..{`3esn`}] Order By (:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) Desc,{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}[Reduce(`1esn`={usn1} In Count ( * ),`` In {usn1} Ends With {`6esn`} Ends With 123456789|0[{usn2}..][usn1..])][[`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12]|{``} Starts With 123456789 Starts With usn2]] Ascending Where 0x0 Ends With {``} Union Create Unique usn1=Allshortestpaths((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})) Merge (`3esn` :`1esn`)-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]}) On Match Set `7esn` =$999[{_usn4}] On Match Set `5esn`+=$`3esn` Contains 0 Contains 07,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $#usn7[..@usn6][..$0]).`1esn`? =$1000[0.12..0.12]"), + octest_legacy:ct_string("Create Constraint On()-[#usn8:``]-()Assert Exists(Extract(#usn7 In 0Xa[@usn5][{`7esn`}] Where 1e1[1.e1..][123.654..]|{999} Starts With {_usn4} Starts With 00).`5esn`!)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:``)Assert Exists(Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0.12[..$`6esn`][..$1000]).``?)"), + octest_legacy:ct_string("Detach Delete [12e12 Starts With `1esn` Starts With usn2,Count ( * ) Is Null][(#usn8 {``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})][Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))],[#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]][Shortestpath(((`1esn` :`7esn`)<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})))..],Shortestpath(((usn1 {``:.e12 =~$_usn4})))[`6esn`(_usn3 Contains .e0 Contains {usn2},`3esn`[07..])][[.e12 Ends With 1000 Ends With 010,Count(*)]] Optional Match `4esn`=(`6esn` {``:`4esn`[usn1]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]-(#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]}) Using Join On `7esn` Match _usn4=Shortestpath((`6esn` :`2esn`{`7esn`:#usn8 =~{999}})),(((usn2 :``)-[@usn5?:#usn7|`2esn`{`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}]->(`2esn` :@usn6{7})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`))) Using Index ``:`1esn`(_usn4) Using Index _usn3:_usn3(`6esn`) Where 123.654[1e1..][{#usn8}..]"), + octest_legacy:ct_string("Create Constraint On(#usn7:`2esn`)Assert Exists(@usn6(12e12 Starts With `1esn` Starts With usn2,00[..$123456789][..$`5esn`])._usn3?)"), + octest_legacy:ct_string("Merge ``=((_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[ *0xabc..7]->(:`4esn`:@usn6)-[?{`7esn`:{``} Ends With .e12 Ends With 0.e0}]-(`4esn` {`2esn`:12 Starts With 7 Starts With $`5esn`})) On Create Set [`6esn` In 00 Where $`1esn`[$12][Count ( * )]].`5esn`? =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,_usn4 =Reduce(@usn5=True[7][$999],usn1 In 12.e12 In {0} In 9e1|.e12 =~$_usn4)[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])][[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]]] Foreach(@usn6 In {1000}[{usn1}][Null]| Load Csv With Headers From $`8esn`[..0x0][..``] As usn2 Delete Case 0Xa Contains Count ( * ) When 12e12 Starts With `1esn` Starts With usn2 Then 010 In `1esn` When 123456789 Ends With usn1 Ends With usn2 Then `1esn`[..\"d_str\"][..$`5esn`] End[..{`2esn`:Count(*)[.e12]}]) Foreach(usn2 In {`4esn`}[{`4esn`}..999]| Detach Delete 9e1[9e1...e0])"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`3esn`)Assert Exists(Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null).`8esn`!)"), + octest_legacy:ct_string("Return *,0X0123456789ABCDEF[9e12] As @usn5,Count(*)[.e12..] Skip (usn1 :@usn5)<-[_usn4?:usn2|#usn7{_usn4:{`1esn`} In 12.e12 In 9e1}]-(:usn2:`2esn`)[Extract(`1esn` In $12 Is Not Null Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`|12.0 =~$#usn7 =~9e12)] Limit (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})-[:`2esn` *1000{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(_usn3 :#usn8)-[:``]->({`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}}) Ends With 01234567 Detach Delete Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`])[(`3esn` :#usn7{`6esn`:{_usn4} Is Null,usn2:{`2esn`} Starts With @usn6})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`8esn`:@usn5)<-[@usn6?:`7esn`]->(:`2esn`{#usn7:#usn8 =~{999}})..Shortestpath((`8esn` {_usn4:{usn1} In Count ( * )})<-[`6esn`?]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})<-[@usn6?:`7esn`]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1}))][Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0[$#usn8...e12])..[`1esn` In $12 Is Not Null Where {usn1} In Count ( * )|$`3esn`[{``}..]]],{usn2}[`6esn`..01234567],All(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7]) Contains Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End Contains Reduce(`6esn`={_usn4} In {1000},usn1 In 12.e12 In {0} In 9e1|{`4esn`} Starts With $7 Starts With $``) Start `8esn`=Node:`4esn`(\"d_str\") ,#usn8=Relationship:`4esn`(``='s_str')"), + octest_legacy:ct_string("Load Csv With Headers From usn1 In 00 In {_usn3} As usn2 Fieldterminator 's_str' With Distinct {`8esn`}[..$`6esn`][..123.654],{@usn6} In {#usn7} In 12.e12 As usn1,0.12 Is Not Null Is Not Null Limit Reduce(`3esn`={_usn3} Is Not Null,usn1 In 12.e12 In {0} In 9e1|0[Count(*)][0e0])[`6esn`(``[..0X0123456789ABCDEF])..Single(`` In {`1esn`} Starts With @usn6 Where {_usn3}[$usn2..])] Union Merge @usn5=(({`3esn`:12 Starts With 0x0,`8esn`:0X7[0.e0][{`4esn`}]})-[`5esn` *0x0..]->(`8esn` :#usn7)) On Match Set `2esn`+=0X0123456789ABCDEF[{@usn5}..1.e1][$_usn3..{7}],`2esn` =True[7][$999],_usn3+=$usn2 Starts With $`5esn` On Match Set `4esn` ={999} Ends With {`5esn`} Ends With {0} Foreach(`` In 0X7[0X7..][Count ( * )..]| Unwind [`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*)] Starts With (`5esn` :`7esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`}) Starts With `6esn`(Distinct 12.e12[``..usn2][{#usn7}..@usn5],$`7esn` In 12) As @usn5) Return Distinct $`2esn`[{usn2}],$`5esn`[$#usn7..][0xabc..] Order By [0.12[..$`6esn`][..$1000],0.12 Starts With 9e12 Starts With $`1esn`,\"d_str\" Contains @usn6 Contains 12.e12] Is Null Ascending,Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..])[..{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}][..Filter(`2esn` In {999} Is Not Null Where 010 In `1esn`)] Desc,{999} Ends With 123456789 Ends With {@usn5} Descending Limit $usn1 Contains {`8esn`} Contains $123456789"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`2esn`)Assert (`3esn` :#usn7)<-[usn2?:``*]-({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null}).`6esn`? Is Unique"), + octest_legacy:ct_string("Merge `2esn`=((:`5esn`:@usn5)) On Create Set [12.e12[{7}..7],_usn3[\"d_str\"]]._usn4! =$``[..1.e1][..12],#usn7 =1.e1 Is Null,usn1+=Reduce(@usn5={`1esn`} In 12.e12 In 9e1,`5esn` In $`2esn`[12.e12][$@usn5]|$`6esn` Ends With {0} Ends With {`7esn`}) Is Null On Match Set Reduce(#usn8=Count ( * )[..12][..{@usn6}],`` In {`1esn`} Starts With @usn6|@usn6[{0}..]).@usn5 =$#usn7 =~{12} =~False"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:usn1)Assert $0.``? Is Unique"), + octest_legacy:ct_string("Merge Allshortestpaths((:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[_usn4? *07{1000}]-(`` )<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})) On Create Set ['s_str'[..0X7],False Contains 0.e0 Contains Count(*)].``? =$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`] Return *,Any(_usn4 In 0.0[..{999}][..0.0] Where Count(*) In {``})[..[$#usn7[`5esn`],.e1[@usn5]['s_str'],Count(*) Starts With $usn1 Starts With {usn2}]][..{usn2:$7 In @usn5 In {@usn5},`7esn`:{#usn7} Contains @usn5 Contains Count ( * )}] Order By $`4esn` In Null Descending,#usn8 =~{999} Asc Skip Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $#usn7[$`4esn`])[(usn1 :`6esn`:`8esn`)<-[_usn4?:`6esn` *0xabc..7$_usn3]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})][Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))] Match Allshortestpaths(((`2esn` :@usn6)<-[:#usn7|`2esn`]->(`1esn` :`6esn`:`8esn`{usn2:Count ( * )[..12][..{@usn6}]}))),#usn8=(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[?:`6esn` *01..07]->(#usn7 :#usn8{_usn3:`1esn`[..00][..{7}]})<-[:`1esn`|:`3esn` *1000]-($12) Using Join On `4esn`,`2esn` Where $@usn6 Contains `7esn` Union Delete 12e12 Ends With $999 Ends With 1e1,$`3esn`,1000 Merge usn1=(@usn6 :`2esn`)<-[ *..0Xa]->({`8esn`:Null In .e0}) On Create Set Allshortestpaths(((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]}))).`8esn`? =`6esn`[{`6esn`}..],@usn6+=Reduce(usn1=$#usn7 Ends With 0.12 Ends With {@usn6},_usn3 In {`2esn`} Ends With {12} Ends With 7|{0} Is Null) Is Not Null Is Not Null,Extract(usn1 In 12.e12 In {0} In 9e1 Where False Starts With 010|True Starts With $`4esn` Starts With 12e12).`7esn`? =0X0123456789ABCDEF Is Null Is Null"), + octest_legacy:ct_string("Remove Extract(_usn4 In `2esn` Where 123.654 Starts With $``).usn2 Unwind {`2esn`}[..{@usn6}][..1.e1] As #usn7 Return Distinct *,None(`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}])[[123.654[1e1..][{#usn8}..],$#usn7[123.654]]] As `1esn` Order By None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] Desc,Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 9e12 Is Not Null Is Not Null) Is Null Is Null Descending Skip Single(_usn3 In True[7][$999]) Is Not Null Is Not Null Limit $1000[..12.0][..0e0] Union All Match ((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]})),(((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`}))) Using Index `6esn`:`2esn`(`1esn`) Merge @usn5=Allshortestpaths(((:`2esn`)))"), + octest_legacy:ct_string("Start `2esn`=Relationship:`4esn`(``='s_str') Where 7 Contains `2esn` Contains $`8esn`"), + octest_legacy:ct_string("Create Unique `6esn`=(_usn3 {@usn5:.e12 =~.e0})-[?:`7esn`]-(usn2 :`4esn`:@usn6)-[?:@usn6|`` *1000]-(`5esn` :`7esn`),`3esn`=(((:_usn3{`8esn`:9e1 =~999})<-[@usn6?]->(`6esn` :_usn3)<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`))) Union All Create Unique Shortestpath((`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})),(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]}) Union Merge Shortestpath((`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})) Return Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))) =~Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) As _usn4,7[..$`1esn`][..00],{12} Starts With #usn8 Starts With 0e0 Order By $0 Starts With `2esn` Desc,0.12 In 0X7 Descending,12.e12 In $0 In $0 Desc Limit `6esn` In Null Load Csv From Reduce(`7esn`={@usn5} Is Null,#usn7 In 0Xa[@usn5][{`7esn`}]|0e0[0X0123456789ABCDEF..010][$@usn6..010]) Is Not Null Is Not Null As `3esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Merge (@usn6 :@usn5{usn2:{`6esn`} Ends With 0e0 Ends With {``}})<-[{`2esn`:``[{123456789}..]}]->(:_usn4) On Create Set `2esn`+=Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})],`3esn` =$12 Starts With $`8esn`,@usn5 =Reduce(#usn8={`8esn`}[..$`6esn`][..123.654],usn1 In 12.e12 In {0} In 9e1|\"d_str\" =~`1esn` =~{`5esn`}) Match @usn6=Allshortestpaths((:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}})),(:``) Using Index usn1:_usn3(``) Using Scan `1esn`:`3esn` Where 1e1[1.e1..][123.654..] Union All Create `8esn`=Shortestpath(({`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})),`4esn`=Allshortestpaths(((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))) Union Foreach(@usn6 In 9e12 In 1e1 In .e12| Remove {`1esn`:7 Is Null Is Null,@usn6:9e1 =~`` =~{`7esn`}}.`2esn`,(:@usn5{#usn7:{#usn7} In Count ( * ) In $#usn8})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(`4esn` :_usn4{`2esn`:#usn7 =~00}).#usn7!,`4esn`:_usn4 Remove Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 9e12 Is Not Null Is Not Null|_usn4[Count(*)]).`7esn`!,[#usn7 In 0Xa[@usn5][{`7esn`}] Where #usn7 Starts With $999|$@usn5[$`4esn`][$@usn6]].`2esn`!,Reduce(`2esn`=9e12 Ends With 123456789,`1esn` In 0.e0 =~`1esn` =~`6esn`|$`3esn` Contains 0 Contains 07).`7esn`?) Match @usn6=((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1))"), + octest_legacy:ct_string("Create Unique `3esn`=(((`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[usn1?:`4esn`|:#usn7 *0X7..0Xa]->({_usn4:01234567[..9e1]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}))) Foreach(`3esn` In {_usn4:$0[$1000..00][{0}..{usn1}]}[{`2esn`:$``['s_str'..][0x0..]}..]| Optional Match `1esn`=Allshortestpaths(((($_usn3)<-[``?:`3esn`|:@usn5{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(:@usn5{#usn7:{#usn7} In Count ( * ) In $#usn8})-[? *01..07]->(`8esn` :#usn7)))) Using Join On ``,`7esn`,#usn7 Where $`1esn`[$12][Count ( * )] Remove [`6esn` In 00 Where 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF].@usn5!,{usn1:$123456789 Starts With `5esn`}.`6esn`) Create Unique usn2=(`2esn` {@usn6:True Is Null Is Null})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)-[_usn3?:@usn6|`` *0x0..{`3esn`}]->(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}}),Shortestpath((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}))"), + octest_legacy:ct_string("Unwind {#usn7}[{#usn7}..][$`4esn`..] As `6esn` Merge ((:`8esn`:@usn5{`5esn`:$`8esn`[..$999][..0],#usn7:$1000 =~{1000} =~`5esn`})) Create Shortestpath(({``:.e1 Contains $`3esn`})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})),Allshortestpaths((:usn1:_usn4{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[`8esn`? *999]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})) Union Foreach(`6esn` In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000|$@usn5 In $usn2 In {1000}) Is Not Null| Create Unique @usn6=((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})<-[``?:#usn8|`2esn`]->(:`8esn`:@usn5)<-[#usn7]-(`3esn` :#usn7)),((#usn8 :usn1:_usn4)<-[usn1:usn1{`3esn`:\"d_str\" Ends With False Ends With {@usn6},`5esn`:`4esn` Contains #usn8 Contains 7}]->(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(`2esn` :#usn8{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})) Delete Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where 1.e1[12e12..{`6esn`}]|Count ( * )[..12][..{@usn6}]) Contains All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Contains Extract(_usn4 In `2esn` Where $999 Is Null),[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]] Is Not Null,Single(_usn3 In True[7][$999]) Is Not Null Is Not Null) Merge ((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})) On Match Set Reduce(#usn8=Count ( * )[..12][..{@usn6}],`` In {`1esn`} Starts With @usn6|@usn6[{0}..]).@usn5 =$#usn7 =~{12} =~False On Match Set [`6esn` In 00 Where $`1esn`[$12][Count ( * )]].`5esn`? =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,_usn4 =Reduce(@usn5=True[7][$999],usn1 In 12.e12 In {0} In 9e1|.e12 =~$_usn4)[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])][[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]]] Union Merge @usn5=Allshortestpaths(((:`2esn`)))"), + octest_legacy:ct_string("Drop Constraint On()<-[usn2:`3esn`]-()Assert Exists(Reduce(`8esn`=`7esn`[0..$usn2][{usn2}..0.e0],`6esn` In Count(*) Ends With $`` Ends With {7}|12.e12 In {0} In 9e1).@usn5)"), + octest_legacy:ct_string("Remove Extract(_usn4 In `2esn` Where 0X0123456789ABCDEF[$`5esn`..]|$usn2 Ends With $`5esn`).`8esn`!,@usn6:`` Union Optional Match `8esn`=(({#usn7:#usn8 =~{999}})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})),((@usn5 )<-[#usn8? *..01234567]-($_usn3)) Using Join On ``,`7esn`,#usn7 Where True[$`7esn`..{1000}]"), + octest_legacy:ct_string("Return Distinct {`5esn`:2.12 =~0x0 =~_usn4,`3esn`:$@usn6 Contains `7esn`}[..(#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]})<-[`7esn`?:`7esn` *..7{`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})][..Any(_usn3 In {`2esn`} Ends With {12} Ends With 7)] As #usn8,12.e12 In {0} In 9e1 As #usn8 Order By #usn7[9e0] Ascending Skip #usn8 =~{999} Limit $`6esn`['s_str'..][{_usn4}..]"), + octest_legacy:ct_string("Create Constraint On()<-[usn2:#usn7]-()Assert Exists(Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {`2esn`}[Count(*)]).@usn6?)"), + octest_legacy:ct_string("Start usn2=Node:#usn8(_usn3={#usn7}) Where 's_str'[_usn4..0x0] Foreach(_usn3 In `1esn`(Distinct $usn1 Starts With {_usn3},{#usn8}[$#usn7..]) Starts With [$_usn4[$`4esn`..$12]] Starts With [`6esn` In 00 Where 0.12 In 0X7|{999} Is Null]| Match `1esn`=Allshortestpaths((`6esn` :@usn5{`4esn`:{#usn8}[$#usn7..],`4esn`:0[{@usn5}..][7..]})),`1esn`=Allshortestpaths((((:`7esn`{`1esn`:{1000} In {123456789},`4esn`:010 In `1esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)))) Using Scan `2esn`:`2esn` Return Distinct Filter(`1esn` In `3esn`[07..] Where 12 Ends With 01)[..All(`3esn` In 123.654[1e1..][{#usn8}..] Where 0Xa Contains Count ( * ))] As usn2,{usn1}[01..7][{`3esn`}..`6esn`] Order By Reduce(`4esn`=@usn6[$_usn4],`8esn` In $12[{7}..0X0123456789ABCDEF]|0.12 Starts With 9e12 Starts With $`1esn`)[Reduce(usn2={`7esn`}[0X7..][0x0..],_usn3 In {`2esn`} Ends With {12} Ends With 7|01[..{`7esn`}][..01234567])][(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})-[_usn4 *0x0..]-(:#usn7{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})] Ascending,[.e12 Ends With 1000 Ends With 010,Count(*)] Ends With {`7esn`:$_usn3 =~{_usn4} =~$`6esn`} Ends With Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]) Descending Skip [`` In {`1esn`} Starts With @usn6 Where $123456789 Starts With $123456789 Starts With Count ( * )|{#usn8}[usn1][1.0]][Shortestpath((@usn6 {usn1:$#usn7 =~{12} =~False})-[`1esn`?:_usn3|`8esn` *0xabc..7]-(`4esn` :@usn6))..] Limit $`5esn`[`4esn`]) Union All Load Csv With Headers From Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Is Null Is Null As `2esn` Fieldterminator 's_str' Union All Start @usn6=Node:@usn5({usn1}) ,#usn8=Node:`6esn`(#usn8={@usn5})Where {7} Starts With $usn1 Starts With 1.0 Merge @usn6=((_usn4 :#usn8)<-[:#usn8|`2esn` *123456789..0X7{``:$#usn7 =~{12} =~False,`5esn`:{1000} In {123456789}}]->({`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF})<-[{``:\"d_str\"[{`8esn`}..]}]-(:#usn7{#usn7:$`8esn` In $`2esn` In {7}})) On Create Set _usn3 =1.e1[`4esn`..][$`6esn`..] Detach Delete \"d_str\"[..0.e0],{7}[$_usn4..Count ( * )],{#usn7} Contains 0.0 Contains $0"), + octest_legacy:ct_string("Unwind Filter(`1esn` In $12 Is Not Null Where Count(*)[..``][..#usn8]) Ends With Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}]) Ends With {`2esn`:usn1 Is Null Is Null,usn2:0.e0 =~`1esn` =~`6esn`} As _usn3 Load Csv With Headers From {``} Starts With 123456789 Starts With usn2 As `3esn` Union All Foreach(`3esn` In {@usn5} Starts With 1.0 Starts With 00| Detach Delete True Starts With $`2esn` Starts With {@usn6},.e12[\"d_str\"..][.e1..],$_usn3[..$`2esn`][..\"d_str\"])"), + octest_legacy:ct_string("Merge ((`8esn` :`8esn`:@usn5)<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})) On Create Set Filter(`1esn` In `3esn`[07..] Where 9e12 Is Not Null).@usn5! =07 =~$`8esn` =~9e1,`4esn` =Reduce(usn1=$#usn7 Ends With 0.12 Ends With {@usn6},_usn3 In {`2esn`} Ends With {12} Ends With 7|{0} Is Null) Is Not Null Is Not Null On Match Set Reduce(`3esn`={123456789}[12..][$12..],#usn7 In 0Xa[@usn5][{`7esn`}]|123.654[$`1esn`..Null][1000..{_usn3}]).`8esn`? =#usn8 =~{999},`5esn`+=`6esn`[$0][#usn8] Remove [{_usn3}[$usn2..],`5esn` Is Null Is Null,0.12 Contains 12.0].`3esn`,Shortestpath((@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})).``! Union All Detach Delete 123.654 Ends With usn2 Ends With 0,{usn1} In Count ( * ),0x0[{999}..`1esn`][0Xa..False] Start `5esn`=Rel( {_usn4}) Union All Start `7esn`=Node:`2esn`(#usn7={usn1}) ,usn2=Rel:`5esn`(\"d_str\")Where Null =~12e12 Load Csv From [1.e1 =~$usn2,@usn6[{0}..],@usn5[12.0][{1000}]][@usn6()..Case {@usn5}[..@usn6] When $`2esn` Starts With {`8esn`} Starts With {usn1} Then {``} Is Null Is Null Else 123456789 Ends With usn1 Ends With usn2 End] As `` "), + octest_legacy:ct_string("Drop Constraint On(`6esn`:usn1)Assert Exists({@usn6:$`` Starts With 12 Starts With $usn2}.usn2!)"), + octest_legacy:ct_string("Foreach(usn1 In {`4esn`:12 Starts With {_usn4} Starts With $#usn8} =~Reduce(@usn5=$@usn6 =~#usn8,`5esn` In $`2esn`[12.e12][$@usn5]|{`1esn`} In 12.e12 In 9e1)| Start `3esn`=Relationship:`2esn`(#usn7={usn1}) ,`5esn`=Relationship:`7esn`({#usn8})) Merge (((`2esn` :@usn5{`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]-(:usn1:_usn4{`4esn`:01234567 In $123456789})-[`8esn`?]->({@usn6:$`` Starts With 12 Starts With $usn2}))) On Match Set `6esn`($usn1 Starts With $999 Starts With {@usn5},#usn7 =~00).usn2! =Case 0Xa[.._usn3][..$`6esn`] When {`4esn`}[$123456789..] Then {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] When {usn2}[$`4esn`] Then $1000 Starts With $`8esn` Starts With {`5esn`} Else @usn6[$_usn4] End[(`8esn` :`2esn`)-[`8esn`]->(`8esn` :`8esn`:@usn5)..],`7esn`+='s_str' Starts With 12e12 Starts With $_usn4,(#usn7 {`7esn`:12e12 Ends With `4esn` Ends With 123456789})<-[``{`3esn`:{`3esn`}[{`5esn`}]}]-({@usn5:``[{123456789}..]}).`8esn`? =Reduce(`4esn`=@usn6[$_usn4],`8esn` In $12[{7}..0X0123456789ABCDEF]|0.12 Starts With 9e12 Starts With $`1esn`)[Reduce(usn2={`7esn`}[0X7..][0x0..],_usn3 In {`2esn`} Ends With {12} Ends With 7|01[..{`7esn`}][..01234567])][(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})-[_usn4 *0x0..]-(:#usn7{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})] Create @usn6=((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1)) Union All Match `3esn`=(({#usn7:$0 Is Not Null})),`2esn`=Allshortestpaths(((_usn4 :#usn8))) Using Index @usn6:#usn8(`8esn`) Using Index usn2:`8esn`(`5esn`) Union With *,0X7[0.e0][{`4esn`}],usn1 Contains $7 Contains $`` Limit usn2 In `2esn` In $`7esn` Where {#usn7}[Count ( * )..12][$`2esn`..`4esn`] Merge `4esn`=(((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 :`4esn`:@usn6)<-[:`6esn` *0xabc..7{`8esn`:0X7[0X7..][Count ( * )..]}]-(#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"}))) Remove {#usn7:`2esn` Starts With `` Starts With 1e1}.@usn5!,{`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]}.@usn6"), + octest_legacy:ct_string("Drop Constraint On()<-[@usn5:#usn8]-()Assert Exists(Case When 2.12 In $`8esn` In {`7esn`} Then $usn1 In 01234567 In .e1 Else $`3esn` Contains 0 Contains 07 End.`1esn`!)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:@usn6)Assert Exists(Filter(#usn7 In 0Xa[@usn5][{`7esn`}] Where 12[..$@usn6]).`2esn`)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:usn2)Assert Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999).`5esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`6esn`:@usn5]->()Assert Exists(Single(`` In {`1esn`} Starts With @usn6 Where 999 Starts With $123456789 Starts With {``})._usn3!)"), + octest_legacy:ct_string("Drop Constraint On()-[`6esn`:`8esn`]-()Assert Exists({`3esn`:{_usn4}[...e12][..0xabc]}.usn2)"), + octest_legacy:ct_string("Merge @usn6=Shortestpath((:``{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})-[?:`4esn`|:#usn7]->(`1esn` :@usn6)<-[`1esn`?]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})) On Match Set `5esn` =Filter(`5esn` In $`2esn`[12.e12][$@usn5] Where 's_str'[.._usn4][..``]),{usn2:{`6esn`} Ends With 0e0 Ends With {``}}.``? =`7esn`[{7}..@usn5],`3esn`+={#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null Load Csv With Headers From {`4esn`} Contains $`1esn` Contains 01234567 As `8esn` Fieldterminator \"d_str\" Unwind {1000}[{#usn8}] As #usn8"), + octest_legacy:ct_string("Create Unique `6esn`=(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]})-[`3esn`?:#usn7|`2esn`]->(usn1 :`6esn`:`8esn`)-[`7esn`? *..0{`2esn`:07 =~$`8esn` =~9e1,``:`5esn`[0xabc..]}]->({`3esn`:{@usn5} Is Null,`5esn`:{`2esn`} Ends With {12} Ends With 7}),Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Match @usn5=($`5esn`)-[?:`3esn`|:@usn5]-(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Using Scan usn2:@usn5 Where True Is Null Is Null Merge _usn4=(((@usn6 {usn1:$#usn7 =~{12} =~False})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))) On Match Set #usn8+={123456789} Is Not Null,{#usn7:'s_str'[_usn4..0x0],`6esn`:$`6esn` Ends With {0} Ends With {`7esn`}}.`` =07 Is Not Null,usn2 ={usn2} =~@usn6 =~{`4esn`}"), + octest_legacy:ct_string("Remove Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where _usn4 Is Null Is Null).``!,Case 7 Contains $`` Contains {`6esn`} When {#usn8}[2.12] Then $``['s_str'..][0x0..] When $7 Ends With $`8esn` Then {`7esn`}[``..] Else {123456789}[12..][$12..] End.`6esn`! Unwind Extract(#usn7 In 0Xa[@usn5][{`7esn`}] Where $@usn5 In $usn2 In {1000}|{`2esn`}[..{@usn6}][..1.e1]) In Reduce(`5esn`=7[$0..][{_usn4}..],`` In {usn1} Ends With {`6esn`} Ends With 123456789|#usn8[$0..False][$`1esn`..$#usn7]) In Reduce(`8esn`=True Starts With $`2esn` Starts With {@usn6},`5esn` In $`2esn`[12.e12][$@usn5]|999 Ends With .e12 Ends With .e1) As `7esn` With `7esn`[{7}..@usn5],{@usn6} Contains 0e0,[$_usn4[9e0..]][`8esn`(Distinct {7} Starts With $usn1 Starts With 1.0)..Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} Starts With 1.0 Starts With 00|$#usn7[..@usn6][..$0])][Any(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{#usn8:{`7esn`} Is Not Null Is Not Null,`4esn`:12 Starts With 0x0}] As `1esn` Limit $#usn7[.e1..{7}] Where 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Union Match `6esn`=Allshortestpaths(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(:`2esn`{`6esn`:@usn6[{0}..]}))),`8esn`=({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]->(usn1 :`8esn`:@usn5{`1esn`:{#usn7} Contains 0.0 Contains $0,`2esn`:.e12[010..$123456789]})<-[_usn3?:@usn6|`` *0x0..{`3esn`}]-(@usn6 {`1esn`:01234567 In $123456789,`1esn`:{`6esn`}[..{`2esn`}]}) Using Scan `3esn`:`3esn` Where 999[12.0..][#usn7..]"), + octest_legacy:ct_string("Detach Delete {`4esn`:`7esn` Contains `5esn` Contains 0X7} Ends With Allshortestpaths((`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4)) Merge Shortestpath((((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})<-[`5esn`?:`7esn`]->({@usn5:Count ( * ) Is Null})<-[#usn8?:``]-(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})))) Union Return Distinct $`2esn`[{usn2}],`7esn` Ends With $_usn3 Ends With usn2 Order By $_usn3[..$`2esn`][..\"d_str\"] Desc Skip `4esn`[{1000}][{`5esn`}]"), + octest_legacy:ct_string("Drop Constraint On()<-[usn2:@usn6]-()Assert Exists([12.e12[{7}..7],_usn3[\"d_str\"]].`2esn`)"), + octest_legacy:ct_string("Start `3esn`=Relationship:`2esn`(#usn7={usn1}) ,`5esn`=Relationship:`7esn`({#usn8}) Unwind [False Starts With 010] Contains Extract(_usn3 In True[7][$999] Where 0e0[$#usn8...e12]|12 Is Not Null Is Not Null) Contains [`1esn` In $12 Is Not Null] As `` Match Shortestpath((({`2esn`:{7}[$7..],#usn7:`1esn` In 07})-[? *01..07]->({_usn4:{usn1} =~123.654 =~\"d_str\"}))),usn1=Allshortestpaths(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]}))) Where .e12 =~$_usn4 Union All Load Csv From $@usn6 Ends With 01 Ends With 999 As _usn3 Fieldterminator \"d_str\" Detach Delete usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3),[$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]][..Case {#usn8}[#usn7..{`2esn`}] When $7 Is Not Null Then $@usn6[$`8esn`..][7..] When $`4esn`[..'s_str'][..`8esn`] Then `7esn` Contains {@usn5} Contains $123456789 Else 12.e12 In $0 In $0 End] Union All Unwind Count(*)[..``][..#usn8] As #usn7"), + octest_legacy:ct_string("Create Allshortestpaths((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]})),((@usn6 :`7esn`)<-[``?:`6esn` *07{`5esn`:{12} Contains `7esn` Contains $_usn3,_usn4:$`3esn` In 9e12 In ``}]-({#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]})-[_usn3:#usn7|`2esn`]-(_usn3 :#usn8)) Union All Create `6esn`=(((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[?:`6esn`{`1esn`:{@usn5}[..{12}][..0x0],usn2:1000}]->(:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})<-[`1esn`?:usn2|#usn7 *..0]-(:@usn6{`4esn`:1.e1[{#usn8}]}))) Delete $@usn6[1.e1..`8esn`][Null..123456789]"), + octest_legacy:ct_string("Load Csv From $0 Is Not Null As `3esn` Fieldterminator 's_str' Start `5esn`=Rel:`4esn`('s_str') ,`6esn`=Node:_usn4(``=\"d_str\")Where $@usn5[$`4esn`][$@usn6]"), + octest_legacy:ct_string("Using Periodic Commit 00 Load Csv With Headers From 010 Ends With 01 Ends With {_usn3} As #usn8 Fieldterminator 's_str' Remove Extract(`2esn` In {999} Is Not Null Where {#usn7} In Count ( * ) In $#usn8|{usn1} =~123.654 =~\"d_str\").@usn5?,Case .e12[$#usn8..@usn6] When {12} =~0.e0 =~{_usn3} Then $7 In 1.0 In 1e1 End.`4esn`? Create Allshortestpaths((:usn1:_usn4{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[`8esn`? *999]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}))"), + octest_legacy:ct_string("Load Csv With Headers From $`2esn` Starts With {`8esn`} Starts With {usn1} As usn2 Fieldterminator 's_str' Return Distinct *,{`8esn`:{#usn8}[$#usn7..]}[Case 12.e12[``..usn2][{#usn7}..@usn5] When `3esn` Is Not Null Is Not Null Then 7 Contains `2esn` Contains $`8esn` Else $``[..1.e1][..12] End..] As `2esn`,0e0 Starts With $@usn6 Starts With $`6esn` Detach Delete Allshortestpaths(((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8?:``]-(`1esn` :`1esn`{`7esn`:{1000}[{usn1}][Null],`3esn`:7[$0..][{_usn4}..]})<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(usn1 {`4esn`:1.0[{999}][$999],``:9e1[9e1...e0]}))) Starts With (`7esn` )-[:_usn4|:usn1 *0X7..0Xa{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]}]-({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})"), + octest_legacy:ct_string("Match `3esn`=((#usn8 :@usn5)) Using Index #usn7:`8esn`(@usn6) Where 12.e12[$`8esn`..{`8esn`}] Foreach(`2esn` In {usn2}[`6esn`..01234567]| Remove Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where _usn4 Is Null Is Null).``!,Case 7 Contains $`` Contains {`6esn`} When {#usn8}[2.12] Then $``['s_str'..][0x0..] When $7 Ends With $`8esn` Then {`7esn`}[``..] Else {123456789}[12..][$12..] End.`6esn`!) Union Load Csv From $``[.e12..] As usn1 "), + octest_legacy:ct_string("Create Constraint On()<-[``:`5esn`]-()Assert Exists(Shortestpath(({`6esn`:$``['s_str'..][0x0..]})).`8esn`)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`1esn`)Assert Exists(00.`2esn`)"), + octest_legacy:ct_string("Return Distinct $#usn7 Contains True Contains _usn4,.e1 Ends With {7} Ends With $usn1 As `` Limit {usn2}[`6esn`..01234567] Unwind `2esn`(Null In .e0)[_usn3(Distinct {@usn6}[$`7esn`..][False..])..[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]]] As `6esn` Union All Load Csv From {@usn5}[1e1..][9e1..] As `8esn` "), + octest_legacy:ct_string("Delete 0.0 In `6esn` In $@usn5,9e12 In 1e1 In .e12,1.0[..`4esn`][..{0}] Merge (((`8esn` {_usn4:{usn1} In Count ( * )})<-[``?:`3esn`|:@usn5{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(:`5esn`:@usn5)<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07}))) Delete 12 Starts With {_usn4} Starts With $#usn8,.e12 Ends With 1000 Ends With 010,[#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null Union Delete 12e12 Ends With $999 Ends With 1e1,$`3esn`,1000 Merge usn1=(@usn6 :`2esn`)<-[ *..0Xa]->({`8esn`:Null In .e0}) On Create Set Allshortestpaths(((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]}))).`8esn`? =`6esn`[{`6esn`}..],@usn6+=Reduce(usn1=$#usn7 Ends With 0.12 Ends With {@usn6},_usn3 In {`2esn`} Ends With {12} Ends With 7|{0} Is Null) Is Not Null Is Not Null,Extract(usn1 In 12.e12 In {0} In 9e1 Where False Starts With 010|True Starts With $`4esn` Starts With 12e12).`7esn`? =0X0123456789ABCDEF Is Null Is Null"), + octest_legacy:ct_string("Drop Constraint On(usn1:`3esn`)Assert Case When 9e12 Is Not Null Is Not Null Then .e12 Ends With 1000 Ends With 010 Else `1esn` Is Null Is Null End.@usn5? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn1:@usn5)Assert Exists(Allshortestpaths((({`6esn`:{`3esn`} Ends With `1esn` Ends With $@usn6,@usn6:$usn1 In 0.12 In $``}))).usn1?)"), + octest_legacy:ct_string("Drop Constraint On()-[_usn4:`1esn`]->()Assert Exists(0xabc.`6esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:#usn7)Assert [00 Starts With $`6esn`].`3esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[usn1:@usn6]-()Assert Exists({`2esn`:{`4esn`}[$_usn4..][9e0..]}.usn2?)"), + octest_legacy:ct_string("Create Unique _usn3=((:@usn5{`3esn`:@usn5 =~'s_str',`1esn`:$`7esn` Contains {`1esn`} Contains 9e12})) Return Distinct $`6esn`[`8esn`][0.0] Order By {`7esn`}[0X7..][0x0..] Asc,Single(usn1 In 12.e12 In {0} In 9e1 Where `4esn` Contains #usn8 Contains 7) Ends With [123.654[$`1esn`..Null][1000..{_usn3}],#usn8[`7esn`..],$@usn6 Starts With {`1esn`} Starts With 12] Ends With {`4esn`:{usn1} In Count ( * )} Descending Skip Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $#usn7[$`4esn`])[(usn1 :`6esn`:`8esn`)<-[_usn4?:`6esn` *0xabc..7$_usn3]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})][Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))] Unwind {usn2} Starts With `` Starts With {0} As #usn7 Union With Distinct {`8esn`}[@usn5..][01..],All(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) In Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4]) In [``[00..$7],.e1 Contains $`3esn`,{``} Starts With 123456789 Starts With usn2] As `5esn` Order By [#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}][..[$`6esn`[`8esn`][0.0],$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,True[$`7esn`..{1000}]]][..None(`2esn` In {999} Is Not Null Where {``} Ends With .e12 Ends With 0.e0)] Desc,{@usn5}[Count(*)..] Asc,None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False)[Shortestpath(((({``:$7[{`1esn`}]})<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`)<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(#usn7 :@usn6))))..Extract(_usn3 In True[7][$999] Where $7 Is Null Is Null)][{`4esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:.e12 Is Null Is Null}..[`6esn` In Count(*) Ends With $`` Ends With {7} Where `1esn` =~1000 =~1000]] Descending Limit $`8esn` =~0x0 =~usn2 Where $_usn4 Ends With 0.e0 Ends With .e0 With 0xabc[$_usn3..],[$_usn4[9e0..]][`8esn`(Distinct {7} Starts With $usn1 Starts With 1.0)..Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} Starts With 1.0 Starts With 00|$#usn7[..@usn6][..$0])][Any(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{#usn8:{`7esn`} Is Not Null Is Not Null,`4esn`:12 Starts With 0x0}] As `1esn` Order By $_usn4 Is Null Is Null Asc,.e1 Contains $`3esn` Descending,$_usn3 =~{_usn4} =~$`6esn` Ascending Skip $usn2 In 123.654 In .e0"), + octest_legacy:ct_string("Drop Constraint On(usn2:@usn6)Assert Exists($`6esn`.`5esn`)"), + octest_legacy:ct_string("Return Distinct $1000[\"d_str\"..$999][$`3esn`..{`3esn`}] Order By (:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) Desc,{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}[Reduce(`1esn`={usn1} In Count ( * ),`` In {usn1} Ends With {`6esn`} Ends With 123456789|0[{usn2}..][usn1..])][[`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12]|{``} Starts With 123456789 Starts With usn2]] Ascending Remove {usn2:7 In 1.e1 In $usn1}.`4esn`!,All(_usn4 In 0.0[..{999}][..0.0] Where #usn8 Is Null).`8esn`? Union Start `5esn`=Node:#usn8(#usn7='s_str') ,`5esn`=Node:_usn3(_usn3='s_str')Where {#usn7}[Count ( * )..12][$`2esn`..`4esn`] Union Remove {#usn8:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]}.usn1 Detach Delete Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`])[(`3esn` :#usn7{`6esn`:{_usn4} Is Null,usn2:{`2esn`} Starts With @usn6})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`8esn`:@usn5)<-[@usn6?:`7esn`]->(:`2esn`{#usn7:#usn8 =~{999}})..Shortestpath((`8esn` {_usn4:{usn1} In Count ( * )})<-[`6esn`?]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})<-[@usn6?:`7esn`]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1}))][Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0[$#usn8...e12])..[`1esn` In $12 Is Not Null Where {usn1} In Count ( * )|$`3esn`[{``}..]]],{usn2}[`6esn`..01234567],All(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7]) Contains Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End Contains Reduce(`6esn`={_usn4} In {1000},usn1 In 12.e12 In {0} In 9e1|{`4esn`} Starts With $7 Starts With $``)"), + octest_legacy:ct_string("Detach Delete All(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) In Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4]) In [``[00..$7],.e1 Contains $`3esn`,{``} Starts With 123456789 Starts With usn2],[`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7}|usn2[`7esn`..{`3esn`}][$7..{#usn7}]][..[`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]|9e12[..0X7]]][..[`2esn` Ends With $`4esn` Ends With {#usn7},'s_str'[..0X7],{#usn8} =~{999} =~{#usn7}]] Optional Match (`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})-[``:usn2|#usn7 *..0Xa]->(:`4esn`:@usn6{usn1:$7[{`1esn`}],#usn8:\"d_str\"[..0.e0]}),`3esn`=Allshortestpaths((:`3esn`:`6esn`{_usn4:{usn1} In Count ( * )})) Using Index @usn6:#usn8(_usn4) Using Join On `6esn`,usn2,`5esn`"), + octest_legacy:ct_string("Drop Constraint On()-[usn1:`4esn`]->()Assert Exists((:usn1:_usn4{@usn5:1000 Is Null Is Null})<-[`1esn`:`8esn`|:_usn4 *123456789..0X7$12]->(:`1esn`{`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[? *0X0123456789ABCDEF]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}).usn2!)"), + octest_legacy:ct_string("Create Constraint On()-[`2esn`:`4esn`]->()Assert Exists(Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[$`8esn`.._usn3]).usn2!)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:_usn3)Assert Shortestpath((`1esn` {@usn5:$usn1 In 0.12 In $``}))._usn3! Is Unique"), + octest_legacy:ct_string("Create `2esn`=(:_usn3{#usn7:#usn8 =~{999}}),Shortestpath(((:#usn8{``:12.e12[$`4esn`..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]}))) Return $`2esn`[12.e12][$@usn5],12 Starts With $#usn7,(#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..] Order By @usn5 In 1e1 Asc Limit {_usn4}[...e12][..0xabc] Union All Detach Delete 123.654[{`7esn`}][{7}],Count ( * ) Starts With 010 Starts With 0x0 Match `2esn`=(_usn3 :@usn5),(@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]}) Using Scan `3esn`:_usn3 Where $`` Starts With 12 Starts With $usn2 Foreach(`3esn` In 0X0123456789ABCDEF[$`5esn`..]| With Distinct $`2esn`[12.e12][$@usn5],12 Starts With $#usn7,(#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..] Where 0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] Create `8esn`=((:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *..00{#usn7:`4esn`[usn1]}]-(:@usn5{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12})),_usn4=(((#usn8 )-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))))"), + octest_legacy:ct_string("Detach Delete usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3),Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12]) Union Create ((({usn2:`1esn` In 07})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}))) Load Csv From $`1esn` =~$`1esn` =~{`6esn`} As `7esn` Delete Single(`8esn` In $12[{7}..0X0123456789ABCDEF])[Case 9e1[123456789..] When 12 Starts With 7 Starts With $`5esn` Then {_usn3} Contains True Contains 0X7 When `1esn`[..00][..{7}] Then 1.e1[12e12..{`6esn`}] End..],123456789 Is Not Null Is Not Null,$usn2"), + octest_legacy:ct_string("Return *,1.e1 Starts With $`2esn` Starts With $0 Create Allshortestpaths(((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)))"), + octest_legacy:ct_string("Start _usn3=Node(01,0x0,0X7,0X7) ,`2esn`=Relationship:_usn4(usn1={_usn4})Where $`8esn`[..$999][..0] Union All Match _usn4=Allshortestpaths(((:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})-[?:#usn8|`2esn` *999{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({@usn6:#usn8[$0..False][$`1esn`..$#usn7]})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}))) Using Join On _usn3 Using Scan `6esn`:``"), + octest_legacy:ct_string("Create Unique Shortestpath((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->({_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})),Allshortestpaths(({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) Start @usn5=Node:``(#usn7=\"d_str\") ,#usn8=Relationship:`4esn`(``='s_str')Where $``[..1.e1][..12] Union All Create Unique ((`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]-(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->({_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})) Create @usn6=Shortestpath(((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}))),(`6esn` :#usn8) With {1000}[\"d_str\"..{@usn5}][$1000..$#usn8] Order By 0.12[999][$#usn8] Descending,`7esn`[..$`5esn`][..{`5esn`}] Desc Limit {`1esn`:{123456789}[12..][$12..]} =~{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF} =~[`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`|_usn3[\"d_str\"]] Where 1.0 Is Null Is Null Union Foreach(`3esn` In `2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}]| Match Shortestpath(({`3esn`:0.e0[{999}][{`1esn`}],`1esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[:usn2|#usn7 *0X7..0Xa]->(#usn7 :@usn5)),`3esn`=(((`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[usn1?:`4esn`|:#usn7 *0X7..0Xa]->({_usn4:01234567[..9e1]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}))))"), + octest_legacy:ct_string("Start `6esn`=Node:@usn6(_usn4={_usn4}) ,`8esn`=Node:`8esn`('s_str')Where 07[`8esn`] With [`1esn` In `3esn`[07..] Where @usn6[{0}..]|0.e0[12.e12]] Contains {usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF} As @usn6,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $`5esn`[$#usn7..][0xabc..]) Contains All(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}]) As #usn8 Order By {#usn8} Contains 1000 Contains $`4esn` Ascending,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Ascending Where 123456789[0..]"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:_usn4)Assert Exists((_usn3 {_usn4:{_usn3} Is Not Null})-[`4esn`?:usn1 *0xabc..7]-(`` :_usn4).#usn7!)"), + octest_legacy:ct_string("With Distinct *,{`6esn`} Contains {usn2} Contains $1000 As `2esn` Order By $`5esn`[`1esn`][0X0123456789ABCDEF] Ascending,Count(*)[usn2..][$#usn8..] Asc Where 0X7 Starts With {999} Starts With 12e12 Create `7esn`=((`1esn` :#usn7)) Load Csv With Headers From {_usn3}[$usn2..] As `` Fieldterminator 's_str' Union All Unwind $0 Ends With False Ends With $_usn4 As `1esn` Merge `6esn`=Shortestpath(((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1))) Optional Match `1esn`=Allshortestpaths((((#usn7 :@usn5)<-[`4esn`?*..]-(:`4esn`:@usn6{`3esn`:123456789 Is Not Null Is Not Null})-[#usn8:`` *..0{@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})))),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` )) Where 00[..$123456789][..$`5esn`] Union All Detach Delete $1000 Is Not Null Is Not Null,$`7esn` Is Null Is Null,_usn4 Is Not Null Is Not Null"), + octest_legacy:ct_string("Create Unique @usn6=Allshortestpaths(((:#usn8{#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})-[_usn4 *0x0..]-(:#usn7{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}}))),Shortestpath((`5esn` )<-[`3esn` *..010]-(:@usn5{`2esn`:True[$123456789][`8esn`]})) Union All Load Csv From `6esn` Starts With 123.654 As `8esn` Fieldterminator \"d_str\" Unwind Filter(`3esn` In 123.654[1e1..][{#usn8}..] Where $7 Is Not Null) Is Null Is Null As #usn8"), + octest_legacy:ct_string("Create Constraint On(#usn8:`2esn`)Assert (@usn6 {@usn5:0X0123456789ABCDEF[$999..][@usn5..]})-[_usn3?:`8esn`|:_usn4{@usn6:{`1esn`}[`6esn`..12e12]}]-(@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})._usn3 Is Unique"), + octest_legacy:ct_string("Merge Shortestpath(({`8esn`:0[$`6esn`...e1][`1esn`..$`7esn`]})-[#usn8:#usn7|`2esn`]->(:@usn6{`2esn`:$999 In 999})) On Match Set `7esn`+=Reduce(@usn5=True =~{`1esn`},_usn4 In 0.0[..{999}][..0.0]|7[$0..][{_usn4}..]) In Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`) In All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) On Match Set `6esn` ={_usn3}[usn1][0],Shortestpath((@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})).@usn5? =\"d_str\" Contains @usn6 Contains 12.e12,`7esn`+=`3esn`[..{_usn4}][..{@usn5}] Union All Load Csv With Headers From .e0[0.12] As _usn4 Start `4esn`=Node:@usn6(`5esn`={1000}) Where {@usn5}[1e1..][9e1..] Union All Remove `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null).`3esn`! Delete 0e0[..$@usn5][..$`8esn`]"), + octest_legacy:ct_string("Unwind .e0 =~{`8esn`} =~$999 As _usn4 Create ``=Allshortestpaths(((:usn1:_usn4)-[`1esn`:`1esn`|:`3esn` *01..07{`3esn`:123456789 Is Not Null Is Not Null}]-(`1esn` {@usn5:$usn1 In 0.12 In $``})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`))),Allshortestpaths(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(usn1 :`8esn`:@usn5)-[? *0x0..{`6esn`:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-({`2esn`})) With `7esn` Contains `5esn` Contains 0X7 As `1esn`,#usn7(01 =~$`1esn`) =~{@usn6:12.e12[$`8esn`..{`8esn`}],#usn8:#usn7 =~00} As `5esn`,{@usn6}[$`7esn`..][False..] Order By $@usn6 =~#usn8 Descending,{1000} Ends With {`8esn`} Ascending Skip 1000[$7..$123456789] Limit 9e12[..0X7]"), + octest_legacy:ct_string("With Distinct (@usn5 {`2esn`:1.e1 =~9e12 =~`4esn`})<-[@usn5?:usn1 *..010{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}]->(`8esn` :`1esn`{usn2:0.0 Is Not Null,usn2:0.12[Count(*)..][$#usn7..]})-[`5esn`{`7esn`:@usn5[..$@usn5][..0Xa]}]->(#usn7 :#usn8{_usn3:`1esn`[..00][..{7}]}) In Case When .e0[True..Count ( * )][#usn7..0X7] Then $@usn5[`6esn`..] When 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF Then $`1esn`[#usn8][$@usn5] End In @usn6(`` Ends With $`4esn` Ends With 0X0123456789ABCDEF),{`1esn`:{`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`],`5esn`:0.12 Contains 12.0} Ends With [{usn2},0.12[Count(*)..][$#usn7..]] Ends With {0},$`2esn` Ends With 0.12 Ends With .e1 As `` Limit {_usn3} Contains $`1esn` Contains 12.0 Where {999} Is Null Create Unique usn2=(((:`2esn`{`4esn`:`3esn` Is Not Null Is Not Null})-[?:#usn7|`2esn` *0x0..]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5))) Merge `1esn`=(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}) On Match Set Any(_usn4 In `2esn` Where 0X0123456789ABCDEF[9e12]).`5esn`! =(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) On Match Set `3esn`(Distinct 's_str' Starts With 12e12 Starts With $_usn4).`3esn` =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End"), + octest_legacy:ct_string("Create Constraint On(`6esn`:#usn8)Assert Extract(`` In {`1esn`} Starts With @usn6 Where 12.0 =~$#usn7 =~9e12|{@usn6} Contains 123.654 Contains 01)._usn4! Is Unique"), + octest_legacy:ct_string("Foreach(`3esn` In {usn1} In Count ( * )| With Distinct *,{`6esn`} Contains {usn2} Contains $1000 As `2esn` Order By $`5esn`[`1esn`][0X0123456789ABCDEF] Ascending,Count(*)[usn2..][$#usn8..] Asc Where 0X7 Starts With {999} Starts With 12e12 With *,$999[07..{#usn7}][1e1..0xabc] As #usn8 Order By None(@usn5 In Null =~12e12 Where #usn8[`7esn`..])[{123456789}..][All(`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0})..] Ascending Skip Single(`6esn` In 00 Where $_usn4 Ends With 0.e0 Ends With .e0) Contains Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End) Union All Match @usn6=Allshortestpaths(({`4esn`:#usn8 Is Null})),(({`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})) Using Scan `1esn`:`7esn` Match ``=Allshortestpaths((((`6esn` :@usn5)<-[`4esn`?*..]-(:`4esn`:@usn6{`3esn`:123456789 Is Not Null Is Not Null})-[_usn4?:`3esn`|:@usn5]->(:@usn5{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12})))) Using Scan usn2:@usn5 Where 0 Contains $usn2 Contains 12e12 Create Unique Shortestpath(((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))),`5esn`=Allshortestpaths(((:`7esn`{usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})<-[`8esn`?:`4esn`|:#usn7]->({`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]})-[usn2 *07{usn1:07 =~@usn5}]->({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})))"), + octest_legacy:ct_string("Create Constraint On(@usn5:`1esn`)Assert Case {usn1} In Count ( * ) When 9e12 Is Not Null Is Not Null Then $999 Ends With {0} End.`4esn` Is Unique"), + octest_legacy:ct_string("Merge Allshortestpaths((((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})))) Union Create Unique Shortestpath((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->({_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})),Shortestpath(((usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}))) Detach Delete Reduce(@usn5=0.e0 Contains #usn7,`` In {usn1} Ends With {`6esn`} Ends With 123456789|$999 In 999)[Allshortestpaths(({`4esn`:#usn8 Is Null})-[:usn1{_usn4:0[{usn2}..][usn1..],`3esn`:12 Starts With 7 Starts With $`5esn`}]-(`7esn` :`3esn`:`6esn`)<-[`6esn`?:#usn8|`2esn`*..{`5esn`:@usn5 =~'s_str'}]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}))..{@usn6:0.0 Is Not Null Is Not Null,#usn7:\"d_str\"[{`8esn`}..]}],Single(_usn3 In True[7][$999]) Is Not Null Is Not Null Union All Load Csv With Headers From Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})] As @usn5 Fieldterminator \"d_str\" Return Distinct *,(#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..],[`1esn` In $12 Is Not Null Where {`3esn`}[{`5esn`}]|True Is Not Null Is Not Null] Ends With Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End Ends With `3esn`(Distinct 1.e1 =~$usn2,0X0123456789ABCDEF Is Null Is Null) As `5esn` Limit `2esn`(Null In .e0)[_usn3(Distinct {@usn6}[$`7esn`..][False..])..[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]]]"), + octest_legacy:ct_string("Start _usn3=Node( {usn2}) ,`8esn`=Rel( {`7esn`})Where {0} Is Null Detach Delete 0.12 Ends With {1000} Ends With `6esn`,$@usn5[usn2..][$0..] Return Distinct *,.e0 =~{`8esn`} =~$999 As #usn7,010 In $`5esn` In 0 As `6esn` Order By $usn1 In 0.12 In $`` Descending,Count ( * ) Contains 12 Descending Skip $`` In `7esn` Limit [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]][Shortestpath(((`1esn` :`7esn`)<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})))..]"), + octest_legacy:ct_string("Create Unique @usn5=Allshortestpaths(((_usn3 {@usn5:.e12 =~.e0})<-[`3esn` *..010]-({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))) Detach Delete {999}[$123456789..][12..],$`6esn`[..1.e1][..1e1]"), + octest_legacy:ct_string("Foreach(#usn7 In {_usn3}[`3esn`..$#usn8]| With Distinct (`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] Order By `1esn`[..00][..{7}] Ascending,`6esn` In Null Descending,{`3esn`} Is Null Descending Skip Case When .e1[@usn5]['s_str'] Then 123456789 Starts With {@usn6} Starts With $12 End Contains [`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`] Contains {@usn5:12 Is Not Null,`2esn`:$999 In 999} Where @usn5 Is Not Null Is Not Null) Union All With *,0.e0 Contains #usn7 Order By $_usn4[9e0..] Asc,12 In 999 Descending Limit {`2esn`} Starts With @usn6 Foreach(`1esn` In 0x0 =~123.654 =~{999}| Create Unique @usn5=((`4esn` {`8esn`:0Xa[@usn5][{`7esn`}]})<-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(`3esn` :#usn7)<-[`1esn`?:`4esn`|:#usn7 *..01234567]-(#usn8 {#usn7:$1000 Is Not Null Is Not Null})) Match #usn8=(({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`)),usn2=(`4esn` {_usn4:12 Starts With {_usn4} Starts With $#usn8,_usn4:$@usn5[$`4esn`][$@usn6]})<-[? *0X7..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Using Index @usn6:`4esn`(`6esn`))"), + octest_legacy:ct_string("Unwind 0X0123456789ABCDEF[7...e0][`1esn`..usn2] As `` Remove Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn1 Starts With {_usn3}|{123456789}[12..][$12..]).usn1?,[$``[..1.e1][..12],7 Contains $`` Contains {`6esn`}].`7esn`!"), + octest_legacy:ct_string("Drop Constraint On(@usn6:usn1)Assert Exists({`4esn`:$`5esn` Is Not Null}.`1esn`)"), + octest_legacy:ct_string("Detach Delete {_usn3}[$usn2..] Union All Start `4esn`=Rel:`1esn`(@usn5={`5esn`}) ,`4esn`=Node(01234567,0Xa,07)Where @usn6[{0}..] Union All Remove [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12].`2esn`,[usn1 Contains $7 Contains $``,$@usn5 In 's_str' In $12,$`1esn` Is Not Null Is Not Null].usn2!,All(`1esn` In `3esn`[07..] Where 999 Starts With 's_str').#usn8! Remove Extract(`` In {`1esn`} Starts With @usn6 Where Null[{_usn4}..]|0Xa Contains {`7esn`} Contains $999).`5esn`!,All(`5esn` In $`2esn`[12.e12][$@usn5] Where {999} Starts With {12}).`2esn`,Reduce(`3esn`={7} Starts With $usn1 Starts With 1.0,_usn3 In True[7][$999]|123.654[{@usn5}..123.654][1.0..$12]).#usn8 Foreach(`` In {123456789} =~01234567 =~`3esn`| With (`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] Order By `1esn`[..00][..{7}] Ascending,`6esn` In Null Descending,{`3esn`} Is Null Descending Skip Case When .e1[@usn5]['s_str'] Then 123456789 Starts With {@usn6} Starts With $12 End Contains [`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`] Contains {@usn5:12 Is Not Null,`2esn`:$999 In 999} Where $``[..1.e1][..12] Start @usn5=Node:``(#usn7=\"d_str\") ,#usn8=Relationship:`4esn`(``='s_str')Where $``[..1.e1][..12])"), + octest_legacy:ct_string("Remove `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null).`3esn`! Delete 0e0[..$@usn5][..$`8esn`] Union Remove Shortestpath((_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}})).#usn8?"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`4esn`)Assert Exists(Shortestpath(((:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})<-[`5esn`:usn2|#usn7 *999]-(:`8esn`:@usn5)<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(`1esn` :@usn6))).#usn8)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:#usn7)Assert Exists(exists(Distinct #usn8 =~{999},$`2esn` Ends With 0.12 Ends With .e1).@usn5?)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:_usn4)Assert Exists([#usn7 In 123.654 Starts With $`` Where _usn3 Contains .e0 Contains {usn2}|$usn1 In 01234567 In .e1].`8esn`!)"), + octest_legacy:ct_string("Unwind $usn2 As `5esn` Union Merge `2esn`=Allshortestpaths((((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})<-[_usn4?:usn2|#usn7{_usn4:{`1esn`} In 12.e12 In 9e1}]-(:usn2:`2esn`)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]})))) On Create Set Case $`1esn`[07] When Null =~12e12 Then $``['s_str'..][0x0..] Else Null Is Null Is Null End.usn2? =0X0123456789ABCDEF[9e12],`4esn`+=12.e12[$`4esn`..],`8esn` =$usn1[0X7] On Match Set [1.e1 =~$usn2,$`5esn`[`1esn`][0X0123456789ABCDEF],$0[`7esn`]].`5esn`? =@usn5[$12..\"d_str\"],_usn3+=$`1esn`[$12][Count ( * )]"), + octest_legacy:ct_string("Load Csv With Headers From [`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]][..{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}][..`4esn`(123.654[$`1esn`..Null][1000..{_usn3}])] As @usn5 Fieldterminator \"d_str\" Union Unwind Case {`1esn`} Is Not Null When 9e12 =~123456789 =~$999 Then 999[12.0..][#usn7..] When `4esn` Contains #usn8 Contains 7 Then `2esn` Starts With `` Starts With 1e1 Else Count(*) Ends With $`` Ends With {7} End In Reduce(`8esn`=00[..$123456789][..$`5esn`],`` In {`1esn`} Starts With @usn6|False[999]) In Reduce(``=12 Starts With $#usn7,`6esn` In 00|False Contains $#usn8 Contains 9e1) As `` Foreach(`2esn` In Case When 0X0123456789ABCDEF[7...e0][`1esn`..usn2] Then $1000 Starts With $`8esn` Starts With {`5esn`} When usn2 =~0X7 =~{#usn7} Then {`2esn`} In $123456789 In True End[Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`)]| Create Unique usn2=((:`7esn`{999})-[? *01..07]->({_usn4:{usn1} =~123.654 =~\"d_str\"})) With *,$@usn5 In 's_str' In $12 As `2esn`,Count ( * )[{12}..{@usn5}][{#usn8}..Null] As `5esn` Order By {12} Contains 9e0 Descending,`5esn`(0X0123456789ABCDEF[9e12])[[`8esn` In $12[{7}..0X0123456789ABCDEF] Where $``['s_str'..][0x0..]]..None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`8esn`}[0X7][$`3esn`])][Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000})..Case 7 Is Null Is Null When usn1 Contains $7 Contains $`` Then 12e12 Is Not Null End] Descending Skip [usn1 In 12.e12 In {0} In 9e1 Where {usn1} In Count ( * )][{_usn3:.e1 Ends With 0Xa Ends With .e1,`2esn`:12e12 Starts With `1esn` Starts With usn2}..] Where $#usn7[..@usn6][..$0])"), + octest_legacy:ct_string("Unwind None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] As _usn3 Start `4esn`=Rel:`7esn`(usn2='s_str') Create Unique _usn3=(((`7esn` :#usn7{`5esn`:_usn4 Is Null Is Null})-[`2esn`:`2esn`{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})-[{``:\"d_str\"[{`8esn`}..]}]-(:`4esn`:@usn6{@usn6:Count(*)[..``][..#usn8]}))),#usn8=(((:@usn5{@usn6:{7} Contains $123456789})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})-[`3esn`:`6esn`{`3esn`}]-(#usn8 :`6esn`:`8esn`{`1esn`:9e12 Is Not Null,_usn4:0X0123456789ABCDEF[$`2esn`..][`2esn`..]})))"), + octest_legacy:ct_string("Drop Constraint On()-[`4esn`:`8esn`]-()Assert Exists(Reduce(usn1=$_usn3[{999}],`2esn` In {999} Is Not Null|$``['s_str'..][0x0..]).`8esn`!)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:_usn4)Assert Exists(Shortestpath((:_usn3{@usn5:.e1[..\"d_str\"],#usn8:{`1esn`}[`6esn`..12e12]})<-[`7esn`?*..]-(usn1 :`1esn`{#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]})).@usn6!)"), + octest_legacy:ct_string("Create Constraint On(usn1:`7esn`)Assert Exists({``:0e0[..$@usn5][..$`8esn`],`7esn`:$#usn7 =~{12} =~False}.usn1?)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`8esn`)Assert Exists(All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where False Contains 0.e0 Contains Count(*)).@usn6)"), + octest_legacy:ct_string("Start @usn6=Relationship:_usn3({`2esn`}) ,`7esn`=Node:usn2(usn2='s_str')Where 7 Contains $`` Contains {`6esn`} Remove [$7 Is Not Null,Count(*) Ends With 123.654 Ends With $12,$`1esn`[07]]._usn3,[9e12 Ends With 123456789].`1esn`!,[999 Ends With .e12 Ends With .e1,{_usn3}[..$`8esn`]].@usn6? Union Remove {usn2:_usn4 Is Null}.`7esn`,Case When ``[{123456789}..] Then `1esn` =~1000 =~1000 End._usn4?,{`4esn`}.`2esn`? Unwind $0 Is Not Null As usn2 Start usn1=Node:`6esn`({`8esn`}) Where 07[..`6esn`][..'s_str']"), + octest_legacy:ct_string("Create Constraint On(#usn7:@usn5)Assert Reduce(#usn8=$`4esn` Starts With 0e0,_usn3 In True[7][$999]|1e1[1.e1..][123.654..]).`2esn` Is Unique"), + octest_legacy:ct_string("Remove Reduce(#usn8=$#usn7 =~{12} =~False,`1esn` In `3esn`[07..]|{usn2}[$`4esn`]).`4esn`,(_usn4 :#usn7{`8esn`:$999 Contains {7}})<-[#usn7{#usn8:{`1esn`} Is Not Null}]->(`8esn` {`3esn`:'s_str'[..0X7]}).``!,Extract(`6esn` In 00 Where 0Xa[0e0..{#usn7}]).@usn6! Unwind Count ( * )[\"d_str\"][_usn3] As `5esn` Union Load Csv With Headers From 's_str'[$usn2][Count(*)] As `5esn` Remove {`5esn`:01234567[..9e1]}.#usn8!,[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $`8esn`[..$999][..0]].@usn6!,None(#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}).`6esn`"), + octest_legacy:ct_string("Drop Constraint On(_usn4:_usn4)Assert Exists(Reduce(`2esn`=01234567 In $123456789,`1esn` In $12 Is Not Null|#usn7 =~{`4esn`} =~123456789).`7esn`)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`5esn`)Assert Exists(None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 123456789 Is Not Null Is Not Null).`4esn`!)"), + octest_legacy:ct_string("Load Csv With Headers From 123.654 Starts With $`` As `7esn` Create (((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}))),(((`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})-[_usn3?*..{#usn7:#usn8 =~{999},`8esn`:{_usn3}[`3esn`..$#usn8]}]->({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})-[@usn6 *07{`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}]->({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]}))) Load Csv With Headers From 0.12[999][$#usn8] As usn1 "), + octest_legacy:ct_string("With 2.12 =~0x0 =~_usn4 Limit [123456789[0..]] Ends With Any(`1esn` In $12 Is Not Null) Ends With @usn5(Distinct 1.e1[{#usn8}],123.654 Ends With usn2 Ends With 0) Where `3esn`[..{_usn4}][..{@usn5}] Create `7esn`=Allshortestpaths(((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1))),@usn6=((`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]})<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)<-[`1esn`?:`4esn`|:#usn7 *..01234567]-(#usn8 {#usn7:$1000 Is Not Null Is Not Null})) Union Optional Match ((@usn6 :#usn7{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})-[`2esn`?:`` *999{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12}]-(usn2 {`7esn`:{usn1}[$`8esn`..0.0]})) Where `3esn`[..{_usn4}][..{@usn5}] Remove (_usn4 :#usn8{`5esn`})-[?*..{`1esn`:$`1esn`[07..][9e12..],@usn6:{7} Starts With $usn1 Starts With 1.0}]->(:`3esn`:`6esn`).usn2?,usn2($123456789[$`5esn`][$_usn4],#usn7 Starts With $999).@usn5? Create Unique `6esn`=(`4esn` {`2esn`:@usn5[$12..\"d_str\"]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]-({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})"), + octest_legacy:ct_string("Create Unique (((:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})<-[:``]-(_usn3 :`7esn`)<-[ *0xabc..7]->({#usn7:123456789[0..]}))),((:#usn8{#usn8:`3esn` Is Not Null Is Not Null})) Union Match Allshortestpaths((({`5esn`:0Xa[0e0..{#usn7}]})<-[?:``]-(`7esn` :`3esn`:`6esn`))),(usn1 :usn2:`2esn`{`1esn`:{123456789}[12..][$12..]}) Using Index `1esn`:`4esn`(`1esn`) Where $_usn3[{999}]"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`6esn`)Assert Exists([$`7esn` Contains {`1esn`} Contains 9e12,Count(*)[010..][#usn7..]].`6esn`)"), + octest_legacy:ct_string("Merge #usn8=((#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]})) On Match Set Reduce(#usn8=Count ( * )[..12][..{@usn6}],`` In {`1esn`} Starts With @usn6|@usn6[{0}..]).@usn5 =$#usn7 =~{12} =~False On Match Set @usn5 =`2esn`[$1000..9e12][{#usn8}..{7}] Create Shortestpath(((_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})))"), + octest_legacy:ct_string("Drop Index On:`6esn`(``)"), + octest_legacy:ct_string("Foreach(_usn3 In 123456789[12..$`4esn`]| Detach Delete {`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}[Case When 1.e1[0X0123456789ABCDEF..] Then `6esn`[..{999}] When {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`] Then $#usn7 Ends With 0.12 Ends With {@usn6} End..Filter(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null)],Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})]) Unwind `5esn`[..9e0][..01234567] As @usn5 Create Unique @usn6=Shortestpath(((usn1 :`5esn`:@usn5)-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:usn2:`2esn`{usn1:$7 Is Null Is Null})-[? *01..07]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}))),((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]})) Union All Optional Match Allshortestpaths(({`4esn`:#usn8 Is Null})) Using Index `3esn`:#usn8(`2esn`) Using Scan `1esn`:`3esn` Unwind `7esn`[{7}..@usn5] As @usn5 Union All Merge `8esn`=((`5esn` )) On Match Set (:usn1:_usn4{`4esn`:#usn7 Starts With 1000 Starts With .e1})-[`7esn`]->(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}).``? =$`2esn`[{usn1}..],None(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e12 =~$_usn4).`7esn`! =Reduce(@usn5=True[7][$999],usn1 In 12.e12 In {0} In 9e1|.e12 =~$_usn4)[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])][[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]]] On Create Set _usn4+=0.12[Count(*)..][$#usn7..],None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]).@usn6! =[$`1esn`[$12][Count ( * )],9e1 Ends With $@usn5 Ends With $123456789] Is Not Null Is Not Null Start @usn6=Node:@usn5({usn1}) ,#usn8=Node:`6esn`(#usn8={@usn5})Where {7} Starts With $usn1 Starts With 1.0"), + octest_legacy:ct_string("With Distinct *,$@usn5 In 's_str' In $12 As `2esn`,Count ( * )[{12}..{@usn5}][{#usn8}..Null] As `5esn` Order By $@usn5[..usn2][..$#usn7] Descending,7[..$`1esn`][..00] Desc,{0}[{@usn6}..{123456789}] Asc Limit {`4esn`:`7esn` Contains `5esn` Contains 0X7} Ends With Allshortestpaths((`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4)) Where ``[..0X0123456789ABCDEF] Union All Unwind 9e0[#usn8] As `2esn` Union All Delete $usn2,`8esn` Is Null Is Null"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:`2esn`)Assert Exists(Case When {@usn6} Contains 123.654 Contains 01 Then #usn8 Is Not Null Else 0.12 Ends With {1000} Ends With `6esn` End._usn3?)"), + octest_legacy:ct_string("Match `5esn`=Shortestpath(((#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]}))),@usn6=((usn1 :`8esn`:@usn5{`1esn`:{#usn7} Contains 0.0 Contains $0,`2esn`:.e12[010..$123456789]})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})<-[?:usn2|#usn7]->(#usn8 :#usn7)) Using Index usn2:``(#usn8) Using Join On ``,usn1,usn2 Where @usn5 In 1e1 Start `7esn`=Node:usn1({999}) Delete 1000 Is Not Null"), + octest_legacy:ct_string("Create Constraint On(`5esn`:#usn7)Assert [`5esn` In $`2esn`[12.e12][$@usn5] Where `6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]].`3esn`! Is Unique"), + octest_legacy:ct_string("Detach Delete {@usn5}[..{_usn4}][..$@usn5],0Xa Is Not Null Is Not Null,{usn2}[`6esn`..01234567] Unwind #usn8['s_str'..][123.654..] As _usn4 Create _usn4=((`2esn` :@usn6)-[_usn3?:@usn6|``]-(usn2 )<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})),`5esn`=Allshortestpaths(((:_usn4)<-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]->(_usn4 {_usn3:`1esn`[..00][..{7}]})))"), + octest_legacy:ct_string("Load Csv With Headers From {`7esn`:{999} Starts With {12},`3esn`:00} =~[0X0123456789ABCDEF[$`5esn`..],#usn7 Ends With $#usn7 Ends With {`8esn`}] =~[{12} =~0.e0 =~{_usn3},$#usn7 =~{12} =~False,1000 Is Null] As `6esn` Fieldterminator 's_str' With Distinct Reduce(#usn7={`1esn`} Starts With `4esn` Starts With {0},`3esn` In 123.654[1e1..][{#usn8}..]|9e12[$`5esn`]) As `3esn` Skip \"d_str\"[..0.e0] Limit ({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..`2esn`(Distinct #usn8[`7esn`..])][..[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]]] Create Unique Allshortestpaths((#usn8 :`7esn`))"), + octest_legacy:ct_string("Match _usn4=Allshortestpaths(((:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})-[?:#usn8|`2esn` *999{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({@usn6:#usn8[$0..False][$`1esn`..$#usn7]})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}))),#usn8=((`2esn` :@usn6)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)<-[`1esn`:`8esn`|:_usn4 *123456789..0X7$12]->(:`1esn`{`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})) Using Index usn1:usn1(`4esn`) Using Join On `3esn` Start @usn6=Relationship:`1esn`({@usn5}) Union All Load Csv From Filter(`1esn` In $12 Is Not Null Where {@usn5}[1e1..][9e1..]) Starts With [{@usn6} Contains 123.654 Contains 01,$`2esn` Starts With {`8esn`} Starts With {usn1}] Starts With All(`1esn` In $12 Is Not Null Where 12.e12[{@usn5}..][9e1..]) As `5esn` Remove {_usn4:12.e12[2.12..][0xabc..],_usn4:$_usn4[{``}..][1e1..]}.`5esn`!,[$7[{`1esn`}],$_usn4[$`4esn`..$12]].`2esn`? Union Remove Filter(`1esn` In `3esn`[07..] Where {0} =~12.0).``!,{usn2:$`5esn`[`4esn`][_usn3]}.@usn6?"), + octest_legacy:ct_string("Create Constraint On(@usn5:@usn5)Assert Exists(Extract(_usn4 In 0.0[..{999}][..0.0] Where 12 Ends With 01|Count(*) Is Not Null)._usn3?)"), + octest_legacy:ct_string("Detach Delete @usn5 In 1e1,[$@usn6 Contains `7esn`,$_usn4[{``}..][1e1..]][..{usn1:0e0[0X0123456789ABCDEF..010][$@usn6..010]}][..usn2(Distinct 1e1[..01],$123456789 Is Not Null)] Union Create Unique #usn7=Allshortestpaths(((#usn8 :@usn5)<-[_usn3{@usn6:{7} Contains $123456789}]->(:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1}))),usn1=Shortestpath((`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})) Create #usn8=(:`5esn`:@usn5{usn1:$#usn7[`5esn`]})<-[?:`4esn`|:#usn7]->(_usn4 :#usn8{`5esn`})-[`4esn`?:_usn4|:usn1{@usn6:$#usn7 Ends With 0.12 Ends With {@usn6}}]->(#usn8 {usn1:$123456789 Starts With `5esn`}),Shortestpath((:`2esn`{`6esn`:@usn6[{0}..]})<-[usn2?:usn2|#usn7]->(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})) Union Create Unique (((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),_usn4=Allshortestpaths((usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})) Merge `3esn`=(`3esn` :`8esn`:@usn5{@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]}) On Match Set `7esn`+=False[..[`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]|\"d_str\" Contains @usn6 Contains 12.e12]][..Case 7 Is Null Is Null When usn1 Contains $7 Contains $`` Then 12e12 Is Not Null End],#usn8 =.e12[\"d_str\"..][.e1..]"), + octest_legacy:ct_string("Foreach(#usn8 In 0.0 Is Not Null| Optional Match #usn7=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Where #usn7 Starts With 1000 Starts With .e1 Match `5esn`=Shortestpath((_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null})<-[@usn5?:`8esn`|:_usn4 *0X0123456789ABCDEF{usn1:False Contains $#usn8 Contains 9e1}]->({@usn6:$usn1[0X7],`3esn`:$7[$`3esn`]})),`8esn`=((@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})) Using Index @usn5:usn2(`6esn`)) Create Unique usn1=((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})),`7esn`=(`3esn` :`4esn`:@usn6{`5esn`:$`2esn`[$usn2..][{``}..]})-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]-(#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[@usn6?:`2esn`]->(_usn4 :`6esn`:`8esn`$``) Union All Unwind Null[010..][{``}..] As `3esn` Remove Case #usn8[`7esn`..] When 0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] Then {0}[False..@usn5] End.usn1,None(_usn3 In {@usn5}[..#usn7] Where {@usn6} In {#usn7} In 12.e12).`8esn`,({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[?:@usn6|`` *1000]->(:_usn4{`8esn`:12e12 Starts With `1esn` Starts With usn2})-[`2esn`:`2esn`{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})._usn3! Remove Extract(_usn4 In `2esn` Where 123.654 Starts With $``).usn2 Union Merge `2esn`=Shortestpath(((_usn3 {usn1:0Xa[0e0..{#usn7}],`1esn`:.e0[True..Count ( * )][#usn7..0X7]})-[?:#usn7|`2esn` *0x0..]->(usn1 :#usn8{``:$7[{`1esn`}]})-[#usn7? *..0Xa{usn1:$`6esn`[`8esn`][0.0],`5esn`:$`6esn`[{`3esn`}..12]}]-(#usn7 :#usn8))) On Create Set {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}.`7esn`! =$usn1[False][999] On Match Set _usn3 ={#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null,Reduce(usn2=.e1[..\"d_str\"],#usn7 In 123.654 Starts With $``|0Xa[$1000..$123456789]).@usn6 ={`2esn`}[Count(*)],`2esn`+=[{usn2}[$`4esn`]] Starts With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null] With `7esn` Ends With $_usn3 Ends With usn2 As _usn4,1000 Is Null Is Null Order By \"d_str\"[Count ( * )..`6esn`] Desc Skip 9e1 Ends With $@usn5 Ends With $123456789 Limit $`8esn`[0e0..] Where {999} Starts With {_usn4} Starts With 00"), + octest_legacy:ct_string("Create Constraint On(@usn5:`4esn`)Assert [_usn4 In `2esn` Where 0Xa Contains {`7esn`} Contains $999].`1esn`! Is Unique"), + octest_legacy:ct_string("Return *,Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where `7esn` Starts With 0X7 Starts With $`7esn`) Is Not Null As `2esn` Order By Null[010..][{``}..] Desc,`3esn`[_usn4..{0}][`5esn`..usn2] Desc,{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}[Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))..] Ascending Skip Null =~12e12 Union All Delete Shortestpath(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})))[[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7[`5esn`]|{_usn3}[{0}]]..],{`3esn`}[{`5esn`}] Create Unique #usn8=((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})),Shortestpath(((`1esn` :`4esn`:@usn6))) Union All Foreach(`3esn` In 's_str'[_usn4..0x0]| Optional Match Shortestpath((usn1 :usn1:_usn4)),`8esn`=Allshortestpaths(((`8esn` :@usn6))) Using Index #usn7:usn1(``) Using Scan #usn7:_usn3 Where $`` In 0 In {1000})"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:_usn3]-()Assert Exists(Allshortestpaths((`6esn` :`7esn`)-[:_usn3|`8esn` *12..{`8esn`:Count(*)[.e12..],`5esn`:{#usn8}[12.0][$@usn6]}]-(`1esn` {_usn4:`3esn`[_usn4..{0}][`5esn`..usn2]})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`)).#usn8)"), + octest_legacy:ct_string("Create Constraint On()-[@usn5:_usn3]->()Assert Exists({`1esn`:$123456789[..$7][..$`6esn`]}.`4esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`3esn`)Assert Single(_usn4 In 0.0[..{999}][..0.0] Where #usn8 Is Null).`7esn`! Is Unique"), + octest_legacy:ct_string("Delete $12 Starts With $`8esn` Foreach(@usn6 In 1.e1[0xabc..]| Delete .e1[@usn5]['s_str'],Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..] Unwind {12}[$`3esn`] As `6esn`) Union All Start `4esn`=Node:`4esn`(\"d_str\") Where {#usn8}[#usn7..{`2esn`}] Detach Delete $`` In \"d_str\",$12[{7}..0X0123456789ABCDEF] Foreach(#usn8 In _usn4[..``][..{``}]| Return Distinct *,{#usn7} Ends With Extract(`1esn` In 0.e0 =~`1esn` =~`6esn`|.e1 Ends With 0Xa Ends With .e1) As `5esn`,123456789 Is Not Null Is Not Null As #usn7 Skip {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Detach Delete Single(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2])[(_usn3 {usn1:0Xa[0e0..{#usn7}],`1esn`:.e0[True..Count ( * )][#usn7..0X7]})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1})..],`6esn`[00..][$123456789..],$usn2 Ends With $`5esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[@usn6:#usn7]-()Assert Exists({usn1:999[12.0..][#usn7..],@usn5:123.654[$`1esn`..Null][1000..{_usn3}]}.`6esn`!)"), + octest_legacy:ct_string("Match _usn4=((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null})<-[usn2 *..01234567{`1esn`:@usn5 =~'s_str',`8esn`:{999} Starts With {_usn4} Starts With 00}]->(usn1 {`5esn`})<-[:`8esn`|:_usn4 *1000]->(`5esn` $`8esn`))),((({usn2:$`5esn`[`4esn`][_usn3]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})-[_usn3 *..01234567$`5esn`]->({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null}))) Using Index usn1:``(#usn7) Using Index `3esn`:#usn8(`2esn`) Where 7 Contains $`` Contains {`6esn`} Optional Match Allshortestpaths((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Optional Match _usn4=Allshortestpaths(((:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})-[?:#usn8|`2esn` *999{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({@usn6:#usn8[$0..False][$`1esn`..$#usn7]})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null}))),`6esn`=Allshortestpaths(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})-[:`1esn`|:`3esn` *..01234567{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(#usn7 {``:0x0 =~123.654 =~{999}})) Union Remove Allshortestpaths((({#usn7:#usn8 =~{999}})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2}))).@usn6,_usn4:`8esn`:@usn5 Start #usn7=Relationship:usn2(_usn3='s_str') ,`4esn`=Node:`7esn`(``={usn2}) Match ((`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}})-[?:`1esn`|:`3esn` *999{usn1:0[{@usn5}..][7..],`7esn`:{``}[_usn4..$`1esn`]}]->(`3esn` :`8esn`:@usn5{@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})),(({`4esn`:_usn4 Is Null Is Null,@usn6:{`5esn`} Contains 's_str' Contains 9e1})-[`6esn`:`8esn`|:_usn4]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})) Using Scan `8esn`:#usn7 Using Scan `1esn`:`4esn` Union Detach Delete {@usn5}[..{_usn4}][..$@usn5],Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..] Optional Match Allshortestpaths(((({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2})<-[:_usn4|:usn1 *07]-(#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})))) Where 1000 Is Not Null Unwind $`` In `7esn` As `7esn`"), + octest_legacy:ct_string("Load Csv From Reduce(usn1=1e1 Contains usn2,`8esn` In $12[{7}..0X0123456789ABCDEF]|#usn7 =~{`4esn`} =~123456789) Contains `3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]) As @usn6 Fieldterminator 's_str' Union Unwind All(usn1 In 12.e12 In {0} In 9e1 Where {12}[usn2])[Reduce(``=$@usn5[..usn2][..$#usn7],`6esn` In Count(*) Ends With $`` Ends With {7}|{`4esn`}[$123456789..])..][{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]}..] As @usn6"), + octest_legacy:ct_string("Foreach(usn2 In usn2(Distinct 0Xa[..{1000}][..$#usn7])[Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000|\"d_str\"[{`8esn`}..])][(`4esn` :`1esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]->(#usn7 )]| With Distinct *,`7esn` Contains `5esn` Contains 0X7 As `1esn` Order By usn2 Ends With Count ( * ) Ends With $@usn6 Asc,.e1 Ends With 0Xa Ends With 00 Ascending Where 123.654 Starts With $``) Foreach(`4esn` In `6esn`[$0][#usn8]| Detach Delete $`` In `7esn`) Match #usn8=Allshortestpaths((({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))),Allshortestpaths((((:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})))) Using Scan `4esn`:_usn4 Union All Foreach(usn1 In {`2esn`}[@usn5..][{``}..]| Load Csv From {_usn3}[`3esn`..$#usn8] As `4esn` Fieldterminator 's_str') Union Remove `3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]).@usn6,Reduce(`4esn`=$`7esn` Contains {`1esn`} Contains 9e12,`` In {usn1} Ends With {`6esn`} Ends With 123456789|.e12[$7..][{`6esn`}..]).usn1?"), + octest_legacy:ct_string("With Distinct #usn7[..12e12] Limit {@usn5} Starts With 1.0 Starts With 00 Where $1000 Is Not Null Is Not Null Merge _usn4=Shortestpath(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})-[:`1esn`|:`3esn` *..01234567{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(#usn7 {``:0x0 =~123.654 =~{999}})) On Match Set usn2 =#usn7 Starts With $999,usn1+={@usn6}[True..{_usn3}] On Create Set @usn5+=$@usn6 Ends With 01 Ends With 999,`3esn` =0.e0 =~`1esn` =~`6esn` With Distinct {#usn7} Contains @usn5 Contains Count ( * ),01 Starts With {999} Starts With $`2esn`,$usn1[@usn6][#usn7] As `6esn` Order By Any(`6esn` In 00 Where 0X7 Starts With {999} Starts With 12e12) Starts With (`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}) Starts With {`8esn`:{#usn7} Contains @usn5 Contains Count ( * )} Ascending,`8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]] Desc Limit None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] Where {`1esn`} Starts With `4esn` Starts With {0} Union All Load Csv With Headers From @usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2) As @usn6 Union All Create `1esn`=((`4esn` :`2esn`{`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})-[:`1esn`|:`3esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->({`2esn`:#usn8 Is Null,`6esn`:123456789 Ends With usn1 Ends With usn2})<-[#usn8? *0X7..0Xa$`2esn`]-({`7esn`:123456789[0..]})),usn1=Allshortestpaths((`2esn` :`5esn`:@usn5)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}))"), + octest_legacy:ct_string("Foreach(@usn6 In (:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})-[`1esn`:`1esn`|:`3esn` *01..07{`3esn`:123456789 Is Not Null Is Not Null}]-(`1esn` {@usn5:$usn1 In 0.12 In $``})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Reduce(`5esn`=.e12[$#usn8..@usn6],usn1 In 12.e12 In {0} In 9e1|Count(*)[.e12])| Load Csv With Headers From $`3esn` In 9e12 In `` As `6esn` Fieldterminator 's_str' Detach Delete {usn2:{`1esn`} Is Not Null} Is Null,0.0 In `6esn` In $@usn5,[{usn2}[$`4esn`]] Starts With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null]) Create Unique @usn5=(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})<-[?:`6esn` *01..07]->(:usn2:`2esn`{`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})-[? *1000]->(`5esn` {usn2:$#usn7 Starts With 9e0 Starts With 2.12}) Union Optional Match `5esn`=Allshortestpaths(((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]}))) Using Index usn1:`3esn`(`3esn`) Using Scan `2esn`:`2esn` Where Count(*) Is Not Null"), + octest_legacy:ct_string("Create Constraint On(@usn6:`3esn`)Assert None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Contains 123.654 Contains 01).`5esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[_usn4:`3esn`]-()Assert Exists(Filter(`2esn` In {999} Is Not Null Where #usn8 =~{_usn3} =~``).`6esn`!)"), + octest_legacy:ct_string("Create Constraint On(@usn5:`6esn`)Assert Allshortestpaths(({`3esn`:9e1 =~999})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->(usn1 {`5esn`})).`6esn`? Is Unique"), + octest_legacy:ct_string("Unwind 9e1[$_usn4..0xabc] As `8esn` Create ``=((`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6)<-[#usn7]-(@usn6 )),`6esn`=Allshortestpaths(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})-[:`1esn`|:`3esn` *..01234567{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(#usn7 {``:0x0 =~123.654 =~{999}})) Return Distinct $@usn6 Ends With 01 Ends With 999 Skip {_usn3} Contains 9e0 Contains $999 Limit Allshortestpaths(((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}))) Starts With All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`)"), + octest_legacy:ct_string("Create ((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})-[:`5esn`]-({`7esn`:@usn5[..$@usn5][..0Xa]})-[@usn5? *0x0..{`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}]-(_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null})) Match Shortestpath((`7esn` {`3esn`:0.0 =~12.e12 =~1.0,`1esn`:$usn1 Starts With {_usn3}})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]-({`7esn`:123.654 Ends With usn2 Ends With 0})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})) Using Scan _usn3:`4esn` Using Scan `2esn`:`1esn` Where $123456789 Starts With $123456789 Starts With Count ( * ) Load Csv With Headers From 12[12e12] As _usn4 Fieldterminator \"d_str\" Union All Foreach(`6esn` In _usn3 =~123.654| Create Unique ((`5esn` :_usn3)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})),``=(_usn4 :#usn7{`8esn`:$999 Contains {7}}) Remove (usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[`7esn`? *0X0123456789ABCDEF{@usn6:12 Starts With {_usn4} Starts With $#usn8}]-(:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}})<-[``{`3esn`:{`3esn`}[{`5esn`}]}]-({@usn5:``[{123456789}..]}).`5esn`) Merge Allshortestpaths(((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0}))) On Create Set None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]).@usn6! =0X0123456789ABCDEF[$`5esn`..],(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[_usn3?:`1esn`|:`3esn`{`3esn`:$@usn6 Contains $`7esn` Contains 1e1,@usn5:True Starts With $`4esn` Starts With 12e12}]-(`3esn` :_usn3{_usn3:{_usn3} Contains 9e0 Contains $999,`2esn`:{_usn3}[$usn2..]})<-[`3esn`?*{#usn8:$`1esn`[..{_usn3}]}]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}).`8esn`? =$12 Is Not Null Create (((_usn3 :`3esn`:`6esn`)<-[`2esn`?{``:123.654 Starts With $``,``:{``} Ends With .e12 Ends With 0.e0}]-(:_usn3{0})<-[?:#usn8|`2esn` *01..07]->(:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]}))),`4esn`=((`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:#usn7{_usn3:12e12 Ends With `6esn` Ends With {`3esn`}})-[_usn4?:`3esn`|:@usn5]->(`4esn` {`7esn`:12.e12 In $0 In $0,@usn5:_usn4[Count(*)]})) Union All Start @usn6=Rel:usn1(@usn6=\"d_str\") Where @usn5 Is Not Null Is Not Null Create Unique ((({usn2:$`5esn`[`4esn`][_usn3]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})-[_usn3 *..01234567$`5esn`]->({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})))"), + octest_legacy:ct_string("Foreach(`` In Extract(`6esn` In 00 Where 9e1 Ends With $@usn5 Ends With $123456789) Ends With All(usn1 In 12.e12 In {0} In 9e1 Where {usn1} In Count ( * ))| Match _usn4=Shortestpath((`6esn` :`2esn`{`7esn`:#usn8 =~{999}})),(((usn2 :``)-[@usn5?:#usn7|`2esn`{`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]}]->(`2esn` :@usn6{7})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`))) Using Index ``:`1esn`(_usn4) Using Index _usn3:_usn3(`6esn`) Where 123.654[1e1..][{#usn8}..]) Union All Merge usn2=Allshortestpaths((({`1esn`:{123456789}[12..][$12..]})<-[``{_usn4:.e1[..\"d_str\"]}]-({@usn5:Count ( * ) Is Null})<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4}))) On Create Set Any(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where `2esn` Starts With `` Starts With 1e1)._usn3! =$@usn6[$0..usn1][0X0123456789ABCDEF..$999],`4esn`+={#usn7} Ends With 12e12 Ends With {123456789} Delete $`1esn` Starts With 9e1 Starts With 1.e1,$@usn6[$0..usn1][0X0123456789ABCDEF..$999],[`6esn` In Count(*) Ends With $`` Ends With {7} Where {`3esn`} Ends With `1esn` Ends With $@usn6][None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where {`4esn`}[..{`4esn`}])..] Union With Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF) Ends With Case {`2esn`}[..{@usn6}][..1.e1] When Null Is Null Is Null Then #usn7 Contains {`3esn`} Contains $`6esn` When 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Then $usn1[..'s_str'][..$#usn8] End Ends With Filter(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789}),@usn6 Contains Null As `2esn`,00 =~0.e0 =~$`8esn` Order By `5esn`(0X0123456789ABCDEF[9e12])[[`8esn` In $12[{7}..0X0123456789ABCDEF] Where $``['s_str'..][0x0..]]..None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`8esn`}[0X7][$`3esn`])][Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000})..Case 7 Is Null Is Null When usn1 Contains $7 Contains $`` Then 12e12 Is Not Null End] Ascending,#usn7[9e0] Asc,{`5esn`} Starts With 12.0 Desc Limit {@usn5}[Count(*)..] Create Unique Allshortestpaths((@usn6 :usn1:_usn4)),(:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})"), + octest_legacy:ct_string("Merge Allshortestpaths((`` :``)-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})) On Match Set `6esn` ={_usn3}[usn1][0],Shortestpath((@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})).@usn5? =\"d_str\" Contains @usn6 Contains 12.e12,`7esn`+=`3esn`[..{_usn4}][..{@usn5}] On Create Set (@usn5 :usn1:_usn4)-[``?:#usn7|`2esn`{`5esn`:123456789 Starts With {@usn6} Starts With $12}]->(`7esn` {@usn6:{_usn4} Is Null}).`2esn`! =07[$#usn8],Case When $7 Ends With $`8esn` Then .e12 Contains $`1esn` Contains $@usn6 End.`8esn`! =$`6esn`['s_str'..][{_usn4}..],`2esn` ={usn1:$`8esn` In $`2esn` In {7},`7esn`:{`2esn`} In $123456789 In True}[..(:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})-[`3esn`:`` *123456789..0X7{#usn8:12 Starts With $#usn7}]-(`3esn` :`7esn`)-[?*..{`1esn`:$`1esn`[07..][9e12..],@usn6:{7} Starts With $usn1 Starts With 1.0}]->(:`3esn`:`6esn`)][..Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6)] Union With Distinct (@usn5 {`2esn`:1.e1 =~9e12 =~`4esn`})<-[@usn5?:usn1 *..010{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}]->(`8esn` :`1esn`{usn2:0.0 Is Not Null,usn2:0.12[Count(*)..][$#usn7..]})-[`5esn`{`7esn`:@usn5[..$@usn5][..0Xa]}]->(#usn7 :#usn8{_usn3:`1esn`[..00][..{7}]}) In Case When .e0[True..Count ( * )][#usn7..0X7] Then $@usn5[`6esn`..] When 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF Then $`1esn`[#usn8][$@usn5] End In @usn6(`` Ends With $`4esn` Ends With 0X0123456789ABCDEF),{`1esn`:{`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`],`5esn`:0.12 Contains 12.0} Ends With [{usn2},0.12[Count(*)..][$#usn7..]] Ends With {0},$`2esn` Ends With 0.12 Ends With .e1 As `` Order By Case $123456789[..$7][..$`6esn`] When 0.e0 Contains #usn7 Then {`6esn`} Contains 07 When {_usn4} In {1000} Then ``[..$#usn7] End[Shortestpath((usn1 :usn1:_usn4))..][Reduce(@usn6={`4esn`} Starts With $7 Starts With $``,`` In {usn1} Ends With {`6esn`} Ends With 123456789|$`6esn` Starts With 12.e12 Starts With $#usn7)..] Descending,'s_str'[_usn4..0x0] Descending Skip 12.e12 Starts With 1000 Starts With 's_str' Where $#usn7[`5esn`]"), + octest_legacy:ct_string("Load Csv With Headers From $`2esn`[{usn2}] As #usn8 Create `3esn`=Shortestpath((`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})),Allshortestpaths(((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0}))) Unwind Shortestpath((:_usn4{_usn4:#usn7 =~{`4esn`} =~123456789})-[`7esn`?:`6esn`]->(`1esn` :_usn4)-[#usn8:_usn3|`8esn`{`6esn`:`5esn` Is Null Is Null}]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))[Extract(`1esn` In `3esn`[07..] Where 999 Starts With 's_str')][Case `8esn` Contains $`3esn` Contains {`4esn`} When 9e1 Ends With $@usn5 Ends With $123456789 Then usn2[True] When 0.e0 =~`1esn` =~`6esn` Then usn2 =~0X7 =~{#usn7} Else 1.e1[..12.e12][..$usn2] End] As #usn7"), + octest_legacy:ct_string("Create Unique (_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0}),`5esn`=Shortestpath(((#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null})<-[?:#usn7|`2esn`{@usn5:$0 Is Not Null}]-(`` {``:0x0 =~123.654 =~{999}}))) Merge Shortestpath((_usn4 :#usn7{`8esn`:$999 Contains {7}})) Union Create usn1=Allshortestpaths((`2esn` :#usn8{@usn6:`7esn` Ends With $_usn3 Ends With usn2,_usn4:{12} Starts With #usn8 Starts With 0e0})<-[:`6esn`{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},`6esn`:``[..$#usn7]}]->({_usn4:False[0Xa..$usn1]})),#usn7=Allshortestpaths((({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True}))) Create Unique `8esn`=(((`4esn` :usn2:`2esn`)-[`8esn`?:`4esn`|:#usn7]->({`3esn`:12 Starts With 0x0,`8esn`:0X7[0.e0][{`4esn`}]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})))"), + octest_legacy:ct_string("Load Csv With Headers From `3esn` Starts With Count(*) As `3esn` Load Csv From $@usn6[$0..usn1][0X0123456789ABCDEF..$999] As `1esn` Remove usn2(Distinct 1e1[..01],$123456789 Is Not Null).@usn6"), + octest_legacy:ct_string("Return *,None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12.e12[``..usn2][{#usn7}..@usn5]) In usn1({`1esn`} Starts With @usn6),$`8esn`[0e0..] As @usn5 Limit 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF"), + octest_legacy:ct_string("Create Constraint On(``:@usn5)Assert Exists([_usn3 In True[7][$999] Where 12.0 =~$#usn7 =~9e12|_usn4[Count(*)]].usn1!)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:@usn6)Assert Exists([$`5esn`[$#usn7..][0xabc..],1000[$7..$123456789],$`7esn`[$``..][999..]].`5esn`!)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:``)Assert Exists(`4esn`(Distinct 12e12 Is Not Null,{#usn8} =~{999} =~{#usn7}).``)"), + octest_legacy:ct_string("Using Periodic Commit 7 Load Csv From .e12[..{0}][..Null] As usn1 Fieldterminator \"d_str\" Merge `1esn`=Allshortestpaths((((:`7esn`{`1esn`:{1000} In {123456789},`4esn`:010 In `1esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)))) On Create Set [`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0}|#usn8 In `8esn` In 07].`6esn`? ={#usn8} Ends With 1.0 Ends With 12.0,`4esn` =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Foreach(#usn7 In $usn1[0X7]| With 's_str'[_usn3..] As `5esn`,{0}[False..@usn5] As `1esn` Order By {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Desc,01234567[{`7esn`}..] Descending,[{7} Contains $123456789,$``[..1.e1][..12],$`5esn`[..{`2esn`}][..{0}]] =~`3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]) =~{`6esn`:{`3esn`} Ends With `1esn` Ends With $@usn6,@usn6:$usn1 In 0.12 In $``} Descending Skip .e0[..{`5esn`}][..999] Limit {`8esn`:`2esn` Starts With `` Starts With 1e1} In [usn1 In 00 In {_usn3}] In Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) Where $`6esn` Starts With 12.e12 Starts With $#usn7 With Distinct $#usn8 Is Null Is Null,Shortestpath((_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]) In Shortestpath(((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}))),{7} Is Null As `7esn` Order By [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null Asc,{@usn5} =~_usn4 =~0.12 Desc Limit #usn7 Contains {`3esn`} Contains $`6esn` Where 12e12 Ends With `6esn` Ends With {`3esn`})"), + octest_legacy:ct_string("Drop Constraint On()-[`7esn`:#usn7]->()Assert Exists((`1esn` :_usn4)<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})._usn3)"), + octest_legacy:ct_string("Detach Delete $`1esn` Ends With {12} Ends With 0xabc,7 Is Null Is Null,`4esn`[{1000}][{`5esn`}] Foreach(`3esn` In `3esn`[07..]| With *,0e0 Starts With $@usn6 Starts With $`6esn` As `7esn` Skip 0X7 Is Not Null Is Not Null Limit `` =~`6esn` =~usn1 Where 0e0[0X0123456789ABCDEF..010][$@usn6..010] Delete 1e1[..$1000][..999],Reduce(usn1=``[00..$7],`5esn` In $`2esn`[12.e12][$@usn5]|12 Starts With 0x0)[Any(#usn7 In 123.654 Starts With $`` Where 's_str'[_usn4..0x0])][Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where True[True..]|$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF)]) Load Csv With Headers From $usn1 In 01234567 In .e1 As @usn6 Fieldterminator 's_str'"), + octest_legacy:ct_string("Return #usn7 Starts With $999,1e1[..`1esn`][..0e0] Limit (:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})-[`1esn`:`1esn`|:`3esn` *01..07{`3esn`:123456789 Is Not Null Is Not Null}]-(`1esn` {@usn5:$usn1 In 0.12 In $``})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Reduce(`5esn`=.e12[$#usn8..@usn6],usn1 In 12.e12 In {0} In 9e1|Count(*)[.e12]) Foreach(`8esn` In Extract(#usn7 In 123.654 Starts With $`` Where #usn8[`7esn`..]|0.0[..{999}][..0.0])[..Extract(`1esn` In `3esn`[07..] Where 00[07..]|$#usn7 Starts With 9e0 Starts With 2.12)][..None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])]| Unwind `5esn`[..9e0][..01234567] As @usn5 Remove Filter(`6esn` In 00 Where 0.12[..$`6esn`][..$1000]).#usn8!,[999 Ends With .e12 Ends With .e1,{_usn3}[..$`8esn`]].@usn6?) Union All Merge _usn4=((`8esn` :@usn6)) Union All Unwind 123456789 Starts With {@usn6} Starts With $12 As `8esn` Start _usn3=Node(01,0x0,0X7,0X7) ,`2esn`=Relationship:_usn4(usn1={_usn4})Where $`8esn`[..$999][..0] Remove {usn2:123.654[{`7esn`}][{7}],#usn8:$0[..{usn2}][..$usn1]}.usn2?"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:_usn3)Assert ({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6})-[{@usn5:1000 Is Null Is Null}]-(_usn3 :@usn5{`2esn`:@usn5[$12..\"d_str\"]})-[?:`8esn`|:_usn4{usn1:999[12.0..][#usn7..],@usn5:123.654[$`1esn`..Null][1000..{_usn3}]}]-(`5esn` :@usn6).`1esn` Is Unique"), + octest_legacy:ct_string("Unwind Reduce(_usn4={123456789} =~01234567 =~`3esn`,_usn3 In True[7][$999]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]) Ends With @usn5(Distinct {0} Is Null) Ends With {`6esn`:`3esn`[..{_usn4}][..{@usn5}],`2esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]} As _usn4 Remove {`8esn`:False Ends With $``}.`3esn`,Case {usn1}[$7..0x0] When {``}[010] Then True =~_usn3 =~123456789 When @usn6[$12] Then {`4esn`} Starts With $7 Starts With $`` End.`7esn`!"), + octest_legacy:ct_string("With Distinct 12.e12[$`8esn`..{`8esn`}] As `7esn` Order By 07[$`2esn`..0x0] Ascending,$`8esn` Is Null Is Null Desc,`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}] Asc Limit .e1[..{`7esn`}][..{_usn3}] Load Csv With Headers From None(`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}])[[123.654[1e1..][{#usn8}..],$#usn7[123.654]]] As `8esn` Fieldterminator 's_str' Start `5esn`=Rel( {_usn4}) "), + octest_legacy:ct_string("Create #usn8=Allshortestpaths((({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))),@usn6=((usn2 :_usn3)-[`8esn`?{@usn5:Null Is Null Is Null}]->({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})-[_usn3 *..01234567$`5esn`]->({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})) Start `6esn`=Relationship:usn2({`5esn`}) Where `7esn`[0..$usn2][{usn2}..0.e0] Create Unique usn1=(((usn2 )<-[ *0xabc..7]->(:`4esn`:@usn6)<-[usn2?:usn2|#usn7]->(`3esn` :_usn4))),`4esn`=(`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})-[?:@usn6|`` *..0Xa]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})"), + octest_legacy:ct_string("Using Periodic Commit 0X7 Load Csv With Headers From All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.e12[$`8esn`..{`8esn`}]) Is Null As usn2 Foreach(_usn3 In {`3esn`} =~$7| Delete {1000}[{``}][999],`4esn`[{1000}][{`5esn`}]) With Distinct `7esn` Ends With $_usn3 Ends With usn2 As _usn4,1000 Is Null Is Null Order By @usn6[$usn2..#usn7] Ascending,{`3esn`} Ends With 0 Ends With 9e1 Desc Limit {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}[..({``:.e1 Contains $`3esn`})<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})]"), + octest_legacy:ct_string("Create Constraint On(usn1:`3esn`)Assert [`6esn` In 00 Where 0X0123456789ABCDEF Is Null Is Null].`7esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`8esn`:usn1)Assert Reduce(usn2=12.e12 In $0 In $0,`` In {`1esn`} Starts With @usn6|{`4esn`}[$123456789..]).`4esn` Is Unique"), + octest_legacy:ct_string("Unwind 9e12 Is Not Null Is Not Null As @usn5 Create (({@usn5:``[{123456789}..]})-[`3esn`:`6esn`{`3esn`}]-({`1esn`:$123456789[..$7][..$`6esn`]})<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`)) Merge ((`5esn` :@usn6)<-[`2esn`?:@usn6|``]->(`1esn` {_usn4:{1000} Ends With {`8esn`}})<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})) On Create Set _usn4+=Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where 12e12 Is Not Null)[..Reduce(`1esn`=$`3esn` In 9e12 In ``,`2esn` In {999} Is Not Null|$@usn5[..usn2][..$#usn7])],Shortestpath(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))).`7esn`! =1e1[{_usn4}..123.654] On Match Set `1esn`+=`2esn` Starts With `` Starts With 1e1,Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End.`3esn` =$0 Ends With False Ends With $_usn4"), + octest_legacy:ct_string("Remove [_usn3 In {@usn5}[..#usn7] Where True Is Null Is Null|Count(*) Ends With $`` Ends With {7}].`3esn`?,{@usn5:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12],@usn6:Count(*)[.e12..]}.`2esn`? Union Load Csv With Headers From $1000[{`6esn`}..] As _usn3 Fieldterminator 's_str' Detach Delete {999}[$123456789..][12..],$`6esn`[..1.e1][..1e1]"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:`7esn`)Assert {`6esn`:1000,#usn8:$`5esn`[$#usn7..][0xabc..]}.@usn6! Is Unique"), + octest_legacy:ct_string("Create _usn4=Allshortestpaths((@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})),((`2esn` :#usn8)<-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` :`8esn`:@usn5)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})) Detach Delete Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`])[(`3esn` :#usn7{`6esn`:{_usn4} Is Null,usn2:{`2esn`} Starts With @usn6})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`8esn`:@usn5)<-[@usn6?:`7esn`]->(:`2esn`{#usn7:#usn8 =~{999}})..Shortestpath((`8esn` {_usn4:{usn1} In Count ( * )})<-[`6esn`?]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})<-[@usn6?:`7esn`]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1}))][Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0[$#usn8...e12])..[`1esn` In $12 Is Not Null Where {usn1} In Count ( * )|$`3esn`[{``}..]]],{usn2}[`6esn`..01234567],All(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7]) Contains Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End Contains Reduce(`6esn`={_usn4} In {1000},usn1 In 12.e12 In {0} In 9e1|{`4esn`} Starts With $7 Starts With $``) Create Unique Allshortestpaths((:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})),#usn8=Allshortestpaths((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null}))) Union Detach Delete `` Is Null Is Null,{`4esn`}[{`1esn`}][{1000}] Optional Match #usn7=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Where #usn7 Starts With 1000 Starts With .e1 Create Unique `5esn`=((`3esn` :`6esn`:`8esn`{`8esn`:{``} Is Null Is Null,`3esn`:123456789 Is Not Null Is Not Null})<-[_usn4?:usn2|#usn7{_usn4:{`1esn`} In 12.e12 In 9e1}]-(:usn2:`2esn`)),((#usn8 :usn1:_usn4)<-[usn1:usn1{`3esn`:\"d_str\" Ends With False Ends With {@usn6},`5esn`:`4esn` Contains #usn8 Contains 7}]->(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(`2esn` :#usn8{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}}))"), + octest_legacy:ct_string("Create Constraint On()<-[`2esn`:`6esn`]-()Assert Exists(['s_str' Starts With 12e12 Starts With $_usn4,$7 In @usn5 In {@usn5}]._usn4)"), + octest_legacy:ct_string("Create Unique _usn3=Allshortestpaths((((:`3esn`:`6esn`)-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})-[:`8esn`|:_usn4 *999{_usn3:9e1 =~999}]->(:#usn7{usn2:{`8esn`}[0X7][$`3esn`]})))),Allshortestpaths((((:`7esn`{`1esn`:@usn5 =~'s_str',`8esn`:{999} Starts With {_usn4} Starts With 00})<-[@usn5:`8esn`|:_usn4]->(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]})<-[?:_usn3|`8esn` *1000]-(:``)))) Detach Delete False[1000][{`7esn`}] Union Optional Match @usn5=Allshortestpaths((@usn6 :usn1:_usn4)<-[?:@usn6|`` *..01234567]->(#usn8 {usn1:$123456789 Starts With `5esn`})-[? *01..07]->(`8esn` :#usn7)),`8esn`=Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Using Scan usn2:`5esn` Where 123.654[{@usn5}..123.654][1.0..$12] Load Csv With Headers From 0X0123456789ABCDEF Is Null Is Null As `` Union All With {`3esn`} =~[1.e1 =~$usn2] =~Filter(`6esn` In 00 Where `5esn`[..9e0][..01234567]) Limit {#usn8} =~{999} =~{#usn7} Where $_usn3[010..False]"), + octest_legacy:ct_string("Delete #usn7 =~00 Start #usn8=Node:``(`1esn`={`2esn`}) Foreach(`5esn` In Extract(_usn4 In `2esn` Where 1.0[{999}][$999]|$`8esn` In $`2esn` In {7})[[{`8esn`}[0X7][$`3esn`]]][(`5esn` :`3esn`:`6esn`)-[`8esn`?:`4esn`|:#usn7{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-({`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF})]| Create (`2esn` :@usn6{7})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]})<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`),(((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]})))) Union All Remove {#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}.#usn8"), + octest_legacy:ct_string("Unwind $`3esn`[..$`2esn`][..123.654] As `1esn` Foreach(#usn8 In 12 In 0e0| Unwind {`4esn`}[{`1esn`}][{1000}] As #usn7 Delete $`7esn` In 12) Unwind False Starts With 010 As @usn5"), + octest_legacy:ct_string("Start #usn7=Node:#usn7('s_str') Where {12}[00..{@usn6}][1.e1..0] Union All With Distinct $@usn6 Ends With 01 Ends With 999 Skip {_usn3} Contains 9e0 Contains $999 Limit Allshortestpaths(((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}))) Starts With All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Where 12.e12[`7esn`] Remove [`1esn` In $12 Is Not Null].`6esn`? Union All Create Unique usn2=Allshortestpaths((({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]}))) Start `1esn`=Rel:@usn5({usn1}) Where 7[$0..][{_usn4}..] Foreach(usn2 In {`7esn`}[..9e12][..0.0]| Load Csv From $@usn6[$0..usn1][0X0123456789ABCDEF..$999] As `1esn` Delete {@usn5}[..@usn6],0e0 Contains `3esn` Contains `7esn`,1.e1 Ends With 0 Ends With $usn1)"), + octest_legacy:ct_string("Detach Delete False Ends With $``,{_usn4}[..$#usn7] Start _usn3=Relationship:#usn7({`4esn`}) Where ``[..0X0123456789ABCDEF]"), + octest_legacy:ct_string("Create Constraint On(`2esn`:usn1)Assert (:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6).`4esn` Is Unique"), + octest_legacy:ct_string("Detach Delete $usn2 Is Null Is Null,`3esn` =~9e0 =~@usn6,None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False) Is Null Union Remove Allshortestpaths(((_usn3 :#usn8{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(:`2esn`{`2esn`:123456789[0..]}))).`8esn`! Remove Shortestpath((({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`))).#usn8!,({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})-[? *01..07]->({_usn4:{usn1} =~123.654 =~\"d_str\"}).`5esn`?,[{`6esn`}[..{`2esn`}],$`8esn`[..$999][..0],`3esn` Is Not Null Is Not Null].`1esn`? Return Distinct *,010 Is Not Null Is Not Null As #usn7,123456789[12..$`4esn`] As `7esn` Order By $_usn3[..$`2esn`][..\"d_str\"] Desc Limit `` Is Null Is Null Union Load Csv With Headers From Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000) Contains [0x0[$`8esn`.._usn3]] Contains count({`1esn`} Is Not Null,$`2esn` Ends With 0.12 Ends With .e1) As `2esn` Fieldterminator \"d_str\" Remove (:@usn5)-[`8esn`?{`3esn`:'s_str'[..0X7]}]-(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}).`4esn`!,Extract(`6esn` In 00 Where 12e12 Is Not Null Is Not Null|`1esn`[Null..]).usn1"), + octest_legacy:ct_string("Remove [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $#usn7[$`4esn`]].@usn5,[`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`|$7 Is Null].@usn5!,_usn3:`2esn` Union All Detach Delete $``[01],{999} In 0.0 In {0}"), + octest_legacy:ct_string("Remove [{usn1} Ends With {`6esn`} Ends With 123456789,$usn1[@usn6][#usn7]].`2esn`!,Reduce(`4esn`=$1000 Starts With $`8esn` Starts With {`5esn`},`` In {usn1} Ends With {`6esn`} Ends With 123456789|{`8esn`}[True..][.e1..]).`3esn`! Create Unique #usn8=Shortestpath(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]}))) Union All Remove None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000).`2esn`? With Distinct {#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null As `8esn`,Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4])[Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End] As `7esn`,{_usn4} In {1000} As `1esn` Order By $@usn5[`1esn`..] Desc Limit #usn8['s_str'..][123.654..] Where 's_str' Starts With 12e12 Starts With $_usn4"), + octest_legacy:ct_string("Foreach(#usn7 In 9e12 Is Not Null Is Not Null| Remove [{#usn8}[#usn7..{`2esn`}],{1000},{@usn5}[1e1..][9e1..]].@usn6,[`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]].`6esn`?) Create _usn3=Shortestpath((:_usn3{`3esn`:{0} Is Null,#usn7:{0} Is Null})-[:_usn4|:usn1 *0X7..0Xa{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]}]-({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5)),Shortestpath(((`6esn` :@usn5)<-[`7esn`?:`2esn` *..0Xa{usn1:.e1 Ends With {7} Ends With $usn1}]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}))) Union Start #usn7=Node:`1esn`(\"d_str\") Where $_usn3[010..False] Foreach(#usn7 In {@usn6} Contains 123.654 Contains 01| Remove [0.0[..{999}][..0.0],12.e12[2.12..][0xabc..],True[7][$999]].@usn6 Delete Filter(#usn7 In 123.654 Starts With $`` Where Count(*)[010..][#usn7..])[None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $999 Ends With {0})..])"), + octest_legacy:ct_string("Drop Constraint On()-[`7esn`:@usn6]->()Assert Exists(Shortestpath(((#usn8 :@usn5)<-[_usn3{@usn6:{7} Contains $123456789}]->(:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1}))).`6esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[`3esn`:`2esn`]-()Assert Exists([0xabc[$@usn5]].``!)"), + octest_legacy:ct_string("Return Distinct *,{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] As `4esn` Skip `2esn`[usn2..][$7..] Union Remove Allshortestpaths(((:`8esn`:@usn5{@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2],``:{`7esn`} Is Not Null Is Not Null})-[?:#usn7|`2esn` *123456789..0X7{@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`}]->(`8esn` ))).usn1! Remove [`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12].`2esn`,[usn1 Contains $7 Contains $``,$@usn5 In 's_str' In $12,$`1esn` Is Not Null Is Not Null].usn2!,All(`1esn` In `3esn`[07..] Where 999 Starts With 's_str').#usn8! Remove (`1esn` :usn2:`2esn`{`1esn`:{_usn3}[$usn2..],_usn3:$@usn6 Starts With $@usn5})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})._usn3?,(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}).usn2!,[$usn1[0X7],7[1000.._usn3][9e0..\"d_str\"],0X7 Starts With {999} Starts With 12e12].`7esn`!"), + octest_legacy:ct_string("Create Constraint On(``:@usn5)Assert Exists(All(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $`6esn`[{`3esn`}..12]).@usn6)"), + octest_legacy:ct_string("Remove None(_usn4 In `2esn` Where 9e12 Ends With 123456789).`7esn`! Return Shortestpath(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})))[[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7[`5esn`]|{_usn3}[{0}]]..],0e0[{_usn3}..],.e1[..{`7esn`}][..{_usn3}] Skip {`2esn`}[12..][{_usn3}..] Create Unique usn2=((:#usn8{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})-[ *0X7..0Xa]->(@usn6 :`2esn`)<-[`2esn`?:@usn6|`` *..00]->({_usn3})),`8esn`=Allshortestpaths((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Union Return Distinct 0X0123456789ABCDEF[0X7..] As `4esn`,7 Contains 9e0 As `4esn`,0x0 Ends With {``} As `7esn` Skip 1.e1 Is Null Limit 0Xa[1000.._usn4] Start usn2=Relationship( {#usn7}) "), + octest_legacy:ct_string("With *,[`2esn`,{`2esn`} Starts With @usn6,9e1 =~999] In Any(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3} Contains 9e0 Contains $999),Count(*) Starts With $usn1 Starts With {usn2} As @usn6 Limit Reduce(`6esn`=7[$0..][{_usn4}..],_usn3 In {`2esn`} Ends With {12} Ends With 7|{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`)[[$#usn7[`5esn`],Count(*) Ends With 123.654 Ends With $12,$#usn7[..@usn6][..$0]]] Where $_usn4 Is Not Null Is Not Null With *,{#usn7} Ends With Extract(`1esn` In 0.e0 =~`1esn` =~`6esn`|.e1 Ends With 0Xa Ends With .e1) As `5esn`,123456789 Is Not Null Is Not Null As #usn7 Skip {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Where $``['s_str'..][0x0..] Create #usn8=(`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`) Union Unwind 0e0 Starts With $@usn6 Starts With $`6esn` As _usn4 Union Start @usn5=Node:``(#usn7=\"d_str\") ,`3esn`=Node:usn1('s_str')Where {`3esn`}[{`5esn`}] Create Shortestpath(((`4esn` :`2esn`)<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})))"), + octest_legacy:ct_string("Drop Constraint On()-[#usn7:`2esn`]->()Assert Exists(Case 9e0 Starts With .e0 Starts With \"d_str\" When $`1esn` Is Not Null Is Not Null Then `3esn`[$@usn5..@usn5][9e1..$``] End.#usn8?)"), + octest_legacy:ct_string("Create Constraint On(_usn4:#usn8)Assert [{12}[00..{@usn6}][1.e1..0],usn2[`7esn`..{`3esn`}][$7..{#usn7}]].usn2? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:_usn3)Assert Case When {`1esn`} =~{_usn4} Then 7 Is Not Null End.`5esn`! Is Unique"), + octest_legacy:ct_string("Merge Shortestpath((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})<-[#usn7?:#usn8|`2esn`]-(usn2 {`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})) On Create Set `1esn`+=010 In $`5esn` In 0,[_usn3 In True[7][$999] Where 12e12 Is Not Null Is Not Null].@usn6? ={@usn6} Contains 123.654 Contains 01,@usn5 =$#usn7 =~{12} =~False On Create Set usn1+={usn1}[{`5esn`}..],Case {0} Is Null When $0 Is Not Null Then #usn8 Is Not Null When 12.e12[{@usn5}..][9e1..] Then `2esn`[$1000..9e12][{#usn8}..{7}] End.`6esn` =#usn8 =~{_usn3} =~``,`7esn`+=12e12 Ends With `4esn` Ends With 123456789 Delete $0 Starts With `2esn`"), + octest_legacy:ct_string("Create Unique usn1=(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(:`2esn`{`2esn`:123456789[0..]})-[`3esn`:`6esn`{`3esn`}]-(@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]}) Union Start _usn4=Rel:_usn3('s_str') Foreach(_usn4 In `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]]| Create (((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})-[`4esn`?:``{usn2:12e12 Ends With `4esn` Ends With 123456789}]->(:`7esn`{usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))),(((#usn8 )-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}))))"), + octest_legacy:ct_string("Create `6esn`=((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[:`2esn` *07]-(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]->({``:.e1 Contains $`3esn`})) Union Match `1esn`=((`4esn` :`2esn`{`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})-[:`1esn`|:`3esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->({`2esn`:#usn8 Is Null,`6esn`:123456789 Ends With usn1 Ends With usn2})<-[#usn8? *0X7..0Xa$`2esn`]-({`7esn`:123456789[0..]})),usn1=Allshortestpaths((`2esn` :`5esn`:@usn5)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})) Using Index @usn6:#usn8(_usn4) Using Join On _usn3,`` Where $`1esn`[#usn8][$@usn5] Start @usn5=Node:_usn4(``=\"d_str\") Where 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF"), + octest_legacy:ct_string("Create Unique `7esn`=({#usn7:#usn8 =~{999}}) Optional Match ((`2esn` {_usn4:`4esn`[usn1]})<-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(:_usn4)) Where {usn1} Ends With {`6esn`} Ends With 123456789 Union Match Shortestpath(((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))),`5esn`=Allshortestpaths(((:`7esn`{usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})<-[`8esn`?:`4esn`|:#usn7]->({`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]})-[usn2 *07{usn1:07 =~@usn5}]->({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True}))) Using Scan `1esn`:`3esn` Using Index @usn5:usn1(_usn3) Where {@usn5}[..{12}][..0x0] Delete {`3esn`} Ends With `1esn` Ends With $@usn6,{12} =~0.e0 =~{_usn3},[_usn4 In 0.0[..{999}][..0.0] Where ``[..0X0123456789ABCDEF]][Reduce(``=`6esn` Is Null Is Null,`2esn` In {999} Is Not Null|{12}[999][{_usn3}])..[_usn4 In `2esn` Where 0X0123456789ABCDEF[$`5esn`..]]] Match (((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),_usn4=Allshortestpaths((usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})) Using Scan `2esn`:#usn7 Where {#usn8} =~{999} =~{#usn7} Union Create Shortestpath((usn1 :usn1:_usn4)),Shortestpath((((#usn8 :@usn6)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4})-[:`3esn`|:@usn5]-(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})))) Create (((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4})))"), + octest_legacy:ct_string("Create Unique Allshortestpaths((:usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[`8esn`?*{`8esn`:{#usn7} Contains @usn5 Contains Count ( * )}]-({`4esn`:1000 Is Null Is Null})),_usn3=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]}) Remove Allshortestpaths(((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7))).@usn6?,Reduce(`6esn`={usn2} =~@usn6 =~{`4esn`},_usn3 In {`2esn`} Ends With {12} Ends With 7|{_usn3} Contains True Contains 0X7)._usn3?,All(`6esn` In 00 Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12]).`5esn` Remove [$7 Is Not Null,Count(*) Ends With 123.654 Ends With $12,$`1esn`[07]]._usn3,[9e12 Ends With 123456789].`1esn`!,[999 Ends With .e12 Ends With .e1,{_usn3}[..$`8esn`]].@usn6? Union With Distinct 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0],_usn4(Distinct 9e12[$`5esn`],$_usn4[$`4esn`..$12]) Starts With [`` In {`1esn`} Starts With @usn6 Where {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]|$`` In 0 In {1000}] Starts With [_usn4 In 0.0[..{999}][..0.0] Where Count(*) In {``}] As `4esn` Order By @usn6[{0}..] Ascending Limit 9e12[$`5esn`] Where `1esn`[..\"d_str\"][..$`5esn`] Foreach(`` In $`2esn` Ends With `` Ends With {12}| Remove Case 1.0[{999}][$999] When 12 Starts With {_usn4} Starts With $#usn8 Then Count(*) Is Not Null Else 1000 Starts With `7esn` End.`1esn`,{`1esn`:$@usn6 Starts With {`1esn`} Starts With 12,usn2:$`5esn`[..{`2esn`}][..{0}]}.``!,{`5esn`:{#usn7} In Count ( * ) In $#usn8}.`7esn`! Match usn1=((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})),`8esn`=(`6esn` {``:`4esn`[usn1]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]->(#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``}) Using Scan `4esn`:#usn8) Union Start usn1=Node:`6esn`(#usn8={@usn5}) ,`3esn`=Node:`4esn`({#usn8})Where $`2esn`[12.e12][$@usn5]"), + octest_legacy:ct_string("Drop Constraint On()<-[`3esn`:`7esn`]-()Assert Exists((`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}})<-[_usn4{`7esn`:01234567[..9e1]}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}).@usn6?)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:usn2)Assert {_usn4:0Xa Contains $``,@usn6:@usn6[$_usn4]}.usn1 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn3:#usn7)Assert {`6esn`:_usn3 Contains .e0 Contains {usn2},_usn4:1000[$7..$123456789]}.@usn5! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:@usn5)Assert Extract(usn1 In 12.e12 In {0} In 9e1 Where {12}[usn2])._usn4! Is Unique"), + octest_legacy:ct_string("Remove Filter(`2esn` In {999} Is Not Null Where $usn1[$123456789..0][{`1esn`}..12.0]).`1esn`!,{usn2:_usn4 Is Null}.`7esn`,(:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})-[@usn6:@usn6|``*{#usn8:{@usn5}[12.0..1000][{`3esn`}..{7}],`8esn`:07[..`6esn`][..'s_str']}]->(`1esn` {_usn4:{1000} Ends With {`8esn`}})<-[? *0xabc..7]->(`3esn` :`3esn`:`6esn`).usn2? Unwind ({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..Case $1000 =~{1000} =~`5esn` When 9e1[9e1...e0] Then 00 Starts With $`6esn` When 123.654[1e1..][{#usn8}..] Then $`3esn`[{``}..] End] As `8esn` Remove Shortestpath((:_usn3{#usn7:#usn8 =~{999}})).#usn8,Any(#usn7 In 0Xa[@usn5][{`7esn`}]).`4esn`,Case When {1000}[{``}][999] Then `1esn` Is Null Is Null When Count(*)[.e12..] Then $#usn7[123.654] Else $1000 Starts With $`8esn` Starts With {`5esn`} End.usn1 Union All With Distinct Count ( * ) =~{`5esn`} =~{_usn4} As _usn3,Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999)[..Reduce(``={`8esn`}[True..][.e1..],#usn7 In 123.654 Starts With $``|{usn1}[$`8esn`..0.0])][..Any(`1esn` In $12 Is Not Null Where $12 Is Not Null Is Not Null)] As #usn8 Where {`3esn`} Ends With `1esn` Ends With $@usn6"), + octest_legacy:ct_string("Remove Case When $7 Ends With 0X7 Then Count(*)[.e12..] Else 00 Ends With `8esn` End.``?,(_usn3 {usn1:0Xa[0e0..{#usn7}],`1esn`:.e0[True..Count ( * )][#usn7..0X7]})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1}).`3esn`?,Filter(_usn4 In `2esn` Where `3esn` Is Not Null Is Not Null).`8esn`! Start `4esn`=Node(01234567,0Xa,07) Merge (:``$_usn4)<-[:`1esn`|:`3esn` *1000]->(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})-[#usn8:`` *..0{@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}}) On Match Set #usn8 =(`8esn` :`5esn`:@usn5)<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5) Starts With None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]),@usn5 =$_usn4 Is Null Is Null Union All Detach Delete 07[`8esn`],Extract(@usn5 In Null =~12e12 Where $`5esn`[`1esn`][0X0123456789ABCDEF])[Shortestpath((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})))..All(#usn7 In 123.654 Starts With $`` Where $`5esn`[..{`2esn`}][..{0}])][Shortestpath((:`5esn`:@usn5{``:.e12 =~$_usn4})-[_usn3?:usn1 *12..{#usn7:0e0 Contains `3esn` Contains `7esn`}]-(`5esn` $`8esn`)<-[@usn5:_usn4|:usn1*]->(:@usn5))..All(`1esn` In $12 Is Not Null Where {``} Is Null Is Null)]"), + octest_legacy:ct_string("Using Periodic Commit 07 Load Csv From {12}[999][{_usn3}] As usn2 With $999[07..{#usn7}][1e1..0xabc] As #usn8,{1000}[{#usn8}] As `2esn` Skip `3esn` Contains $`6esn` Contains `8esn` Where 0.e0 =~`1esn` =~`6esn`"), + octest_legacy:ct_string("Create Constraint On()<-[@usn6:`7esn`]-()Assert Exists(`6esn`(Distinct #usn7 =~{`4esn`} =~123456789,1e1[1.e1..][123.654..]).usn1)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:_usn4)Assert Exists(Allshortestpaths((:`2esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})).`5esn`?)"), + octest_legacy:ct_string("Create Unique Allshortestpaths((@usn6 :usn1:_usn4)),(:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}) Load Csv From 0Xa In {usn1} In Null As `3esn` Fieldterminator 's_str' Union Load Csv From {1000} Ends With 0.12 As usn2 Fieldterminator \"d_str\" Union All Load Csv With Headers From Case When {1000}[{``}][999] Then `1esn` Is Null Is Null When Count(*)[.e12..] Then $#usn7[123.654] Else $1000 Starts With $`8esn` Starts With {`5esn`} End Ends With All(_usn4 In 0.0[..{999}][..0.0] Where #usn7 =~{`4esn`} =~123456789) Ends With [$#usn7 =~{12} =~False,@usn5[$12..\"d_str\"]] As `1esn` Fieldterminator \"d_str\" Create Unique ``=Allshortestpaths(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(usn1 :`8esn`:@usn5)-[? *0x0..{`6esn`:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-({`2esn`})),#usn8=Allshortestpaths((((_usn3 :`3esn`:`6esn`)<-[`2esn`?{``:123.654 Starts With $``,``:{``} Ends With .e12 Ends With 0.e0}]-(:_usn3{0})<-[?:#usn8|`2esn` *01..07]->(:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})))) Merge Shortestpath((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})<-[#usn7?:#usn8|`2esn`]-(usn2 {`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})) On Create Set Case {`2esn`} Ends With {12} Ends With 7 When `8esn` Starts With {123456789} Then {`1esn`} Is Not Null Else {usn2}[$`4esn`] End.usn2 =12[..$@usn6],`6esn`+=$7[$`3esn`],#usn7 =``[$0..][`1esn`..] On Create Set `2esn` =Count(*) Ends With 0x0 Ends With 9e0"), + octest_legacy:ct_string("Merge ((`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})) On Create Set `4esn` ={999} Ends With {`5esn`} Ends With {0} Merge ((:`3esn`:`6esn`{`1esn`:12 Starts With 0x0})) On Match Set _usn3 =$`` Starts With 12 Starts With $usn2,@usn5+=$@usn6[$`8esn`..][7..] With Distinct *,#usn8 Is Not Null,$usn2 Starts With $@usn6 Starts With 010 As _usn4 Where $`1esn` Is Not Null Is Not Null Union Load Csv From .e12[$#usn8..@usn6] As usn2 Fieldterminator \"d_str\" Union Optional Match ((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})-[:`5esn`]-({`7esn`:@usn5[..$@usn5][..0Xa]})-[@usn5? *0x0..{`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}]-(_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null})) With Distinct Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..],`` =~`6esn` =~usn1 As `2esn` Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,1.e1 =~$`1esn` Ascending,12.e12[..1e1] Asc Limit 0X0123456789ABCDEF[0X7..] Where $123456789[..$7][..$`6esn`] Foreach(`8esn` In (:`4esn`:@usn6{usn1:$7[{`1esn`}],#usn8:\"d_str\"[..0.e0]})<-[`4esn`:@usn6|``{_usn4:Count ( * ) Starts With 010 Starts With 0x0,`2esn`:1.0 In 9e1 In {`7esn`}}]->(usn2 {usn1:{`4esn`}[..07][..$`6esn`],`5esn`:'s_str'[..0X7]})-[? *0X0123456789ABCDEF]-(_usn3 :`5esn`:@usn5)[Reduce(usn2={`6esn`}[..{`2esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|1e1[..01])..]| Start @usn6=Node(0x0) ,@usn5=Rel:`8esn`(`6esn`='s_str'))"), + octest_legacy:ct_string("Foreach(@usn6 In {`5esn`}[1000..]| Remove Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999]|$_usn3[010..False]).`2esn`? Remove {`3esn`:@usn5[12.0][{1000}]}.`2esn`?,Single(`1esn` In $12 Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]).`2esn`?,``:`4esn`:@usn6) Remove {_usn4:0Xa Contains $``,@usn6:@usn6[$_usn4]}.@usn5,Filter(`1esn` In `3esn`[07..] Where 9e1[$_usn4..0xabc]).`5esn`!"), + octest_legacy:ct_string("Drop Constraint On(usn2:_usn4)Assert Exists([12.e12[$`4esn`..],\"d_str\" Contains @usn6 Contains 12.e12,$7 Is Not Null].@usn6!)"), + octest_legacy:ct_string("Start `5esn`=Relationship:`4esn`(#usn8=\"d_str\") Delete 0X0123456789ABCDEF[`5esn`..][$#usn8..],`3esn` Is Not Null Is Not Null,0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] With Distinct *,{`8esn`}[..$`6esn`][..123.654],None(@usn5 In Null =~12e12 Where #usn8[`7esn`..])[{123456789}..][All(`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0})..] Order By $0 Ends With False Ends With $_usn4 Descending,[0.12[..$`6esn`][..$1000],0.12 Starts With 9e12 Starts With $`1esn`,\"d_str\" Contains @usn6 Contains 12.e12] Is Null Desc Limit `1esn`[`3esn`..True] Where {12} Contains `7esn` Contains $_usn3"), + octest_legacy:ct_string("Optional Match Allshortestpaths(({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})),Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Where `1esn`[..00][..{7}] Create (:`5esn`:@usn5{usn1:$#usn7[`5esn`]})<-[?:`4esn`|:#usn7]->(_usn4 :#usn8{`5esn`})-[`4esn`?:_usn4|:usn1{@usn6:$#usn7 Ends With 0.12 Ends With {@usn6}}]->(#usn8 {usn1:$123456789 Starts With `5esn`})"), + octest_legacy:ct_string("Optional Match Shortestpath((({``:$7[{`1esn`}]})-[`8esn`?:`5esn` *12..{#usn7:$1000 Is Not Null Is Not Null}]-(:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]}))),Allshortestpaths(()) Using Join On `1esn`,`7esn`,usn2 Using Scan `8esn`:#usn7 Where $_usn3[010..False] Union All Remove {usn2:123.654[{`7esn`}][{7}],#usn8:$0[..{usn2}][..$usn1]}.usn2? Delete {12} Contains `7esn` Contains $_usn3 Merge `1esn`=((:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn7{usn1:1.0[{999}][$999]}]->(:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})) Union Detach Delete {usn2:{`1esn`} Is Not Null} Is Null,0.0 In `6esn` In $@usn5,[{usn2}[$`4esn`]] Starts With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null]"), + octest_legacy:ct_string("Create Constraint On(`4esn`:`7esn`)Assert Exists(Reduce(`5esn`=1.e1 =~`2esn`,`1esn` In $12 Is Not Null|{1000}[01234567..$_usn4][{@usn6}..$_usn3]).`7esn`!)"), + octest_legacy:ct_string("Start @usn5=Node:``(#usn7=\"d_str\") Merge Shortestpath((`7esn` :`1esn`)<-[`1esn`?:`4esn`|:#usn7 *..01234567]-({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6})) On Match Set `4esn` ={`5esn`}[$`8esn`..$`1esn`][0.12..0.12],`3esn` =[`8esn` In $12[{7}..0X0123456789ABCDEF] Where 2.12 In $`8esn` In {`7esn`}|12e12 Starts With `1esn` Starts With usn2] Contains Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 9e0[#usn8]) Contains #usn7({`7esn`}[9e1..][@usn6..],{usn2}[$`4esn`]) Union With Distinct {#usn7} Contains @usn5 Contains Count ( * ),01 Starts With {999} Starts With $`2esn`,$usn1[@usn6][#usn7] As `6esn` Order By Any(`6esn` In 00 Where 0X7 Starts With {999} Starts With 12e12) Starts With (`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}) Starts With {`8esn`:{#usn7} Contains @usn5 Contains Count ( * )} Ascending,`8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]] Desc Limit None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] Where {`1esn`} Starts With `4esn` Starts With {0} Merge ((_usn4 :`8esn`:@usn5)) With Distinct 0x0[{7}..] As `7esn`,$`5esn`[@usn5..][$``..],Single(`1esn` In `3esn`[07..] Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF)[Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6)..Shortestpath(((_usn3 {@usn5:.e12 =~.e0})-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})-[`5esn`?:@usn5|:`7esn`]-(:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01})))][Shortestpath(((`6esn` :`7esn`)-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})))..Reduce(usn2=Null In .e0,_usn3 In {`2esn`} Ends With {12} Ends With 7|{0}[..{`7esn`}])] As usn2 Order By $_usn3[{999}] Ascending,1.e1 Ends With 0 Ends With $usn1 Descending,$0[..{usn2}][..$usn1] Desc Skip Count ( * ) Starts With 010 Starts With 0x0"), + octest_legacy:ct_string("Delete 0Xa In {`7esn`}"), + octest_legacy:ct_string("Create Constraint On(`3esn`:usn2)Assert Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End.`3esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn4:#usn7)Assert `6esn`(Distinct 12 Starts With $#usn7,12e12 Ends With `4esn` Ends With 123456789).usn2? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`7esn`)Assert [`1esn` Is Null Is Null,$`3esn` Contains 0 Contains 07,0 Contains $usn2 Contains 12e12].usn2! Is Unique"), + octest_legacy:ct_string("With $`2esn`[12.e12][$@usn5],12 Starts With $#usn7,(#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..] Order By @usn5 In 1e1 Asc Limit {_usn4}[...e12][..0xabc] Where True Is Null Is Null Union Return Distinct *,.e0 =~{`8esn`} =~$999 As #usn7 Skip 1000 Is Not Null Limit Count(*)[..``][..#usn8] Unwind [1.e1 =~$usn2,@usn6[{0}..],@usn5[12.0][{1000}]][@usn6()..Case {@usn5}[..@usn6] When $`2esn` Starts With {`8esn`} Starts With {usn1} Then {``} Is Null Is Null Else 123456789 Ends With usn1 Ends With usn2 End] As `3esn` Start #usn7=Relationship:usn2(_usn3='s_str') ,`4esn`=Node:`7esn`(``={usn2})"), + octest_legacy:ct_string("Drop Constraint On(``:``)Assert Exists(All(`2esn` In {999} Is Not Null Where {1000}[1000][$usn1]).@usn5)"), + octest_legacy:ct_string("Start @usn6=Rel:usn1(@usn6=\"d_str\") Where @usn5 Is Not Null Is Not Null Create Unique ((({usn2:$`5esn`[`4esn`][_usn3]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})-[_usn3 *..01234567$`5esn`]->({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null}))) Union All Detach Delete $usn1 Contains {`8esn`} Contains $123456789 Union All Foreach(@usn5 In $123456789[..$7][..$`6esn`]| Detach Delete Case True[$123456789][`8esn`] When 12.e12[{@usn5}..][9e1..] Then 12.e12[`7esn`] Else {`2esn`}[Count(*)] End Ends With (`` :`7esn`)<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]}) Ends With None(`1esn` In `3esn`[07..]),[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]][[9e0 Starts With .e0 Starts With \"d_str\",`3esn`[..{_usn4}][..{@usn5}],1.e1 =~`2esn`]..Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where `6esn` Ends With 2.12 Ends With @usn6)],{`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]} Starts With Allshortestpaths((`2esn` :@usn6{7})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]})<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`)) Starts With All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {7} Contains $123456789) Delete 12.e12[{@usn5}..][9e1..],Extract(_usn3 In True[7][$999] Where $`3esn`[{``}..]) Is Not Null Is Not Null,0.0 Contains $_usn4 Contains {`2esn`})"), + octest_legacy:ct_string("Create Unique Allshortestpaths((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(@usn5 :`8esn`:@usn5)<-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(:`6esn`:`8esn`{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})),Shortestpath((((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})<-[`5esn`?:`7esn`]->({@usn5:Count ( * ) Is Null})<-[#usn8?:``]-(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})))) Return *,$_usn4[$`4esn`..$12],{`5esn`} Starts With 12.0 Order By @usn5 =~`` Asc"), + octest_legacy:ct_string("Drop Index On:`3esn`(`8esn`)"), + octest_legacy:ct_string("Create Constraint On()-[`1esn`:`5esn`]->()Assert Exists(Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 1.e1[0X0123456789ABCDEF..]).#usn7?)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`8esn`)Assert ({usn2:`1esn` In 07})<-[usn2? *0xabc..7{usn1:$123456789 Starts With `5esn`}]->(:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})-[`6esn`?:_usn3|`8esn`]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]}).@usn5! Is Unique"), + octest_legacy:ct_string("Merge _usn3=((:_usn4{`8esn`:12e12 Starts With `1esn` Starts With usn2})<-[@usn6?]->(`3esn` :`4esn`:@usn6{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]})) On Match Set _usn4 =9e0 Starts With .e0 Starts With \"d_str\",`4esn` =Shortestpath((_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]) In Shortestpath(((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}))),@usn6+={999} Starts With {_usn4} Starts With 00 Match usn1=((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})),`8esn`=(`6esn` {``:`4esn`[usn1]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]->(#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``}) Using Scan `4esn`:#usn8 Union All Start `4esn`=Node:_usn3({123456789}) Where $@usn5[$`4esn`][$@usn6] Unwind `5esn` In 12e12 In `8esn` As #usn7"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`6esn`)Assert All(`3esn` In 123.654[1e1..][{#usn8}..] Where .e1[0.12]).`1esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:_usn4)Assert Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where Count(*) In {``}).`` Is Unique"), + octest_legacy:ct_string("Merge (({`6esn`:{`3esn`} Ends With `1esn` Ends With $@usn6,@usn6:$usn1 In 0.12 In $``})) Create Unique ((usn2 :_usn3)<-[?:_usn4|:usn1 *..00{`1esn`:{#usn8}[2.12]}]->(:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn8:#usn7|`2esn`]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})),`5esn`=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]}) Load Csv With Headers From (#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..] As usn1 Union All Optional Match usn2=Allshortestpaths((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}))),((usn1 :@usn5)<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]})<-[`1esn`?:`3esn`|:@usn5{usn2:Count ( * )[..12][..{@usn6}]}]-(@usn5 {``:`3esn` =~9e0 =~@usn6})) Create Unique `2esn`=Allshortestpaths((:`3esn`:`6esn`{999})),`8esn`=((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)) With *,`3esn` Ends With .e0 Ends With $`7esn` As @usn5,(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) Order By 0.12 In 0X7 Descending Skip @usn6[$12] Limit $999 Ends With $`2esn` Where {#usn8}[12.0][$@usn6]"), + octest_legacy:ct_string("Remove Case When $1000[..$999] Then 0x0 Ends With {``} When 0[$`6esn`...e1][`1esn`..$`7esn`] Then $#usn7 Starts With False Starts With {`6esn`} End._usn3,Extract(`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}]).@usn6,_usn3.`5esn`! Merge ((#usn8 {`8esn`:{7} Contains $123456789})) On Match Set #usn8+=$`5esn` Is Not Null,`5esn`._usn3! =Reduce(@usn6=$7 Is Null,`6esn` In 00|`6esn`[..{999}]) =~[$12 Is Not Null,07 =~@usn5] =~Reduce(`6esn`=9e12 Ends With 123456789,`8esn` In $12[{7}..0X0123456789ABCDEF]|$#usn7[..@usn6][..$0]) Remove `5esn`:_usn4,Shortestpath((({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(`4esn` :`2esn`))).#usn8! Union Detach Delete Case Count(*) Ends With 123.654 Ends With $12 When $@usn6[$0..usn1][0X0123456789ABCDEF..$999] Then {`6esn`}[..{`2esn`}] End In Reduce(`4esn`={@usn6} In {#usn7} In 12.e12,usn1 In 12.e12 In {0} In 9e1|\"d_str\"[..0.e0]) In [_usn4 In `2esn` Where 9e12 Ends With 123456789|$999 Is Null] Delete 01234567[..$`5esn`],{`8esn`}[True..][.e1..],(`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[?:`8esn`|:_usn4{usn1:999[12.0..][#usn7..],@usn5:123.654[$`1esn`..Null][1000..{_usn3}]}]-(`5esn` :@usn6)<-[`7esn`?:@usn5|:`7esn`{`1esn`:{`6esn`} Contains {usn2} Contains $1000}]->(_usn3 :_usn4{`7esn`:00 Starts With $`6esn`,`6esn`:{12}[999][{_usn3}]}) Ends With [_usn4 In `2esn` Where {`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]] Ends With Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $7 In 1.0 In 1e1) Union All Return *,0Xa Contains $``,1000 Starts With 123.654 Starts With $_usn4 Order By {_usn4} In {`6esn`} In `1esn` Descending,_usn4 In $usn1 Desc With Distinct *,Single(`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`)[..[$_usn4 Contains {#usn7} Contains `1esn`,{123456789} =~01234567 =~`3esn`]][..{`5esn`:{999} Starts With {_usn4} Starts With 00,usn1:$``['s_str'..][0x0..]}] As #usn8 Order By `6esn` Is Null Is Null Descending,`1esn` Is Null Is Null Asc Limit {12} In $12 In 0xabc Where False Contains $#usn8 Contains 9e1"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`5esn`)Assert Reduce(@usn6=0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12]).#usn8 Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`1esn`:@usn6]->()Assert Exists(Single(@usn5 In Null =~12e12).@usn5!)"), + octest_legacy:ct_string("Drop Constraint On()-[`3esn`:``]-()Assert Exists(Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where `6esn`[..{999}]).#usn8?)"), + octest_legacy:ct_string("Create ``=(`` :``)-[:_usn4|:usn1 *..7{`1esn`:@usn6[$usn2..#usn7]}]-(`2esn` :_usn3),Allshortestpaths((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(@usn5 :`8esn`:@usn5)<-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(:`6esn`:`8esn`{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})) Union With Distinct *,$`8esn` In $`2esn` In {7} As _usn3 Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,1.e1 =~$`1esn` Ascending,12.e12[..1e1] Asc Skip [$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]][..Case {#usn8}[#usn7..{`2esn`}] When $7 Is Not Null Then $@usn6[$`8esn`..][7..] When $`4esn`[..'s_str'][..`8esn`] Then `7esn` Contains {@usn5} Contains $123456789 Else 12.e12 In $0 In $0 End] Where {`5esn`} Contains 's_str' Contains 9e1 Detach Delete #usn8 Is Null,1e1 Starts With 9e1 Starts With {`4esn`} Return Distinct *,$_usn4[$`4esn`..$12],{`5esn`} Starts With 12.0 Order By @usn5 =~`` Asc"), + octest_legacy:ct_string("Drop Constraint On(``:usn1)Assert Filter(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`]).#usn8! Is Unique"), + octest_legacy:ct_string("Remove Filter(`1esn` In `3esn`[07..] Where #usn8 =~{_usn3} =~``).@usn5!,[`5esn` Is Null Is Null,$1000 Is Not Null Is Not Null].@usn6! Merge Shortestpath((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})<-[#usn7?:#usn8|`2esn`]-(usn2 {`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})) On Create Set `1esn`+=010 In $`5esn` In 0,[_usn3 In True[7][$999] Where 12e12 Is Not Null Is Not Null].@usn6? ={@usn6} Contains 123.654 Contains 01,@usn5 =$#usn7 =~{12} =~False On Create Set usn1+={usn1}[{`5esn`}..],Case {0} Is Null When $0 Is Not Null Then #usn8 Is Not Null When 12.e12[{@usn5}..][9e1..] Then `2esn`[$1000..9e12][{#usn8}..{7}] End.`6esn` =#usn8 =~{_usn3} =~``,`7esn`+=12e12 Ends With `4esn` Ends With 123456789 Create `4esn`=Shortestpath(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))),((#usn8 {`8esn`:{7} Contains $123456789})) Union All Unwind $7 Is Not Null As `5esn` Create @usn6=(#usn8 :`7esn`)"), + octest_legacy:ct_string("Load Csv From _usn3[$usn2..0] As #usn7 Fieldterminator \"d_str\" Foreach(`6esn` In Count(*) In 0e0 In 9e1| Match usn1=Allshortestpaths((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})-[#usn8?:#usn8|`2esn` *0X7..0Xa{usn2:{1000},`6esn`:#usn8[`7esn`..]}]->(:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})))"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`6esn`)Assert Exists(Reduce(`5esn`=`2esn` Starts With `` Starts With 1e1,usn1 In 12.e12 In {0} In 9e1|$usn2 Ends With $`5esn`)._usn3?)"), + octest_legacy:ct_string("Start `1esn`=Rel:usn2(`7esn`={7}) Unwind Reduce(`1esn`=12[..$@usn6],`` In {`1esn`} Starts With @usn6|00[..$123456789][..$`5esn`])[Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where {@usn5} Is Null)] As _usn3 Start #usn7=Node:#usn7('s_str') ,`6esn`=Node:@usn6({999})"), + octest_legacy:ct_string("Detach Delete $@usn5 In 's_str' In $12,Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]}))) Ends With Case When $``['s_str'..][0x0..] Then 9e12[..0X7] Else $1000[..$999] End,{`7esn`} Ends With `` Ends With {`8esn`}"), + octest_legacy:ct_string("Create Allshortestpaths((((`3esn` {`1esn`:$`6esn` Starts With 12.e12 Starts With $#usn7})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5)-[_usn4? *..010{`3esn`:$`3esn` In 9e12 In ``,@usn6:'s_str'[.._usn4][..``]}]->(:`6esn`:`8esn`{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})))) Create Shortestpath((({`2esn`:{7}[$7..],#usn7:`1esn` In 07})-[? *01..07]->({_usn4:{usn1} =~123.654 =~\"d_str\"}))),`1esn`=Allshortestpaths(((`8esn` {@usn6:12 Starts With {_usn4} Starts With $#usn8,`3esn`:.e1[@usn5]['s_str']}))) Union Delete Count(*)[.e12],All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,#usn7(01 =~$`1esn`) =~{@usn6:12.e12[$`8esn`..{`8esn`}],#usn8:#usn7 =~00} Load Csv From 9e1[$`2esn`..][`1esn`..] As `4esn` Return {1000} As `` Order By {1000}[1000][$usn1] Descending,$999[9e0..] Desc Skip Filter(`1esn` In `3esn`[07..] Where 12 Ends With 01)[..All(`3esn` In 123.654[1e1..][{#usn8}..] Where 0Xa Contains Count ( * ))]"), + octest_legacy:ct_string("Merge @usn6=((_usn4 :#usn8)<-[:#usn8|`2esn` *123456789..0X7{``:$#usn7 =~{12} =~False,`5esn`:{1000} In {123456789}}]->({`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF})<-[{``:\"d_str\"[{`8esn`}..]}]-(:#usn7{#usn7:$`8esn` In $`2esn` In {7}})) On Create Set _usn3 =1.e1[`4esn`..][$`6esn`..]"), + octest_legacy:ct_string("Start `1esn`=Relationship:usn1({999}) ,`4esn`=Node(01234567,0Xa,07)Where $usn1[$123456789..0][{`1esn`}..12.0] Union With *,[`2esn`,{`2esn`} Starts With @usn6,9e1 =~999] In Any(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3} Contains 9e0 Contains $999),Count(*) Starts With $usn1 Starts With {usn2} As @usn6 Limit Reduce(`6esn`=7[$0..][{_usn4}..],_usn3 In {`2esn`} Ends With {12} Ends With 7|{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`)[[$#usn7[`5esn`],Count(*) Ends With 123.654 Ends With $12,$#usn7[..@usn6][..$0]]] Where $_usn4 Is Not Null Is Not Null With *,{#usn7} Ends With Extract(`1esn` In 0.e0 =~`1esn` =~`6esn`|.e1 Ends With 0Xa Ends With .e1) As `5esn`,123456789 Is Not Null Is Not Null As #usn7 Skip {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Where $``['s_str'..][0x0..] Create #usn8=(`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`) Union All Load Csv With Headers From {`2esn`}[Count(*)] As usn2 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Unwind Count ( * )[00] As `3esn` Unwind 01[..{`7esn`}][..01234567] As @usn5 Start @usn6=Rel:`2esn`(`5esn`='s_str') ,_usn3=Relationship:`1esn`(#usn7=\"d_str\")Where 0.e0 Contains #usn7"), + octest_legacy:ct_string("Create Constraint On()-[`4esn`:#usn7]-()Assert Exists(Reduce(usn1=$7[$`3esn`],`5esn` In $`2esn`[12.e12][$@usn5]|9e1 =~999).`7esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[usn1:`8esn`]-()Assert Exists([0Xa[..{1000}][..$#usn7],$`6esn` Ends With {0} Ends With {`7esn`},0Xa[..{1000}][..$#usn7]].`6esn`!)"), + octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From 0e0 Contains 9e12 As _usn3 Foreach(#usn8 In [`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7}|usn2[`7esn`..{`3esn`}][$7..{#usn7}]][..[`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]|9e12[..0X7]]][..[`2esn` Ends With $`4esn` Ends With {#usn7},'s_str'[..0X7],{#usn8} =~{999} =~{#usn7}]]| Create `6esn`=(({`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})),@usn5=((:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})<-[``:usn2|#usn7 *..0Xa]->(`1esn` {#usn8:$12 Contains 0Xa})) Remove {usn2:123.654[{`7esn`}][{7}],#usn8:$0[..{usn2}][..$usn1]}.usn2?)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:`2esn`)Assert [`` In {`1esn`} Starts With @usn6 Where 's_str'[.._usn4][..``]].`7esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn2:#usn8)Assert Exists(Filter(`6esn` In Count(*) Ends With $`` Ends With {7} Where `7esn` Starts With 0X7 Starts With $`7esn`).`8esn`)"), + octest_legacy:ct_string("Return {`4esn`}[$_usn4..][9e0..],0X7 Starts With {999} Starts With 12e12 As @usn5,$`2esn` Ends With 0.12 Ends With .e1 As `` Order By False[{`8esn`}] Asc,Reduce(usn2={`6esn`}[..{`2esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|1e1[..01]) Is Not Null Is Not Null Asc,{1000}[1000][$usn1] Ascending Union All Create Unique Shortestpath((`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})),(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]}) Union All Create `3esn`=Allshortestpaths((`7esn` :@usn6)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]}))"), + octest_legacy:ct_string("Using Periodic Commit 01234567 Load Csv From 7 Contains $`` Contains {`6esn`} As `8esn` Fieldterminator \"d_str\" Delete 12.e12[{@usn5}..][9e1..],Extract(_usn3 In True[7][$999] Where $`3esn`[{``}..]) Is Not Null Is Not Null,0.0 Contains $_usn4 Contains {`2esn`}"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`3esn`)Assert Case 0.e0 =~`1esn` =~`6esn` When $`1esn`[$12][Count ( * )] Then 0Xa Contains {`7esn`} Contains $999 Else 0.12[..$`6esn`][..$1000] End.`2esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn6:usn2)Assert Exists([12 Starts With 7 Starts With $`5esn`].usn2!)"), + octest_legacy:ct_string("With 0.0 Is Not Null As `4esn` Order By $`8esn` Is Null Is Null Desc,[.e12 Ends With 1000 Ends With 010,Count(*)] Ends With {`7esn`:$_usn3 =~{_usn4} =~$`6esn`} Ends With Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]) Descending Remove {usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}.`7esn`?,Reduce(`1esn`=$`1esn`[#usn8][$@usn5],usn1 In 12.e12 In {0} In 9e1|.e12[$7..][{`6esn`}..]).`7esn`"), + octest_legacy:ct_string("Detach Delete Count ( * )[{12}..{@usn5}][{#usn8}..Null],(:_usn3{#usn7:#usn8 =~{999}})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07}) Contains None(_usn4 In 0.0[..{999}][..0.0] Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`) Contains Case When $`` Is Null Then 0.12 Ends With {1000} Ends With `6esn` When True[7][$999] Then 0Xa Contains Count ( * ) End Union All Start `1esn`=Relationship:usn1({999}) ,@usn5=Rel:usn1(@usn6=\"d_str\") Union All With *,`1esn`[Null..] As `2esn` Skip 's_str'[_usn4..0x0] Limit Allshortestpaths((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null}))) In {`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null} Where {7} Is Null Load Csv From {1000}[01234567..$_usn4][{@usn6}..$_usn3] As usn2 "), + octest_legacy:ct_string("Foreach(`6esn` In Reduce(`3esn`=#usn8 In `8esn` In 07,#usn7 In 123.654 Starts With $``|_usn3[$usn2..0])[..Any(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`])][..[$`1esn`[#usn8][$@usn5],\"d_str\" Ends With False Ends With {@usn6}]]| Create `5esn`=Shortestpath(((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))) Unwind {`1esn`:{123456789}[12..][$12..]} =~{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF} =~[`1esn` In $12 Is Not Null Where 0e0 Contains `3esn` Contains `7esn`|_usn3[\"d_str\"]] As @usn6) Create Unique @usn5=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Union Match (`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}) Using Join On `6esn`,`1esn`,`` Load Csv From None(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) Ends With Case When 0x0[{999}..][{_usn4}..] Then Count(*)[.e12] When {_usn4}[...e12][..0xabc] Then Count(*) Ends With $`` Ends With {7} Else ``[{#usn8}] End Ends With Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where 's_str' Starts With 12e12 Starts With $_usn4|True Starts With $`4esn` Starts With 12e12) As usn1 Create ``=(:_usn3{`8esn`:9e1 =~999})"), + octest_legacy:ct_string("Remove (:@usn5)-[`8esn`?{`3esn`:'s_str'[..0X7]}]-(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}).`7esn`,All(#usn7 In 0Xa[@usn5][{`7esn`}] Where $@usn5 In $usn2 In {1000}).`6esn`!,{`7esn`:12e12 Ends With `4esn` Ends With 123456789}.usn2 Union All Start `3esn`=Rel:#usn8(\"d_str\") ,`3esn`=Node:`2esn`(@usn6={`4esn`}) Union All Merge Shortestpath((`6esn` {``:`4esn`[usn1]})<-[`7esn`?{_usn4:9e1 Ends With Count(*) Ends With False,#usn7:$_usn4 Ends With 0.e0 Ends With .e0}]->({`1esn`:$123456789[..$7][..$`6esn`]})-[_usn3:#usn7|`2esn`]-(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})) Remove Case 07[`8esn`] When {1000} Then {usn1} =~123.654 =~\"d_str\" Else Null Ends With 12 Ends With usn2 End._usn4?"), + octest_legacy:ct_string("Create Constraint On(_usn3:`4esn`)Assert [.e1[0.12]].`6esn`? Is Unique"), + octest_legacy:ct_string("Load Csv With Headers From 9e12 In 1e1 In .e12 As `5esn` With Distinct *,{999} Starts With {_usn4} Starts With 00 As `6esn`,(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As #usn7 Order By $@usn6 Starts With $123456789 Starts With 0X7 Desc Skip [`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]][..Reduce(`4esn`=@usn5[12.0][{1000}],_usn4 In `2esn`|0[$`6esn`...e1][`1esn`..$`7esn`])][..[7[010][00],$7[$`3esn`],#usn7 =~{`4esn`} =~123456789]] Limit $7 In 1.0 In 1e1 With 's_str'[_usn3..] As `5esn`,{0}[False..@usn5] As `1esn` Order By {`5esn`:0.e0 Contains #usn7} Contains Reduce(_usn4=9e12 Is Not Null,`3esn` In 123.654[1e1..][{#usn8}..]|$_usn4[9e0..]) Contains [$0[..{usn2}][..$usn1]] Desc,01234567[{`7esn`}..] Descending,[{7} Contains $123456789,$``[..1.e1][..12],$`5esn`[..{`2esn`}][..{0}]] =~`3esn`(Distinct 1.e1[0xabc..],$@usn5[`1esn`..]) =~{`6esn`:{`3esn`} Ends With `1esn` Ends With $@usn6,@usn6:$usn1 In 0.12 In $``} Descending Skip .e0[..{`5esn`}][..999] Limit {`8esn`:`2esn` Starts With `` Starts With 1e1} In [usn1 In 00 In {_usn3}] In Allshortestpaths((_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]})) Where $123456789[..$7][..$`6esn`]"), + octest_legacy:ct_string("Create Constraint On()<-[usn2:#usn7]-()Assert Exists(Single(`6esn` In 00 Where {@usn5} Starts With 1.0 Starts With 00).``)"), + octest_legacy:ct_string("Create Constraint On()<-[usn1:`1esn`]-()Assert Exists(Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`)).@usn5)"), + octest_legacy:ct_string("Load Csv With Headers From 0e0 Contains 9e12 As _usn3 Remove Single(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn4} In {1000}).usn1 Union All Create Unique Allshortestpaths((:_usn4{`1esn`:{123456789}[12..][$12..]})) Load Csv With Headers From @usn5 Contains {0} Contains 9e12 As `` Union Start #usn8=Relationship( {`4esn`}) ,@usn6=Node:@usn6(_usn4={_usn4})Where `2esn` Merge ((`4esn` :usn2:`2esn`))"), + octest_legacy:ct_string("Using Periodic Commit 07 Load Csv With Headers From All(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[{#usn7:Count ( * )[$12..]}..][`5esn`(Distinct False Starts With 010)..] As @usn5 Fieldterminator 's_str' Remove (:`7esn`{999})<-[:`6esn`{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},`6esn`:``[..$#usn7]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]})<-[:`1esn`|:`3esn` *1000]->(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0}).`2esn`! Merge `7esn`=Allshortestpaths((#usn7 {``:0x0 =~123.654 =~{999}})) On Match Set `3esn`+=$`5esn`[$#usn7..][0xabc..],`4esn`+=$#usn7 =~9e1 =~$_usn4,`3esn`+=#usn8 =~`7esn`"), + octest_legacy:ct_string("Foreach(`4esn` In Reduce(`7esn`={@usn5} Is Null,#usn7 In 0Xa[@usn5][{`7esn`}]|0e0[0X0123456789ABCDEF..010][$@usn6..010])[Extract(_usn4 In `2esn` Where 123.654 Starts With $``|12.e12[``..usn2][{#usn7}..@usn5])]| Delete Shortestpath((@usn6 {``:.e12[\"d_str\"..][.e1..]}))[{`3esn`:#usn8 =~{999}}..[_usn3 In True[7][$999] Where 12e12 Is Not Null Is Not Null]],{@usn5} Is Null With {`4esn`}[$_usn4..][9e0..] Skip Reduce(_usn4=.e1 Starts With $_usn4 Starts With {`1esn`},`6esn` In 00|usn2[True])[..[9e12[..0X7]]][..$`1esn`] Where {`2esn`} Is Not Null Is Not Null) Union With $12 Is Not Null As `6esn`,(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Is Not Null Is Not Null As `2esn`,$`4esn` In Null Order By 2.12[`8esn`][1e1] Descending Skip $1000 Is Null Is Null Optional Match `8esn`=Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Using Scan `4esn`:_usn4"), + octest_legacy:ct_string("Drop Constraint On(usn1:@usn6)Assert Exists([`6esn` In Count(*) Ends With $`` Ends With {7} Where `7esn` Starts With 0X7 Starts With $`7esn`].#usn7!)"), + octest_legacy:ct_string("Start @usn6=Node:@usn6(_usn4={_usn4}) ,@usn5=Rel:@usn5({`3esn`})Where Count(*)[010..][#usn7..] Unwind [0X0123456789ABCDEF[$999..][@usn5..]] Contains Reduce(#usn7={12}[999][{_usn3}],`2esn` In {999} Is Not Null|$usn1 =~010 =~07) Contains None(`1esn` In `3esn`[07..]) As @usn5 Load Csv With Headers From {`7esn`:{999} Starts With {12},`3esn`:00} =~[0X0123456789ABCDEF[$`5esn`..],#usn7 Ends With $#usn7 Ends With {`8esn`}] =~[{12} =~0.e0 =~{_usn3},$#usn7 =~{12} =~False,1000 Is Null] As `6esn` Fieldterminator 's_str' Union Create Unique `5esn`=((`4esn` {`7esn`:12.e12 In $0 In $0,@usn5:_usn4[Count(*)]})<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})) Merge `5esn`=Allshortestpaths((((:#usn8{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})-[?:`` *..00{``:`3esn` =~9e0 =~@usn6}]-(:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})-[:_usn4|:usn1 *07]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})))) On Create Set _usn4+=0.12[Count(*)..][$#usn7..],None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]).@usn6! =[$`1esn`[$12][Count ( * )],9e1 Ends With $@usn5 Ends With $123456789] Is Not Null Is Not Null On Create Set {`3esn`:0X0123456789ABCDEF[$`2esn`..][`2esn`..]}.`4esn`? =`1esn`(Distinct $usn1 Starts With {_usn3},{#usn8}[$#usn7..]) Starts With [$_usn4[$`4esn`..$12]] Starts With [`6esn` In 00 Where 0.12 In 0X7|{999} Is Null],usn1:#usn7,Case When 1.e1[0xabc..] Then $@usn6 Starts With {`1esn`} Starts With 12 End.`2esn`! ={@usn5} Starts With 1.0 Starts With 00"), + octest_legacy:ct_string("Match (_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(`4esn` {`4esn`:_usn4[Count(*)],`8esn`:{_usn3} Contains $`1esn` Contains 12.0}),`5esn`=Shortestpath(((#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null})<-[?:#usn7|`2esn`{@usn5:$0 Is Not Null}]-(`` {``:0x0 =~123.654 =~{999}}))) Using Index `6esn`:`7esn`(#usn8) Using Join On #usn8,usn2,#usn7 Where $_usn3[010..False] Union All Detach Delete Count ( * )[{12}..{@usn5}][{#usn8}..Null],(:_usn3{#usn7:#usn8 =~{999}})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07}) Contains None(_usn4 In 0.0[..{999}][..0.0] Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`) Contains Case When $`` Is Null Then 0.12 Ends With {1000} Ends With `6esn` When True[7][$999] Then 0Xa Contains Count ( * ) End"), + octest_legacy:ct_string("Drop Constraint On()-[`7esn`:`8esn`]-()Assert Exists((:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[:`3esn`|:@usn5*..]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})._usn3)"), + octest_legacy:ct_string("Create Constraint On(#usn7:usn2)Assert {usn2:{`1esn`} Is Not Null}.@usn5! Is Unique"), + octest_legacy:ct_string("Remove (_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`3esn` {`1esn`:$`6esn` Starts With 12.e12 Starts With $#usn7})-[_usn4 *0x0..]-(:``$_usn4).#usn8!,Extract(_usn4 In 0.0[..{999}][..0.0] Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`|{`6esn`} Ends With 0e0 Ends With {``}).`1esn`! Foreach(`` In 00 Ends With `8esn`| Match _usn4=Shortestpath(((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))) Using Index `1esn`:`4esn`(`1esn`)) Unwind {`6esn`} Contains {usn2} Contains $1000 As `2esn` Union All Match (:``),`4esn`=(`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})-[?:@usn6|`` *..0Xa]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]}) Using Scan `7esn`:#usn8 Create Shortestpath((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Foreach(usn1 In `8esn`[..`4esn`][..$usn1]| Load Csv With Headers From {12}[00..{@usn6}][1.e1..0] As @usn6 ) Union All Start `8esn`=Node:`1esn`({@usn5}) Load Csv From [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null As `7esn` Fieldterminator 's_str' Foreach(`8esn` In 1.0 Ends With $`2esn` Ends With {`8esn`}| With Distinct *,Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End[None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])][count(Distinct $`5esn`[$#usn7..][0xabc..])] As `2esn`,12 Is Not Null Is Not Null As #usn8 Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}])[[#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}]..{`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}][Case When 2.12 =~0x0 =~_usn4 Then .e1[@usn5]['s_str'] When $@usn5 In $usn2 In {1000} Then {0}[False..@usn5] Else {@usn6}[True..{_usn3}] End..`1esn`()] Ascending)"), + octest_legacy:ct_string("Remove @usn5:``,(`6esn` :_usn3)<-[`1esn`? *0X0123456789ABCDEF{`5esn`:1.e1 Starts With $`2esn` Starts With $0}]->({_usn4:{usn1} =~123.654 =~\"d_str\"}).`2esn` Create Unique ((:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})) Union Start `8esn`=Node:#usn7(`5esn`=\"d_str\") ,`6esn`=Node:_usn4({`8esn`})Where 9e0[#usn8]"), + octest_legacy:ct_string("Foreach(`5esn` In Null Ends With 12 Ends With usn2| Create @usn6=((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1)),``=Shortestpath(((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})))) Union All Merge usn2=Allshortestpaths((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}))) On Match Set @usn5 =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Foreach(#usn7 In {@usn5} =~_usn4 =~0.12| Match #usn7=Allshortestpaths((:`5esn`:@usn5{#usn8:123.654[$`1esn`..Null][1000..{_usn3}],`6esn`:12.0 =~$#usn7 =~9e12})-[`1esn`:usn2|#usn7{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})),usn1=((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})) Where .e12[$7..][{`6esn`}..]) Union Detach Delete 0.0 =~12.e12 =~1.0,$`2esn`[{usn1}..]"), + octest_legacy:ct_string("Merge `7esn`=Allshortestpaths(((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1))) On Create Set `8esn`+=Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where 1.e1[12e12..{`6esn`}]|Count ( * )[..12][..{@usn6}]) Contains All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Contains Extract(_usn4 In `2esn` Where $999 Is Null),`8esn` ={#usn7} Starts With `3esn` Starts With {``},Single(_usn4 In 0.0[..{999}][..0.0] Where Count(*) In {``}).`1esn`! =0X0123456789ABCDEF =~@usn6 =~{0} Return *,Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6) Starts With [$_usn3[010..False],$123456789 =~`4esn`,$usn1[$123456789..0][{`1esn`}..12.0]] As `8esn`,12 Starts With 0x0 As `2esn` Order By All(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[{#usn7:Count ( * )[$12..]}..][`5esn`(Distinct False Starts With 010)..] Asc,All(usn1 In 12.e12 In {0} In 9e1)[[`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]|12.e12[$`8esn`..{`8esn`}]]..] Asc Limit 0Xa[07..] Union Load Csv From _usn4($123456789 =~`4esn`)[None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where Count(*) In {``})..][Any(`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7})..] As `3esn` Optional Match #usn7=Allshortestpaths(((:`5esn`:@usn5))),(((`5esn` :@usn6)<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5)<-[ *123456789..0X7]-(:`7esn`{``:.e1 Contains $`3esn`}))) Using Scan usn1:`1esn` Foreach(usn2 In $@usn6[$0..usn1][0X0123456789ABCDEF..$999]| With Distinct *,{@usn6} Is Not Null As `7esn` Order By usn1(``[..$#usn7]) =~None(`5esn` In $`2esn`[12.e12][$@usn5] Where 07[`8esn`]) =~Reduce(#usn8=12e12 Is Not Null Is Not Null,@usn5 In Null =~12e12|$`4esn` Starts With 0e0 Starts With _usn3) Ascending,.e1 =~$`5esn` Desc,Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000|$@usn5 In $usn2 In {1000}) Is Not Null Ascending Skip #usn7[00] Limit $`7esn` Is Null Is Null)"), + octest_legacy:ct_string("Remove Reduce(usn1=12e12 Ends With `4esn` Ends With 123456789,`1esn` In 0.e0 =~`1esn` =~`6esn`|1.e1[0xabc..]).`4esn`!,[$@usn6[$0..usn1][0X0123456789ABCDEF..$999],0.0 Is Not Null Is Not Null,0Xa Contains $``].`7esn`? Union Start `4esn`=Node:`1esn`(#usn7=\"d_str\") Where $_usn3 Is Null Is Null Unwind `7esn`[0..$usn2][{usn2}..0.e0] As `1esn` Create `7esn`=((:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})<-[`2esn`?:@usn6|`` *..00]->({_usn3})) Union All Create usn1=(((:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})<-[:``]-(_usn3 :`7esn`)<-[ *0xabc..7]->({#usn7:123456789[0..]}))) Start ``=Node:`6esn`('s_str') Where #usn7 Ends With $#usn7 Ends With {`8esn`}"), + octest_legacy:ct_string("Drop Constraint On(usn1:`5esn`)Assert Exists(Allshortestpaths((@usn6 :usn1:_usn4)<-[?:@usn6|`` *..01234567]->(#usn8 {usn1:$123456789 Starts With `5esn`})-[? *01..07]->(`8esn` :#usn7)).`2esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`1esn`)Assert (#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})-[?:@usn6|`` *1000]-(`5esn` :`7esn`)-[? *01..07]->(`8esn` :#usn7).`1esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn2:`4esn`)Assert Filter(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $7[{`1esn`}]).@usn5 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn3:usn2)Assert {`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}._usn4? Is Unique"), + octest_legacy:ct_string("Match `5esn`=Shortestpath((_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null})<-[@usn5?:`8esn`|:_usn4 *0X0123456789ABCDEF{usn1:False Contains $#usn8 Contains 9e1}]->({@usn6:$usn1[0X7],`3esn`:$7[$`3esn`]})),`8esn`=((@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})) Using Index @usn5:usn2(`6esn`) With Distinct *,$`8esn` In $`2esn` In {7} As #usn8,$#usn8[{12}..] As `6esn` Skip Null In .e0 Limit 0e0[{_usn3}..] Where 9e1 =~`` =~{`7esn`} Union All Delete 0X0123456789ABCDEF[`5esn`..][$#usn8..],`3esn` Is Not Null Is Not Null,0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] Foreach(`` In $`6esn`[9e1]| Load Csv With Headers From Reduce(@usn5=0.e0 Contains #usn7,`` In {usn1} Ends With {`6esn`} Ends With 123456789|$999 In 999)[Allshortestpaths(({`4esn`:#usn8 Is Null})-[:usn1{_usn4:0[{usn2}..][usn1..],`3esn`:12 Starts With 7 Starts With $`5esn`}]-(`7esn` :`3esn`:`6esn`)<-[`6esn`?:#usn8|`2esn`*..{`5esn`:@usn5 =~'s_str'}]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}))..{@usn6:0.0 Is Not Null Is Not Null,#usn7:\"d_str\"[{`8esn`}..]}] As `3esn` Fieldterminator 's_str') Create Allshortestpaths((((:@usn5{@usn6:{7} Contains $123456789})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})-[`3esn`:`6esn`{`3esn`}]-(#usn8 :`6esn`:`8esn`{`1esn`:9e12 Is Not Null,_usn4:0X0123456789ABCDEF[$`2esn`..][`2esn`..]}))))"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`2esn`)Assert Extract(`` In {`1esn`} Starts With @usn6 Where $`7esn`[$``..][999..]|True Is Null Is Null).`7esn`? Is Unique"), + octest_legacy:ct_string("Create Unique Shortestpath((((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4})))),Shortestpath((usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})) Remove Reduce(`3esn`={usn1} In Count ( * ),`1esn` In `3esn`[07..]|$123456789 Starts With $123456789 Starts With Count ( * )).@usn6!,Shortestpath((:_usn3{#usn7:#usn8 =~{999}})).#usn8 Start `2esn`=Node:usn1({`7esn`}) ,@usn5=Rel( {`7esn`})Where 123.654[1e1..][{#usn8}..] Union Return $12 Is Not Null As `6esn`,(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Is Not Null Is Not Null As `2esn`,$`4esn` In Null Order By 2.12[`8esn`][1e1] Descending Skip $1000 Is Null Is Null Create Unique `2esn`=((_usn3 :`5esn`:@usn5)<-[`7esn`? *0xabc..7]->(:`6esn`:`8esn`{`3esn`:$`6esn`[{`3esn`}..12],_usn3:0[{@usn5}..][7..]})),@usn6=(((:_usn3{`8esn`:9e1 =~999})<-[@usn6?]->(`6esn` :_usn3)<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`))) Union Optional Match `8esn`=(@usn6 :`6esn`:`8esn`)<-[_usn4?:`7esn`{``:{_usn3} Contains $`1esn` Contains 12.0}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}),Shortestpath((`6esn` {``:`4esn`[usn1]})<-[`7esn`?{_usn4:9e1 Ends With Count(*) Ends With False,#usn7:$_usn4 Ends With 0.e0 Ends With .e0}]->({`1esn`:$123456789[..$7][..$`6esn`]})-[_usn3:#usn7|`2esn`]-(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})) Using Join On `7esn` Using Scan _usn4:#usn8 Where $12 Contains 0Xa Create (#usn8 :#usn8) Unwind `6esn` Contains {`1esn`} Contains 9e0 As `1esn`"), + octest_legacy:ct_string("Create Constraint On()<-[@usn5:#usn7]-()Assert Exists(Any(`2esn` In {999} Is Not Null Where $usn1[$123456789..0][{`1esn`}..12.0]).`3esn`!)"), + octest_legacy:ct_string("Create Constraint On(#usn8:_usn3)Assert Exists([`6esn` In Count(*) Ends With $`` Ends With {7} Where $12 Is Not Null]._usn3?)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:#usn8)Assert Exists(Filter(`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]).usn2)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`2esn`)Assert [07 =~$`8esn` =~9e1].usn1 Is Unique"), + octest_legacy:ct_string("Remove Extract(_usn4 In `2esn` Where 1.0[{999}][$999]|`4esn`[usn1]).#usn7! Union All Foreach(`8esn` In Shortestpath(((:@usn6{usn2:{#usn8}[12.0][$@usn6]})<-[{_usn4:{1000} Ends With {`8esn`}}]-(@usn5 :`7esn`{_usn3:{``}[_usn4..$`1esn`]})<-[#usn8? *..0Xa{`4esn`:$`2esn` Ends With 0.12 Ends With .e1,`4esn`:07 =~@usn5}]-(:`3esn`:`6esn`{999})))[..Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where Count(*) Ends With 123.654 Ends With $12|0Xa[$1000..$123456789])][..{@usn6:12 Starts With {_usn4} Starts With $#usn8}]| Match _usn3=(@usn6 :@usn6),usn2=((_usn4 :#usn7{`8esn`:$999 Contains {7}})<-[`4esn`:`4esn`|:#usn7{`2esn`:{`4esn`}[$_usn4..][9e0..]}]-(`6esn` )) Using Index `3esn`:#usn7(usn2))"), + octest_legacy:ct_string("Detach Delete Filter(`1esn` In `3esn`[07..] Where 07 =~$`8esn` =~9e1) Is Not Null,False Ends With $`` With Distinct {`8esn`}[..$`6esn`][..123.654],{@usn6} In {#usn7} In 12.e12 As usn1,0.12 Is Not Null Is Not Null Limit Reduce(`3esn`={_usn3} Is Not Null,usn1 In 12.e12 In {0} In 9e1|0[Count(*)][0e0])[`6esn`(``[..0X0123456789ABCDEF])..Single(`` In {`1esn`} Starts With @usn6 Where {_usn3}[$usn2..])] Load Csv From {`6esn`} Is Null As `8esn` Fieldterminator \"d_str\" Union All Merge `7esn`=(({@usn6:$`` Starts With 12 Starts With $usn2})) On Match Set (:_usn3$usn1)<-[`2esn`:`5esn` *0x0..{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})._usn4 =#usn7 Starts With $999 Create `3esn`=Shortestpath((`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})),Allshortestpaths(((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0}))) Start #usn8=Relationship:usn1({7}) "), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`8esn`)Assert Exists((#usn8 {`2esn`:{#usn8} =~{999} =~{#usn7}})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})._usn3)"), + octest_legacy:ct_string("Create Constraint On(usn2:usn2)Assert Exists((`7esn` {`3esn`:0.0 =~12.e12 =~1.0,`1esn`:$usn1 Starts With {_usn3}})-[ *..0{`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null}]->(:usn1:_usn4{`4esn`:01234567 In $123456789}).`2esn`!)"), + octest_legacy:ct_string("Unwind 0xabc[9e12][0X0123456789ABCDEF] As _usn4"), + octest_legacy:ct_string("Drop Constraint On()-[_usn3:#usn7]->()Assert Exists([`3esn` In 123.654[1e1..][{#usn8}..]].@usn6!)"), + octest_legacy:ct_string("Optional Match Shortestpath(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),((`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})) Where {@usn5} =~_usn4 =~0.12 Foreach(`1esn` In .e1 Contains $`3esn`| Create Unique @usn5=Allshortestpaths(({`8esn`:0[$`6esn`...e1][`1esn`..$`7esn`]})-[#usn8:#usn7|`2esn`]->(:@usn6{`2esn`:$999 In 999})),`1esn`=((`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})-[ *0xabc..7{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}]-({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})-[`2esn`:`3esn`|:@usn5 *..010{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->({`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]}))) Unwind Reduce(@usn6=@usn5[$12..\"d_str\"],`` In {`1esn`} Starts With @usn6|Count ( * ) =~{`5esn`} =~{_usn4}) Starts With None(`1esn` In $12 Is Not Null Where `7esn` Is Not Null Is Not Null) Starts With [$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null] As `2esn` Union All Create Unique `6esn`=((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[:`2esn` *07]-(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]->({``:.e1 Contains $`3esn`})) Load Csv With Headers From @usn5 Contains {0} Contains 9e12 As `` Remove [`3esn` In 123.654[1e1..][{#usn8}..] Where {@usn6} In {#usn7} In 12.e12|123.654 Contains $_usn3 Contains 0X0123456789ABCDEF].usn2?,None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12.e12[``..usn2][{#usn7}..@usn5])._usn3? Union All With {usn1}[$`8esn`..0.0] As #usn8 Skip {`2esn`} Ends With {12} Ends With 7 Limit .e1 Starts With $_usn4 Starts With {`1esn`} Where .e12 Contains $`1esn` Contains $@usn6 Match (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` )) Using Join On `8esn`,_usn4 Using Index `7esn`:`1esn`(`2esn`)"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:`8esn`]->()Assert Exists([`1esn` In `3esn`[07..] Where 00[07..]|0[$`6esn`...e1][`1esn`..$`7esn`]].`6esn`?)"), + octest_legacy:ct_string("Remove Reduce(`4esn`={7} Contains $123456789,`1esn` In `3esn`[07..]|$@usn6 Contains $`7esn` Contains 1e1).usn2?,None(`1esn` In $12 Is Not Null Where .e1[@usn5]['s_str']).usn1!,Any(`` In {`1esn`} Starts With @usn6 Where \"d_str\"[{`8esn`}..])._usn4!"), + octest_legacy:ct_string("Create Constraint On(`2esn`:usn1)Assert Exists((:``{`1esn`:#usn8 Is Not Null,`5esn`:$@usn6[$0..usn1][0X0123456789ABCDEF..$999]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})-[?:_usn3|`8esn` *12..{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}]-(`6esn` :`2esn`{`7esn`:#usn8 =~{999}}).#usn8?)"), + octest_legacy:ct_string("Create Constraint On()-[usn1:usn1]-()Assert Exists(Extract(usn1 In 12.e12 In {0} In 9e1 Where {12}[usn2])._usn4!)"), + octest_legacy:ct_string("Load Csv With Headers From Shortestpath((@usn6 {``:.e12[\"d_str\"..][.e1..]}))[{`3esn`:#usn8 =~{999}}..[_usn3 In True[7][$999] Where 12e12 Is Not Null Is Not Null]] As `4esn` Unwind {``} Is Null Is Null As `3esn` Optional Match `1esn`=(usn1 :`8esn`:@usn5)<-[?:_usn4|:usn1 *..00{`1esn`:{#usn8}[2.12]}]->(:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00}) Using Index usn1:`3esn`(`3esn`) Using Join On usn1 Where $7[$`3esn`] Union Create Unique `7esn`=((`8esn` :@usn6)) Unwind {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn` As `5esn` Unwind {usn1:$`8esn` In $`2esn` In {7},`7esn`:{`2esn`} In $123456789 In True}[..(:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]})-[`3esn`:`` *123456789..0X7{#usn8:12 Starts With $#usn7}]-(`3esn` :`7esn`)-[?*..{`1esn`:$`1esn`[07..][9e12..],@usn6:{7} Starts With $usn1 Starts With 1.0}]->(:`3esn`:`6esn`)][..Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6)] As `1esn`"), + octest_legacy:ct_string("Create Constraint On()<-[usn2:`3esn`]-()Assert Exists((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(#usn7 :@usn6{`8esn`:{@usn6}[True..{_usn3}],`1esn`:07 Is Null})-[?:@usn6|``{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(`2esn` :#usn8{@usn6:`7esn` Ends With $_usn3 Ends With usn2,_usn4:{12} Starts With #usn8 Starts With 0e0})._usn3!)"), + octest_legacy:ct_string("Drop Constraint On()-[usn2:``]->()Assert Exists([True Is Not Null,12.e12[{@usn5}..][9e1..],$`3esn`[{``}..]].`5esn`)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`6esn`)Assert Exists(Single(`1esn` In $12 Is Not Null Where {``}[010]).`8esn`?)"), + octest_legacy:ct_string("Load Csv From ``(999 Starts With 's_str',1e1[1.e1..][123.654..]) =~[$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]] =~[#usn7 In 0Xa[@usn5][{`7esn`}] Where `5esn`[0xabc..]] As #usn8 Create `6esn`=Shortestpath(((:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}))),Shortestpath((usn2 :`5esn`:@usn5)<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(#usn7 {`7esn`:12e12 Ends With `4esn` Ends With 123456789})-[?:`7esn`]->(#usn7 :@usn6)) Start `4esn`=Node:``(\"d_str\") Union Load Csv With Headers From $1000[..12.0][..0e0] As `` Union Load Csv With Headers From $`1esn`[07..][9e12..] As `` Fieldterminator 's_str' Create `2esn`=Allshortestpaths(((`4esn` {`6esn`:True =~{`1esn`},`7esn`:0Xa[$1000..$123456789]})<-[:@usn5|:`7esn`{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->({#usn7:123456789[0..]}))) Return *,[#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null,{999}[9e1] As usn1 Order By {123456789} =~{@usn6} Desc,Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..] Desc,{`5esn`} Ends With \"d_str\" Desc Limit _usn4 =~0e0"), + octest_legacy:ct_string("Drop Constraint On()<-[`2esn`:`6esn`]-()Assert Exists(Shortestpath((:`2esn`{`6esn`:@usn6[{0}..]})<-[usn2?:usn2|#usn7]->(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})).@usn6?)"), + octest_legacy:ct_string("Create Constraint On(_usn4:@usn6)Assert Case When #usn8 Is Not Null Then 12.e12 In $0 In $0 Else $`8esn`[..$999][..0] End.@usn5! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`5esn`:#usn7]-()Assert Exists(None(`2esn` In {999} Is Not Null Where {1000}[1000][$usn1]).`4esn`?)"), + octest_legacy:ct_string("Return Distinct {usn1}[{`5esn`}..] As _usn4,[$_usn4[9e0..]][`8esn`(Distinct {7} Starts With $usn1 Starts With 1.0)..Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} Starts With 1.0 Starts With 00|$#usn7[..@usn6][..$0])][Any(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{#usn8:{`7esn`} Is Not Null Is Not Null,`4esn`:12 Starts With 0x0}] As `1esn` Skip 07[$`2esn`..0x0] Limit {_usn4}[..$#usn7] Return Distinct Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..],`` =~`6esn` =~usn1 As `2esn` Order By .e12[$#usn8..@usn6] Desc,{usn1}[$`8esn`..0.0] Desc Limit None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False) Is Null Return Distinct {`3esn`}[{12}..][0.12..] As ``,$``[True..] Order By [`2esn` In {999} Is Not Null Where {@usn6}[True..{_usn3}]] =~None(#usn7 In 123.654 Starts With $`` Where {usn2}[$`4esn`]) =~Extract(`1esn` In $12 Is Not Null Where Null Is Null Is Null|$123456789 =~`4esn`) Ascending,{0}[False..@usn5] Desc Limit 12 In 999"), + octest_legacy:ct_string("Start `5esn`=Relationship(01,0x0,0X7,0X7) Where {@usn5}[1e1..][9e1..] Optional Match Shortestpath((`7esn` {@usn6:{_usn4} Is Null})<-[usn2? *0xabc..7{usn1:$123456789 Starts With `5esn`}]->(:`4esn`:@usn6{`1esn`:{12}[00..{@usn6}][1.e1..0],usn1:``[..0X0123456789ABCDEF]})-[`1esn`?:_usn4|:usn1*]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})) Using Scan `2esn`:@usn6 Return Distinct [.e12 Ends With 1000 Ends With 010,Count(*)] Ends With {`7esn`:$_usn3 =~{_usn4} =~$`6esn`} Ends With Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]) As @usn6,$123456789[$`5esn`][$_usn4] As `4esn` Order By Single(`8esn` In $12[{7}..0X0123456789ABCDEF])[Case 9e1[123456789..] When 12 Starts With 7 Starts With $`5esn` Then {_usn3} Contains True Contains 0X7 When `1esn`[..00][..{7}] Then 1.e1[12e12..{`6esn`}] End..] Descending"), + octest_legacy:ct_string("Optional Match ((()-[?:`3esn`|:@usn5 *0x0..{`3esn`:.e1[0.12],`7esn`:$123456789 Starts With .e12}]-(:`6esn`:`8esn`{@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]})-[?:usn2|#usn7]-(`1esn` {#usn7:Count ( * )[$12..]}))),((`4esn` {`1esn`:9e12 Is Not Null Is Not Null})-[?:`7esn` *999{@usn6:{``} Ends With .e12 Ends With 0.e0,`5esn`:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})) Using Index usn1:`7esn`(_usn3) Where 07 =~@usn5 Union Detach Delete 9e0 Starts With .e0 Starts With \"d_str\",(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) Union Match _usn3=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`)))"), + octest_legacy:ct_string("Create Constraint On(`2esn`:@usn5)Assert None(`1esn` In $12 Is Not Null Where 12.e12[{@usn5}..][9e1..]).`3esn`? Is Unique"), + octest_legacy:ct_string("Delete $`1esn`[..{_usn3}],usn2[`7esn`..{`3esn`}][$7..{#usn7}],{`8esn`}[0X7][$`3esn`]"), + octest_legacy:ct_string("Create Constraint On()-[usn1:``]->()Assert Exists(Reduce(`3esn`=1.0 Is Null Is Null,`1esn` In `3esn`[07..]|{`4esn`} In _usn4)._usn4!)"), + octest_legacy:ct_string("Create Constraint On(#usn8:@usn6)Assert Exists(Reduce(#usn7=$@usn5[..usn2][..$#usn7],_usn3 In {@usn5}[..#usn7]|0.12[Count(*)..][$#usn7..]).`8esn`!)"), + octest_legacy:ct_string("Create Constraint On()-[`6esn`:`2esn`]-()Assert Exists(`2esn`(Distinct 0Xa[$1000..$123456789]).`3esn`)"), + octest_legacy:ct_string("Load Csv With Headers From 's_str'[$usn2][Count(*)] As `5esn` Remove {`5esn`:01234567[..9e1]}.#usn8!,[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $`8esn`[..$999][..0]].@usn6!,None(#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}).`6esn` Union All Load Csv With Headers From ``(999 Starts With 's_str',1e1[1.e1..][123.654..]) =~[$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]] =~[#usn7 In 0Xa[@usn5][{`7esn`}] Where `5esn`[0xabc..]] As @usn5 Union All Return Distinct *,1.e1 Ends With 0 Ends With $usn1 As `` Order By $`1esn` =~$usn1 =~01234567 Asc,$`2esn` Ends With `` Ends With {12} Descending,$#usn7 =~9e1 =~$_usn4 Asc Skip Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))[All(`2esn` In {999} Is Not Null Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF)][Shortestpath((:_usn3{_usn3:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF,`5esn`:1.0 Is Null Is Null})<-[`3esn`:`6esn`{`3esn`}]-(_usn4 :#usn7{_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})<-[ *123456789..0X7]-(`2esn` :`2esn`{`3esn`:#usn8 =~{999}}))] Foreach(`` In 0X7[0X7..][Count ( * )..]| Unwind [`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*)] Starts With (`5esn` :`7esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`}) Starts With `6esn`(Distinct 12.e12[``..usn2][{#usn7}..@usn5],$`7esn` In 12) As @usn5)"), + octest_legacy:ct_string("Remove $`6esn`.`8esn`,Extract(@usn5 In Null =~12e12 Where 7 Is Not Null|True =~_usn3 =~123456789).usn1?,{`8esn`:1e1[{_usn4}..123.654],`2esn`:0X0123456789ABCDEF[$999..][@usn5..]}.`8esn`"), + octest_legacy:ct_string("Create Constraint On(usn1:_usn3)Assert Exists(Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where $`2esn`[12.e12][$@usn5]|$usn2 Is Null Is Null).@usn6!)"), + octest_legacy:ct_string("Optional Match Allshortestpaths((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Detach Delete 0.12[Count(*)..][$#usn7..],0Xa[0e0..{#usn7}] Match ((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]})),(((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`}))) Using Join On `8esn`,_usn4 Where $`7esn` In 12"), + octest_legacy:ct_string("Load Csv From {`3esn`}[{123456789}..][{usn1}..] As `6esn` Optional Match Shortestpath((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Using Join On usn1,_usn4,`6esn` Using Index usn1:_usn3(``) Where {_usn3}[`3esn`..$#usn8] Return _usn4 Is Null Is Null,$`5esn` Is Not Null As _usn4 Order By Shortestpath((`6esn` :`7esn`)-[:_usn3|`8esn` *12..{`8esn`:Count(*)[.e12..],`5esn`:{#usn8}[12.0][$@usn6]}]-(`1esn` {_usn4:`3esn`[_usn4..{0}][`5esn`..usn2]})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`)) Contains Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) Ascending,({`8esn`:Null In .e0})-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}) =~None(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) =~(`6esn` :`2esn`{`7esn`:#usn8 =~{999}})<-[:#usn7|`2esn`]->(:#usn7{usn2:{`8esn`}[0X7][$`3esn`]}) Ascending Skip {`4esn`}[$123456789] Limit Single(`6esn` In 00 Where 0.12 In 0X7)[..{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] Union All With Distinct {`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] As `4esn`,123.654 Ends With usn2 Ends With 0 Skip .e0[0.12] Where 9e12 Ends With 123456789"), + octest_legacy:ct_string("Remove ({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6})-[`7esn`? *..0{`2esn`:07 =~$`8esn` =~9e1,``:`5esn`[0xabc..]}]->({`3esn`:{@usn5} Is Null,`5esn`:{`2esn`} Ends With {12} Ends With 7})._usn3!,Any(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null).``,None(`2esn` In {999} Is Not Null Where {1000}[1000][$usn1]).`4esn`? Return Distinct {#usn8}[12.0][$@usn6],$usn2 In 123.654 In .e0,{@usn6}[$`7esn`..][False..] Skip 1000 Is Null Limit $usn1 In 0.12 In $`` Union All Start usn1=Node:_usn4({`8esn`}) ,_usn3=Relationship:usn1('s_str') Load Csv From {_usn3}[`3esn`..$#usn8] As `4esn` Fieldterminator 's_str' Union Merge ((:`5esn`:@usn5{usn1:$#usn7[`5esn`]})-[@usn5{#usn7:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,#usn7:.e12[$#usn8..@usn6]}]->(`5esn` :@usn5)<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]-({`7esn`:123.654 Ends With usn2 Ends With 0})) On Create Set #usn8+=``(#usn8 =~{999})[Single(_usn3 In {@usn5}[..#usn7])..][Case $123456789 Is Not Null When .e1[0.12] Then {@usn5}[..{12}][..0x0] When @usn5 Is Not Null Is Not Null Then \"d_str\" Ends With False Ends With {@usn6} End..] On Match Set @usn6($@usn6 Contains `7esn`).@usn5! =$`5esn` Ends With 00 Ends With #usn7,Reduce(usn2=True[7][$999],`` In {`1esn`} Starts With @usn6|{`4esn`}[$_usn4..][9e0..]).`6esn` ={`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn` Start #usn7=Node:_usn4(``=\"d_str\") ,`4esn`=Node:_usn3({123456789}) Return *,`2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}],{#usn7} Starts With `3esn` Starts With {``} As `8esn` Order By (`4esn` :`1esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]->(#usn7 )[Single(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null)] Ascending,Reduce(@usn6=@usn5[$12..\"d_str\"],`` In {`1esn`} Starts With @usn6|Count ( * ) =~{`5esn`} =~{_usn4}) Starts With None(`1esn` In $12 Is Not Null Where `7esn` Is Not Null Is Not Null) Starts With [$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null] Descending Skip ``[$0..][`1esn`..]"), + octest_legacy:ct_string("Unwind $999 Contains 12e12 Contains {usn2} As #usn7 Remove Allshortestpaths((({#usn7:#usn8 =~{999}})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2}))).@usn6,_usn4:`8esn`:@usn5 Merge `7esn`=((:`2esn`))"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`2esn`)Assert Exists((:_usn3{0})-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]->({@usn5:``[{123456789}..]})<-[`4esn`:`3esn`|:@usn5 *..010]->({`4esn`:12 Starts With {_usn4} Starts With $#usn8}).#usn7?)"), + octest_legacy:ct_string("Create Constraint On()-[`8esn`:`2esn`]-()Assert Exists(Single(_usn3 In {@usn5}[..#usn7] Where 9e0 Starts With .e0 Starts With \"d_str\").#usn8!)"), + octest_legacy:ct_string("Start `3esn`=Relationship:#usn8(_usn3={#usn7}) ,`8esn`=Rel( {`3esn`})Where $`2esn` Is Null Is Null Return *,{`4esn`:$`3esn` Contains 0 Contains 07}[Reduce(_usn4={123456789} =~01234567 =~`3esn`,_usn3 In True[7][$999]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`])][(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6)] As #usn7,_usn4 Is Null Is Null Order By {usn2} =~@usn6 =~{`4esn`} Asc,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Descending Skip `6esn` Starts With 123.654 Limit @usn6(`` Ends With $`4esn` Ends With 0X0123456789ABCDEF)[..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[:#usn8|`2esn` *0x0..{`3esn`:.e12[$7..][{`6esn`}..]}]->({usn1:1000 Is Null Is Null})] Unwind $999 Contains 12e12 Contains {usn2} As #usn7 Union All Delete {`8esn`} =~#usn8 =~$`3esn`,0Xa Contains {`7esn`} Contains $999,\"d_str\"[Count ( * )..`6esn`] Create _usn3=Shortestpath((`6esn` {``:`4esn`[usn1]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]-(#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]})),((:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]->(:`2esn`{`6esn`:@usn6[{0}..]})<-[`1esn`?:_usn4|:usn1*]->(usn2 :``)) Return {`7esn`}[0X7..][0x0..] As @usn6,@usn6[Count ( * )][True] Skip 7 Is Not Null Limit `8esn` Union Match Shortestpath((((:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})))) Using Index `4esn`:usn2(`4esn`) Match (({`8esn`:0[$`6esn`...e1][`1esn`..$`7esn`]}))"), + octest_legacy:ct_string("Create Constraint On(`2esn`:``)Assert Exists([_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $`6esn`[`8esn`][0.0]|00[07..]].`2esn`)"), + octest_legacy:ct_string("Load Csv With Headers From @usn5 Contains {0} Contains 9e12 As `` Remove Filter(`` In {`1esn`} Starts With @usn6 Where 12 Starts With 7 Starts With $`5esn`).``,Single(`1esn` In $12 Is Not Null Where {usn1} In Count ( * )).usn2?,Shortestpath((_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}})).#usn8? Foreach(`7esn` In usn2(Distinct 0Xa[..{1000}][..$#usn7])[Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000|\"d_str\"[{`8esn`}..])][(`4esn` :`1esn`)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]->(#usn7 )]| With Distinct *,{@usn6} Contains 0e0,[`1esn` In $12 Is Not Null Where {`3esn`}[{`5esn`}]|True Is Not Null Is Not Null] Ends With Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End Ends With `3esn`(Distinct 1.e1 =~$usn2,0X0123456789ABCDEF Is Null Is Null) As `5esn` Order By @usn5 =~`` Asc Skip 07 =~$`8esn` =~9e1 Limit \"d_str\"[{`8esn`}..] Where `3esn` Is Not Null Is Not Null Create Unique @usn5=Allshortestpaths(({`8esn`:0[$`6esn`...e1][`1esn`..$`7esn`]})-[#usn8:#usn7|`2esn`]->(:@usn6{`2esn`:$999 In 999})),`1esn`=((`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})-[ *0xabc..7{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}]-({`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})-[`2esn`:`3esn`|:@usn5 *..010{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->({`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]}))) Union All Load Csv From $`4esn` Starts With 9e12 As `3esn` Fieldterminator \"d_str\" Unwind @usn5[12.0][{1000}] As `8esn` Merge #usn8=Allshortestpaths((((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`})))) On Create Set [0X0123456789ABCDEF Contains $`1esn` Contains 1000].``! =1000[$7..$123456789] On Create Set Filter(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $7[{`1esn`}]).``! =$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,exists($`5esn`[`4esn`][_usn3]).@usn5 =$7[{`1esn`}],`2esn`({1000}[1000][$usn1]).`8esn`! =_usn4[['s_str'[..0X7],False Contains 0.e0 Contains Count(*)]..] Union Create (({`1esn`:{123456789}[12..][$12..]}))"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`4esn`)Assert usn1(12.e12[$`4esn`..]).#usn8! Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn6:#usn8)Assert [{1000}].#usn8? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`4esn`:_usn4)Assert 9e1.`3esn`! Is Unique"), + octest_legacy:ct_string("Merge @usn6=((usn1 {`4esn`:1.0[{999}][$999],``:9e1[9e1...e0]})<-[? *0xabc..7]->(`3esn` :`3esn`:`6esn`)) On Create Set Filter(`5esn` In $`2esn`[12.e12][$@usn5] Where 12[..$@usn6]).`2esn`! =123456789 Starts With {999} Create Unique (:`2esn`$1000)-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`` {``:0x0 =~123.654 =~{999}})"), + octest_legacy:ct_string("Remove {`4esn`:`3esn` Is Not Null Is Not Null}.`2esn`! Unwind False Starts With 010 As #usn8 Return Distinct $#usn7 =~9e1 =~$_usn4 Union All Match usn1=(((:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})<-[:``]-(_usn3 :`7esn`)<-[ *0xabc..7]->({#usn7:123456789[0..]}))),(usn2 :`5esn`:@usn5)-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]}) Union Unwind #usn8['s_str'..][123.654..] As _usn4 Load Csv From $usn2 Ends With $`5esn` As #usn8 Create Unique Shortestpath((`1esn` :@usn5{_usn3:Null Is Null Is Null,``:True[True..]}))"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:`2esn`]-()Assert Exists(Filter(`1esn` In $12 Is Not Null Where {@usn5}[1e1..][9e1..]).@usn6!)"), + octest_legacy:ct_string("Foreach(`` In {12} =~0.e0 =~{_usn3}| Detach Delete 12.e12 In {0} In 9e1,$``[01],0.0 In `6esn` In $@usn5 Create Unique #usn7=(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}),`6esn`=(({@usn6:Null =~12e12}))) Union All Load Csv With Headers From {`7esn`}[..9e12][..0.0] As @usn5 Fieldterminator 's_str' Remove Single(`2esn` In {999} Is Not Null Where $usn1[@usn6][#usn7]).#usn8? Return Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))) =~Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) As _usn4,7[..$`1esn`][..00],{12} Starts With #usn8 Starts With 0e0 Order By $0 Starts With `2esn` Desc,0.12 In 0X7 Descending,12.e12 In $0 In $0 Desc Limit `6esn` In Null Union Load Csv From [{`3esn`} Is Null,{@usn5} =~_usn4 =~0.12] =~Extract(_usn4 In `2esn` Where 1.0[{999}][$999]) As _usn3 Fieldterminator \"d_str\" Load Csv From {usn1} In Count ( * ) As usn1 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Create Constraint On(``:`4esn`)Assert Exists({`2esn`:\"d_str\" Is Null Is Null}.``)"), + octest_legacy:ct_string("Foreach(#usn8 In Case 9e0 In usn1 When {@usn6} Contains 123.654 Contains 01 Then $@usn5 In 's_str' In $12 End In Allshortestpaths(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))) In Case {`7esn`}[9e1..][@usn6..] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" When {7}[{`4esn`}][`6esn`] Then 0xabc[$@usn5] Else 0e0 End| Start `4esn`=Node:``(\"d_str\") Start _usn3=Relationship:``(`1esn`={`2esn`}) Where 0[{usn2}..][usn1..]) Create Unique ``=((`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6)<-[#usn7]-(@usn6 )),`6esn`=Allshortestpaths(({`3esn`:`8esn` Contains 1e1,#usn7:_usn4 Is Not Null Is Not Null})-[:`1esn`|:`3esn` *..01234567{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]->(#usn7 {``:0x0 =~123.654 =~{999}}))"), + octest_legacy:ct_string("Return Distinct Filter(`1esn` In `3esn`[07..] Where 12 Ends With 01)[..All(`3esn` In 123.654[1e1..][{#usn8}..] Where 0Xa Contains Count ( * ))] As usn2,{usn1}[01..7][{`3esn`}..`6esn`] Order By Reduce(`4esn`=@usn6[$_usn4],`8esn` In $12[{7}..0X0123456789ABCDEF]|0.12 Starts With 9e12 Starts With $`1esn`)[Reduce(usn2={`7esn`}[0X7..][0x0..],_usn3 In {`2esn`} Ends With {12} Ends With 7|01[..{`7esn`}][..01234567])][(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})-[_usn4 *0x0..]-(:#usn7{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})<-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->(#usn7 :`1esn`{usn1:{`6esn`}[..{`2esn`}]})] Ascending,[.e12 Ends With 1000 Ends With 010,Count(*)] Ends With {`7esn`:$_usn3 =~{_usn4} =~$`6esn`} Ends With Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]) Descending Skip [`` In {`1esn`} Starts With @usn6 Where $123456789 Starts With $123456789 Starts With Count ( * )|{#usn8}[usn1][1.0]][Shortestpath((@usn6 {usn1:$#usn7 =~{12} =~False})-[`1esn`?:_usn3|`8esn` *0xabc..7]-(`4esn` :@usn6))..] Limit $`5esn`[`4esn`] Union Create Shortestpath(((_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]}))) Merge `4esn`=({`1esn`:$123456789[..$7][..$`6esn`]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]}) On Match Set {usn2:00[..$123456789][..$`5esn`],``:0.12[Count(*)..][$#usn7..]}.#usn7? =(`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] Create Unique (:``)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`6esn`)Assert Exists((:``{``:$0[..{usn2}][..$usn1]})<-[`8esn`? *999]->(_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null}).`8esn`)"), + octest_legacy:ct_string("Using Periodic Commit 12 Load Csv With Headers From usn2(0.0 Is Not Null Is Not Null,{123456789} Is Not Null)[None(`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12])..[_usn4 In `2esn` Where False Ends With $``|9e0[#usn8]]][(`3esn` :`3esn`:`6esn`)-[]->(`7esn` :#usn8)..[0X0123456789ABCDEF Contains $`1esn` Contains 1000,0e0[$#usn8...e12],.e12 Is Null Is Null]] As _usn3 Create `7esn`=((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0}))"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:`8esn`)Assert [_usn4 In 0.0[..{999}][..0.0] Where `5esn`[..9e0][..01234567]].`1esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[usn1:``]-()Assert Exists(Reduce(`5esn`=$123456789[$`5esn`][$_usn4],`` In {`1esn`} Starts With @usn6|1e1 Contains usn2).#usn7)"), + octest_legacy:ct_string("Foreach(_usn4 In 01234567[{`7esn`}..]| Delete $0 Starts With `2esn` Delete `6esn`[{`6esn`}..],$`1esn`[`6esn`..][00..]) Foreach(@usn6 In 0[{@usn5}..][7..]| Optional Match Shortestpath(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),((`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})) Where {@usn5} =~_usn4 =~0.12) Union With 0.0 Is Not Null As `4esn` Order By $`8esn` Is Null Is Null Desc,[.e12 Ends With 1000 Ends With 010,Count(*)] Ends With {`7esn`:$_usn3 =~{_usn4} =~$`6esn`} Ends With Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`]) Descending Remove {usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}.`7esn`?,Reduce(`1esn`=$`1esn`[#usn8][$@usn5],usn1 In 12.e12 In {0} In 9e1|.e12[$7..][{`6esn`}..]).`7esn`"), + octest_legacy:ct_string("Drop Constraint On(usn2:_usn4)Assert Exists(Allshortestpaths(({`5esn`:0Xa[0e0..{#usn7}]})<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})).`1esn`?)"), + octest_legacy:ct_string("Using Periodic Commit 1000 Load Csv From Any(`6esn` In 00 Where 0X7 Starts With {999} Starts With 12e12) Starts With (`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}) Starts With {`8esn`:{#usn7} Contains @usn5 Contains Count ( * )} As `5esn` Start ``=Node:_usn3('s_str') Optional Match usn2=Allshortestpaths(((({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})<-[?:``]-(`1esn` :#usn7)-[?:`4esn`|:#usn7]->(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})))),@usn6=(`2esn` :#usn8)"), + octest_legacy:ct_string("Foreach(_usn3 In {12} =~0.e0 =~{_usn3}| Optional Match (usn2 :`5esn`:@usn5)-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]}) Create Unique `5esn`=(`8esn` :`5esn`:@usn5)-[`5esn`?:usn2|#usn7]->(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )}))"), + octest_legacy:ct_string("Start `3esn`=Rel:`5esn`({0}) ,`6esn`=Relationship:`1esn`({@usn5})Where $7[{`1esn`}] Create usn2=(((:#usn8{`2esn`:12e12 Is Not Null,_usn3:12.e12[2.12..][0xabc..]})-[:_usn4|:usn1{``:0 Contains $usn2 Contains 12e12}]-(`4esn` :`2esn`)<-[`7esn`?:_usn3|`8esn`*..]->(`2esn` :_usn3))),`6esn`=((@usn6 :`2esn`)) Merge ((:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(:`6esn`:`8esn`{`3esn`:$`6esn`[{`3esn`}..12],_usn3:0[{@usn5}..][7..]})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`1esn`)) On Match Set `2esn`+=Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})],`3esn` =$12 Starts With $`8esn`,@usn5 =Reduce(#usn8={`8esn`}[..$`6esn`][..123.654],usn1 In 12.e12 In {0} In 9e1|\"d_str\" =~`1esn` =~{`5esn`}) On Match Set `6esn` =[`2esn` In {999} Is Not Null Where {@usn6}[True..{_usn3}]] =~None(#usn7 In 123.654 Starts With $`` Where {usn2}[$`4esn`]) =~Extract(`1esn` In $12 Is Not Null Where Null Is Null Is Null|$123456789 =~`4esn`),usn1:`8esn`:@usn5 Union All With Distinct *,01234567[..9e1] Where $7 Is Null Is Null"), + octest_legacy:ct_string("Merge `1esn`=(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}) On Match Set Any(_usn4 In `2esn` Where 0X0123456789ABCDEF[9e12]).`5esn`! =(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) On Match Set `3esn`(Distinct 's_str' Starts With 12e12 Starts With $_usn4).`3esn` =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End Create `2esn`=Shortestpath((:`5esn`:@usn5{``:.e12 =~$_usn4})-[_usn3?:usn1 *12..{#usn7:0e0 Contains `3esn` Contains `7esn`}]-(`5esn` $`8esn`)<-[@usn5:_usn4|:usn1*]->(:@usn5)),`2esn`=((@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]})) Union All Load Csv With Headers From Case When 0.e0 Contains #usn7 Then $_usn4[{``}..][1e1..] When $`2esn`[12.e12][$@usn5] Then $usn1[0X7] End Ends With Extract(`1esn` In $12 Is Not Null Where {`3esn`}[{`5esn`}]) Ends With Case 0Xa[.._usn3][..$`6esn`] When {`4esn`}[$123456789..] Then {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] When {usn2}[$`4esn`] Then $1000 Starts With $`8esn` Starts With {`5esn`} Else @usn6[$_usn4] End As `8esn` Unwind Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where 1.e1[12e12..{`6esn`}]|Count ( * )[..12][..{@usn6}]) Contains All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Contains Extract(_usn4 In `2esn` Where $999 Is Null) As `2esn` Merge @usn5=Shortestpath(({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[{``:\"d_str\"[{`8esn`}..]}]-({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})) Union Load Csv With Headers From None(`1esn` In `3esn`[07..] Where $`1esn`[..{_usn3}])[[123.654[1e1..][{#usn8}..],$#usn7[123.654]]] As `8esn` Fieldterminator 's_str' Create Unique `8esn`=Allshortestpaths(((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(`1esn` :@usn6))),(:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}) Start `3esn`=Node:`2esn`(@usn6={`4esn`}) Where False[999]"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`1esn`)Assert Filter(usn1 In 12.e12 In {0} In 9e1).`7esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn5:_usn3)Assert Reduce(`3esn`=123456789[0..],_usn3 In True[7][$999]|`2esn` Ends With $`4esn` Ends With {#usn7}).`8esn` Is Unique"), + octest_legacy:ct_string("Create Shortestpath(((`3esn` :usn2:`2esn`{``:{_usn3} Contains $`1esn` Contains 12.0}))),`8esn`=((#usn8 {`8esn`:{7} Contains $123456789})) Start _usn4=Relationship:@usn6(#usn7='s_str') Where 9e1 Ends With Count(*) Ends With False Union Optional Match usn1=Shortestpath(((:`1esn`{usn2:{`6esn`} Ends With 0e0 Ends With {``}}))) Using Scan usn2:@usn5 Start usn1=Node:#usn8(#usn8={``}) Where `4esn`[usn1] Union Merge `5esn`=Shortestpath(((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[:#usn7|`2esn`]-(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}}))) On Match Set `2esn`+=$999 =~0 =~{7},@usn5+=0X7[0.e0][{`4esn`}],Extract(`` In {`1esn`} Starts With @usn6 Where {`2esn`}[..{@usn6}][..1.e1]|True =~{`1esn`})._usn4! =All(usn1 In 12.e12 In {0} In 9e1)[[`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0]|12.e12[$`8esn`..{`8esn`}]]..] Remove All(_usn4 In 0.0[..{999}][..0.0] Where 1e1[1.e1..][123.654..]).`3esn`! Merge (((`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})-[_usn3?*..{#usn7:#usn8 =~{999},`8esn`:{_usn3}[`3esn`..$#usn8]}]->({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})-[@usn6 *07{`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}]->({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]}))) On Match Set `4esn`+=$`8esn`[0xabc][Null],@usn5+=0.0 In `6esn` In $@usn5"), + octest_legacy:ct_string("Match _usn3=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`))) Union Delete 12e12 Ends With $999 Ends With 1e1,$`3esn`,1000 Merge usn1=(@usn6 :`2esn`)<-[ *..0Xa]->({`8esn`:Null In .e0}) On Create Set Allshortestpaths(((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]}))).`8esn`? =`6esn`[{`6esn`}..],@usn6+=Reduce(usn1=$#usn7 Ends With 0.12 Ends With {@usn6},_usn3 In {`2esn`} Ends With {12} Ends With 7|{0} Is Null) Is Not Null Is Not Null,Extract(usn1 In 12.e12 In {0} In 9e1 Where False Starts With 010|True Starts With $`4esn` Starts With 12e12).`7esn`? =0X0123456789ABCDEF Is Null Is Null"), + octest_legacy:ct_string("Merge @usn6=(((`2esn` {_usn4:`4esn`[usn1]})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00}))) On Match Set {#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]}.usn1 =(#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..],Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where `7esn` Starts With 0X7 Starts With $`7esn`).`4esn` =$@usn6[..123.654],_usn4:`4esn`:@usn6 On Match Set @usn5 =`2esn`[$1000..9e12][{#usn8}..{7}] With Distinct {@usn5},{0} Is Null As `6esn` Skip Null In .e0 Where True[..010]"), + octest_legacy:ct_string("Drop Constraint On()-[@usn6:@usn5]-()Assert Exists(Reduce(_usn3=$`1esn` Is Not Null Is Not Null,`8esn` In $12[{7}..0X0123456789ABCDEF]|$`4esn` Starts With 0e0).`4esn`?)"), + octest_legacy:ct_string("Create Constraint On()-[`7esn`:`2esn`]->()Assert Exists(Reduce(`2esn`=9e0 In .e1 In 1.e1,`8esn` In $12[{7}..0X0123456789ABCDEF]|$`7esn`[$``..][999..]).`3esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[`6esn`:`7esn`]-()Assert Exists([_usn4 In 0.0[..{999}][..0.0] Where $`2esn` Is Null Is Null].`8esn`!)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`5esn`)Assert Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where $usn1 Starts With {_usn3}|Count ( * )[..12][..{@usn6}]).usn2? Is Unique"), + octest_legacy:ct_string("Create (:`8esn`:@usn5)<-[?:`1esn`|:`3esn`{#usn8:$0 Is Not Null,``:True Is Null Is Null}]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0}),(:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}) Union Unwind [`1esn` In 0.e0 =~`1esn` =~`6esn` Where `8esn` Contains $`3esn` Contains {`4esn`}|{`4esn`}[..{`4esn`}]][Reduce(usn2={0}[False..@usn5],`1esn` In `3esn`[07..]|$@usn6 =~#usn8)][Extract(`1esn` In `3esn`[07..] Where 00[07..]|$#usn7 Starts With 9e0 Starts With 2.12)] As #usn7 Start `3esn`=Relationship:@usn6({`2esn`}) ,`8esn`=Node:`6esn`('s_str')Where $@usn6 =~#usn8 Merge _usn3=(((#usn8 :#usn7)-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})))"), + octest_legacy:ct_string("Delete $_usn4[{``}..][1e1..],[#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 In 01234567 In .e1|{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]] =~Extract(`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]|$usn1 In 0.12 In $``) =~Single(_usn3 In {@usn5}[..#usn7] Where {`4esn`}[..07][..$`6esn`]) Union Optional Match `5esn`=Allshortestpaths(((:_usn4)<-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]->(_usn4 {_usn3:`1esn`[..00][..{7}]}))),Allshortestpaths((:@usn5{@usn6:{7} Contains $123456789})<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}}))"), + octest_legacy:ct_string("Detach Delete $usn1[..{@usn5}][..'s_str'],$`7esn` Is Null Is Null,{``}[_usn4..$`1esn`] Foreach(`6esn` In .e12[\"d_str\"..][.e1..]| Start #usn7=Node( {usn2}) Return 0.e0 Ends With False As `` Skip Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*))[Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12)..]) Foreach(#usn8 In Case 9e0 In usn1 When {@usn6} Contains 123.654 Contains 01 Then $@usn5 In 's_str' In $12 End In Allshortestpaths(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))) In Case {`7esn`}[9e1..][@usn6..] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" When {7}[{`4esn`}][`6esn`] Then 0xabc[$@usn5] Else 0e0 End| Start `4esn`=Node:``(\"d_str\") Start _usn3=Relationship:``(`1esn`={`2esn`}) Where 0[{usn2}..][usn1..])"), + octest_legacy:ct_string("Create Constraint On()-[`8esn`:`3esn`]-()Assert Exists(None(`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]).`6esn`)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:`7esn`)Assert Case When 0x0[{7}..] Then 1.e1 =~`2esn` Else `` Ends With $`4esn` Ends With 0X0123456789ABCDEF End.`3esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn3:#usn7)Assert Exists([_usn4 In 0.0[..{999}][..0.0] Where 12 Ends With 01].`7esn`)"), + octest_legacy:ct_string("With *,Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*))[Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12)..] As `3esn`,123456789[12..$`4esn`] As `7esn` Skip 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF Where $`3esn` Ends With $999 Ends With 0X0123456789ABCDEF Foreach(#usn7 In {`1esn`}[`6esn`..12e12]| Delete $`1esn`[07],{`3esn`}[{`5esn`}],999 Optional Match `8esn`=(({#usn7:#usn8 =~{999}})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})),((@usn5 )<-[#usn8? *..01234567]-($_usn3)) Using Join On ``,`7esn`,#usn7 Where True[$`7esn`..{1000}]) Unwind {#usn8} Is Null Is Null As _usn4 Union Optional Match `5esn`=(((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4}))),`8esn`=Shortestpath((({`2esn`:{7}[$7..],#usn7:`1esn` In 07}))) Return Distinct [`6esn` In 00 Where 0.12 In 0X7|{999} Is Null][Allshortestpaths((:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]}))][Case {999}[$123456789..][12..] When $@usn6 =~#usn8 Then $999 Contains {7} When False Starts With 010 Then `8esn` Starts With {123456789} Else True Is Not Null Is Not Null End] As usn1 Order By 7[010][00] Descending,False[{`8esn`}] Asc,1e1 =~#usn8 =~2.12 Ascending Skip Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))[All(`2esn` In {999} Is Not Null Where `` Ends With $`4esn` Ends With 0X0123456789ABCDEF)][Shortestpath((:_usn3{_usn3:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF,`5esn`:1.0 Is Null Is Null})<-[`3esn`:`6esn`{`3esn`}]-(_usn4 :#usn7{_usn3:.e0[True..Count ( * )][#usn7..0X7],`5esn`:12.e12[{7}..7]})<-[ *123456789..0X7]-(`2esn` :`2esn`{`3esn`:#usn8 =~{999}}))] Limit 00 Contains #usn8 Return Allshortestpaths((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})<-[`1esn`?]->(:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}}))[Case When 123.654[$`1esn`..Null][1000..{_usn3}] Then ``[$0..][`1esn`..] When 00 Ends With `8esn` Then $usn2 Is Null Is Null Else $999 Is Null End..``(999 Starts With 's_str',1e1[1.e1..][123.654..])][Single(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{usn2:{1000},`6esn`:#usn8[`7esn`..]}] As @usn5,#usn7[00] As `7esn`,False Contains $#usn8 Contains 9e1 Order By Count(*) Is Not Null Asc Skip usn1 Is Not Null Is Not Null"), + octest_legacy:ct_string("With Distinct *,9e1[9e1...e0] Order By 1e1[{_usn4}..123.654] Ascending,00[..$123456789][..$`5esn`] Asc Skip 7[1e1..#usn7] Limit [`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]][..{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}][..`4esn`(123.654[$`1esn`..Null][1000..{_usn3}])] Unwind $123456789 Starts With .e12 As _usn3 Union Merge usn1=Shortestpath(((:`1esn`{usn2:{`6esn`} Ends With 0e0 Ends With {``}}))) On Create Set All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {7}[$123456789..{1000}][$`3esn`..`7esn`]).``! =All(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $@usn6[01..@usn5][0x0..`4esn`]) Is Not Null Is Not Null,@usn5+=[12e12 Starts With `1esn` Starts With usn2,Count ( * ) Is Null][(#usn8 {``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})][Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))],#usn8 =$999[07..{#usn7}][1e1..0xabc]"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`7esn`)Assert Single(`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12]).@usn6! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:``)Assert Exists(Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5)))).@usn6!)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:``)Assert Extract(_usn3 In {@usn5}[..#usn7] Where `2esn` Starts With `` Starts With 1e1).`2esn`? Is Unique"), + octest_legacy:ct_string("Match `2esn`=Allshortestpaths((({`6esn`:1.e1[12e12..{`6esn`}]})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}))),usn2=Shortestpath(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))) Using Scan ``:`4esn` Using Index `7esn`:`1esn`(`2esn`) Create `4esn`=({`5esn`:0Xa[0e0..{#usn7}]})<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00}),#usn7=(:``{``:0x0 =~123.654 =~{999}})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}) Match `7esn`=(((:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})<-[`2esn`?{``:123.654 Starts With $``,``:{``} Ends With .e12 Ends With 0.e0}]-(:_usn3{0})<-[`3esn`?{`3esn`:1e1 Contains usn2}]->(:`3esn`:`6esn`))),`2esn`=Shortestpath((usn2 )-[?:`7esn`*..{`6esn`:Count(*)[..``][..#usn8],``:{@usn6}[True..{_usn3}]}]-({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})) Using Join On `1esn`,#usn8 Using Scan usn2:@usn5"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`6esn`)Assert Exists(Reduce(`6esn`=`4esn`[usn1],#usn7 In 123.654 Starts With $``|$`6esn`['s_str'..][{_usn4}..]).`5esn`!)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:``)Assert Filter(_usn4 In `2esn` Where `1esn` =~1000 =~1000)._usn4! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn8:_usn3)Assert Exists(Case 1.e1 =~`2esn` When Count(*) Is Not Null Then ``[..$#usn7] When {`3esn`}[{`5esn`}] Then \"d_str\" Contains @usn6 Contains 12.e12 Else $12 Contains 0Xa End.``?)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`7esn`)Assert _usn4(Distinct $``[.e12..]).`4esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn5:`6esn`)Assert Exists(Allshortestpaths((usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})<-[?:`6esn` *07]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]})).usn1!)"), + octest_legacy:ct_string("Load Csv From Extract(usn1 In 12.e12 In {0} In 9e1 Where {_usn4} Is Null|{@usn5}[..{12}][..0x0]) Starts With (@usn6 )<-[?:`6esn`$usn1]->(_usn4 )<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00}) As usn2 Fieldterminator \"d_str\" Create `5esn`=((usn1 :``{_usn3:``[{#usn8}],`3esn`:{`3esn`} Is Null})-[?:`4esn`|:#usn7 *..0]-({`7esn`:{`1esn`} =~{_usn4}})),Shortestpath(((`5esn` :_usn3{`4esn`:12.e12[``..usn2][{#usn7}..@usn5]})<-[:`1esn`|:`3esn` *..01234567]-({`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF})-[``?:`4esn`|:#usn7 *07]-(_usn3 {@usn5:.e12 =~.e0}))) Union With Distinct 0e0[..1000] As #usn7,#usn8 Is Not Null As usn2 Order By 0.0[9e1..][Null..] Ascending,123.654[{@usn5}..123.654][1.0..$12] Descending,All(`5esn` In $`2esn`[12.e12][$@usn5] Where 12[..$@usn6]) =~(_usn4 :`7esn`)<-[{`2esn`:1000 Is Null Is Null}]->({`6esn`:7[010][00],#usn8:$usn1 =~010 =~07}) Desc Skip `8esn` Is Null Is Null Limit 12.0[#usn7]"), + octest_legacy:ct_string("Drop Constraint On()-[usn1:_usn4]-()Assert Exists(Shortestpath((@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})).``!)"), + octest_legacy:ct_string("Start `8esn`=Rel( {`7esn`}) ,`3esn`=Node:`2esn`(@usn6={`4esn`})Where 07 Is Null Load Csv With Headers From $`4esn` Starts With 0e0 As #usn8 Foreach(`3esn` In {_usn4:$0[$1000..00][{0}..{usn1}]}[{`2esn`:$``['s_str'..][0x0..]}..]| Optional Match `1esn`=Allshortestpaths(((($_usn3)<-[``?:`3esn`|:@usn5{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(:@usn5{#usn7:{#usn7} In Count ( * ) In $#usn8})-[? *01..07]->(`8esn` :#usn7)))) Using Join On ``,`7esn`,#usn7 Where $`1esn`[$12][Count ( * )] Remove [`6esn` In 00 Where 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF].@usn5!,{usn1:$123456789 Starts With `5esn`}.`6esn`) Union All Remove {`3esn`:0.0 =~12.e12 =~1.0,`1esn`:$usn1 Starts With {_usn3}}.`3esn` With Distinct 0x0[{999}..][{_usn4}..] As `6esn`,{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}[Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))..] As `6esn`,Case When $`6esn` Starts With 12.e12 Starts With $#usn7 Then #usn8[`7esn`..] When {`4esn`}[$123456789..] Then {_usn3} Contains 9e0 Contains $999 End As @usn6 Order By {@usn5} Ascending,Reduce(@usn5=$`8esn`[..$999][..0],`` In {`1esn`} Starts With @usn6|{@usn6} Contains 123.654 Contains 01) Contains [`1esn` In `3esn`[07..] Where {0} =~12.0] Contains (:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[`3esn`:_usn3|`8esn`]->(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null}) Descending,1000 Is Not Null Desc Skip Allshortestpaths(((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))) Starts With (`1esn` :_usn3{`5esn`:{`8esn`}[..$`6esn`][..123.654],`1esn`:1000 Starts With `7esn`})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Extract(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) Remove (:@usn5)-[`8esn`?{`3esn`:'s_str'[..0X7]}]-(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}).`4esn`!,Extract(`6esn` In 00 Where 12e12 Is Not Null Is Not Null|`1esn`[Null..]).usn1"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:#usn8)Assert Reduce(usn2={`4esn`}[..07][..$`6esn`],`2esn` In {999} Is Not Null|{12} Starts With #usn8 Starts With 0e0).``! Is Unique"), + octest_legacy:ct_string("Start _usn3=Node( {usn2}) ,@usn5=Node:`6esn`(#usn8={`5esn`}) Union Merge _usn4=(({`5esn`:0Xa[0e0..{#usn7}]})<-[?:``]-(`7esn` :`3esn`:`6esn`)) On Match Set `5esn`+=Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..],[`6esn` In Count(*) Ends With $`` Ends With {7} Where @usn5 =~'s_str'|{_usn3} Contains 9e0 Contains $999].usn2 =9e12 Is Null On Match Set `5esn` =True[..010],#usn8+=Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}),`3esn` =@usn6[$_usn4] Unwind `7esn` Is Not Null Is Not Null As `6esn` Load Csv From (:usn1:_usn4)<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[usn2?:`2esn`*..]-(:`5esn`:@usn5{``:0.12[..$`6esn`][..$1000]}) Starts With Reduce(`8esn`=00[..$123456789][..$`5esn`],`` In {`1esn`} Starts With @usn6|False[999]) Starts With [`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]] As `4esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Create Constraint On()<-[@usn6:usn2]-()Assert Exists([{999} Is Not Null,{`7esn`}[0X7..][0x0..]].@usn5)"), + octest_legacy:ct_string("Drop Constraint On(usn1:`5esn`)Assert Exists({@usn6:{7} Contains $123456789}.`8esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[`6esn`:usn1]-()Assert Exists(Case When 0.0 Is Not Null Then 1.e1 =~9e12 =~`4esn` When 9e12 Is Not Null Is Not Null Then $999 Ends With {0} End.`1esn`!)"), + octest_legacy:ct_string("Return $7 Ends With $`8esn` As `4esn` Skip {`4esn`:#usn7 =~00,@usn5:usn2[True]} =~`6esn`(Distinct #usn7 =~{`4esn`} =~123456789,1e1[1.e1..][123.654..]) =~Allshortestpaths(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))) Create #usn8=Allshortestpaths((_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})-[`1esn`?:_usn3|`8esn` *0xabc..7]->(@usn5 :`6esn`:`8esn`)) With Distinct 0xabc[$_usn3..],[$_usn4[9e0..]][`8esn`(Distinct {7} Starts With $usn1 Starts With 1.0)..Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} Starts With 1.0 Starts With 00|$#usn7[..@usn6][..$0])][Any(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{#usn8:{`7esn`} Is Not Null Is Not Null,`4esn`:12 Starts With 0x0}] As `1esn` Order By 1.0 Ends With 1000 Descending,Shortestpath((_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]) In Shortestpath(((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}))) Asc Skip {usn2}[$`4esn`] Limit {123456789} =~{@usn6} Union All Merge `1esn`=((:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn7{usn1:1.0[{999}][$999]}]->(:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]}))"), + octest_legacy:ct_string("Merge _usn4=Allshortestpaths(((`4esn` :`1esn`)-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6}))) On Create Set #usn8+=$1000 Is Not Null Is Not Null,`3esn` =Reduce(@usn6=@usn5[$12..\"d_str\"],`` In {`1esn`} Starts With @usn6|Count ( * ) =~{`5esn`} =~{_usn4}) Starts With None(`1esn` In $12 Is Not Null Where `7esn` Is Not Null Is Not Null) Starts With [$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null]"), + octest_legacy:ct_string("Drop Constraint On(@usn6:``)Assert Exists([1.e1 =~$usn2,1000].``!)"), + octest_legacy:ct_string("Load Csv With Headers From 1000 As `2esn` Fieldterminator \"d_str\" Create @usn6=((:`7esn`{``:.e1 Contains $`3esn`})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)<-[ *..010{#usn7:{`2esn`} Starts With @usn6,`8esn`:{`1esn`}[`6esn`..12e12]}]->(:_usn3$usn1)),``=Shortestpath(((`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}))) Union All Remove [{usn1} Ends With {`6esn`} Ends With 123456789,$usn1[@usn6][#usn7]].`2esn`!,Reduce(`4esn`=$1000 Starts With $`8esn` Starts With {`5esn`},`` In {usn1} Ends With {`6esn`} Ends With 123456789|{`8esn`}[True..][.e1..]).`3esn`! Create Unique #usn8=Shortestpath(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]}))) Union All Unwind $`2esn` Ends With `` Ends With {12} As `6esn`"), + octest_legacy:ct_string("Start _usn3=Node:_usn3(_usn3='s_str') ,``=Relationship:#usn7(_usn3=\"d_str\")Where $_usn3[010..False] Match `2esn`=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`))),@usn5=(_usn3 :@usn5)-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}) Using Join On `6esn`,#usn7 Using Join On #usn7,@usn5 Union Merge (_usn3 :#usn8) On Create Set _usn3 =$`1esn` Ends With {`7esn`} Ends With $_usn3 Union All Unwind {123456789}[..'s_str'][..$@usn6] As `8esn` Remove [`3esn` In 123.654[1e1..][{#usn8}..] Where _usn3[\"d_str\"]|False Contains 0.e0 Contains Count(*)].`8esn`!,Filter(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`]).`3esn`!,Extract(_usn4 In `2esn` Where 1.0[{999}][$999]|`4esn`[usn1]).#usn7!"), + octest_legacy:ct_string("Load Csv With Headers From Case 0[{@usn5}..][7..] When {`4esn`} In _usn4 Then `1esn`[Null..] When ``[{#usn8}] Then {`4esn`} Starts With $7 Starts With $`` Else `8esn` Contains $`3esn` Contains {`4esn`} End In [{_usn4} In {1000}] In Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {`4esn`} Starts With $7 Starts With $``|0Xa Contains {`7esn`} Contains $999) As _usn3 Fieldterminator \"d_str\" Create #usn8=Allshortestpaths((_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})-[`1esn`?:_usn3|`8esn` *0xabc..7]->(@usn5 :`6esn`:`8esn`)) Union With Distinct @usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2) As @usn5,$`` =~{``} =~0.e0 Skip Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Starts With (usn2 :``)<-[#usn7? *0X0123456789ABCDEF{usn1:.e1[@usn5]['s_str'],`2esn`:$`7esn` Is Null Is Null}]->({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}) Where {_usn3} Contains True Contains 0X7 Create ((#usn8 :`8esn`:@usn5)-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]-(:usn1:_usn4{`4esn`:01234567 In $123456789})-[?:`8esn`|:_usn4{usn1:999[12.0..][#usn7..],@usn5:123.654[$`1esn`..Null][1000..{_usn3}]}]-(`8esn` {@usn6:12 Starts With {_usn4} Starts With $#usn8,`3esn`:.e1[@usn5]['s_str']})),@usn6=Allshortestpaths((:`2esn`{`2esn`:`5esn` Is Null Is Null})) Union Unwind None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False) Is Null As `2esn` Merge (`3esn` :`1esn`)-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]}) On Match Set `7esn` =$999[{_usn4}] On Match Set `5esn`+=$`3esn` Contains 0 Contains 07,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $#usn7[..@usn6][..$0]).`1esn`? =$1000[0.12..0.12] Detach Delete Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`])[(`3esn` :#usn7{`6esn`:{_usn4} Is Null,usn2:{`2esn`} Starts With @usn6})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`8esn`:@usn5)<-[@usn6?:`7esn`]->(:`2esn`{#usn7:#usn8 =~{999}})..Shortestpath((`8esn` {_usn4:{usn1} In Count ( * )})<-[`6esn`?]-(usn1 {`3esn`:$usn1 In 01234567 In .e1,``:False[999]})<-[@usn6?:`7esn`]->(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1}))][Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0[$#usn8...e12])..[`1esn` In $12 Is Not Null Where {usn1} In Count ( * )|$`3esn`[{``}..]]],{usn2}[`6esn`..01234567],All(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7]) Contains Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End Contains Reduce(`6esn`={_usn4} In {1000},usn1 In 12.e12 In {0} In 9e1|{`4esn`} Starts With $7 Starts With $``)"), + octest_legacy:ct_string("Load Csv From usn1(``[..$#usn7]) Ends With Reduce(#usn8=`1esn`[..01],_usn4 In 0.0[..{999}][..0.0]|``[00..$7]) Ends With Extract(_usn3 In True[7][$999] Where {`2esn`}[Count(*)]|{`7esn`}[``..]) As `3esn` Fieldterminator 's_str' Optional Match _usn3=Allshortestpaths(((`` {`1esn`:{@usn5}[1e1..][9e1..],`2esn`:$`7esn` Contains {`1esn`} Contains 9e12})<-[`3esn`? *0x0..{_usn3:0.0[9e1..][Null..],#usn7:{`3esn`} Is Not Null Is Not Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-(`3esn` :`6esn`:`8esn`{`8esn`:{``} Is Null Is Null,`3esn`:123456789 Is Not Null Is Not Null}))) Using Index `3esn`:#usn8(`2esn`) Using Scan usn1:usn2 Where $@usn6[01..@usn5][0x0..`4esn`]"), + octest_legacy:ct_string("Create `1esn`=(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[#usn8? *..0Xa{`4esn`:$`2esn` Ends With 0.12 Ends With .e1,`4esn`:07 =~@usn5}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}),Shortestpath((({_usn4:False[0Xa..$usn1]}))) Union All Unwind {`4esn`} In _usn4 As usn2 Merge ((usn2 :_usn3)<-[?:_usn4|:usn1 *..00{`1esn`:{#usn8}[2.12]}]->(:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn8:#usn7|`2esn`]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)}))"), + octest_legacy:ct_string("Create Constraint On()<-[`2esn`:@usn5]-()Assert Exists({_usn3:$1000 Is Not Null Is Not Null,_usn3:`5esn`[0xabc..]}.`5esn`!)"), + octest_legacy:ct_string("Drop Constraint On()<-[`2esn`:#usn7]-()Assert Exists(Any(`5esn` In $`2esn`[12.e12][$@usn5] Where 's_str' Starts With 12e12 Starts With $_usn4)._usn3)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:`3esn`)Assert Extract(`1esn` In 0.e0 =~`1esn` =~`6esn` Where True[True..]).usn2? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[_usn3:#usn7]-()Assert Exists(({usn1:{123456789} =~01234567 =~`3esn`})-[_usn3:#usn7|`2esn`]-(_usn3 :#usn8).`5esn`!)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`8esn`)Assert Extract(`1esn` In `3esn`[07..] Where 12 Ends With 01|{#usn7}[Count ( * )..12][$`2esn`..`4esn`]).usn1? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:@usn5)Assert Case When Count(*)[.e12..] Then 9e0 Starts With .e0 Starts With \"d_str\" When 0.0[..{999}][..0.0] Then {usn1} =~123.654 =~\"d_str\" Else `3esn`[..{_usn4}][..{@usn5}] End.#usn7 Is Unique"), + octest_legacy:ct_string("Create Index On:`3esn`(usn2)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:_usn4)Assert [`1esn` In $12 Is Not Null Where {`3esn`}[{`5esn`}]|{`2esn`}[..{@usn6}][..1.e1]].`4esn` Is Unique"), + octest_legacy:ct_string("Foreach(`2esn` In 07 =~$`8esn` =~9e1| Optional Match @usn5=((`1esn` :`4esn`:@usn6)),(#usn8 :#usn8) Where 9e1 Ends With Count(*) Ends With False) Foreach(`2esn` In #usn7[00]| Unwind $_usn4 As `8esn`) Union Load Csv With Headers From All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.e12[$`8esn`..{`8esn`}]) Is Null As usn2 Start `3esn`=Rel:``(usn1={`4esn`}) Match ``=((_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[ *0xabc..7]->(:`4esn`:@usn6)-[?{`7esn`:{``} Ends With .e12 Ends With 0.e0}]-(`4esn` {`2esn`:12 Starts With 7 Starts With $`5esn`})) Using Index `6esn`:usn2(@usn5) Using Join On ``,`2esn`,`8esn` Union All Create ``=((:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})-[#usn7{usn1:1.0[{999}][$999]}]->(:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})),((`2esn` :@usn5{`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})<-[?:`6esn` *07]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[{#usn7:'s_str'[_usn4..0x0]}]-({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}))"), + octest_legacy:ct_string("Unwind Single(`6esn` In 00 Where 0.12 In 0X7)[..{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] As `4esn` Create Unique _usn3=(usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}),@usn6=({_usn4:False[0Xa..$usn1]})<-[:_usn3|`8esn` *0x0..{`5esn`:0.e0[12.e12]}]-(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]}) Start _usn3=Relationship:usn1('s_str') Where {_usn4} In {1000} Union Match ((:#usn8{#usn8:`3esn` Is Not Null Is Not Null})),Allshortestpaths((#usn8 :`7esn`)) Using Index @usn5:usn2(`7esn`) Using Join On @usn5,usn2,_usn3 Unwind 01[..{`7esn`}][..01234567] As @usn5"), + octest_legacy:ct_string("Drop Constraint On()-[usn1:@usn6]-()Assert Exists(Reduce(``=1000,_usn4 In 0.0[..{999}][..0.0]|{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]).`6esn`)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:usn2)Assert Exists([$0[`7esn`],0.12 Contains 12.0,True Is Null Is Null].``?)"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:usn2]->()Assert Exists(Reduce(#usn8=$@usn6[$0..usn1][0X0123456789ABCDEF..$999],`8esn` In $12[{7}..0X0123456789ABCDEF]|$`` Starts With 12 Starts With $usn2).usn2!)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:@usn5)Assert Reduce(`8esn`=$@usn6[01..@usn5][0x0..`4esn`],`2esn` In {999} Is Not Null|{#usn8}[$#usn7..]).`7esn`! Is Unique"), + octest_legacy:ct_string("Using Periodic Commit 0X0123456789ABCDEF Load Csv With Headers From 12.e12 In {0} In 9e1 As `4esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Unwind $`1esn`[#usn8][$@usn5] As `1esn` Create Unique #usn8=(`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`),``=((`8esn` :@usn6)-[@usn5? *0x0..{`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}]-({`7esn`:{usn1}[$`8esn`..0.0]})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))"), + octest_legacy:ct_string("Create Constraint On()-[`3esn`:@usn5]-()Assert Exists(#usn7(Distinct `5esn` Is Null Is Null).usn1?)"), + octest_legacy:ct_string("Create Constraint On(`4esn`:usn1)Assert Exists(Case When $7 Ends With 0X7 Then Count(*)[.e12..] Else 00 Ends With `8esn` End.``?)"), + octest_legacy:ct_string("Optional Match @usn5=Allshortestpaths((@usn6 :usn1:_usn4)<-[?:@usn6|`` *..01234567]->(#usn8 {usn1:$123456789 Starts With `5esn`})-[? *01..07]->(`8esn` :#usn7)),`8esn`=Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Using Scan usn2:`5esn` Where 123.654[{@usn5}..123.654][1.0..$12] Load Csv With Headers From 0X0123456789ABCDEF Is Null Is Null As `` "), + octest_legacy:ct_string("Create Constraint On(`1esn`:``)Assert Exists(None(`3esn` In 123.654[1e1..][{#usn8}..] Where $`2esn`[12.e12][$@usn5]).#usn7)"), + octest_legacy:ct_string("Return Distinct {`8esn`:{#usn8}[$#usn7..]}[Case 12.e12[``..usn2][{#usn7}..@usn5] When `3esn` Is Not Null Is Not Null Then 7 Contains `2esn` Contains $`8esn` Else $``[..1.e1][..12] End..] As `2esn` With Distinct *,(usn1 {`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]})<-[`4esn`:#usn7|`2esn` *0X7..0Xa]-(`3esn` :`8esn`:@usn5{@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]}) Is Not Null,Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End[None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])][count(Distinct $`5esn`[$#usn7..][0xabc..])] Skip @usn5[$@usn5][{0}] Limit None(_usn3 In {@usn5}[..#usn7] Where 0X0123456789ABCDEF Contains $`1esn` Contains 1000) Is Null Is Null Unwind {@usn5}[..#usn7] As `1esn` Union All Unwind {7}[$123456789..{1000}][$`3esn`..`7esn`] As #usn7 Load Csv From Case When .e1[@usn5]['s_str'] Then 123456789 Starts With {@usn6} Starts With $12 End Contains [`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn2 Ends With $`5esn`] Contains {@usn5:12 Is Not Null,`2esn`:$999 In 999} As `1esn` Remove [#usn7 In 123.654 Starts With $`` Where #usn8[`7esn`..]|{_usn3}[{0}]].usn2,``(True[True..],$_usn4).`5esn`? Union Create Unique `5esn`=Shortestpath(((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null})<-[usn2 *..01234567{`1esn`:@usn5 =~'s_str',`8esn`:{999} Starts With {_usn4} Starts With 00}]->(usn1 {`5esn`})<-[:`8esn`|:_usn4 *1000]->(`5esn` $`8esn`))))"), + octest_legacy:ct_string("Return {@usn5} Is Null,``[$0..][`1esn`..] As `4esn` Order By 0Xa[07..] Ascending Limit 's_str'[.._usn4][..``]"), + octest_legacy:ct_string("Create Constraint On(`6esn`:_usn4)Assert Filter(`6esn` In 00 Where $`1esn`[#usn8][$@usn5]).`3esn`? Is Unique"), + octest_legacy:ct_string("Detach Delete [`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]][Reduce(_usn4=$0 Is Not Null,`2esn` In {999} Is Not Null|12.e12[2.12..][0xabc..])..][None(`6esn` In 00 Where {@usn5} Starts With 1.0 Starts With 00)..],{``}[_usn4..$`1esn`] Remove (:`4esn`:@usn6{@usn6:_usn4 In $usn1,`8esn`:07 Is Null})-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]}).``? With True Is Not Null As @usn5 Order By {`2esn`} In $123456789 In True Ascending,Reduce(#usn7={`1esn`} Starts With `4esn` Starts With {0},`3esn` In 123.654[1e1..][{#usn8}..]|9e12[$`5esn`]) Desc Skip 0Xa In {`7esn`} Limit 9e0 =~0.0 =~$`5esn` Union Match ``=Shortestpath(((`` {``:0x0 =~123.654 =~{999}})-[`6esn`?{#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}]-({`3esn`:9e1 =~999}))) Using Scan `8esn`:_usn3 Using Index usn2:usn1(`8esn`)"), + octest_legacy:ct_string("Create Constraint On()-[_usn3:_usn3]-()Assert Exists(None(`1esn` In $12 Is Not Null Where `8esn`[..`4esn`][..$usn1]).`5esn`)"), + octest_legacy:ct_string("Merge `7esn`=Shortestpath((((`6esn` {``:`4esn`[usn1]})<-[:`6esn`{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},`6esn`:``[..$#usn7]}]->({_usn4:False[0Xa..$usn1]})-[`8esn`?{`3esn`:'s_str'[..0X7]}]-(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]})))) On Match Set `4esn`+=$`8esn`[0xabc][Null],@usn5+=0.0 In `6esn` In $@usn5 Union All Detach Delete $#usn7[`2esn`][010],`7esn` =~.e12 =~$#usn7,$`2esn` In {123456789} Remove Shortestpath((((_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )})-[?:usn2|#usn7]-(`1esn` {#usn7:Count ( * )[$12..]})<-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]->(_usn4 {_usn3:`1esn`[..00][..{7}]})))).`3esn`?,``:`6esn`:`8esn`,Case Count(*) Is Not Null When {`4esn`} Starts With $7 Starts With $`` Then {`4esn`} Starts With $7 Starts With $`` Else 0X0123456789ABCDEF[`5esn`..][$#usn8..] End.usn2 Union Merge Shortestpath(((`6esn` :_usn3{#usn7:$@usn6[01..@usn5][0x0..`4esn`],_usn4:9e12 =~123456789 =~$999})<-[usn1? *01..07]->({`1esn`:$123456789[..$7][..$`6esn`]}))) On Create Set #usn8 =(`8esn` :`5esn`:@usn5)<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5) Starts With None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]),@usn5 =$_usn4 Is Null Is Null"), octest_legacy:ct_string("Create Index On:_usn4(@usn5)"), - octest_legacy:ct_string("Create Constraint On()-[``:`2esn`]-()Assert Exists(All(`4esn` In $`3esn` Is Not Null Where {`6esn`} Contains \"d_str\").`3esn`)"), - octest_legacy:ct_string("Create Unique Allshortestpaths((@usn5 {`3esn`:.e1[..usn2][..`8esn`]})<-[usn2:`7esn`]->(:usn1{_usn3:{#usn7}[`2esn`..]})-[?:usn2|``$#usn7]-(#usn8 :``:#usn8{`7esn`:9e1[$usn2],_usn4:$_usn4 Contains Null Contains #usn8})),({`4esn`:`7esn` Is Null}) Return Distinct {#usn8}[$@usn5..usn1][$1000..0xabc],{_usn4}[{`5esn`}..{1000}][9e1..{1000}] Delete Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},Shortestpath(((:`8esn`:`7esn`$#usn7)-[`5esn`:`8esn`]->(#usn8 {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]}))) In [_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..]|1.0 Is Null Is Null] In Case When Count ( * ) Contains 07 Then 123.654[$`1esn`] End,$123456789 Is Null Is Null Union All Merge Shortestpath(((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null}))) On Match Set None(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $12[True..][{0}..]).usn1! ={123456789} Is Not Null,`5esn`+=Reduce(``={999},#usn8 In {`5esn`}[.e1..``]|$_usn3['s_str'][07])[..{`4esn`:0.0[$0][{@usn5}]}][..Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..])],{`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000}.usn1 ={`3esn`}[..07][..{`5esn`}] On Match Set _usn3+=2.12 =~False =~`5esn` Delete {`2esn`:1000[..$0][..True],@usn5:{12} Ends With 0Xa Ends With $`6esn`}[Single(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {usn1} Ends With $0)..][Extract(`2esn` In `1esn` =~\"d_str\" Where $`4esn` In Null In 0xabc|{`5esn`} Starts With $`5esn` Starts With .e1)..],usn2 Is Null Unwind 07[..True][..9e12] As _usn3 Union All Create Unique (:`7esn`:_usn3{usn1:$usn1 In {999} In $#usn7})"), - octest_legacy:ct_string("Drop Constraint On(``:_usn3)Assert [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {123456789}[0xabc..]].`2esn`? Is Unique"), - octest_legacy:ct_string("Create Constraint On()<-[@usn5:`6esn`]-()Assert Exists(Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where {@usn5} Is Null Is Null|@usn5 In $7).#usn7)"), - octest_legacy:ct_string("Create Unique `1esn`=((:usn2{#usn8:$`5esn` In $`6esn`})<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})) Merge `2esn`=Allshortestpaths(((#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})-[`8esn`?:@usn6|`6esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}))) On Create Set _usn3+=Case _usn3[$`8esn`] When 12e12 Contains 0Xa Then 7[{0}..{_usn4}] End Ends With Reduce(usn2=$`5esn`[`3esn`..],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|{_usn4} In {12} In $0) Ends With [$0],#usn8+=12.e12 Is Null Is Null Create Unique ((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})),Allshortestpaths(((`2esn` :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})))"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:`3esn`)Assert Exists(All(#usn7 In `2esn`[..$#usn8][..Count(*)] Where usn1 Is Not Null).@usn5?)"), - octest_legacy:ct_string("Drop Constraint On(`7esn`:`7esn`)Assert Exists((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[`5esn`?:`5esn` *1000..00]->({`1esn`:`3esn`[{`2esn`}]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]}).usn2?)"), - octest_legacy:ct_string("Drop Constraint On()<-[`6esn`:`7esn`]-()Assert Exists(Case When $#usn8[$`8esn`..{`8esn`}] Then $#usn8[$`8esn`..{`8esn`}] Else 9e1[2.12..{#usn8}] End.`6esn`!)"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:`4esn`)Assert Exists(usn1(123.654 =~$usn2 =~{999},1.0[$`1esn`..][$123456789..]).`7esn`?)"), - octest_legacy:ct_string("Remove (_usn3 :usn2{#usn7:{999} Starts With {0}})<-[`4esn`:@usn6|`6esn`{`4esn`:`2esn` Is Null,@usn5:00 Starts With 0xabc}]-({`5esn`:$#usn8 Ends With $`2esn` Ends With $@usn6}).`2esn`?,Reduce(#usn8=123.654[$`1esn`],#usn8 In {`5esn`}[.e1..``]|{`5esn`} Starts With $`5esn` Starts With .e1).#usn7? Union All Detach Delete $#usn7 Is Null Foreach(usn1 In $@usn5 Is Not Null Is Not Null| Unwind {usn1} Starts With #usn8 As _usn3)"), - octest_legacy:ct_string("Create Constraint On(#usn7:`4esn`)Assert Allshortestpaths((_usn4 :#usn7)<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]})).`4esn` Is Unique"), - octest_legacy:ct_string("Match #usn8=Shortestpath((#usn8 :@usn5))"), - octest_legacy:ct_string("Unwind {`1esn`:#usn7 =~Count ( * ) =~``,usn2:`` Ends With $1000} Is Not Null Is Not Null As ``"), - octest_legacy:ct_string("Create `7esn`=({`5esn`:\"d_str\" Starts With 01})-[_usn3:@usn5 *7..12{`2esn`:12.0 =~999 =~$_usn3}]->(`3esn` {usn1:$0[..9e1],@usn5:`7esn`[..{usn1}]}),Allshortestpaths((((:_usn4{usn2:0X0123456789ABCDEF[123456789]})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`2esn` :_usn3:_usn3)))) With Distinct $12[Count ( * )][0X7],Case {`3esn`}[@usn6..0Xa][{12}..0Xa] When {usn1}[0X0123456789ABCDEF] Then 0x0 Ends With $12 When 0e0 Starts With `2esn` Starts With $`` Then {123456789}[9e12][{0}] Else 0X7[1000..{`1esn`}] End[..({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})] As `3esn`,{`5esn`:01 =~{_usn3} =~`3esn`,@usn5:{`3esn`} Is Not Null Is Not Null}[[`3esn` In {7} Is Null Where usn1 Is Null Is Null]..Reduce(@usn5=$0 Ends With 12.0,`5esn` In $999[0.0..]|$`8esn`[..00])][Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where usn2[$7..$123456789][$@usn6..$7]|0xabc[01..{999}][{7}..{`7esn`}])..None(`` In `` Is Not Null Is Not Null Where 0x0[`4esn`..'s_str'])] As @usn5 Skip $usn2[9e0] Limit {12} Is Not Null Unwind `4esn`[..010][..{12}] As `` Union All Start `6esn`=Relationship:usn2(#usn8=\"d_str\") ,`5esn`=Relationship(*)"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From usn2(7[..999][..{#usn8}])[[$_usn4 Contains Null Contains #usn8,{#usn8}[{7}],{@usn6}[{999}..][00..]]..] As `7esn` Start `5esn`=Relationship:usn1({999}) ,usn1=Relationship:_usn3(`8esn`={123456789})"), - octest_legacy:ct_string("Return *,Shortestpath(((({#usn7:2.12 Contains usn2 Contains True})-[_usn3?:`6esn`|`5esn` *0X0123456789ABCDEF]-(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}))))[Case When $999[0.0..] Then 12 Ends With 0x0 Ends With 0.e0 When `` Is Not Null Is Not Null Then {`3esn`}[..07][..{`5esn`}] End..[`3esn` In {7} Is Null Where usn1 Is Null Is Null]],$`3esn`[0.12..`8esn`][$#usn7..`5esn`] As `` Order By 123456789[_usn4..][{999}..] Ascending,All(`3esn` In {7} Is Null Where Count ( * ) Contains 07) Is Null Is Null Ascending Delete [@usn6 Contains Null Contains $`7esn`,{`4esn`} Starts With $usn2 Starts With $1000] Ends With Any(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $_usn4[0e0..][False..]) Ends With (`1esn` :`2esn`:usn1)-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(`1esn` :_usn3:_usn3{#usn7:$@usn5 Is Not Null Is Not Null}) Load Csv From ({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}) As #usn8 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Optional Match (:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})-[?:`5esn`]->(:usn2),`2esn`=Shortestpath((({usn2:7[..999][..{#usn8}]}))) Using Join On @usn6,@usn6 Union All Load Csv With Headers From [_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null|999 Is Not Null Is Not Null] Ends With [`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null|{`5esn`} Starts With $`5esn` Starts With .e1] Ends With {``:usn1 Starts With usn1 Starts With $``} As @usn5 Load Csv From .e1 In 0Xa In #usn7 As `2esn` Fieldterminator \"d_str\" Remove Any(`5esn` In \"d_str\" Is Null Is Null Where `6esn`[..$@usn6]).`7esn`,Case When _usn3[$`8esn`] Then $0[..9e1] End.usn1?,Allshortestpaths((_usn3 :@usn5)-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})).@usn6?"), - octest_legacy:ct_string("With Distinct 7 =~{`8esn`} =~$`6esn` Order By 0.0 =~0 =~`6esn` Ascending,{``}[$`8esn`..] Ascending,9e1 Is Not Null Descending Skip Reduce(_usn4=01[{`2esn`}..{@usn6}][$`2esn`..0.0],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|0.12 =~$0 =~$0)[Shortestpath((((`1esn` {@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00})-[`6esn`?:`3esn`|:#usn8]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))))..[{12}[{7}][$123456789]]] Limit ({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})-[#usn7?{`8esn`:$123456789[_usn3][{#usn7}]}]-(:@usn5)<-[`7esn`?:`8esn`]-({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}) Ends With $7 Ends With All(`` In `` Is Not Null Is Not Null Where 1000 In {`8esn`} In 01) Where $0[12.e12..] Remove Case 2.12['s_str'..$12][{`1esn`}..`2esn`] When 7[$`2esn`..{`5esn`}] Then {7}[..1.0][..9e0] Else 0x0[`4esn`..'s_str'] End.@usn6! Union Merge `4esn`=(#usn7 :`3esn`:@usn5{`7esn`:0x0[`4esn`..'s_str']})<-[:`5esn`{@usn6:$#usn8 Ends With $`2esn` Ends With $@usn6,`6esn`:{7}[..12e12][..Count ( * )]}]->(#usn8 :_usn3:_usn3{`4esn`:{_usn3}[..$12][..0.12],`7esn`:1.0[0X7][{`5esn`}]})<-[`4esn`?:usn2|`` *0X7..]->(_usn3 :@usn5) Union All Foreach(usn1 In 9e1[2.12..{#usn8}]| Match `7esn`=Allshortestpaths((((`6esn` {`7esn`:$`6esn`[010..]})-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-({`1esn`:`3esn`[{`2esn`}]})<-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(`` :@usn5{`1esn`:2.12 Contains usn2 Contains True})))),@usn6=Allshortestpaths((`1esn` :`5esn`{`5esn`:{``} Is Null})-[:@usn6|`6esn`{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}]->(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[`2esn`?:`2esn`]->(`7esn` {``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})) Using Join On `6esn` Using Index `4esn`:`3esn`(#usn8) Where 123456789 Ends With $`6esn` Ends With $#usn7 Create `3esn`=Allshortestpaths((((_usn3 )-[?{@usn6:0X7[`7esn`][123.654]}]->(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})))),`2esn`=Shortestpath((`6esn` {_usn4:0Xa =~Null =~$``})<-[``? *0X7..]->(`` :`1esn`))) Merge ((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null})) With Distinct *,2.12[$`5esn`][$#usn8] As #usn8 Order By Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0)[..Case When 01234567[usn2..$12][{`7esn`}..$usn2] Then usn1[`5esn`..$7] Else $1000[0Xa][{#usn7}] End][..Reduce(@usn6=07 Contains 0X7 Contains $`8esn`,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|{#usn7}[9e1..][{123456789}..])] Descending,(:usn2{usn2:7[..999][..{#usn8}]})<-[`8esn`?:`2esn`{`3esn`:$1000 Is Null Is Null,`8esn`:`` Ends With 0Xa Ends With `2esn`}]-(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})<-[:`4esn` *..010{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]->(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}) Desc,{usn2} Starts With $`8esn` Starts With Count ( * ) Ascending Skip 2.12[$`5esn`][$#usn8] Where 1e1 In \"d_str\" In `7esn`"), - octest_legacy:ct_string("Match @usn6=(((:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)-[usn1? *1000..00]->({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}))),(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})-[usn1?:#usn7{`2esn`:12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],@usn5:{usn2}[.e0..$999]}]->({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``}) Using Scan `2esn`:usn1 Using Index _usn3:`6esn`(#usn7) Detach Delete $#usn7 Contains 0x0 Contains 1000,{_usn3}[..\"d_str\"][..`5esn`] Union All Load Csv From Allshortestpaths((:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))[[{_usn4} In {12} In $0,$`5esn`[2.12..],12[1.e1..{_usn3}][1.e1..1.0]]][[12e12 Is Not Null Is Not Null]] As usn2 Union All Optional Match `3esn`=Allshortestpaths(((#usn7 {``:9e12[`1esn`..][$`1esn`..],#usn7:#usn8})-[?:`7esn` *0X0123456789ABCDEF]->(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})<-[#usn8?:#usn7{`1esn`:#usn7 =~Count ( * ) =~``,usn2:`` Ends With $1000}]->(:@usn6:#usn8{`4esn`:$`8esn`[..00]}))) Where 00 Starts With 0xabc Create `7esn`=((:`3esn`:@usn5$7)) Detach Delete @usn6 Contains Null Contains $`7esn`,$usn2[$`2esn`..`4esn`]"), - octest_legacy:ct_string("Unwind 0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn` As `4esn` Delete 1e1 In \"d_str\" In `7esn` Foreach(`5esn` In $@usn5 Starts With {@usn5} Starts With 9e0| Remove _usn3(0.12 =~$0 =~$0).`3esn`) Union With .e0 Ends With 0.12 As `6esn` Skip Case 's_str' In 00 When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null When $@usn5 Starts With {0} Starts With 12 Then {usn2} Else {#usn7}[`2esn`..] End Limit 1.0 Starts With 12e12 Starts With {`5esn`} Where 123.654[True..$#usn8][0.12..Count(*)] Unwind $usn1[{`5esn`}][$`6esn`] As @usn6"), - octest_legacy:ct_string("Create Constraint On()-[`5esn`:usn2]-()Assert Exists((`2esn` :usn1)-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}).usn2!)"), - octest_legacy:ct_string("With Distinct [1.0 =~'s_str' =~{`2esn`}] Contains [9e1[2.12],{usn2}[$`3esn`..][{#usn7}..],Null Ends With {`5esn`} Ends With 0.e0] Contains `5esn`,All(`3esn` In {7} Is Null)[{`2esn`:.e1[{`7esn`}..{_usn4}],`1esn`:1.e1[$`1esn`..@usn6][$0..$_usn3]}..],{`2esn`} Ends With {`7esn`} Skip `6esn`(Distinct 0X7[`7esn`][123.654]) Is Not Null Is Not Null Unwind 1000 In {`8esn`} In 01 As `` Union All Start #usn7=Rel:@usn6(`7esn`={`8esn`}) Return *,'s_str' Starts With 123.654 As usn1 Order By $#usn7[..{`5esn`}][..9e12] Desc,Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`)[None(#usn8 In 7[..999][..{#usn8}] Where 0Xa[2.12])..][[@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789]]..] Desc,0x0 Ends With $12 Asc Limit $123456789 In $#usn7 In `4esn` Detach Delete 's_str' Ends With 7 Ends With {_usn4},{@usn6}[..$7][..$`7esn`]"), - octest_legacy:ct_string("Create Constraint On()-[``:@usn5]-()Assert Exists(`5esn`(Distinct #usn7 =~Count ( * ) =~``).`5esn`!)"), - octest_legacy:ct_string("Load Csv From _usn3[_usn3..][12.e12..] As `5esn` Fieldterminator 's_str' Return {usn2} =~12 Order By @usn6 Is Null Is Null Descending,{_usn3} Is Null Is Null Desc,Allshortestpaths((({`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})<-[?*..]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`}))) Ends With Reduce(_usn3='s_str'[00][{`5esn`}],`4esn` In $`3esn` Is Not Null|Count ( * ) Contains `8esn` Contains .e1) Descending Unwind 7[..999][..{#usn8}] As `8esn` Union All Foreach(`5esn` In {123456789} Starts With 0.0 Starts With `5esn`| Remove 2.12.`7esn`!,[@usn6 Contains $1000 Contains {`7esn`}].`3esn`?) Optional Match `7esn`=Shortestpath(((:`5esn`{``:1.0[0e0..0.e0]})-[_usn4:#usn8|`1esn`{`6esn`:#usn8[..{#usn7}]}]->(#usn7 :`4esn`))) Using Index `6esn`:@usn5(`2esn`) Using Scan ``:`2esn` Union Merge `7esn`=((`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]->(`` )<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})) Unwind None(`` In `` Is Not Null Is Not Null Where $`6esn` Is Null) Contains Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}))) Contains Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End As usn2 Detach Delete $`3esn` In $`6esn` In $``,\"d_str\" =~{usn1} =~{`7esn`}"), - octest_legacy:ct_string("Drop Index On:#usn8(`6esn`)"), - octest_legacy:ct_string("Create Constraint On(@usn5:`4esn`)Assert Exists(None(`8esn` In 01[2.12..`8esn`] Where 0X7[..2.12]).`6esn`?)"), - octest_legacy:ct_string("Return $`5esn`[..$`5esn`][..$12] As `5esn`,Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn`,$`2esn` Is Null Is Null Order By Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains Extract(`5esn` In \"d_str\" Is Null Is Null Where Null Ends With `2esn` Ends With $usn1|$#usn7[@usn5..{1000}][1.e1..7]) Descending,Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) Is Not Null Is Not Null Asc,None(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {123456789}[0xabc..]) In (`4esn` {`6esn`:#usn8[..{#usn7}]})<-[_usn4 *..999]->({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5})<-[#usn8? *0..]->(#usn7 ) In Extract(`3esn` In {7} Is Null Where 1e1 Contains Count ( * )) Desc Limit $`7esn`[1.e1.._usn4][0Xa..`2esn`] Start @usn5=Node:#usn7({_usn3}) ,@usn6=Relationship:@usn6(`4esn`='s_str')Where {``} Is Not Null Union All Merge ``=((:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?:`5esn` *0..]->(usn2 :``:#usn8)<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})) On Match Set All(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`).`6esn`! =_usn4 Contains 2.12 On Match Set `1esn`+=Single(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}])[Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] Return *,123.654 Is Not Null,Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..] As `7esn` Skip Case When 1.0 =~'s_str' =~{`2esn`} Then $`5esn` In $`6esn` When {`7esn`}[..{`4esn`}] Then {usn1} Ends With $0 End[All(`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"])..[Count ( * )[0.12...e1],1.0[00..],$``]][`4esn`(`4esn` Ends With 07 Ends With {`3esn`})..Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `1esn` =~\"d_str\"|9e12 Is Not Null Is Not Null)] Limit Single(`4esn` In $`3esn` Is Not Null Where 7[$`2esn`..{`5esn`}])[Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null)..Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]|$`1esn` =~0X7)] Union All Create `6esn`=(`7esn` :`5esn`)<-[`5esn`:#usn7 *00{#usn7:{999} Starts With {0}}]-(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]}),`2esn`=(:`1esn`{``:.e1 Is Null Is Null})<-[#usn8?:usn1|@usn6]->(`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})"), - octest_legacy:ct_string("Create Unique `6esn`=((`2esn` :_usn4)),(((:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[:`6esn`|`5esn` *123456789..]-(#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}))) Union All Detach Delete 1.0 In Count(*),{_usn4}[`3esn`][12.0],1e1 Contains Count ( * ) Create Unique _usn4=(`1esn` {@usn5:1.0[0e0..0.e0]})-[usn2?:#usn7]-(:`4esn`{``:2.12 Is Not Null Is Not Null}),Shortestpath(((`7esn` {``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})-[?:`2esn` *00]->(`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]})<-[`6esn`?:`4esn` *..01]-({`7esn`:{999}}))) Load Csv From Reduce(@usn6=0.e0 Ends With $#usn7 Ends With $7,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999})[[#usn8[`3esn`..][{#usn7}..]]..(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`8esn` :@usn6:#usn8)<-[{`8esn`:07 In `2esn` In 12e12}]->(:_usn4{`6esn`:{`6esn`} =~$999,`6esn`:$#usn7[..{`5esn`}][..9e12]})][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)..Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0e0 Starts With `2esn` Starts With $``)] As `2esn` Fieldterminator \"d_str\" Union Return 2.12[$`5esn`][$#usn8] As #usn8 Skip False =~$7 =~2.12 Delete $@usn5 Starts With #usn7"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From (:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]}) Is Null As @usn6 Fieldterminator \"d_str\" Foreach(`7esn` In (:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case When `6esn`[12..$usn2][{#usn8}..{usn2}] Then {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] When .e12[@usn5..#usn7][010..{usn1}] Then 0.12 =~$0 =~$0 End| Optional Match Allshortestpaths((((:`2esn`:usn1{@usn5:`5esn`[.e0..][07..],`4esn`:`8esn` =~0xabc =~010})-[`7esn`?*..]->(#usn7 {`5esn`:00 Starts With 0xabc,`6esn`:0Xa =~Null =~$``})-[usn2?]-(:@usn5)))),_usn4=(((#usn8 :#usn8:#usn8{@usn5:{#usn8} Is Not Null})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})-[`4esn`?:_usn4|:usn2 *..01]->(`7esn` :`8esn`:`7esn`{#usn8:01234567[usn2..$12][{`7esn`}..$usn2]}))) Using Join On `6esn`,`8esn`,`4esn` Using Index #usn7:#usn7(``) Where 1.0 Is Null Is Null Create _usn4=((@usn6 )<-[usn1?:`8esn` *..010]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})<-[?:`8esn` *..0x0{`2esn`:$`4esn`[Null..]}]->({#usn8:0xabc[.e0]})),Shortestpath(((`6esn` :`4esn`))))"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:@usn6)Assert Exists([_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|`` Is Not Null Is Not Null]._usn4?)"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:`7esn`)Assert Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null).`6esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On(``:``)Assert Reduce(#usn8=#usn7 Is Null Is Null,`8esn` In 01[2.12..`8esn`]|0Xa[2.12]).`7esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[usn2:`7esn`]->()Assert Exists(Extract(#usn7 In {``} Is Not Null Where @usn5 In {`7esn`} In `2esn`).`1esn`)"), - octest_legacy:ct_string("Unwind $#usn8[$`2esn`..][{`2esn`}..] As @usn5 Unwind 0Xa[7..2.12][`3esn`.._usn3] As _usn3"), - octest_legacy:ct_string("Drop Constraint On()-[``:#usn7]-()Assert Exists({`3esn`:usn1 Is Null Is Null}.`2esn`?)"), - octest_legacy:ct_string("Drop Constraint On()-[`7esn`:``]->()Assert Exists(Single(#usn7 In {``} Is Not Null Where {`2esn`} Ends With {`7esn`}).`4esn`?)"), - octest_legacy:ct_string("Drop Constraint On()-[`4esn`:`8esn`]->()Assert Exists(Any(`8esn` In 01[2.12..`8esn`] Where #usn7 Starts With {#usn7} Starts With `7esn`).#usn7?)"), - octest_legacy:ct_string("Create Constraint On()-[#usn8:`5esn`]->()Assert Exists(Filter(`5esn` In \"d_str\" Is Null Is Null Where usn1 Ends With $@usn6 Ends With `3esn`).usn2!)"), - octest_legacy:ct_string("Create Constraint On(usn1:`8esn`)Assert Exists(Case {_usn4} Is Not Null Is Not Null When {#usn8} Is Not Null Then $`8esn`[..00] When $#usn7[..{`5esn`}][..9e12] Then `7esn`[$0][9e12] End.@usn5?)"), - octest_legacy:ct_string("Start `7esn`=Rel:_usn4(``={#usn7}) ,@usn6=Node:`7esn`(_usn4={12})Where Count ( * )[0.12...e1] Create `7esn`=Shortestpath(((:usn1{`3esn`:{123456789} Is Null Is Null})-[_usn4{`5esn`:{0} Ends With $_usn3 Ends With $`7esn`,`2esn`:Null[``]}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[? *0Xa]-({`7esn`:{999}}))) Union All Match Shortestpath((`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})) Using Index ``:usn1(@usn5) Union All Unwind 12 Ends With $usn2 As `6esn` Unwind `7esn`[$12..][$`8esn`..] As `2esn` Unwind .e0 =~`6esn` =~{12} As `3esn`"), - octest_legacy:ct_string("Remove _usn4(Distinct `` Ends With $1000,$`5esn`[{`3esn`}]).`7esn`,`6esn`:usn2 Optional Match Shortestpath((((:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[`2esn`?{`3esn`:{123456789} Is Null Is Null}]->(usn2 :#usn7)<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) Using Join On ``,`6esn`,usn2 Using Scan ``:`7esn` Where $999[0.0..] Union All With (:`5esn`{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`6esn`?:#usn7]->(@usn6 {`4esn`:True Contains {0} Contains 7,`6esn`:{999} Starts With $999}) Is Not Null Is Not Null As ``,12[..$`4esn`] As `7esn` Skip Allshortestpaths((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn3 :`7esn`:_usn3))[Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})))] Where 0.12 =~$0 =~$0 Union With *,(`1esn` {#usn7:{_usn4} In {12} In $0})<-[#usn7?:_usn3|_usn3 *..0x0]-(`1esn` :`8esn`:`7esn`)[Case When {``} Starts With $`2esn` Starts With `1esn` Then $`5esn` Starts With $0 Starts With {0} End..(`7esn` {@usn5:{7}[..1.0][..9e0]})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})][{usn2:$`2esn`}..[`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $`` Is Not Null|$#usn7[#usn7..]]] As `2esn` Limit {_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] Where {#usn7}[`2esn`..] Create Unique (`7esn` {@usn5:{7}[..1.0][..9e0]})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})<-[`1esn`?:usn2|``]-({@usn5:{usn2}[.e0..$999]}),((`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[_usn3?:#usn8|`1esn`]-(`7esn` {`4esn`:{usn1} Ends With $0}))"), - octest_legacy:ct_string("Create Constraint On(@usn5:usn1)Assert Exists(Case 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3] When $123456789 =~{`6esn`} =~\"d_str\" Then {@usn5} Is Null Is Null When 9e0 Then {_usn4} Is Not Null Is Not Null Else `7esn` In {123456789} In `1esn` End.usn1!)"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:usn1)Assert (`8esn` :`7esn`:_usn3{#usn7:'s_str' Is Not Null Is Not Null})-[:@usn6|`6esn`{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}]->(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789}).@usn5 Is Unique"), - octest_legacy:ct_string("Create Constraint On(#usn8:#usn7)Assert Exists(Extract(#usn8 In {`5esn`}[.e1..``] Where `6esn`[..$@usn6]|7 Starts With {@usn6} Starts With $``).usn2!)"), - octest_legacy:ct_string("Load Csv With Headers From 01[2.12..`8esn`] As @usn5 "), - octest_legacy:ct_string("With Distinct 07[$123456789..] Order By {7}[$7..$``][{``}..{7}] Descending,$_usn3[Count(*)] Desc Union All Foreach(`8esn` In $`3esn` Is Not Null Is Not Null| With Distinct *,{``}[$#usn8..$usn1] As `3esn` Order By $usn2[$`2esn`..`4esn`] Ascending,$`6esn`[{_usn3}..$`4esn`][$_usn4...e12] Asc,True[{_usn4}..][False..] Ascending Where \"d_str\" Contains {123456789} Contains 01 Start `3esn`=Relationship:#usn7('s_str') )"), - octest_legacy:ct_string("Start `2esn`=Node:@usn6({_usn4}) Create `1esn`=Shortestpath((((`2esn` :`8esn`:`7esn`)<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})))) Optional Match (`7esn` {`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2}),`5esn`=Allshortestpaths(((:`1esn`{``:.e1 Is Null Is Null})<-[usn1?:`7esn` *0xabc..{`3esn`:$#usn8[$`8esn`..{`8esn`}]}]->(:`4esn`{`8esn`:0.e0 In $#usn7 In $_usn3}))) Where {`5esn`} Contains $0 Contains {``} Union All Detach Delete {`6esn`},Single(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]) Ends With Case When 07 Contains 0X7 Contains $`8esn` Then {`4esn`} =~9e0 =~{12} When .e1 Ends With 1e1 Ends With @usn5 Then $#usn8[Count ( * )] Else Count ( * )[True..][{#usn7}..] End Ends With Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End,`1esn`[..{@usn6}][..$123456789] Union All Remove Reduce(#usn8=#usn7 Is Null Is Null,`8esn` In 01[2.12..`8esn`]|0Xa[2.12]).`7esn`?,(:#usn7{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[`4esn`:`8esn` *00]->(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]})<-[{`6esn`:2.12 Contains `1esn`,`1esn`:9e12[`6esn`..12.0]}]-(:_usn3:_usn3{``:`7esn` Starts With $#usn7 Starts With $`7esn`})._usn3!"), - octest_legacy:ct_string("Match (((usn2 :`4esn`)-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[``? *..01{`1esn`:$@usn6 Contains 07}]-(:`3esn`:@usn5{#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}))),Shortestpath((`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})) Using Scan `3esn`:_usn4 Using Index `3esn`:@usn5(`8esn`) Where Count(*) Ends With 12.0 Ends With 12 Unwind Case When {_usn4} Starts With 0.e0 Starts With 0x0 Then 12 Ends With 0x0 Ends With 0.e0 Else $1000 Is Null Is Null End Starts With `7esn`(Distinct $#usn7[..{`5esn`}][..9e12]) Starts With {`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`} As usn1"), - octest_legacy:ct_string("Remove Reduce(`4esn`=0X7[$999][_usn4],`2esn` In `1esn` =~\"d_str\"|0Xa[$123456789..123.654][.e12..0.e0]).usn2,{@usn6}.@usn6 With 7[$`8esn`..123456789][$usn1..$usn1] As `5esn`,2.12[{7}..] As `5esn`,[usn2[$_usn4..][True..],1.0 In Count(*)] =~Any(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12.0[123.654][Count(*)]) =~Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where usn2 Is Not Null Is Not Null) As `` Skip 12.0 In {`2esn`} Where 123.654 Is Not Null Is Not Null Union All Remove Case When `2esn` Is Null Then 1000 =~@usn6 =~0x0 Else \"d_str\"[#usn8] End.`1esn` Union All Foreach(_usn3 In 123456789 Ends With $`6esn` Ends With $#usn7| Unwind $`1esn`[{`2esn`}..] As `7esn` Create `8esn`=((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}}))) Start usn1=Rel:@usn6(#usn7='s_str') ,``=Node:@usn6({_usn4})"), - octest_legacy:ct_string("Foreach(usn2 In {1000}[$999...e12][`7esn`..'s_str']| Create _usn3=Allshortestpaths((((:usn1{`5esn`:`5esn`[_usn4..],`4esn`:`7esn`[..{usn1}]})<-[ *123456789..{@usn6:1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4],`6esn`:12e12 Ends With {usn1}}]->(#usn8 :@usn6:#usn8)-[usn1? *1000..00]->({`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})))),(((#usn8 :#usn8:#usn8{@usn5:{#usn8} Is Not Null})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})-[`4esn`?:_usn4|:usn2 *..01]->(`7esn` :`8esn`:`7esn`{#usn8:01234567[usn2..$12][{`7esn`}..$usn2]})))) Union With All(`3esn` In {7} Is Null Where Count ( * ) Contains 07) Is Null Is Null Limit $12[`5esn`..] Where 0.12[`2esn`..{`6esn`}] Delete $#usn8[Count ( * )]"), - octest_legacy:ct_string("Match @usn5=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})),(`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]}) Merge Shortestpath(((:#usn8:#usn8)-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(:`2esn`:usn1{#usn8:`8esn` Contains $usn1 Contains $12}))) On Match Set `5esn` =All(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`2esn`} Is Not Null)[Filter(#usn7 In `2esn`[..$#usn8][..Count(*)] Where {`4esn`} Starts With $usn2 Starts With $1000)..Reduce(`8esn`={`2esn`} Is Not Null Is Not Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{usn1} Ends With $0)][Allshortestpaths(((`1esn` )))..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] On Match Set `7esn` =`4esn`[..010][..{12}],@usn5+=0X7[$999][_usn4],@usn5 =0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn` Load Csv From 2.12[{7}..] As #usn8 Union Create (((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7}))),((:#usn8:#usn8{_usn4})<-[usn1?:`7esn`]-(:usn1{usn1:{`6esn`}})) Merge ((#usn7 :#usn7)<-[#usn8:@usn6|`6esn`{`8esn`:True[00][0Xa]}]->(`7esn` :`7esn`:_usn3{usn2:_usn3[$`8esn`]})) On Match Set Case When 1.0[0X0123456789ABCDEF] Then 9e1 In $`3esn` In $@usn6 End.#usn8? =12e12 Is Null Is Null,Filter(#usn8 In 7[..999][..{#usn8}] Where 0e0 Contains Null).`6esn`! =0xabc[.e0],@usn6+={999} Is Null Is Null On Create Set `4esn` =Shortestpath(((({#usn7:2.12 Contains usn2 Contains True})-[_usn3?:`6esn`|`5esn` *0X0123456789ABCDEF]-(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}))))[Case When $999[0.0..] Then 12 Ends With 0x0 Ends With 0.e0 When `` Is Not Null Is Not Null Then {`3esn`}[..07][..{`5esn`}] End..[`3esn` In {7} Is Null Where usn1 Is Null Is Null]],Case When Count ( * ) Ends With $@usn5 Then _usn4 Contains 2.12 Else False =~$7 =~2.12 End.`5esn`! =7 Ends With $`4esn` Return 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] As #usn8,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6} As _usn4,12.0 Ends With True Ends With 123456789 As #usn7 Skip $1000 Is Not Null Union All With Distinct Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn`,{``}[$#usn8..$usn1] As @usn6,None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`]) Is Not Null Order By $0[..9e1] Descending,{usn1}[Count(*)..] Desc Skip (`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})-[:`6esn`|`5esn`{`8esn`:$0 Ends With 12.0}]->(`5esn` {`4esn`:7[$`2esn`..{`5esn`}],@usn6:{7} Is Null}) Contains Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) Contains Case 9e12 Is Not Null Is Not Null When 0[..usn2][..{@usn5}] Then 0e0 Ends With 1.e1 Ends With $`4esn` Else usn1 Is Null End Where $`5esn` In $`6esn` Load Csv With Headers From `6esn`[12..$usn2][{#usn8}..{usn2}] As `2esn` Fieldterminator \"d_str\""), - octest_legacy:ct_string("Unwind [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {0}|{usn1} Is Null Is Null][Allshortestpaths(((`5esn` :`4esn`)-[@usn6?*..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})<-[``:#usn7{`8esn`:$`8esn` =~{1000}}]-(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})))..] As `3esn` Start @usn6=Rel:``(_usn3='s_str') ,``=Node:_usn4(usn1={12}) Create (:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})-[`1esn`:_usn4|:usn2]-(`8esn` :`8esn`:`7esn`) Union Optional Match (((usn2 {``:01[{@usn5}]})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})-[`6esn`? *0..]-(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12}))) Using Scan usn2:`6esn` Using Join On #usn8 Where $_usn3[..1000] Create usn1=(((@usn5 :`8esn`:`7esn`{`6esn`:`7esn`[$0][9e12],`4esn`:.e1 Is Null Is Null})<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->(`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[`6esn`?:`4esn` *..01]->(@usn5 :`4esn`))),(((usn2 :`4esn`)-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[``? *..01{`1esn`:$@usn6 Contains 07}]-(:`3esn`:@usn5{#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}))) Remove [{#usn7}[9e1..][{123456789}..]].usn1!,None(`2esn` In `1esn` =~\"d_str\" Where `` Ends With 123456789 Ends With 123.654).@usn6,All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8).`4esn` Union All Return Distinct {`4esn`:`7esn` Is Null}[{`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]}..] As #usn8 Order By 9e12[`1esn`..][$`1esn`..] Ascending,Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]] Ascending,9e1 Is Not Null Asc Match ``=Shortestpath(({`1esn`:`3esn`[{`2esn`}]})-[`3esn`?*{`8esn`:False Is Null Is Null}]->(:#usn7{_usn4:$`8esn` Contains 123456789 Contains $usn2})),usn2=Allshortestpaths(((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]}))) Using Join On #usn7,_usn4 Where $#usn8 Contains $`1esn` Contains {`6esn`}"), - octest_legacy:ct_string("Return Distinct 12.e12 Is Null Is Null As `6esn`,01 Is Null As `2esn`,$12 =~$_usn3 As #usn8 Skip Filter(`8esn` In 01[2.12..`8esn`] Where 0X7[1000..{`1esn`}]) Ends With Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``]) Ends With Case $`7esn` Is Null Is Null When {#usn7}[9e1..][{123456789}..] Then False =~1e1 =~0.e0 Else 1000 In {`8esn`} In 01 End Limit $999 Is Not Null Create (`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]->(usn2 :`6esn`{#usn7:Count ( * ) Contains 07})<-[`4esn`?{`3esn`:\"d_str\" Is Null Is Null,usn1:0X0123456789ABCDEF[123456789]}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]}),`2esn`=(@usn5 :usn1) Create Allshortestpaths((:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 :usn1)) Union Create `4esn`=((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})),`1esn`=((({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})<-[`4esn`?:usn2|`` *0X7..]->(_usn3 :@usn5)<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8})))"), - octest_legacy:ct_string("Detach Delete $@usn5 Starts With {0} Starts With 12 Foreach(`7esn` In {@usn6} Is Null Is Null| Return {`4esn`:`7esn` Is Null}[{`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]}..] As #usn8 Order By 9e12[`1esn`..][$`1esn`..] Ascending,Single(`5esn` In $999[0.0..] Where usn2[$_usn4..][True..])[..Reduce(@usn5=$@usn5 Is Not Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|7[..123456789][..{@usn6}])][..[`1esn`[..{@usn6}][..$123456789]]] Ascending,9e1 Is Not Null Asc Unwind None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`])[Any(`3esn` In {7} Is Null Where {`4esn`} =~{7} =~{`7esn`})..][Extract(`2esn` In `1esn` =~\"d_str\" Where $_usn4[1.e1]['s_str']|usn1[`5esn`..$7])..] As usn2)"), - octest_legacy:ct_string("With Distinct *,9e1[2.12],$_usn4 Contains Null Contains #usn8 As #usn7 Order By (usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]-(`3esn` {@usn6:`4esn`[..010][..{12}]})<-[ *123456789..]-(:@usn5) Is Null Is Null Desc,False[..{`1esn`}] Desc Skip 1e1[$`5esn`][{`3esn`}] Limit {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} Contains Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {7} In `2esn`) Contains [1.0[0X7][{`5esn`}]] Where 123.654 Contains $`4esn` Contains 1.0"), - octest_legacy:ct_string("Remove ({`5esn`:\"d_str\" Starts With 01})<-[:_usn4|:usn2{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]}]-(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})._usn4,[`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 0.e0[123.654][01]|{usn1}[0X0123456789ABCDEF]].`7esn`?,Extract(`4esn` In $`3esn` Is Not Null Where `7esn`[..2.12][..{usn1}]|9e1[..$`2esn`]).`8esn`! Create Unique `7esn`=Shortestpath(((({#usn7:2.12 Contains usn2 Contains True})-[_usn3?:`6esn`|`5esn` *0X0123456789ABCDEF]-(@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})))),`5esn`=((:@usn5)-[:#usn7{`2esn`:.e12 Ends With _usn4}]-(usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)) Union Remove [`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 01234567 Is Null Is Null].`6esn`?,`8esn`:`8esn`:`7esn`,Allshortestpaths(((`4esn` {`6esn`:#usn8[..{#usn7}]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]}))).#usn7! Unwind [{@usn6} Ends With 's_str' Ends With 12.0,{12} Contains {123456789} Contains `4esn`] Starts With Filter(_usn3 In {`3esn`}[`2esn`] Where {1000} =~0 =~123.654) Starts With Case When Count ( * )[0.12...e1] Then $@usn5 =~1000 =~1000 When Null Ends With `2esn` Ends With $usn1 Then $usn2[{@usn5}] End As `4esn` Merge `4esn`=(({_usn3:.e12[@usn5..$12]})-[`3esn`:#usn7]->(@usn6 {_usn3:{#usn7} Is Not Null Is Not Null})) On Match Set ``:_usn3:_usn3"), - octest_legacy:ct_string("Create Constraint On()-[#usn7:`2esn`]-()Assert Exists(Allshortestpaths(((usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]->(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})-[`6esn`?:`8esn`{#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}]-(:@usn6:#usn8$`5esn`))).`5esn`)"), - octest_legacy:ct_string("Create Constraint On()-[@usn6:#usn8]->()Assert Exists([@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $@usn5 Starts With $1000|$usn2[{@usn5}]].@usn6!)"), - octest_legacy:ct_string("Create `4esn`=((@usn6 :#usn8:#usn8{`5esn`:123.654[True..$#usn8][0.12..Count(*)],usn1:`1esn`[{usn1}..``][7..$#usn8]})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})),`1esn`=((({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})<-[`4esn`?:usn2|`` *0X7..]->(_usn3 :@usn5)<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8}))) Union All With 0.e0 In $#usn7 In $_usn3,(usn2 :@usn5)-[?{`8esn`:{7} Is Null}]->(`` )<-[`3esn`?:`3esn`|:#usn8]-(`` :#usn8:#usn8)[Reduce(usn2=`2esn` Starts With $_usn4,#usn7 In {``} Is Not Null|{7} Is Null)..][Single(#usn7 In {``} Is Not Null Where $1000[0Xa][{#usn7}])..] As `2esn` Order By $usn1 Ends With $`` Ends With $12 Desc,1e1[1000..] Ascending,{123456789}[0.e0..$123456789][0Xa..`6esn`] Descending Limit {123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4] Where `4esn` Ends With 07 Ends With {`3esn`}"), - octest_legacy:ct_string("Start _usn4=Node:`4esn`(_usn4={123456789}) Where {_usn4} In {12} In $0 Union All Create #usn7=Shortestpath(((@usn6 )<-[usn1?:`8esn` *..010]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})<-[?:`8esn` *..0x0{`2esn`:$`4esn`[Null..]}]->({#usn8:0xabc[.e0]}))),`3esn`=Shortestpath((@usn5 :`8esn`:`7esn`{`6esn`:`7esn`[$0][9e12],`4esn`:.e1 Is Null Is Null})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`4esn` {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null})-[`1esn`?:`8esn`]->(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})) Delete `2esn`[{`4esn`}][$_usn3] Union Foreach(`1esn` In {#usn7} In 0x0 In $0| Unwind $`1esn` Ends With 9e1 Ends With $123456789 As ``) Create `8esn`=Allshortestpaths((`` :#usn7)-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})),(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`8esn` :`8esn`:`7esn`) Start ``=Rel:#usn8(_usn3='s_str') ,`7esn`=Rel:`6esn`(\"d_str\")Where 0[..usn2][..{@usn5}]"), - octest_legacy:ct_string("Drop Constraint On(``:`4esn`)Assert {`3esn`:$`6esn` Ends With Count(*),``:.e12 Ends With _usn4}.`5esn`! Is Unique"), - octest_legacy:ct_string("Foreach(`2esn` In 1e1 In \"d_str\" In `7esn`| Return Distinct *,Reduce(`5esn`=$`5esn`[{`3esn`}],`3esn` In {7} Is Null|`6esn`[12..$usn2][{#usn8}..{usn2}]) In @usn5(Distinct _usn4 Starts With $_usn4 Starts With 12.e12) In None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Count ( * ) Ends With 12.0) As #usn8 Order By {7}[..1.0][..9e0] Asc Skip {_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] Limit 0 In $_usn4 In $@usn5) Unwind $@usn5 Is Not Null Is Not Null As `8esn` Return Distinct *,`4esn`[`5esn`..12][@usn6..False],Case 's_str' In 00 When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null When $@usn5 Starts With {0} Starts With 12 Then {usn2} Else {#usn7}[`2esn`..] End As `4esn` Order By 123456789[{123456789}..'s_str'] Descending Limit 9e0 Union Return 12.e12 Is Null Is Null As `6esn`,01 Is Null As `2esn`,$12 =~$_usn3 As #usn8 Order By (`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(`5esn` :@usn5{`8esn`:{usn2} =~12})[All(`` In `` Is Not Null Is Not Null Where `3esn`[{0}][usn1])] Descending Skip [0x0 Is Null,{``} Ends With `7esn` Ends With 0.0,0X7[0e0..`7esn`][1000..0e0]] =~Any(`5esn` In \"d_str\" Is Null Is Null Where $`6esn` Is Null) =~[$12[True..][{0}..],usn1[`5esn`..$7]] Start @usn6=Node:#usn7(@usn6={#usn8}) ,`4esn`=Relationship:@usn6({12})Where \"d_str\" Starts With 01 Remove ``:`1esn`,[#usn7 In {``} Is Not Null Where {0}[01][`7esn`]|0e0 Starts With 1000 Starts With #usn7].#usn7,{usn1:`1esn` Contains {usn2} Contains $#usn8}._usn3?"), - octest_legacy:ct_string("Return *,Allshortestpaths((:``:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))[[{_usn4} In {12} In $0,$`5esn`[2.12..],12[1.e1..{_usn3}][1.e1..1.0]]][[12e12 Is Not Null Is Not Null]] Skip 1.e1[Count ( * )..] Limit 0e0 Starts With 1000 Starts With #usn7 Create `8esn`=((`4esn` {_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']})<-[``:_usn4|:usn2{_usn4:{`7esn`}[..{`4esn`}],`5esn`:{@usn6}[{999}..][00..]}]->(`` )<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})) Create ``=Allshortestpaths(({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})) Union All Unwind $#usn7[..{`5esn`}][..9e12] As `3esn` Foreach(`` In Reduce(_usn4=01[{`2esn`}..{@usn6}][$`2esn`..0.0],_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|0.12 =~$0 =~$0)[Shortestpath((((`1esn` {@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]})<-[?:#usn8|`1esn`*..{`3esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00})-[`6esn`?:`3esn`|:#usn8]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}))))..[{12}[{7}][$123456789]]]| Remove 2.12.`7esn`!,{`1esn`:$0[..9e1]}.usn2!,Reduce(usn2=#usn7 Is Null Is Null,usn1 In @usn5 =~{`5esn`} =~`5esn`|{_usn3}[12.e12]).@usn6?) Foreach(_usn3 In {@usn6} Starts With `5esn`| Remove {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}}.`6esn`!,All(`5esn` In $999[0.0..] Where $`5esn`[..$`5esn`][..$12])._usn4?,(:@usn6:#usn8$`5esn`)<-[`1esn`?:usn1|@usn6 *0..]-(:#usn8:#usn8{@usn6:$_usn3[..1000]})-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :_usn3:_usn3{`7esn`:$`6esn`[123456789..12][True..{`3esn`}],`5esn`:0X0123456789ABCDEF[123456789]}).`3esn` Start `1esn`=Rel:`4esn`(`4esn`='s_str') Where 12.e12[`3esn`]) Union All Return Distinct Any(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where @usn6 Is Null Is Null)[(`` :`5esn`{`4esn`:0.0[$0][{@usn5}]})-[:`6esn`|`5esn`]-(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})..] As `3esn`,{`3esn`} In 0X7 Skip `1esn` In .e0 In {`3esn`} Limit Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End Optional Match `8esn`=Allshortestpaths(((`` {usn2:0X0123456789ABCDEF[123456789]})-[?{`8esn`:{7} Is Null}]->(`4esn` {`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})-[]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]}))),@usn5=((`5esn` {`8esn`:1000[Null..{123456789}]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})-[:@usn6|`6esn`{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}]->(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})) Using Scan `4esn`:`5esn` Using Join On #usn8 Where {#usn8} Is Null Return {_usn4:$_usn4[1.e1]['s_str']} Is Null As _usn3,[$0] In [`2esn` In `1esn` =~\"d_str\" Where {0} Ends With $_usn3 Ends With $`7esn`|{999} Contains .e0 Contains 12.0] In None(`2esn` In `1esn` =~\"d_str\" Where {`7esn`}[..$@usn5][..$#usn8]) As usn1,Single(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {`3esn`} Is Not Null Is Not Null)[{@usn6:1.0[$`1esn`..][$123456789..]}] As `6esn` Order By $`3esn`[..12.0] Asc Skip 0.0[$0][{@usn5}] Limit {``} Starts With $`2esn` Starts With `1esn`"), - octest_legacy:ct_string("Load Csv With Headers From [`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`]|`8esn` Contains $usn1 Contains $12][Filter(_usn3 In {`3esn`}[`2esn`] Where #usn7 Contains _usn3 Contains {`3esn`})..(:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})-[usn2?:`7esn` *123456789..{_usn4:$@usn5 Starts With {0} Starts With 12,`2esn`:{7}[..12e12][..Count ( * )]}]->({_usn3:False =~1e1 =~0.e0,_usn3:{999} Starts With $999})] As `5esn` Fieldterminator \"d_str\" Create Unique Shortestpath((_usn4 )<-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:usn2)<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})),@usn5=(((usn2 :`4esn`)-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[``? *..01{`1esn`:$@usn6 Contains 07}]-(:`3esn`:@usn5{#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}))) Foreach(`4esn` In 1000[0X7..2.12]| Remove ({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)._usn4?) Union Load Csv With Headers From 9e12[`6esn`..12.0] As @usn6 Union All Merge ``=Allshortestpaths(((:`3esn`:@usn5$7))) Detach Delete 123.654[$`1esn`]"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:_usn4)Assert [`` In `` Is Not Null Is Not Null Where `1esn` =~0 =~$#usn7|'s_str' In 00].`2esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`6esn`:`8esn`]->()Assert Exists((:usn2{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})-[`6esn`:`2esn`{`5esn`:00 Starts With 0xabc,`6esn`:0Xa =~Null =~$``}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}).`1esn`?)"), - octest_legacy:ct_string("Create Unique @usn5=Allshortestpaths(({`1esn`:$`8esn`[1000..0Xa]})),(:`1esn`{``:.e1 Is Null Is Null})<-[#usn8?:usn1|@usn6]->(`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`}) Delete Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) Is Not Null Is Not Null,$@usn5[..12e12][..$123456789] Create _usn4=(`` :#usn8:#usn8) Union All Create @usn5=Shortestpath(((`6esn` {#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`3esn` :_usn3:_usn3{usn1:`1esn` Contains {usn2} Contains $#usn8}))),_usn3=Allshortestpaths((`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})) Match (`4esn` :`8esn`:`7esn`{`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[@usn5?:@usn5 *..010{`5esn`:False Contains {`6esn`}}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Using Scan `6esn`:`3esn` Using Scan _usn4:`7esn` Where 0[{usn2}..][$`6esn`..] Return Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7) Contains Filter(`` In `` Is Not Null Is Not Null Where 0e0 Starts With 1000 Starts With #usn7) Contains Shortestpath((($#usn8)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]}))) As #usn7 Order By 2.12 =~Count(*) Descending,`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) Contains Reduce(`7esn`=$_usn4 Ends With usn1 Ends With $0,`4esn` In $`3esn` Is Not Null|`7esn` In {123456789} In `1esn`) Asc Union All Start `6esn`=Node:``({`1esn`}) ,usn2=Node:_usn4(``={#usn7})Where $`5esn`[{`3esn`}] Detach Delete Single(_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..])[..All(`` In `` Is Not Null Is Not Null Where {`7esn`} Is Null)],{123456789}[0xabc..],Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where .e0[..$`8esn`]) In {usn2:{`3esn`} Is Not Null Is Not Null} In {`4esn`:False,_usn4:$`7esn` Is Null Is Null} Create `4esn`=Allshortestpaths(((usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})<-[`2esn`?:`7esn`]->(`7esn` {`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})))"), - octest_legacy:ct_string("Match Allshortestpaths(((@usn5 :`1esn`{`3esn`:$1000 =~$`2esn`,#usn8:{999}[1000..{usn2}]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(@usn5 :`4esn`)<-[`7esn`?:#usn8|`1esn` *0xabc..{#usn8:$#usn8 =~{@usn5}}]->(`` {usn2:0X0123456789ABCDEF[123456789]}))) Using Index `1esn`:@usn5(#usn8) Merge ``=(`1esn` {``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Start `8esn`=Rel:@usn6(`7esn`={`8esn`}) ,_usn4=Node( {`1esn`})Where 0[1.e1..12e12] Union All With *,.e0 Ends With 0.12,12.e12[`3esn`] As #usn7 Skip False Contains {`6esn`} Create Unique Allshortestpaths((@usn5 {`3esn`:.e1[..usn2][..`8esn`]})<-[usn2:`7esn`]->(:usn1{_usn3:{#usn7}[`2esn`..]})-[?:usn2|``$#usn7]-(#usn8 :``:#usn8{`7esn`:9e1[$usn2],_usn4:$_usn4 Contains Null Contains #usn8})),({`4esn`:`7esn` Is Null}) Return {12} Contains {123456789} Contains `4esn` Union Foreach(usn1 In 0Xa[..{`4esn`}][..12.0]| Return *,Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where #usn7) In [{_usn3}[..$12][..0.12],usn1 Is Null] In [#usn8 In 7[..999][..{#usn8}] Where $_usn3 Contains 999 Contains \"d_str\"] Limit [`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999}] Ends With usn1(Distinct 1000 In {`8esn`} In 01,{_usn3}[..\"d_str\"][..`5esn`]) Ends With Reduce(_usn4=1000[Null..{123456789}],`5esn` In $999[0.0..]|9e1 In $`3esn` In $@usn6) Remove Reduce(`8esn`={`7esn`}[..$@usn5][..$#usn8],`3esn` In {7} Is Null|0.12[$`3esn`..$_usn3][12.0..usn1]).`1esn`,Reduce(`4esn`=$999 Is Not Null,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|$`7esn`['s_str']).``?,(@usn5 {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`}).#usn7) With Distinct (`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(`5esn` :@usn5{`8esn`:{usn2} =~12})[All(`` In `` Is Not Null Is Not Null Where `3esn`[{0}][usn1])] As _usn4,$_usn4[1.e1]['s_str'] As #usn8,usn2[$7..$123456789][$@usn6..$7] Order By 9e1[0.0..] Desc,0.12 =~$0 =~$0 Desc Limit {_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] Where 0X7 =~9e1 Unwind .e0 Starts With $`` Starts With $usn2 As _usn3"), - octest_legacy:ct_string("Create Constraint On(@usn5:`5esn`)Assert #usn8(Distinct {``}[010..][0xabc..],`7esn` In {123456789} In `1esn`).usn2? Is Unique"), - octest_legacy:ct_string("Start `7esn`=Rel:_usn4(``={#usn7}) ,`8esn`=Relationship:`4esn`(`1esn`={`2esn`}) Match @usn5=Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))),`2esn`=Allshortestpaths(((#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})-[`8esn`?:@usn6|`6esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]}))) Using Scan `4esn`:`8esn` Using Join On `8esn`,`2esn` Where {_usn3}[..$12][..0.12] Match Shortestpath((`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7})),``=Allshortestpaths((`2esn` :`8esn`:`7esn`)-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})) Using Scan _usn3:`1esn` Where 12.0[123.654][Count(*)]"), - octest_legacy:ct_string("Drop Constraint On()-[`5esn`:`1esn`]->()Assert Exists(None(`4esn` In $`3esn` Is Not Null Where `2esn`[..$#usn8][..Count(*)]).`1esn`!)"), - octest_legacy:ct_string("Return {123456789} Contains $#usn8 As `3esn`,{7}[..12e12][..Count ( * )],$0[$`1esn`..07] Order By 0e0[$1000][{usn1}] Descending,1.0 Starts With 12e12 Starts With {`5esn`} Desc Skip $`5esn` In 0.e0 Union Load Csv With Headers From `6esn`[..$@usn6] As @usn6 Fieldterminator 's_str' Unwind {`2esn`}[$`4esn`][$`5esn`] As ``"), - octest_legacy:ct_string("Create Constraint On()-[usn2:`7esn`]-()Assert Exists(Reduce(#usn7=1.0 Contains $_usn4,#usn7 In {``} Is Not Null|$`4esn`[9e12..123.654]).`5esn`?)"), - octest_legacy:ct_string("Drop Constraint On(usn1:usn1)Assert Shortestpath(((:@usn6:#usn8{`4esn`:$`8esn`[..00]})<-[_usn4?:_usn4|:usn2 *00]->(:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))).`2esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:`2esn`)Assert {_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]}.`7esn`! Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[``:`2esn`]->()Assert Exists((`1esn` {``:`7esn` Starts With $#usn7 Starts With $`7esn`})-[`4esn`]->(:`6esn`$123456789)-[?:#usn7 *0xabc..]->(`3esn` :`5esn`{_usn3:7[True..][2.12..],`1esn`:$@usn5 Starts With {0} Starts With 12}).@usn5)"), - octest_legacy:ct_string("Create `1esn`=Shortestpath((((`2esn` :`8esn`:`7esn`)<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})))),(((:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[:`6esn`|`5esn` *123456789..]-(#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}))) Union All Optional Match (:`5esn`{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}),((`6esn` {`2esn`:Count(*)[..usn2][..usn2]})-[`2esn`]->({`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}})) Using Index `6esn`:@usn5(`2esn`) With Distinct *,0Xa Is Null Is Null As `1esn` Order By {7}[$`5esn`][{_usn3}] Asc,.e1 Is Null Is Null Descending,usn1[`5esn`..$7] Desc Union Merge `6esn`=(@usn5 {`7esn`:$`6esn`[010..]})-[?:`8esn`{`3esn`:1.0 In Count(*)}]-(`4esn` :#usn7{``:$#usn7[@usn5..{1000}][1.e1..7]})-[`5esn`?:@usn5{`4esn`:0Xa =~Null =~$``}]->(:#usn7{usn2:{usn1} Ends With $0,#usn8:`5esn` Starts With $`2esn` Starts With $1000}) On Create Set `4esn`+=(`1esn` :#usn8:#usn8)-[`3esn`:`7esn`{``:{0} In _usn4}]->(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[``? *00{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})[..(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})][..`5esn`({12} Ends With 1.0 Ends With .e0)],Any(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`])._usn4! ={@usn6}[{999}..][00..] On Match Set _usn3+={_usn3}[12.e12],`3esn`+=@usn5 =~{`5esn`} =~`5esn`,#usn8 =[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*))"), - octest_legacy:ct_string("Create Constraint On(@usn5:`8esn`)Assert Exists([`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`]|123.654[{7}..]].@usn5)"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From $`4esn` =~.e12 As `4esn` Fieldterminator \"d_str\""), - octest_legacy:ct_string("Foreach(_usn4 In {`2esn`} Is Not Null| Match usn2=(`7esn` {`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2}),`4esn`=Allshortestpaths((({usn1:`5esn`[_usn4..]})-[usn1?:_usn3|_usn3]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))) Using Join On #usn7,_usn4 Using Join On `8esn`,@usn5 Where `3esn`[{`2esn`}]) Union All Return *,12.0 Ends With True Skip {`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}[Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End..[`3esn` In {7} Is Null Where {123456789} Contains $#usn8|#usn7 =~Count ( * ) =~``]][`7esn`(9e1[1000][{123456789}]).._usn3(0.12 =~$0 =~$0)] With *,{_usn4:Count ( * )[True..][{#usn7}..],``:{``} Ends With `7esn` Ends With 0.0} In (usn2 {``:01[{@usn5}]})<-[?:_usn4|:usn2{`8esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],``:_usn3 Contains $123456789 Contains ``}]->(`2esn` :`2esn`:usn1{usn1:123.654 Is Not Null Is Not Null,`8esn`:@usn6 Is Null Is Null})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(:_usn4{_usn4:{7} In `2esn`}) In {`4esn`:`7esn` Is Null} As `2esn`,`5esn` Is Null Order By Reduce(@usn6=$1000[999],`8esn` In 01[2.12..`8esn`]|#usn7 Is Null Is Null)[_usn3(0.12 =~$0 =~$0)..][count($12 Ends With 07 Ends With $123456789,`8esn`[{123456789}..])..] Desc Skip `5esn`({12} Ends With 1.0 Ends With .e0) Contains `3esn`(`5esn`[{`4esn`}..`2esn`],9e1[2.12..{#usn8}]) Contains (@usn5 :#usn7)<-[``?:`3esn`|:#usn8{`1esn`:.e0[..$`8esn`]}]-(`5esn` {`4esn`:01 Is Null})<-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(_usn4 ) Limit {@usn5} =~Count ( * ) =~12.0 Start `2esn`=Node:``({`1esn`}) "), - octest_legacy:ct_string("Match @usn5=Allshortestpaths((`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[:`3esn`|:#usn8 *7..12{@usn5:_usn4 Starts With $_usn4 Starts With 12.e12}]->(`1esn` :usn2{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null})),`2esn`=Shortestpath(((#usn8 {_usn4:00[`2esn`..12][123456789..0.e0],`8esn`:0x0[`4esn`..'s_str']}))) Using Join On `5esn`,#usn7 Create ((@usn5 :usn1)<-[`5esn`? *7..12{`5esn`:{999},_usn3:$`5esn`[2.12..]}]->(:`7esn`:_usn3{_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})-[_usn4?:_usn4|:usn2 *..999]-({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})),``=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))) Union All Unwind 123456789 Ends With 0.12 Ends With `` As _usn3 Remove [{12} Contains {123456789} Contains `4esn`,1.e1[`8esn`][00],1.0[$`1esn`..][$123456789..]]._usn4?,Reduce(_usn3=123456789[#usn8..False],_usn3 In {`3esn`}[`2esn`]|123.654 Contains $`4esn` Contains 1.0).#usn8? Remove Case When $#usn8 Ends With $`2esn` Ends With $@usn6 Then $1000[`2esn`..`5esn`][1e1..1.e1] Else {`4esn`} =~{7} =~{`7esn`} End._usn3?,{`8esn`:{usn2} =~12}.@usn5,`2esn`(Distinct 7[$`8esn`..123456789][$usn1..$usn1],1e1 In 123.654 In `3esn`)._usn4!"), - octest_legacy:ct_string("With Distinct *,{``}[$`8esn`..] As `6esn` Order By None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {@usn6}[{999}..][00..]) Ends With Shortestpath((`6esn` {_usn4:0Xa =~Null =~$``})<-[``? *0X7..]->(`` :`1esn`)) Ends With Reduce(_usn3={7}[..1.0][..9e0],`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|`1esn` Contains {usn2} Contains $#usn8) Asc,12.e12[7..$`6esn`] Desc,$usn1[.._usn4][..False] Asc Limit $#usn8[Count ( * )] Create Shortestpath(((:#usn8:#usn8{_usn4})<-[usn1?:`7esn`]-(:usn1{usn1:{`6esn`}}))),`7esn`=((:`3esn`:@usn5$7)-[ *0xabc..{usn2:{12} Is Not Null,`6esn`:``[$`2esn`]}]-(`4esn` {`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null})<-[?{#usn8:9e12[`1esn`..][$`1esn`..]}]-(:`7esn`:_usn3{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})) Start ``=Rel:`7esn`(usn2={`6esn`}) ,`2esn`=Node:@usn5({`1esn`}) Union Start `3esn`=Node:``(_usn3='s_str') ,`7esn`=Node:_usn4(#usn7=\"d_str\") Foreach(`7esn` In {@usn6} Ends With 's_str' Ends With 12.0| With Distinct `7esn` Is Null As `7esn`,count($123456789 Is Null Is Null,{`7esn`} Starts With $123456789 Starts With $@usn6)[`8esn`(Distinct `8esn` =~0xabc =~010)][Case When `2esn`[..$#usn8][..Count(*)] Then False =~1e1 =~0.e0 When {`4esn`} Starts With $usn2 Starts With $1000 Then {``} Is Not Null End] As @usn5,1000 In `7esn` In 9e12 As `6esn` Limit $`` Is Not Null Match `2esn`=Allshortestpaths((({`3esn`:.e1[..usn2][..`8esn`]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`1esn`{_usn4:{999}}))),#usn7=Shortestpath((((#usn7 :`8esn`:`7esn`{`5esn`:1.0 In Count(*)})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000})))) Using Scan ``:_usn4 Using Scan ``:`2esn`) Create ``=Shortestpath(({`7esn`:{999}})<-[:`3esn`|:#usn8{@usn5:{#usn8} Is Not Null}]->(`` :_usn3:_usn3{_usn4:{`4esn`} =~9e0 =~{12},#usn8:0[{usn2}..][$`6esn`..]})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(_usn3 :usn1{`6esn`:$usn1 Ends With $`` Ends With $12})),``=(((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})))"), - octest_legacy:ct_string("Load Csv With Headers From $`8esn` Is Not Null Is Not Null As #usn8 Union Create `8esn`=Allshortestpaths((`` :#usn7)-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->(_usn3 {#usn8:_usn4 Is Null Is Null})),(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`8esn` :`8esn`:`7esn`) Union All Create Unique _usn3=(({@usn6:01234567 Ends With .e12 Ends With $#usn7,`4esn`:12.e12[`3esn`]})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(#usn7 :`7esn`:_usn3)),(((#usn8 {`6esn`:Count(*) Ends With 12.0 Ends With 12})<-[usn1 *..999{@usn5:1.0[0X7][{`5esn`}],_usn3:$`7esn` Is Null Is Null}]-(`6esn` {`2esn`:Count(*)[..usn2][..usn2]})<-[`2esn`?:`7esn` *0X7..]-(_usn4 :usn2{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}))) Create ``=Shortestpath(({`1esn`:`3esn`[{`2esn`}]})-[`3esn`?*{`8esn`:False Is Null Is Null}]->(:#usn7{_usn4:$`8esn` Contains 123456789 Contains $usn2})),@usn6=Allshortestpaths(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})))"), - octest_legacy:ct_string("With Distinct All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)],None(#usn8 In 7[..999][..{#usn8}] Where 2.12['s_str'..$12][{`1esn`}..`2esn`])[[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 12e12 Ends With {usn1}]][[$12 Ends With 07 Ends With $123456789,$@usn5 =~1000 =~1000,.e12[@usn5..$12]]] As @usn5 Order By True =~{`5esn`} Asc,\"d_str\" Contains {123456789} Contains 01 Asc Where {999} Starts With {0} Union All Create Unique ((usn2 :@usn5)<-[? *00]->(@usn5 :usn1)),Allshortestpaths((((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})))) Create `6esn`=Shortestpath((({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})<-[_usn4?:`` *0X0123456789ABCDEF{`5esn`:$123456789 Is Null Is Null,@usn6:{12} Ends With 1.0 Ends With .e0}]->(:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null})<-[``?:#usn8|`1esn`{#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1}]->({@usn5:12e12 Contains 0Xa,_usn4:01[2.12..`8esn`]}))),usn2=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})<-[{`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}]->({`7esn`:7[{0}..{_usn4}]})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-({#usn8:0xabc[.e0]})))) Start `6esn`=Node:``('s_str') Where 12.e12[7..$`6esn`] Union Start `5esn`=Relationship(*) ,`7esn`=Rel:#usn8({_usn3}) Match ((_usn4 )) Using Index `3esn`:@usn5(`2esn`) Using Scan _usn3:`1esn` Where {usn1}[0X0123456789ABCDEF]"), - octest_legacy:ct_string("Create Constraint On(usn1:`8esn`)Assert Exists(Case $`6esn`[123456789..12][True..{`3esn`}] When 1e1 Contains Count ( * ) Then $`3esn`[..$123456789][..$`1esn`] When $1000 In $1000 In $`3esn` Then {`7esn`}[..{`4esn`}] End.@usn5!)"), - octest_legacy:ct_string("Foreach(_usn3 In 1.0 =~'s_str' =~{`2esn`}| Detach Delete 07 Is Not Null Is Not Null) With Distinct *,$`7esn`['s_str'] Limit Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) Is Not Null Is Not Null Where .e12 In 0.e0 In {12} Foreach(@usn5 In {7}[..12e12][..Count ( * )]| Load Csv With Headers From 0e0 Starts With `2esn` Starts With $`` As `3esn` Fieldterminator \"d_str\" Detach Delete {123456789} Contains $#usn8) Union Match (:#usn7{usn2:{usn1} Ends With $0,#usn8:`5esn` Starts With $`2esn` Starts With $1000})-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(`1esn` :_usn3:_usn3{#usn7:$@usn5 Is Not Null Is Not Null}),`7esn`=((@usn6 {`5esn`:`3esn`[`3esn`..][#usn8..],``:$0[..9e1]})<-[`4esn`?:_usn4|:usn2{_usn4:$usn2[{@usn5}],`2esn`:usn1[`5esn`..$7]}]->({``:$`8esn` =~{1000}})<-[?:`7esn`{`3esn`:{#usn8}[010]}]-(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})) Union All Remove Reduce(`8esn`={`7esn`}[..$@usn5][..$#usn8],`3esn` In {7} Is Null|0.12[$`3esn`..$_usn3][12.0..usn1]).`1esn`,Reduce(`4esn`=$999 Is Not Null,@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7|$`7esn`['s_str']).``?,(@usn5 {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})-[`5esn` *..12{`4esn`:{123456789}[9e12][{0}]}]->(`3esn` :`5esn`)<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`}).#usn7"), - octest_legacy:ct_string("Delete 0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,$12 Starts With $`8esn` Starts With $`1esn`,123456789[_usn4..][{999}..] Union All Merge Allshortestpaths((_usn4 )<-[`3esn`?:`1esn`{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:usn2)<-[`7esn`? *7..12]->(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})) Start `8esn`=Rel:`7esn`(_usn4={12}) Where 0.12 Starts With $`5esn` Starts With 12 Merge `1esn`=((`8esn` )) On Create Set usn1:`4esn`,usn2+=0Xa[2.12],`7esn`:usn1 On Create Set `4esn` =[1000 =~@usn6 =~0x0] Starts With {#usn8:$`7esn` =~{`8esn`} =~$usn1,`7esn`:0xabc[01..{999}][{7}..{`7esn`}]} Starts With `7esn`(Distinct 123.654[`3esn`..])"), - octest_legacy:ct_string("Drop Constraint On()-[@usn6:`3esn`]-()Assert Exists(({``:00 Starts With 0xabc,`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]}).`2esn`)"), - octest_legacy:ct_string("Create ((@usn6 ))"), - octest_legacy:ct_string("Foreach(`5esn` In $`5esn`[..$`5esn`][..$12]| Load Csv With Headers From 0e0[07] As _usn4 Fieldterminator 's_str' Create _usn4=(_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[:`5esn`{usn2:123.654[{7}..]}]->(@usn6 :_usn3:_usn3{`7esn`:$`6esn`[123456789..12][True..{`3esn`}],`5esn`:0X0123456789ABCDEF[123456789]})-[?{usn1:0[`7esn`..]}]->(`2esn` :`6esn`),@usn5=(((:_usn4)<-[:`6esn`|`5esn` *..010]-(`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})<-[`4esn`?:`7esn` *0..{`2esn`:00[`2esn`..12][123456789..0.e0]}]->(`1esn` :_usn3:_usn3)))) Union All Foreach(`` In 010 =~{usn2}| Load Csv With Headers From 0X7[..2.12] As #usn8 Fieldterminator \"d_str\") Start #usn8=Rel:usn1(\"d_str\") ,`2esn`=Node:_usn4(#usn7=\"d_str\")"), - octest_legacy:ct_string("Foreach(`4esn` In {`6esn`}| Create Unique `8esn`=(_usn4 :usn2{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]})) Create Unique (@usn6 :`1esn`)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``}),_usn3=(((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5))) Union With Distinct `5esn`[_usn4..],$123456789 In 0X0123456789ABCDEF In 0.e0 Where 7[True..][2.12..]"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:@usn6)Assert Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789)._usn3 Is Unique"), - octest_legacy:ct_string("Start #usn7=Rel:_usn4(\"d_str\") Where `3esn`[`3esn`..][#usn8..] Unwind 1e1 Contains 0e0 As _usn3 Optional Match @usn6=Shortestpath((((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``})))),Shortestpath(((@usn6 :`8esn`:`7esn`)<-[`6esn`?:`4esn` *..01]->(`3esn` :#usn7{usn2:12.0 =~999 =~$_usn3,@usn6:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?]-(`7esn` :`5esn`))) Where _usn3[_usn3..][12.e12..]"), - octest_legacy:ct_string("Create Unique @usn6=((`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 {`4esn`:$@usn5 Is Not Null,`5esn`:0.e0 Contains 9e1 Contains {`7esn`}})) With Distinct 0e0[..010] As _usn3,Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..]) In Filter(`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null) In Filter(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {#usn8}[.._usn4][..$`3esn`]) As `` Skip {12}[{7}][$123456789] Union Merge `5esn`=(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]->(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[`1esn`?:`8esn` *123456789..]->(#usn7 :`6esn`$1000) On Create Set Extract(`3esn` In {7} Is Null Where $#usn7[@usn5..{1000}][1.e1..7]|$7 Is Not Null Is Not Null).`4esn`! =Case When {``} Starts With $`2esn` Starts With `1esn` Then $`5esn` Starts With $0 Starts With {0} End[None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e1 Is Not Null)..[`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1]],[12[1.e1..{_usn3}][1.e1..1.0]].`8esn`? ={`4esn`:{`4esn`} =~{7} =~{`7esn`},`8esn`:$#usn7[#usn7..]} Is Null Is Null,usn1 =$_usn4 Contains Null Contains #usn8 Load Csv With Headers From 0 In `2esn` In 010 As `1esn` Fieldterminator 's_str' Match ``=(`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}),(#usn8 :@usn6:#usn8) Using Index `7esn`:usn2(`6esn`) Union Create (((`` :#usn7)-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(usn2 :``:#usn8{`5esn`:$#usn8[$`8esn`..{`8esn`}]})-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-({#usn7:{`7esn`} Starts With $123456789 Starts With $@usn6}))),#usn8=(`5esn` :`4esn`)<-[_usn4 *..999]->({@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5}) Optional Match Shortestpath((((:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[`2esn`?{`3esn`:{123456789} Is Null Is Null}]->(usn2 :#usn7)<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) Unwind Reduce(`6esn`=@usn5 Is Null,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{12} Ends With 1.0 Ends With .e0)[Filter(_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null)..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`|`7esn`[..2.12][..00])] As ``"), - octest_legacy:ct_string("Load Csv With Headers From {0}[\"d_str\"..07][0..'s_str'] As @usn5 Fieldterminator \"d_str\" Match _usn3=Allshortestpaths((`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]})) Where {#usn7}[..9e12][..`8esn`] Remove Reduce(_usn4=12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3],#usn7 In {``} Is Not Null|$`8esn`).@usn5,Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {123456789}[0xabc..]|{7}[$``][{@usn6}]).#usn7 Union All Start @usn5=Relationship:@usn5({1000}) Where $_usn4 Starts With 1e1 Unwind $1000 In $1000 In $`3esn` As usn2 Union All Foreach(@usn5 In {7}[..12e12][..Count ( * )]| Load Csv With Headers From 0e0 Starts With `2esn` Starts With $`` As `3esn` Fieldterminator \"d_str\" Detach Delete {123456789} Contains $#usn8) Remove `4esn`(#usn7 =~Count ( * ) =~``).#usn8!,{`4esn`:$`4esn`[Null..],`3esn`:.e12 Ends With _usn4}.`4esn`,[usn1 In @usn5 =~{`5esn`} =~`5esn` Where $0|1.0[0X7][{`5esn`}]]._usn3 Start `8esn`=Rel:`7esn`(_usn4={12}) ,`1esn`=Node:`2esn`(#usn8={123456789})"), - octest_legacy:ct_string("Create Constraint On()-[`1esn`:usn2]-()Assert Exists(Reduce(`7esn`=01 =~{_usn3} =~`3esn`,usn1 In @usn5 =~{`5esn`} =~`5esn`|12e12[$`3esn`]).`3esn`)"), - octest_legacy:ct_string("Remove (_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[? *00]->(@usn5 :usn1)<-[?{`3esn`:7[{0}..{_usn4}]}]-(#usn7 :usn1{_usn4:\"d_str\" Is Null Is Null,usn1:$`3esn` Is Null})._usn4!,Case $#usn8[Count ( * )] When .e1[{`7esn`}..{_usn4}] Then {7} Is Null End.`` Detach Delete $1000 =~$`2esn`,00[Count(*)..] Unwind 1e1 Contains 0e0 As _usn3 Union Unwind $12[..{`2esn`:0.e0 Starts With 12.e12 Starts With {_usn4},`8esn`:$`7esn` Is Null Is Null}] As usn1"), - octest_legacy:ct_string("Create Constraint On(usn1:`2esn`)Assert Single(#usn7 In {``} Is Not Null Where usn1[9e12..][$7..]).`1esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On()<-[usn2:#usn7]-()Assert Exists(Reduce(``={@usn5} Is Null Is Null,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|0[.e0..{`1esn`}]).usn2?)"), - octest_legacy:ct_string("Return Shortestpath(((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})))[#usn7(Distinct $`5esn`[`3esn`..])..{``:0Xa Starts With {`6esn`} Starts With $usn1}] Limit Single(`3esn` In {7} Is Null Where Count ( * ) Contains 07) Contains None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]) Delete 0x0 =~$usn2 Union Start ``=Rel:#usn8(_usn3='s_str') ,`5esn`=Rel:`8esn`({usn1})Where `8esn`[{123456789}..] Return Distinct Filter(`4esn` In $`3esn` Is Not Null Where {`6esn`}) =~{_usn3:{`3esn`} Is Not Null Is Not Null} As `7esn`,.e0[12.e12..] As `3esn`,0e0 =~`6esn` =~123456789 As @usn5 Skip {12} Is Not Null Limit $@usn5 Starts With $1000 Foreach(`2esn` In $@usn5 Starts With {@usn5} Starts With 9e0| Return Distinct 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] Skip $`5esn`[2.12..] Limit {_usn4}[`3esn`][12.0] Create Unique ((({@usn5:0.12[$`3esn`..$_usn3][12.0..usn1]})<-[`5esn`:#usn7 *00{#usn7:{999} Starts With {0}}]-(`8esn` :`4esn`{@usn6:1.0[$`1esn`..][$123456789..]})-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))),Allshortestpaths((@usn6 :_usn3:_usn3)-[?{`3esn`:7[{0}..{_usn4}]}]->(`7esn` :_usn3:_usn3)-[?:usn2|`` *..010{`4esn`:{`4esn`} Starts With $usn2 Starts With $1000,`7esn`:$@usn6 Contains 07}]->(:@usn6:#usn8{`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}))) Union All Load Csv From 9e12[0.0..][$12..] As _usn4 Fieldterminator \"d_str\""), - octest_legacy:ct_string("Load Csv From {#usn8}[$@usn5..usn1][$1000..0xabc] As usn2 "), - octest_legacy:ct_string("Merge ((#usn7 {`5esn`:00 Starts With 0xabc,`6esn`:0Xa =~Null =~$``})) On Match Set Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0).``? ={@usn6}[{999}..][00..] Match #usn7=(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[#usn8]-(:@usn5{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}) Using Index #usn8:`2esn`(`5esn`) Using Index `3esn`:`5esn`(#usn7) Union Unwind Shortestpath((((`7esn` {`5esn`:123.654 Contains $`4esn` Contains 1.0,`8esn`:123.654 =~$usn2 =~{999}})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})<-[`2esn`?:`1esn` *00]->({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})))) In (usn2 :@usn5)-[?{`8esn`:{7} Is Null}]->(`` )<-[`3esn`?:`3esn`|:#usn8]-(`` :#usn8:#usn8) In (@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8}) As ``"), - octest_legacy:ct_string("Unwind $999 Is Not Null As #usn7 Union All Foreach(`7esn` In 1.0[0X0123456789ABCDEF]| Load Csv From $`3esn` In 123.654 In #usn8 As `` Fieldterminator \"d_str\" Create (({@usn5:{usn2}[.e0..$999]})),Allshortestpaths(((:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[?*..$#usn8]-({`8esn`:`3esn`[{0}][usn1]})))) Union All Create Unique `2esn`=((`2esn` :#usn7{`2esn`:$`5esn`[..$`5esn`][..$12]})-[{`7esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4]}]-(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)),`6esn`=Shortestpath(((:usn2{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null}))) With *,Count ( * )[$_usn4..$`4esn`] As _usn4,@usn6[#usn7][#usn8] As `4esn`"), - octest_legacy:ct_string("Return Distinct *,`4esn`[`5esn`..12][@usn6..False],Case 's_str' In 00 When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null When $@usn5 Starts With {0} Starts With 12 Then {usn2} Else {#usn7}[`2esn`..] End As `4esn` Order By 123456789[{123456789}..'s_str'] Descending Limit 9e0 Union All Optional Match `6esn`=Allshortestpaths(((_usn3 :`3esn`:@usn5))) Using Scan `3esn`:`5esn` Using Scan `6esn`:`3esn`"), - octest_legacy:ct_string("Create Constraint On()-[`1esn`:_usn3]-()Assert Exists(Single(#usn8 In {`5esn`}[.e1..``] Where {`1esn`}[12.0..`2esn`][@usn6..{usn1}]).``!)"), - octest_legacy:ct_string("Unwind 07 Contains 0X7 Contains $`8esn` As `6esn` Unwind (:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8)[Reduce(`7esn`=7[$`2esn`..{`5esn`}],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$_usn4[0e0..][False..])..({``:00 Starts With 0xabc,`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})][{}..{@usn6:`4esn`[..010][..{12}]}] As _usn4 Create Unique (`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[`8esn`?:@usn6|`6esn`]-(`2esn` :`6esn`) Union All Create Unique @usn6=Shortestpath(((:@usn6:#usn8{`4esn`:$`8esn`[..00]})<-[_usn4?:_usn4|:usn2 *00]->(:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))),#usn8=Shortestpath((#usn8 :@usn5)) Union Unwind 0.12[`2esn`..{`6esn`}] As `6esn` With Distinct *,1000[0X7..2.12] As `4esn` Limit {7}[$7..$``][{``}..{7}] Where _usn3 Starts With 12.e12 Starts With 0.12 Unwind `7esn`(usn2 Is Null)[Case {usn1}[0X0123456789ABCDEF] When $`` Then `8esn` Contains $usn1 Contains $12 Else 's_str'[00][{`5esn`}] End] As @usn6"), - octest_legacy:ct_string("Load Csv From False =~$7 =~2.12 As `6esn` Union All Unwind Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0X0123456789ABCDEF[123456789])[`7esn`(Distinct Count ( * ) =~$usn2 =~$usn2)] As @usn6 Create ``=(((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))),@usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]})) Union Create @usn6=((`` :`7esn`:_usn3)),((usn2 :`4esn`)-[_usn3:#usn8|`1esn`{_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]}]->(@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:`5esn` *0..{_usn4:7[$`2esn`..{`5esn`}]}]->()) Merge `8esn`=Allshortestpaths((`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))"), - octest_legacy:ct_string("Remove Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0X0123456789ABCDEF =~1e1 =~{`4esn`}|1.0 Contains $_usn4).`5esn`?,Reduce(`5esn`=12[1.e1..{_usn3}][1.e1..1.0],#usn7 In `2esn`[..$#usn8][..Count(*)]|12.e12[7..$`6esn`]).`5esn`!,`4esn`:`6esn` Detach Delete [#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01|{0} Ends With $_usn3 Ends With $`7esn`] Contains Case {0}[12.0..0Xa][$`5esn`..{_usn3}] When .e1 Ends With 1e1 Ends With @usn5 Then 01[{`2esn`}..{@usn6}][$`2esn`..0.0] Else 123.654[...e0] End,9e0[{0}..{`3esn`}][\"d_str\"..0Xa],``[12.0..0e0][{`5esn`}..`7esn`] Union Detach Delete 1.0[00..] Foreach(@usn5 In 0.12 In _usn3 In {0}| Match `2esn`=Allshortestpaths((({`3esn`:.e1[..usn2][..`8esn`]})-[`1esn`?:`6esn`|`5esn`]->(:usn1{``})-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`1esn`{_usn4:{999}}))),#usn7=Shortestpath((((#usn7 :`8esn`:`7esn`{`5esn`:1.0 In Count(*)})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000})))) Where $@usn6 Contains 07) Union Match Allshortestpaths((`1esn` {_usn4:1.e1[$`1esn`..@usn6][$0..$_usn3],#usn8:$@usn5[..12e12][..$123456789]})<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})),usn2=({`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`4esn`:`2esn` *1000..00{#usn8:1.0[0e0..0.e0]}]->(`8esn` :_usn3:_usn3{`4esn`:0.e0 Ends With $#usn7 Ends With $7,`2esn`:0x0 =~$usn2})<-[:`3esn`|:#usn8 *1000..00{usn1:0[`7esn`..]}]-(usn1 :`3esn`:@usn5) Where `4esn`[..Count ( * )][..{#usn7}] Start `7esn`=Rel:_usn4(``={#usn7}) Where 00 Starts With 0xabc Start #usn7=Node:@usn6({_usn4}) "), - octest_legacy:ct_string("Merge ((`3esn` :usn2)) On Match Set _usn3+=$`3esn` Is Not Null Is Not Null,`3esn` ={`4esn`} Ends With {usn2} Ends With {999},{@usn6:{999} Starts With $999,`4esn`:$usn1[{`5esn`}][$`6esn`]}.@usn5? =$usn1[..{`6esn`}] Union All Match `2esn`=({#usn7:2.12 Contains usn2 Contains True})-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})-[:#usn7{`2esn`:.e12 Ends With _usn4}]-(:`6esn`{@usn6:$0[``][{@usn6}],@usn6:0e0 In @usn5}),`7esn`=Allshortestpaths((:@usn5$`5esn`)<-[usn1?:`8esn` *..010]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})<-[ *1000..00{#usn7:Count ( * ) Contains 07}]->(usn1 :`3esn`:@usn5)) Using Scan `3esn`:`2esn` Using Index `6esn`:#usn8(`2esn`) Where 01[{@usn5}]"), - octest_legacy:ct_string("Create Constraint On(`1esn`:_usn4)Assert Exists({@usn5:$_usn3['s_str'][07]}._usn3?)"), - octest_legacy:ct_string("Merge Shortestpath(((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})-[?:`6esn`|`5esn`{`4esn`:`7esn` In {123456789} In `1esn`,_usn3:$_usn4[Count ( * )..]}]-(:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null}))) On Create Set `2esn`+={0} In $_usn3,`8esn` ={#usn8} Is Not Null,`1esn`($1000 Is Null).#usn8? =`5esn` Ends With {``} Ends With 12.e12 Union Create `8esn`=Shortestpath(({`1esn`:`3esn`[{`2esn`}]})-[`3esn`?*{`8esn`:False Is Null Is Null}]->(:#usn7{_usn4:$`8esn` Contains 123456789 Contains $usn2})),@usn6=Allshortestpaths(((@usn5 :`4esn`))) Foreach(usn2 In Reduce(usn1=$123456789 Is Null Is Null,_usn3 In {`3esn`}[`2esn`]|Null[$`5esn`][False])[Case 0e0 Contains Null When 0X7[`7esn`][123.654] Then 1e1[{`3esn`}..{`4esn`}][0Xa..$_usn4] End..][[9e1[$usn2],{`4esn`}[$123456789..][$#usn7..]]..]| Delete Case When {1000}[$`4esn`][\"d_str\"] Then `4esn`[``] When {usn2}[.e0..$999] Then {_usn3}[12.e12] Else `4esn`[``] End[Shortestpath((@usn5 {`7esn`:$`6esn`[010..]})-[?:`8esn`{`3esn`:1.0 In Count(*)}]-(`4esn` :#usn7{``:$#usn7[@usn5..{1000}][1.e1..7]})-[`5esn`?:@usn5{`4esn`:0Xa =~Null =~$``}]->(:#usn7{usn2:{usn1} Ends With $0,#usn8:`5esn` Starts With $`2esn` Starts With $1000}))..],$`4esn`[Null..],Case 0x0[`4esn`..'s_str'] When 0.e0 Ends With $#usn7 Ends With $7 Then 0X7[..2.12] When {123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4] Then 0.e0[123.654][01] Else {_usn3}[..$12][..0.12] End[[`1esn`[..{@usn6}][..$123456789]]..] Load Csv From 1e1 Contains Count ( * ) As usn2 Fieldterminator \"d_str\")"), - octest_legacy:ct_string("Drop Constraint On(``:_usn3)Assert Exists(Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where \"d_str\" Starts With 01|7[True..][2.12..])._usn4)"), - octest_legacy:ct_string("Drop Constraint On(_usn4:`3esn`)Assert {_usn4:True[07..$usn2][$7..{usn1}]}.``? Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn5:`3esn`)Assert Exists(Filter(`2esn` In `1esn` =~\"d_str\" Where 0.12 In _usn3 In {0})._usn3!)"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:`8esn`)Assert (usn1 )-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}).`4esn`! Is Unique"), - octest_legacy:ct_string("Unwind 2.12 Contains usn2 Contains True As `4esn` With Distinct Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn`,{``}[$#usn8..$usn1] As @usn6,None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`]) Is Not Null Order By $0[..9e1] Descending,{usn1}[Count(*)..] Desc Skip (`3esn` :@usn5{`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})-[:`6esn`|`5esn`{`8esn`:$0 Ends With 12.0}]->(`5esn` {`4esn`:7[$`2esn`..{`5esn`}],@usn6:{7} Is Null}) Contains Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) Contains Case 9e12 Is Not Null Is Not Null When 0[..usn2][..{@usn5}] Then 0e0 Ends With 1.e1 Ends With $`4esn` Else usn1 Is Null End Where $`5esn` In $`6esn` Load Csv With Headers From {0}[\"d_str\"..07][0..'s_str'] As @usn5 Fieldterminator \"d_str\""), - octest_legacy:ct_string("With Distinct *,07[$#usn7..{1000}],0X0123456789ABCDEF =~1e1 =~{`4esn`} Order By $`5esn`[2.12..] Asc Where @usn5 Is Null Create ((:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})),#usn7=((:`5esn`{``:1.0[0e0..0.e0]})) Union All Start @usn5=Rel:#usn8({_usn3}) Where $`6esn` Is Null Detach Delete ({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}),`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) In [#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]|@usn6 Contains $1000 Contains {`7esn`}] In Filter(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]),usn2[{7}] Create @usn5=Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})))"), - octest_legacy:ct_string("Drop Constraint On(``:@usn5)Assert {usn1:12 Ends With 0x0 Ends With 0.e0}._usn3? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(_usn4:_usn4)Assert Exists({`2esn`:usn2[{7}],`2esn`:0e0 Ends With 1.e1 Ends With $`4esn`}.`4esn`?)"), - octest_legacy:ct_string("With 123.654 Is Not Null,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where False|{`1esn`}[12.0..`2esn`][@usn6..{usn1}]] =~Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 00[{`8esn`}..][{`8esn`}..]|{0}) =~{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}} Where $@usn5 Starts With $1000 Create Unique `3esn`=Shortestpath((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))"), - octest_legacy:ct_string("Unwind {0} In $_usn3 As `3esn`"), - octest_legacy:ct_string("Load Csv From Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End[[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]]..Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})))] As usn1 Fieldterminator 's_str' Remove Reduce(usn2=$_usn4[0e0..][False..],`8esn` In 01[2.12..`8esn`]|usn1[9e12..][$7..]).`2esn`,({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)._usn4? Match `8esn`=(((usn2 :#usn7)<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[`7esn`:`1esn` *0X0123456789ABCDEF{`6esn`:1000[..$0][..True],_usn4:Count ( * ) Ends With $@usn5}]->(`4esn` {usn2:0x0 Is Null,`5esn`:{usn2} =~12}))),((_usn3 :`7esn`:_usn3)-[]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})) Union All Create Unique @usn5=(((@usn6 :`1esn`{_usn4:#usn7 =~Count ( * ) =~``,`6esn`:#usn8[#usn8..]})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``})))"), - octest_legacy:ct_string("Create Constraint On(`2esn`:`2esn`)Assert $123456789._usn3! Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[@usn6:_usn4]-()Assert Exists(`8esn`(`4esn`[..Count ( * )][..{#usn7}],{``}[...e12]).``)"), - octest_legacy:ct_string("Create Constraint On(`8esn`:#usn8)Assert `8esn`(Distinct `8esn` =~0xabc =~010).@usn5 Is Unique"), - octest_legacy:ct_string("Merge @usn6=Allshortestpaths(((:`1esn`))) On Match Set All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where $_usn4 Ends With usn1 Ends With $0).@usn5? =Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End,Reduce(`8esn`={usn1} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|0xabc[.e0]).`3esn`! =Reduce(`3esn`=12.0[123.654][Count(*)],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|`1esn` =~\"d_str\")[..Case When $`` Is Not Null Then 12[1.e1..{_usn3}][1.e1..1.0] When 7[True..][2.12..] Then $_usn4 Is Not Null Is Not Null End][..Case When $#usn8[$`2esn`..][{`2esn`}..] Then 0X7[1000..{`1esn`}] When {#usn8}[{7}] Then 07 In `2esn` In 12e12 Else $`1esn` Ends With 9e1 Ends With $123456789 End],`3esn` =12.e12[0xabc]"), - octest_legacy:ct_string("Create Unique @usn6=((_usn3 {`3esn`:010[#usn7..True],``:usn1 Ends With $@usn6 Ends With `3esn`})<-[_usn4{`8esn`:usn1 Is Null Is Null,@usn5:@usn6 Is Null Is Null}]-(_usn4 :_usn4{#usn7:12[1.e1..{_usn3}][1.e1..1.0],_usn4:Null[$`5esn`][False]}))"), - octest_legacy:ct_string("Start _usn4=Rel:#usn8(\"d_str\") ,#usn7=Relationship:`7esn`('s_str') Union Start ``=Rel:#usn8(_usn3='s_str') ,`7esn`=Rel:`6esn`(\"d_str\")Where 0[..usn2][..{@usn5}] Delete $#usn7[..{`5esn`}][..9e12],{``}[$`8esn`..],Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6}"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From None(#usn8 In 7[..999][..{#usn8}] Where 2.12['s_str'..$12][{`1esn`}..`2esn`])[[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 12e12 Ends With {usn1}]][[$12 Ends With 07 Ends With $123456789,$@usn5 =~1000 =~1000,.e12[@usn5..$12]]] As `2esn` "), - octest_legacy:ct_string("Start @usn5=Relationship:``(\"d_str\") Union With Distinct *,$`3esn`[0.12..`8esn`][$#usn7..`5esn`],`3esn`[..010][..$7] As usn1 Order By (:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7}) Starts With Case When `6esn`[12..$usn2][{#usn8}..{usn2}] Then {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] When .e12[@usn5..#usn7][010..{usn1}] Then 0.12 =~$0 =~$0 End Desc,({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}) In Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where 07 In `2esn` In 12e12) Descending,$12 Is Not Null Is Not Null Ascending Limit 123.654[0e0..$``][$`1esn`..$`8esn`] Remove Reduce(``=00[`2esn`..12][123456789..0.e0],_usn3 In {`3esn`}[`2esn`]|{#usn8} Is Null).`7esn`?"), - octest_legacy:ct_string("Create Constraint On(`3esn`:#usn7)Assert {@usn5}.usn1? Is Unique"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From 12.0 In {`2esn`} As #usn8 Create usn1=Allshortestpaths((`` {@usn6:1.0[$`1esn`..][$123456789..]})-[`7esn`*]->(`7esn` {`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})-[@usn6]-(`5esn` {`4esn`:01 Is Null})) Unwind Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6} As `4esn`"), - octest_legacy:ct_string("Create Constraint On()<-[@usn5:`4esn`]-()Assert Exists(Extract(`5esn` In $999[0.0..] Where {999}|9e1[$usn2]).usn1)"), - octest_legacy:ct_string("Remove Extract(#usn7 In {``} Is Not Null Where True[..$`6esn`]|{``} Is Null).`8esn`!,Case $123456789 Ends With {`1esn`} Ends With $`4esn` When {1000}[$`4esn`][\"d_str\"] Then usn1 Ends With $@usn6 Ends With `3esn` When $#usn7[..{`5esn`}][..9e12] Then {usn2}[$`3esn`..][{#usn7}..] Else Null[{#usn7}..][0X0123456789ABCDEF..] End.@usn6!,Reduce(@usn5=$12[$1000..123456789],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|`4esn` Is Not Null Is Not Null).`5esn` Remove #usn8(Distinct $`4esn`[Null..],2.12 =~False).@usn5,[$`3esn` In $_usn4 In {_usn3},{1000} =~0 =~123.654].`3esn` With Distinct *,`1esn`(Distinct $1000[999]) =~Reduce(`5esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|@usn6 Starts With `6esn` Starts With $`1esn`) =~{`6esn`:'s_str'[00][{`5esn`}]},{_usn3:`1esn` Contains {usn2} Contains $#usn8} =~Case When 0X7[0e0..`7esn`][1000..0e0] Then 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Else usn1 In 7 In {123456789} End =~[{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] As `` Order By {0}[{`8esn`}..`4esn`] Desc,Case When Count ( * ) Contains 07 Then $`2esn` When 1.0 Is Null Is Null Then `7esn`[..2.12][..{usn1}] End Is Not Null Desc Limit $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Union All Create Unique Allshortestpaths((({`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})<-[?*..]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})))"), - octest_legacy:ct_string("Drop Constraint On(@usn6:#usn8)Assert Exists(exists(Distinct 0X7[..2.12],07 =~01).`3esn`)"), - octest_legacy:ct_string("Optional Match Shortestpath((({`5esn`:$#usn8 Ends With $`2esn` Ends With $@usn6})<-[`4esn`?:usn2|`` *0X7..]->({_usn3:$`5esn`[`3esn`..]})-[@usn5?:`4esn`]-(:usn1{usn1:{`6esn`}}))) Create Unique @usn5=((`5esn` {`8esn`:1000[Null..{123456789}]})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})-[:@usn6|`6esn`{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}]->(:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})),`4esn`=Allshortestpaths(((:`2esn`:usn1)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]-(@usn6 {#usn7:2.12 Contains usn2 Contains True})<-[usn1:@usn6|`6esn`{`6esn`:{1000}[$`4esn`][\"d_str\"]}]->({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})))"), - octest_legacy:ct_string("Create Shortestpath((((:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[`2esn`?{`3esn`:{123456789} Is Null Is Null}]->(usn2 :#usn7)<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) With @usn6[$`3esn`..{`3esn`}] As `3esn`,`6esn`() In {#usn7:0X0123456789ABCDEF =~1e1 =~{`4esn`},`2esn`:1.0 =~'s_str' =~{`2esn`}} In usn1() Skip $`4esn` Is Null Is Null Unwind All(`3esn` In {7} Is Null Where Count ( * ) Contains 07) Is Null Is Null As `2esn` Union All Foreach(@usn5 In `5esn` Starts With 010 Starts With 0.0| Create Shortestpath((:`4esn`{``:2.12 Is Not Null Is Not Null})),Allshortestpaths((({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[`3esn`? *123456789..]->({_usn3:$`5esn`[`3esn`..]}))) Optional Match ``=Shortestpath((`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})),Allshortestpaths(((:_usn4)))) Start usn1=Node:`2esn`({`1esn`}) "), - octest_legacy:ct_string("Optional Match #usn7=((`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null})-[_usn4 *0X7..]->(`8esn` :#usn8:#usn8{`3esn`:$`4esn`[9e12..123.654]})) Using Index #usn8:`2esn`(`5esn`) Where $`8esn`[..{`2esn`}] Foreach(`3esn` In Allshortestpaths(((_usn4 :`8esn`:`7esn`{`4esn`:{`2esn`} Is Not Null Is Not Null,`1esn`:.e1 =~$`8esn`})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2})))| Load Csv With Headers From 01 Contains {`8esn`} Contains 2.12 As usn1 Fieldterminator \"d_str\" Unwind .e0[..$`8esn`] As usn2) Union All Remove _usn4(Distinct `` Ends With $1000,$`5esn`[{`3esn`}]).`7esn`,`6esn`:usn2 Optional Match Shortestpath((((:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})-[`2esn`?{`3esn`:{123456789} Is Null Is Null}]->(usn2 :#usn7)<-[usn2?:`6esn`|`5esn`{_usn3:{#usn7}[`2esn`..]}]->({`1esn`:{`2esn`} Ends With {`7esn`}})))),`2esn`=((`6esn` :#usn7)<-[?:@usn5{``:{`2esn`} Ends With {`7esn`}}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]})-[?:`4esn` *1000..00{_usn4:7 Starts With {@usn6} Starts With $``,`2esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]-(:`5esn`{#usn7:{123456789} Contains $#usn8})) Using Join On ``,`6esn`,usn2 Using Scan ``:`7esn` Where $999[0.0..] Union Load Csv From {`4esn`}[$0..] As `6esn` Fieldterminator \"d_str\" Create Unique Allshortestpaths((`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})),({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`) Remove [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`|`4esn`[`5esn`..12][@usn6..False]].#usn7?,`6esn`(Distinct False Starts With {`5esn`}).`2esn`?,Extract(`3esn` In {7} Is Null Where $#usn7[@usn5..{1000}][1.e1..7]|1.0 =~7 =~{usn2}).usn2!"), - octest_legacy:ct_string("Load Csv With Headers From 0Xa[..{`4esn`}][..12.0] As `7esn` Fieldterminator \"d_str\" Delete {@usn6:$_usn3[..1000]} Is Null Is Null"), - octest_legacy:ct_string("Drop Constraint On()<-[`4esn`:@usn6]-()Assert Exists(Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {`4esn`} Starts With $usn2 Starts With $1000).`7esn`)"), - octest_legacy:ct_string("Merge `4esn`=Shortestpath((:`3esn`:@usn5{`2esn`:{`3esn`}[..07][..{`5esn`}]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})) On Match Set #usn8:usn2,usn1 =Reduce(`2esn`=1e1 In 123.654 In `3esn`,`5esn` In \"d_str\" Is Null Is Null|$_usn3[{#usn7}]) Is Not Null,`6esn` =0.e0 Starts With `2esn` Return `` Is Not Null Is Not Null,$_usn3 Ends With 0x0 Ends With 12.0,$_usn3[.e0..$usn2] Order By Single(_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..])[..All(`` In `` Is Not Null Is Not Null Where {`7esn`} Is Null)] Ascending Limit {`4esn`} Ends With {123456789} Ends With $`4esn` Union Load Csv From `3esn`[{0}][usn1] As #usn7 Fieldterminator \"d_str\" Create ({`8esn`:`3esn`[{0}][usn1]})-[_usn4?:_usn4|:usn2 *00]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``})<-[ *0X7..]-(`2esn` {_usn3:`1esn` Contains {usn2} Contains $#usn8}),(#usn8 :@usn6:#usn8) Remove [0.12 =~$0 =~$0,2.12 Contains usn2 Contains True,2.12].`4esn`"), - octest_legacy:ct_string("Delete _usn3[..`8esn`][..2.12],None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 7[..999][..{#usn8}]) Is Not Null,0.e0 Starts With 12.e12 Starts With {_usn4} Return *,Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End Is Null Is Null,$`5esn`[$`4esn`..{@usn6}][07..$@usn6] Order By {`1esn`:{@usn6}[{999}..][00..]}[..`5esn`][..{#usn8:{`7esn`}[`6esn`][#usn7],`5esn`:$`4esn`[9e12..123.654]}] Ascending Skip [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `4esn` Ends With 07 Ends With {`3esn`}|@usn5 Is Null] Is Null Is Null Match Allshortestpaths((@usn5 {`7esn`:$`6esn`[010..],#usn8:0.e0 Starts With `2esn`})-[@usn5]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})) Using Join On `2esn` Where $1000 In $1000 In $`3esn`"), - octest_legacy:ct_string("Create Constraint On(@usn5:`1esn`)Assert Any(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where $0[``][{@usn6}]).`7esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[#usn8:``]-()Assert Exists(Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`6esn`}|{7}[..1.0][..9e0]).`7esn`)"), - octest_legacy:ct_string("Drop Constraint On()<-[#usn8:usn2]-()Assert Exists({@usn6:{999} Starts With $999,`4esn`:$usn1[{`5esn`}][$`6esn`]}.@usn5?)"), - octest_legacy:ct_string("Unwind 0X7[1000..{`1esn`}] As `4esn` Return Distinct `4esn` =~$`5esn`,$`1esn` Starts With {`8esn`} As _usn3,None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`])[Any(`3esn` In {7} Is Null Where {`4esn`} =~{7} =~{`7esn`})..][Extract(`2esn` In `1esn` =~\"d_str\" Where $_usn4[1.e1]['s_str']|usn1[`5esn`..$7])..] As `7esn` Skip [`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where False|{`1esn`}[12.0..`2esn`][@usn6..{usn1}]] =~Extract(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 00[{`8esn`}..][{`8esn`}..]|{0}) =~{_usn4:@usn6 Ends With {_usn3},`5esn`:$#usn8 Contains $`1esn` Contains {`6esn`}} Start `7esn`=Relationship:`3esn`(`6esn`='s_str') Where 0Xa =~123456789 =~_usn4 Union Unwind $`5esn` In 0.e0 As @usn6 Return Distinct 1000[..$0][..True] As `3esn`,`7esn` In {123456789} In `1esn` Skip 7[$_usn4..9e0] Union Optional Match ((:@usn5{#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})-[?:usn2|`` *0..{usn2:{12} Is Not Null,`6esn`:``[$`2esn`]}]-(`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})),(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07}) Using Join On @usn6 With Distinct *,$123456789[_usn3][{#usn7}] As `4esn`,All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {123456789} Contains $#usn8) Is Not Null Is Not Null Limit True Contains {0} Contains 7 Where {12} =~#usn8 With Distinct $`` As #usn8,None(`3esn` In {7} Is Null Where 0Xa[2.12]) Is Null Is Null As #usn7 Order By Count ( * ) Contains {`1esn`} Contains 07 Ascending Limit @usn6(Distinct 0X7[1000..{`1esn`}],True[07..$usn2][$7..{usn1}])[Reduce(`4esn`=0.0[$0][{@usn5}],`4esn` In $`3esn` Is Not Null|$`5esn`[`3esn`..])][Case When 123.654[0e0..$``][$`1esn`..$`8esn`] Then $_usn3['s_str'][07] When {`3esn`}[..07][..{`5esn`}] Then 's_str' Is Not Null Is Not Null End] Where {`4esn`} =~{7} =~{`7esn`}"), - octest_legacy:ct_string("Create Constraint On(`1esn`:`5esn`)Assert (:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})<-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]-(`7esn` :`5esn`{`3esn`:`7esn` Is Null}).#usn8! Is Unique"), - octest_legacy:ct_string("Return usn1[..@usn6][...e0],usn1 Is Not Null As `6esn`,False[_usn3..`8esn`][$`8esn`..{`3esn`}] As _usn3 Order By Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End[[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]]..Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})))] Ascending,All(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Contains (`5esn` :_usn4{`5esn`:07[..True][..9e12]})-[`8esn`?:`2esn`{@usn6:{12}[..0X7]}]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]})<-[_usn4{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00}) Contains [0.12[$`3esn`..$_usn3][12.0..usn1]] Ascending Union Start usn1=Relationship:`3esn`(`6esn`='s_str') ,_usn3=Node:`6esn`('s_str')"), - octest_legacy:ct_string("Create `6esn`=((`8esn` )<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})),(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}) Union All Remove {`5esn`:{12}[..0X7],#usn8:$1000 In $1000 In $`3esn`}.#usn7?,Case 0Xa[2.12] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] Else $1000[0Xa][{#usn7}] End.`1esn`,[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0.0 In $usn1|{#usn8}[{7}]].#usn8? Load Csv From usn1 Is Null As @usn5 Fieldterminator 's_str' Merge @usn6=(_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5}) On Match Set `6esn`+=Extract(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``|usn2[9e12]) Ends With [{`7esn`}[..{`4esn`}]] Ends With Filter(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`4esn`} Starts With $usn2 Starts With $1000),`3esn`+=123456789[0xabc..'s_str'][``..`1esn`],_usn3 ={usn1}[0X0123456789ABCDEF] On Create Set [_usn3[_usn3..][12.e12..]].`8esn`! =Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where .e0 Starts With 0 Starts With 0.e0) Is Null Is Null,{`3esn`:$`4esn`[9e12..123.654]}.#usn8 =Filter(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8])[{`4esn`:Null In $7 In .e1,_usn3:usn2 Is Null}..Case _usn3[$`8esn`] When {0} In $_usn3 Then 01[{`2esn`}..{@usn6}][$`2esn`..0.0] Else $7 Is Not Null Is Not Null End] Union All Load Csv From 0.0 In $usn1 As `2esn` Remove Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`]).usn1!,`7esn`(Distinct $`6esn`[123456789..12][True..{`3esn`}],7 =~{`8esn`} =~$`6esn`).`1esn`?,Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`1esn` Ends With 9e1 Ends With $123456789)._usn3"), - octest_legacy:ct_string("Optional Match _usn4=Allshortestpaths((:_usn4{usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[ *..01]->({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})) Using Scan usn1:_usn3 Using Scan `1esn`:`3esn` Where 7[$`2esn`..{`5esn`}] Union All Create (((:`4esn`{`5esn`})-[`7esn`?:`4esn`{_usn3:Count ( * )[True..][{#usn7}..],_usn4:$`7esn`['s_str']}]-(#usn7 :#usn8:#usn8{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[`6esn`?:`1esn` *0X7..]->(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null}))) Load Csv With Headers From #usn8 Is Not Null Is Not Null As _usn4 Load Csv From 0Xa Starts With `7esn` Starts With $`1esn` As `7esn` Fieldterminator \"d_str\""), - octest_legacy:ct_string("Drop Constraint On(`7esn`:_usn4)Assert Exists((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})<-[?:`7esn`{`3esn`:{#usn8}[010]}]-(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]}).@usn5!)"), - octest_legacy:ct_string("Drop Constraint On()-[_usn3:@usn6]-()Assert Exists(Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`2esn`} Is Not Null).`3esn`)"), - octest_legacy:ct_string("Create Constraint On(usn2:``)Assert Exists(()<-[`1esn`?:`8esn` *123456789..]->(:`1esn`{@usn6:$usn1 Ends With $`` Ends With $12})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`).usn2!)"), - octest_legacy:ct_string("Create `7esn`=(@usn6 :`6esn`)-[`6esn`?:#usn7]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}) Union Delete All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {_usn4} Is Not Null Is Not Null) Is Null With {`5esn`} =~`4esn` =~{_usn4} As `4esn`,Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]) =~Reduce(usn1=.e1 Ends With 1e1 Ends With @usn5,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$#usn7[#usn7..]) =~`1esn`($1000 Is Null) As @usn6,07 =~01 Order By `5esn`[_usn4..] Desc Skip `8esn`[{123456789}..] Start `5esn`=Node:`7esn`('s_str') ,usn1=Node:#usn8({``})"), - octest_legacy:ct_string("Return {7}[$``][{@usn6}] As `2esn` Order By {`4esn`:{`4esn`} =~{7} =~{`7esn`},`8esn`:$#usn7[#usn7..]} Is Null Is Null Desc,{123456789}[9e12][{0}] Ascending,$_usn3['s_str'][07] Ascending Skip [usn2[$_usn4..][True..],1.0 In Count(*)] =~Any(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 12.0[123.654][Count(*)]) =~Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where usn2 Is Not Null Is Not Null) Create (({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})),Shortestpath(((`` :@usn6:#usn8{`8esn`:'s_str' In 00})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-({#usn8:0xabc[.e0]}))) Return {usn2:0X0123456789ABCDEF[123456789]}[[0e0 Starts With 1000 Starts With #usn7,True =~010,$usn2[{@usn5}]]..],1000[..$0][..True],[$0] In [`2esn` In `1esn` =~\"d_str\" Where {0} Ends With $_usn3 Ends With $`7esn`|{999} Contains .e0 Contains 12.0] In None(`2esn` In `1esn` =~\"d_str\" Where {`7esn`}[..$@usn5][..$#usn8]) As usn1 Limit $#usn8[Count ( * )] Union All Merge usn2=((@usn6 :_usn4)) With Distinct #usn8 In $@usn6,1.e1[`8esn`][00] Where 0.e0 Starts With `2esn` Return *,({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}),`1esn`[..{`2esn`}][..$_usn4] As #usn7 Order By [Count(*) Ends With 12.0 Ends With 12,9e0[{0}..{`3esn`}][\"d_str\"..0Xa]][..Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where Null[``])][..{usn1:$_usn3[..1000],`7esn`:{1000} =~0 =~123.654}] Asc,count(`1esn` Contains {usn2} Contains $#usn8) Contains [`5esn`[7][{usn2}],@usn5 Is Null] Descending,(:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})-[?:`5esn`]->(:usn2)<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`6esn` :@usn6:#usn8)[Reduce(`7esn`=7[$`2esn`..{`5esn`}],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$_usn4[0e0..][False..])..({``:00 Starts With 0xabc,`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})][{}..{@usn6:`4esn`[..010][..{12}]}] Descending Skip [@usn6 Contains Null Contains $`7esn`,{`4esn`} Starts With $usn2 Starts With $1000] Ends With Any(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $_usn4[0e0..][False..]) Ends With (`1esn` :`2esn`:usn1)-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(`1esn` :_usn3:_usn3{#usn7:$@usn5 Is Not Null Is Not Null}) Limit .e12[..`7esn`][..0Xa]"), - octest_legacy:ct_string("Create Constraint On(`3esn`:@usn6)Assert {`6esn`:0.e0 Ends With $#usn7 Ends With $7}.`5esn`? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`5esn`:_usn3)Assert Exists(`5esn`(Distinct Count ( * )[0.12...e1]).usn1)"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:`6esn`)Assert Exists((:usn2{`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2})._usn4?)"), - octest_legacy:ct_string("With *,usn2 Ends With 12.e12 As usn1,{`4esn`:`7esn` Is Null}[{`8esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4]}..] As #usn8 Limit `1esn`(Distinct $@usn5[..12e12][..$123456789],{#usn7} Is Not Null Is Not Null)[{`7esn`:\"d_str\" Starts With $123456789}..] Where $`1esn`[1.0..][_usn3..] With {``} Is Not Null As #usn7,{#usn7}[`2esn`..],Count ( * ) Contains {`1esn`} Contains 07 Order By `8esn` Is Not Null Is Not Null Desc Limit $123456789[_usn3][{#usn7}] Where Count ( * ) Ends With 12.0 Detach Delete Extract(`2esn` In `1esn` =~\"d_str\" Where usn2[9e12]|#usn7 Starts With {#usn7} Starts With `7esn`)[..(:#usn8:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})<-[_usn4?:`` *0X0123456789ABCDEF{`5esn`:$123456789 Is Null Is Null,@usn6:{12} Ends With 1.0 Ends With .e0}]->(:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null})<-[usn1?:`8esn` *..12{``:{``} Starts With $`2esn` Starts With `1esn`}]->(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})][..Extract(`3esn` In {7} Is Null Where usn1 Is Null Is Null|12.0)],1.0 Starts With 12e12 Starts With {`5esn`} Union Remove `2esn`($`6esn`[123456789..12][True..{`3esn`}],$`5esn`[`3esn`..]).``! Merge Shortestpath((:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})<-[usn1?:`7esn`]-(:usn1{usn1:{`6esn`}})<-[`4esn`?:`7esn` *..0x0{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}}]->(_usn3 :#usn7)) Union All Load Csv With Headers From `1esn` =~\"d_str\" As @usn6 Fieldterminator \"d_str\" Create Unique Allshortestpaths(({_usn3:{_usn4} Is Not Null Is Not Null})),(({_usn3:{_usn4} Is Not Null Is Not Null})) Load Csv From 0Xa Is Null Is Null As _usn3 "), - octest_legacy:ct_string("Create Constraint On(``:usn2)Assert Exists(Any(`5esn` In \"d_str\" Is Null Is Null Where 00[$`7esn`]).`5esn`)"), - octest_legacy:ct_string("Create `6esn`=Allshortestpaths((#usn8 :@usn6:#usn8)) With 0.e0 Starts With 12.e12 Starts With {_usn4} As _usn3,0e0 =~`6esn` =~123456789,`1esn`($123456789 Starts With 9e0 Starts With 's_str',{usn2}[.e0..$999])[{usn2:{`3esn`} In 0X7,_usn3:7 Starts With {@usn6} Starts With $``}..Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {usn1} In 2.12 In 1000)][Case 0[`7esn`..] When 123456789 Is Null Then .e12 Is Not Null Is Not Null Else $@usn5 =~1000 =~1000 End..[`4esn` In $`3esn` Is Not Null Where `8esn`[{123456789}..]|{`3esn`}[`2esn`]]] Order By `5esn`[_usn4..] Ascending Where $`1esn` Ends With 9e1 Ends With $123456789 Union Delete Extract(_usn3 In {`3esn`}[`2esn`] Where _usn3 Contains $123456789 Contains ``)[Extract(`5esn` In \"d_str\" Is Null Is Null Where 00[$`7esn`]|$`6esn` Is Null)]"), - octest_legacy:ct_string("Start _usn3=Relationship:`8esn`({`1esn`}) ,`6esn`=Relationship:`2esn`({0}) With Distinct *,'s_str'[$_usn3..][Count ( * )..] As #usn7 Limit {_usn3}[12.e12] Where 0e0 Starts With 2.12 Starts With $12 Load Csv From {_usn3}[..\"d_str\"] As `3esn` "), - octest_legacy:ct_string("Merge `1esn`=(`` {@usn6:1.0[$`1esn`..][$123456789..]})<-[?{usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null}]-(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null}) On Match Set usn1(Distinct 01 Ends With 999 Ends With {`7esn`},$_usn4 Ends With usn1 Ends With $0).`2esn`! =Single(`5esn` In \"d_str\" Is Null Is Null Where {1000} =~0 =~123.654)[None(`5esn` In \"d_str\" Is Null Is Null Where 12.e12 Starts With {999} Starts With {`1esn`})..None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where usn1 Ends With $@usn6 Ends With `3esn`)] On Match Set Allshortestpaths((#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})).`6esn` =_usn4 Contains 0e0,`3esn` =2.12 Is Not Null Is Not Null,Extract(`3esn` In {7} Is Null Where `1esn` =~0 =~$#usn7|{`3esn`} In 01).`5esn`! ={1000}[_usn3][$123456789] Union Foreach(`2esn` In $999 Is Not Null| Start `3esn`=Node:_usn4(`6esn`='s_str') Create Unique `6esn`=Shortestpath((({#usn8:1.0 Is Null Is Null,`4esn`:{usn2}[.e0..$999]})<-[_usn4?:`` *0X0123456789ABCDEF{`5esn`:$123456789 Is Null Is Null,@usn6:{12} Ends With 1.0 Ends With .e0}]->(:`5esn`{`1esn`:{999}[1000..{usn2}],`8esn`:{#usn7} Is Not Null Is Not Null})<-[``?:#usn8|`1esn`{#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1}]->({@usn5:12e12 Contains 0Xa,_usn4:01[2.12..`8esn`]}))),((@usn5 :`7esn`:_usn3)))"), - octest_legacy:ct_string("Drop Constraint On(`8esn`:@usn6)Assert Exists(Case When 0.12[`2esn`..{`6esn`}] Then 7[{0}..{_usn4}] When $@usn5 Starts With {0} Starts With 12 Then `` Ends With 123456789 Ends With 123.654 Else $`8esn`[$`6esn`..$`4esn`][0.12.._usn3] End._usn3?)"), - octest_legacy:ct_string("Merge `4esn`=((usn2 )-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-(`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})) On Create Set [{#usn8}[010]].`8esn`! =`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) In [#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]|@usn6 Contains $1000 Contains {`7esn`}] In Filter(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]),`2esn`+=9e1[1000][{123456789}] On Create Set Shortestpath(((`4esn` {`6esn`:#usn8[..{#usn7}]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[`6esn`?:_usn4|:usn2]-(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]}))).`4esn`? ={#usn8} Starts With 00 Starts With {`6esn`} Create (((#usn7 :`8esn`:`7esn`{`5esn`:1.0 In Count(*)})-[`1esn`?{`3esn`:$`6esn`[12],`3esn`:usn2 Is Not Null Is Not Null}]->(:`2esn`:usn1{usn2:{`7esn`}[..{`4esn`}],_usn3:{_usn3}[..\"d_str\"]})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000}))) Create @usn5=(:`4esn`{`5esn`})-[#usn8?:#usn8|`1esn`{``}]->(_usn4 :``:#usn8{#usn7}) Union Start `2esn`=Node:usn1(`6esn`={7}) "), - octest_legacy:ct_string("Create Constraint On(@usn5:`2esn`)Assert Exists(Filter(`` In `` Is Not Null Is Not Null Where 1.0 In Count(*)).@usn5?)"), - octest_legacy:ct_string("Create Constraint On(`3esn`:#usn8)Assert Exists(`2esn`(Distinct 01234567[usn2..$12][{`7esn`}..$usn2]).#usn7?)"), - octest_legacy:ct_string("Load Csv With Headers From usn2[{7}] As @usn6 Fieldterminator \"d_str\" Union Return Distinct *,_usn4(Count(*) In $12) In Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $123456789 =~{`6esn`} =~\"d_str\"|01 Ends With 999 Ends With {`7esn`}),$`` Ends With 0.0 Ends With {1000} Union Merge `8esn`=(_usn4 :usn2{`1esn`:$7[0.12][usn1],@usn6:$12[$1000..123456789]}) On Match Set #usn8+=`2esn`(Distinct $``,7 Starts With {@usn6} Starts With $``) Contains {@usn6:_usn3[$`8esn`],usn1:$@usn5 Is Not Null} Contains {@usn5:`8esn`[{123456789}..]},({#usn8:$`8esn`[1000..0Xa],#usn7:12.0})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(#usn7 :#usn8:#usn8{@usn5:01[{`2esn`}..{@usn6}][$`2esn`..0.0]})<-[_usn4? *..999{_usn4:usn1 Is Not Null}]-(@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null}).@usn6? =01[{@usn5}]"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:`4esn`)Assert Reduce(`7esn`=False[..``],#usn8 In {`5esn`}[.e1..``]|$`` Starts With $1000 Starts With False).``? Is Unique"), - octest_legacy:ct_string("Create Unique Allshortestpaths((:_usn4{usn2:0.0 Ends With 010 Ends With 1.e1})<-[@usn6:_usn4|:usn2]->(:`7esn`:_usn3{@usn5:.e0 Starts With 0 Starts With 0.e0,usn2:Count ( * ) Contains 07})-[`3esn`?:@usn5]->(usn1 {`8esn`:False Is Null Is Null})),Allshortestpaths((:`3esn`:@usn5{#usn8:$`7esn` Is Null Is Null})<-[#usn7{`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]}]-({#usn8:True[..$`6esn`]})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(#usn8 :`5esn`{`6esn`:2.12 Contains usn2 Contains True,`4esn`:{@usn5} Is Null Is Null})) Return 12.0 Ends With True Ends With 123456789 As #usn7 Order By {_usn3}[12.e12] Descending Skip 0X7[{@usn6}] Limit 1e1 Contains Count ( * ) Create ({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2})<-[usn2?:@usn5{`4esn`:{`7esn`} Is Null,_usn4:$123456789 Ends With {`1esn`} Ends With $`4esn`}]->(`6esn` {`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null})-[usn1? *0X0123456789ABCDEF]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}),`5esn`=(({_usn3:$`5esn`[`3esn`..]})-[? *..07{`4esn`:@usn5 =~{`5esn`} =~`5esn`}]->(_usn3 :usn2{#usn7:{999} Starts With {0}}))"), - octest_legacy:ct_string("Delete 1e1 In \"d_str\" In `7esn` Union Foreach(`2esn` In $`5esn`[2.12..{_usn3}][_usn3..{1000}]| Unwind 0.12[`2esn`..{`6esn`}] As usn2) Remove Filter(`2esn` In `1esn` =~\"d_str\" Where $`4esn` In Null In 0xabc).`6esn`?,None(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`]).`4esn`! Start _usn4=Node:`4esn`(_usn4={123456789}) Where {_usn4} In {12} In $0 Union All Merge (((`5esn` {#usn8:usn1 Starts With usn1 Starts With $``,`3esn`:$`6esn` Is Null})-[:`8esn` *..01]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[usn2?:@usn5{`4esn`:{`7esn`} Is Null,_usn4:$123456789 Ends With {`1esn`} Ends With $`4esn`}]->(`6esn` {`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}))) On Create Set {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}.`8esn`? =$@usn5[010..$#usn8][12..$`4esn`],`7esn`+=`8esn`(Distinct $#usn7 Is Null) Ends With Filter(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]) Ends With Shortestpath(((_usn3 :`4esn`{`7esn`:`5esn` Is Null,`7esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]})<-[`6esn`?:#usn7]->(`3esn` {`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]}))),`7esn` =`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) Contains Reduce(`7esn`=$_usn4 Ends With usn1 Ends With $0,`4esn` In $`3esn` Is Not Null|`7esn` In {123456789} In `1esn`) On Match Set usn2 ='s_str'[$_usn3..][Count ( * )..]"), - octest_legacy:ct_string("Start ``=Node:`2esn`(usn2='s_str') With Distinct 123.654 Is Not Null As `1esn`,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) As `4esn` Order By 0.0 =~999 Asc,1e1 In \"d_str\" In `7esn` Descending Where 12.e12[`3esn`] Union All Load Csv From Reduce(@usn6=0.e0 Ends With $#usn7 Ends With $7,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999})[[#usn8[`3esn`..][{#usn7}..]]..(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`8esn` :@usn6:#usn8)<-[{`8esn`:07 In `2esn` In 12e12}]->(:_usn4{`6esn`:{`6esn`} =~$999,`6esn`:$#usn7[..{`5esn`}][..9e12]})][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)..Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0e0 Starts With `2esn` Starts With $``)] As `2esn` Fieldterminator \"d_str\" With *,$``[1.0] As `6esn`,12.0[123.654][Count(*)] Where 0.12[$`3esn`..$_usn3][12.0..usn1] Union Create #usn7=Shortestpath((`2esn` :usn1)<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-(`3esn` :`8esn`:`7esn`)<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1)),usn2=Shortestpath(({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))"), - octest_legacy:ct_string("Create Constraint On()<-[``:_usn4]-()Assert Exists(Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]).@usn5)"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:@usn5)Assert (:_usn4{@usn6})<-[`4esn`?:_usn4|:usn2{_usn4:$usn2[{@usn5}],`2esn`:usn1[`5esn`..$7]}]->({``:$`8esn` =~{1000}})<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(:``:#usn8{usn1:{`6esn`}}).`1esn` Is Unique"), - octest_legacy:ct_string("Start _usn4=Node( {123456789}) ,#usn7=Relationship:usn2(`8esn`={`8esn`})Where _usn4 Is Null Is Null Create `3esn`=Allshortestpaths(((:usn1{_usn4})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5}))) Load Csv From 1.0 Is Null Is Null As `3esn` Fieldterminator 's_str'"), - octest_legacy:ct_string("Merge ((`4esn` {`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}})) On Match Set @usn6 ='s_str' Starts With 123.654 Union Load Csv With Headers From [_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|`` Is Not Null Is Not Null] Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where {_usn3}[..\"d_str\"][..`5esn`]) Ends With Filter(`3esn` In {7} Is Null Where {123456789} Contains $#usn8) As _usn3 Fieldterminator 's_str' With 07[$123456789..] Order By {`2esn`} Ends With 12.0 Desc,`6esn`[12..$usn2][{#usn8}..{usn2}] Asc,9e1[..$`2esn`] Ascending"), - octest_legacy:ct_string("Drop Constraint On(@usn6:_usn3)Assert Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn`[1000..0Xa]).`2esn`? Is Unique"), - octest_legacy:ct_string("Unwind $usn1[{`5esn`}][$`6esn`] As @usn6 Merge ((:usn2{usn2:123.654[$`1esn`],@usn6:123456789[$@usn5..]})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`` {usn2:9e0[..999],`2esn`:0e0 In @usn5})<-[]->(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})) On Create Set `8esn`+=[9e1[..$`2esn`]][{`8esn`:False =~$7 =~2.12,`3esn`:Count ( * ) =~$usn2 =~$usn2}][Case {``} Is Null When 2.12 Then $123456789 Ends With {`1esn`} Ends With $`4esn` End] On Match Set @usn6+=$1000[0Xa][{#usn7}]"), - octest_legacy:ct_string("Create Constraint On(_usn3:@usn6)Assert Exists(Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))).``)"), - octest_legacy:ct_string("Drop Constraint On(_usn3:`8esn`)Assert (@usn6 :``:#usn8)-[#usn8?{`5esn`:#usn7 Contains _usn3 Contains {`3esn`}}]-(:``:#usn8)<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(:usn2{`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]}).#usn8? Is Unique"), - octest_legacy:ct_string("Return *,Case When 1.0 =~'s_str' =~{`2esn`} Then $`5esn` In $`6esn` When {`7esn`}[..{`4esn`}] Then {usn1} Ends With $0 End[All(`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"])..[Count ( * )[0.12...e1],1.0[00..],$``]][`4esn`(`4esn` Ends With 07 Ends With {`3esn`})..Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `1esn` =~\"d_str\"|9e12 Is Not Null Is Not Null)] As `` Order By `3esn`(`5esn`[{`4esn`}..`2esn`],9e1[2.12..{#usn8}]) In `8esn`(Distinct $1000[`2esn`..`5esn`][1e1..1.e1],0X0123456789ABCDEF Ends With $`8esn` Ends With 0.12) In All(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`4esn`} Starts With $usn2 Starts With $1000) Ascending,Extract(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[7..$`6esn`]) Is Not Null Is Not Null Asc,{`2esn`} Ends With {`7esn`} Desc Return [`5esn`[{`4esn`}..`2esn`],Null Ends With {`5esn`} Ends With 0.e0,010[#usn7..True]] Contains [`3esn` In {7} Is Null Where {usn2}[.e0..$999]|Count ( * ) Contains `8esn` Contains .e1] Contains Reduce(``=@usn5 In {`7esn`} In `2esn`,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{_usn4}[1000..{@usn5}]) As `3esn`,{7}[$7..$``][{``}..{7}] As usn2,{1000}[{_usn3}..] As #usn7 Skip Shortestpath((_usn3 {`3esn`:False Is Null Is Null,`8esn`:2.12})-[usn2?:_usn4|:usn2 *..0x0$_usn4]->(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})) Contains [`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 7 Starts With {@usn6} Starts With $``|.e12 Is Not Null Is Not Null] Limit $`6esn` Ends With Count(*) Return *,'s_str' Starts With 123.654 As usn1 Skip {0} In $_usn3 Limit {`3esn`} In 01 Union Merge _usn4=(({``:9e12[`1esn`..][$`1esn`..],#usn7:#usn8})<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]-({`7esn`:{999}})) On Create Set #usn7+=Count(*) In $12,`2esn`+=$usn2[9e0],[9e1[1000][{123456789}],$usn2[{@usn5}],0Xa Starts With {`6esn`} Starts With $usn1].usn1? =Reduce(`4esn`=$`4esn`[Null..],#usn7 In `2esn`[..$#usn8][..Count(*)]|False[..``]) Is Null Is Null On Match Set ``(Distinct 0.12 =~`5esn` =~`5esn`,Null[``]).`1esn`! =12e12 Ends With {usn1},@usn5 =7 Ends With $`4esn`,_usn4 =Case 123456789[0xabc..'s_str'][``..`1esn`] When 12.0[123.654][Count(*)] Then True Contains {0} Contains 7 End[..[9e1[1000][{123456789}],$_usn3[{#usn7}],`5esn` Starts With $`2esn` Starts With $1000]][..Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0 In `2esn` In 010)] Create Shortestpath((((usn2 :`4esn`)-[`2esn`? *00]-(`1esn` :`5esn`{`5esn`:{``} Is Null})-[``? *..01{`1esn`:$@usn6 Contains 07}]-(:`3esn`:@usn5{#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]})))),`1esn`=((usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7})-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``}))"), - octest_legacy:ct_string("With *,Shortestpath((((`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})-[`2esn` *..07]-(`1esn` {#usn7:{_usn4} In {12} In $0})<-[?{usn1:`7esn`[..{usn1}],usn2:Null[``]}]-({usn2})))) In ({``:$`5esn`[{`3esn`}],_usn4:{usn1} In 2.12 In 1000})<-[usn1?:@usn5*]->(@usn6 :`1esn`{usn1:12[1.e1..{_usn3}][1.e1..1.0],@usn5:$999[0.0..]})<-[ *0X7..]->(usn1 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}) As `1esn`,`6esn`[2.12..01][{``}..False] As `1esn` Where $123456789 In 0X0123456789ABCDEF In 0.e0 Merge Shortestpath((((:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1})-[:`6esn`|`5esn` *123456789..]-(#usn7 :`1esn`{`2esn`:`4esn`[..Count ( * )][..{#usn7}],#usn8:{@usn6}[7]})-[usn2 *..010{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(#usn8 :`4esn`{`8esn`:Count ( * ) Ends With 12.0,`7esn`:$`3esn` In $_usn4 In {_usn3}})))) Unwind Case {`3esn`}[@usn6..0Xa][{12}..0Xa] When {usn1}[0X0123456789ABCDEF] Then 0x0 Ends With $12 When 0e0 Starts With `2esn` Starts With $`` Then {123456789}[9e12][{0}] Else 0X7[1000..{`1esn`}] End[..({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})] As `5esn` Union Load Csv With Headers From 0.0 In {#usn8} As `4esn` Merge `3esn`=Allshortestpaths((:@usn5{`2esn`:_usn3 Ends With 7 Ends With `1esn`})<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[`5esn` *..0x0{`5esn`:`7esn`[..2.12][..{usn1}],`3esn`:12e12 Contains 0Xa}]->(:`4esn`{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})) Optional Match #usn8=Allshortestpaths(((@usn5 {_usn3:`1esn` Contains {usn2} Contains $#usn8})<-[:`3esn`|:#usn8 *7..12{@usn5:_usn4 Starts With $_usn4 Starts With 12.e12}]->(#usn7 :_usn3:_usn3{`8esn`:12 Ends With 0x0 Ends With 0.e0,usn1:#usn7 Contains _usn3 Contains {`3esn`}}))),Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}))) Where 0Xa[7..2.12][`3esn`.._usn3] Union With Distinct 0[07..{123456789}][999...e12] As `4esn` Order By Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End Descending Skip $`6esn`[$`6esn`..`8esn`] Limit Allshortestpaths((({@usn6:$usn1 Ends With $`` Ends With $12})<-[@usn6:#usn7*{`8esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))) Contains Filter(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]) Contains Shortestpath(({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})) Foreach(`4esn` In 1000[0X7..2.12]| Remove ({@usn5:{usn2}[.e0..$999]})<-[`8esn`:_usn3|_usn3{#usn7:`8esn` =~0xabc =~010,`5esn`:False Starts With {`5esn`}}]->(`6esn` :@usn5)._usn4?) Unwind $usn1 In {999} In $#usn7 As _usn4"), - octest_legacy:ct_string("Create Constraint On(``:_usn3)Assert Exists({`6esn`}.usn1)"), - octest_legacy:ct_string("Drop Constraint On(`3esn`:#usn7)Assert usn1(Distinct 0X7[`7esn`][123.654],$`5esn`[..$`5esn`][..$12]).#usn7? Is Unique"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:#usn8)Assert Allshortestpaths(((:@usn5{#usn7:$_usn4[1.e1]['s_str'],usn1:1e1 In 123.654 In `3esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`4esn` {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null})))._usn4 Is Unique"), - octest_legacy:ct_string("Return Distinct *,None(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where `8esn`[`4esn`..{#usn8}][$12..2.12]) Ends With Extract(`5esn` In \"d_str\" Is Null Is Null Where $_usn3[.e0..$usn2]|{#usn7}[9e1..][{123456789}..]) Ends With Reduce(`2esn`={`3esn`} In 0X7,_usn3 In {`3esn`}[`2esn`]|$`5esn`[{`3esn`}]) Order By Filter(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`3esn` In $_usn4 In {_usn3}) Is Not Null Is Not Null Asc,$`4esn`[010..`4esn`] Ascending,1e1 In \"d_str\" In `7esn` Descending Skip 9e1 Is Not Null Union All Create _usn3=(((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5))),(:``:#usn8{_usn3:$`7esn` Is Null Is Null}) Union Optional Match `2esn`=Shortestpath(((usn2 :`6esn`{#usn7:Count ( * ) Contains 07})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0}))),Allshortestpaths(((`8esn` )-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}})<-[ *..12]->(#usn8 {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]}))) Merge ((:_usn4{usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]})) Match (({_usn3:$`5esn`[`3esn`..]})-[? *..07{`4esn`:@usn5 =~{`5esn`} =~`5esn`}]->(_usn3 :usn2{#usn7:{999} Starts With {0}})) Using Index @usn5:`2esn`(@usn5) Where $123456789 Is Null Is Null"), - octest_legacy:ct_string("Unwind Null Ends With {`5esn`} Ends With 0.e0 As usn1 Load Csv From [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where `4esn` Ends With 07 Ends With {`3esn`}|@usn5 Is Null] Is Null Is Null As #usn8 Fieldterminator \"d_str\" Union Match ((:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]})-[usn2?:`5esn` *0..]->(usn2 :``:#usn8)<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})) Using Scan _usn4:@usn6 Where `` Ends With 0Xa Ends With `2esn` Merge #usn7=Allshortestpaths((@usn5 {`3esn`:.e1[..usn2][..`8esn`]})<-[usn2:`7esn`]->(:usn1{_usn3:{#usn7}[`2esn`..]})-[?:usn2|``$#usn7]-(#usn8 :``:#usn8{`7esn`:9e1[$usn2],_usn4:$_usn4 Contains Null Contains #usn8})) On Create Set @usn5 =(#usn8 :``:#usn8)-[]->(`5esn` {`4esn`:01 Is Null})-[_usn3:@usn5 *7..12{`2esn`:12.0 =~999 =~$_usn3}]->(`3esn` {usn1:$0[..9e1],@usn5:`7esn`[..{usn1}]}) =~None(#usn7 In {``} Is Not Null Where .e0 Starts With $`` Starts With $usn2) =~Case When 0X0123456789ABCDEF Ends With $`8esn` Ends With 0.12 Then `3esn` In $0 In `1esn` When \"d_str\"[#usn8] Then `7esn`[$0][9e12] Else {`7esn`} Is Null End On Match Set _usn4+={`7esn`}[`6esn`][#usn7],@usn6 =01 Is Null Union All Detach Delete ({@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}})-[`4esn`?:@usn5{`6esn`:'s_str'[00][{`5esn`}],``:01234567 Ends With .e12 Ends With $#usn7}]->({`3esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`2esn`:False Contains {`6esn`}}),`4esn`(01234567 Ends With .e12 Ends With $#usn7,.e12 Is Not Null Is Not Null) In [#usn8 In 7[..999][..{#usn8}] Where 01[{`2esn`}..{@usn6}][$`2esn`..0.0]|@usn6 Contains $1000 Contains {`7esn`}] In Filter(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 0Xa[2.12]),usn2[{7}] Foreach(`1esn` In 12[..$`4esn`]| Optional Match #usn7=Shortestpath((@usn6 {`3esn`:{``} Is Not Null})-[usn1?:@usn5*]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})),``=({`7esn`:1.0 =~7 =~{usn2},`8esn`:`3esn` In $0 In `1esn`})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True}) Using Scan `1esn`:usn2 Using Scan `3esn`:`5esn` Where 1.0 Starts With 12e12 Starts With {`5esn`} Delete Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},Shortestpath(((:`8esn`:`7esn`$#usn7)-[`5esn`:`8esn`]->(#usn8 {`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]}))) In [_usn3 In {`3esn`}[`2esn`] Where $_usn4[Count ( * )..]|1.0 Is Null Is Null] In Case When Count ( * ) Contains 07 Then 123.654[$`1esn`] End,$123456789 Is Null Is Null)"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:_usn4)Assert Exists(Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {123456789}[0xabc..]|{7}[$``][{@usn6}]).#usn7)"), - octest_legacy:ct_string("Create Constraint On()<-[``:_usn3]-()Assert Exists(Shortestpath(((`1esn` :`7esn`:_usn3{`2esn`:$#usn7[#usn7..],_usn4:'s_str' Is Not Null Is Not Null})-[`2esn`? *00]-(`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1}))).`5esn`?)"), - octest_legacy:ct_string("Unwind {`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]}[@usn5(Distinct {`5esn`} Contains $0 Contains {``},12.e12 Starts With {999} Starts With {`1esn`})] As _usn4 Load Csv With Headers From $`4esn`[..$`3esn`][..0.0] As `4esn` Detach Delete Case {usn2} When {_usn4} Starts With 0.e0 Starts With 0x0 Then 12 Ends With 0x0 Ends With 0.e0 Else 1.0 =~'s_str' =~{`2esn`} End[(:`3esn`:@usn5{`2esn`:$_usn4[1.e1]['s_str'],#usn7:$12[True..][{0}..]})-[@usn6?$0]-({@usn6:`7esn`[..{usn1}],#usn8:2.12 Contains usn2 Contains True})..All(`3esn` In {7} Is Null Where $#usn7[@usn5..{1000}][1.e1..7])][{usn2:$`5esn`[..$`5esn`][..$12]}..Any(`8esn` In 01[2.12..`8esn`] Where `1esn`[{usn1}..``][7..$#usn8])],'s_str' Is Not Null Is Not Null Union Foreach(_usn4 In {usn1} Ends With 12.0 Ends With 00| With *,`7esn` Is Null As `7esn`,None(`` In `` Is Not Null Is Not Null Where $`6esn` Is Null) Contains Shortestpath((({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}))) Contains Case #usn7 Is Null Is Null When $@usn5 =~1000 =~1000 Then 0x0 Is Null End Order By {usn2} Starts With $`8esn` Starts With Count ( * ) Asc,(:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(:_usn3:_usn3{``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Is Not Null Descending,.e0[..0X0123456789ABCDEF][...e12] Descending Limit {``}[...e12]) Foreach(`4esn` In #usn8[`3esn`..][{#usn7}..]| Create `5esn`=Allshortestpaths(((`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}))),(((`6esn` :`5esn`{usn1:{`6esn`}})<-[? *0X7..{#usn8:{1000} Is Null Is Null,`3esn`:0.e0 Starts With 12.e12 Starts With {_usn4}}]->(`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})<-[:`1esn`]-(`3esn` {@usn6:`4esn`[..010][..{12}]})))) Union Return Distinct 12.0 Ends With True Ends With 123456789 As #usn7 Order By {_usn3}[12.e12] Descending Skip 0X7[{@usn6}] Limit 1e1 Contains Count ( * ) Create @usn5=(((`1esn` :`5esn`{`5esn`:{``} Is Null})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[{_usn4:`4esn`[`5esn`..12][@usn6..False],#usn7:0Xa[usn2..]}]-(_usn4 :usn1))) Delete Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End Starts With Single(`2esn` In `1esn` =~\"d_str\" Where False Starts With {`5esn`}) Starts With Extract(`5esn` In $999[0.0..] Where 0x0 Ends With $12),$`7esn` Is Not Null,7[$`2esn`..{`5esn`}]"), - octest_legacy:ct_string("Start ``=Relationship:usn2('s_str') ,`1esn`=Rel:`4esn`(`4esn`='s_str') With Distinct $`3esn`[0.12..`8esn`][$#usn7..`5esn`],Any(#usn7 In `2esn`[..$#usn8][..Count(*)] Where 0.0[$0][{@usn5}]) =~Reduce(usn1=.e1 Ends With 1e1 Ends With @usn5,`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|$#usn7[#usn7..]) =~`1esn`($1000 Is Null) As @usn6 Order By {`1esn`}[12.0..`2esn`][@usn6..{usn1}] Ascending,$`3esn` Is Not Null Desc Where 01 Contains {`8esn`} Contains 2.12 Remove usn1:`1esn`,Filter(#usn8 In 7[..999][..{#usn8}] Where 123456789 Is Null).`8esn`!,[7[..123456789][..{@usn6}],#usn7].#usn8 Union All Unwind False[..``] As `7esn` Union Load Csv From $_usn4 =~usn2 =~{_usn3} As _usn3 Start _usn4=Node:`3esn`(`2esn`={usn1}) ,`6esn`=Node:``('s_str')"), - octest_legacy:ct_string("Return Distinct Filter(`4esn` In $`3esn` Is Not Null Where {`6esn`}) =~{_usn3:{`3esn`} Is Not Null Is Not Null} As `7esn`,.e0[12.e12..] As `3esn`,0e0 =~`6esn` =~123456789 As @usn5 Skip {12} Is Not Null Limit $@usn5 Starts With $1000 Union Unwind Reduce(@usn6=0.e0 Ends With $#usn7 Ends With $7,`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$123456789 Ends With $999 Ends With {999})[[#usn8[`3esn`..][{#usn7}..]]..(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`8esn` :@usn6:#usn8)<-[{`8esn`:07 In `2esn` In 12e12}]->(:_usn4{`6esn`:{`6esn`} =~$999,`6esn`:$#usn7[..{`5esn`}][..9e12]})][Filter(#usn8 In 7[..999][..{#usn8}] Where 9e0)..Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0e0 Starts With `2esn` Starts With $``)] As #usn7 Create (({`4esn`:`7esn` Is Null})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})) Union All Load Csv From \"d_str\"[..{@usn5}][..``] As `6esn` Fieldterminator 's_str'"), - octest_legacy:ct_string("Foreach(`8esn` In \"d_str\" Starts With 01| Start `8esn`=Relationship:`6esn`('s_str') Where 010 =~{usn2}) Unwind $`1esn` In $`7esn` In $`6esn` As `2esn` Delete 123456789[#usn8..False],9e1 In 2.12 Union Delete #usn7[$usn1]"), - octest_legacy:ct_string("Create Constraint On()-[_usn4:_usn3]->()Assert Exists(Extract(#usn7 In {``} Is Not Null Where {`1esn`}[usn1][.e1]|`6esn` In 0Xa)._usn3?)"), - octest_legacy:ct_string("Unwind [$`5esn`[..$`5esn`][..$12],01[2.12..`8esn`],_usn3 Contains $123456789 Contains ``] As `1esn` Remove Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where Count ( * )[True..][{#usn7}..]|0xabc[01..{999}][{7}..{`7esn`}]).`8esn`!,[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]|123456789[#usn8..False]].`5esn`?,[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0.0 In $usn1|{#usn8}[{7}]].#usn8?"), - octest_legacy:ct_string("Foreach(#usn7 In Allshortestpaths(((`7esn` {`2esn`:$`6esn`[123456789..12][True..{`3esn`}],#usn7:$_usn3[Count(*)]})-[#usn8? *..07$_usn4]->(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]}))) =~(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null}) =~{#usn8:{`3esn`}[@usn6..0Xa][{12}..0Xa],@usn5:False Is Null Is Null}| Create ``=((({_usn4:00 Starts With 0xabc})<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]->(`5esn` :`4esn`{@usn6:{`6esn`} =~$999}))),`2esn`=(:`4esn`{`3esn`:$`7esn` =~{`8esn`} =~$usn1})) Create `2esn`=(:`4esn`{_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})<-[#usn8:@usn5 *..01]-(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null}),_usn4=Shortestpath(((:`1esn`{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789}))) Union Optional Match (:usn1{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789})<-[:usn2|``{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(`8esn` :`8esn`:`7esn`) Using Join On `1esn`,_usn3,_usn3 Return *,$@usn5 Contains 0xabc Contains {#usn7} Limit Extract(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $_usn3 In {1000} In 0.12)[{@usn6}..] Load Csv With Headers From #usn7[usn1][$`5esn`] As `4esn` Union Merge (((:usn1{usn1:`5esn`[_usn4..]})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 )-[:usn1|@usn6 *7..12]-({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]}))) Start `7esn`=Node:`4esn`({usn1}) ,`1esn`=Relationship:`2esn`({1000})Where $`6esn`[010..] Match (`2esn` :`8esn`:`7esn`)-[`6esn`]->(:`8esn`:`7esn`{usn1:$`3esn` In $_usn4 In {_usn3}})-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`8esn` {#usn8:010 In Count(*),`4esn`:12.e12[9e12..{`6esn`}]}) Using Scan ``:_usn4 Using Join On ``,_usn3,`1esn`"), - octest_legacy:ct_string("Drop Constraint On()-[`3esn`:usn1]->()Assert Exists(Extract(#usn8 In {`5esn`}[.e1..``]).``?)"), - octest_legacy:ct_string("Merge @usn6=Allshortestpaths(((@usn5 :`4esn`))) Delete Shortestpath((((:@usn5{usn2:{``} Starts With $`2esn` Starts With `1esn`,`3esn`:$`5esn` In $`` In 123.654})-[`2esn`:usn1|@usn6{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->({usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`6esn`|`5esn`*]-(`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]}))))[..Case 0Xa =~123456789 =~_usn4 When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $1000 In $1000 In $`3esn` Then 0.e0[#usn8] End][..(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})-[`8esn`?]->(`1esn` :#usn8:#usn8)-[ *7..12{@usn6:0e0 Ends With 1.e1 Ends With $`4esn`,`8esn`:12e12 Ends With {usn1}}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null})],Case $1000[999] When `4esn`[`5esn`..12][@usn6..False] Then {0} Ends With $_usn3 Ends With $`7esn` When $usn1 In {999} In $#usn7 Then Count ( * )[True..][{#usn7}..] End Ends With {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null},`7esn` In 00 Remove (:usn1{_usn3:{#usn7}[`2esn`..]})-[`2esn` *..999{`7esn`:7[{0}..{_usn4}]}]-(#usn7 ).`2esn`,Case `5esn` Starts With $`2esn` Starts With $1000 When 123.654 =~$usn2 =~{999} Then Count ( * ) Contains `8esn` Contains .e1 End._usn3!,exists($12[$1000..123456789],123456789[0xabc..'s_str'][``..`1esn`]).@usn5 Union All Match (({`4esn`:`7esn` Is Null})<-[`6esn`? *..12{usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1}]-(`7esn` :`3esn`:@usn5{`1esn`:$`5esn`[`3esn`..]})<-[`8esn`:`6esn`|`5esn`{`3esn`:$`8esn`,@usn6:usn2 Is Not Null Is Not Null}]->(_usn3 {`4esn`:2.12['s_str'..$12][{`1esn`}..`2esn`],`1esn`:0e0 In @usn5})),({`4esn`:{`4esn`} Ends With {usn2} Ends With {999}})<-[:usn2|``]->(:`5esn`{#usn7:{123456789} Contains $#usn8})-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-(:#usn8:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]}) Using Index `6esn`:`8esn`(``) Using Scan `2esn`:`7esn` Where 0.e0 Contains 9e1 Contains {`7esn`} Create (:``:#usn8$`3esn`)-[`1esn`?:`8esn`]->(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})"), - octest_legacy:ct_string("Drop Constraint On()<-[usn2:`5esn`]-()Assert Exists(Allshortestpaths((@usn5 {`7esn`:$`6esn`[010..],#usn8:0.e0 Starts With `2esn`})-[@usn5]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})).usn1!)"), - octest_legacy:ct_string("Drop Constraint On(`1esn`:`3esn`)Assert `6esn`(`4esn`[``],True[{`7esn`}..]).usn1? Is Unique"), - octest_legacy:ct_string("Optional Match (((_usn4 :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})<-[``?:_usn4|:usn2{`1esn`:False Is Null Is Null}]->(usn2 :`6esn`{#usn7:Count ( * ) Contains 07}))),``=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))) Where usn2 Is Null Merge usn1=Shortestpath((`7esn` :``:#usn8)<-[ *0X7..]-(`2esn` {_usn3:`1esn` Contains {usn2} Contains $#usn8})-[_usn4:#usn8|`1esn`{`6esn`:#usn8[..{#usn7}]}]->(#usn7 :`4esn`)) Foreach(usn1 In \"d_str\" Starts With 01| Unwind [`5esn` In $999[0.0..] Where {1000}[$`4esn`][\"d_str\"]|$#usn7 Is Null][..{`4esn`:{`4esn`} =~{7} =~{`7esn`},`8esn`:$#usn7[#usn7..]}] As @usn6)"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From $123456789 In $#usn7 In `4esn` As `5esn` "), - octest_legacy:ct_string("Foreach(`7esn` In Case 's_str' In 00 When {@usn6}[{#usn7}..$#usn8][$_usn4..12.e12] Then usn2 Is Not Null Is Not Null When $@usn5 Starts With {0} Starts With 12 Then {usn2} Else {#usn7}[`2esn`..] End| Create `8esn`=Allshortestpaths((((:`1esn`{_usn4:{999}})-[{`1esn`:$`5esn`[`3esn`..]}]->(`7esn` :``:#usn8)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})))),#usn8=(:`2esn`:usn1)-[`1esn`:@usn6|`6esn`*..{`7esn`:7[{0}..{_usn4}]}]->(`8esn` {_usn4:`4esn`[1.0],`5esn`:0e0 Ends With 1.e1 Ends With $`4esn`})-[:@usn5{@usn5:{#usn7}[9e1..][{123456789}..],``:#usn7 Is Not Null Is Not Null}]->(`4esn` :`6esn`{_usn3:$123456789 Ends With `3esn` Ends With 123456789,`6esn`:0e0 Starts With 2.12 Starts With $12})) Merge Allshortestpaths(((usn2 :``:#usn8{`3esn`:999 Is Not Null Is Not Null,@usn6:$`2esn` Is Null Is Null})-[@usn6?:#usn8|`1esn`{usn1:`5esn`[.e0..][07..]}]-(:`6esn`{`7esn`:{usn2}[$`3esn`..][{#usn7}..]}))) Union All Start usn1=Rel:@usn6(#usn7='s_str') ,``=Node:@usn6({_usn4}) Union All Load Csv From None(`4esn` In $`3esn` Is Not Null Where 01[2.12..`8esn`]) Is Not Null As `2esn` "), - octest_legacy:ct_string("Remove [123456789 Ends With $`6esn` Ends With $#usn7]._usn3!,{usn1:`1esn` Contains {usn2} Contains $#usn8}._usn3?,{_usn4:True[07..$usn2][$7..{usn1}]}.``?"), - octest_legacy:ct_string("Create Constraint On(`8esn`:`8esn`)Assert Exists({@usn5}.usn1?)"), - octest_legacy:ct_string("Create usn2=(`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[@usn5?:`3esn`|:#usn8{_usn4:{999}}]->(:#usn8:#usn8{``:1.0[0e0..0.e0]}),#usn8=((`3esn` {`8esn`:\"d_str\" Contains {123456789} Contains 01,@usn5:`1esn` In .e0 In {`3esn`}})-[#usn7?:`3esn`|:#usn8]->(`2esn` :usn1)-[ *..999{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(@usn5 {_usn3:`1esn` Contains {usn2} Contains $#usn8})) With Distinct #usn8 Starts With $_usn4 Starts With $7 As `6esn` Order By $0[$`1esn`..07] Descending Skip 9e1 Is Not Null"), - octest_legacy:ct_string("Load Csv With Headers From {_usn4} Is Not Null Is Not Null As `5esn` Return Distinct $``[1.0],{`5esn`}[0..`8esn`][0..Null] As `7esn` Order By 0Xa =~123456789 =~_usn4 Desc Skip $7[{usn2}..][{usn2}..] Limit $1000 Is Null Remove Allshortestpaths((:#usn8:#usn8{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[usn1:`8esn`]-({_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null})).`6esn`!,(`4esn` :``:#usn8{`1esn`:$`5esn`[`3esn`..]})-[`7esn`*]->(:#usn7{@usn5:{12} =~#usn8})-[`4esn`:@usn5 *00{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6}]->(_usn4 ).`4esn`? Union All Optional Match #usn7=((usn2 :`6esn`{#usn7:Count ( * ) Contains 07})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})) Using Join On `8esn`,`` Using Index `8esn`:`1esn`(@usn5) Where `1esn`[..{@usn6}][..$123456789] Unwind {7} Is Null As `6esn` Merge #usn8=Allshortestpaths(({`8esn`:`3esn`[`3esn`..][#usn8..],`5esn`:{12} Is Not Null}))"), - octest_legacy:ct_string("Create Constraint On(`1esn`:`7esn`)Assert Exists(`8esn`(`3esn`[{usn1}]).`3esn`)"), - octest_legacy:ct_string("Merge `7esn`=((`1esn` :#usn7)) Create Unique _usn4=Allshortestpaths((`` {@usn6:1.0[$`1esn`..][$123456789..]})<-[?{usn2:123.654[$`1esn`],@usn5:#usn8 Is Not Null}]-(`3esn` :@usn5{_usn3:{`3esn`} Is Not Null Is Not Null})) Union Merge `4esn`=Shortestpath((((#usn8 :`8esn`:`7esn`{#usn7:#usn8[..{#usn7}]})-[usn1?]->({_usn3:False =~1e1 =~0.e0,_usn3:{999} Starts With $999})-[`4esn`? *0Xa{#usn8:{999} Starts With $999}]->(`` :_usn4)))) Merge Allshortestpaths(((`` :`1esn`)-[_usn3{@usn5:123.654[...e0],`8esn`:07 =~01}]-(_usn4 $999)<-[`4esn`?:`7esn` *0..{`2esn`:00[`2esn`..12][123456789..0.e0]}]->(`1esn` :_usn3:_usn3))) On Match Set `1esn`+=usn1 Is Null Is Null,Single(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]).`5esn` =0X0123456789ABCDEF Is Null Is Null Start `7esn`=Node:`6esn`({_usn3}) Where 123456789 Ends With 12.e12 Ends With $`7esn` Union All With Distinct {0} As `7esn`,1000[..$0][..True] Limit Case When @usn5 Is Null Then 2.12 Ends With $_usn3 Ends With `3esn` Else $1000 Is Null End[Reduce(_usn4=0e0 Starts With `2esn` Starts With $``,#usn8 In {`5esn`}[.e1..``]|1.0[0X7][{`5esn`}])..None(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where `6esn` In 0Xa)][Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01|usn2 Is Null)..Case When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` End]"), - octest_legacy:ct_string("Start usn2=Node:_usn4(``={#usn7}) ,`3esn`=Rel:usn1(`6esn`={7}) Union All Create Unique ((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn1 :#usn8:#usn8{``:$@usn6 Ends With $_usn4 Ends With 0.12,`6esn`:$`8esn`[..{`2esn`}]})<-[usn2?]->(:`5esn`{`2esn`:Count(*)[..usn2][..usn2]})),Allshortestpaths(((`2esn` :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0}))) Merge ((@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})) On Match Set `3esn` =Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End On Match Set Case When $_usn3[Count(*)] Then 010[#usn7..True] End.`6esn` =(`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})[\"d_str\"..Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null)][Shortestpath(((:`3esn`:@usn5$7)))..usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010])],All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where $_usn4 Ends With usn1 Ends With $0).@usn5? =Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End Union Create usn2=Allshortestpaths(((:@usn6:#usn8{`4esn`:$`8esn`[..00]})<-[_usn4?:_usn4|:usn2 *00]->(:`7esn`:_usn3{#usn8:{`7esn`} Starts With $123456789 Starts With $@usn6})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}))),#usn8=(((`8esn` {#usn8:@usn5 In {`7esn`} In `2esn`,`8esn`:Count ( * ) Contains `8esn` Contains .e1})-[@usn5]->(:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]})))"), - octest_legacy:ct_string("Unwind {12}[..0X7] As `3esn` Foreach(usn1 In Case 9e0[{0}..{`3esn`}][\"d_str\"..0Xa] When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] End Ends With Case When 0x0 Ends With $12 Then 07 =~01 End| Detach Delete $@usn5,'s_str' =~{_usn4} =~$`7esn`,usn1(Distinct $@usn5 Starts With $1000)[[`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}|0Xa =~Null =~$``]..]) Start `2esn`=Node:@usn5({`1esn`}) ,usn1=Node:#usn7(usn1=\"d_str\")Where #usn7 Starts With {#usn7} Starts With `7esn` Union All Load Csv From $usn2[{@usn5}] As #usn7 Fieldterminator 's_str'"), - octest_legacy:ct_string("Remove [9e1[1000][{123456789}],$usn2[{@usn5}],0Xa Starts With {`6esn`} Starts With $usn1].`3esn`?,[`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]].#usn7? Load Csv With Headers From Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 2.12 Ends With $_usn3 Ends With `3esn`|{123456789} Contains $#usn8)[{`7esn`:$`6esn`[010..]}..] As @usn5 "), - octest_legacy:ct_string("Create Constraint On(_usn4:usn1)Assert Exists(Reduce(@usn5=$1000[999],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|0xabc[.e0]).`3esn`)"), - octest_legacy:ct_string("With Distinct *,$123456789 Starts With {_usn4} Starts With $1000,`6esn`(Distinct 0X7[`7esn`][123.654]) Is Not Null Is Not Null Skip $`7esn` Is Not Null Remove `2esn`($`6esn`[123456789..12][True..{`3esn`}],$`5esn`[`3esn`..]).``! Union All Merge usn1=Allshortestpaths((`` {@usn6:1.0[$`1esn`..][$123456789..]})-[`7esn`*]->(`7esn` {`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})-[@usn6]-(`5esn` {`4esn`:01 Is Null})) Union All With Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]) =~({``:$`8esn` =~{1000}})<-[#usn8? *0..]->(`3esn` :`4esn`{`6esn`:0.e0 Ends With $#usn7 Ends With $7}) =~Shortestpath((_usn3 :usn2{`5esn`:$_usn4[Count ( * )..],#usn7:7[$`8esn`..123456789][$usn1..$usn1]})) As #usn8,Reduce(`8esn`={@usn5}[{#usn8}][9e0],`3esn` In {7} Is Null|0e0 Starts With 1000 Starts With #usn7)[Single(#usn8 In 7[..999][..{#usn8}] Where 123456789 Is Null)] Order By 's_str' In 00 Desc,{1000}[{_usn3}..] Descending,$usn1[...e0][..$_usn3] Asc Where 123.654[$`1esn`]"), - octest_legacy:ct_string("Optional Match (((`5esn` :`6esn`)<-[`5esn`?:`8esn` *1000..00]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[?:usn2|`` *0Xa{`8esn`:0.12 Starts With $`5esn` Starts With 12,`6esn`:$@usn6 Ends With $_usn4 Ends With 0.12}]->(`3esn` :`7esn`:_usn3{``:$123456789 Starts With 9e0 Starts With 's_str',``:{``} Is Not Null}))),#usn7=(:#usn7)<-[`5esn`{usn1:\"d_str\" Starts With $123456789,``:Count ( * ) Contains 07}]->(_usn3 {#usn8:_usn4 Is Null Is Null})<-[#usn7{`5esn`:7[$`2esn`..{`5esn`}],@usn6:.e12[@usn5..#usn7][010..{usn1}]}]-({#usn8:True[..$`6esn`]}) Using Join On ``,`4esn`,@usn6 Return *,Single(`` In `` Is Not Null Is Not Null Where 12.e12[0xabc])[`7esn`(Distinct $#usn7[..{`5esn`}][..9e12])..None(`5esn` In $999[0.0..] Where {999})] As `5esn`,False Ends With `3esn` Order By 00[{`8esn`}..][{`8esn`}..] Descending Skip 123456789[_usn4..][{999}..] Limit 0x0 Is Null Delete `8esn` Ends With $`2esn`,[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where $7[0.12][usn1]] Ends With {#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12} Ends With Case `1esn`[{usn1}..``][7..$#usn8] When `6esn`[2.12..01][{``}..False] Then Null[{#usn7}..][0X0123456789ABCDEF..] End,$123456789 =~{`6esn`} =~\"d_str\" Union Merge `5esn`=(usn2 :``:#usn8{#usn7:9e1[1000][{123456789}],#usn7:`1esn` =~\"d_str\"})<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]->(`5esn` :`4esn`{@usn6:{`6esn`} =~$999})<-[`1esn`?:`8esn` *123456789..]->(#usn7 :`6esn`$1000) On Create Set Extract(`3esn` In {7} Is Null Where $#usn7[@usn5..{1000}][1.e1..7]|$7 Is Not Null Is Not Null).`4esn`! =Case When {``} Starts With $`2esn` Starts With `1esn` Then $`5esn` Starts With $0 Starts With {0} End[None(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e1 Is Not Null)..[`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1]],[12[1.e1..{_usn3}][1.e1..1.0]].`8esn`? ={`4esn`:{`4esn`} =~{7} =~{`7esn`},`8esn`:$#usn7[#usn7..]} Is Null Is Null,usn1 =$_usn4 Contains Null Contains #usn8 Load Csv With Headers From 0 In `2esn` In 010 As `1esn` Fieldterminator 's_str' Match ``=(`1esn` :_usn3:_usn3)<-[usn2:_usn3|_usn3{usn2:123456789[#usn8..False],usn1:{`5esn`} Contains $0 Contains {``}}]->(`3esn` :_usn3:_usn3{@usn5:False})-[#usn8? *..07$_usn4]->({#usn8:'s_str'[00][{`5esn`}],`6esn`:9e1[$usn2]}),(#usn8 :@usn6:#usn8) Using Index `7esn`:usn2(`6esn`)"), - octest_legacy:ct_string("Detach Delete $12 Ends With 07 Ends With $123456789,$`6esn`[{_usn3}..$`4esn`][$_usn4...e12] Foreach(usn1 In (:_usn4{@usn6})<-[`4esn`?:_usn4|:usn2{_usn4:$usn2[{@usn5}],`2esn`:usn1[`5esn`..$7]}]->({``:$`8esn` =~{1000}})<-[ *..999{@usn5:`` Is Not Null Is Not Null,_usn3:{`3esn`} Is Not Null Is Not Null}]->(:``:#usn8{usn1:{`6esn`}})[[`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where $`8esn` Contains 123456789 Contains $usn2|123456789 Ends With 01234567 Ends With 1.e1]..{usn2:1.0 =~7 =~{usn2},`8esn`:$_usn3[.e0..$usn2]}][None(_usn3 In {`3esn`}[`2esn`] Where 7 Ends With $`4esn`)..Case {`2esn`} Starts With 123456789 When $`5esn` In $`6esn` Then $`6esn` Ends With Count(*) End]| Optional Match Shortestpath(((({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})<-[?{@usn6:0X7[`7esn`][123.654]}]->(:_usn4{`2esn`:{`1esn`}[usn1][.e1],_usn4:#usn8 Is Not Null})-[?:@usn6|`6esn`{usn1:$usn1[{`5esn`}][$`6esn`]}]-(:`6esn`$123456789)))),@usn6=Shortestpath((@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})-[`4esn`?:#usn7]->(`` :#usn8:#usn8)<-[?:`5esn`]->(:`3esn`:@usn5$7)) Using Index `7esn`:usn2(`6esn`)) Start `1esn`=Node:usn2({12}) ,usn1=Node:`7esn`(`3esn`={``})Where {usn2}"), - octest_legacy:ct_string("Remove @usn5(2.12 Is Null,_usn3 Ends With 7 Ends With `1esn`).usn1,[`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where 12.e12[`3esn`]].#usn7? Foreach(`5esn` In {#usn8} Is Null| Create `5esn`=Allshortestpaths(((`5esn` {_usn4:$`1esn`[{`2esn`}..],_usn4:$_usn3['s_str'][07]}))),`6esn`=Shortestpath((((_usn4 :``:#usn8)<-[usn2?:#usn7]-(:`5esn`{`1esn`:{12} Ends With 1.0 Ends With .e0})<-[``?:_usn4|:usn2{`1esn`:False Is Null Is Null}]->(usn2 :`6esn`{#usn7:Count ( * ) Contains 07})))) Start #usn8=Relationship:usn2(`8esn`={`8esn`}) ,`3esn`=Node:usn1(\"d_str\")Where 0.0[Null][$`2esn`]) Union Unwind `8esn`[$#usn7..123456789] As `` Start `6esn`=Rel:#usn8(@usn6={_usn4}) ,`4esn`=Relationship:`6esn`(#usn8={_usn3})"), - octest_legacy:ct_string("Load Csv From #usn7[usn1][$`5esn`] As `6esn` Load Csv From 12 Ends With 0x0 Ends With 0.e0 As usn1 Union Remove All(#usn7 In `2esn`[..$#usn8][..Count(*)]).#usn7!,All(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01).usn1?,[`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {_usn4} Starts With 0.e0 Starts With 0x0|123.654[`3esn`..]].`2esn`? Union All Optional Match usn2=((@usn6 :_usn4)),Shortestpath((((:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})<-[:#usn7 *..010]-(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})))) Using Index _usn3:`6esn`(#usn7) Where $`4esn`[..$`3esn`][..0.0]"), - octest_legacy:ct_string("Create Constraint On()-[@usn6:#usn7]-()Assert Exists([$_usn4[1.e1]['s_str'],#usn8 Is Not Null,123456789[#usn8..False]].usn1!)"), - octest_legacy:ct_string("Create Constraint On()-[`6esn`:`3esn`]-()Assert Exists(Filter(`5esn` In \"d_str\" Is Null Is Null Where {_usn3}[..\"d_str\"][..`5esn`]).`4esn`!)"), - octest_legacy:ct_string("Return Distinct $`5esn`[$`4esn`..{@usn6}][07..$@usn6] As usn2 Order By [usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*)) Ascending,Case When 1.0 In Count(*) Then False End Contains `1esn`(Distinct 0.e0 Starts With `2esn`) Contains Reduce(`1esn`=\"d_str\" Is Null Is Null,#usn7 In {``} Is Not Null|#usn7) Descending Skip Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End Limit All(#usn7 In {``} Is Not Null Where {_usn4}[...e1][..$7]) Is Null Is Null Match Shortestpath(((_usn4 )<-[?:`3esn`|:#usn8 *0X0123456789ABCDEF]->(#usn7 :_usn4)-[``?:`3esn`|:#usn8]->(:``:#usn8{`2esn`:{1000}[$999...e12][`7esn`..'s_str'],usn2:01234567 Is Null Is Null}))) Using Index ``:usn1(@usn5) Using Index `3esn`:`5esn`(#usn7) Where $`5esn`[2.12..] Unwind $_usn4 In usn1 In $7 As usn1"), - octest_legacy:ct_string("Remove `2esn`(Distinct 123.654[0e0..$``][$`1esn`..$`8esn`],`5esn`[{`4esn`}..`2esn`]).#usn8!,Extract(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where 0xabc[01..{999}][{7}..{`7esn`}]|0 In `2esn` In 010).`7esn`? Optional Match Shortestpath(((`` :usn2)<-[`2esn`?:@usn6|`6esn` *0xabc..{`5esn`:`6esn`[12..$usn2][{#usn8}..{usn2}],@usn5:$`2esn` Is Null Is Null}]-(`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})-[`2esn`?:usn2|``{`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}]-({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]}))) Using Join On ``,`4esn`,@usn6 Using Join On `5esn`,@usn6 With Distinct 07[$123456789..] Order By {7}[$7..$``][{``}..{7}] Descending,$_usn3[Count(*)] Desc Union Optional Match `8esn`=Allshortestpaths(((:usn1{_usn3:{#usn7}[`2esn`..]})<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``}))),`2esn`=((`3esn` {usn1:01 Ends With 999 Ends With {`7esn`},@usn6:0.0 Ends With 010 Ends With 1.e1})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(_usn3 :#usn7)<-[@usn5?]->(`1esn` :`5esn`{`5esn`:{``} Is Null})) Where $usn1[{`5esn`}][$`6esn`] Union Foreach(usn2 In {`3esn`}[`2esn`]| Load Csv From 2.12 Is Null As `7esn` ) With [9e1[..$`2esn`]][{`8esn`:False =~$7 =~2.12,`3esn`:Count ( * ) =~$usn2 =~$usn2}][Case {``} Is Null When 2.12 Then $123456789 Ends With {`1esn`} Ends With $`4esn` End] As `8esn`,`7esn` Is Null As `7esn` Skip $`4esn`[010..`4esn`] Where {1000} =~0 =~123.654 Merge `2esn`=Shortestpath((((:`3esn`:@usn5{#usn8:_usn4 Is Null Is Null})-[`2esn`?:`3esn`|:#usn8 *..01]-(:usn1{``})<-[:#usn7 *..010]-(`3esn` {`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})))) On Match Set #usn8:usn2,usn1 =Reduce(`2esn`=1e1 In 123.654 In `3esn`,`5esn` In \"d_str\" Is Null Is Null|$_usn3[{#usn7}]) Is Not Null,`6esn` =0.e0 Starts With `2esn` On Match Set @usn5 =Extract(#usn8 In {`5esn`}[.e1..``] Where {`3esn`}[..07][..{`5esn`}]) Is Null Is Null"), - octest_legacy:ct_string("Create Constraint On(#usn8:_usn3)Assert Case When {``} Starts With $`2esn` Starts With `1esn` Then False =~$7 =~2.12 When `1esn`[..{@usn6}][..$123456789] Then `3esn`[{`2esn`}] Else True In 0e0 End.`1esn`! Is Unique"), - octest_legacy:ct_string("Unwind 12 Ends With $usn2 As `6esn` Unwind `7esn`[$12..][$`8esn`..] As `2esn` Unwind .e0 =~`6esn` =~{12} As `3esn`"), - octest_legacy:ct_string("Start #usn7=Node:@usn6({_usn4}) ,usn1=Rel:`7esn`(usn2={`7esn`})Where 123.654 =~$usn2 =~{999} Foreach(`5esn` In All(`5esn` In $999[0.0..] Where {@usn6} Ends With 's_str' Ends With 12.0) In (:_usn4{``:2.12 Is Not Null Is Not Null})<-[?:#usn7 *..07{`6esn`:0X7 =~9e1,`2esn`:Null Ends With {`5esn`} Ends With 0.e0}]->(:@usn5{_usn4:0x0[`4esn`..'s_str'],`5esn`:123456789 Ends With $`6esn` Ends With $#usn7})| Start _usn4=Rel:#usn8(\"d_str\") Where $#usn8[9e12..][.e1..]) Return Distinct 0.e0 Starts With 12.e12 Starts With {_usn4} As _usn3,0e0 =~`6esn` =~123456789,`1esn`($123456789 Starts With 9e0 Starts With 's_str',{usn2}[.e0..$999])[{usn2:{`3esn`} In 0X7,_usn3:7 Starts With {@usn6} Starts With $``}..Single(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where {usn1} In 2.12 In 1000)][Case 0[`7esn`..] When 123456789 Is Null Then .e12 Is Not Null Is Not Null Else $@usn5 =~1000 =~1000 End..[`4esn` In $`3esn` Is Not Null Where `8esn`[{123456789}..]|{`3esn`}[`2esn`]]] Skip 0X0123456789ABCDEF Ends With $`8esn` Ends With 0.12 Limit Extract(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]|@usn5 =~{`5esn`} =~`5esn`) Contains Case When 0[..usn2][..{@usn5}] Then 2.12['s_str'..$12][{`1esn`}..`2esn`] When 01 Contains {`8esn`} Contains 2.12 Then #usn8[#usn8..] End Contains (:`5esn`{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]})<-[usn2?:_usn4|:usn2{``:`1esn` Contains {usn2} Contains $#usn8}]-(_usn4 {#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc}) Union Load Csv From [{`3esn`} Is Not Null Is Not Null] As @usn5 Merge `1esn`=Allshortestpaths((((`4esn` :`2esn`:usn1{usn2:{``} Ends With `7esn` Ends With 0.0,usn1:True[..$`6esn`]})<-[usn1?:`8esn` *..010]-(@usn6 :`2esn`:usn1{_usn4:`5esn` Is Null})<-[`7esn`:`4esn` *0Xa{`4esn`:{0}[@usn6..$1000],`1esn`:{`2esn`} Starts With 123456789}]-(:`1esn`{`2esn`:$12 Is Null Is Null,_usn4:$#usn8[9e12..][.e1..]}))))"), - octest_legacy:ct_string("Load Csv From {`2esn`}[$`4esn`][$`5esn`] As `7esn` Start `2esn`=Node:@usn6({_usn4}) "), - octest_legacy:ct_string("Optional Match `8esn`=Allshortestpaths(({@usn5:07[..True][..9e12]})-[_usn4?:`5esn` *..07]->({`3esn`:0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF]})) Using Join On #usn7,_usn4 Using Index `3esn`:`5esn`(#usn7) Where usn1 Ends With $@usn6 Ends With `3esn` Load Csv From {#usn7:0X0123456789ABCDEF =~1e1 =~{`4esn`},`2esn`:1.0 =~'s_str' =~{`2esn`}}[..None(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 0X7[`7esn`][123.654])][..(:@usn5{_usn4:$`8esn` Contains 123456789 Contains $usn2})<-[`7esn`*..]->({#usn7:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],#usn8:$usn1[.._usn4][..False]})<-[`2esn`?:`7esn`]->(#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})] As `8esn` Fieldterminator \"d_str\" Union All Create ((:`4esn`{`5esn`})) With *,Shortestpath((`1esn` :#usn8:#usn8)-[?{`7esn`:0.12[$`3esn`..$_usn3][12.0..usn1],`8esn`:0X0123456789ABCDEF =~1e1 =~{`4esn`}}]-(`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})) In [{`1esn`}[usn1][.e1],{12} =~#usn8,0X0123456789ABCDEF =~1e1 =~{`4esn`}] In $`8esn` Skip 010[\"d_str\"..{@usn6}] Limit $`3esn`[0.12..`8esn`][$#usn7..`5esn`]"), - octest_legacy:ct_string("With Distinct *,{``}[`8esn`..],Case {`3esn`}[@usn6..0Xa][{12}..0Xa] When {usn1}[0X0123456789ABCDEF] Then 0x0 Ends With $12 When 0e0 Starts With `2esn` Starts With $`` Then {123456789}[9e12][{0}] Else 0X7[1000..{`1esn`}] End[..({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null})<-[`2esn`?:`7esn` *0X7..]-(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}})] As #usn7 Order By False Contains {`6esn`} Ascending,{`1esn`}[usn1][.e1] Asc Where `7esn`[..2.12][..{usn1}] Load Csv From 1000 In `7esn` In 9e12 As `3esn` Fieldterminator 's_str' Create Allshortestpaths((:`3esn`:@usn5{usn1:$`7esn` Is Null Is Null,`6esn`:$1000 Is Null})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`4esn` {`7esn`:{999} Contains .e0 Contains 12.0,@usn5:`5esn` Is Null})<-[?{usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`}]->(`5esn` {@usn6:`6esn`[..$@usn6],_usn4:{7}[..12e12][..Count ( * )]})),(({@usn5:{usn2}[.e0..$999]}))"), - octest_legacy:ct_string("Drop Constraint On(`2esn`:`8esn`)Assert (:`5esn`{`1esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],@usn6:$usn1 In {999} In $#usn7})-[`7esn`?:usn1|@usn6 *1000..00{`8esn`:Count(*)[..usn2][..usn2],`5esn`:usn1 Is Null}]->(:`1esn`{`5esn`}).usn1! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`7esn`:usn1)Assert [0.12 =~$0 =~$0,Count ( * ) Contains {`1esn`} Contains 07].`2esn`! Is Unique"), - octest_legacy:ct_string("Create Constraint On(`2esn`:usn2)Assert Case When @usn6 Ends With {_usn3} Then False Contains {`6esn`} When `3esn`[`3esn`..][#usn8..] Then {`7esn`}[`6esn`][#usn7] End.@usn6? Is Unique"), - octest_legacy:ct_string("Using Periodic Commit Load Csv From \"d_str\"[..{@usn5}][..``] As `6esn` Fieldterminator 's_str' Unwind $usn2[9e0] As `5esn`"), - octest_legacy:ct_string("Drop Constraint On(_usn4:`5esn`)Assert Extract(`8esn` In 01[2.12..`8esn`] Where Count ( * ) Ends With $@usn5|Count ( * )[True..][{#usn7}..]).usn2? Is Unique"), - octest_legacy:ct_string("Create Constraint On()-[`1esn`:`8esn`]->()Assert Exists([`6esn` In 0Xa,12.0 =~999 =~$_usn3].``)"), - octest_legacy:ct_string("Match #usn8=Shortestpath((#usn8 :@usn5)) Using Scan `1esn`:`3esn` Using Join On _usn4 Where {``} Starts With $`2esn` Starts With `1esn` Detach Delete [`4esn` In $`3esn` Is Not Null Where $@usn5 Contains 0xabc Contains {#usn7}|`3esn`[{0}][usn1]] In [{12}[{7}][$123456789],`2esn` Starts With $_usn4] In count($1000 Is Null,0Xa[$123456789..123.654][.e12..0.e0]),{0} Contains 0.0 Contains $@usn5"), - octest_legacy:ct_string("Match ((_usn4 :``:#usn8)-[:`8esn` *..01]->({#usn7:0.e0 Starts With `2esn`})-[usn1:_usn4|:usn2 *..010{``:2.12 Is Not Null Is Not Null}]->($#usn8)) Using Join On `2esn` Using Join On `1esn`"), - octest_legacy:ct_string("Drop Constraint On()-[usn1:`1esn`]-()Assert Exists([$0[$`1esn`..07],{`5esn`} =~`4esn` =~{_usn4},.e0[..$`8esn`]]._usn4?)"), - octest_legacy:ct_string("Load Csv From {_usn3}[..\"d_str\"] As `3esn` Remove `6esn`(Distinct `5esn`[7][{usn2}],.e12[@usn5..$12]).usn1!,{`1esn`:True[..$`6esn`]}.`2esn`,Reduce(@usn6=0.e0[#usn8],usn1 In @usn5 =~{`5esn`} =~`5esn`|$`5esn` In $`6esn`).`5esn`? Union Unwind Allshortestpaths(((`8esn` ))) Ends With (`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]}) As _usn3 Foreach(`4esn` In {_usn3}[12.e12]| Optional Match (#usn8 {@usn5:123.654 Contains $`4esn` Contains 1.0,`6esn`:$`` =~12.0 =~$`7esn`})-[usn2]-(#usn8 :`6esn`{usn2:{7}[$`5esn`][{_usn3}],@usn5:0.12 =~$0 =~$0})<-[`6esn`?{`2esn`:$12 Ends With 07 Ends With $123456789,`6esn`:$#usn7[@usn5..{1000}][1.e1..7]}]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0}),usn2=(@usn6 :``:#usn8)<-[?:`8esn`{`3esn`:1.0 In Count(*)}]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`}) Using Index _usn4:`5esn`(`6esn`) Using Scan `6esn`:`2esn`) Union Optional Match Shortestpath((_usn3 :#usn7)<-[?:`1esn`{``:{`2esn`} Ends With {`7esn`}}]->(:usn1{``})<-[`5esn`? *..12{`8esn`:{`7esn`}[`6esn`][#usn7],`1esn`:0x0 Ends With $12}]->({`7esn`:00[{`8esn`}..][{`8esn`}..],#usn8:$@usn5 =~1000 =~1000})) Using Index _usn3:`6esn`(#usn7) Using Index usn2:`7esn`(`2esn`) Where Count(*)[..usn2][..usn2] Remove Reduce(`4esn`=0X7[$999][_usn4],`2esn` In `1esn` =~\"d_str\"|0Xa[$123456789..123.654][.e12..0.e0]).usn2,{@usn6}.@usn6 With *,123.654 Is Not Null,Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` ))))[[#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12|{123456789} Contains $#usn8]..][Reduce(#usn8=@usn5 =~{`5esn`} =~`5esn`,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|01 Is Null)..] As `7esn` Order By Case 00[`2esn`..12][123456789..0.e0] When `8esn` Contains $usn1 Contains $12 Then 7[{0}..{_usn4}] End[[$`1esn` Ends With 9e1 Ends With $123456789,Count ( * )[0.12...e1],`5esn`[7][{usn2}]]..Allshortestpaths(((`3esn` :`6esn`)<-[`4esn`:`8esn` *00]->({`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]})))] Ascending,All(`4esn` In $`3esn` Is Not Null Where {@usn5} Is Null Is Null) Contains (`5esn` :_usn4{`5esn`:07[..True][..9e12]})-[`8esn`?:`2esn`{@usn6:{12}[..0X7]}]->(`5esn` :`2esn`:usn1{`8esn`:$`2esn`[2.12..'s_str'][{@usn6}.._usn4],usn2:`4esn`[..Count ( * )][..{#usn7}]})<-[_usn4{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]->(_usn4 :#usn8:#usn8{`8esn`:'s_str' In 00}) Contains [0.12[$`3esn`..$_usn3][12.0..usn1]] Ascending Skip {_usn4} In {12} In $0 Where {7}[..12e12][..Count ( * )]"), - octest_legacy:ct_string("Drop Constraint On()-[`7esn`:@usn6]-()Assert Exists([{12}[..0X7]].#usn8)"), - octest_legacy:ct_string("Unwind {`1esn`:9e1[1000][{123456789}],``:$`8esn`} Starts With (#usn8 :#usn8:#usn8{@usn5:{#usn8} Is Not Null})-[?:`5esn`]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}) As @usn5 Union Load Csv From $usn1[_usn4] As `` Return Distinct (:#usn7{usn2:{`1esn`}[usn1][.e1],#usn8:$`5esn`[..$`5esn`][..$12]})<-[{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(:_usn3:_usn3{``:`7esn` Starts With $#usn7 Starts With $`7esn`}) Is Not Null,$#usn8[Count ( * )] As `4esn` Order By Case When Count(*) In $12 Then .e0 Starts With 0 Starts With 0.e0 When {usn1}[0X0123456789ABCDEF] Then $`6esn`[123456789..12][True..{`3esn`}] Else 7 Starts With {@usn6} Starts With $`` End[Case @usn6 Contains $1000 Contains {`7esn`} When 0.12 =~$0 =~$0 Then $usn1[.._usn4][..False] When {0} Ends With $_usn3 Ends With $`7esn` Then 12.e12[0e0..$`1esn`][0X0123456789ABCDEF.._usn3] End..] Desc,False Ascending Skip `2esn`[{`4esn`}][$_usn3] Limit Reduce(`4esn`=01 Ends With 999 Ends With {`7esn`},`4esn` In $`3esn` Is Not Null|1.0[`3esn`..][9e0..]) Is Null Is Null Union Foreach(`8esn` In {usn1}[0X0123456789ABCDEF]| Create Unique usn1=Allshortestpaths((`` {@usn6:1.0[$`1esn`..][$123456789..]})-[`7esn`*]->(`7esn` {`7esn`:$_usn4 Is Not Null Is Not Null,`4esn`:$`1esn`[{`2esn`}..]})-[@usn6]-(`5esn` {`4esn`:01 Is Null})),({_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})<-[:#usn7{@usn5:$usn2[9e0]}]-(`2esn` :``:#usn8) Load Csv With Headers From [_usn3 In {`3esn`}[`2esn`] Where 01234567 Is Null Is Null|999 Is Not Null Is Not Null] Ends With [`2esn` In `1esn` =~\"d_str\" Where {@usn5} Is Null Is Null|{`5esn`} Starts With $`5esn` Starts With .e1] Ends With {``:usn1 Starts With usn1 Starts With $``} As @usn5 ) Return Distinct [12.e12[$_usn3..]][Shortestpath(((@usn6 :`4esn`)))..Reduce(`5esn`=01234567 Ends With .e12 Ends With $#usn7,`8esn` In 01[2.12..`8esn`]|0Xa =~Null =~$``)] As `1esn`,$`8esn` Contains 123456789 Contains $usn2 Order By Single(usn1 In @usn5 =~{`5esn`} =~`5esn` Where 1.0 =~7 =~{usn2}) Is Not Null Is Not Null Desc,Case When 0[{usn2}..][$`6esn`..] Then {123456789} Is Not Null When $`4esn`[..$`3esn`][..0.0] Then `1esn` =~0 =~$#usn7 Else {``} Is Null End Contains Extract(#usn8 In 7[..999][..{#usn8}] Where \"d_str\"[#usn8]|$_usn3 In {1000} In 0.12) Contains All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where {@usn6}[7]) Ascending,[`5esn` In $999[0.0..] Where \"d_str\"[..{@usn5}][..``]][..None(#usn8 In 7[..999][..{#usn8}] Where $`7esn`['s_str'])][..`1esn`(Distinct 12e12[$`3esn`],0.0 =~999)] Desc Create #usn8=Allshortestpaths((({`8esn`:$usn2[9e0],_usn3:$usn1[{`5esn`}][$`6esn`]})-[? *..0x0{_usn3:01 Ends With 999 Ends With {`7esn`}}]->(`7esn` {`6esn`:$usn1 Ends With $`` Ends With $12,usn1:@usn6[$`3esn`..{`3esn`}]})-[?{usn1:0[`7esn`..]}]->({usn1:{`7esn`}[`6esn`][#usn7],usn1:{999} Starts With $999})))"), - octest_legacy:ct_string("Create Constraint On(usn2:`3esn`)Assert Exists(Filter(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where 01234567 Is Null Is Null).`2esn`?)"), - octest_legacy:ct_string("Drop Constraint On(_usn4:`6esn`)Assert @usn6(`5esn` Is Null,7[..123456789][..{@usn6}]).`6esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn6:@usn6)Assert Exists({_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1}.`1esn`!)"), - octest_legacy:ct_string("Unwind True[00][0Xa] As #usn8 Remove [0e0 Ends With 1.e1 Ends With $`4esn`].`7esn`!"), - octest_legacy:ct_string("Remove `7esn`(Distinct {usn1} Ends With $0).#usn8! Match `8esn`=(((usn2 :#usn7)<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)-[`7esn`:`1esn` *0X0123456789ABCDEF{`6esn`:1000[..$0][..True],_usn4:Count ( * ) Ends With $@usn5}]->(`4esn` {usn2:0x0 Is Null,`5esn`:{usn2} =~12}))),((_usn3 :`7esn`:_usn3)-[]-(`` :_usn4{@usn5:123.654[True..$#usn8][0.12..Count(*)]})) Unwind usn2 Ends With 12.e12 As `6esn` Union All Return *,Reduce(`2esn`=12[1.e1..{_usn3}][1.e1..1.0],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|{#usn8}[010]) Is Not Null Is Not Null,usn1 In 7 In {123456789} As `5esn` Return Distinct 07 Is Not Null Is Not Null As `6esn`,(_usn3 {#usn7:.e1 Ends With 1e1 Ends With @usn5})-[{`1esn`:{123456789}[0xabc..],@usn6:0X0123456789ABCDEF[{_usn4}..00]}]->(@usn5 :usn1)<-[`6esn`? *..0x0{_usn4:$_usn3 In {1000} In 0.12,#usn7:{`7esn`}[..{`4esn`}]}]-(:#usn8:#usn8{`2esn`:$_usn4 Contains Null Contains #usn8,`6esn`:$`5esn`[$`4esn`..{@usn6}][07..$@usn6]})[[{@usn6}[{999}..][00..],@usn5 =~{`5esn`} =~`5esn`,`7esn` Is Null]][Reduce(`7esn`=0X0123456789ABCDEF Is Null Is Null,`5esn` In $999[0.0..]|$1000[Null][`4esn`])] As @usn6 Limit Shortestpath((#usn7 :`6esn`{`4esn`:12e12 Is Not Null Is Not Null,_usn4:@usn6 Starts With `6esn` Starts With $`1esn`})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]}))[None(#usn7 In `2esn`[..$#usn8][..Count(*)])][(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})-[? *..999]->(`3esn` {usn1:#usn8 Is Not Null Is Not Null,`5esn`:010[#usn7..True]})-[:`2esn`{usn2:01[2.12..`8esn`],_usn4:1.0 Starts With 12e12 Starts With {`5esn`}}]-(@usn6 {_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]})] Detach Delete $`1esn` =~0X7,.e0 Ends With 0.12,0e0[`8esn`..][$123456789..] Union Start ``=Rel:#usn8(_usn3='s_str') ,`7esn`=Rel:`6esn`(\"d_str\")Where 0[..usn2][..{@usn5}] Delete $#usn7[..{`5esn`}][..9e12],{``}[$`8esn`..],Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6}"), - octest_legacy:ct_string("Optional Match ((`4esn` :@usn6:#usn8)-[:`8esn`*]->({_usn3:\"d_str\" Is Null Is Null,#usn7:00[$`7esn`]})-[usn1?]->(:usn2{_usn3:`7esn`[9e0..],`6esn`:.e0 Starts With 0 Starts With 0.e0})),`3esn`=Shortestpath(((:`1esn`{`5esn`:1.0 In Count(*)}))) Using Scan _usn4:`7esn` Where 0x0[{`7esn`}..][$usn2..] Detach Delete `3esn`[$`1esn`..999][``..$123456789],$12[Null..Count(*)][{`5esn`}..{999}] Load Csv With Headers From Extract(`5esn` In \"d_str\" Is Null Is Null)[Any(`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where usn1 Starts With usn1 Starts With $``)][Case $`7esn` Is Null Is Null When {#usn7}[9e1..][{123456789}..] Then False =~1e1 =~0.e0 Else 1000 In {`8esn`} In 01 End] As _usn4 Fieldterminator \"d_str\" Union All Create ({`6esn`:.e1 Ends With 1e1 Ends With @usn5,usn1:2.12 Is Not Null Is Not Null}) Union All Delete {0}[12.0..0Xa][$`5esn`..{_usn3}] Create Unique _usn3=Allshortestpaths((`8esn` {`4esn`:0Xa[$123456789..123.654][.e12..0.e0],`7esn`:$`8esn`[..00]})<-[`3esn`? *..01]->(:`6esn`{`2esn`:$#usn7[..{`5esn`}][..9e12],`8esn`:{1000}[{_usn3}..]})<-[_usn3?:#usn7 *..0x0]-(:@usn6:#usn8$`5esn`)),`8esn`=((`4esn` {_usn4:`4esn` Ends With 07 Ends With {`3esn`},usn2:$0[$`1esn`..07]})<-[usn1?:@usn5*]->(usn2 {`6esn`:9e12[{123456789}..#usn8][{_usn3}..{#usn7}],#usn7:#usn7 Contains _usn3 Contains {`3esn`}}))"), - octest_legacy:ct_string("Create Constraint On(`4esn`:_usn3)Assert Exists(Any(`5esn` In \"d_str\" Is Null Is Null Where {0}).``?)"), - octest_legacy:ct_string("Create Constraint On()-[#usn8:`1esn`]-()Assert Exists(Any(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {`3esn`} Is Not Null Is Not Null).`2esn`!)"), - octest_legacy:ct_string("Start ``=Node:`1esn`(@usn5='s_str') ,``=Node:@usn6({_usn4})Where $`8esn`[$`6esn`..$`4esn`][0.12.._usn3] Union All Detach Delete $#usn7 Is Not Null Merge ({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`) On Match Set _usn3+={_usn3}[12.e12],`3esn`+=@usn5 =~{`5esn`} =~`5esn`,#usn8 =[usn1 In @usn5 =~{`5esn`} =~`5esn` Where 9e12[`6esn`..12.0]] Starts With [@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where $`4esn`[`7esn`]|'s_str'[00][{`5esn`}]] Starts With @usn6(Distinct 0.0[$0][{@usn5}],1.0 In Count(*))"), - octest_legacy:ct_string("Create Constraint On(`7esn`:`2esn`)Assert (:`6esn`{#usn8:{`3esn`}[@usn6..0Xa][{12}..0Xa],@usn5:False Is Null Is Null})-[?:`5esn`]->(`2esn` :`3esn`:@usn5{`8esn`:_usn3 Starts With 12.e12 Starts With 0.12,#usn7:{7}[$``][{@usn6}]}).`2esn` Is Unique"), - octest_legacy:ct_string("Create Constraint On(usn1:usn2)Assert Exists(Shortestpath((_usn3 :usn2{#usn7:{999} Starts With {0}})).`6esn`?)"), - octest_legacy:ct_string("Create Constraint On(#usn7:@usn5)Assert Exists(None(_usn3 In {`3esn`}[`2esn`])._usn3?)"), - octest_legacy:ct_string("Create Constraint On()<-[``:_usn4]-()Assert Exists({#usn7:.e1 Ends With 1e1 Ends With @usn5}.@usn5)"), - octest_legacy:ct_string("Drop Constraint On(``:`7esn`)Assert Exists(Case When `5esn` Is Null Then True[..$`6esn`] Else `3esn`[`3esn`..][#usn8..] End.@usn5?)"), - octest_legacy:ct_string("Create Unique Allshortestpaths((`8esn` :usn2{usn2:$0,`4esn`:#usn8 Is Not Null Is Not Null})),({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})<-[{`5esn`:$_usn3 Contains 999 Contains \"d_str\",``:$usn1 Ends With $`` Ends With $12}]-(`3esn` :`5esn`) Return Case When usn1 Is Not Null Then $0[12.e12..] Else 7[{0}..{_usn4}] End[..Reduce(_usn3={@usn5} Is Null Is Null,_usn4 In _usn3 Starts With 12.e12 Starts With 0.12|{usn1}[0X0123456789ABCDEF])] As #usn8,$`7esn` =~7 =~12e12,$`8esn`[..{`2esn`}] Skip Reduce(`2esn`=$_usn3[.e0..$usn2],`1esn` In {`6esn`}[..$@usn6][..`7esn`]|$`7esn` Is Null Is Null)[Shortestpath((({``})))..{@usn6:{`6esn`} =~$999}] Limit `8esn`[$`8esn`..{`4esn`}] Create `3esn`=Shortestpath(((:usn1{usn1:{`6esn`}})-[@usn6?:`3esn`|:#usn8 *123456789..]->(:_usn3:_usn3{`7esn`:$`1esn` =~0X7})-[`8esn` *0X0123456789ABCDEF]-(`6esn` {_usn4:0Xa =~Null =~$``}))),@usn6=Allshortestpaths(((:`1esn`)))"), - octest_legacy:ct_string("Foreach(#usn8 In $`1esn` Ends With 9e1 Ends With $123456789| Start _usn3=Node:`8esn`(`1esn`={#usn7}) Where usn2[9e12] Remove Case When 01 Contains {`8esn`} Contains 2.12 Then $_usn3[Count(*)] Else {`3esn`}[@usn6..0Xa][{12}..0Xa] End.`5esn`!,[#usn8 In 7[..999][..{#usn8}] Where {`5esn`} Contains $0 Contains {``}|#usn7 Starts With {#usn7} Starts With `7esn`].`1esn`?) Return 1.e1 Is Null Is Null As @usn5,$`7esn` =~7 =~12e12 Limit $12[Count ( * )][0X7] Union All Remove Case When $#usn8[$`8esn`..{`8esn`}] Then $#usn8[$`8esn`..{`8esn`}] Else #usn8 Is Not Null Is Not Null End.@usn6! Start usn1=Node:_usn3({`6esn`}) ,`5esn`=Relationship(*)"), - octest_legacy:ct_string("Drop Constraint On(`4esn`:_usn3)Assert Exists((`4esn` :usn1{#usn7:1.0 Contains $_usn4,`7esn`:00 Starts With 0xabc})-[:@usn5{@usn5:{#usn7}[9e1..][{123456789}..],``:#usn7 Is Not Null Is Not Null}]->(:_usn4{`6esn`:$usn1 In {999} In $#usn7,_usn4:#usn7})<-[? *00]->(@usn5 :usn1).`1esn`!)"), - octest_legacy:ct_string("Create Constraint On()-[#usn8:`5esn`]->()Assert Exists(Reduce(`1esn`=9e0[`3esn`..$_usn4],#usn7 In `2esn`[..$#usn8][..Count(*)]|{7} In `2esn`).usn1?)"), - octest_legacy:ct_string("Return Distinct `5esn`(Distinct `2esn` Is Null,123456789[{123456789}..'s_str'])[.._usn3(.e0[..$`8esn`])][..{``:01[{@usn5}],usn2:$`3esn`[..$123456789][..$`1esn`]}] Skip [`5esn` In $999[0.0..] Where `5esn` Starts With `3esn`|12e12 Is Not Null Is Not Null]"), - octest_legacy:ct_string("Detach Delete [12.e12[$_usn3..]][..All(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where True In 0e0)][..[.e12[@usn5..#usn7][010..{usn1}],$@usn5 Is Not Null]],Count(*) In $12,{`8esn`:{@usn6}[{#usn7}..$#usn8][$_usn4..12.e12],`6esn`:2.12 =~Count(*)} =~Shortestpath(((:`4esn`{`5esn`})))"), - octest_legacy:ct_string("Start usn1=Rel:`7esn`(usn2={`7esn`}) ,``=Node:usn2(#usn8=\"d_str\") Return Distinct All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where {_usn4} Is Not Null Is Not Null) Is Null As `2esn`,{0} Ends With [`4esn` In $`3esn` Is Not Null Where 9e0[{0}..{`3esn`}][\"d_str\"..0Xa]] As `1esn`,$`6esn` =~1.e1 =~12 Limit 0e0 Starts With `2esn` Starts With $``"), - octest_legacy:ct_string("Create Constraint On(_usn3:@usn5)Assert Reduce(`7esn`={12} =~#usn8,#usn7 In {``} Is Not Null|1.e1[$`1esn`..@usn6][$0..$_usn3]).`5esn` Is Unique"), - octest_legacy:ct_string("Drop Constraint On()-[`4esn`:_usn3]->()Assert Exists(All(`4esn` In $`3esn` Is Not Null Where $`2esn`).usn2!)"), - octest_legacy:ct_string("Create Constraint On()-[`6esn`:`3esn`]-()Assert Exists({`6esn`:False =~$7 =~2.12,`1esn`:\"d_str\" Is Null Is Null}.``!)"), - octest_legacy:ct_string("Create Constraint On()-[`8esn`:``]-()Assert Exists({`7esn`:9e1[2.12],`4esn`:$`8esn` Contains 123456789 Contains $usn2}.`8esn`!)"), - octest_legacy:ct_string("Create Constraint On()-[`2esn`:usn2]-()Assert Exists({@usn5:123.654[...e0],`8esn`:07 =~01}.usn1?)"), - octest_legacy:ct_string("Drop Constraint On(`6esn`:@usn6)Assert Exists(All(#usn8 In 7[..999][..{#usn8}] Where $1000 In $1000 In $`3esn`).`8esn`?)"), - octest_legacy:ct_string("Detach Delete [`4esn` In $`3esn` Is Not Null Where $@usn5 Contains 0xabc Contains {#usn7}|`3esn`[{0}][usn1]] In [{12}[{7}][$123456789],`2esn` Starts With $_usn4] In count($1000 Is Null,0Xa[$123456789..123.654][.e12..0.e0]),{0} Contains 0.0 Contains $@usn5 With Distinct usn2 Ends With 999 Ends With .e1 As `7esn`,$`5esn`[$123456789],[#usn8 In 7[..999][..{#usn8}] Where {12} =~#usn8|\"d_str\" Contains {123456789} Contains 01] Contains {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} As `8esn` Order By $0[$`1esn`..07] Desc,Filter(#usn7 In {``} Is Not Null Where {@usn5}[{#usn8}][9e0]) Ends With Case When {#usn8}[010] Then False =~$7 =~2.12 End Descending,{`4esn`:{`4esn`} =~{7} =~{`7esn`},`8esn`:$#usn7[#usn7..]} Is Null Is Null Desc Limit Extract(`5esn` In $999[0.0..] Where {_usn3}[..\"d_str\"]) =~All(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF] Where {@usn6}[{999}..][00..]) =~Any(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where \"d_str\" Starts With 01) Optional Match ((:`3esn`:@usn5{`3esn`:{12} Is Not Null,usn1:9e0})),``=Allshortestpaths((((@usn6 :#usn7{_usn3:{_usn4} Is Not Null Is Not Null})-[`2esn`?:usn2|``{`5esn`:0X0123456789ABCDEF Is Null Is Null,_usn4:.e12 Ends With _usn4}]-({@usn6:{1000} =~$@usn6 =~12})-[@usn5?:#usn7 *1000..00]-(`` :_usn4{`1esn`:0.12 =~`5esn` =~`5esn`})))) Using Scan _usn3:_usn3 Where Count ( * ) Ends With $@usn5 Union Merge ((@usn6 {_usn3:Null Ends With {`5esn`} Ends With 0.e0,@usn5:$`7esn` =~{`8esn`} =~$usn1})) On Match Set `3esn` =Case Count(*) Is Null Is Null When {0}[12.0..0Xa][$`5esn`..{_usn3}] Then $@usn5 Is Not Null When 12.e12[0xabc] Then 2.12 =~False End Starts With Case When $`2esn`[2.12..'s_str'][{@usn6}.._usn4] Then 0X7[1000..{`1esn`}] When 7[$`2esn`..{`5esn`}] Then $123456789 Ends With {`1esn`} Ends With $`4esn` End On Match Set Case When $_usn3[Count(*)] Then 010[#usn7..True] End.`6esn` =(`` :_usn4)-[`4esn`?:_usn4|:usn2 *..01]->({`4esn`:`1esn` In .e0 In {`3esn`},`1esn`:@usn6[$`3esn`..{`3esn`}]})[\"d_str\"..Extract(_usn4 In _usn3 Starts With 12.e12 Starts With 0.12 Where $`6esn` Is Null)][Shortestpath(((:`3esn`:@usn5$7)))..usn1(Distinct $`7esn` Is Null Is Null,{#usn8}[010])],All(usn1 In @usn5 =~{`5esn`} =~`5esn` Where $_usn4 Ends With usn1 Ends With $0).@usn5? =Case When \"d_str\"[#usn8] Then Count ( * )[True..][{#usn7}..] When Count(*)[..usn2][..usn2] Then 1.e1[`8esn`][00] Else \"d_str\" Contains {123456789} Contains 01 End"), - octest_legacy:ct_string("Load Csv From 123456789[_usn3] As _usn3 Create _usn4=Shortestpath((((`7esn` )-[_usn3? *7..12{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(usn2 {@usn5:`2esn` Starts With $_usn4,`5esn`:\"d_str\" Starts With 01})<-[? *0X0123456789ABCDEF{`6esn`:`1esn` =~\"d_str\",#usn8:{`4esn`} =~9e0 =~{12}}]-(:`1esn`{``:.e1 Is Null Is Null})))),#usn8=Shortestpath(((:`4esn`{`5esn`})-[`5esn`?:_usn4|:usn2 *01234567..0Xa]->(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})<-[:`7esn` *1000..00{@usn6:$#usn8[$`8esn`..{`8esn`}],``:0Xa[usn2..]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null}))) Union Remove [usn1 In @usn5 =~{`5esn`} =~`5esn` Where 0X0123456789ABCDEF =~1e1 =~{`4esn`}|$_usn3['s_str'][07]].`6esn`?,Single(`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1).@usn5! Union Optional Match `2esn`=((`5esn` :_usn4{7})<-[`8esn`{`5esn`:{#usn7} Is Not Null Is Not Null,`3esn`:@usn6 Starts With `6esn` Starts With $`1esn`}]->(:`8esn`:`7esn`{#usn7:False =~$7 =~2.12})-[:`4esn` *0xabc..{`2esn`:False Starts With {`5esn`},`5esn`:$#usn8[$`8esn`..{`8esn`}]}]-(`3esn` :`5esn`)) Using Scan `1esn`:usn2 Where {@usn5} Is Null Is Null Return Distinct All(`3esn` In {7} Is Null Where {_usn4}[1000..{@usn5}])[..`8esn`(Distinct True Contains {0} Contains 7,{usn1}[0X0123456789ABCDEF])][..All(`` In `` Is Not Null Is Not Null Where $`3esn` In $`6esn` In $``)],None(#usn8 In 7[..999][..{#usn8}] Where 2.12['s_str'..$12][{`1esn`}..`2esn`])[[`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12] Where 12e12 Ends With {usn1}]][[$12 Ends With 07 Ends With $123456789,$@usn5 =~1000 =~1000,.e12[@usn5..$12]]] As @usn5 Order By 0.12 =~$0 =~$0 Descending Create Unique Shortestpath(((({`7esn`:0e0 Contains Null,#usn7:1.0 In Count(*)})-[@usn5?:#usn7 *1000..00]-(#usn8 :``:#usn8)-[`3esn`?:`8esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]}]-(`6esn` )))),_usn3=Shortestpath((:`3esn`:@usn5{`2esn`:{`3esn`}[..07][..{`5esn`}]})-[ *00]->({`8esn`:`1esn` Ends With {_usn3} Ends With `2esn`})-[:`1esn` *0xabc..{`3esn`:1.0 In Count(*)}]-(`2esn` :`1esn`{`8esn`:$12 Is Null Is Null,`2esn`:0e0 Contains Null}))"), - octest_legacy:ct_string("Create Constraint On(_usn3:@usn6)Assert Exists(Reduce(``=`8esn` Ends With 999 Ends With .e12,`3esn` In {7} Is Null|1.0 Starts With 12e12 Starts With {`5esn`}).#usn7?)"), - octest_legacy:ct_string("Start `5esn`=Relationship:usn1({999}) ,usn1=Relationship:_usn3(`8esn`={123456789}) Return Distinct 0e0 =~`6esn` =~123456789 As @usn5,Count ( * )[True..][{#usn7}..],2.12 =~{7} As `6esn` Order By {`2esn`}[1e1..1.0][{#usn8}..$`1esn`] Ascending,0X0123456789ABCDEF Is Null Is Null Asc Skip \"d_str\"[#usn8] Detach Delete `6esn`[2.12..01][{``}..False]"), - octest_legacy:ct_string("Create Constraint On(`4esn`:@usn5)Assert Exists([_usn3 In {`3esn`}[`2esn`]|{#usn7}[`2esn`..]].`5esn`)"), - octest_legacy:ct_string("Load Csv From `2esn`[..$#usn8][..Count(*)] As `6esn` Fieldterminator 's_str'"), - octest_legacy:ct_string("With *,'s_str' Starts With 123.654 As usn1 Skip {0} In $_usn3 Limit {`3esn`} In 01 Load Csv With Headers From 2.12 =~{7} As `7esn` Fieldterminator 's_str'"), - octest_legacy:ct_string("Drop Constraint On(usn1:usn1)Assert Exists({usn1:0X0123456789ABCDEF Is Null Is Null}.`4esn`!)"), - octest_legacy:ct_string("Drop Constraint On()<-[_usn4:@usn6]-()Assert Exists(Any(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where {`8esn`} Ends With `6esn`).`1esn`)"), - octest_legacy:ct_string("With 0.e0 In $#usn7 In $_usn3,(usn2 :@usn5)-[?{`8esn`:{7} Is Null}]->(`` )<-[`3esn`?:`3esn`|:#usn8]-(`` :#usn8:#usn8)[Reduce(usn2=`2esn` Starts With $_usn4,#usn7 In {``} Is Not Null|{7} Is Null)..][Single(#usn7 In {``} Is Not Null Where $1000[0Xa][{#usn7}])..] As `2esn` Order By $usn1 Ends With $`` Ends With $12 Desc,1e1[1000..] Ascending,{123456789}[0.e0..$123456789][0Xa..`6esn`] Descending Limit {123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4] Where `4esn` Ends With 07 Ends With {`3esn`}"), - octest_legacy:ct_string("Create Constraint On()-[`8esn`:`4esn`]-()Assert Exists(Single(`1esn` In {`6esn`}[..$@usn6][..`7esn`] Where #usn8 Is Not Null).`5esn`!)"), - octest_legacy:ct_string("Using Periodic Commit Load Csv With Headers From _usn4 Contains 2.12 As #usn8 Merge `8esn`=Allshortestpaths((`7esn` {`2esn`:_usn4 Starts With $_usn4 Starts With 12.e12,`1esn`:$#usn8[$`2esn`..][{`2esn`}..]})) With Distinct $@usn5 Contains 0xabc Contains {#usn7},Reduce(usn1=$_usn4[0e0..][False..],_usn3 In {`3esn`}[`2esn`]|0e0[07]) In Any(#usn8 In 7[..999][..{#usn8}] Where 0.12 =~$0 =~$0) In Shortestpath(((:`1esn`{})<-[usn2?:``]-(usn2 :``:#usn8)<-[{_usn3:$@usn6 Ends With $_usn4 Ends With 0.12,#usn8:usn2 Is Not Null Is Not Null}]->(:#usn7{`3esn`:$`7esn` =~{`8esn`} =~$usn1}))) As _usn3 Limit {`3esn`}[@usn6..0Xa][{12}..0Xa]"), - octest_legacy:ct_string("Drop Constraint On(@usn5:`5esn`)Assert (`5esn` :`2esn`:usn1)-[`5esn`:`5esn`{`5esn`:01234567 Is Null Is Null}]-(:#usn8:#usn8{_usn3:1000[Null..{123456789}],`5esn`:$1000[`2esn`..`5esn`][1e1..1.e1]})-[:`3esn`|:#usn8 *7..12{@usn5:_usn4 Starts With $_usn4 Starts With 12.e12}]-(`3esn` :_usn4).`8esn` Is Unique"), - octest_legacy:ct_string("Create `4esn`=Shortestpath((`6esn` {usn2:$1000 =~$`2esn`,`4esn`:{``}[010..][0xabc..]})<-[`5esn`?{`8esn`:{7} In `2esn`,`4esn`:12.e12[7..$`6esn`]}]-(`3esn` :`6esn`)),Allshortestpaths(((_usn4 :`8esn`:`7esn`{`4esn`:{`2esn`} Is Not Null Is Not Null,`1esn`:.e1 =~$`8esn`})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2}))) Foreach(`6esn` In `7esn`[..2.12][..{usn1}]| Start `2esn`=Node:@usn6({_usn4}) ,_usn3=Relationship:`8esn`({`1esn`}) Return Distinct 0X7[1000..{`1esn`}] As `3esn`,$`2esn`[12.e12..][{`4esn`}..] Order By 0.0 =~999 Asc,$`5esn` In 0.e0 Asc,{`4esn`:Count ( * ) Contains 07,#usn8:$7[0.12][usn1]} Ends With [`` In 123456789 Ends With 12.e12 Ends With $`7esn`|usn1 Is Null] Ends With Extract(`` In 123456789 Ends With 12.e12 Ends With $`7esn` Where 0X7[{@usn6}]) Ascending Limit Count ( * ) Is Null) Unwind {1000} =~0 =~123.654 As `3esn`"), - octest_legacy:ct_string("Drop Constraint On()-[@usn6:_usn4]-()Assert Exists(Allshortestpaths(((@usn5 :`4esn`))).`4esn`!)"), - octest_legacy:ct_string("Drop Constraint On()-[`5esn`:_usn3]-()Assert Exists(`7esn`(Distinct #usn7 Starts With {#usn7} Starts With `7esn`,9e0).@usn5)"), - octest_legacy:ct_string("Detach Delete All(`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6] Where $`` Is Not Null)[..Reduce(@usn6=$`4esn`[..$`3esn`][..0.0],`3esn` In {7} Is Null|$`7esn` =~{`8esn`} =~$usn1)][..Reduce(@usn6={`3esn`} Is Not Null Is Not Null,`` In `` Is Not Null Is Not Null|$`3esn` Is Null)],12.e12[$_usn3..] Union Foreach(usn1 In Case When False Then 0.e0 Ends With $#usn7 Ends With $7 When {@usn6}[{999}..][00..] Then `5esn` Ends With {``} Ends With 12.e12 Else 123.654[$`1esn`] End[Reduce(#usn8=$`6esn` Ends With Count(*),`2esn` In `1esn` =~\"d_str\"|_usn4 Contains 2.12)..]| Start @usn6=Relationship:@usn6(`4esn`='s_str') Remove (:`1esn`{_usn4:{999}})-[`4esn`?:_usn4|:usn2 *..01]->(`7esn` :`8esn`:`7esn`{#usn8:01234567[usn2..$12][{`7esn`}..$usn2]}).``!,Any(#usn8 In {`5esn`}[.e1..``] Where 0X7[..2.12])._usn4,{#usn8:$#usn7 Is Null,`6esn`:_usn4 Starts With $_usn4 Starts With 12.e12}.`5esn`?) Delete {_usn4} =~$_usn4 Union All Optional Match Shortestpath(((:@usn6:#usn8{`4esn`:{`7esn`} Is Null,_usn4:$123456789 Ends With {`1esn`} Ends With $`4esn`}))),`1esn`=Allshortestpaths(((:@usn5)-[:#usn7{`2esn`:.e12 Ends With _usn4}]-(usn1 {`4esn`:.e1[..usn2][..`8esn`],``:{`3esn`} Is Not Null Is Not Null})<-[`6esn`:``*..{_usn3:{`4esn`} Ends With {123456789} Ends With $`4esn`,``:9e1 In $`3esn` In $@usn6}]->(`` :`2esn`:usn1))) Using Join On _usn4,`4esn`,`5esn` Create _usn4=Shortestpath(((:`1esn`{#usn7:@usn6 Ends With {_usn3},`3esn`:$`1esn` Ends With 9e1 Ends With $123456789}))),`3esn`=((:`5esn`{#usn7:{123456789} Contains $#usn8})) Remove Filter(`2esn` In `1esn` =~\"d_str\" Where $`4esn` In Null In 0xabc).`6esn`?,None(`8esn` In 01[2.12..`8esn`] Where {`3esn`}[`2esn`]).`4esn`!"), - octest_legacy:ct_string("Create Constraint On(#usn8:usn1)Assert Exists([0[1.e1..12e12],999 In {`3esn`} In usn2].`5esn`)"), - octest_legacy:ct_string("Create Constraint On(`6esn`:#usn7)Assert {@usn5:{usn1}[0X0123456789ABCDEF],_usn4:usn2[$7..$123456789][$@usn6..$7]}._usn3 Is Unique"), - octest_legacy:ct_string("Create #usn8=Shortestpath(((`5esn` )-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(@usn6 {`3esn`:{``} Is Not Null})<-[`1esn` *0Xa{_usn3:Null Ends With `2esn` Ends With $usn1,#usn8:.e12 Is Not Null Is Not Null}]->(usn2 {usn1:`7esn` Starts With $#usn7 Starts With $`7esn`,`3esn`:$_usn4[Count ( * )..]}))) Optional Match (((`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})<-[`8esn`?{`2esn`:Count ( * ) Contains {`1esn`} Contains 07,#usn7:`7esn`[..2.12][..00]}]->(`7esn` {usn2:`2esn`[..$#usn8][..Count(*)]})-[usn1:_usn3|_usn3 *..999{`2esn`:'s_str'[00][{`5esn`}],@usn6:999 Is Not Null Is Not Null}]-(:`5esn`{@usn6:2.12['s_str'..$12][{`1esn`}..`2esn`],``:`8esn`[`4esn`..{#usn8}][$12..2.12]}))),(@usn6 {`1esn`:00[`2esn`..12][123456789..0.e0],`5esn`:#usn7}) Where 123.654[`3esn`..] Foreach(usn1 In usn1(Distinct $@usn5 Starts With $1000)[[`3esn` In {7} Is Null Where 1.0 Starts With 12e12 Starts With {`5esn`}|0Xa =~Null =~$``]..]| With Distinct $`8esn` Contains 123456789 Contains $usn2,{_usn4} In {12} In $0,Extract(#usn8 In 7[..999][..{#usn8}] Where 0.12 Starts With $`5esn` Starts With 12) Ends With [False =~$7 =~2.12,$`4esn` In Null In 0xabc,{`7esn`} Starts With $123456789 Starts With $@usn6] Skip _usn3[..`8esn`][..2.12] Limit 0X7[0e0..`7esn`][1000..0e0])"), - octest_legacy:ct_string("Create Constraint On(``:@usn6)Assert [$@usn5 Is Not Null,_usn3[_usn3..][12.e12..]].#usn8? Is Unique"), - octest_legacy:ct_string("Create Constraint On(@usn5:@usn6)Assert Exists(Allshortestpaths((({`8esn`:`3esn` In $0 In `1esn`,#usn8:0.e0[#usn8]})))._usn3)"), - octest_legacy:ct_string("Drop Constraint On(usn1:`6esn`)Assert Exists(None(`8esn` In 01[2.12..`8esn`] Where 0.0 In $usn1)._usn3!)"), - octest_legacy:ct_string("Create Constraint On(_usn3:`8esn`)Assert Exists([12.e12[7..$`6esn`],07 In `2esn` In 12e12,{#usn8}[.._usn4][..$`3esn`]]._usn3)"), - octest_legacy:ct_string("Foreach(`2esn` In \"d_str\"[#usn8]| Create Unique usn1=(`8esn` :@usn5{usn2:{999} Is Null Is Null,`2esn`:`3esn`[{usn1}]})-[_usn4? *..01]-(_usn4 :usn2{usn1:7[True..][2.12..],`8esn`:2.12 Ends With $_usn3 Ends With `3esn`})-[usn2?:usn2|``{_usn4:$`5esn` Is Not Null Is Not Null,``:9e0[{0}..{`3esn`}][\"d_str\"..0Xa]}]-({`2esn`:{`5esn`}[.e1..``],`1esn`:0.12 =~$0 =~$0}),(((`6esn` :_usn3:_usn3{``:$usn1 Ends With $`` Ends With $12})-[:usn1|@usn6 *7..12]->(`7esn` {usn1:`7esn`[..{usn1}],usn2:Null[``]})<-[?:_usn3|_usn3{`5esn`:{`2esn`} Starts With 123456789,#usn7:0Xa =~123456789 =~_usn4}]-(:`3esn`:@usn5$usn2))) Load Csv With Headers From $`6esn`[010..] As `7esn` Fieldterminator \"d_str\") Unwind {#usn8}[{``}..] As `6esn` Remove Reduce(`3esn`={12} Is Null Is Null,`8esn` In $`5esn`[$`4esn`..{@usn6}][07..$@usn6]|`5esn` Starts With $`2esn` Starts With $1000).`7esn`!"), - octest_legacy:ct_string("Create Constraint On(`2esn`:`4esn`)Assert Exists({`3esn`:.e0 Starts With 0 Starts With 0.e0}._usn3?)"), - octest_legacy:ct_string("With Distinct *,$_usn3 Ends With 0x0 Ends With 12.0 As usn2,[usn1 In @usn5 =~{`5esn`} =~`5esn` Where $999 Is Not Null|{_usn4} Is Not Null Is Not Null][Shortestpath((:`5esn`{``:1.0[0e0..0.e0]})-[`2esn`?:`7esn` *..07$0]-(`6esn` :`6esn`{`8esn`:{0} In _usn4,_usn3:`7esn`[..2.12][..{usn1}]})-[`3esn`?:`` *..999{#usn7:0Xa =~Null =~$``,`6esn`:$7[{usn2}..][{usn2}..]}]->(`7esn` {@usn6:1.e1[$`1esn`..@usn6][$0..$_usn3]}))..{`4esn`:{`4esn`} Ends With {usn2} Ends With {999}}][Single(`5esn` In $999[0.0..] Where .e0[..$`8esn`])..Shortestpath(((:`3esn`:@usn5$7)))] Order By usn1 Starts With $usn1 Desc,1.e1[`8esn`][00] Descending Where 0 In `2esn` In 010 Optional Match Allshortestpaths(((`7esn` :`5esn`{`3esn`:`7esn` Is Null})<-[`5esn`?:`4esn`]-(`4esn` :`7esn`:_usn3{`6esn`:{123456789}[0xabc..],usn2:{_usn4}[...e1][..$7]})<-[{`4esn`:{_usn3}[..$12][..0.12],`7esn`:1.0[0X7][{`5esn`}]}]-({`2esn`:{7} In `2esn`,`1esn`:`4esn`[1.0]}))),`1esn`=((`8esn` )) Union All With Distinct None(@usn5 In 0.12[usn2..$`5esn`][$`4esn`..0X0123456789ABCDEF])[..usn1(Distinct)][..Case {usn2}[.e0..$999] When Null[$#usn7] Then 's_str'[00][{`5esn`}] When {@usn6} Ends With 's_str' Ends With 12.0 Then @usn6 Contains Null Contains $`7esn` Else 2.12 Contains `1esn` End] As `5esn`,01 Is Null As `2esn`,{1000} =~$_usn4 Return Distinct 1.e1 Starts With 's_str' Starts With `5esn`,$123456789 Starts With {_usn4} Starts With $1000 As `6esn` Order By Allshortestpaths(((_usn4 :`8esn`:`7esn`{`4esn`:{`2esn`} Is Not Null Is Not Null,`1esn`:.e1 =~$`8esn`})<-[`4esn`?:_usn4|:usn2{`2esn`:{123456789}[0X0123456789ABCDEF..07][{`1esn`}.._usn4],`6esn`:01[{`2esn`}..{@usn6}][$`2esn`..0.0]}]-(:`8esn`:`7esn`{`8esn`:.e1[..usn2][..`8esn`],`5esn`:.e0 Starts With $`` Starts With $usn2}))) Ascending,Case When 07 Contains 0X7 Contains $`8esn` Then 123456789[{123456789}..'s_str'] When _usn3[_usn3..][12.e12..] Then $12[True..][{0}..] End Is Null Is Null Ascending,_usn4(Distinct _usn3[_usn3..][12.e12..])[[0X0123456789ABCDEF Ends With $@usn6 Ends With $`5esn`,Count ( * ) Contains 0X0123456789ABCDEF Contains {@usn6},0Xa Starts With {`6esn`} Starts With $usn1]] Desc"), - octest_legacy:ct_string("With Distinct 0X7[1000..{`1esn`}],Extract(#usn8 In {`5esn`}[.e1..``] Where {7}[..1.0][..9e0]) Ends With Extract(@usn5 In 123456789 Ends With $`6esn` Ends With $#usn7 Where `8esn` Ends With 999 Ends With .e12|9e1[..$`2esn`]) Ends With $_usn4 As `4esn`,12.e12[`3esn`] As #usn7 Where {`6esn`}[..$@usn6][..`7esn`] Create Unique (@usn6 :`1esn`)<-[@usn5{`1esn`:{`8esn`} Ends With `6esn`}]->(usn1 :@usn5{`2esn`:usn1 Starts With usn1 Starts With $``}),_usn3=(((`6esn` :@usn6:#usn8{@usn5:$1000[`2esn`..`5esn`][1e1..1.e1],_usn4:{_usn4} Starts With 0.e0 Starts With 0x0})<-[`2esn`?*..{`2esn`:$`5esn`[..$`5esn`][..$12]}]-(`1esn` :`5esn`{`5esn`:{``} Is Null})<-[ *0X7..]-(usn2 :@usn5))) Foreach(`3esn` In {123456789}[0xabc..]| Remove (_usn4 :#usn7{@usn6:01234567 Is Null Is Null,usn1:$`5esn` Starts With $0 Starts With {0}})<-[:`4esn` *..010{`1esn`:1.0 In Count(*),`4esn`:{`1esn`}[12.0..`2esn`][@usn6..{usn1}]}]-({`1esn`:`3esn`[{`2esn`}]}).`4esn`,Allshortestpaths(((:`1esn`{`5esn`:1.0 In Count(*)}))).@usn5! Delete 010 In Count(*),Count(*)[..usn2][..usn2]) Union With usn2 Ends With 999 Ends With .e1 As `7esn`,$`5esn`[$123456789],[#usn8 In 7[..999][..{#usn8}] Where {12} =~#usn8|\"d_str\" Contains {123456789} Contains 01] Contains {_usn3:0.e0 Starts With `2esn`,#usn7:1.0 Is Null Is Null} As `8esn` Order By {`6esn`}[..$@usn6][..`7esn`] Asc Match @usn6=(@usn6 {usn1:Count ( * )[0.12...e1],`6esn`:07 Contains 0X7 Contains $`8esn`})-[`6esn`?:_usn3|_usn3 *0X0123456789ABCDEF]-(@usn6 {`3esn`:{``} Is Not Null})<-[@usn5 *0X0123456789ABCDEF]->(`6esn` :`3esn`:@usn5{`3esn`:0.e0 In $#usn7 In $_usn3,_usn4:{`8esn`} Ends With `6esn`}) Where False Remove `5esn`:_usn4,[1.0[0X7][{`5esn`}],@usn6[$`3esn`..{`3esn`}]].#usn8! Union All With *,{_usn4} =~$_usn4 As _usn4 Order By {12} =~#usn8 Asc,[00[$`7esn`],{usn1} In 2.12 In 1000,01 Ends With 999 Ends With {`7esn`}] Starts With Reduce(`6esn`=00[{`8esn`}..][{`8esn`}..],`5esn` In $999[0.0..]|`5esn`[{`4esn`}..`2esn`]) Asc,$1000 Is Null Is Null Descending Skip False[$usn1.._usn4][_usn4..{`3esn`}]"), - octest_legacy:ct_string("Create Constraint On()-[`8esn`:`8esn`]-()Assert Exists(Reduce(``=$usn1[.._usn4][..False],`1esn` In `8esn`[`4esn`..{#usn8}][$12..2.12]|#usn8[#usn8..]).`8esn`)"). + octest_legacy:ct_string("Unwind 9e1[9e1...e0] As #usn7 With {_usn3} Is Not Null As `` Limit $#usn7[..{`4esn`}][..9e1] Where 1e1[..01] Foreach(@usn5 In 010 In `1esn`| Start #usn7=Relationship:usn2(_usn3='s_str') Where 0x0[{999}..][{_usn4}..]) Union Start @usn5=Node:``(#usn7=\"d_str\") Where $`6esn` Starts With 12.e12 Starts With $#usn7 Detach Delete 0.e0 Ends With False"), + octest_legacy:ct_string("Create Constraint On(usn1:`8esn`)Assert ``(Distinct `1esn` Is Null Is Null,0.0 Contains $_usn4 Contains {`2esn`})._usn3! Is Unique"), + octest_legacy:ct_string("Remove Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 123456789 Is Not Null Is Not Null).`2esn`!,(usn1 {usn2:#usn8 =~{_usn3} =~``})-[?{`2esn`:0X0123456789ABCDEF[9e12],`7esn`:{`4esn`}[..07][..$`6esn`]}]->(`1esn` {@usn5:$usn1 In 0.12 In $``}).`6esn`!,Shortestpath((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]})).`1esn`? Union All Create Unique (@usn5 :`8esn`:@usn5)<-[?:`1esn`|:`3esn`*]->({_usn4:{usn1} =~123.654 =~\"d_str\"}) Merge ((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`)) On Match Set @usn5 =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) With [`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]][..Reduce(`4esn`=@usn5[12.0][{1000}],_usn4 In `2esn`|0[$`6esn`...e1][`1esn`..$`7esn`])][..[7[010][00],$7[$`3esn`],#usn7 =~{`4esn`} =~123456789]],$1000[..12.0][..0e0] Where $12 Contains 0Xa Union All Detach Delete Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))) =~Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}),{7} Starts With $usn1 Starts With 1.0"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`6esn`)Assert {`1esn`:12 Starts With 0x0}.`8esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:#usn7)Assert Any(`2esn` In {999} Is Not Null Where 1e1[{_usn4}..123.654])._usn3! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn7:_usn4)Assert Case _usn3 Contains .e0 Contains {usn2} When $#usn7[$`4esn`] Then usn2 Ends With Count ( * ) Ends With $@usn6 Else 1e1[..$1000][..999] End.`6esn`! Is Unique"), + octest_legacy:ct_string("Return Distinct $@usn6 Ends With 01 Ends With 999 Skip {_usn3} Contains 9e0 Contains $999 Limit Allshortestpaths(((:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})<-[`7esn`?:`6esn`]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}))) Starts With All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Foreach(`2esn` In $`3esn`[..$`2esn`][..123.654]| Create `5esn`=Shortestpath(((_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->(`` {``:0x0 =~123.654 =~{999}})-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->(:`3esn`:`6esn`{@usn5:.e12 =~.e0}))),#usn8=Allshortestpaths((_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})-[`1esn`?:_usn3|`8esn` *0xabc..7]->(@usn5 :`6esn`:`8esn`)))"), + octest_legacy:ct_string("Match _usn4=Allshortestpaths((@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})),((`2esn` :#usn8)<-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` :`8esn`:@usn5)<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})) Using Index @usn6:#usn8(_usn4) Using Scan _usn4:`2esn` Where 1.e1[{#usn8}] Remove {`1esn`:9e12 Is Not Null Is Not Null}._usn3!,Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]).#usn8,Extract(`1esn` In `3esn`[07..] Where 999 Starts With 's_str'|{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]).@usn6 Detach Delete [$`1esn`[$12][Count ( * )],9e1 Ends With $@usn5 Ends With $123456789] Is Not Null Is Not Null,$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],$usn1 Is Not Null Is Not Null"), + octest_legacy:ct_string("Using Periodic Commit 0X7 Load Csv With Headers From False Ends With $`` As `6esn` Foreach(`8esn` In `1esn` Is Null Is Null| Unwind Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Is Null Is Null As #usn8)"), + octest_legacy:ct_string("Optional Match _usn4=Allshortestpaths((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})),`3esn`=((_usn4 :#usn8{`5esn`})-[#usn7:@usn6|`` *01..07]-(`6esn` :`8esn`:@usn5)-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->({`7esn`:123456789[0..]})) Using Scan `4esn`:`` Using Index usn1:@usn5(`7esn`) Where {@usn5}[12.0..1000][{`3esn`}..{7}] Optional Match ((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})-[:`5esn`]-({`7esn`:@usn5[..$@usn5][..0Xa]})-[@usn5? *0x0..{`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}]-(_usn3 {`1esn`:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:\"d_str\" Is Null Is Null}))"), + octest_legacy:ct_string("Drop Constraint On(#usn7:_usn4)Assert Allshortestpaths((`6esn` :@usn5{`4esn`:{#usn8}[$#usn7..],`4esn`:0[{@usn5}..][7..]})).usn1 Is Unique"), + octest_legacy:ct_string("Create Constraint On(`8esn`:``)Assert Filter(`1esn` In $12 Is Not Null Where {``}[010]).`1esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`1esn`)Assert Exists(({#usn7:#usn8 =~{999}})-[_usn3?:usn1 *12..{#usn7:0e0 Contains `3esn` Contains `7esn`}]-({_usn3}).`6esn`)"), + octest_legacy:ct_string("Create (((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4}))) Match `2esn`=(`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4),`5esn`=(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}) Where $`8esn` In $`2esn` In {7}"), + octest_legacy:ct_string("Match @usn6=Allshortestpaths((:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}})),(:``) Using Index usn1:_usn3(``) Using Scan `1esn`:`3esn` Where 1e1[1.e1..][123.654..] Union Foreach(@usn6 In Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999)[..Reduce(``={`8esn`}[True..][.e1..],#usn7 In 123.654 Starts With $``|{usn1}[$`8esn`..0.0])][..Any(`1esn` In $12 Is Not Null Where $12 Is Not Null Is Not Null)]| Create usn1=Allshortestpaths(((:`6esn`:`8esn`{`5esn`:{@usn5} Is Null,`8esn`:True[..010]}))),((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null})<-[usn2 *..01234567{`1esn`:@usn5 =~'s_str',`8esn`:{999} Starts With {_usn4} Starts With 00}]->(usn1 {`5esn`})<-[:`8esn`|:_usn4 *1000]->(`5esn` $`8esn`)))) Unwind $``['s_str'..][0x0..] As #usn7 Union All Merge @usn6=Allshortestpaths((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(@usn5 :`8esn`:@usn5)<-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(:`6esn`:`8esn`{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})) On Match Set @usn6($@usn6 Contains `7esn`).@usn5! =$`5esn` Ends With 00 Ends With #usn7,Reduce(usn2=True[7][$999],`` In {`1esn`} Starts With @usn6|{`4esn`}[$_usn4..][9e0..]).`6esn` ={`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn` On Create Set usn1+={usn1}[{`5esn`}..],Case {0} Is Null When $0 Is Not Null Then #usn8 Is Not Null When 12.e12[{@usn5}..][9e1..] Then `2esn`[$1000..9e12][{#usn8}..{7}] End.`6esn` =#usn8 =~{_usn3} =~``,`7esn`+=12e12 Ends With `4esn` Ends With 123456789"), + octest_legacy:ct_string("Create Constraint On()-[``:@usn6]->()Assert Exists(All(usn1 In 12.e12 In {0} In 9e1 Where {12} Contains `7esn` Contains $_usn3).`5esn`?)"), + octest_legacy:ct_string("Create Constraint On(``:`4esn`)Assert Exists({@usn5:@usn5[$12..\"d_str\"]}.@usn6!)"), + octest_legacy:ct_string("Drop Constraint On(``:`7esn`)Assert {@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2],``:{`7esn`} Is Not Null Is Not Null}.#usn8! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`1esn`:``)Assert Exists({`1esn`:12 Starts With 0x0}.`8esn`)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:`7esn`)Assert Exists([_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 9e12 Is Not Null].`7esn`?)"), + octest_legacy:ct_string("Unwind #usn7[9e0] As usn2 Union With Distinct {@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}[Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))..] As `6esn`,Filter(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123456789 Is Not Null Is Not Null) Starts With Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999) Starts With Reduce(usn2=1.e1 =~`2esn`,@usn5 In Null =~12e12|Count(*)[..``][..#usn8]) As `1esn` Order By 0x0[{999}..`1esn`][0Xa..False] Descending,{_usn4}[..$#usn7] Ascending Skip @usn6 Contains Null Merge `7esn`=Shortestpath((((`6esn` {``:`4esn`[usn1]})<-[:`6esn`{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},`6esn`:``[..$#usn7]}]->({_usn4:False[0Xa..$usn1]})-[`8esn`?{`3esn`:'s_str'[..0X7]}]-(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]})))) On Match Set `4esn`+=$`8esn`[0xabc][Null],@usn5+=0.0 In `6esn` In $@usn5 Union Remove #usn8:#usn8,Single(_usn4 In `2esn` Where 0X0123456789ABCDEF[9e12]).`1esn`! Foreach(`1esn` In All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Contains `4esn`(999 Starts With 's_str') Contains (`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})| Create (#usn8 :`7esn`),`3esn`=Shortestpath((:_usn4)-[`6esn`?{#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}]-({`3esn`:9e1 =~999})-[`3esn`? *01..07]->({`7esn`:@usn5[..$@usn5][..0Xa]})) Detach Delete Reduce(@usn5={`1esn`} In 12.e12 In 9e1,`5esn` In $`2esn`[12.e12][$@usn5]|$`6esn` Ends With {0} Ends With {`7esn`}) Is Null,``[..0X0123456789ABCDEF],{`1esn`}[$`4esn`..][False..])"), + octest_legacy:ct_string("Create Constraint On(``:`2esn`)Assert Shortestpath((`4esn` :`6esn`:`8esn`{`7esn`:Count(*)[.e12..]})<-[#usn7?:#usn8|`2esn`]-(usn2 {`8esn`:{@usn6}[0Xa..$@usn6][0..`5esn`],``:{@usn5} Starts With 1.0 Starts With 00})).#usn7 Is Unique"), + octest_legacy:ct_string("Using Periodic Commit 01234567 Load Csv With Headers From 's_str'[$usn2][Count(*)] As usn2 Fieldterminator \"d_str\" Return 9e12[{123456789}..][$`2esn`..] As `1esn`,010 Is Not Null Is Not Null As #usn7,{7} Is Null Order By $12 Contains 0Xa Descending Skip $12 Contains 0Xa Create Unique usn1=(((usn2 )<-[ *0xabc..7]->(:`4esn`:@usn6)<-[usn2?:usn2|#usn7]->(`3esn` :_usn4))),`4esn`=(`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})-[?:@usn6|`` *..0Xa]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`2esn`)Assert Single(`1esn` In $12 Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]).`2esn`! Is Unique"), + octest_legacy:ct_string("Load Csv From 123456789[12..$`4esn`] As _usn3 "), + octest_legacy:ct_string("Create Constraint On(`8esn`:@usn5)Assert Case .e12 Ends With 1000 Ends With 010 When 's_str'[.._usn4][..``] Then Count ( * )[$12..] When {`4esn`}[{`4esn`}..999] Then 07 =~$`8esn` =~9e1 Else {`1esn`} =~{_usn4} End.`1esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:``)Assert Exists([{`2esn`}[Count(*)],0.0 =~12.e12 =~1.0].`6esn`?)"), + octest_legacy:ct_string("Create Constraint On(`4esn`:`4esn`)Assert Reduce(usn1=\"d_str\"[..0.e0],`` In {`1esn`} Starts With @usn6|$`6esn`[{`3esn`}..12]).`8esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn4:#usn7)Assert Exists({`2esn`:$`7esn` In 12,`5esn`:True[..010]}.#usn8!)"), + octest_legacy:ct_string("Merge ((`2esn` {_usn4:`4esn`[usn1]})<-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(:_usn4)) On Match Set `6esn` ={1000},`` =All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.e12[$`8esn`..{`8esn`}]) Is Null,All(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]).`4esn`! =01234567[{`7esn`}..]"), + octest_legacy:ct_string("Merge `3esn`=Allshortestpaths((usn1 :usn1:_usn4)) On Match Set _usn3 ={#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null,Reduce(usn2=.e1[..\"d_str\"],#usn7 In 123.654 Starts With $``|0Xa[$1000..$123456789]).@usn6 ={`2esn`}[Count(*)],`2esn`+=[{usn2}[$`4esn`]] Starts With [_usn4 In 0.0[..{999}][..0.0] Where usn1 Contains $7 Contains $``|9e12 Is Not Null Is Not Null] On Match Set `6esn` =Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000) Contains [0x0[$`8esn`.._usn3]] Contains count({`1esn`} Is Not Null,$`2esn` Ends With 0.12 Ends With .e1),`3esn` =0.0 Contains $_usn4 Contains {`2esn`},(`4esn` {_usn4:12 Starts With {_usn4} Starts With $#usn8,_usn4:$@usn5[$`4esn`][$@usn6]})-[{`1esn`:@usn6[$usn2..#usn7]}]->({`3esn`:$usn1 In 01234567 In .e1,``:False[999]}).``? =\"d_str\" Ends With 1.0 Ends With 0e0 Union Remove Case When $1000[..12.0][..0e0] Then $_usn3 Is Null Is Null When `3esn` Is Not Null Is Not Null Then 7 Contains `2esn` Contains $`8esn` Else {`4esn`}[..{`4esn`}] End.usn2!,`7esn`:`4esn`:@usn6,Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[{999}..][{_usn4}..]|$`1esn`[$12][Count ( * )]).`5esn`! Return *,(usn1 :@usn5)<-[_usn4?:usn2|#usn7{_usn4:{`1esn`} In 12.e12 In 9e1}]-(:usn2:`2esn`)[Extract(`1esn` In $12 Is Not Null Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`|12.0 =~$#usn7 =~9e12)],[00[..$123456789][..$`5esn`],{_usn3} Contains $`1esn` Contains 12.0][..[0.e0 =~`1esn` =~`6esn`,12.0[2.12..][{`5esn`}..],1.e1[0X0123456789ABCDEF..]]][..Filter(_usn3 In True[7][$999] Where 's_str'[..0X7])] As #usn7 Order By Extract(_usn4 In 0.0[..{999}][..0.0] Where False[999]|`5esn`[0xabc..])[..{usn1:`` Ends With $`4esn` Ends With 0X0123456789ABCDEF}][..Filter(`2esn` In {999} Is Not Null Where 010 In `1esn`)] Desc,\"d_str\"[..0.e0] Ascending,$7[{`1esn`}] Descending Limit $`5esn`[`1esn`..$123456789]"), + octest_legacy:ct_string("Remove {``:00[07..],#usn7:$`3esn` In 9e12 In ``}.usn1?,{usn2:123.654[{`7esn`}][{7}],#usn8:$0[..{usn2}][..$usn1]}.usn2? Unwind $`8esn` In 0.0 In `1esn` As `6esn` Union All Detach Delete 07 =~$`8esn` =~9e1 Return *,[#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]] Is Null Is Null,{999}[9e1] As usn1 Order By {123456789} =~{@usn6} Desc,Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..] Desc,{`5esn`} Ends With \"d_str\" Desc Limit _usn4 =~0e0 Union Delete #usn7[..12e12] Foreach(`6esn` In {_usn3}[{0}]| Detach Delete 12.e12 In {0} In 9e1,$``[01],0.0 In `6esn` In $@usn5 Start @usn5=Relationship:usn2({`5esn`}) ,@usn5=Node:@usn5(\"d_str\"))"), + octest_legacy:ct_string("Remove Case 12.e12[$`8esn`..{`8esn`}] When {``} Starts With 123456789 Starts With usn2 Then 12.e12[{7}..7] End.`7esn`,usn1:`3esn`:`6esn`,Filter(#usn7 In 0Xa[@usn5][{`7esn`}] Where #usn7 Starts With $999).usn1! Union Merge usn1=Allshortestpaths(((:`6esn`:`8esn`{`5esn`:{@usn5} Is Null,`8esn`:True[..010]}))) Merge `5esn`=({_usn4:0.e0[{999}][{`1esn`}]})-[`2esn`:`3esn`|:@usn5 *..010{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->({`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]}) Return Distinct All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,1000 As `1esn`,12e12[{usn2}..][`8esn`..] Order By Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where 1.e1[12e12..{`6esn`}]|Count ( * )[..12][..{@usn6}]) Contains All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Contains Extract(_usn4 In `2esn` Where $999 Is Null) Ascending,[False Contains 0.e0 Contains Count(*)][Any(@usn5 In Null =~12e12 Where 0[`4esn`][12.e12])..[$_usn4 Is Not Null Is Not Null,`7esn` Is Not Null Is Not Null]] Descending,(`3esn` :`6esn`:`8esn`{`7esn`:{0}[..{`7esn`}],@usn6:_usn4 In $usn1})-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-({#usn7:#usn8 =~{999}}) In Shortestpath(((:`1esn`)<-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})-[`7esn`? *123456789..0X7{`6esn`:{0}[..{`7esn`}]}]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999}))) Desc"), + octest_legacy:ct_string("Foreach(`2esn` In {`3esn`} Is Null| Create Unique ((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})-[_usn3?:@usn6|``{`4esn`:#usn8 Is Null}]-({#usn7:123456789[0..]})),(((`3esn` :``)<-[:`1esn`|:`3esn` *..010{#usn7:$`1esn`[#usn8][$@usn5],usn1:{`2esn`}[Count(*)]}]->(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(#usn8 {usn1:$123456789 Starts With `5esn`}))) Unwind \"d_str\" Starts With $`8esn` Starts With {usn1} As `7esn`) Foreach(usn2 In `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]]| Start #usn8=Relationship:usn1({7}) ,`5esn`=Relationship:_usn4(usn1={_usn4})Where .e12 Ends With 1000 Ends With 010) Start _usn4=Relationship:@usn6(#usn7='s_str') Where 9e1 Ends With Count(*) Ends With False"), + octest_legacy:ct_string("With *,#usn8 Is Not Null,$usn2 Starts With $@usn6 Starts With 010 As _usn4 Order By 12.e12[$`4esn`..] Descending Skip 00 Limit 0X0123456789ABCDEF[.e1..] Where \"d_str\" Ends With False Ends With {@usn6} Merge `8esn`=(`6esn` {``:`4esn`[usn1]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]->(#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``}) On Create Set @usn6+={7}[$123456789..{1000}][$`3esn`..`7esn`],Extract(#usn7 In 0Xa[@usn5][{`7esn`}] Where $@usn5 In $usn2 In {1000}|{`2esn`}[..{@usn6}][..1.e1]).`3esn`! =$@usn6[$0..usn1][0X0123456789ABCDEF..$999] On Create Set Extract(usn1 In 12.e12 In {0} In 9e1 Where False Starts With 010|True Starts With $`4esn` Starts With 12e12).`7esn`? =0X0123456789ABCDEF Is Null Is Null,`4esn` =`3esn` In {@usn6} Union All Merge `2esn`=(@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]}) On Create Set #usn8 =(`8esn` :`5esn`:@usn5)<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5) Starts With None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 0[$`6esn`...e1][`1esn`..$`7esn`]),@usn5 =$_usn4 Is Null Is Null On Create Set #usn8+=1e1 =~#usn8 =~2.12,#usn7:`2esn`,`1esn` =Count ( * )[..12][..{@usn6}] Unwind 01 Starts With {999} Starts With $`2esn` As #usn8"), + octest_legacy:ct_string("Match #usn8=Allshortestpaths((({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))),@usn6=((usn2 :_usn3)-[`8esn`?{@usn5:Null Is Null Is Null}]->({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})-[_usn3 *..01234567$`5esn`]->({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})) Using Join On `5esn`,``,usn1 Using Join On #usn8,usn2,#usn7 Where 0X7[0X7..][Count ( * )..]"), + octest_legacy:ct_string("Unwind 1e1 Is Not Null Is Not Null As `6esn` Start #usn8=Relationship:usn1({7}) ,`2esn`=Node(123456789,01234567,01234567)Where $12 Is Not Null With Distinct Shortestpath((usn2 :_usn3)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))[Shortestpath((_usn3 :@usn5))..],`` =~`6esn` =~usn1 As `2esn` Order By $_usn4 Starts With 's_str' Starts With {7} Desc,123456789 In $`6esn` In _usn3 Ascending Where 0.12[Count(*)..][$#usn7..]"), + octest_legacy:ct_string("With Distinct .e0 =~{`8esn`} =~$999 As #usn7,$12 Is Not Null As `7esn`,{``} Is Null Is Null Limit {_usn4}[..$#usn7] Where {999} Is Null Create (((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}))),(((`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})-[_usn3?*..{#usn7:#usn8 =~{999},`8esn`:{_usn3}[`3esn`..$#usn8]}]->({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})-[@usn6 *07{`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}]->({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]}))) Merge (usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:``)Assert Case #usn7 =~{`4esn`} =~123456789 When 1.e1 =~`2esn` Then 0Xa[$1000..$123456789] When $123456789 Starts With $123456789 Starts With Count ( * ) Then 07 Is Null Else $`6esn`[`8esn`][0.0] End.`8esn` Is Unique"), + octest_legacy:ct_string("Create Unique ((`7esn` {`4esn`:#usn8 =~{999},`2esn`:9e1 =~`` =~{`7esn`}})) Match #usn8=Allshortestpaths((({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))),@usn6=((usn2 :_usn3)-[`8esn`?{@usn5:Null Is Null Is Null}]->({`2esn`:{`6esn`}[..{`2esn`}],#usn7:@usn5 Is Not Null Is Not Null})-[_usn3 *..01234567$`5esn`]->({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})) Using Join On `5esn`,``,usn1 Using Join On #usn8,usn2,#usn7 Where 0X7[0X7..][Count ( * )..]"), + octest_legacy:ct_string("Optional Match `6esn`=(((:#usn8{`2esn`:12e12 Is Not Null,_usn3:12.e12[2.12..][0xabc..]})-[:_usn4|:usn1{``:0 Contains $usn2 Contains 12e12}]-(`4esn` :`2esn`)<-[`7esn`?:_usn3|`8esn`*..]->(`2esn` :_usn3))),@usn5=(({`5esn`:0Xa[0e0..{#usn7}]})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]-(:#usn7)-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})) Remove [01 =~$`1esn`,1.e1[12e12..{`6esn`}],`8esn`].`1esn` Foreach(`6esn` In Filter(#usn7 In 123.654 Starts With $`` Where Count(*)[010..][#usn7..])[None(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $999 Ends With {0})..]| With Distinct *,{1000}[7..$usn2] As @usn5,[12e12 Starts With `1esn` Starts With usn2,Count ( * ) Is Null][(#usn8 {``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})][Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))] As `1esn` Where {_usn4}[{``}..])"), + octest_legacy:ct_string("Foreach(`5esn` In $usn1 Is Not Null Is Not Null| Return Distinct [`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]][..{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}][..`4esn`(123.654[$`1esn`..Null][1000..{_usn3}])] As `6esn` Order By @usn6[$usn2..#usn7] Ascending,{`3esn`} Ends With 0 Ends With 9e1 Desc) Load Csv With Headers From Filter(`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0}) =~({`1esn`:{123456789}[12..][$12..]})-[?:`1esn`|:`3esn`{@usn5:{`6esn`} Ends With 0e0 Ends With {``},@usn5:{`1esn`} Starts With `4esn` Starts With {0}}]->(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[`5esn`?:`7esn`]->({@usn5:Count ( * ) Is Null}) As `1esn` Fieldterminator \"d_str\" Delete 00[0.12..],{999} Starts With {12},1.e1 =~$usn2"), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:`7esn`]->()Assert Exists(Shortestpath((((:`2esn`{_usn3:00,`2esn`:12e12 Is Not Null})-[?:@usn6|`` *..0Xa]-(_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]})))).`2esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[usn2:`1esn`]-()Assert Exists(Extract(_usn4 In 0.0[..{999}][..0.0] Where True Starts With $`4esn` Starts With 12e12|`4esn`[usn1]).`6esn`?)"), + octest_legacy:ct_string("Using Periodic Commit 123456789 Load Csv From Case {7} Contains $123456789 When {0} Is Null Then 0.0 Is Not Null Is Not Null Else {usn1} =~123.654 =~\"d_str\" End Starts With `1esn`(Distinct $@usn5[`6esn`..],9e12[..0X7]) As `4esn` Foreach(`4esn` In Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3]..`1esn`(Distinct $@usn5[`6esn`..],9e12[..0X7])][Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}))..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]})]| Delete Extract(_usn4 In `2esn` Where $999 Is Null) Starts With Reduce(`5esn`=00,`2esn` In {999} Is Not Null|{`4esn`}[..07][..$`6esn`]) Starts With [`8esn`[..`4esn`][..$usn1],{#usn8}[2.12]],[1.e1 =~$usn2,@usn6[{0}..],@usn5[12.0][{1000}]][@usn6()..Case {@usn5}[..@usn6] When $`2esn` Starts With {`8esn`} Starts With {usn1} Then {``} Is Null Is Null Else 123456789 Ends With usn1 Ends With usn2 End],Case {1000}[{#usn8}] When `7esn` Contains `5esn` Contains 0X7 Then True[..010] When {#usn8} =~{999} =~{#usn7} Then `1esn`[..\"d_str\"][..$`5esn`] Else `6esn`[..{999}] End In Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where `3esn`[..{_usn4}][..{@usn5}]) Detach Delete 1.0 Is Null,{`6esn`} Ends With 0e0 Ends With {``})"), + octest_legacy:ct_string("Create Constraint On()<-[usn2:usn2]-()Assert Exists(Filter(`` In {`1esn`} Starts With @usn6 Where {`7esn`}[9e1..][@usn6..]).#usn8!)"), + octest_legacy:ct_string("Drop Constraint On(usn1:`7esn`)Assert Exists(All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e12 =~$_usn4).`5esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:`2esn`]-()Assert Exists(All(#usn7 In 0Xa[@usn5][{`7esn`}] Where 1e1[1.e1..][123.654..]).`8esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[_usn4:#usn8]-()Assert Exists(Single(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} =~_usn4 =~0.12)._usn4!)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`4esn`)Assert {`1esn`:{123456789}[12..][$12..]}.`5esn` Is Unique"), + octest_legacy:ct_string("Create Unique (({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]})),Allshortestpaths((((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})))) Return {`8esn`}[@usn5..][01..],All(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) In Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4]) In [``[00..$7],.e1 Contains $`3esn`,{``} Starts With 123456789 Starts With usn2] As `5esn` Order By [#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}][..[$`6esn`[`8esn`][0.0],$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,True[$`7esn`..{1000}]]][..None(`2esn` In {999} Is Not Null Where {``} Ends With .e12 Ends With 0.e0)] Desc,{@usn5}[Count(*)..] Asc,None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False)[Shortestpath(((({``:$7[{`1esn`}]})<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`)<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(#usn7 :@usn6))))..Extract(_usn3 In True[7][$999] Where $7 Is Null Is Null)][{`4esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:.e12 Is Null Is Null}..[`6esn` In Count(*) Ends With $`` Ends With {7} Where `1esn` =~1000 =~1000]] Descending Limit $`8esn` =~0x0 =~usn2 Union All With $`2esn`[{usn2}],`7esn` Ends With $_usn3 Ends With usn2 Skip .e1 Ends With 0Xa Ends With 00 Where `1esn`[..01] Create @usn5=Allshortestpaths((`2esn` :`5esn`:@usn5)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})),`2esn`=((@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]}))"), + octest_legacy:ct_string("Create #usn8=Allshortestpaths((_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})-[`1esn`?:_usn3|`8esn` *0xabc..7]->(@usn5 :`6esn`:`8esn`)) Load Csv With Headers From 9e12 In 1e1 In .e12 As `5esn` Union All Optional Match ((:`5esn`:@usn5)-[?:`1esn`|:`3esn` *999]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`7esn` {`3esn`:0X0123456789ABCDEF[7...e0][`1esn`..usn2],#usn7:$`4esn`[..'s_str'][..`8esn`]})) Using Scan usn1:`3esn` Using Index usn2:#usn7(usn2) Where 123456789[0..] Match `2esn`=(@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]}),Shortestpath((({_usn4:False[0Xa..$usn1]})))"), + octest_legacy:ct_string("Load Csv From {`7esn`} Ends With `` Ends With {`8esn`} As `3esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Create Constraint On()-[`1esn`:_usn3]->()Assert Exists(@usn5(Distinct $0 Starts With `2esn`).`3esn`)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`3esn`)Assert Exists([{7}[$123456789..{1000}][$`3esn`..`7esn`],\"d_str\" Ends With False Ends With {@usn6},usn1 Contains $7 Contains $``].usn2)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:@usn5)Assert Extract(_usn4 In `2esn` Where #usn8[`7esn`..]).`1esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[``:`1esn`]-()Assert Exists(Case When 12 Starts With 7 Starts With $`5esn` Then {0} =~12.0 End.`4esn`!)"), + octest_legacy:ct_string("Remove {`8esn`:$@usn6 Starts With {`1esn`} Starts With 12,_usn3:@usn6[$_usn4]}.`2esn` Load Csv With Headers From {_usn3}[$usn2..] As `` Fieldterminator 's_str'"), + octest_legacy:ct_string("Remove [`5esn` In $`2esn`[12.e12][$@usn5] Where False[0Xa..$usn1]|$usn1[$123456789..0][{`1esn`}..12.0]].@usn6! Union Merge _usn3=((_usn3 :`1esn`)) Delete 12e12 Ends With `6esn` Ends With {`3esn`} Load Csv From $@usn6[$0..usn1][0X0123456789ABCDEF..$999] As usn1 Fieldterminator \"d_str\" Union Load Csv With Headers From 1.e1[1.0] As `3esn` Unwind `` Ends With {usn1} As `1esn`"), + octest_legacy:ct_string("Optional Match `8esn`=Shortestpath((({`3esn`:123.654 Starts With $``,`7esn`:123.654[{`7esn`}][{7}]}))) Using Scan `4esn`:_usn4 Load Csv With Headers From 12.e12[..1e1] As `2esn` Merge Allshortestpaths((usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})<-[?:`6esn` *07]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}))"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:``]->()Assert Exists([{@usn6}[True..{_usn3}],$_usn4,$999 Is Null].`3esn`)"), + octest_legacy:ct_string("Create Constraint On(usn1:`4esn`)Assert Exists([#usn7 In 123.654 Starts With $`` Where {usn2}[$`4esn`]].#usn7!)"), + octest_legacy:ct_string("Remove [{_usn3}[$usn2..],`5esn` Is Null Is Null,0.12 Contains 12.0].`3esn`,Shortestpath((@usn5 :_usn4{_usn4:0X0123456789ABCDEF[$999..][@usn5..],`1esn`:_usn4 Is Null Is Null})-[:`3esn`|:@usn5{@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6}]-(usn1 :@usn5)-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})).``! Unwind {#usn8} Is Null Is Null As _usn4 Union With $`2esn`[{usn2}] Order By 07 Is Null Ascending Where {7}[{`4esn`}][`6esn`] Create Unique _usn4=Allshortestpaths(((({_usn4})<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})-[@usn6?:`2esn`]->(`7esn` )))),((:``{``:0x0 =~123.654 =~{999}})<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]}))"), + octest_legacy:ct_string("Start `7esn`=Node:`4esn`(``='s_str') ,@usn6=Node:`5esn`({0}) Merge (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}) Unwind All(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) In Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4]) In [``[00..$7],.e1 Contains $`3esn`,{``} Starts With 123456789 Starts With usn2] As `` Union All With Distinct *,`7esn`[{7}..@usn5],$`5esn`[`1esn`..$123456789] Order By $999 Contains {7} Desc,Shortestpath(((usn1 {``:.e12 =~$_usn4})))[`6esn`(_usn3 Contains .e0 Contains {usn2},`3esn`[07..])][[.e12 Ends With 1000 Ends With 010,Count(*)]] Asc Skip $`6esn`[..1.e1][..1e1] Limit All(`5esn` In $`2esn`[12.e12][$@usn5] Where $7 Ends With $`8esn`) Contains `4esn`(999 Starts With 's_str') Contains (`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]-(_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})-[usn2?:`2esn`]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Match Allshortestpaths((#usn8 :`7esn`)) Using Join On usn1 Using Join On `6esn`,_usn4"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:@usn6)Assert Reduce(@usn5={@usn6}[True..{_usn3}],#usn7 In 123.654 Starts With $``|12.e12 In {0} In 9e1).`8esn` Is Unique"), + octest_legacy:ct_string("Merge Shortestpath((((usn1 :@usn5)-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[#usn7? *999{usn2:{1000}[{``}][999]}]-({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})))) On Create Set `8esn`+=Case #usn7 Ends With $#usn7 Ends With {`8esn`} When Count(*) Ends With 123.654 Ends With $12 Then $`3esn` Contains 0 Contains 07 When 0.e0 Ends With False Then {@usn6}[True..{_usn3}] Else 9e1 Ends With Count(*) Ends With False End Starts With [$usn1 In 01234567 In .e1,9e1 =~999,$0[$1000..00][{0}..{usn1}]] Starts With Allshortestpaths((`5esn` $`8esn`)<-[``:usn2|#usn7 *..0Xa]->(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]})-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`2esn` :#usn8{_usn3:usn2 Ends With Count ( * ) Ends With $@usn6})),Single(`3esn` In 123.654[1e1..][{#usn8}..] Where $7 Is Not Null).`8esn`? =$7 In @usn5 In {@usn5} Optional Match Shortestpath((@usn6 :`2esn`)<-[ *..0Xa]->({`8esn`:Null In .e0})) Using Index ``:`6esn`(usn1) Where 0e0 Contains `3esn` Contains `7esn`"), + octest_legacy:ct_string("Drop Constraint On()-[usn2:_usn4]-()Assert Exists({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2}.`3esn`!)"), + octest_legacy:ct_string("Foreach(`` In Single(`8esn` In $12[{7}..0X0123456789ABCDEF])[Case 9e1[123456789..] When 12 Starts With 7 Starts With $`5esn` Then {_usn3} Contains True Contains 0X7 When `1esn`[..00][..{7}] Then 1.e1[12e12..{`6esn`}] End..]| With Distinct *,Case {`4esn`}[$123456789] When $999 Is Null Then 9e0 Starts With .e0 Starts With \"d_str\" Else {`7esn`}[9e1..][@usn6..] End[None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])][count(Distinct $`5esn`[$#usn7..][0xabc..])] As `2esn`,12 Is Not Null Is Not Null As #usn8 Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,Extract(usn1 In 12.e12 In {0} In 9e1 Where usn1 Contains $7 Contains $``|$`5esn`[..{`2esn`}][..{0}])[[#usn7 In 123.654 Starts With $`` Where {12} =~0.e0 =~{_usn3}]..{`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}][Case When 2.12 =~0x0 =~_usn4 Then .e1[@usn5]['s_str'] When $@usn5 In $usn2 In {1000} Then {0}[False..@usn5] Else {@usn6}[True..{_usn3}] End..`1esn`()] Ascending) Return 0.e0 Ends With False As `` Skip Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*))[Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 12.0 =~$#usn7 =~9e12)..] Optional Match usn1=(@usn6 :`2esn`)<-[ *..0Xa]->({`8esn`:Null In .e0}) Using Scan _usn4:`2esn` Using Scan `2esn`:`1esn` Where 12.e12[`7esn`] Union All Create #usn7=(_usn3 :_usn3{_usn4:$_usn4[9e0..]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}) Unwind $@usn5[$`4esn`][$@usn6] As usn2"), + octest_legacy:ct_string("With Distinct *,Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 07[..`6esn`][..'s_str']) In [$`2esn`[$usn2..][{``}..],0.e0 Ends With False] In (:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})-[`2esn`?$_usn4]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)}) Order By {#usn7}[{#usn7}..][$`4esn`..] Ascending,_usn4(Distinct 9e12[$`5esn`],$_usn4[$`4esn`..$12]) Starts With [`` In {`1esn`} Starts With @usn6 Where {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]|$`` In 0 In {1000}] Starts With [_usn4 In 0.0[..{999}][..0.0] Where Count(*) In {``}] Desc,1000 Starts With 123.654 Starts With $_usn4 Asc Where Count(*) Starts With $usn1 Starts With {usn2} Union With .e0 =~{`8esn`} =~$999 As #usn7,$12 Is Not Null As `7esn`,{``} Is Null Is Null Limit All(_usn3 In {@usn5}[..#usn7] Where $`2esn` Starts With {`8esn`} Starts With {usn1}) Starts With {usn2:{`1esn`} Is Not Null}"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`7esn`)Assert Filter(`6esn` In Count(*) Ends With $`` Ends With {7} Where `7esn` Starts With 0X7 Starts With $`7esn`).`1esn` Is Unique"), + octest_legacy:ct_string("Return *,Extract(usn1 In 12.e12 In {0} In 9e1 Where 1000)[[_usn4 In `2esn` Where `3esn` Is Not Null Is Not Null]..All(`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999])][(_usn4 {_usn3:9e1 =~999})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})..{`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}] As _usn3,Reduce(_usn4=.e1 Starts With $_usn4 Starts With {`1esn`},`6esn` In 00|usn2[True])[..[9e12[..0X7]]][..$`1esn`] Skip 0e0[..$@usn5][..$`8esn`] Limit Reduce(`3esn`={_usn3} Is Not Null,usn1 In 12.e12 In {0} In 9e1|0[Count(*)][0e0])[`6esn`(``[..0X0123456789ABCDEF])..Single(`` In {`1esn`} Starts With @usn6 Where {_usn3}[$usn2..])] Start `8esn`=Relationship:`4esn`(``='s_str') ,`8esn`=Rel( {`7esn`}) Union All Foreach(@usn5 In ({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..`2esn`(Distinct #usn8[`7esn`..])][..[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]]]| Create Unique Allshortestpaths((`` :``)-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})) Optional Match Allshortestpaths((usn2 :`5esn`:@usn5)),Allshortestpaths((((`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]-({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})-[#usn8:`` *..0{@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}]->(#usn8 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}}))))) Return Distinct [`3esn` In 123.654[1e1..][{#usn8}..] Where Count(*) Starts With $usn1 Starts With {usn2}|{`4esn`}[..07][..$`6esn`]][..{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}][..`4esn`(123.654[$`1esn`..Null][1000..{_usn3}])] As `6esn` Order By @usn6[$usn2..#usn7] Ascending,{`3esn`} Ends With 0 Ends With 9e1 Desc"), + octest_legacy:ct_string("Unwind $@usn5 Is Not Null Is Not Null As #usn7 Union With {usn2} Starts With `` Starts With {0},@usn6[2.12..$#usn8][`3esn`..{`5esn`}] As `8esn` Order By ({usn1:0[{@usn5}..][7..],`7esn`:{``}[_usn4..$`1esn`]})<-[@usn5:`8esn`|:_usn4]->(:`8esn`:@usn5{#usn7:'s_str'[_usn4..0x0]})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(_usn4 :_usn4) In (`3esn` :@usn6{`1esn`:$_usn4[{``}..][1e1..]})<-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]->(`4esn` :#usn7)<-[`3esn`]-({_usn4:0.e0[{999}][{`1esn`}]}) In Allshortestpaths((((:`7esn`{`1esn`:{1000} In {123456789},`4esn`:010 In `1esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})<-[:`3esn`|:@usn5*..]-(`3esn` :`6esn`:`8esn`)))) Desc,{_usn4}[{usn1}..$_usn3] Asc Skip {`3esn`}[$1000] Detach Delete {`2esn`} Ends With {12} Ends With 7,1e1[7..][.e1..],#usn7(Distinct)[usn2(Distinct)..{#usn7:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:#usn8[$0..False][$`1esn`..$#usn7]}][Case When {`4esn`}[..{`4esn`}] Then {`7esn`}[0X7..][0x0..] When {@usn6} Contains 123.654 Contains 01 Then #usn8 Is Not Null End..[9e12 Ends With 123456789]]"), + octest_legacy:ct_string("Create Constraint On(`2esn`:usn1)Assert Exists({``:.e1 Ends With {7} Ends With $usn1}.@usn6?)"), + octest_legacy:ct_string("Unwind #usn8 =~{usn1} =~00 As _usn4 Create Unique `3esn`=(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]}),Shortestpath(((:#usn8{`2esn`:12e12 Is Not Null,_usn3:12.e12[2.12..][0xabc..]})<-[#usn8? *..0Xa{`4esn`:$`2esn` Ends With 0.12 Ends With .e1,`4esn`:07 =~@usn5}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})<-[@usn5:`3esn`|:@usn5 *01..07{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}]->(usn1 :``{_usn3:``[{#usn8}],`3esn`:{`3esn`} Is Null}))) Remove [{#usn8}[#usn7..{`2esn`}],{1000},{@usn5}[1e1..][9e1..]]._usn4!,Allshortestpaths(((`` {``:$0[..{usn2}][..$usn1]})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}}))).@usn5!,Reduce(#usn7=9e0[#usn8],_usn3 In True[7][$999]|{`2esn`}[Count(*)]).`8esn`?"), + octest_legacy:ct_string("Remove Any(#usn7 In 0Xa[@usn5][{`7esn`}]).`4esn`"), + octest_legacy:ct_string("Optional Match Shortestpath((((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4})))),_usn4=Allshortestpaths(((usn1 :#usn7))) Where $1000[{`6esn`}..] Remove [`5esn` Is Null Is Null,$1000 Is Not Null Is Not Null].@usn6!,Single(_usn4 In 0.0[..{999}][..0.0] Where 1e1[1.e1..][123.654..]).`5esn`?,`4esn`:usn1:_usn4"), + octest_legacy:ct_string("Drop Constraint On(@usn6:@usn5)Assert Exists(({`2esn`:$_usn4[$`4esn`..$12]})<-[`3esn`?:usn2|#usn7 *0X0123456789ABCDEF]->(`4esn` :@usn6).#usn7!)"), + octest_legacy:ct_string("Remove Case When 00 =~0.e0 =~$`8esn` Then `5esn`[..9e0][..01234567] When 0X0123456789ABCDEF[$`2esn`..][`2esn`..] Then {999} Starts With {12} End.`8esn`?,Filter(`1esn` In `3esn`[07..] Where 07 Is Null).@usn5!,#usn7(Distinct `2esn`[$1000..9e12][{#usn8}..{7}]).`7esn` Union Unwind #usn7 Starts With $999 As #usn7 Optional Match Shortestpath((_usn3 {_usn4:{_usn3} Is Not Null})<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]-(`` )) Using Join On usn1,_usn4,`6esn` Using Index usn1:_usn3(``) Where {_usn3}[`3esn`..$#usn8] Union All Return Distinct [`` In {`1esn`} Starts With @usn6 Where 0Xa[$1000..$123456789]] Starts With (`7esn` )-[:_usn4|:usn1 *0X7..0Xa{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]}]-({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null}) Starts With Allshortestpaths((`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})),$`2esn` Ends With `` Ends With {12} As usn1 Order By `2esn`(Null In .e0)[_usn3(Distinct {@usn6}[$`7esn`..][False..])..[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]]] Asc,12 Is Not Null Is Not Null Desc Skip ``(#usn8 =~{999})[Single(_usn3 In {@usn5}[..#usn7])..][Case $123456789 Is Not Null When .e1[0.12] Then {@usn5}[..{12}][..0x0] When @usn5 Is Not Null Is Not Null Then \"d_str\" Ends With False Ends With {@usn6} End..] Unwind .e1[..$`4esn`][..$`6esn`] As `7esn` Create (@usn6 {usn1:$#usn7 =~{12} =~False})-[`1esn`?:_usn3|`8esn` *0xabc..7]-(`4esn` :@usn6)"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:`3esn`]-()Assert Exists(#usn8(Distinct False Contains $#usn8 Contains 9e1).#usn7?)"), + octest_legacy:ct_string("With *,$usn1 In 01234567 In .e1 Order By Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where {`1esn`} Starts With @usn6) Starts With [$_usn3[010..False],$123456789 =~`4esn`,$usn1[$123456789..0][{`1esn`}..12.0]] Descending,{#usn7:`5esn`[..9e0][..01234567]} In Case 1e1[1.e1..][123.654..] When 7[1000.._usn3][9e0..\"d_str\"] Then 12.e12[``..usn2][{#usn7}..@usn5] When 1.e1[0xabc..] Then 1.e1 Starts With $`2esn` Starts With $0 End In Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null) Desc,{7}[$7..] Desc Skip \"d_str\"[{999}..] Limit @usn5[$12..\"d_str\"] Where .e1 Contains $`3esn`"), + octest_legacy:ct_string("Create Constraint On()-[`2esn`:`2esn`]->()Assert Exists(Reduce(`2esn`=`7esn` Contains {@usn5} Contains $123456789,`6esn` In 00|$@usn6[01..@usn5][0x0..`4esn`]).`6esn`?)"), + octest_legacy:ct_string("Drop Constraint On()-[`7esn`:@usn5]->()Assert Exists(Reduce(_usn4=0Xa Contains Count ( * ),`1esn` In 0.e0 =~`1esn` =~`6esn`|0x0[$`8esn`.._usn3]).usn2)"), + octest_legacy:ct_string("Drop Constraint On()-[_usn4:@usn5]-()Assert Exists((:`5esn`:@usn5{@usn6:.e1[..{`7esn`}][..{_usn3}]})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})._usn3?)"), + octest_legacy:ct_string("Drop Constraint On()-[``:_usn4]->()Assert Exists([usn1 In 12.e12 In {0} In 9e1 Where $0[`7esn`]|`5esn`[0xabc..]].usn1)"), + octest_legacy:ct_string("Foreach(`3esn` In {@usn5} Starts With 1.0 Starts With 00| Detach Delete True Starts With $`2esn` Starts With {@usn6},.e12[\"d_str\"..][.e1..],$_usn3[..$`2esn`][..\"d_str\"]) Union All Remove Reduce(`4esn`=_usn4 Is Null Is Null,_usn3 In {@usn5}[..#usn7]|$@usn6[$`8esn`..][7..])._usn4? Optional Match (usn2 :`5esn`:@usn5)-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`5esn` :@usn5{`8esn`:Count ( * ) =~{`5esn`} =~{_usn4},#usn7:$`1esn`[..{_usn3}]})"), + octest_legacy:ct_string("Unwind {`6esn`}[All(`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0X0123456789ABCDEF[{_usn4}..9e12][$`6esn`..1.0])..][{`3esn`:{``}[010],`4esn`:$123456789 Starts With `5esn`}..] As `2esn` Return Distinct *,{@usn6} Contains 0e0,[`1esn` In $12 Is Not Null Where {`3esn`}[{`5esn`}]|True Is Not Null Is Not Null] Ends With Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End Ends With `3esn`(Distinct 1.e1 =~$usn2,0X0123456789ABCDEF Is Null Is Null) As `5esn` Order By 0Xa[..07] Ascending,False[999] Descending,'s_str'[_usn3..] Ascending Skip Single(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2])[(_usn3 {usn1:0Xa[0e0..{#usn7}],`1esn`:.e0[True..Count ( * )][#usn7..0X7]})<-[:@usn6|`` *12..{`3esn`:#usn8 =~{999}}]-({`2esn`:{7}[$7..],#usn7:`1esn` In 07})<-[_usn3:`4esn`|:#usn7{@usn5:12 Is Not Null,`2esn`:$999 In 999}]->({``:False Contains $#usn8 Contains 9e1})..] Limit {999}[$123456789..][12..] Return Distinct $@usn6[1.e1..`8esn`][Null..123456789] As `2esn` Order By $7 Is Not Null Descending Skip ({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]})<-[`5esn`?:`7esn`]->(:@usn5)<-[`4esn`:`4esn`|:#usn7{`2esn`:{`4esn`}[$_usn4..][9e0..]}]-({usn2:`1esn` In 07}) =~Reduce(@usn6=`3esn` =~9e0 =~@usn6,_usn3 In True[7][$999]|$`8esn`[..$999][..0]) =~{@usn5:12 Is Not Null,`2esn`:$999 In 999} Limit `6esn` Starts With 123.654 Union All Foreach(`8esn` In $`7esn` Contains {`1esn`} Contains 9e12| Remove (#usn7 :@usn6{`8esn`:{@usn6}[True..{_usn3}],`1esn`:07 Is Null})-[`3esn`:`6esn`{`3esn`}]-(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[`1esn`?:_usn3|`8esn` *0xabc..7]-(`4esn` :@usn6).@usn6) Optional Match #usn7=Allshortestpaths(((:`5esn`:@usn5))),@usn5=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Where _usn4[Count(*)] Foreach(`6esn` In _usn3 =~123.654| Create Unique ((`5esn` :_usn3)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})),``=(_usn4 :#usn7{`8esn`:$999 Contains {7}}) Remove (usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[`7esn`? *0X0123456789ABCDEF{@usn6:12 Starts With {_usn4} Starts With $#usn8}]-(:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}})<-[``{`3esn`:{`3esn`}[{`5esn`}]}]-({@usn5:``[{123456789}..]}).`5esn`) Union All Remove `7esn`(Distinct {999} Starts With {12},999 Ends With .e12 Ends With .e1).@usn5"), + octest_legacy:ct_string("Remove Case 0.12 Starts With 9e12 Starts With $`1esn` When $`5esn`[`1esn`][0X0123456789ABCDEF] Then 9e12 Is Not Null Is Not Null Else {`2esn`} Ends With {12} Ends With 7 End.usn1 Load Csv With Headers From $usn1[0X7] As `6esn` Fieldterminator 's_str' Foreach(@usn6 In $`` Contains 1.e1| Create Unique #usn8=Allshortestpaths((`5esn` :_usn4)<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]})),Shortestpath((((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[`6esn`?]-(`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}))))) Union All Delete 12e12 =~{#usn7} =~$`3esn` With {`3esn`}[{12}..][0.12..] As ``,$``[True..] Order By [`2esn` In {999} Is Not Null Where {@usn6}[True..{_usn3}]] =~None(#usn7 In 123.654 Starts With $`` Where {usn2}[$`4esn`]) =~Extract(`1esn` In $12 Is Not Null Where Null Is Null Is Null|$123456789 =~`4esn`) Ascending,{0}[False..@usn5] Desc Limit 12 In 999 Where Count(*)[..``][..#usn8]"), + octest_legacy:ct_string("Start `8esn`=Relationship:`7esn`({usn1}) ,@usn6=Node:`1esn`(\"d_str\")Where @usn6[$_usn4]"), + octest_legacy:ct_string("Drop Constraint On()-[`8esn`:usn1]->()Assert Exists(Filter(`1esn` In 0.e0 =~`1esn` =~`6esn` Where 0e0).`7esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:_usn4)Assert Exists(Extract(#usn7 In 123.654 Starts With $`` Where 12.e12[`7esn`]).@usn5)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`5esn`)Assert [`6esn` In Count(*) Ends With $`` Ends With {7} Where $12 Is Not Null]._usn4 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn3:@usn5)Assert Exists(Extract(#usn7 In 123.654 Starts With $`` Where $999 In 999).`6esn`!)"), + octest_legacy:ct_string("Create Constraint On(#usn7:usn2)Assert [{``} Starts With 123456789 Starts With usn2].#usn7! Is Unique"), + octest_legacy:ct_string("With *,$7 In 1.0 In 1e1,0X7 Starts With {999} Starts With 12e12 As @usn5 Skip {usn1}[$7..0x0] Return *,.e1 Contains $`3esn` As _usn3 Skip Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3]..`1esn`(Distinct $@usn5[`6esn`..],9e12[..0X7])][Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}))..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]})] Limit #usn7 Starts With 1000 Starts With .e1 Union Remove Single(`1esn` In $12 Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]).#usn7,Single(_usn4 In `2esn` Where False Ends With $``).`1esn`! Union All Merge ``=(usn2 :`4esn`:@usn6)<-[_usn3?:@usn6|``]->(usn1 :`5esn`:@usn5) On Match Set `6esn` ={_usn3}[usn1][0],Shortestpath((@usn6 {`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]})<-[`5esn`?:@usn5|:`7esn`]-(usn2 :#usn8{usn1:010 In `1esn`,`5esn`:{`4esn`}[$123456789]})).@usn5? =\"d_str\" Contains @usn6 Contains 12.e12,`7esn`+=`3esn`[..{_usn4}][..{@usn5}] On Match Set ``+=$@usn6 Contains `7esn`,_usn4:`5esn`:@usn5"), + octest_legacy:ct_string("Create Constraint On(usn1:usn1)Assert {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}.`7esn` Is Unique"), + octest_legacy:ct_string("Using Periodic Commit 12 Load Csv From (`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->({_usn3})[Reduce(usn1=0x0[$`8esn`.._usn3],_usn4 In `2esn`|{123456789} Is Not Null)..Reduce(usn1=12.0[2.12..][{`5esn`}..],_usn3 In {@usn5}[..#usn7]|1000[$7..$123456789])][[_usn4 In `2esn` Where 9e12 Ends With 123456789|07 =~$`8esn` =~9e1]..(:`5esn`:@usn5{`7esn`:0x0[{999}..][{_usn4}..],_usn4:0[`4esn`][12.e12]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]->()] As @usn5 "), + octest_legacy:ct_string("Using Periodic Commit 00 Load Csv With Headers From {@usn6} Starts With @usn5 Starts With @usn6 As `6esn` "), + octest_legacy:ct_string("Foreach(_usn3 In 12 In 999| With Distinct `7esn`[{7}..@usn5] As `6esn`,[`1esn` In $12 Is Not Null Where {`3esn`}[{`5esn`}]|True Is Not Null Is Not Null] Ends With Case When Count(*)[..``][..#usn8] Then {0}[..{`7esn`}] End Ends With `3esn`(Distinct 1.e1 =~$usn2,0X0123456789ABCDEF Is Null Is Null) As `5esn`,$999 Is Not Null Is Not Null As `3esn` With Distinct `2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] Limit `` =~`6esn` =~usn1 Where @usn5[12.0][{1000}]) Remove `1esn`:`4esn`:@usn6,{@usn6:12 Starts With {_usn4} Starts With $#usn8,`3esn`:.e1[@usn5]['s_str']}.#usn7? Union Unwind 9e0 Contains @usn6 Contains {#usn7} As `` Create #usn8=(`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})<-[? *0X7..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Load Csv With Headers From {999} Starts With {_usn4} Starts With 00 As `8esn` Fieldterminator \"d_str\" Union Return 999[12.0..][#usn7..],7[010][00] Limit `4esn` Contains #usn8 Contains 7 Create Unique `3esn`=(((`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[usn1?:`4esn`|:#usn7 *0X7..0Xa]->({_usn4:01234567[..9e1]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}))) Remove None(_usn3 In {@usn5}[..#usn7] Where $`` In 0 In {1000}).`5esn`,[@usn5 In Null =~12e12 Where 0[{usn2}..][usn1..]|_usn3[\"d_str\"]].`3esn`?,Extract(`1esn` In `3esn`[07..] Where 12 Ends With 01|{#usn7}[Count ( * )..12][$`2esn`..`4esn`]).usn1?"), + octest_legacy:ct_string("Return 1.0 In 9e1 In {`7esn`},$12 Is Not Null As `6esn`,01234567[$7..{12}] Order By False[1000][{`7esn`}] Asc,Count(*) Ends With $`` Ends With {7} Asc Skip 9e12 Contains $`7esn` Limit #usn7 Ends With $#usn7 Ends With {`8esn`} Return 1.e1 Is Null Skip $`2esn`[{``}..{1000}][#usn8..`2esn`] Limit $123456789[..$7][..$`6esn`] Union All Create @usn6=Shortestpath(((_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]}))),`8esn`=Shortestpath((({`7esn`:{`1esn`} =~{_usn4}})-[_usn3?:usn1 *12..{#usn7:0e0 Contains `3esn` Contains `7esn`}]-(`5esn` $`8esn`))) Return *,1.e1 Starts With $`2esn` Starts With $0 Union Create Unique usn1=Allshortestpaths((`2esn` :#usn8{@usn6:`7esn` Ends With $_usn3 Ends With usn2,_usn4:{12} Starts With #usn8 Starts With 0e0})<-[:`6esn`{`2esn`:0.0 Contains $_usn4 Contains {`2esn`},`6esn`:``[..$#usn7]}]->({_usn4:False[0Xa..$usn1]})),#usn7=Allshortestpaths((({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True}))) Delete 0.0 In `6esn` In $@usn5,9e12 In 1e1 In .e12,1.0[..`4esn`][..{0}] Foreach(`1esn` In $#usn7[`5esn`]| Start ``=Rel:_usn4({`2esn`}) ,`7esn`=Node:`4esn`(``='s_str')Where 1000 Is Not Null)"), + octest_legacy:ct_string("Unwind $123456789 Contains [True Starts With $`2esn` Starts With {@usn6}] Contains {@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]} As `2esn` Union All Unwind None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] As _usn3 Start `4esn`=Rel:`7esn`(usn2='s_str') Create Unique _usn3=(((`7esn` :#usn7{`5esn`:_usn4 Is Null Is Null})-[`2esn`:`2esn`{`3esn`:9e1 =~`` =~{`7esn`},usn2:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF}]-(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})-[{``:\"d_str\"[{`8esn`}..]}]-(:`4esn`:@usn6{@usn6:Count(*)[..``][..#usn8]}))),#usn8=(((:@usn5{@usn6:{7} Contains $123456789})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})-[`3esn`:`6esn`{`3esn`}]-(#usn8 :`6esn`:`8esn`{`1esn`:9e12 Is Not Null,_usn4:0X0123456789ABCDEF[$`2esn`..][`2esn`..]}))) Union All Create (usn1 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[@usn5?:_usn4|:usn1]->(:usn2:`2esn`) Merge Allshortestpaths((`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})-[``:usn2|#usn7 *..0Xa]->(:`4esn`:@usn6{usn1:$7[{`1esn`}],#usn8:\"d_str\"[..0.e0]})) On Create Set Extract(`1esn` In $12 Is Not Null Where 1e1[..$1000][..999]|True Starts With $`2esn` Starts With {@usn6}).``? =[$7 In 1.0 In 1e1,$12 Is Not Null Is Not Null,True Is Not Null Is Not Null][(`1esn` :#usn7)<-[? *0X0123456789ABCDEF]->(@usn6 :`8esn`:@usn5{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]})..[{_usn3}[$usn2..],$`3esn`[..$`2esn`][..123.654],12.e12[`7esn`]]],usn1 ={usn2} =~`7esn` =~07,usn1+=usn2[999..] On Match Set [#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}]].@usn5 =Reduce(#usn8=$7[{`1esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|$12 Contains 0Xa) Is Null Is Null,Reduce(`7esn`=$0[`7esn`],`6esn` In Count(*) Ends With $`` Ends With {7}|$7 Ends With 0X7).`5esn` =$0 Is Not Null,`1esn`+=`2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}]"), + octest_legacy:ct_string("Create (@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]}),_usn4=(@usn6 :@usn6{`5esn`:@usn5[$12..\"d_str\"],usn2:1.e1[0X0123456789ABCDEF..]}) Remove None(_usn4 In `2esn` Where `3esn`[..{_usn4}][..{@usn5}]).`1esn`,[999 Ends With .e12 Ends With .e1,{_usn3}[..$`8esn`]].@usn6? Merge @usn6=Allshortestpaths((@usn6 :@usn5{usn2:{`6esn`} Ends With 0e0 Ends With {``}})) On Create Set Reduce(`4esn`=1000,`5esn` In $`2esn`[12.e12][$@usn5]|True Starts With $`2esn` Starts With {@usn6}).`6esn`! =All(`6esn` In 00 Where {usn1} Ends With {`6esn`} Ends With 123456789) Starts With Case {123456789} Is Not Null When {usn2} =~`7esn` =~07 Then 0.0 Contains $_usn4 Contains {`2esn`} When $`` Starts With 12 Starts With $usn2 Then {`3esn`} Ends With `1esn` Ends With $@usn6 Else True[..010] End,All(`` In {`1esn`} Starts With @usn6 Where #usn7[$`5esn`..])._usn3? ={999} In 0.0 In {0},@usn5+=[12e12 Starts With `1esn` Starts With usn2,Count ( * ) Is Null][(#usn8 {``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`6esn` *..7$0]->({#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})][Allshortestpaths((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))]"), + octest_legacy:ct_string("Drop Constraint On()<-[`3esn`:`3esn`]-()Assert Exists([9e1[9e1...e0],$999 Contains {7},\"d_str\"[..0.e0]].`7esn`!)"), + octest_legacy:ct_string("Create Constraint On()-[#usn8:#usn8]->()Assert Exists(Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn1 Starts With {_usn3}|{123456789}[12..][$12..]).usn1?)"), + octest_legacy:ct_string("Create Constraint On()-[`3esn`:`2esn`]-()Assert Exists([999[12.0..][#usn7..],12.e12 In $0 In $0,1000]._usn3?)"), + octest_legacy:ct_string("Create Constraint On()-[`6esn`:`6esn`]-()Assert Exists(Shortestpath(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))).#usn7!)"), + octest_legacy:ct_string("Create Constraint On()<-[`7esn`:`2esn`]-()Assert Exists((usn1 :``{`6esn`})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})-[`7esn`? *123456789..0X7{`6esn`:{0}[..{`7esn`}]}]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999}).usn1)"), + octest_legacy:ct_string("Unwind 01234567['s_str'] As usn2 Start usn1=Node:`7esn`(`5esn`={usn2}) ,_usn3=Node:`2esn`(#usn7={usn1}) Load Csv With Headers From Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Is Null Is Null As `2esn` Fieldterminator 's_str' Union All Detach Delete $999 In 999,`2esn`[usn2..][$7..] Union All Create _usn4=Allshortestpaths(((({_usn4})<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})-[@usn6?:`2esn`]->(`7esn` )))),((:``{``:0x0 =~123.654 =~{999}})<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]})) Return *,(#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As #usn7,.e1 Ends With 0Xa Ends With 00 As _usn3"), + octest_legacy:ct_string("Create Unique ``=(({`4esn`:1000 Is Null Is Null})),Allshortestpaths((((@usn6 {usn1:$#usn7 =~{12} =~False})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}})<-[#usn7? *..0{_usn3:`3esn` =~9e0 =~@usn6,usn1:0.e0 =~`1esn` =~`6esn`}]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})))) Foreach(usn1 In 999| With {@usn5},{0} Is Null As `6esn` Skip Null In .e0) Union All Create Unique ((`1esn` :_usn3{`5esn`:{`8esn`}[..$`6esn`][..123.654],`1esn`:1000 Starts With `7esn`})),`4esn`=Shortestpath((({@usn5:``[{123456789}..]})-[`3esn`:`6esn`{`3esn`}]-({`1esn`:$123456789[..$7][..$`6esn`]})<-[#usn8{usn2:$`2esn` In {123456789},`6esn`:12.e12 In {0} In 9e1}]-(:usn2:`2esn`))) Foreach(`6esn` In {``} Starts With 123456789 Starts With usn2| Return Distinct True[..010],`1esn` =~1000 =~1000 As `8esn` Order By 0.0[9e1..][Null..] Descending,Reduce(`6esn`={@usn5} Starts With 1.0 Starts With 00,usn1 In 12.e12 In {0} In 9e1|123456789 Ends With usn1 Ends With usn2) In (_usn3 :_usn3)<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)-[`7esn`?:`` *0xabc..7]-(usn2 ) Descending Skip Reduce(#usn8=``[00..$7],_usn4 In 0.0[..{999}][..0.0]|12 Starts With $#usn7) =~usn1() =~Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where 999 Ends With .e12 Ends With .e1|0[`4esn`][12.e12]) Limit $`7esn`[$0..][{`4esn`}..])"), + octest_legacy:ct_string("Remove {@usn6:`7esn` Ends With $_usn3 Ends With usn2,_usn4:{12} Starts With #usn8 Starts With 0e0}.#usn7! With [`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]][..Reduce(`4esn`=@usn5[12.0][{1000}],_usn4 In `2esn`|0[$`6esn`...e1][`1esn`..$`7esn`])][..[7[010][00],$7[$`3esn`],#usn7 =~{`4esn`} =~123456789]],$1000[..12.0][..0e0] Where $12 Contains 0Xa Union Load Csv With Headers From `2esn` As `` "), + octest_legacy:ct_string("Create Unique ((({_usn4})<-[?:_usn3|`8esn` *1000]-({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})-[@usn6?:`2esn`]->(`7esn` ))),``=(({usn1:{usn2} =~@usn6 =~{`4esn`},usn1:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[``?:`6esn` *07{`5esn`:{12} Contains `7esn` Contains $_usn3,_usn4:$`3esn` In 9e12 In ``}]-(:@usn6)-[#usn7{usn1:1.0[{999}][$999]}]->(:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]}))"), + octest_legacy:ct_string("Foreach(#usn8 In $1000 =~{1000} =~`5esn`| Unwind Single(_usn3 In {@usn5}[..#usn7] Where ``[..$#usn7])[..{@usn5:_usn4[Count(*)],`6esn`:$`3esn` Contains 0 Contains 07}][..Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`])] As #usn7) Union Delete All(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $@usn6[01..@usn5][0x0..`4esn`]) Is Not Null Is Not Null,[`1esn` In $12 Is Not Null Where 07 =~@usn5][..Reduce(#usn8=``[00..$7],_usn4 In 0.0[..{999}][..0.0]|12 Starts With $#usn7)][..Filter(`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0})],0Xa In {`7esn`} Remove @usn5(Distinct 0.e0 Contains #usn7).`8esn`!,({usn2:`1esn` In 07})<-[?]-(:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01}).#usn7 Union Unwind 0.12[010..][{0}..] As #usn8 With Distinct Count ( * ) =~{`5esn`} =~{_usn4} As _usn3,Filter(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e1 =~999)[..Reduce(``={`8esn`}[True..][.e1..],#usn7 In 123.654 Starts With $``|{usn1}[$`8esn`..0.0])][..Any(`1esn` In $12 Is Not Null Where $12 Is Not Null Is Not Null)] As #usn8 Where {`3esn`} Ends With `1esn` Ends With $@usn6 Foreach(#usn8 In $usn1 =~010 =~07| Optional Match Shortestpath(({``:.e1 Contains $`3esn`})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})),Allshortestpaths((:usn1:_usn4{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[`8esn`? *999]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})) Using Scan `2esn`:@usn6)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`5esn`)Assert Exists([`7esn` Ends With $_usn3 Ends With usn2].@usn6?)"), + octest_legacy:ct_string("Return Distinct @usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2) As @usn5,$`` =~{``} =~0.e0 Skip Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Starts With (usn2 :``)<-[#usn7? *0X0123456789ABCDEF{usn1:.e1[@usn5]['s_str'],`2esn`:$`7esn` Is Null Is Null}]->({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]}) Merge ((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`)) On Match Set @usn5 =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Union All Delete `3esn`[..0.e0][..$usn1],$#usn7[.e1..{`7esn`}][{`6esn`}..$_usn4] Return Distinct #usn7 Starts With $999 As `6esn`,{7}[$123456789..{1000}][$`3esn`..`7esn`] Skip $123456789 Contains [True Starts With $`2esn` Starts With {@usn6}] Contains {@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]} Limit None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])]"), + octest_legacy:ct_string("Drop Constraint On(@usn5:#usn8)Assert Exists(_usn3().#usn8?)"), + octest_legacy:ct_string("Load Csv With Headers From .e0[0.12] As usn1 Fieldterminator \"d_str\" Foreach(`1esn` In `8esn`(Distinct 9e12[$`5esn`],$123456789 Is Not Null) Contains [`1esn` In `3esn`[07..] Where {`4esn`}[{`4esn`}..999]|0e0[..$@usn5][..$`8esn`]]| With Distinct *,0X0123456789ABCDEF Contains {usn1} As @usn5 Order By (:usn1:_usn4)<-[? *..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`})<-[usn2?:`2esn`*..]-(:`5esn`:@usn5{``:0.12[..$`6esn`][..$1000]}) Starts With Reduce(`8esn`=00[..$123456789][..$`5esn`],`` In {`1esn`} Starts With @usn6|False[999]) Starts With [`2esn` In {999} Is Not Null Where 's_str'[.._usn4][..``]] Descending,`2esn`(Null In .e0)[_usn3(Distinct {@usn6}[$`7esn`..][False..])..[`3esn` In 123.654[1e1..][{#usn8}..] Where $`5esn`[..{`2esn`}][..{0}]]] Asc,(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[#usn7?:@usn6|``{123456789}]->(usn1 :`8esn`:@usn5)<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})[..[12.e12 In {0} In 9e1,9e1 =~`` =~{`7esn`},0X0123456789ABCDEF[0X7..]]][..All(`1esn` In `3esn`[07..] Where `7esn`[0..$usn2][{usn2}..0.e0])] Asc Skip #usn7[00] Limit Shortestpath(((usn1 {``:.e12 =~$_usn4})))[`6esn`(_usn3 Contains .e0 Contains {usn2},`3esn`[07..])][[.e12 Ends With 1000 Ends With 010,Count(*)]]) Optional Match `6esn`=Allshortestpaths((@usn6 :usn1:_usn4)),@usn6=Shortestpath(((:#usn8{#usn8:`3esn` Is Not Null Is Not Null}))) Union Remove None(_usn4 In 0.0[..{999}][..0.0] Where {`7esn`} Is Not Null Is Not Null).`3esn`? Delete {`3esn`} Ends With `1esn` Ends With $@usn6,{12} =~0.e0 =~{_usn3},[_usn4 In 0.0[..{999}][..0.0] Where ``[..0X0123456789ABCDEF]][Reduce(``=`6esn` Is Null Is Null,`2esn` In {999} Is Not Null|{12}[999][{_usn3}])..[_usn4 In `2esn` Where 0X0123456789ABCDEF[$`5esn`..]]]"), + octest_legacy:ct_string("Drop Constraint On()-[`2esn`:@usn5]->()Assert Exists([_usn4 In 0.0[..{999}][..0.0] Where $`2esn` Is Null Is Null].`6esn`!)"), + octest_legacy:ct_string("Detach Delete {`2esn`} Ends With {12} Ends With 7,1e1[7..][.e1..],#usn7(Distinct)[usn2(Distinct)..{#usn7:0.0 Contains $_usn4 Contains {`2esn`},`4esn`:#usn8[$0..False][$`1esn`..$#usn7]}][Case When {`4esn`}[..{`4esn`}] Then {`7esn`}[0X7..][0x0..] When {@usn6} Contains 123.654 Contains 01 Then #usn8 Is Not Null End..[9e12 Ends With 123456789]] Return None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12.e12[``..usn2][{#usn7}..@usn5]) Is Null Is Null As @usn5,Reduce(#usn8={`8esn`}[..$`6esn`][..123.654],usn1 In 12.e12 In {0} In 9e1|\"d_str\" =~`1esn` =~{`5esn`}) As ``,None(`3esn` In 123.654[1e1..][{#usn8}..] Where 7[$0..][{_usn4}..])[All(`` In {`1esn`} Starts With @usn6 Where Null[{_usn4}..])..(:_usn3{0})-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]->({@usn5:``[{123456789}..]})<-[`4esn`:`3esn`|:@usn5 *..010]->({`4esn`:12 Starts With {_usn4} Starts With $#usn8})] Skip {``}[_usn4..$`1esn`] Foreach(`3esn` In {`5esn`} Contains 123456789 Contains 9e12| With `7esn` =~.e12 =~$#usn7 As `3esn`,$`8esn` Is Null Is Null As `6esn` Order By False[{`8esn`}] Asc,Reduce(usn2={`6esn`}[..{`2esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|1e1[..01]) Is Not Null Is Not Null Asc,{1000}[1000][$usn1] Ascending Skip $#usn8[{12}..]) Union Merge ((`5esn` :@usn6)<-[`2esn`?:@usn6|``]->(`1esn` {_usn4:{1000} Ends With {`8esn`}})<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})) On Create Set _usn4+=Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where 12e12 Is Not Null)[..Reduce(`1esn`=$`3esn` In 9e12 In ``,`2esn` In {999} Is Not Null|$@usn5[..usn2][..$#usn7])],Shortestpath(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))).`7esn`! =1e1[{_usn4}..123.654] On Match Set `1esn`+=`2esn` Starts With `` Starts With 1e1,Case When 0X0123456789ABCDEF[$`5esn`..] Then ``[$0..][`1esn`..] When {``} Ends With .e12 Ends With 0.e0 Then {_usn3} Is Not Null End.`3esn` =$0 Ends With False Ends With $_usn4 Load Csv With Headers From Any(`5esn` In $`2esn`[12.e12][$@usn5] Where {999} Starts With {12})[Reduce(#usn7={_usn3}[`3esn`..$#usn8],`3esn` In 123.654[1e1..][{#usn8}..]|{999} Starts With {_usn4} Starts With 00)..Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0.12[..$`6esn`][..$1000])][All(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])..[$_usn3 Is Null Is Null,`5esn` Is Null Is Null,7 Is Null Is Null]] As `2esn` "), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`4esn`)Assert [00[..$123456789][..$`5esn`],{_usn3} Contains $`1esn` Contains 12.0].``? Is Unique"), + octest_legacy:ct_string("Return Extract(#usn7 In 123.654 Starts With $`` Where #usn8[`7esn`..]|0.0[..{999}][..0.0])[..Extract(`1esn` In `3esn`[07..] Where 00[07..]|$#usn7 Starts With 9e0 Starts With 2.12)][..None(_usn4 In `2esn` Where {`8esn`}[0X7][$`3esn`])],All(usn1 In 12.e12 In {0} In 9e1 Where {12}[usn2])[Reduce(``=$@usn5[..usn2][..$#usn7],`6esn` In Count(*) Ends With $`` Ends With {7}|{`4esn`}[$123456789..])..][{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]}..] Skip [{999} Starts With {12},9e1 Ends With Count(*) Ends With False,0X0123456789ABCDEF[`5esn`..][$#usn8..]] In Single(`6esn` In 00 Where 0X0123456789ABCDEF Is Null Is Null) Limit (:``{`1esn`:#usn8 Is Not Null,`5esn`:$@usn6[$0..usn1][0X0123456789ABCDEF..$999]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:_usn3{#usn8:\"d_str\" Ends With False Ends With {@usn6}})-[?:_usn3|`8esn` *12..{`8esn`:$999 Ends With {0},`2esn`:`1esn`[Null..]}]-(`6esn` :`2esn`{`7esn`:#usn8 =~{999}}) Ends With `6esn`() Ends With Shortestpath(((`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})-[:#usn8|`2esn`]->(:`3esn`:`6esn`)-[{@usn5:{`3esn`}[{`5esn`}],_usn3:7 Is Not Null}]-(`` :_usn4{`8esn`:{7}[{`4esn`}][`6esn`]}))) Start #usn7=Node(0,0X7) Where True Is Not Null Is Not Null Return 's_str'[_usn3..] As `5esn`,{0}[False..@usn5] As `1esn` Skip 123.654 Contains $_usn3 Contains 0X0123456789ABCDEF Union Foreach(`4esn` In Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3]..`1esn`(Distinct $@usn5[`6esn`..],9e12[..0X7])][Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}))..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]})]| Delete Extract(_usn4 In `2esn` Where $999 Is Null) Starts With Reduce(`5esn`=00,`2esn` In {999} Is Not Null|{`4esn`}[..07][..$`6esn`]) Starts With [`8esn`[..`4esn`][..$usn1],{#usn8}[2.12]],[1.e1 =~$usn2,@usn6[{0}..],@usn5[12.0][{1000}]][@usn6()..Case {@usn5}[..@usn6] When $`2esn` Starts With {`8esn`} Starts With {usn1} Then {``} Is Null Is Null Else 123456789 Ends With usn1 Ends With usn2 End],Case {1000}[{#usn8}] When `7esn` Contains `5esn` Contains 0X7 Then True[..010] When {#usn8} =~{999} =~{#usn7} Then `1esn`[..\"d_str\"][..$`5esn`] Else `6esn`[..{999}] End In Single(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where `3esn`[..{_usn4}][..{@usn5}]) Detach Delete 1.0 Is Null,{`6esn`} Ends With 0e0 Ends With {``}) Union All Merge `8esn`=((`5esn` )) On Match Set (:usn1:_usn4{`4esn`:#usn7 Starts With 1000 Starts With .e1})-[`7esn`]->(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}).``? =$`2esn`[{usn1}..],None(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e12 =~$_usn4).`7esn`! =Reduce(@usn5=True[7][$999],usn1 In 12.e12 In {0} In 9e1|.e12 =~$_usn4)[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])][[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]]] On Create Set _usn4+=0.12[Count(*)..][$#usn7..],None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]).@usn6! =[$`1esn`[$12][Count ( * )],9e1 Ends With $@usn5 Ends With $123456789] Is Not Null Is Not Null Start @usn6=Node:@usn5({usn1}) ,#usn8=Node:`6esn`(#usn8={@usn5})Where {7} Starts With $usn1 Starts With 1.0"), + octest_legacy:ct_string("Return Distinct *,.e0 =~{`8esn`} =~$999 As #usn7,010 In $`5esn` In 0 As `6esn` Order By $usn1 In 0.12 In $`` Descending,Count ( * ) Contains 12 Descending Skip $`` In `7esn` Limit [#usn7 In 123.654 Starts With $`` Where `1esn` In 07|$`2esn`[12.e12][$@usn5]][Shortestpath(((`1esn` :`7esn`)<-[_usn3?:_usn3|`8esn`{`4esn`:$`1esn`[07],`6esn`:00[07..]}]->(:@usn6{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})))..] Foreach(@usn5 In 010 In `1esn`| Start #usn7=Relationship:usn2(_usn3='s_str') Where 0x0[{999}..][{_usn4}..]) Union Create `6esn`=Allshortestpaths(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(:`2esn`{`6esn`:@usn6[{0}..]}))),`8esn`=({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]->(usn1 :`8esn`:@usn5{`1esn`:{#usn7} Contains 0.0 Contains $0,`2esn`:.e12[010..$123456789]})<-[_usn3?:@usn6|`` *0x0..{`3esn`}]-(@usn6 {`1esn`:01234567 In $123456789,`1esn`:{`6esn`}[..{`2esn`}]}) Load Csv With Headers From `3esn` Starts With Count(*) As `3esn` With *,$`1esn`[`6esn`..][00..],$1000 =~{1000} =~`5esn` As @usn6 Order By {#usn8}[usn1][1.0] Asc,`7esn`[{usn1}][999] Descending Skip Null In .e0 Where {999} Is Null Union Optional Match Shortestpath(((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0}))),Shortestpath((`6esn` :`8esn`:@usn5)<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})) Using Scan `8esn`:#usn7"), + octest_legacy:ct_string("Create Constraint On(@usn5:`1esn`)Assert [_usn4 In `2esn` Where {`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]].``! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:usn1)Assert Exists((:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[?:usn2|#usn7]->(#usn8 :#usn7)-[#usn7{usn1:1.0[{999}][$999]}]->(:#usn7{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]}).`8esn`)"), + octest_legacy:ct_string("Delete $123456789 Contains [True Starts With $`2esn` Starts With {@usn6}] Contains {@usn5:_usn4 Is Null Is Null,`6esn`:`1esn`[..01]} Load Csv With Headers From 7[$0..][{_usn4}..] As usn1 Start `7esn`=Node:`4esn`(``='s_str') Where 01 =~$`1esn`"), + octest_legacy:ct_string("Load Csv From (#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Starts With Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where 's_str' Starts With 12e12 Starts With $_usn4|00[Count(*)...e0][$#usn7..0X0123456789ABCDEF]) As `` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Drop Constraint On()-[`7esn`:`6esn`]->()Assert Exists([{999} Starts With {12}].#usn7!)"), + octest_legacy:ct_string("Start `4esn`=Node:`1esn`(#usn7=\"d_str\") Where $_usn3 Is Null Is Null Unwind `7esn`[0..$usn2][{usn2}..0.e0] As `1esn` Create `7esn`=((:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null})<-[`2esn`?:@usn6|`` *..00]->({_usn3})) Union All Unwind 123.654 Contains $#usn8 Contains .e1 As usn2 Merge _usn4=(({`5esn`:0Xa[0e0..{#usn7}]})<-[?:``]-(`7esn` :`3esn`:`6esn`)) On Match Set `5esn`+=Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..],[`6esn` In Count(*) Ends With $`` Ends With {7} Where @usn5 =~'s_str'|{_usn3} Contains 9e0 Contains $999].usn2 =9e12 Is Null On Match Set `5esn` =True[..010],#usn8+=Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}),`3esn` =@usn6[$_usn4] Load Csv From Shortestpath((((`6esn` :`7esn`)-[_usn4 *0x0..]-(:``$_usn4)<-[#usn8?:``]-({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]})))) Starts With Case 0.0 =~12.e12 =~1.0 When 0.e0 Ends With False Then 00[..$123456789][..$`5esn`] Else _usn3[$usn2..0] End Starts With [True[7][$999],{`8esn`}[0X7][$`3esn`]] As `3esn` Fieldterminator \"d_str\" Union All Merge (({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})) Optional Match Shortestpath((_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})-[? *1000]->(`5esn` {usn2:$#usn7 Starts With 9e0 Starts With 2.12})),`7esn`=(((`8esn` {@usn6:12 Starts With {_usn4} Starts With $#usn8,`3esn`:.e1[@usn5]['s_str']})-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(:`2esn`{`6esn`:@usn6[{0}..]})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:``{`2esn`:Null In .e0,usn1:01234567[..9e1]}))) Using Index usn2:``(#usn8) Using Index usn1:`3esn`(`3esn`) Where Count ( * ) Starts With 010 Starts With 0x0"), + octest_legacy:ct_string("Create usn2=(((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[{#usn7:'s_str'[_usn4..0x0]}]-(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``}))),`7esn`=Allshortestpaths(((:#usn8{`3esn`:`2esn` Starts With `` Starts With 1e1,`8esn`:0Xa[..{1000}][..$#usn7]})<-[? *01..07{`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]}]->(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}))) Remove Reduce(`2esn`={1000},_usn3 In {@usn5}[..#usn7]|00).`6esn`! Create Unique #usn7=((_usn3 :`7esn`)<-[`1esn`?:usn1{@usn6:{`1esn`} Starts With @usn6,usn2:1e1 Contains usn2}]-({``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`})-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})),@usn5=(({`5esn`:0Xa[0e0..{#usn7}]})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]-(:#usn7)-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})) Union Create Unique `5esn`=Allshortestpaths((usn2 :`5esn`:@usn5)),@usn5=(({_usn4:False[0Xa..$usn1]})) Foreach(`1esn` In True[$`7esn`..{1000}]| Create (((:`8esn`:@usn5)-[`5esn`? *..010{`7esn`:$_usn3 =~{_usn4} =~$`6esn`}]-(:``$_usn4)<-[`3esn`?:_usn3|`8esn` *0xabc..7{`3esn`:`7esn`[0..$usn2][{usn2}..0.e0],`7esn`:0.0[9e1..][Null..]}]-(usn2 {_usn3:$0 In _usn4}))) Unwind `3esn`[$@usn5..@usn5][9e1..$``] As #usn8) Load Csv With Headers From {`4esn`}[{`1esn`}][{1000}] As `6esn` Fieldterminator \"d_str\" Union Detach Delete 2.12 In $`8esn` In {`7esn`},12.e12[``..usn2][{#usn7}..@usn5],Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where 12e12 Is Not Null)[..Reduce(`1esn`=$`3esn` In 9e12 In ``,`2esn` In {999} Is Not Null|$@usn5[..usn2][..$#usn7])]"), + octest_legacy:ct_string("Create Constraint On(`6esn`:``)Assert Exists(Single(#usn7 In 0Xa[@usn5][{`7esn`}] Where 12[..$@usn6]).`3esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`4esn`)Assert Exists((_usn4 :usn1:_usn4{`7esn`:{usn2} =~`7esn` =~07})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`3esn` {`1esn`:$`6esn` Starts With 12.e12 Starts With $#usn7})-[_usn4 *0x0..]-(:``$_usn4).#usn8!)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`7esn`)Assert Allshortestpaths(({`7esn`:123456789[0..]})-[`6esn`?:_usn3|`8esn`]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})).#usn8 Is Unique"), + octest_legacy:ct_string("Load Csv From .e1[..{`7esn`}][..{_usn3}] As usn1 Fieldterminator \"d_str\" Merge usn1=((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]})) Union All Merge (:`5esn`:@usn5{``:0.12[..$`6esn`][..$1000]}) Union Unwind {999} Is Not Null As `6esn` Return Distinct Count(*) Is Not Null,{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] Order By [0.12[..$`6esn`][..$1000],0.12 Starts With 9e12 Starts With $`1esn`,\"d_str\" Contains @usn6 Contains 12.e12] Is Null Ascending,{1000}[{``}][999] Asc Foreach(_usn3 In .e1 Contains $`3esn`| Optional Match Allshortestpaths(((`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999}))),`1esn`=(`8esn` :`8esn`:@usn5)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4) Using Scan `4esn`:_usn4)"), + octest_legacy:ct_string("Create `4esn`=Shortestpath(((:`7esn`{#usn8:1000 Is Not Null})-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(:#usn8{#usn7:{usn1} In Count ( * ),``:$`5esn`[..{`2esn`}][..{0}]}))),((#usn8 {`8esn`:{7} Contains $123456789})) Merge `4esn`=Shortestpath((`3esn` {@usn6:12 Starts With {_usn4} Starts With $#usn8})) On Match Set `5esn`+=Any(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}])[count(Distinct $`1esn`[07..][9e12..])..],[`6esn` In Count(*) Ends With $`` Ends With {7} Where @usn5 =~'s_str'|{_usn3} Contains 9e0 Contains $999].usn2 =9e12 Is Null Remove usn1:`4esn`:@usn6,`3esn`:`1esn`,({usn2:`1esn` In 07})<-[usn2? *0xabc..7{usn1:$123456789 Starts With `5esn`}]->(:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})-[`6esn`?:_usn3|`8esn`]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]}).@usn6 Union Unwind #usn7[9e0] As `` Union Return Distinct *,0 Contains $usn2 Contains 12e12 Order By $_usn4 Contains {#usn7} Contains `1esn` Descending,$`1esn`[#usn8][$@usn5] Asc,0e0 Contains `3esn` Contains `7esn` Descending Skip ``(#usn8 =~{999})[Single(_usn3 In {@usn5}[..#usn7])..][Case $123456789 Is Not Null When .e1[0.12] Then {@usn5}[..{12}][..0x0] When @usn5 Is Not Null Is Not Null Then \"d_str\" Ends With False Ends With {@usn6} End..] Create Unique @usn5=(`6esn` :`8esn`:@usn5),usn1=((`2esn` )<-[usn1{`8esn`:`2esn` Starts With `` Starts With 1e1}]->(`3esn` :#usn7)) Create _usn3=(`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})<-[usn2 *07{usn1:07 =~@usn5}]->(_usn4 {`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}),@usn5=({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})"), + octest_legacy:ct_string("Foreach(`8esn` In {@usn5}[12.0..1000][{`3esn`}..{7}]| Optional Match @usn5=((@usn5 :`8esn`:@usn5)<-[:`1esn`|:`3esn` *07{@usn6:$#usn7 Ends With 0.12 Ends With {@usn6}}]-(`6esn` {``:`4esn`[usn1]})<-[@usn6?:`8esn`|:_usn4 *0X7..0Xa{`3esn`:9e1 =~999}]-(`2esn` :`7esn`{`2esn`:Count(*)[010..][#usn7..]})),Allshortestpaths(({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]}))) Match Allshortestpaths(({`5esn`:0Xa[0e0..{#usn7}]})<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})),usn2=((`4esn` :`7esn`))"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`8esn`)Assert (`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[`3esn`?:`3esn`|:@usn5 *0x0..]->(usn1 :`6esn`:`8esn`)-[#usn7? *999{`4esn`:#usn8 Is Null}]->(@usn6 :usn1:_usn4{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}).`6esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[``:`2esn`]-()Assert Exists(Case $usn1 =~010 =~07 When $`2esn`[$usn2..][{``}..] Then .e1[0.12] End._usn4)"), + octest_legacy:ct_string("Optional Match Shortestpath(({``:.e1 Contains $`3esn`})-[`5esn`?:`3esn`|:@usn5 *999]-({`8esn`:0e0[$#usn8...e12],usn2:{``}[_usn4..$`1esn`]})),Shortestpath((:_usn3{0})-[usn2 *12..]->(:``)) Using Join On usn2,`6esn` Using Index usn1:`7esn`(_usn3) Where 1000 Load Csv With Headers From usn1[_usn4][{#usn8}] As `2esn` Fieldterminator \"d_str\" Union Detach Delete $`2esn`[{usn1}..] Foreach(_usn4 In ``(#usn8 =~{999})[Single(_usn3 In {@usn5}[..#usn7])..][Case $123456789 Is Not Null When .e1[0.12] Then {@usn5}[..{12}][..0x0] When @usn5 Is Not Null Is Not Null Then \"d_str\" Ends With False Ends With {@usn6} End..]| Create `2esn`=((#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]})-[? *07{#usn7:`5esn`[..9e0][..01234567]}]-({#usn8:0Xa Contains Count ( * ),`8esn`:Null Is Null Is Null})) Start `6esn`=Node:``(usn1={`4esn`}) ) Union Return *,$`8esn` In $`2esn` In {7} As _usn3 Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,1.e1 =~$`1esn` Ascending,12.e12[..1e1] Asc Skip [$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]][..Case {#usn8}[#usn7..{`2esn`}] When $7 Is Not Null Then $@usn6[$`8esn`..][7..] When $`4esn`[..'s_str'][..`8esn`] Then `7esn` Contains {@usn5} Contains $123456789 Else 12.e12 In $0 In $0 End] Unwind Reduce(@usn5=True =~{`1esn`},_usn4 In 0.0[..{999}][..0.0]|7[$0..][{_usn4}..]) In Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`) In All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) As usn2 Detach Delete Single(`2esn` In {999} Is Not Null Where 123.654 Ends With usn2 Ends With 0) =~{#usn8:Count(*)[010..][#usn7..]} =~Reduce(`8esn`=True Starts With $`2esn` Starts With {@usn6},`5esn` In $`2esn`[12.e12][$@usn5]|999 Ends With .e12 Ends With .e1)"), + octest_legacy:ct_string("Unwind $_usn4[$`4esn`..$12] As _usn3 Foreach(`2esn` In $usn2 In 123.654 In .e0| Remove {@usn6:.e12 Is Null Is Null}.``?,Shortestpath((:_usn3{@usn5:.e1[..\"d_str\"],#usn8:{`1esn`}[`6esn`..12e12]})<-[`7esn`?*..]-(usn1 :`1esn`{#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]})).@usn5? Create `5esn`=Allshortestpaths(((:`7esn`{usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})<-[`8esn`?:`4esn`|:#usn7]->({`1esn`:$``[..1.e1][..12],`7esn`:{1000}[1000][$usn1]})-[usn2 *07{usn1:07 =~@usn5}]->({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True}))),((:#usn8{_usn4:{`6esn`} Contains 07,_usn3:{`6esn`} Contains {usn2} Contains $1000})-[``?:usn2|#usn7 *0x0..]-(@usn5 :usn1:_usn4)-[:`5esn`]->(:@usn6{`2esn`:$999 In 999}))) Remove Filter(_usn4 In 0.0[..{999}][..0.0] Where True Starts With $`4esn` Starts With 12e12).@usn5!,(usn2 {_usn3:$0 In _usn4})-[_usn4? *07{1000}]-(`` )-[?:`6esn` *07]-(#usn7 :_usn3{`2esn`}).#usn7?,None(`2esn` In {999} Is Not Null Where {``} Ends With .e12 Ends With 0.e0).usn2 Union All Create ({#usn7:#usn8 =~{999}}) Start ``=Node:`6esn`(usn2={`8esn`}) Return Distinct Allshortestpaths((@usn5 :`3esn`:`6esn`{#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})<-[`1esn`?]->(:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}}))[Case When 123.654[$`1esn`..Null][1000..{_usn3}] Then ``[$0..][`1esn`..] When 00 Ends With `8esn` Then $usn2 Is Null Is Null Else $999 Is Null End..``(999 Starts With 's_str',1e1[1.e1..][123.654..])][Single(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`])..{usn2:{1000},`6esn`:#usn8[`7esn`..]}],$#usn8[{12}..] As `6esn`,None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7 =~{12} =~False)[[9e1[$_usn4..0xabc],{@usn6}[$`7esn`..][False..],#usn8 In `8esn` In 07]..Any(_usn4 In `2esn` Where $999 Is Null)] Skip Count(*)[.e12]"), + octest_legacy:ct_string("Foreach(#usn8 In Case Count(*) Ends With 123.654 Ends With $12 When $@usn6[$0..usn1][0X0123456789ABCDEF..$999] Then {`6esn`}[..{`2esn`}] End In Reduce(`4esn`={@usn6} In {#usn7} In 12.e12,usn1 In 12.e12 In {0} In 9e1|\"d_str\"[..0.e0]) In [_usn4 In `2esn` Where 9e12 Ends With 123456789|$999 Is Null]| Remove usn2:@usn5,Case 0.0 =~12.e12 =~1.0 When 0.e0 Ends With False Then 00[..$123456789][..$`5esn`] Else _usn3[$usn2..0] End.#usn8!,`8esn`:_usn3) Return *,{`4esn`:$`3esn` Contains 0 Contains 07}[Reduce(_usn4={123456789} =~01234567 =~`3esn`,_usn3 In True[7][$999]|0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`])][(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6)] As #usn7,_usn4 Is Null Is Null Order By {usn2} =~@usn6 =~{`4esn`} Asc,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Descending Skip `6esn` Starts With 123.654 Limit @usn6(`` Ends With $`4esn` Ends With 0X0123456789ABCDEF)[..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[:#usn8|`2esn` *0x0..{`3esn`:.e12[$7..][{`6esn`}..]}]->({usn1:1000 Is Null Is Null})]"), + octest_legacy:ct_string("Start `6esn`=Relationship:`7esn`({usn1}) Load Csv With Headers From [{`3esn`} Is Null,{@usn5} =~_usn4 =~0.12] =~Extract(_usn4 In `2esn` Where 1.0[{999}][$999]) As `2esn` Fieldterminator 's_str' Union Create Unique usn1=(:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(:`2esn`{`2esn`:123456789[0..]})-[`3esn`:`6esn`{`3esn`}]-(@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]}) Union Match ((:`6esn`:`8esn`)),`1esn`=(((#usn8 {#usn7:$1000 Is Not Null Is Not Null})<-[`2esn`?:@usn6|``]->(`1esn` {_usn4:{1000} Ends With {`8esn`}})<-[`3esn`:usn1 *0X7..0Xa]->(:#usn7{#usn7:$`8esn` In $`2esn` In {7}}))) Where {@usn6}[$`7esn`..][False..] Create Unique `3esn`=(((`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[usn1?:`4esn`|:#usn7 *0X7..0Xa]->({_usn4:01234567[..9e1]})<-[`3esn`:`8esn`|:_usn4 *..01234567]->(:`3esn`:`6esn`{`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}))) Foreach(`5esn` In 0Xa[0e0..{#usn7}]| Optional Match Allshortestpaths(((`5esn` :@usn6)<-[`2esn`?:@usn6|``]->(`1esn` {_usn4:{1000} Ends With {`8esn`}})<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}}))),@usn6=Allshortestpaths((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[#usn7?:usn1{usn2:{1000}[01234567..$_usn4][{@usn6}..$_usn3],`1esn`:$#usn7[..@usn6][..$0]}]->(@usn5 :`8esn`:@usn5)<-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(:`6esn`:`8esn`{_usn4:Count ( * ) Starts With 010 Starts With 0x0,_usn3:0x0 Ends With {``}})))"), + octest_legacy:ct_string("Match ((`3esn` :`4esn`:@usn6{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]})-[`8esn`?:``]->(`` {`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]})),`3esn`=((:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})) Using Scan ``:usn2"), + octest_legacy:ct_string("Drop Constraint On(_usn4:`1esn`)Assert [01234567[..9e1],``[{#usn8}],12e12 Is Not Null Is Not Null]._usn3! Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[#usn7:`4esn`]-()Assert Exists(Case `6esn` Ends With 2.12 Ends With @usn6 When 00[..$123456789][..$`5esn`] Then True =~{`1esn`} When {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn` Then 0.0 Is Not Null End.`4esn`)"), + octest_legacy:ct_string("Match Shortestpath((((:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})<-[:`1esn`|:`3esn` *1000]-(:usn2:`2esn`{`2esn`:@usn5[$12..\"d_str\"]})<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})))) Using Index `4esn`:usn2(`4esn`) Match (({`8esn`:0[$`6esn`...e1][`1esn`..$`7esn`]})) Union All Create `4esn`=((`7esn` {`4esn`:#usn8 =~{999},`2esn`:9e1 =~`` =~{`7esn`}})-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-({`1esn`:$123456789[..$7][..$`6esn`]})) Foreach(_usn4 In $`` In \"d_str\"| Load Csv From `4esn` Is Not Null Is Not Null As `7esn` Fieldterminator \"d_str\" Return ``[{#usn8}]) Load Csv With Headers From {#usn8} Is Null Is Null As usn2 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Load Csv With Headers From 1.e1[1.0] As `3esn` Unwind `` Ends With {usn1} As `1esn` Union All Detach Delete ``[..$#usn7],{123456789}[..'s_str'][..$@usn6] Merge @usn6=Allshortestpaths(((`6esn` :_usn3{#usn7:$@usn6[01..@usn5][0x0..`4esn`],_usn4:9e12 =~123456789 =~$999})<-[usn1? *01..07]->({`1esn`:$123456789[..$7][..$`6esn`]}))) On Create Set None(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 123.654[$`1esn`..Null][1000..{_usn3}]).@usn6! =0X0123456789ABCDEF[$`5esn`..],(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})<-[_usn3?:`1esn`|:`3esn`{`3esn`:$@usn6 Contains $`7esn` Contains 1e1,@usn5:True Starts With $`4esn` Starts With 12e12}]-(`3esn` :_usn3{_usn3:{_usn3} Contains 9e0 Contains $999,`2esn`:{_usn3}[$usn2..]})<-[`3esn`?*{#usn8:$`1esn`[..{_usn3}]}]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}).`8esn`? =$12 Is Not Null On Match Set `7esn`+=Reduce(@usn5=True =~{`1esn`},_usn4 In 0.0[..{999}][..0.0]|7[$0..][{_usn4}..]) In Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`) In All(_usn4 In 0.0[..{999}][..0.0] Where $usn1[$123456789..0][{`1esn`}..12.0]) Merge Allshortestpaths((((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))))"), + octest_legacy:ct_string("Drop Constraint On()<-[`1esn`:_usn4]-()Assert Exists(@usn5(Distinct 9e1[$_usn4..0xabc],.e12 Ends With 1000 Ends With 010).usn1!)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:`8esn`)Assert Allshortestpaths((_usn3 :_usn3)-[?:#usn7|`2esn` *0x0..]->(_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]})<-[:@usn5|:`7esn`{`8esn`:12e12 Starts With `1esn` Starts With usn2}]->(:`6esn`:`8esn`$usn2))._usn4! Is Unique"), + octest_legacy:ct_string("Merge ``=(_usn4 :#usn7{`8esn`:$999 Contains {7}}) On Match Set _usn4 =9e0 Starts With .e0 Starts With \"d_str\",`4esn` =Shortestpath((_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})-[`6esn`:#usn8|`2esn`{#usn7:$#usn7 Starts With False Starts With {`6esn`},#usn8:`1esn`[..00][..{7}]}]->(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})<-[@usn5:@usn5|:`7esn` *..010{`3esn`:#usn8 =~{999}}]-(`5esn` :`5esn`:@usn5{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})) In Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]) In Shortestpath(((`` :_usn4{`6esn`:0.0 Contains $_usn4 Contains {`2esn`},`3esn`:.e1[..{`7esn`}][..{_usn3}]}))),@usn6+={999} Starts With {_usn4} Starts With 00 Optional Match @usn6=((`4esn` :usn2:`2esn`)) Using Join On @usn5,`3esn` Using Scan `8esn`:#usn8 Where 9e12 Is Not Null"), + octest_legacy:ct_string("Foreach(`` In _usn4(Distinct 9e12[$`5esn`],$_usn4[$`4esn`..$12]) Starts With [`` In {`1esn`} Starts With @usn6 Where {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]|$`` In 0 In {1000}] Starts With [_usn4 In 0.0[..{999}][..0.0] Where Count(*) In {``}]| Load Csv From 12 In 999 As `8esn` Fieldterminator \"d_str\" Load Csv From None(`` In {`1esn`} Starts With @usn6 Where {12}[00..{@usn6}][1.e1..0])[Filter(_usn3 In True[7][$999] Where 12e12 Ends With `6esn` Ends With {`3esn`})] As _usn3 Fieldterminator \"d_str\") Start #usn8=Node:usn2(_usn3='s_str') Where 9e12 Ends With 123456789"), + octest_legacy:ct_string("With Distinct {`4esn`:{`6esn`} Contains {usn2} Contains $1000,usn2:{#usn8}[12.0][$@usn6]}[Filter(`6esn` In 00 Where 0Xa[0e0..{#usn7}])..] As `4esn`,{usn1}[$`8esn`..0.0] As `2esn`,{_usn4} In {`6esn`} In `1esn` Skip $@usn6 Starts With {`1esn`} Starts With 12 Where `4esn`[usn1] Union All Start `8esn`=Node:`4esn`(`1esn`=\"d_str\") ,#usn8=Relationship:usn1({7})Where @usn6[$12] Return Distinct Reduce(usn1=$#usn7 Ends With 0.12 Ends With {@usn6},_usn3 In {`2esn`} Ends With {12} Ends With 7|{0} Is Null) Is Not Null Is Not Null,.e1 Ends With {7} Ends With $usn1 As ``,_usn4[['s_str'[..0X7],False Contains 0.e0 Contains Count(*)]..] Union Load Csv With Headers From $`8esn` Starts With 0xabc Starts With {usn2} As `1esn` Foreach(`5esn` In 9e1['s_str'..0xabc]| Detach Delete $@usn5 In 's_str' In $12,Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]}))) Ends With Case When $``['s_str'..][0x0..] Then 9e12[..0X7] Else $1000[..$999] End,{`7esn`} Ends With `` Ends With {`8esn`} Create `5esn`=Allshortestpaths(((({@usn6:07 =~@usn5,_usn4:12e12 Starts With `1esn` Starts With usn2})<-[:_usn4|:usn1 *07]-(#usn8 :#usn8{`1esn`:{`2esn`} In 0Xa In {_usn3},`8esn`:9e0 Starts With .e0 Starts With \"d_str\"})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})))),`8esn`=(({`1esn`:12 Starts With 0x0})<-[`5esn`{`6esn`:12 Is Not Null Is Not Null,`8esn`:`3esn` Is Not Null Is Not Null}]->(_usn3 {@usn5:.e12 =~.e0}))) Load Csv With Headers From {_usn4} Is Null As `` "), + octest_legacy:ct_string("Drop Constraint On()-[`7esn`:@usn6]->()Assert Exists({usn1:0e0[0X0123456789ABCDEF..010][$@usn6..010]}.`8esn`?)"), + octest_legacy:ct_string("With Distinct Null Ends With 12 Ends With usn2,010 In `1esn`,07 =~$`8esn` =~9e1 As _usn4 Skip Reduce(@usn6=#usn8 Is Not Null,#usn7 In 0Xa[@usn5][{`7esn`}]|{7}[{`4esn`}][`6esn`])[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])] Limit #usn8 In `8esn` In 07 Union All Unwind {#usn7}[{#usn7}..][$`4esn`..] As `5esn` Merge Shortestpath(({usn2:#usn8 =~{_usn3} =~``})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})-[?:`1esn`|:`3esn` *999]-(:_usn4{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})) Union All Delete Shortestpath(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})))[[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7[`5esn`]|{_usn3}[{0}]]..],{`3esn`}[{`5esn`}] Create Unique #usn8=((`6esn` {@usn5:0x0[{7}..]})-[``?]->(usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})),Shortestpath(((`1esn` :`4esn`:@usn6)))"), + octest_legacy:ct_string("Create Constraint On(`3esn`:#usn8)Assert Exists([_usn4 In `2esn` Where 9e12 Ends With 123456789].@usn6!)"), + octest_legacy:ct_string("Create Constraint On()-[`1esn`:`4esn`]-()Assert Exists(Reduce(@usn5=12.e12[``..usn2][{#usn7}..@usn5],#usn7 In 0Xa[@usn5][{`7esn`}]|$`2esn`[$usn2..][{``}..]).`7esn`?)"), + octest_legacy:ct_string("Return Distinct *,`5esn` Contains {`7esn`} Contains $7 Skip All(`5esn` In $`2esn`[12.e12][$@usn5] Where False[0Xa..$usn1])[Case When {usn2} Then $1000 Starts With $`8esn` Starts With {`5esn`} When {`6esn`}[..{`2esn`}] Then 12.e12[``..usn2][{#usn7}..@usn5] Else False[0Xa..$usn1] End][[`6esn` In Count(*) Ends With $`` Ends With {7} Where 0Xa[..{1000}][..$#usn7]]]"), + octest_legacy:ct_string("Return *,Any(_usn4 In 0.0[..{999}][..0.0] Where Count(*) In {``})[..[$#usn7[`5esn`],.e1[@usn5]['s_str'],Count(*) Starts With $usn1 Starts With {usn2}]][..{usn2:$7 In @usn5 In {@usn5},`7esn`:{#usn7} Contains @usn5 Contains Count ( * )}] Order By $`4esn` In Null Descending,#usn8 =~{999} Asc Skip Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $#usn7[$`4esn`])[(usn1 :`6esn`:`8esn`)<-[_usn4?:`6esn` *0xabc..7$_usn3]->(`3esn` {@usn5:{`8esn`}[0X7][$`3esn`],_usn4:.e12 Contains $`1esn` Contains $@usn6})][Shortestpath(((({#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[`7esn`?:_usn3|`8esn`*..]->(:`8esn`:@usn5{`8esn`:True =~_usn3 =~123456789,usn2:$usn1[$123456789..0][{`1esn`}..12.0]})<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5))))] Load Csv From (:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[?:@usn6|`` *..01234567]-(`2esn` :@usn6) Contains (#usn8 {`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[?:`8esn`|:_usn4]-(`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999})<-[`1esn`?:`4esn`|:#usn7{_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}]->(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1}) As `1esn` Fieldterminator 's_str' Start `2esn`=Node:`8esn`(`6esn`='s_str') ,`3esn`=Node:`4esn`({#usn8}) Union All With Distinct _usn3[\"d_str\"],None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12.e12[``..usn2][{#usn7}..@usn5]) Is Null Is Null Order By 0Xa[1000.._usn4] Asc,$0[..{usn2}][..$usn1] Desc Skip {#usn8}[12.0][$@usn6]"), + octest_legacy:ct_string("With #usn8 Is Not Null As #usn8 Order By {`3esn`} Is Null Descending,[{0}[False..@usn5]] Starts With {`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]} Starts With Shortestpath((:_usn3{0})-[usn2 *12..]->(:``)) Ascending,{`2esn`}[Count(*)] Descending Where 0.12 Ends With {1000} Ends With `6esn` Start usn1=Node:_usn4({`8esn`}) ,_usn3=Relationship:usn1('s_str') Union Optional Match @usn6=(`2esn` :`3esn`:`6esn`),`8esn`=(@usn6 :`6esn`:`8esn`)<-[_usn4?:`7esn`{``:{_usn3} Contains $`1esn` Contains 12.0}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}) Using Join On _usn4,_usn4,@usn6 Where 0.12 Starts With 9e12 Starts With $`1esn` Remove (:`3esn`:`6esn`{usn1:{usn2} =~@usn6 =~{`4esn`},usn1:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})<-[_usn3?*]-(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}).`4esn`?,Reduce(usn2=.e1[..\"d_str\"],#usn7 In 123.654 Starts With $``|0Xa[$1000..$123456789]).`8esn`? Union All Remove [_usn3 In {@usn5}[..#usn7] Where True Is Null Is Null|Count(*) Ends With $`` Ends With {7}].`3esn`?,{@usn5:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12],@usn6:Count(*)[.e12..]}.`2esn`?"), + octest_legacy:ct_string("Drop Constraint On(@usn6:@usn5)Assert Exists(Single(_usn3 In {@usn5}[..#usn7] Where `5esn`[0xabc..]).`7esn`?)"), + octest_legacy:ct_string("Create Constraint On(`4esn`:`6esn`)Assert Exists(Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0x0[{999}..][{_usn4}..]|{12}[00..{@usn6}][1.e1..0]).@usn6?)"), + octest_legacy:ct_string("Create Constraint On()-[`1esn`:_usn4]-()Assert Exists(Shortestpath((((_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )})-[?:usn2|#usn7]-(`1esn` {#usn7:Count ( * )[$12..]})<-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]->(_usn4 {_usn3:`1esn`[..00][..{7}]})))).`3esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`6esn`)Assert None(_usn4 In `2esn` Where .e1[0.12]).`8esn` Is Unique"), + octest_legacy:ct_string("Load Csv From 12.e12[2.12..][0xabc..] As `6esn` Merge usn2=Allshortestpaths((({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[?:usn2|#usn7$#usn8]->(_usn4 :`5esn`:@usn5)<-[usn1?:usn1]-(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )}))) On Match Set @usn5 =Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Merge (({`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[`2esn`:usn2|#usn7 *0X7..0Xa]->(`` :_usn4{@usn6:$`1esn` Is Not Null Is Not Null,usn2:{1000}}))"), + octest_legacy:ct_string("Unwind [{999} Starts With {12},9e1 Ends With Count(*) Ends With False,0X0123456789ABCDEF[`5esn`..][$#usn8..]] In Single(`6esn` In 00 Where 0X0123456789ABCDEF Is Null Is Null) As `1esn` Load Csv With Headers From 0e0 As `8esn` Fieldterminator 's_str' Union All Delete {123456789}[{_usn3}][False],0Xa[.._usn3][..$`6esn`],Allshortestpaths((({`4esn`:$`1esn` Is Not Null Is Not Null,`2esn`:$7 Is Null}))) In {`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null} Foreach(usn1 In All(`3esn` In 123.654[1e1..][{#usn8}..] Where {_usn3} Contains 9e0 Contains $999) Is Not Null| Detach Delete ({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-(:`8esn`:@usn5{usn2:$1000 Starts With $`8esn` Starts With {`5esn`},`7esn`:{@usn6} Contains 123.654 Contains 01})[(`` {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]})<-[:@usn5|:`7esn`{`6esn`:$`1esn`[#usn8][$@usn5],@usn6:123.654[1e1..][{#usn8}..]}]-(usn2 )],{123456789} =~usn1 =~{usn1}) Merge ((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})) On Create Set [1.e1 =~$usn2,$`5esn`[`1esn`][0X0123456789ABCDEF],$0[`7esn`]].`5esn`? =@usn5[$12..\"d_str\"],_usn3+=$`1esn`[$12][Count ( * )] Union Unwind 7[123456789..$123456789][``..00] As `6esn` Unwind {999} Is Null As `6esn` With {`3esn`}[{12}..][0.12..] As ``,$``[True..] Order By [`2esn` In {999} Is Not Null Where {@usn6}[True..{_usn3}]] =~None(#usn7 In 123.654 Starts With $`` Where {usn2}[$`4esn`]) =~Extract(`1esn` In $12 Is Not Null Where Null Is Null Is Null|$123456789 =~`4esn`) Ascending,{0}[False..@usn5] Desc Limit 12 In 999 Where Count(*)[..``][..#usn8]"), + octest_legacy:ct_string("Start @usn6=Rel:``(usn1={`4esn`}) ,``=Relationship( {usn1}) Union Create Shortestpath(((_usn3 {#usn7:1.e1 =~`2esn`,@usn6:$`5esn`[`1esn`][0X0123456789ABCDEF]}))) Merge `4esn`=({`1esn`:$123456789[..$7][..$`6esn`]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]}) On Match Set {usn2:00[..$123456789][..$`5esn`],``:0.12[Count(*)..][$#usn7..]}.#usn7? =(`3esn` :`7esn`)-[*]-(usn2 {#usn8:@usn5[$12..\"d_str\"]})[Shortestpath(((`5esn` :``{`3esn`:.e1 Ends With 0Xa Ends With .e1,`3esn`:`3esn`[_usn4..{0}][`5esn`..usn2]})))] Create Unique (:``) Union All Remove Allshortestpaths((_usn3 {`4esn`:`8esn` Contains 1e1,#usn7:{`2esn`}[..{@usn6}][..1.e1]})-[#usn7?:usn1 *01..07{`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}]->({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]})).`5esn`,`7esn`:@usn5 Match (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` )) Using Join On `8esn`,_usn4 Using Index `7esn`:`1esn`(`2esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[usn2:``]->()Assert Exists(None(_usn3 In {@usn5}[..#usn7] Where {`4esn`}[{`1esn`}][{1000}]).``!)"), + octest_legacy:ct_string("Create Unique #usn8=Shortestpath(((:`5esn`:@usn5{`3esn`:{usn1}[$7..0x0]})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`)-[:`5esn`]-(:@usn6{`4esn`:1.e1[{#usn8}]}))) Union All Create ``=((`` {``:$0[..{usn2}][..$usn1]})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(`` {#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})) Return *,.e1 Contains $`3esn` As _usn3 Skip Single(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3]..`1esn`(Distinct $@usn5[`6esn`..],9e12[..0X7])][Allshortestpaths((:`1esn`{_usn4:.e1 Ends With {7} Ends With $usn1})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)<-[@usn6?:@usn5|:`7esn` *1000{`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}]->(:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]}))..(`4esn` :`1esn`{@usn5:{1000} Ends With {`8esn`},`2esn`:$`5esn`[..{`2esn`}][..{0}]})-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(@usn6 :`1esn`{`5esn`:$`2esn`[$usn2..][{``}..]})] Limit #usn7 Starts With 1000 Starts With .e1 Create Unique @usn6=(((`2esn` {_usn4:`4esn`[usn1]})-[`5esn`?:usn1]->(:@usn5{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[@usn6:#usn8|`2esn`{_usn4:$_usn4[9e0..]}]-(:_usn3{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})))"), + octest_legacy:ct_string("Create Constraint On(usn2:`3esn`)Assert Extract(_usn4 In `2esn` Where {_usn3}[$usn2..]|9e1[9e1...e0]).``? Is Unique"), + octest_legacy:ct_string("Load Csv From {#usn8}[usn2][{0}] As `2esn` Fieldterminator \"d_str\" Merge ((usn1 :usn1:_usn4)-[`6esn`?:@usn5|:`7esn`]->(`2esn` :@usn5{@usn5:{`2esn`} Is Not Null Is Not Null})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(:`2esn`{`2esn`:123456789[0..]})) On Match Set `5esn`+=Any(`8esn` In $12[{7}..0X0123456789ABCDEF] Where 9e0[#usn8])[{`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]}..None(`` In {`1esn`} Starts With @usn6 Where $usn1[@usn6][#usn7])][Extract(_usn4 In `2esn` Where $999 Is Null|00[07..])..Shortestpath(({`3esn`:0.e0[{999}][{`1esn`}],`1esn`:$`5esn`[`1esn`][0X0123456789ABCDEF]})-[:usn2|#usn7 *0X7..0Xa]->(#usn7 :@usn5))],`2esn`+=0xabc[$999..][{#usn7}..],`5esn`+=123.654 Contains $#usn8 Contains .e1 On Create Set `8esn` =usn2(0.0 Is Not Null Is Not Null,{123456789} Is Not Null)[None(`2esn` In {999} Is Not Null Where {`5esn`}[$`8esn`..$`1esn`][0.12..0.12])..[_usn4 In `2esn` Where False Ends With $``|9e0[#usn8]]][(`3esn` :`3esn`:`6esn`)-[]->(`7esn` :#usn8)..[0X0123456789ABCDEF Contains $`1esn` Contains 1000,0e0[$#usn8...e12],.e12 Is Null Is Null]],@usn6+=$@usn5[..usn2][..$#usn7] Union Merge ((`4esn` :usn2:`2esn`)) Start `1esn`=Rel:@usn5({usn1}) Merge (({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True}))"), + octest_legacy:ct_string("Create Constraint On(`4esn`:_usn4)Assert Exists(None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $`6esn`[{`3esn`}..12]).#usn8)"), + octest_legacy:ct_string("Create Constraint On(@usn6:usn2)Assert Exists({usn1:True Is Not Null}.`7esn`!)"), + octest_legacy:ct_string("Using Periodic Commit 0X0123456789ABCDEF Load Csv With Headers From {`5esn`} =~Reduce(`5esn`=00,`2esn` In {999} Is Not Null|{`4esn`}[..07][..$`6esn`]) =~_usn4(Distinct #usn8 =~{999},``[00..$7]) As `` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Drop Constraint On(`7esn`:_usn3)Assert Exists(All(_usn4 In `2esn` Where 9e12 Ends With 123456789).usn2!)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:_usn4)Assert Exists({usn2:{1000} Ends With {`8esn`}}._usn4)"), + octest_legacy:ct_string("Drop Constraint On(``:`3esn`)Assert Exists({`7esn`:{@usn5}[..#usn7],@usn6:{_usn3}[`3esn`..$#usn8]}.`7esn`!)"), + octest_legacy:ct_string("Start `3esn`=Rel:#usn8(\"d_str\") Load Csv With Headers From $`4esn` Starts With 0e0 As `6esn` Fieldterminator 's_str' Optional Match #usn8=Allshortestpaths((`5esn` :_usn4)<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]})),Shortestpath((((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[`6esn`?]-(`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})))) Where #usn8 =~{_usn3} =~``"), + octest_legacy:ct_string("Create Unique `2esn`=((_usn3 :`5esn`:@usn5)<-[`7esn`? *0xabc..7]->(:`6esn`:`8esn`{`3esn`:$`6esn`[{`3esn`}..12],_usn3:0[{@usn5}..][7..]})),@usn6=(((:_usn3{`8esn`:9e1 =~999})<-[@usn6?]->(`6esn` :_usn3)<-[#usn8:usn1{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}]->(@usn6 :`2esn`))) Load Csv From {#usn7} Ends With 12e12 Ends With {123456789} As `7esn` Start `8esn`=Node:#usn7(\"d_str\") ,#usn7=Node( {usn2})Where 0x0 Ends With {``}"), + octest_legacy:ct_string("Using Periodic Commit 0Xa Load Csv From .e1 =~$`5esn` As _usn4 "), + octest_legacy:ct_string("Foreach(`2esn` In @usn5 Is Null| Return 9e12 Is Not Null,(`8esn` :`8esn`:@usn5)<-[`6esn`:_usn3|`8esn`{`5esn`:$usn2 Is Null Is Null,``:123.654 Starts With $``}]->(#usn7 :`2esn`)-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Is Null Is Null Order By Count ( * )[00] Ascending Skip True[..010] Limit 0e0 Starts With $@usn6 Starts With $`6esn`) Detach Delete All(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) In Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $`` In 0 In {1000}|$123456789[$`5esn`][$_usn4]) In [``[00..$7],.e1 Contains $`3esn`,{``} Starts With 123456789 Starts With usn2],[`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7}|usn2[`7esn`..{`3esn`}][$7..{#usn7}]][..[`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]|9e12[..0X7]]][..[`2esn` Ends With $`4esn` Ends With {#usn7},'s_str'[..0X7],{#usn8} =~{999} =~{#usn7}]] Create #usn8=(`8esn` :`5esn`:@usn5)-[`5esn`?:usn2|#usn7]->(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )}),`1esn`=Allshortestpaths((_usn3 :`3esn`:`6esn`{`3esn`:{`4esn`}[$123456789],`7esn`:`1esn`[Null..]})-[:_usn4|:usn1 *07]->(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]})<-[`1esn` *..00{`8esn`:{999}[$123456789..][12..],`2esn`:{123456789} Is Not Null}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}))"), + octest_legacy:ct_string("Create Shortestpath((:`2esn`{`4esn`:`3esn` Is Not Null Is Not Null})<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(usn1 {`4esn`:1.0[{999}][$999],``:9e1[9e1...e0]})) Create ((usn1 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})) Load Csv With Headers From Count(*)[.e12..] As _usn4 Fieldterminator \"d_str\" Union All Detach Delete $`3esn`[{``}..] Start `6esn`=Node:@usn6(`3esn`='s_str') Where True Is Not Null Union Unwind $#usn7 =~9e1 =~$_usn4 As _usn4"), + octest_legacy:ct_string("Create Constraint On(_usn4:@usn5)Assert Exists(Extract(#usn7 In 0Xa[@usn5][{`7esn`}] Where $0[_usn4..{`3esn`}][$#usn7..$#usn7]|$`7esn` Contains {`1esn`} Contains 9e12).``)"), + octest_legacy:ct_string("Unwind 9e0 Contains @usn6 Contains {#usn7} As `` Create #usn8=(`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})<-[? *0X7..0Xa]->({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Load Csv With Headers From {999} Starts With {_usn4} Starts With 00 As `8esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Delete `2esn` Starts With `` Starts With 1e1,$@usn6[01..@usn5][0x0..`4esn`] Create Unique #usn7=Allshortestpaths(((`5esn` :`2esn`{#usn8:True[$`7esn`..{1000}]})<-[usn1?:`6esn` *12..{`6esn`:999 Starts With $123456789 Starts With {``}}]->({_usn4}))),((:#usn7{#usn7:$`8esn` In $`2esn` In {7}}))"), + octest_legacy:ct_string("Remove [#usn7 In 123.654 Starts With $`` Where #usn8[`7esn`..]|{_usn3}[{0}]].usn2,``(True[True..],$_usn4).`5esn`? Create Unique (`4esn` :#usn7)<-[@usn6?:usn2|#usn7]->(`1esn` )-[`6esn`?*..{`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}]->({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6}),_usn4=Allshortestpaths((_usn3 {`4esn`:`8esn` Contains 1e1,#usn7:{`2esn`}[..{@usn6}][..1.e1]})-[#usn7?:usn1 *01..07{`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}]->({`6esn`:0X0123456789ABCDEF[`5esn`..][$#usn8..]}))"), + octest_legacy:ct_string("Using Periodic Commit Load Csv From Single(_usn3 In {@usn5}[..#usn7] Where {@usn6} In {#usn7} In 12.e12)[(`6esn` {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})-[*{`8esn`:123456789 Ends With usn1 Ends With usn2,`6esn`:0[{usn2}..][usn1..]}]->(:`2esn`{#usn8:`6esn` Ends With 2.12 Ends With @usn6,`1esn`:{`8esn`}[True..][.e1..]})<-[`5esn`?:usn2|#usn7 *..01234567]-(`4esn` :`8esn`:@usn5)] As @usn6 Fieldterminator 's_str' Delete [#usn7 In 0Xa[@usn5][{`7esn`}] Where $usn1 In 01234567 In .e1|{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]] =~Extract(`2esn` In {999} Is Not Null Where $``['s_str'..][0x0..]|$usn1 In 0.12 In $``) =~Single(_usn3 In {@usn5}[..#usn7] Where {`4esn`}[..07][..$`6esn`])"), + octest_legacy:ct_string("Drop Constraint On(usn2:`3esn`)Assert Exists([`1esn` In 0.e0 =~`1esn` =~`6esn`].#usn7)"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:`3esn`]->()Assert Exists((:usn2:`2esn`)<-[{`2esn`:@usn5[$12..\"d_str\"]}]-(@usn6 :usn1:_usn4)<-[``?:#usn8|`2esn`]->(:`8esn`:@usn5).#usn7)"), + octest_legacy:ct_string("Drop Constraint On()-[#usn7:`2esn`]->()Assert Exists(Single(`1esn` In 0.e0 =~`1esn` =~`6esn` Where {@usn5} =~_usn4 =~0.12)._usn4!)"), + octest_legacy:ct_string("Foreach(`` In (`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}})<-[{_usn4:{1000} Ends With {`8esn`}}]-(@usn5 :`7esn`{_usn3:{``}[_usn4..$`1esn`]})<-[`2esn`?*]->({#usn7:1e1[1.e1..][123.654..],`3esn`:True Starts With $`4esn` Starts With 12e12})[Shortestpath((((:`1esn`{`3esn`:{`8esn`}[0X7][$`3esn`],usn2:True[True..]})<-[`6esn`?:_usn4|:usn1 *07{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}}]-(_usn3 :`4esn`:@usn6{`3esn`:0e0[$#usn8...e12],`2esn`:{usn1} In Count ( * )})<-[`7esn`? *0X0123456789ABCDEF{@usn6:12 Starts With {_usn4} Starts With $#usn8}]-(`3esn` :`7esn`{`2esn`:07[`8esn`],`8esn`:{1000} Ends With {`8esn`}}))))..][(`1esn` :@usn6)<-[@usn5:_usn4|:usn1*]->(:@usn5)<-[`2esn`:#usn8|`2esn` *0xabc..7]-(usn1 :#usn8)..]| Remove {usn2:7 In 1.e1 In $usn1}.`4esn`!,All(_usn4 In 0.0[..{999}][..0.0] Where #usn8 Is Null).`8esn`? Create `5esn`=Shortestpath(((_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)})-[``? *01..07{`1esn`:usn2 Ends With Count ( * ) Ends With $@usn6,`1esn`:1.e1[{#usn8}]}]->(`` {``:0x0 =~123.654 =~{999}})-[`4esn` *..010{``:123.654 Ends With usn2 Ends With 0,#usn7:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`}]->(:`3esn`:`6esn`{@usn5:.e12 =~.e0}))),#usn8=Allshortestpaths((_usn4 {`3esn`:\"d_str\"[..0.e0],usn1:$`` In 0 In {1000}})-[`1esn`?:_usn3|`8esn` *0xabc..7]->(@usn5 :`6esn`:`8esn`))) Create `6esn`=((`4esn` :`3esn`:`6esn`{usn1:Count ( * ) Is Null,`5esn`:1e1[1.e1..][123.654..]})-[:`2esn` *07]-(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})-[@usn6?:`1esn`|:`3esn`{``:$@usn5[..usn2][..$#usn7],_usn4:.e1 Contains $`3esn`}]->({``:.e1 Contains $`3esn`}))"), + octest_legacy:ct_string("With *,_usn4($123456789 =~`4esn`)[None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where Count(*) In {``})..][Any(`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7})..] As `3esn`,{`7esn`}[..9e12][..0.0] Limit Case 0xabc[$@usn5] When 9e1[$_usn4..0xabc] Then $12[{7}..0X0123456789ABCDEF] When 01 =~$`1esn` Then {1000}[\"d_str\"..{@usn5}][$1000..$#usn8] Else 1.e1[_usn4..][07..] End Is Not Null Where 123.654[1e1..][{#usn8}..] Start ``=Relationship( {``}) Where {`1esn`} =~{_usn4} Union Match (((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`))),_usn4=Allshortestpaths((usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`})) Using Scan `2esn`:#usn7 Where {#usn8} =~{999} =~{#usn7}"), + octest_legacy:ct_string("Drop Constraint On(@usn6:#usn8)Assert {#usn7:`5esn`[..9e0][..01234567],#usn7:1e1[..$1000][..999]}.#usn8 Is Unique"), + octest_legacy:ct_string("Optional Match (`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})-[``:usn2|#usn7 *..0Xa]->(:`4esn`:@usn6{usn1:$7[{`1esn`}],#usn8:\"d_str\"[..0.e0]}),`3esn`=Allshortestpaths((:`3esn`:`6esn`{_usn4:{usn1} In Count ( * )})) Using Index @usn6:#usn8(_usn4) Using Join On `6esn`,usn2,`5esn` Create Unique `5esn`=Shortestpath(((#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[`3esn`?:`5esn`]->({`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]}))),`8esn`=Allshortestpaths(((#usn8 {`8esn`:{7} Contains $123456789})))"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:usn1)Assert Exists([`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0e0[$#usn8...e12]].`3esn`!)"), + octest_legacy:ct_string("Start ``=Rel:`2esn`(`5esn`='s_str') Create `2esn`=(:_usn3{#usn7:#usn8 =~{999}}),Shortestpath(((:#usn8{``:12.e12[$`4esn`..]})<-[ *12..]-(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]}))) Detach Delete Count ( * ) =~{`5esn`} =~{_usn4},{`7esn`:0.12 Starts With 9e12 Starts With $`1esn`}[Case When 1.e1[0X0123456789ABCDEF..] Then `6esn`[..{999}] When {`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`] Then $#usn7 Ends With 0.12 Ends With {@usn6} End..Filter(_usn3 In {@usn5}[..#usn7] Where {_usn4} Is Null)],None(`5esn` In $`2esn`[12.e12][$@usn5] Where 12.e12[``..usn2][{#usn7}..@usn5]) In usn1({`1esn`} Starts With @usn6) Union Start `2esn`=Node:`8esn`(`6esn`='s_str') ,`4esn`=Node:`1esn`(#usn7=\"d_str\") Create Unique ((@usn6 {@usn5:0X0123456789ABCDEF[$999..][@usn5..]})<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})),#usn7=(`3esn` :`8esn`:@usn5{@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]}) Union All Start _usn3=Node:``({`1esn`}) ,`3esn`=Rel:`8esn`(@usn6='s_str')"), + octest_legacy:ct_string("Create Constraint On(`7esn`:``)Assert [usn1 In 12.e12 In {0} In 9e1 Where .e12 =~$_usn4|0.e0 Ends With False].#usn8! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[_usn4:usn1]-()Assert Exists((`4esn` {`2esn`:@usn5[$12..\"d_str\"]})<-[`2esn`:`5esn` *0x0..{`4esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}],@usn6:0X0123456789ABCDEF[7...e0][`1esn`..usn2]}]-(`8esn` {@usn5:$@usn6 Starts With $@usn5,`6esn`:@usn5[..$@usn5][..0Xa]})<-[`6esn`?:#usn8|`2esn`*..{`5esn`:@usn5 =~'s_str'}]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}).#usn8!)"), + octest_legacy:ct_string("Create Unique #usn7=(`4esn` :usn2:`2esn`) Remove [@usn5 In Null =~12e12 Where _usn4 In $usn1].`6esn`?,Reduce(`4esn`=`3esn`[..{_usn4}][..{@usn5}],`2esn` In {999} Is Not Null|123456789 Starts With {@usn6} Starts With $12).usn2,Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $usn2 =~\"d_str\" =~_usn3).`3esn` Start `7esn`=Node:usn1(@usn5={12}) ,usn1=Node:_usn3(_usn3='s_str')Where _usn4 In $usn1 Union All With 123456789 Starts With {@usn6} Starts With $12,(_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Is Null As `1esn` Order By $`2esn`[{usn2}] Descending,1.e1 In 0Xa In $#usn8 Desc,{@usn6} Starts With @usn5 Starts With @usn6 Desc Skip [_usn4 In 0.0[..{999}][..0.0] Where ``[..0X0123456789ABCDEF]][Reduce(``=`6esn` Is Null Is Null,`2esn` In {999} Is Not Null|{12}[999][{_usn3}])..[_usn4 In `2esn` Where 0X0123456789ABCDEF[$`5esn`..]]] Limit `7esn` Contains `5esn` Contains 0X7 Where 0.12 Starts With 9e12 Starts With $`1esn` Remove {`8esn`:False Ends With $``}.`3esn`,Case {usn1}[$7..0x0] When {``}[010] Then True =~_usn3 =~123456789 When @usn6[$12] Then {`4esn`} Starts With $7 Starts With $`` End.`7esn`! Return Distinct *,[False Starts With 010] Contains Extract(_usn3 In True[7][$999] Where 0e0[$#usn8...e12]|12 Is Not Null Is Not Null) Contains [`1esn` In $12 Is Not Null] As `2esn`,Filter(`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0}) =~({`1esn`:{123456789}[12..][$12..]})-[?:`1esn`|:`3esn`{@usn5:{`6esn`} Ends With 0e0 Ends With {``},@usn5:{`1esn`} Starts With `4esn` Starts With {0}}]->(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[`5esn`?:`7esn`]->({@usn5:Count ( * ) Is Null}) Order By Reduce(@usn5=$`8esn`[..$999][..0],`` In {`1esn`} Starts With @usn6|{@usn6} Contains 123.654 Contains 01) Contains [`1esn` In `3esn`[07..] Where {0} =~12.0] Contains (:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``})<-[?:_usn3|`8esn`*{@usn6:{#usn8}[2.12],`4esn`:123.654[{@usn5}..123.654][1.0..$12]}]->(`` {`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}})<-[`3esn`:_usn3|`8esn`]->(:usn1:_usn4{#usn8:$7 Ends With 0X7,`5esn`:12 Is Not Null}) Descending,.e1[..\"d_str\"] Asc Skip $`6esn`[{`3esn`}..12]"), + octest_legacy:ct_string("Create (@usn5 :`8esn`:@usn5)<-[?:`1esn`|:`3esn`*]->({_usn4:{usn1} =~123.654 =~\"d_str\"}) Union With Distinct `2esn`(Distinct $`1esn` Is Not Null Is Not Null,0.12 Contains 12.0)[`3esn`(Distinct `7esn`[0..$usn2][{usn2}..0.e0])][{`8esn`:.e1 Ends With {7} Ends With $usn1,@usn6:7[$0..][{_usn4}..]}] Limit `` =~`6esn` =~usn1 Where @usn5[12.0][{1000}] Optional Match (:_usn4{_usn3:{`2esn`} Ends With {12} Ends With 7,usn2:0.e0[{999}][{`1esn`}]}),@usn5=(_usn3 :#usn7{`7esn`:123.654 Ends With usn2 Ends With 0})<-[?:`6esn` *01..07]->(:usn2:`2esn`{`5esn`:$``['s_str'..][0x0..],`1esn`:{@usn5}[Count(*)..]})-[? *1000]->(`5esn` {usn2:$#usn7 Starts With 9e0 Starts With 2.12}) Using Index `8esn`:``(@usn5) Using Scan #usn7:_usn3 Unwind 1e1 Is Not Null Is Not Null As `6esn` Union Foreach(usn2 In {`7esn`}[..9e12][..0.0]| Load Csv From $@usn6[$0..usn1][0X0123456789ABCDEF..$999] As `1esn` Delete {@usn5}[..@usn6],0e0 Contains `3esn` Contains `7esn`,1.e1 Ends With 0 Ends With $usn1) Return *,@usn6[Count ( * )][True]"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`2esn`)Assert Exists(Case {_usn3} Contains True Contains 0X7 When ``[{123456789}..] Then `1esn` =~1000 =~1000 When #usn8 =~{_usn3} =~`` Then 7 Contains `2esn` Contains $`8esn` End.`4esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:@usn5]->()Assert Exists((:`4esn`:@usn6{`1esn`:{12}[00..{@usn6}][1.e1..0],usn1:``[..0X0123456789ABCDEF]})<-[@usn5?:`8esn`|:_usn4 *0X0123456789ABCDEF{usn1:False Contains $#usn8 Contains 9e1}]->(usn2 :`4esn`:@usn6)<-[`5esn`{`6esn`:12 Is Not Null Is Not Null,`8esn`:`3esn` Is Not Null Is Not Null}]->(_usn3 {@usn5:.e12 =~.e0}).`8esn`)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:``)Assert [`8esn` In $12[{7}..0X0123456789ABCDEF] Where $@usn6[01..@usn5][0x0..`4esn`]].`2esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[``:`2esn`]->()Assert Exists(Any(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where $`8esn`[..$999][..0]).`3esn`?)"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:`4esn`]-()Assert Exists(Filter(_usn4 In 0.0[..{999}][..0.0] Where True Starts With $`4esn` Starts With 12e12).@usn5!)"), + octest_legacy:ct_string("Return Distinct `7esn` =~.e12 =~$#usn7 As `3esn`,$`8esn` Is Null Is Null As `6esn` Order By {`8esn`}[0X7][$`3esn`] Descending Skip Any(`2esn` In {999} Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`])[[`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 9e12 Is Not Null]..][$`6esn`..] Return *,{usn1} =~123.654 =~\"d_str\" Order By {`4esn`} In _usn4 Desc Limit {0}[..{`7esn`}] Union Load Csv With Headers From {7}[$_usn4..Count ( * )] As `7esn` Fieldterminator \"d_str\" Start `3esn`=Relationship:#usn8(_usn3={#usn7}) ,`3esn`=Node:``({`1esn`})"), + octest_legacy:ct_string("Remove Shortestpath(((@usn6 :`4esn`:@usn6{#usn8:12 Ends With 01,`8esn`:``[{#usn8}]})<-[:#usn7|`2esn` *0x0..]-({`4esn`:0X0123456789ABCDEF[0X7..],#usn7:{1000} Ends With {`8esn`}}))).#usn7!,Extract(`5esn` In $`2esn`[12.e12][$@usn5] Where _usn4 Is Null Is Null).``! Merge `4esn`=({`7esn`:{@usn5}[..#usn7],@usn6:{_usn3}[`3esn`..$#usn8]})-[@usn5{#usn7:$`3esn` Ends With $999 Ends With 0X0123456789ABCDEF,#usn7:.e12[$#usn8..@usn6]}]->(`5esn` :@usn5) On Create Set [1.e1 =~$usn2,$`5esn`[`1esn`][0X0123456789ABCDEF],$0[`7esn`]].`5esn`? =@usn5[$12..\"d_str\"],_usn3+=$`1esn`[$12][Count ( * )] On Create Set {#usn7:$`` Is Null,`6esn`:01[..{`7esn`}][..01234567]}.usn1 =(#usn8 )<-[`3esn`:_usn3|`8esn`]->(:`8esn`:@usn5{`7esn`:7 Contains $`` Contains {`6esn`}})[usn1($12 Is Not Null,\"d_str\" =~`1esn` =~{`5esn`})..],Single(`6esn` In Count(*) Ends With $`` Ends With {7} Where `7esn` Starts With 0X7 Starts With $`7esn`).`4esn` =$@usn6[..123.654],_usn4:`4esn`:@usn6 Union All With *,{_usn3}[$usn2..] As `6esn` Limit Count ( * )[{12}..{@usn5}][{#usn8}..Null] Where 0X0123456789ABCDEF[9e12] With Distinct [`1esn` In `3esn`[07..] Where @usn6[{0}..]|0.e0[12.e12]] Contains {usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF} As @usn6,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $`5esn`[$#usn7..][0xabc..]) Contains All(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}]) As #usn8 Order By {#usn8} Contains 1000 Contains $`4esn` Ascending,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Ascending Union All Create `5esn`=((#usn7 :_usn3{`2esn`})<-[@usn6?:`1esn`|:`3esn` *..0Xa{`1esn`:12 Starts With 0x0}]->(#usn7 :_usn3{`2esn`})<-[?:`1esn`|:`3esn`{#usn8:$0 Is Not Null,``:True Is Null Is Null}]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0}))"), + octest_legacy:ct_string("Merge `4esn`=(((#usn8 :`6esn`:`8esn`{_usn3:$@usn5[`1esn`..]})<-[`2esn`?:@usn6|`` *..00]->(`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[`8esn`?{`6esn`:$#usn7 =~{12} =~False}]->(`3esn` :_usn3{_usn3:{_usn3} Contains 9e0 Contains $999,`2esn`:{_usn3}[$usn2..]}))) Create Shortestpath((((usn2 )<-[ *0xabc..7]->(:`4esn`:@usn6)<-[usn2?:usn2|#usn7]->(`3esn` :_usn4)))) Detach Delete None(usn1 In 12.e12 In {0} In 9e1 Where Count(*) In 0e0 In 9e1)[Case 0Xa[.._usn3][..$`6esn`] When {`4esn`}[$123456789..] Then {`2esn`}[$_usn3..{_usn4}][$`1esn`..`2esn`] When {usn2}[$`4esn`] Then $1000 Starts With $`8esn` Starts With {`5esn`} Else @usn6[$_usn4] End..][@usn5($`7esn` Is Null Is Null)..]"), + octest_legacy:ct_string("Return *,Case $1000 =~{1000} =~`5esn` When 9e1[9e1...e0] Then 00 Starts With $`6esn` When 123.654[1e1..][{#usn8}..] Then $`3esn`[{``}..] End In [`6esn` In Count(*) Ends With $`` Ends With {7} Where 0Xa[..{1000}][..$#usn7]] As `5esn` Limit {#usn8}[2.12] Union With Distinct *,$`8esn` In $`2esn` In {7} As _usn3 Order By `2esn` Ends With $`4esn` Ends With {#usn7} Asc,1.e1 =~$`1esn` Ascending,12.e12[..1e1] Asc Skip [$_usn3 Is Null Is Null,.e12 =~$_usn4,12.e12[2.12..][0xabc..]][..Case {#usn8}[#usn7..{`2esn`}] When $7 Is Not Null Then $@usn6[$`8esn`..][7..] When $`4esn`[..'s_str'][..`8esn`] Then `7esn` Contains {@usn5} Contains $123456789 Else 12.e12 In $0 In $0 End] Where {`5esn`} Contains 's_str' Contains 9e1 Detach Delete #usn8 Is Null,1e1 Starts With 9e1 Starts With {`4esn`} Return Distinct *,$_usn4[$`4esn`..$12],{`5esn`} Starts With 12.0 Order By @usn5 =~`` Asc"), + octest_legacy:ct_string("Create Constraint On(``:@usn5)Assert Exists({``:`3esn` =~9e0 =~@usn6}.`8esn`?)"), + octest_legacy:ct_string("Create Constraint On()-[_usn4:``]->()Assert Exists(None(`6esn` In Count(*) Ends With $`` Ends With {7} Where 1000 Is Null).`3esn`!)"), + octest_legacy:ct_string("Merge ({usn1:0[{@usn5}..][7..],`7esn`:{``}[_usn4..$`1esn`]}) Unwind $``[.e12..] As `3esn`"), + octest_legacy:ct_string("Detach Delete 0.12 Ends With {1000} Ends With `6esn`,$@usn5[usn2..][$0..] Load Csv With Headers From $0 Is Not Null As #usn8 Fieldterminator \"d_str\" Union All Foreach(@usn6 In .e1 =~$`5esn`| Unwind $`2esn`[{usn1}..] As `3esn`) Return Distinct 0X0123456789ABCDEF[$999..][@usn5..] Union Create _usn3=(@usn6 :@usn6),usn2=((_usn4 :#usn7{`8esn`:$999 Contains {7}})<-[`4esn`:`4esn`|:#usn7{`2esn`:{`4esn`}[$_usn4..][9e0..]}]-(`6esn` )) Create Unique `8esn`=((:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *..00{#usn7:`4esn`[usn1]}]-(:@usn5{`6esn`:{@usn5}[..@usn6],#usn7:0e0 Contains 9e12})),_usn4=(((#usn8 )-[usn2? *12..{usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}]->(_usn4 :#usn7{`8esn`:$999 Contains {7}})-[`1esn`?:_usn4|:usn1*]->(:`3esn`:`6esn`{`1esn`:$123456789[..$7][..$`6esn`]})))"), + octest_legacy:ct_string("Drop Constraint On(@usn5:@usn6)Assert Reduce(`4esn`=`3esn`[..{_usn4}][..{@usn5}],`2esn` In {999} Is Not Null|123456789 Starts With {@usn6} Starts With $12).usn2 Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn5:`4esn`)Assert Exists(Case When 9e1 Ends With $@usn5 Ends With $123456789 Then usn2[True] When .e12 =~$_usn4 Then $7 Is Null Is Null Else .e1 Ends With 0Xa Ends With .e1 End.usn1!)"), + octest_legacy:ct_string("Load Csv From Reduce(@usn5=True[7][$999],usn1 In 12.e12 In {0} In 9e1|.e12 =~$_usn4)[Reduce(usn2=0e0 Contains `3esn` Contains `7esn`,#usn7 In 123.654 Starts With $``|0e0[$#usn8...e12])][[`1esn` In $12 Is Not Null Where {1000}[{usn1}][Null]|7[$0..][{_usn4}..]]] As `2esn` Fieldterminator \"d_str\" Foreach(usn1 In #usn7[$`5esn`..]| Unwind {`7esn`} Ends With `` Ends With {`8esn`} As _usn3 Optional Match `8esn`=(@usn6 :`6esn`:`8esn`)<-[_usn4?:`7esn`{``:{_usn3} Contains $`1esn` Contains 12.0}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}),Shortestpath((`6esn` {``:`4esn`[usn1]})<-[`7esn`?{_usn4:9e1 Ends With Count(*) Ends With False,#usn7:$_usn4 Ends With 0.e0 Ends With .e0}]->({`1esn`:$123456789[..$7][..$`6esn`]})-[_usn3:#usn7|`2esn`]-(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})) Using Join On `7esn` Using Scan _usn4:#usn8 Where $12 Contains 0Xa) Foreach(`4esn` In Count ( * )[$12..]| Create Shortestpath((`8esn` :#usn8{``:@usn5[$12..\"d_str\"],`4esn`:'s_str'[.._usn4][..``]})<-[_usn4:`3esn`|:@usn5 *0x0..]->(`7esn` :usn2:`2esn`))) Union Detach Delete {_usn3}[$usn2..] Union All Merge (#usn7 :_usn3{`2esn`})-[`8esn`?:`2esn`{`2esn`:{#usn8} =~{999} =~{#usn7}}]->(@usn6 :`7esn`) Optional Match `8esn`=Allshortestpaths(((`1esn` :usn2:`2esn`{@usn5:.e12 =~.e0})<-[?:`1esn`|:`3esn`{`2esn`:12 Starts With $#usn7}]-(`1esn` :@usn6))),(:usn2:`2esn`{`5esn`:1.e1 Starts With $`2esn` Starts With $0})-[:_usn3|`8esn` *..00{#usn7:Count(*)[010..][#usn7..],`3esn`:01234567[$7..{12}]}]-(#usn8 :usn2:`2esn`{`6esn`:0x0 =~123.654 =~{999},`1esn`:1.e1[{#usn8}]}) Using Index usn1:`3esn`(`3esn`) Using Scan usn1:`3esn` Where $`6esn`[`8esn`][0.0]"), + octest_legacy:ct_string("Create Constraint On()-[`8esn`:usn2]->()Assert Exists(Any(`3esn` In 123.654[1e1..][{#usn8}..]).usn2!)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`7esn`)Assert Single(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where False Contains 0.e0 Contains Count(*)).usn1! Is Unique"), + octest_legacy:ct_string("Delete $`1esn` Starts With 9e1 Starts With 1.e1,$@usn6[$0..usn1][0X0123456789ABCDEF..$999],[`6esn` In Count(*) Ends With $`` Ends With {7} Where {`3esn`} Ends With `1esn` Ends With $@usn6][None(_usn3 In {`2esn`} Ends With {12} Ends With 7 Where {`4esn`}[..{`4esn`}])..] With Distinct *,{`8esn`}[..$`6esn`][..123.654],None(@usn5 In Null =~12e12 Where #usn8[`7esn`..])[{123456789}..][All(`` In {`1esn`} Starts With @usn6 Where {`1esn`} Starts With `4esn` Starts With {0})..] Order By $0 Ends With False Ends With $_usn4 Descending,[0.12[..$`6esn`][..$1000],0.12 Starts With 9e12 Starts With $`1esn`,\"d_str\" Contains @usn6 Contains 12.e12] Is Null Desc Limit `1esn`[`3esn`..True] Where {12} Contains `7esn` Contains $_usn3 Union All Optional Match `4esn`=Allshortestpaths((((@usn6 {_usn3:{`8esn`}[0X7][$`3esn`],_usn4:$_usn4[9e0..]})-[`5esn`?:`2esn`{`2esn`:$7[$`3esn`]}]-({`6esn`:1000,#usn8:$`5esn`[$#usn7..][0xabc..]})-[?:`8esn`|:_usn4 *12..]->(@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]})))),Allshortestpaths(((`4esn` :`1esn`)-[`6esn`?*..{`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}]->({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6}))) Using Scan _usn3:`` Using Index `8esn`:``(@usn5) Optional Match `8esn`=(({#usn7:#usn8 =~{999}})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})),((@usn5 )<-[#usn8? *..01234567]-($_usn3)) Using Join On ``,`7esn`,#usn7 Where True[$`7esn`..{1000}] Union Create #usn7=Allshortestpaths(((:`5esn`:@usn5))),@usn5=(:`3esn`:`6esn`{#usn7:'s_str'[_usn4..0x0]})-[?:_usn3|`8esn` *..0]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})<-[:usn2|#usn7 *0X0123456789ABCDEF{`5esn`:{`1esn`} =~{_usn4},`5esn`:_usn4 Is Null Is Null}]->(#usn7 :@usn6{`3esn`:1000 Starts With `7esn`,`7esn`:True Is Not Null Is Not Null}) Create _usn4=Shortestpath((`6esn` :`2esn`{`7esn`:#usn8 =~{999}})),`7esn`=(({@usn6:$`` Starts With 12 Starts With $usn2}))"), + octest_legacy:ct_string("Create Constraint On()-[_usn3:#usn7]-()Assert Exists([`7esn` Ends With $_usn3 Ends With usn2].@usn5!)"), + octest_legacy:ct_string("Drop Constraint On()-[@usn6:`7esn`]->()Assert Exists(Case #usn7 =~{`4esn`} =~123456789 When Count(*) Starts With $usn1 Starts With {usn2} Then $`6esn`[{`3esn`}..12] End.@usn5)"), + octest_legacy:ct_string("Create Constraint On(_usn3:#usn8)Assert Exists([`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Contains 123.654 Contains 01].`5esn`!)"), + octest_legacy:ct_string("Create (`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null})-[``:usn2|#usn7 *..0Xa]->(:`4esn`:@usn6{usn1:$7[{`1esn`}],#usn8:\"d_str\"[..0.e0]}),`3esn`=Allshortestpaths((:`3esn`:`6esn`{_usn4:{usn1} In Count ( * )})) Start `2esn`=Rel:#usn7(`6esn`=\"d_str\") ,`3esn`=Node:``(_usn3={0})Where #usn8 =~{999} Start @usn5=Relationship(999) ,``=Relationship( {``}) Union Unwind {@usn6} In {#usn7} In 12.e12 As `8esn` Union All Optional Match Allshortestpaths((`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})),Shortestpath((:`8esn`:@usn5{`6esn`:_usn3 Contains .e0 Contains {usn2}})) Using Join On _usn4,@usn6 Remove All(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where 0.12[..$`6esn`][..$1000]).@usn6?,{usn2:$`5esn`[`4esn`][_usn3]}.@usn6?"), + octest_legacy:ct_string("Using Periodic Commit 12 Load Csv With Headers From None(`6esn` In 00 Where 0.12 In 0X7)[Filter(_usn4 In `2esn` Where {@usn6} Contains 123.654 Contains 01)..Filter(_usn4 In `2esn` Where #usn8[`7esn`..])] As #usn8 Fieldterminator 's_str'"), + octest_legacy:ct_string("Foreach(@usn6 In {999} Ends With 123456789 Ends With {@usn5}| Return Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))) =~Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) As _usn4,7[..$`1esn`][..00],{12} Starts With #usn8 Starts With 0e0 Order By $0 Starts With `2esn` Desc,0.12 In 0X7 Descending,12.e12 In $0 In $0 Desc Limit `6esn` In Null) Remove All(`1esn` In $12 Is Not Null Where {usn1} In Count ( * )).usn1,Extract(`3esn` In 123.654[1e1..][{#usn8}..] Where _usn3[\"d_str\"]|$_usn4 Is Not Null Is Not Null).`1esn`? Foreach(`6esn` In _usn3 =~123.654| Create Unique ((`5esn` :_usn3)-[`1esn`?:usn2|#usn7]->(`4esn` :`4esn`:@usn6)-[ *..0Xa{`1esn`:1e1[..01],`7esn`:12.e12[`7esn`]}]-({`1esn`:12 Starts With 0x0})),``=(_usn4 :#usn7{`8esn`:$999 Contains {7}}) Remove (usn1 :`6esn`:`8esn`{`5esn`:{#usn7} In Count ( * ) In $#usn8})<-[`7esn`? *0X0123456789ABCDEF{@usn6:12 Starts With {_usn4} Starts With $#usn8}]-(:_usn3{#usn8:$7 Ends With $`8esn`,`7esn`:Count(*) Ends With $`` Ends With {7}})<-[``{`3esn`:{`3esn`}[{`5esn`}]}]-({@usn5:``[{123456789}..]}).`5esn`) Union Optional Match ((@usn6 :#usn7{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})<-[?:#usn7|`2esn` *0x0..]->({`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6})),`5esn`=Allshortestpaths(((`` {``:$0[..{usn2}][..$usn1]}))) Where {@usn5}[12.0..1000][{`3esn`}..{7}] Foreach(`` In Reduce(usn2={`6esn`}[..{`2esn`}],`5esn` In $`2esn`[12.e12][$@usn5]|1e1[..01]) Is Not Null Is Not Null| Load Csv From 0.0 Is Not Null As `5esn` Remove {_usn4:{1000} Ends With {`8esn`}}.usn1) With *,9e12[{123456789}..][$`2esn`..] As `2esn` Skip 9e12 Is Null Is Null Where 00 Union All Start `7esn`=Rel:`4esn`(#usn7={@usn5}) ,_usn3=Relationship:usn1('s_str')"), + octest_legacy:ct_string("With usn2[`7esn`..{`3esn`}][$7..{#usn7}],Case When $`6esn` Starts With 12.e12 Starts With $#usn7 Then #usn8[`7esn`..] When {`4esn`}[$123456789..] Then {_usn3} Contains 9e0 Contains $999 End As @usn6 Order By 1.e1 Ends With 0 Ends With $usn1 Descending,[_usn4 In `2esn` Where 0X0123456789ABCDEF[$`5esn`..]] Ends With {``:{usn1} Ends With {`6esn`} Ends With 123456789,`5esn`:{999} Is Null} Ascending Limit $`1esn`[`4esn`..][{``}..] Where {12}[00..{@usn6}][1.e1..0] Union All Foreach(`7esn` In True Is Not Null Is Not Null| Detach Delete `2esn`[Null]) Remove #usn7._usn4!,_usn3($``['s_str'..][0x0..]).`6esn`"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:_usn4)Assert Exists(Single(_usn4 In 0.0[..{999}][..0.0]).`5esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[@usn6:@usn6]-()Assert Exists(Shortestpath((((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[{#usn7:'s_str'[_usn4..0x0]}]-(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})))).usn2!)"), + octest_legacy:ct_string("Create Constraint On(`4esn`:@usn5)Assert Exists(Shortestpath(((:`2esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}})<-[@usn5{`7esn`:123456789[0..]}]->(`7esn` {`5esn`:1.e1[..12.e12][..$usn2]})<-[? *..0Xa]->(`1esn` :`4esn`:@usn6))).`5esn`)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`1esn`)Assert Exists([$@usn6[$0..usn1][0X0123456789ABCDEF..$999]].`1esn`?)"), + octest_legacy:ct_string("Create Unique `5esn`=((`3esn` :`6esn`:`8esn`{`8esn`:{``} Is Null Is Null,`3esn`:123456789 Is Not Null Is Not Null})<-[_usn4?:usn2|#usn7{_usn4:{`1esn`} In 12.e12 In 9e1}]-(:usn2:`2esn`)),((#usn8 :usn1:_usn4)<-[usn1:usn1{`3esn`:\"d_str\" Ends With False Ends With {@usn6},`5esn`:`4esn` Contains #usn8 Contains 7}]->(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})<-[:_usn4|:usn1{_usn3:01234567[..9e1]}]-(`2esn` :#usn8{#usn7:$1000 Starts With $`8esn` Starts With {`5esn`}})) Remove {`4esn`:0.e0 =~`1esn` =~`6esn`,`7esn`:$`3esn`[{``}..]}.@usn6 Remove Extract(#usn7 In 0Xa[@usn5][{`7esn`}] Where 's_str'[_usn4..0x0]).`5esn`?,Reduce(`4esn`=`3esn`[..{_usn4}][..{@usn5}],`2esn` In {999} Is Not Null|123456789 Starts With {@usn6} Starts With $12).usn1? Union Foreach(#usn8 In Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null)[[{_usn3}[$usn2..],$`3esn`[..$`2esn`][..123.654],12.e12[`7esn`]]..]| Remove Filter(`1esn` In 0.e0 =~`1esn` =~`6esn` Where True[True..]).@usn6,Shortestpath(((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` ))).`2esn`,[7[010][00],$7[$`3esn`],#usn7 =~{`4esn`} =~123456789].#usn8 Create Unique `2esn`=Allshortestpaths((({`6esn`:1.e1[12e12..{`6esn`}]})-[#usn7? *999{`4esn`:#usn8 Is Null}]-(:_usn4{`1esn`:$_usn4 Starts With 's_str' Starts With {7},usn1:#usn8 =~{_usn3} =~``}))),usn2=Shortestpath(((usn1 :#usn8)<-[`4esn` *..010]->(usn1 :`6esn`:`8esn`)))) Union All Remove (`1esn` :usn2:`2esn`{`1esn`:{_usn3}[$usn2..],_usn3:$@usn6 Starts With $@usn5})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]-(:_usn4{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})._usn3?"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:usn2)Assert {`5esn`:12.e12[{7}..7],_usn4:`2esn` Starts With `` Starts With 1e1}.`3esn`! Is Unique"), + octest_legacy:ct_string("Create Shortestpath((:`2esn`{`4esn`:`3esn` Is Not Null Is Not Null})<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(usn1 {`4esn`:1.0[{999}][$999],``:9e1[9e1...e0]})),#usn7=Allshortestpaths((`6esn` {``:`4esn`[usn1]})<-[`7esn`?{_usn4:9e1 Ends With Count(*) Ends With False,#usn7:$_usn4 Ends With 0.e0 Ends With .e0}]->({`1esn`:$123456789[..$7][..$`6esn`]})-[_usn3:#usn7|`2esn`]-(`4esn` :`4esn`:@usn6{`8esn`:{usn1}[$`8esn`..0.0],_usn4:{123456789}[12..][$12..]})) Union All Delete Shortestpath(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})-[:`5esn`{`6esn`:_usn3 Contains .e0 Contains {usn2}}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})))[[_usn3 In {`2esn`} Ends With {12} Ends With 7 Where $#usn7[`5esn`]|{_usn3}[{0}]]..],Reduce(usn1=$usn1[..'s_str'][..$#usn8],`8esn` In $12[{7}..0X0123456789ABCDEF]|.e1[0.12])[[@usn5 In Null =~12e12 Where {_usn4} In {1000}|12.e12[``..usn2][{#usn7}..@usn5]]..All(_usn3 In {@usn5}[..#usn7] Where $`2esn` Starts With {`8esn`} Starts With {usn1})],Count ( * )[\"d_str\"][_usn3] Start @usn5=Node:``(#usn7=\"d_str\") Where $`6esn` Starts With 12.e12 Starts With $#usn7 Create Unique usn2=((`4esn` :`4esn`:@usn6)<-[{``:\"d_str\"[{`8esn`}..]}]-({`4esn`:0.12 Starts With 9e12 Starts With $`1esn`,`4esn`:1000 Is Not Null})),((usn1 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]}))"), + octest_legacy:ct_string("Drop Constraint On(@usn6:``)Assert Exists(_usn3(usn2[`7esn`..{`3esn`}][$7..{#usn7}],.e1[..{`7esn`}][..{_usn3}]).#usn7)"), + octest_legacy:ct_string("With Distinct $usn2[..9e0],{12}[010..{1000}][1e1...e1] Where 12e12 Is Not Null Is Not Null Merge @usn6=Shortestpath((:``{``:$`2esn`[12.e12][$@usn5],``:`8esn` Contains 1e1})-[?:`4esn`|:#usn7]->(`1esn` :@usn6)<-[`1esn`?]->({usn1:0e0[..$@usn5][..$`8esn`],usn1:01[..{`7esn`}][..01234567]})) On Match Set `5esn` =Filter(`5esn` In $`2esn`[12.e12][$@usn5] Where 's_str'[.._usn4][..``]),{usn2:{`6esn`} Ends With 0e0 Ends With {``}}.``? =`7esn`[{7}..@usn5],`3esn`+={#usn7:12.e12[{@usn5}..][9e1..]} Is Null Is Null Create (`3esn` :`1esn`)-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]}),`1esn`=Allshortestpaths((usn2 :`5esn`:@usn5)) Union Create Allshortestpaths((`4esn` :usn2:`2esn`)<-[`2esn`{#usn7:7 In 1.e1 In $usn1,_usn4:0X0123456789ABCDEF[`5esn`..][$#usn8..]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})-[{#usn7:'s_str'[_usn4..0x0]}]-(`8esn` {@usn6:12 Starts With {_usn4} Starts With $#usn8,`3esn`:.e1[@usn5]['s_str']})) Optional Match Allshortestpaths(((`3esn` :usn2:`2esn`{@usn6:9e12 Is Not Null Is Not Null,`4esn`:0Xa Contains {`7esn`} Contains $999}))) Using Scan `4esn`:`` Using Join On `8esn`,#usn8 Unwind 1.e1 Ends With 0 Ends With $usn1 As `7esn` Union All Remove Reduce(usn2={`4esn`} In _usn4,usn1 In 12.e12 In {0} In 9e1|7 In 1.e1 In $usn1).@usn6? Remove {_usn4:True[7][$999],`8esn`:12.e12[2.12..][0xabc..]}.#usn7!,Extract(_usn3 In {@usn5}[..#usn7]).`4esn`?"), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:`8esn`]->()Assert Exists(Extract(_usn4 In 0.0[..{999}][..0.0] Where Count(*)[.e12]|_usn4[Count(*)]).@usn5?)"), + octest_legacy:ct_string("Merge Allshortestpaths(({`4esn`:#usn8 Is Null})-[:usn1{_usn4:0[{usn2}..][usn1..],`3esn`:12 Starts With 7 Starts With $`5esn`}]-(`7esn` :`3esn`:`6esn`)<-[`6esn`?:#usn8|`2esn`*..{`5esn`:@usn5 =~'s_str'}]->({`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]})) On Match Set `4esn` =Filter(_usn4 In 0.0[..{999}][..0.0] Where #usn7 =~{`4esn`} =~123456789) Is Not Null Is Not Null,_usn3 =`1esn`(Distinct $usn1 Starts With {_usn3},{#usn8}[$#usn7..]) In Shortestpath((({_usn4:0.12 Starts With 9e12 Starts With $`1esn`}))) In All(`1esn` In $12 Is Not Null Where 12.e12[{@usn5}..][9e1..]) On Create Set #usn8 =$`1esn` =~$`1esn` =~{`6esn`},`2esn` =@usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2),`6esn` =`6esn` In Null"), + octest_legacy:ct_string("Create Constraint On(usn2:`3esn`)Assert Exists((:_usn3$usn1)<-[`1esn`?:_usn4|:usn1*]->(usn1 :`5esn`:@usn5)-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null}).#usn7)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`2esn`)Assert Exists(usn1({usn1}[$7..0x0]).`2esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[`3esn`:usn1]-()Assert Exists([9e1 Ends With $@usn5 Ends With $123456789].`3esn`)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`6esn`)Assert Exists(All(_usn3 In {@usn5}[..#usn7] Where {`4esn`}[{`1esn`}][{1000}]).`1esn`!)"), + octest_legacy:ct_string("Merge Allshortestpaths((((usn2 :_usn3)<-[#usn7{#usn8:{`1esn`} Is Not Null}]->(`8esn` {`3esn`:'s_str'[..0X7]})-[`5esn`?:usn1]-(usn2 :`4esn`:@usn6)))) On Match Set usn1 =1.0 Is Null Is Null On Match Set `6esn`+={`8esn`}[Null..][{`8esn`}..],_usn4+={#usn8} =~{999} =~{#usn7} Match `6esn`=Allshortestpaths(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})<-[#usn8:_usn4|:usn1 *0X0123456789ABCDEF{`2esn`:$7 Is Null}]-(`3esn` :``)-[usn1:@usn5|:`7esn` *..00{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(:`2esn`{`6esn`:@usn6[{0}..]}))),`8esn`=({`5esn`:$_usn4 Contains {#usn7} Contains `1esn`,@usn6:0[Count(*)][0e0]})<-[#usn7?:`4esn`|:#usn7 *..0{`5esn`:@usn5 =~'s_str'}]->(usn1 :`8esn`:@usn5{`1esn`:{#usn7} Contains 0.0 Contains $0,`2esn`:.e12[010..$123456789]})<-[_usn3?:@usn6|`` *0x0..{`3esn`}]-(@usn6 {`1esn`:01234567 In $123456789,`1esn`:{`6esn`}[..{`2esn`}]}) Using Index usn2:``(#usn8) Using Scan @usn6:`5esn`"), + octest_legacy:ct_string("Drop Constraint On()-[#usn8:`7esn`]->()Assert Exists(All(#usn7 In 123.654 Starts With $`` Where _usn3 Contains .e0 Contains {usn2}).@usn6!)"), + octest_legacy:ct_string("Create Constraint On(@usn6:`2esn`)Assert Exists([12.e12[{7}..7]]._usn3)"), + octest_legacy:ct_string("Remove (`3esn` :_usn3{_usn3:{_usn3} Contains 9e0 Contains $999,`2esn`:{_usn3}[$usn2..]})<-[?:`7esn`*{`6esn`:{0} =~12.0,usn2:9e12 Ends With 123456789}]->(`` :`7esn`).usn2?,[0X0123456789ABCDEF[$`5esn`..],.e1 Contains $`3esn`,_usn4 In $usn1].`8esn`? Union All Load Csv From usn2 =~0X7 =~{#usn7} As `` Foreach(usn1 In {usn2}[$`4esn`]| Start `3esn`=Relationship:#usn8(_usn3={#usn7}) Where {999} Is Null Create (:``{_usn3:12e12 Is Not Null,`8esn`:1.e1[_usn4..][07..]})-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]-(:`7esn`{``:123456789 Ends With usn1 Ends With usn2})<-[?:`3esn`|:@usn5*..{usn2:{`8esn`}[0X7][$`3esn`]}]->(usn1 :`2esn`{usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF}),((`` {`5esn`:0[`4esn`][12.e12],_usn4:00})-[`5esn`?]-(#usn8 :@usn6)<-[@usn6?:usn2|#usn7]->(`1esn` ))) Union All Unwind $`3esn`[..$`2esn`][..123.654] As `1esn` Foreach(#usn8 In 12 In 0e0| Unwind {`4esn`}[{`1esn`}][{1000}] As #usn7 Delete $`7esn` In 12) Unwind False Starts With 010 As @usn5"), + octest_legacy:ct_string("With $`7esn` Contains {`1esn`} Contains 9e12 As usn1,Reduce(usn2=00[Count(*)...e0][$#usn7..0X0123456789ABCDEF],usn1 In 12.e12 In {0} In 9e1|{`7esn`}[0X7..][0x0..]) Starts With [_usn4 In `2esn`] Starts With (`5esn` {`3esn`:9e1 =~999})-[`1esn`?:`4esn`|:#usn7 *..01234567]->(`3esn` :#usn7) Where {@usn5}[..{12}][..0x0]"), + octest_legacy:ct_string("Create Unique ((usn2 {#usn8:@usn5[$12..\"d_str\"]})<-[#usn7? *999{usn2:{1000}[{``}][999]}]-({`2esn`:$#usn7[`5esn`],``:{`2esn`} In $123456789 In True})<-[usn1? *..0Xa{`2esn`:\"d_str\" Is Null Is Null}]-(`2esn` :`3esn`:`6esn`)) Create `5esn`=(usn2 {#usn8:123456789 Starts With {@usn6} Starts With $12,_usn3:07[..`6esn`][..'s_str']})-[?:@usn6|``]-(:_usn4{`1esn`:{123456789}[12..][$12..]}) Union All Unwind 010 Ends With 01 Ends With {_usn3} As #usn7 Detach Delete $@usn5 Is Not Null Is Not Null,{`8esn`}[..$`6esn`][..123.654],Allshortestpaths(((#usn7 :`8esn`:@usn5{`8esn`:False Ends With $``})<-[?{`5esn`:0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`],#usn7:{`2esn`} Starts With @usn6}]->(`5esn` {usn2:{`6esn`} Contains 07,`2esn`:{7} Is Null}))) Starts With (`1esn` :_usn3{`5esn`:{`8esn`}[..$`6esn`][..123.654],`1esn`:1000 Starts With `7esn`})-[?{#usn8:00[..$123456789][..$`5esn`],``:Count(*) Starts With $usn1 Starts With {usn2}}]-(`3esn` {usn1:$`6esn`[`8esn`][0.0],`8esn`:2.12 In $`8esn` In {`7esn`}}) Starts With Extract(`` In {`1esn`} Starts With @usn6 Where $`1esn`[$12][Count ( * )]) Foreach(usn1 In {`4esn`}[{`4esn`}..999]| Create (`4esn` :`4esn`:@usn6) With Distinct 0Xa Contains #usn8 Contains 1000 Order By {#usn8} Contains 1000 Contains $`4esn` Ascending,Filter(@usn5 In Null =~12e12 Where #usn8[`7esn`..]) Ends With Reduce(`5esn`=9e12 Is Not Null,_usn4 In `2esn`|#usn8 Is Not Null) Ends With (_usn4 :``{usn2:`3esn`[..{_usn4}][..{@usn5}],usn1:{`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn`})<-[:#usn8|`2esn` *12..{`5esn`:.e12 =~$_usn4}]->(`` {`5esn`:0[`4esn`][12.e12],_usn4:00})<-[ *123456789..0X7]-({`6esn`:`2esn` Ends With 12.e12 Ends With `2esn`}) Ascending Skip ({`6esn`:1.e1[12e12..{`6esn`}]})-[`7esn`?:_usn3|`8esn`*..]-(`6esn` {`3esn`:{7} Starts With $usn1 Starts With 1.0,usn2:{@usn5}[..{12}][..0x0]})-[:#usn7|`2esn` *01..07]->(_usn4 :`7esn`)[..`2esn`(Distinct #usn8[`7esn`..])][..[.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]]])"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:`3esn`)Assert [{``}[_usn4..$`1esn`],9e0[#usn8]].`7esn`! Is Unique"), + octest_legacy:ct_string("Optional Match `2esn`=Shortestpath((((`1esn` {usn2:12 Is Not Null,`4esn`:`1esn`[..01]})-[_usn3?:@usn6|``]-(usn1 :@usn5)-[``?:usn2|#usn7 *0x0..]-(@usn5 :usn1:_usn4)))),``=({#usn7:#usn8 =~{999}})-[{`7esn`:01234567 In $123456789}]->(:@usn5{`6esn`:{12} Contains `7esn` Contains $_usn3,@usn6:`2esn`[$1000..9e12][{#usn8}..{7}]}) Using Index @usn6:`4esn`(`6esn`) Using Scan _usn4:#usn8 Where 1.e1[_usn4..][07..] Foreach(@usn6 In $`` Contains 1.e1| Create Unique #usn8=Allshortestpaths((`5esn` :_usn4)<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]})),Shortestpath((((`4esn` {`7esn`:{``} Ends With .e12 Ends With 0.e0})<-[`6esn`?]-(`2esn` {@usn5:{7} Contains $123456789,@usn5:Count(*) Starts With $usn1 Starts With {usn2}})<-[@usn5?:`5esn`]->({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]}))))) Union Return {@usn6}[True..{_usn3}] As `3esn`,Shortestpath((((`1esn` {#usn7:Count ( * )[$12..]})<-[#usn8:`7esn`]-({@usn6:{`1esn`} Is Not Null,`2esn`:00 =~0.e0 =~$`8esn`})-[#usn8:#usn7|`2esn`]->(_usn4 :#usn7{`3esn`:7[010][00],#usn8:False Contains 0.e0 Contains Count(*)}))))[..Case {`1esn`} In 12.e12 In 9e1 When 12 Starts With {_usn4} Starts With $#usn8 Then Count(*) Is Not Null Else 12.e12 In $0 In $0 End][..#usn8],1.e1 =~$`1esn` As `8esn` Order By `1esn`[$123456789..] Desc,{#usn7:`5esn`[..9e0][..01234567]} In Case 1e1[1.e1..][123.654..] When 7[1000.._usn3][9e0..\"d_str\"] Then 12.e12[``..usn2][{#usn7}..@usn5] When 1.e1[0xabc..] Then 1.e1 Starts With $`2esn` Starts With $0 End In Single(`8esn` In $12[{7}..0X0123456789ABCDEF] Where {@usn6} Is Not Null) Desc,.e1 Ends With 0Xa Ends With 00 Ascending Skip 0xabc =~12 =~0x0 Limit 0e0[0X0123456789ABCDEF..010][$@usn6..010] Union Load Csv From $`6esn`[{`3esn`}..12] As @usn5 Fieldterminator 's_str'"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`6esn`)Assert Exists(``(True[True..],$_usn4).`5esn`?)"), + octest_legacy:ct_string("Unwind `6esn`[{`6esn`}..] As usn2 Merge `3esn`=Allshortestpaths((`7esn` :@usn6)-[?:``]-(:`4esn`:@usn6{`7esn`:Count(*)[.e12..]})-[{``:\"d_str\"[{`8esn`}..]}]-({`3esn`:{`2esn`} In 0Xa In {_usn3},`2esn`:$``['s_str'..][0x0..]})) On Create Set usn1 =#usn8 In `8esn` In 07 On Match Set [\"d_str\"[{`8esn`}..]].#usn8? =$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]"), + octest_legacy:ct_string("With Distinct Extract(`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*))[Shortestpath(((:@usn5{#usn7:{``}[_usn4..$`1esn`],_usn4:$`6esn` Ends With {0} Ends With {`7esn`}})-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(:#usn8)<-[`3esn`?:`3esn`|:@usn5 *0x0..]-(:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})))..],_usn4($123456789 =~`4esn`)[None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where Count(*) In {``})..][Any(`3esn` In 123.654[1e1..][{#usn8}..] Where `2esn` Ends With $`4esn` Ends With {#usn7})..] As #usn8 Order By $123456789 Is Not Null Asc Limit 0Xa Is Not Null Is Not Null Where {`3esn`}[{`5esn`}] Remove Any(`1esn` In $12 Is Not Null Where $@usn6[01..@usn5][0x0..`4esn`]).`2esn`? Unwind 9e12 Is Not Null Is Not Null As @usn5"), + octest_legacy:ct_string("Drop Constraint On(#usn7:_usn4)Assert Exists(Allshortestpaths(((@usn6 :`2esn`)))._usn4?)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`8esn`)Assert Exists({@usn5:0 Contains $usn2 Contains 12e12,`2esn`:12e12}.usn2?)"), + octest_legacy:ct_string("Drop Constraint On()<-[`4esn`:@usn5]-()Assert Exists(#usn7(``[$0..][`1esn`..],{7} Starts With $usn1 Starts With 1.0).usn1?)"), + octest_legacy:ct_string("Create Constraint On(@usn6:`2esn`)Assert Exists([`5esn` In $`2esn`[12.e12][$@usn5] Where $``[.e12..]].``)"), + octest_legacy:ct_string("Create Constraint On()<-[_usn4:@usn5]-()Assert Exists(@usn5(Distinct 9e12 Is Not Null).``?)"), + octest_legacy:ct_string("Optional Match (:_usn3{`3esn`:{0} Is Null,#usn7:{0} Is Null})-[:_usn4|:usn1 *0X7..0Xa{`8esn`:{`4esn`}[$123456789..],_usn4:{`8esn`}[True..][.e1..]}]-({#usn8:`1esn`[..01],``:$1000 Is Not Null Is Not Null})-[?:`4esn`|:#usn7 *..0]-(_usn3 :@usn5) Create Shortestpath(((`3esn` :usn2:`2esn`{``:{_usn3} Contains $`1esn` Contains 12.0}))),`8esn`=((#usn8 {`8esn`:{7} Contains $123456789})) Return Distinct *,@usn5 Is Not Null Is Not Null As `` Skip Reduce(#usn8=0X7 Starts With {999} Starts With 12e12,_usn4 In `2esn`|usn2[True]) Starts With [01234567[..9e1]] Starts With Reduce(@usn5=.e1 Ends With {7} Ends With $usn1,`` In {usn1} Ends With {`6esn`} Ends With 123456789|{`2esn`} In 0Xa In {_usn3}) Union All Delete 0x0 =~123.654 =~{999} Remove Reduce(usn1=1.e1[0xabc..],#usn7 In 0Xa[@usn5][{`7esn`}]|12 Starts With $#usn7).``? Create Unique (({`7esn`:123456789[0..]})) Union Start `3esn`=Rel:`5esn`({0}) ,`6esn`=Relationship:`1esn`({@usn5})Where $7[{`1esn`}] Create usn2=(((:#usn8{`2esn`:12e12 Is Not Null,_usn3:12.e12[2.12..][0xabc..]})-[:_usn4|:usn1{``:0 Contains $usn2 Contains 12e12}]-(`4esn` :`2esn`)<-[`7esn`?:_usn3|`8esn`*..]->(`2esn` :_usn3))),`6esn`=((@usn6 :`2esn`)) Merge ((:`1esn`{`5esn`:False Ends With $``,_usn4:0.e0[{999}][{`1esn`}]})-[ *0x0..{@usn5:0e0[..$@usn5][..$`8esn`]}]-(:`6esn`:`8esn`{`3esn`:$`6esn`[{`3esn`}..12],_usn3:0[{@usn5}..][7..]})-[_usn3?:`8esn`|:_usn4 *12..{`5esn`:{#usn7} In Count ( * ) In $#usn8}]-(:`1esn`)) On Match Set `2esn`+=Allshortestpaths((((`6esn` :`7esn`{``:1000 Is Null,`4esn`:#usn7[$`5esn`..]})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]-(:`5esn`:@usn5{`5esn`:`7esn` Contains `5esn` Contains 0X7})<-[:`6esn`{@usn5:$7[$`3esn`],`2esn`:0Xa[0e0..{#usn7}]}]->(`5esn` :``{@usn6:123.654[$`1esn`..Null][1000..{_usn3}]}))))[All(_usn4 In `2esn` Where 1.e1[0xabc..])..All(`6esn` In Count(*) Ends With $`` Ends With {7} Where {1000} In {123456789})][All(`6esn` In Count(*) Ends With $`` Ends With {7} Where .e1 Contains $`3esn`)..Single(#usn7 In 123.654 Starts With $`` Where 9e1 =~`` =~{`7esn`})],`3esn` =$12 Starts With $`8esn`,@usn5 =Reduce(#usn8={`8esn`}[..$`6esn`][..123.654],usn1 In 12.e12 In {0} In 9e1|\"d_str\" =~`1esn` =~{`5esn`}) On Match Set `6esn` =[`2esn` In {999} Is Not Null Where {@usn6}[True..{_usn3}]] =~None(#usn7 In 123.654 Starts With $`` Where {usn2}[$`4esn`]) =~Extract(`1esn` In $12 Is Not Null Where Null Is Null Is Null|$123456789 =~`4esn`),usn1:`8esn`:@usn5"), + octest_legacy:ct_string("Start `4esn`=Node:``(\"d_str\") Where 9e12 Is Not Null Is Not Null Union All Start _usn4=Node:`4esn`(`2esn`={``}) Where False Starts With 010 Create Unique `6esn`=((({`1esn`:$123456789[..$7][..$`6esn`]})<-[:`2esn` *1000{`4esn`:`2esn` Ends With 12.e12 Ends With `2esn`}]-(#usn8 :`8esn`:@usn5)-[?:`8esn`|:_usn4 *12..]->(@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]}))),(((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[{#usn7:'s_str'[_usn4..0x0]}]-(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``}))) Union Foreach(usn2 In 2.12[..$_usn4]| Remove Extract(`6esn` In Count(*) Ends With $`` Ends With {7} Where $usn1 Starts With {_usn3}|{123456789}[12..][$12..]).usn1?,[$``[..1.e1][..12],7 Contains $`` Contains {`6esn`}].`7esn`! Match #usn8=Allshortestpaths((({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null}))),Allshortestpaths((((:`8esn`:@usn5{`5esn`:$`3esn`[..$`2esn`][..123.654]})<-[?{usn1:07 Is Null,@usn6:{_usn3}[$usn2..]}]-(`8esn` :#usn7{``:False Contains $#usn8 Contains 9e1})-[?{``:{#usn8} =~{999} =~{#usn7},``:usn1 Is Null Is Null}]-(_usn4 {`2esn`:$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`],_usn4:#usn8 Is Null})))) Using Scan `4esn`:_usn4)"), + octest_legacy:ct_string("Optional Match #usn7=Allshortestpaths((:`5esn`:@usn5{#usn8:123.654[$`1esn`..Null][1000..{_usn3}],`6esn`:12.0 =~$#usn7 =~9e12})-[`1esn`:usn2|#usn7{`6esn`:{`6esn`}[..{`2esn`}],`5esn`:_usn4[Count(*)]}]->(usn1 :_usn3{#usn7:$_usn3 Is Null Is Null,@usn5:{@usn6}[0Xa..$@usn6][0..`5esn`]})),(({@usn5:$@usn6 Starts With {`1esn`} Starts With 12,`8esn`:{1000}[\"d_str\"..{@usn5}][$1000..$#usn8]})) Using Scan _usn4:_usn3 Using Index usn1:@usn5(`7esn`)"), + octest_legacy:ct_string("Match `2esn`=Shortestpath(((#usn8 :@usn5)<-[?:``]-(:`8esn`:@usn5{`7esn`:$_usn4[$`4esn`..$12],`3esn`:{`5esn`}[#usn8..0x0][\"d_str\"..{`4esn`}]})-[ *..00]-(:`6esn`:`8esn`))),@usn5=(_usn3 :@usn5)-[?:#usn8|`2esn`{_usn4:{usn1} In Count ( * )}]-(usn1 {`2esn`:0.0 Contains $_usn4 Contains {`2esn`},_usn4:0e0 Contains `3esn` Contains `7esn`}) Using Join On `6esn`,#usn7 Using Join On #usn7,@usn5 Union With Distinct $`` =~{``} =~0.e0,{`3esn`}[{`5esn`}] As `6esn` Order By 12.e12[$`4esn`..] Descending,{`2esn`}[@usn5..][{``}..] Descending Skip 0.0[..{999}][..0.0] Where _usn4 In $usn1 Union Delete $0 Starts With `2esn` Create Unique `8esn`=(({`1esn`:12 Starts With 0x0})<-[`5esn`{`6esn`:12 Is Not Null Is Not Null,`8esn`:`3esn` Is Not Null Is Not Null}]->(_usn3 {@usn5:.e12 =~.e0}))"), + octest_legacy:ct_string("Drop Constraint On()-[usn2:usn1]-()Assert Exists(Reduce(`8esn`=999 Starts With 's_str',`2esn` In {999} Is Not Null|{12} Contains 9e0).#usn8!)"), + octest_legacy:ct_string("Create Constraint On()-[usn2:`6esn`]->()Assert Exists([_usn3 In {`2esn`} Ends With {12} Ends With 7|Count ( * )[$12..]].`5esn`?)"), + octest_legacy:ct_string("Using Periodic Commit 01 Load Csv With Headers From [.e12 Ends With 1000 Ends With 010,{7}[{`4esn`}][`6esn`],{7}[{`4esn`}][`6esn`]] Is Not Null As usn1 Fieldterminator 's_str' Create Unique (`1esn` {_usn4:{1000} Ends With {`8esn`}})-[#usn8:#usn7|`2esn`]->(:`1esn`{`6esn`:$_usn3[010..False],_usn4:$123456789 Starts With $123456789 Starts With Count ( * )})"), + octest_legacy:ct_string("Drop Constraint On(_usn3:@usn6)Assert Extract(`1esn` In $12 Is Not Null Where 0X0123456789ABCDEF[7...e0][`1esn`..usn2]).#usn8 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:_usn3)Assert Exists(None(`1esn` In 0.e0 =~`1esn` =~`6esn` Where True[True..]).usn2?)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`3esn`)Assert Allshortestpaths(((({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})<-[?:``]-(`1esn` :#usn7)-[?:`4esn`|:#usn7]->(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})))).`5esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`2esn`)Assert Case When 123.654[1e1..][{#usn8}..] Then .e12[$7..][{`6esn`}..] When _usn4 Is Null Then {`1esn`} In 12.e12 In 9e1 End.usn2? Is Unique"), + octest_legacy:ct_string("Match @usn6=Allshortestpaths(((:#usn8{#usn7:12 Starts With 7 Starts With $`5esn`,`3esn`:1000})-[_usn4 *0x0..]-(:#usn7{``:`6esn` Ends With 2.12 Ends With @usn6,`5esn`:$`6esn` Ends With {0} Ends With {`7esn`}})))"), + octest_legacy:ct_string("With Distinct *,1000 As `5esn` Limit {`1esn`} In 12.e12 In 9e1 Where `8esn` Contains $`3esn` Contains {`4esn`} Union All Unwind `4esn`[usn1] As _usn4 Union All Unwind $`7esn` Is Null Is Null As `8esn` Remove Case @usn5[..$@usn5][..0Xa] When $@usn6 Starts With {`1esn`} Starts With 12 Then $1000[..12.0][..0e0] Else 's_str'[..0X7] End.`8esn` Create Unique Shortestpath((`1esn` :@usn5{_usn3:Null Is Null Is Null,``:True[True..]}))"), + octest_legacy:ct_string("Drop Constraint On()-[_usn4:_usn4]-()Assert Exists(Any(`1esn` In `3esn`[07..] Where `7esn`[0..$usn2][{usn2}..0.e0]).#usn7)"), + octest_legacy:ct_string("Drop Constraint On()-[_usn3:usn2]->()Assert Exists((@usn6 {`2esn`:{@usn6}[$`7esn`..][False..]})<-[usn1?:`6esn` *12..{`6esn`:999 Starts With $123456789 Starts With {``}}]->({_usn4}).@usn6)"), + octest_legacy:ct_string("With *,7[1000.._usn3][9e0..\"d_str\"],(`7esn` :#usn8{`6esn`:$``['s_str'..][0x0..]})-[`4esn`?:_usn4|:usn1 *999{_usn4:{7} Starts With $usn1 Starts With 1.0,#usn7:$1000[..12.0][..0e0]}]-(#usn7 :`2esn`)-[?:`8esn`|:_usn4 *12..]->(@usn6 {`2esn`:.e1[0.12],`6esn`:0.0[..{999}][..0.0]}) In {`3esn`:1e1 Contains usn2} Order By Count ( * )[00] Asc,$#usn7 Contains True Contains _usn4 Descending Skip 9e0[#usn8] Limit 123456789 Is Null Is Null Where #usn7 =~{`4esn`} =~123456789 Start _usn4=Node:`4esn`(_usn4={``}) Where {`2esn`} In 0Xa In {_usn3} Union All Remove Case @usn5[..$@usn5][..0Xa] When $@usn6 Starts With {`1esn`} Starts With 12 Then $1000[..12.0][..0e0] Else 's_str'[..0X7] End.`8esn` Foreach(`4esn` In Case $@usn6 Contains $`7esn` Contains 1e1 When 0e0[$#usn8...e12] Then $7 Is Null Is Null Else {#usn8} =~{999} =~{#usn7} End Starts With (usn2 :``)<-[#usn7? *0X0123456789ABCDEF{usn1:.e1[@usn5]['s_str'],`2esn`:$`7esn` Is Null Is Null}]->({`7esn`:Count ( * )[Count ( * )][12],@usn5:{`7esn`}[``..]})| Create @usn5=(`4esn` :#usn7)<-[@usn6?:usn2|#usn7]->(`1esn` )-[`6esn`?*..{`6esn`:$0[$1000..00][{0}..{usn1}],_usn4:{`5esn`}[$`8esn`..$`1esn`][0.12..0.12]}]->({#usn7:12 Starts With $#usn7,#usn7:`6esn` Ends With 2.12 Ends With @usn6}),(usn2 {usn1:{`4esn`}[..07][..$`6esn`],`5esn`:'s_str'[..0X7]})<-[`5esn`?:`5esn`{_usn4:@usn5 Is Not Null Is Not Null}]->({_usn4})-[usn1{`2esn`:1.e1 =~9e12 =~`4esn`}]-(`7esn` :`3esn`:`6esn`) Remove [`6esn` In Count(*) Ends With $`` Ends With {7} Where `1esn` =~1000 =~1000|0xabc[$@usn5]].usn1,Extract(`` In {usn1} Ends With {`6esn`} Ends With 123456789 Where `1esn` =~1000 =~1000|\"d_str\"[{`8esn`}..])._usn3) Union Unwind 12 Starts With {_usn4} Starts With $#usn8 As usn1 With [`1esn` In `3esn`[07..] Where @usn6[{0}..]|0.e0[12.e12]] Contains {usn2:{`4esn`}[{`1esn`}][{1000}],#usn8:123.654 Contains $_usn3 Contains 0X0123456789ABCDEF} As @usn6,All(`8esn` In $12[{7}..0X0123456789ABCDEF] Where $`5esn`[$#usn7..][0xabc..]) Contains All(#usn7 In 0Xa[@usn5][{`7esn`}] Where @usn5[12.0][{1000}]) As #usn8 Merge Allshortestpaths((:`2esn`{``:1.e1 =~`2esn`,`3esn`:$`6esn`[`8esn`][0.0]})-[_usn4? *07{1000}]-(`` )<-[@usn5? *07{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]}]-(`4esn` :_usn4{`2esn`:#usn7 =~00})) On Create Set ['s_str'[..0X7],False Contains 0.e0 Contains Count(*)].``? =$0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]"), + octest_legacy:ct_string("Drop Constraint On()-[_usn4:#usn8]->()Assert Exists(None(`6esn` In 00 Where 0.12[..$`6esn`][..$1000]).`2esn`)"), + octest_legacy:ct_string("Create Constraint On()-[``:_usn4]->()Assert Exists(Case When 00[Count(*)...e0][$#usn7..0X0123456789ABCDEF] Then $usn1 In 01234567 In .e1 End._usn3)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:usn2)Assert [_usn3 In {`2esn`} Ends With {12} Ends With 7 Where 9e12 Is Not Null].`7esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[`6esn`:`6esn`]-()Assert Exists([True Is Not Null,0e0 Contains 9e12,$`6esn`[{`3esn`}..12]].`4esn`!)"), + octest_legacy:ct_string("Unwind $0[..{usn2}][..$usn1] As `` Detach Delete `` Is Null Is Null,`2esn`[$usn1..{123456789}],$#usn7[.e1..{`7esn`}][{`6esn`}..$_usn4] Union Foreach(`7esn` In @usn5 =~Reduce(_usn3=$@usn5[`6esn`..],`6esn` In Count(*) Ends With $`` Ends With {7}|123456789 Ends With usn1 Ends With usn2)| Detach Delete .e1 Ends With _usn3,Single(`8esn` In $12[{7}..0X0123456789ABCDEF])[Case 9e1[123456789..] When 12 Starts With 7 Starts With $`5esn` Then {_usn3} Contains True Contains 0X7 When `1esn`[..00][..{7}] Then 1.e1[12e12..{`6esn`}] End..]) Detach Delete [`8esn` In $12[{7}..0X0123456789ABCDEF] Where False Contains 0.e0 Contains Count(*)][Extract(`` In {`1esn`} Starts With @usn6 Where $`7esn`[$``..][999..]|.e1 Contains $`3esn`)..Case When 's_str'[.._usn4][..``] Then 123.654 Starts With $`` Else 0X0123456789ABCDEF[9e1..{12}][{0}..$`6esn`] End] Union Load Csv From 9e0 Starts With .e0 Starts With \"d_str\" As `5esn` "), + octest_legacy:ct_string("Create Constraint On(`5esn`:_usn3)Assert Exists(Any(`5esn` In $`2esn`[12.e12][$@usn5] Where $1000[..$999]).``)"), + octest_legacy:ct_string("Return {#usn7} Contains @usn5 Contains Count ( * ),01 Starts With {999} Starts With $`2esn`,$usn1[@usn6][#usn7] As `6esn`"), + octest_legacy:ct_string("Drop Constraint On()-[#usn7:`5esn`]->()Assert Exists(All(`2esn` In {999} Is Not Null Where $0[{`2esn`}..{`1esn`}][{@usn5}..$`7esn`]).`3esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[@usn5:@usn5]-()Assert Exists(Extract(#usn7 In 123.654 Starts With $`` Where 12.e12[`7esn`]).@usn5)"), + octest_legacy:ct_string("Match (:`4esn`:@usn6{`7esn`:Count(*)[.e12..]}),_usn4=Allshortestpaths((((#usn8 :usn2:`2esn`)<-[`8esn`:`6esn`{`5esn`:True Is Not Null,`4esn`:#usn7 Starts With $999}]-(:`5esn`:@usn5{#usn8:$12 Contains 0Xa})-[?:`3esn`|:@usn5 *0X7..0Xa{`5esn`:$`2esn`[$usn2..][{``}..]}]->({#usn7:0.12 Contains 12.0,`6esn`:\"d_str\" Is Null Is Null})))) Using Scan usn1:usn2 Using Index _usn3:``(#usn7) Where 12.e12[``..usn2][{#usn7}..@usn5] Remove All(`6esn` In 00 Where `5esn`[..9e0][..01234567]).`4esn`,(_usn4 :#usn8{`5esn`})-[?*..{`1esn`:$`1esn`[07..][9e12..],@usn6:{7} Starts With $usn1 Starts With 1.0}]->(:`3esn`:`6esn`).usn2?,None(_usn4 In 0.0[..{999}][..0.0] Where {`7esn`} Is Not Null Is Not Null).`3esn`? Create `2esn`=((`4esn` :`2esn`)),Allshortestpaths(((#usn7 {`1esn`:$123456789 Starts With $123456789 Starts With Count ( * )})))"), + octest_legacy:ct_string("Remove Allshortestpaths((((:_usn4{`1esn`:{123456789}[12..][$12..]})<-[#usn7{``:.e1 Contains $`3esn`}]->(`7esn` :`2esn`{`6esn`:{`3esn`}[{`5esn`}],_usn4:0X0123456789ABCDEF[$`5esn`..]})-[_usn4 *0x0..]-(:``$_usn4)))).`5esn`? Remove usn2:@usn5,Case 0.0 =~12.e12 =~1.0 When 0.e0 Ends With False Then 00[..$123456789][..$`5esn`] Else _usn3[$usn2..0] End.#usn8!,`8esn`:_usn3"), + octest_legacy:ct_string("Start @usn6=Node:`4esn`(``='s_str') ,`2esn`=Rel:#usn7(`6esn`=\"d_str\")Where {`3esn`} Starts With 0X0123456789ABCDEF Starts With `5esn` Merge Allshortestpaths((@usn6 :usn1:_usn4)) On Match Set usn1 =Allshortestpaths((({`3esn`:0e0 Contains 9e12,@usn6:`6esn`[{@usn5}..Count ( * )][{`6esn`}..{@usn6}]})<-[usn1:#usn7|`2esn`{#usn7:\"d_str\"[..0.e0],`7esn`:{``} Ends With .e12 Ends With 0.e0}]->(#usn8 :`8esn`:@usn5{`7esn`:1.e1 =~$usn2,`7esn`:$usn1[$123456789..0][{`1esn`}..12.0]})-[?{@usn6:@usn6[{0}..],``:$usn1[0X7]}]-(:#usn8{``:12.e12[$`4esn`..]}))) =~Reduce(`2esn`=`5esn`[..9e0][..01234567],`1esn` In `3esn`[07..]|{1000}) Create Allshortestpaths((((@usn5 :@usn5)-[? *999{@usn6:{7}[$123456789..{1000}][$`3esn`..`7esn`],@usn6:$@usn5 In $usn2 In {1000}}]->(_usn4 :_usn4)<-[? *01..07]-(`2esn` :`4esn`:@usn6{_usn4:$@usn5 In $usn2 In {1000},@usn6:Count(*) Starts With $usn1 Starts With {usn2}})))),`2esn`=Allshortestpaths((((:@usn5{#usn8:$`` Starts With 12 Starts With $usn2,`1esn`:00})<-[{#usn7:'s_str'[_usn4..0x0]}]-(:`6esn`:`8esn`{`5esn`:$12 Is Not Null Is Not Null,`4esn`:{@usn5}[..@usn6]})<-[ *0x0..{`2esn`:9e0 In .e1 In 1.e1,usn2:{@usn6}[$`7esn`..][False..]}]->(`2esn` :_usn3{`8esn`:usn1 Contains $7 Contains $``})))) Union All Create `6esn`=(_usn3 {@usn5:.e12 =~.e0})-[?:`7esn`]-(usn2 :`4esn`:@usn6)-[?:@usn6|`` *1000]-(`5esn` :`7esn`),@usn5=((({`7esn`:0.12 Starts With 9e12 Starts With $`1esn`})<-[?:``]-(`1esn` :#usn7)-[?:`4esn`|:#usn7]->(_usn3 :#usn8{`6esn`:{`3esn`}[$``..#usn7][0X0123456789ABCDEF..`2esn`]})))").